dap-design-system 0.35.21 → 0.35.23

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/dds.d.ts CHANGED
@@ -790,8 +790,8 @@ export declare type CSSFlexDirection = 'column' | 'row' | 'column-reverse' | 'ro
790
790
  * @property { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' } variant - The variant of the accordion.
791
791
  * @property {boolean} lastItem - Whether the accordion is the last item.
792
792
  *
793
- * @event dds-opened - Event fired when the accordion is opened.
794
- * @event dds-closed - Event fired when the accordion is closed.
793
+ * @event {{ open: boolean, item: AccordionBaseElement }} dds-opened - Event fired when the accordion is opened.
794
+ * @event {{ open: boolean, item: AccordionBaseElement }} dds-closed - Event fired when the accordion is closed.
795
795
  *
796
796
  * @slot default - The content of the accordion.
797
797
  * @slot heading - The heading of the accordion.
@@ -838,8 +838,6 @@ export declare class DapDSAccordion extends AccordionBaseElement {
838
838
  * @summary An accordion group is a collection of accordion components.
839
839
  * @title - Accordion group
840
840
  * @group accordion
841
- * *
842
- * @event dds-change - Event fired when an accordion is opened or closed.
843
841
  *
844
842
  * @slot - The content of the accordion group.
845
843
  *
@@ -1012,7 +1010,7 @@ export declare class DapDSBadge extends DdsElement {
1012
1010
  * @summary A banner is a message displayed at the top of the page to provide important information to the user.
1013
1011
  * @title - Banner
1014
1012
  *
1015
- * @event dds-close - Event fired when the banner is closed.
1013
+ * @event {{ void }} dds-close - Event fired when the banner is closed.
1016
1014
  *
1017
1015
  * @slot - The content of the banner.
1018
1016
  * @slot actions - Actions of banner
@@ -1355,7 +1353,7 @@ export declare class DapDSButton extends GenericFormElement {
1355
1353
  * @element dap-ds-calendar
1356
1354
  * @title - Calendar
1357
1355
  *
1358
- * @event dds-change - Fired when the calendar value changes.
1356
+ * @event {{ value: Dayjs }} dds-change - Fired when the calendar value changes.
1359
1357
  *
1360
1358
  * @slot - The content of the calendar.
1361
1359
  *
@@ -1508,7 +1506,7 @@ declare const DapDSCalendarCell_base: typeof DdsElement & {
1508
1506
  * @element dap-ds-callout
1509
1507
  * @title - Callout
1510
1508
  *
1511
- * @event dds-close - Fired when the close button is clicked.
1509
+ * @event {{ void }} dds-close - Fired when the close button is clicked.
1512
1510
  *
1513
1511
  * @slot - The content of the callout.
1514
1512
  * @slot title - The title of the callout.
@@ -1844,10 +1842,10 @@ declare const DapDSCardTitle_base: typeof DdsElement & {
1844
1842
  * @element dap-ds-checkbox
1845
1843
  * @title - Checkbox
1846
1844
  *
1847
- * @event dds-change - Fired when the checkbox is checked or unchecked.
1848
- * @event dds-blur - Emitted when the checkbox loses focus.
1849
- * @event dds-focus - Emitted when the checkbox gains focus.
1850
- * @event dds-input - Emitted when the checkbox receives input.
1845
+ * @event {{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, type: 'checkbox' }} dds-change - Fired when the checkbox is checked or unchecked.
1846
+ * @event {{ void }} dds-blur - Emitted when the checkbox loses focus.
1847
+ * @event {{ void }} dds-focus - Emitted when the checkbox gains focus.
1848
+ * @event {{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean }} dds-input - Emitted when the checkbox receives input.
1851
1849
  *
1852
1850
  * @property {string} name - The name of the checkbox.
1853
1851
  * @property {string} value - The value of the checkbox.
@@ -1927,12 +1925,12 @@ export declare class DapDSCheckbox extends LabeledChoiceElement {
1927
1925
  * @element dap-ds-combobox
1928
1926
  * @title - Combobox
1929
1927
  *
1930
- * @event dds-change - Fired when the select value changes.
1931
- * @event dds-blur - Emitted when the select loses focus.
1932
- * @event dds-focus - Emitted when the select gains focus.
1933
- * @event dds-clear - Emitted when the select is cleared.
1934
- * @event dds-search - Emitted when the manual input value changes.
1935
- * @event dds-input - Emitted when typing happens in the input.
1928
+ * @event {{ value }} dds-change - Fired when the select value changes.
1929
+ * @event {{ void }} dds-blur - Emitted when the select loses focus.
1930
+ * @event {{ void }} dds-focus - Emitted when the select gains focus.
1931
+ * @event {{ void }} dds-clear - Emitted when the select is cleared.
1932
+ * @event {{ search: string }} dds-search - Emitted when the manual input value changes.
1933
+ * @event {{ input: string, originalEvent: Event }} dds-input - Emitted when typing happens in the input.
1936
1934
  *
1937
1935
  * @property {string} value - The value of the select.
1938
1936
  * @property {string} placeholder - The placeholder of the select.
@@ -2073,7 +2071,7 @@ export declare class DapDSCommandGroup extends DdsElement {
2073
2071
  * @title - Command item
2074
2072
  * @group command
2075
2073
  *
2076
- * @event dds-command-item-click - Fired when the command item is clicked.
2074
+ * @event {{ value: string, closeOnSelect: boolean }} dds-command-item-click - Fired when the command item is clicked.
2077
2075
  *
2078
2076
  * @slot - The label of the command item.
2079
2077
  * @slot check - The check of the command item.
@@ -2140,8 +2138,8 @@ export declare class DapDSCommandItem extends DdsElement {
2140
2138
  *
2141
2139
  * @slot - The content switcher items.
2142
2140
  *
2143
- * @event dds-change - Fired when the content switcher is changed.
2144
- * *
2141
+ * @event {{ value: string, selected: boolean }} dds-change - Fired when the content switcher is changed.
2142
+ *
2145
2143
  * @csspart base - The main content switcher container.
2146
2144
  *
2147
2145
  * @cssproperty --dds-content-switcher-min-width - The minimum width of the content switcher (default: var(--dds-spacing-4000, 160px))
@@ -2227,13 +2225,13 @@ export declare class DapDSContentSwitcherItem extends DdsElement {
2227
2225
  * @property {boolean} subtle - The weight of the label. Default is `false`
2228
2226
  * @property {string} copyButtonAriaLabel - The aria label of the copy button.
2229
2227
  *
2230
- * @event dds-copy - Fired when the user clicks on the copy button.
2231
- * @event dds-change - Fired when the input value changes.
2232
- * @event dds-input - Fired when the input value changes.
2233
- * @event dds-keydown - Fired when a key is pressed down.
2234
- * @event dds-blur - Fired when the input loses focus.
2235
- * @event dds-focus - Emitted when the input gains focus.
2236
- * @event dds-not-allowed - Emitted when the value cannot be copied.
2228
+ * @event {{ value: string }} dds-copy - Fired when the user clicks on the copy button.
2229
+ * @event {{ value: string }} dds-change - Fired when the input value changes.
2230
+ * @event {{ value: string }} dds-input - Fired when the input value changes.
2231
+ * @event {{ value: string, originalEvent: Event }} dds-keydown - Fired when a key is pressed down.
2232
+ * @event {{ void }} dds-blur - Fired when the input loses focus.
2233
+ * @event {{ void }} dds-focus - Emitted when the input gains focus.
2234
+ * @event {{ void }} dds-not-allowed - Emitted when the value cannot be copied.
2237
2235
  *
2238
2236
  * @cssproperty --dds-input-height - The height of the input. Default is var(--dds-spacing-1000).
2239
2237
  * @cssproperty --dds-input-padding - The padding of the input. Default is var(--dds-spacing-300).
@@ -2307,10 +2305,10 @@ export declare class DapDSDAPBadge extends DdsElement {
2307
2305
  * @title - Data table
2308
2306
  * @generic T
2309
2307
  *
2310
- * @event dds-sorting-change - Fired when the sorting of the table changes.
2311
- * @event dds-selection-change - Fired when the selection of the table changes.
2312
- * @event dds-pagination-change - Fired when the pagination of the table changes.
2313
- * @event dds-row-click - Fired when a row is clicked.
2308
+ * @event {{ sorting: SortingState }} dds-sorting-change - Fired when the sorting of the table changes.
2309
+ * @event {{ selection: RowSelectionState }} dds-selection-change - Fired when the selection of the table changes.
2310
+ * @event {{ pagination: PaginationState }} dds-pagination-change - Fired when the pagination of the table changes.
2311
+ * @event {{ row: Row<T> }} dds-row-click - Fired when a row is clicked.
2314
2312
  *
2315
2313
  * @csspart base - The main table container.
2316
2314
  * @csspart header - The header of the table.
@@ -2374,7 +2372,7 @@ export declare class DapDSDataTable<T> extends DdsElement {
2374
2372
  /** Number of rows in the table */
2375
2373
  rowCount?: number;
2376
2374
  /** Whether to show the pager component */
2377
- pager: string;
2375
+ pager: boolean;
2378
2376
  /** Show the page size options. */
2379
2377
  showPageSizeOptions: string;
2380
2378
  /** Show the page index. */
@@ -2401,7 +2399,9 @@ export declare class DapDSDataTable<T> extends DdsElement {
2401
2399
  * @type {(pageIndex: number, pageSize: number, totalRows: number) => string}
2402
2400
  */
2403
2401
  pageStateText: (pageIndex: number, pageSize: number, totalRows: number) => string;
2404
- /** Available page size options for the pager */
2402
+ /** Available page size options for the pager
2403
+ * @type {number[]}
2404
+ */
2405
2405
  pageSizeOptions: number[];
2406
2406
  /** Sorting state of the table */
2407
2407
  sorting: SortingState;
@@ -2449,13 +2449,13 @@ export declare class DapDSDataTable<T> extends DdsElement {
2449
2449
  * @property {string} autocomplete - The autocomplete of the datepicker.
2450
2450
  * @property {boolean} autofocus - The autofocus of the datepicker.
2451
2451
  *
2452
- * @event dds-change - Fired when the datepicker value changes.
2453
- * @event dds-input - Fired when the datepicker input value changes.
2454
- * @event dds-valid-date - Fired when the datepicker input value is valid. Happens on manual input typing.
2455
- * @event dds-invalid-date - Fired when the datepicker input value is invalid. Type can be 'invalid' or 'out-of-range'. Happens on manual input typing.
2456
- * @event dds-clear - Fired when the datepicker is cleared.
2457
- * @event dds-focus - Emitted when the datepicker gains focus.
2458
- * @event dds-blur - Emitted when the datepicker loses focus.
2452
+ * @event {{ value: string }} dds-change - Fired when the datepicker value changes.
2453
+ * @event {{ value: string }} dds-input - Fired when the datepicker input value changes.
2454
+ * @event {{ value: string }} dds-valid-date - Fired when the datepicker input value is valid. Happens on manual input typing.
2455
+ * @event {{ value: string, type: 'invalid' | 'out-of-range' }} dds-invalid-date - Fired when the datepicker input value is invalid. Happens on manual input typing.
2456
+ * @event {{ void }} dds-clear - Fired when the datepicker is cleared.
2457
+ * @event {{ void }} dds-focus - Emitted when the datepicker gains focus.
2458
+ * @event {{ void }} dds-blur - Emitted when the datepicker loses focus.
2459
2459
  *
2460
2460
  * @csspart base - The main datepicker container.
2461
2461
  * @csspart calendar - The calendar of the datepicker.
@@ -2673,13 +2673,13 @@ declare const DapDSFeedback_base: typeof DdsElement & {
2673
2673
  * @property {boolean} optional - Whether the file input is optional.
2674
2674
  * @property {boolean} subtle - Font weight of the feedback label. Default is `false` which is bold.
2675
2675
  *
2676
- * @event dds-upload-start - Fired when a file upload starts.
2677
- * @event dds-upload-progress - Fired during file upload progress.
2678
- * @event dds-upload-complete - Fired when a file upload completes successfully.
2679
- * @event dds-upload-error - Fired when a file upload encounters an error.
2680
- * @event dds-all-uploads-complete - Fired when all file uploads are complete.
2681
- * @event dds-file-removed - Fired when a file is removed from the file input.
2682
- * @event dds-file-change - Fired when the file input value changes.
2676
+ * @event {{ file: File }} dds-upload-start - Fired when a file upload starts.
2677
+ * @event {{ file: File, progress: number }} dds-upload-progress - Fired during file upload progress.
2678
+ * @event {{ file: File, item: DapDSFileInputListItem, result: any }} dds-upload-complete - Fired when a file upload completes successfully.
2679
+ * @event {{ file: File, item: DapDSFileInputListItem, error: Error }} dds-upload-error - Fired when a file upload encounters an error.
2680
+ * @event {{ void }} dds-all-uploads-complete - Fired when all file uploads are complete.
2681
+ * @event {{ file: FileListElement }} dds-file-removed - Fired when a file is removed from the file input.
2682
+ * @event {{ files: File[] }} dds-file-change - Fired when the file input value changes.
2683
2683
  *
2684
2684
  * @csspart base - The main file input container.
2685
2685
  * @csspart input - The file input control.
@@ -2776,7 +2776,7 @@ declare const DapDSFileInputList_base: typeof DdsElement & {
2776
2776
  * @title - File input list item
2777
2777
  * @group file-input
2778
2778
  *
2779
- * @event dds-file-remove - Dispatched when a file is removed from the list.
2779
+ * @event {{ file: FileListElement }} dds-file-remove - Dispatched when a file is removed from the list.
2780
2780
  *
2781
2781
  * @csspart base - The main file input list item container.
2782
2782
  * @csspart feedback - The feedback container.
@@ -3060,11 +3060,11 @@ export declare class DapDSIconButton extends DdsElement {
3060
3060
  * @cssproperty --dds-input-addon-success-background - The background color of the success input addon. Default is var(--dds-background-ui-positive-enabled).
3061
3061
  * @cssproperty --dds-input-addon-error-background - The background color of the error input addon. Default is var(--dds-background-ui-negative-enabled).
3062
3062
  *
3063
- * @event dds-change - Fired when the input value changes.
3064
- * @event dds-input - Fired when the input value changes.
3065
- * @event dds-keydown - Fired when a key is pressed down.
3066
- * @event dds-blur - Fired when the input loses focus.
3067
- * @event dds-focus - Emitted when the input gains focus.
3063
+ * @event {{ value: string }} dds-change - Fired when the input value changes.
3064
+ * @event {{ value: string }} dds-input - Fired when the input value changes.
3065
+ * @event {{ value: string, originalEvent: Event }} dds-keydown - Fired when a key is pressed down.
3066
+ * @event {{ void }} dds-blur - Fired when the input loses focus.
3067
+ * @event {{ void }} dds-focus - Emitted when the input gains focus.
3068
3068
  *
3069
3069
  * @slot postfix - The postfix of the input.
3070
3070
  * @slot prefix - The prefix of the input.
@@ -3179,7 +3179,7 @@ declare const DapDSLabel_base: {
3179
3179
  * @element dap-ds-link
3180
3180
  * @title - Link
3181
3181
  *
3182
- * @event dds-click - Emitted when the link is clicked.
3182
+ * @event {{ event: Event }} dds-click - Emitted when the link is clicked.
3183
3183
  *
3184
3184
  * @slot - The text of the link.
3185
3185
  *
@@ -3399,13 +3399,13 @@ export declare class DapDSListItem extends DdsElement {
3399
3399
  * @property {string} header - Whether the modal should have a header. Default is true.
3400
3400
  * @property {boolean} useNativeFocus - Whether the modal should use native focus. Default is false.
3401
3401
  *
3402
- * @event dds-before-open - Fires before the modal opens.
3403
- * @event dds-opened - Fires after the modal opens.
3404
- * @event dds-before-close - Fires before the modal closes.
3405
- * @event dds-closed - Fires after the modal closed.
3406
- * @event dds-close - Fires when the modal is closes. You can prevent the modal from closing by calling `event.preventDefault()`.
3407
- * @event dds-ok - Fires when the OK button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
3408
- * @event dds-cancel - Fires when the Cancel button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
3402
+ * @event {{ void }} dds-before-open - Fires before the modal opens.
3403
+ * @event {{ void }} dds-opened - Fires after the modal opens.
3404
+ * @event {{ void }} dds-before-close - Fires before the modal closes.
3405
+ * @event {{ void }} dds-closed - Fires after the modal closed.
3406
+ * @event {{ void }} dds-close - Fires when the modal is closes. You can prevent the modal from closing by calling `event.preventDefault()`.
3407
+ * @event {{ void }} dds-ok - Fires when the OK button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
3408
+ * @event {{ void }} dds-cancel - Fires when the Cancel button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
3409
3409
  *
3410
3410
  * @slot - The content of the modal.
3411
3411
  * @slot title - The title of the modal.
@@ -3533,11 +3533,11 @@ export declare class DapDSNotificationBadge extends DdsElement {
3533
3533
  * @property {boolean} disableEnter - Disables the enter key from being used to submit the form.
3534
3534
  * @property {boolean} hideControls - Hides the increment and decrement buttons.
3535
3535
  *
3536
- * @event dds-change - Fired when the input value changes.
3537
- * @event dds-input - Fired when the input value changes.
3538
- * @event dds-keydown - Fired when a key is pressed down.
3539
- * @event dds-blur - Fired when the input loses focus.
3540
- * @event dds-focus - Emitted when the input gains focus.
3536
+ * @event {{ value: string }} dds-change - Fired when the input value changes.
3537
+ * @event {{ value: string }} dds-input - Fired when the input value changes.
3538
+ * @event {{ value: string, originalEvent: Event }} dds-keydown - Fired when a key is pressed down.
3539
+ * @event {{ void }} dds-blur - Fired when the input loses focus.
3540
+ * @event {{ void }} dds-focus - Emitted when the input gains focus.
3541
3541
  *
3542
3542
  * @slot feedback-icon - The custom icon of the feedback.
3543
3543
  *
@@ -3596,8 +3596,8 @@ export declare class DapDSNumberInput extends InputBaseElement {
3596
3596
  * @property { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' } variant - The variant of the accordion.
3597
3597
  * @property {boolean} lastItem - Whether the accordion is the last item.
3598
3598
  *
3599
- * @event dds-opened - Event fired when the accordion is opened.
3600
- * @event dds-closed - Event fired when the accordion is closed.
3599
+ * @event {{ void }} dds-opened - Event fired when the accordion is opened.
3600
+ * @event {{ void }} dds-closed - Event fired when the accordion is closed.
3601
3601
  *
3602
3602
  * @slot default - The content of the accordion.
3603
3603
  * @slot heading - The heading of the accordion.
@@ -3705,9 +3705,9 @@ declare const DapDSOptionItem_base: typeof DdsElement & {
3705
3705
  * @element dap-ds-option-list
3706
3706
  * @title - Option list
3707
3707
  *
3708
- * @event dds-cancel - Fired when the escape key is pressed.
3709
- * @event dds-option-change - Fired when the option list value changes.
3710
- * @event dds-keydown - Fired when a key is pressed down.
3708
+ * @event {{ void }} dds-cancel - Fired when the escape key is pressed.
3709
+ * @event {{ option: DapDSOptionItem, value: string, index: number, text: string }} dds-option-change - Fired when the option list value changes.
3710
+ * @event {{ void }} dds-keydown - Fired when a key is pressed down.
3711
3711
  *
3712
3712
  * @csspart base - The main option list container.
3713
3713
  *
@@ -3809,7 +3809,7 @@ export declare class DapDSOverlay extends DdsElement {
3809
3809
  * @element dap-ds-pager
3810
3810
  * @title - Pager
3811
3811
  *
3812
- * @event dds-pagination-change - Event fired when the pagination changes
3812
+ * @event {{ action: string, pagination: { pageIndex: number, pageSize: number } }} dds-pagination-change - Event fired when the pagination changes
3813
3813
  *
3814
3814
  * @csspart base - The main pager container.
3815
3815
  * @csspart first - The first page button.
@@ -3899,11 +3899,11 @@ export declare class DapDSPager extends DdsElement {
3899
3899
  * @property {string} optionalLabel - The optional label of the password input.
3900
3900
  * @property {boolean} subtle - The weight of the label. Default is `false`
3901
3901
  *
3902
- * @event dds-change - Fired when the input value changes.
3903
- * @event dds-input - Fired when the input value changes.
3904
- * @event dds-keydown - Fired when a key is pressed down.
3905
- * @event dds-blur - Fired when the input loses focus.
3906
- * @event dds-focus - Emitted when the input gains focus.
3902
+ * @event {{ value: string }} dds-change - Fired when the input value changes.
3903
+ * @event {{ value: string }} dds-input - Fired when the input value changes.
3904
+ * @event {{ value: string, originalEvent: Event }} dds-keydown - Fired when a key is pressed down.
3905
+ * @event {{ void }} dds-blur - Fired when the input loses focus.
3906
+ * @event {{ void }} dds-focus - Emitted when the input gains focus.
3907
3907
  *
3908
3908
  * @cssproperty --dds-input-height - The height of the input. Default is var(--dds-spacing-1000).
3909
3909
  * @cssproperty --dds-input-padding - The padding of the input. Default is var(--dds-spacing-300).
@@ -3946,8 +3946,8 @@ export declare class DapDSPasswordInput extends InputBaseElement {
3946
3946
  *
3947
3947
  * @property {'xs' | 'sm' | 'lg'} size - The size of the popup.
3948
3948
  *
3949
- * @event dds-opened - Fired when the popup is opened.
3950
- * @event dds-closed - Fired when the popup is closed.
3949
+ * @event {{ void }} dds-opened - Fired when the popup is opened.
3950
+ * @event {{ void }} dds-closed - Fired when the popup is closed.
3951
3951
  *
3952
3952
  * @slot trigger - The trigger of the popup.
3953
3953
  * @slot - The content of the popup.
@@ -4028,10 +4028,10 @@ declare const DapDSPopup_base: typeof DdsElement & {
4028
4028
  * @property {'left' | 'right'} labelPlacement - The placement of the label.
4029
4029
  * @property {'top' | 'bottom'} descriptionPlacement - The placement of the description.
4030
4030
  *
4031
- * @event dds-change - Fired when the radio button is checked.
4032
- * @event dds-blur - Emitted when the radio button loses focus.
4033
- * @event dds-focus - Emitted when the radio button gains focus.
4034
- * @event dds-input - Emitted when the radio button receives input.
4031
+ * @event {{ value: string }} dds-change - Fired when the radio button is checked.
4032
+ * @event {{ void }} dds-blur - Emitted when the radio button loses focus.
4033
+ * @event {{ void }} dds-focus - Emitted when the radio button gains focus.
4034
+ * @event {{ value: string }} dds-input - Emitted when the radio button receives input.
4035
4035
  *
4036
4036
  * @csspart base - The main radio button container.
4037
4037
  * @csspart wrapper - The wrapper of the radio button.
@@ -4161,7 +4161,7 @@ export declare class DapDSRadioGroup extends GenericFormElement {
4161
4161
  * @element dap-ds-rating
4162
4162
  * @title - Rating
4163
4163
  *
4164
- * @event dds-change - Event fired when the rating value changes.
4164
+ * @event {{ value: number }} dds-change - Event fired when the rating value changes.
4165
4165
  *
4166
4166
  * @csspart base - The main rating container.
4167
4167
  * @csspart star - The star element.
@@ -4321,9 +4321,9 @@ export declare class DapDSSearch extends ComboboxBaseElement {
4321
4321
  * @element dap-ds-select
4322
4322
  * @title - Select
4323
4323
  *
4324
- * @event dds-change - Fired when the select value changes.
4325
- * @event dds-blur - Emitted when the select loses focus.
4326
- * @event dds-focus - Emitted when the select gains focus.
4324
+ * @event {{ value: string }} dds-change - Fired when the select value changes.
4325
+ * @event {{ void }} dds-blur - Emitted when the select loses focus.
4326
+ * @event {{ void }} dds-focus - Emitted when the select gains focus.
4327
4327
  *
4328
4328
  * @property {string} value - The value of the select.
4329
4329
  * @property {string} label - The label of the select.
@@ -4441,7 +4441,7 @@ export declare class DapDSSelect extends GenericFormElement {
4441
4441
  * @element dap-ds-sidenav
4442
4442
  * @title - Side navigation
4443
4443
  *
4444
- * @event dds-item-click - Event fired when the side navigation item is clicked.
4444
+ * @event {{ href: string, event: Event }} dds-item-click - Event fired when the side navigation item is clicked.
4445
4445
  *
4446
4446
  * @slot - The content of the side navigation.
4447
4447
  *
@@ -4468,7 +4468,7 @@ export declare class DapDSSideNav extends DdsElement {
4468
4468
  * @title - Side navigation group
4469
4469
  * @group side-navigation
4470
4470
  *
4471
- * @event dds-item-click - Event fired when the side navigation item is clicked.
4471
+ * @event {{ href: string, event: Event }} dds-item-click - Event fired when the side navigation item is clicked.
4472
4472
  *
4473
4473
  * @slot - The content of the side navigation group.
4474
4474
  * @slot submenu - The submenu of the side navigation group.
@@ -4515,7 +4515,7 @@ export declare class DapDSSideNavGroup extends DdsElement {
4515
4515
  * @title - Side navigation item
4516
4516
  * @group side-navigation
4517
4517
  *
4518
- * @event dds-item-click - Event fired when the side navigation item is clicked.
4518
+ * @event {{ href: string, event: Event }} dds-item-click - Event fired when the side navigation item is clicked.
4519
4519
  *
4520
4520
  * @slot - The content of the side navigation item.
4521
4521
  * @slot suffix - The suffix of the side navigation item.
@@ -4629,7 +4629,7 @@ export declare class DapDSSnackbar extends DdsElement {
4629
4629
  * @title - Snackbar message
4630
4630
  * @group snackbar
4631
4631
  *
4632
- * @event dds-close - Fires when the snackbar closes.
4632
+ * @event {{ id: string }} dds-close - Fires when the snackbar closes.
4633
4633
  *
4634
4634
  * @slot default - The content of the snackbar.
4635
4635
  *
@@ -4771,10 +4771,10 @@ export declare class DapDSStack extends DdsElement {
4771
4771
  * @cssProperty --dds-switch-border-color - Border color of the switch.
4772
4772
  * @cssProperty --dds-switch-high-contrast-border-color - Border color of the switch in high contrast mode.
4773
4773
  *
4774
- * @event dds-change - Fired when the input value changes.
4775
- * @event dds-blur - Emitted when the input loses focus.
4776
- * @event dds-focus - Emitted when the input gains focus.
4777
- * @event dds-input - Emitted when the input receives input.
4774
+ * @event {{ value: string }} dds-change - Fired when the input value changes.
4775
+ * @event {{ void }} dds-blur - Emitted when the input loses focus.
4776
+ * @event {{ void }} dds-focus - Emitted when the input gains focus.
4777
+ * @event {{ value: string }} dds-input - Emitted when the input receives input.
4778
4778
  *
4779
4779
  * @csspart base - The main switch container.
4780
4780
  * @csspart baselabel - The main label container
@@ -4827,7 +4827,7 @@ export declare class DapDSTab extends DdsElement {
4827
4827
  * @title - Tab group
4828
4828
  * @group tab
4829
4829
  *
4830
- * @event dds-tab-select - Fired when select a new tab.
4830
+ * @event {{ tabId: string }} dds-tab-select - Fired when select a new tab.
4831
4831
  *
4832
4832
  * @slot - The tab items.
4833
4833
  *
@@ -5004,13 +5004,13 @@ export declare class DapDSTableRow extends DdsElement {
5004
5004
  * @property {boolean} subtle - The weight of the label. Default is `false`
5005
5005
  * @property {boolean} autofocus - The autofocus state of the textarea.
5006
5006
  *
5007
- * @event dds-count-change - Fires when the count of the textarea changes.
5008
- * @event dds-change - Fired when the textarea value changes.
5009
- * @event dds-input - Fired when the textarea value changes.
5010
- * @event dds-keydown - Fired when a key is pressed down.
5011
- * @event dds-blur - Fired when the textarea loses focus.
5012
- * @event dds-focus - Emitted when the textarea gains focus.
5013
- * @event dds-select - Emitted when select text in textarea.
5007
+ * @event {{ value: number }} dds-count-change - Fires when the count of the textarea changes.
5008
+ * @event {{ value: string }} dds-change - Fired when the textarea value changes.
5009
+ * @event {{ value: string }} dds-input - Fired when the textarea value changes.
5010
+ * @event {{ value: string, originalEvent: Event }} dds-keydown - Fired when a key is pressed down.
5011
+ * @event {{ void }} dds-blur - Fired when the textarea loses focus.
5012
+ * @event {{ void }} dds-focus - Emitted when the textarea gains focus.
5013
+ * @event {{ value: string }} dds-select - Emitted when select text in textarea.
5014
5014
  *
5015
5015
  * @slot feedback-icon - The custom icon of the feedback.
5016
5016
  *
@@ -5120,7 +5120,7 @@ export declare class DapDSTimelineItem extends DdsElement {
5120
5120
  *
5121
5121
  * @property {'sm' | 'lg'} size - The size of the toc. Default is `lg`.
5122
5122
  *
5123
- * @event dds-anchor-change - Event that is triggered when the anchor changes.
5123
+ * @event {{ selectedItem: HTMLAnchorElement, anchorElement: IntersectionObserverEntry | HTMLElement }} dds-anchor-change - Event that is triggered when the anchor changes.
5124
5124
  *
5125
5125
  * @csspart base - The main container of the toc.
5126
5126
  *
@@ -5324,11 +5324,11 @@ export declare class DapDSTooltip extends DdsElement {
5324
5324
  * @property {string} footer - Whether the tray should have a footer. Default is false.
5325
5325
  * @property {string} header - Whether the tray should have a header. Default is false.
5326
5326
  *
5327
- * @event dds-before-open - Fires before the tray opens.
5328
- * @event dds-opened - Fires after the tray opens.
5329
- * @event dds-before-close - Fires before the tray closes.
5330
- * @event dds-closed - Fires after the tray closed.
5331
- * @event dds-close - Fires when the tray is closes. You can prevent the tray from closing by calling `event.preventDefault()`.
5327
+ * @event {{ void }} dds-before-open - Fires before the tray opens.
5328
+ * @event {{ void }} dds-opened - Fires after the tray opens.
5329
+ * @event {{ void }} dds-before-close - Fires before the tray closes.
5330
+ * @event {{ void }} dds-closed - Fires after the tray closed.
5331
+ * @event {{ void }} dds-close - Fires when the tray is closes. You can prevent the tray from closing by calling `event.preventDefault()`.
5332
5332
  *
5333
5333
  * @slot - The content of the tray.
5334
5334
  * @slot header - The header of the tray.
@@ -7055,1164 +7055,3 @@ declare type TypographySize = Extract<Size, 'lg' | 'md' | 'sm'> | null | undefin
7055
7055
  declare type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body' | 'caption' | 'description';
7056
7056
 
7057
7057
  export { }
7058
-
7059
-
7060
- declare global {
7061
- interface HTMLElementTagNameMap {
7062
- 'dap-ds-feedback': DapDSFeedback;
7063
- }
7064
- }
7065
-
7066
-
7067
- declare global {
7068
- interface GlobalEventHandlersEventMap {
7069
- 'dds-all-uploads-complete': DdsAllUploadsCompleteEvent;
7070
- }
7071
- }
7072
-
7073
-
7074
- declare global {
7075
- interface GlobalEventHandlersEventMap {
7076
- 'dds-anchor-change': DdsAnchorChangeEvent;
7077
- }
7078
- }
7079
-
7080
-
7081
- declare global {
7082
- interface GlobalEventHandlersEventMap {
7083
- 'dds-before-close': DdsBeforeCloseEvent;
7084
- }
7085
- }
7086
-
7087
-
7088
- declare global {
7089
- interface GlobalEventHandlersEventMap {
7090
- 'dds-before-open': DdsBeforeOpenEvent;
7091
- }
7092
- }
7093
-
7094
-
7095
- declare global {
7096
- interface GlobalEventHandlersEventMap {
7097
- 'dds-blur': DdsBlurEvent;
7098
- }
7099
- }
7100
-
7101
-
7102
- declare global {
7103
- interface GlobalEventHandlersEventMap {
7104
- 'dds-cancel': DdsCancelEvent;
7105
- }
7106
- }
7107
-
7108
-
7109
- declare global {
7110
- interface GlobalEventHandlersEventMap {
7111
- 'dds-change': DdsChangeEvent;
7112
- }
7113
- }
7114
-
7115
-
7116
- declare global {
7117
- interface GlobalEventHandlersEventMap {
7118
- 'dds-clear': DdsClearEvent;
7119
- }
7120
- }
7121
-
7122
-
7123
- declare global {
7124
- interface GlobalEventHandlersEventMap {
7125
- 'dds-click': DdsClickEvent;
7126
- }
7127
- }
7128
-
7129
-
7130
- declare global {
7131
- interface GlobalEventHandlersEventMap {
7132
- 'dds-close': DdsCloseEvent;
7133
- }
7134
- }
7135
-
7136
-
7137
- declare global {
7138
- interface GlobalEventHandlersEventMap {
7139
- 'dds-closed': DdsClosedEvent;
7140
- }
7141
- }
7142
-
7143
-
7144
- declare global {
7145
- interface GlobalEventHandlersEventMap {
7146
- 'dds-command-item-click': DdsCommandItemClickEvent;
7147
- }
7148
- }
7149
-
7150
-
7151
- declare global {
7152
- interface GlobalEventHandlersEventMap {
7153
- 'dds-copy': DdsCopyEvent;
7154
- }
7155
- }
7156
-
7157
-
7158
- declare global {
7159
- interface GlobalEventHandlersEventMap {
7160
- 'dds-count-change': DdsCountChangeEvent;
7161
- }
7162
- }
7163
-
7164
-
7165
- declare global {
7166
- interface GlobalEventHandlersEventMap {
7167
- 'dds-file-change': DdsFileChangeEvent;
7168
- }
7169
- }
7170
-
7171
-
7172
- declare global {
7173
- interface GlobalEventHandlersEventMap {
7174
- 'dds-file-remove': DdsFileRemoveEvent;
7175
- }
7176
- }
7177
-
7178
-
7179
- declare global {
7180
- interface GlobalEventHandlersEventMap {
7181
- 'dds-file-removed': DdsFileRemovedEvent;
7182
- }
7183
- }
7184
-
7185
-
7186
- declare global {
7187
- interface GlobalEventHandlersEventMap {
7188
- 'dds-focus': DdsFocusEvent;
7189
- }
7190
- }
7191
-
7192
-
7193
- declare global {
7194
- interface GlobalEventHandlersEventMap {
7195
- 'dds-input': DdsInputEvent;
7196
- }
7197
- }
7198
-
7199
-
7200
- declare global {
7201
- interface GlobalEventHandlersEventMap {
7202
- 'dds-invalid-date': DdsInvalidDateEvent;
7203
- }
7204
- }
7205
-
7206
-
7207
- declare global {
7208
- interface GlobalEventHandlersEventMap {
7209
- 'dds-item-click': DdsItemClickEvent;
7210
- }
7211
- }
7212
-
7213
-
7214
- declare global {
7215
- interface GlobalEventHandlersEventMap {
7216
- 'dds-keydown': DdsKeydownEvent;
7217
- }
7218
- }
7219
-
7220
-
7221
- declare global {
7222
- interface GlobalEventHandlersEventMap {
7223
- 'dds-not-allowed': DdsNotAllowedEvent;
7224
- }
7225
- }
7226
-
7227
-
7228
- declare global {
7229
- interface GlobalEventHandlersEventMap {
7230
- 'dds-ok': DdsOkEvent;
7231
- }
7232
- }
7233
-
7234
-
7235
- declare global {
7236
- interface GlobalEventHandlersEventMap {
7237
- 'dds-opened': DdsOpenedEvent;
7238
- }
7239
- }
7240
-
7241
-
7242
- declare global {
7243
- interface GlobalEventHandlersEventMap {
7244
- 'dds-option-change': DdsOptionChangeEvent;
7245
- }
7246
- }
7247
-
7248
-
7249
- declare global {
7250
- interface GlobalEventHandlersEventMap {
7251
- 'dds-pagination-change': DdsPaginationChangeEvent;
7252
- }
7253
- }
7254
-
7255
-
7256
- declare global {
7257
- interface GlobalEventHandlersEventMap {
7258
- 'dds-row-click': DdsRowClickEvent;
7259
- }
7260
- }
7261
-
7262
-
7263
- declare global {
7264
- interface GlobalEventHandlersEventMap {
7265
- 'dds-search': DdsSearchEvent;
7266
- }
7267
- }
7268
-
7269
-
7270
- declare global {
7271
- interface GlobalEventHandlersEventMap {
7272
- 'dds-select': DdsSelectEvent;
7273
- }
7274
- }
7275
-
7276
-
7277
- declare global {
7278
- interface GlobalEventHandlersEventMap {
7279
- 'dds-selection-change': DdsSelectionChangeEvent;
7280
- }
7281
- }
7282
-
7283
-
7284
- declare global {
7285
- interface GlobalEventHandlersEventMap {
7286
- 'dds-sorting-change': DdsSortingChangeEvent;
7287
- }
7288
- }
7289
-
7290
-
7291
- declare global {
7292
- interface GlobalEventHandlersEventMap {
7293
- 'dds-tab-select': DdsTabSelectEvent;
7294
- }
7295
- }
7296
-
7297
-
7298
- declare global {
7299
- interface GlobalEventHandlersEventMap {
7300
- 'dds-upload-complete': DdsUploadCompleteEvent;
7301
- }
7302
- }
7303
-
7304
-
7305
- declare global {
7306
- interface GlobalEventHandlersEventMap {
7307
- 'dds-upload-error': DdsUploadErrorEvent;
7308
- }
7309
- }
7310
-
7311
-
7312
- declare global {
7313
- interface GlobalEventHandlersEventMap {
7314
- 'dds-upload-progress': DdsUploadProgressEvent;
7315
- }
7316
- }
7317
-
7318
-
7319
- declare global {
7320
- interface GlobalEventHandlersEventMap {
7321
- 'dds-upload-start': DdsUploadStartEvent;
7322
- }
7323
- }
7324
-
7325
-
7326
- declare global {
7327
- interface GlobalEventHandlersEventMap {
7328
- 'dds-valid-date': DdsValidDateEvent;
7329
- }
7330
- }
7331
-
7332
-
7333
- declare global {
7334
- interface HTMLElementTagNameMap {
7335
- 'dap-ds-accordion': DapDSAccordion;
7336
- }
7337
- }
7338
-
7339
-
7340
- declare global {
7341
- interface HTMLElementTagNameMap {
7342
- 'dap-ds-accordion-group': DapDSAccordionGroup;
7343
- }
7344
- }
7345
-
7346
-
7347
- declare global {
7348
- interface HTMLElementTagNameMap {
7349
- 'dap-ds-anchor-heading': DapDSAnchorHeading;
7350
- }
7351
- }
7352
-
7353
-
7354
- declare global {
7355
- interface HTMLElementTagNameMap {
7356
- 'dap-ds-avatar': DapDSAvatar;
7357
- }
7358
- }
7359
-
7360
-
7361
- declare global {
7362
- interface HTMLElementTagNameMap {
7363
- 'dap-ds-badge': DapDSBadge;
7364
- }
7365
- }
7366
-
7367
-
7368
- declare global {
7369
- interface HTMLElementTagNameMap {
7370
- 'dap-ds-banner': DapDSBanner;
7371
- }
7372
- }
7373
-
7374
-
7375
- declare global {
7376
- interface HTMLElementTagNameMap {
7377
- 'dap-ds-breadcrumb': DapDSBreadcrumb;
7378
- }
7379
- }
7380
-
7381
-
7382
- declare global {
7383
- interface HTMLElementTagNameMap {
7384
- 'dap-ds-breadcrumb-item': DapDSBreadcrumbItem;
7385
- }
7386
- }
7387
-
7388
-
7389
- declare global {
7390
- interface HTMLElementTagNameMap {
7391
- 'dap-ds-button': DapDSButton;
7392
- }
7393
- }
7394
-
7395
-
7396
- declare global {
7397
- interface HTMLElementTagNameMap {
7398
- 'dap-ds-calendar-cell': DapDSCalendarCell;
7399
- }
7400
- }
7401
-
7402
-
7403
- declare global {
7404
- interface HTMLElementTagNameMap {
7405
- 'dap-ds-calendar': DapDSCalendar;
7406
- 'dap-ds-calendar-cell': DapDSCalendarCell;
7407
- }
7408
- }
7409
-
7410
-
7411
- declare global {
7412
- interface HTMLElementTagNameMap {
7413
- 'dap-ds-callout': DapDSCallout;
7414
- }
7415
- }
7416
-
7417
-
7418
- declare global {
7419
- interface HTMLElementTagNameMap {
7420
- 'dap-ds-card': DapDSCard;
7421
- 'dap-ds-card-actions': DapDSCardActions;
7422
- 'dap-ds-card-image': DapDSCardImage;
7423
- 'dap-ds-card-content': DapDSCardContent;
7424
- }
7425
- }
7426
-
7427
-
7428
- declare global {
7429
- interface HTMLElementTagNameMap {
7430
- 'dap-ds-checkbox': DapDSCheckbox;
7431
- }
7432
- }
7433
-
7434
-
7435
- declare global {
7436
- interface HTMLElementTagNameMap {
7437
- 'dap-ds-combobox': DapDSCombobox;
7438
- }
7439
- }
7440
-
7441
-
7442
- declare global {
7443
- interface HTMLElementTagNameMap {
7444
- 'dap-ds-command': DapDSCommand;
7445
- 'dap-ds-command-group': DapDSCommandGroup;
7446
- 'dap-ds-command-item': DapDSCommandItem;
7447
- }
7448
- }
7449
-
7450
-
7451
- declare global {
7452
- interface HTMLElementTagNameMap {
7453
- 'dap-ds-content-switcher': DapDSContentSwitcher;
7454
- 'dap-ds-content-switcher-item': DapDSContentSwitcherItem;
7455
- }
7456
- }
7457
-
7458
-
7459
- declare global {
7460
- interface HTMLElementTagNameMap {
7461
- 'dap-ds-copybox-input': DapDSCopyBoxInput;
7462
- }
7463
- }
7464
-
7465
-
7466
- declare global {
7467
- interface HTMLElementTagNameMap {
7468
- 'dap-ds-dap-badge': DapDSDAPBadge;
7469
- }
7470
- }
7471
-
7472
-
7473
- declare global {
7474
- interface HTMLElementTagNameMap {
7475
- 'dap-ds-datatable': DapDSDataTable<unknown>;
7476
- }
7477
- }
7478
-
7479
-
7480
- declare global {
7481
- interface HTMLElementTagNameMap {
7482
- 'dap-ds-datepicker': DapDSDatePicker;
7483
- }
7484
- }
7485
-
7486
-
7487
- declare global {
7488
- interface HTMLElementTagNameMap {
7489
- 'dap-ds-divider': DapDSDivider;
7490
- }
7491
- }
7492
-
7493
-
7494
- declare global {
7495
- interface HTMLElementTagNameMap {
7496
- 'dap-ds-file-input-list-item': DapDSFileInputListItem;
7497
- }
7498
- }
7499
-
7500
-
7501
- declare global {
7502
- interface HTMLElementTagNameMap {
7503
- 'dap-ds-file-input-list': DapDSFileInputList;
7504
- }
7505
- }
7506
-
7507
-
7508
- declare global {
7509
- interface HTMLElementTagNameMap {
7510
- 'dap-ds-file-input': DapDSFileInput;
7511
- }
7512
- }
7513
-
7514
-
7515
- declare global {
7516
- interface HTMLElementTagNameMap {
7517
- 'dap-ds-form-label': DapDSFormLabel;
7518
- }
7519
- }
7520
-
7521
-
7522
- declare global {
7523
- interface HTMLElementTagNameMap {
7524
- 'dap-ds-input-group': DapDSInputGroup;
7525
- }
7526
- }
7527
-
7528
-
7529
- declare global {
7530
- interface HTMLElementTagNameMap {
7531
- 'dap-ds-radio-group': DapDSRadioGroup;
7532
- }
7533
- }
7534
-
7535
-
7536
- declare global {
7537
- interface HTMLElementTagNameMap {
7538
- 'dap-ds-icon': DapDSIcon;
7539
- }
7540
- }
7541
-
7542
-
7543
- declare global {
7544
- interface HTMLElementTagNameMap {
7545
- 'dap-ds-icon-button': DapDSIconButton;
7546
- }
7547
- }
7548
-
7549
-
7550
- declare global {
7551
- interface HTMLElementTagNameMap {
7552
- 'dap-ds-icon-arrow-down-line': ArrowsArrowDownLine;
7553
- }
7554
- }
7555
-
7556
-
7557
- declare global {
7558
- interface HTMLElementTagNameMap {
7559
- 'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFill;
7560
- }
7561
- }
7562
-
7563
-
7564
- declare global {
7565
- interface HTMLElementTagNameMap {
7566
- 'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLine;
7567
- }
7568
- }
7569
-
7570
-
7571
- declare global {
7572
- interface HTMLElementTagNameMap {
7573
- 'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLine;
7574
- }
7575
- }
7576
-
7577
-
7578
- declare global {
7579
- interface HTMLElementTagNameMap {
7580
- 'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLine;
7581
- }
7582
- }
7583
-
7584
-
7585
- declare global {
7586
- interface HTMLElementTagNameMap {
7587
- 'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLine;
7588
- }
7589
- }
7590
-
7591
-
7592
- declare global {
7593
- interface HTMLElementTagNameMap {
7594
- 'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFill;
7595
- }
7596
- }
7597
-
7598
-
7599
- declare global {
7600
- interface HTMLElementTagNameMap {
7601
- 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLine;
7602
- }
7603
- }
7604
-
7605
-
7606
- declare global {
7607
- interface HTMLElementTagNameMap {
7608
- 'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLine;
7609
- }
7610
- }
7611
-
7612
-
7613
- declare global {
7614
- interface HTMLElementTagNameMap {
7615
- 'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLine;
7616
- }
7617
- }
7618
-
7619
-
7620
- declare global {
7621
- interface HTMLElementTagNameMap {
7622
- 'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLine;
7623
- }
7624
- }
7625
-
7626
-
7627
- declare global {
7628
- interface HTMLElementTagNameMap {
7629
- 'dap-ds-icon-arrow-right-line': ArrowsArrowRightLine;
7630
- }
7631
- }
7632
-
7633
-
7634
- declare global {
7635
- interface HTMLElementTagNameMap {
7636
- 'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFill;
7637
- }
7638
- }
7639
-
7640
-
7641
- declare global {
7642
- interface HTMLElementTagNameMap {
7643
- 'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLine;
7644
- }
7645
- }
7646
-
7647
-
7648
- declare global {
7649
- interface HTMLElementTagNameMap {
7650
- 'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLine;
7651
- }
7652
- }
7653
-
7654
-
7655
- declare global {
7656
- interface HTMLElementTagNameMap {
7657
- 'dap-ds-icon-arrow-up-line': ArrowsArrowUpLine;
7658
- }
7659
- }
7660
-
7661
-
7662
- declare global {
7663
- interface HTMLElementTagNameMap {
7664
- 'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFill;
7665
- }
7666
- }
7667
-
7668
-
7669
- declare global {
7670
- interface HTMLElementTagNameMap {
7671
- 'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLine;
7672
- }
7673
- }
7674
-
7675
-
7676
- declare global {
7677
- interface HTMLElementTagNameMap {
7678
- 'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFill;
7679
- }
7680
- }
7681
-
7682
-
7683
- declare global {
7684
- interface HTMLElementTagNameMap {
7685
- 'dap-ds-icon-home-6-line': BuildingsHome6Line;
7686
- }
7687
- }
7688
-
7689
-
7690
- declare global {
7691
- interface HTMLElementTagNameMap {
7692
- 'dap-ds-icon-calendar-line': BusinessCalendarLine;
7693
- }
7694
- }
7695
-
7696
-
7697
- declare global {
7698
- interface HTMLElementTagNameMap {
7699
- 'dap-ds-icon-clipboard-line': DocumentClipboardLine;
7700
- }
7701
- }
7702
-
7703
-
7704
- declare global {
7705
- interface HTMLElementTagNameMap {
7706
- 'dap-ds-icon-file-copy-line': DocumentFileCopyLine;
7707
- }
7708
- }
7709
-
7710
-
7711
- declare global {
7712
- interface HTMLElementTagNameMap {
7713
- 'dap-ds-icon-cookie-line': OthersCookieLine;
7714
- }
7715
- }
7716
-
7717
-
7718
- declare global {
7719
- interface HTMLElementTagNameMap {
7720
- 'dap-ds-icon-add-line': SystemAddLine;
7721
- }
7722
- }
7723
-
7724
-
7725
- declare global {
7726
- interface HTMLElementTagNameMap {
7727
- 'dap-ds-icon-alert-fill': SystemAlertFill;
7728
- }
7729
- }
7730
-
7731
-
7732
- declare global {
7733
- interface HTMLElementTagNameMap {
7734
- 'dap-ds-icon-alert-line': SystemAlertLine;
7735
- }
7736
- }
7737
-
7738
-
7739
- declare global {
7740
- interface HTMLElementTagNameMap {
7741
- 'dap-ds-icon-check-line': SystemCheckLine;
7742
- }
7743
- }
7744
-
7745
-
7746
- declare global {
7747
- interface HTMLElementTagNameMap {
7748
- 'dap-ds-icon-check-line2': SystemCheckLine2;
7749
- }
7750
- }
7751
-
7752
-
7753
- declare global {
7754
- interface HTMLElementTagNameMap {
7755
- 'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFill;
7756
- }
7757
- }
7758
-
7759
-
7760
- declare global {
7761
- interface HTMLElementTagNameMap {
7762
- 'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheck;
7763
- }
7764
- }
7765
-
7766
-
7767
- declare global {
7768
- interface HTMLElementTagNameMap {
7769
- 'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLine;
7770
- }
7771
- }
7772
-
7773
-
7774
- declare global {
7775
- interface HTMLElementTagNameMap {
7776
- 'dap-ds-icon-checkbox-circle-fill': SystemCheckboxCircleFill;
7777
- }
7778
- }
7779
-
7780
-
7781
- declare global {
7782
- interface HTMLElementTagNameMap {
7783
- 'dap-ds-icon-checkbox-circle-line': SystemCheckboxCircleLine;
7784
- }
7785
- }
7786
-
7787
-
7788
- declare global {
7789
- interface HTMLElementTagNameMap {
7790
- 'dap-ds-icon-close-circle-fill': SystemCloseCircleFill;
7791
- }
7792
- }
7793
-
7794
-
7795
- declare global {
7796
- interface HTMLElementTagNameMap {
7797
- 'dap-ds-icon-close-circle-line': SystemCloseCircleLine;
7798
- }
7799
- }
7800
-
7801
-
7802
- declare global {
7803
- interface HTMLElementTagNameMap {
7804
- 'dap-ds-icon-close-fill': SystemCloseFill;
7805
- }
7806
- }
7807
-
7808
-
7809
- declare global {
7810
- interface HTMLElementTagNameMap {
7811
- 'dap-ds-icon-close-line': SystemCloseLine;
7812
- }
7813
- }
7814
-
7815
-
7816
- declare global {
7817
- interface HTMLElementTagNameMap {
7818
- 'dap-ds-icon-download-line': SystemDownloadLine;
7819
- }
7820
- }
7821
-
7822
-
7823
- declare global {
7824
- interface HTMLElementTagNameMap {
7825
- 'dap-ds-icon-error-warning-fill': SystemErrorWarningFill;
7826
- }
7827
- }
7828
-
7829
-
7830
- declare global {
7831
- interface HTMLElementTagNameMap {
7832
- 'dap-ds-icon-error-warning-line': SystemErrorWarningLine;
7833
- }
7834
- }
7835
-
7836
-
7837
- declare global {
7838
- interface HTMLElementTagNameMap {
7839
- 'dap-ds-icon-external-link-line': SystemExternalLinkLine;
7840
- }
7841
- }
7842
-
7843
-
7844
- declare global {
7845
- interface HTMLElementTagNameMap {
7846
- 'dap-ds-icon-eye-line': SystemEyeLine;
7847
- }
7848
- }
7849
-
7850
-
7851
- declare global {
7852
- interface HTMLElementTagNameMap {
7853
- 'dap-ds-icon-eye-off-line': SystemEyeOffLine;
7854
- }
7855
- }
7856
-
7857
-
7858
- declare global {
7859
- interface HTMLElementTagNameMap {
7860
- 'dap-ds-icon-forbid-fill': SystemForbidFill;
7861
- }
7862
- }
7863
-
7864
-
7865
- declare global {
7866
- interface HTMLElementTagNameMap {
7867
- 'dap-ds-icon-information-2-fill': SystemInformation2Fill;
7868
- }
7869
- }
7870
-
7871
-
7872
- declare global {
7873
- interface HTMLElementTagNameMap {
7874
- 'dap-ds-icon-information-fill': SystemInformationFill;
7875
- }
7876
- }
7877
-
7878
-
7879
- declare global {
7880
- interface HTMLElementTagNameMap {
7881
- 'dap-ds-icon-information-line': SystemInformationLine;
7882
- }
7883
- }
7884
-
7885
-
7886
- declare global {
7887
- interface HTMLElementTagNameMap {
7888
- 'dap-ds-icon-lightbulb-fill': SystemLightbulbFill;
7889
- }
7890
- }
7891
-
7892
-
7893
- declare global {
7894
- interface HTMLElementTagNameMap {
7895
- 'dap-ds-icon-loading-spinner': SystemLoadingSpinner;
7896
- }
7897
- }
7898
-
7899
-
7900
- declare global {
7901
- interface HTMLElementTagNameMap {
7902
- 'dap-ds-icon-lock-fill': SystemLockFill;
7903
- }
7904
- }
7905
-
7906
-
7907
- declare global {
7908
- interface HTMLElementTagNameMap {
7909
- 'dap-ds-icon-lock-line': SystemLockLine;
7910
- }
7911
- }
7912
-
7913
-
7914
- declare global {
7915
- interface HTMLElementTagNameMap {
7916
- 'dap-ds-icon-menu-line': SystemMenuLine;
7917
- }
7918
- }
7919
-
7920
-
7921
- declare global {
7922
- interface HTMLElementTagNameMap {
7923
- 'dap-ds-icon-menu-line-s': SystemMenuLineS;
7924
- }
7925
- }
7926
-
7927
-
7928
- declare global {
7929
- interface HTMLElementTagNameMap {
7930
- 'dap-ds-icon-search-line': SystemSearchLine;
7931
- }
7932
- }
7933
-
7934
-
7935
- declare global {
7936
- interface HTMLElementTagNameMap {
7937
- 'dap-ds-icon-shield-check-fill': SystemShieldCheckFill;
7938
- }
7939
- }
7940
-
7941
-
7942
- declare global {
7943
- interface HTMLElementTagNameMap {
7944
- 'dap-ds-icon-shield-check-line': SystemShieldCheckLine;
7945
- }
7946
- }
7947
-
7948
-
7949
- declare global {
7950
- interface HTMLElementTagNameMap {
7951
- 'dap-ds-icon-star-fill': SystemStarFill;
7952
- }
7953
- }
7954
-
7955
-
7956
- declare global {
7957
- interface HTMLElementTagNameMap {
7958
- 'dap-ds-icon-subtract-line': SystemSubtractLine;
7959
- }
7960
- }
7961
-
7962
-
7963
- declare global {
7964
- interface HTMLElementTagNameMap {
7965
- 'dap-ds-icon-subtract-line2': SystemSubtractLine2;
7966
- }
7967
- }
7968
-
7969
-
7970
- declare global {
7971
- interface HTMLElementTagNameMap {
7972
- 'dap-ds-input': DapDSInput;
7973
- }
7974
- }
7975
-
7976
-
7977
- declare global {
7978
- interface HTMLElementTagNameMap {
7979
- 'dap-ds-label': DapDSLabel;
7980
- }
7981
- }
7982
-
7983
-
7984
- declare global {
7985
- interface HTMLElementTagNameMap {
7986
- 'dap-ds-link': DapDSLink;
7987
- }
7988
- }
7989
-
7990
-
7991
- declare global {
7992
- interface HTMLElementTagNameMap {
7993
- 'dap-ds-list-item': DapDSListItem;
7994
- }
7995
- }
7996
-
7997
-
7998
- declare global {
7999
- interface HTMLElementTagNameMap {
8000
- 'dap-ds-modal': DapDSModal;
8001
- }
8002
- }
8003
-
8004
-
8005
- declare global {
8006
- interface HTMLElementTagNameMap {
8007
- 'dap-ds-notification-badge': DapDSNotificationBadge;
8008
- }
8009
- }
8010
-
8011
-
8012
- declare global {
8013
- interface HTMLElementTagNameMap {
8014
- 'dap-ds-number-input': DapDSNumberInput;
8015
- }
8016
- }
8017
-
8018
-
8019
- declare global {
8020
- interface HTMLElementTagNameMap {
8021
- 'dap-ds-official-website-banner': DapDSOfficialWebsiteBanner;
8022
- }
8023
- }
8024
-
8025
-
8026
- declare global {
8027
- interface HTMLElementTagNameMap {
8028
- 'dap-ds-option-item': DapDSOptionItem;
8029
- }
8030
- }
8031
-
8032
-
8033
- declare global {
8034
- interface HTMLElementTagNameMap {
8035
- 'dap-option-list': DapDSOptionList;
8036
- }
8037
- }
8038
-
8039
-
8040
- declare global {
8041
- interface HTMLElementTagNameMap {
8042
- 'dap-ds-overlay': DapDSOverlay;
8043
- }
8044
- }
8045
-
8046
-
8047
- declare global {
8048
- interface HTMLElementTagNameMap {
8049
- 'dap-ds-pager': DapDSPager;
8050
- }
8051
- }
8052
-
8053
-
8054
- declare global {
8055
- interface HTMLElementTagNameMap {
8056
- 'dap-ds-password-input': DapDSPasswordInput;
8057
- }
8058
- }
8059
-
8060
-
8061
- declare global {
8062
- interface HTMLElementTagNameMap {
8063
- 'dap-ds-popup': DapDSPopup;
8064
- }
8065
- }
8066
-
8067
-
8068
- declare global {
8069
- interface HTMLElementTagNameMap {
8070
- 'dap-ds-radio-button': DapDSRadioButton;
8071
- }
8072
- }
8073
-
8074
-
8075
- declare global {
8076
- interface HTMLElementTagNameMap {
8077
- 'dap-ds-rating': DapDSRating;
8078
- }
8079
- }
8080
-
8081
-
8082
- declare global {
8083
- interface HTMLElementTagNameMap {
8084
- 'dap-ds-scroll-area': DapDSScrollArea;
8085
- }
8086
- }
8087
-
8088
-
8089
- declare global {
8090
- interface HTMLElementTagNameMap {
8091
- 'dap-ds-search': DapDSSearch;
8092
- }
8093
- }
8094
-
8095
-
8096
- declare global {
8097
- interface HTMLElementTagNameMap {
8098
- 'dap-ds-select': DapDSSelect;
8099
- }
8100
- }
8101
-
8102
-
8103
- declare global {
8104
- interface HTMLElementTagNameMap {
8105
- 'dap-ds-sidenav': DapDSSideNav;
8106
- 'dap-ds-sidenav-item': DapDSSideNavItem;
8107
- }
8108
- }
8109
-
8110
-
8111
- declare global {
8112
- interface HTMLElementTagNameMap {
8113
- 'dap-ds-skip-link': DapDSSkipLink;
8114
- }
8115
- }
8116
-
8117
-
8118
- declare global {
8119
- interface HTMLElementTagNameMap {
8120
- 'dap-ds-snackbar': DapDSSnackbar;
8121
- 'dap-ds-snackbar-message': DapDSSnackbarMessage;
8122
- }
8123
- }
8124
-
8125
-
8126
- declare global {
8127
- interface HTMLElementTagNameMap {
8128
- 'dap-ds-spinner': DapDSSpinner;
8129
- }
8130
- }
8131
-
8132
-
8133
- declare global {
8134
- interface HTMLElementTagNameMap {
8135
- 'dap-ds-stack': DapDSStack;
8136
- }
8137
- }
8138
-
8139
-
8140
- declare global {
8141
- interface HTMLElementTagNameMap {
8142
- 'dap-ds-switch': DapDSSwitch;
8143
- }
8144
- }
8145
-
8146
-
8147
- declare global {
8148
- interface HTMLElementTagNameMap {
8149
- 'dap-ds-tab-group': DapDSTabGroup;
8150
- }
8151
- }
8152
-
8153
-
8154
- declare global {
8155
- interface HTMLElementTagNameMap {
8156
- 'dap-ds-tab': DapDSTab;
8157
- }
8158
- }
8159
-
8160
-
8161
- declare global {
8162
- interface HTMLElementTagNameMap {
8163
- 'dap-ds-table': DapDSTable;
8164
- 'dap-ds-table-row': DapDSTableRow;
8165
- 'dap-ds-table-header': DapDSTableHeader;
8166
- 'dap-ds-table-cell': DapDSTableCell;
8167
- }
8168
- }
8169
-
8170
-
8171
- declare global {
8172
- interface HTMLElementTagNameMap {
8173
- 'dap-ds-textarea': DapDSTextarea;
8174
- }
8175
- }
8176
-
8177
-
8178
- declare global {
8179
- interface HTMLElementTagNameMap {
8180
- 'dap-ds-timeline': DapDSTimeline;
8181
- 'dap-ds-timeline-item': DapDSTimelineItem;
8182
- }
8183
- }
8184
-
8185
-
8186
- declare global {
8187
- interface HTMLElementTagNameMap {
8188
- 'dap-ds-toc': DapDSTOC;
8189
- }
8190
- }
8191
-
8192
-
8193
- declare global {
8194
- interface HTMLElementTagNameMap {
8195
- 'dap-ds-toggle-button': DapDSToggleButton;
8196
- }
8197
- }
8198
-
8199
-
8200
- declare global {
8201
- interface HTMLElementTagNameMap {
8202
- 'dap-ds-tooltip': DapDSTooltip;
8203
- }
8204
- }
8205
-
8206
-
8207
- declare global {
8208
- interface HTMLElementTagNameMap {
8209
- 'dap-ds-tray': DapDSTray;
8210
- }
8211
- }
8212
-
8213
-
8214
- declare global {
8215
- interface HTMLElementTagNameMap {
8216
- 'dap-ds-typography': DapDSTypography;
8217
- }
8218
- }