dap-design-system 0.57.3 → 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,18 +210,6 @@ type DefineGenericCustomElement<
210
210
  $props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
211
211
  }
212
212
 
213
- export interface 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
218
- }
219
-
220
- export interface DapDSAvatarGroupEvents {
221
- /** Fired when the overflow indicator is clicked. */
222
- onDdsOverflowClick?: (event: CustomEvent) => void
223
- }
224
-
225
213
  export interface DapDSAvatarEvents {
226
214
  /** Fired when the image loads successfully. */
227
215
  onDdsLoad?: (event: CustomEvent) => void
@@ -229,11 +217,23 @@ export interface DapDSAvatarEvents {
229
217
  onDdsError?: (event: CustomEvent) => void
230
218
  }
231
219
 
220
+ export interface DapDSAvatarGroupEvents {
221
+ /** Fired when the overflow indicator is clicked. */
222
+ onDdsOverflowClick?: (event: CustomEvent) => void
223
+ }
224
+
232
225
  export interface DapDSBannerEvents {
233
226
  /** Event fired when the banner is closed. */
234
227
  onDdsClose?: (event: CustomEvent) => void
235
228
  }
236
229
 
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
+ }
236
+
237
237
  export interface DapDSButtonEvents {
238
238
  /** Emitted when the loading timeout is reached */
239
239
  onDdsLoadingTimeout?: (event: CustomEvent) => void
@@ -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 {
@@ -671,13 +672,6 @@ export interface DapDSAvatarGroupSlots {
671
672
  default?: () => any
672
673
  }
673
674
 
674
- export interface DapDSAvatarSlots {
675
- /** The icon to display when variant is 'icon'. */
676
- 'icon'?: () => any
677
- /** Custom fallback content when image fails to load. */
678
- 'fallback'?: () => any
679
- }
680
-
681
675
  export interface DapDSBadgeSlots {
682
676
  /** The content of the badge. */
683
677
  default?: () => any
@@ -694,9 +688,15 @@ export interface DapDSBannerSlots {
694
688
  'icon'?: () => any
695
689
  }
696
690
 
697
- export interface DapDSAccordionGroupSlots {
698
- /** The content of the accordion group. */
691
+ export interface DapDSAccordionSlots {
692
+ /** The content of the accordion. */
699
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,48 +1123,15 @@ 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
- 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"]
1126
+ export type DapDSAnchorHeadingProps = {
1127
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1128
+ variant?: DapDSAnchorHeading["variant"]
1129
+ /** The label of the heading. */
1130
+ label?: DapDSAnchorHeading["label"]
1131
+ /** */
1132
+ elementId?: DapDSAnchorHeading["elementId"]
1133
+ /** */
1134
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1168
1135
  }
1169
1136
 
1170
1137
  export type DapDSAvatarProps = {
@@ -1194,6 +1161,32 @@ export type DapDSAvatarProps = {
1194
1161
  sizeMap?: DapDSAvatar["sizeMap"]
1195
1162
  }
1196
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
+
1171
+ export type DapDSAvatarGroupProps = {
1172
+ /** Layout type for the avatar group */
1173
+ layout?: DapDSAvatarGroup["layout"]
1174
+ /** Maximum number of avatars to show before showing overflow */
1175
+ max?: DapDSAvatarGroup["max"]
1176
+ /** Whether to show the total count in overflow indicator */
1177
+ "show-total"?: DapDSAvatarGroup["showTotal"]
1178
+ /** Interactive overflow indicator */
1179
+ "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1180
+ /** Accessible label for the avatar group */
1181
+ label?: DapDSAvatarGroup["label"]
1182
+ /** Accessible label for the overflow indicator */
1183
+ "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1184
+ /** The size of avatars in the group. Default is `md`. See SizedMixin. */
1185
+ size?: DapDSAvatarGroup["size"]
1186
+ /** Responsive size map (e.g. "md:lg"); see SizedMixin. */
1187
+ sizeMap?: DapDSAvatarGroup["sizeMap"]
1188
+ }
1189
+
1197
1190
  export type DapDSBadgeProps = {
1198
1191
  /** The type of the badge */
1199
1192
  type?: DapDSBadge["type"]
@@ -1220,11 +1213,29 @@ export type DapDSBannerProps = {
1220
1213
  icon?: DapDSBanner["icon"]
1221
1214
  }
1222
1215
 
1223
- export type DapDSAccordionGroupProps = {
1224
- /** Whether to close other accordions when one is opened. */
1225
- autoClose?: DapDSAccordionGroup["autoClose"]
1226
- /** The variant of the accordion */
1227
- variant?: DapDSAccordionGroup["variant"]
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"]
1228
1239
  }
1229
1240
 
1230
1241
  export type DapDSBreadcrumbProps = {
@@ -1236,17 +1247,6 @@ export type DapDSBreadcrumbProps = {
1236
1247
  "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1237
1248
  }
1238
1249
 
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"]
@@ -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,17 +3917,6 @@ export type HealthHeartFillProps = {
3917
3917
  focusable?: HealthHeartFill["focusable"]
3918
3918
  }
3919
3919
 
3920
- export type HealthHeartLineProps = {
3921
- /** (optional) The width and height in pixels */
3922
- size?: HealthHeartLine["size"]
3923
- /** (optional) Sets the icon color via the `fill` attribute */
3924
- selected?: HealthHeartLine["selected"]
3925
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3926
- accessibilityTitle?: HealthHeartLine["accessibilityTitle"]
3927
- /** (optional) If `true` the icon can receive focus */
3928
- focusable?: HealthHeartLine["focusable"]
3929
- }
3930
-
3931
3920
  export type OthersCookieLineProps = {
3932
3921
  /** (optional) The width and height in pixels */
3933
3922
  size?: OthersCookieLine["size"]
@@ -3939,48 +3928,15 @@ export type OthersCookieLineProps = {
3939
3928
  focusable?: OthersCookieLine["focusable"]
3940
3929
  }
3941
3930
 
3942
- export type UserAccountCircleFillProps = {
3943
- /** (optional) The width and height in pixels */
3944
- size?: UserAccountCircleFill["size"]
3945
- /** (optional) Sets the icon color via the `fill` attribute */
3946
- selected?: UserAccountCircleFill["selected"]
3947
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3948
- accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
3949
- /** (optional) If `true` the icon can receive focus */
3950
- focusable?: UserAccountCircleFill["focusable"]
3951
- }
3952
-
3953
- export type UserAccountCircleLineProps = {
3954
- /** (optional) The width and height in pixels */
3955
- size?: UserAccountCircleLine["size"]
3956
- /** (optional) Sets the icon color via the `fill` attribute */
3957
- selected?: UserAccountCircleLine["selected"]
3958
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3959
- accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
3960
- /** (optional) If `true` the icon can receive focus */
3961
- focusable?: UserAccountCircleLine["focusable"]
3962
- }
3963
-
3964
- export type UserUserFillProps = {
3965
- /** (optional) The width and height in pixels */
3966
- size?: UserUserFill["size"]
3967
- /** (optional) Sets the icon color via the `fill` attribute */
3968
- selected?: UserUserFill["selected"]
3969
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3970
- accessibilityTitle?: UserUserFill["accessibilityTitle"]
3971
- /** (optional) If `true` the icon can receive focus */
3972
- focusable?: UserUserFill["focusable"]
3973
- }
3974
-
3975
- export type UserUserLineProps = {
3931
+ export type HealthHeartLineProps = {
3976
3932
  /** (optional) The width and height in pixels */
3977
- size?: UserUserLine["size"]
3933
+ size?: HealthHeartLine["size"]
3978
3934
  /** (optional) Sets the icon color via the `fill` attribute */
3979
- selected?: UserUserLine["selected"]
3935
+ selected?: HealthHeartLine["selected"]
3980
3936
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3981
- accessibilityTitle?: UserUserLine["accessibilityTitle"]
3937
+ accessibilityTitle?: HealthHeartLine["accessibilityTitle"]
3982
3938
  /** (optional) If `true` the icon can receive focus */
3983
- focusable?: UserUserLine["focusable"]
3939
+ focusable?: HealthHeartLine["focusable"]
3984
3940
  }
3985
3941
 
3986
3942
  export type SystemAddLineProps = {
@@ -4379,26 +4335,26 @@ export type SystemShareLineProps = {
4379
4335
  focusable?: SystemShareLine["focusable"]
4380
4336
  }
4381
4337
 
4382
- export type SystemShieldCheckFillProps = {
4338
+ export type SystemShieldCheckLineProps = {
4383
4339
  /** (optional) The width and height in pixels */
4384
- size?: SystemShieldCheckFill["size"]
4340
+ size?: SystemShieldCheckLine["size"]
4385
4341
  /** (optional) Sets the icon color via the `fill` attribute */
4386
- selected?: SystemShieldCheckFill["selected"]
4342
+ selected?: SystemShieldCheckLine["selected"]
4387
4343
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4388
- accessibilityTitle?: SystemShieldCheckFill["accessibilityTitle"]
4344
+ accessibilityTitle?: SystemShieldCheckLine["accessibilityTitle"]
4389
4345
  /** (optional) If `true` the icon can receive focus */
4390
- focusable?: SystemShieldCheckFill["focusable"]
4346
+ focusable?: SystemShieldCheckLine["focusable"]
4391
4347
  }
4392
4348
 
4393
- export type SystemShieldCheckLineProps = {
4349
+ export type SystemShieldCheckFillProps = {
4394
4350
  /** (optional) The width and height in pixels */
4395
- size?: SystemShieldCheckLine["size"]
4351
+ size?: SystemShieldCheckFill["size"]
4396
4352
  /** (optional) Sets the icon color via the `fill` attribute */
4397
- selected?: SystemShieldCheckLine["selected"]
4353
+ selected?: SystemShieldCheckFill["selected"]
4398
4354
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4399
- accessibilityTitle?: SystemShieldCheckLine["accessibilityTitle"]
4355
+ accessibilityTitle?: SystemShieldCheckFill["accessibilityTitle"]
4400
4356
  /** (optional) If `true` the icon can receive focus */
4401
- focusable?: SystemShieldCheckLine["focusable"]
4357
+ focusable?: SystemShieldCheckFill["focusable"]
4402
4358
  }
4403
4359
 
4404
4360
  export type SystemStarFillProps = {
@@ -4497,64 +4453,77 @@ export type SystemZoomInLineProps = {
4497
4453
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4498
4454
  accessibilityTitle?: SystemZoomInLine["accessibilityTitle"]
4499
4455
  /** (optional) If `true` the icon can receive focus */
4500
- focusable?: SystemZoomInLine["focusable"]
4456
+ focusable?: SystemZoomInLine["focusable"]
4457
+ }
4458
+
4459
+ export type SystemZoomOutLineProps = {
4460
+ /** (optional) The width and height in pixels */
4461
+ size?: SystemZoomOutLine["size"]
4462
+ /** (optional) Sets the icon color via the `fill` attribute */
4463
+ selected?: SystemZoomOutLine["selected"]
4464
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4465
+ accessibilityTitle?: SystemZoomOutLine["accessibilityTitle"]
4466
+ /** (optional) If `true` the icon can receive focus */
4467
+ focusable?: SystemZoomOutLine["focusable"]
4468
+ }
4469
+
4470
+ export type UserAccountCircleFillProps = {
4471
+ /** (optional) The width and height in pixels */
4472
+ size?: UserAccountCircleFill["size"]
4473
+ /** (optional) Sets the icon color via the `fill` attribute */
4474
+ selected?: UserAccountCircleFill["selected"]
4475
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4476
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4477
+ /** (optional) If `true` the icon can receive focus */
4478
+ focusable?: UserAccountCircleFill["focusable"]
4479
+ }
4480
+
4481
+ export type UserAccountCircleLineProps = {
4482
+ /** (optional) The width and height in pixels */
4483
+ size?: UserAccountCircleLine["size"]
4484
+ /** (optional) Sets the icon color via the `fill` attribute */
4485
+ selected?: UserAccountCircleLine["selected"]
4486
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4487
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4488
+ /** (optional) If `true` the icon can receive focus */
4489
+ focusable?: UserAccountCircleLine["focusable"]
4490
+ }
4491
+
4492
+ export type UserUserFillProps = {
4493
+ /** (optional) The width and height in pixels */
4494
+ size?: UserUserFill["size"]
4495
+ /** (optional) Sets the icon color via the `fill` attribute */
4496
+ selected?: UserUserFill["selected"]
4497
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4498
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
4499
+ /** (optional) If `true` the icon can receive focus */
4500
+ focusable?: UserUserFill["focusable"]
4501
4501
  }
4502
4502
 
4503
- export type SystemZoomOutLineProps = {
4503
+ export type UserUserLineProps = {
4504
4504
  /** (optional) The width and height in pixels */
4505
- size?: SystemZoomOutLine["size"]
4505
+ size?: UserUserLine["size"]
4506
4506
  /** (optional) Sets the icon color via the `fill` attribute */
4507
- selected?: SystemZoomOutLine["selected"]
4507
+ selected?: UserUserLine["selected"]
4508
4508
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4509
- accessibilityTitle?: SystemZoomOutLine["accessibilityTitle"]
4509
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
4510
4510
  /** (optional) If `true` the icon can receive focus */
4511
- focusable?: SystemZoomOutLine["focusable"]
4511
+ focusable?: UserUserLine["focusable"]
4512
4512
  }
4513
4513
 
4514
4514
  // Augment Vue's GlobalComponents interface
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.
4519
- *
4520
- * ### Events:
4521
- * - **dds-opened** - Event fired when the accordion is opened.
4522
- * - **dds-closed** - Event fired when the accordion is closed.
4523
- *
4524
- * ### Slots:
4525
- * - **default** - The content of the accordion.
4526
- * - **heading** - The heading of the accordion.
4527
- * - **icon-opened** - The icon when the accordion is opened.
4528
- * - **icon-closed** - The icon when the accordion is closed.
4529
- *
4530
- * ### CSS Parts:
4531
- * - **base** - The main accordion container.
4532
- * - **heading** - The heading of the accordion.
4533
- * - **button** - The button of the accordion.
4534
- * - **content** - The content of the accordion.
4535
- * - **content-container** - The container of the accordion content.
4536
- * - **icon-wrapper** - The icon wrapper of the accordion.
4537
- * - **open-icon** - The icon when the accordion is opened.
4538
- * - **open-icon-base** - The base of the icon when the accordion is opened.
4539
- * - **close-icon** - The icon when the accordion is closed.
4540
- * - **close-icon-base** - The base of the icon when the accordion is closed.
4541
- */
4542
- 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4543
- /**
4544
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4545
- *
4546
- * ### Events:
4547
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4548
- *
4549
- * ### Slots:
4550
- * - **default** - The avatars to display in the group.
4518
+ * Anchor heading is a heading with an anchor link.
4551
4519
  *
4552
4520
  * ### CSS Parts:
4553
- * - **base** - The main container of the avatar group.
4554
- * - **avatars** - The container for the visible avatars.
4555
- * - **overflow** - The overflow indicator element.
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.
4556
4525
  */
4557
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4526
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4558
4527
  /**
4559
4528
  * Avatar component can be used to display user profile images, initials, or icons.
4560
4529
  *
@@ -4575,6 +4544,31 @@ declare module 'vue' {
4575
4544
  * - **loading** - The loading indicator.
4576
4545
  */
4577
4546
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4547
+ /**
4548
+ * An accordion group is a collection of accordion components.
4549
+ *
4550
+ * ### Slots:
4551
+ * - **default** - The content of the accordion group.
4552
+ *
4553
+ * ### CSS Parts:
4554
+ * - **base** - The main accordion group container.
4555
+ */
4556
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4557
+ /**
4558
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4559
+ *
4560
+ * ### Events:
4561
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4562
+ *
4563
+ * ### Slots:
4564
+ * - **default** - The avatars to display in the group.
4565
+ *
4566
+ * ### CSS Parts:
4567
+ * - **base** - The main container of the avatar group.
4568
+ * - **avatars** - The container for the visible avatars.
4569
+ * - **overflow** - The overflow indicator element.
4570
+ */
4571
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4578
4572
  /**
4579
4573
  * A badge is a small status descriptor for UI elements.
4580
4574
  *
@@ -4614,15 +4608,31 @@ declare module 'vue' {
4614
4608
  */
4615
4609
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4616
4610
  /**
4617
- * An accordion group is a collection of accordion components.
4611
+ * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4612
+ *
4613
+ * ### Events:
4614
+ * - **dds-opened** - Event fired when the accordion is opened.
4615
+ * - **dds-closed** - Event fired when the accordion is closed.
4618
4616
  *
4619
4617
  * ### Slots:
4620
- * - **default** - The content of the accordion group.
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.
4621
4622
  *
4622
4623
  * ### CSS Parts:
4623
- * - **base** - The main accordion group container.
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.
4624
4634
  */
4625
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4635
+ 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4626
4636
  /**
4627
4637
  * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4628
4638
  *
@@ -4635,16 +4645,6 @@ declare module 'vue' {
4635
4645
  * - **separator** - The separator of the breadcrumb.
4636
4646
  */
4637
4647
  'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4638
- /**
4639
- * Anchor heading is a heading with an anchor link.
4640
- *
4641
- * ### CSS Parts:
4642
- * - **base** - The main anchor heading container.
4643
- * - **link** - The link of the anchor heading. dap-ds-link element.
4644
- * - **link-base** - The base of the link part.
4645
- * - **text** - The text of the anchor heading.
4646
- */
4647
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4648
4648
  /**
4649
4649
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4650
4650
  *
@@ -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
  *
@@ -6302,13 +6302,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6302
6302
  * - **base** - The main icon container.
6303
6303
  */
6304
6304
  'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6305
- /**
6306
- * An icon
6307
- *
6308
- * ### CSS Parts:
6309
- * - **base** - The main icon container.
6310
- */
6311
- 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6312
6305
  /**
6313
6306
  * An icon
6314
6307
  *
@@ -6322,28 +6315,7 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6322
6315
  * ### CSS Parts:
6323
6316
  * - **base** - The main icon container.
6324
6317
  */
6325
- 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6326
- /**
6327
- * An icon
6328
- *
6329
- * ### CSS Parts:
6330
- * - **base** - The main icon container.
6331
- */
6332
- 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6333
- /**
6334
- * An icon
6335
- *
6336
- * ### CSS Parts:
6337
- * - **base** - The main icon container.
6338
- */
6339
- 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6340
- /**
6341
- * An icon
6342
- *
6343
- * ### CSS Parts:
6344
- * - **base** - The main icon container.
6345
- */
6346
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6318
+ 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6347
6319
  /**
6348
6320
  * An icon
6349
6321
  *
@@ -6602,14 +6574,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6602
6574
  * ### CSS Parts:
6603
6575
  * - **base** - The main icon container.
6604
6576
  */
6605
- 'dap-ds-icon-shield-check-fill': DefineCustomElement<SystemShieldCheckFill, SystemShieldCheckFillProps, {}>
6577
+ 'dap-ds-icon-shield-check-line': DefineCustomElement<SystemShieldCheckLine, SystemShieldCheckLineProps, {}>
6606
6578
  /**
6607
6579
  * An icon
6608
6580
  *
6609
6581
  * ### CSS Parts:
6610
6582
  * - **base** - The main icon container.
6611
6583
  */
6612
- 'dap-ds-icon-shield-check-line': DefineCustomElement<SystemShieldCheckLine, SystemShieldCheckLineProps, {}>
6584
+ 'dap-ds-icon-shield-check-fill': DefineCustomElement<SystemShieldCheckFill, SystemShieldCheckFillProps, {}>
6613
6585
  /**
6614
6586
  * An icon
6615
6587
  *
@@ -6680,6 +6652,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6680
6652
  * - **base** - The main icon container.
6681
6653
  */
6682
6654
  'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
6655
+ /**
6656
+ * An icon
6657
+ *
6658
+ * ### CSS Parts:
6659
+ * - **base** - The main icon container.
6660
+ */
6661
+ 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6662
+ /**
6663
+ * An icon
6664
+ *
6665
+ * ### CSS Parts:
6666
+ * - **base** - The main icon container.
6667
+ */
6668
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6669
+ /**
6670
+ * An icon
6671
+ *
6672
+ * ### CSS Parts:
6673
+ * - **base** - The main icon container.
6674
+ */
6675
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6676
+ /**
6677
+ * An icon
6678
+ *
6679
+ * ### CSS Parts:
6680
+ * - **base** - The main icon container.
6681
+ */
6682
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6683
6683
  }
6684
6684
  }
6685
6685
 
@@ -6687,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
- 'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6690
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6692
6691
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6692
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6693
+ 'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6693
6694
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6694
6695
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6695
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6696
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6696
6697
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6697
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
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,12 +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
6820
- 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6821
- 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6822
- 'dap-ds-icon-user-fill': UserUserFillProps
6823
- 'dap-ds-icon-user-line': UserUserLineProps
6819
+ 'dap-ds-icon-heart-line': HealthHeartLineProps
6824
6820
  'dap-ds-icon-add-line': SystemAddLineProps
6825
6821
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6826
6822
  'dap-ds-icon-alert-line': SystemAlertLineProps
@@ -6857,8 +6853,8 @@ declare global {
6857
6853
  'dap-ds-icon-more-line': SystemMoreLineProps
6858
6854
  'dap-ds-icon-search-line': SystemSearchLineProps
6859
6855
  'dap-ds-icon-share-line': SystemShareLineProps
6860
- 'dap-ds-icon-shield-check-fill': SystemShieldCheckFillProps
6861
6856
  'dap-ds-icon-shield-check-line': SystemShieldCheckLineProps
6857
+ 'dap-ds-icon-shield-check-fill': SystemShieldCheckFillProps
6862
6858
  'dap-ds-icon-star-fill': SystemStarFillProps
6863
6859
  'dap-ds-icon-subtract-line': SystemSubtractLineProps
6864
6860
  'dap-ds-icon-subtract-line2': SystemSubtractLine2Props
@@ -6869,6 +6865,10 @@ declare global {
6869
6865
  'dap-ds-icon-upload-line': SystemUploadLineProps
6870
6866
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
6871
6867
  'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
6868
+ 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6869
+ 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6870
+ 'dap-ds-icon-user-fill': UserUserFillProps
6871
+ 'dap-ds-icon-user-line': UserUserLineProps
6872
6872
  }
6873
6873
  }
6874
6874
  }