Skip to content
Snippets Groups Projects
Commit 07793de5 authored by Sarah Lorenzen's avatar Sarah Lorenzen Committed by Kristen Pol
Browse files

Issue #3471289 by sarahlorenzen: Fix the mismatch of variables...

parent 3a9c32b6
No related branches found
No related tags found
1 merge request!90Issue #3471289 by sarahlorenzen: Fix the mismatch of variables...
Pipeline #454230 passed
......@@ -6,7 +6,7 @@
* Variables:
* - theme: [string] Theme: light, dark.
* - name: [string] Select name.
* - is_multiple: [boolean] Is multiple.
* - id: [string] Select ID.
* - options: [array] Options:
* - type: [string] Option type: option group (optgroup) or option (option).
* - label: [string] Option label.
......@@ -17,9 +17,10 @@
* - value: [string] Option value.
* - is_selected: [string] Flag whether option is selected.
* - is_disabled: [string] Flag whether option is disabled.
* - is_invalid: [boolean] Denote if the control is invalid.
* - is_disabled: [boolean] Denote if the control is disabled.
* - is_required: [boolean] Denote if the control is required.
* - is_invalid: [boolean] Denotes if the control is invalid.
* - is_multiple: [boolean] Denotes if the control is multiple.
* - is_disabled: [boolean] Denotes if the control is disabled.
* - is_required: [boolean] Denotes if the control is required.
* - attributes: [string] Additional attributes.
* - modifier_class: [string] Additional classes.
*/
......
......@@ -5,8 +5,10 @@
*
* Variables:
* - theme: [string] Theme: light, dark.
* - symbol: [string] Symbol to use in the button. Defaults to 'userinterface_informationmark'.
* - text: [string] Text to display within the popup.
* - content: [string] Inner Content of Tooltip description.
* - position: [string] Tooltip position in relation to button.
* - size: [string] Size of icon to use in the button. Defaults to 'large'.
* - symbol: [string] Symbol or icon to use in the button. Defaults to 'userinterface_informationmark'.
* - title: [string] Text used within the button title and for screen readers.
* - attributes: [string] Additional attributes.
* - modifier_class: [string] Additional classes.
......
......@@ -6,9 +6,9 @@
* Variables:
* - theme: [string] Theme: light, dark.
* - title: [string] Title for the iframe.
* - url: [string] URL of the video.
* - width: [string] Width of the iframe.
* - height: [string] Height of the video.
* - url: [string] URL of the iframe.
* - width: [string] Optional width of the iframe.
* - height: [string] Optional height of the iframe.
* - transcript_link: [object] Video transcript link.
* - text: [string] Button text.
* - title: [string] Button title.
......@@ -17,6 +17,12 @@
* - is_external: [boolean] If link is external or not.
* - attributes: [string] Additional attributes.
* - embedded_source: [string] embedded_source provided iframe container.
* - raw_source: [string] raw_source provided iframe container.
* - sources: [array] Array of sources:
* - url: [string] URL of the source.
* - type: [string] Type name like 'video/mp4'.
* - poster: [string] Optional URL of the video poster image.
* - has_controls: [boolean] If video should have controls.
* - attributes: [string] Additional attributes.
* - modifier_class: [string] Additional classes.
*/
......
......@@ -9,6 +9,7 @@
* - type: [string] Message type: information, error, warning, success.
* - description: [string] Description text.
* - modifier_class: [string] Additional classes.
* - attributes: [string] Additional attributes.
*/
#}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment