dap-design-system 0.53.21 → 0.53.22

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.
@@ -207,16 +207,6 @@ type DefineGenericCustomElement<
207
207
  $props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
208
208
  }
209
209
 
210
- export interface DapDSAvatarGroupEvents {
211
- /** Fired when the overflow indicator is clicked. */
212
- onDdsOverflowClick?: (event: CustomEvent) => void
213
- }
214
-
215
- export interface DapDSBannerEvents {
216
- /** Event fired when the banner is closed. */
217
- onDdsClose?: (event: CustomEvent) => void
218
- }
219
-
220
210
  export interface DapDSAccordionEvents {
221
211
  /** Event fired when the accordion is opened. */
222
212
  onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
@@ -224,6 +214,11 @@ export interface DapDSAccordionEvents {
224
214
  onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
225
215
  }
226
216
 
217
+ export interface DapDSAvatarGroupEvents {
218
+ /** Fired when the overflow indicator is clicked. */
219
+ onDdsOverflowClick?: (event: CustomEvent) => void
220
+ }
221
+
227
222
  export interface DapDSAvatarEvents {
228
223
  /** Fired when the image loads successfully. */
229
224
  onDdsLoad?: (event: CustomEvent) => void
@@ -231,6 +226,11 @@ export interface DapDSAvatarEvents {
231
226
  onDdsError?: (event: CustomEvent) => void
232
227
  }
233
228
 
229
+ export interface DapDSBannerEvents {
230
+ /** Event fired when the banner is closed. */
231
+ onDdsClose?: (event: CustomEvent) => void
232
+ }
233
+
234
234
  export interface DapDSButtonEvents {
235
235
  /** Emitted when the loading timeout is reached */
236
236
  onDdsLoadingTimeout?: (event: CustomEvent) => void
@@ -246,13 +246,6 @@ export interface DapDSCalloutEvents {
246
246
  onDdsClose?: (event: CustomEvent) => void
247
247
  }
248
248
 
249
- export interface DapDSChipEvents {
250
- /** Fired when the chip is removed */
251
- onDdsRemove?: (event: CustomEvent<{ value: string }>) => void
252
- /** Fired when the chip is selected */
253
- onDdsSelect?: (event: CustomEvent<{ value?: string, selected: boolean }>) => void
254
- }
255
-
256
249
  export interface DapDSCheckboxEvents {
257
250
  /** Fired when the checkbox is checked or unchecked. */
258
251
  onDdsChange?: (event: CustomEvent<{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, readonly: boolean, type: 'checkbox' }>) => void
@@ -264,6 +257,13 @@ export interface DapDSCheckboxEvents {
264
257
  onDdsInput?: (event: CustomEvent<{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, readonly: boolean }>) => void
265
258
  }
266
259
 
260
+ export interface DapDSChipEvents {
261
+ /** Fired when the chip is removed */
262
+ onDdsRemove?: (event: CustomEvent<{ value: string }>) => void
263
+ /** Fired when the chip is selected */
264
+ onDdsSelect?: (event: CustomEvent<{ value?: string, selected: boolean }>) => void
265
+ }
266
+
267
267
  export interface DapDSCodePuncherEvents {
268
268
  /** Fires on each digit input. */
269
269
  onDdsInput?: (event: CustomEvent<{ value: string, index: number }>) => void
@@ -538,11 +538,6 @@ export interface DapDSSearchEvents {
538
538
  onDdsInput?: (event: CustomEvent) => void
539
539
  }
540
540
 
541
- export interface DapDSSideNavEvents {
542
- /** Event fired when the side navigation item is clicked. */
543
- onDdsItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
544
- }
545
-
546
541
  export interface DapDSSelectEvents {
547
542
  /** Fired when the select value changes. */
548
543
  onDdsChange?: (event: CustomEvent<{ value: string }>) => void
@@ -556,6 +551,11 @@ export interface DapDSSelectEvents {
556
551
  onDdsClosed?: (event: CustomEvent) => void
557
552
  }
558
553
 
554
+ export interface DapDSSideNavEvents {
555
+ /** Event fired when the side navigation item is clicked. */
556
+ onDdsItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
557
+ }
558
+
559
559
  export interface DapDSSnackbarMessageEvents {
560
560
  /** Fires when the snackbar closes. */
561
561
  onDdsClose?: (event: CustomEvent<{ id: string }>) => void
@@ -572,6 +572,11 @@ export interface DapDSSwitchEvents {
572
572
  onDdsInput?: (event: CustomEvent<{ value: string }>) => void
573
573
  }
574
574
 
575
+ export interface DapDSTabGroupEvents {
576
+ /** Fired when select a new tab. */
577
+ onDdsTabSelect?: (event: CustomEvent) => void
578
+ }
579
+
575
580
  export interface DapDSTextareaEvents {
576
581
  /** Fires when the count of the textarea changes. */
577
582
  onDdsCountChange?: (event: CustomEvent<{ value: number }>) => void
@@ -613,11 +618,6 @@ export interface DapDSTimePickerEvents {
613
618
  onDdsBlur?: (event: CustomEvent) => void
614
619
  }
615
620
 
616
- export interface DapDSTabGroupEvents {
617
- /** Fired when select a new tab. */
618
- onDdsTabSelect?: (event: CustomEvent) => void
619
- }
620
-
621
621
  export interface DapDSTOCEvents {
622
622
  /** Event that is triggered when the anchor changes. */
623
623
  onDdsAnchorChange?: (event: CustomEvent<{ selectedItem: HTMLAnchorElement, anchorElement: IntersectionObserverEntry | HTMLElement }>) => void
@@ -645,9 +645,15 @@ export interface DapDSRadioGroupEvents {
645
645
  onDdsFocus?: (event: CustomEvent) => void
646
646
  }
647
647
 
648
- export interface DapDSAccordionGroupSlots {
649
- /** The content of the accordion group. */
648
+ export interface DapDSAccordionSlots {
649
+ /** The content of the accordion. */
650
650
  default?: () => any
651
+ /** The heading of the accordion. */
652
+ 'heading'?: () => any
653
+ /** The icon when the accordion is opened. */
654
+ 'icon-opened'?: () => any
655
+ /** The icon when the accordion is closed. */
656
+ 'icon-closed'?: () => any
651
657
  }
652
658
 
653
659
  export interface DapDSAvatarGroupSlots {
@@ -655,6 +661,13 @@ export interface DapDSAvatarGroupSlots {
655
661
  default?: () => any
656
662
  }
657
663
 
664
+ export interface DapDSAvatarSlots {
665
+ /** The icon to display when variant is 'icon'. */
666
+ 'icon'?: () => any
667
+ /** Custom fallback content when image fails to load. */
668
+ 'fallback'?: () => any
669
+ }
670
+
658
671
  export interface DapDSBadgeSlots {
659
672
  /** The content of the badge. */
660
673
  default?: () => any
@@ -678,22 +691,9 @@ export interface DapDSBreadcrumbSlots {
678
691
  'separator'?: () => any
679
692
  }
680
693
 
681
- export interface DapDSAccordionSlots {
682
- /** The content of the accordion. */
694
+ export interface DapDSAccordionGroupSlots {
695
+ /** The content of the accordion group. */
683
696
  default?: () => any
684
- /** The heading of the accordion. */
685
- 'heading'?: () => any
686
- /** The icon when the accordion is opened. */
687
- 'icon-opened'?: () => any
688
- /** The icon when the accordion is closed. */
689
- 'icon-closed'?: () => any
690
- }
691
-
692
- export interface DapDSAvatarSlots {
693
- /** The icon to display when variant is 'icon'. */
694
- 'icon'?: () => any
695
- /** Custom fallback content when image fails to load. */
696
- 'fallback'?: () => any
697
697
  }
698
698
 
699
699
  export interface DapDSBreadcrumbItemSlots {
@@ -971,6 +971,13 @@ export interface DapDSSearchSlots {
971
971
  default?: () => any
972
972
  }
973
973
 
974
+ export interface DapDSSelectSlots {
975
+ /** The option list of the select. */
976
+ default?: () => any
977
+ /** The indicator icon of the select. */
978
+ 'indicator-icon'?: () => any
979
+ }
980
+
974
981
  export interface DapDSSideNavGroupSlots {
975
982
  /** The content of the side navigation group. */
976
983
  default?: () => any
@@ -992,13 +999,6 @@ export interface DapDSSideNavSlots {
992
999
  default?: () => any
993
1000
  }
994
1001
 
995
- export interface DapDSSelectSlots {
996
- /** The option list of the select. */
997
- default?: () => any
998
- /** The indicator icon of the select. */
999
- 'indicator-icon'?: () => any
1000
- }
1001
-
1002
1002
  export interface DapDSSkipLinkSlots {
1003
1003
  /** The content of the skip link. */
1004
1004
  default?: () => any
@@ -1021,6 +1021,23 @@ export interface DapDSStackSlots {
1021
1021
  default?: () => any
1022
1022
  }
1023
1023
 
1024
+ export interface DapDSTabGroupSlots {
1025
+ /** The tab items. */
1026
+ default?: () => any
1027
+ }
1028
+
1029
+ export interface DapDSTabSlots {
1030
+ /** The tab title template. */
1031
+ default?: () => any
1032
+ /** The tab content. */
1033
+ 'content'?: () => any
1034
+ }
1035
+
1036
+ export interface DapDSTextareaSlots {
1037
+ /** The custom icon of the feedback. */
1038
+ 'feedback-icon'?: () => any
1039
+ }
1040
+
1024
1041
  export interface DapDSTableCellSlots {
1025
1042
  /** The default slot. */
1026
1043
  default?: () => any
@@ -1041,11 +1058,6 @@ export interface DapDSTableSlots {
1041
1058
  default?: () => any
1042
1059
  }
1043
1060
 
1044
- export interface DapDSTextareaSlots {
1045
- /** The custom icon of the feedback. */
1046
- 'feedback-icon'?: () => any
1047
- }
1048
-
1049
1061
  export interface DapDSTimelineItemSlots {
1050
1062
  /** The default slot for the item content. */
1051
1063
  default?: () => any
@@ -1056,18 +1068,6 @@ export interface DapDSTimelineSlots {
1056
1068
  default?: () => any
1057
1069
  }
1058
1070
 
1059
- export interface DapDSTabGroupSlots {
1060
- /** The tab items. */
1061
- default?: () => any
1062
- }
1063
-
1064
- export interface DapDSTabSlots {
1065
- /** The tab title template. */
1066
- default?: () => any
1067
- /** The tab content. */
1068
- 'content'?: () => any
1069
- }
1070
-
1071
1071
  export interface DapDSToggleButtonSlots {
1072
1072
  /** The content of the toggle button. */
1073
1073
  default?: () => any
@@ -1108,11 +1108,29 @@ export interface DapDSRadioGroupSlots {
1108
1108
  'feedback-icon'?: () => any
1109
1109
  }
1110
1110
 
1111
- export type DapDSAccordionGroupProps = {
1112
- /** Whether to close other accordions when one is opened. */
1113
- autoClose?: DapDSAccordionGroup["autoClose"]
1114
- /** The variant of the accordion */
1115
- variant?: DapDSAccordionGroup["variant"]
1111
+ export type DapDSAccordionProps = {
1112
+ /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1113
+ size?: DapDSAccordion["size"]
1114
+ /** Responsive size map (e.g. "md:lg") */
1115
+ sizeMap?: DapDSAccordion["sizeMap"]
1116
+ /** When "true", size is taken from the parent card if present. */
1117
+ parentSized?: DapDSAccordion["parentSized"]
1118
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1119
+ heading?: DapDSAccordion["heading"]
1120
+ /** The heading level of the accordion. Default is `4`. */
1121
+ headingLevel?: DapDSAccordion["headingLevel"]
1122
+ /** Whether the accordion is opened. Default is `false`. */
1123
+ opened?: DapDSAccordion["opened"]
1124
+ /** The location of the icon. Default is `right`. */
1125
+ iconLocation?: DapDSAccordion["iconLocation"]
1126
+ /** The variant of the accordion. */
1127
+ variant?: DapDSAccordion["variant"]
1128
+ /** Whether the accordion is the last item. */
1129
+ lastItem?: DapDSAccordion["lastItem"]
1130
+ /** Whether the accordion is disabled. */
1131
+ disabled?: DapDSAccordion["disabled"]
1132
+ /** Whether the accordion is in loading state. */
1133
+ loading?: DapDSAccordion["loading"]
1116
1134
  }
1117
1135
 
1118
1136
  export type DapDSAvatarGroupProps = {
@@ -1134,15 +1152,31 @@ export type DapDSAvatarGroupProps = {
1134
1152
  sizeMap?: DapDSAvatarGroup["sizeMap"]
1135
1153
  }
1136
1154
 
1137
- export type DapDSAnchorHeadingProps = {
1138
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1139
- variant?: DapDSAnchorHeading["variant"]
1140
- /** The label of the heading. */
1141
- label?: DapDSAnchorHeading["label"]
1142
- /** */
1143
- elementId?: DapDSAnchorHeading["elementId"]
1144
- /** */
1145
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1155
+ export type DapDSAvatarProps = {
1156
+ /** The shape of the avatar */
1157
+ shape?: DapDSAvatar["shape"]
1158
+ /** The variant type of the avatar */
1159
+ variant?: DapDSAvatar["variant"]
1160
+ /** The source of the avatar image */
1161
+ src?: DapDSAvatar["src"]
1162
+ /** The alt text of the avatar */
1163
+ alt?: DapDSAvatar["alt"]
1164
+ /** The initials to display when variant is 'initials' */
1165
+ initials?: DapDSAvatar["initials"]
1166
+ /** Accessible label for the avatar */
1167
+ label?: DapDSAvatar["label"]
1168
+ /** Loading state indicator */
1169
+ loading?: DapDSAvatar["loading"]
1170
+ /** Whether the avatar is interactive (clickable) */
1171
+ interactive?: DapDSAvatar["interactive"]
1172
+ /** The width of the avatar. This will override the size */
1173
+ width?: DapDSAvatar["width"]
1174
+ /** The height of the avatar. This will override the size */
1175
+ height?: DapDSAvatar["height"]
1176
+ /** The size of the avatar. Default is `md`. */
1177
+ size?: DapDSAvatar["size"]
1178
+ /** Responsive size map (e.g. "md:lg"). */
1179
+ sizeMap?: DapDSAvatar["sizeMap"]
1146
1180
  }
1147
1181
 
1148
1182
  export type DapDSBadgeProps = {
@@ -1180,56 +1214,22 @@ export type DapDSBreadcrumbProps = {
1180
1214
  "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1181
1215
  }
1182
1216
 
1183
- export type DapDSAccordionProps = {
1184
- /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1185
- size?: DapDSAccordion["size"]
1186
- /** Responsive size map (e.g. "md:lg") */
1187
- sizeMap?: DapDSAccordion["sizeMap"]
1188
- /** When "true", size is taken from the parent card if present. */
1189
- parentSized?: DapDSAccordion["parentSized"]
1190
- /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1191
- heading?: DapDSAccordion["heading"]
1192
- /** The heading level of the accordion. Default is `4`. */
1193
- headingLevel?: DapDSAccordion["headingLevel"]
1194
- /** Whether the accordion is opened. Default is `false`. */
1195
- opened?: DapDSAccordion["opened"]
1196
- /** The location of the icon. Default is `right`. */
1197
- iconLocation?: DapDSAccordion["iconLocation"]
1198
- /** The variant of the accordion. */
1199
- variant?: DapDSAccordion["variant"]
1200
- /** Whether the accordion is the last item. */
1201
- lastItem?: DapDSAccordion["lastItem"]
1202
- /** Whether the accordion is disabled. */
1203
- disabled?: DapDSAccordion["disabled"]
1204
- /** Whether the accordion is in loading state. */
1205
- loading?: DapDSAccordion["loading"]
1217
+ export type DapDSAnchorHeadingProps = {
1218
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1219
+ variant?: DapDSAnchorHeading["variant"]
1220
+ /** The label of the heading. */
1221
+ label?: DapDSAnchorHeading["label"]
1222
+ /** */
1223
+ elementId?: DapDSAnchorHeading["elementId"]
1224
+ /** */
1225
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1206
1226
  }
1207
1227
 
1208
- export type DapDSAvatarProps = {
1209
- /** The shape of the avatar */
1210
- shape?: DapDSAvatar["shape"]
1211
- /** The variant type of the avatar */
1212
- variant?: DapDSAvatar["variant"]
1213
- /** The source of the avatar image */
1214
- src?: DapDSAvatar["src"]
1215
- /** The alt text of the avatar */
1216
- alt?: DapDSAvatar["alt"]
1217
- /** The initials to display when variant is 'initials' */
1218
- initials?: DapDSAvatar["initials"]
1219
- /** Accessible label for the avatar */
1220
- label?: DapDSAvatar["label"]
1221
- /** Loading state indicator */
1222
- loading?: DapDSAvatar["loading"]
1223
- /** Whether the avatar is interactive (clickable) */
1224
- interactive?: DapDSAvatar["interactive"]
1225
- /** The width of the avatar. This will override the size */
1226
- width?: DapDSAvatar["width"]
1227
- /** The height of the avatar. This will override the size */
1228
- height?: DapDSAvatar["height"]
1229
- /** The size of the avatar. Default is `md`. */
1230
- size?: DapDSAvatar["size"]
1231
- /** Responsive size map (e.g. "md:lg"). */
1232
- sizeMap?: DapDSAvatar["sizeMap"]
1228
+ export type DapDSAccordionGroupProps = {
1229
+ /** Whether to close other accordions when one is opened. */
1230
+ autoClose?: DapDSAccordionGroup["autoClose"]
1231
+ /** The variant of the accordion */
1232
+ variant?: DapDSAccordionGroup["variant"]
1233
1233
  }
1234
1234
 
1235
1235
  export type DapDSBreadcrumbItemProps = {
@@ -1353,6 +1353,57 @@ export type DapDSCalloutProps = {
1353
1353
  opened?: DapDSCallout["opened"]
1354
1354
  }
1355
1355
 
1356
+ export type DapDSCheckboxProps = {
1357
+ /** Whether the checkbox is indeterminate */
1358
+ indeterminate?: DapDSCheckbox["indeterminate"]
1359
+ /** Whether the checkbox should prevent the default action */
1360
+ preventDefault?: DapDSCheckbox["preventDefault"]
1361
+ /** This sets up border around the checkbox, when true. */
1362
+ border?: DapDSCheckbox["border"]
1363
+ /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1364
+ readonly?: DapDSCheckbox["readonly"]
1365
+ /** The type of the checkbox */
1366
+ type?: DapDSCheckbox["type"]
1367
+ /** */
1368
+ focusElement?: DapDSCheckbox["focusElement"]
1369
+ /** */
1370
+ feedbackId?: DapDSCheckbox["feedbackId"]
1371
+ /** The name of the checkbox. */
1372
+ name?: DapDSCheckbox["name"]
1373
+ /** The value of the checkbox. */
1374
+ value?: DapDSCheckbox["value"]
1375
+ /** Whether the checkbox is checked. */
1376
+ checked?: DapDSCheckbox["checked"]
1377
+ /** The label of the checkbox. */
1378
+ label?: DapDSCheckbox["label"]
1379
+ /** The description of the checkbox. */
1380
+ description?: DapDSCheckbox["description"]
1381
+ /** Whether the checkbox is disabled. */
1382
+ disabled?: DapDSCheckbox["disabled"]
1383
+ /** Whether the checkbox is required. */
1384
+ required?: DapDSCheckbox["required"]
1385
+ /** The size of the checkbox. Default is 'sm'. */
1386
+ size?: DapDSCheckbox["size"]
1387
+ /** Responsive size map (e.g. "md:lg"). */
1388
+ sizeMap?: DapDSCheckbox["sizeMap"]
1389
+ /** The placement of the label. */
1390
+ labelPlacement?: DapDSCheckbox["labelPlacement"]
1391
+ /** The placement of the description. */
1392
+ descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1393
+ /** The weight of the label. */
1394
+ subtle?: DapDSCheckbox["subtle"]
1395
+ /** The feedback of the checkbox. */
1396
+ feedback?: DapDSCheckbox["feedback"]
1397
+ /** The feedback type of the checkbox. */
1398
+ feedbackType?: DapDSCheckbox["feedbackType"]
1399
+ /** The invalid state of the checkbox. */
1400
+ invalid?: DapDSCheckbox["invalid"]
1401
+ /** The optional state of the checkbox. */
1402
+ optional?: DapDSCheckbox["optional"]
1403
+ /** The optional label of the checkbox. */
1404
+ optionalLabel?: DapDSCheckbox["optionalLabel"]
1405
+ }
1406
+
1356
1407
  export type DapDSCardActionsProps = {
1357
1408
  /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1358
1409
  spacing?: DapDSCardActions["spacing"]
@@ -1458,57 +1509,6 @@ export type DapDSChipProps = {
1458
1509
  sizeMap?: DapDSChip["sizeMap"]
1459
1510
  }
1460
1511
 
1461
- export type DapDSCheckboxProps = {
1462
- /** Whether the checkbox is indeterminate */
1463
- indeterminate?: DapDSCheckbox["indeterminate"]
1464
- /** Whether the checkbox should prevent the default action */
1465
- preventDefault?: DapDSCheckbox["preventDefault"]
1466
- /** This sets up border around the checkbox, when true. */
1467
- border?: DapDSCheckbox["border"]
1468
- /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1469
- readonly?: DapDSCheckbox["readonly"]
1470
- /** The type of the checkbox */
1471
- type?: DapDSCheckbox["type"]
1472
- /** */
1473
- focusElement?: DapDSCheckbox["focusElement"]
1474
- /** */
1475
- feedbackId?: DapDSCheckbox["feedbackId"]
1476
- /** The name of the checkbox. */
1477
- name?: DapDSCheckbox["name"]
1478
- /** The value of the checkbox. */
1479
- value?: DapDSCheckbox["value"]
1480
- /** Whether the checkbox is checked. */
1481
- checked?: DapDSCheckbox["checked"]
1482
- /** The label of the checkbox. */
1483
- label?: DapDSCheckbox["label"]
1484
- /** The description of the checkbox. */
1485
- description?: DapDSCheckbox["description"]
1486
- /** Whether the checkbox is disabled. */
1487
- disabled?: DapDSCheckbox["disabled"]
1488
- /** Whether the checkbox is required. */
1489
- required?: DapDSCheckbox["required"]
1490
- /** The size of the checkbox. Default is 'sm'. */
1491
- size?: DapDSCheckbox["size"]
1492
- /** Responsive size map (e.g. "md:lg"). */
1493
- sizeMap?: DapDSCheckbox["sizeMap"]
1494
- /** The placement of the label. */
1495
- labelPlacement?: DapDSCheckbox["labelPlacement"]
1496
- /** The placement of the description. */
1497
- descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1498
- /** The weight of the label. */
1499
- subtle?: DapDSCheckbox["subtle"]
1500
- /** The feedback of the checkbox. */
1501
- feedback?: DapDSCheckbox["feedback"]
1502
- /** The feedback type of the checkbox. */
1503
- feedbackType?: DapDSCheckbox["feedbackType"]
1504
- /** The invalid state of the checkbox. */
1505
- invalid?: DapDSCheckbox["invalid"]
1506
- /** The optional state of the checkbox. */
1507
- optional?: DapDSCheckbox["optional"]
1508
- /** The optional label of the checkbox. */
1509
- optionalLabel?: DapDSCheckbox["optionalLabel"]
1510
- }
1511
-
1512
1512
  export type DapDSCodePuncherSlotProps = {
1513
1513
  /** */
1514
1514
  disabled?: DapDSCodePuncherSlot["disabled"]
@@ -2849,39 +2849,6 @@ export type DapDSSearchProps = {
2849
2849
  subtle?: DapDSSearch["subtle"]
2850
2850
  }
2851
2851
 
2852
- export type DapDSSideNavGroupProps = {
2853
- /** The href of the side navigation item */
2854
- href?: DapDSSideNavGroup["href"]
2855
- /** Whether the side navigation item is active */
2856
- active?: DapDSSideNavGroup["active"]
2857
- /** The spacing of the side navigation item */
2858
- spacing?: DapDSSideNavGroup["spacing"]
2859
- /** Whether the side navigation group is open */
2860
- open?: DapDSSideNavGroup["open"]
2861
- /** The size of the side navigation group */
2862
- size?: DapDSSideNavGroup["size"]
2863
- }
2864
-
2865
- export type DapDSSideNavItemProps = {
2866
- /** The href of the side navigation item */
2867
- href?: DapDSSideNavItem["href"]
2868
- /** Whether the side navigation item is active */
2869
- active?: DapDSSideNavItem["active"]
2870
- /** The spacing of the side navigation item */
2871
- spacing?: DapDSSideNavItem["spacing"]
2872
- /** The size of the side navigation item */
2873
- size?: DapDSSideNavItem["size"]
2874
- }
2875
-
2876
- export type DapDSSideNavProps = {
2877
- /** The label of the side navigation, if aria label is not provided, it will be used as aria label */
2878
- label?: DapDSSideNav["label"]
2879
- /** The active href of the side navigation, to explicitly set the active item, if not provided, it will be set based on the current location */
2880
- activeHref?: DapDSSideNav["activeHref"]
2881
- /** The size of the side navigation */
2882
- size?: DapDSSideNav["size"]
2883
- }
2884
-
2885
2852
  export type DapDSSelectProps = {
2886
2853
  /** The popup placement of the select */
2887
2854
  placement?: DapDSSelect["placement"]
@@ -2945,6 +2912,55 @@ export type DapDSSelectProps = {
2945
2912
  subtle?: DapDSSelect["subtle"]
2946
2913
  }
2947
2914
 
2915
+ export type DapDSSideNavGroupProps = {
2916
+ /** The href of the side navigation item */
2917
+ href?: DapDSSideNavGroup["href"]
2918
+ /** Whether the side navigation item is active */
2919
+ active?: DapDSSideNavGroup["active"]
2920
+ /** The spacing of the side navigation item */
2921
+ spacing?: DapDSSideNavGroup["spacing"]
2922
+ /** Whether the side navigation group is open */
2923
+ open?: DapDSSideNavGroup["open"]
2924
+ /** The size of the side navigation group */
2925
+ size?: DapDSSideNavGroup["size"]
2926
+ }
2927
+
2928
+ export type DapDSSideNavItemProps = {
2929
+ /** The href of the side navigation item */
2930
+ href?: DapDSSideNavItem["href"]
2931
+ /** Whether the side navigation item is active */
2932
+ active?: DapDSSideNavItem["active"]
2933
+ /** The spacing of the side navigation item */
2934
+ spacing?: DapDSSideNavItem["spacing"]
2935
+ /** The size of the side navigation item */
2936
+ size?: DapDSSideNavItem["size"]
2937
+ }
2938
+
2939
+ export type DapDSSideNavProps = {
2940
+ /** The label of the side navigation, if aria label is not provided, it will be used as aria label */
2941
+ label?: DapDSSideNav["label"]
2942
+ /** The active href of the side navigation, to explicitly set the active item, if not provided, it will be set based on the current location */
2943
+ activeHref?: DapDSSideNav["activeHref"]
2944
+ /** The size of the side navigation */
2945
+ size?: DapDSSideNav["size"]
2946
+ }
2947
+
2948
+ export type DapDSSkeletonProps = {
2949
+ /** The variant of the skeleton. */
2950
+ variant?: DapDSSkeleton["variant"]
2951
+ /** The width of the skeleton. Can be any valid CSS width value. */
2952
+ width?: DapDSSkeleton["width"]
2953
+ /** The height of the skeleton. Can be any valid CSS height value. */
2954
+ height?: DapDSSkeleton["height"]
2955
+ /** Whether to animate the skeleton. */
2956
+ noAnimation?: DapDSSkeleton["noAnimation"]
2957
+ /** The animation type for the skeleton. */
2958
+ animation?: DapDSSkeleton["animation"]
2959
+ /** Custom keyframes for the animation when animation="custom".
2960
+ Should be a valid CSS keyframes string without the */
2961
+ "custom-keyframes"?: DapDSSkeleton["customKeyframes"]
2962
+ }
2963
+
2948
2964
  export type DapDSSkipLinkProps = {
2949
2965
  /** The placement of the skip link. */
2950
2966
  placement?: DapDSSkipLink["placement"]
@@ -2982,22 +2998,6 @@ export type DapDSSnackbarProps = {
2982
2998
  announceMessages?: DapDSSnackbar["announceMessages"]
2983
2999
  }
2984
3000
 
2985
- export type DapDSSkeletonProps = {
2986
- /** The variant of the skeleton. */
2987
- variant?: DapDSSkeleton["variant"]
2988
- /** The width of the skeleton. Can be any valid CSS width value. */
2989
- width?: DapDSSkeleton["width"]
2990
- /** The height of the skeleton. Can be any valid CSS height value. */
2991
- height?: DapDSSkeleton["height"]
2992
- /** Whether to animate the skeleton. */
2993
- noAnimation?: DapDSSkeleton["noAnimation"]
2994
- /** The animation type for the skeleton. */
2995
- animation?: DapDSSkeleton["animation"]
2996
- /** Custom keyframes for the animation when animation="custom".
2997
- Should be a valid CSS keyframes string without the */
2998
- "custom-keyframes"?: DapDSSkeleton["customKeyframes"]
2999
- }
3000
-
3001
3001
  export type DapDSSpinnerProps = {
3002
3002
  /** The variant of the spinner. */
3003
3003
  variant?: DapDSSpinner["variant"]
@@ -3074,34 +3074,20 @@ export type DapDSSwitchProps = {
3074
3074
  optionalLabel?: DapDSSwitch["optionalLabel"]
3075
3075
  }
3076
3076
 
3077
- export type DapDSTableCellProps = {
3078
- /** If the cell is the last one. */
3079
- last?: DapDSTableCell["last"]
3080
- /** The html role of the cell */
3081
- role?: DapDSTableCell["role"]
3082
- }
3083
-
3084
- export type DapDSTableHeaderProps = {
3085
- /** If the header cell is the last one. */
3086
- last?: DapDSTableHeader["last"]
3087
- /** The html role of the header cell */
3088
- role?: DapDSTableHeader["role"]
3089
- }
3090
-
3091
- export type DapDSTableRowProps = {
3092
- /** The html role of the row */
3093
- role?: DapDSTableRow["role"]
3094
- /** If the row is mobile design */
3095
- mobile?: DapDSTableRow["mobile"]
3077
+ export type DapDSTabGroupProps = {
3078
+ /** The selected tab id. */
3079
+ selectedTabId?: DapDSTabGroup["selectedTabId"]
3080
+ /** The size of the tab buttons. Default is `sm`. Can be `sm` or `lg`. */
3081
+ size?: DapDSTabGroup["size"]
3082
+ /** If true, the tab group will be displayed in mobile mode. */
3083
+ mobile?: DapDSTabGroup["mobile"]
3096
3084
  }
3097
3085
 
3098
- export type DapDSTableProps = {
3099
- /** */
3100
- role?: DapDSTable["role"]
3101
- /** If the table has mobile design */
3102
- mobile?: DapDSTable["mobile"]
3103
- /** The caption of the table */
3104
- caption?: DapDSTable["caption"]
3086
+ export type DapDSTabProps = {
3087
+ /** The tab id. Required */
3088
+ tabId?: DapDSTab["tabId"]
3089
+ /** The disabled state of the tab. */
3090
+ disabled?: DapDSTab["disabled"]
3105
3091
  }
3106
3092
 
3107
3093
  export type DapDSTextareaProps = {
@@ -3157,6 +3143,44 @@ export type DapDSTextareaProps = {
3157
3143
  autofocus?: DapDSTextarea["autofocus"]
3158
3144
  }
3159
3145
 
3146
+ export type DapDSTableCellProps = {
3147
+ /** If the cell is the last one. */
3148
+ last?: DapDSTableCell["last"]
3149
+ /** The html role of the cell */
3150
+ role?: DapDSTableCell["role"]
3151
+ }
3152
+
3153
+ export type DapDSTableHeaderProps = {
3154
+ /** If the header cell is the last one. */
3155
+ last?: DapDSTableHeader["last"]
3156
+ /** The html role of the header cell */
3157
+ role?: DapDSTableHeader["role"]
3158
+ }
3159
+
3160
+ export type DapDSTableRowProps = {
3161
+ /** The html role of the row */
3162
+ role?: DapDSTableRow["role"]
3163
+ /** If the row is mobile design */
3164
+ mobile?: DapDSTableRow["mobile"]
3165
+ }
3166
+
3167
+ export type DapDSTableProps = {
3168
+ /** */
3169
+ role?: DapDSTable["role"]
3170
+ /** If the table has mobile design */
3171
+ mobile?: DapDSTable["mobile"]
3172
+ /** The caption of the table */
3173
+ caption?: DapDSTable["caption"]
3174
+ }
3175
+
3176
+ export type DapDSTimelineItemProps = {
3177
+
3178
+ }
3179
+
3180
+ export type DapDSTimelineProps = {
3181
+
3182
+ }
3183
+
3160
3184
  export type DapDSTimeGridProps = {
3161
3185
  /** The currently selected hour (0-23). */
3162
3186
  selectedHour?: DapDSTimeGrid["selectedHour"]
@@ -3257,36 +3281,12 @@ export type DapDSTimePickerProps = {
3257
3281
  feedbackType?: DapDSTimePicker["feedbackType"]
3258
3282
  /** The optional state of the timepicker. */
3259
3283
  optional?: DapDSTimePicker["optional"]
3260
- /** The optional label of the timepicker. */
3261
- optionalLabel?: DapDSTimePicker["optionalLabel"]
3262
- /** The weight of the label. Default is `false` */
3263
- subtle?: DapDSTimePicker["subtle"]
3264
- /** The autocomplete of the timepicker. */
3265
- autocomplete?: DapDSTimePicker["autocomplete"]
3266
- }
3267
-
3268
- export type DapDSTimelineItemProps = {
3269
-
3270
- }
3271
-
3272
- export type DapDSTimelineProps = {
3273
-
3274
- }
3275
-
3276
- export type DapDSTabGroupProps = {
3277
- /** The selected tab id. */
3278
- selectedTabId?: DapDSTabGroup["selectedTabId"]
3279
- /** The size of the tab buttons. Default is `sm`. Can be `sm` or `lg`. */
3280
- size?: DapDSTabGroup["size"]
3281
- /** If true, the tab group will be displayed in mobile mode. */
3282
- mobile?: DapDSTabGroup["mobile"]
3283
- }
3284
-
3285
- export type DapDSTabProps = {
3286
- /** The tab id. Required */
3287
- tabId?: DapDSTab["tabId"]
3288
- /** The disabled state of the tab. */
3289
- disabled?: DapDSTab["disabled"]
3284
+ /** The optional label of the timepicker. */
3285
+ optionalLabel?: DapDSTimePicker["optionalLabel"]
3286
+ /** The weight of the label. Default is `false` */
3287
+ subtle?: DapDSTimePicker["subtle"]
3288
+ /** The autocomplete of the timepicker. */
3289
+ autocomplete?: DapDSTimePicker["autocomplete"]
3290
3290
  }
3291
3291
 
3292
3292
  export type DapDSTOCProps = {
@@ -3492,17 +3492,6 @@ export type ArrowsArrowDownLineProps = {
3492
3492
  focusable?: ArrowsArrowDownLine["focusable"]
3493
3493
  }
3494
3494
 
3495
- export type ArrowsArrowDownSFillProps = {
3496
- /** (optional) The width and height in pixels */
3497
- size?: ArrowsArrowDownSFill["size"]
3498
- /** (optional) Sets the icon color via the `fill` attribute */
3499
- selected?: ArrowsArrowDownSFill["selected"]
3500
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3501
- accessibilityTitle?: ArrowsArrowDownSFill["accessibilityTitle"]
3502
- /** (optional) If `true` the icon can receive focus */
3503
- focusable?: ArrowsArrowDownSFill["focusable"]
3504
- }
3505
-
3506
3495
  export type ArrowsArrowDownSLineProps = {
3507
3496
  /** (optional) The width and height in pixels */
3508
3497
  size?: ArrowsArrowDownSLine["size"]
@@ -3525,26 +3514,37 @@ export type ArrowsArrowLeftDownLineProps = {
3525
3514
  focusable?: ArrowsArrowLeftDownLine["focusable"]
3526
3515
  }
3527
3516
 
3528
- export type ArrowsArrowLeftLineProps = {
3517
+ export type ArrowsArrowLeftLLineProps = {
3529
3518
  /** (optional) The width and height in pixels */
3530
- size?: ArrowsArrowLeftLine["size"]
3519
+ size?: ArrowsArrowLeftLLine["size"]
3531
3520
  /** (optional) Sets the icon color via the `fill` attribute */
3532
- selected?: ArrowsArrowLeftLine["selected"]
3521
+ selected?: ArrowsArrowLeftLLine["selected"]
3533
3522
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3534
- accessibilityTitle?: ArrowsArrowLeftLine["accessibilityTitle"]
3523
+ accessibilityTitle?: ArrowsArrowLeftLLine["accessibilityTitle"]
3535
3524
  /** (optional) If `true` the icon can receive focus */
3536
- focusable?: ArrowsArrowLeftLine["focusable"]
3525
+ focusable?: ArrowsArrowLeftLLine["focusable"]
3537
3526
  }
3538
3527
 
3539
- export type ArrowsArrowLeftLLineProps = {
3528
+ export type ArrowsArrowDownSFillProps = {
3540
3529
  /** (optional) The width and height in pixels */
3541
- size?: ArrowsArrowLeftLLine["size"]
3530
+ size?: ArrowsArrowDownSFill["size"]
3542
3531
  /** (optional) Sets the icon color via the `fill` attribute */
3543
- selected?: ArrowsArrowLeftLLine["selected"]
3532
+ selected?: ArrowsArrowDownSFill["selected"]
3544
3533
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3545
- accessibilityTitle?: ArrowsArrowLeftLLine["accessibilityTitle"]
3534
+ accessibilityTitle?: ArrowsArrowDownSFill["accessibilityTitle"]
3546
3535
  /** (optional) If `true` the icon can receive focus */
3547
- focusable?: ArrowsArrowLeftLLine["focusable"]
3536
+ focusable?: ArrowsArrowDownSFill["focusable"]
3537
+ }
3538
+
3539
+ export type ArrowsArrowLeftLineProps = {
3540
+ /** (optional) The width and height in pixels */
3541
+ size?: ArrowsArrowLeftLine["size"]
3542
+ /** (optional) Sets the icon color via the `fill` attribute */
3543
+ selected?: ArrowsArrowLeftLine["selected"]
3544
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3545
+ accessibilityTitle?: ArrowsArrowLeftLine["accessibilityTitle"]
3546
+ /** (optional) If `true` the icon can receive focus */
3547
+ focusable?: ArrowsArrowLeftLine["focusable"]
3548
3548
  }
3549
3549
 
3550
3550
  export type ArrowsArrowLeftSFillProps = {
@@ -3613,26 +3613,26 @@ export type ArrowsArrowRightLineProps = {
3613
3613
  focusable?: ArrowsArrowRightLine["focusable"]
3614
3614
  }
3615
3615
 
3616
- export type ArrowsArrowRightSLineProps = {
3616
+ export type ArrowsArrowRightSFillProps = {
3617
3617
  /** (optional) The width and height in pixels */
3618
- size?: ArrowsArrowRightSLine["size"]
3618
+ size?: ArrowsArrowRightSFill["size"]
3619
3619
  /** (optional) Sets the icon color via the `fill` attribute */
3620
- selected?: ArrowsArrowRightSLine["selected"]
3620
+ selected?: ArrowsArrowRightSFill["selected"]
3621
3621
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3622
- accessibilityTitle?: ArrowsArrowRightSLine["accessibilityTitle"]
3622
+ accessibilityTitle?: ArrowsArrowRightSFill["accessibilityTitle"]
3623
3623
  /** (optional) If `true` the icon can receive focus */
3624
- focusable?: ArrowsArrowRightSLine["focusable"]
3624
+ focusable?: ArrowsArrowRightSFill["focusable"]
3625
3625
  }
3626
3626
 
3627
- export type ArrowsArrowRightSFillProps = {
3627
+ export type ArrowsArrowRightSLineProps = {
3628
3628
  /** (optional) The width and height in pixels */
3629
- size?: ArrowsArrowRightSFill["size"]
3629
+ size?: ArrowsArrowRightSLine["size"]
3630
3630
  /** (optional) Sets the icon color via the `fill` attribute */
3631
- selected?: ArrowsArrowRightSFill["selected"]
3631
+ selected?: ArrowsArrowRightSLine["selected"]
3632
3632
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3633
- accessibilityTitle?: ArrowsArrowRightSFill["accessibilityTitle"]
3633
+ accessibilityTitle?: ArrowsArrowRightSLine["accessibilityTitle"]
3634
3634
  /** (optional) If `true` the icon can receive focus */
3635
- focusable?: ArrowsArrowRightSFill["focusable"]
3635
+ focusable?: ArrowsArrowRightSLine["focusable"]
3636
3636
  }
3637
3637
 
3638
3638
  export type ArrowsArrowRightUpLineProps = {
@@ -3690,26 +3690,26 @@ export type ArrowsExpandUpDownFillProps = {
3690
3690
  focusable?: ArrowsExpandUpDownFill["focusable"]
3691
3691
  }
3692
3692
 
3693
- export type BusinessCalendarLineProps = {
3693
+ export type BuildingsHome6LineProps = {
3694
3694
  /** (optional) The width and height in pixels */
3695
- size?: BusinessCalendarLine["size"]
3695
+ size?: BuildingsHome6Line["size"]
3696
3696
  /** (optional) Sets the icon color via the `fill` attribute */
3697
- selected?: BusinessCalendarLine["selected"]
3697
+ selected?: BuildingsHome6Line["selected"]
3698
3698
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3699
- accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
3699
+ accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
3700
3700
  /** (optional) If `true` the icon can receive focus */
3701
- focusable?: BusinessCalendarLine["focusable"]
3701
+ focusable?: BuildingsHome6Line["focusable"]
3702
3702
  }
3703
3703
 
3704
- export type BuildingsHome6LineProps = {
3704
+ export type BusinessCalendarLineProps = {
3705
3705
  /** (optional) The width and height in pixels */
3706
- size?: BuildingsHome6Line["size"]
3706
+ size?: BusinessCalendarLine["size"]
3707
3707
  /** (optional) Sets the icon color via the `fill` attribute */
3708
- selected?: BuildingsHome6Line["selected"]
3708
+ selected?: BusinessCalendarLine["selected"]
3709
3709
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3710
- accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
3710
+ accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
3711
3711
  /** (optional) If `true` the icon can receive focus */
3712
- focusable?: BuildingsHome6Line["focusable"]
3712
+ focusable?: BusinessCalendarLine["focusable"]
3713
3713
  }
3714
3714
 
3715
3715
  export type DesignEditLineProps = {
@@ -3833,26 +3833,26 @@ export type DocumentFolderOpenLineProps = {
3833
3833
  focusable?: DocumentFolderOpenLine["focusable"]
3834
3834
  }
3835
3835
 
3836
- export type HealthHeartFillProps = {
3836
+ export type EditorSeparatorProps = {
3837
3837
  /** (optional) The width and height in pixels */
3838
- size?: HealthHeartFill["size"]
3838
+ size?: EditorSeparator["size"]
3839
3839
  /** (optional) Sets the icon color via the `fill` attribute */
3840
- selected?: HealthHeartFill["selected"]
3840
+ selected?: EditorSeparator["selected"]
3841
3841
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3842
- accessibilityTitle?: HealthHeartFill["accessibilityTitle"]
3842
+ accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3843
3843
  /** (optional) If `true` the icon can receive focus */
3844
- focusable?: HealthHeartFill["focusable"]
3844
+ focusable?: EditorSeparator["focusable"]
3845
3845
  }
3846
3846
 
3847
- export type EditorSeparatorProps = {
3847
+ export type HealthHeartFillProps = {
3848
3848
  /** (optional) The width and height in pixels */
3849
- size?: EditorSeparator["size"]
3849
+ size?: HealthHeartFill["size"]
3850
3850
  /** (optional) Sets the icon color via the `fill` attribute */
3851
- selected?: EditorSeparator["selected"]
3851
+ selected?: HealthHeartFill["selected"]
3852
3852
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3853
- accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3853
+ accessibilityTitle?: HealthHeartFill["accessibilityTitle"]
3854
3854
  /** (optional) If `true` the icon can receive focus */
3855
- focusable?: EditorSeparator["focusable"]
3855
+ focusable?: HealthHeartFill["focusable"]
3856
3856
  }
3857
3857
 
3858
3858
  export type HealthHeartLineProps = {
@@ -4431,15 +4431,31 @@ export type SystemUploadLineProps = {
4431
4431
  declare module 'vue' {
4432
4432
  interface GlobalComponents {
4433
4433
  /**
4434
- * An accordion group is a collection of accordion components.
4434
+ * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4435
+ *
4436
+ * ### Events:
4437
+ * - **dds-opened** - Event fired when the accordion is opened.
4438
+ * - **dds-closed** - Event fired when the accordion is closed.
4435
4439
  *
4436
4440
  * ### Slots:
4437
- * - **default** - The content of the accordion group.
4441
+ * - **default** - The content of the accordion.
4442
+ * - **heading** - The heading of the accordion.
4443
+ * - **icon-opened** - The icon when the accordion is opened.
4444
+ * - **icon-closed** - The icon when the accordion is closed.
4438
4445
  *
4439
4446
  * ### CSS Parts:
4440
- * - **base** - The main accordion group container.
4447
+ * - **base** - The main accordion container.
4448
+ * - **heading** - The heading of the accordion.
4449
+ * - **button** - The button of the accordion.
4450
+ * - **content** - The content of the accordion.
4451
+ * - **content-container** - The container of the accordion content.
4452
+ * - **icon-wrapper** - The icon wrapper of the accordion.
4453
+ * - **open-icon** - The icon when the accordion is opened.
4454
+ * - **open-icon-base** - The base of the icon when the accordion is opened.
4455
+ * - **close-icon** - The icon when the accordion is closed.
4456
+ * - **close-icon-base** - The base of the icon when the accordion is closed.
4441
4457
  */
4442
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4458
+ 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4443
4459
  /**
4444
4460
  * Avatar group component displays multiple avatars in an organized layout with overflow management.
4445
4461
  *
@@ -4456,15 +4472,25 @@ declare module 'vue' {
4456
4472
  */
4457
4473
  'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4458
4474
  /**
4459
- * Anchor heading is a heading with an anchor link.
4475
+ * Avatar component can be used to display user profile images, initials, or icons.
4476
+ *
4477
+ * ### Events:
4478
+ * - **dds-load** - Fired when the image loads successfully.
4479
+ * - **dds-error** - Fired when the image fails to load.
4480
+ *
4481
+ * ### Slots:
4482
+ * - **icon** - The icon to display when variant is 'icon'.
4483
+ * - **fallback** - Custom fallback content when image fails to load.
4460
4484
  *
4461
4485
  * ### CSS Parts:
4462
- * - **base** - The main anchor heading container.
4463
- * - **link** - The link of the anchor heading. dap-ds-link element.
4464
- * - **link-base** - The base of the link part.
4465
- * - **text** - The text of the anchor heading.
4486
+ * - **base** - The main avatar container.
4487
+ * - **img** - The avatar image.
4488
+ * - **initials** - The initials container.
4489
+ * - **icon** - The icon container.
4490
+ * - **fallback** - The fallback content container.
4491
+ * - **loading** - The loading indicator.
4466
4492
  */
4467
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4493
+ 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4468
4494
  /**
4469
4495
  * A badge is a small status descriptor for UI elements.
4470
4496
  *
@@ -4516,51 +4542,25 @@ declare module 'vue' {
4516
4542
  */
4517
4543
  'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4518
4544
  /**
4519
- * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4520
- *
4521
- * ### Events:
4522
- * - **dds-opened** - Event fired when the accordion is opened.
4523
- * - **dds-closed** - Event fired when the accordion is closed.
4524
- *
4525
- * ### Slots:
4526
- * - **default** - The content of the accordion.
4527
- * - **heading** - The heading of the accordion.
4528
- * - **icon-opened** - The icon when the accordion is opened.
4529
- * - **icon-closed** - The icon when the accordion is closed.
4545
+ * Anchor heading is a heading with an anchor link.
4530
4546
  *
4531
4547
  * ### CSS Parts:
4532
- * - **base** - The main accordion container.
4533
- * - **heading** - The heading of the accordion.
4534
- * - **button** - The button of the accordion.
4535
- * - **content** - The content of the accordion.
4536
- * - **content-container** - The container of the accordion content.
4537
- * - **icon-wrapper** - The icon wrapper of the accordion.
4538
- * - **open-icon** - The icon when the accordion is opened.
4539
- * - **open-icon-base** - The base of the icon when the accordion is opened.
4540
- * - **close-icon** - The icon when the accordion is closed.
4541
- * - **close-icon-base** - The base of the icon when the accordion is closed.
4548
+ * - **base** - The main anchor heading container.
4549
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4550
+ * - **link-base** - The base of the link part.
4551
+ * - **text** - The text of the anchor heading.
4542
4552
  */
4543
- 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4553
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4544
4554
  /**
4545
- * Avatar component can be used to display user profile images, initials, or icons.
4546
- *
4547
- * ### Events:
4548
- * - **dds-load** - Fired when the image loads successfully.
4549
- * - **dds-error** - Fired when the image fails to load.
4555
+ * An accordion group is a collection of accordion components.
4550
4556
  *
4551
4557
  * ### Slots:
4552
- * - **icon** - The icon to display when variant is 'icon'.
4553
- * - **fallback** - Custom fallback content when image fails to load.
4558
+ * - **default** - The content of the accordion group.
4554
4559
  *
4555
4560
  * ### CSS Parts:
4556
- * - **base** - The main avatar container.
4557
- * - **img** - The avatar image.
4558
- * - **initials** - The initials container.
4559
- * - **icon** - The icon container.
4560
- * - **fallback** - The fallback content container.
4561
- * - **loading** - The loading indicator.
4561
+ * - **base** - The main accordion group container.
4562
4562
  */
4563
- 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4563
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4564
4564
  /**
4565
4565
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4566
4566
  *
@@ -4648,6 +4648,27 @@ declare module 'vue' {
4648
4648
  * - **close** - The close button of the callout.
4649
4649
  */
4650
4650
  'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4651
+ /**
4652
+ * A checkbox is a form element that allows the user to select one or more options from a set.
4653
+ *
4654
+ * ### Events:
4655
+ * - **dds-change** - Fired when the checkbox is checked or unchecked.
4656
+ * - **dds-blur** - Emitted when the checkbox loses focus.
4657
+ * - **dds-focus** - Emitted when the checkbox gains focus.
4658
+ * - **dds-input** - Emitted when the checkbox receives input.
4659
+ *
4660
+ * ### CSS Parts:
4661
+ * - **base** - The main checkbox container.
4662
+ * - **label** - The label of the checkbox.
4663
+ * - **input** - The input of the checkbox.
4664
+ * - **control** - The control of the checkbox.
4665
+ * - **icon** - The icon of the checkbox.
4666
+ * - **icon-base** - The base icon container.
4667
+ * - **label-container** - The label container of the checkbox.
4668
+ * - **description** - The description of the checkbox.
4669
+ * - **readonly** - The readonly state of the checkbox.
4670
+ */
4671
+ 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4651
4672
  /**
4652
4673
  * A card actions is a container for actions in a card.
4653
4674
  *
@@ -4724,27 +4745,6 @@ declare module 'vue' {
4724
4745
  * - **remove-icon-base-base** - The base of the remove icon base
4725
4746
  */
4726
4747
  'dap-ds-chip': DefineCustomElement<DapDSChip, DapDSChipProps, DapDSChipEvents>
4727
- /**
4728
- * A checkbox is a form element that allows the user to select one or more options from a set.
4729
- *
4730
- * ### Events:
4731
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4732
- * - **dds-blur** - Emitted when the checkbox loses focus.
4733
- * - **dds-focus** - Emitted when the checkbox gains focus.
4734
- * - **dds-input** - Emitted when the checkbox receives input.
4735
- *
4736
- * ### CSS Parts:
4737
- * - **base** - The main checkbox container.
4738
- * - **label** - The label of the checkbox.
4739
- * - **input** - The input of the checkbox.
4740
- * - **control** - The control of the checkbox.
4741
- * - **icon** - The icon of the checkbox.
4742
- * - **icon-base** - The base icon container.
4743
- * - **label-container** - The label container of the checkbox.
4744
- * - **description** - The description of the checkbox.
4745
- * - **readonly** - The readonly state of the checkbox.
4746
- */
4747
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4748
4748
  /**
4749
4749
  * Individual digit input slot for code puncher.
4750
4750
  *
@@ -5522,7 +5522,43 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5522
5522
  * - **option-list** - The option list of the search.
5523
5523
  * - **input** - The input of the search.
5524
5524
  */
5525
- 'dap-ds-search': DefineCustomElement<DapDSSearch, DapDSSearchProps, DapDSSearchEvents>
5525
+ 'dap-ds-search': DefineCustomElement<DapDSSearch, DapDSSearchProps, DapDSSearchEvents>
5526
+ /**
5527
+ * A select is a form element that allows the user to select one option from a set.
5528
+ *
5529
+ * ### Events:
5530
+ * - **dds-change** - Fired when the select value changes.
5531
+ * - **dds-blur** - Emitted when the select loses focus.
5532
+ * - **dds-focus** - Emitted when the select gains focus.
5533
+ * - **dds-opened** - Emitted when the select dropdown is opened.
5534
+ * - **dds-closed** - Emitted when the select dropdown is closed.
5535
+ *
5536
+ * ### Slots:
5537
+ * - **default** - The option list of the select.
5538
+ * - **indicator-icon** - The indicator icon of the select.
5539
+ *
5540
+ * ### CSS Parts:
5541
+ * - **base** - The main select container.
5542
+ * - **trigger** - The trigger button of the select.
5543
+ * - **label** - The label of the select.
5544
+ * - **description** - The description of the select.
5545
+ * - **feedback** - The feedback of the select.
5546
+ * - **tooltip** - The tooltip of the select.
5547
+ * - **popup-base** - The base of the popup.
5548
+ * - **option-list** - The option list of the select.
5549
+ * - **option-item** - The option item of the select.
5550
+ * - **option-item-base** - The base of the option item.
5551
+ * - **option-item-label** - The label of the option item.
5552
+ * - **option-item-prefix** - The prefix of the option item.
5553
+ * - **option-item-suffix** - The suffix of the option item.
5554
+ * - **indicator-icon** - The indicator icon of the select.
5555
+ * - **mobile-tray** - The mobile tray of the select.
5556
+ * - **mobile-content** - The mobile content of the select.
5557
+ * - **mobile-body** - The mobile body of the select.
5558
+ * - **mobile-header** - The mobile header of the select.
5559
+ * - **mobile-footer** - The mobile footer of the select.
5560
+ */
5561
+ 'dap-ds-select': DefineCustomElement<DapDSSelect, DapDSSelectProps, DapDSSelectEvents>
5526
5562
  /**
5527
5563
  * Side navigation group
5528
5564
  *
@@ -5566,41 +5602,12 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5566
5602
  */
5567
5603
  'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
5568
5604
  /**
5569
- * A select is a form element that allows the user to select one option from a set.
5570
- *
5571
- * ### Events:
5572
- * - **dds-change** - Fired when the select value changes.
5573
- * - **dds-blur** - Emitted when the select loses focus.
5574
- * - **dds-focus** - Emitted when the select gains focus.
5575
- * - **dds-opened** - Emitted when the select dropdown is opened.
5576
- * - **dds-closed** - Emitted when the select dropdown is closed.
5577
- *
5578
- * ### Slots:
5579
- * - **default** - The option list of the select.
5580
- * - **indicator-icon** - The indicator icon of the select.
5605
+ * A skeleton loader component for displaying placeholder content while loading.
5581
5606
  *
5582
5607
  * ### CSS Parts:
5583
- * - **base** - The main select container.
5584
- * - **trigger** - The trigger button of the select.
5585
- * - **label** - The label of the select.
5586
- * - **description** - The description of the select.
5587
- * - **feedback** - The feedback of the select.
5588
- * - **tooltip** - The tooltip of the select.
5589
- * - **popup-base** - The base of the popup.
5590
- * - **option-list** - The option list of the select.
5591
- * - **option-item** - The option item of the select.
5592
- * - **option-item-base** - The base of the option item.
5593
- * - **option-item-label** - The label of the option item.
5594
- * - **option-item-prefix** - The prefix of the option item.
5595
- * - **option-item-suffix** - The suffix of the option item.
5596
- * - **indicator-icon** - The indicator icon of the select.
5597
- * - **mobile-tray** - The mobile tray of the select.
5598
- * - **mobile-content** - The mobile content of the select.
5599
- * - **mobile-body** - The mobile body of the select.
5600
- * - **mobile-header** - The mobile header of the select.
5601
- * - **mobile-footer** - The mobile footer of the select.
5608
+ * - **base** - The main skeleton container.
5602
5609
  */
5603
- 'dap-ds-select': DefineCustomElement<DapDSSelect, DapDSSelectProps, DapDSSelectEvents>
5610
+ 'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
5604
5611
  /**
5605
5612
  * A skip link is a link that allows keyboard users to skip to the main content of a page.
5606
5613
  *
@@ -5642,13 +5649,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5642
5649
  * - **message-actions** - The actions part of the message
5643
5650
  */
5644
5651
  'dap-ds-snackbar': DefineCustomElement<DapDSSnackbar, DapDSSnackbarProps, {}>
5645
- /**
5646
- * A skeleton loader component for displaying placeholder content while loading.
5647
- *
5648
- * ### CSS Parts:
5649
- * - **base** - The main skeleton container.
5650
- */
5651
- 'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
5652
5652
  /**
5653
5653
  * Loading spinner component.
5654
5654
  *
@@ -5692,6 +5692,58 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5692
5692
  * - **description** - The description of the switch.
5693
5693
  */
5694
5694
  'dap-ds-switch': DefineCustomElement<DapDSSwitch, DapDSSwitchProps, DapDSSwitchEvents>
5695
+ /**
5696
+ * A tab group component. It is used with dap-ds-tab component to create a tab group.
5697
+ *
5698
+ * ### Events:
5699
+ * - **dds-tab-select** - Fired when select a new tab.
5700
+ *
5701
+ * ### Slots:
5702
+ * - **default** - The tab items.
5703
+ *
5704
+ * ### CSS Parts:
5705
+ * - **base** - The main container.
5706
+ * - **tab-nav** - The tab navigation container.
5707
+ * - **tab-content** - The tab content container.
5708
+ */
5709
+ 'dap-ds-tab-group': DefineCustomElement<DapDSTabGroup, DapDSTabGroupProps, DapDSTabGroupEvents>
5710
+ /**
5711
+ * A tab item component. It is used in dap-ds-tab-group component slot to create a tab item.
5712
+ *
5713
+ * ### Slots:
5714
+ * - **default** - The tab title template.
5715
+ * - **content** - The tab content.
5716
+ *
5717
+ * ### CSS Parts:
5718
+ * - **base** - The main tab content container.
5719
+ */
5720
+ 'dap-ds-tab': DefineCustomElement<DapDSTab, DapDSTabProps, {}>
5721
+ /**
5722
+ * A textarea is a multi-line text input field.
5723
+ *
5724
+ * ### Events:
5725
+ * - **dds-count-change** - Fires when the count of the textarea changes.
5726
+ * - **dds-change** - Fired when the textarea value changes.
5727
+ * - **dds-input** - Fired when the textarea value changes.
5728
+ * - **dds-keydown** - Fired when a key is pressed down.
5729
+ * - **dds-blur** - Fired when the textarea loses focus.
5730
+ * - **dds-focus** - Emitted when the textarea gains focus.
5731
+ * - **dds-select** - Emitted when select text in textarea.
5732
+ *
5733
+ * ### Slots:
5734
+ * - **feedback-icon** - The custom icon of the feedback.
5735
+ *
5736
+ * ### CSS Parts:
5737
+ * - **base** - The main textarea container.
5738
+ * - **input** - The native input of the textarea.
5739
+ * - **counter** - The counter of the textarea.
5740
+ * - **counter-base** - The base of the counter.
5741
+ * - **feedback** - The feedback of the textarea.
5742
+ * - **feedback-base** - The base of the feedback.
5743
+ * - **feedback-text** - The text of the feedback.
5744
+ * - **feedback-icon** - The icon of the feedback.
5745
+ */
5746
+ 'dap-ds-textarea': DefineCustomElement<DapDSTextarea, DapDSTextareaProps, DapDSTextareaEvents>
5695
5747
  /**
5696
5748
  *
5697
5749
  *
@@ -5727,31 +5779,27 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5727
5779
  */
5728
5780
  'dap-ds-table': DefineCustomElement<DapDSTable, DapDSTableProps, {}>
5729
5781
  /**
5730
- * A textarea is a multi-line text input field.
5782
+ * A timeline is a graphical representation of a series of events.
5731
5783
  *
5732
- * ### Events:
5733
- * - **dds-count-change** - Fires when the count of the textarea changes.
5734
- * - **dds-change** - Fired when the textarea value changes.
5735
- * - **dds-input** - Fired when the textarea value changes.
5736
- * - **dds-keydown** - Fired when a key is pressed down.
5737
- * - **dds-blur** - Fired when the textarea loses focus.
5738
- * - **dds-focus** - Emitted when the textarea gains focus.
5739
- * - **dds-select** - Emitted when select text in textarea.
5784
+ * ### Slots:
5785
+ * - **default** - The default slot for the item content.
5786
+ *
5787
+ * ### CSS Parts:
5788
+ * - **base** - The main timeline item container.
5789
+ * - **connector** - The connector element between two timeline items.
5790
+ * - **content** - The content of the timeline item.
5791
+ */
5792
+ 'dap-ds-timeline-item': DefineCustomElement<DapDSTimelineItem, DapDSTimelineItemProps, {}>
5793
+ /**
5794
+ * A timeline is a graphical representation of a series of events.
5740
5795
  *
5741
5796
  * ### Slots:
5742
- * - **feedback-icon** - The custom icon of the feedback.
5797
+ * - **default** - The default slot for the timeline items.
5743
5798
  *
5744
5799
  * ### CSS Parts:
5745
- * - **base** - The main textarea container.
5746
- * - **input** - The native input of the textarea.
5747
- * - **counter** - The counter of the textarea.
5748
- * - **counter-base** - The base of the counter.
5749
- * - **feedback** - The feedback of the textarea.
5750
- * - **feedback-base** - The base of the feedback.
5751
- * - **feedback-text** - The text of the feedback.
5752
- * - **feedback-icon** - The icon of the feedback.
5800
+ * - **base** - The main timeline container.
5753
5801
  */
5754
- 'dap-ds-textarea': DefineCustomElement<DapDSTextarea, DapDSTextareaProps, DapDSTextareaEvents>
5802
+ 'dap-ds-timeline': DefineCustomElement<DapDSTimeline, DapDSTimelineProps, {}>
5755
5803
  /**
5756
5804
  * A time grid component that allows users to select hours and minutes in two side-by-side scrollable columns.
5757
5805
  *
@@ -5795,54 +5843,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5795
5843
  * - **clear-button** - The clear button of the timepicker.
5796
5844
  */
5797
5845
  'dap-ds-timepicker': DefineCustomElement<DapDSTimePicker, DapDSTimePickerProps, DapDSTimePickerEvents>
5798
- /**
5799
- * A timeline is a graphical representation of a series of events.
5800
- *
5801
- * ### Slots:
5802
- * - **default** - The default slot for the item content.
5803
- *
5804
- * ### CSS Parts:
5805
- * - **base** - The main timeline item container.
5806
- * - **connector** - The connector element between two timeline items.
5807
- * - **content** - The content of the timeline item.
5808
- */
5809
- 'dap-ds-timeline-item': DefineCustomElement<DapDSTimelineItem, DapDSTimelineItemProps, {}>
5810
- /**
5811
- * A timeline is a graphical representation of a series of events.
5812
- *
5813
- * ### Slots:
5814
- * - **default** - The default slot for the timeline items.
5815
- *
5816
- * ### CSS Parts:
5817
- * - **base** - The main timeline container.
5818
- */
5819
- 'dap-ds-timeline': DefineCustomElement<DapDSTimeline, DapDSTimelineProps, {}>
5820
- /**
5821
- * A tab group component. It is used with dap-ds-tab component to create a tab group.
5822
- *
5823
- * ### Events:
5824
- * - **dds-tab-select** - Fired when select a new tab.
5825
- *
5826
- * ### Slots:
5827
- * - **default** - The tab items.
5828
- *
5829
- * ### CSS Parts:
5830
- * - **base** - The main container.
5831
- * - **tab-nav** - The tab navigation container.
5832
- * - **tab-content** - The tab content container.
5833
- */
5834
- 'dap-ds-tab-group': DefineCustomElement<DapDSTabGroup, DapDSTabGroupProps, DapDSTabGroupEvents>
5835
- /**
5836
- * A tab item component. It is used in dap-ds-tab-group component slot to create a tab item.
5837
- *
5838
- * ### Slots:
5839
- * - **default** - The tab title template.
5840
- * - **content** - The tab content.
5841
- *
5842
- * ### CSS Parts:
5843
- * - **base** - The main tab content container.
5844
- */
5845
- 'dap-ds-tab': DefineCustomElement<DapDSTab, DapDSTabProps, {}>
5846
5846
  /**
5847
5847
  * A table of contents (TOC) is a list of links that allows users to quickly navigate to sections within a document.
5848
5848
  *
@@ -5968,35 +5968,35 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5968
5968
  * ### CSS Parts:
5969
5969
  * - **base** - The main icon container.
5970
5970
  */
5971
- 'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
5971
+ 'dap-ds-icon-arrow-down-s-line': DefineCustomElement<ArrowsArrowDownSLine, ArrowsArrowDownSLineProps, {}>
5972
5972
  /**
5973
5973
  * An icon
5974
5974
  *
5975
5975
  * ### CSS Parts:
5976
5976
  * - **base** - The main icon container.
5977
5977
  */
5978
- 'dap-ds-icon-arrow-down-s-line': DefineCustomElement<ArrowsArrowDownSLine, ArrowsArrowDownSLineProps, {}>
5978
+ 'dap-ds-icon-arrow-left-down-line': DefineCustomElement<ArrowsArrowLeftDownLine, ArrowsArrowLeftDownLineProps, {}>
5979
5979
  /**
5980
5980
  * An icon
5981
5981
  *
5982
5982
  * ### CSS Parts:
5983
5983
  * - **base** - The main icon container.
5984
5984
  */
5985
- 'dap-ds-icon-arrow-left-down-line': DefineCustomElement<ArrowsArrowLeftDownLine, ArrowsArrowLeftDownLineProps, {}>
5985
+ 'dap-ds-icon-arrow-left-l-line': DefineCustomElement<ArrowsArrowLeftLLine, ArrowsArrowLeftLLineProps, {}>
5986
5986
  /**
5987
5987
  * An icon
5988
5988
  *
5989
5989
  * ### CSS Parts:
5990
5990
  * - **base** - The main icon container.
5991
5991
  */
5992
- 'dap-ds-icon-arrow-left-line': DefineCustomElement<ArrowsArrowLeftLine, ArrowsArrowLeftLineProps, {}>
5992
+ 'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
5993
5993
  /**
5994
5994
  * An icon
5995
5995
  *
5996
5996
  * ### CSS Parts:
5997
5997
  * - **base** - The main icon container.
5998
5998
  */
5999
- 'dap-ds-icon-arrow-left-l-line': DefineCustomElement<ArrowsArrowLeftLLine, ArrowsArrowLeftLLineProps, {}>
5999
+ 'dap-ds-icon-arrow-left-line': DefineCustomElement<ArrowsArrowLeftLine, ArrowsArrowLeftLineProps, {}>
6000
6000
  /**
6001
6001
  * An icon
6002
6002
  *
@@ -6045,14 +6045,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6045
6045
  * ### CSS Parts:
6046
6046
  * - **base** - The main icon container.
6047
6047
  */
6048
- 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6048
+ 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6049
6049
  /**
6050
6050
  * An icon
6051
6051
  *
6052
6052
  * ### CSS Parts:
6053
6053
  * - **base** - The main icon container.
6054
6054
  */
6055
- 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6055
+ 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6056
6056
  /**
6057
6057
  * An icon
6058
6058
  *
@@ -6094,14 +6094,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6094
6094
  * ### CSS Parts:
6095
6095
  * - **base** - The main icon container.
6096
6096
  */
6097
- 'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
6097
+ 'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
6098
6098
  /**
6099
6099
  * An icon
6100
6100
  *
6101
6101
  * ### CSS Parts:
6102
6102
  * - **base** - The main icon container.
6103
6103
  */
6104
- 'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
6104
+ 'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
6105
6105
  /**
6106
6106
  * An icon
6107
6107
  *
@@ -6185,14 +6185,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6185
6185
  * ### CSS Parts:
6186
6186
  * - **base** - The main icon container.
6187
6187
  */
6188
- 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6188
+ 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6189
6189
  /**
6190
6190
  * An icon
6191
6191
  *
6192
6192
  * ### CSS Parts:
6193
6193
  * - **base** - The main icon container.
6194
6194
  */
6195
- 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6195
+ 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6196
6196
  /**
6197
6197
  * An icon
6198
6198
  *
@@ -6564,19 +6564,20 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6564
6564
  declare global {
6565
6565
  namespace JSX {
6566
6566
  interface IntrinsicElements {
6567
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6567
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6568
6568
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6569
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6569
+ 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6570
6570
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6571
6571
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6572
6572
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6573
- 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6574
- 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6573
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6574
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6575
6575
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6576
6576
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6577
6577
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6578
6578
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6579
6579
  'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6580
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6580
6581
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6581
6582
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6582
6583
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
@@ -6584,7 +6585,6 @@ declare global {
6584
6585
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6585
6586
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6586
6587
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6587
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6588
6588
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6589
6589
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
6590
6590
  'dap-ds-combobox': DapDSComboboxProps & DapDSComboboxEvents & DapDSComboboxSlots
@@ -6627,28 +6627,28 @@ declare global {
6627
6627
  'dap-ds-scroll-area': DapDSScrollAreaProps & DapDSScrollAreaSlots
6628
6628
  'dap-ds-scroll-progress': DapDSScrollProgressProps
6629
6629
  'dap-ds-search': DapDSSearchProps & DapDSSearchEvents & DapDSSearchSlots
6630
+ 'dap-ds-select': DapDSSelectProps & DapDSSelectEvents & DapDSSelectSlots
6630
6631
  'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
6631
6632
  'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
6632
6633
  'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
6633
- 'dap-ds-select': DapDSSelectProps & DapDSSelectEvents & DapDSSelectSlots
6634
+ 'dap-ds-skeleton': DapDSSkeletonProps
6634
6635
  'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
6635
6636
  'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
6636
6637
  'dap-ds-snackbar': DapDSSnackbarProps
6637
- 'dap-ds-skeleton': DapDSSkeletonProps
6638
6638
  'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
6639
6639
  'dap-ds-stack': DapDSStackProps & DapDSStackSlots
6640
6640
  'dap-ds-switch': DapDSSwitchProps & DapDSSwitchEvents
6641
+ 'dap-ds-tab-group': DapDSTabGroupProps & DapDSTabGroupEvents & DapDSTabGroupSlots
6642
+ 'dap-ds-tab': DapDSTabProps & DapDSTabSlots
6643
+ 'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
6641
6644
  'dap-ds-table-cell': DapDSTableCellProps & DapDSTableCellSlots
6642
6645
  'dap-ds-table-header': DapDSTableHeaderProps & DapDSTableHeaderSlots
6643
6646
  'dap-ds-table-row': DapDSTableRowProps & DapDSTableRowSlots
6644
6647
  'dap-ds-table': DapDSTableProps & DapDSTableSlots
6645
- 'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
6646
- 'dap-ds-time-grid': DapDSTimeGridProps & DapDSTimeGridEvents
6647
- 'dap-ds-timepicker': DapDSTimePickerProps & DapDSTimePickerEvents
6648
6648
  'dap-ds-timeline-item': DapDSTimelineItemProps & DapDSTimelineItemSlots
6649
6649
  'dap-ds-timeline': DapDSTimelineProps & DapDSTimelineSlots
6650
- 'dap-ds-tab-group': DapDSTabGroupProps & DapDSTabGroupEvents & DapDSTabGroupSlots
6651
- 'dap-ds-tab': DapDSTabProps & DapDSTabSlots
6650
+ 'dap-ds-time-grid': DapDSTimeGridProps & DapDSTimeGridEvents
6651
+ 'dap-ds-timepicker': DapDSTimePickerProps & DapDSTimePickerEvents
6652
6652
  'dap-ds-toc': DapDSTOCProps & DapDSTOCEvents
6653
6653
  'dap-ds-toggle-button': DapDSToggleButtonProps & DapDSToggleButtonSlots
6654
6654
  'dap-ds-tooltip': DapDSTooltipProps & DapDSTooltipSlots
@@ -6658,26 +6658,26 @@ declare global {
6658
6658
  'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
6659
6659
  'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
6660
6660
  'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
6661
- 'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
6662
6661
  'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
6663
6662
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6664
- 'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6665
6663
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6664
+ 'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
6665
+ 'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6666
6666
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6667
6667
  'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6668
6668
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6669
6669
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6670
6670
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6671
6671
  'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6672
- 'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6673
6672
  'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6673
+ 'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6674
6674
  'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
6675
6675
  'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
6676
6676
  'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
6677
6677
  'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
6678
6678
  'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
6679
- 'dap-ds-icon-calendar-line': BusinessCalendarLineProps
6680
6679
  'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6680
+ 'dap-ds-icon-calendar-line': BusinessCalendarLineProps
6681
6681
  'dap-ds-icon-edit-line': DesignEditLineProps
6682
6682
  'dap-ds-icon-tools-line': DesignToolsLineProps
6683
6683
  'dap-ds-icon-computer-line': DeviceComputerLineProps
@@ -6689,8 +6689,8 @@ declare global {
6689
6689
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6690
6690
  'dap-ds-icon-folder-line': DocumentFolderLineProps
6691
6691
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6692
- 'dap-ds-icon-heart-fill': HealthHeartFillProps
6693
6692
  'dap-ds-icon-separator': EditorSeparatorProps
6693
+ 'dap-ds-icon-heart-fill': HealthHeartFillProps
6694
6694
  'dap-ds-icon-heart-line': HealthHeartLineProps
6695
6695
  'dap-ds-icon-cookie-line': OthersCookieLineProps
6696
6696
  'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps