dap-design-system 0.57.7 → 0.57.8

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,11 +217,6 @@ 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
-
225
220
  export interface DapDSAvatarEvents {
226
221
  /** Fired when the image loads successfully. */
227
222
  onDdsLoad?: (event: CustomEvent) => void
@@ -229,6 +224,11 @@ export interface DapDSAvatarEvents {
229
224
  onDdsError?: (event: CustomEvent) => void
230
225
  }
231
226
 
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,11 +666,6 @@ 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
-
674
669
  export interface DapDSAvatarSlots {
675
670
  /** The icon to display when variant is 'icon'. */
676
671
  'icon'?: () => any
@@ -678,6 +673,16 @@ export interface DapDSAvatarSlots {
678
673
  'fallback'?: () => any
679
674
  }
680
675
 
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
+
681
686
  export interface DapDSBadgeSlots {
682
687
  /** The content of the badge. */
683
688
  default?: () => any
@@ -701,11 +706,6 @@ export interface DapDSBreadcrumbSlots {
701
706
  'separator'?: () => any
702
707
  }
703
708
 
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,23 +1148,15 @@ 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"]
1151
+ export type DapDSAnchorHeadingProps = {
1152
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1153
+ variant?: DapDSAnchorHeading["variant"]
1154
+ /** The label of the heading. */
1155
+ label?: DapDSAnchorHeading["label"]
1156
+ /** */
1157
+ elementId?: DapDSAnchorHeading["elementId"]
1158
+ /** */
1159
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1168
1160
  }
1169
1161
 
1170
1162
  export type DapDSAvatarProps = {
@@ -1194,6 +1186,32 @@ export type DapDSAvatarProps = {
1194
1186
  sizeMap?: DapDSAvatar["sizeMap"]
1195
1187
  }
1196
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
+
1197
1215
  export type DapDSBadgeProps = {
1198
1216
  /** The type of the badge */
1199
1217
  type?: DapDSBadge["type"]
@@ -1229,24 +1247,6 @@ export type DapDSBreadcrumbProps = {
1229
1247
  "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1230
1248
  }
1231
1249
 
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,57 +1368,6 @@ 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
-
1422
1371
  export type DapDSCardActionsProps = {
1423
1372
  /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1424
1373
  spacing?: DapDSCardActions["spacing"]
@@ -1505,6 +1454,57 @@ export type DapDSCardProps = {
1505
1454
  sizeMap?: DapDSCard["sizeMap"]
1506
1455
  }
1507
1456
 
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 ArrowsArrowRightDownLineProps = {
3642
- /** (optional) The width and height in pixels */
3643
- size?: ArrowsArrowRightDownLine["size"]
3644
- /** (optional) Sets the icon color via the `fill` attribute */
3645
- selected?: ArrowsArrowRightDownLine["selected"]
3646
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3647
- accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
3648
- /** (optional) If `true` the icon can receive focus */
3649
- focusable?: ArrowsArrowRightDownLine["focusable"]
3650
- }
3651
-
3652
3641
  export type ArrowsArrowLeftUpLineProps = {
3653
3642
  /** (optional) The width and height in pixels */
3654
3643
  size?: ArrowsArrowLeftUpLine["size"]
@@ -3660,15 +3649,15 @@ export type ArrowsArrowLeftUpLineProps = {
3660
3649
  focusable?: ArrowsArrowLeftUpLine["focusable"]
3661
3650
  }
3662
3651
 
3663
- export type ArrowsArrowRightLineProps = {
3652
+ export type ArrowsArrowRightDownLineProps = {
3664
3653
  /** (optional) The width and height in pixels */
3665
- size?: ArrowsArrowRightLine["size"]
3654
+ size?: ArrowsArrowRightDownLine["size"]
3666
3655
  /** (optional) Sets the icon color via the `fill` attribute */
3667
- selected?: ArrowsArrowRightLine["selected"]
3656
+ selected?: ArrowsArrowRightDownLine["selected"]
3668
3657
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3669
- accessibilityTitle?: ArrowsArrowRightLine["accessibilityTitle"]
3658
+ accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
3670
3659
  /** (optional) If `true` the icon can receive focus */
3671
- focusable?: ArrowsArrowRightLine["focusable"]
3660
+ focusable?: ArrowsArrowRightDownLine["focusable"]
3672
3661
  }
3673
3662
 
3674
3663
  export type ArrowsArrowRightLLineProps = {
@@ -3682,6 +3671,17 @@ export type ArrowsArrowRightLLineProps = {
3682
3671
  focusable?: ArrowsArrowRightLLine["focusable"]
3683
3672
  }
3684
3673
 
3674
+ export type ArrowsArrowRightLineProps = {
3675
+ /** (optional) The width and height in pixels */
3676
+ size?: ArrowsArrowRightLine["size"]
3677
+ /** (optional) Sets the icon color via the `fill` attribute */
3678
+ selected?: ArrowsArrowRightLine["selected"]
3679
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3680
+ accessibilityTitle?: ArrowsArrowRightLine["accessibilityTitle"]
3681
+ /** (optional) If `true` the icon can receive focus */
3682
+ focusable?: ArrowsArrowRightLine["focusable"]
3683
+ }
3684
+
3685
3685
  export type ArrowsArrowRightSFillProps = {
3686
3686
  /** (optional) The width and height in pixels */
3687
3687
  size?: ArrowsArrowRightSFill["size"]
@@ -3814,17 +3814,6 @@ 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
-
3828
3817
  export type DocumentClipboardLineProps = {
3829
3818
  /** (optional) The width and height in pixels */
3830
3819
  size?: DocumentClipboardLine["size"]
@@ -3913,6 +3902,17 @@ export type DocumentFolderOpenLineProps = {
3913
3902
  focusable?: DocumentFolderOpenLine["focusable"]
3914
3903
  }
3915
3904
 
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"]
@@ -3946,50 +3946,6 @@ export type OthersCookieLineProps = {
3946
3946
  focusable?: OthersCookieLine["focusable"]
3947
3947
  }
3948
3948
 
3949
- export type UserAccountCircleFillProps = {
3950
- /** (optional) The width and height in pixels */
3951
- size?: UserAccountCircleFill["size"]
3952
- /** (optional) Sets the icon color via the `fill` attribute */
3953
- selected?: UserAccountCircleFill["selected"]
3954
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3955
- accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
3956
- /** (optional) If `true` the icon can receive focus */
3957
- focusable?: UserAccountCircleFill["focusable"]
3958
- }
3959
-
3960
- export type UserAccountCircleLineProps = {
3961
- /** (optional) The width and height in pixels */
3962
- size?: UserAccountCircleLine["size"]
3963
- /** (optional) Sets the icon color via the `fill` attribute */
3964
- selected?: UserAccountCircleLine["selected"]
3965
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3966
- accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
3967
- /** (optional) If `true` the icon can receive focus */
3968
- focusable?: UserAccountCircleLine["focusable"]
3969
- }
3970
-
3971
- export type UserUserFillProps = {
3972
- /** (optional) The width and height in pixels */
3973
- size?: UserUserFill["size"]
3974
- /** (optional) Sets the icon color via the `fill` attribute */
3975
- selected?: UserUserFill["selected"]
3976
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3977
- accessibilityTitle?: UserUserFill["accessibilityTitle"]
3978
- /** (optional) If `true` the icon can receive focus */
3979
- focusable?: UserUserFill["focusable"]
3980
- }
3981
-
3982
- export type UserUserLineProps = {
3983
- /** (optional) The width and height in pixels */
3984
- size?: UserUserLine["size"]
3985
- /** (optional) Sets the icon color via the `fill` attribute */
3986
- selected?: UserUserLine["selected"]
3987
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3988
- accessibilityTitle?: UserUserLine["accessibilityTitle"]
3989
- /** (optional) If `true` the icon can receive focus */
3990
- focusable?: UserUserLine["focusable"]
3991
- }
3992
-
3993
3949
  export type SystemAddLineProps = {
3994
3950
  /** (optional) The width and height in pixels */
3995
3951
  size?: SystemAddLine["size"]
@@ -4518,6 +4474,50 @@ export type SystemZoomOutLineProps = {
4518
4474
  focusable?: SystemZoomOutLine["focusable"]
4519
4475
  }
4520
4476
 
4477
+ export type UserAccountCircleFillProps = {
4478
+ /** (optional) The width and height in pixels */
4479
+ size?: UserAccountCircleFill["size"]
4480
+ /** (optional) Sets the icon color via the `fill` attribute */
4481
+ selected?: UserAccountCircleFill["selected"]
4482
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4483
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4484
+ /** (optional) If `true` the icon can receive focus */
4485
+ focusable?: UserAccountCircleFill["focusable"]
4486
+ }
4487
+
4488
+ export type UserAccountCircleLineProps = {
4489
+ /** (optional) The width and height in pixels */
4490
+ size?: UserAccountCircleLine["size"]
4491
+ /** (optional) Sets the icon color via the `fill` attribute */
4492
+ selected?: UserAccountCircleLine["selected"]
4493
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4494
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4495
+ /** (optional) If `true` the icon can receive focus */
4496
+ focusable?: UserAccountCircleLine["focusable"]
4497
+ }
4498
+
4499
+ export type UserUserFillProps = {
4500
+ /** (optional) The width and height in pixels */
4501
+ size?: UserUserFill["size"]
4502
+ /** (optional) Sets the icon color via the `fill` attribute */
4503
+ selected?: UserUserFill["selected"]
4504
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4505
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
4506
+ /** (optional) If `true` the icon can receive focus */
4507
+ focusable?: UserUserFill["focusable"]
4508
+ }
4509
+
4510
+ export type UserUserLineProps = {
4511
+ /** (optional) The width and height in pixels */
4512
+ size?: UserUserLine["size"]
4513
+ /** (optional) Sets the icon color via the `fill` attribute */
4514
+ selected?: UserUserLine["selected"]
4515
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4516
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
4517
+ /** (optional) If `true` the icon can receive focus */
4518
+ focusable?: UserUserLine["focusable"]
4519
+ }
4520
+
4521
4521
  // Augment Vue's GlobalComponents interface
4522
4522
  declare module 'vue' {
4523
4523
  interface GlobalComponents {
@@ -4548,20 +4548,15 @@ declare module 'vue' {
4548
4548
  */
4549
4549
  'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4550
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.
4551
+ * Anchor heading is a heading with an anchor link.
4558
4552
  *
4559
4553
  * ### 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.
4554
+ * - **base** - The main anchor heading container.
4555
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4556
+ * - **link-base** - The base of the link part.
4557
+ * - **text** - The text of the anchor heading.
4563
4558
  */
4564
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4559
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4565
4560
  /**
4566
4561
  * Avatar component can be used to display user profile images, initials, or icons.
4567
4562
  *
@@ -4582,6 +4577,31 @@ declare module 'vue' {
4582
4577
  * - **loading** - The loading indicator.
4583
4578
  */
4584
4579
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
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>
4585
4605
  /**
4586
4606
  * A badge is a small status descriptor for UI elements.
4587
4607
  *
@@ -4632,26 +4652,6 @@ declare module 'vue' {
4632
4652
  * - **separator** - The separator of the breadcrumb.
4633
4653
  */
4634
4654
  '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,27 +4739,6 @@ 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>
4763
4742
  /**
4764
4743
  * A card actions is a container for actions in a card.
4765
4744
  *
@@ -4820,6 +4799,27 @@ declare module 'vue' {
4820
4799
  * - **base** - The main card container.
4821
4800
  */
4822
4801
  '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-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
6136
+ 'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
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-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
6143
+ 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
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-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
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-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6157
+ 'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
6158
6158
  /**
6159
6159
  * An icon
6160
6160
  *
@@ -6239,13 +6239,6 @@ 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, {}>
6249
6242
  /**
6250
6243
  * An icon
6251
6244
  *
@@ -6308,49 +6301,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6308
6301
  * ### CSS Parts:
6309
6302
  * - **base** - The main icon container.
6310
6303
  */
6311
- 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6312
- /**
6313
- * An icon
6314
- *
6315
- * ### CSS Parts:
6316
- * - **base** - The main icon container.
6317
- */
6318
- 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6319
- /**
6320
- * An icon
6321
- *
6322
- * ### CSS Parts:
6323
- * - **base** - The main icon container.
6324
- */
6325
- 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6326
- /**
6327
- * An icon
6328
- *
6329
- * ### CSS Parts:
6330
- * - **base** - The main icon container.
6331
- */
6332
- 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6304
+ 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
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-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6311
+ 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
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-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6318
+ 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6347
6319
  /**
6348
6320
  * An icon
6349
6321
  *
6350
6322
  * ### CSS Parts:
6351
6323
  * - **base** - The main icon container.
6352
6324
  */
6353
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6325
+ 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6354
6326
  /**
6355
6327
  * An icon
6356
6328
  *
@@ -6687,6 +6659,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6687
6659
  * - **base** - The main icon container.
6688
6660
  */
6689
6661
  'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
6662
+ /**
6663
+ * An icon
6664
+ *
6665
+ * ### CSS Parts:
6666
+ * - **base** - The main icon container.
6667
+ */
6668
+ 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6669
+ /**
6670
+ * An icon
6671
+ *
6672
+ * ### CSS Parts:
6673
+ * - **base** - The main icon container.
6674
+ */
6675
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6676
+ /**
6677
+ * An icon
6678
+ *
6679
+ * ### CSS Parts:
6680
+ * - **base** - The main icon container.
6681
+ */
6682
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6683
+ /**
6684
+ * An icon
6685
+ *
6686
+ * ### CSS Parts:
6687
+ * - **base** - The main icon container.
6688
+ */
6689
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6690
6690
  }
6691
6691
  }
6692
6692
 
@@ -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-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6698
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6699
6699
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6700
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6701
+ 'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6700
6702
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6701
6703
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6702
6704
  '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
6711
6710
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6712
6711
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6713
6712
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6714
6713
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6715
6714
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6716
6715
  '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-right-down-line': ArrowsArrowRightDownLineProps
6800
6799
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6801
- 'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6800
+ 'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6802
6801
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6802
+ 'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
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,7 +6812,6 @@ 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
6816
6815
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6817
6816
  'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6818
6817
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
@@ -6821,13 +6820,10 @@ declare global {
6821
6820
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6822
6821
  'dap-ds-icon-folder-line': DocumentFolderLineProps
6823
6822
  '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
6827
- 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6828
- 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6829
- 'dap-ds-icon-user-fill': UserUserFillProps
6830
- 'dap-ds-icon-user-line': UserUserLineProps
6831
6827
  'dap-ds-icon-add-line': SystemAddLineProps
6832
6828
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6833
6829
  'dap-ds-icon-alert-line': SystemAlertLineProps
@@ -6876,6 +6872,10 @@ declare global {
6876
6872
  'dap-ds-icon-upload-line': SystemUploadLineProps
6877
6873
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
6878
6874
  'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
6875
+ 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6876
+ 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6877
+ 'dap-ds-icon-user-fill': UserUserFillProps
6878
+ 'dap-ds-icon-user-line': UserUserLineProps
6879
6879
  }
6880
6880
  }
6881
6881
  }