dap-design-system 0.57.6 → 0.57.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -217,6 +217,11 @@ export interface DapDSAccordionEvents {
217
217
  onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
218
218
  }
219
219
 
220
+ export interface DapDSAvatarGroupEvents {
221
+ /** Fired when the overflow indicator is clicked. */
222
+ onDdsOverflowClick?: (event: CustomEvent) => void
223
+ }
224
+
220
225
  export interface DapDSAvatarEvents {
221
226
  /** Fired when the image loads successfully. */
222
227
  onDdsLoad?: (event: CustomEvent) => void
@@ -224,11 +229,6 @@ export interface DapDSAvatarEvents {
224
229
  onDdsError?: (event: CustomEvent) => void
225
230
  }
226
231
 
227
- export interface DapDSAvatarGroupEvents {
228
- /** Fired when the overflow indicator is clicked. */
229
- onDdsOverflowClick?: (event: CustomEvent) => void
230
- }
231
-
232
232
  export interface DapDSBannerEvents {
233
233
  /** Event fired when the banner is closed. */
234
234
  onDdsClose?: (event: CustomEvent) => void
@@ -666,6 +666,11 @@ export interface DapDSAccordionSlots {
666
666
  'icon-closed'?: () => any
667
667
  }
668
668
 
669
+ export interface DapDSAvatarGroupSlots {
670
+ /** The avatars to display in the group. */
671
+ default?: () => any
672
+ }
673
+
669
674
  export interface DapDSAvatarSlots {
670
675
  /** The icon to display when variant is 'icon'. */
671
676
  'icon'?: () => any
@@ -673,16 +678,6 @@ export interface DapDSAvatarSlots {
673
678
  'fallback'?: () => any
674
679
  }
675
680
 
676
- export interface DapDSAccordionGroupSlots {
677
- /** The content of the accordion group. */
678
- default?: () => any
679
- }
680
-
681
- export interface DapDSAvatarGroupSlots {
682
- /** The avatars to display in the group. */
683
- default?: () => any
684
- }
685
-
686
681
  export interface DapDSBadgeSlots {
687
682
  /** The content of the badge. */
688
683
  default?: () => any
@@ -706,6 +701,11 @@ export interface DapDSBreadcrumbSlots {
706
701
  'separator'?: () => any
707
702
  }
708
703
 
704
+ export interface DapDSAccordionGroupSlots {
705
+ /** The content of the accordion group. */
706
+ default?: () => any
707
+ }
708
+
709
709
  export interface DapDSBreadcrumbItemSlots {
710
710
  /** The content of the breadcrumb item. */
711
711
  default?: () => any
@@ -1148,6 +1148,25 @@ export type DapDSAccordionProps = {
1148
1148
  loading?: DapDSAccordion["loading"]
1149
1149
  }
1150
1150
 
1151
+ export type DapDSAvatarGroupProps = {
1152
+ /** Layout type for the avatar group */
1153
+ layout?: DapDSAvatarGroup["layout"]
1154
+ /** Maximum number of avatars to show before showing overflow */
1155
+ max?: DapDSAvatarGroup["max"]
1156
+ /** Whether to show the total count in overflow indicator */
1157
+ "show-total"?: DapDSAvatarGroup["showTotal"]
1158
+ /** Interactive overflow indicator */
1159
+ "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1160
+ /** Accessible label for the avatar group */
1161
+ label?: DapDSAvatarGroup["label"]
1162
+ /** Accessible label for the overflow indicator */
1163
+ "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1164
+ /** The size of avatars in the group. Default is `md`. See SizedMixin. */
1165
+ size?: DapDSAvatarGroup["size"]
1166
+ /** Responsive size map (e.g. "md:lg"); see SizedMixin. */
1167
+ sizeMap?: DapDSAvatarGroup["sizeMap"]
1168
+ }
1169
+
1151
1170
  export type DapDSAvatarProps = {
1152
1171
  /** The shape of the avatar */
1153
1172
  shape?: DapDSAvatar["shape"]
@@ -1175,43 +1194,6 @@ export type DapDSAvatarProps = {
1175
1194
  sizeMap?: DapDSAvatar["sizeMap"]
1176
1195
  }
1177
1196
 
1178
- export type DapDSAnchorHeadingProps = {
1179
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1180
- variant?: DapDSAnchorHeading["variant"]
1181
- /** The label of the heading. */
1182
- label?: DapDSAnchorHeading["label"]
1183
- /** */
1184
- elementId?: DapDSAnchorHeading["elementId"]
1185
- /** */
1186
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1187
- }
1188
-
1189
- export type DapDSAccordionGroupProps = {
1190
- /** Whether to close other accordions when one is opened. */
1191
- autoClose?: DapDSAccordionGroup["autoClose"]
1192
- /** The variant of the accordion */
1193
- variant?: DapDSAccordionGroup["variant"]
1194
- }
1195
-
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"]
1213
- }
1214
-
1215
1197
  export type DapDSBadgeProps = {
1216
1198
  /** The type of the badge */
1217
1199
  type?: DapDSBadge["type"]
@@ -1247,6 +1229,24 @@ export type DapDSBreadcrumbProps = {
1247
1229
  "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1248
1230
  }
1249
1231
 
1232
+ export type DapDSAccordionGroupProps = {
1233
+ /** Whether to close other accordions when one is opened. */
1234
+ autoClose?: DapDSAccordionGroup["autoClose"]
1235
+ /** The variant of the accordion */
1236
+ variant?: DapDSAccordionGroup["variant"]
1237
+ }
1238
+
1239
+ export type DapDSAnchorHeadingProps = {
1240
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1241
+ variant?: DapDSAnchorHeading["variant"]
1242
+ /** The label of the heading. */
1243
+ label?: DapDSAnchorHeading["label"]
1244
+ /** */
1245
+ elementId?: DapDSAnchorHeading["elementId"]
1246
+ /** */
1247
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1248
+ }
1249
+
1250
1250
  export type DapDSBreadcrumbItemProps = {
1251
1251
  /** The URL of the breadcrumb item. */
1252
1252
  href?: DapDSBreadcrumbItem["href"]
@@ -1368,6 +1368,57 @@ export type DapDSCalloutProps = {
1368
1368
  opened?: DapDSCallout["opened"]
1369
1369
  }
1370
1370
 
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
+
1371
1422
  export type DapDSCardActionsProps = {
1372
1423
  /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1373
1424
  spacing?: DapDSCardActions["spacing"]
@@ -1454,57 +1505,6 @@ export type DapDSCardProps = {
1454
1505
  sizeMap?: DapDSCard["sizeMap"]
1455
1506
  }
1456
1507
 
1457
- export type DapDSCheckboxProps = {
1458
- /** Whether the checkbox is indeterminate */
1459
- indeterminate?: DapDSCheckbox["indeterminate"]
1460
- /** Whether the checkbox should prevent the default action */
1461
- preventDefault?: DapDSCheckbox["preventDefault"]
1462
- /** This sets up border around the checkbox, when true. */
1463
- border?: DapDSCheckbox["border"]
1464
- /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1465
- readonly?: DapDSCheckbox["readonly"]
1466
- /** The type of the checkbox */
1467
- type?: DapDSCheckbox["type"]
1468
- /** */
1469
- focusElement?: DapDSCheckbox["focusElement"]
1470
- /** */
1471
- feedbackId?: DapDSCheckbox["feedbackId"]
1472
- /** The name of the checkbox. */
1473
- name?: DapDSCheckbox["name"]
1474
- /** The value of the checkbox. */
1475
- value?: DapDSCheckbox["value"]
1476
- /** Whether the checkbox is checked. */
1477
- checked?: DapDSCheckbox["checked"]
1478
- /** The label of the checkbox. */
1479
- label?: DapDSCheckbox["label"]
1480
- /** The description of the checkbox. */
1481
- description?: DapDSCheckbox["description"]
1482
- /** Whether the checkbox is disabled. */
1483
- disabled?: DapDSCheckbox["disabled"]
1484
- /** Whether the checkbox is required. */
1485
- required?: DapDSCheckbox["required"]
1486
- /** The size of the checkbox. Default is 'sm'. */
1487
- size?: DapDSCheckbox["size"]
1488
- /** Responsive size map (e.g. "md:lg"). */
1489
- sizeMap?: DapDSCheckbox["sizeMap"]
1490
- /** The placement of the label. */
1491
- labelPlacement?: DapDSCheckbox["labelPlacement"]
1492
- /** The placement of the description. */
1493
- descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1494
- /** The weight of the label. */
1495
- subtle?: DapDSCheckbox["subtle"]
1496
- /** The feedback of the checkbox. */
1497
- feedback?: DapDSCheckbox["feedback"]
1498
- /** The feedback type of the checkbox. */
1499
- feedbackType?: DapDSCheckbox["feedbackType"]
1500
- /** The invalid state of the checkbox. */
1501
- invalid?: DapDSCheckbox["invalid"]
1502
- /** The optional state of the checkbox. */
1503
- optional?: DapDSCheckbox["optional"]
1504
- /** The optional label of the checkbox. */
1505
- optionalLabel?: DapDSCheckbox["optionalLabel"]
1506
- }
1507
-
1508
1508
  export type DapDSChipProps = {
1509
1509
  /** Whether the chip is removeable */
1510
1510
  removeable?: DapDSChip["removeable"]
@@ -3638,17 +3638,6 @@ export type ArrowsArrowLeftSLineProps = {
3638
3638
  focusable?: ArrowsArrowLeftSLine["focusable"]
3639
3639
  }
3640
3640
 
3641
- export type ArrowsArrowLeftUpLineProps = {
3642
- /** (optional) The width and height in pixels */
3643
- size?: ArrowsArrowLeftUpLine["size"]
3644
- /** (optional) Sets the icon color via the `fill` attribute */
3645
- selected?: ArrowsArrowLeftUpLine["selected"]
3646
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3647
- accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
3648
- /** (optional) If `true` the icon can receive focus */
3649
- focusable?: ArrowsArrowLeftUpLine["focusable"]
3650
- }
3651
-
3652
3641
  export type ArrowsArrowRightDownLineProps = {
3653
3642
  /** (optional) The width and height in pixels */
3654
3643
  size?: ArrowsArrowRightDownLine["size"]
@@ -3660,15 +3649,15 @@ export type ArrowsArrowRightDownLineProps = {
3660
3649
  focusable?: ArrowsArrowRightDownLine["focusable"]
3661
3650
  }
3662
3651
 
3663
- export type ArrowsArrowRightLLineProps = {
3652
+ export type ArrowsArrowLeftUpLineProps = {
3664
3653
  /** (optional) The width and height in pixels */
3665
- size?: ArrowsArrowRightLLine["size"]
3654
+ size?: ArrowsArrowLeftUpLine["size"]
3666
3655
  /** (optional) Sets the icon color via the `fill` attribute */
3667
- selected?: ArrowsArrowRightLLine["selected"]
3656
+ selected?: ArrowsArrowLeftUpLine["selected"]
3668
3657
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3669
- accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
3658
+ accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
3670
3659
  /** (optional) If `true` the icon can receive focus */
3671
- focusable?: ArrowsArrowRightLLine["focusable"]
3660
+ focusable?: ArrowsArrowLeftUpLine["focusable"]
3672
3661
  }
3673
3662
 
3674
3663
  export type ArrowsArrowRightLineProps = {
@@ -3682,6 +3671,17 @@ export type ArrowsArrowRightLineProps = {
3682
3671
  focusable?: ArrowsArrowRightLine["focusable"]
3683
3672
  }
3684
3673
 
3674
+ export type ArrowsArrowRightLLineProps = {
3675
+ /** (optional) The width and height in pixels */
3676
+ size?: ArrowsArrowRightLLine["size"]
3677
+ /** (optional) Sets the icon color via the `fill` attribute */
3678
+ selected?: ArrowsArrowRightLLine["selected"]
3679
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3680
+ accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
3681
+ /** (optional) If `true` the icon can receive focus */
3682
+ focusable?: ArrowsArrowRightLLine["focusable"]
3683
+ }
3684
+
3685
3685
  export type ArrowsArrowRightSFillProps = {
3686
3686
  /** (optional) The width and height in pixels */
3687
3687
  size?: ArrowsArrowRightSFill["size"]
@@ -3814,6 +3814,17 @@ export type DeviceComputerLineProps = {
3814
3814
  focusable?: DeviceComputerLine["focusable"]
3815
3815
  }
3816
3816
 
3817
+ export type EditorSeparatorProps = {
3818
+ /** (optional) The width and height in pixels */
3819
+ size?: EditorSeparator["size"]
3820
+ /** (optional) Sets the icon color via the `fill` attribute */
3821
+ selected?: EditorSeparator["selected"]
3822
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3823
+ accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3824
+ /** (optional) If `true` the icon can receive focus */
3825
+ focusable?: EditorSeparator["focusable"]
3826
+ }
3827
+
3817
3828
  export type DocumentClipboardLineProps = {
3818
3829
  /** (optional) The width and height in pixels */
3819
3830
  size?: DocumentClipboardLine["size"]
@@ -3902,17 +3913,6 @@ export type DocumentFolderOpenLineProps = {
3902
3913
  focusable?: DocumentFolderOpenLine["focusable"]
3903
3914
  }
3904
3915
 
3905
- export type EditorSeparatorProps = {
3906
- /** (optional) The width and height in pixels */
3907
- size?: EditorSeparator["size"]
3908
- /** (optional) Sets the icon color via the `fill` attribute */
3909
- selected?: EditorSeparator["selected"]
3910
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3911
- accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3912
- /** (optional) If `true` the icon can receive focus */
3913
- focusable?: EditorSeparator["focusable"]
3914
- }
3915
-
3916
3916
  export type HealthHeartFillProps = {
3917
3917
  /** (optional) The width and height in pixels */
3918
3918
  size?: HealthHeartFill["size"]
@@ -4188,6 +4188,17 @@ export type SystemErrorWarningFillProps = {
4188
4188
  focusable?: SystemErrorWarningFill["focusable"]
4189
4189
  }
4190
4190
 
4191
+ export type SystemErrorWarningLineProps = {
4192
+ /** (optional) The width and height in pixels */
4193
+ size?: SystemErrorWarningLine["size"]
4194
+ /** (optional) Sets the icon color via the `fill` attribute */
4195
+ selected?: SystemErrorWarningLine["selected"]
4196
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4197
+ accessibilityTitle?: SystemErrorWarningLine["accessibilityTitle"]
4198
+ /** (optional) If `true` the icon can receive focus */
4199
+ focusable?: SystemErrorWarningLine["focusable"]
4200
+ }
4201
+
4191
4202
  export type SystemExternalLinkLineProps = {
4192
4203
  /** (optional) The width and height in pixels */
4193
4204
  size?: SystemExternalLinkLine["size"]
@@ -4210,17 +4221,6 @@ export type SystemEyeLineProps = {
4210
4221
  focusable?: SystemEyeLine["focusable"]
4211
4222
  }
4212
4223
 
4213
- export type SystemErrorWarningLineProps = {
4214
- /** (optional) The width and height in pixels */
4215
- size?: SystemErrorWarningLine["size"]
4216
- /** (optional) Sets the icon color via the `fill` attribute */
4217
- selected?: SystemErrorWarningLine["selected"]
4218
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4219
- accessibilityTitle?: SystemErrorWarningLine["accessibilityTitle"]
4220
- /** (optional) If `true` the icon can receive focus */
4221
- focusable?: SystemErrorWarningLine["focusable"]
4222
- }
4223
-
4224
4224
  export type SystemEyeOffLineProps = {
4225
4225
  /** (optional) The width and height in pixels */
4226
4226
  size?: SystemEyeOffLine["size"]
@@ -4547,6 +4547,21 @@ declare module 'vue' {
4547
4547
  * - **close-icon-base** - The base of the icon when the accordion is closed.
4548
4548
  */
4549
4549
  'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4550
+ /**
4551
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4552
+ *
4553
+ * ### Events:
4554
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4555
+ *
4556
+ * ### Slots:
4557
+ * - **default** - The avatars to display in the group.
4558
+ *
4559
+ * ### CSS Parts:
4560
+ * - **base** - The main container of the avatar group.
4561
+ * - **avatars** - The container for the visible avatars.
4562
+ * - **overflow** - The overflow indicator element.
4563
+ */
4564
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4550
4565
  /**
4551
4566
  * Avatar component can be used to display user profile images, initials, or icons.
4552
4567
  *
@@ -4567,41 +4582,6 @@ declare module 'vue' {
4567
4582
  * - **loading** - The loading indicator.
4568
4583
  */
4569
4584
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4570
- /**
4571
- * Anchor heading is a heading with an anchor link.
4572
- *
4573
- * ### CSS Parts:
4574
- * - **base** - The main anchor heading container.
4575
- * - **link** - The link of the anchor heading. dap-ds-link element.
4576
- * - **link-base** - The base of the link part.
4577
- * - **text** - The text of the anchor heading.
4578
- */
4579
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4580
- /**
4581
- * An accordion group is a collection of accordion components.
4582
- *
4583
- * ### Slots:
4584
- * - **default** - The content of the accordion group.
4585
- *
4586
- * ### CSS Parts:
4587
- * - **base** - The main accordion group container.
4588
- */
4589
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4590
- /**
4591
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4592
- *
4593
- * ### Events:
4594
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4595
- *
4596
- * ### Slots:
4597
- * - **default** - The avatars to display in the group.
4598
- *
4599
- * ### CSS Parts:
4600
- * - **base** - The main container of the avatar group.
4601
- * - **avatars** - The container for the visible avatars.
4602
- * - **overflow** - The overflow indicator element.
4603
- */
4604
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4605
4585
  /**
4606
4586
  * A badge is a small status descriptor for UI elements.
4607
4587
  *
@@ -4652,6 +4632,26 @@ declare module 'vue' {
4652
4632
  * - **separator** - The separator of the breadcrumb.
4653
4633
  */
4654
4634
  'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4635
+ /**
4636
+ * An accordion group is a collection of accordion components.
4637
+ *
4638
+ * ### Slots:
4639
+ * - **default** - The content of the accordion group.
4640
+ *
4641
+ * ### CSS Parts:
4642
+ * - **base** - The main accordion group container.
4643
+ */
4644
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4645
+ /**
4646
+ * Anchor heading is a heading with an anchor link.
4647
+ *
4648
+ * ### CSS Parts:
4649
+ * - **base** - The main anchor heading container.
4650
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4651
+ * - **link-base** - The base of the link part.
4652
+ * - **text** - The text of the anchor heading.
4653
+ */
4654
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4655
4655
  /**
4656
4656
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4657
4657
  *
@@ -4739,6 +4739,27 @@ declare module 'vue' {
4739
4739
  * - **close** - The close button of the callout.
4740
4740
  */
4741
4741
  'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4742
+ /**
4743
+ * A checkbox is a form element that allows the user to select one or more options from a set.
4744
+ *
4745
+ * ### Events:
4746
+ * - **dds-change** - Fired when the checkbox is checked or unchecked.
4747
+ * - **dds-blur** - Emitted when the checkbox loses focus.
4748
+ * - **dds-focus** - Emitted when the checkbox gains focus.
4749
+ * - **dds-input** - Emitted when the checkbox receives input.
4750
+ *
4751
+ * ### CSS Parts:
4752
+ * - **base** - The main checkbox container.
4753
+ * - **label** - The label of the checkbox.
4754
+ * - **input** - The input of the checkbox.
4755
+ * - **control** - The control of the checkbox.
4756
+ * - **icon** - The icon of the checkbox.
4757
+ * - **icon-base** - The base icon container.
4758
+ * - **label-container** - The label container of the checkbox.
4759
+ * - **description** - The description of the checkbox.
4760
+ * - **readonly** - The readonly state of the checkbox.
4761
+ */
4762
+ 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4742
4763
  /**
4743
4764
  * A card actions is a container for actions in a card.
4744
4765
  *
@@ -4799,27 +4820,6 @@ declare module 'vue' {
4799
4820
  * - **base** - The main card container.
4800
4821
  */
4801
4822
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4802
- /**
4803
- * A checkbox is a form element that allows the user to select one or more options from a set.
4804
- *
4805
- * ### Events:
4806
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4807
- * - **dds-blur** - Emitted when the checkbox loses focus.
4808
- * - **dds-focus** - Emitted when the checkbox gains focus.
4809
- * - **dds-input** - Emitted when the checkbox receives input.
4810
- *
4811
- * ### CSS Parts:
4812
- * - **base** - The main checkbox container.
4813
- * - **label** - The label of the checkbox.
4814
- * - **input** - The input of the checkbox.
4815
- * - **control** - The control of the checkbox.
4816
- * - **icon** - The icon of the checkbox.
4817
- * - **icon-base** - The base icon container.
4818
- * - **label-container** - The label container of the checkbox.
4819
- * - **description** - The description of the checkbox.
4820
- * - **readonly** - The readonly state of the checkbox.
4821
- */
4822
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4823
4823
  /**
4824
4824
  * A chip is a small status descriptor for UI elements.
4825
4825
  *
@@ -6133,28 +6133,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6133
6133
  * ### CSS Parts:
6134
6134
  * - **base** - The main icon container.
6135
6135
  */
6136
- 'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
6136
+ 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
6137
6137
  /**
6138
6138
  * An icon
6139
6139
  *
6140
6140
  * ### CSS Parts:
6141
6141
  * - **base** - The main icon container.
6142
6142
  */
6143
- 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
6143
+ 'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
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-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6150
+ 'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
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-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
6157
+ 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6158
6158
  /**
6159
6159
  * An icon
6160
6160
  *
@@ -6239,6 +6239,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6239
6239
  * - **base** - The main icon container.
6240
6240
  */
6241
6241
  'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
6242
+ /**
6243
+ * An icon
6244
+ *
6245
+ * ### CSS Parts:
6246
+ * - **base** - The main icon container.
6247
+ */
6248
+ 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6242
6249
  /**
6243
6250
  * An icon
6244
6251
  *
@@ -6295,13 +6302,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6295
6302
  * - **base** - The main icon container.
6296
6303
  */
6297
6304
  'dap-ds-icon-folder-open-line': DefineCustomElement<DocumentFolderOpenLine, DocumentFolderOpenLineProps, {}>
6298
- /**
6299
- * An icon
6300
- *
6301
- * ### CSS Parts:
6302
- * - **base** - The main icon container.
6303
- */
6304
- 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6305
6305
  /**
6306
6306
  * An icon
6307
6307
  *
@@ -6483,21 +6483,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6483
6483
  * ### CSS Parts:
6484
6484
  * - **base** - The main icon container.
6485
6485
  */
6486
- 'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
6486
+ 'dap-ds-icon-error-warning-line': DefineCustomElement<SystemErrorWarningLine, SystemErrorWarningLineProps, {}>
6487
6487
  /**
6488
6488
  * An icon
6489
6489
  *
6490
6490
  * ### CSS Parts:
6491
6491
  * - **base** - The main icon container.
6492
6492
  */
6493
- 'dap-ds-icon-eye-line': DefineCustomElement<SystemEyeLine, SystemEyeLineProps, {}>
6493
+ 'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
6494
6494
  /**
6495
6495
  * An icon
6496
6496
  *
6497
6497
  * ### CSS Parts:
6498
6498
  * - **base** - The main icon container.
6499
6499
  */
6500
- 'dap-ds-icon-error-warning-line': DefineCustomElement<SystemErrorWarningLine, SystemErrorWarningLineProps, {}>
6500
+ 'dap-ds-icon-eye-line': DefineCustomElement<SystemEyeLine, SystemEyeLineProps, {}>
6501
6501
  /**
6502
6502
  * An icon
6503
6503
  *
@@ -6695,25 +6695,25 @@ declare global {
6695
6695
  namespace JSX {
6696
6696
  interface IntrinsicElements {
6697
6697
  'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6698
- 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6699
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6700
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6701
6698
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6699
+ 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6702
6700
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6703
6701
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6704
6702
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6703
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6704
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6705
6705
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6706
6706
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6707
6707
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6708
6708
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6709
6709
  'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6710
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6710
6711
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6711
6712
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6712
6713
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6713
6714
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6714
6715
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6715
6716
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6716
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6717
6717
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6718
6718
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6719
6719
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
@@ -6796,10 +6796,10 @@ declare global {
6796
6796
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6797
6797
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6798
6798
  'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6799
- 'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6800
6799
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6801
- 'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6800
+ 'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6802
6801
  'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6802
+ 'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6803
6803
  'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6804
6804
  'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6805
6805
  'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
@@ -6812,6 +6812,7 @@ declare global {
6812
6812
  'dap-ds-icon-edit-line': DesignEditLineProps
6813
6813
  'dap-ds-icon-tools-line': DesignToolsLineProps
6814
6814
  'dap-ds-icon-computer-line': DeviceComputerLineProps
6815
+ 'dap-ds-icon-separator': EditorSeparatorProps
6815
6816
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6816
6817
  'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6817
6818
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
@@ -6820,7 +6821,6 @@ declare global {
6820
6821
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6821
6822
  'dap-ds-icon-folder-line': DocumentFolderLineProps
6822
6823
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6823
- 'dap-ds-icon-separator': EditorSeparatorProps
6824
6824
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6825
6825
  'dap-ds-icon-heart-line': HealthHeartLineProps
6826
6826
  'dap-ds-icon-cookie-line': OthersCookieLineProps
@@ -6846,9 +6846,9 @@ declare global {
6846
6846
  'dap-ds-icon-delete-bin-line': SystemDeleteBinLineProps
6847
6847
  'dap-ds-icon-download-line': SystemDownloadLineProps
6848
6848
  'dap-ds-icon-error-warning-fill': SystemErrorWarningFillProps
6849
+ 'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
6849
6850
  'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
6850
6851
  'dap-ds-icon-eye-line': SystemEyeLineProps
6851
- 'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
6852
6852
  'dap-ds-icon-eye-off-line': SystemEyeOffLineProps
6853
6853
  'dap-ds-icon-forbid-fill': SystemForbidFillProps
6854
6854
  'dap-ds-icon-information-2-fill': SystemInformation2FillProps