dap-design-system 0.43.0 → 0.43.1

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,16 +217,16 @@ export interface DapDSAvatarEvents {
217
217
  onDdsError?: (event: CustomEvent) => 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 DapDSBannerEvents {
226
221
  /** Event fired when the banner is closed. */
227
222
  onDdsClose?: (event: CustomEvent) => void
228
223
  }
229
224
 
225
+ export interface DapDSAvatarGroupEvents {
226
+ /** Fired when the overflow indicator is clicked. */
227
+ onDdsOverflowClick?: (event: CustomEvent) => void
228
+ }
229
+
230
230
  export interface DapDSButtonEvents {
231
231
  /** Emitted when the loading timeout is reached */
232
232
  onDdsLoadingTimeout?: (event: CustomEvent) => void
@@ -242,6 +242,13 @@ export interface DapDSCalloutEvents {
242
242
  onDdsClose?: (event: CustomEvent) => void
243
243
  }
244
244
 
245
+ export interface DapDSChipEvents {
246
+ /** Fired when the chip is removed */
247
+ onDdsRemove?: (event: CustomEvent<{ value: string }>) => void
248
+ /** Fired when the chip is selected */
249
+ onDdsSelect?: (event: CustomEvent<{ value?: string, selected: boolean }>) => void
250
+ }
251
+
245
252
  export interface DapDSCheckboxEvents {
246
253
  /** Fired when the checkbox is checked or unchecked. */
247
254
  onDdsChange?: (event: CustomEvent<{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, readonly: boolean, type: 'checkbox' }>) => void
@@ -253,13 +260,6 @@ export interface DapDSCheckboxEvents {
253
260
  onDdsInput?: (event: CustomEvent<{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, readonly: boolean }>) => void
254
261
  }
255
262
 
256
- export interface DapDSChipEvents {
257
- /** Fired when the chip is removed */
258
- onDdsRemove?: (event: CustomEvent<{ value: string }>) => void
259
- /** Fired when the chip is selected */
260
- onDdsSelect?: (event: CustomEvent<{ value?: string, selected: boolean }>) => void
261
- }
262
-
263
263
  export interface DapDSComboboxEvents {
264
264
  /** Fired when the select value changes. */
265
265
  onDdsChange?: (event: CustomEvent<{ value }>) => void
@@ -639,11 +639,6 @@ export interface DapDSAvatarSlots {
639
639
  'fallback'?: () => any
640
640
  }
641
641
 
642
- export interface DapDSAvatarGroupSlots {
643
- /** The avatars to display in the group. */
644
- default?: () => any
645
- }
646
-
647
642
  export interface DapDSBadgeSlots {
648
643
  /** The content of the badge. */
649
644
  default?: () => any
@@ -651,11 +646,6 @@ export interface DapDSBadgeSlots {
651
646
  'icon'?: () => any
652
647
  }
653
648
 
654
- export interface DapDSAccordionGroupSlots {
655
- /** The content of the accordion group. */
656
- default?: () => any
657
- }
658
-
659
649
  export interface DapDSBannerSlots {
660
650
  /** The content of the banner. */
661
651
  default?: () => any
@@ -672,6 +662,16 @@ export interface DapDSBreadcrumbSlots {
672
662
  'separator'?: () => any
673
663
  }
674
664
 
665
+ export interface DapDSAvatarGroupSlots {
666
+ /** The avatars to display in the group. */
667
+ default?: () => any
668
+ }
669
+
670
+ export interface DapDSAccordionGroupSlots {
671
+ /** The content of the accordion group. */
672
+ default?: () => any
673
+ }
674
+
675
675
  export interface DapDSBreadcrumbItemSlots {
676
676
  /** The content of the breadcrumb item. */
677
677
  default?: () => any
@@ -1113,23 +1113,6 @@ export type DapDSAvatarProps = {
1113
1113
  height?: DapDSAvatar["height"]
1114
1114
  }
1115
1115
 
1116
- export type DapDSAvatarGroupProps = {
1117
- /** The size of avatars in the group */
1118
- size?: DapDSAvatarGroup["size"]
1119
- /** Layout type for the avatar group */
1120
- layout?: DapDSAvatarGroup["layout"]
1121
- /** Maximum number of avatars to show before showing overflow */
1122
- max?: DapDSAvatarGroup["max"]
1123
- /** Whether to show the total count in overflow indicator */
1124
- "show-total"?: DapDSAvatarGroup["showTotal"]
1125
- /** Interactive overflow indicator */
1126
- "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1127
- /** Accessible label for the avatar group */
1128
- label?: DapDSAvatarGroup["label"]
1129
- /** Accessible label for the overflow indicator */
1130
- "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1131
- }
1132
-
1133
1116
  export type DapDSBadgeProps = {
1134
1117
  /** The type of the badge */
1135
1118
  type?: DapDSBadge["type"]
@@ -1141,13 +1124,6 @@ export type DapDSBadgeProps = {
1141
1124
  live?: DapDSBadge["live"]
1142
1125
  }
1143
1126
 
1144
- export type DapDSAccordionGroupProps = {
1145
- /** Whether to close other accordions when one is opened. */
1146
- autoClose?: DapDSAccordionGroup["autoClose"]
1147
- /** The variant of the accordion */
1148
- variant?: DapDSAccordionGroup["variant"]
1149
- }
1150
-
1151
1127
  export type DapDSBannerProps = {
1152
1128
  /** The variant of the banner */
1153
1129
  variant?: DapDSBanner["variant"]
@@ -1170,6 +1146,30 @@ export type DapDSBreadcrumbProps = {
1170
1146
  "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1171
1147
  }
1172
1148
 
1149
+ export type DapDSAvatarGroupProps = {
1150
+ /** The size of avatars in the group */
1151
+ size?: DapDSAvatarGroup["size"]
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
+ }
1165
+
1166
+ export type DapDSAccordionGroupProps = {
1167
+ /** Whether to close other accordions when one is opened. */
1168
+ autoClose?: DapDSAccordionGroup["autoClose"]
1169
+ /** The variant of the accordion */
1170
+ variant?: DapDSAccordionGroup["variant"]
1171
+ }
1172
+
1173
1173
  export type DapDSBreadcrumbItemProps = {
1174
1174
  /** The URL of the breadcrumb item. */
1175
1175
  href?: DapDSBreadcrumbItem["href"]
@@ -1273,53 +1273,6 @@ export type DapDSCalloutProps = {
1273
1273
  opened?: DapDSCallout["opened"]
1274
1274
  }
1275
1275
 
1276
- export type DapDSCheckboxProps = {
1277
- /** Whether the checkbox is indeterminate */
1278
- indeterminate?: DapDSCheckbox["indeterminate"]
1279
- /** Whether the checkbox should prevent the default action */
1280
- preventDefault?: DapDSCheckbox["preventDefault"]
1281
- /** This sets up border around the checkbox, when true. */
1282
- border?: DapDSCheckbox["border"]
1283
- /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1284
- readonly?: DapDSCheckbox["readonly"]
1285
- /** The type of the checkbox */
1286
- type?: DapDSCheckbox["type"]
1287
- /** */
1288
- focusElement?: DapDSCheckbox["focusElement"]
1289
- /** The name of the checkbox. */
1290
- name?: DapDSCheckbox["name"]
1291
- /** The value of the checkbox. */
1292
- value?: DapDSCheckbox["value"]
1293
- /** Whether the checkbox is checked. */
1294
- checked?: DapDSCheckbox["checked"]
1295
- /** The label of the checkbox. */
1296
- label?: DapDSCheckbox["label"]
1297
- /** The description of the checkbox. */
1298
- description?: DapDSCheckbox["description"]
1299
- /** Whether the checkbox is disabled. */
1300
- disabled?: DapDSCheckbox["disabled"]
1301
- /** Whether the checkbox is required. */
1302
- required?: DapDSCheckbox["required"]
1303
- /** The size of the checkbox. Default is 'sm'. */
1304
- size?: DapDSCheckbox["size"]
1305
- /** The placement of the label. */
1306
- labelPlacement?: DapDSCheckbox["labelPlacement"]
1307
- /** The placement of the description. */
1308
- descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1309
- /** The weight of the label. */
1310
- subtle?: DapDSCheckbox["subtle"]
1311
- /** The feedback of the checkbox. */
1312
- feedback?: DapDSCheckbox["feedback"]
1313
- /** The feedback type of the checkbox. */
1314
- feedbackType?: DapDSCheckbox["feedbackType"]
1315
- /** The invalid state of the checkbox. */
1316
- invalid?: DapDSCheckbox["invalid"]
1317
- /** The optional state of the checkbox. */
1318
- optional?: DapDSCheckbox["optional"]
1319
- /** The optional label of the checkbox. */
1320
- optionalLabel?: DapDSCheckbox["optionalLabel"]
1321
- }
1322
-
1323
1276
  export type DapDSCardActionsProps = {
1324
1277
  /** Whether the card actions should be sized from the parent. */
1325
1278
  parentSized?: DapDSCardActions["parentSized"]
@@ -1415,6 +1368,53 @@ export type DapDSChipProps = {
1415
1368
  deleteAriaLabel?: DapDSChip["deleteAriaLabel"]
1416
1369
  }
1417
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
+ /** The name of the checkbox. */
1385
+ name?: DapDSCheckbox["name"]
1386
+ /** The value of the checkbox. */
1387
+ value?: DapDSCheckbox["value"]
1388
+ /** Whether the checkbox is checked. */
1389
+ checked?: DapDSCheckbox["checked"]
1390
+ /** The label of the checkbox. */
1391
+ label?: DapDSCheckbox["label"]
1392
+ /** The description of the checkbox. */
1393
+ description?: DapDSCheckbox["description"]
1394
+ /** Whether the checkbox is disabled. */
1395
+ disabled?: DapDSCheckbox["disabled"]
1396
+ /** Whether the checkbox is required. */
1397
+ required?: DapDSCheckbox["required"]
1398
+ /** The size of the checkbox. Default is 'sm'. */
1399
+ size?: DapDSCheckbox["size"]
1400
+ /** The placement of the label. */
1401
+ labelPlacement?: DapDSCheckbox["labelPlacement"]
1402
+ /** The placement of the description. */
1403
+ descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1404
+ /** The weight of the label. */
1405
+ subtle?: DapDSCheckbox["subtle"]
1406
+ /** The feedback of the checkbox. */
1407
+ feedback?: DapDSCheckbox["feedback"]
1408
+ /** The feedback type of the checkbox. */
1409
+ feedbackType?: DapDSCheckbox["feedbackType"]
1410
+ /** The invalid state of the checkbox. */
1411
+ invalid?: DapDSCheckbox["invalid"]
1412
+ /** The optional state of the checkbox. */
1413
+ optional?: DapDSCheckbox["optional"]
1414
+ /** The optional label of the checkbox. */
1415
+ optionalLabel?: DapDSCheckbox["optionalLabel"]
1416
+ }
1417
+
1418
1418
  export type DapDSComboboxProps = {
1419
1419
  /** The value of the select. */
1420
1420
  value?: DapDSCombobox["value"]
@@ -3253,6 +3253,17 @@ export type ArrowsArrowLeftSFillProps = {
3253
3253
  focusable?: ArrowsArrowLeftSFill["focusable"]
3254
3254
  }
3255
3255
 
3256
+ export type ArrowsArrowLeftSLineProps = {
3257
+ /** (optional) The width and height in pixels */
3258
+ size?: ArrowsArrowLeftSLine["size"]
3259
+ /** (optional) Sets the icon color via the `fill` attribute */
3260
+ selected?: ArrowsArrowLeftSLine["selected"]
3261
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3262
+ accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3263
+ /** (optional) If `true` the icon can receive focus */
3264
+ focusable?: ArrowsArrowLeftSLine["focusable"]
3265
+ }
3266
+
3256
3267
  export type ArrowsArrowLeftUpLineProps = {
3257
3268
  /** (optional) The width and height in pixels */
3258
3269
  size?: ArrowsArrowLeftUpLine["size"]
@@ -3286,17 +3297,6 @@ export type ArrowsArrowRightLLineProps = {
3286
3297
  focusable?: ArrowsArrowRightLLine["focusable"]
3287
3298
  }
3288
3299
 
3289
- export type ArrowsArrowLeftSLineProps = {
3290
- /** (optional) The width and height in pixels */
3291
- size?: ArrowsArrowLeftSLine["size"]
3292
- /** (optional) Sets the icon color via the `fill` attribute */
3293
- selected?: ArrowsArrowLeftSLine["selected"]
3294
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3295
- accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3296
- /** (optional) If `true` the icon can receive focus */
3297
- focusable?: ArrowsArrowLeftSLine["focusable"]
3298
- }
3299
-
3300
3300
  export type ArrowsArrowRightLineProps = {
3301
3301
  /** (optional) The width and height in pixels */
3302
3302
  size?: ArrowsArrowRightLine["size"]
@@ -3319,26 +3319,26 @@ export type ArrowsArrowRightSFillProps = {
3319
3319
  focusable?: ArrowsArrowRightSFill["focusable"]
3320
3320
  }
3321
3321
 
3322
- export type ArrowsArrowRightSLineProps = {
3322
+ export type ArrowsArrowRightUpLineProps = {
3323
3323
  /** (optional) The width and height in pixels */
3324
- size?: ArrowsArrowRightSLine["size"]
3324
+ size?: ArrowsArrowRightUpLine["size"]
3325
3325
  /** (optional) Sets the icon color via the `fill` attribute */
3326
- selected?: ArrowsArrowRightSLine["selected"]
3326
+ selected?: ArrowsArrowRightUpLine["selected"]
3327
3327
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3328
- accessibilityTitle?: ArrowsArrowRightSLine["accessibilityTitle"]
3328
+ accessibilityTitle?: ArrowsArrowRightUpLine["accessibilityTitle"]
3329
3329
  /** (optional) If `true` the icon can receive focus */
3330
- focusable?: ArrowsArrowRightSLine["focusable"]
3330
+ focusable?: ArrowsArrowRightUpLine["focusable"]
3331
3331
  }
3332
3332
 
3333
- export type ArrowsArrowRightUpLineProps = {
3333
+ export type ArrowsArrowRightSLineProps = {
3334
3334
  /** (optional) The width and height in pixels */
3335
- size?: ArrowsArrowRightUpLine["size"]
3335
+ size?: ArrowsArrowRightSLine["size"]
3336
3336
  /** (optional) Sets the icon color via the `fill` attribute */
3337
- selected?: ArrowsArrowRightUpLine["selected"]
3337
+ selected?: ArrowsArrowRightSLine["selected"]
3338
3338
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3339
- accessibilityTitle?: ArrowsArrowRightUpLine["accessibilityTitle"]
3339
+ accessibilityTitle?: ArrowsArrowRightSLine["accessibilityTitle"]
3340
3340
  /** (optional) If `true` the icon can receive focus */
3341
- focusable?: ArrowsArrowRightUpLine["focusable"]
3341
+ focusable?: ArrowsArrowRightSLine["focusable"]
3342
3342
  }
3343
3343
 
3344
3344
  export type ArrowsArrowUpLineProps = {
@@ -3352,26 +3352,26 @@ export type ArrowsArrowUpLineProps = {
3352
3352
  focusable?: ArrowsArrowUpLine["focusable"]
3353
3353
  }
3354
3354
 
3355
- export type ArrowsArrowUpSLineProps = {
3355
+ export type ArrowsArrowUpSFillProps = {
3356
3356
  /** (optional) The width and height in pixels */
3357
- size?: ArrowsArrowUpSLine["size"]
3357
+ size?: ArrowsArrowUpSFill["size"]
3358
3358
  /** (optional) Sets the icon color via the `fill` attribute */
3359
- selected?: ArrowsArrowUpSLine["selected"]
3359
+ selected?: ArrowsArrowUpSFill["selected"]
3360
3360
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3361
- accessibilityTitle?: ArrowsArrowUpSLine["accessibilityTitle"]
3361
+ accessibilityTitle?: ArrowsArrowUpSFill["accessibilityTitle"]
3362
3362
  /** (optional) If `true` the icon can receive focus */
3363
- focusable?: ArrowsArrowUpSLine["focusable"]
3363
+ focusable?: ArrowsArrowUpSFill["focusable"]
3364
3364
  }
3365
3365
 
3366
- export type ArrowsArrowUpSFillProps = {
3366
+ export type ArrowsArrowUpSLineProps = {
3367
3367
  /** (optional) The width and height in pixels */
3368
- size?: ArrowsArrowUpSFill["size"]
3368
+ size?: ArrowsArrowUpSLine["size"]
3369
3369
  /** (optional) Sets the icon color via the `fill` attribute */
3370
- selected?: ArrowsArrowUpSFill["selected"]
3370
+ selected?: ArrowsArrowUpSLine["selected"]
3371
3371
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3372
- accessibilityTitle?: ArrowsArrowUpSFill["accessibilityTitle"]
3372
+ accessibilityTitle?: ArrowsArrowUpSLine["accessibilityTitle"]
3373
3373
  /** (optional) If `true` the icon can receive focus */
3374
- focusable?: ArrowsArrowUpSFill["focusable"]
3374
+ focusable?: ArrowsArrowUpSLine["focusable"]
3375
3375
  }
3376
3376
 
3377
3377
  export type ArrowsExpandUpDownFillProps = {
@@ -3550,6 +3550,17 @@ export type HealthHeartLineProps = {
3550
3550
  focusable?: HealthHeartLine["focusable"]
3551
3551
  }
3552
3552
 
3553
+ export type OthersCookieLineProps = {
3554
+ /** (optional) The width and height in pixels */
3555
+ size?: OthersCookieLine["size"]
3556
+ /** (optional) Sets the icon color via the `fill` attribute */
3557
+ selected?: OthersCookieLine["selected"]
3558
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3559
+ accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
3560
+ /** (optional) If `true` the icon can receive focus */
3561
+ focusable?: OthersCookieLine["focusable"]
3562
+ }
3563
+
3553
3564
  export type UserAccountCircleFillProps = {
3554
3565
  /** (optional) The width and height in pixels */
3555
3566
  size?: UserAccountCircleFill["size"]
@@ -3660,17 +3671,6 @@ export type SystemCheckboxBlankCircleFillProps = {
3660
3671
  focusable?: SystemCheckboxBlankCircleFill["focusable"]
3661
3672
  }
3662
3673
 
3663
- export type SystemCheckboxBlankCircleFillCheckProps = {
3664
- /** (optional) The width and height in pixels */
3665
- size?: SystemCheckboxBlankCircleFillCheck["size"]
3666
- /** (optional) Sets the icon color via the `fill` attribute */
3667
- selected?: SystemCheckboxBlankCircleFillCheck["selected"]
3668
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3669
- accessibilityTitle?: SystemCheckboxBlankCircleFillCheck["accessibilityTitle"]
3670
- /** (optional) If `true` the icon can receive focus */
3671
- focusable?: SystemCheckboxBlankCircleFillCheck["focusable"]
3672
- }
3673
-
3674
3674
  export type SystemCheckboxBlankCircleLineProps = {
3675
3675
  /** (optional) The width and height in pixels */
3676
3676
  size?: SystemCheckboxBlankCircleLine["size"]
@@ -3704,6 +3704,17 @@ export type SystemCheckboxCircleLineProps = {
3704
3704
  focusable?: SystemCheckboxCircleLine["focusable"]
3705
3705
  }
3706
3706
 
3707
+ export type SystemCheckboxBlankCircleFillCheckProps = {
3708
+ /** (optional) The width and height in pixels */
3709
+ size?: SystemCheckboxBlankCircleFillCheck["size"]
3710
+ /** (optional) Sets the icon color via the `fill` attribute */
3711
+ selected?: SystemCheckboxBlankCircleFillCheck["selected"]
3712
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3713
+ accessibilityTitle?: SystemCheckboxBlankCircleFillCheck["accessibilityTitle"]
3714
+ /** (optional) If `true` the icon can receive focus */
3715
+ focusable?: SystemCheckboxBlankCircleFillCheck["focusable"]
3716
+ }
3717
+
3707
3718
  export type SystemCloseCircleFillProps = {
3708
3719
  /** (optional) The width and height in pixels */
3709
3720
  size?: SystemCloseCircleFill["size"]
@@ -4100,17 +4111,6 @@ export type SystemUploadLineProps = {
4100
4111
  focusable?: SystemUploadLine["focusable"]
4101
4112
  }
4102
4113
 
4103
- export type OthersCookieLineProps = {
4104
- /** (optional) The width and height in pixels */
4105
- size?: OthersCookieLine["size"]
4106
- /** (optional) Sets the icon color via the `fill` attribute */
4107
- selected?: OthersCookieLine["selected"]
4108
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4109
- accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
4110
- /** (optional) If `true` the icon can receive focus */
4111
- focusable?: OthersCookieLine["focusable"]
4112
- }
4113
-
4114
4114
  // Augment Vue's GlobalComponents interface
4115
4115
  declare module 'vue' {
4116
4116
  interface GlobalComponents {
@@ -4171,21 +4171,6 @@ declare module 'vue' {
4171
4171
  * - **loading** - The loading indicator.
4172
4172
  */
4173
4173
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4174
- /**
4175
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4176
- *
4177
- * ### Events:
4178
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4179
- *
4180
- * ### Slots:
4181
- * - **default** - The avatars to display in the group.
4182
- *
4183
- * ### CSS Parts:
4184
- * - **base** - The main container of the avatar group.
4185
- * - **avatars** - The container for the visible avatars.
4186
- * - **overflow** - The overflow indicator element.
4187
- */
4188
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4189
4174
  /**
4190
4175
  * A badge is a small status descriptor for UI elements.
4191
4176
  *
@@ -4200,16 +4185,6 @@ declare module 'vue' {
4200
4185
  * - **icon-base** - The base of the icon.
4201
4186
  */
4202
4187
  'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4203
- /**
4204
- * An accordion group is a collection of accordion components.
4205
- *
4206
- * ### Slots:
4207
- * - **default** - The content of the accordion group.
4208
- *
4209
- * ### CSS Parts:
4210
- * - **base** - The main accordion group container.
4211
- */
4212
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4213
4188
  /**
4214
4189
  * A banner is a message displayed at the top of the page to provide important information to the user.
4215
4190
  *
@@ -4246,6 +4221,31 @@ declare module 'vue' {
4246
4221
  * - **separator** - The separator of the breadcrumb.
4247
4222
  */
4248
4223
  'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4224
+ /**
4225
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4226
+ *
4227
+ * ### Events:
4228
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4229
+ *
4230
+ * ### Slots:
4231
+ * - **default** - The avatars to display in the group.
4232
+ *
4233
+ * ### CSS Parts:
4234
+ * - **base** - The main container of the avatar group.
4235
+ * - **avatars** - The container for the visible avatars.
4236
+ * - **overflow** - The overflow indicator element.
4237
+ */
4238
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4239
+ /**
4240
+ * An accordion group is a collection of accordion components.
4241
+ *
4242
+ * ### Slots:
4243
+ * - **default** - The content of the accordion group.
4244
+ *
4245
+ * ### CSS Parts:
4246
+ * - **base** - The main accordion group container.
4247
+ */
4248
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4249
4249
  /**
4250
4250
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4251
4251
  *
@@ -4324,26 +4324,6 @@ declare module 'vue' {
4324
4324
  * - **close** - The close button of the callout.
4325
4325
  */
4326
4326
  'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4327
- /**
4328
- * A checkbox is a form element that allows the user to select one or more options from a set.
4329
- *
4330
- * ### Events:
4331
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4332
- * - **dds-blur** - Emitted when the checkbox loses focus.
4333
- * - **dds-focus** - Emitted when the checkbox gains focus.
4334
- * - **dds-input** - Emitted when the checkbox receives input.
4335
- *
4336
- * ### CSS Parts:
4337
- * - **base** - The main checkbox container.
4338
- * - **label** - The label of the checkbox.
4339
- * - **input** - The input of the checkbox.
4340
- * - **control** - The control of the checkbox.
4341
- * - **icon** - The icon of the checkbox.
4342
- * - **label-container** - The label container of the checkbox.
4343
- * - **description** - The description of the checkbox.
4344
- * - **readonly** - The readonly state of the checkbox.
4345
- */
4346
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4347
4327
  /**
4348
4328
  * A card actions is a container for actions in a card.
4349
4329
  *
@@ -4417,6 +4397,26 @@ declare module 'vue' {
4417
4397
  * - **remove-button** - The remove button
4418
4398
  */
4419
4399
  'dap-ds-chip': DefineCustomElement<DapDSChip, DapDSChipProps, DapDSChipEvents>
4400
+ /**
4401
+ * A checkbox is a form element that allows the user to select one or more options from a set.
4402
+ *
4403
+ * ### Events:
4404
+ * - **dds-change** - Fired when the checkbox is checked or unchecked.
4405
+ * - **dds-blur** - Emitted when the checkbox loses focus.
4406
+ * - **dds-focus** - Emitted when the checkbox gains focus.
4407
+ * - **dds-input** - Emitted when the checkbox receives input.
4408
+ *
4409
+ * ### CSS Parts:
4410
+ * - **base** - The main checkbox container.
4411
+ * - **label** - The label of the checkbox.
4412
+ * - **input** - The input of the checkbox.
4413
+ * - **control** - The control of the checkbox.
4414
+ * - **icon** - The icon of the checkbox.
4415
+ * - **label-container** - The label container of the checkbox.
4416
+ * - **description** - The description of the checkbox.
4417
+ * - **readonly** - The readonly state of the checkbox.
4418
+ */
4419
+ 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4420
4420
  /**
4421
4421
  * A select is a form element that allows the user to select one option from a set.
4422
4422
  *
@@ -5508,28 +5508,28 @@ declare module 'vue' {
5508
5508
  * ### CSS Parts:
5509
5509
  * - **base** - The main icon container.
5510
5510
  */
5511
- 'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
5511
+ 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
5512
5512
  /**
5513
5513
  * An icon
5514
5514
  *
5515
5515
  * ### CSS Parts:
5516
5516
  * - **base** - The main icon container.
5517
5517
  */
5518
- 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
5518
+ 'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
5519
5519
  /**
5520
5520
  * An icon
5521
5521
  *
5522
5522
  * ### CSS Parts:
5523
5523
  * - **base** - The main icon container.
5524
5524
  */
5525
- 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
5525
+ 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
5526
5526
  /**
5527
5527
  * An icon
5528
5528
  *
5529
5529
  * ### CSS Parts:
5530
5530
  * - **base** - The main icon container.
5531
5531
  */
5532
- 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
5532
+ 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
5533
5533
  /**
5534
5534
  * An icon
5535
5535
  *
@@ -5550,14 +5550,14 @@ declare module 'vue' {
5550
5550
  * ### CSS Parts:
5551
5551
  * - **base** - The main icon container.
5552
5552
  */
5553
- 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
5553
+ 'dap-ds-icon-arrow-right-up-line': DefineCustomElement<ArrowsArrowRightUpLine, ArrowsArrowRightUpLineProps, {}>
5554
5554
  /**
5555
5555
  * An icon
5556
5556
  *
5557
5557
  * ### CSS Parts:
5558
5558
  * - **base** - The main icon container.
5559
5559
  */
5560
- 'dap-ds-icon-arrow-right-up-line': DefineCustomElement<ArrowsArrowRightUpLine, ArrowsArrowRightUpLineProps, {}>
5560
+ 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
5561
5561
  /**
5562
5562
  * An icon
5563
5563
  *
@@ -5571,14 +5571,14 @@ declare module 'vue' {
5571
5571
  * ### CSS Parts:
5572
5572
  * - **base** - The main icon container.
5573
5573
  */
5574
- 'dap-ds-icon-arrow-up-s-line': DefineCustomElement<ArrowsArrowUpSLine, ArrowsArrowUpSLineProps, {}>
5574
+ 'dap-ds-icon-arrow-up-s-fill': DefineCustomElement<ArrowsArrowUpSFill, ArrowsArrowUpSFillProps, {}>
5575
5575
  /**
5576
5576
  * An icon
5577
5577
  *
5578
5578
  * ### CSS Parts:
5579
5579
  * - **base** - The main icon container.
5580
5580
  */
5581
- 'dap-ds-icon-arrow-up-s-fill': DefineCustomElement<ArrowsArrowUpSFill, ArrowsArrowUpSFillProps, {}>
5581
+ 'dap-ds-icon-arrow-up-s-line': DefineCustomElement<ArrowsArrowUpSLine, ArrowsArrowUpSLineProps, {}>
5582
5582
  /**
5583
5583
  * An icon
5584
5584
  *
@@ -5691,6 +5691,13 @@ declare module 'vue' {
5691
5691
  * - **base** - The main icon container.
5692
5692
  */
5693
5693
  'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
5694
+ /**
5695
+ * An icon
5696
+ *
5697
+ * ### CSS Parts:
5698
+ * - **base** - The main icon container.
5699
+ */
5700
+ 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
5694
5701
  /**
5695
5702
  * An icon
5696
5703
  *
@@ -5767,28 +5774,28 @@ declare module 'vue' {
5767
5774
  * ### CSS Parts:
5768
5775
  * - **base** - The main icon container.
5769
5776
  */
5770
- 'dap-ds-icon-checkbox-blank-circle-fill-check': DefineCustomElement<SystemCheckboxBlankCircleFillCheck, SystemCheckboxBlankCircleFillCheckProps, {}>
5777
+ 'dap-ds-icon-checkbox-blank-circle-line': DefineCustomElement<SystemCheckboxBlankCircleLine, SystemCheckboxBlankCircleLineProps, {}>
5771
5778
  /**
5772
5779
  * An icon
5773
5780
  *
5774
5781
  * ### CSS Parts:
5775
5782
  * - **base** - The main icon container.
5776
5783
  */
5777
- 'dap-ds-icon-checkbox-blank-circle-line': DefineCustomElement<SystemCheckboxBlankCircleLine, SystemCheckboxBlankCircleLineProps, {}>
5784
+ 'dap-ds-icon-checkbox-circle-fill': DefineCustomElement<SystemCheckboxCircleFill, SystemCheckboxCircleFillProps, {}>
5778
5785
  /**
5779
5786
  * An icon
5780
5787
  *
5781
5788
  * ### CSS Parts:
5782
5789
  * - **base** - The main icon container.
5783
5790
  */
5784
- 'dap-ds-icon-checkbox-circle-fill': DefineCustomElement<SystemCheckboxCircleFill, SystemCheckboxCircleFillProps, {}>
5791
+ 'dap-ds-icon-checkbox-circle-line': DefineCustomElement<SystemCheckboxCircleLine, SystemCheckboxCircleLineProps, {}>
5785
5792
  /**
5786
5793
  * An icon
5787
5794
  *
5788
5795
  * ### CSS Parts:
5789
5796
  * - **base** - The main icon container.
5790
5797
  */
5791
- 'dap-ds-icon-checkbox-circle-line': DefineCustomElement<SystemCheckboxCircleLine, SystemCheckboxCircleLineProps, {}>
5798
+ 'dap-ds-icon-checkbox-blank-circle-fill-check': DefineCustomElement<SystemCheckboxBlankCircleFillCheck, SystemCheckboxBlankCircleFillCheckProps, {}>
5792
5799
  /**
5793
5800
  * An icon
5794
5801
  *
@@ -6041,13 +6048,6 @@ declare module 'vue' {
6041
6048
  * - **base** - The main icon container.
6042
6049
  */
6043
6050
  'dap-ds-icon-upload-line': DefineCustomElement<SystemUploadLine, SystemUploadLineProps, {}>
6044
- /**
6045
- * An icon
6046
- *
6047
- * ### CSS Parts:
6048
- * - **base** - The main icon container.
6049
- */
6050
- 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6051
6051
  }
6052
6052
  }
6053
6053
 
@@ -6058,17 +6058,16 @@ declare global {
6058
6058
  'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6059
6059
  'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6060
6060
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6061
- 'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6062
6061
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6063
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6064
6062
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6065
6063
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6064
+ 'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6065
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6066
6066
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6067
6067
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6068
6068
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6069
6069
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6070
6070
  'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6071
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6072
6071
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6073
6072
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6074
6073
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
@@ -6076,6 +6075,7 @@ declare global {
6076
6075
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6077
6076
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6078
6077
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6078
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6079
6079
  'dap-ds-combobox': DapDSComboboxProps & DapDSComboboxEvents & DapDSComboboxSlots
6080
6080
  'dap-ds-command-group': DapDSCommandGroupProps & DapDSCommandGroupSlots
6081
6081
  'dap-ds-command-item': DapDSCommandItemProps & DapDSCommandItemEvents & DapDSCommandItemSlots
@@ -6150,17 +6150,17 @@ declare global {
6150
6150
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6151
6151
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6152
6152
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6153
+ 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6153
6154
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6154
6155
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6155
6156
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6156
- 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6157
6157
  'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6158
6158
  'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6159
- 'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6160
6159
  'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
6160
+ 'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6161
6161
  'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
6162
- 'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
6163
6162
  'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
6163
+ 'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
6164
6164
  'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
6165
6165
  'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6166
6166
  'dap-ds-icon-calendar-line': BusinessCalendarLineProps
@@ -6177,6 +6177,7 @@ declare global {
6177
6177
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6178
6178
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6179
6179
  'dap-ds-icon-heart-line': HealthHeartLineProps
6180
+ 'dap-ds-icon-cookie-line': OthersCookieLineProps
6180
6181
  'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6181
6182
  'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6182
6183
  'dap-ds-icon-user-fill': UserUserFillProps
@@ -6187,10 +6188,10 @@ declare global {
6187
6188
  'dap-ds-icon-check-line': SystemCheckLineProps
6188
6189
  'dap-ds-icon-check-line2': SystemCheckLine2Props
6189
6190
  'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps
6190
- 'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheckProps
6191
6191
  'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
6192
6192
  'dap-ds-icon-checkbox-circle-fill': SystemCheckboxCircleFillProps
6193
6193
  'dap-ds-icon-checkbox-circle-line': SystemCheckboxCircleLineProps
6194
+ 'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheckProps
6194
6195
  'dap-ds-icon-close-circle-fill': SystemCloseCircleFillProps
6195
6196
  'dap-ds-icon-close-circle-line': SystemCloseCircleLineProps
6196
6197
  'dap-ds-icon-close-fill': SystemCloseFillProps
@@ -6227,7 +6228,6 @@ declare global {
6227
6228
  'dap-ds-icon-upload-2-fill': SystemUpload2FillProps
6228
6229
  'dap-ds-icon-upload-2-line': SystemUpload2LineProps
6229
6230
  'dap-ds-icon-upload-line': SystemUploadLineProps
6230
- 'dap-ds-icon-cookie-line': OthersCookieLineProps
6231
6231
  }
6232
6232
  }
6233
6233
  }