Skip to content
Snippets Groups Projects
Select Git revision
  • a9b634a710b6195f32479fe9bad68be24b10d39b
  • master default protected
  • 1.31
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
  • 4.32.0
  • 4.31.0
  • 4.30.1
  • 4.30.0
  • 4.29.1
  • 4.29.0
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
23 results

index.html

Blame
  • events.mjs 2.38 KiB
    /**
     * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
     * Node module: @schukai/monster
     * This file is licensed under the AGPLv3 License.
     * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
     */
    
    /**
     * This event is fired when options are set
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-options-set
     * @type {object}
     * @property {Object[]} options options
     * @property {string} options.value value
     * @property {string} options.label label
     */
    
    /**
     * This event is fired when something is selected
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-selected
     * @type {object}
     * @property {array|string} selection
     */
    
    /**
     * This event will be fired when something will change
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-change
     * @type {object}
     * @property {string} [type] event type
     * @property {string} [value] the value that was changed
     * @property {boolean} [checked] if it is a boolean value
     */
    
    /**
     * This event will be fired when a selection is removed
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-selection-removed
     * @type {object}
     * @property {string} [type] event type
     * @property {string} [value] the value that was changed
     */
    
    /**
     * This event will be fired when a selection is cleared
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-selection-cleared
     * @type {object}
     * @property {string} [type] event type
     */
    
    /**
     * This event will be fired if something has changed
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-changed
     * @type {object}
     * @property {string} [type] event type
     * @property {string} [value] the value that was changed
     * @property {boolean} [checked] if it is a boolean value
     **/
    
    /**
     * button clicked event
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-button-clicked
     * @type {object}
     */
    
    /**
     * content fetched event
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-button-set
     * @type {object}
     */
    
    /**
     * content fetched event
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-api-button-click
     * @type {object}
     */
    
    /**
     * content fetched event
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-api-button-successful
     * @type {object}
     */
    
    /**
     * content fetched event
     *
     * @memberOf Monster.Components.Form
     * @event event:monster-api-button-failed
     * @type {object}
     */