dap-design-system 0.57.7 → 0.57.9
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.
- package/dist/components/banner/banner.component.d.ts +2 -0
- package/dist/components/calendar/calendar.component.d.ts +4 -0
- package/dist/components/callout/callout.component.d.ts +2 -0
- package/dist/components/chip/chip.component.d.ts +2 -0
- package/dist/components/combobox/comboboxBase.d.ts +4 -0
- package/dist/components/copybox-input/copybox-input.component.d.ts +2 -0
- package/dist/components/datatable/datatable.component.d.ts +2 -0
- package/dist/components/datepicker/datepicker.component.d.ts +4 -0
- package/dist/components/file-input/file-input-list-item.component.d.ts +2 -0
- package/dist/components/file-input/file-input.component.d.ts +4 -0
- package/dist/components/image-zoom/image-zoom.component.d.ts +4 -0
- package/dist/components/modal/modal-base-element.d.ts +6 -0
- package/dist/components/navigation-menu/navigation-menu-item.component.d.ts +2 -0
- package/dist/components/number-input/number-input.component.d.ts +4 -0
- package/dist/components/pager/pager.component.d.ts +2 -0
- package/dist/components/password-input/password-input.component.d.ts +2 -0
- package/dist/components/snackbar/snackbar-message.component.d.ts +2 -0
- package/dist/components/tab/tab-group.component.d.ts +10 -0
- package/dist/components/timepicker/time-grid.component.d.ts +8 -0
- package/dist/components/timepicker/timepicker.component.d.ts +4 -0
- package/dist/{components-CMBmObyM.js → components-DM_rlHV7.js} +3295 -3161
- package/dist/components-DM_rlHV7.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +382 -330
- package/dist/manifest/vscode.html-custom-data.json +454 -320
- package/dist/manifest/web-types.json +843 -525
- package/dist/react/index.d.ts +15 -15
- package/dist/react-types.ts +16 -16
- package/dist/react.js +270 -270
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-CMBmObyM.js.map +0 -1
|
@@ -217,11 +217,6 @@ export interface DapDSAccordionEvents {
|
|
|
217
217
|
onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
export interface DapDSAvatarGroupEvents {
|
|
221
|
-
/** Fired when the overflow indicator is clicked. */
|
|
222
|
-
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
223
|
-
}
|
|
224
|
-
|
|
225
220
|
export interface DapDSAvatarEvents {
|
|
226
221
|
/** Fired when the image loads successfully. */
|
|
227
222
|
onDdsLoad?: (event: CustomEvent) => void
|
|
@@ -229,6 +224,11 @@ export interface DapDSAvatarEvents {
|
|
|
229
224
|
onDdsError?: (event: CustomEvent) => void
|
|
230
225
|
}
|
|
231
226
|
|
|
227
|
+
export interface DapDSAvatarGroupEvents {
|
|
228
|
+
/** Fired when the overflow indicator is clicked. */
|
|
229
|
+
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
230
|
+
}
|
|
231
|
+
|
|
232
232
|
export interface DapDSBannerEvents {
|
|
233
233
|
/** Event fired when the banner is closed. */
|
|
234
234
|
onDdsClose?: (event: CustomEvent) => void
|
|
@@ -666,8 +666,8 @@ export interface DapDSAccordionSlots {
|
|
|
666
666
|
'icon-closed'?: () => any
|
|
667
667
|
}
|
|
668
668
|
|
|
669
|
-
export interface
|
|
670
|
-
/** The
|
|
669
|
+
export interface DapDSAccordionGroupSlots {
|
|
670
|
+
/** The content of the accordion group. */
|
|
671
671
|
default?: () => any
|
|
672
672
|
}
|
|
673
673
|
|
|
@@ -678,11 +678,9 @@ export interface DapDSAvatarSlots {
|
|
|
678
678
|
'fallback'?: () => any
|
|
679
679
|
}
|
|
680
680
|
|
|
681
|
-
export interface
|
|
682
|
-
/** The
|
|
681
|
+
export interface DapDSAvatarGroupSlots {
|
|
682
|
+
/** The avatars to display in the group. */
|
|
683
683
|
default?: () => any
|
|
684
|
-
/** The icon of the badge. */
|
|
685
|
-
'icon'?: () => any
|
|
686
684
|
}
|
|
687
685
|
|
|
688
686
|
export interface DapDSBannerSlots {
|
|
@@ -701,9 +699,11 @@ export interface DapDSBreadcrumbSlots {
|
|
|
701
699
|
'separator'?: () => any
|
|
702
700
|
}
|
|
703
701
|
|
|
704
|
-
export interface
|
|
705
|
-
/** The content of the
|
|
702
|
+
export interface DapDSBadgeSlots {
|
|
703
|
+
/** The content of the badge. */
|
|
706
704
|
default?: () => any
|
|
705
|
+
/** The icon of the badge. */
|
|
706
|
+
'icon'?: () => any
|
|
707
707
|
}
|
|
708
708
|
|
|
709
709
|
export interface DapDSBreadcrumbItemSlots {
|
|
@@ -1148,23 +1148,11 @@ export type DapDSAccordionProps = {
|
|
|
1148
1148
|
loading?: DapDSAccordion["loading"]
|
|
1149
1149
|
}
|
|
1150
1150
|
|
|
1151
|
-
export type
|
|
1152
|
-
/**
|
|
1153
|
-
|
|
1154
|
-
/**
|
|
1155
|
-
|
|
1156
|
-
/** Whether to show the total count in overflow indicator */
|
|
1157
|
-
"show-total"?: DapDSAvatarGroup["showTotal"]
|
|
1158
|
-
/** Interactive overflow indicator */
|
|
1159
|
-
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1160
|
-
/** Accessible label for the avatar group */
|
|
1161
|
-
label?: DapDSAvatarGroup["label"]
|
|
1162
|
-
/** Accessible label for the overflow indicator */
|
|
1163
|
-
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1164
|
-
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1165
|
-
size?: DapDSAvatarGroup["size"]
|
|
1166
|
-
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1167
|
-
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1151
|
+
export type DapDSAccordionGroupProps = {
|
|
1152
|
+
/** Whether to close other accordions when one is opened. */
|
|
1153
|
+
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1154
|
+
/** The variant of the accordion */
|
|
1155
|
+
variant?: DapDSAccordionGroup["variant"]
|
|
1168
1156
|
}
|
|
1169
1157
|
|
|
1170
1158
|
export type DapDSAvatarProps = {
|
|
@@ -1194,17 +1182,34 @@ export type DapDSAvatarProps = {
|
|
|
1194
1182
|
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1195
1183
|
}
|
|
1196
1184
|
|
|
1197
|
-
export type
|
|
1198
|
-
/** The
|
|
1199
|
-
|
|
1200
|
-
/** The
|
|
1201
|
-
|
|
1202
|
-
/**
|
|
1203
|
-
|
|
1204
|
-
/**
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1185
|
+
export type DapDSAnchorHeadingProps = {
|
|
1186
|
+
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1187
|
+
variant?: DapDSAnchorHeading["variant"]
|
|
1188
|
+
/** The label of the heading. */
|
|
1189
|
+
label?: DapDSAnchorHeading["label"]
|
|
1190
|
+
/** */
|
|
1191
|
+
elementId?: DapDSAnchorHeading["elementId"]
|
|
1192
|
+
/** */
|
|
1193
|
+
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
export type DapDSAvatarGroupProps = {
|
|
1197
|
+
/** Layout type for the avatar group */
|
|
1198
|
+
layout?: DapDSAvatarGroup["layout"]
|
|
1199
|
+
/** Maximum number of avatars to show before showing overflow */
|
|
1200
|
+
max?: DapDSAvatarGroup["max"]
|
|
1201
|
+
/** Whether to show the total count in overflow indicator */
|
|
1202
|
+
"show-total"?: DapDSAvatarGroup["showTotal"]
|
|
1203
|
+
/** Interactive overflow indicator */
|
|
1204
|
+
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1205
|
+
/** Accessible label for the avatar group */
|
|
1206
|
+
label?: DapDSAvatarGroup["label"]
|
|
1207
|
+
/** Accessible label for the overflow indicator */
|
|
1208
|
+
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1209
|
+
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1210
|
+
size?: DapDSAvatarGroup["size"]
|
|
1211
|
+
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1212
|
+
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1208
1213
|
}
|
|
1209
1214
|
|
|
1210
1215
|
export type DapDSBannerProps = {
|
|
@@ -1216,6 +1221,8 @@ export type DapDSBannerProps = {
|
|
|
1216
1221
|
opened?: DapDSBanner["opened"]
|
|
1217
1222
|
/** The aria-label for the close button */
|
|
1218
1223
|
closeButtonLabel?: DapDSBanner["closeButtonLabel"]
|
|
1224
|
+
/** `data-testid` for the close button. */
|
|
1225
|
+
closeButtonTestId?: DapDSBanner["closeButtonTestId"]
|
|
1219
1226
|
/** The icon of the banner, this is a name of a built icon icon */
|
|
1220
1227
|
icon?: DapDSBanner["icon"]
|
|
1221
1228
|
}
|
|
@@ -1229,22 +1236,17 @@ export type DapDSBreadcrumbProps = {
|
|
|
1229
1236
|
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1230
1237
|
}
|
|
1231
1238
|
|
|
1232
|
-
export type
|
|
1233
|
-
/**
|
|
1234
|
-
|
|
1235
|
-
/** The
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
label?: DapDSAnchorHeading["label"]
|
|
1244
|
-
/** */
|
|
1245
|
-
elementId?: DapDSAnchorHeading["elementId"]
|
|
1246
|
-
/** */
|
|
1247
|
-
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
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"]
|
|
1248
1250
|
}
|
|
1249
1251
|
|
|
1250
1252
|
export type DapDSBreadcrumbItemProps = {
|
|
@@ -1327,6 +1329,10 @@ export type DapDSCalendarProps = {
|
|
|
1327
1329
|
hideAdjacentMonths?: DapDSCalendar["hideAdjacentMonths"]
|
|
1328
1330
|
/** The locale of the calendar. */
|
|
1329
1331
|
locale?: DapDSCalendar["locale"]
|
|
1332
|
+
/** `data-testid` for the previous-month button. */
|
|
1333
|
+
prevButtonTestId?: DapDSCalendar["prevButtonTestId"]
|
|
1334
|
+
/** `data-testid` for the next-month button. */
|
|
1335
|
+
nextButtonTestId?: DapDSCalendar["nextButtonTestId"]
|
|
1330
1336
|
/** The value of the calendar. */
|
|
1331
1337
|
value?: DapDSCalendar["value"]
|
|
1332
1338
|
/** The start date of the range selection (only used in range mode). */
|
|
@@ -1364,61 +1370,12 @@ export type DapDSCalloutProps = {
|
|
|
1364
1370
|
title?: DapDSCallout["title"]
|
|
1365
1371
|
/** The label of the close button */
|
|
1366
1372
|
closeButtonLabel?: DapDSCallout["closeButtonLabel"]
|
|
1373
|
+
/** `data-testid` for the default close button. */
|
|
1374
|
+
closeButtonTestId?: DapDSCallout["closeButtonTestId"]
|
|
1367
1375
|
/** If the callout is opened */
|
|
1368
1376
|
opened?: DapDSCallout["opened"]
|
|
1369
1377
|
}
|
|
1370
1378
|
|
|
1371
|
-
export type DapDSCheckboxProps = {
|
|
1372
|
-
/** Whether the checkbox is indeterminate */
|
|
1373
|
-
indeterminate?: DapDSCheckbox["indeterminate"]
|
|
1374
|
-
/** Whether the checkbox should prevent the default action */
|
|
1375
|
-
preventDefault?: DapDSCheckbox["preventDefault"]
|
|
1376
|
-
/** This sets up border around the checkbox, when true. */
|
|
1377
|
-
border?: DapDSCheckbox["border"]
|
|
1378
|
-
/** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
|
|
1379
|
-
readonly?: DapDSCheckbox["readonly"]
|
|
1380
|
-
/** The type of the checkbox */
|
|
1381
|
-
type?: DapDSCheckbox["type"]
|
|
1382
|
-
/** */
|
|
1383
|
-
focusElement?: DapDSCheckbox["focusElement"]
|
|
1384
|
-
/** */
|
|
1385
|
-
feedbackId?: DapDSCheckbox["feedbackId"]
|
|
1386
|
-
/** The name of the checkbox. */
|
|
1387
|
-
name?: DapDSCheckbox["name"]
|
|
1388
|
-
/** The value of the checkbox. */
|
|
1389
|
-
value?: DapDSCheckbox["value"]
|
|
1390
|
-
/** Whether the checkbox is checked. */
|
|
1391
|
-
checked?: DapDSCheckbox["checked"]
|
|
1392
|
-
/** The label of the checkbox. */
|
|
1393
|
-
label?: DapDSCheckbox["label"]
|
|
1394
|
-
/** The description of the checkbox. */
|
|
1395
|
-
description?: DapDSCheckbox["description"]
|
|
1396
|
-
/** Whether the checkbox is disabled. */
|
|
1397
|
-
disabled?: DapDSCheckbox["disabled"]
|
|
1398
|
-
/** Whether the checkbox is required. */
|
|
1399
|
-
required?: DapDSCheckbox["required"]
|
|
1400
|
-
/** The size of the checkbox. Default is 'sm'. */
|
|
1401
|
-
size?: DapDSCheckbox["size"]
|
|
1402
|
-
/** Responsive size map (e.g. "md:lg"). */
|
|
1403
|
-
sizeMap?: DapDSCheckbox["sizeMap"]
|
|
1404
|
-
/** The placement of the label. */
|
|
1405
|
-
labelPlacement?: DapDSCheckbox["labelPlacement"]
|
|
1406
|
-
/** The placement of the description. */
|
|
1407
|
-
descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
|
|
1408
|
-
/** The weight of the label. */
|
|
1409
|
-
subtle?: DapDSCheckbox["subtle"]
|
|
1410
|
-
/** The feedback of the checkbox. */
|
|
1411
|
-
feedback?: DapDSCheckbox["feedback"]
|
|
1412
|
-
/** The feedback type of the checkbox. */
|
|
1413
|
-
feedbackType?: DapDSCheckbox["feedbackType"]
|
|
1414
|
-
/** The invalid state of the checkbox. */
|
|
1415
|
-
invalid?: DapDSCheckbox["invalid"]
|
|
1416
|
-
/** The optional state of the checkbox. */
|
|
1417
|
-
optional?: DapDSCheckbox["optional"]
|
|
1418
|
-
/** The optional label of the checkbox. */
|
|
1419
|
-
optionalLabel?: DapDSCheckbox["optionalLabel"]
|
|
1420
|
-
}
|
|
1421
|
-
|
|
1422
1379
|
export type DapDSCardActionsProps = {
|
|
1423
1380
|
/** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
|
|
1424
1381
|
spacing?: DapDSCardActions["spacing"]
|
|
@@ -1505,6 +1462,57 @@ export type DapDSCardProps = {
|
|
|
1505
1462
|
sizeMap?: DapDSCard["sizeMap"]
|
|
1506
1463
|
}
|
|
1507
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
|
+
/** The description of the checkbox. */
|
|
1489
|
+
description?: DapDSCheckbox["description"]
|
|
1490
|
+
/** Whether the checkbox is disabled. */
|
|
1491
|
+
disabled?: DapDSCheckbox["disabled"]
|
|
1492
|
+
/** Whether the checkbox is required. */
|
|
1493
|
+
required?: DapDSCheckbox["required"]
|
|
1494
|
+
/** The size of the checkbox. Default is 'sm'. */
|
|
1495
|
+
size?: DapDSCheckbox["size"]
|
|
1496
|
+
/** Responsive size map (e.g. "md:lg"). */
|
|
1497
|
+
sizeMap?: DapDSCheckbox["sizeMap"]
|
|
1498
|
+
/** The placement of the label. */
|
|
1499
|
+
labelPlacement?: DapDSCheckbox["labelPlacement"]
|
|
1500
|
+
/** The placement of the description. */
|
|
1501
|
+
descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
|
|
1502
|
+
/** The weight of the label. */
|
|
1503
|
+
subtle?: DapDSCheckbox["subtle"]
|
|
1504
|
+
/** The feedback of the checkbox. */
|
|
1505
|
+
feedback?: DapDSCheckbox["feedback"]
|
|
1506
|
+
/** The feedback type of the checkbox. */
|
|
1507
|
+
feedbackType?: DapDSCheckbox["feedbackType"]
|
|
1508
|
+
/** The invalid state of the checkbox. */
|
|
1509
|
+
invalid?: DapDSCheckbox["invalid"]
|
|
1510
|
+
/** The optional state of the checkbox. */
|
|
1511
|
+
optional?: DapDSCheckbox["optional"]
|
|
1512
|
+
/** The optional label of the checkbox. */
|
|
1513
|
+
optionalLabel?: DapDSCheckbox["optionalLabel"]
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1508
1516
|
export type DapDSChipProps = {
|
|
1509
1517
|
/** Whether the chip is removeable */
|
|
1510
1518
|
removeable?: DapDSChip["removeable"]
|
|
@@ -1518,6 +1526,8 @@ export type DapDSChipProps = {
|
|
|
1518
1526
|
value?: DapDSChip["value"]
|
|
1519
1527
|
/** The aria label for the delete button */
|
|
1520
1528
|
deleteAriaLabel?: DapDSChip["deleteAriaLabel"]
|
|
1529
|
+
/** `data-testid` for the remove button. */
|
|
1530
|
+
removeButtonTestId?: DapDSChip["removeButtonTestId"]
|
|
1521
1531
|
/** The size of the chip. Default is `sm`. */
|
|
1522
1532
|
size?: DapDSChip["size"]
|
|
1523
1533
|
/** Responsive size map (e.g. "md:lg"). */
|
|
@@ -1707,6 +1717,8 @@ export type DapDSContentSwitcherProps = {
|
|
|
1707
1717
|
export type DapDSCopyBoxInputProps = {
|
|
1708
1718
|
/** The aria label of the copy button. */
|
|
1709
1719
|
copyButtonAriaLabel?: DapDSCopyBoxInput["copyButtonAriaLabel"]
|
|
1720
|
+
/** `data-testid` for the copy button. */
|
|
1721
|
+
copyButtonTestId?: DapDSCopyBoxInput["copyButtonTestId"]
|
|
1710
1722
|
/** */
|
|
1711
1723
|
type?: DapDSCopyBoxInput["type"]
|
|
1712
1724
|
/** The label of the input. */
|
|
@@ -1821,6 +1833,8 @@ export type DapDSDataTableProps<T> = {
|
|
|
1821
1833
|
nextButtonLabel?: DapDSDataTable<T>["nextButtonLabel"]
|
|
1822
1834
|
/** The label of the last button */
|
|
1823
1835
|
lastButtonLabel?: DapDSDataTable<T>["lastButtonLabel"]
|
|
1836
|
+
/** `data-testid` for the column sort-toggle button. Suffixed with the column id. */
|
|
1837
|
+
sortButtonTestId?: DapDSDataTable<T>["sortButtonTestId"]
|
|
1824
1838
|
/** Available page size options for the pager */
|
|
1825
1839
|
pageSizeOptions?: DapDSDataTable<T>["pageSizeOptions"]
|
|
1826
1840
|
/** Sorting state of the table */
|
|
@@ -1878,6 +1892,10 @@ export type DapDSDatePickerProps = {
|
|
|
1878
1892
|
clearButton?: DapDSDatePicker["clearButton"]
|
|
1879
1893
|
/** The aria label of the clear button. */
|
|
1880
1894
|
clearButtonAriaLabel?: DapDSDatePicker["clearButtonAriaLabel"]
|
|
1895
|
+
/** `data-testid` for the clear button. */
|
|
1896
|
+
clearButtonTestId?: DapDSDatePicker["clearButtonTestId"]
|
|
1897
|
+
/** `data-testid` for the calendar indicator button that opens the calendar. */
|
|
1898
|
+
calendarButtonTestId?: DapDSDatePicker["calendarButtonTestId"]
|
|
1881
1899
|
/** The floating strategy of the datepicker. */
|
|
1882
1900
|
floatingStrategy?: DapDSDatePicker["floatingStrategy"]
|
|
1883
1901
|
/** Whether to keep popup open when trigger leaves viewport. */
|
|
@@ -1963,6 +1981,8 @@ export type DapDSFileInputListItemProps = {
|
|
|
1963
1981
|
loading?: DapDSFileInputListItem["loading"]
|
|
1964
1982
|
/** Show delete button. */
|
|
1965
1983
|
showDeleteButton?: DapDSFileInputListItem["showDeleteButton"]
|
|
1984
|
+
/** `data-testid` for the remove-file button. */
|
|
1985
|
+
removeButtonTestId?: DapDSFileInputListItem["removeButtonTestId"]
|
|
1966
1986
|
/** Show file size. */
|
|
1967
1987
|
showFileSize?: DapDSFileInputListItem["showFileSize"]
|
|
1968
1988
|
/** Show file link. */
|
|
@@ -2023,6 +2043,10 @@ export type DapDSFileInputProps = {
|
|
|
2023
2043
|
uploadButtonLabel?: DapDSFileInput["uploadButtonLabel"]
|
|
2024
2044
|
/** The label for the browse button. */
|
|
2025
2045
|
browseButtonLabel?: DapDSFileInput["browseButtonLabel"]
|
|
2046
|
+
/** `data-testid` for the browse button. */
|
|
2047
|
+
browseButtonTestId?: DapDSFileInput["browseButtonTestId"]
|
|
2048
|
+
/** `data-testid` for the upload button. */
|
|
2049
|
+
uploadButtonTestId?: DapDSFileInput["uploadButtonTestId"]
|
|
2026
2050
|
/** Whether to show a separate dropzone area. */
|
|
2027
2051
|
showDropzone?: DapDSFileInput["showDropzone"]
|
|
2028
2052
|
/** Text to display in the dropzone. */
|
|
@@ -2180,6 +2204,10 @@ export type DapDSImageZoomProps = {
|
|
|
2180
2204
|
hideButtons?: DapDSImageZoom["hideButtons"]
|
|
2181
2205
|
/** */
|
|
2182
2206
|
zoomButtonVariant?: DapDSImageZoom["zoomButtonVariant"]
|
|
2207
|
+
/** `data-testid` for the expand/zoom button. */
|
|
2208
|
+
expandButtonTestId?: DapDSImageZoom["expandButtonTestId"]
|
|
2209
|
+
/** `data-testid` for the unzoom/close button. */
|
|
2210
|
+
unzoomButtonTestId?: DapDSImageZoom["unzoomButtonTestId"]
|
|
2183
2211
|
}
|
|
2184
2212
|
|
|
2185
2213
|
export type DapDSInputProps = {
|
|
@@ -2432,6 +2460,8 @@ export type DapDSNavigationMenuItemProps = {
|
|
|
2432
2460
|
orientation?: DapDSNavigationMenuItem["orientation"]
|
|
2433
2461
|
/** Controls how Tab key navigates through top-level items. Default is 'group'. */
|
|
2434
2462
|
tabMode?: DapDSNavigationMenuItem["tabMode"]
|
|
2463
|
+
/** `data-testid` for the default menu trigger button. */
|
|
2464
|
+
triggerButtonTestId?: DapDSNavigationMenuItem["triggerButtonTestId"]
|
|
2435
2465
|
/** */
|
|
2436
2466
|
submenuController?: DapDSNavigationMenuItem["submenuController"]
|
|
2437
2467
|
/** */
|
|
@@ -2491,6 +2521,10 @@ export type DapDSNumberInputProps = {
|
|
|
2491
2521
|
hideControls?: DapDSNumberInput["hideControls"]
|
|
2492
2522
|
/** The number of leading zeros to add to the input. */
|
|
2493
2523
|
padStart?: DapDSNumberInput["padStart"]
|
|
2524
|
+
/** `data-testid` for the decrement stepper button. */
|
|
2525
|
+
decrementButtonTestId?: DapDSNumberInput["decrementButtonTestId"]
|
|
2526
|
+
/** `data-testid` for the increment stepper button. */
|
|
2527
|
+
incrementButtonTestId?: DapDSNumberInput["incrementButtonTestId"]
|
|
2494
2528
|
/** */
|
|
2495
2529
|
_thousandSeparator?: DapDSNumberInput["_thousandSeparator"]
|
|
2496
2530
|
/** */
|
|
@@ -2657,11 +2691,15 @@ export type DapDSPagerProps = {
|
|
|
2657
2691
|
nextButtonLabel?: DapDSPager["nextButtonLabel"]
|
|
2658
2692
|
/** The last button label. */
|
|
2659
2693
|
lastButtonLabel?: DapDSPager["lastButtonLabel"]
|
|
2694
|
+
/** `data-testid` for the pagination buttons. Suffixed with the button's part (first/previous/next/last). */
|
|
2695
|
+
pageButtonTestId?: DapDSPager["pageButtonTestId"]
|
|
2660
2696
|
/** The function to determine the pager text. If not provided, uses default reactive translation. */
|
|
2661
2697
|
pageStateText?: DapDSPager["pageStateText"]
|
|
2662
2698
|
}
|
|
2663
2699
|
|
|
2664
2700
|
export type DapDSPasswordInputProps = {
|
|
2701
|
+
/** `data-testid` for the show/hide toggle button. */
|
|
2702
|
+
toggleButtonTestId?: DapDSPasswordInput["toggleButtonTestId"]
|
|
2665
2703
|
/** */
|
|
2666
2704
|
passwordVisibile?: DapDSPasswordInput["passwordVisibile"]
|
|
2667
2705
|
/** */
|
|
@@ -3050,6 +3088,8 @@ export type DapDSSnackbarMessageProps = {
|
|
|
3050
3088
|
customStyle?: DapDSSnackbarMessage["customStyle"]
|
|
3051
3089
|
/** The position of the snackbar container for directional animations. */
|
|
3052
3090
|
position?: DapDSSnackbarMessage["position"]
|
|
3091
|
+
/** `data-testid` for the snackbar close button. */
|
|
3092
|
+
closeButtonTestId?: DapDSSnackbarMessage["closeButtonTestId"]
|
|
3053
3093
|
}
|
|
3054
3094
|
|
|
3055
3095
|
export type DapDSSnackbarProps = {
|
|
@@ -3269,6 +3309,14 @@ export type DapDSTimeGridProps = {
|
|
|
3269
3309
|
hideDisabledTimes?: DapDSTimeGrid["hideDisabledTimes"]
|
|
3270
3310
|
/** */
|
|
3271
3311
|
presets?: DapDSTimeGrid["presets"]
|
|
3312
|
+
/** `data-testid` base for the preset buttons (preset value appended). */
|
|
3313
|
+
presetButtonTestId?: DapDSTimeGrid["presetButtonTestId"]
|
|
3314
|
+
/** `data-testid` base for the hour select buttons (hour value appended). */
|
|
3315
|
+
hourButtonTestId?: DapDSTimeGrid["hourButtonTestId"]
|
|
3316
|
+
/** `data-testid` base for the minute select buttons (minute value appended). */
|
|
3317
|
+
minuteButtonTestId?: DapDSTimeGrid["minuteButtonTestId"]
|
|
3318
|
+
/** `data-testid` base for the second select buttons (second value appended). */
|
|
3319
|
+
secondButtonTestId?: DapDSTimeGrid["secondButtonTestId"]
|
|
3272
3320
|
/** */
|
|
3273
3321
|
disabledTime?: DapDSTimeGrid["disabledTime"]
|
|
3274
3322
|
}
|
|
@@ -3300,6 +3348,10 @@ export type DapDSTimePickerProps = {
|
|
|
3300
3348
|
clearButton?: DapDSTimePicker["clearButton"]
|
|
3301
3349
|
/** The aria label of the clear button. */
|
|
3302
3350
|
clearButtonAriaLabel?: DapDSTimePicker["clearButtonAriaLabel"]
|
|
3351
|
+
/** `data-testid` for the clear button. */
|
|
3352
|
+
clearButtonTestId?: DapDSTimePicker["clearButtonTestId"]
|
|
3353
|
+
/** `data-testid` for the time indicator button that opens the grid. */
|
|
3354
|
+
timeButtonTestId?: DapDSTimePicker["timeButtonTestId"]
|
|
3303
3355
|
/** The floating strategy of the timepicker. */
|
|
3304
3356
|
floatingStrategy?: DapDSTimePicker["floatingStrategy"]
|
|
3305
3357
|
/** Whether to keep popup open when trigger leaves viewport. */
|
|
@@ -3463,25 +3515,6 @@ export type DapDSTypographyProps = {
|
|
|
3463
3515
|
inverted?: DapDSTypography["inverted"]
|
|
3464
3516
|
}
|
|
3465
3517
|
|
|
3466
|
-
export type DapDSFormLabelProps = {
|
|
3467
|
-
/** The id of the form element that the label is associated with. */
|
|
3468
|
-
for?: DapDSFormLabel["for"]
|
|
3469
|
-
/** Whether the label should be rendered as text or a <label> tag. Default is label. */
|
|
3470
|
-
renderAs?: DapDSFormLabel["renderAs"]
|
|
3471
|
-
/** Whether the label should have no margin. */
|
|
3472
|
-
noMargin?: DapDSFormLabel["noMargin"]
|
|
3473
|
-
/** Label of optional text */
|
|
3474
|
-
optionalLabel?: DapDSFormLabel["optionalLabel"]
|
|
3475
|
-
/** Text weight of the label. */
|
|
3476
|
-
subtle?: DapDSFormLabel["subtle"]
|
|
3477
|
-
/** If the label is optional. */
|
|
3478
|
-
optional?: DapDSFormLabel["optional"]
|
|
3479
|
-
/** If the label is required. */
|
|
3480
|
-
required?: DapDSFormLabel["required"]
|
|
3481
|
-
/** The label text. */
|
|
3482
|
-
label?: DapDSFormLabel["label"]
|
|
3483
|
-
}
|
|
3484
|
-
|
|
3485
3518
|
export type DapDSInputGroupProps = {
|
|
3486
3519
|
/** */
|
|
3487
3520
|
allInputs?: DapDSInputGroup["allInputs"]
|
|
@@ -3513,6 +3546,25 @@ export type DapDSInputGroupProps = {
|
|
|
3513
3546
|
subtle?: DapDSInputGroup["subtle"]
|
|
3514
3547
|
}
|
|
3515
3548
|
|
|
3549
|
+
export type DapDSFormLabelProps = {
|
|
3550
|
+
/** The id of the form element that the label is associated with. */
|
|
3551
|
+
for?: DapDSFormLabel["for"]
|
|
3552
|
+
/** Whether the label should be rendered as text or a <label> tag. Default is label. */
|
|
3553
|
+
renderAs?: DapDSFormLabel["renderAs"]
|
|
3554
|
+
/** Whether the label should have no margin. */
|
|
3555
|
+
noMargin?: DapDSFormLabel["noMargin"]
|
|
3556
|
+
/** Label of optional text */
|
|
3557
|
+
optionalLabel?: DapDSFormLabel["optionalLabel"]
|
|
3558
|
+
/** Text weight of the label. */
|
|
3559
|
+
subtle?: DapDSFormLabel["subtle"]
|
|
3560
|
+
/** If the label is optional. */
|
|
3561
|
+
optional?: DapDSFormLabel["optional"]
|
|
3562
|
+
/** If the label is required. */
|
|
3563
|
+
required?: DapDSFormLabel["required"]
|
|
3564
|
+
/** The label text. */
|
|
3565
|
+
label?: DapDSFormLabel["label"]
|
|
3566
|
+
}
|
|
3567
|
+
|
|
3516
3568
|
export type DapDSRadioGroupProps = {
|
|
3517
3569
|
/** The tooltip placement of the radio group. */
|
|
3518
3570
|
tooltipPlacement?: DapDSRadioGroup["tooltipPlacement"]
|
|
@@ -3616,18 +3668,7 @@ export type ArrowsArrowLeftLineProps = {
|
|
|
3616
3668
|
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3617
3669
|
}
|
|
3618
3670
|
|
|
3619
|
-
export type
|
|
3620
|
-
/** (optional) The width and height in pixels */
|
|
3621
|
-
size?: ArrowsArrowLeftSFill["size"]
|
|
3622
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3623
|
-
selected?: ArrowsArrowLeftSFill["selected"]
|
|
3624
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3625
|
-
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
|
|
3626
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3627
|
-
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3628
|
-
}
|
|
3629
|
-
|
|
3630
|
-
export type ArrowsArrowLeftSLineProps = {
|
|
3671
|
+
export type ArrowsArrowLeftSLineProps = {
|
|
3631
3672
|
/** (optional) The width and height in pixels */
|
|
3632
3673
|
size?: ArrowsArrowLeftSLine["size"]
|
|
3633
3674
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
@@ -3638,15 +3679,15 @@ export type ArrowsArrowLeftSLineProps = {
|
|
|
3638
3679
|
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3639
3680
|
}
|
|
3640
3681
|
|
|
3641
|
-
export type
|
|
3682
|
+
export type ArrowsArrowLeftSFillProps = {
|
|
3642
3683
|
/** (optional) The width and height in pixels */
|
|
3643
|
-
size?:
|
|
3684
|
+
size?: ArrowsArrowLeftSFill["size"]
|
|
3644
3685
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3645
|
-
selected?:
|
|
3686
|
+
selected?: ArrowsArrowLeftSFill["selected"]
|
|
3646
3687
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3647
|
-
accessibilityTitle?:
|
|
3688
|
+
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
|
|
3648
3689
|
/** (optional) If `true` the icon can receive focus */
|
|
3649
|
-
focusable?:
|
|
3690
|
+
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3650
3691
|
}
|
|
3651
3692
|
|
|
3652
3693
|
export type ArrowsArrowLeftUpLineProps = {
|
|
@@ -3660,15 +3701,15 @@ export type ArrowsArrowLeftUpLineProps = {
|
|
|
3660
3701
|
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3661
3702
|
}
|
|
3662
3703
|
|
|
3663
|
-
export type
|
|
3704
|
+
export type ArrowsArrowRightDownLineProps = {
|
|
3664
3705
|
/** (optional) The width and height in pixels */
|
|
3665
|
-
size?:
|
|
3706
|
+
size?: ArrowsArrowRightDownLine["size"]
|
|
3666
3707
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3667
|
-
selected?:
|
|
3708
|
+
selected?: ArrowsArrowRightDownLine["selected"]
|
|
3668
3709
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3669
|
-
accessibilityTitle?:
|
|
3710
|
+
accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
|
|
3670
3711
|
/** (optional) If `true` the icon can receive focus */
|
|
3671
|
-
focusable?:
|
|
3712
|
+
focusable?: ArrowsArrowRightDownLine["focusable"]
|
|
3672
3713
|
}
|
|
3673
3714
|
|
|
3674
3715
|
export type ArrowsArrowRightLLineProps = {
|
|
@@ -3682,6 +3723,17 @@ export type ArrowsArrowRightLLineProps = {
|
|
|
3682
3723
|
focusable?: ArrowsArrowRightLLine["focusable"]
|
|
3683
3724
|
}
|
|
3684
3725
|
|
|
3726
|
+
export type ArrowsArrowRightLineProps = {
|
|
3727
|
+
/** (optional) The width and height in pixels */
|
|
3728
|
+
size?: ArrowsArrowRightLine["size"]
|
|
3729
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3730
|
+
selected?: ArrowsArrowRightLine["selected"]
|
|
3731
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3732
|
+
accessibilityTitle?: ArrowsArrowRightLine["accessibilityTitle"]
|
|
3733
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3734
|
+
focusable?: ArrowsArrowRightLine["focusable"]
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3685
3737
|
export type ArrowsArrowRightSFillProps = {
|
|
3686
3738
|
/** (optional) The width and height in pixels */
|
|
3687
3739
|
size?: ArrowsArrowRightSFill["size"]
|
|
@@ -3814,17 +3866,6 @@ export type DeviceComputerLineProps = {
|
|
|
3814
3866
|
focusable?: DeviceComputerLine["focusable"]
|
|
3815
3867
|
}
|
|
3816
3868
|
|
|
3817
|
-
export type EditorSeparatorProps = {
|
|
3818
|
-
/** (optional) The width and height in pixels */
|
|
3819
|
-
size?: EditorSeparator["size"]
|
|
3820
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3821
|
-
selected?: EditorSeparator["selected"]
|
|
3822
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3823
|
-
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3824
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3825
|
-
focusable?: EditorSeparator["focusable"]
|
|
3826
|
-
}
|
|
3827
|
-
|
|
3828
3869
|
export type DocumentClipboardLineProps = {
|
|
3829
3870
|
/** (optional) The width and height in pixels */
|
|
3830
3871
|
size?: DocumentClipboardLine["size"]
|
|
@@ -3847,26 +3888,26 @@ export type DocumentFileCopyLineProps = {
|
|
|
3847
3888
|
focusable?: DocumentFileCopyLine["focusable"]
|
|
3848
3889
|
}
|
|
3849
3890
|
|
|
3850
|
-
export type
|
|
3891
|
+
export type DocumentFileMusicLineProps = {
|
|
3851
3892
|
/** (optional) The width and height in pixels */
|
|
3852
|
-
size?:
|
|
3893
|
+
size?: DocumentFileMusicLine["size"]
|
|
3853
3894
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3854
|
-
selected?:
|
|
3895
|
+
selected?: DocumentFileMusicLine["selected"]
|
|
3855
3896
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3856
|
-
accessibilityTitle?:
|
|
3897
|
+
accessibilityTitle?: DocumentFileMusicLine["accessibilityTitle"]
|
|
3857
3898
|
/** (optional) If `true` the icon can receive focus */
|
|
3858
|
-
focusable?:
|
|
3899
|
+
focusable?: DocumentFileMusicLine["focusable"]
|
|
3859
3900
|
}
|
|
3860
3901
|
|
|
3861
|
-
export type
|
|
3902
|
+
export type DocumentFileImageLineProps = {
|
|
3862
3903
|
/** (optional) The width and height in pixels */
|
|
3863
|
-
size?:
|
|
3904
|
+
size?: DocumentFileImageLine["size"]
|
|
3864
3905
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3865
|
-
selected?:
|
|
3906
|
+
selected?: DocumentFileImageLine["selected"]
|
|
3866
3907
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3867
|
-
accessibilityTitle?:
|
|
3908
|
+
accessibilityTitle?: DocumentFileImageLine["accessibilityTitle"]
|
|
3868
3909
|
/** (optional) If `true` the icon can receive focus */
|
|
3869
|
-
focusable?:
|
|
3910
|
+
focusable?: DocumentFileImageLine["focusable"]
|
|
3870
3911
|
}
|
|
3871
3912
|
|
|
3872
3913
|
export type DocumentFileTextLineProps = {
|
|
@@ -3913,6 +3954,17 @@ export type DocumentFolderOpenLineProps = {
|
|
|
3913
3954
|
focusable?: DocumentFolderOpenLine["focusable"]
|
|
3914
3955
|
}
|
|
3915
3956
|
|
|
3957
|
+
export type EditorSeparatorProps = {
|
|
3958
|
+
/** (optional) The width and height in pixels */
|
|
3959
|
+
size?: EditorSeparator["size"]
|
|
3960
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3961
|
+
selected?: EditorSeparator["selected"]
|
|
3962
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3963
|
+
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3964
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3965
|
+
focusable?: EditorSeparator["focusable"]
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3916
3968
|
export type HealthHeartFillProps = {
|
|
3917
3969
|
/** (optional) The width and height in pixels */
|
|
3918
3970
|
size?: HealthHeartFill["size"]
|
|
@@ -3946,50 +3998,6 @@ export type OthersCookieLineProps = {
|
|
|
3946
3998
|
focusable?: OthersCookieLine["focusable"]
|
|
3947
3999
|
}
|
|
3948
4000
|
|
|
3949
|
-
export type UserAccountCircleFillProps = {
|
|
3950
|
-
/** (optional) The width and height in pixels */
|
|
3951
|
-
size?: UserAccountCircleFill["size"]
|
|
3952
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3953
|
-
selected?: UserAccountCircleFill["selected"]
|
|
3954
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3955
|
-
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
3956
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3957
|
-
focusable?: UserAccountCircleFill["focusable"]
|
|
3958
|
-
}
|
|
3959
|
-
|
|
3960
|
-
export type UserAccountCircleLineProps = {
|
|
3961
|
-
/** (optional) The width and height in pixels */
|
|
3962
|
-
size?: UserAccountCircleLine["size"]
|
|
3963
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3964
|
-
selected?: UserAccountCircleLine["selected"]
|
|
3965
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3966
|
-
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
3967
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3968
|
-
focusable?: UserAccountCircleLine["focusable"]
|
|
3969
|
-
}
|
|
3970
|
-
|
|
3971
|
-
export type UserUserFillProps = {
|
|
3972
|
-
/** (optional) The width and height in pixels */
|
|
3973
|
-
size?: UserUserFill["size"]
|
|
3974
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3975
|
-
selected?: UserUserFill["selected"]
|
|
3976
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3977
|
-
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
3978
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3979
|
-
focusable?: UserUserFill["focusable"]
|
|
3980
|
-
}
|
|
3981
|
-
|
|
3982
|
-
export type UserUserLineProps = {
|
|
3983
|
-
/** (optional) The width and height in pixels */
|
|
3984
|
-
size?: UserUserLine["size"]
|
|
3985
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3986
|
-
selected?: UserUserLine["selected"]
|
|
3987
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3988
|
-
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
3989
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3990
|
-
focusable?: UserUserLine["focusable"]
|
|
3991
|
-
}
|
|
3992
|
-
|
|
3993
4001
|
export type SystemAddLineProps = {
|
|
3994
4002
|
/** (optional) The width and height in pixels */
|
|
3995
4003
|
size?: SystemAddLine["size"]
|
|
@@ -4518,6 +4526,50 @@ export type SystemZoomOutLineProps = {
|
|
|
4518
4526
|
focusable?: SystemZoomOutLine["focusable"]
|
|
4519
4527
|
}
|
|
4520
4528
|
|
|
4529
|
+
export type UserAccountCircleFillProps = {
|
|
4530
|
+
/** (optional) The width and height in pixels */
|
|
4531
|
+
size?: UserAccountCircleFill["size"]
|
|
4532
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4533
|
+
selected?: UserAccountCircleFill["selected"]
|
|
4534
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4535
|
+
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
4536
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4537
|
+
focusable?: UserAccountCircleFill["focusable"]
|
|
4538
|
+
}
|
|
4539
|
+
|
|
4540
|
+
export type UserAccountCircleLineProps = {
|
|
4541
|
+
/** (optional) The width and height in pixels */
|
|
4542
|
+
size?: UserAccountCircleLine["size"]
|
|
4543
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4544
|
+
selected?: UserAccountCircleLine["selected"]
|
|
4545
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4546
|
+
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
4547
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4548
|
+
focusable?: UserAccountCircleLine["focusable"]
|
|
4549
|
+
}
|
|
4550
|
+
|
|
4551
|
+
export type UserUserFillProps = {
|
|
4552
|
+
/** (optional) The width and height in pixels */
|
|
4553
|
+
size?: UserUserFill["size"]
|
|
4554
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4555
|
+
selected?: UserUserFill["selected"]
|
|
4556
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4557
|
+
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
4558
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4559
|
+
focusable?: UserUserFill["focusable"]
|
|
4560
|
+
}
|
|
4561
|
+
|
|
4562
|
+
export type UserUserLineProps = {
|
|
4563
|
+
/** (optional) The width and height in pixels */
|
|
4564
|
+
size?: UserUserLine["size"]
|
|
4565
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4566
|
+
selected?: UserUserLine["selected"]
|
|
4567
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4568
|
+
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
4569
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4570
|
+
focusable?: UserUserLine["focusable"]
|
|
4571
|
+
}
|
|
4572
|
+
|
|
4521
4573
|
// Augment Vue's GlobalComponents interface
|
|
4522
4574
|
declare module 'vue' {
|
|
4523
4575
|
interface GlobalComponents {
|
|
@@ -4548,20 +4600,15 @@ declare module 'vue' {
|
|
|
4548
4600
|
*/
|
|
4549
4601
|
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4550
4602
|
/**
|
|
4551
|
-
*
|
|
4552
|
-
*
|
|
4553
|
-
* ### Events:
|
|
4554
|
-
* - **dds-overflow-click** - Fired when the overflow indicator is clicked.
|
|
4603
|
+
* An accordion group is a collection of accordion components.
|
|
4555
4604
|
*
|
|
4556
4605
|
* ### Slots:
|
|
4557
|
-
* - **default** - The
|
|
4606
|
+
* - **default** - The content of the accordion group.
|
|
4558
4607
|
*
|
|
4559
4608
|
* ### CSS Parts:
|
|
4560
|
-
* - **base** - The main
|
|
4561
|
-
* - **avatars** - The container for the visible avatars.
|
|
4562
|
-
* - **overflow** - The overflow indicator element.
|
|
4609
|
+
* - **base** - The main accordion group container.
|
|
4563
4610
|
*/
|
|
4564
|
-
'dap-ds-
|
|
4611
|
+
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4565
4612
|
/**
|
|
4566
4613
|
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4567
4614
|
*
|
|
@@ -4583,19 +4630,30 @@ declare module 'vue' {
|
|
|
4583
4630
|
*/
|
|
4584
4631
|
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4585
4632
|
/**
|
|
4586
|
-
*
|
|
4633
|
+
* Anchor heading is a heading with an anchor link.
|
|
4634
|
+
*
|
|
4635
|
+
* ### CSS Parts:
|
|
4636
|
+
* - **base** - The main anchor heading container.
|
|
4637
|
+
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
4638
|
+
* - **link-base** - The base of the link part.
|
|
4639
|
+
* - **text** - The text of the anchor heading.
|
|
4640
|
+
*/
|
|
4641
|
+
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4642
|
+
/**
|
|
4643
|
+
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4644
|
+
*
|
|
4645
|
+
* ### Events:
|
|
4646
|
+
* - **dds-overflow-click** - Fired when the overflow indicator is clicked.
|
|
4587
4647
|
*
|
|
4588
4648
|
* ### Slots:
|
|
4589
|
-
* - **default** - The
|
|
4590
|
-
* - **icon** - The icon of the badge.
|
|
4649
|
+
* - **default** - The avatars to display in the group.
|
|
4591
4650
|
*
|
|
4592
4651
|
* ### CSS Parts:
|
|
4593
|
-
* - **base** - The main container of the
|
|
4594
|
-
* - **
|
|
4595
|
-
* - **
|
|
4596
|
-
* - **icon-base** - The base of the icon.
|
|
4652
|
+
* - **base** - The main container of the avatar group.
|
|
4653
|
+
* - **avatars** - The container for the visible avatars.
|
|
4654
|
+
* - **overflow** - The overflow indicator element.
|
|
4597
4655
|
*/
|
|
4598
|
-
'dap-ds-
|
|
4656
|
+
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4599
4657
|
/**
|
|
4600
4658
|
* A banner is a message displayed at the top of the page to provide important information to the user.
|
|
4601
4659
|
*
|
|
@@ -4633,25 +4691,19 @@ declare module 'vue' {
|
|
|
4633
4691
|
*/
|
|
4634
4692
|
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4635
4693
|
/**
|
|
4636
|
-
*
|
|
4694
|
+
* A badge is a small status descriptor for UI elements.
|
|
4637
4695
|
*
|
|
4638
4696
|
* ### Slots:
|
|
4639
|
-
* - **default** - The content of the
|
|
4640
|
-
*
|
|
4641
|
-
* ### CSS Parts:
|
|
4642
|
-
* - **base** - The main accordion group container.
|
|
4643
|
-
*/
|
|
4644
|
-
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4645
|
-
/**
|
|
4646
|
-
* Anchor heading is a heading with an anchor link.
|
|
4697
|
+
* - **default** - The content of the badge.
|
|
4698
|
+
* - **icon** - The icon of the badge.
|
|
4647
4699
|
*
|
|
4648
4700
|
* ### CSS Parts:
|
|
4649
|
-
* - **base** - The main
|
|
4650
|
-
* - **
|
|
4651
|
-
* - **
|
|
4652
|
-
* - **
|
|
4701
|
+
* - **base** - The main container of the badge.
|
|
4702
|
+
* - **icon** - The icon of the badge.
|
|
4703
|
+
* - **content** - The content of the badge.
|
|
4704
|
+
* - **icon-base** - The base of the icon.
|
|
4653
4705
|
*/
|
|
4654
|
-
'dap-ds-
|
|
4706
|
+
'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
|
|
4655
4707
|
/**
|
|
4656
4708
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4657
4709
|
*
|
|
@@ -4739,27 +4791,6 @@ declare module 'vue' {
|
|
|
4739
4791
|
* - **close** - The close button of the callout.
|
|
4740
4792
|
*/
|
|
4741
4793
|
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4742
|
-
/**
|
|
4743
|
-
* A checkbox is a form element that allows the user to select one or more options from a set.
|
|
4744
|
-
*
|
|
4745
|
-
* ### Events:
|
|
4746
|
-
* - **dds-change** - Fired when the checkbox is checked or unchecked.
|
|
4747
|
-
* - **dds-blur** - Emitted when the checkbox loses focus.
|
|
4748
|
-
* - **dds-focus** - Emitted when the checkbox gains focus.
|
|
4749
|
-
* - **dds-input** - Emitted when the checkbox receives input.
|
|
4750
|
-
*
|
|
4751
|
-
* ### CSS Parts:
|
|
4752
|
-
* - **base** - The main checkbox container.
|
|
4753
|
-
* - **label** - The label of the checkbox.
|
|
4754
|
-
* - **input** - The input of the checkbox.
|
|
4755
|
-
* - **control** - The control of the checkbox.
|
|
4756
|
-
* - **icon** - The icon of the checkbox.
|
|
4757
|
-
* - **icon-base** - The base icon container.
|
|
4758
|
-
* - **label-container** - The label container of the checkbox.
|
|
4759
|
-
* - **description** - The description of the checkbox.
|
|
4760
|
-
* - **readonly** - The readonly state of the checkbox.
|
|
4761
|
-
*/
|
|
4762
|
-
'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
|
|
4763
4794
|
/**
|
|
4764
4795
|
* A card actions is a container for actions in a card.
|
|
4765
4796
|
*
|
|
@@ -4820,6 +4851,27 @@ declare module 'vue' {
|
|
|
4820
4851
|
* - **base** - The main card container.
|
|
4821
4852
|
*/
|
|
4822
4853
|
'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
|
|
4854
|
+
/**
|
|
4855
|
+
* A checkbox is a form element that allows the user to select one or more options from a set.
|
|
4856
|
+
*
|
|
4857
|
+
* ### Events:
|
|
4858
|
+
* - **dds-change** - Fired when the checkbox is checked or unchecked.
|
|
4859
|
+
* - **dds-blur** - Emitted when the checkbox loses focus.
|
|
4860
|
+
* - **dds-focus** - Emitted when the checkbox gains focus.
|
|
4861
|
+
* - **dds-input** - Emitted when the checkbox receives input.
|
|
4862
|
+
*
|
|
4863
|
+
* ### CSS Parts:
|
|
4864
|
+
* - **base** - The main checkbox container.
|
|
4865
|
+
* - **label** - The label of the checkbox.
|
|
4866
|
+
* - **input** - The input of the checkbox.
|
|
4867
|
+
* - **control** - The control of the checkbox.
|
|
4868
|
+
* - **icon** - The icon of the checkbox.
|
|
4869
|
+
* - **icon-base** - The base icon container.
|
|
4870
|
+
* - **label-container** - The label container of the checkbox.
|
|
4871
|
+
* - **description** - The description of the checkbox.
|
|
4872
|
+
* - **readonly** - The readonly state of the checkbox.
|
|
4873
|
+
*/
|
|
4874
|
+
'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
|
|
4823
4875
|
/**
|
|
4824
4876
|
* A chip is a small status descriptor for UI elements.
|
|
4825
4877
|
*
|
|
@@ -6028,15 +6080,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6028
6080
|
* - **base** - The main typography container.
|
|
6029
6081
|
*/
|
|
6030
6082
|
'dap-ds-typography': DefineCustomElement<DapDSTypography, DapDSTypographyProps, {}>
|
|
6031
|
-
/**
|
|
6032
|
-
* A form label is a container for labels in a form.
|
|
6033
|
-
*
|
|
6034
|
-
* ### CSS Parts:
|
|
6035
|
-
* - **base** - The main form label container.
|
|
6036
|
-
* - **required** - The required indicator of the form label.
|
|
6037
|
-
* - **optional** - The optional indicator of the form label.
|
|
6038
|
-
*/
|
|
6039
|
-
'dap-ds-form-label': DefineCustomElement<DapDSFormLabel, DapDSFormLabelProps, {}>
|
|
6040
6083
|
/**
|
|
6041
6084
|
* An input group is a container for inputs.
|
|
6042
6085
|
*
|
|
@@ -6052,6 +6095,15 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6052
6095
|
* - **container** - The container of the input group items.
|
|
6053
6096
|
*/
|
|
6054
6097
|
'dap-ds-input-group': DefineCustomElement<DapDSInputGroup, DapDSInputGroupProps, {}>
|
|
6098
|
+
/**
|
|
6099
|
+
* A form label is a container for labels in a form.
|
|
6100
|
+
*
|
|
6101
|
+
* ### CSS Parts:
|
|
6102
|
+
* - **base** - The main form label container.
|
|
6103
|
+
* - **required** - The required indicator of the form label.
|
|
6104
|
+
* - **optional** - The optional indicator of the form label.
|
|
6105
|
+
*/
|
|
6106
|
+
'dap-ds-form-label': DefineCustomElement<DapDSFormLabel, DapDSFormLabelProps, {}>
|
|
6055
6107
|
/**
|
|
6056
6108
|
* A radio group is a form element that allows the user to select one option from a set.
|
|
6057
6109
|
*
|
|
@@ -6119,42 +6171,42 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6119
6171
|
* ### CSS Parts:
|
|
6120
6172
|
* - **base** - The main icon container.
|
|
6121
6173
|
*/
|
|
6122
|
-
'dap-ds-icon-arrow-left-s-
|
|
6174
|
+
'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
|
|
6123
6175
|
/**
|
|
6124
6176
|
* An icon
|
|
6125
6177
|
*
|
|
6126
6178
|
* ### CSS Parts:
|
|
6127
6179
|
* - **base** - The main icon container.
|
|
6128
6180
|
*/
|
|
6129
|
-
'dap-ds-icon-arrow-left-s-
|
|
6181
|
+
'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
|
|
6130
6182
|
/**
|
|
6131
6183
|
* An icon
|
|
6132
6184
|
*
|
|
6133
6185
|
* ### CSS Parts:
|
|
6134
6186
|
* - **base** - The main icon container.
|
|
6135
6187
|
*/
|
|
6136
|
-
'dap-ds-icon-arrow-
|
|
6188
|
+
'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
|
|
6137
6189
|
/**
|
|
6138
6190
|
* An icon
|
|
6139
6191
|
*
|
|
6140
6192
|
* ### CSS Parts:
|
|
6141
6193
|
* - **base** - The main icon container.
|
|
6142
6194
|
*/
|
|
6143
|
-
'dap-ds-icon-arrow-
|
|
6195
|
+
'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
|
|
6144
6196
|
/**
|
|
6145
6197
|
* An icon
|
|
6146
6198
|
*
|
|
6147
6199
|
* ### CSS Parts:
|
|
6148
6200
|
* - **base** - The main icon container.
|
|
6149
6201
|
*/
|
|
6150
|
-
'dap-ds-icon-arrow-right-line': DefineCustomElement<
|
|
6202
|
+
'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
|
|
6151
6203
|
/**
|
|
6152
6204
|
* An icon
|
|
6153
6205
|
*
|
|
6154
6206
|
* ### CSS Parts:
|
|
6155
6207
|
* - **base** - The main icon container.
|
|
6156
6208
|
*/
|
|
6157
|
-
'dap-ds-icon-arrow-right-
|
|
6209
|
+
'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
|
|
6158
6210
|
/**
|
|
6159
6211
|
* An icon
|
|
6160
6212
|
*
|
|
@@ -6239,13 +6291,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6239
6291
|
* - **base** - The main icon container.
|
|
6240
6292
|
*/
|
|
6241
6293
|
'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
|
|
6242
|
-
/**
|
|
6243
|
-
* An icon
|
|
6244
|
-
*
|
|
6245
|
-
* ### CSS Parts:
|
|
6246
|
-
* - **base** - The main icon container.
|
|
6247
|
-
*/
|
|
6248
|
-
'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
|
|
6249
6294
|
/**
|
|
6250
6295
|
* An icon
|
|
6251
6296
|
*
|
|
@@ -6266,14 +6311,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6266
6311
|
* ### CSS Parts:
|
|
6267
6312
|
* - **base** - The main icon container.
|
|
6268
6313
|
*/
|
|
6269
|
-
'dap-ds-icon-file-
|
|
6314
|
+
'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
|
|
6270
6315
|
/**
|
|
6271
6316
|
* An icon
|
|
6272
6317
|
*
|
|
6273
6318
|
* ### CSS Parts:
|
|
6274
6319
|
* - **base** - The main icon container.
|
|
6275
6320
|
*/
|
|
6276
|
-
'dap-ds-icon-file-
|
|
6321
|
+
'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
|
|
6277
6322
|
/**
|
|
6278
6323
|
* An icon
|
|
6279
6324
|
*
|
|
@@ -6308,49 +6353,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6308
6353
|
* ### CSS Parts:
|
|
6309
6354
|
* - **base** - The main icon container.
|
|
6310
6355
|
*/
|
|
6311
|
-
'dap-ds-icon-
|
|
6312
|
-
/**
|
|
6313
|
-
* An icon
|
|
6314
|
-
*
|
|
6315
|
-
* ### CSS Parts:
|
|
6316
|
-
* - **base** - The main icon container.
|
|
6317
|
-
*/
|
|
6318
|
-
'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
|
|
6319
|
-
/**
|
|
6320
|
-
* An icon
|
|
6321
|
-
*
|
|
6322
|
-
* ### CSS Parts:
|
|
6323
|
-
* - **base** - The main icon container.
|
|
6324
|
-
*/
|
|
6325
|
-
'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
|
|
6326
|
-
/**
|
|
6327
|
-
* An icon
|
|
6328
|
-
*
|
|
6329
|
-
* ### CSS Parts:
|
|
6330
|
-
* - **base** - The main icon container.
|
|
6331
|
-
*/
|
|
6332
|
-
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
6356
|
+
'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
|
|
6333
6357
|
/**
|
|
6334
6358
|
* An icon
|
|
6335
6359
|
*
|
|
6336
6360
|
* ### CSS Parts:
|
|
6337
6361
|
* - **base** - The main icon container.
|
|
6338
6362
|
*/
|
|
6339
|
-
'dap-ds-icon-
|
|
6363
|
+
'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
|
|
6340
6364
|
/**
|
|
6341
6365
|
* An icon
|
|
6342
6366
|
*
|
|
6343
6367
|
* ### CSS Parts:
|
|
6344
6368
|
* - **base** - The main icon container.
|
|
6345
6369
|
*/
|
|
6346
|
-
'dap-ds-icon-
|
|
6370
|
+
'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
|
|
6347
6371
|
/**
|
|
6348
6372
|
* An icon
|
|
6349
6373
|
*
|
|
6350
6374
|
* ### CSS Parts:
|
|
6351
6375
|
* - **base** - The main icon container.
|
|
6352
6376
|
*/
|
|
6353
|
-
'dap-ds-icon-
|
|
6377
|
+
'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
|
|
6354
6378
|
/**
|
|
6355
6379
|
* An icon
|
|
6356
6380
|
*
|
|
@@ -6687,6 +6711,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6687
6711
|
* - **base** - The main icon container.
|
|
6688
6712
|
*/
|
|
6689
6713
|
'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
|
|
6714
|
+
/**
|
|
6715
|
+
* An icon
|
|
6716
|
+
*
|
|
6717
|
+
* ### CSS Parts:
|
|
6718
|
+
* - **base** - The main icon container.
|
|
6719
|
+
*/
|
|
6720
|
+
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
6721
|
+
/**
|
|
6722
|
+
* An icon
|
|
6723
|
+
*
|
|
6724
|
+
* ### CSS Parts:
|
|
6725
|
+
* - **base** - The main icon container.
|
|
6726
|
+
*/
|
|
6727
|
+
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
6728
|
+
/**
|
|
6729
|
+
* An icon
|
|
6730
|
+
*
|
|
6731
|
+
* ### CSS Parts:
|
|
6732
|
+
* - **base** - The main icon container.
|
|
6733
|
+
*/
|
|
6734
|
+
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
6735
|
+
/**
|
|
6736
|
+
* An icon
|
|
6737
|
+
*
|
|
6738
|
+
* ### CSS Parts:
|
|
6739
|
+
* - **base** - The main icon container.
|
|
6740
|
+
*/
|
|
6741
|
+
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
6690
6742
|
}
|
|
6691
6743
|
}
|
|
6692
6744
|
|
|
@@ -6695,25 +6747,25 @@ declare global {
|
|
|
6695
6747
|
namespace JSX {
|
|
6696
6748
|
interface IntrinsicElements {
|
|
6697
6749
|
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6698
|
-
'dap-ds-
|
|
6750
|
+
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6699
6751
|
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6700
|
-
'dap-ds-
|
|
6752
|
+
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6753
|
+
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6701
6754
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6702
6755
|
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6703
|
-
'dap-ds-
|
|
6704
|
-
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6756
|
+
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6705
6757
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6706
6758
|
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6707
6759
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
6708
6760
|
'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
|
|
6709
6761
|
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6710
|
-
'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
|
|
6711
6762
|
'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
|
|
6712
6763
|
'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
|
|
6713
6764
|
'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
|
|
6714
6765
|
'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
|
|
6715
6766
|
'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
|
|
6716
6767
|
'dap-ds-card': DapDSCardProps & DapDSCardSlots
|
|
6768
|
+
'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
|
|
6717
6769
|
'dap-ds-chip': DapDSChipProps & DapDSChipEvents
|
|
6718
6770
|
'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
|
|
6719
6771
|
'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
|
|
@@ -6785,8 +6837,8 @@ declare global {
|
|
|
6785
6837
|
'dap-ds-tooltip': DapDSTooltipProps & DapDSTooltipSlots
|
|
6786
6838
|
'dap-ds-tray': DapDSTrayProps & DapDSTrayEvents & DapDSTraySlots
|
|
6787
6839
|
'dap-ds-typography': DapDSTypographyProps & DapDSTypographySlots
|
|
6788
|
-
'dap-ds-form-label': DapDSFormLabelProps
|
|
6789
6840
|
'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
|
|
6841
|
+
'dap-ds-form-label': DapDSFormLabelProps
|
|
6790
6842
|
'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
|
|
6791
6843
|
'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
|
|
6792
6844
|
'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
|
|
@@ -6794,12 +6846,12 @@ declare global {
|
|
|
6794
6846
|
'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
|
|
6795
6847
|
'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
|
|
6796
6848
|
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6797
|
-
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6798
6849
|
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6799
|
-
'dap-ds-icon-arrow-
|
|
6850
|
+
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6800
6851
|
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6801
|
-
'dap-ds-icon-arrow-right-line':
|
|
6852
|
+
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6802
6853
|
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
6854
|
+
'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
|
|
6803
6855
|
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
6804
6856
|
'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
|
|
6805
6857
|
'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
|
|
@@ -6812,22 +6864,18 @@ declare global {
|
|
|
6812
6864
|
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6813
6865
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
6814
6866
|
'dap-ds-icon-computer-line': DeviceComputerLineProps
|
|
6815
|
-
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6816
6867
|
'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
|
|
6817
6868
|
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6818
|
-
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
6819
6869
|
'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
|
|
6870
|
+
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
6820
6871
|
'dap-ds-icon-file-text-line': DocumentFileTextLineProps
|
|
6821
6872
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6822
6873
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
6823
6874
|
'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
|
|
6875
|
+
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6824
6876
|
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6825
6877
|
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6826
6878
|
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6827
|
-
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6828
|
-
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6829
|
-
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6830
|
-
'dap-ds-icon-user-line': UserUserLineProps
|
|
6831
6879
|
'dap-ds-icon-add-line': SystemAddLineProps
|
|
6832
6880
|
'dap-ds-icon-alert-fill': SystemAlertFillProps
|
|
6833
6881
|
'dap-ds-icon-alert-line': SystemAlertLineProps
|
|
@@ -6876,6 +6924,10 @@ declare global {
|
|
|
6876
6924
|
'dap-ds-icon-upload-line': SystemUploadLineProps
|
|
6877
6925
|
'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
|
|
6878
6926
|
'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
|
|
6927
|
+
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6928
|
+
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6929
|
+
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6930
|
+
'dap-ds-icon-user-line': UserUserLineProps
|
|
6879
6931
|
}
|
|
6880
6932
|
}
|
|
6881
6933
|
}
|