dap-design-system 0.58.0 → 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.
@@ -217,6 +217,13 @@ export interface DapDSAccordionEvents {
217
217
  onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
218
218
  }
219
219
 
220
+ export interface DapDSAvatarEvents {
221
+ /** Fired when the image loads successfully. */
222
+ onDdsLoad?: (event: CustomEvent) => void
223
+ /** Fired when the image fails to load. */
224
+ onDdsError?: (event: CustomEvent) => void
225
+ }
226
+
220
227
  export interface DapDSAvatarGroupEvents {
221
228
  /** Fired when the overflow indicator is clicked. */
222
229
  onDdsOverflowClick?: (event: CustomEvent) => void
@@ -227,13 +234,6 @@ export interface DapDSBannerEvents {
227
234
  onDdsClose?: (event: CustomEvent) => void
228
235
  }
229
236
 
230
- export interface DapDSAvatarEvents {
231
- /** Fired when the image loads successfully. */
232
- onDdsLoad?: (event: CustomEvent) => void
233
- /** Fired when the image fails to load. */
234
- onDdsError?: (event: CustomEvent) => void
235
- }
236
-
237
237
  export interface DapDSButtonEvents {
238
238
  /** Emitted when the loading timeout is reached */
239
239
  onDdsLoadingTimeout?: (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
@@ -666,11 +666,23 @@ export interface DapDSAccordionSlots {
666
666
  'icon-closed'?: () => any
667
667
  }
668
668
 
669
+ export interface DapDSAvatarSlots {
670
+ /** The icon to display when variant is 'icon'. */
671
+ 'icon'?: () => any
672
+ /** Custom fallback content when image fails to load. */
673
+ 'fallback'?: () => any
674
+ }
675
+
669
676
  export interface DapDSAvatarGroupSlots {
670
677
  /** The avatars to display in the group. */
671
678
  default?: () => any
672
679
  }
673
680
 
681
+ export interface DapDSAccordionGroupSlots {
682
+ /** The content of the accordion group. */
683
+ default?: () => any
684
+ }
685
+
674
686
  export interface DapDSBadgeSlots {
675
687
  /** The content of the badge. */
676
688
  default?: () => any
@@ -687,16 +699,11 @@ export interface DapDSBannerSlots {
687
699
  'icon'?: () => any
688
700
  }
689
701
 
690
- export interface DapDSAccordionGroupSlots {
691
- /** The content of the accordion group. */
702
+ export interface DapDSBreadcrumbSlots {
703
+ /** The content of the breadcrumb. */
692
704
  default?: () => any
693
- }
694
-
695
- export interface DapDSAvatarSlots {
696
- /** The icon to display when variant is 'icon'. */
697
- 'icon'?: () => any
698
- /** Custom fallback content when image fails to load. */
699
- 'fallback'?: () => any
705
+ /** The separator between breadcrumb items. Default is '/'. */
706
+ 'separator'?: () => any
700
707
  }
701
708
 
702
709
  export interface DapDSBreadcrumbItemSlots {
@@ -721,6 +728,19 @@ export interface DapDSCalendarSlots {
721
728
  default?: () => any
722
729
  }
723
730
 
731
+ export interface DapDSCalloutSlots {
732
+ /** The content of the callout. */
733
+ default?: () => any
734
+ /** The title of the callout. */
735
+ 'title'?: () => any
736
+ /** The icon of the callout. */
737
+ 'icon'?: () => any
738
+ /** The actions of the callout. */
739
+ 'actions'?: () => any
740
+ /** The close button of the callout. */
741
+ 'close'?: () => any
742
+ }
743
+
724
744
  export interface DapDSCardActionsSlots {
725
745
  /** The content of the card actions. */
726
746
  default?: () => any
@@ -751,26 +771,6 @@ export interface DapDSCardSlots {
751
771
  default?: () => any
752
772
  }
753
773
 
754
- export interface DapDSCalloutSlots {
755
- /** The content of the callout. */
756
- default?: () => any
757
- /** The title of the callout. */
758
- 'title'?: () => any
759
- /** The icon of the callout. */
760
- 'icon'?: () => any
761
- /** The actions of the callout. */
762
- 'actions'?: () => any
763
- /** The close button of the callout. */
764
- 'close'?: () => any
765
- }
766
-
767
- export interface DapDSBreadcrumbSlots {
768
- /** The content of the breadcrumb. */
769
- default?: () => any
770
- /** The separator between breadcrumb items. Default is '/'. */
771
- 'separator'?: () => any
772
- }
773
-
774
774
  export interface DapDSCodePuncherSlots {
775
775
  /** Slot for code-puncher-group, code-puncher-slot, and code-puncher-separator elements. */
776
776
  default?: () => any
@@ -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,17 +1123,6 @@ export interface DapDSRadioGroupSlots {
1123
1123
  'feedback-icon'?: () => any
1124
1124
  }
1125
1125
 
1126
- export type DapDSAnchorHeadingProps = {
1127
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1128
- variant?: DapDSAnchorHeading["variant"]
1129
- /** The label of the heading. */
1130
- label?: DapDSAnchorHeading["label"]
1131
- /** */
1132
- elementId?: DapDSAnchorHeading["elementId"]
1133
- /** */
1134
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1135
- }
1136
-
1137
1126
  export type DapDSAccordionProps = {
1138
1127
  /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1139
1128
  size?: DapDSAccordion["size"]
@@ -1159,6 +1148,33 @@ export type DapDSAccordionProps = {
1159
1148
  loading?: DapDSAccordion["loading"]
1160
1149
  }
1161
1150
 
1151
+ export type DapDSAvatarProps = {
1152
+ /** The shape of the avatar */
1153
+ shape?: DapDSAvatar["shape"]
1154
+ /** The variant type of the avatar */
1155
+ variant?: DapDSAvatar["variant"]
1156
+ /** The source of the avatar image */
1157
+ src?: DapDSAvatar["src"]
1158
+ /** The alt text of the avatar */
1159
+ alt?: DapDSAvatar["alt"]
1160
+ /** The initials to display when variant is 'initials' */
1161
+ initials?: DapDSAvatar["initials"]
1162
+ /** Accessible label for the avatar */
1163
+ label?: DapDSAvatar["label"]
1164
+ /** Loading state indicator */
1165
+ loading?: DapDSAvatar["loading"]
1166
+ /** Whether the avatar is interactive (clickable) */
1167
+ interactive?: DapDSAvatar["interactive"]
1168
+ /** The width of the avatar. This will override the size */
1169
+ width?: DapDSAvatar["width"]
1170
+ /** The height of the avatar. This will override the size */
1171
+ height?: DapDSAvatar["height"]
1172
+ /** The size of the avatar. Default is `md`. */
1173
+ size?: DapDSAvatar["size"]
1174
+ /** Responsive size map (e.g. "md:lg"). */
1175
+ sizeMap?: DapDSAvatar["sizeMap"]
1176
+ }
1177
+
1162
1178
  export type DapDSAvatarGroupProps = {
1163
1179
  /** Layout type for the avatar group */
1164
1180
  layout?: DapDSAvatarGroup["layout"]
@@ -1178,6 +1194,24 @@ export type DapDSAvatarGroupProps = {
1178
1194
  sizeMap?: DapDSAvatarGroup["sizeMap"]
1179
1195
  }
1180
1196
 
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"]
1213
+ }
1214
+
1181
1215
  export type DapDSBadgeProps = {
1182
1216
  /** The type of the badge */
1183
1217
  type?: DapDSBadge["type"]
@@ -1206,38 +1240,13 @@ export type DapDSBannerProps = {
1206
1240
  icon?: DapDSBanner["icon"]
1207
1241
  }
1208
1242
 
1209
- export type DapDSAccordionGroupProps = {
1210
- /** Whether to close other accordions when one is opened. */
1211
- autoClose?: DapDSAccordionGroup["autoClose"]
1212
- /** The variant of the accordion */
1213
- variant?: DapDSAccordionGroup["variant"]
1214
- }
1215
-
1216
- export type DapDSAvatarProps = {
1217
- /** The shape of the avatar */
1218
- shape?: DapDSAvatar["shape"]
1219
- /** The variant type of the avatar */
1220
- variant?: DapDSAvatar["variant"]
1221
- /** The source of the avatar image */
1222
- src?: DapDSAvatar["src"]
1223
- /** The alt text of the avatar */
1224
- alt?: DapDSAvatar["alt"]
1225
- /** The initials to display when variant is 'initials' */
1226
- initials?: DapDSAvatar["initials"]
1227
- /** Accessible label for the avatar */
1228
- label?: DapDSAvatar["label"]
1229
- /** Loading state indicator */
1230
- loading?: DapDSAvatar["loading"]
1231
- /** Whether the avatar is interactive (clickable) */
1232
- interactive?: DapDSAvatar["interactive"]
1233
- /** The width of the avatar. This will override the size */
1234
- width?: DapDSAvatar["width"]
1235
- /** The height of the avatar. This will override the size */
1236
- height?: DapDSAvatar["height"]
1237
- /** The size of the avatar. Default is `md`. */
1238
- size?: DapDSAvatar["size"]
1239
- /** Responsive size map (e.g. "md:lg"). */
1240
- sizeMap?: DapDSAvatar["sizeMap"]
1243
+ export type DapDSBreadcrumbProps = {
1244
+ /** */
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"]
1241
1250
  }
1242
1251
 
1243
1252
  export type DapDSBreadcrumbItemProps = {
@@ -1346,6 +1355,27 @@ export type DapDSCalendarProps = {
1346
1355
  shouldHideAdjacentMonths?: DapDSCalendar["shouldHideAdjacentMonths"]
1347
1356
  }
1348
1357
 
1358
+ export type DapDSCalloutProps = {
1359
+ /** The variant of the callout */
1360
+ variant?: DapDSCallout["variant"]
1361
+ /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1362
+ alignment?: DapDSCallout["alignment"]
1363
+ /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1364
+ shade?: DapDSCallout["shade"]
1365
+ /** If the callout has a border */
1366
+ noBorder?: DapDSCallout["noBorder"]
1367
+ /** If the callout has a close button */
1368
+ closeable?: DapDSCallout["closeable"]
1369
+ /** The header of the callout */
1370
+ title?: DapDSCallout["title"]
1371
+ /** The label of the close button */
1372
+ closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1373
+ /** `data-testid` for the default close button. */
1374
+ closeButtonTestId?: DapDSCallout["closeButtonTestId"]
1375
+ /** If the callout is opened */
1376
+ opened?: DapDSCallout["opened"]
1377
+ }
1378
+
1349
1379
  export type DapDSCardActionsProps = {
1350
1380
  /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1351
1381
  spacing?: DapDSCardActions["spacing"]
@@ -1432,27 +1462,6 @@ export type DapDSCardProps = {
1432
1462
  sizeMap?: DapDSCard["sizeMap"]
1433
1463
  }
1434
1464
 
1435
- export type DapDSCalloutProps = {
1436
- /** The variant of the callout */
1437
- variant?: DapDSCallout["variant"]
1438
- /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1439
- alignment?: DapDSCallout["alignment"]
1440
- /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1441
- shade?: DapDSCallout["shade"]
1442
- /** If the callout has a border */
1443
- noBorder?: DapDSCallout["noBorder"]
1444
- /** If the callout has a close button */
1445
- closeable?: DapDSCallout["closeable"]
1446
- /** The header of the callout */
1447
- title?: DapDSCallout["title"]
1448
- /** The label of the close button */
1449
- closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1450
- /** `data-testid` for the default close button. */
1451
- closeButtonTestId?: DapDSCallout["closeButtonTestId"]
1452
- /** If the callout is opened */
1453
- opened?: DapDSCallout["opened"]
1454
- }
1455
-
1456
1465
  export type DapDSCheckboxProps = {
1457
1466
  /** Whether the checkbox is indeterminate */
1458
1467
  indeterminate?: DapDSCheckbox["indeterminate"]
@@ -1529,15 +1538,6 @@ export type DapDSChipProps = {
1529
1538
  sizeMap?: DapDSChip["sizeMap"]
1530
1539
  }
1531
1540
 
1532
- export type DapDSBreadcrumbProps = {
1533
- /** */
1534
- variant?: DapDSBreadcrumb["variant"]
1535
- /** Mobile version of the breadcrumb */
1536
- mobile?: DapDSBreadcrumb["mobile"]
1537
- /** The aria-labelledby of the breadcrumb */
1538
- "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1539
- }
1540
-
1541
1541
  export type DapDSCodePuncherSlotProps = {
1542
1542
  /** */
1543
1543
  disabled?: DapDSCodePuncherSlot["disabled"]
@@ -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"]
@@ -3743,26 +3743,26 @@ export type ArrowsArrowLeftLineProps = {
3743
3743
  focusable?: ArrowsArrowLeftLine["focusable"]
3744
3744
  }
3745
3745
 
3746
- export type ArrowsArrowLeftSLineProps = {
3746
+ export type ArrowsArrowLeftSFillProps = {
3747
3747
  /** (optional) The width and height in pixels */
3748
- size?: ArrowsArrowLeftSLine["size"]
3748
+ size?: ArrowsArrowLeftSFill["size"]
3749
3749
  /** (optional) Sets the icon color via the `fill` attribute */
3750
- selected?: ArrowsArrowLeftSLine["selected"]
3750
+ selected?: ArrowsArrowLeftSFill["selected"]
3751
3751
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3752
- accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3752
+ accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3753
3753
  /** (optional) If `true` the icon can receive focus */
3754
- focusable?: ArrowsArrowLeftSLine["focusable"]
3754
+ focusable?: ArrowsArrowLeftSFill["focusable"]
3755
3755
  }
3756
3756
 
3757
- export type ArrowsArrowLeftSFillProps = {
3757
+ export type ArrowsArrowLeftSLineProps = {
3758
3758
  /** (optional) The width and height in pixels */
3759
- size?: ArrowsArrowLeftSFill["size"]
3759
+ size?: ArrowsArrowLeftSLine["size"]
3760
3760
  /** (optional) Sets the icon color via the `fill` attribute */
3761
- selected?: ArrowsArrowLeftSFill["selected"]
3761
+ selected?: ArrowsArrowLeftSLine["selected"]
3762
3762
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3763
- accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3763
+ accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3764
3764
  /** (optional) If `true` the icon can receive focus */
3765
- focusable?: ArrowsArrowLeftSFill["focusable"]
3765
+ focusable?: ArrowsArrowLeftSLine["focusable"]
3766
3766
  }
3767
3767
 
3768
3768
  export type ArrowsArrowLeftUpLineProps = {
@@ -3897,17 +3897,6 @@ export type BuildingsHome6LineProps = {
3897
3897
  focusable?: BuildingsHome6Line["focusable"]
3898
3898
  }
3899
3899
 
3900
- export type BusinessCalendarLineProps = {
3901
- /** (optional) The width and height in pixels */
3902
- size?: BusinessCalendarLine["size"]
3903
- /** (optional) Sets the icon color via the `fill` attribute */
3904
- selected?: BusinessCalendarLine["selected"]
3905
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3906
- accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
3907
- /** (optional) If `true` the icon can receive focus */
3908
- focusable?: BusinessCalendarLine["focusable"]
3909
- }
3910
-
3911
3900
  export type DesignEditLineProps = {
3912
3901
  /** (optional) The width and height in pixels */
3913
3902
  size?: DesignEditLine["size"]
@@ -3941,17 +3930,6 @@ export type DeviceComputerLineProps = {
3941
3930
  focusable?: DeviceComputerLine["focusable"]
3942
3931
  }
3943
3932
 
3944
- export type EditorSeparatorProps = {
3945
- /** (optional) The width and height in pixels */
3946
- size?: EditorSeparator["size"]
3947
- /** (optional) Sets the icon color via the `fill` attribute */
3948
- selected?: EditorSeparator["selected"]
3949
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3950
- accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3951
- /** (optional) If `true` the icon can receive focus */
3952
- focusable?: EditorSeparator["focusable"]
3953
- }
3954
-
3955
3933
  export type DocumentClipboardLineProps = {
3956
3934
  /** (optional) The width and height in pixels */
3957
3935
  size?: DocumentClipboardLine["size"]
@@ -3985,17 +3963,6 @@ export type DocumentFileImageLineProps = {
3985
3963
  focusable?: DocumentFileImageLine["focusable"]
3986
3964
  }
3987
3965
 
3988
- export type DocumentFileMusicLineProps = {
3989
- /** (optional) The width and height in pixels */
3990
- size?: DocumentFileMusicLine["size"]
3991
- /** (optional) Sets the icon color via the `fill` attribute */
3992
- selected?: DocumentFileMusicLine["selected"]
3993
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3994
- accessibilityTitle?: DocumentFileMusicLine["accessibilityTitle"]
3995
- /** (optional) If `true` the icon can receive focus */
3996
- focusable?: DocumentFileMusicLine["focusable"]
3997
- }
3998
-
3999
3966
  export type DocumentFileTextLineProps = {
4000
3967
  /** (optional) The width and height in pixels */
4001
3968
  size?: DocumentFileTextLine["size"]
@@ -4040,6 +4007,17 @@ export type DocumentFolderOpenLineProps = {
4040
4007
  focusable?: DocumentFolderOpenLine["focusable"]
4041
4008
  }
4042
4009
 
4010
+ export type EditorSeparatorProps = {
4011
+ /** (optional) The width and height in pixels */
4012
+ size?: EditorSeparator["size"]
4013
+ /** (optional) Sets the icon color via the `fill` attribute */
4014
+ selected?: EditorSeparator["selected"]
4015
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4016
+ accessibilityTitle?: EditorSeparator["accessibilityTitle"]
4017
+ /** (optional) If `true` the icon can receive focus */
4018
+ focusable?: EditorSeparator["focusable"]
4019
+ }
4020
+
4043
4021
  export type HealthHeartFillProps = {
4044
4022
  /** (optional) The width and height in pixels */
4045
4023
  size?: HealthHeartFill["size"]
@@ -4073,53 +4051,9 @@ export type OthersCookieLineProps = {
4073
4051
  focusable?: OthersCookieLine["focusable"]
4074
4052
  }
4075
4053
 
4076
- export type UserAccountCircleFillProps = {
4054
+ export type SystemAddLineProps = {
4077
4055
  /** (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
- export type SystemAddLineProps = {
4121
- /** (optional) The width and height in pixels */
4122
- size?: SystemAddLine["size"]
4056
+ size?: SystemAddLine["size"]
4123
4057
  /** (optional) Sets the icon color via the `fill` attribute */
4124
4058
  selected?: SystemAddLine["selected"]
4125
4059
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
@@ -4128,17 +4062,6 @@ export type SystemAddLineProps = {
4128
4062
  focusable?: SystemAddLine["focusable"]
4129
4063
  }
4130
4064
 
4131
- export type SystemAlertLineProps = {
4132
- /** (optional) The width and height in pixels */
4133
- size?: SystemAlertLine["size"]
4134
- /** (optional) Sets the icon color via the `fill` attribute */
4135
- selected?: SystemAlertLine["selected"]
4136
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4137
- accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
4138
- /** (optional) If `true` the icon can receive focus */
4139
- focusable?: SystemAlertLine["focusable"]
4140
- }
4141
-
4142
4065
  export type SystemAlertFillProps = {
4143
4066
  /** (optional) The width and height in pixels */
4144
4067
  size?: SystemAlertFill["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,19 +4579,75 @@ 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
- * Anchor heading is a heading with an anchor link.
4653
- *
4654
- * ### CSS Parts:
4655
- * - **base** - The main anchor heading container.
4656
- * - **link** - The link of the anchor heading. dap-ds-link element.
4657
- * - **link-base** - The base of the link part.
4658
- * - **text** - The text of the anchor heading.
4659
- */
4660
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4661
4651
  /**
4662
4652
  * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4663
4653
  *
@@ -4684,6 +4674,26 @@ declare module 'vue' {
4684
4674
  * - **close-icon-base** - The base of the icon when the accordion is closed.
4685
4675
  */
4686
4676
  'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4677
+ /**
4678
+ * Avatar component can be used to display user profile images, initials, or icons.
4679
+ *
4680
+ * ### Events:
4681
+ * - **dds-load** - Fired when the image loads successfully.
4682
+ * - **dds-error** - Fired when the image fails to load.
4683
+ *
4684
+ * ### Slots:
4685
+ * - **icon** - The icon to display when variant is 'icon'.
4686
+ * - **fallback** - Custom fallback content when image fails to load.
4687
+ *
4688
+ * ### CSS Parts:
4689
+ * - **base** - The main avatar container.
4690
+ * - **img** - The avatar image.
4691
+ * - **initials** - The initials container.
4692
+ * - **icon** - The icon container.
4693
+ * - **fallback** - The fallback content container.
4694
+ * - **loading** - The loading indicator.
4695
+ */
4696
+ 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4687
4697
  /**
4688
4698
  * Avatar group component displays multiple avatars in an organized layout with overflow management.
4689
4699
  *
@@ -4699,6 +4709,26 @@ declare module 'vue' {
4699
4709
  * - **overflow** - The overflow indicator element.
4700
4710
  */
4701
4711
  'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4712
+ /**
4713
+ * Anchor heading is a heading with an anchor link.
4714
+ *
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.
4724
+ *
4725
+ * ### Slots:
4726
+ * - **default** - The content of the accordion group.
4727
+ *
4728
+ * ### CSS Parts:
4729
+ * - **base** - The main accordion group container.
4730
+ */
4731
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4702
4732
  /**
4703
4733
  * A badge is a small status descriptor for UI elements.
4704
4734
  *
@@ -4738,35 +4768,17 @@ declare module 'vue' {
4738
4768
  */
4739
4769
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4740
4770
  /**
4741
- * An accordion group is a collection of accordion components.
4742
- *
4743
- * ### Slots:
4744
- * - **default** - The content of the accordion group.
4745
- *
4746
- * ### CSS Parts:
4747
- * - **base** - The main accordion group container.
4748
- */
4749
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4750
- /**
4751
- * Avatar component can be used to display user profile images, initials, or icons.
4752
- *
4753
- * ### Events:
4754
- * - **dds-load** - Fired when the image loads successfully.
4755
- * - **dds-error** - Fired when the image fails to load.
4771
+ * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4756
4772
  *
4757
4773
  * ### Slots:
4758
- * - **icon** - The icon to display when variant is 'icon'.
4759
- * - **fallback** - Custom fallback content when image fails to load.
4774
+ * - **default** - The content of the breadcrumb.
4775
+ * - **separator** - The separator between breadcrumb items. Default is '/'.
4760
4776
  *
4761
4777
  * ### CSS Parts:
4762
- * - **base** - The main avatar container.
4763
- * - **img** - The avatar image.
4764
- * - **initials** - The initials container.
4765
- * - **icon** - The icon container.
4766
- * - **fallback** - The fallback content container.
4767
- * - **loading** - The loading indicator.
4778
+ * - **base** - The main breadcrumb container.
4779
+ * - **separator** - The separator of the breadcrumb.
4768
4780
  */
4769
- 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4781
+ 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4770
4782
  /**
4771
4783
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4772
4784
  *
@@ -4830,6 +4842,30 @@ declare module 'vue' {
4830
4842
  * - **calendar-header-month-select** - The month select of the calendar header.
4831
4843
  */
4832
4844
  'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
4845
+ /**
4846
+ *
4847
+ *
4848
+ * ### Events:
4849
+ * - **dds-close** - Fired when the close button is clicked.
4850
+ *
4851
+ * ### Slots:
4852
+ * - **default** - The content of the callout.
4853
+ * - **title** - The title of the callout.
4854
+ * - **icon** - The icon of the callout.
4855
+ * - **actions** - The actions of the callout.
4856
+ * - **close** - The close button of the callout.
4857
+ *
4858
+ * ### CSS Parts:
4859
+ * - **base** - The main callout container.
4860
+ * - **content** - The content of the callout.
4861
+ * - **card-content** - The content of the card.
4862
+ * - **icon** - The icon of the callout.
4863
+ * - **title** - The title of the callout.
4864
+ * - **description** - The description of the callout.
4865
+ * - **actions** - The actions of the callout.
4866
+ * - **close** - The close button of the callout.
4867
+ */
4868
+ 'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4833
4869
  /**
4834
4870
  * A card actions is a container for actions in a card.
4835
4871
  *
@@ -4890,30 +4926,6 @@ declare module 'vue' {
4890
4926
  * - **base** - The main card container.
4891
4927
  */
4892
4928
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4893
- /**
4894
- *
4895
- *
4896
- * ### Events:
4897
- * - **dds-close** - Fired when the close button is clicked.
4898
- *
4899
- * ### Slots:
4900
- * - **default** - The content of the callout.
4901
- * - **title** - The title of the callout.
4902
- * - **icon** - The icon of the callout.
4903
- * - **actions** - The actions of the callout.
4904
- * - **close** - The close button of the callout.
4905
- *
4906
- * ### CSS Parts:
4907
- * - **base** - The main callout container.
4908
- * - **content** - The content of the callout.
4909
- * - **card-content** - The content of the card.
4910
- * - **icon** - The icon of the callout.
4911
- * - **title** - The title of the callout.
4912
- * - **description** - The description of the callout.
4913
- * - **actions** - The actions of the callout.
4914
- * - **close** - The close button of the callout.
4915
- */
4916
- 'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4917
4929
  /**
4918
4930
  * A checkbox is a form element that allows the user to select one or more options from a set.
4919
4931
  *
@@ -4951,18 +4963,6 @@ declare module 'vue' {
4951
4963
  * - **remove-icon-base-base** - The base of the remove icon base
4952
4964
  */
4953
4965
  'dap-ds-chip': DefineCustomElement<DapDSChip, DapDSChipProps, DapDSChipEvents>
4954
- /**
4955
- * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4956
- *
4957
- * ### Slots:
4958
- * - **default** - The content of the breadcrumb.
4959
- * - **separator** - The separator between breadcrumb items. Default is '/'.
4960
- *
4961
- * ### CSS Parts:
4962
- * - **base** - The main breadcrumb container.
4963
- * - **separator** - The separator of the breadcrumb.
4964
- */
4965
- 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4966
4966
  /**
4967
4967
  * Individual digit input slot for code puncher.
4968
4968
  *
@@ -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
  *
@@ -6246,14 +6246,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6246
6246
  * ### CSS Parts:
6247
6247
  * - **base** - The main icon container.
6248
6248
  */
6249
- 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6249
+ 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6250
6250
  /**
6251
6251
  * An icon
6252
6252
  *
6253
6253
  * ### CSS Parts:
6254
6254
  * - **base** - The main icon container.
6255
6255
  */
6256
- 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6256
+ 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6257
6257
  /**
6258
6258
  * An icon
6259
6259
  *
@@ -6338,13 +6338,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6338
6338
  * - **base** - The main icon container.
6339
6339
  */
6340
6340
  'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
6341
- /**
6342
- * An icon
6343
- *
6344
- * ### CSS Parts:
6345
- * - **base** - The main icon container.
6346
- */
6347
- 'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
6348
6341
  /**
6349
6342
  * An icon
6350
6343
  *
@@ -6366,13 +6359,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6366
6359
  * - **base** - The main icon container.
6367
6360
  */
6368
6361
  'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
6369
- /**
6370
- * An icon
6371
- *
6372
- * ### CSS Parts:
6373
- * - **base** - The main icon container.
6374
- */
6375
- 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6376
6362
  /**
6377
6363
  * An icon
6378
6364
  *
@@ -6394,13 +6380,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6394
6380
  * - **base** - The main icon container.
6395
6381
  */
6396
6382
  'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
6397
- /**
6398
- * An icon
6399
- *
6400
- * ### CSS Parts:
6401
- * - **base** - The main icon container.
6402
- */
6403
- 'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
6404
6383
  /**
6405
6384
  * An icon
6406
6385
  *
@@ -6435,49 +6414,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6435
6414
  * ### CSS Parts:
6436
6415
  * - **base** - The main icon container.
6437
6416
  */
6438
- 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6439
- /**
6440
- * An icon
6441
- *
6442
- * ### CSS Parts:
6443
- * - **base** - The main icon container.
6444
- */
6445
- 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6446
- /**
6447
- * An icon
6448
- *
6449
- * ### CSS Parts:
6450
- * - **base** - The main icon container.
6451
- */
6452
- '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, {}>
6417
+ 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6460
6418
  /**
6461
6419
  * An icon
6462
6420
  *
6463
6421
  * ### CSS Parts:
6464
6422
  * - **base** - The main icon container.
6465
6423
  */
6466
- 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6424
+ 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6467
6425
  /**
6468
6426
  * An icon
6469
6427
  *
6470
6428
  * ### CSS Parts:
6471
6429
  * - **base** - The main icon container.
6472
6430
  */
6473
- 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6431
+ 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6474
6432
  /**
6475
6433
  * An icon
6476
6434
  *
6477
6435
  * ### CSS Parts:
6478
6436
  * - **base** - The main icon container.
6479
6437
  */
6480
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6438
+ 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6481
6439
  /**
6482
6440
  * An icon
6483
6441
  *
@@ -6491,28 +6449,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6491
6449
  * ### CSS Parts:
6492
6450
  * - **base** - The main icon container.
6493
6451
  */
6494
- 'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
6452
+ 'dap-ds-icon-alert-fill': DefineCustomElement<SystemAlertFill, SystemAlertFillProps, {}>
6495
6453
  /**
6496
6454
  * An icon
6497
6455
  *
6498
6456
  * ### CSS Parts:
6499
6457
  * - **base** - The main icon container.
6500
6458
  */
6501
- 'dap-ds-icon-alert-fill': DefineCustomElement<SystemAlertFill, SystemAlertFillProps, {}>
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,27 +6821,27 @@ 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-anchor-heading': DapDSAnchorHeadingProps
6825
6824
  'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6825
+ 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6826
6826
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6827
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6828
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6827
6829
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6828
6830
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6829
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6830
- 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6831
+ 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6831
6832
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6832
6833
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6833
6834
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6834
6835
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6836
+ 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6835
6837
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6836
6838
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6837
6839
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6838
6840
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6839
6841
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6840
6842
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6841
- 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6842
6843
  'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6843
6844
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6844
- 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6845
6845
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6846
6846
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
6847
6847
  'dap-ds-combobox': DapDSComboboxProps & DapDSComboboxEvents & DapDSComboboxSlots
@@ -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
@@ -6921,8 +6921,8 @@ declare global {
6921
6921
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6922
6922
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6923
6923
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6924
- 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6925
6924
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6925
+ 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6926
6926
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6927
6927
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6928
6928
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
@@ -6935,31 +6935,25 @@ declare global {
6935
6935
  'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
6936
6936
  'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
6937
6937
  'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6938
- 'dap-ds-icon-calendar-line': BusinessCalendarLineProps
6939
6938
  'dap-ds-icon-edit-line': DesignEditLineProps
6940
6939
  'dap-ds-icon-tools-line': DesignToolsLineProps
6941
6940
  'dap-ds-icon-computer-line': DeviceComputerLineProps
6942
- 'dap-ds-icon-separator': EditorSeparatorProps
6943
6941
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6944
6942
  'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6945
6943
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
6946
- 'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
6947
6944
  'dap-ds-icon-file-text-line': DocumentFileTextLineProps
6948
6945
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6949
6946
  'dap-ds-icon-folder-line': DocumentFolderLineProps
6950
6947
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6948
+ 'dap-ds-icon-separator': EditorSeparatorProps
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
- 'dap-ds-icon-alert-line': SystemAlertLineProps
6960
6953
  'dap-ds-icon-alert-fill': SystemAlertFillProps
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
  }