dap-design-system 0.55.2 → 0.55.4
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/file-input/file-input.component.d.ts +7 -0
- package/dist/{components-ChK1mSip.js → components-CUgS-U9o.js} +114 -110
- package/dist/components-CUgS-U9o.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +276 -274
- package/dist/manifest/vscode.html-custom-data.json +241 -236
- package/dist/manifest/web-types.json +577 -567
- package/dist/react/dap-ds-file-input/index.d.ts +1 -0
- package/dist/react/index.d.ts +9 -9
- package/dist/react-types.ts +9 -9
- package/dist/react.js +138 -138
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-ChK1mSip.js.map +0 -1
|
@@ -217,13 +217,6 @@ export interface DapDSAccordionEvents {
|
|
|
217
217
|
onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
export interface DapDSAvatarEvents {
|
|
221
|
-
/** Fired when the image loads successfully. */
|
|
222
|
-
onDdsLoad?: (event: CustomEvent) => void
|
|
223
|
-
/** Fired when the image fails to load. */
|
|
224
|
-
onDdsError?: (event: CustomEvent) => void
|
|
225
|
-
}
|
|
226
|
-
|
|
227
220
|
export interface DapDSAvatarGroupEvents {
|
|
228
221
|
/** Fired when the overflow indicator is clicked. */
|
|
229
222
|
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
@@ -234,9 +227,11 @@ export interface DapDSBannerEvents {
|
|
|
234
227
|
onDdsClose?: (event: CustomEvent) => void
|
|
235
228
|
}
|
|
236
229
|
|
|
237
|
-
export interface
|
|
238
|
-
/**
|
|
239
|
-
|
|
230
|
+
export interface DapDSAvatarEvents {
|
|
231
|
+
/** Fired when the image loads successfully. */
|
|
232
|
+
onDdsLoad?: (event: CustomEvent) => void
|
|
233
|
+
/** Fired when the image fails to load. */
|
|
234
|
+
onDdsError?: (event: CustomEvent) => void
|
|
240
235
|
}
|
|
241
236
|
|
|
242
237
|
export interface DapDSCalloutEvents {
|
|
@@ -244,6 +239,11 @@ export interface DapDSCalloutEvents {
|
|
|
244
239
|
onDdsClose?: (event: CustomEvent) => void
|
|
245
240
|
}
|
|
246
241
|
|
|
242
|
+
export interface DapDSButtonEvents {
|
|
243
|
+
/** Emitted when the loading timeout is reached */
|
|
244
|
+
onDdsLoadingTimeout?: (event: CustomEvent) => void
|
|
245
|
+
}
|
|
246
|
+
|
|
247
247
|
export interface DapDSCalendarEvents {
|
|
248
248
|
/** Fired when the calendar value changes. */
|
|
249
249
|
onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => void
|
|
@@ -666,25 +666,11 @@ export interface DapDSAccordionSlots {
|
|
|
666
666
|
'icon-closed'?: () => any
|
|
667
667
|
}
|
|
668
668
|
|
|
669
|
-
export interface DapDSAvatarSlots {
|
|
670
|
-
/** The icon to display when variant is 'icon'. */
|
|
671
|
-
'icon'?: () => any
|
|
672
|
-
/** Custom fallback content when image fails to load. */
|
|
673
|
-
'fallback'?: () => any
|
|
674
|
-
}
|
|
675
|
-
|
|
676
669
|
export interface DapDSAvatarGroupSlots {
|
|
677
670
|
/** The avatars to display in the group. */
|
|
678
671
|
default?: () => any
|
|
679
672
|
}
|
|
680
673
|
|
|
681
|
-
export interface DapDSBreadcrumbSlots {
|
|
682
|
-
/** The content of the breadcrumb. */
|
|
683
|
-
default?: () => any
|
|
684
|
-
/** The separator between breadcrumb items. Default is '/'. */
|
|
685
|
-
'separator'?: () => any
|
|
686
|
-
}
|
|
687
|
-
|
|
688
674
|
export interface DapDSBadgeSlots {
|
|
689
675
|
/** The content of the badge. */
|
|
690
676
|
default?: () => any
|
|
@@ -701,14 +687,23 @@ export interface DapDSBannerSlots {
|
|
|
701
687
|
'icon'?: () => any
|
|
702
688
|
}
|
|
703
689
|
|
|
690
|
+
export interface DapDSBreadcrumbSlots {
|
|
691
|
+
/** The content of the breadcrumb. */
|
|
692
|
+
default?: () => any
|
|
693
|
+
/** The separator between breadcrumb items. Default is '/'. */
|
|
694
|
+
'separator'?: () => any
|
|
695
|
+
}
|
|
696
|
+
|
|
704
697
|
export interface DapDSAccordionGroupSlots {
|
|
705
698
|
/** The content of the accordion group. */
|
|
706
699
|
default?: () => any
|
|
707
700
|
}
|
|
708
701
|
|
|
709
|
-
export interface
|
|
710
|
-
/** The
|
|
711
|
-
|
|
702
|
+
export interface DapDSAvatarSlots {
|
|
703
|
+
/** The icon to display when variant is 'icon'. */
|
|
704
|
+
'icon'?: () => any
|
|
705
|
+
/** Custom fallback content when image fails to load. */
|
|
706
|
+
'fallback'?: () => any
|
|
712
707
|
}
|
|
713
708
|
|
|
714
709
|
export interface DapDSBreadcrumbItemSlots {
|
|
@@ -731,6 +726,11 @@ export interface DapDSCalloutSlots {
|
|
|
731
726
|
'close'?: () => any
|
|
732
727
|
}
|
|
733
728
|
|
|
729
|
+
export interface DapDSButtonSlots {
|
|
730
|
+
/** The content of the button. Can contain text, icons, or other elements. */
|
|
731
|
+
default?: () => any
|
|
732
|
+
}
|
|
733
|
+
|
|
734
734
|
export interface DapDSCalendarCellSlots {
|
|
735
735
|
/** The content of the calendar cell. */
|
|
736
736
|
default?: () => any
|
|
@@ -1159,33 +1159,6 @@ export type DapDSAccordionProps = {
|
|
|
1159
1159
|
loading?: DapDSAccordion["loading"]
|
|
1160
1160
|
}
|
|
1161
1161
|
|
|
1162
|
-
export type DapDSAvatarProps = {
|
|
1163
|
-
/** The shape of the avatar */
|
|
1164
|
-
shape?: DapDSAvatar["shape"]
|
|
1165
|
-
/** The variant type of the avatar */
|
|
1166
|
-
variant?: DapDSAvatar["variant"]
|
|
1167
|
-
/** The source of the avatar image */
|
|
1168
|
-
src?: DapDSAvatar["src"]
|
|
1169
|
-
/** The alt text of the avatar */
|
|
1170
|
-
alt?: DapDSAvatar["alt"]
|
|
1171
|
-
/** The initials to display when variant is 'initials' */
|
|
1172
|
-
initials?: DapDSAvatar["initials"]
|
|
1173
|
-
/** Accessible label for the avatar */
|
|
1174
|
-
label?: DapDSAvatar["label"]
|
|
1175
|
-
/** Loading state indicator */
|
|
1176
|
-
loading?: DapDSAvatar["loading"]
|
|
1177
|
-
/** Whether the avatar is interactive (clickable) */
|
|
1178
|
-
interactive?: DapDSAvatar["interactive"]
|
|
1179
|
-
/** The width of the avatar. This will override the size */
|
|
1180
|
-
width?: DapDSAvatar["width"]
|
|
1181
|
-
/** The height of the avatar. This will override the size */
|
|
1182
|
-
height?: DapDSAvatar["height"]
|
|
1183
|
-
/** The size of the avatar. Default is `md`. */
|
|
1184
|
-
size?: DapDSAvatar["size"]
|
|
1185
|
-
/** Responsive size map (e.g. "md:lg"). */
|
|
1186
|
-
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
1162
|
export type DapDSAvatarGroupProps = {
|
|
1190
1163
|
/** Layout type for the avatar group */
|
|
1191
1164
|
layout?: DapDSAvatarGroup["layout"]
|
|
@@ -1205,15 +1178,6 @@ export type DapDSAvatarGroupProps = {
|
|
|
1205
1178
|
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1206
1179
|
}
|
|
1207
1180
|
|
|
1208
|
-
export type DapDSBreadcrumbProps = {
|
|
1209
|
-
/** */
|
|
1210
|
-
variant?: DapDSBreadcrumb["variant"]
|
|
1211
|
-
/** Mobile version of the breadcrumb */
|
|
1212
|
-
mobile?: DapDSBreadcrumb["mobile"]
|
|
1213
|
-
/** The aria-labelledby of the breadcrumb */
|
|
1214
|
-
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
1181
|
export type DapDSBadgeProps = {
|
|
1218
1182
|
/** The type of the badge */
|
|
1219
1183
|
type?: DapDSBadge["type"]
|
|
@@ -1240,6 +1204,15 @@ export type DapDSBannerProps = {
|
|
|
1240
1204
|
icon?: DapDSBanner["icon"]
|
|
1241
1205
|
}
|
|
1242
1206
|
|
|
1207
|
+
export type DapDSBreadcrumbProps = {
|
|
1208
|
+
/** */
|
|
1209
|
+
variant?: DapDSBreadcrumb["variant"]
|
|
1210
|
+
/** Mobile version of the breadcrumb */
|
|
1211
|
+
mobile?: DapDSBreadcrumb["mobile"]
|
|
1212
|
+
/** The aria-labelledby of the breadcrumb */
|
|
1213
|
+
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1243
1216
|
export type DapDSAccordionGroupProps = {
|
|
1244
1217
|
/** Whether to close other accordions when one is opened. */
|
|
1245
1218
|
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
@@ -1247,35 +1220,31 @@ export type DapDSAccordionGroupProps = {
|
|
|
1247
1220
|
variant?: DapDSAccordionGroup["variant"]
|
|
1248
1221
|
}
|
|
1249
1222
|
|
|
1250
|
-
export type
|
|
1251
|
-
/** The
|
|
1252
|
-
|
|
1253
|
-
/** The
|
|
1254
|
-
|
|
1255
|
-
/**
|
|
1256
|
-
|
|
1257
|
-
/**
|
|
1258
|
-
|
|
1259
|
-
/** The
|
|
1260
|
-
|
|
1261
|
-
/**
|
|
1262
|
-
|
|
1263
|
-
/**
|
|
1264
|
-
|
|
1265
|
-
/**
|
|
1266
|
-
|
|
1267
|
-
/** The
|
|
1268
|
-
|
|
1269
|
-
/**
|
|
1270
|
-
|
|
1271
|
-
/**
|
|
1272
|
-
|
|
1273
|
-
/**
|
|
1274
|
-
|
|
1275
|
-
/** Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role="link" on a button acting as a SPA navigation trigger). */
|
|
1276
|
-
forceRole?: DapDSButton["forceRole"]
|
|
1277
|
-
/** The size map of the button. */
|
|
1278
|
-
sizeMap?: DapDSButton["sizeMap"]
|
|
1223
|
+
export type DapDSAvatarProps = {
|
|
1224
|
+
/** The shape of the avatar */
|
|
1225
|
+
shape?: DapDSAvatar["shape"]
|
|
1226
|
+
/** The variant type of the avatar */
|
|
1227
|
+
variant?: DapDSAvatar["variant"]
|
|
1228
|
+
/** The source of the avatar image */
|
|
1229
|
+
src?: DapDSAvatar["src"]
|
|
1230
|
+
/** The alt text of the avatar */
|
|
1231
|
+
alt?: DapDSAvatar["alt"]
|
|
1232
|
+
/** The initials to display when variant is 'initials' */
|
|
1233
|
+
initials?: DapDSAvatar["initials"]
|
|
1234
|
+
/** Accessible label for the avatar */
|
|
1235
|
+
label?: DapDSAvatar["label"]
|
|
1236
|
+
/** Loading state indicator */
|
|
1237
|
+
loading?: DapDSAvatar["loading"]
|
|
1238
|
+
/** Whether the avatar is interactive (clickable) */
|
|
1239
|
+
interactive?: DapDSAvatar["interactive"]
|
|
1240
|
+
/** The width of the avatar. This will override the size */
|
|
1241
|
+
width?: DapDSAvatar["width"]
|
|
1242
|
+
/** The height of the avatar. This will override the size */
|
|
1243
|
+
height?: DapDSAvatar["height"]
|
|
1244
|
+
/** The size of the avatar. Default is `md`. */
|
|
1245
|
+
size?: DapDSAvatar["size"]
|
|
1246
|
+
/** Responsive size map (e.g. "md:lg"). */
|
|
1247
|
+
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1279
1248
|
}
|
|
1280
1249
|
|
|
1281
1250
|
export type DapDSBreadcrumbItemProps = {
|
|
@@ -1310,6 +1279,37 @@ export type DapDSCalloutProps = {
|
|
|
1310
1279
|
opened?: DapDSCallout["opened"]
|
|
1311
1280
|
}
|
|
1312
1281
|
|
|
1282
|
+
export type DapDSButtonProps = {
|
|
1283
|
+
/** The visual style variant of the button */
|
|
1284
|
+
variant?: DapDSButton["variant"]
|
|
1285
|
+
/** The size of the button affecting padding and font size */
|
|
1286
|
+
size?: DapDSButton["size"]
|
|
1287
|
+
/** Whether the button is in loading state, showing a spinner and disabling interaction */
|
|
1288
|
+
loading?: DapDSButton["loading"]
|
|
1289
|
+
/** Whether the button represents a destructive action (applies danger styling) */
|
|
1290
|
+
danger?: DapDSButton["danger"]
|
|
1291
|
+
/** The shape of the button - use 'circle' for icon-only buttons */
|
|
1292
|
+
shape?: DapDSButton["shape"]
|
|
1293
|
+
/** The HTML type attribute for form interaction */
|
|
1294
|
+
htmlType?: DapDSButton["htmlType"]
|
|
1295
|
+
/** The URL to navigate to. When present, the button renders as an anchor element */
|
|
1296
|
+
href?: DapDSButton["href"]
|
|
1297
|
+
/** The target attribute for link navigation */
|
|
1298
|
+
target?: DapDSButton["target"]
|
|
1299
|
+
/** The rel attribute for link security and behavior */
|
|
1300
|
+
rel?: DapDSButton["rel"]
|
|
1301
|
+
/** Controls loading timeout in milliseconds */
|
|
1302
|
+
loadingTimeout?: DapDSButton["loadingTimeout"]
|
|
1303
|
+
/** Whether the button is active */
|
|
1304
|
+
active?: DapDSButton["active"]
|
|
1305
|
+
/** The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text */
|
|
1306
|
+
targetBlankText?: DapDSButton["targetBlankText"]
|
|
1307
|
+
/** Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role="link" on a button acting as a SPA navigation trigger). */
|
|
1308
|
+
forceRole?: DapDSButton["forceRole"]
|
|
1309
|
+
/** The size map of the button. */
|
|
1310
|
+
sizeMap?: DapDSButton["sizeMap"]
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
1313
|
export type DapDSCalendarCellProps = {
|
|
1314
1314
|
/** Whether the calendar cell is selected. */
|
|
1315
1315
|
selected?: DapDSCalendarCell["selected"]
|
|
@@ -1368,6 +1368,57 @@ export type DapDSCalendarProps = {
|
|
|
1368
1368
|
shouldHideAdjacentMonths?: DapDSCalendar["shouldHideAdjacentMonths"]
|
|
1369
1369
|
}
|
|
1370
1370
|
|
|
1371
|
+
export type DapDSCheckboxProps = {
|
|
1372
|
+
/** Whether the checkbox is indeterminate */
|
|
1373
|
+
indeterminate?: DapDSCheckbox["indeterminate"]
|
|
1374
|
+
/** Whether the checkbox should prevent the default action */
|
|
1375
|
+
preventDefault?: DapDSCheckbox["preventDefault"]
|
|
1376
|
+
/** This sets up border around the checkbox, when true. */
|
|
1377
|
+
border?: DapDSCheckbox["border"]
|
|
1378
|
+
/** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
|
|
1379
|
+
readonly?: DapDSCheckbox["readonly"]
|
|
1380
|
+
/** The type of the checkbox */
|
|
1381
|
+
type?: DapDSCheckbox["type"]
|
|
1382
|
+
/** */
|
|
1383
|
+
focusElement?: DapDSCheckbox["focusElement"]
|
|
1384
|
+
/** */
|
|
1385
|
+
feedbackId?: DapDSCheckbox["feedbackId"]
|
|
1386
|
+
/** The name of the checkbox. */
|
|
1387
|
+
name?: DapDSCheckbox["name"]
|
|
1388
|
+
/** The value of the checkbox. */
|
|
1389
|
+
value?: DapDSCheckbox["value"]
|
|
1390
|
+
/** Whether the checkbox is checked. */
|
|
1391
|
+
checked?: DapDSCheckbox["checked"]
|
|
1392
|
+
/** The label of the checkbox. */
|
|
1393
|
+
label?: DapDSCheckbox["label"]
|
|
1394
|
+
/** The description of the checkbox. */
|
|
1395
|
+
description?: DapDSCheckbox["description"]
|
|
1396
|
+
/** Whether the checkbox is disabled. */
|
|
1397
|
+
disabled?: DapDSCheckbox["disabled"]
|
|
1398
|
+
/** Whether the checkbox is required. */
|
|
1399
|
+
required?: DapDSCheckbox["required"]
|
|
1400
|
+
/** The size of the checkbox. Default is 'sm'. */
|
|
1401
|
+
size?: DapDSCheckbox["size"]
|
|
1402
|
+
/** Responsive size map (e.g. "md:lg"). */
|
|
1403
|
+
sizeMap?: DapDSCheckbox["sizeMap"]
|
|
1404
|
+
/** The placement of the label. */
|
|
1405
|
+
labelPlacement?: DapDSCheckbox["labelPlacement"]
|
|
1406
|
+
/** The placement of the description. */
|
|
1407
|
+
descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
|
|
1408
|
+
/** The weight of the label. */
|
|
1409
|
+
subtle?: DapDSCheckbox["subtle"]
|
|
1410
|
+
/** The feedback of the checkbox. */
|
|
1411
|
+
feedback?: DapDSCheckbox["feedback"]
|
|
1412
|
+
/** The feedback type of the checkbox. */
|
|
1413
|
+
feedbackType?: DapDSCheckbox["feedbackType"]
|
|
1414
|
+
/** The invalid state of the checkbox. */
|
|
1415
|
+
invalid?: DapDSCheckbox["invalid"]
|
|
1416
|
+
/** The optional state of the checkbox. */
|
|
1417
|
+
optional?: DapDSCheckbox["optional"]
|
|
1418
|
+
/** The optional label of the checkbox. */
|
|
1419
|
+
optionalLabel?: DapDSCheckbox["optionalLabel"]
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1371
1422
|
export type DapDSCardActionsProps = {
|
|
1372
1423
|
/** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
|
|
1373
1424
|
spacing?: DapDSCardActions["spacing"]
|
|
@@ -1454,57 +1505,6 @@ export type DapDSCardProps = {
|
|
|
1454
1505
|
sizeMap?: DapDSCard["sizeMap"]
|
|
1455
1506
|
}
|
|
1456
1507
|
|
|
1457
|
-
export type DapDSCheckboxProps = {
|
|
1458
|
-
/** Whether the checkbox is indeterminate */
|
|
1459
|
-
indeterminate?: DapDSCheckbox["indeterminate"]
|
|
1460
|
-
/** Whether the checkbox should prevent the default action */
|
|
1461
|
-
preventDefault?: DapDSCheckbox["preventDefault"]
|
|
1462
|
-
/** This sets up border around the checkbox, when true. */
|
|
1463
|
-
border?: DapDSCheckbox["border"]
|
|
1464
|
-
/** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
|
|
1465
|
-
readonly?: DapDSCheckbox["readonly"]
|
|
1466
|
-
/** The type of the checkbox */
|
|
1467
|
-
type?: DapDSCheckbox["type"]
|
|
1468
|
-
/** */
|
|
1469
|
-
focusElement?: DapDSCheckbox["focusElement"]
|
|
1470
|
-
/** */
|
|
1471
|
-
feedbackId?: DapDSCheckbox["feedbackId"]
|
|
1472
|
-
/** The name of the checkbox. */
|
|
1473
|
-
name?: DapDSCheckbox["name"]
|
|
1474
|
-
/** The value of the checkbox. */
|
|
1475
|
-
value?: DapDSCheckbox["value"]
|
|
1476
|
-
/** Whether the checkbox is checked. */
|
|
1477
|
-
checked?: DapDSCheckbox["checked"]
|
|
1478
|
-
/** The label of the checkbox. */
|
|
1479
|
-
label?: DapDSCheckbox["label"]
|
|
1480
|
-
/** The description of the checkbox. */
|
|
1481
|
-
description?: DapDSCheckbox["description"]
|
|
1482
|
-
/** Whether the checkbox is disabled. */
|
|
1483
|
-
disabled?: DapDSCheckbox["disabled"]
|
|
1484
|
-
/** Whether the checkbox is required. */
|
|
1485
|
-
required?: DapDSCheckbox["required"]
|
|
1486
|
-
/** The size of the checkbox. Default is 'sm'. */
|
|
1487
|
-
size?: DapDSCheckbox["size"]
|
|
1488
|
-
/** Responsive size map (e.g. "md:lg"). */
|
|
1489
|
-
sizeMap?: DapDSCheckbox["sizeMap"]
|
|
1490
|
-
/** The placement of the label. */
|
|
1491
|
-
labelPlacement?: DapDSCheckbox["labelPlacement"]
|
|
1492
|
-
/** The placement of the description. */
|
|
1493
|
-
descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
|
|
1494
|
-
/** The weight of the label. */
|
|
1495
|
-
subtle?: DapDSCheckbox["subtle"]
|
|
1496
|
-
/** The feedback of the checkbox. */
|
|
1497
|
-
feedback?: DapDSCheckbox["feedback"]
|
|
1498
|
-
/** The feedback type of the checkbox. */
|
|
1499
|
-
feedbackType?: DapDSCheckbox["feedbackType"]
|
|
1500
|
-
/** The invalid state of the checkbox. */
|
|
1501
|
-
invalid?: DapDSCheckbox["invalid"]
|
|
1502
|
-
/** The optional state of the checkbox. */
|
|
1503
|
-
optional?: DapDSCheckbox["optional"]
|
|
1504
|
-
/** The optional label of the checkbox. */
|
|
1505
|
-
optionalLabel?: DapDSCheckbox["optionalLabel"]
|
|
1506
|
-
}
|
|
1507
|
-
|
|
1508
1508
|
export type DapDSChipProps = {
|
|
1509
1509
|
/** Whether the chip is removeable */
|
|
1510
1510
|
removeable?: DapDSChip["removeable"]
|
|
@@ -2083,6 +2083,8 @@ export type DapDSFileInputProps = {
|
|
|
2083
2083
|
showThumbnail?: DapDSFileInput["showThumbnail"]
|
|
2084
2084
|
/** Aria label for the dropzone. */
|
|
2085
2085
|
dropzoneAriaLabel?: DapDSFileInput["dropzoneAriaLabel"]
|
|
2086
|
+
/** Whether the dropzone is in the tab order and exposes button keyboard behavior (default: true). */
|
|
2087
|
+
dropzoneFocusable?: DapDSFileInput["dropzoneFocusable"]
|
|
2086
2088
|
/** Size of the thumbnail preview in the built-in file list */
|
|
2087
2089
|
thumbnailSize?: DapDSFileInput["thumbnailSize"]
|
|
2088
2090
|
/** The file list component to bind to */
|
|
@@ -3535,15 +3537,15 @@ export type DapDSRadioGroupProps = {
|
|
|
3535
3537
|
size?: DapDSRadioGroup["size"]
|
|
3536
3538
|
}
|
|
3537
3539
|
|
|
3538
|
-
export type
|
|
3540
|
+
export type BuildingsHome6LineProps = {
|
|
3539
3541
|
/** (optional) The width and height in pixels */
|
|
3540
|
-
size?:
|
|
3542
|
+
size?: BuildingsHome6Line["size"]
|
|
3541
3543
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3542
|
-
selected?:
|
|
3544
|
+
selected?: BuildingsHome6Line["selected"]
|
|
3543
3545
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3544
|
-
accessibilityTitle?:
|
|
3546
|
+
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3545
3547
|
/** (optional) If `true` the icon can receive focus */
|
|
3546
|
-
focusable?:
|
|
3548
|
+
focusable?: BuildingsHome6Line["focusable"]
|
|
3547
3549
|
}
|
|
3548
3550
|
|
|
3549
3551
|
export type ArrowsArrowDownSFillProps = {
|
|
@@ -3557,6 +3559,17 @@ export type ArrowsArrowDownSFillProps = {
|
|
|
3557
3559
|
focusable?: ArrowsArrowDownSFill["focusable"]
|
|
3558
3560
|
}
|
|
3559
3561
|
|
|
3562
|
+
export type ArrowsArrowDownLineProps = {
|
|
3563
|
+
/** (optional) The width and height in pixels */
|
|
3564
|
+
size?: ArrowsArrowDownLine["size"]
|
|
3565
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3566
|
+
selected?: ArrowsArrowDownLine["selected"]
|
|
3567
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3568
|
+
accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
|
|
3569
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3570
|
+
focusable?: ArrowsArrowDownLine["focusable"]
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3560
3573
|
export type ArrowsArrowDownSLineProps = {
|
|
3561
3574
|
/** (optional) The width and height in pixels */
|
|
3562
3575
|
size?: ArrowsArrowDownSLine["size"]
|
|
@@ -3601,48 +3614,48 @@ export type ArrowsArrowLeftLineProps = {
|
|
|
3601
3614
|
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3602
3615
|
}
|
|
3603
3616
|
|
|
3604
|
-
export type
|
|
3617
|
+
export type ArrowsArrowLeftSFillProps = {
|
|
3605
3618
|
/** (optional) The width and height in pixels */
|
|
3606
|
-
size?:
|
|
3619
|
+
size?: ArrowsArrowLeftSFill["size"]
|
|
3607
3620
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3608
|
-
selected?:
|
|
3621
|
+
selected?: ArrowsArrowLeftSFill["selected"]
|
|
3609
3622
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3610
|
-
accessibilityTitle?:
|
|
3623
|
+
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
|
|
3611
3624
|
/** (optional) If `true` the icon can receive focus */
|
|
3612
|
-
focusable?:
|
|
3625
|
+
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3613
3626
|
}
|
|
3614
3627
|
|
|
3615
|
-
export type
|
|
3628
|
+
export type ArrowsArrowRightDownLineProps = {
|
|
3616
3629
|
/** (optional) The width and height in pixels */
|
|
3617
|
-
size?:
|
|
3630
|
+
size?: ArrowsArrowRightDownLine["size"]
|
|
3618
3631
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3619
|
-
selected?:
|
|
3632
|
+
selected?: ArrowsArrowRightDownLine["selected"]
|
|
3620
3633
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3621
|
-
accessibilityTitle?:
|
|
3634
|
+
accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
|
|
3622
3635
|
/** (optional) If `true` the icon can receive focus */
|
|
3623
|
-
focusable?:
|
|
3636
|
+
focusable?: ArrowsArrowRightDownLine["focusable"]
|
|
3624
3637
|
}
|
|
3625
3638
|
|
|
3626
|
-
export type
|
|
3639
|
+
export type ArrowsArrowLeftSLineProps = {
|
|
3627
3640
|
/** (optional) The width and height in pixels */
|
|
3628
|
-
size?:
|
|
3641
|
+
size?: ArrowsArrowLeftSLine["size"]
|
|
3629
3642
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3630
|
-
selected?:
|
|
3643
|
+
selected?: ArrowsArrowLeftSLine["selected"]
|
|
3631
3644
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3632
|
-
accessibilityTitle?:
|
|
3645
|
+
accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
|
|
3633
3646
|
/** (optional) If `true` the icon can receive focus */
|
|
3634
|
-
focusable?:
|
|
3647
|
+
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3635
3648
|
}
|
|
3636
3649
|
|
|
3637
|
-
export type
|
|
3650
|
+
export type ArrowsArrowLeftUpLineProps = {
|
|
3638
3651
|
/** (optional) The width and height in pixels */
|
|
3639
|
-
size?:
|
|
3652
|
+
size?: ArrowsArrowLeftUpLine["size"]
|
|
3640
3653
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3641
|
-
selected?:
|
|
3654
|
+
selected?: ArrowsArrowLeftUpLine["selected"]
|
|
3642
3655
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3643
|
-
accessibilityTitle?:
|
|
3656
|
+
accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
|
|
3644
3657
|
/** (optional) If `true` the icon can receive focus */
|
|
3645
|
-
focusable?:
|
|
3658
|
+
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3646
3659
|
}
|
|
3647
3660
|
|
|
3648
3661
|
export type ArrowsArrowRightLLineProps = {
|
|
@@ -3744,17 +3757,6 @@ export type ArrowsExpandUpDownFillProps = {
|
|
|
3744
3757
|
focusable?: ArrowsExpandUpDownFill["focusable"]
|
|
3745
3758
|
}
|
|
3746
3759
|
|
|
3747
|
-
export type BuildingsHome6LineProps = {
|
|
3748
|
-
/** (optional) The width and height in pixels */
|
|
3749
|
-
size?: BuildingsHome6Line["size"]
|
|
3750
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3751
|
-
selected?: BuildingsHome6Line["selected"]
|
|
3752
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3753
|
-
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3754
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3755
|
-
focusable?: BuildingsHome6Line["focusable"]
|
|
3756
|
-
}
|
|
3757
|
-
|
|
3758
3760
|
export type BusinessCalendarLineProps = {
|
|
3759
3761
|
/** (optional) The width and height in pixels */
|
|
3760
3762
|
size?: BusinessCalendarLine["size"]
|
|
@@ -3887,17 +3889,6 @@ export type DocumentFolderOpenLineProps = {
|
|
|
3887
3889
|
focusable?: DocumentFolderOpenLine["focusable"]
|
|
3888
3890
|
}
|
|
3889
3891
|
|
|
3890
|
-
export type EditorSeparatorProps = {
|
|
3891
|
-
/** (optional) The width and height in pixels */
|
|
3892
|
-
size?: EditorSeparator["size"]
|
|
3893
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3894
|
-
selected?: EditorSeparator["selected"]
|
|
3895
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3896
|
-
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3897
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3898
|
-
focusable?: EditorSeparator["focusable"]
|
|
3899
|
-
}
|
|
3900
|
-
|
|
3901
3892
|
export type HealthHeartFillProps = {
|
|
3902
3893
|
/** (optional) The width and height in pixels */
|
|
3903
3894
|
size?: HealthHeartFill["size"]
|
|
@@ -3920,6 +3911,17 @@ export type HealthHeartLineProps = {
|
|
|
3920
3911
|
focusable?: HealthHeartLine["focusable"]
|
|
3921
3912
|
}
|
|
3922
3913
|
|
|
3914
|
+
export type EditorSeparatorProps = {
|
|
3915
|
+
/** (optional) The width and height in pixels */
|
|
3916
|
+
size?: EditorSeparator["size"]
|
|
3917
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3918
|
+
selected?: EditorSeparator["selected"]
|
|
3919
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3920
|
+
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3921
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3922
|
+
focusable?: EditorSeparator["focusable"]
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3923
3925
|
export type OthersCookieLineProps = {
|
|
3924
3926
|
/** (optional) The width and height in pixels */
|
|
3925
3927
|
size?: OthersCookieLine["size"]
|
|
@@ -4542,26 +4544,6 @@ declare module 'vue' {
|
|
|
4542
4544
|
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4543
4545
|
*/
|
|
4544
4546
|
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4545
|
-
/**
|
|
4546
|
-
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4547
|
-
*
|
|
4548
|
-
* ### Events:
|
|
4549
|
-
* - **dds-load** - Fired when the image loads successfully.
|
|
4550
|
-
* - **dds-error** - Fired when the image fails to load.
|
|
4551
|
-
*
|
|
4552
|
-
* ### Slots:
|
|
4553
|
-
* - **icon** - The icon to display when variant is 'icon'.
|
|
4554
|
-
* - **fallback** - Custom fallback content when image fails to load.
|
|
4555
|
-
*
|
|
4556
|
-
* ### CSS Parts:
|
|
4557
|
-
* - **base** - The main avatar container.
|
|
4558
|
-
* - **img** - The avatar image.
|
|
4559
|
-
* - **initials** - The initials container.
|
|
4560
|
-
* - **icon** - The icon container.
|
|
4561
|
-
* - **fallback** - The fallback content container.
|
|
4562
|
-
* - **loading** - The loading indicator.
|
|
4563
|
-
*/
|
|
4564
|
-
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4565
4547
|
/**
|
|
4566
4548
|
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4567
4549
|
*
|
|
@@ -4577,18 +4559,6 @@ declare module 'vue' {
|
|
|
4577
4559
|
* - **overflow** - The overflow indicator element.
|
|
4578
4560
|
*/
|
|
4579
4561
|
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4580
|
-
/**
|
|
4581
|
-
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4582
|
-
*
|
|
4583
|
-
* ### Slots:
|
|
4584
|
-
* - **default** - The content of the breadcrumb.
|
|
4585
|
-
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4586
|
-
*
|
|
4587
|
-
* ### CSS Parts:
|
|
4588
|
-
* - **base** - The main breadcrumb container.
|
|
4589
|
-
* - **separator** - The separator of the breadcrumb.
|
|
4590
|
-
*/
|
|
4591
|
-
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4592
4562
|
/**
|
|
4593
4563
|
* A badge is a small status descriptor for UI elements.
|
|
4594
4564
|
*
|
|
@@ -4627,6 +4597,18 @@ declare module 'vue' {
|
|
|
4627
4597
|
* - **title** - The title of the banner.
|
|
4628
4598
|
*/
|
|
4629
4599
|
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4600
|
+
/**
|
|
4601
|
+
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4602
|
+
*
|
|
4603
|
+
* ### Slots:
|
|
4604
|
+
* - **default** - The content of the breadcrumb.
|
|
4605
|
+
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4606
|
+
*
|
|
4607
|
+
* ### CSS Parts:
|
|
4608
|
+
* - **base** - The main breadcrumb container.
|
|
4609
|
+
* - **separator** - The separator of the breadcrumb.
|
|
4610
|
+
*/
|
|
4611
|
+
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4630
4612
|
/**
|
|
4631
4613
|
* An accordion group is a collection of accordion components.
|
|
4632
4614
|
*
|
|
@@ -4638,20 +4620,25 @@ declare module 'vue' {
|
|
|
4638
4620
|
*/
|
|
4639
4621
|
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4640
4622
|
/**
|
|
4641
|
-
*
|
|
4623
|
+
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4642
4624
|
*
|
|
4643
4625
|
* ### Events:
|
|
4644
|
-
* - **dds-
|
|
4626
|
+
* - **dds-load** - Fired when the image loads successfully.
|
|
4627
|
+
* - **dds-error** - Fired when the image fails to load.
|
|
4645
4628
|
*
|
|
4646
4629
|
* ### Slots:
|
|
4647
|
-
* - **
|
|
4630
|
+
* - **icon** - The icon to display when variant is 'icon'.
|
|
4631
|
+
* - **fallback** - Custom fallback content when image fails to load.
|
|
4648
4632
|
*
|
|
4649
4633
|
* ### CSS Parts:
|
|
4650
|
-
* - **base** - The main
|
|
4651
|
-
* - **
|
|
4652
|
-
* - **
|
|
4634
|
+
* - **base** - The main avatar container.
|
|
4635
|
+
* - **img** - The avatar image.
|
|
4636
|
+
* - **initials** - The initials container.
|
|
4637
|
+
* - **icon** - The icon container.
|
|
4638
|
+
* - **fallback** - The fallback content container.
|
|
4639
|
+
* - **loading** - The loading indicator.
|
|
4653
4640
|
*/
|
|
4654
|
-
'dap-ds-
|
|
4641
|
+
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4655
4642
|
/**
|
|
4656
4643
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4657
4644
|
*
|
|
@@ -4691,6 +4678,21 @@ declare module 'vue' {
|
|
|
4691
4678
|
* - **close** - The close button of the callout.
|
|
4692
4679
|
*/
|
|
4693
4680
|
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4681
|
+
/**
|
|
4682
|
+
* A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
|
|
4683
|
+
*
|
|
4684
|
+
* ### Events:
|
|
4685
|
+
* - **dds-loading-timeout** - Emitted when the loading timeout is reached
|
|
4686
|
+
*
|
|
4687
|
+
* ### Slots:
|
|
4688
|
+
* - **default** - The content of the button. Can contain text, icons, or other elements.
|
|
4689
|
+
*
|
|
4690
|
+
* ### CSS Parts:
|
|
4691
|
+
* - **base** - The main button container.
|
|
4692
|
+
* - **high-contrast** - The high contrast part of the button.
|
|
4693
|
+
* - **content** - The content wrapper inside the button.
|
|
4694
|
+
*/
|
|
4695
|
+
'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
|
|
4694
4696
|
/**
|
|
4695
4697
|
* Calendar cell represents a single cell in the calendar.
|
|
4696
4698
|
*
|
|
@@ -4724,6 +4726,27 @@ declare module 'vue' {
|
|
|
4724
4726
|
* - **calendar-header-month-select** - The month select of the calendar header.
|
|
4725
4727
|
*/
|
|
4726
4728
|
'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
|
|
4729
|
+
/**
|
|
4730
|
+
* A checkbox is a form element that allows the user to select one or more options from a set.
|
|
4731
|
+
*
|
|
4732
|
+
* ### Events:
|
|
4733
|
+
* - **dds-change** - Fired when the checkbox is checked or unchecked.
|
|
4734
|
+
* - **dds-blur** - Emitted when the checkbox loses focus.
|
|
4735
|
+
* - **dds-focus** - Emitted when the checkbox gains focus.
|
|
4736
|
+
* - **dds-input** - Emitted when the checkbox receives input.
|
|
4737
|
+
*
|
|
4738
|
+
* ### CSS Parts:
|
|
4739
|
+
* - **base** - The main checkbox container.
|
|
4740
|
+
* - **label** - The label of the checkbox.
|
|
4741
|
+
* - **input** - The input of the checkbox.
|
|
4742
|
+
* - **control** - The control of the checkbox.
|
|
4743
|
+
* - **icon** - The icon of the checkbox.
|
|
4744
|
+
* - **icon-base** - The base icon container.
|
|
4745
|
+
* - **label-container** - The label container of the checkbox.
|
|
4746
|
+
* - **description** - The description of the checkbox.
|
|
4747
|
+
* - **readonly** - The readonly state of the checkbox.
|
|
4748
|
+
*/
|
|
4749
|
+
'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
|
|
4727
4750
|
/**
|
|
4728
4751
|
* A card actions is a container for actions in a card.
|
|
4729
4752
|
*
|
|
@@ -4784,27 +4807,6 @@ declare module 'vue' {
|
|
|
4784
4807
|
* - **base** - The main card container.
|
|
4785
4808
|
*/
|
|
4786
4809
|
'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
|
|
4787
|
-
/**
|
|
4788
|
-
* A checkbox is a form element that allows the user to select one or more options from a set.
|
|
4789
|
-
*
|
|
4790
|
-
* ### Events:
|
|
4791
|
-
* - **dds-change** - Fired when the checkbox is checked or unchecked.
|
|
4792
|
-
* - **dds-blur** - Emitted when the checkbox loses focus.
|
|
4793
|
-
* - **dds-focus** - Emitted when the checkbox gains focus.
|
|
4794
|
-
* - **dds-input** - Emitted when the checkbox receives input.
|
|
4795
|
-
*
|
|
4796
|
-
* ### CSS Parts:
|
|
4797
|
-
* - **base** - The main checkbox container.
|
|
4798
|
-
* - **label** - The label of the checkbox.
|
|
4799
|
-
* - **input** - The input of the checkbox.
|
|
4800
|
-
* - **control** - The control of the checkbox.
|
|
4801
|
-
* - **icon** - The icon of the checkbox.
|
|
4802
|
-
* - **icon-base** - The base icon container.
|
|
4803
|
-
* - **label-container** - The label container of the checkbox.
|
|
4804
|
-
* - **description** - The description of the checkbox.
|
|
4805
|
-
* - **readonly** - The readonly state of the checkbox.
|
|
4806
|
-
*/
|
|
4807
|
-
'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
|
|
4808
4810
|
/**
|
|
4809
4811
|
* A chip is a small status descriptor for UI elements.
|
|
4810
4812
|
*
|
|
@@ -6062,7 +6064,7 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6062
6064
|
* ### CSS Parts:
|
|
6063
6065
|
* - **base** - The main icon container.
|
|
6064
6066
|
*/
|
|
6065
|
-
'dap-ds-icon-
|
|
6067
|
+
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6066
6068
|
/**
|
|
6067
6069
|
* An icon
|
|
6068
6070
|
*
|
|
@@ -6070,6 +6072,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6070
6072
|
* - **base** - The main icon container.
|
|
6071
6073
|
*/
|
|
6072
6074
|
'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
|
|
6075
|
+
/**
|
|
6076
|
+
* An icon
|
|
6077
|
+
*
|
|
6078
|
+
* ### CSS Parts:
|
|
6079
|
+
* - **base** - The main icon container.
|
|
6080
|
+
*/
|
|
6081
|
+
'dap-ds-icon-arrow-down-line': DefineCustomElement<ArrowsArrowDownLine, ArrowsArrowDownLineProps, {}>
|
|
6073
6082
|
/**
|
|
6074
6083
|
* An icon
|
|
6075
6084
|
*
|
|
@@ -6104,28 +6113,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6104
6113
|
* ### CSS Parts:
|
|
6105
6114
|
* - **base** - The main icon container.
|
|
6106
6115
|
*/
|
|
6107
|
-
'dap-ds-icon-arrow-left-s-
|
|
6116
|
+
'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
|
|
6108
6117
|
/**
|
|
6109
6118
|
* An icon
|
|
6110
6119
|
*
|
|
6111
6120
|
* ### CSS Parts:
|
|
6112
6121
|
* - **base** - The main icon container.
|
|
6113
6122
|
*/
|
|
6114
|
-
'dap-ds-icon-arrow-
|
|
6123
|
+
'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
|
|
6115
6124
|
/**
|
|
6116
6125
|
* An icon
|
|
6117
6126
|
*
|
|
6118
6127
|
* ### CSS Parts:
|
|
6119
6128
|
* - **base** - The main icon container.
|
|
6120
6129
|
*/
|
|
6121
|
-
'dap-ds-icon-arrow-left-
|
|
6130
|
+
'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
|
|
6122
6131
|
/**
|
|
6123
6132
|
* An icon
|
|
6124
6133
|
*
|
|
6125
6134
|
* ### CSS Parts:
|
|
6126
6135
|
* - **base** - The main icon container.
|
|
6127
6136
|
*/
|
|
6128
|
-
'dap-ds-icon-arrow-
|
|
6137
|
+
'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
|
|
6129
6138
|
/**
|
|
6130
6139
|
* An icon
|
|
6131
6140
|
*
|
|
@@ -6189,13 +6198,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6189
6198
|
* - **base** - The main icon container.
|
|
6190
6199
|
*/
|
|
6191
6200
|
'dap-ds-icon-expand-up-down-fill': DefineCustomElement<ArrowsExpandUpDownFill, ArrowsExpandUpDownFillProps, {}>
|
|
6192
|
-
/**
|
|
6193
|
-
* An icon
|
|
6194
|
-
*
|
|
6195
|
-
* ### CSS Parts:
|
|
6196
|
-
* - **base** - The main icon container.
|
|
6197
|
-
*/
|
|
6198
|
-
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6199
6201
|
/**
|
|
6200
6202
|
* An icon
|
|
6201
6203
|
*
|
|
@@ -6286,21 +6288,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6286
6288
|
* ### CSS Parts:
|
|
6287
6289
|
* - **base** - The main icon container.
|
|
6288
6290
|
*/
|
|
6289
|
-
'dap-ds-icon-
|
|
6291
|
+
'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
|
|
6290
6292
|
/**
|
|
6291
6293
|
* An icon
|
|
6292
6294
|
*
|
|
6293
6295
|
* ### CSS Parts:
|
|
6294
6296
|
* - **base** - The main icon container.
|
|
6295
6297
|
*/
|
|
6296
|
-
'dap-ds-icon-heart-
|
|
6298
|
+
'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
|
|
6297
6299
|
/**
|
|
6298
6300
|
* An icon
|
|
6299
6301
|
*
|
|
6300
6302
|
* ### CSS Parts:
|
|
6301
6303
|
* - **base** - The main icon container.
|
|
6302
6304
|
*/
|
|
6303
|
-
'dap-ds-icon-
|
|
6305
|
+
'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
|
|
6304
6306
|
/**
|
|
6305
6307
|
* An icon
|
|
6306
6308
|
*
|
|
@@ -6681,24 +6683,24 @@ declare global {
|
|
|
6681
6683
|
interface IntrinsicElements {
|
|
6682
6684
|
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6683
6685
|
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6684
|
-
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6685
6686
|
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6686
|
-
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6687
6687
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6688
6688
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6689
|
+
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6689
6690
|
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6690
|
-
'dap-ds-
|
|
6691
|
+
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6691
6692
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6692
6693
|
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6694
|
+
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6693
6695
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
6694
6696
|
'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
|
|
6697
|
+
'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
|
|
6695
6698
|
'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
|
|
6696
6699
|
'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
|
|
6697
6700
|
'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
|
|
6698
6701
|
'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
|
|
6699
6702
|
'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
|
|
6700
6703
|
'dap-ds-card': DapDSCardProps & DapDSCardSlots
|
|
6701
|
-
'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
|
|
6702
6704
|
'dap-ds-chip': DapDSChipProps & DapDSChipEvents
|
|
6703
6705
|
'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
|
|
6704
6706
|
'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
|
|
@@ -6773,16 +6775,17 @@ declare global {
|
|
|
6773
6775
|
'dap-ds-form-label': DapDSFormLabelProps
|
|
6774
6776
|
'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
|
|
6775
6777
|
'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
|
|
6776
|
-
'dap-ds-icon-
|
|
6778
|
+
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6777
6779
|
'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
|
|
6780
|
+
'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
|
|
6778
6781
|
'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
|
|
6779
6782
|
'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
|
|
6780
6783
|
'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
|
|
6781
6784
|
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6782
|
-
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6783
6785
|
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6784
|
-
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6785
6786
|
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6787
|
+
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6788
|
+
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6786
6789
|
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
6787
6790
|
'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
|
|
6788
6791
|
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
@@ -6792,7 +6795,6 @@ declare global {
|
|
|
6792
6795
|
'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
|
|
6793
6796
|
'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
|
|
6794
6797
|
'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
|
|
6795
|
-
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6796
6798
|
'dap-ds-icon-calendar-line': BusinessCalendarLineProps
|
|
6797
6799
|
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6798
6800
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
@@ -6805,9 +6807,9 @@ declare global {
|
|
|
6805
6807
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6806
6808
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
6807
6809
|
'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
|
|
6808
|
-
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6809
6810
|
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6810
6811
|
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6812
|
+
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6811
6813
|
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6812
6814
|
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6813
6815
|
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|