dap-design-system 0.57.11 → 0.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/checkbox/checkbox.component.d.ts +1 -0
- package/dist/components/code-puncher/code-puncher.component.d.ts +1 -0
- package/dist/components/combobox/combobox.component.d.ts +1 -0
- package/dist/components/datepicker/datepicker.component.d.ts +1 -0
- package/dist/components/file-input/file-input.component.d.ts +1 -0
- package/dist/components/form/form-label/form-label.component.d.ts +1 -0
- package/dist/components/form/input-group/input-group.component.d.ts +1 -0
- package/dist/components/form/radio-group/radio-group.component.d.ts +1 -0
- package/dist/components/input/input.component.d.ts +1 -0
- package/dist/components/number-input/number-input.component.d.ts +1 -0
- package/dist/components/radio-button/radio-button.component.d.ts +1 -0
- package/dist/components/select/select.component.d.ts +1 -0
- package/dist/components/switch/switch.component.d.ts +1 -0
- package/dist/components/textarea/textarea.component.d.ts +1 -0
- package/dist/components/timepicker/timepicker.component.d.ts +1 -0
- package/dist/{components-CA_k-c0E.js → components-Bo0Y80lA.js} +4685 -4670
- package/dist/components-Bo0Y80lA.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/components.native.css +11 -0
- package/dist/components.native.css.map +1 -1
- package/dist/dds.js +1 -1
- package/dist/internal/mixin/labelableMixin.d.ts +1 -0
- package/dist/manifest/types/vue/index.d.ts +457 -427
- package/dist/manifest/vscode.html-custom-data.json +288 -288
- package/dist/manifest/web-types.json +771 -696
- package/dist/react/dap-ds-checkbox/index.d.ts +1 -0
- package/dist/react/dap-ds-code-puncher/index.d.ts +1 -0
- package/dist/react/dap-ds-combobox/index.d.ts +1 -0
- package/dist/react/dap-ds-datepicker/index.d.ts +1 -0
- package/dist/react/dap-ds-file-input/index.d.ts +1 -0
- package/dist/react/dap-ds-form-label/index.d.ts +1 -0
- package/dist/react/dap-ds-input/index.d.ts +1 -0
- package/dist/react/dap-ds-input-group/index.d.ts +1 -0
- package/dist/react/dap-ds-number-input/index.d.ts +1 -0
- package/dist/react/dap-ds-radio-button/index.d.ts +1 -0
- package/dist/react/dap-ds-radio-group/index.d.ts +1 -0
- package/dist/react/dap-ds-select/index.d.ts +1 -0
- package/dist/react/dap-ds-switch/index.d.ts +1 -0
- package/dist/react/dap-ds-textarea/index.d.ts +1 -0
- package/dist/react/dap-ds-timepicker/index.d.ts +1 -0
- package/dist/react/index.d.ts +15 -15
- package/dist/react-types.ts +15 -15
- package/dist/react.js +181 -181
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-CA_k-c0E.js.map +0 -1
|
@@ -14,6 +14,7 @@ import { LabeledChoiceElement } from '../../internal/mixin/labeledChoiceElement'
|
|
|
14
14
|
* @property {string} value - The value of the checkbox.
|
|
15
15
|
* @property {boolean} checked - Whether the checkbox is checked.
|
|
16
16
|
* @property {string} label - The label of the checkbox.
|
|
17
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
17
18
|
* @property {string} description - The description of the checkbox.
|
|
18
19
|
* @property {boolean} disabled - Whether the checkbox is disabled.
|
|
19
20
|
* @property {boolean} readonly - Whether the checkbox is readonly (cannot be changed but value is submitted with form).
|
|
@@ -13,6 +13,7 @@ import { GenericFormElement } from '../../internal/mixin/genericFormElement';
|
|
|
13
13
|
* @property {string} placeholder - Placeholder character for empty slots.
|
|
14
14
|
* @property {'xs' | 'sm' | 'lg'} size - The size of the slots. Default is 'sm'.
|
|
15
15
|
* @property {string} label - The label of the component.
|
|
16
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
16
17
|
* @property {string} description - The description of the component.
|
|
17
18
|
* @property {string} tooltip - The tooltip of the component.
|
|
18
19
|
* @property {string} feedback - The feedback message.
|
|
@@ -18,6 +18,7 @@ import { default as ComboboxBaseElement } from './comboboxBase';
|
|
|
18
18
|
* @property {boolean} opened - Whether the select dropdown is opened.
|
|
19
19
|
* @property {boolean} sync - The sync mode of the select dropdown. How the dropdown item size is synced to the trigger element'.
|
|
20
20
|
* @property {string} label - The label of the select.
|
|
21
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
21
22
|
* @property {string} description - The description of the select.
|
|
22
23
|
* @property {string} tooltip - The tooltip of the select.
|
|
23
24
|
* @property {'top' | 'right' | 'bottom' | 'left'} tooltipPlacement - The tooltip placement of the input.
|
|
@@ -10,6 +10,7 @@ import { GenericFormElement } from '../../internal/mixin/genericFormElement';
|
|
|
10
10
|
*
|
|
11
11
|
* @property {Dayjs} value - The value of the datepicker.
|
|
12
12
|
* @property {string} label - The label of the datepicker.
|
|
13
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
13
14
|
* @property {string} description - The description of the datepicker.
|
|
14
15
|
* @property {'xs' | 'sm' | 'sm'} size - The size of the datepicker.
|
|
15
16
|
* @property {boolean} disabled - The disabled state of the datepicker.
|
|
@@ -11,6 +11,7 @@ import { default as DapDSFileInputList } from './file-input-list.component';
|
|
|
11
11
|
* @property {string} value - The value of the file input.
|
|
12
12
|
* @property {'success' | 'error'} status - The status of the file input.
|
|
13
13
|
* @property {string} label - The label for the file input.
|
|
14
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
14
15
|
* @property {string} description - The description for the file input.
|
|
15
16
|
* @property {string} tooltip - The tooltip for the file input.
|
|
16
17
|
* @property {'top' | 'right' | 'bottom' | 'left'} tooltipPlacement - The tooltip placement of the input.
|
|
@@ -19,6 +19,7 @@ declare const DapDSFormLabel_base: {
|
|
|
19
19
|
* @property {boolean} required - If the label is required.
|
|
20
20
|
* @property {string} requiredLabel - Indicator of required text. (default: '*')
|
|
21
21
|
* @property {string} label - The label text.
|
|
22
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
22
23
|
*
|
|
23
24
|
* @csspart base - The main form label container.
|
|
24
25
|
* @csspart required - The required indicator of the form label.
|
|
@@ -9,6 +9,7 @@ import { GenericFormElement } from '../../../internal/mixin/genericFormElement';
|
|
|
9
9
|
* @group form
|
|
10
10
|
*
|
|
11
11
|
* @property {string} label - The label of the input group.
|
|
12
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
12
13
|
* @property {string} description - The description of the input group.
|
|
13
14
|
* @property {string} tooltip - The tooltip of the input group.
|
|
14
15
|
* @property {'top' | 'right' | 'bottom' | 'left'} tooltipPlacement - The tooltip placement of the input group.
|
|
@@ -16,6 +16,7 @@ import { GenericFormElement } from '../../../internal/mixin/genericFormElement';
|
|
|
16
16
|
* @property {boolean} disabled - Whether the radio group is disabled.
|
|
17
17
|
* @property {boolean} required - Whether the radio group is required.
|
|
18
18
|
* @property {string} label - The label of the radio group.
|
|
19
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
19
20
|
* @property {string} description - The description of the radio group.
|
|
20
21
|
* @property {string} tooltip - The tooltip of the radio group.
|
|
21
22
|
* @property {'top' | 'right' | 'bottom' | 'left'} tooltipPlacement - The tooltip placement of the radio group.
|
|
@@ -6,6 +6,7 @@ import { InputBaseElement } from './input-base-element';
|
|
|
6
6
|
* @title - Input
|
|
7
7
|
*
|
|
8
8
|
* @property {string} label - The label of the input.
|
|
9
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
9
10
|
* @property {string} description - The description of the input.
|
|
10
11
|
* @property {string} optionalLabel - Text of optional label.
|
|
11
12
|
* @property {string} requiredLabel - Text of required indicator. (default: '*')
|
|
@@ -7,6 +7,7 @@ import { InputBaseElement } from '../input/input-base-element';
|
|
|
7
7
|
* @title - Number input
|
|
8
8
|
*
|
|
9
9
|
* @property {string} label - The label of the input.
|
|
10
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
10
11
|
* @property {string} placeholder - The placeholder of the input.
|
|
11
12
|
* @property {string} description - The description of the input.
|
|
12
13
|
* @property {string} tooltip - The tooltip of the input.
|
|
@@ -15,6 +15,7 @@ import { LabeledChoiceElement } from '../../internal/mixin/labeledChoiceElement'
|
|
|
15
15
|
* @property {string} value - The value of the radio button.
|
|
16
16
|
* @property {boolean} checked - Whether the radio button is checked.
|
|
17
17
|
* @property {string} label - The label of the radio button.
|
|
18
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
18
19
|
* @property {string} description - The description of the radio button.
|
|
19
20
|
* @property {boolean} disabled - Whether the radio button is disabled.
|
|
20
21
|
* @property {boolean} readonly - Whether the radio button is readonly (cannot be changed but value is submitted with form).
|
|
@@ -16,6 +16,7 @@ import { default as DapDSOptionList } from '../option-list/option-list.component
|
|
|
16
16
|
*
|
|
17
17
|
* @property {string} value - The value of the select.
|
|
18
18
|
* @property {string} label - The label of the select.
|
|
19
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
19
20
|
* @property {string} description - The description of the select.
|
|
20
21
|
* @property {string} tooltip - The tooltip of the select.
|
|
21
22
|
* @property {'top' | 'right' | 'bottom' | 'left'} tooltipPlacement - The tooltip placement of the select.
|
|
@@ -8,6 +8,7 @@ import { LabeledChoiceElement } from '../../internal/mixin/labeledChoiceElement'
|
|
|
8
8
|
* @property {string} name - The name of the switch.
|
|
9
9
|
* @property {string} value - The value of the switch.
|
|
10
10
|
* @property {string} label - The label of the switch.
|
|
11
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
11
12
|
* @property {string} description - The description of the switch.
|
|
12
13
|
* @property {boolean} checked - The checked state of the switch.
|
|
13
14
|
* @property {'xs' | 'sm' | 'lg'} size - The size of the switch.
|
|
@@ -15,6 +15,7 @@ import { GenericFormElement } from '../../internal/mixin/genericFormElement';
|
|
|
15
15
|
* @property {boolean} readonly - The readonly state of the textarea.
|
|
16
16
|
* @property {boolean} required - The required state of the textarea.
|
|
17
17
|
* @property {string} label - The label of the textarea.
|
|
18
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
18
19
|
* @property {string} description - The description of the textarea.
|
|
19
20
|
* @property {string} feedback - The feedback of the textarea.
|
|
20
21
|
* @property {'negative' | 'positive' | 'warning'} feedbackType - The feedback type of the textarea. Can be `negative`, `positive`, or `warning`.
|
|
@@ -10,6 +10,7 @@ import { GenericFormElement } from '../../internal/mixin/genericFormElement';
|
|
|
10
10
|
*
|
|
11
11
|
* @property {Dayjs | string} value - The value of the timepicker. Can be a Dayjs object or a string in 'HH:mm' format.
|
|
12
12
|
* @property {string} label - The label of the timepicker.
|
|
13
|
+
* @property {boolean} hideLabel - Visually hides the label while keeping it available to assistive technology. (default: false)
|
|
13
14
|
* @property {string} description - The description of the timepicker.
|
|
14
15
|
* @property {'xs' | 'sm' | 'lg'} size - The size of the timepicker.
|
|
15
16
|
* @property {boolean} disabled - The disabled state of the timepicker.
|