dap-design-system 0.58.2 → 0.58.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -210,13 +210,6 @@ type DefineGenericCustomElement<
210
210
  $props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
211
211
  }
212
212
 
213
- export interface DapDSAccordionEvents {
214
- /** Event fired when the accordion is opened. */
215
- onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
216
- /** Event fired when the accordion is closed. */
217
- onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
218
- }
219
-
220
213
  export interface DapDSAvatarEvents {
221
214
  /** Fired when the image loads successfully. */
222
215
  onDdsLoad?: (event: CustomEvent) => void
@@ -224,6 +217,13 @@ export interface DapDSAvatarEvents {
224
217
  onDdsError?: (event: CustomEvent) => void
225
218
  }
226
219
 
220
+ export interface DapDSAccordionEvents {
221
+ /** Event fired when the accordion is opened. */
222
+ onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
223
+ /** Event fired when the accordion is closed. */
224
+ onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
225
+ }
226
+
227
227
  export interface DapDSAvatarGroupEvents {
228
228
  /** Fired when the overflow indicator is clicked. */
229
229
  onDdsOverflowClick?: (event: CustomEvent) => void
@@ -333,6 +333,17 @@ 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
+
336
347
  export interface DapDSDatePickerEvents {
337
348
  /** Fired when the datepicker value changes. */
338
349
  onDdsChange?: (event: CustomEvent<{ value: string }>) => void
@@ -383,17 +394,6 @@ export interface DapDSFileInputEvents {
383
394
  onDdsFilesAccepted?: (event: CustomEvent<{ files: File[] }>) => void
384
395
  }
385
396
 
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,6 +401,19 @@ 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
+
404
417
  export interface DapDSLinkEvents {
405
418
  /** Emitted when the link is clicked. */
406
419
  onDdsClick?: (event: CustomEvent<{ event: Event }>) => void
@@ -535,19 +548,6 @@ export interface DapDSSearchEvents {
535
548
  onDdsInput?: (event: CustomEvent) => void
536
549
  }
537
550
 
538
- export interface DapDSInputEvents {
539
- /** Fired when the input value changes. */
540
- onDdsChange?: (event: CustomEvent<{ value: string }>) => void
541
- /** Fired when the input value changes. */
542
- onDdsInput?: (event: CustomEvent<{ value: string }>) => void
543
- /** Fired when a key is pressed down. */
544
- onDdsKeydown?: (event: CustomEvent<{ value: string, originalEvent: Event }>) => void
545
- /** Fired when the input loses focus. */
546
- onDdsBlur?: (event: CustomEvent) => void
547
- /** Emitted when the input gains focus. */
548
- onDdsFocus?: (event: CustomEvent) => void
549
- }
550
-
551
551
  export interface DapDSSelectEvents {
552
552
  /** Fired when the select value changes. */
553
553
  onDdsChange?: (event: CustomEvent<{ value: string }>) => void
@@ -655,15 +655,9 @@ export interface DapDSRadioGroupEvents {
655
655
  onDdsFocus?: (event: CustomEvent) => void
656
656
  }
657
657
 
658
- export interface DapDSAccordionSlots {
659
- /** The content of the accordion. */
658
+ export interface DapDSAccordionGroupSlots {
659
+ /** The content of the accordion group. */
660
660
  default?: () => any
661
- /** The heading of the accordion. */
662
- 'heading'?: () => any
663
- /** The icon when the accordion is opened. */
664
- 'icon-opened'?: () => any
665
- /** The icon when the accordion is closed. */
666
- 'icon-closed'?: () => any
667
661
  }
668
662
 
669
663
  export interface DapDSAvatarSlots {
@@ -673,21 +667,27 @@ export interface DapDSAvatarSlots {
673
667
  'fallback'?: () => any
674
668
  }
675
669
 
676
- export interface DapDSAvatarGroupSlots {
677
- /** The avatars to display in the group. */
670
+ export interface DapDSAccordionSlots {
671
+ /** The content of the accordion. */
678
672
  default?: () => any
673
+ /** The heading of the accordion. */
674
+ 'heading'?: () => any
675
+ /** The icon when the accordion is opened. */
676
+ 'icon-opened'?: () => any
677
+ /** The icon when the accordion is closed. */
678
+ 'icon-closed'?: () => any
679
679
  }
680
680
 
681
- export interface DapDSAccordionGroupSlots {
682
- /** The content of the accordion group. */
681
+ export interface DapDSAvatarGroupSlots {
682
+ /** The avatars to display in the group. */
683
683
  default?: () => any
684
684
  }
685
685
 
686
- export interface DapDSBadgeSlots {
687
- /** The content of the badge. */
686
+ export interface DapDSBreadcrumbSlots {
687
+ /** The content of the breadcrumb. */
688
688
  default?: () => any
689
- /** The icon of the badge. */
690
- 'icon'?: () => any
689
+ /** The separator between breadcrumb items. Default is '/'. */
690
+ 'separator'?: () => any
691
691
  }
692
692
 
693
693
  export interface DapDSBannerSlots {
@@ -699,11 +699,11 @@ export interface DapDSBannerSlots {
699
699
  'icon'?: () => any
700
700
  }
701
701
 
702
- export interface DapDSBreadcrumbSlots {
703
- /** The content of the breadcrumb. */
702
+ export interface DapDSBadgeSlots {
703
+ /** The content of the badge. */
704
704
  default?: () => any
705
- /** The separator between breadcrumb items. Default is '/'. */
706
- 'separator'?: () => any
705
+ /** The icon of the badge. */
706
+ 'icon'?: () => any
707
707
  }
708
708
 
709
709
  export interface DapDSBreadcrumbItemSlots {
@@ -815,6 +815,20 @@ 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
+
818
832
  export interface DapDSFileInputListItemSlots {
819
833
  /** The delete button. */
820
834
  'delete-button'?: () => any
@@ -830,13 +844,6 @@ export interface DapDSFileInputSlots {
830
844
  'dropzone-content'?: () => any
831
845
  }
832
846
 
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
-
840
847
  export interface DapDSIconSlots {
841
848
  /** The content of the icon for custom svg icons. */
842
849
  default?: () => any
@@ -847,18 +854,24 @@ export interface DapDSIconButtonSlots {
847
854
  default?: () => any
848
855
  }
849
856
 
850
- export interface DapDSFeedbackSlots {
851
- /** The custom icon of the feedback. */
852
- 'icon'?: () => any
853
- /** The text of the feedback. */
854
- default?: () => any
855
- }
856
-
857
857
  export interface DapDSImageZoomSlots {
858
858
  /** The image or content element to zoom. Should contain an <img> element. */
859
859
  default?: () => any
860
860
  }
861
861
 
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
873
+ }
874
+
862
875
  export interface DapDSLinkSlots {
863
876
  /** The text of the link. */
864
877
  default?: () => any
@@ -973,19 +986,6 @@ export interface DapDSSearchSlots {
973
986
  default?: () => any
974
987
  }
975
988
 
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,29 +1123,11 @@ export interface DapDSRadioGroupSlots {
1123
1123
  'feedback-icon'?: () => any
1124
1124
  }
1125
1125
 
1126
- export type DapDSAccordionProps = {
1127
- /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1128
- size?: DapDSAccordion["size"]
1129
- /** Responsive size map (e.g. "md:lg") */
1130
- sizeMap?: DapDSAccordion["sizeMap"]
1131
- /** When "true", size is taken from the parent card if present. */
1132
- parentSized?: DapDSAccordion["parentSized"]
1133
- /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1134
- heading?: DapDSAccordion["heading"]
1135
- /** The heading level of the accordion. Default is `4`. */
1136
- headingLevel?: DapDSAccordion["headingLevel"]
1137
- /** Whether the accordion is opened. Default is `false`. */
1138
- opened?: DapDSAccordion["opened"]
1139
- /** The location of the icon. Default is `right`. */
1140
- iconLocation?: DapDSAccordion["iconLocation"]
1141
- /** The variant of the accordion. */
1142
- variant?: DapDSAccordion["variant"]
1143
- /** Whether the accordion is the last item. */
1144
- lastItem?: DapDSAccordion["lastItem"]
1145
- /** Whether the accordion is disabled. */
1146
- disabled?: DapDSAccordion["disabled"]
1147
- /** Whether the accordion is in loading state. */
1148
- loading?: DapDSAccordion["loading"]
1126
+ export type DapDSAccordionGroupProps = {
1127
+ /** Whether to close other accordions when one is opened. */
1128
+ autoClose?: DapDSAccordionGroup["autoClose"]
1129
+ /** The variant of the accordion */
1130
+ variant?: DapDSAccordionGroup["variant"]
1149
1131
  }
1150
1132
 
1151
1133
  export type DapDSAvatarProps = {
@@ -1175,6 +1157,31 @@ export type DapDSAvatarProps = {
1175
1157
  sizeMap?: DapDSAvatar["sizeMap"]
1176
1158
  }
1177
1159
 
1160
+ export type DapDSAccordionProps = {
1161
+ /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1162
+ size?: DapDSAccordion["size"]
1163
+ /** Responsive size map (e.g. "md:lg") */
1164
+ sizeMap?: DapDSAccordion["sizeMap"]
1165
+ /** When "true", size is taken from the parent card if present. */
1166
+ parentSized?: DapDSAccordion["parentSized"]
1167
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1168
+ heading?: DapDSAccordion["heading"]
1169
+ /** The heading level of the accordion. Default is `4`. */
1170
+ headingLevel?: DapDSAccordion["headingLevel"]
1171
+ /** Whether the accordion is opened. Default is `false`. */
1172
+ opened?: DapDSAccordion["opened"]
1173
+ /** The location of the icon. Default is `right`. */
1174
+ iconLocation?: DapDSAccordion["iconLocation"]
1175
+ /** The variant of the accordion. */
1176
+ variant?: DapDSAccordion["variant"]
1177
+ /** Whether the accordion is the last item. */
1178
+ lastItem?: DapDSAccordion["lastItem"]
1179
+ /** Whether the accordion is disabled. */
1180
+ disabled?: DapDSAccordion["disabled"]
1181
+ /** Whether the accordion is in loading state. */
1182
+ loading?: DapDSAccordion["loading"]
1183
+ }
1184
+
1178
1185
  export type DapDSAvatarGroupProps = {
1179
1186
  /** Layout type for the avatar group */
1180
1187
  layout?: DapDSAvatarGroup["layout"]
@@ -1194,6 +1201,30 @@ export type DapDSAvatarGroupProps = {
1194
1201
  sizeMap?: DapDSAvatarGroup["sizeMap"]
1195
1202
  }
1196
1203
 
1204
+ export type DapDSBreadcrumbProps = {
1205
+ /** */
1206
+ variant?: DapDSBreadcrumb["variant"]
1207
+ /** Mobile version of the breadcrumb */
1208
+ mobile?: DapDSBreadcrumb["mobile"]
1209
+ /** The aria-labelledby of the breadcrumb */
1210
+ "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1211
+ }
1212
+
1213
+ export type DapDSBannerProps = {
1214
+ /** The variant of the banner */
1215
+ variant?: DapDSBanner["variant"]
1216
+ /** Whether the banner is closeable */
1217
+ closeable?: DapDSBanner["closeable"]
1218
+ /** State of the banner. If false banner is hidden */
1219
+ opened?: DapDSBanner["opened"]
1220
+ /** The aria-label for the close button */
1221
+ closeButtonLabel?: DapDSBanner["closeButtonLabel"]
1222
+ /** `data-testid` for the close button. */
1223
+ closeButtonTestId?: DapDSBanner["closeButtonTestId"]
1224
+ /** The icon of the banner, this is a name of a built icon icon */
1225
+ icon?: DapDSBanner["icon"]
1226
+ }
1227
+
1197
1228
  export type DapDSAnchorHeadingProps = {
1198
1229
  /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1199
1230
  variant?: DapDSAnchorHeading["variant"]
@@ -1205,13 +1236,6 @@ export type DapDSAnchorHeadingProps = {
1205
1236
  anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1206
1237
  }
1207
1238
 
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
-
1215
1239
  export type DapDSBadgeProps = {
1216
1240
  /** The type of the badge */
1217
1241
  type?: DapDSBadge["type"]
@@ -1225,30 +1249,6 @@ export type DapDSBadgeProps = {
1225
1249
  sizeMap?: DapDSBadge["sizeMap"]
1226
1250
  }
1227
1251
 
1228
- export type DapDSBannerProps = {
1229
- /** The variant of the banner */
1230
- variant?: DapDSBanner["variant"]
1231
- /** Whether the banner is closeable */
1232
- closeable?: DapDSBanner["closeable"]
1233
- /** State of the banner. If false banner is hidden */
1234
- opened?: DapDSBanner["opened"]
1235
- /** The aria-label for the close button */
1236
- closeButtonLabel?: DapDSBanner["closeButtonLabel"]
1237
- /** `data-testid` for the close button. */
1238
- closeButtonTestId?: DapDSBanner["closeButtonTestId"]
1239
- /** The icon of the banner, this is a name of a built icon icon */
1240
- icon?: DapDSBanner["icon"]
1241
- }
1242
-
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"]
1250
- }
1251
-
1252
1252
  export type DapDSBreadcrumbItemProps = {
1253
1253
  /** The URL of the breadcrumb item. */
1254
1254
  href?: DapDSBreadcrumbItem["href"]
@@ -1376,6 +1376,61 @@ export type DapDSCalloutProps = {
1376
1376
  opened?: DapDSCallout["opened"]
1377
1377
  }
1378
1378
 
1379
+ export type DapDSCheckboxProps = {
1380
+ /** Whether the checkbox is indeterminate */
1381
+ indeterminate?: DapDSCheckbox["indeterminate"]
1382
+ /** Whether the checkbox should prevent the default action */
1383
+ preventDefault?: DapDSCheckbox["preventDefault"]
1384
+ /** This sets up border around the checkbox, when true. */
1385
+ border?: DapDSCheckbox["border"]
1386
+ /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1387
+ readonly?: DapDSCheckbox["readonly"]
1388
+ /** The type of the checkbox */
1389
+ type?: DapDSCheckbox["type"]
1390
+ /** */
1391
+ focusElement?: DapDSCheckbox["focusElement"]
1392
+ /** */
1393
+ feedbackId?: DapDSCheckbox["feedbackId"]
1394
+ /** The name of the checkbox. */
1395
+ name?: DapDSCheckbox["name"]
1396
+ /** The value of the checkbox. */
1397
+ value?: DapDSCheckbox["value"]
1398
+ /** Whether the checkbox is checked. */
1399
+ checked?: DapDSCheckbox["checked"]
1400
+ /** The label of the checkbox. */
1401
+ label?: DapDSCheckbox["label"]
1402
+ /** Visually hides the label while keeping it available to assistive technology. (default: false) */
1403
+ hideLabel?: DapDSCheckbox["hideLabel"]
1404
+ /** The description of the checkbox. */
1405
+ description?: DapDSCheckbox["description"]
1406
+ /** Whether the checkbox is disabled. */
1407
+ disabled?: DapDSCheckbox["disabled"]
1408
+ /** Whether the checkbox is required. */
1409
+ required?: DapDSCheckbox["required"]
1410
+ /** The size of the checkbox. Default is 'sm'. */
1411
+ size?: DapDSCheckbox["size"]
1412
+ /** Responsive size map (e.g. "md:lg"). */
1413
+ sizeMap?: DapDSCheckbox["sizeMap"]
1414
+ /** The placement of the label. */
1415
+ labelPlacement?: DapDSCheckbox["labelPlacement"]
1416
+ /** The placement of the description. */
1417
+ descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1418
+ /** The weight of the label. */
1419
+ subtle?: DapDSCheckbox["subtle"]
1420
+ /** The feedback of the checkbox. */
1421
+ feedback?: DapDSCheckbox["feedback"]
1422
+ /** The feedback type of the checkbox. */
1423
+ feedbackType?: DapDSCheckbox["feedbackType"]
1424
+ /** The invalid state of the checkbox. */
1425
+ invalid?: DapDSCheckbox["invalid"]
1426
+ /** The optional state of the checkbox. */
1427
+ optional?: DapDSCheckbox["optional"]
1428
+ /** The optional label of the checkbox. */
1429
+ optionalLabel?: DapDSCheckbox["optionalLabel"]
1430
+ /** The required indicator of the checkbox. (default: '*') */
1431
+ requiredLabel?: DapDSCheckbox["requiredLabel"]
1432
+ }
1433
+
1379
1434
  export type DapDSCardActionsProps = {
1380
1435
  /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1381
1436
  spacing?: DapDSCardActions["spacing"]
@@ -1462,61 +1517,6 @@ export type DapDSCardProps = {
1462
1517
  sizeMap?: DapDSCard["sizeMap"]
1463
1518
  }
1464
1519
 
1465
- export type DapDSCheckboxProps = {
1466
- /** Whether the checkbox is indeterminate */
1467
- indeterminate?: DapDSCheckbox["indeterminate"]
1468
- /** Whether the checkbox should prevent the default action */
1469
- preventDefault?: DapDSCheckbox["preventDefault"]
1470
- /** This sets up border around the checkbox, when true. */
1471
- border?: DapDSCheckbox["border"]
1472
- /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1473
- readonly?: DapDSCheckbox["readonly"]
1474
- /** The type of the checkbox */
1475
- type?: DapDSCheckbox["type"]
1476
- /** */
1477
- focusElement?: DapDSCheckbox["focusElement"]
1478
- /** */
1479
- feedbackId?: DapDSCheckbox["feedbackId"]
1480
- /** The name of the checkbox. */
1481
- name?: DapDSCheckbox["name"]
1482
- /** The value of the checkbox. */
1483
- value?: DapDSCheckbox["value"]
1484
- /** Whether the checkbox is checked. */
1485
- checked?: DapDSCheckbox["checked"]
1486
- /** The label of the checkbox. */
1487
- label?: DapDSCheckbox["label"]
1488
- /** Visually hides the label while keeping it available to assistive technology. (default: false) */
1489
- hideLabel?: DapDSCheckbox["hideLabel"]
1490
- /** The description of the checkbox. */
1491
- description?: DapDSCheckbox["description"]
1492
- /** Whether the checkbox is disabled. */
1493
- disabled?: DapDSCheckbox["disabled"]
1494
- /** Whether the checkbox is required. */
1495
- required?: DapDSCheckbox["required"]
1496
- /** The size of the checkbox. Default is 'sm'. */
1497
- size?: DapDSCheckbox["size"]
1498
- /** Responsive size map (e.g. "md:lg"). */
1499
- sizeMap?: DapDSCheckbox["sizeMap"]
1500
- /** The placement of the label. */
1501
- labelPlacement?: DapDSCheckbox["labelPlacement"]
1502
- /** The placement of the description. */
1503
- descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1504
- /** The weight of the label. */
1505
- subtle?: DapDSCheckbox["subtle"]
1506
- /** The feedback of the checkbox. */
1507
- feedback?: DapDSCheckbox["feedback"]
1508
- /** The feedback type of the checkbox. */
1509
- feedbackType?: DapDSCheckbox["feedbackType"]
1510
- /** The invalid state of the checkbox. */
1511
- invalid?: DapDSCheckbox["invalid"]
1512
- /** The optional state of the checkbox. */
1513
- optional?: DapDSCheckbox["optional"]
1514
- /** The optional label of the checkbox. */
1515
- optionalLabel?: DapDSCheckbox["optionalLabel"]
1516
- /** The required indicator of the checkbox. (default: '*') */
1517
- requiredLabel?: DapDSCheckbox["requiredLabel"]
1518
- }
1519
-
1520
1520
  export type DapDSChipProps = {
1521
1521
  /** Whether the chip is removeable */
1522
1522
  removeable?: DapDSChip["removeable"]
@@ -1782,6 +1782,91 @@ 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
+
1785
1870
  export type DapDSDatePickerProps = {
1786
1871
  /** The value of the datepicker. */
1787
1872
  value?: DapDSDatePicker["value"]
@@ -1884,6 +1969,21 @@ export type DapDSDividerProps = {
1884
1969
  variant?: DapDSDivider["variant"]
1885
1970
  }
1886
1971
 
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
+
1887
1987
  export type DapDSFileInputListItemProps = {
1888
1988
  /** Disables the file input list item. */
1889
1989
  disabled?: DapDSFileInputListItem["disabled"]
@@ -2069,91 +2169,6 @@ export type DapDSFileInputProps = {
2069
2169
  subtle?: DapDSFileInput["subtle"]
2070
2170
  }
2071
2171
 
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
-
2157
2172
  export type DapDSIconProps = {
2158
2173
  /** The name of the icon */
2159
2174
  name?: DapDSIcon["name"]
@@ -2190,46 +2205,6 @@ export type DapDSIconButtonProps = {
2190
2205
  ariaLabel?: DapDSIconButton["ariaLabel"]
2191
2206
  }
2192
2207
 
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"]
2206
- }
2207
-
2208
- export type DapDSLabelProps = {
2209
- /** The label text */
2210
- label?: DapDSLabel["label"]
2211
- /** The description of the label */
2212
- description?: DapDSLabel["description"]
2213
- /** The tooltip text */
2214
- tooltip?: DapDSLabel["tooltip"]
2215
- /** The size of the input. Default is `sm`. */
2216
- size?: DapDSLabel["size"]
2217
- /** The tooltip placement of the label. */
2218
- tooltipPlacement?: DapDSLabel["tooltipPlacement"]
2219
- /** If the label is optional. Default value is `false`. */
2220
- optional?: DapDSLabel["optional"]
2221
- /** Label of optional text */
2222
- optionalLabel?: DapDSLabel["optionalLabel"]
2223
- /** Indicator of required text (default: '*') */
2224
- requiredLabel?: DapDSLabel["requiredLabel"]
2225
- /** Text weight of label. If true the label is subtle. Default value is `false`. */
2226
- subtle?: DapDSLabel["subtle"]
2227
- /** The disabled state of the label. Default is `false`. */
2228
- disabled?: DapDSLabel["disabled"]
2229
- /** The required state of the label. Default is `false`. */
2230
- required?: DapDSLabel["required"]
2231
- }
2232
-
2233
2208
  export type DapDSImageZoomProps = {
2234
2209
  /** The open/zoomed state. Can be used for controlled mode. */
2235
2210
  open?: DapDSImageZoom["open"]
@@ -2257,6 +2232,96 @@ export type DapDSImageZoomProps = {
2257
2232
  unzoomButtonTestId?: DapDSImageZoom["unzoomButtonTestId"]
2258
2233
  }
2259
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"]
2298
+ }
2299
+
2300
+ export type DapDSLabelProps = {
2301
+ /** The label text */
2302
+ label?: DapDSLabel["label"]
2303
+ /** The description of the label */
2304
+ description?: DapDSLabel["description"]
2305
+ /** The tooltip text */
2306
+ tooltip?: DapDSLabel["tooltip"]
2307
+ /** The size of the input. Default is `sm`. */
2308
+ size?: DapDSLabel["size"]
2309
+ /** The tooltip placement of the label. */
2310
+ tooltipPlacement?: DapDSLabel["tooltipPlacement"]
2311
+ /** If the label is optional. Default value is `false`. */
2312
+ optional?: DapDSLabel["optional"]
2313
+ /** Label of optional text */
2314
+ optionalLabel?: DapDSLabel["optionalLabel"]
2315
+ /** Indicator of required text (default: '*') */
2316
+ requiredLabel?: DapDSLabel["requiredLabel"]
2317
+ /** Text weight of label. If true the label is subtle. Default value is `false`. */
2318
+ subtle?: DapDSLabel["subtle"]
2319
+ /** The disabled state of the label. Default is `false`. */
2320
+ disabled?: DapDSLabel["disabled"]
2321
+ /** The required state of the label. Default is `false`. */
2322
+ required?: DapDSLabel["required"]
2323
+ }
2324
+
2260
2325
  export type DapDSLinkProps = {
2261
2326
  /** The size of the link */
2262
2327
  size?: DapDSLink["size"]
@@ -2916,71 +2981,6 @@ export type DapDSSearchProps = {
2916
2981
  subtle?: DapDSSearch["subtle"]
2917
2982
  }
2918
2983
 
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"]
@@ -3897,6 +3897,17 @@ 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
+
3900
3911
  export type DesignEditLineProps = {
3901
3912
  /** (optional) The width and height in pixels */
3902
3913
  size?: DesignEditLine["size"]
@@ -3963,9 +3974,20 @@ export type DocumentFileImageLineProps = {
3963
3974
  focusable?: DocumentFileImageLine["focusable"]
3964
3975
  }
3965
3976
 
3966
- export type DocumentFileTextLineProps = {
3977
+ export type DocumentFileMusicLineProps = {
3967
3978
  /** (optional) The width and height in pixels */
3968
- size?: DocumentFileTextLine["size"]
3979
+ size?: DocumentFileMusicLine["size"]
3980
+ /** (optional) Sets the icon color via the `fill` attribute */
3981
+ selected?: DocumentFileMusicLine["selected"]
3982
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3983
+ accessibilityTitle?: DocumentFileMusicLine["accessibilityTitle"]
3984
+ /** (optional) If `true` the icon can receive focus */
3985
+ focusable?: DocumentFileMusicLine["focusable"]
3986
+ }
3987
+
3988
+ export type DocumentFileTextLineProps = {
3989
+ /** (optional) The width and height in pixels */
3990
+ size?: DocumentFileTextLine["size"]
3969
3991
  /** (optional) Sets the icon color via the `fill` attribute */
3970
3992
  selected?: DocumentFileTextLine["selected"]
3971
3993
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
@@ -4051,6 +4073,50 @@ export type OthersCookieLineProps = {
4051
4073
  focusable?: OthersCookieLine["focusable"]
4052
4074
  }
4053
4075
 
4076
+ export type UserAccountCircleFillProps = {
4077
+ /** (optional) The width and height in pixels */
4078
+ size?: UserAccountCircleFill["size"]
4079
+ /** (optional) Sets the icon color via the `fill` attribute */
4080
+ selected?: UserAccountCircleFill["selected"]
4081
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4082
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4083
+ /** (optional) If `true` the icon can receive focus */
4084
+ focusable?: UserAccountCircleFill["focusable"]
4085
+ }
4086
+
4087
+ export type UserAccountCircleLineProps = {
4088
+ /** (optional) The width and height in pixels */
4089
+ size?: UserAccountCircleLine["size"]
4090
+ /** (optional) Sets the icon color via the `fill` attribute */
4091
+ selected?: UserAccountCircleLine["selected"]
4092
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4093
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4094
+ /** (optional) If `true` the icon can receive focus */
4095
+ focusable?: UserAccountCircleLine["focusable"]
4096
+ }
4097
+
4098
+ export type UserUserFillProps = {
4099
+ /** (optional) The width and height in pixels */
4100
+ size?: UserUserFill["size"]
4101
+ /** (optional) Sets the icon color via the `fill` attribute */
4102
+ selected?: UserUserFill["selected"]
4103
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4104
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
4105
+ /** (optional) If `true` the icon can receive focus */
4106
+ focusable?: UserUserFill["focusable"]
4107
+ }
4108
+
4109
+ export type UserUserLineProps = {
4110
+ /** (optional) The width and height in pixels */
4111
+ size?: UserUserLine["size"]
4112
+ /** (optional) Sets the icon color via the `fill` attribute */
4113
+ selected?: UserUserLine["selected"]
4114
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4115
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
4116
+ /** (optional) If `true` the icon can receive focus */
4117
+ focusable?: UserUserLine["focusable"]
4118
+ }
4119
+
4054
4120
  export type SystemAddLineProps = {
4055
4121
  /** (optional) The width and height in pixels */
4056
4122
  size?: SystemAddLine["size"]
@@ -4073,6 +4139,17 @@ export type SystemAlertFillProps = {
4073
4139
  focusable?: SystemAlertFill["focusable"]
4074
4140
  }
4075
4141
 
4142
+ export type SystemAlertLineProps = {
4143
+ /** (optional) The width and height in pixels */
4144
+ size?: SystemAlertLine["size"]
4145
+ /** (optional) Sets the icon color via the `fill` attribute */
4146
+ selected?: SystemAlertLine["selected"]
4147
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4148
+ accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
4149
+ /** (optional) If `true` the icon can receive focus */
4150
+ focusable?: SystemAlertLine["focusable"]
4151
+ }
4152
+
4076
4153
  export type SystemCheckLineProps = {
4077
4154
  /** (optional) The width and height in pixels */
4078
4155
  size?: SystemCheckLine["size"]
@@ -4095,17 +4172,6 @@ export type SystemCheckLine2Props = {
4095
4172
  focusable?: SystemCheckLine2["focusable"]
4096
4173
  }
4097
4174
 
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
-
4109
4175
  export type SystemCheckboxBlankCircleFillProps = {
4110
4176
  /** (optional) The width and height in pixels */
4111
4177
  size?: SystemCheckboxBlankCircleFill["size"]
@@ -4260,6 +4326,17 @@ export type SystemErrorWarningLineProps = {
4260
4326
  focusable?: SystemErrorWarningLine["focusable"]
4261
4327
  }
4262
4328
 
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
+
4263
4340
  export type SystemEyeLineProps = {
4264
4341
  /** (optional) The width and height in pixels */
4265
4342
  size?: SystemEyeLine["size"]
@@ -4315,17 +4392,6 @@ export type SystemInformationFillProps = {
4315
4392
  focusable?: SystemInformationFill["focusable"]
4316
4393
  }
4317
4394
 
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
-
4329
4395
  export type SystemInformationLineProps = {
4330
4396
  /** (optional) The width and height in pixels */
4331
4397
  size?: SystemInformationLine["size"]
@@ -4579,101 +4645,19 @@ export type SystemZoomOutLineProps = {
4579
4645
  focusable?: SystemZoomOutLine["focusable"]
4580
4646
  }
4581
4647
 
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
4651
  /**
4652
- * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4653
- *
4654
- * ### Events:
4655
- * - **dds-opened** - Event fired when the accordion is opened.
4656
- * - **dds-closed** - Event fired when the accordion is closed.
4652
+ * An accordion group is a collection of accordion components.
4657
4653
  *
4658
4654
  * ### Slots:
4659
- * - **default** - The content of the accordion.
4660
- * - **heading** - The heading of the accordion.
4661
- * - **icon-opened** - The icon when the accordion is opened.
4662
- * - **icon-closed** - The icon when the accordion is closed.
4655
+ * - **default** - The content of the accordion group.
4663
4656
  *
4664
4657
  * ### CSS Parts:
4665
- * - **base** - The main accordion container.
4666
- * - **heading** - The heading of the accordion.
4667
- * - **button** - The button of the accordion.
4668
- * - **content** - The content of the accordion.
4669
- * - **content-container** - The container of the accordion content.
4670
- * - **icon-wrapper** - The icon wrapper of the accordion.
4671
- * - **open-icon** - The icon when the accordion is opened.
4672
- * - **open-icon-base** - The base of the icon when the accordion is opened.
4673
- * - **close-icon** - The icon when the accordion is closed.
4674
- * - **close-icon-base** - The base of the icon when the accordion is closed.
4658
+ * - **base** - The main accordion group container.
4675
4659
  */
4676
- 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4660
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4677
4661
  /**
4678
4662
  * Avatar component can be used to display user profile images, initials, or icons.
4679
4663
  *
@@ -4695,54 +4679,58 @@ declare module 'vue' {
4695
4679
  */
4696
4680
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4697
4681
  /**
4698
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4682
+ * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4699
4683
  *
4700
4684
  * ### Events:
4701
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4685
+ * - **dds-opened** - Event fired when the accordion is opened.
4686
+ * - **dds-closed** - Event fired when the accordion is closed.
4702
4687
  *
4703
4688
  * ### Slots:
4704
- * - **default** - The avatars to display in the group.
4689
+ * - **default** - The content of the accordion.
4690
+ * - **heading** - The heading of the accordion.
4691
+ * - **icon-opened** - The icon when the accordion is opened.
4692
+ * - **icon-closed** - The icon when the accordion is closed.
4705
4693
  *
4706
4694
  * ### CSS Parts:
4707
- * - **base** - The main container of the avatar group.
4708
- * - **avatars** - The container for the visible avatars.
4709
- * - **overflow** - The overflow indicator element.
4695
+ * - **base** - The main accordion container.
4696
+ * - **heading** - The heading of the accordion.
4697
+ * - **button** - The button of the accordion.
4698
+ * - **content** - The content of the accordion.
4699
+ * - **content-container** - The container of the accordion content.
4700
+ * - **icon-wrapper** - The icon wrapper of the accordion.
4701
+ * - **open-icon** - The icon when the accordion is opened.
4702
+ * - **open-icon-base** - The base of the icon when the accordion is opened.
4703
+ * - **close-icon** - The icon when the accordion is closed.
4704
+ * - **close-icon-base** - The base of the icon when the accordion is closed.
4710
4705
  */
4711
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4706
+ 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4712
4707
  /**
4713
- * Anchor heading is a heading with an anchor link.
4708
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4714
4709
  *
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.
4710
+ * ### Events:
4711
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4724
4712
  *
4725
4713
  * ### Slots:
4726
- * - **default** - The content of the accordion group.
4714
+ * - **default** - The avatars to display in the group.
4727
4715
  *
4728
4716
  * ### CSS Parts:
4729
- * - **base** - The main accordion group container.
4717
+ * - **base** - The main container of the avatar group.
4718
+ * - **avatars** - The container for the visible avatars.
4719
+ * - **overflow** - The overflow indicator element.
4730
4720
  */
4731
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4721
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4732
4722
  /**
4733
- * A badge is a small status descriptor for UI elements.
4723
+ * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4734
4724
  *
4735
4725
  * ### Slots:
4736
- * - **default** - The content of the badge.
4737
- * - **icon** - The icon of the badge.
4726
+ * - **default** - The content of the breadcrumb.
4727
+ * - **separator** - The separator between breadcrumb items. Default is '/'.
4738
4728
  *
4739
4729
  * ### CSS Parts:
4740
- * - **base** - The main container of the badge.
4741
- * - **icon** - The icon of the badge.
4742
- * - **content** - The content of the badge.
4743
- * - **icon-base** - The base of the icon.
4730
+ * - **base** - The main breadcrumb container.
4731
+ * - **separator** - The separator of the breadcrumb.
4744
4732
  */
4745
- 'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4733
+ 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4746
4734
  /**
4747
4735
  * A banner is a message displayed at the top of the page to provide important information to the user.
4748
4736
  *
@@ -4768,17 +4756,29 @@ declare module 'vue' {
4768
4756
  */
4769
4757
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4770
4758
  /**
4771
- * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4759
+ * Anchor heading is a heading with an anchor link.
4760
+ *
4761
+ * ### CSS Parts:
4762
+ * - **base** - The main anchor heading container.
4763
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4764
+ * - **link-base** - The base of the link part.
4765
+ * - **text** - The text of the anchor heading.
4766
+ */
4767
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4768
+ /**
4769
+ * A badge is a small status descriptor for UI elements.
4772
4770
  *
4773
4771
  * ### Slots:
4774
- * - **default** - The content of the breadcrumb.
4775
- * - **separator** - The separator between breadcrumb items. Default is '/'.
4772
+ * - **default** - The content of the badge.
4773
+ * - **icon** - The icon of the badge.
4776
4774
  *
4777
4775
  * ### CSS Parts:
4778
- * - **base** - The main breadcrumb container.
4779
- * - **separator** - The separator of the breadcrumb.
4776
+ * - **base** - The main container of the badge.
4777
+ * - **icon** - The icon of the badge.
4778
+ * - **content** - The content of the badge.
4779
+ * - **icon-base** - The base of the icon.
4780
4780
  */
4781
- 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4781
+ 'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4782
4782
  /**
4783
4783
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4784
4784
  *
@@ -4866,6 +4866,27 @@ declare module 'vue' {
4866
4866
  * - **close** - The close button of the callout.
4867
4867
  */
4868
4868
  'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4869
+ /**
4870
+ * A checkbox is a form element that allows the user to select one or more options from a set.
4871
+ *
4872
+ * ### Events:
4873
+ * - **dds-change** - Fired when the checkbox is checked or unchecked.
4874
+ * - **dds-blur** - Emitted when the checkbox loses focus.
4875
+ * - **dds-focus** - Emitted when the checkbox gains focus.
4876
+ * - **dds-input** - Emitted when the checkbox receives input.
4877
+ *
4878
+ * ### CSS Parts:
4879
+ * - **base** - The main checkbox container.
4880
+ * - **label** - The label of the checkbox.
4881
+ * - **input** - The input of the checkbox.
4882
+ * - **control** - The control of the checkbox.
4883
+ * - **icon** - The icon of the checkbox.
4884
+ * - **icon-base** - The base icon container.
4885
+ * - **label-container** - The label container of the checkbox.
4886
+ * - **description** - The description of the checkbox.
4887
+ * - **readonly** - The readonly state of the checkbox.
4888
+ */
4889
+ 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4869
4890
  /**
4870
4891
  * A card actions is a container for actions in a card.
4871
4892
  *
@@ -4926,27 +4947,6 @@ declare module 'vue' {
4926
4947
  * - **base** - The main card container.
4927
4948
  */
4928
4949
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4929
- /**
4930
- * A checkbox is a form element that allows the user to select one or more options from a set.
4931
- *
4932
- * ### Events:
4933
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4934
- * - **dds-blur** - Emitted when the checkbox loses focus.
4935
- * - **dds-focus** - Emitted when the checkbox gains focus.
4936
- * - **dds-input** - Emitted when the checkbox receives input.
4937
- *
4938
- * ### CSS Parts:
4939
- * - **base** - The main checkbox container.
4940
- * - **label** - The label of the checkbox.
4941
- * - **input** - The input of the checkbox.
4942
- * - **control** - The control of the checkbox.
4943
- * - **icon** - The icon of the checkbox.
4944
- * - **icon-base** - The base icon container.
4945
- * - **label-container** - The label container of the checkbox.
4946
- * - **description** - The description of the checkbox.
4947
- * - **readonly** - The readonly state of the checkbox.
4948
- */
4949
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4950
4950
  /**
4951
4951
  * A chip is a small status descriptor for UI elements.
4952
4952
  *
@@ -5120,6 +5120,38 @@ 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>>
5123
5155
  /**
5124
5156
  * 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.
5125
5157
  *
@@ -5153,6 +5185,19 @@ declare module 'vue' {
5153
5185
  * A divider is a visual separator between elements.
5154
5186
  */
5155
5187
  '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, {}>
5156
5201
  /**
5157
5202
  * A file input list item is a container for file input list items.
5158
5203
  *
@@ -5196,59 +5241,27 @@ declare module 'vue' {
5196
5241
  * - **dds-upload-complete** - Fired when a file upload completes successfully.
5197
5242
  * - **dds-upload-error** - Fired when a file upload encounters an error. Always contains an errors array, even if there is only one error.
5198
5243
  * - **dds-all-uploads-complete** - Fired when all file uploads are complete.
5199
- * - **dds-file-removed** - Fired when a file is removed from the file input.
5200
- * - **dds-file-delete-error** - Fired when a file deletion from server encounters an error.
5201
- * - **dds-file-change** - Fired when the file input value changes. This event is cancelable. Event detail contains: `newFiles` (just the files being added in this operation), `currentFiles` (all files that were already selected before this operation), `files` (all files after merge with existing when keepValue=true), and `canceledFiles` (Set to add files you want to reject). You can either: (1) Call `event.preventDefault()` to reject all files, or (2) Add specific files to `canceledFiles` to reject only those files.
5202
- * - **dds-files-accepted** - Fired when the file input value changes. This event is cancelable. Event detail contains: `files` (all files after merge with existing when keepValue=true).
5203
- *
5204
- * ### Slots:
5205
- * - **dropzone-content** - The content to display in the dropzone.
5206
- *
5207
- * ### CSS Parts:
5208
- * - **base** - The main file input container.
5209
- * - **input** - The file input control.
5210
- * - **label** - The file input label.
5211
- * - **description** - The file input description.
5212
- * - **feedback** - The file input feedback.
5213
- * - **tooltip** - The file input tooltip.
5214
- * - **upload-progress** - The upload progress container.
5215
- * - **browse-button** - The browse button.
5216
- * - **upload-button** - The upload button.
5217
- * - **dropzone** - The dropzone area.
5218
- */
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.
5244
+ * - **dds-file-removed** - Fired when a file is removed from the file input.
5245
+ * - **dds-file-delete-error** - Fired when a file deletion from server encounters an error.
5246
+ * - **dds-file-change** - Fired when the file input value changes. This event is cancelable. Event detail contains: `newFiles` (just the files being added in this operation), `currentFiles` (all files that were already selected before this operation), `files` (all files after merge with existing when keepValue=true), and `canceledFiles` (Set to add files you want to reject). You can either: (1) Call `event.preventDefault()` to reject all files, or (2) Add specific files to `canceledFiles` to reject only those files.
5247
+ * - **dds-files-accepted** - Fired when the file input value changes. This event is cancelable. Event detail contains: `files` (all files after merge with existing when keepValue=true).
5248
+ *
5249
+ * ### Slots:
5250
+ * - **dropzone-content** - The content to display in the dropzone.
5251
+ *
5252
+ * ### CSS Parts:
5253
+ * - **base** - The main file input container.
5254
+ * - **input** - The file input control.
5255
+ * - **label** - The file input label.
5256
+ * - **description** - The file input description.
5257
+ * - **feedback** - The file input feedback.
5258
+ * - **tooltip** - The file input tooltip.
5259
+ * - **upload-progress** - The upload progress container.
5260
+ * - **browse-button** - The browse button.
5261
+ * - **upload-button** - The upload button.
5262
+ * - **dropzone** - The dropzone area.
5250
5263
  */
5251
- 'dap-ds-datatable': DefineGenericCustomElement<DapDSDataTable<any>, DapDSDataTableProps<any>, any, DapDSDataTableEvents<any>>
5264
+ 'dap-ds-file-input': DefineCustomElement<DapDSFileInput, DapDSFileInputProps, DapDSFileInputEvents>
5252
5265
  /**
5253
5266
  * An icon is a graphical symbol that represents an object or action.
5254
5267
  *
@@ -5273,32 +5286,6 @@ declare module 'vue' {
5273
5286
  * - **icon-base** - The base of the icon.
5274
5287
  */
5275
5288
  '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, {}>
5302
5289
  /**
5303
5290
  * 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.
5304
5291
  *
@@ -5324,6 +5311,49 @@ declare module 'vue' {
5324
5311
  * - **unzoom-button-icon** - The icon of the unzoom button.
5325
5312
  */
5326
5313
  '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, {}>
5327
5357
  /**
5328
5358
  * A link is a reference to a web resource.
5329
5359
  *
@@ -5736,36 +5766,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5736
5766
  * - **input** - The input of the search.
5737
5767
  */
5738
5768
  '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
  *
@@ -6338,6 +6338,13 @@ 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, {}>
6341
6348
  /**
6342
6349
  * An icon
6343
6350
  *
@@ -6380,6 +6387,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6380
6387
  * - **base** - The main icon container.
6381
6388
  */
6382
6389
  'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
6390
+ /**
6391
+ * An icon
6392
+ *
6393
+ * ### CSS Parts:
6394
+ * - **base** - The main icon container.
6395
+ */
6396
+ 'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
6383
6397
  /**
6384
6398
  * An icon
6385
6399
  *
@@ -6436,6 +6450,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6436
6450
  * - **base** - The main icon container.
6437
6451
  */
6438
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, {}>
6460
+ /**
6461
+ * An icon
6462
+ *
6463
+ * ### CSS Parts:
6464
+ * - **base** - The main icon container.
6465
+ */
6466
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6467
+ /**
6468
+ * An icon
6469
+ *
6470
+ * ### CSS Parts:
6471
+ * - **base** - The main icon container.
6472
+ */
6473
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6474
+ /**
6475
+ * An icon
6476
+ *
6477
+ * ### CSS Parts:
6478
+ * - **base** - The main icon container.
6479
+ */
6480
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6439
6481
  /**
6440
6482
  * An icon
6441
6483
  *
@@ -6456,21 +6498,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6456
6498
  * ### CSS Parts:
6457
6499
  * - **base** - The main icon container.
6458
6500
  */
6459
- 'dap-ds-icon-check-line': DefineCustomElement<SystemCheckLine, SystemCheckLineProps, {}>
6501
+ 'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
6460
6502
  /**
6461
6503
  * An icon
6462
6504
  *
6463
6505
  * ### CSS Parts:
6464
6506
  * - **base** - The main icon container.
6465
6507
  */
6466
- 'dap-ds-icon-check-line2': DefineCustomElement<SystemCheckLine2, SystemCheckLine2Props, {}>
6508
+ 'dap-ds-icon-check-line': DefineCustomElement<SystemCheckLine, SystemCheckLineProps, {}>
6467
6509
  /**
6468
6510
  * An icon
6469
6511
  *
6470
6512
  * ### CSS Parts:
6471
6513
  * - **base** - The main icon container.
6472
6514
  */
6473
- 'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
6515
+ 'dap-ds-icon-check-line2': DefineCustomElement<SystemCheckLine2, SystemCheckLine2Props, {}>
6474
6516
  /**
6475
6517
  * An icon
6476
6518
  *
@@ -6575,42 +6617,42 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6575
6617
  * ### CSS Parts:
6576
6618
  * - **base** - The main icon container.
6577
6619
  */
6578
- 'dap-ds-icon-eye-line': DefineCustomElement<SystemEyeLine, SystemEyeLineProps, {}>
6620
+ 'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
6579
6621
  /**
6580
6622
  * An icon
6581
6623
  *
6582
6624
  * ### CSS Parts:
6583
6625
  * - **base** - The main icon container.
6584
6626
  */
6585
- 'dap-ds-icon-eye-off-line': DefineCustomElement<SystemEyeOffLine, SystemEyeOffLineProps, {}>
6627
+ 'dap-ds-icon-eye-line': DefineCustomElement<SystemEyeLine, SystemEyeLineProps, {}>
6586
6628
  /**
6587
6629
  * An icon
6588
6630
  *
6589
6631
  * ### CSS Parts:
6590
6632
  * - **base** - The main icon container.
6591
6633
  */
6592
- 'dap-ds-icon-forbid-fill': DefineCustomElement<SystemForbidFill, SystemForbidFillProps, {}>
6634
+ 'dap-ds-icon-eye-off-line': DefineCustomElement<SystemEyeOffLine, SystemEyeOffLineProps, {}>
6593
6635
  /**
6594
6636
  * An icon
6595
6637
  *
6596
6638
  * ### CSS Parts:
6597
6639
  * - **base** - The main icon container.
6598
6640
  */
6599
- 'dap-ds-icon-information-2-fill': DefineCustomElement<SystemInformation2Fill, SystemInformation2FillProps, {}>
6641
+ 'dap-ds-icon-forbid-fill': DefineCustomElement<SystemForbidFill, SystemForbidFillProps, {}>
6600
6642
  /**
6601
6643
  * An icon
6602
6644
  *
6603
6645
  * ### CSS Parts:
6604
6646
  * - **base** - The main icon container.
6605
6647
  */
6606
- 'dap-ds-icon-information-fill': DefineCustomElement<SystemInformationFill, SystemInformationFillProps, {}>
6648
+ 'dap-ds-icon-information-2-fill': DefineCustomElement<SystemInformation2Fill, SystemInformation2FillProps, {}>
6607
6649
  /**
6608
6650
  * An icon
6609
6651
  *
6610
6652
  * ### CSS Parts:
6611
6653
  * - **base** - The main icon container.
6612
6654
  */
6613
- 'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
6655
+ 'dap-ds-icon-information-fill': DefineCustomElement<SystemInformationFill, SystemInformationFillProps, {}>
6614
6656
  /**
6615
6657
  * An icon
6616
6658
  *
@@ -6772,48 +6814,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6772
6814
  * - **base** - The main icon container.
6773
6815
  */
6774
6816
  '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,26 +6821,26 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6821
6821
  declare global {
6822
6822
  namespace JSX {
6823
6823
  interface IntrinsicElements {
6824
- 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6824
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6825
6825
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6826
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6826
6827
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6828
+ 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6829
+ 'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6827
6830
  'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6828
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6829
6831
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6830
- 'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6831
- 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6832
6832
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6833
6833
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6834
6834
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6835
6835
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6836
6836
  'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6837
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6837
6838
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6838
6839
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6839
6840
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6840
6841
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6841
6842
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6842
6843
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6843
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6844
6844
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6845
6845
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6846
6846
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
@@ -6852,17 +6852,18 @@ 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
6855
6856
  'dap-ds-datepicker': DapDSDatePickerProps & DapDSDatePickerEvents
6856
6857
  'dap-ds-divider': DapDSDividerProps
6858
+ 'dap-ds-feedback': DapDSFeedbackProps & DapDSFeedbackSlots
6857
6859
  'dap-ds-file-input-list-item': DapDSFileInputListItemProps & DapDSFileInputListItemEvents & DapDSFileInputListItemSlots
6858
6860
  'dap-ds-file-input-list': DapDSFileInputListProps & DapDSFileInputListEvents & DapDSFileInputListSlots
6859
6861
  'dap-ds-file-input': DapDSFileInputProps & DapDSFileInputEvents & DapDSFileInputSlots
6860
- 'dap-ds-datatable': <T = any>(props: DapDSDataTableProps<T> & DapDSDataTableEvents<T> & DapDSDataTableSlots) => JSX.Element
6861
6862
  'dap-ds-icon': DapDSIconProps & DapDSIconSlots
6862
6863
  'dap-ds-icon-button': DapDSIconButtonProps & DapDSIconButtonSlots
6863
- 'dap-ds-feedback': DapDSFeedbackProps & DapDSFeedbackSlots
6864
- 'dap-ds-label': DapDSLabelProps
6865
6864
  'dap-ds-image-zoom': DapDSImageZoomProps & DapDSImageZoomEvents & DapDSImageZoomSlots
6865
+ 'dap-ds-input': DapDSInputProps & DapDSInputEvents & DapDSInputSlots
6866
+ 'dap-ds-label': DapDSLabelProps
6866
6867
  'dap-ds-link': DapDSLinkProps & DapDSLinkEvents & DapDSLinkSlots
6867
6868
  'dap-ds-list-item': DapDSListItemProps & DapDSListItemSlots
6868
6869
  'dap-ds-modal': DapDSModalProps & DapDSModalEvents & DapDSModalSlots
@@ -6884,7 +6885,6 @@ declare global {
6884
6885
  'dap-ds-scroll-area': DapDSScrollAreaProps & DapDSScrollAreaSlots
6885
6886
  'dap-ds-scroll-progress': DapDSScrollProgressProps
6886
6887
  '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
@@ -6935,12 +6935,14 @@ 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
6938
6939
  'dap-ds-icon-edit-line': DesignEditLineProps
6939
6940
  'dap-ds-icon-tools-line': DesignToolsLineProps
6940
6941
  'dap-ds-icon-computer-line': DeviceComputerLineProps
6941
6942
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6942
6943
  'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6943
6944
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
6945
+ 'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
6944
6946
  'dap-ds-icon-file-text-line': DocumentFileTextLineProps
6945
6947
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6946
6948
  'dap-ds-icon-folder-line': DocumentFolderLineProps
@@ -6949,11 +6951,15 @@ declare global {
6949
6951
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6950
6952
  'dap-ds-icon-heart-line': HealthHeartLineProps
6951
6953
  '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
6952
6958
  'dap-ds-icon-add-line': SystemAddLineProps
6953
6959
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6960
+ 'dap-ds-icon-alert-line': SystemAlertLineProps
6954
6961
  'dap-ds-icon-check-line': SystemCheckLineProps
6955
6962
  'dap-ds-icon-check-line2': SystemCheckLine2Props
6956
- 'dap-ds-icon-alert-line': SystemAlertLineProps
6957
6963
  'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps
6958
6964
  'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheckProps
6959
6965
  'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
@@ -6968,12 +6974,12 @@ declare global {
6968
6974
  'dap-ds-icon-download-line': SystemDownloadLineProps
6969
6975
  'dap-ds-icon-error-warning-fill': SystemErrorWarningFillProps
6970
6976
  'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
6977
+ 'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
6971
6978
  'dap-ds-icon-eye-line': SystemEyeLineProps
6972
6979
  'dap-ds-icon-eye-off-line': SystemEyeOffLineProps
6973
6980
  'dap-ds-icon-forbid-fill': SystemForbidFillProps
6974
6981
  'dap-ds-icon-information-2-fill': SystemInformation2FillProps
6975
6982
  'dap-ds-icon-information-fill': SystemInformationFillProps
6976
- 'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
6977
6983
  'dap-ds-icon-information-line': SystemInformationLineProps
6978
6984
  'dap-ds-icon-lightbulb-fill': SystemLightbulbFillProps
6979
6985
  'dap-ds-icon-loading-spinner': SystemLoadingSpinnerProps
@@ -6997,12 +7003,6 @@ declare global {
6997
7003
  'dap-ds-icon-upload-line': SystemUploadLineProps
6998
7004
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
6999
7005
  '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
  }