dap-design-system 0.56.2 → 0.56.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 DapDSAvatarEvents {
214
- /** Fired when the image loads successfully. */
215
- onDdsLoad?: (event: CustomEvent) => void
216
- /** Fired when the image fails to load. */
217
- onDdsError?: (event: CustomEvent) => void
218
- }
219
-
220
213
  export interface DapDSAccordionEvents {
221
214
  /** Event fired when the accordion is opened. */
222
215
  onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
@@ -224,9 +217,11 @@ export interface DapDSAccordionEvents {
224
217
  onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
225
218
  }
226
219
 
227
- export interface DapDSBannerEvents {
228
- /** Event fired when the banner is closed. */
229
- onDdsClose?: (event: CustomEvent) => void
220
+ export interface DapDSAvatarEvents {
221
+ /** Fired when the image loads successfully. */
222
+ onDdsLoad?: (event: CustomEvent) => void
223
+ /** Fired when the image fails to load. */
224
+ onDdsError?: (event: CustomEvent) => void
230
225
  }
231
226
 
232
227
  export interface DapDSAvatarGroupEvents {
@@ -234,9 +229,9 @@ export interface DapDSAvatarGroupEvents {
234
229
  onDdsOverflowClick?: (event: CustomEvent) => void
235
230
  }
236
231
 
237
- export interface DapDSButtonEvents {
238
- /** Emitted when the loading timeout is reached */
239
- onDdsLoadingTimeout?: (event: CustomEvent) => void
232
+ export interface DapDSBannerEvents {
233
+ /** Event fired when the banner is closed. */
234
+ onDdsClose?: (event: CustomEvent) => void
240
235
  }
241
236
 
242
237
  export interface DapDSCalendarEvents {
@@ -267,6 +262,11 @@ export interface DapDSChipEvents {
267
262
  onDdsSelect?: (event: CustomEvent<{ value?: string, selected: boolean }>) => void
268
263
  }
269
264
 
265
+ export interface DapDSButtonEvents {
266
+ /** Emitted when the loading timeout is reached */
267
+ onDdsLoadingTimeout?: (event: CustomEvent) => void
268
+ }
269
+
270
270
  export interface DapDSCodePuncherEvents {
271
271
  /** Fires on each digit input. */
272
272
  onDdsInput?: (event: CustomEvent<{ value: string, index: number }>) => void
@@ -655,6 +655,17 @@ export interface DapDSRadioGroupEvents {
655
655
  onDdsFocus?: (event: CustomEvent) => void
656
656
  }
657
657
 
658
+ export interface DapDSAccordionSlots {
659
+ /** The content of the accordion. */
660
+ default?: () => any
661
+ /** The heading of the accordion. */
662
+ 'heading'?: () => any
663
+ /** The icon when the accordion is opened. */
664
+ 'icon-opened'?: () => any
665
+ /** The icon when the accordion is closed. */
666
+ 'icon-closed'?: () => any
667
+ }
668
+
658
669
  export interface DapDSAccordionGroupSlots {
659
670
  /** The content of the accordion group. */
660
671
  default?: () => any
@@ -667,15 +678,9 @@ export interface DapDSAvatarSlots {
667
678
  'fallback'?: () => any
668
679
  }
669
680
 
670
- export interface DapDSAccordionSlots {
671
- /** The content of the accordion. */
681
+ export interface DapDSAvatarGroupSlots {
682
+ /** The avatars to display in the group. */
672
683
  default?: () => any
673
- /** The heading of the accordion. */
674
- 'heading'?: () => any
675
- /** The icon when the accordion is opened. */
676
- 'icon-opened'?: () => any
677
- /** The icon when the accordion is closed. */
678
- 'icon-closed'?: () => any
679
684
  }
680
685
 
681
686
  export interface DapDSBadgeSlots {
@@ -701,11 +706,6 @@ export interface DapDSBreadcrumbSlots {
701
706
  'separator'?: () => any
702
707
  }
703
708
 
704
- export interface DapDSAvatarGroupSlots {
705
- /** The avatars to display in the group. */
706
- default?: () => any
707
- }
708
-
709
709
  export interface DapDSBreadcrumbItemSlots {
710
710
  /** The content of the breadcrumb item. */
711
711
  default?: () => any
@@ -713,11 +713,6 @@ export interface DapDSBreadcrumbItemSlots {
713
713
  'separator'?: () => any
714
714
  }
715
715
 
716
- export interface DapDSButtonSlots {
717
- /** The content of the button. Can contain text, icons, or other elements. */
718
- default?: () => any
719
- }
720
-
721
716
  export interface DapDSCalendarCellSlots {
722
717
  /** The content of the calendar cell. */
723
718
  default?: () => any
@@ -771,6 +766,11 @@ export interface DapDSCardSlots {
771
766
  default?: () => any
772
767
  }
773
768
 
769
+ export interface DapDSButtonSlots {
770
+ /** The content of the button. Can contain text, icons, or other elements. */
771
+ default?: () => any
772
+ }
773
+
774
774
  export interface DapDSCodePuncherSlots {
775
775
  /** Slot for code-puncher-group, code-puncher-slot, and code-puncher-separator elements. */
776
776
  default?: () => any
@@ -1123,6 +1123,31 @@ export interface DapDSRadioGroupSlots {
1123
1123
  'feedback-icon'?: () => any
1124
1124
  }
1125
1125
 
1126
+ export type DapDSAccordionProps = {
1127
+ /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1128
+ size?: DapDSAccordion["size"]
1129
+ /** Responsive size map (e.g. "md:lg") */
1130
+ sizeMap?: DapDSAccordion["sizeMap"]
1131
+ /** When "true", size is taken from the parent card if present. */
1132
+ parentSized?: DapDSAccordion["parentSized"]
1133
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1134
+ heading?: DapDSAccordion["heading"]
1135
+ /** The heading level of the accordion. Default is `4`. */
1136
+ headingLevel?: DapDSAccordion["headingLevel"]
1137
+ /** Whether the accordion is opened. Default is `false`. */
1138
+ opened?: DapDSAccordion["opened"]
1139
+ /** The location of the icon. Default is `right`. */
1140
+ iconLocation?: DapDSAccordion["iconLocation"]
1141
+ /** The variant of the accordion. */
1142
+ variant?: DapDSAccordion["variant"]
1143
+ /** Whether the accordion is the last item. */
1144
+ lastItem?: DapDSAccordion["lastItem"]
1145
+ /** Whether the accordion is disabled. */
1146
+ disabled?: DapDSAccordion["disabled"]
1147
+ /** Whether the accordion is in loading state. */
1148
+ loading?: DapDSAccordion["loading"]
1149
+ }
1150
+
1126
1151
  export type DapDSAccordionGroupProps = {
1127
1152
  /** Whether to close other accordions when one is opened. */
1128
1153
  autoClose?: DapDSAccordionGroup["autoClose"]
@@ -1130,6 +1155,17 @@ export type DapDSAccordionGroupProps = {
1130
1155
  variant?: DapDSAccordionGroup["variant"]
1131
1156
  }
1132
1157
 
1158
+ export type DapDSAnchorHeadingProps = {
1159
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1160
+ variant?: DapDSAnchorHeading["variant"]
1161
+ /** The label of the heading. */
1162
+ label?: DapDSAnchorHeading["label"]
1163
+ /** */
1164
+ elementId?: DapDSAnchorHeading["elementId"]
1165
+ /** */
1166
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1167
+ }
1168
+
1133
1169
  export type DapDSAvatarProps = {
1134
1170
  /** The shape of the avatar */
1135
1171
  shape?: DapDSAvatar["shape"]
@@ -1157,29 +1193,23 @@ export type DapDSAvatarProps = {
1157
1193
  sizeMap?: DapDSAvatar["sizeMap"]
1158
1194
  }
1159
1195
 
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"]
1196
+ export type DapDSAvatarGroupProps = {
1197
+ /** Layout type for the avatar group */
1198
+ layout?: DapDSAvatarGroup["layout"]
1199
+ /** Maximum number of avatars to show before showing overflow */
1200
+ max?: DapDSAvatarGroup["max"]
1201
+ /** Whether to show the total count in overflow indicator */
1202
+ "show-total"?: DapDSAvatarGroup["showTotal"]
1203
+ /** Interactive overflow indicator */
1204
+ "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1205
+ /** Accessible label for the avatar group */
1206
+ label?: DapDSAvatarGroup["label"]
1207
+ /** Accessible label for the overflow indicator */
1208
+ "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1209
+ /** The size of avatars in the group. Default is `md`. See SizedMixin. */
1210
+ size?: DapDSAvatarGroup["size"]
1211
+ /** Responsive size map (e.g. "md:lg"); see SizedMixin. */
1212
+ sizeMap?: DapDSAvatarGroup["sizeMap"]
1183
1213
  }
1184
1214
 
1185
1215
  export type DapDSBadgeProps = {
@@ -1217,36 +1247,6 @@ export type DapDSBreadcrumbProps = {
1217
1247
  "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1218
1248
  }
1219
1249
 
1220
- export type DapDSAnchorHeadingProps = {
1221
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1222
- variant?: DapDSAnchorHeading["variant"]
1223
- /** The label of the heading. */
1224
- label?: DapDSAnchorHeading["label"]
1225
- /** */
1226
- elementId?: DapDSAnchorHeading["elementId"]
1227
- /** */
1228
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1229
- }
1230
-
1231
- export type DapDSAvatarGroupProps = {
1232
- /** Layout type for the avatar group */
1233
- layout?: DapDSAvatarGroup["layout"]
1234
- /** Maximum number of avatars to show before showing overflow */
1235
- max?: DapDSAvatarGroup["max"]
1236
- /** Whether to show the total count in overflow indicator */
1237
- "show-total"?: DapDSAvatarGroup["showTotal"]
1238
- /** Interactive overflow indicator */
1239
- "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1240
- /** Accessible label for the avatar group */
1241
- label?: DapDSAvatarGroup["label"]
1242
- /** Accessible label for the overflow indicator */
1243
- "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1244
- /** The size of avatars in the group. Default is `md`. See SizedMixin. */
1245
- size?: DapDSAvatarGroup["size"]
1246
- /** Responsive size map (e.g. "md:lg"); see SizedMixin. */
1247
- sizeMap?: DapDSAvatarGroup["sizeMap"]
1248
- }
1249
-
1250
1250
  export type DapDSBreadcrumbItemProps = {
1251
1251
  /** The URL of the breadcrumb item. */
1252
1252
  href?: DapDSBreadcrumbItem["href"]
@@ -1260,37 +1260,6 @@ export type DapDSBreadcrumbItemProps = {
1260
1260
  variant?: DapDSBreadcrumbItem["variant"]
1261
1261
  }
1262
1262
 
1263
- export type DapDSButtonProps = {
1264
- /** The visual style variant of the button */
1265
- variant?: DapDSButton["variant"]
1266
- /** The size of the button affecting padding and font size */
1267
- size?: DapDSButton["size"]
1268
- /** Whether the button is in loading state, showing a spinner and disabling interaction */
1269
- loading?: DapDSButton["loading"]
1270
- /** Whether the button represents a destructive action (applies danger styling) */
1271
- danger?: DapDSButton["danger"]
1272
- /** The shape of the button - use 'circle' for icon-only buttons */
1273
- shape?: DapDSButton["shape"]
1274
- /** The HTML type attribute for form interaction */
1275
- htmlType?: DapDSButton["htmlType"]
1276
- /** The URL to navigate to. When present, the button renders as an anchor element */
1277
- href?: DapDSButton["href"]
1278
- /** The target attribute for link navigation */
1279
- target?: DapDSButton["target"]
1280
- /** The rel attribute for link security and behavior */
1281
- rel?: DapDSButton["rel"]
1282
- /** Controls loading timeout in milliseconds */
1283
- loadingTimeout?: DapDSButton["loadingTimeout"]
1284
- /** Whether the button is active */
1285
- active?: DapDSButton["active"]
1286
- /** The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text */
1287
- targetBlankText?: DapDSButton["targetBlankText"]
1288
- /** Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role="link" on a button acting as a SPA navigation trigger). */
1289
- forceRole?: DapDSButton["forceRole"]
1290
- /** The size map of the button. */
1291
- sizeMap?: DapDSButton["sizeMap"]
1292
- }
1293
-
1294
1263
  export type DapDSCalendarCellProps = {
1295
1264
  /** Whether the calendar cell is selected. */
1296
1265
  selected?: DapDSCalendarCell["selected"]
@@ -1368,57 +1337,6 @@ export type DapDSCalloutProps = {
1368
1337
  opened?: DapDSCallout["opened"]
1369
1338
  }
1370
1339
 
1371
- export type DapDSCheckboxProps = {
1372
- /** Whether the checkbox is indeterminate */
1373
- indeterminate?: DapDSCheckbox["indeterminate"]
1374
- /** Whether the checkbox should prevent the default action */
1375
- preventDefault?: DapDSCheckbox["preventDefault"]
1376
- /** This sets up border around the checkbox, when true. */
1377
- border?: DapDSCheckbox["border"]
1378
- /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1379
- readonly?: DapDSCheckbox["readonly"]
1380
- /** The type of the checkbox */
1381
- type?: DapDSCheckbox["type"]
1382
- /** */
1383
- focusElement?: DapDSCheckbox["focusElement"]
1384
- /** */
1385
- feedbackId?: DapDSCheckbox["feedbackId"]
1386
- /** The name of the checkbox. */
1387
- name?: DapDSCheckbox["name"]
1388
- /** The value of the checkbox. */
1389
- value?: DapDSCheckbox["value"]
1390
- /** Whether the checkbox is checked. */
1391
- checked?: DapDSCheckbox["checked"]
1392
- /** The label of the checkbox. */
1393
- label?: DapDSCheckbox["label"]
1394
- /** The description of the checkbox. */
1395
- description?: DapDSCheckbox["description"]
1396
- /** Whether the checkbox is disabled. */
1397
- disabled?: DapDSCheckbox["disabled"]
1398
- /** Whether the checkbox is required. */
1399
- required?: DapDSCheckbox["required"]
1400
- /** The size of the checkbox. Default is 'sm'. */
1401
- size?: DapDSCheckbox["size"]
1402
- /** Responsive size map (e.g. "md:lg"). */
1403
- sizeMap?: DapDSCheckbox["sizeMap"]
1404
- /** The placement of the label. */
1405
- labelPlacement?: DapDSCheckbox["labelPlacement"]
1406
- /** The placement of the description. */
1407
- descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1408
- /** The weight of the label. */
1409
- subtle?: DapDSCheckbox["subtle"]
1410
- /** The feedback of the checkbox. */
1411
- feedback?: DapDSCheckbox["feedback"]
1412
- /** The feedback type of the checkbox. */
1413
- feedbackType?: DapDSCheckbox["feedbackType"]
1414
- /** The invalid state of the checkbox. */
1415
- invalid?: DapDSCheckbox["invalid"]
1416
- /** The optional state of the checkbox. */
1417
- optional?: DapDSCheckbox["optional"]
1418
- /** The optional label of the checkbox. */
1419
- optionalLabel?: DapDSCheckbox["optionalLabel"]
1420
- }
1421
-
1422
1340
  export type DapDSCardActionsProps = {
1423
1341
  /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1424
1342
  spacing?: DapDSCardActions["spacing"]
@@ -1505,6 +1423,57 @@ export type DapDSCardProps = {
1505
1423
  sizeMap?: DapDSCard["sizeMap"]
1506
1424
  }
1507
1425
 
1426
+ export type DapDSCheckboxProps = {
1427
+ /** Whether the checkbox is indeterminate */
1428
+ indeterminate?: DapDSCheckbox["indeterminate"]
1429
+ /** Whether the checkbox should prevent the default action */
1430
+ preventDefault?: DapDSCheckbox["preventDefault"]
1431
+ /** This sets up border around the checkbox, when true. */
1432
+ border?: DapDSCheckbox["border"]
1433
+ /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1434
+ readonly?: DapDSCheckbox["readonly"]
1435
+ /** The type of the checkbox */
1436
+ type?: DapDSCheckbox["type"]
1437
+ /** */
1438
+ focusElement?: DapDSCheckbox["focusElement"]
1439
+ /** */
1440
+ feedbackId?: DapDSCheckbox["feedbackId"]
1441
+ /** The name of the checkbox. */
1442
+ name?: DapDSCheckbox["name"]
1443
+ /** The value of the checkbox. */
1444
+ value?: DapDSCheckbox["value"]
1445
+ /** Whether the checkbox is checked. */
1446
+ checked?: DapDSCheckbox["checked"]
1447
+ /** The label of the checkbox. */
1448
+ label?: DapDSCheckbox["label"]
1449
+ /** The description of the checkbox. */
1450
+ description?: DapDSCheckbox["description"]
1451
+ /** Whether the checkbox is disabled. */
1452
+ disabled?: DapDSCheckbox["disabled"]
1453
+ /** Whether the checkbox is required. */
1454
+ required?: DapDSCheckbox["required"]
1455
+ /** The size of the checkbox. Default is 'sm'. */
1456
+ size?: DapDSCheckbox["size"]
1457
+ /** Responsive size map (e.g. "md:lg"). */
1458
+ sizeMap?: DapDSCheckbox["sizeMap"]
1459
+ /** The placement of the label. */
1460
+ labelPlacement?: DapDSCheckbox["labelPlacement"]
1461
+ /** The placement of the description. */
1462
+ descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1463
+ /** The weight of the label. */
1464
+ subtle?: DapDSCheckbox["subtle"]
1465
+ /** The feedback of the checkbox. */
1466
+ feedback?: DapDSCheckbox["feedback"]
1467
+ /** The feedback type of the checkbox. */
1468
+ feedbackType?: DapDSCheckbox["feedbackType"]
1469
+ /** The invalid state of the checkbox. */
1470
+ invalid?: DapDSCheckbox["invalid"]
1471
+ /** The optional state of the checkbox. */
1472
+ optional?: DapDSCheckbox["optional"]
1473
+ /** The optional label of the checkbox. */
1474
+ optionalLabel?: DapDSCheckbox["optionalLabel"]
1475
+ }
1476
+
1508
1477
  export type DapDSChipProps = {
1509
1478
  /** Whether the chip is removeable */
1510
1479
  removeable?: DapDSChip["removeable"]
@@ -1524,6 +1493,37 @@ export type DapDSChipProps = {
1524
1493
  sizeMap?: DapDSChip["sizeMap"]
1525
1494
  }
1526
1495
 
1496
+ export type DapDSButtonProps = {
1497
+ /** The visual style variant of the button */
1498
+ variant?: DapDSButton["variant"]
1499
+ /** The size of the button affecting padding and font size */
1500
+ size?: DapDSButton["size"]
1501
+ /** Whether the button is in loading state, showing a spinner and disabling interaction */
1502
+ loading?: DapDSButton["loading"]
1503
+ /** Whether the button represents a destructive action (applies danger styling) */
1504
+ danger?: DapDSButton["danger"]
1505
+ /** The shape of the button - use 'circle' for icon-only buttons */
1506
+ shape?: DapDSButton["shape"]
1507
+ /** The HTML type attribute for form interaction */
1508
+ htmlType?: DapDSButton["htmlType"]
1509
+ /** The URL to navigate to. When present, the button renders as an anchor element */
1510
+ href?: DapDSButton["href"]
1511
+ /** The target attribute for link navigation */
1512
+ target?: DapDSButton["target"]
1513
+ /** The rel attribute for link security and behavior */
1514
+ rel?: DapDSButton["rel"]
1515
+ /** Controls loading timeout in milliseconds */
1516
+ loadingTimeout?: DapDSButton["loadingTimeout"]
1517
+ /** Whether the button is active */
1518
+ active?: DapDSButton["active"]
1519
+ /** The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text */
1520
+ targetBlankText?: DapDSButton["targetBlankText"]
1521
+ /** Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role="link" on a button acting as a SPA navigation trigger). */
1522
+ forceRole?: DapDSButton["forceRole"]
1523
+ /** The size map of the button. */
1524
+ sizeMap?: DapDSButton["sizeMap"]
1525
+ }
1526
+
1527
1527
  export type DapDSCodePuncherSlotProps = {
1528
1528
  /** */
1529
1529
  disabled?: DapDSCodePuncherSlot["disabled"]
@@ -3554,26 +3554,26 @@ export type ArrowsArrowDownLineProps = {
3554
3554
  focusable?: ArrowsArrowDownLine["focusable"]
3555
3555
  }
3556
3556
 
3557
- export type ArrowsArrowDownSFillProps = {
3557
+ export type ArrowsArrowDownSLineProps = {
3558
3558
  /** (optional) The width and height in pixels */
3559
- size?: ArrowsArrowDownSFill["size"]
3559
+ size?: ArrowsArrowDownSLine["size"]
3560
3560
  /** (optional) Sets the icon color via the `fill` attribute */
3561
- selected?: ArrowsArrowDownSFill["selected"]
3561
+ selected?: ArrowsArrowDownSLine["selected"]
3562
3562
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3563
- accessibilityTitle?: ArrowsArrowDownSFill["accessibilityTitle"]
3563
+ accessibilityTitle?: ArrowsArrowDownSLine["accessibilityTitle"]
3564
3564
  /** (optional) If `true` the icon can receive focus */
3565
- focusable?: ArrowsArrowDownSFill["focusable"]
3565
+ focusable?: ArrowsArrowDownSLine["focusable"]
3566
3566
  }
3567
3567
 
3568
- export type ArrowsArrowDownSLineProps = {
3568
+ export type ArrowsArrowDownSFillProps = {
3569
3569
  /** (optional) The width and height in pixels */
3570
- size?: ArrowsArrowDownSLine["size"]
3570
+ size?: ArrowsArrowDownSFill["size"]
3571
3571
  /** (optional) Sets the icon color via the `fill` attribute */
3572
- selected?: ArrowsArrowDownSLine["selected"]
3572
+ selected?: ArrowsArrowDownSFill["selected"]
3573
3573
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3574
- accessibilityTitle?: ArrowsArrowDownSLine["accessibilityTitle"]
3574
+ accessibilityTitle?: ArrowsArrowDownSFill["accessibilityTitle"]
3575
3575
  /** (optional) If `true` the icon can receive focus */
3576
- focusable?: ArrowsArrowDownSLine["focusable"]
3576
+ focusable?: ArrowsArrowDownSFill["focusable"]
3577
3577
  }
3578
3578
 
3579
3579
  export type ArrowsArrowLeftDownLineProps = {
@@ -3653,17 +3653,6 @@ export type ArrowsArrowRightDownLineProps = {
3653
3653
  focusable?: ArrowsArrowRightDownLine["focusable"]
3654
3654
  }
3655
3655
 
3656
- export type ArrowsArrowRightLLineProps = {
3657
- /** (optional) The width and height in pixels */
3658
- size?: ArrowsArrowRightLLine["size"]
3659
- /** (optional) Sets the icon color via the `fill` attribute */
3660
- selected?: ArrowsArrowRightLLine["selected"]
3661
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3662
- accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
3663
- /** (optional) If `true` the icon can receive focus */
3664
- focusable?: ArrowsArrowRightLLine["focusable"]
3665
- }
3666
-
3667
3656
  export type ArrowsArrowRightLineProps = {
3668
3657
  /** (optional) The width and height in pixels */
3669
3658
  size?: ArrowsArrowRightLine["size"]
@@ -3697,6 +3686,17 @@ export type ArrowsArrowRightSLineProps = {
3697
3686
  focusable?: ArrowsArrowRightSLine["focusable"]
3698
3687
  }
3699
3688
 
3689
+ export type ArrowsArrowRightLLineProps = {
3690
+ /** (optional) The width and height in pixels */
3691
+ size?: ArrowsArrowRightLLine["size"]
3692
+ /** (optional) Sets the icon color via the `fill` attribute */
3693
+ selected?: ArrowsArrowRightLLine["selected"]
3694
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3695
+ accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
3696
+ /** (optional) If `true` the icon can receive focus */
3697
+ focusable?: ArrowsArrowRightLLine["focusable"]
3698
+ }
3699
+
3700
3700
  export type ArrowsArrowRightUpLineProps = {
3701
3701
  /** (optional) The width and height in pixels */
3702
3702
  size?: ArrowsArrowRightUpLine["size"]
@@ -3807,17 +3807,6 @@ export type DeviceComputerLineProps = {
3807
3807
  focusable?: DeviceComputerLine["focusable"]
3808
3808
  }
3809
3809
 
3810
- export type EditorSeparatorProps = {
3811
- /** (optional) The width and height in pixels */
3812
- size?: EditorSeparator["size"]
3813
- /** (optional) Sets the icon color via the `fill` attribute */
3814
- selected?: EditorSeparator["selected"]
3815
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3816
- accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3817
- /** (optional) If `true` the icon can receive focus */
3818
- focusable?: EditorSeparator["focusable"]
3819
- }
3820
-
3821
3810
  export type DocumentClipboardLineProps = {
3822
3811
  /** (optional) The width and height in pixels */
3823
3812
  size?: DocumentClipboardLine["size"]
@@ -3906,6 +3895,17 @@ export type DocumentFolderOpenLineProps = {
3906
3895
  focusable?: DocumentFolderOpenLine["focusable"]
3907
3896
  }
3908
3897
 
3898
+ export type EditorSeparatorProps = {
3899
+ /** (optional) The width and height in pixels */
3900
+ size?: EditorSeparator["size"]
3901
+ /** (optional) Sets the icon color via the `fill` attribute */
3902
+ selected?: EditorSeparator["selected"]
3903
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3904
+ accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3905
+ /** (optional) If `true` the icon can receive focus */
3906
+ focusable?: EditorSeparator["focusable"]
3907
+ }
3908
+
3909
3909
  export type HealthHeartFillProps = {
3910
3910
  /** (optional) The width and height in pixels */
3911
3911
  size?: HealthHeartFill["size"]
@@ -3939,50 +3939,6 @@ export type OthersCookieLineProps = {
3939
3939
  focusable?: OthersCookieLine["focusable"]
3940
3940
  }
3941
3941
 
3942
- export type UserAccountCircleFillProps = {
3943
- /** (optional) The width and height in pixels */
3944
- size?: UserAccountCircleFill["size"]
3945
- /** (optional) Sets the icon color via the `fill` attribute */
3946
- selected?: UserAccountCircleFill["selected"]
3947
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3948
- accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
3949
- /** (optional) If `true` the icon can receive focus */
3950
- focusable?: UserAccountCircleFill["focusable"]
3951
- }
3952
-
3953
- export type UserAccountCircleLineProps = {
3954
- /** (optional) The width and height in pixels */
3955
- size?: UserAccountCircleLine["size"]
3956
- /** (optional) Sets the icon color via the `fill` attribute */
3957
- selected?: UserAccountCircleLine["selected"]
3958
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3959
- accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
3960
- /** (optional) If `true` the icon can receive focus */
3961
- focusable?: UserAccountCircleLine["focusable"]
3962
- }
3963
-
3964
- export type UserUserFillProps = {
3965
- /** (optional) The width and height in pixels */
3966
- size?: UserUserFill["size"]
3967
- /** (optional) Sets the icon color via the `fill` attribute */
3968
- selected?: UserUserFill["selected"]
3969
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3970
- accessibilityTitle?: UserUserFill["accessibilityTitle"]
3971
- /** (optional) If `true` the icon can receive focus */
3972
- focusable?: UserUserFill["focusable"]
3973
- }
3974
-
3975
- export type UserUserLineProps = {
3976
- /** (optional) The width and height in pixels */
3977
- size?: UserUserLine["size"]
3978
- /** (optional) Sets the icon color via the `fill` attribute */
3979
- selected?: UserUserLine["selected"]
3980
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3981
- accessibilityTitle?: UserUserLine["accessibilityTitle"]
3982
- /** (optional) If `true` the icon can receive focus */
3983
- focusable?: UserUserLine["focusable"]
3984
- }
3985
-
3986
3942
  export type SystemAddLineProps = {
3987
3943
  /** (optional) The width and height in pixels */
3988
3944
  size?: SystemAddLine["size"]
@@ -4181,26 +4137,26 @@ export type SystemErrorWarningFillProps = {
4181
4137
  focusable?: SystemErrorWarningFill["focusable"]
4182
4138
  }
4183
4139
 
4184
- export type SystemExternalLinkLineProps = {
4140
+ export type SystemErrorWarningLineProps = {
4185
4141
  /** (optional) The width and height in pixels */
4186
- size?: SystemExternalLinkLine["size"]
4142
+ size?: SystemErrorWarningLine["size"]
4187
4143
  /** (optional) Sets the icon color via the `fill` attribute */
4188
- selected?: SystemExternalLinkLine["selected"]
4144
+ selected?: SystemErrorWarningLine["selected"]
4189
4145
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4190
- accessibilityTitle?: SystemExternalLinkLine["accessibilityTitle"]
4146
+ accessibilityTitle?: SystemErrorWarningLine["accessibilityTitle"]
4191
4147
  /** (optional) If `true` the icon can receive focus */
4192
- focusable?: SystemExternalLinkLine["focusable"]
4148
+ focusable?: SystemErrorWarningLine["focusable"]
4193
4149
  }
4194
4150
 
4195
- export type SystemErrorWarningLineProps = {
4151
+ export type SystemExternalLinkLineProps = {
4196
4152
  /** (optional) The width and height in pixels */
4197
- size?: SystemErrorWarningLine["size"]
4153
+ size?: SystemExternalLinkLine["size"]
4198
4154
  /** (optional) Sets the icon color via the `fill` attribute */
4199
- selected?: SystemErrorWarningLine["selected"]
4155
+ selected?: SystemExternalLinkLine["selected"]
4200
4156
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4201
- accessibilityTitle?: SystemErrorWarningLine["accessibilityTitle"]
4157
+ accessibilityTitle?: SystemExternalLinkLine["accessibilityTitle"]
4202
4158
  /** (optional) If `true` the icon can receive focus */
4203
- focusable?: SystemErrorWarningLine["focusable"]
4159
+ focusable?: SystemExternalLinkLine["focusable"]
4204
4160
  }
4205
4161
 
4206
4162
  export type SystemEyeLineProps = {
@@ -4511,9 +4467,79 @@ export type SystemZoomOutLineProps = {
4511
4467
  focusable?: SystemZoomOutLine["focusable"]
4512
4468
  }
4513
4469
 
4470
+ export type UserAccountCircleFillProps = {
4471
+ /** (optional) The width and height in pixels */
4472
+ size?: UserAccountCircleFill["size"]
4473
+ /** (optional) Sets the icon color via the `fill` attribute */
4474
+ selected?: UserAccountCircleFill["selected"]
4475
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4476
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4477
+ /** (optional) If `true` the icon can receive focus */
4478
+ focusable?: UserAccountCircleFill["focusable"]
4479
+ }
4480
+
4481
+ export type UserAccountCircleLineProps = {
4482
+ /** (optional) The width and height in pixels */
4483
+ size?: UserAccountCircleLine["size"]
4484
+ /** (optional) Sets the icon color via the `fill` attribute */
4485
+ selected?: UserAccountCircleLine["selected"]
4486
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4487
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4488
+ /** (optional) If `true` the icon can receive focus */
4489
+ focusable?: UserAccountCircleLine["focusable"]
4490
+ }
4491
+
4492
+ export type UserUserFillProps = {
4493
+ /** (optional) The width and height in pixels */
4494
+ size?: UserUserFill["size"]
4495
+ /** (optional) Sets the icon color via the `fill` attribute */
4496
+ selected?: UserUserFill["selected"]
4497
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4498
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
4499
+ /** (optional) If `true` the icon can receive focus */
4500
+ focusable?: UserUserFill["focusable"]
4501
+ }
4502
+
4503
+ export type UserUserLineProps = {
4504
+ /** (optional) The width and height in pixels */
4505
+ size?: UserUserLine["size"]
4506
+ /** (optional) Sets the icon color via the `fill` attribute */
4507
+ selected?: UserUserLine["selected"]
4508
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4509
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
4510
+ /** (optional) If `true` the icon can receive focus */
4511
+ focusable?: UserUserLine["focusable"]
4512
+ }
4513
+
4514
4514
  // Augment Vue's GlobalComponents interface
4515
4515
  declare module 'vue' {
4516
4516
  interface GlobalComponents {
4517
+ /**
4518
+ * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4519
+ *
4520
+ * ### Events:
4521
+ * - **dds-opened** - Event fired when the accordion is opened.
4522
+ * - **dds-closed** - Event fired when the accordion is closed.
4523
+ *
4524
+ * ### Slots:
4525
+ * - **default** - The content of the accordion.
4526
+ * - **heading** - The heading of the accordion.
4527
+ * - **icon-opened** - The icon when the accordion is opened.
4528
+ * - **icon-closed** - The icon when the accordion is closed.
4529
+ *
4530
+ * ### CSS Parts:
4531
+ * - **base** - The main accordion container.
4532
+ * - **heading** - The heading of the accordion.
4533
+ * - **button** - The button of the accordion.
4534
+ * - **content** - The content of the accordion.
4535
+ * - **content-container** - The container of the accordion content.
4536
+ * - **icon-wrapper** - The icon wrapper of the accordion.
4537
+ * - **open-icon** - The icon when the accordion is opened.
4538
+ * - **open-icon-base** - The base of the icon when the accordion is opened.
4539
+ * - **close-icon** - The icon when the accordion is closed.
4540
+ * - **close-icon-base** - The base of the icon when the accordion is closed.
4541
+ */
4542
+ 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4517
4543
  /**
4518
4544
  * An accordion group is a collection of accordion components.
4519
4545
  *
@@ -4524,6 +4550,16 @@ declare module 'vue' {
4524
4550
  * - **base** - The main accordion group container.
4525
4551
  */
4526
4552
  'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4553
+ /**
4554
+ * Anchor heading is a heading with an anchor link.
4555
+ *
4556
+ * ### CSS Parts:
4557
+ * - **base** - The main anchor heading container.
4558
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4559
+ * - **link-base** - The base of the link part.
4560
+ * - **text** - The text of the anchor heading.
4561
+ */
4562
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4527
4563
  /**
4528
4564
  * Avatar component can be used to display user profile images, initials, or icons.
4529
4565
  *
@@ -4545,31 +4581,20 @@ declare module 'vue' {
4545
4581
  */
4546
4582
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4547
4583
  /**
4548
- * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4584
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4549
4585
  *
4550
4586
  * ### Events:
4551
- * - **dds-opened** - Event fired when the accordion is opened.
4552
- * - **dds-closed** - Event fired when the accordion is closed.
4587
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4553
4588
  *
4554
4589
  * ### Slots:
4555
- * - **default** - The content of the accordion.
4556
- * - **heading** - The heading of the accordion.
4557
- * - **icon-opened** - The icon when the accordion is opened.
4558
- * - **icon-closed** - The icon when the accordion is closed.
4590
+ * - **default** - The avatars to display in the group.
4559
4591
  *
4560
4592
  * ### CSS Parts:
4561
- * - **base** - The main accordion container.
4562
- * - **heading** - The heading of the accordion.
4563
- * - **button** - The button of the accordion.
4564
- * - **content** - The content of the accordion.
4565
- * - **content-container** - The container of the accordion content.
4566
- * - **icon-wrapper** - The icon wrapper of the accordion.
4567
- * - **open-icon** - The icon when the accordion is opened.
4568
- * - **open-icon-base** - The base of the icon when the accordion is opened.
4569
- * - **close-icon** - The icon when the accordion is closed.
4570
- * - **close-icon-base** - The base of the icon when the accordion is closed.
4593
+ * - **base** - The main container of the avatar group.
4594
+ * - **avatars** - The container for the visible avatars.
4595
+ * - **overflow** - The overflow indicator element.
4571
4596
  */
4572
- 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4597
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4573
4598
  /**
4574
4599
  * A badge is a small status descriptor for UI elements.
4575
4600
  *
@@ -4620,31 +4645,6 @@ declare module 'vue' {
4620
4645
  * - **separator** - The separator of the breadcrumb.
4621
4646
  */
4622
4647
  'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4623
- /**
4624
- * Anchor heading is a heading with an anchor link.
4625
- *
4626
- * ### CSS Parts:
4627
- * - **base** - The main anchor heading container.
4628
- * - **link** - The link of the anchor heading. dap-ds-link element.
4629
- * - **link-base** - The base of the link part.
4630
- * - **text** - The text of the anchor heading.
4631
- */
4632
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4633
- /**
4634
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4635
- *
4636
- * ### Events:
4637
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4638
- *
4639
- * ### Slots:
4640
- * - **default** - The avatars to display in the group.
4641
- *
4642
- * ### CSS Parts:
4643
- * - **base** - The main container of the avatar group.
4644
- * - **avatars** - The container for the visible avatars.
4645
- * - **overflow** - The overflow indicator element.
4646
- */
4647
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4648
4648
  /**
4649
4649
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4650
4650
  *
@@ -4660,21 +4660,6 @@ declare module 'vue' {
4660
4660
  * - **separator** - The separator of the breadcrumb item.
4661
4661
  */
4662
4662
  'dap-ds-breadcrumb-item': DefineCustomElement<DapDSBreadcrumbItem, DapDSBreadcrumbItemProps, {}>
4663
- /**
4664
- * A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
4665
- *
4666
- * ### Events:
4667
- * - **dds-loading-timeout** - Emitted when the loading timeout is reached
4668
- *
4669
- * ### Slots:
4670
- * - **default** - The content of the button. Can contain text, icons, or other elements.
4671
- *
4672
- * ### CSS Parts:
4673
- * - **base** - The main button container.
4674
- * - **high-contrast** - The high contrast part of the button.
4675
- * - **content** - The content wrapper inside the button.
4676
- */
4677
- 'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
4678
4663
  /**
4679
4664
  * Calendar cell represents a single cell in the calendar.
4680
4665
  *
@@ -4732,27 +4717,6 @@ declare module 'vue' {
4732
4717
  * - **close** - The close button of the callout.
4733
4718
  */
4734
4719
  'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4735
- /**
4736
- * A checkbox is a form element that allows the user to select one or more options from a set.
4737
- *
4738
- * ### Events:
4739
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4740
- * - **dds-blur** - Emitted when the checkbox loses focus.
4741
- * - **dds-focus** - Emitted when the checkbox gains focus.
4742
- * - **dds-input** - Emitted when the checkbox receives input.
4743
- *
4744
- * ### CSS Parts:
4745
- * - **base** - The main checkbox container.
4746
- * - **label** - The label of the checkbox.
4747
- * - **input** - The input of the checkbox.
4748
- * - **control** - The control of the checkbox.
4749
- * - **icon** - The icon of the checkbox.
4750
- * - **icon-base** - The base icon container.
4751
- * - **label-container** - The label container of the checkbox.
4752
- * - **description** - The description of the checkbox.
4753
- * - **readonly** - The readonly state of the checkbox.
4754
- */
4755
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4756
4720
  /**
4757
4721
  * A card actions is a container for actions in a card.
4758
4722
  *
@@ -4813,6 +4777,27 @@ declare module 'vue' {
4813
4777
  * - **base** - The main card container.
4814
4778
  */
4815
4779
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4780
+ /**
4781
+ * A checkbox is a form element that allows the user to select one or more options from a set.
4782
+ *
4783
+ * ### Events:
4784
+ * - **dds-change** - Fired when the checkbox is checked or unchecked.
4785
+ * - **dds-blur** - Emitted when the checkbox loses focus.
4786
+ * - **dds-focus** - Emitted when the checkbox gains focus.
4787
+ * - **dds-input** - Emitted when the checkbox receives input.
4788
+ *
4789
+ * ### CSS Parts:
4790
+ * - **base** - The main checkbox container.
4791
+ * - **label** - The label of the checkbox.
4792
+ * - **input** - The input of the checkbox.
4793
+ * - **control** - The control of the checkbox.
4794
+ * - **icon** - The icon of the checkbox.
4795
+ * - **icon-base** - The base icon container.
4796
+ * - **label-container** - The label container of the checkbox.
4797
+ * - **description** - The description of the checkbox.
4798
+ * - **readonly** - The readonly state of the checkbox.
4799
+ */
4800
+ 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4816
4801
  /**
4817
4802
  * A chip is a small status descriptor for UI elements.
4818
4803
  *
@@ -4829,6 +4814,21 @@ declare module 'vue' {
4829
4814
  * - **remove-icon-base-base** - The base of the remove icon base
4830
4815
  */
4831
4816
  'dap-ds-chip': DefineCustomElement<DapDSChip, DapDSChipProps, DapDSChipEvents>
4817
+ /**
4818
+ * A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
4819
+ *
4820
+ * ### Events:
4821
+ * - **dds-loading-timeout** - Emitted when the loading timeout is reached
4822
+ *
4823
+ * ### Slots:
4824
+ * - **default** - The content of the button. Can contain text, icons, or other elements.
4825
+ *
4826
+ * ### CSS Parts:
4827
+ * - **base** - The main button container.
4828
+ * - **high-contrast** - The high contrast part of the button.
4829
+ * - **content** - The content wrapper inside the button.
4830
+ */
4831
+ 'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
4832
4832
  /**
4833
4833
  * Individual digit input slot for code puncher.
4834
4834
  *
@@ -6077,14 +6077,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6077
6077
  * ### CSS Parts:
6078
6078
  * - **base** - The main icon container.
6079
6079
  */
6080
- 'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
6080
+ 'dap-ds-icon-arrow-down-s-line': DefineCustomElement<ArrowsArrowDownSLine, ArrowsArrowDownSLineProps, {}>
6081
6081
  /**
6082
6082
  * An icon
6083
6083
  *
6084
6084
  * ### CSS Parts:
6085
6085
  * - **base** - The main icon container.
6086
6086
  */
6087
- 'dap-ds-icon-arrow-down-s-line': DefineCustomElement<ArrowsArrowDownSLine, ArrowsArrowDownSLineProps, {}>
6087
+ 'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
6088
6088
  /**
6089
6089
  * An icon
6090
6090
  *
@@ -6140,28 +6140,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6140
6140
  * ### CSS Parts:
6141
6141
  * - **base** - The main icon container.
6142
6142
  */
6143
- 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6143
+ 'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
6144
6144
  /**
6145
6145
  * An icon
6146
6146
  *
6147
6147
  * ### CSS Parts:
6148
6148
  * - **base** - The main icon container.
6149
6149
  */
6150
- 'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
6150
+ 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6151
6151
  /**
6152
6152
  * An icon
6153
6153
  *
6154
6154
  * ### CSS Parts:
6155
6155
  * - **base** - The main icon container.
6156
6156
  */
6157
- 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6157
+ 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6158
6158
  /**
6159
6159
  * An icon
6160
6160
  *
6161
6161
  * ### CSS Parts:
6162
6162
  * - **base** - The main icon container.
6163
6163
  */
6164
- 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6164
+ 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6165
6165
  /**
6166
6166
  * An icon
6167
6167
  *
@@ -6232,13 +6232,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6232
6232
  * - **base** - The main icon container.
6233
6233
  */
6234
6234
  'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
6235
- /**
6236
- * An icon
6237
- *
6238
- * ### CSS Parts:
6239
- * - **base** - The main icon container.
6240
- */
6241
- 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6242
6235
  /**
6243
6236
  * An icon
6244
6237
  *
@@ -6301,49 +6294,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6301
6294
  * ### CSS Parts:
6302
6295
  * - **base** - The main icon container.
6303
6296
  */
6304
- 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6305
- /**
6306
- * An icon
6307
- *
6308
- * ### CSS Parts:
6309
- * - **base** - The main icon container.
6310
- */
6311
- 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6312
- /**
6313
- * An icon
6314
- *
6315
- * ### CSS Parts:
6316
- * - **base** - The main icon container.
6317
- */
6318
- 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6319
- /**
6320
- * An icon
6321
- *
6322
- * ### CSS Parts:
6323
- * - **base** - The main icon container.
6324
- */
6325
- 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6297
+ 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6326
6298
  /**
6327
6299
  * An icon
6328
6300
  *
6329
6301
  * ### CSS Parts:
6330
6302
  * - **base** - The main icon container.
6331
6303
  */
6332
- 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6304
+ 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6333
6305
  /**
6334
6306
  * An icon
6335
6307
  *
6336
6308
  * ### CSS Parts:
6337
6309
  * - **base** - The main icon container.
6338
6310
  */
6339
- 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6311
+ 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6340
6312
  /**
6341
6313
  * An icon
6342
6314
  *
6343
6315
  * ### CSS Parts:
6344
6316
  * - **base** - The main icon container.
6345
6317
  */
6346
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6318
+ 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6347
6319
  /**
6348
6320
  * An icon
6349
6321
  *
@@ -6476,14 +6448,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6476
6448
  * ### CSS Parts:
6477
6449
  * - **base** - The main icon container.
6478
6450
  */
6479
- 'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
6451
+ 'dap-ds-icon-error-warning-line': DefineCustomElement<SystemErrorWarningLine, SystemErrorWarningLineProps, {}>
6480
6452
  /**
6481
6453
  * An icon
6482
6454
  *
6483
6455
  * ### CSS Parts:
6484
6456
  * - **base** - The main icon container.
6485
6457
  */
6486
- 'dap-ds-icon-error-warning-line': DefineCustomElement<SystemErrorWarningLine, SystemErrorWarningLineProps, {}>
6458
+ 'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
6487
6459
  /**
6488
6460
  * An icon
6489
6461
  *
@@ -6680,6 +6652,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6680
6652
  * - **base** - The main icon container.
6681
6653
  */
6682
6654
  'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
6655
+ /**
6656
+ * An icon
6657
+ *
6658
+ * ### CSS Parts:
6659
+ * - **base** - The main icon container.
6660
+ */
6661
+ 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6662
+ /**
6663
+ * An icon
6664
+ *
6665
+ * ### CSS Parts:
6666
+ * - **base** - The main icon container.
6667
+ */
6668
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6669
+ /**
6670
+ * An icon
6671
+ *
6672
+ * ### CSS Parts:
6673
+ * - **base** - The main icon container.
6674
+ */
6675
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6676
+ /**
6677
+ * An icon
6678
+ *
6679
+ * ### CSS Parts:
6680
+ * - **base** - The main icon container.
6681
+ */
6682
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6683
6683
  }
6684
6684
  }
6685
6685
 
@@ -6687,27 +6687,27 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6687
6687
  declare global {
6688
6688
  namespace JSX {
6689
6689
  interface IntrinsicElements {
6690
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6690
6691
  'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6692
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6691
6693
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6692
- 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6694
+ 'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6693
6695
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6694
6696
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6695
6697
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6696
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6697
- 'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6698
6698
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6699
- 'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6700
6699
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6701
6700
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6702
6701
  'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6703
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6704
6702
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6705
6703
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6706
6704
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6707
6705
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6708
6706
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6709
6707
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6708
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6710
6709
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6710
+ 'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6711
6711
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6712
6712
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
6713
6713
  'dap-ds-combobox': DapDSComboboxProps & DapDSComboboxEvents & DapDSComboboxSlots
@@ -6782,8 +6782,8 @@ declare global {
6782
6782
  'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
6783
6783
  'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
6784
6784
  'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
6785
- 'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
6786
6785
  'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
6786
+ 'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
6787
6787
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6788
6788
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6789
6789
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
@@ -6791,10 +6791,10 @@ declare global {
6791
6791
  'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6792
6792
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6793
6793
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6794
- 'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6795
6794
  'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6796
6795
  'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6797
6796
  'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6797
+ 'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6798
6798
  'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
6799
6799
  'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
6800
6800
  'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
@@ -6805,7 +6805,6 @@ declare global {
6805
6805
  'dap-ds-icon-edit-line': DesignEditLineProps
6806
6806
  'dap-ds-icon-tools-line': DesignToolsLineProps
6807
6807
  'dap-ds-icon-computer-line': DeviceComputerLineProps
6808
- 'dap-ds-icon-separator': EditorSeparatorProps
6809
6808
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6810
6809
  'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6811
6810
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
@@ -6814,13 +6813,10 @@ declare global {
6814
6813
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6815
6814
  'dap-ds-icon-folder-line': DocumentFolderLineProps
6816
6815
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6816
+ 'dap-ds-icon-separator': EditorSeparatorProps
6817
6817
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6818
6818
  'dap-ds-icon-heart-line': HealthHeartLineProps
6819
6819
  'dap-ds-icon-cookie-line': OthersCookieLineProps
6820
- 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6821
- 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6822
- 'dap-ds-icon-user-fill': UserUserFillProps
6823
- 'dap-ds-icon-user-line': UserUserLineProps
6824
6820
  'dap-ds-icon-add-line': SystemAddLineProps
6825
6821
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6826
6822
  'dap-ds-icon-alert-line': SystemAlertLineProps
@@ -6839,8 +6835,8 @@ declare global {
6839
6835
  'dap-ds-icon-delete-bin-line': SystemDeleteBinLineProps
6840
6836
  'dap-ds-icon-download-line': SystemDownloadLineProps
6841
6837
  'dap-ds-icon-error-warning-fill': SystemErrorWarningFillProps
6842
- 'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
6843
6838
  'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
6839
+ 'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
6844
6840
  'dap-ds-icon-eye-line': SystemEyeLineProps
6845
6841
  'dap-ds-icon-eye-off-line': SystemEyeOffLineProps
6846
6842
  'dap-ds-icon-forbid-fill': SystemForbidFillProps
@@ -6869,6 +6865,10 @@ declare global {
6869
6865
  'dap-ds-icon-upload-line': SystemUploadLineProps
6870
6866
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
6871
6867
  'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
6868
+ 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6869
+ 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6870
+ 'dap-ds-icon-user-fill': UserUserFillProps
6871
+ 'dap-ds-icon-user-line': UserUserLineProps
6872
6872
  }
6873
6873
  }
6874
6874
  }