dap-design-system 0.58.1 → 0.58.2

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.
@@ -210,6 +210,13 @@ type DefineGenericCustomElement<
210
210
  $props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
211
211
  }
212
212
 
213
+ export interface DapDSAccordionEvents {
214
+ /** Event fired when the accordion is opened. */
215
+ onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
216
+ /** Event fired when the accordion is closed. */
217
+ onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
218
+ }
219
+
213
220
  export interface DapDSAvatarEvents {
214
221
  /** Fired when the image loads successfully. */
215
222
  onDdsLoad?: (event: CustomEvent) => void
@@ -222,13 +229,6 @@ export interface DapDSAvatarGroupEvents {
222
229
  onDdsOverflowClick?: (event: CustomEvent) => void
223
230
  }
224
231
 
225
- export interface DapDSAccordionEvents {
226
- /** Event fired when the accordion is opened. */
227
- onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
228
- /** Event fired when the accordion is closed. */
229
- onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
230
- }
231
-
232
232
  export interface DapDSBannerEvents {
233
233
  /** Event fired when the banner is closed. */
234
234
  onDdsClose?: (event: CustomEvent) => void
@@ -333,17 +333,6 @@ export interface DapDSCopyBoxInputEvents {
333
333
  onDdsNotAllowed?: (event: CustomEvent) => void
334
334
  }
335
335
 
336
- export interface DapDSDataTableEvents<T> {
337
- /** Fired when the sorting of the table changes. */
338
- onDdsSortingChange?: (event: CustomEvent<{ sorting: SortingState }>) => void
339
- /** Fired when the selection of the table changes. */
340
- onDdsSelectionChange?: (event: CustomEvent<{ selection: RowSelectionState }>) => void
341
- /** Fired when the pagination of the table changes. */
342
- onDdsPaginationChange?: (event: CustomEvent<{ pagination: PaginationState }>) => void
343
- /** Fired when a row is clicked. */
344
- onDdsRowClick?: (event: CustomEvent<{ row: Row<T> }>) => void
345
- }
346
-
347
336
  export interface DapDSDatePickerEvents {
348
337
  /** Fired when the datepicker value changes. */
349
338
  onDdsChange?: (event: CustomEvent<{ value: string }>) => void
@@ -394,6 +383,17 @@ export interface DapDSFileInputEvents {
394
383
  onDdsFilesAccepted?: (event: CustomEvent<{ files: File[] }>) => void
395
384
  }
396
385
 
386
+ export interface DapDSDataTableEvents<T> {
387
+ /** Fired when the sorting of the table changes. */
388
+ onDdsSortingChange?: (event: CustomEvent<{ sorting: SortingState }>) => void
389
+ /** Fired when the selection of the table changes. */
390
+ onDdsSelectionChange?: (event: CustomEvent<{ selection: RowSelectionState }>) => void
391
+ /** Fired when the pagination of the table changes. */
392
+ onDdsPaginationChange?: (event: CustomEvent<{ pagination: PaginationState }>) => void
393
+ /** Fired when a row is clicked. */
394
+ onDdsRowClick?: (event: CustomEvent<{ row: Row<T> }>) => void
395
+ }
396
+
397
397
  export interface DapDSImageZoomEvents {
398
398
  /** Fires when the image is about to zoom. Cancelable via event.preventDefault(). */
399
399
  onDdsZoom?: (event: CustomEvent<CustomEvent>) => void
@@ -401,19 +401,6 @@ export interface DapDSImageZoomEvents {
401
401
  onDdsUnzoom?: (event: CustomEvent<CustomEvent>) => void
402
402
  }
403
403
 
404
- export interface DapDSInputEvents {
405
- /** Fired when the input value changes. */
406
- onDdsChange?: (event: CustomEvent<{ value: string }>) => void
407
- /** Fired when the input value changes. */
408
- onDdsInput?: (event: CustomEvent<{ value: string }>) => void
409
- /** Fired when a key is pressed down. */
410
- onDdsKeydown?: (event: CustomEvent<{ value: string, originalEvent: Event }>) => void
411
- /** Fired when the input loses focus. */
412
- onDdsBlur?: (event: CustomEvent) => void
413
- /** Emitted when the input gains focus. */
414
- onDdsFocus?: (event: CustomEvent) => void
415
- }
416
-
417
404
  export interface DapDSLinkEvents {
418
405
  /** Emitted when the link is clicked. */
419
406
  onDdsClick?: (event: CustomEvent<{ event: Event }>) => void
@@ -548,6 +535,19 @@ export interface DapDSSearchEvents {
548
535
  onDdsInput?: (event: CustomEvent) => void
549
536
  }
550
537
 
538
+ export interface DapDSInputEvents {
539
+ /** Fired when the input value changes. */
540
+ onDdsChange?: (event: CustomEvent<{ value: string }>) => void
541
+ /** Fired when the input value changes. */
542
+ onDdsInput?: (event: CustomEvent<{ value: string }>) => void
543
+ /** Fired when a key is pressed down. */
544
+ onDdsKeydown?: (event: CustomEvent<{ value: string, originalEvent: Event }>) => void
545
+ /** Fired when the input loses focus. */
546
+ onDdsBlur?: (event: CustomEvent) => void
547
+ /** Emitted when the input gains focus. */
548
+ onDdsFocus?: (event: CustomEvent) => void
549
+ }
550
+
551
551
  export interface DapDSSelectEvents {
552
552
  /** Fired when the select value changes. */
553
553
  onDdsChange?: (event: CustomEvent<{ value: string }>) => void
@@ -655,6 +655,17 @@ export interface DapDSRadioGroupEvents {
655
655
  onDdsFocus?: (event: CustomEvent) => void
656
656
  }
657
657
 
658
+ export interface DapDSAccordionSlots {
659
+ /** The content of the accordion. */
660
+ default?: () => any
661
+ /** The heading of the accordion. */
662
+ 'heading'?: () => any
663
+ /** The icon when the accordion is opened. */
664
+ 'icon-opened'?: () => any
665
+ /** The icon when the accordion is closed. */
666
+ 'icon-closed'?: () => any
667
+ }
668
+
658
669
  export interface DapDSAvatarSlots {
659
670
  /** The icon to display when variant is 'icon'. */
660
671
  'icon'?: () => any
@@ -667,15 +678,9 @@ export interface DapDSAvatarGroupSlots {
667
678
  default?: () => any
668
679
  }
669
680
 
670
- export interface DapDSAccordionSlots {
671
- /** The content of the accordion. */
681
+ export interface DapDSAccordionGroupSlots {
682
+ /** The content of the accordion group. */
672
683
  default?: () => any
673
- /** The heading of the accordion. */
674
- 'heading'?: () => any
675
- /** The icon when the accordion is opened. */
676
- 'icon-opened'?: () => any
677
- /** The icon when the accordion is closed. */
678
- 'icon-closed'?: () => any
679
684
  }
680
685
 
681
686
  export interface DapDSBadgeSlots {
@@ -685,13 +690,6 @@ export interface DapDSBadgeSlots {
685
690
  'icon'?: () => any
686
691
  }
687
692
 
688
- export interface DapDSBreadcrumbSlots {
689
- /** The content of the breadcrumb. */
690
- default?: () => any
691
- /** The separator between breadcrumb items. Default is '/'. */
692
- 'separator'?: () => any
693
- }
694
-
695
693
  export interface DapDSBannerSlots {
696
694
  /** The content of the banner. */
697
695
  default?: () => any
@@ -701,9 +699,11 @@ export interface DapDSBannerSlots {
701
699
  'icon'?: () => any
702
700
  }
703
701
 
704
- export interface DapDSAccordionGroupSlots {
705
- /** The content of the accordion group. */
702
+ export interface DapDSBreadcrumbSlots {
703
+ /** The content of the breadcrumb. */
706
704
  default?: () => any
705
+ /** The separator between breadcrumb items. Default is '/'. */
706
+ 'separator'?: () => any
707
707
  }
708
708
 
709
709
  export interface DapDSBreadcrumbItemSlots {
@@ -815,20 +815,6 @@ export interface DapDSDAPBadgeSlots {
815
815
  default?: () => any
816
816
  }
817
817
 
818
- export interface DapDSDataTableSlots {
819
- /** The loading content of the table. */
820
- 'loading'?: () => any
821
- /** The empty content of the table. */
822
- 'empty'?: () => any
823
- }
824
-
825
- export interface DapDSFeedbackSlots {
826
- /** The custom icon of the feedback. */
827
- 'icon'?: () => any
828
- /** The text of the feedback. */
829
- default?: () => any
830
- }
831
-
832
818
  export interface DapDSFileInputListItemSlots {
833
819
  /** The delete button. */
834
820
  'delete-button'?: () => any
@@ -844,6 +830,13 @@ export interface DapDSFileInputSlots {
844
830
  'dropzone-content'?: () => any
845
831
  }
846
832
 
833
+ export interface DapDSDataTableSlots {
834
+ /** The loading content of the table. */
835
+ 'loading'?: () => any
836
+ /** The empty content of the table. */
837
+ 'empty'?: () => any
838
+ }
839
+
847
840
  export interface DapDSIconSlots {
848
841
  /** The content of the icon for custom svg icons. */
849
842
  default?: () => any
@@ -854,22 +847,16 @@ export interface DapDSIconButtonSlots {
854
847
  default?: () => any
855
848
  }
856
849
 
857
- export interface DapDSImageZoomSlots {
858
- /** The image or content element to zoom. Should contain an <img> element. */
850
+ export interface DapDSFeedbackSlots {
851
+ /** The custom icon of the feedback. */
852
+ 'icon'?: () => any
853
+ /** The text of the feedback. */
859
854
  default?: () => any
860
855
  }
861
856
 
862
- export interface DapDSInputSlots {
863
- /** The postfix of the input. */
864
- 'postfix'?: () => any
865
- /** The prefix of the input. */
866
- 'prefix'?: () => any
867
- /** The addon before the input. */
868
- 'addon-before'?: () => any
869
- /** The addon after the input. */
870
- 'addon-after'?: () => any
871
- /** The custom icon of the feedback. */
872
- 'feedback-icon'?: () => any
857
+ export interface DapDSImageZoomSlots {
858
+ /** The image or content element to zoom. Should contain an <img> element. */
859
+ default?: () => any
873
860
  }
874
861
 
875
862
  export interface DapDSLinkSlots {
@@ -986,6 +973,19 @@ export interface DapDSSearchSlots {
986
973
  default?: () => any
987
974
  }
988
975
 
976
+ export interface DapDSInputSlots {
977
+ /** The postfix of the input. */
978
+ 'postfix'?: () => any
979
+ /** The prefix of the input. */
980
+ 'prefix'?: () => any
981
+ /** The addon before the input. */
982
+ 'addon-before'?: () => any
983
+ /** The addon after the input. */
984
+ 'addon-after'?: () => any
985
+ /** The custom icon of the feedback. */
986
+ 'feedback-icon'?: () => any
987
+ }
988
+
989
989
  export interface DapDSSelectSlots {
990
990
  /** The option list of the select. */
991
991
  default?: () => any
@@ -1123,6 +1123,31 @@ export interface DapDSRadioGroupSlots {
1123
1123
  'feedback-icon'?: () => any
1124
1124
  }
1125
1125
 
1126
+ export type DapDSAccordionProps = {
1127
+ /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1128
+ size?: DapDSAccordion["size"]
1129
+ /** Responsive size map (e.g. "md:lg") */
1130
+ sizeMap?: DapDSAccordion["sizeMap"]
1131
+ /** When "true", size is taken from the parent card if present. */
1132
+ parentSized?: DapDSAccordion["parentSized"]
1133
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1134
+ heading?: DapDSAccordion["heading"]
1135
+ /** The heading level of the accordion. Default is `4`. */
1136
+ headingLevel?: DapDSAccordion["headingLevel"]
1137
+ /** Whether the accordion is opened. Default is `false`. */
1138
+ opened?: DapDSAccordion["opened"]
1139
+ /** The location of the icon. Default is `right`. */
1140
+ iconLocation?: DapDSAccordion["iconLocation"]
1141
+ /** The variant of the accordion. */
1142
+ variant?: DapDSAccordion["variant"]
1143
+ /** Whether the accordion is the last item. */
1144
+ lastItem?: DapDSAccordion["lastItem"]
1145
+ /** Whether the accordion is disabled. */
1146
+ disabled?: DapDSAccordion["disabled"]
1147
+ /** Whether the accordion is in loading state. */
1148
+ loading?: DapDSAccordion["loading"]
1149
+ }
1150
+
1126
1151
  export type DapDSAvatarProps = {
1127
1152
  /** The shape of the avatar */
1128
1153
  shape?: DapDSAvatar["shape"]
@@ -1169,29 +1194,22 @@ export type DapDSAvatarGroupProps = {
1169
1194
  sizeMap?: DapDSAvatarGroup["sizeMap"]
1170
1195
  }
1171
1196
 
1172
- export type DapDSAccordionProps = {
1173
- /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1174
- size?: DapDSAccordion["size"]
1175
- /** Responsive size map (e.g. "md:lg") */
1176
- sizeMap?: DapDSAccordion["sizeMap"]
1177
- /** When "true", size is taken from the parent card if present. */
1178
- parentSized?: DapDSAccordion["parentSized"]
1179
- /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1180
- heading?: DapDSAccordion["heading"]
1181
- /** The heading level of the accordion. Default is `4`. */
1182
- headingLevel?: DapDSAccordion["headingLevel"]
1183
- /** Whether the accordion is opened. Default is `false`. */
1184
- opened?: DapDSAccordion["opened"]
1185
- /** The location of the icon. Default is `right`. */
1186
- iconLocation?: DapDSAccordion["iconLocation"]
1187
- /** The variant of the accordion. */
1188
- variant?: DapDSAccordion["variant"]
1189
- /** Whether the accordion is the last item. */
1190
- lastItem?: DapDSAccordion["lastItem"]
1191
- /** Whether the accordion is disabled. */
1192
- disabled?: DapDSAccordion["disabled"]
1193
- /** Whether the accordion is in loading state. */
1194
- loading?: DapDSAccordion["loading"]
1197
+ export type DapDSAnchorHeadingProps = {
1198
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1199
+ variant?: DapDSAnchorHeading["variant"]
1200
+ /** The label of the heading. */
1201
+ label?: DapDSAnchorHeading["label"]
1202
+ /** */
1203
+ elementId?: DapDSAnchorHeading["elementId"]
1204
+ /** */
1205
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1206
+ }
1207
+
1208
+ export type DapDSAccordionGroupProps = {
1209
+ /** Whether to close other accordions when one is opened. */
1210
+ autoClose?: DapDSAccordionGroup["autoClose"]
1211
+ /** The variant of the accordion */
1212
+ variant?: DapDSAccordionGroup["variant"]
1195
1213
  }
1196
1214
 
1197
1215
  export type DapDSBadgeProps = {
@@ -1207,15 +1225,6 @@ export type DapDSBadgeProps = {
1207
1225
  sizeMap?: DapDSBadge["sizeMap"]
1208
1226
  }
1209
1227
 
1210
- export type DapDSBreadcrumbProps = {
1211
- /** */
1212
- variant?: DapDSBreadcrumb["variant"]
1213
- /** Mobile version of the breadcrumb */
1214
- mobile?: DapDSBreadcrumb["mobile"]
1215
- /** The aria-labelledby of the breadcrumb */
1216
- "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1217
- }
1218
-
1219
1228
  export type DapDSBannerProps = {
1220
1229
  /** The variant of the banner */
1221
1230
  variant?: DapDSBanner["variant"]
@@ -1231,22 +1240,13 @@ export type DapDSBannerProps = {
1231
1240
  icon?: DapDSBanner["icon"]
1232
1241
  }
1233
1242
 
1234
- export type DapDSAccordionGroupProps = {
1235
- /** Whether to close other accordions when one is opened. */
1236
- autoClose?: DapDSAccordionGroup["autoClose"]
1237
- /** The variant of the accordion */
1238
- variant?: DapDSAccordionGroup["variant"]
1239
- }
1240
-
1241
- export type DapDSAnchorHeadingProps = {
1242
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1243
- variant?: DapDSAnchorHeading["variant"]
1244
- /** The label of the heading. */
1245
- label?: DapDSAnchorHeading["label"]
1246
- /** */
1247
- elementId?: DapDSAnchorHeading["elementId"]
1243
+ export type DapDSBreadcrumbProps = {
1248
1244
  /** */
1249
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1245
+ variant?: DapDSBreadcrumb["variant"]
1246
+ /** Mobile version of the breadcrumb */
1247
+ mobile?: DapDSBreadcrumb["mobile"]
1248
+ /** The aria-labelledby of the breadcrumb */
1249
+ "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1250
1250
  }
1251
1251
 
1252
1252
  export type DapDSBreadcrumbItemProps = {
@@ -1782,91 +1782,6 @@ export type DapDSDAPBadgeProps = {
1782
1782
  sizeMap?: DapDSDAPBadge["sizeMap"]
1783
1783
  }
1784
1784
 
1785
- export type DapDSDataTableProps<T> = {
1786
- /** Row key to use for row selection, this should be a unique key for each row */
1787
- rowKey?: DapDSDataTable<T>["rowKey"]
1788
- /** Enable row selection on the table, can be a boolean or a function that returns a boolean */
1789
- enableRowSelection?: DapDSDataTable<T>["enableRowSelection"]
1790
- /** Enable sorting on the table */
1791
- enableSorting?: DapDSDataTable<T>["enableSorting"]
1792
- /** Enable manual sorting on the table */
1793
- manualSorting?: DapDSDataTable<T>["manualSorting"]
1794
- /** Enables manual pagination. If this option is set to true, the table will not automatically paginate rows and instead will expect you to manually paginate the rows before passing them to the table. This is useful if you are doing server-side pagination and aggregation. */
1795
- manualPagination?: DapDSDataTable<T>["manualPagination"]
1796
- /** If set to true, pagination will be reset to the first page when page-altering state changes eg. data is updated, filters change, grouping changes, etc. This behavior is automatically disabled when manualPagination is true but it can be overridden by explicitly assigning a boolean value to the autoResetPageIndex table option. */
1797
- autoResetPageIndex?: DapDSDataTable<T>["autoResetPageIndex"]
1798
- /** Enable row click on the table */
1799
- enableRowClick?: DapDSDataTable<T>["enableRowClick"]
1800
- /** Loading state of the table */
1801
- loading?: DapDSDataTable<T>["loading"]
1802
- /** Whether to enable striped rows */
1803
- enableStripedRows?: DapDSDataTable<T>["enableStripedRows"]
1804
- /** Number of rows in the table */
1805
- rowCount?: DapDSDataTable<T>["rowCount"]
1806
- /** Caption text for the table */
1807
- caption?: DapDSDataTable<T>["caption"]
1808
- /** The type of loading to use */
1809
- loadingType?: DapDSDataTable<T>["loadingType"]
1810
- /** The variant of the spinner. Only used if loadingType is 'spinner'. */
1811
- loadingVariant?: DapDSDataTable<T>["loadingVariant"]
1812
- /** The size of the spinner. Only used if loadingType is 'spinner'. */
1813
- loadingSize?: DapDSDataTable<T>["loadingSize"]
1814
- /** The size of the spinner in pixels. This overrides the size attribute. Only used if loadingType is 'spinner'. */
1815
- loadingStaticSize?: DapDSDataTable<T>["loadingStaticSize"]
1816
- /** The loading text. Only used if loadingType is 'spinner'. */
1817
- loadingText?: DapDSDataTable<T>["loadingText"]
1818
- /** The text to display when the table is empty. */
1819
- emptyText?: DapDSDataTable<T>["emptyText"]
1820
- /** Whether to disable the header when the table is empty. */
1821
- disableHeaderOnEmpty?: DapDSDataTable<T>["disableHeaderOnEmpty"]
1822
- /** Whether to show the pager component when the table is empty. */
1823
- showPagerOnEmpty?: DapDSDataTable<T>["showPagerOnEmpty"]
1824
- /** Whether to show the pager component */
1825
- pager?: DapDSDataTable<T>["pager"]
1826
- /** Show the page size options. */
1827
- showPageSizeOptions?: DapDSDataTable<T>["showPageSizeOptions"]
1828
- /** Show the page index. */
1829
- showPageIndex?: DapDSDataTable<T>["showPageIndex"]
1830
- /** Show the page count. */
1831
- showPageCount?: DapDSDataTable<T>["showPageCount"]
1832
- /** Show the first button. */
1833
- showFirstButton?: DapDSDataTable<T>["showFirstButton"]
1834
- /** Show the previous button. */
1835
- showPreviousButton?: DapDSDataTable<T>["showPreviousButton"]
1836
- /** Show the next button. */
1837
- showNextButton?: DapDSDataTable<T>["showNextButton"]
1838
- /** Show the last button. */
1839
- showLastButton?: DapDSDataTable<T>["showLastButton"]
1840
- /** The label of the first button */
1841
- firstButtonLabel?: DapDSDataTable<T>["firstButtonLabel"]
1842
- /** The label of the previous button */
1843
- previousButtonLabel?: DapDSDataTable<T>["previousButtonLabel"]
1844
- /** The label of the next button */
1845
- nextButtonLabel?: DapDSDataTable<T>["nextButtonLabel"]
1846
- /** The label of the last button */
1847
- lastButtonLabel?: DapDSDataTable<T>["lastButtonLabel"]
1848
- /** `data-testid` for the column sort-toggle button. Suffixed with the column id. */
1849
- sortButtonTestId?: DapDSDataTable<T>["sortButtonTestId"]
1850
- /** Available page size options for the pager */
1851
- pageSizeOptions?: DapDSDataTable<T>["pageSizeOptions"]
1852
- /** Sorting state of the table */
1853
- sorting?: DapDSDataTable<T>["sorting"]
1854
- /** Selection state of the table */
1855
- rowSelection?: DapDSDataTable<T>["rowSelection"]
1856
- /** Pagination state of the table */
1857
- pagination?: DapDSDataTable<T>["pagination"]
1858
- /** Column sizing state of the table */
1859
- columnSizing?: DapDSDataTable<T>["columnSizing"]
1860
- /** ID of element labeling the table */
1861
- ariaLabel?: DapDSDataTable<T>["ariaLabel"]
1862
- /** Data to display in the table */
1863
- data?: DapDSDataTable<T>["data"]
1864
- /** Columns to display in the table */
1865
- columns?: DapDSDataTable<T>["columns"]
1866
- /** The function to determine the pager text */
1867
- pageStateText?: DapDSDataTable<T>["pageStateText"]
1868
- }
1869
-
1870
1785
  export type DapDSDatePickerProps = {
1871
1786
  /** The value of the datepicker. */
1872
1787
  value?: DapDSDatePicker["value"]
@@ -1969,21 +1884,6 @@ export type DapDSDividerProps = {
1969
1884
  variant?: DapDSDivider["variant"]
1970
1885
  }
1971
1886
 
1972
- export type DapDSFeedbackProps = {
1973
- /** The feedback message. */
1974
- feedback?: DapDSFeedback["feedback"]
1975
- /** The size of the feedback. Default is `sm`. */
1976
- feedbackSize?: DapDSFeedback["feedbackSize"]
1977
- /** The type of the feedback. */
1978
- feedbackType?: DapDSFeedback["feedbackType"]
1979
- /** The weight of the feedback. */
1980
- feedbackSubtle?: DapDSFeedback["feedbackSubtle"]
1981
- /** Removes the margins around the feedback. */
1982
- feedbackNoMargin?: DapDSFeedback["feedbackNoMargin"]
1983
- /** The id of the feedback. */
1984
- feedbackId?: DapDSFeedback["feedbackId"]
1985
- }
1986
-
1987
1887
  export type DapDSFileInputListItemProps = {
1988
1888
  /** Disables the file input list item. */
1989
1889
  disabled?: DapDSFileInputListItem["disabled"]
@@ -2169,6 +2069,91 @@ export type DapDSFileInputProps = {
2169
2069
  subtle?: DapDSFileInput["subtle"]
2170
2070
  }
2171
2071
 
2072
+ export type DapDSDataTableProps<T> = {
2073
+ /** Row key to use for row selection, this should be a unique key for each row */
2074
+ rowKey?: DapDSDataTable<T>["rowKey"]
2075
+ /** Enable row selection on the table, can be a boolean or a function that returns a boolean */
2076
+ enableRowSelection?: DapDSDataTable<T>["enableRowSelection"]
2077
+ /** Enable sorting on the table */
2078
+ enableSorting?: DapDSDataTable<T>["enableSorting"]
2079
+ /** Enable manual sorting on the table */
2080
+ manualSorting?: DapDSDataTable<T>["manualSorting"]
2081
+ /** Enables manual pagination. If this option is set to true, the table will not automatically paginate rows and instead will expect you to manually paginate the rows before passing them to the table. This is useful if you are doing server-side pagination and aggregation. */
2082
+ manualPagination?: DapDSDataTable<T>["manualPagination"]
2083
+ /** If set to true, pagination will be reset to the first page when page-altering state changes eg. data is updated, filters change, grouping changes, etc. This behavior is automatically disabled when manualPagination is true but it can be overridden by explicitly assigning a boolean value to the autoResetPageIndex table option. */
2084
+ autoResetPageIndex?: DapDSDataTable<T>["autoResetPageIndex"]
2085
+ /** Enable row click on the table */
2086
+ enableRowClick?: DapDSDataTable<T>["enableRowClick"]
2087
+ /** Loading state of the table */
2088
+ loading?: DapDSDataTable<T>["loading"]
2089
+ /** Whether to enable striped rows */
2090
+ enableStripedRows?: DapDSDataTable<T>["enableStripedRows"]
2091
+ /** Number of rows in the table */
2092
+ rowCount?: DapDSDataTable<T>["rowCount"]
2093
+ /** Caption text for the table */
2094
+ caption?: DapDSDataTable<T>["caption"]
2095
+ /** The type of loading to use */
2096
+ loadingType?: DapDSDataTable<T>["loadingType"]
2097
+ /** The variant of the spinner. Only used if loadingType is 'spinner'. */
2098
+ loadingVariant?: DapDSDataTable<T>["loadingVariant"]
2099
+ /** The size of the spinner. Only used if loadingType is 'spinner'. */
2100
+ loadingSize?: DapDSDataTable<T>["loadingSize"]
2101
+ /** The size of the spinner in pixels. This overrides the size attribute. Only used if loadingType is 'spinner'. */
2102
+ loadingStaticSize?: DapDSDataTable<T>["loadingStaticSize"]
2103
+ /** The loading text. Only used if loadingType is 'spinner'. */
2104
+ loadingText?: DapDSDataTable<T>["loadingText"]
2105
+ /** The text to display when the table is empty. */
2106
+ emptyText?: DapDSDataTable<T>["emptyText"]
2107
+ /** Whether to disable the header when the table is empty. */
2108
+ disableHeaderOnEmpty?: DapDSDataTable<T>["disableHeaderOnEmpty"]
2109
+ /** Whether to show the pager component when the table is empty. */
2110
+ showPagerOnEmpty?: DapDSDataTable<T>["showPagerOnEmpty"]
2111
+ /** Whether to show the pager component */
2112
+ pager?: DapDSDataTable<T>["pager"]
2113
+ /** Show the page size options. */
2114
+ showPageSizeOptions?: DapDSDataTable<T>["showPageSizeOptions"]
2115
+ /** Show the page index. */
2116
+ showPageIndex?: DapDSDataTable<T>["showPageIndex"]
2117
+ /** Show the page count. */
2118
+ showPageCount?: DapDSDataTable<T>["showPageCount"]
2119
+ /** Show the first button. */
2120
+ showFirstButton?: DapDSDataTable<T>["showFirstButton"]
2121
+ /** Show the previous button. */
2122
+ showPreviousButton?: DapDSDataTable<T>["showPreviousButton"]
2123
+ /** Show the next button. */
2124
+ showNextButton?: DapDSDataTable<T>["showNextButton"]
2125
+ /** Show the last button. */
2126
+ showLastButton?: DapDSDataTable<T>["showLastButton"]
2127
+ /** The label of the first button */
2128
+ firstButtonLabel?: DapDSDataTable<T>["firstButtonLabel"]
2129
+ /** The label of the previous button */
2130
+ previousButtonLabel?: DapDSDataTable<T>["previousButtonLabel"]
2131
+ /** The label of the next button */
2132
+ nextButtonLabel?: DapDSDataTable<T>["nextButtonLabel"]
2133
+ /** The label of the last button */
2134
+ lastButtonLabel?: DapDSDataTable<T>["lastButtonLabel"]
2135
+ /** `data-testid` for the column sort-toggle button. Suffixed with the column id. */
2136
+ sortButtonTestId?: DapDSDataTable<T>["sortButtonTestId"]
2137
+ /** Available page size options for the pager */
2138
+ pageSizeOptions?: DapDSDataTable<T>["pageSizeOptions"]
2139
+ /** Sorting state of the table */
2140
+ sorting?: DapDSDataTable<T>["sorting"]
2141
+ /** Selection state of the table */
2142
+ rowSelection?: DapDSDataTable<T>["rowSelection"]
2143
+ /** Pagination state of the table */
2144
+ pagination?: DapDSDataTable<T>["pagination"]
2145
+ /** Column sizing state of the table */
2146
+ columnSizing?: DapDSDataTable<T>["columnSizing"]
2147
+ /** ID of element labeling the table */
2148
+ ariaLabel?: DapDSDataTable<T>["ariaLabel"]
2149
+ /** Data to display in the table */
2150
+ data?: DapDSDataTable<T>["data"]
2151
+ /** Columns to display in the table */
2152
+ columns?: DapDSDataTable<T>["columns"]
2153
+ /** The function to determine the pager text */
2154
+ pageStateText?: DapDSDataTable<T>["pageStateText"]
2155
+ }
2156
+
2172
2157
  export type DapDSIconProps = {
2173
2158
  /** The name of the icon */
2174
2159
  name?: DapDSIcon["name"]
@@ -2205,96 +2190,19 @@ export type DapDSIconButtonProps = {
2205
2190
  ariaLabel?: DapDSIconButton["ariaLabel"]
2206
2191
  }
2207
2192
 
2208
- export type DapDSImageZoomProps = {
2209
- /** The open/zoomed state. Can be used for controlled mode. */
2210
- open?: DapDSImageZoom["open"]
2211
- /** Disables zoom functionality. */
2212
- isDisabled?: DapDSImageZoom["isDisabled"]
2213
- /** Margin in pixels from viewport edges when zoomed. Default is 0. */
2214
- zoomMargin?: DapDSImageZoom["zoomMargin"]
2215
- /** Accessible label for the zoom trigger. Default is 'Expand image'. */
2216
- expandButtonAriaLabel?: DapDSImageZoom["expandButtonAriaLabel"]
2217
- /** Accessible label for the unzoom button. Default is 'Minimize image'. */
2218
- unzoomButtonAriaLabel?: DapDSImageZoom["unzoomButtonAriaLabel"]
2219
- /** Enables swipe gesture to close when zoomed. Default is true. */
2220
- canSwipeToUnzoom?: DapDSImageZoom["canSwipeToUnzoom"]
2221
- /** Swipe distance in pixels required to trigger unzoom. Default is 10. */
2222
- swipeToUnzoomThreshold?: DapDSImageZoom["swipeToUnzoomThreshold"]
2223
- /** URL of a higher quality image to display when zoomed. Falls back to the slotted image src. */
2224
- zoomSrc?: DapDSImageZoom["zoomSrc"]
2225
- /** Hides the expand and unzoom buttons. Default is false. */
2226
- hideButtons?: DapDSImageZoom["hideButtons"]
2227
- /** */
2228
- zoomButtonVariant?: DapDSImageZoom["zoomButtonVariant"]
2229
- /** `data-testid` for the expand/zoom button. */
2230
- expandButtonTestId?: DapDSImageZoom["expandButtonTestId"]
2231
- /** `data-testid` for the unzoom/close button. */
2232
- unzoomButtonTestId?: DapDSImageZoom["unzoomButtonTestId"]
2233
- }
2234
-
2235
- export type DapDSInputProps = {
2236
- /** The label of the input. */
2237
- label?: DapDSInput["label"]
2238
- /** Visually hides the label while keeping it available to assistive technology. (default: false) */
2239
- hideLabel?: DapDSInput["hideLabel"]
2240
- /** The description of the input. */
2241
- description?: DapDSInput["description"]
2242
- /** Text of optional label. */
2243
- optionalLabel?: DapDSInput["optionalLabel"]
2244
- /** Text of required indicator. (default: '*') */
2245
- requiredLabel?: DapDSInput["requiredLabel"]
2246
- /** Text weight of label. If true the label is subtle. Default value is false. */
2247
- subtle?: DapDSInput["subtle"]
2248
- /** The value of the input. */
2249
- value?: DapDSInput["value"]
2250
- /** The placeholder of the input. */
2251
- placeholder?: DapDSInput["placeholder"]
2252
- /** The loading state of the input. Default is false. */
2253
- loading?: DapDSInput["loading"]
2254
- /** The tooltip of the input. */
2255
- tooltip?: DapDSInput["tooltip"]
2256
- /** The tooltip placement of the input. */
2257
- tooltipPlacement?: DapDSInput["tooltipPlacement"]
2258
- /** The aria label of the tooltip. */
2259
- tooltipAriaLabel?: DapDSInput["tooltipAriaLabel"]
2260
- /** The feedback of the input. */
2261
- feedback?: DapDSInput["feedback"]
2262
- /** The feedback type of the input. Can be `negative`, `positive`, or `warning`. */
2263
- feedbackType?: DapDSInput["feedbackType"]
2264
- /** The status of the input. Can be `success` or `error`. */
2265
- status?: DapDSInput["status"]
2266
- /** The size of the input. Default is `sm`. */
2267
- size?: DapDSInput["size"]
2268
- /** Responsive size map (e.g. "xs:lg"). */
2269
- sizeMap?: DapDSInput["sizeMap"]
2270
- /** The name of the input. */
2271
- name?: DapDSInput["name"]
2272
- /** The type of the input. Default is 'text'. */
2273
- type?: DapDSInput["type"]
2274
- /** The disabled state of the input. Default is false. */
2275
- disabled?: DapDSInput["disabled"]
2276
- /** The required state of the input. Default is false. */
2277
- required?: DapDSInput["required"]
2278
- /** The readonly state of the input. Default is false. */
2279
- readonly?: DapDSInput["readonly"]
2280
- /** The autofocus state of the input. Default is false. */
2281
- autofocus?: DapDSInput["autofocus"]
2282
- /** The autocapitalize state of the input. Default is false. */
2283
- autocapitalize?: DapDSInput["autocapitalize"]
2284
- /** The minimum length of the input. */
2285
- minlength?: DapDSInput["minlength"]
2286
- /** The maximum length of the input. */
2287
- maxlength?: DapDSInput["maxlength"]
2288
- /** The minimum value of the number input. */
2289
- min?: DapDSInput["min"]
2290
- /** The maximum value of the number input. */
2291
- max?: DapDSInput["max"]
2292
- /** The step value of the number input. */
2293
- step?: DapDSInput["step"]
2294
- /** The inputmode of the input. */
2295
- inputmode?: DapDSInput["inputmode"]
2296
- /** The regex pattern of the input. */
2297
- pattern?: DapDSInput["pattern"]
2193
+ export type DapDSFeedbackProps = {
2194
+ /** The feedback message. */
2195
+ feedback?: DapDSFeedback["feedback"]
2196
+ /** The size of the feedback. Default is `sm`. */
2197
+ feedbackSize?: DapDSFeedback["feedbackSize"]
2198
+ /** The type of the feedback. */
2199
+ feedbackType?: DapDSFeedback["feedbackType"]
2200
+ /** The weight of the feedback. */
2201
+ feedbackSubtle?: DapDSFeedback["feedbackSubtle"]
2202
+ /** Removes the margins around the feedback. */
2203
+ feedbackNoMargin?: DapDSFeedback["feedbackNoMargin"]
2204
+ /** The id of the feedback. */
2205
+ feedbackId?: DapDSFeedback["feedbackId"]
2298
2206
  }
2299
2207
 
2300
2208
  export type DapDSLabelProps = {
@@ -2322,6 +2230,33 @@ export type DapDSLabelProps = {
2322
2230
  required?: DapDSLabel["required"]
2323
2231
  }
2324
2232
 
2233
+ export type DapDSImageZoomProps = {
2234
+ /** The open/zoomed state. Can be used for controlled mode. */
2235
+ open?: DapDSImageZoom["open"]
2236
+ /** Disables zoom functionality. */
2237
+ isDisabled?: DapDSImageZoom["isDisabled"]
2238
+ /** Margin in pixels from viewport edges when zoomed. Default is 0. */
2239
+ zoomMargin?: DapDSImageZoom["zoomMargin"]
2240
+ /** Accessible label for the zoom trigger. Default is 'Expand image'. */
2241
+ expandButtonAriaLabel?: DapDSImageZoom["expandButtonAriaLabel"]
2242
+ /** Accessible label for the unzoom button. Default is 'Minimize image'. */
2243
+ unzoomButtonAriaLabel?: DapDSImageZoom["unzoomButtonAriaLabel"]
2244
+ /** Enables swipe gesture to close when zoomed. Default is true. */
2245
+ canSwipeToUnzoom?: DapDSImageZoom["canSwipeToUnzoom"]
2246
+ /** Swipe distance in pixels required to trigger unzoom. Default is 10. */
2247
+ swipeToUnzoomThreshold?: DapDSImageZoom["swipeToUnzoomThreshold"]
2248
+ /** URL of a higher quality image to display when zoomed. Falls back to the slotted image src. */
2249
+ zoomSrc?: DapDSImageZoom["zoomSrc"]
2250
+ /** Hides the expand and unzoom buttons. Default is false. */
2251
+ hideButtons?: DapDSImageZoom["hideButtons"]
2252
+ /** */
2253
+ zoomButtonVariant?: DapDSImageZoom["zoomButtonVariant"]
2254
+ /** `data-testid` for the expand/zoom button. */
2255
+ expandButtonTestId?: DapDSImageZoom["expandButtonTestId"]
2256
+ /** `data-testid` for the unzoom/close button. */
2257
+ unzoomButtonTestId?: DapDSImageZoom["unzoomButtonTestId"]
2258
+ }
2259
+
2325
2260
  export type DapDSLinkProps = {
2326
2261
  /** The size of the link */
2327
2262
  size?: DapDSLink["size"]
@@ -2981,6 +2916,71 @@ export type DapDSSearchProps = {
2981
2916
  subtle?: DapDSSearch["subtle"]
2982
2917
  }
2983
2918
 
2919
+ export type DapDSInputProps = {
2920
+ /** The label of the input. */
2921
+ label?: DapDSInput["label"]
2922
+ /** Visually hides the label while keeping it available to assistive technology. (default: false) */
2923
+ hideLabel?: DapDSInput["hideLabel"]
2924
+ /** The description of the input. */
2925
+ description?: DapDSInput["description"]
2926
+ /** Text of optional label. */
2927
+ optionalLabel?: DapDSInput["optionalLabel"]
2928
+ /** Text of required indicator. (default: '*') */
2929
+ requiredLabel?: DapDSInput["requiredLabel"]
2930
+ /** Text weight of label. If true the label is subtle. Default value is false. */
2931
+ subtle?: DapDSInput["subtle"]
2932
+ /** The value of the input. */
2933
+ value?: DapDSInput["value"]
2934
+ /** The placeholder of the input. */
2935
+ placeholder?: DapDSInput["placeholder"]
2936
+ /** The loading state of the input. Default is false. */
2937
+ loading?: DapDSInput["loading"]
2938
+ /** The tooltip of the input. */
2939
+ tooltip?: DapDSInput["tooltip"]
2940
+ /** The tooltip placement of the input. */
2941
+ tooltipPlacement?: DapDSInput["tooltipPlacement"]
2942
+ /** The aria label of the tooltip. */
2943
+ tooltipAriaLabel?: DapDSInput["tooltipAriaLabel"]
2944
+ /** The feedback of the input. */
2945
+ feedback?: DapDSInput["feedback"]
2946
+ /** The feedback type of the input. Can be `negative`, `positive`, or `warning`. */
2947
+ feedbackType?: DapDSInput["feedbackType"]
2948
+ /** The status of the input. Can be `success` or `error`. */
2949
+ status?: DapDSInput["status"]
2950
+ /** The size of the input. Default is `sm`. */
2951
+ size?: DapDSInput["size"]
2952
+ /** Responsive size map (e.g. "xs:lg"). */
2953
+ sizeMap?: DapDSInput["sizeMap"]
2954
+ /** The name of the input. */
2955
+ name?: DapDSInput["name"]
2956
+ /** The type of the input. Default is 'text'. */
2957
+ type?: DapDSInput["type"]
2958
+ /** The disabled state of the input. Default is false. */
2959
+ disabled?: DapDSInput["disabled"]
2960
+ /** The required state of the input. Default is false. */
2961
+ required?: DapDSInput["required"]
2962
+ /** The readonly state of the input. Default is false. */
2963
+ readonly?: DapDSInput["readonly"]
2964
+ /** The autofocus state of the input. Default is false. */
2965
+ autofocus?: DapDSInput["autofocus"]
2966
+ /** The autocapitalize state of the input. Default is false. */
2967
+ autocapitalize?: DapDSInput["autocapitalize"]
2968
+ /** The minimum length of the input. */
2969
+ minlength?: DapDSInput["minlength"]
2970
+ /** The maximum length of the input. */
2971
+ maxlength?: DapDSInput["maxlength"]
2972
+ /** The minimum value of the number input. */
2973
+ min?: DapDSInput["min"]
2974
+ /** The maximum value of the number input. */
2975
+ max?: DapDSInput["max"]
2976
+ /** The step value of the number input. */
2977
+ step?: DapDSInput["step"]
2978
+ /** The inputmode of the input. */
2979
+ inputmode?: DapDSInput["inputmode"]
2980
+ /** The regex pattern of the input. */
2981
+ pattern?: DapDSInput["pattern"]
2982
+ }
2983
+
2984
2984
  export type DapDSSelectProps = {
2985
2985
  /** The popup placement of the select */
2986
2986
  placement?: DapDSSelect["placement"]
@@ -3886,17 +3886,6 @@ export type ArrowsExpandUpDownFillProps = {
3886
3886
  focusable?: ArrowsExpandUpDownFill["focusable"]
3887
3887
  }
3888
3888
 
3889
- export type BusinessCalendarLineProps = {
3890
- /** (optional) The width and height in pixels */
3891
- size?: BusinessCalendarLine["size"]
3892
- /** (optional) Sets the icon color via the `fill` attribute */
3893
- selected?: BusinessCalendarLine["selected"]
3894
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3895
- accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
3896
- /** (optional) If `true` the icon can receive focus */
3897
- focusable?: BusinessCalendarLine["focusable"]
3898
- }
3899
-
3900
3889
  export type BuildingsHome6LineProps = {
3901
3890
  /** (optional) The width and height in pixels */
3902
3891
  size?: BuildingsHome6Line["size"]
@@ -3974,17 +3963,6 @@ export type DocumentFileImageLineProps = {
3974
3963
  focusable?: DocumentFileImageLine["focusable"]
3975
3964
  }
3976
3965
 
3977
- export type DocumentFileMusicLineProps = {
3978
- /** (optional) The width and height in pixels */
3979
- size?: DocumentFileMusicLine["size"]
3980
- /** (optional) Sets the icon color via the `fill` attribute */
3981
- selected?: DocumentFileMusicLine["selected"]
3982
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3983
- accessibilityTitle?: DocumentFileMusicLine["accessibilityTitle"]
3984
- /** (optional) If `true` the icon can receive focus */
3985
- focusable?: DocumentFileMusicLine["focusable"]
3986
- }
3987
-
3988
3966
  export type DocumentFileTextLineProps = {
3989
3967
  /** (optional) The width and height in pixels */
3990
3968
  size?: DocumentFileTextLine["size"]
@@ -4073,50 +4051,6 @@ export type OthersCookieLineProps = {
4073
4051
  focusable?: OthersCookieLine["focusable"]
4074
4052
  }
4075
4053
 
4076
- export type UserAccountCircleFillProps = {
4077
- /** (optional) The width and height in pixels */
4078
- size?: UserAccountCircleFill["size"]
4079
- /** (optional) Sets the icon color via the `fill` attribute */
4080
- selected?: UserAccountCircleFill["selected"]
4081
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4082
- accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4083
- /** (optional) If `true` the icon can receive focus */
4084
- focusable?: UserAccountCircleFill["focusable"]
4085
- }
4086
-
4087
- export type UserAccountCircleLineProps = {
4088
- /** (optional) The width and height in pixels */
4089
- size?: UserAccountCircleLine["size"]
4090
- /** (optional) Sets the icon color via the `fill` attribute */
4091
- selected?: UserAccountCircleLine["selected"]
4092
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4093
- accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4094
- /** (optional) If `true` the icon can receive focus */
4095
- focusable?: UserAccountCircleLine["focusable"]
4096
- }
4097
-
4098
- export type UserUserFillProps = {
4099
- /** (optional) The width and height in pixels */
4100
- size?: UserUserFill["size"]
4101
- /** (optional) Sets the icon color via the `fill` attribute */
4102
- selected?: UserUserFill["selected"]
4103
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4104
- accessibilityTitle?: UserUserFill["accessibilityTitle"]
4105
- /** (optional) If `true` the icon can receive focus */
4106
- focusable?: UserUserFill["focusable"]
4107
- }
4108
-
4109
- export type UserUserLineProps = {
4110
- /** (optional) The width and height in pixels */
4111
- size?: UserUserLine["size"]
4112
- /** (optional) Sets the icon color via the `fill` attribute */
4113
- selected?: UserUserLine["selected"]
4114
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4115
- accessibilityTitle?: UserUserLine["accessibilityTitle"]
4116
- /** (optional) If `true` the icon can receive focus */
4117
- focusable?: UserUserLine["focusable"]
4118
- }
4119
-
4120
4054
  export type SystemAddLineProps = {
4121
4055
  /** (optional) The width and height in pixels */
4122
4056
  size?: SystemAddLine["size"]
@@ -4139,17 +4073,6 @@ export type SystemAlertFillProps = {
4139
4073
  focusable?: SystemAlertFill["focusable"]
4140
4074
  }
4141
4075
 
4142
- export type SystemAlertLineProps = {
4143
- /** (optional) The width and height in pixels */
4144
- size?: SystemAlertLine["size"]
4145
- /** (optional) Sets the icon color via the `fill` attribute */
4146
- selected?: SystemAlertLine["selected"]
4147
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4148
- accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
4149
- /** (optional) If `true` the icon can receive focus */
4150
- focusable?: SystemAlertLine["focusable"]
4151
- }
4152
-
4153
4076
  export type SystemCheckLineProps = {
4154
4077
  /** (optional) The width and height in pixels */
4155
4078
  size?: SystemCheckLine["size"]
@@ -4172,6 +4095,17 @@ export type SystemCheckLine2Props = {
4172
4095
  focusable?: SystemCheckLine2["focusable"]
4173
4096
  }
4174
4097
 
4098
+ export type SystemAlertLineProps = {
4099
+ /** (optional) The width and height in pixels */
4100
+ size?: SystemAlertLine["size"]
4101
+ /** (optional) Sets the icon color via the `fill` attribute */
4102
+ selected?: SystemAlertLine["selected"]
4103
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4104
+ accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
4105
+ /** (optional) If `true` the icon can receive focus */
4106
+ focusable?: SystemAlertLine["focusable"]
4107
+ }
4108
+
4175
4109
  export type SystemCheckboxBlankCircleFillProps = {
4176
4110
  /** (optional) The width and height in pixels */
4177
4111
  size?: SystemCheckboxBlankCircleFill["size"]
@@ -4326,17 +4260,6 @@ export type SystemErrorWarningLineProps = {
4326
4260
  focusable?: SystemErrorWarningLine["focusable"]
4327
4261
  }
4328
4262
 
4329
- export type SystemExternalLinkLineProps = {
4330
- /** (optional) The width and height in pixels */
4331
- size?: SystemExternalLinkLine["size"]
4332
- /** (optional) Sets the icon color via the `fill` attribute */
4333
- selected?: SystemExternalLinkLine["selected"]
4334
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4335
- accessibilityTitle?: SystemExternalLinkLine["accessibilityTitle"]
4336
- /** (optional) If `true` the icon can receive focus */
4337
- focusable?: SystemExternalLinkLine["focusable"]
4338
- }
4339
-
4340
4263
  export type SystemEyeLineProps = {
4341
4264
  /** (optional) The width and height in pixels */
4342
4265
  size?: SystemEyeLine["size"]
@@ -4392,6 +4315,17 @@ export type SystemInformationFillProps = {
4392
4315
  focusable?: SystemInformationFill["focusable"]
4393
4316
  }
4394
4317
 
4318
+ export type DocumentFileMusicLineProps = {
4319
+ /** (optional) The width and height in pixels */
4320
+ size?: DocumentFileMusicLine["size"]
4321
+ /** (optional) Sets the icon color via the `fill` attribute */
4322
+ selected?: DocumentFileMusicLine["selected"]
4323
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4324
+ accessibilityTitle?: DocumentFileMusicLine["accessibilityTitle"]
4325
+ /** (optional) If `true` the icon can receive focus */
4326
+ focusable?: DocumentFileMusicLine["focusable"]
4327
+ }
4328
+
4395
4329
  export type SystemInformationLineProps = {
4396
4330
  /** (optional) The width and height in pixels */
4397
4331
  size?: SystemInformationLine["size"]
@@ -4645,9 +4579,101 @@ export type SystemZoomOutLineProps = {
4645
4579
  focusable?: SystemZoomOutLine["focusable"]
4646
4580
  }
4647
4581
 
4582
+ export type SystemExternalLinkLineProps = {
4583
+ /** (optional) The width and height in pixels */
4584
+ size?: SystemExternalLinkLine["size"]
4585
+ /** (optional) Sets the icon color via the `fill` attribute */
4586
+ selected?: SystemExternalLinkLine["selected"]
4587
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4588
+ accessibilityTitle?: SystemExternalLinkLine["accessibilityTitle"]
4589
+ /** (optional) If `true` the icon can receive focus */
4590
+ focusable?: SystemExternalLinkLine["focusable"]
4591
+ }
4592
+
4593
+ export type UserAccountCircleFillProps = {
4594
+ /** (optional) The width and height in pixels */
4595
+ size?: UserAccountCircleFill["size"]
4596
+ /** (optional) Sets the icon color via the `fill` attribute */
4597
+ selected?: UserAccountCircleFill["selected"]
4598
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4599
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4600
+ /** (optional) If `true` the icon can receive focus */
4601
+ focusable?: UserAccountCircleFill["focusable"]
4602
+ }
4603
+
4604
+ export type UserAccountCircleLineProps = {
4605
+ /** (optional) The width and height in pixels */
4606
+ size?: UserAccountCircleLine["size"]
4607
+ /** (optional) Sets the icon color via the `fill` attribute */
4608
+ selected?: UserAccountCircleLine["selected"]
4609
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4610
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4611
+ /** (optional) If `true` the icon can receive focus */
4612
+ focusable?: UserAccountCircleLine["focusable"]
4613
+ }
4614
+
4615
+ export type UserUserFillProps = {
4616
+ /** (optional) The width and height in pixels */
4617
+ size?: UserUserFill["size"]
4618
+ /** (optional) Sets the icon color via the `fill` attribute */
4619
+ selected?: UserUserFill["selected"]
4620
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4621
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
4622
+ /** (optional) If `true` the icon can receive focus */
4623
+ focusable?: UserUserFill["focusable"]
4624
+ }
4625
+
4626
+ export type UserUserLineProps = {
4627
+ /** (optional) The width and height in pixels */
4628
+ size?: UserUserLine["size"]
4629
+ /** (optional) Sets the icon color via the `fill` attribute */
4630
+ selected?: UserUserLine["selected"]
4631
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4632
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
4633
+ /** (optional) If `true` the icon can receive focus */
4634
+ focusable?: UserUserLine["focusable"]
4635
+ }
4636
+
4637
+ export type BusinessCalendarLineProps = {
4638
+ /** (optional) The width and height in pixels */
4639
+ size?: BusinessCalendarLine["size"]
4640
+ /** (optional) Sets the icon color via the `fill` attribute */
4641
+ selected?: BusinessCalendarLine["selected"]
4642
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4643
+ accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
4644
+ /** (optional) If `true` the icon can receive focus */
4645
+ focusable?: BusinessCalendarLine["focusable"]
4646
+ }
4647
+
4648
4648
  // Augment Vue's GlobalComponents interface
4649
4649
  declare module 'vue' {
4650
4650
  interface GlobalComponents {
4651
+ /**
4652
+ * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4653
+ *
4654
+ * ### Events:
4655
+ * - **dds-opened** - Event fired when the accordion is opened.
4656
+ * - **dds-closed** - Event fired when the accordion is closed.
4657
+ *
4658
+ * ### Slots:
4659
+ * - **default** - The content of the accordion.
4660
+ * - **heading** - The heading of the accordion.
4661
+ * - **icon-opened** - The icon when the accordion is opened.
4662
+ * - **icon-closed** - The icon when the accordion is closed.
4663
+ *
4664
+ * ### CSS Parts:
4665
+ * - **base** - The main accordion container.
4666
+ * - **heading** - The heading of the accordion.
4667
+ * - **button** - The button of the accordion.
4668
+ * - **content** - The content of the accordion.
4669
+ * - **content-container** - The container of the accordion content.
4670
+ * - **icon-wrapper** - The icon wrapper of the accordion.
4671
+ * - **open-icon** - The icon when the accordion is opened.
4672
+ * - **open-icon-base** - The base of the icon when the accordion is opened.
4673
+ * - **close-icon** - The icon when the accordion is closed.
4674
+ * - **close-icon-base** - The base of the icon when the accordion is closed.
4675
+ */
4676
+ 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4651
4677
  /**
4652
4678
  * Avatar component can be used to display user profile images, initials, or icons.
4653
4679
  *
@@ -4684,31 +4710,25 @@ declare module 'vue' {
4684
4710
  */
4685
4711
  'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4686
4712
  /**
4687
- * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4713
+ * Anchor heading is a heading with an anchor link.
4688
4714
  *
4689
- * ### Events:
4690
- * - **dds-opened** - Event fired when the accordion is opened.
4691
- * - **dds-closed** - Event fired when the accordion is closed.
4715
+ * ### CSS Parts:
4716
+ * - **base** - The main anchor heading container.
4717
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4718
+ * - **link-base** - The base of the link part.
4719
+ * - **text** - The text of the anchor heading.
4720
+ */
4721
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4722
+ /**
4723
+ * An accordion group is a collection of accordion components.
4692
4724
  *
4693
4725
  * ### Slots:
4694
- * - **default** - The content of the accordion.
4695
- * - **heading** - The heading of the accordion.
4696
- * - **icon-opened** - The icon when the accordion is opened.
4697
- * - **icon-closed** - The icon when the accordion is closed.
4726
+ * - **default** - The content of the accordion group.
4698
4727
  *
4699
4728
  * ### CSS Parts:
4700
- * - **base** - The main accordion container.
4701
- * - **heading** - The heading of the accordion.
4702
- * - **button** - The button of the accordion.
4703
- * - **content** - The content of the accordion.
4704
- * - **content-container** - The container of the accordion content.
4705
- * - **icon-wrapper** - The icon wrapper of the accordion.
4706
- * - **open-icon** - The icon when the accordion is opened.
4707
- * - **open-icon-base** - The base of the icon when the accordion is opened.
4708
- * - **close-icon** - The icon when the accordion is closed.
4709
- * - **close-icon-base** - The base of the icon when the accordion is closed.
4729
+ * - **base** - The main accordion group container.
4710
4730
  */
4711
- 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4731
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4712
4732
  /**
4713
4733
  * A badge is a small status descriptor for UI elements.
4714
4734
  *
@@ -4723,18 +4743,6 @@ declare module 'vue' {
4723
4743
  * - **icon-base** - The base of the icon.
4724
4744
  */
4725
4745
  'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4726
- /**
4727
- * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4728
- *
4729
- * ### Slots:
4730
- * - **default** - The content of the breadcrumb.
4731
- * - **separator** - The separator between breadcrumb items. Default is '/'.
4732
- *
4733
- * ### CSS Parts:
4734
- * - **base** - The main breadcrumb container.
4735
- * - **separator** - The separator of the breadcrumb.
4736
- */
4737
- 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4738
4746
  /**
4739
4747
  * A banner is a message displayed at the top of the page to provide important information to the user.
4740
4748
  *
@@ -4760,25 +4768,17 @@ declare module 'vue' {
4760
4768
  */
4761
4769
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4762
4770
  /**
4763
- * An accordion group is a collection of accordion components.
4771
+ * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4764
4772
  *
4765
4773
  * ### Slots:
4766
- * - **default** - The content of the accordion group.
4767
- *
4768
- * ### CSS Parts:
4769
- * - **base** - The main accordion group container.
4770
- */
4771
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4772
- /**
4773
- * Anchor heading is a heading with an anchor link.
4774
+ * - **default** - The content of the breadcrumb.
4775
+ * - **separator** - The separator between breadcrumb items. Default is '/'.
4774
4776
  *
4775
4777
  * ### CSS Parts:
4776
- * - **base** - The main anchor heading container.
4777
- * - **link** - The link of the anchor heading. dap-ds-link element.
4778
- * - **link-base** - The base of the link part.
4779
- * - **text** - The text of the anchor heading.
4778
+ * - **base** - The main breadcrumb container.
4779
+ * - **separator** - The separator of the breadcrumb.
4780
4780
  */
4781
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4781
+ 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4782
4782
  /**
4783
4783
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4784
4784
  *
@@ -5120,38 +5120,6 @@ declare module 'vue' {
5120
5120
  * - **text** - Badge text
5121
5121
  */
5122
5122
  'dap-ds-dap-badge': DefineCustomElement<DapDSDAPBadge, DapDSDAPBadgeProps, {}>
5123
- /**
5124
- * A data table is a component that displays data in a tabular format.
5125
- *
5126
- * ### Events:
5127
- * - **dds-sorting-change** - Fired when the sorting of the table changes.
5128
- * - **dds-selection-change** - Fired when the selection of the table changes.
5129
- * - **dds-pagination-change** - Fired when the pagination of the table changes.
5130
- * - **dds-row-click** - Fired when a row is clicked.
5131
- *
5132
- * ### Slots:
5133
- * - **loading** - The loading content of the table.
5134
- * - **empty** - The empty content of the table.
5135
- *
5136
- * ### CSS Parts:
5137
- * - **base** - The main table container.
5138
- * - **header** - The header of the table.
5139
- * - **header-row** - The header row of the table.
5140
- * - **header-cell** - All cells of the header.
5141
- * - **body** - The body of the table.
5142
- * - **empty** - The empty content of the table.
5143
- * - **loading** - The loading content of the table.
5144
- * - **row** - All rows of the table.
5145
- * - **cell** - All cells of the table.
5146
- * - **pager** - The pager of the table.
5147
- * - **pager-base** - The base of the pager.
5148
- * - **pager-first** - The first button of the pager.
5149
- * - **pager-previous** - The previous button of the pager.
5150
- * - **pager-next** - The next button of the pager.
5151
- * - **pager-last** - The last button of the pager.
5152
- * - **pager-page-size-select** - The page size select of the pager.
5153
- */
5154
- 'dap-ds-datatable': DefineGenericCustomElement<DapDSDataTable<any>, DapDSDataTableProps<any>, any, DapDSDataTableEvents<any>>
5155
5123
  /**
5156
5124
  * A datepicker is a graphical user interface widget that allows the user to select a date from a calendar and/or time from a time range.
5157
5125
  *
@@ -5185,19 +5153,6 @@ declare module 'vue' {
5185
5153
  * A divider is a visual separator between elements.
5186
5154
  */
5187
5155
  'dap-ds-divider': DefineCustomElement<DapDSDivider, DapDSDividerProps, {}>
5188
- /**
5189
- * A feedback is a container for feedback messages.
5190
- *
5191
- * ### Slots:
5192
- * - **icon** - The custom icon of the feedback.
5193
- * - **default** - The text of the feedback.
5194
- *
5195
- * ### CSS Parts:
5196
- * - **base** - The main feedback container.
5197
- * - **icon** - The icon of the feedback.
5198
- * - **text** - The text of the feedback.
5199
- */
5200
- 'dap-ds-feedback': DefineCustomElement<DapDSFeedback, DapDSFeedbackProps, {}>
5201
5156
  /**
5202
5157
  * A file input list item is a container for file input list items.
5203
5158
  *
@@ -5261,7 +5216,39 @@ declare module 'vue' {
5261
5216
  * - **upload-button** - The upload button.
5262
5217
  * - **dropzone** - The dropzone area.
5263
5218
  */
5264
- 'dap-ds-file-input': DefineCustomElement<DapDSFileInput, DapDSFileInputProps, DapDSFileInputEvents>
5219
+ 'dap-ds-file-input': DefineCustomElement<DapDSFileInput, DapDSFileInputProps, DapDSFileInputEvents>
5220
+ /**
5221
+ * A data table is a component that displays data in a tabular format.
5222
+ *
5223
+ * ### Events:
5224
+ * - **dds-sorting-change** - Fired when the sorting of the table changes.
5225
+ * - **dds-selection-change** - Fired when the selection of the table changes.
5226
+ * - **dds-pagination-change** - Fired when the pagination of the table changes.
5227
+ * - **dds-row-click** - Fired when a row is clicked.
5228
+ *
5229
+ * ### Slots:
5230
+ * - **loading** - The loading content of the table.
5231
+ * - **empty** - The empty content of the table.
5232
+ *
5233
+ * ### CSS Parts:
5234
+ * - **base** - The main table container.
5235
+ * - **header** - The header of the table.
5236
+ * - **header-row** - The header row of the table.
5237
+ * - **header-cell** - All cells of the header.
5238
+ * - **body** - The body of the table.
5239
+ * - **empty** - The empty content of the table.
5240
+ * - **loading** - The loading content of the table.
5241
+ * - **row** - All rows of the table.
5242
+ * - **cell** - All cells of the table.
5243
+ * - **pager** - The pager of the table.
5244
+ * - **pager-base** - The base of the pager.
5245
+ * - **pager-first** - The first button of the pager.
5246
+ * - **pager-previous** - The previous button of the pager.
5247
+ * - **pager-next** - The next button of the pager.
5248
+ * - **pager-last** - The last button of the pager.
5249
+ * - **pager-page-size-select** - The page size select of the pager.
5250
+ */
5251
+ 'dap-ds-datatable': DefineGenericCustomElement<DapDSDataTable<any>, DapDSDataTableProps<any>, any, DapDSDataTableEvents<any>>
5265
5252
  /**
5266
5253
  * An icon is a graphical symbol that represents an object or action.
5267
5254
  *
@@ -5286,6 +5273,32 @@ declare module 'vue' {
5286
5273
  * - **icon-base** - The base of the icon.
5287
5274
  */
5288
5275
  'dap-ds-icon-button': DefineCustomElement<DapDSIconButton, DapDSIconButtonProps, {}>
5276
+ /**
5277
+ * A feedback is a container for feedback messages.
5278
+ *
5279
+ * ### Slots:
5280
+ * - **icon** - The custom icon of the feedback.
5281
+ * - **default** - The text of the feedback.
5282
+ *
5283
+ * ### CSS Parts:
5284
+ * - **base** - The main feedback container.
5285
+ * - **icon** - The icon of the feedback.
5286
+ * - **text** - The text of the feedback.
5287
+ */
5288
+ 'dap-ds-feedback': DefineCustomElement<DapDSFeedback, DapDSFeedbackProps, {}>
5289
+ /**
5290
+ * A label is a container for labels intended for general use. It contains a label text, description, and tooltip.
5291
+ *
5292
+ * ### CSS Parts:
5293
+ * - **base** - The main label container.
5294
+ * - **label** - Tha main label container. dap-ds-form-label element.
5295
+ * - **label-base** - The label text.
5296
+ * - **label-required** - The required indicator of the label.
5297
+ * - **label-optional** - The optional indicator of the label.
5298
+ * - **tooltip** - The tooltip of the label. dap-ds-tooltip element.
5299
+ * - **description** - The description of the label.
5300
+ */
5301
+ 'dap-ds-label': DefineCustomElement<DapDSLabel, DapDSLabelProps, {}>
5289
5302
  /**
5290
5303
  * An image zoom component that provides a Medium.com-style zoom experience. Click an image to expand it to fill the viewport with a smooth animation.
5291
5304
  *
@@ -5311,49 +5324,6 @@ declare module 'vue' {
5311
5324
  * - **unzoom-button-icon** - The icon of the unzoom button.
5312
5325
  */
5313
5326
  'dap-ds-image-zoom': DefineCustomElement<DapDSImageZoom, DapDSImageZoomProps, DapDSImageZoomEvents>
5314
- /**
5315
- * An input is a field used to collect user input.
5316
- *
5317
- * ### Events:
5318
- * - **dds-change** - Fired when the input value changes.
5319
- * - **dds-input** - Fired when the input value changes.
5320
- * - **dds-keydown** - Fired when a key is pressed down.
5321
- * - **dds-blur** - Fired when the input loses focus.
5322
- * - **dds-focus** - Emitted when the input gains focus.
5323
- *
5324
- * ### Slots:
5325
- * - **postfix** - The postfix of the input.
5326
- * - **prefix** - The prefix of the input.
5327
- * - **addon-before** - The addon before the input.
5328
- * - **addon-after** - The addon after the input.
5329
- * - **feedback-icon** - The custom icon of the feedback.
5330
- *
5331
- * ### CSS Parts:
5332
- * - **base** - The main input container.
5333
- * - **input** - The input element.
5334
- * - **label** - The label of the input.
5335
- * - **description** - The description of the input.
5336
- * - **feedback** - The feedback of the input.
5337
- * - **tooltip** - The tooltip of the input.
5338
- * - **addon-before** - The addon before the input.
5339
- * - **addon-after** - The addon after the input.
5340
- * - **prefix** - The prefix of the input.
5341
- * - **postfix** - The postfix of the input.
5342
- */
5343
- 'dap-ds-input': DefineCustomElement<DapDSInput, DapDSInputProps, DapDSInputEvents>
5344
- /**
5345
- * A label is a container for labels intended for general use. It contains a label text, description, and tooltip.
5346
- *
5347
- * ### CSS Parts:
5348
- * - **base** - The main label container.
5349
- * - **label** - Tha main label container. dap-ds-form-label element.
5350
- * - **label-base** - The label text.
5351
- * - **label-required** - The required indicator of the label.
5352
- * - **label-optional** - The optional indicator of the label.
5353
- * - **tooltip** - The tooltip of the label. dap-ds-tooltip element.
5354
- * - **description** - The description of the label.
5355
- */
5356
- 'dap-ds-label': DefineCustomElement<DapDSLabel, DapDSLabelProps, {}>
5357
5327
  /**
5358
5328
  * A link is a reference to a web resource.
5359
5329
  *
@@ -5766,6 +5736,36 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5766
5736
  * - **input** - The input of the search.
5767
5737
  */
5768
5738
  'dap-ds-search': DefineCustomElement<DapDSSearch, DapDSSearchProps, DapDSSearchEvents>
5739
+ /**
5740
+ * An input is a field used to collect user input.
5741
+ *
5742
+ * ### Events:
5743
+ * - **dds-change** - Fired when the input value changes.
5744
+ * - **dds-input** - Fired when the input value changes.
5745
+ * - **dds-keydown** - Fired when a key is pressed down.
5746
+ * - **dds-blur** - Fired when the input loses focus.
5747
+ * - **dds-focus** - Emitted when the input gains focus.
5748
+ *
5749
+ * ### Slots:
5750
+ * - **postfix** - The postfix of the input.
5751
+ * - **prefix** - The prefix of the input.
5752
+ * - **addon-before** - The addon before the input.
5753
+ * - **addon-after** - The addon after the input.
5754
+ * - **feedback-icon** - The custom icon of the feedback.
5755
+ *
5756
+ * ### CSS Parts:
5757
+ * - **base** - The main input container.
5758
+ * - **input** - The input element.
5759
+ * - **label** - The label of the input.
5760
+ * - **description** - The description of the input.
5761
+ * - **feedback** - The feedback of the input.
5762
+ * - **tooltip** - The tooltip of the input.
5763
+ * - **addon-before** - The addon before the input.
5764
+ * - **addon-after** - The addon after the input.
5765
+ * - **prefix** - The prefix of the input.
5766
+ * - **postfix** - The postfix of the input.
5767
+ */
5768
+ 'dap-ds-input': DefineCustomElement<DapDSInput, DapDSInputProps, DapDSInputEvents>
5769
5769
  /**
5770
5770
  * A select is a form element that allows the user to select one option from a set.
5771
5771
  *
@@ -6331,13 +6331,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6331
6331
  * - **base** - The main icon container.
6332
6332
  */
6333
6333
  'dap-ds-icon-expand-up-down-fill': DefineCustomElement<ArrowsExpandUpDownFill, ArrowsExpandUpDownFillProps, {}>
6334
- /**
6335
- * An icon
6336
- *
6337
- * ### CSS Parts:
6338
- * - **base** - The main icon container.
6339
- */
6340
- 'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
6341
6334
  /**
6342
6335
  * An icon
6343
6336
  *
@@ -6387,13 +6380,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6387
6380
  * - **base** - The main icon container.
6388
6381
  */
6389
6382
  'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
6390
- /**
6391
- * An icon
6392
- *
6393
- * ### CSS Parts:
6394
- * - **base** - The main icon container.
6395
- */
6396
- 'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
6397
6383
  /**
6398
6384
  * An icon
6399
6385
  *
@@ -6450,34 +6436,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6450
6436
  * - **base** - The main icon container.
6451
6437
  */
6452
6438
  'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6453
- /**
6454
- * An icon
6455
- *
6456
- * ### CSS Parts:
6457
- * - **base** - The main icon container.
6458
- */
6459
- 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6460
- /**
6461
- * An icon
6462
- *
6463
- * ### CSS Parts:
6464
- * - **base** - The main icon container.
6465
- */
6466
- 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6467
- /**
6468
- * An icon
6469
- *
6470
- * ### CSS Parts:
6471
- * - **base** - The main icon container.
6472
- */
6473
- 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6474
- /**
6475
- * An icon
6476
- *
6477
- * ### CSS Parts:
6478
- * - **base** - The main icon container.
6479
- */
6480
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6481
6439
  /**
6482
6440
  * An icon
6483
6441
  *
@@ -6498,21 +6456,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6498
6456
  * ### CSS Parts:
6499
6457
  * - **base** - The main icon container.
6500
6458
  */
6501
- 'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
6459
+ 'dap-ds-icon-check-line': DefineCustomElement<SystemCheckLine, SystemCheckLineProps, {}>
6502
6460
  /**
6503
6461
  * An icon
6504
6462
  *
6505
6463
  * ### CSS Parts:
6506
6464
  * - **base** - The main icon container.
6507
6465
  */
6508
- 'dap-ds-icon-check-line': DefineCustomElement<SystemCheckLine, SystemCheckLineProps, {}>
6466
+ 'dap-ds-icon-check-line2': DefineCustomElement<SystemCheckLine2, SystemCheckLine2Props, {}>
6509
6467
  /**
6510
6468
  * An icon
6511
6469
  *
6512
6470
  * ### CSS Parts:
6513
6471
  * - **base** - The main icon container.
6514
6472
  */
6515
- 'dap-ds-icon-check-line2': DefineCustomElement<SystemCheckLine2, SystemCheckLine2Props, {}>
6473
+ 'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
6516
6474
  /**
6517
6475
  * An icon
6518
6476
  *
@@ -6617,42 +6575,42 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6617
6575
  * ### CSS Parts:
6618
6576
  * - **base** - The main icon container.
6619
6577
  */
6620
- 'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
6578
+ 'dap-ds-icon-eye-line': DefineCustomElement<SystemEyeLine, SystemEyeLineProps, {}>
6621
6579
  /**
6622
6580
  * An icon
6623
6581
  *
6624
6582
  * ### CSS Parts:
6625
6583
  * - **base** - The main icon container.
6626
6584
  */
6627
- 'dap-ds-icon-eye-line': DefineCustomElement<SystemEyeLine, SystemEyeLineProps, {}>
6585
+ 'dap-ds-icon-eye-off-line': DefineCustomElement<SystemEyeOffLine, SystemEyeOffLineProps, {}>
6628
6586
  /**
6629
6587
  * An icon
6630
6588
  *
6631
6589
  * ### CSS Parts:
6632
6590
  * - **base** - The main icon container.
6633
6591
  */
6634
- 'dap-ds-icon-eye-off-line': DefineCustomElement<SystemEyeOffLine, SystemEyeOffLineProps, {}>
6592
+ 'dap-ds-icon-forbid-fill': DefineCustomElement<SystemForbidFill, SystemForbidFillProps, {}>
6635
6593
  /**
6636
6594
  * An icon
6637
6595
  *
6638
6596
  * ### CSS Parts:
6639
6597
  * - **base** - The main icon container.
6640
6598
  */
6641
- 'dap-ds-icon-forbid-fill': DefineCustomElement<SystemForbidFill, SystemForbidFillProps, {}>
6599
+ 'dap-ds-icon-information-2-fill': DefineCustomElement<SystemInformation2Fill, SystemInformation2FillProps, {}>
6642
6600
  /**
6643
6601
  * An icon
6644
6602
  *
6645
6603
  * ### CSS Parts:
6646
6604
  * - **base** - The main icon container.
6647
6605
  */
6648
- 'dap-ds-icon-information-2-fill': DefineCustomElement<SystemInformation2Fill, SystemInformation2FillProps, {}>
6606
+ 'dap-ds-icon-information-fill': DefineCustomElement<SystemInformationFill, SystemInformationFillProps, {}>
6649
6607
  /**
6650
6608
  * An icon
6651
6609
  *
6652
6610
  * ### CSS Parts:
6653
6611
  * - **base** - The main icon container.
6654
6612
  */
6655
- 'dap-ds-icon-information-fill': DefineCustomElement<SystemInformationFill, SystemInformationFillProps, {}>
6613
+ 'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
6656
6614
  /**
6657
6615
  * An icon
6658
6616
  *
@@ -6814,6 +6772,48 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6814
6772
  * - **base** - The main icon container.
6815
6773
  */
6816
6774
  'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
6775
+ /**
6776
+ * An icon
6777
+ *
6778
+ * ### CSS Parts:
6779
+ * - **base** - The main icon container.
6780
+ */
6781
+ 'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
6782
+ /**
6783
+ * An icon
6784
+ *
6785
+ * ### CSS Parts:
6786
+ * - **base** - The main icon container.
6787
+ */
6788
+ 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6789
+ /**
6790
+ * An icon
6791
+ *
6792
+ * ### CSS Parts:
6793
+ * - **base** - The main icon container.
6794
+ */
6795
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6796
+ /**
6797
+ * An icon
6798
+ *
6799
+ * ### CSS Parts:
6800
+ * - **base** - The main icon container.
6801
+ */
6802
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6803
+ /**
6804
+ * An icon
6805
+ *
6806
+ * ### CSS Parts:
6807
+ * - **base** - The main icon container.
6808
+ */
6809
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6810
+ /**
6811
+ * An icon
6812
+ *
6813
+ * ### CSS Parts:
6814
+ * - **base** - The main icon container.
6815
+ */
6816
+ 'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
6817
6817
  }
6818
6818
  }
6819
6819
 
@@ -6821,14 +6821,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6821
6821
  declare global {
6822
6822
  namespace JSX {
6823
6823
  interface IntrinsicElements {
6824
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6824
6825
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6825
6826
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6826
- 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6827
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6828
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6827
6829
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6828
- 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6829
6830
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6830
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6831
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6831
+ 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6832
6832
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6833
6833
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6834
6834
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
@@ -6852,18 +6852,17 @@ declare global {
6852
6852
  'dap-ds-content-switcher': DapDSContentSwitcherProps & DapDSContentSwitcherEvents & DapDSContentSwitcherSlots
6853
6853
  'dap-ds-copybox-input': DapDSCopyBoxInputProps & DapDSCopyBoxInputEvents
6854
6854
  'dap-ds-dap-badge': DapDSDAPBadgeProps & DapDSDAPBadgeSlots
6855
- 'dap-ds-datatable': <T = any>(props: DapDSDataTableProps<T> & DapDSDataTableEvents<T> & DapDSDataTableSlots) => JSX.Element
6856
6855
  'dap-ds-datepicker': DapDSDatePickerProps & DapDSDatePickerEvents
6857
6856
  'dap-ds-divider': DapDSDividerProps
6858
- 'dap-ds-feedback': DapDSFeedbackProps & DapDSFeedbackSlots
6859
6857
  'dap-ds-file-input-list-item': DapDSFileInputListItemProps & DapDSFileInputListItemEvents & DapDSFileInputListItemSlots
6860
6858
  'dap-ds-file-input-list': DapDSFileInputListProps & DapDSFileInputListEvents & DapDSFileInputListSlots
6861
6859
  'dap-ds-file-input': DapDSFileInputProps & DapDSFileInputEvents & DapDSFileInputSlots
6860
+ 'dap-ds-datatable': <T = any>(props: DapDSDataTableProps<T> & DapDSDataTableEvents<T> & DapDSDataTableSlots) => JSX.Element
6862
6861
  'dap-ds-icon': DapDSIconProps & DapDSIconSlots
6863
6862
  'dap-ds-icon-button': DapDSIconButtonProps & DapDSIconButtonSlots
6864
- 'dap-ds-image-zoom': DapDSImageZoomProps & DapDSImageZoomEvents & DapDSImageZoomSlots
6865
- 'dap-ds-input': DapDSInputProps & DapDSInputEvents & DapDSInputSlots
6863
+ 'dap-ds-feedback': DapDSFeedbackProps & DapDSFeedbackSlots
6866
6864
  'dap-ds-label': DapDSLabelProps
6865
+ 'dap-ds-image-zoom': DapDSImageZoomProps & DapDSImageZoomEvents & DapDSImageZoomSlots
6867
6866
  'dap-ds-link': DapDSLinkProps & DapDSLinkEvents & DapDSLinkSlots
6868
6867
  'dap-ds-list-item': DapDSListItemProps & DapDSListItemSlots
6869
6868
  'dap-ds-modal': DapDSModalProps & DapDSModalEvents & DapDSModalSlots
@@ -6885,6 +6884,7 @@ declare global {
6885
6884
  'dap-ds-scroll-area': DapDSScrollAreaProps & DapDSScrollAreaSlots
6886
6885
  'dap-ds-scroll-progress': DapDSScrollProgressProps
6887
6886
  'dap-ds-search': DapDSSearchProps & DapDSSearchEvents & DapDSSearchSlots
6887
+ 'dap-ds-input': DapDSInputProps & DapDSInputEvents & DapDSInputSlots
6888
6888
  'dap-ds-select': DapDSSelectProps & DapDSSelectEvents & DapDSSelectSlots
6889
6889
  'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
6890
6890
  'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
@@ -6934,7 +6934,6 @@ declare global {
6934
6934
  'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
6935
6935
  'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
6936
6936
  'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
6937
- 'dap-ds-icon-calendar-line': BusinessCalendarLineProps
6938
6937
  'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6939
6938
  'dap-ds-icon-edit-line': DesignEditLineProps
6940
6939
  'dap-ds-icon-tools-line': DesignToolsLineProps
@@ -6942,7 +6941,6 @@ declare global {
6942
6941
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6943
6942
  'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6944
6943
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
6945
- 'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
6946
6944
  'dap-ds-icon-file-text-line': DocumentFileTextLineProps
6947
6945
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6948
6946
  'dap-ds-icon-folder-line': DocumentFolderLineProps
@@ -6951,15 +6949,11 @@ declare global {
6951
6949
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6952
6950
  'dap-ds-icon-heart-line': HealthHeartLineProps
6953
6951
  'dap-ds-icon-cookie-line': OthersCookieLineProps
6954
- 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6955
- 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6956
- 'dap-ds-icon-user-fill': UserUserFillProps
6957
- 'dap-ds-icon-user-line': UserUserLineProps
6958
6952
  'dap-ds-icon-add-line': SystemAddLineProps
6959
6953
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6960
- 'dap-ds-icon-alert-line': SystemAlertLineProps
6961
6954
  'dap-ds-icon-check-line': SystemCheckLineProps
6962
6955
  'dap-ds-icon-check-line2': SystemCheckLine2Props
6956
+ 'dap-ds-icon-alert-line': SystemAlertLineProps
6963
6957
  'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps
6964
6958
  'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheckProps
6965
6959
  'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
@@ -6974,12 +6968,12 @@ declare global {
6974
6968
  'dap-ds-icon-download-line': SystemDownloadLineProps
6975
6969
  'dap-ds-icon-error-warning-fill': SystemErrorWarningFillProps
6976
6970
  'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
6977
- 'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
6978
6971
  'dap-ds-icon-eye-line': SystemEyeLineProps
6979
6972
  'dap-ds-icon-eye-off-line': SystemEyeOffLineProps
6980
6973
  'dap-ds-icon-forbid-fill': SystemForbidFillProps
6981
6974
  'dap-ds-icon-information-2-fill': SystemInformation2FillProps
6982
6975
  'dap-ds-icon-information-fill': SystemInformationFillProps
6976
+ 'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
6983
6977
  'dap-ds-icon-information-line': SystemInformationLineProps
6984
6978
  'dap-ds-icon-lightbulb-fill': SystemLightbulbFillProps
6985
6979
  'dap-ds-icon-loading-spinner': SystemLoadingSpinnerProps
@@ -7003,6 +6997,12 @@ declare global {
7003
6997
  'dap-ds-icon-upload-line': SystemUploadLineProps
7004
6998
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
7005
6999
  'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
7000
+ 'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
7001
+ 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
7002
+ 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
7003
+ 'dap-ds-icon-user-fill': UserUserFillProps
7004
+ 'dap-ds-icon-user-line': UserUserLineProps
7005
+ 'dap-ds-icon-calendar-line': BusinessCalendarLineProps
7006
7006
  }
7007
7007
  }
7008
7008
  }