dap-design-system 0.57.4 → 0.57.5

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,11 +210,11 @@ type DefineGenericCustomElement<
210
210
  $props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
211
211
  }
212
212
 
213
- export interface DapDSAccordionEvents {
214
- /** Event fired when the accordion is opened. */
215
- onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
216
- /** Event fired when the accordion is closed. */
217
- onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
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
218
  }
219
219
 
220
220
  export interface DapDSAvatarGroupEvents {
@@ -227,11 +227,11 @@ export interface DapDSBannerEvents {
227
227
  onDdsClose?: (event: CustomEvent) => void
228
228
  }
229
229
 
230
- export interface DapDSAvatarEvents {
231
- /** Fired when the image loads successfully. */
232
- onDdsLoad?: (event: CustomEvent) => void
233
- /** Fired when the image fails to load. */
234
- onDdsError?: (event: CustomEvent) => void
230
+ export interface DapDSAccordionEvents {
231
+ /** Event fired when the accordion is opened. */
232
+ onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
233
+ /** Event fired when the accordion is closed. */
234
+ onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
235
235
  }
236
236
 
237
237
  export interface DapDSButtonEvents {
@@ -655,15 +655,16 @@ export interface DapDSRadioGroupEvents {
655
655
  onDdsFocus?: (event: CustomEvent) => void
656
656
  }
657
657
 
658
- export interface DapDSAccordionSlots {
659
- /** The content of the accordion. */
658
+ export interface DapDSAvatarSlots {
659
+ /** The icon to display when variant is 'icon'. */
660
+ 'icon'?: () => any
661
+ /** Custom fallback content when image fails to load. */
662
+ 'fallback'?: () => any
663
+ }
664
+
665
+ export interface DapDSAccordionGroupSlots {
666
+ /** The content of the accordion group. */
660
667
  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
  }
668
669
 
669
670
  export interface DapDSAvatarGroupSlots {
@@ -678,11 +679,6 @@ export interface DapDSBadgeSlots {
678
679
  'icon'?: () => any
679
680
  }
680
681
 
681
- export interface DapDSAccordionGroupSlots {
682
- /** The content of the accordion group. */
683
- default?: () => any
684
- }
685
-
686
682
  export interface DapDSBannerSlots {
687
683
  /** The content of the banner. */
688
684
  default?: () => any
@@ -692,11 +688,15 @@ export interface DapDSBannerSlots {
692
688
  'icon'?: () => any
693
689
  }
694
690
 
695
- export interface DapDSAvatarSlots {
696
- /** The icon to display when variant is 'icon'. */
697
- 'icon'?: () => any
698
- /** Custom fallback content when image fails to load. */
699
- 'fallback'?: () => any
691
+ export interface DapDSAccordionSlots {
692
+ /** The content of the accordion. */
693
+ default?: () => any
694
+ /** The heading of the accordion. */
695
+ 'heading'?: () => any
696
+ /** The icon when the accordion is opened. */
697
+ 'icon-opened'?: () => any
698
+ /** The icon when the accordion is closed. */
699
+ 'icon-closed'?: () => any
700
700
  }
701
701
 
702
702
  export interface DapDSBreadcrumbSlots {
@@ -1123,31 +1123,6 @@ 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
-
1151
1126
  export type DapDSAnchorHeadingProps = {
1152
1127
  /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1153
1128
  variant?: DapDSAnchorHeading["variant"]
@@ -1159,6 +1134,40 @@ export type DapDSAnchorHeadingProps = {
1159
1134
  anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1160
1135
  }
1161
1136
 
1137
+ export type DapDSAvatarProps = {
1138
+ /** The shape of the avatar */
1139
+ shape?: DapDSAvatar["shape"]
1140
+ /** The variant type of the avatar */
1141
+ variant?: DapDSAvatar["variant"]
1142
+ /** The source of the avatar image */
1143
+ src?: DapDSAvatar["src"]
1144
+ /** The alt text of the avatar */
1145
+ alt?: DapDSAvatar["alt"]
1146
+ /** The initials to display when variant is 'initials' */
1147
+ initials?: DapDSAvatar["initials"]
1148
+ /** Accessible label for the avatar */
1149
+ label?: DapDSAvatar["label"]
1150
+ /** Loading state indicator */
1151
+ loading?: DapDSAvatar["loading"]
1152
+ /** Whether the avatar is interactive (clickable) */
1153
+ interactive?: DapDSAvatar["interactive"]
1154
+ /** The width of the avatar. This will override the size */
1155
+ width?: DapDSAvatar["width"]
1156
+ /** The height of the avatar. This will override the size */
1157
+ height?: DapDSAvatar["height"]
1158
+ /** The size of the avatar. Default is `md`. */
1159
+ size?: DapDSAvatar["size"]
1160
+ /** Responsive size map (e.g. "md:lg"). */
1161
+ sizeMap?: DapDSAvatar["sizeMap"]
1162
+ }
1163
+
1164
+ export type DapDSAccordionGroupProps = {
1165
+ /** Whether to close other accordions when one is opened. */
1166
+ autoClose?: DapDSAccordionGroup["autoClose"]
1167
+ /** The variant of the accordion */
1168
+ variant?: DapDSAccordionGroup["variant"]
1169
+ }
1170
+
1162
1171
  export type DapDSAvatarGroupProps = {
1163
1172
  /** Layout type for the avatar group */
1164
1173
  layout?: DapDSAvatarGroup["layout"]
@@ -1191,13 +1200,6 @@ export type DapDSBadgeProps = {
1191
1200
  sizeMap?: DapDSBadge["sizeMap"]
1192
1201
  }
1193
1202
 
1194
- export type DapDSAccordionGroupProps = {
1195
- /** Whether to close other accordions when one is opened. */
1196
- autoClose?: DapDSAccordionGroup["autoClose"]
1197
- /** The variant of the accordion */
1198
- variant?: DapDSAccordionGroup["variant"]
1199
- }
1200
-
1201
1203
  export type DapDSBannerProps = {
1202
1204
  /** The variant of the banner */
1203
1205
  variant?: DapDSBanner["variant"]
@@ -1211,31 +1213,29 @@ export type DapDSBannerProps = {
1211
1213
  icon?: DapDSBanner["icon"]
1212
1214
  }
1213
1215
 
1214
- export type DapDSAvatarProps = {
1215
- /** The shape of the avatar */
1216
- shape?: DapDSAvatar["shape"]
1217
- /** The variant type of the avatar */
1218
- variant?: DapDSAvatar["variant"]
1219
- /** The source of the avatar image */
1220
- src?: DapDSAvatar["src"]
1221
- /** The alt text of the avatar */
1222
- alt?: DapDSAvatar["alt"]
1223
- /** The initials to display when variant is 'initials' */
1224
- initials?: DapDSAvatar["initials"]
1225
- /** Accessible label for the avatar */
1226
- label?: DapDSAvatar["label"]
1227
- /** Loading state indicator */
1228
- loading?: DapDSAvatar["loading"]
1229
- /** Whether the avatar is interactive (clickable) */
1230
- interactive?: DapDSAvatar["interactive"]
1231
- /** The width of the avatar. This will override the size */
1232
- width?: DapDSAvatar["width"]
1233
- /** The height of the avatar. This will override the size */
1234
- height?: DapDSAvatar["height"]
1235
- /** The size of the avatar. Default is `md`. */
1236
- size?: DapDSAvatar["size"]
1237
- /** Responsive size map (e.g. "md:lg"). */
1238
- sizeMap?: DapDSAvatar["sizeMap"]
1216
+ export type DapDSAccordionProps = {
1217
+ /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1218
+ size?: DapDSAccordion["size"]
1219
+ /** Responsive size map (e.g. "md:lg") */
1220
+ sizeMap?: DapDSAccordion["sizeMap"]
1221
+ /** When "true", size is taken from the parent card if present. */
1222
+ parentSized?: DapDSAccordion["parentSized"]
1223
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1224
+ heading?: DapDSAccordion["heading"]
1225
+ /** The heading level of the accordion. Default is `4`. */
1226
+ headingLevel?: DapDSAccordion["headingLevel"]
1227
+ /** Whether the accordion is opened. Default is `false`. */
1228
+ opened?: DapDSAccordion["opened"]
1229
+ /** The location of the icon. Default is `right`. */
1230
+ iconLocation?: DapDSAccordion["iconLocation"]
1231
+ /** The variant of the accordion. */
1232
+ variant?: DapDSAccordion["variant"]
1233
+ /** Whether the accordion is the last item. */
1234
+ lastItem?: DapDSAccordion["lastItem"]
1235
+ /** Whether the accordion is disabled. */
1236
+ disabled?: DapDSAccordion["disabled"]
1237
+ /** Whether the accordion is in loading state. */
1238
+ loading?: DapDSAccordion["loading"]
1239
1239
  }
1240
1240
 
1241
1241
  export type DapDSBreadcrumbProps = {
@@ -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"]
@@ -3003,6 +3003,17 @@ export type DapDSSideNavProps = {
3003
3003
  size?: DapDSSideNav["size"]
3004
3004
  }
3005
3005
 
3006
+ export type DapDSSkipLinkProps = {
3007
+ /** The placement of the skip link. */
3008
+ placement?: DapDSSkipLink["placement"]
3009
+ /** The href of the skip link */
3010
+ href?: DapDSSkipLink["href"]
3011
+ /** The size of the skip link */
3012
+ size?: DapDSSkipLink["size"]
3013
+ /** Whether the skip link should have an underline */
3014
+ noUnderline?: DapDSSkipLink["noUnderline"]
3015
+ }
3016
+
3006
3017
  export type DapDSSkeletonProps = {
3007
3018
  /** The variant of the skeleton. */
3008
3019
  variant?: DapDSSkeleton["variant"]
@@ -3019,17 +3030,6 @@ Should be a valid CSS keyframes string without the */
3019
3030
  "custom-keyframes"?: DapDSSkeleton["customKeyframes"]
3020
3031
  }
3021
3032
 
3022
- export type DapDSSkipLinkProps = {
3023
- /** The placement of the skip link. */
3024
- placement?: DapDSSkipLink["placement"]
3025
- /** The href of the skip link */
3026
- href?: DapDSSkipLink["href"]
3027
- /** The size of the skip link */
3028
- size?: DapDSSkipLink["size"]
3029
- /** Whether the skip link should have an underline */
3030
- noUnderline?: DapDSSkipLink["noUnderline"]
3031
- }
3032
-
3033
3033
  export type DapDSSnackbarMessageProps = {
3034
3034
  /** The actions of the snackbar item. */
3035
3035
  actions?: DapDSSnackbarMessage["actions"]
@@ -3917,26 +3917,26 @@ export type HealthHeartFillProps = {
3917
3917
  focusable?: HealthHeartFill["focusable"]
3918
3918
  }
3919
3919
 
3920
- export type HealthHeartLineProps = {
3920
+ export type OthersCookieLineProps = {
3921
3921
  /** (optional) The width and height in pixels */
3922
- size?: HealthHeartLine["size"]
3922
+ size?: OthersCookieLine["size"]
3923
3923
  /** (optional) Sets the icon color via the `fill` attribute */
3924
- selected?: HealthHeartLine["selected"]
3924
+ selected?: OthersCookieLine["selected"]
3925
3925
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3926
- accessibilityTitle?: HealthHeartLine["accessibilityTitle"]
3926
+ accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
3927
3927
  /** (optional) If `true` the icon can receive focus */
3928
- focusable?: HealthHeartLine["focusable"]
3928
+ focusable?: OthersCookieLine["focusable"]
3929
3929
  }
3930
3930
 
3931
- export type OthersCookieLineProps = {
3931
+ export type HealthHeartLineProps = {
3932
3932
  /** (optional) The width and height in pixels */
3933
- size?: OthersCookieLine["size"]
3933
+ size?: HealthHeartLine["size"]
3934
3934
  /** (optional) Sets the icon color via the `fill` attribute */
3935
- selected?: OthersCookieLine["selected"]
3935
+ selected?: HealthHeartLine["selected"]
3936
3936
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3937
- accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
3937
+ accessibilityTitle?: HealthHeartLine["accessibilityTitle"]
3938
3938
  /** (optional) If `true` the icon can receive focus */
3939
- focusable?: OthersCookieLine["focusable"]
3939
+ focusable?: HealthHeartLine["focusable"]
3940
3940
  }
3941
3941
 
3942
3942
  export type SystemAddLineProps = {
@@ -4335,26 +4335,26 @@ export type SystemShareLineProps = {
4335
4335
  focusable?: SystemShareLine["focusable"]
4336
4336
  }
4337
4337
 
4338
- export type SystemShieldCheckFillProps = {
4338
+ export type SystemShieldCheckLineProps = {
4339
4339
  /** (optional) The width and height in pixels */
4340
- size?: SystemShieldCheckFill["size"]
4340
+ size?: SystemShieldCheckLine["size"]
4341
4341
  /** (optional) Sets the icon color via the `fill` attribute */
4342
- selected?: SystemShieldCheckFill["selected"]
4342
+ selected?: SystemShieldCheckLine["selected"]
4343
4343
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4344
- accessibilityTitle?: SystemShieldCheckFill["accessibilityTitle"]
4344
+ accessibilityTitle?: SystemShieldCheckLine["accessibilityTitle"]
4345
4345
  /** (optional) If `true` the icon can receive focus */
4346
- focusable?: SystemShieldCheckFill["focusable"]
4346
+ focusable?: SystemShieldCheckLine["focusable"]
4347
4347
  }
4348
4348
 
4349
- export type SystemShieldCheckLineProps = {
4349
+ export type SystemShieldCheckFillProps = {
4350
4350
  /** (optional) The width and height in pixels */
4351
- size?: SystemShieldCheckLine["size"]
4351
+ size?: SystemShieldCheckFill["size"]
4352
4352
  /** (optional) Sets the icon color via the `fill` attribute */
4353
- selected?: SystemShieldCheckLine["selected"]
4353
+ selected?: SystemShieldCheckFill["selected"]
4354
4354
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4355
- accessibilityTitle?: SystemShieldCheckLine["accessibilityTitle"]
4355
+ accessibilityTitle?: SystemShieldCheckFill["accessibilityTitle"]
4356
4356
  /** (optional) If `true` the icon can receive focus */
4357
- focusable?: SystemShieldCheckLine["focusable"]
4357
+ focusable?: SystemShieldCheckFill["focusable"]
4358
4358
  }
4359
4359
 
4360
4360
  export type SystemStarFillProps = {
@@ -4515,41 +4515,45 @@ export type UserUserLineProps = {
4515
4515
  declare module 'vue' {
4516
4516
  interface GlobalComponents {
4517
4517
  /**
4518
- * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4518
+ * Anchor heading is a heading with an anchor link.
4519
+ *
4520
+ * ### CSS Parts:
4521
+ * - **base** - The main anchor heading container.
4522
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4523
+ * - **link-base** - The base of the link part.
4524
+ * - **text** - The text of the anchor heading.
4525
+ */
4526
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4527
+ /**
4528
+ * Avatar component can be used to display user profile images, initials, or icons.
4519
4529
  *
4520
4530
  * ### Events:
4521
- * - **dds-opened** - Event fired when the accordion is opened.
4522
- * - **dds-closed** - Event fired when the accordion is closed.
4531
+ * - **dds-load** - Fired when the image loads successfully.
4532
+ * - **dds-error** - Fired when the image fails to load.
4523
4533
  *
4524
4534
  * ### 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.
4535
+ * - **icon** - The icon to display when variant is 'icon'.
4536
+ * - **fallback** - Custom fallback content when image fails to load.
4529
4537
  *
4530
4538
  * ### 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.
4539
+ * - **base** - The main avatar container.
4540
+ * - **img** - The avatar image.
4541
+ * - **initials** - The initials container.
4542
+ * - **icon** - The icon container.
4543
+ * - **fallback** - The fallback content container.
4544
+ * - **loading** - The loading indicator.
4541
4545
  */
4542
- 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4546
+ 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4543
4547
  /**
4544
- * Anchor heading is a heading with an anchor link.
4548
+ * An accordion group is a collection of accordion components.
4549
+ *
4550
+ * ### Slots:
4551
+ * - **default** - The content of the accordion group.
4545
4552
  *
4546
4553
  * ### CSS Parts:
4547
- * - **base** - The main anchor heading container.
4548
- * - **link** - The link of the anchor heading. dap-ds-link element.
4549
- * - **link-base** - The base of the link part.
4550
- * - **text** - The text of the anchor heading.
4554
+ * - **base** - The main accordion group container.
4551
4555
  */
4552
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4556
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4553
4557
  /**
4554
4558
  * Avatar group component displays multiple avatars in an organized layout with overflow management.
4555
4559
  *
@@ -4579,16 +4583,6 @@ declare module 'vue' {
4579
4583
  * - **icon-base** - The base of the icon.
4580
4584
  */
4581
4585
  'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4582
- /**
4583
- * An accordion group is a collection of accordion components.
4584
- *
4585
- * ### Slots:
4586
- * - **default** - The content of the accordion group.
4587
- *
4588
- * ### CSS Parts:
4589
- * - **base** - The main accordion group container.
4590
- */
4591
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4592
4586
  /**
4593
4587
  * A banner is a message displayed at the top of the page to provide important information to the user.
4594
4588
  *
@@ -4614,25 +4608,31 @@ declare module 'vue' {
4614
4608
  */
4615
4609
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4616
4610
  /**
4617
- * Avatar component can be used to display user profile images, initials, or icons.
4611
+ * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4618
4612
  *
4619
4613
  * ### Events:
4620
- * - **dds-load** - Fired when the image loads successfully.
4621
- * - **dds-error** - Fired when the image fails to load.
4614
+ * - **dds-opened** - Event fired when the accordion is opened.
4615
+ * - **dds-closed** - Event fired when the accordion is closed.
4622
4616
  *
4623
4617
  * ### Slots:
4624
- * - **icon** - The icon to display when variant is 'icon'.
4625
- * - **fallback** - Custom fallback content when image fails to load.
4618
+ * - **default** - The content of the accordion.
4619
+ * - **heading** - The heading of the accordion.
4620
+ * - **icon-opened** - The icon when the accordion is opened.
4621
+ * - **icon-closed** - The icon when the accordion is closed.
4626
4622
  *
4627
4623
  * ### CSS Parts:
4628
- * - **base** - The main avatar container.
4629
- * - **img** - The avatar image.
4630
- * - **initials** - The initials container.
4631
- * - **icon** - The icon container.
4632
- * - **fallback** - The fallback content container.
4633
- * - **loading** - The loading indicator.
4624
+ * - **base** - The main accordion container.
4625
+ * - **heading** - The heading of the accordion.
4626
+ * - **button** - The button of the accordion.
4627
+ * - **content** - The content of the accordion.
4628
+ * - **content-container** - The container of the accordion content.
4629
+ * - **icon-wrapper** - The icon wrapper of the accordion.
4630
+ * - **open-icon** - The icon when the accordion is opened.
4631
+ * - **open-icon-base** - The base of the icon when the accordion is opened.
4632
+ * - **close-icon** - The icon when the accordion is closed.
4633
+ * - **close-icon-base** - The base of the icon when the accordion is closed.
4634
4634
  */
4635
- 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4635
+ 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4636
4636
  /**
4637
4637
  * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4638
4638
  *
@@ -4732,6 +4732,27 @@ declare module 'vue' {
4732
4732
  * - **close** - The close button of the callout.
4733
4733
  */
4734
4734
  '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>
4735
4756
  /**
4736
4757
  * A card actions is a container for actions in a card.
4737
4758
  *
@@ -4792,27 +4813,6 @@ declare module 'vue' {
4792
4813
  * - **base** - The main card container.
4793
4814
  */
4794
4815
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4795
- /**
4796
- * A checkbox is a form element that allows the user to select one or more options from a set.
4797
- *
4798
- * ### Events:
4799
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4800
- * - **dds-blur** - Emitted when the checkbox loses focus.
4801
- * - **dds-focus** - Emitted when the checkbox gains focus.
4802
- * - **dds-input** - Emitted when the checkbox receives input.
4803
- *
4804
- * ### CSS Parts:
4805
- * - **base** - The main checkbox container.
4806
- * - **label** - The label of the checkbox.
4807
- * - **input** - The input of the checkbox.
4808
- * - **control** - The control of the checkbox.
4809
- * - **icon** - The icon of the checkbox.
4810
- * - **icon-base** - The base icon container.
4811
- * - **label-container** - The label container of the checkbox.
4812
- * - **description** - The description of the checkbox.
4813
- * - **readonly** - The readonly state of the checkbox.
4814
- */
4815
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4816
4816
  /**
4817
4817
  * A chip is a small status descriptor for UI elements.
4818
4818
  *
@@ -5710,13 +5710,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5710
5710
  * - **menu** - The menu of the side navigation.
5711
5711
  */
5712
5712
  'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
5713
- /**
5714
- * A skeleton loader component for displaying placeholder content while loading.
5715
- *
5716
- * ### CSS Parts:
5717
- * - **base** - The main skeleton container.
5718
- */
5719
- 'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
5720
5713
  /**
5721
5714
  * A skip link is a link that allows keyboard users to skip to the main content of a page.
5722
5715
  *
@@ -5729,6 +5722,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5729
5722
  * - **high-contrast** - The high contrast outline container.
5730
5723
  */
5731
5724
  'dap-ds-skip-link': DefineCustomElement<DapDSSkipLink, DapDSSkipLinkProps, {}>
5725
+ /**
5726
+ * A skeleton loader component for displaying placeholder content while loading.
5727
+ *
5728
+ * ### CSS Parts:
5729
+ * - **base** - The main skeleton container.
5730
+ */
5731
+ 'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
5732
5732
  /**
5733
5733
  * The Snackbar component shows a sliding message to the user.
5734
5734
  *
@@ -6308,14 +6308,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6308
6308
  * ### CSS Parts:
6309
6309
  * - **base** - The main icon container.
6310
6310
  */
6311
- 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6311
+ 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6312
6312
  /**
6313
6313
  * An icon
6314
6314
  *
6315
6315
  * ### CSS Parts:
6316
6316
  * - **base** - The main icon container.
6317
6317
  */
6318
- 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6318
+ 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6319
6319
  /**
6320
6320
  * An icon
6321
6321
  *
@@ -6574,14 +6574,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6574
6574
  * ### CSS Parts:
6575
6575
  * - **base** - The main icon container.
6576
6576
  */
6577
- 'dap-ds-icon-shield-check-fill': DefineCustomElement<SystemShieldCheckFill, SystemShieldCheckFillProps, {}>
6577
+ 'dap-ds-icon-shield-check-line': DefineCustomElement<SystemShieldCheckLine, SystemShieldCheckLineProps, {}>
6578
6578
  /**
6579
6579
  * An icon
6580
6580
  *
6581
6581
  * ### CSS Parts:
6582
6582
  * - **base** - The main icon container.
6583
6583
  */
6584
- 'dap-ds-icon-shield-check-line': DefineCustomElement<SystemShieldCheckLine, SystemShieldCheckLineProps, {}>
6584
+ 'dap-ds-icon-shield-check-fill': DefineCustomElement<SystemShieldCheckFill, SystemShieldCheckFillProps, {}>
6585
6585
  /**
6586
6586
  * An icon
6587
6587
  *
@@ -6687,26 +6687,26 @@ 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
6691
6690
  'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6691
+ 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6692
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6692
6693
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6693
6694
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6694
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6695
6695
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6696
- 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6696
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6697
6697
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6698
6698
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6699
6699
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6700
6700
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6701
6701
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6702
6702
  'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6703
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6703
6704
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6704
6705
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6705
6706
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6706
6707
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6707
6708
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6708
6709
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6709
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6710
6710
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6711
6711
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6712
6712
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
@@ -6755,8 +6755,8 @@ declare global {
6755
6755
  'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
6756
6756
  'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
6757
6757
  'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
6758
- 'dap-ds-skeleton': DapDSSkeletonProps
6759
6758
  'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
6759
+ 'dap-ds-skeleton': DapDSSkeletonProps
6760
6760
  'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
6761
6761
  'dap-ds-snackbar': DapDSSnackbarProps
6762
6762
  'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
@@ -6815,8 +6815,8 @@ declare global {
6815
6815
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6816
6816
  'dap-ds-icon-separator': EditorSeparatorProps
6817
6817
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6818
- 'dap-ds-icon-heart-line': HealthHeartLineProps
6819
6818
  'dap-ds-icon-cookie-line': OthersCookieLineProps
6819
+ 'dap-ds-icon-heart-line': HealthHeartLineProps
6820
6820
  'dap-ds-icon-add-line': SystemAddLineProps
6821
6821
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6822
6822
  'dap-ds-icon-alert-line': SystemAlertLineProps
@@ -6853,8 +6853,8 @@ declare global {
6853
6853
  'dap-ds-icon-more-line': SystemMoreLineProps
6854
6854
  'dap-ds-icon-search-line': SystemSearchLineProps
6855
6855
  'dap-ds-icon-share-line': SystemShareLineProps
6856
- 'dap-ds-icon-shield-check-fill': SystemShieldCheckFillProps
6857
6856
  'dap-ds-icon-shield-check-line': SystemShieldCheckLineProps
6857
+ 'dap-ds-icon-shield-check-fill': SystemShieldCheckFillProps
6858
6858
  'dap-ds-icon-star-fill': SystemStarFillProps
6859
6859
  'dap-ds-icon-subtract-line': SystemSubtractLineProps
6860
6860
  'dap-ds-icon-subtract-line2': SystemSubtractLine2Props