dap-design-system 0.58.3 → 0.59.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -217,6 +217,11 @@ export interface 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
+
220
225
  export interface DapDSAccordionEvents {
221
226
  /** Event fired when the accordion is opened. */
222
227
  onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
@@ -224,11 +229,6 @@ export interface DapDSAccordionEvents {
224
229
  onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
225
230
  }
226
231
 
227
- export interface DapDSAvatarGroupEvents {
228
- /** Fired when the overflow indicator is clicked. */
229
- onDdsOverflowClick?: (event: CustomEvent) => void
230
- }
231
-
232
232
  export interface DapDSBannerEvents {
233
233
  /** Event fired when the banner is closed. */
234
234
  onDdsClose?: (event: CustomEvent) => void
@@ -239,16 +239,16 @@ export interface DapDSButtonEvents {
239
239
  onDdsLoadingTimeout?: (event: CustomEvent) => void
240
240
  }
241
241
 
242
- export interface DapDSCalendarEvents {
243
- /** Fired when the calendar value changes. */
244
- onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => void
245
- }
246
-
247
242
  export interface DapDSCalloutEvents {
248
243
  /** Fired when the close button is clicked. */
249
244
  onDdsClose?: (event: CustomEvent) => void
250
245
  }
251
246
 
247
+ export interface DapDSCalendarEvents {
248
+ /** Fired when the calendar value changes. */
249
+ onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => void
250
+ }
251
+
252
252
  export interface DapDSCheckboxEvents {
253
253
  /** Fired when the checkbox is checked or unchecked. */
254
254
  onDdsChange?: (event: CustomEvent<{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, readonly: boolean, type: 'checkbox' }>) => void
@@ -561,11 +561,6 @@ export interface DapDSSelectEvents {
561
561
  onDdsClosed?: (event: CustomEvent) => void
562
562
  }
563
563
 
564
- export interface DapDSSideNavEvents {
565
- /** Event fired when the side navigation item is clicked. */
566
- onDdsItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
567
- }
568
-
569
564
  export interface DapDSSnackbarMessageEvents {
570
565
  /** Fires when the snackbar closes. */
571
566
  onDdsClose?: (event: CustomEvent<{ id: string }>) => void
@@ -587,6 +582,11 @@ export interface DapDSTabGroupEvents {
587
582
  onDdsTabSelect?: (event: CustomEvent) => void
588
583
  }
589
584
 
585
+ export interface DapDSSideNavEvents {
586
+ /** Event fired when the side navigation item is clicked. */
587
+ onDdsItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
588
+ }
589
+
590
590
  export interface DapDSTextareaEvents {
591
591
  /** Fires when the count of the textarea changes. */
592
592
  onDdsCountChange?: (event: CustomEvent<{ value: number }>) => void
@@ -667,6 +667,11 @@ export interface DapDSAvatarSlots {
667
667
  'fallback'?: () => any
668
668
  }
669
669
 
670
+ export interface DapDSAvatarGroupSlots {
671
+ /** The avatars to display in the group. */
672
+ default?: () => any
673
+ }
674
+
670
675
  export interface DapDSAccordionSlots {
671
676
  /** The content of the accordion. */
672
677
  default?: () => any
@@ -678,9 +683,11 @@ export interface DapDSAccordionSlots {
678
683
  'icon-closed'?: () => any
679
684
  }
680
685
 
681
- export interface DapDSAvatarGroupSlots {
682
- /** The avatars to display in the group. */
686
+ export interface DapDSBadgeSlots {
687
+ /** The content of the badge. */
683
688
  default?: () => any
689
+ /** The icon of the badge. */
690
+ 'icon'?: () => any
684
691
  }
685
692
 
686
693
  export interface DapDSBreadcrumbSlots {
@@ -699,13 +706,6 @@ export interface DapDSBannerSlots {
699
706
  'icon'?: () => any
700
707
  }
701
708
 
702
- export interface DapDSBadgeSlots {
703
- /** The content of the badge. */
704
- default?: () => any
705
- /** The icon of the badge. */
706
- 'icon'?: () => any
707
- }
708
-
709
709
  export interface DapDSBreadcrumbItemSlots {
710
710
  /** The content of the breadcrumb item. */
711
711
  default?: () => any
@@ -718,16 +718,6 @@ export interface DapDSButtonSlots {
718
718
  default?: () => any
719
719
  }
720
720
 
721
- export interface DapDSCalendarCellSlots {
722
- /** The content of the calendar cell. */
723
- default?: () => any
724
- }
725
-
726
- export interface DapDSCalendarSlots {
727
- /** The content of the calendar. */
728
- default?: () => any
729
- }
730
-
731
721
  export interface DapDSCalloutSlots {
732
722
  /** The content of the callout. */
733
723
  default?: () => any
@@ -741,6 +731,16 @@ export interface DapDSCalloutSlots {
741
731
  'close'?: () => any
742
732
  }
743
733
 
734
+ export interface DapDSCalendarCellSlots {
735
+ /** The content of the calendar cell. */
736
+ default?: () => any
737
+ }
738
+
739
+ export interface DapDSCalendarSlots {
740
+ /** The content of the calendar. */
741
+ default?: () => any
742
+ }
743
+
744
744
  export interface DapDSCardActionsSlots {
745
745
  /** The content of the card actions. */
746
746
  default?: () => any
@@ -993,27 +993,6 @@ export interface DapDSSelectSlots {
993
993
  'indicator-icon'?: () => any
994
994
  }
995
995
 
996
- export interface DapDSSideNavGroupSlots {
997
- /** The content of the side navigation group. */
998
- default?: () => any
999
- /** The submenu of the side navigation group. */
1000
- 'submenu'?: () => any
1001
- /** The suffix of the side navigation group. */
1002
- 'suffix'?: () => any
1003
- }
1004
-
1005
- export interface DapDSSideNavItemSlots {
1006
- /** The content of the side navigation item. */
1007
- default?: () => any
1008
- /** The suffix of the side navigation item. */
1009
- 'suffix'?: () => any
1010
- }
1011
-
1012
- export interface DapDSSideNavSlots {
1013
- /** The content of the side navigation. */
1014
- default?: () => any
1015
- }
1016
-
1017
996
  export interface DapDSSkipLinkSlots {
1018
997
  /** The content of the skip link. */
1019
998
  default?: () => any
@@ -1068,6 +1047,27 @@ export interface DapDSTableSlots {
1068
1047
  default?: () => any
1069
1048
  }
1070
1049
 
1050
+ export interface DapDSSideNavGroupSlots {
1051
+ /** The content of the side navigation group. */
1052
+ default?: () => any
1053
+ /** The submenu of the side navigation group. */
1054
+ 'submenu'?: () => any
1055
+ /** The suffix of the side navigation group. */
1056
+ 'suffix'?: () => any
1057
+ }
1058
+
1059
+ export interface DapDSSideNavItemSlots {
1060
+ /** The content of the side navigation item. */
1061
+ default?: () => any
1062
+ /** The suffix of the side navigation item. */
1063
+ 'suffix'?: () => any
1064
+ }
1065
+
1066
+ export interface DapDSSideNavSlots {
1067
+ /** The content of the side navigation. */
1068
+ default?: () => any
1069
+ }
1070
+
1071
1071
  export interface DapDSTextareaSlots {
1072
1072
  /** The custom icon of the feedback. */
1073
1073
  'feedback-icon'?: () => any
@@ -1109,15 +1109,15 @@ export interface DapDSTypographySlots {
1109
1109
  default?: () => any
1110
1110
  }
1111
1111
 
1112
- export interface DapDSInputGroupSlots {
1113
- /** The content of the input group items. */
1112
+ export interface DapDSRadioGroupSlots {
1113
+ /** The content of the radio group. */
1114
1114
  default?: () => any
1115
1115
  /** The custom icon of the feedback. */
1116
1116
  'feedback-icon'?: () => any
1117
1117
  }
1118
1118
 
1119
- export interface DapDSRadioGroupSlots {
1120
- /** The content of the radio group. */
1119
+ export interface DapDSInputGroupSlots {
1120
+ /** The content of the input group items. */
1121
1121
  default?: () => any
1122
1122
  /** The custom icon of the feedback. */
1123
1123
  'feedback-icon'?: () => any
@@ -1130,6 +1130,17 @@ export type DapDSAccordionGroupProps = {
1130
1130
  variant?: DapDSAccordionGroup["variant"]
1131
1131
  }
1132
1132
 
1133
+ export type DapDSAnchorHeadingProps = {
1134
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1135
+ variant?: DapDSAnchorHeading["variant"]
1136
+ /** The label of the heading. */
1137
+ label?: DapDSAnchorHeading["label"]
1138
+ /** */
1139
+ elementId?: DapDSAnchorHeading["elementId"]
1140
+ /** */
1141
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1142
+ }
1143
+
1133
1144
  export type DapDSAvatarProps = {
1134
1145
  /** The shape of the avatar */
1135
1146
  shape?: DapDSAvatar["shape"]
@@ -1157,6 +1168,25 @@ export type DapDSAvatarProps = {
1157
1168
  sizeMap?: DapDSAvatar["sizeMap"]
1158
1169
  }
1159
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
+
1160
1190
  export type DapDSAccordionProps = {
1161
1191
  /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1162
1192
  size?: DapDSAccordion["size"]
@@ -1182,23 +1212,17 @@ export type DapDSAccordionProps = {
1182
1212
  loading?: DapDSAccordion["loading"]
1183
1213
  }
1184
1214
 
1185
- export type DapDSAvatarGroupProps = {
1186
- /** Layout type for the avatar group */
1187
- layout?: DapDSAvatarGroup["layout"]
1188
- /** Maximum number of avatars to show before showing overflow */
1189
- max?: DapDSAvatarGroup["max"]
1190
- /** Whether to show the total count in overflow indicator */
1191
- "show-total"?: DapDSAvatarGroup["showTotal"]
1192
- /** Interactive overflow indicator */
1193
- "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1194
- /** Accessible label for the avatar group */
1195
- label?: DapDSAvatarGroup["label"]
1196
- /** Accessible label for the overflow indicator */
1197
- "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1198
- /** The size of avatars in the group. Default is `md`. See SizedMixin. */
1199
- size?: DapDSAvatarGroup["size"]
1200
- /** Responsive size map (e.g. "md:lg"); see SizedMixin. */
1201
- sizeMap?: DapDSAvatarGroup["sizeMap"]
1215
+ export type DapDSBadgeProps = {
1216
+ /** The type of the badge */
1217
+ type?: DapDSBadge["type"]
1218
+ /** The icon of the badge, this is a name of a built in icon */
1219
+ icon?: DapDSBadge["icon"]
1220
+ /** Whether the badge represents dynamic content that should announce changes */
1221
+ live?: DapDSBadge["live"]
1222
+ /** The size of the badge. Default is `sm`. */
1223
+ size?: DapDSBadge["size"]
1224
+ /** Responsive size map (e.g. "md:lg"). */
1225
+ sizeMap?: DapDSBadge["sizeMap"]
1202
1226
  }
1203
1227
 
1204
1228
  export type DapDSBreadcrumbProps = {
@@ -1225,30 +1249,6 @@ export type DapDSBannerProps = {
1225
1249
  icon?: DapDSBanner["icon"]
1226
1250
  }
1227
1251
 
1228
- export type DapDSAnchorHeadingProps = {
1229
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1230
- variant?: DapDSAnchorHeading["variant"]
1231
- /** The label of the heading. */
1232
- label?: DapDSAnchorHeading["label"]
1233
- /** */
1234
- elementId?: DapDSAnchorHeading["elementId"]
1235
- /** */
1236
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1237
- }
1238
-
1239
- export type DapDSBadgeProps = {
1240
- /** The type of the badge */
1241
- type?: DapDSBadge["type"]
1242
- /** The icon of the badge, this is a name of a built in icon */
1243
- icon?: DapDSBadge["icon"]
1244
- /** Whether the badge represents dynamic content that should announce changes */
1245
- live?: DapDSBadge["live"]
1246
- /** The size of the badge. Default is `sm`. */
1247
- size?: DapDSBadge["size"]
1248
- /** Responsive size map (e.g. "md:lg"). */
1249
- sizeMap?: DapDSBadge["sizeMap"]
1250
- }
1251
-
1252
1252
  export type DapDSBreadcrumbItemProps = {
1253
1253
  /** The URL of the breadcrumb item. */
1254
1254
  href?: DapDSBreadcrumbItem["href"]
@@ -1293,6 +1293,27 @@ export type DapDSButtonProps = {
1293
1293
  sizeMap?: DapDSButton["sizeMap"]
1294
1294
  }
1295
1295
 
1296
+ export type DapDSCalloutProps = {
1297
+ /** The variant of the callout */
1298
+ variant?: DapDSCallout["variant"]
1299
+ /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1300
+ alignment?: DapDSCallout["alignment"]
1301
+ /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1302
+ shade?: DapDSCallout["shade"]
1303
+ /** If the callout has a border */
1304
+ noBorder?: DapDSCallout["noBorder"]
1305
+ /** If the callout has a close button */
1306
+ closeable?: DapDSCallout["closeable"]
1307
+ /** The header of the callout */
1308
+ title?: DapDSCallout["title"]
1309
+ /** The label of the close button */
1310
+ closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1311
+ /** `data-testid` for the default close button. */
1312
+ closeButtonTestId?: DapDSCallout["closeButtonTestId"]
1313
+ /** If the callout is opened */
1314
+ opened?: DapDSCallout["opened"]
1315
+ }
1316
+
1296
1317
  export type DapDSCalendarCellProps = {
1297
1318
  /** Whether the calendar cell is selected. */
1298
1319
  selected?: DapDSCalendarCell["selected"]
@@ -1355,91 +1376,15 @@ export type DapDSCalendarProps = {
1355
1376
  shouldHideAdjacentMonths?: DapDSCalendar["shouldHideAdjacentMonths"]
1356
1377
  }
1357
1378
 
1358
- export type DapDSCalloutProps = {
1359
- /** The variant of the callout */
1360
- variant?: DapDSCallout["variant"]
1361
- /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1362
- alignment?: DapDSCallout["alignment"]
1363
- /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1364
- shade?: DapDSCallout["shade"]
1365
- /** If the callout has a border */
1366
- noBorder?: DapDSCallout["noBorder"]
1367
- /** If the callout has a close button */
1368
- closeable?: DapDSCallout["closeable"]
1369
- /** The header of the callout */
1370
- title?: DapDSCallout["title"]
1371
- /** The label of the close button */
1372
- closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1373
- /** `data-testid` for the default close button. */
1374
- closeButtonTestId?: DapDSCallout["closeButtonTestId"]
1375
- /** If the callout is opened */
1376
- opened?: DapDSCallout["opened"]
1377
- }
1378
-
1379
- export type DapDSCheckboxProps = {
1380
- /** Whether the checkbox is indeterminate */
1381
- indeterminate?: DapDSCheckbox["indeterminate"]
1382
- /** Whether the checkbox should prevent the default action */
1383
- preventDefault?: DapDSCheckbox["preventDefault"]
1384
- /** This sets up border around the checkbox, when true. */
1385
- border?: DapDSCheckbox["border"]
1386
- /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1387
- readonly?: DapDSCheckbox["readonly"]
1388
- /** The type of the checkbox */
1389
- type?: DapDSCheckbox["type"]
1390
- /** */
1391
- focusElement?: DapDSCheckbox["focusElement"]
1392
- /** */
1393
- feedbackId?: DapDSCheckbox["feedbackId"]
1394
- /** The name of the checkbox. */
1395
- name?: DapDSCheckbox["name"]
1396
- /** The value of the checkbox. */
1397
- value?: DapDSCheckbox["value"]
1398
- /** Whether the checkbox is checked. */
1399
- checked?: DapDSCheckbox["checked"]
1400
- /** The label of the checkbox. */
1401
- label?: DapDSCheckbox["label"]
1402
- /** Visually hides the label while keeping it available to assistive technology. (default: false) */
1403
- hideLabel?: DapDSCheckbox["hideLabel"]
1404
- /** The description of the checkbox. */
1405
- description?: DapDSCheckbox["description"]
1406
- /** Whether the checkbox is disabled. */
1407
- disabled?: DapDSCheckbox["disabled"]
1408
- /** Whether the checkbox is required. */
1409
- required?: DapDSCheckbox["required"]
1410
- /** The size of the checkbox. Default is 'sm'. */
1411
- size?: DapDSCheckbox["size"]
1412
- /** Responsive size map (e.g. "md:lg"). */
1413
- sizeMap?: DapDSCheckbox["sizeMap"]
1414
- /** The placement of the label. */
1415
- labelPlacement?: DapDSCheckbox["labelPlacement"]
1416
- /** The placement of the description. */
1417
- descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1418
- /** The weight of the label. */
1419
- subtle?: DapDSCheckbox["subtle"]
1420
- /** The feedback of the checkbox. */
1421
- feedback?: DapDSCheckbox["feedback"]
1422
- /** The feedback type of the checkbox. */
1423
- feedbackType?: DapDSCheckbox["feedbackType"]
1424
- /** The invalid state of the checkbox. */
1425
- invalid?: DapDSCheckbox["invalid"]
1426
- /** The optional state of the checkbox. */
1427
- optional?: DapDSCheckbox["optional"]
1428
- /** The optional label of the checkbox. */
1429
- optionalLabel?: DapDSCheckbox["optionalLabel"]
1430
- /** The required indicator of the checkbox. (default: '*') */
1431
- requiredLabel?: DapDSCheckbox["requiredLabel"]
1432
- }
1433
-
1434
- export type DapDSCardActionsProps = {
1435
- /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1436
- spacing?: DapDSCardActions["spacing"]
1437
- /** */
1438
- parentSized?: DapDSCardActions["parentSized"]
1439
- /** The size of the card actions. Default is `sm`. */
1440
- size?: DapDSCardActions["size"]
1441
- /** Responsive size map (e.g. "md:lg"). */
1442
- sizeMap?: DapDSCardActions["sizeMap"]
1379
+ export type DapDSCardActionsProps = {
1380
+ /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1381
+ spacing?: DapDSCardActions["spacing"]
1382
+ /** */
1383
+ parentSized?: DapDSCardActions["parentSized"]
1384
+ /** The size of the card actions. Default is `sm`. */
1385
+ size?: DapDSCardActions["size"]
1386
+ /** Responsive size map (e.g. "md:lg"). */
1387
+ sizeMap?: DapDSCardActions["sizeMap"]
1443
1388
  }
1444
1389
 
1445
1390
  export type DapDSCardContentProps = {
@@ -1517,6 +1462,61 @@ export type DapDSCardProps = {
1517
1462
  sizeMap?: DapDSCard["sizeMap"]
1518
1463
  }
1519
1464
 
1465
+ export type DapDSCheckboxProps = {
1466
+ /** Whether the checkbox is indeterminate */
1467
+ indeterminate?: DapDSCheckbox["indeterminate"]
1468
+ /** Whether the checkbox should prevent the default action */
1469
+ preventDefault?: DapDSCheckbox["preventDefault"]
1470
+ /** This sets up border around the checkbox, when true. */
1471
+ border?: DapDSCheckbox["border"]
1472
+ /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1473
+ readonly?: DapDSCheckbox["readonly"]
1474
+ /** The type of the checkbox */
1475
+ type?: DapDSCheckbox["type"]
1476
+ /** */
1477
+ focusElement?: DapDSCheckbox["focusElement"]
1478
+ /** */
1479
+ feedbackId?: DapDSCheckbox["feedbackId"]
1480
+ /** The name of the checkbox. */
1481
+ name?: DapDSCheckbox["name"]
1482
+ /** The value of the checkbox. */
1483
+ value?: DapDSCheckbox["value"]
1484
+ /** Whether the checkbox is checked. */
1485
+ checked?: DapDSCheckbox["checked"]
1486
+ /** The label of the checkbox. */
1487
+ label?: DapDSCheckbox["label"]
1488
+ /** Visually hides the label while keeping it available to assistive technology. (default: false) */
1489
+ hideLabel?: DapDSCheckbox["hideLabel"]
1490
+ /** The description of the checkbox. */
1491
+ description?: DapDSCheckbox["description"]
1492
+ /** Whether the checkbox is disabled. */
1493
+ disabled?: DapDSCheckbox["disabled"]
1494
+ /** Whether the checkbox is required. */
1495
+ required?: DapDSCheckbox["required"]
1496
+ /** The size of the checkbox. Default is 'sm'. */
1497
+ size?: DapDSCheckbox["size"]
1498
+ /** Responsive size map (e.g. "md:lg"). */
1499
+ sizeMap?: DapDSCheckbox["sizeMap"]
1500
+ /** The placement of the label. */
1501
+ labelPlacement?: DapDSCheckbox["labelPlacement"]
1502
+ /** The placement of the description. */
1503
+ descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1504
+ /** The weight of the label. */
1505
+ subtle?: DapDSCheckbox["subtle"]
1506
+ /** The feedback of the checkbox. */
1507
+ feedback?: DapDSCheckbox["feedback"]
1508
+ /** The feedback type of the checkbox. */
1509
+ feedbackType?: DapDSCheckbox["feedbackType"]
1510
+ /** The invalid state of the checkbox. */
1511
+ invalid?: DapDSCheckbox["invalid"]
1512
+ /** The optional state of the checkbox. */
1513
+ optional?: DapDSCheckbox["optional"]
1514
+ /** The optional label of the checkbox. */
1515
+ optionalLabel?: DapDSCheckbox["optionalLabel"]
1516
+ /** The required indicator of the checkbox. (default: '*') */
1517
+ requiredLabel?: DapDSCheckbox["requiredLabel"]
1518
+ }
1519
+
1520
1520
  export type DapDSChipProps = {
1521
1521
  /** Whether the chip is removeable */
1522
1522
  removeable?: DapDSChip["removeable"]
@@ -1837,6 +1837,10 @@ export type DapDSDataTableProps<T> = {
1837
1837
  showNextButton?: DapDSDataTable<T>["showNextButton"]
1838
1838
  /** Show the last button. */
1839
1839
  showLastButton?: DapDSDataTable<T>["showLastButton"]
1840
+ /** Show numbered page buttons between the previous and next buttons. */
1841
+ showPageNumbers?: DapDSDataTable<T>["showPageNumbers"]
1842
+ /** How many page numbers to show on each side of the current page. */
1843
+ siblingCount?: DapDSDataTable<T>["siblingCount"]
1840
1844
  /** The label of the first button */
1841
1845
  firstButtonLabel?: DapDSDataTable<T>["firstButtonLabel"]
1842
1846
  /** The label of the previous button */
@@ -2715,6 +2719,10 @@ export type DapDSPagerProps = {
2715
2719
  showNextButton?: DapDSPager["showNextButton"]
2716
2720
  /** Show the last button. */
2717
2721
  showLastButton?: DapDSPager["showLastButton"]
2722
+ /** Show numbered page buttons between the previous and next buttons. */
2723
+ showPageNumbers?: DapDSPager["showPageNumbers"]
2724
+ /** How many page numbers to show on each side of the current page. */
2725
+ siblingCount?: DapDSPager["siblingCount"]
2718
2726
  /** The first button label. */
2719
2727
  firstButtonLabel?: DapDSPager["firstButtonLabel"]
2720
2728
  /** The previous button label. */
@@ -3050,55 +3058,6 @@ export type DapDSSelectProps = {
3050
3058
  subtle?: DapDSSelect["subtle"]
3051
3059
  }
3052
3060
 
3053
- export type DapDSSideNavGroupProps = {
3054
- /** The href of the side navigation item */
3055
- href?: DapDSSideNavGroup["href"]
3056
- /** Whether the side navigation item is active */
3057
- active?: DapDSSideNavGroup["active"]
3058
- /** The spacing of the side navigation item */
3059
- spacing?: DapDSSideNavGroup["spacing"]
3060
- /** Whether the side navigation group is open */
3061
- open?: DapDSSideNavGroup["open"]
3062
- /** The size of the side navigation group */
3063
- size?: DapDSSideNavGroup["size"]
3064
- }
3065
-
3066
- export type DapDSSideNavItemProps = {
3067
- /** The href of the side navigation item */
3068
- href?: DapDSSideNavItem["href"]
3069
- /** Whether the side navigation item is active */
3070
- active?: DapDSSideNavItem["active"]
3071
- /** Which `aria-current` token to expose on the link when `active` is set.
3072
-
3073
- `aria-current` has to sit on the anchor that assistive technology actually
3074
- exposes. Setting it on this host does nothing: the host is a role-less custom
3075
- element, so the attribute is stranded there and screen-reader users cannot tell
3076
- which item is current. Use `current="step"` inside a stepper. */
3077
- current?: DapDSSideNavItem["current"]
3078
- /** The spacing of the side navigation item */
3079
- spacing?: DapDSSideNavItem["spacing"]
3080
- /** The size of the side navigation item */
3081
- size?: DapDSSideNavItem["size"]
3082
- }
3083
-
3084
- export type DapDSSideNavProps = {
3085
- /** The label of the side navigation, if aria label is not provided, it will be used as aria label */
3086
- label?: DapDSSideNav["label"]
3087
- /** The active href of the side navigation, to explicitly set the active item, if not provided, it will be set based on the current location */
3088
- activeHref?: DapDSSideNav["activeHref"]
3089
- /** The size of the side navigation */
3090
- size?: DapDSSideNav["size"]
3091
- /** The landmark element to render. `aside` exposes a complementary landmark; `nav`
3092
- exposes a navigation landmark, so the sidenav is listed when a screen-reader user
3093
- asks for the page's navigation.
3094
-
3095
- Defaults to `aside` because that is what this component has always rendered, and
3096
- changing the landmark of every existing sidenav is not this component's call: a
3097
- sidenav that is genuinely a sidebar should stay complementary. Set `nav` when the
3098
- sidenav is the primary way to move around the view. */
3099
- landmark?: DapDSSideNav["landmark"]
3100
- }
3101
-
3102
3061
  export type DapDSSkeletonProps = {
3103
3062
  /** The variant of the skeleton. */
3104
3063
  variant?: DapDSSkeleton["variant"]
@@ -3280,6 +3239,55 @@ export type DapDSTableProps = {
3280
3239
  caption?: DapDSTable["caption"]
3281
3240
  }
3282
3241
 
3242
+ export type DapDSSideNavGroupProps = {
3243
+ /** The href of the side navigation item */
3244
+ href?: DapDSSideNavGroup["href"]
3245
+ /** Whether the side navigation item is active */
3246
+ active?: DapDSSideNavGroup["active"]
3247
+ /** The spacing of the side navigation item */
3248
+ spacing?: DapDSSideNavGroup["spacing"]
3249
+ /** Whether the side navigation group is open */
3250
+ open?: DapDSSideNavGroup["open"]
3251
+ /** The size of the side navigation group */
3252
+ size?: DapDSSideNavGroup["size"]
3253
+ }
3254
+
3255
+ export type DapDSSideNavItemProps = {
3256
+ /** The href of the side navigation item */
3257
+ href?: DapDSSideNavItem["href"]
3258
+ /** Whether the side navigation item is active */
3259
+ active?: DapDSSideNavItem["active"]
3260
+ /** Which `aria-current` token to expose on the link when `active` is set.
3261
+
3262
+ `aria-current` has to sit on the anchor that assistive technology actually
3263
+ exposes. Setting it on this host does nothing: the host is a role-less custom
3264
+ element, so the attribute is stranded there and screen-reader users cannot tell
3265
+ which item is current. Use `current="step"` inside a stepper. */
3266
+ current?: DapDSSideNavItem["current"]
3267
+ /** The spacing of the side navigation item */
3268
+ spacing?: DapDSSideNavItem["spacing"]
3269
+ /** The size of the side navigation item */
3270
+ size?: DapDSSideNavItem["size"]
3271
+ }
3272
+
3273
+ export type DapDSSideNavProps = {
3274
+ /** The label of the side navigation, if aria label is not provided, it will be used as aria label */
3275
+ label?: DapDSSideNav["label"]
3276
+ /** The active href of the side navigation, to explicitly set the active item, if not provided, it will be set based on the current location */
3277
+ activeHref?: DapDSSideNav["activeHref"]
3278
+ /** The size of the side navigation */
3279
+ size?: DapDSSideNav["size"]
3280
+ /** The landmark element to render. `aside` exposes a complementary landmark; `nav`
3281
+ exposes a navigation landmark, so the sidenav is listed when a screen-reader user
3282
+ asks for the page's navigation.
3283
+
3284
+ Defaults to `aside` because that is what this component has always rendered, and
3285
+ changing the landmark of every existing sidenav is not this component's call: a
3286
+ sidenav that is genuinely a sidebar should stay complementary. Set `nav` when the
3287
+ sidenav is the primary way to move around the view. */
3288
+ landmark?: DapDSSideNav["landmark"]
3289
+ }
3290
+
3283
3291
  export type DapDSTextareaProps = {
3284
3292
  /** Hide character counter. */
3285
3293
  hideCounter?: DapDSTextarea["hideCounter"]
@@ -3601,41 +3609,6 @@ export type DapDSFormLabelProps = {
3601
3609
  hideLabel?: DapDSFormLabel["hideLabel"]
3602
3610
  }
3603
3611
 
3604
- export type DapDSInputGroupProps = {
3605
- /** */
3606
- allInputs?: DapDSInputGroup["allInputs"]
3607
- /** The label of the input group. */
3608
- label?: DapDSInputGroup["label"]
3609
- /** Visually hides the label while keeping it available to assistive technology. (default: false) */
3610
- hideLabel?: DapDSInputGroup["hideLabel"]
3611
- /** The description of the input group. */
3612
- description?: DapDSInputGroup["description"]
3613
- /** The tooltip of the input group. */
3614
- tooltip?: DapDSInputGroup["tooltip"]
3615
- /** The tooltip placement of the input group. */
3616
- tooltipPlacement?: DapDSInputGroup["tooltipPlacement"]
3617
- /** The aria label of the tooltip. */
3618
- tooltipAriaLabel?: DapDSInputGroup["tooltipAriaLabel"]
3619
- /** The label of the input group when it is optional. */
3620
- optionalLabel?: DapDSInputGroup["optionalLabel"]
3621
- /** The indicator of the input group when it is required. (default: '*') */
3622
- requiredLabel?: DapDSInputGroup["requiredLabel"]
3623
- /** Whether the input group is disabled. */
3624
- disabled?: DapDSInputGroup["disabled"]
3625
- /** The size of the input group. Default is `sm`. */
3626
- size?: DapDSInputGroup["size"]
3627
- /** Whether the input group is required. */
3628
- required?: DapDSInputGroup["required"]
3629
- /** Whether the input group is optional. */
3630
- optional?: DapDSInputGroup["optional"]
3631
- /** The feedback of the input. */
3632
- feedback?: DapDSInputGroup["feedback"]
3633
- /** The type of the feedback. */
3634
- feedbackType?: DapDSInputGroup["feedbackType"]
3635
- /** Whether the input group label is subtle. */
3636
- subtle?: DapDSInputGroup["subtle"]
3637
- }
3638
-
3639
3612
  export type DapDSRadioGroupProps = {
3640
3613
  /** The tooltip placement of the radio group. */
3641
3614
  tooltipPlacement?: DapDSRadioGroup["tooltipPlacement"]
@@ -3677,15 +3650,50 @@ export type DapDSRadioGroupProps = {
3677
3650
  size?: DapDSRadioGroup["size"]
3678
3651
  }
3679
3652
 
3680
- export type ArrowsArrowDownLineProps = {
3681
- /** (optional) The width and height in pixels */
3682
- size?: ArrowsArrowDownLine["size"]
3683
- /** (optional) Sets the icon color via the `fill` attribute */
3684
- selected?: ArrowsArrowDownLine["selected"]
3685
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3686
- accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
3687
- /** (optional) If `true` the icon can receive focus */
3688
- focusable?: ArrowsArrowDownLine["focusable"]
3653
+ export type DapDSInputGroupProps = {
3654
+ /** */
3655
+ allInputs?: DapDSInputGroup["allInputs"]
3656
+ /** The label of the input group. */
3657
+ label?: DapDSInputGroup["label"]
3658
+ /** Visually hides the label while keeping it available to assistive technology. (default: false) */
3659
+ hideLabel?: DapDSInputGroup["hideLabel"]
3660
+ /** The description of the input group. */
3661
+ description?: DapDSInputGroup["description"]
3662
+ /** The tooltip of the input group. */
3663
+ tooltip?: DapDSInputGroup["tooltip"]
3664
+ /** The tooltip placement of the input group. */
3665
+ tooltipPlacement?: DapDSInputGroup["tooltipPlacement"]
3666
+ /** The aria label of the tooltip. */
3667
+ tooltipAriaLabel?: DapDSInputGroup["tooltipAriaLabel"]
3668
+ /** The label of the input group when it is optional. */
3669
+ optionalLabel?: DapDSInputGroup["optionalLabel"]
3670
+ /** The indicator of the input group when it is required. (default: '*') */
3671
+ requiredLabel?: DapDSInputGroup["requiredLabel"]
3672
+ /** Whether the input group is disabled. */
3673
+ disabled?: DapDSInputGroup["disabled"]
3674
+ /** The size of the input group. Default is `sm`. */
3675
+ size?: DapDSInputGroup["size"]
3676
+ /** Whether the input group is required. */
3677
+ required?: DapDSInputGroup["required"]
3678
+ /** Whether the input group is optional. */
3679
+ optional?: DapDSInputGroup["optional"]
3680
+ /** The feedback of the input. */
3681
+ feedback?: DapDSInputGroup["feedback"]
3682
+ /** The type of the feedback. */
3683
+ feedbackType?: DapDSInputGroup["feedbackType"]
3684
+ /** Whether the input group label is subtle. */
3685
+ subtle?: DapDSInputGroup["subtle"]
3686
+ }
3687
+
3688
+ export type ArrowsArrowDownLineProps = {
3689
+ /** (optional) The width and height in pixels */
3690
+ size?: ArrowsArrowDownLine["size"]
3691
+ /** (optional) Sets the icon color via the `fill` attribute */
3692
+ selected?: ArrowsArrowDownLine["selected"]
3693
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3694
+ accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
3695
+ /** (optional) If `true` the icon can receive focus */
3696
+ focusable?: ArrowsArrowDownLine["focusable"]
3689
3697
  }
3690
3698
 
3691
3699
  export type ArrowsArrowDownSFillProps = {
@@ -3732,17 +3740,6 @@ export type ArrowsArrowLeftLLineProps = {
3732
3740
  focusable?: ArrowsArrowLeftLLine["focusable"]
3733
3741
  }
3734
3742
 
3735
- export type ArrowsArrowLeftLineProps = {
3736
- /** (optional) The width and height in pixels */
3737
- size?: ArrowsArrowLeftLine["size"]
3738
- /** (optional) Sets the icon color via the `fill` attribute */
3739
- selected?: ArrowsArrowLeftLine["selected"]
3740
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3741
- accessibilityTitle?: ArrowsArrowLeftLine["accessibilityTitle"]
3742
- /** (optional) If `true` the icon can receive focus */
3743
- focusable?: ArrowsArrowLeftLine["focusable"]
3744
- }
3745
-
3746
3743
  export type ArrowsArrowLeftSFillProps = {
3747
3744
  /** (optional) The width and height in pixels */
3748
3745
  size?: ArrowsArrowLeftSFill["size"]
@@ -3754,26 +3751,26 @@ export type ArrowsArrowLeftSFillProps = {
3754
3751
  focusable?: ArrowsArrowLeftSFill["focusable"]
3755
3752
  }
3756
3753
 
3757
- export type ArrowsArrowLeftSLineProps = {
3754
+ export type ArrowsArrowLeftLineProps = {
3758
3755
  /** (optional) The width and height in pixels */
3759
- size?: ArrowsArrowLeftSLine["size"]
3756
+ size?: ArrowsArrowLeftLine["size"]
3760
3757
  /** (optional) Sets the icon color via the `fill` attribute */
3761
- selected?: ArrowsArrowLeftSLine["selected"]
3758
+ selected?: ArrowsArrowLeftLine["selected"]
3762
3759
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3763
- accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3760
+ accessibilityTitle?: ArrowsArrowLeftLine["accessibilityTitle"]
3764
3761
  /** (optional) If `true` the icon can receive focus */
3765
- focusable?: ArrowsArrowLeftSLine["focusable"]
3762
+ focusable?: ArrowsArrowLeftLine["focusable"]
3766
3763
  }
3767
3764
 
3768
- export type ArrowsArrowLeftUpLineProps = {
3765
+ export type ArrowsArrowLeftSLineProps = {
3769
3766
  /** (optional) The width and height in pixels */
3770
- size?: ArrowsArrowLeftUpLine["size"]
3767
+ size?: ArrowsArrowLeftSLine["size"]
3771
3768
  /** (optional) Sets the icon color via the `fill` attribute */
3772
- selected?: ArrowsArrowLeftUpLine["selected"]
3769
+ selected?: ArrowsArrowLeftSLine["selected"]
3773
3770
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3774
- accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
3771
+ accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3775
3772
  /** (optional) If `true` the icon can receive focus */
3776
- focusable?: ArrowsArrowLeftUpLine["focusable"]
3773
+ focusable?: ArrowsArrowLeftSLine["focusable"]
3777
3774
  }
3778
3775
 
3779
3776
  export type ArrowsArrowRightDownLineProps = {
@@ -3798,6 +3795,17 @@ export type ArrowsArrowRightLLineProps = {
3798
3795
  focusable?: ArrowsArrowRightLLine["focusable"]
3799
3796
  }
3800
3797
 
3798
+ export type ArrowsArrowLeftUpLineProps = {
3799
+ /** (optional) The width and height in pixels */
3800
+ size?: ArrowsArrowLeftUpLine["size"]
3801
+ /** (optional) Sets the icon color via the `fill` attribute */
3802
+ selected?: ArrowsArrowLeftUpLine["selected"]
3803
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3804
+ accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
3805
+ /** (optional) If `true` the icon can receive focus */
3806
+ focusable?: ArrowsArrowLeftUpLine["focusable"]
3807
+ }
3808
+
3801
3809
  export type ArrowsArrowRightLineProps = {
3802
3810
  /** (optional) The width and height in pixels */
3803
3811
  size?: ArrowsArrowRightLine["size"]
@@ -4062,70 +4070,26 @@ export type HealthHeartLineProps = {
4062
4070
  focusable?: HealthHeartLine["focusable"]
4063
4071
  }
4064
4072
 
4065
- export type OthersCookieLineProps = {
4066
- /** (optional) The width and height in pixels */
4067
- size?: OthersCookieLine["size"]
4068
- /** (optional) Sets the icon color via the `fill` attribute */
4069
- selected?: OthersCookieLine["selected"]
4070
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4071
- accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
4072
- /** (optional) If `true` the icon can receive focus */
4073
- focusable?: OthersCookieLine["focusable"]
4074
- }
4075
-
4076
- export type UserAccountCircleFillProps = {
4077
- /** (optional) The width and height in pixels */
4078
- size?: UserAccountCircleFill["size"]
4079
- /** (optional) Sets the icon color via the `fill` attribute */
4080
- selected?: UserAccountCircleFill["selected"]
4081
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4082
- accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4083
- /** (optional) If `true` the icon can receive focus */
4084
- focusable?: UserAccountCircleFill["focusable"]
4085
- }
4086
-
4087
- export type UserAccountCircleLineProps = {
4088
- /** (optional) The width and height in pixels */
4089
- size?: UserAccountCircleLine["size"]
4090
- /** (optional) Sets the icon color via the `fill` attribute */
4091
- selected?: UserAccountCircleLine["selected"]
4092
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4093
- accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4094
- /** (optional) If `true` the icon can receive focus */
4095
- focusable?: UserAccountCircleLine["focusable"]
4096
- }
4097
-
4098
- export type UserUserFillProps = {
4099
- /** (optional) The width and height in pixels */
4100
- size?: UserUserFill["size"]
4101
- /** (optional) Sets the icon color via the `fill` attribute */
4102
- selected?: UserUserFill["selected"]
4103
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4104
- accessibilityTitle?: UserUserFill["accessibilityTitle"]
4105
- /** (optional) If `true` the icon can receive focus */
4106
- focusable?: UserUserFill["focusable"]
4107
- }
4108
-
4109
- export type UserUserLineProps = {
4073
+ export type SystemAddLineProps = {
4110
4074
  /** (optional) The width and height in pixels */
4111
- size?: UserUserLine["size"]
4075
+ size?: SystemAddLine["size"]
4112
4076
  /** (optional) Sets the icon color via the `fill` attribute */
4113
- selected?: UserUserLine["selected"]
4077
+ selected?: SystemAddLine["selected"]
4114
4078
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4115
- accessibilityTitle?: UserUserLine["accessibilityTitle"]
4079
+ accessibilityTitle?: SystemAddLine["accessibilityTitle"]
4116
4080
  /** (optional) If `true` the icon can receive focus */
4117
- focusable?: UserUserLine["focusable"]
4081
+ focusable?: SystemAddLine["focusable"]
4118
4082
  }
4119
4083
 
4120
- export type SystemAddLineProps = {
4084
+ export type OthersCookieLineProps = {
4121
4085
  /** (optional) The width and height in pixels */
4122
- size?: SystemAddLine["size"]
4086
+ size?: OthersCookieLine["size"]
4123
4087
  /** (optional) Sets the icon color via the `fill` attribute */
4124
- selected?: SystemAddLine["selected"]
4088
+ selected?: OthersCookieLine["selected"]
4125
4089
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4126
- accessibilityTitle?: SystemAddLine["accessibilityTitle"]
4090
+ accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
4127
4091
  /** (optional) If `true` the icon can receive focus */
4128
- focusable?: SystemAddLine["focusable"]
4092
+ focusable?: OthersCookieLine["focusable"]
4129
4093
  }
4130
4094
 
4131
4095
  export type SystemAlertFillProps = {
@@ -4645,6 +4609,50 @@ export type SystemZoomOutLineProps = {
4645
4609
  focusable?: SystemZoomOutLine["focusable"]
4646
4610
  }
4647
4611
 
4612
+ export type UserAccountCircleFillProps = {
4613
+ /** (optional) The width and height in pixels */
4614
+ size?: UserAccountCircleFill["size"]
4615
+ /** (optional) Sets the icon color via the `fill` attribute */
4616
+ selected?: UserAccountCircleFill["selected"]
4617
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4618
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4619
+ /** (optional) If `true` the icon can receive focus */
4620
+ focusable?: UserAccountCircleFill["focusable"]
4621
+ }
4622
+
4623
+ export type UserAccountCircleLineProps = {
4624
+ /** (optional) The width and height in pixels */
4625
+ size?: UserAccountCircleLine["size"]
4626
+ /** (optional) Sets the icon color via the `fill` attribute */
4627
+ selected?: UserAccountCircleLine["selected"]
4628
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4629
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4630
+ /** (optional) If `true` the icon can receive focus */
4631
+ focusable?: UserAccountCircleLine["focusable"]
4632
+ }
4633
+
4634
+ export type UserUserFillProps = {
4635
+ /** (optional) The width and height in pixels */
4636
+ size?: UserUserFill["size"]
4637
+ /** (optional) Sets the icon color via the `fill` attribute */
4638
+ selected?: UserUserFill["selected"]
4639
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4640
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
4641
+ /** (optional) If `true` the icon can receive focus */
4642
+ focusable?: UserUserFill["focusable"]
4643
+ }
4644
+
4645
+ export type UserUserLineProps = {
4646
+ /** (optional) The width and height in pixels */
4647
+ size?: UserUserLine["size"]
4648
+ /** (optional) Sets the icon color via the `fill` attribute */
4649
+ selected?: UserUserLine["selected"]
4650
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4651
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
4652
+ /** (optional) If `true` the icon can receive focus */
4653
+ focusable?: UserUserLine["focusable"]
4654
+ }
4655
+
4648
4656
  // Augment Vue's GlobalComponents interface
4649
4657
  declare module 'vue' {
4650
4658
  interface GlobalComponents {
@@ -4658,6 +4666,16 @@ declare module 'vue' {
4658
4666
  * - **base** - The main accordion group container.
4659
4667
  */
4660
4668
  'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4669
+ /**
4670
+ * Anchor heading is a heading with an anchor link.
4671
+ *
4672
+ * ### CSS Parts:
4673
+ * - **base** - The main anchor heading container.
4674
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4675
+ * - **link-base** - The base of the link part.
4676
+ * - **text** - The text of the anchor heading.
4677
+ */
4678
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4661
4679
  /**
4662
4680
  * Avatar component can be used to display user profile images, initials, or icons.
4663
4681
  *
@@ -4678,6 +4696,21 @@ declare module 'vue' {
4678
4696
  * - **loading** - The loading indicator.
4679
4697
  */
4680
4698
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4699
+ /**
4700
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4701
+ *
4702
+ * ### Events:
4703
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4704
+ *
4705
+ * ### Slots:
4706
+ * - **default** - The avatars to display in the group.
4707
+ *
4708
+ * ### CSS Parts:
4709
+ * - **base** - The main container of the avatar group.
4710
+ * - **avatars** - The container for the visible avatars.
4711
+ * - **overflow** - The overflow indicator element.
4712
+ */
4713
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4681
4714
  /**
4682
4715
  * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4683
4716
  *
@@ -4705,20 +4738,19 @@ declare module 'vue' {
4705
4738
  */
4706
4739
  'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4707
4740
  /**
4708
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4709
- *
4710
- * ### Events:
4711
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4741
+ * A badge is a small status descriptor for UI elements.
4712
4742
  *
4713
4743
  * ### Slots:
4714
- * - **default** - The avatars to display in the group.
4744
+ * - **default** - The content of the badge.
4745
+ * - **icon** - The icon of the badge.
4715
4746
  *
4716
4747
  * ### CSS Parts:
4717
- * - **base** - The main container of the avatar group.
4718
- * - **avatars** - The container for the visible avatars.
4719
- * - **overflow** - The overflow indicator element.
4748
+ * - **base** - The main container of the badge.
4749
+ * - **icon** - The icon of the badge.
4750
+ * - **content** - The content of the badge.
4751
+ * - **icon-base** - The base of the icon.
4720
4752
  */
4721
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4753
+ 'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4722
4754
  /**
4723
4755
  * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4724
4756
  *
@@ -4755,30 +4787,6 @@ declare module 'vue' {
4755
4787
  * - **title** - The title of the banner.
4756
4788
  */
4757
4789
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4758
- /**
4759
- * Anchor heading is a heading with an anchor link.
4760
- *
4761
- * ### CSS Parts:
4762
- * - **base** - The main anchor heading container.
4763
- * - **link** - The link of the anchor heading. dap-ds-link element.
4764
- * - **link-base** - The base of the link part.
4765
- * - **text** - The text of the anchor heading.
4766
- */
4767
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4768
- /**
4769
- * A badge is a small status descriptor for UI elements.
4770
- *
4771
- * ### Slots:
4772
- * - **default** - The content of the badge.
4773
- * - **icon** - The icon of the badge.
4774
- *
4775
- * ### CSS Parts:
4776
- * - **base** - The main container of the badge.
4777
- * - **icon** - The icon of the badge.
4778
- * - **content** - The content of the badge.
4779
- * - **icon-base** - The base of the icon.
4780
- */
4781
- 'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4782
4790
  /**
4783
4791
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4784
4792
  *
@@ -4809,39 +4817,6 @@ declare module 'vue' {
4809
4817
  * - **content** - The content wrapper inside the button.
4810
4818
  */
4811
4819
  'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
4812
- /**
4813
- * Calendar cell represents a single cell in the calendar.
4814
- *
4815
- * ### Slots:
4816
- * - **default** - The content of the calendar cell.
4817
- *
4818
- * ### CSS Parts:
4819
- * - **base** - The main calendar cell container.
4820
- * - **today-mark** - The today mark of the calendar cell.
4821
- */
4822
- 'dap-ds-calendar-cell': DefineCustomElement<DapDSCalendarCell, DapDSCalendarCellProps, {}>
4823
- /**
4824
- * A calendar is a visual representation of dates. It allows users to select a date.
4825
- *
4826
- * ### Events:
4827
- * - **dds-change** - Fired when the calendar value changes.
4828
- *
4829
- * ### Slots:
4830
- * - **default** - The content of the calendar.
4831
- *
4832
- * ### CSS Parts:
4833
- * - **base** - The main calendar container.
4834
- * - **calendar-header** - The header of the calendar.
4835
- * - **body** - The body of the calendar.
4836
- * - **calendar-grid-header** - The header of the calendar grid.
4837
- * - **calendar-grid-header-cell** - The header cell of the calendar grid.
4838
- * - **calendar-grid-cell** - The cell of the calendar grid.
4839
- * - **calendar-header-button-prev** - The previous month button of the calendar header.
4840
- * - **calendar-header-button-next** - The next month button of the calendar header.
4841
- * - **calendar-header-year-select** - The year select of the calendar header.
4842
- * - **calendar-header-month-select** - The month select of the calendar header.
4843
- */
4844
- 'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
4845
4820
  /**
4846
4821
  *
4847
4822
  *
@@ -4867,26 +4842,38 @@ declare module 'vue' {
4867
4842
  */
4868
4843
  'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4869
4844
  /**
4870
- * A checkbox is a form element that allows the user to select one or more options from a set.
4845
+ * Calendar cell represents a single cell in the calendar.
4871
4846
  *
4872
- * ### Events:
4873
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4874
- * - **dds-blur** - Emitted when the checkbox loses focus.
4875
- * - **dds-focus** - Emitted when the checkbox gains focus.
4876
- * - **dds-input** - Emitted when the checkbox receives input.
4847
+ * ### Slots:
4848
+ * - **default** - The content of the calendar cell.
4877
4849
  *
4878
4850
  * ### CSS Parts:
4879
- * - **base** - The main checkbox container.
4880
- * - **label** - The label of the checkbox.
4881
- * - **input** - The input of the checkbox.
4882
- * - **control** - The control of the checkbox.
4883
- * - **icon** - The icon of the checkbox.
4884
- * - **icon-base** - The base icon container.
4885
- * - **label-container** - The label container of the checkbox.
4886
- * - **description** - The description of the checkbox.
4887
- * - **readonly** - The readonly state of the checkbox.
4851
+ * - **base** - The main calendar cell container.
4852
+ * - **today-mark** - The today mark of the calendar cell.
4853
+ */
4854
+ 'dap-ds-calendar-cell': DefineCustomElement<DapDSCalendarCell, DapDSCalendarCellProps, {}>
4855
+ /**
4856
+ * A calendar is a visual representation of dates. It allows users to select a date.
4857
+ *
4858
+ * ### Events:
4859
+ * - **dds-change** - Fired when the calendar value changes.
4860
+ *
4861
+ * ### Slots:
4862
+ * - **default** - The content of the calendar.
4863
+ *
4864
+ * ### CSS Parts:
4865
+ * - **base** - The main calendar container.
4866
+ * - **calendar-header** - The header of the calendar.
4867
+ * - **body** - The body of the calendar.
4868
+ * - **calendar-grid-header** - The header of the calendar grid.
4869
+ * - **calendar-grid-header-cell** - The header cell of the calendar grid.
4870
+ * - **calendar-grid-cell** - The cell of the calendar grid.
4871
+ * - **calendar-header-button-prev** - The previous month button of the calendar header.
4872
+ * - **calendar-header-button-next** - The next month button of the calendar header.
4873
+ * - **calendar-header-year-select** - The year select of the calendar header.
4874
+ * - **calendar-header-month-select** - The month select of the calendar header.
4888
4875
  */
4889
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4876
+ 'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
4890
4877
  /**
4891
4878
  * A card actions is a container for actions in a card.
4892
4879
  *
@@ -4947,6 +4934,27 @@ declare module 'vue' {
4947
4934
  * - **base** - The main card container.
4948
4935
  */
4949
4936
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4937
+ /**
4938
+ * A checkbox is a form element that allows the user to select one or more options from a set.
4939
+ *
4940
+ * ### Events:
4941
+ * - **dds-change** - Fired when the checkbox is checked or unchecked.
4942
+ * - **dds-blur** - Emitted when the checkbox loses focus.
4943
+ * - **dds-focus** - Emitted when the checkbox gains focus.
4944
+ * - **dds-input** - Emitted when the checkbox receives input.
4945
+ *
4946
+ * ### CSS Parts:
4947
+ * - **base** - The main checkbox container.
4948
+ * - **label** - The label of the checkbox.
4949
+ * - **input** - The input of the checkbox.
4950
+ * - **control** - The control of the checkbox.
4951
+ * - **icon** - The icon of the checkbox.
4952
+ * - **icon-base** - The base icon container.
4953
+ * - **label-container** - The label container of the checkbox.
4954
+ * - **description** - The description of the checkbox.
4955
+ * - **readonly** - The readonly state of the checkbox.
4956
+ */
4957
+ 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4950
4958
  /**
4951
4959
  * A chip is a small status descriptor for UI elements.
4952
4960
  *
@@ -5627,6 +5635,12 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5627
5635
  * - **pager-button-last-content** - The content of the last page button.
5628
5636
  * - **page-size-select-base** - The base of the page size select.
5629
5637
  * - **page-size-select-trigger** - The trigger of the page size select.
5638
+ * - **page-numbers** - The container of the numbered page buttons (shown when showPageNumbers is 'true').
5639
+ * - **page-number** - Each numbered page button.
5640
+ * - **page-number-active** - The active (current) numbered page button.
5641
+ * - **page-number-base** - The base of each numbered page button.
5642
+ * - **page-number-content** - The content of each numbered page button.
5643
+ * - **page-info** - The page info / total count text.
5630
5644
  */
5631
5645
  'dap-ds-pager': DefineCustomElement<DapDSPager, DapDSPagerProps, DapDSPagerEvents>
5632
5646
  /**
@@ -5802,48 +5816,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5802
5816
  * - **mobile-footer** - The mobile footer of the select.
5803
5817
  */
5804
5818
  'dap-ds-select': DefineCustomElement<DapDSSelect, DapDSSelectProps, DapDSSelectEvents>
5805
- /**
5806
- * Side navigation group
5807
- *
5808
- * ### Slots:
5809
- * - **default** - The content of the side navigation group.
5810
- * - **submenu** - The submenu of the side navigation group.
5811
- * - **suffix** - The suffix of the side navigation group.
5812
- *
5813
- * ### CSS Parts:
5814
- * - **base** - The main side navigation group container.
5815
- * - **title** - The title of the side navigation group.
5816
- * - **link** - The link of the side navigation group.
5817
- * - **toggle** - The toggle button of the side navigation group.
5818
- * - **submenu** - The submenu of the side navigation group.
5819
- */
5820
- 'dap-ds-sidenav-group': DefineCustomElement<DapDSSideNavGroup, DapDSSideNavGroupProps, {}>
5821
- /**
5822
- * Side navigation item
5823
- *
5824
- * ### Slots:
5825
- * - **default** - The content of the side navigation item.
5826
- * - **suffix** - The suffix of the side navigation item.
5827
- *
5828
- * ### CSS Parts:
5829
- * - **base** - The main side navigation item container.
5830
- * - **link** - The link of the side navigation item.
5831
- */
5832
- 'dap-ds-sidenav-item': DefineCustomElement<DapDSSideNavItem, DapDSSideNavItemProps, {}>
5833
- /**
5834
- * Side navigation is a list of links that are used to navigate to different sections of a page.
5835
- *
5836
- * ### Events:
5837
- * - **dds-item-click** - Event fired when the side navigation item is clicked.
5838
- *
5839
- * ### Slots:
5840
- * - **default** - The content of the side navigation.
5841
- *
5842
- * ### CSS Parts:
5843
- * - **base** - The main side navigation container.
5844
- * - **menu** - The menu of the side navigation.
5845
- */
5846
- 'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
5847
5819
  /**
5848
5820
  * A skeleton loader component for displaying placeholder content while loading.
5849
5821
  *
@@ -5995,6 +5967,48 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5995
5967
  * - **default** - The default slot. Accepts `dap-ds-table-row` elements.
5996
5968
  */
5997
5969
  'dap-ds-table': DefineCustomElement<DapDSTable, DapDSTableProps, {}>
5970
+ /**
5971
+ * Side navigation group
5972
+ *
5973
+ * ### Slots:
5974
+ * - **default** - The content of the side navigation group.
5975
+ * - **submenu** - The submenu of the side navigation group.
5976
+ * - **suffix** - The suffix of the side navigation group.
5977
+ *
5978
+ * ### CSS Parts:
5979
+ * - **base** - The main side navigation group container.
5980
+ * - **title** - The title of the side navigation group.
5981
+ * - **link** - The link of the side navigation group.
5982
+ * - **toggle** - The toggle button of the side navigation group.
5983
+ * - **submenu** - The submenu of the side navigation group.
5984
+ */
5985
+ 'dap-ds-sidenav-group': DefineCustomElement<DapDSSideNavGroup, DapDSSideNavGroupProps, {}>
5986
+ /**
5987
+ * Side navigation item
5988
+ *
5989
+ * ### Slots:
5990
+ * - **default** - The content of the side navigation item.
5991
+ * - **suffix** - The suffix of the side navigation item.
5992
+ *
5993
+ * ### CSS Parts:
5994
+ * - **base** - The main side navigation item container.
5995
+ * - **link** - The link of the side navigation item.
5996
+ */
5997
+ 'dap-ds-sidenav-item': DefineCustomElement<DapDSSideNavItem, DapDSSideNavItemProps, {}>
5998
+ /**
5999
+ * Side navigation is a list of links that are used to navigate to different sections of a page.
6000
+ *
6001
+ * ### Events:
6002
+ * - **dds-item-click** - Event fired when the side navigation item is clicked.
6003
+ *
6004
+ * ### Slots:
6005
+ * - **default** - The content of the side navigation.
6006
+ *
6007
+ * ### CSS Parts:
6008
+ * - **base** - The main side navigation container.
6009
+ * - **menu** - The menu of the side navigation.
6010
+ */
6011
+ 'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
5998
6012
  /**
5999
6013
  * A textarea is a multi-line text input field.
6000
6014
  *
@@ -6164,21 +6178,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6164
6178
  * - **optional** - The optional indicator of the form label.
6165
6179
  */
6166
6180
  'dap-ds-form-label': DefineCustomElement<DapDSFormLabel, DapDSFormLabelProps, {}>
6167
- /**
6168
- * An input group is a container for inputs.
6169
- *
6170
- * ### Slots:
6171
- * - **default** - The content of the input group items.
6172
- * - **feedback-icon** - The custom icon of the feedback.
6173
- *
6174
- * ### CSS Parts:
6175
- * - **base** - The main input group container.
6176
- * - **label** - The label of the input group.
6177
- * - **description** - The description of the input group.
6178
- * - **tooltip** - The tooltip of the input group.
6179
- * - **container** - The container of the input group items.
6180
- */
6181
- 'dap-ds-input-group': DefineCustomElement<DapDSInputGroup, DapDSInputGroupProps, {}>
6182
6181
  /**
6183
6182
  * A radio group is a form element that allows the user to select one option from a set.
6184
6183
  *
@@ -6198,6 +6197,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6198
6197
  * - **container** - The container of the radio group items.
6199
6198
  */
6200
6199
  'dap-ds-radio-group': DefineCustomElement<DapDSRadioGroup, DapDSRadioGroupProps, DapDSRadioGroupEvents>
6200
+ /**
6201
+ * An input group is a container for inputs.
6202
+ *
6203
+ * ### Slots:
6204
+ * - **default** - The content of the input group items.
6205
+ * - **feedback-icon** - The custom icon of the feedback.
6206
+ *
6207
+ * ### CSS Parts:
6208
+ * - **base** - The main input group container.
6209
+ * - **label** - The label of the input group.
6210
+ * - **description** - The description of the input group.
6211
+ * - **tooltip** - The tooltip of the input group.
6212
+ * - **container** - The container of the input group items.
6213
+ */
6214
+ 'dap-ds-input-group': DefineCustomElement<DapDSInputGroup, DapDSInputGroupProps, {}>
6201
6215
  /**
6202
6216
  * An icon
6203
6217
  *
@@ -6239,14 +6253,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6239
6253
  * ### CSS Parts:
6240
6254
  * - **base** - The main icon container.
6241
6255
  */
6242
- 'dap-ds-icon-arrow-left-line': DefineCustomElement<ArrowsArrowLeftLine, ArrowsArrowLeftLineProps, {}>
6256
+ 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6243
6257
  /**
6244
6258
  * An icon
6245
6259
  *
6246
6260
  * ### CSS Parts:
6247
6261
  * - **base** - The main icon container.
6248
6262
  */
6249
- 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6263
+ 'dap-ds-icon-arrow-left-line': DefineCustomElement<ArrowsArrowLeftLine, ArrowsArrowLeftLineProps, {}>
6250
6264
  /**
6251
6265
  * An icon
6252
6266
  *
@@ -6260,21 +6274,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6260
6274
  * ### CSS Parts:
6261
6275
  * - **base** - The main icon container.
6262
6276
  */
6263
- 'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
6277
+ 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
6264
6278
  /**
6265
6279
  * An icon
6266
6280
  *
6267
6281
  * ### CSS Parts:
6268
6282
  * - **base** - The main icon container.
6269
6283
  */
6270
- 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
6284
+ 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6271
6285
  /**
6272
6286
  * An icon
6273
6287
  *
6274
6288
  * ### CSS Parts:
6275
6289
  * - **base** - The main icon container.
6276
6290
  */
6277
- 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6291
+ 'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
6278
6292
  /**
6279
6293
  * An icon
6280
6294
  *
@@ -6449,42 +6463,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6449
6463
  * ### CSS Parts:
6450
6464
  * - **base** - The main icon container.
6451
6465
  */
6452
- 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6453
- /**
6454
- * An icon
6455
- *
6456
- * ### CSS Parts:
6457
- * - **base** - The main icon container.
6458
- */
6459
- 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6460
- /**
6461
- * An icon
6462
- *
6463
- * ### CSS Parts:
6464
- * - **base** - The main icon container.
6465
- */
6466
- 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6467
- /**
6468
- * An icon
6469
- *
6470
- * ### CSS Parts:
6471
- * - **base** - The main icon container.
6472
- */
6473
- 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6474
- /**
6475
- * An icon
6476
- *
6477
- * ### CSS Parts:
6478
- * - **base** - The main icon container.
6479
- */
6480
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6466
+ 'dap-ds-icon-add-line': DefineCustomElement<SystemAddLine, SystemAddLineProps, {}>
6481
6467
  /**
6482
6468
  * An icon
6483
6469
  *
6484
6470
  * ### CSS Parts:
6485
6471
  * - **base** - The main icon container.
6486
6472
  */
6487
- 'dap-ds-icon-add-line': DefineCustomElement<SystemAddLine, SystemAddLineProps, {}>
6473
+ 'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6488
6474
  /**
6489
6475
  * An icon
6490
6476
  *
@@ -6814,6 +6800,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6814
6800
  * - **base** - The main icon container.
6815
6801
  */
6816
6802
  'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
6803
+ /**
6804
+ * An icon
6805
+ *
6806
+ * ### CSS Parts:
6807
+ * - **base** - The main icon container.
6808
+ */
6809
+ 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6810
+ /**
6811
+ * An icon
6812
+ *
6813
+ * ### CSS Parts:
6814
+ * - **base** - The main icon container.
6815
+ */
6816
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6817
+ /**
6818
+ * An icon
6819
+ *
6820
+ * ### CSS Parts:
6821
+ * - **base** - The main icon container.
6822
+ */
6823
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6824
+ /**
6825
+ * An icon
6826
+ *
6827
+ * ### CSS Parts:
6828
+ * - **base** - The main icon container.
6829
+ */
6830
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6817
6831
  }
6818
6832
  }
6819
6833
 
@@ -6822,25 +6836,25 @@ declare global {
6822
6836
  namespace JSX {
6823
6837
  interface IntrinsicElements {
6824
6838
  'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6839
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6825
6840
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6826
- 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6827
6841
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6842
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6843
+ 'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6828
6844
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6829
6845
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6830
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6831
- 'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6832
6846
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6833
6847
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6848
+ 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6834
6849
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6835
6850
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6836
- 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6837
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6838
6851
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6839
6852
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6840
6853
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6841
6854
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6842
6855
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6843
6856
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6857
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6844
6858
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6845
6859
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6846
6860
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
@@ -6886,9 +6900,6 @@ declare global {
6886
6900
  'dap-ds-scroll-progress': DapDSScrollProgressProps
6887
6901
  'dap-ds-search': DapDSSearchProps & DapDSSearchEvents & DapDSSearchSlots
6888
6902
  'dap-ds-select': DapDSSelectProps & DapDSSelectEvents & DapDSSelectSlots
6889
- 'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
6890
- 'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
6891
- 'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
6892
6903
  'dap-ds-skeleton': DapDSSkeletonProps
6893
6904
  'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
6894
6905
  'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
@@ -6902,6 +6913,9 @@ declare global {
6902
6913
  'dap-ds-table-header': DapDSTableHeaderProps & DapDSTableHeaderSlots
6903
6914
  'dap-ds-table-row': DapDSTableRowProps & DapDSTableRowSlots
6904
6915
  'dap-ds-table': DapDSTableProps & DapDSTableSlots
6916
+ 'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
6917
+ 'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
6918
+ 'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
6905
6919
  'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
6906
6920
  'dap-ds-timeline-item': DapDSTimelineItemProps & DapDSTimelineItemSlots
6907
6921
  'dap-ds-timeline': DapDSTimelineProps & DapDSTimelineSlots
@@ -6913,19 +6927,19 @@ declare global {
6913
6927
  'dap-ds-tray': DapDSTrayProps & DapDSTrayEvents & DapDSTraySlots
6914
6928
  'dap-ds-typography': DapDSTypographyProps & DapDSTypographySlots
6915
6929
  'dap-ds-form-label': DapDSFormLabelProps
6916
- 'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
6917
6930
  'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
6931
+ 'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
6918
6932
  'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
6919
6933
  'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
6920
6934
  'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
6921
6935
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6922
6936
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6923
- 'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6924
6937
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6938
+ 'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6925
6939
  'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6926
- 'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6927
6940
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6928
6941
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6942
+ 'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6929
6943
  'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6930
6944
  'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6931
6945
  'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
@@ -6950,12 +6964,8 @@ declare global {
6950
6964
  'dap-ds-icon-separator': EditorSeparatorProps
6951
6965
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6952
6966
  'dap-ds-icon-heart-line': HealthHeartLineProps
6953
- 'dap-ds-icon-cookie-line': OthersCookieLineProps
6954
- 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6955
- 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6956
- 'dap-ds-icon-user-fill': UserUserFillProps
6957
- 'dap-ds-icon-user-line': UserUserLineProps
6958
6967
  'dap-ds-icon-add-line': SystemAddLineProps
6968
+ 'dap-ds-icon-cookie-line': OthersCookieLineProps
6959
6969
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6960
6970
  'dap-ds-icon-alert-line': SystemAlertLineProps
6961
6971
  'dap-ds-icon-check-line': SystemCheckLineProps
@@ -7003,6 +7013,10 @@ declare global {
7003
7013
  'dap-ds-icon-upload-line': SystemUploadLineProps
7004
7014
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
7005
7015
  'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
7016
+ 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
7017
+ 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
7018
+ 'dap-ds-icon-user-fill': UserUserFillProps
7019
+ 'dap-ds-icon-user-line': UserUserLineProps
7006
7020
  }
7007
7021
  }
7008
7022
  }