dap-design-system 0.35.21 → 0.35.22
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/dds.d.ts +105 -107
- package/dist/dds.js +261 -270
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +521 -517
- package/dist/manifest/vscode.html-custom-data.json +173 -173
- package/dist/manifest/web-types.json +617 -415
- package/dist/react-types.ts +17 -17
- package/dist/react.d.ts +211 -217
- package/dist/react.js +161 -163
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,12 +2,12 @@ import type { DefineComponent } from "vue";
|
|
|
2
2
|
|
|
3
3
|
import type { DapDSAccordion } from "../../components/accordion/accordion.component.js";
|
|
4
4
|
import type { DapDSAccordionGroup } from "../../components/accordion-group/accordion-group.component.js";
|
|
5
|
-
import type {
|
|
6
|
-
import type { DapDSBanner } from "../../components/banner/banner.component.js";
|
|
5
|
+
import type { DapDSAvatar } from "../../components/avatar/avatar.component.js";
|
|
7
6
|
import type { DapDSAnchorHeading } from "../../components/anchor-heading/anchor-heading.component.js";
|
|
7
|
+
import type { DapDSBanner } from "../../components/banner/banner.component.js";
|
|
8
8
|
import type { DapDSBreadcrumb } from "../../components/breadcrumb/breadcrumb.component.js";
|
|
9
|
-
import type { DapDSAvatar } from "../../components/avatar/avatar.component.js";
|
|
10
9
|
import type { DapDSBreadcrumbItem } from "../../components/breadcrumb-item/breadcrumb-item.component.js";
|
|
10
|
+
import type { DapDSBadge } from "../../components/badge/badge.component.js";
|
|
11
11
|
import type { DapDSButton } from "../../components/button/button.component.js";
|
|
12
12
|
import type { DapDSCalendarCell } from "../../components/calendar-cell/calendar-cell.component.js";
|
|
13
13
|
import type { DapDSCalendar } from "../../components/calendar/calendar.component.js";
|
|
@@ -19,10 +19,10 @@ import type { DapDSCardSubtitle } from "../../components/card-subtitle/card-subt
|
|
|
19
19
|
import type { DapDSCardTitle } from "../../components/card-title/card-title.component.js";
|
|
20
20
|
import type { DapDSCard } from "../../components/card/card.component.js";
|
|
21
21
|
import type { DapDSCheckbox } from "../../components/checkbox/checkbox.component.js";
|
|
22
|
-
import type { DapDSCombobox } from "../../components/combobox/combobox.component.js";
|
|
23
22
|
import type { DapDSCommandGroup } from "../../components/command-group/command-group.component.js";
|
|
24
23
|
import type { DapDSCommandItem } from "../../components/command-item/command-item.component.js";
|
|
25
24
|
import type { DapDSCommand } from "../../components/command/command.component.js";
|
|
25
|
+
import type { DapDSCombobox } from "../../components/combobox/combobox.component.js";
|
|
26
26
|
import type { DapDSContentSwitcherItem } from "../../components/content-switcher-item/content-switcher-item.component.js";
|
|
27
27
|
import type { DapDSContentSwitcher } from "../../components/content-switcher/content-switcher.component.js";
|
|
28
28
|
import type { DapDSCopyBoxInput } from "../../components/copybox-input/copybox-input.component.js";
|
|
@@ -81,13 +81,14 @@ import type { DapDSTypography } from "../../components/typography/typography.com
|
|
|
81
81
|
import type { DapDSFormLabel } from "../../components/form-label/form-label.component.js";
|
|
82
82
|
import type { DapDSInputGroup } from "../../components/input-group/input-group.component.js";
|
|
83
83
|
import type { DapDSRadioGroup } from "../../components/radio-group/radio-group.component.js";
|
|
84
|
+
import type { BuildingsHome6Line } from "../../components/icon-home-6-line/icon-home-6-line.component.js";
|
|
84
85
|
import type { ArrowsArrowDownLine } from "../../components/icon-arrow-down-line/icon-arrow-down-line.component.js";
|
|
85
86
|
import type { ArrowsArrowDownSFill } from "../../components/icon-arrow-down-s-fill/icon-arrow-down-s-fill.component.js";
|
|
86
87
|
import type { ArrowsArrowDownSLine } from "../../components/icon-arrow-down-s-line/icon-arrow-down-s-line.component.js";
|
|
87
88
|
import type { ArrowsArrowLeftDownLine } from "../../components/icon-arrow-left-down-line/icon-arrow-left-down-line.component.js";
|
|
89
|
+
import type { ArrowsArrowLeftSFill } from "../../components/icon-arrow-left-s-fill/icon-arrow-left-s-fill.component.js";
|
|
88
90
|
import type { ArrowsArrowLeftLLine } from "../../components/icon-arrow-left-l-line/icon-arrow-left-l-line.component.js";
|
|
89
91
|
import type { ArrowsArrowLeftLine } from "../../components/icon-arrow-left-line/icon-arrow-left-line.component.js";
|
|
90
|
-
import type { ArrowsArrowLeftSFill } from "../../components/icon-arrow-left-s-fill/icon-arrow-left-s-fill.component.js";
|
|
91
92
|
import type { ArrowsArrowLeftSLine } from "../../components/icon-arrow-left-s-line/icon-arrow-left-s-line.component.js";
|
|
92
93
|
import type { ArrowsArrowLeftUpLine } from "../../components/icon-arrow-left-up-line/icon-arrow-left-up-line.component.js";
|
|
93
94
|
import type { ArrowsArrowRightDownLine } from "../../components/icon-arrow-right-down-line/icon-arrow-right-down-line.component.js";
|
|
@@ -96,50 +97,49 @@ import type { ArrowsArrowRightLine } from "../../components/icon-arrow-right-lin
|
|
|
96
97
|
import type { ArrowsArrowRightSFill } from "../../components/icon-arrow-right-s-fill/icon-arrow-right-s-fill.component.js";
|
|
97
98
|
import type { ArrowsArrowRightSLine } from "../../components/icon-arrow-right-s-line/icon-arrow-right-s-line.component.js";
|
|
98
99
|
import type { ArrowsArrowRightUpLine } from "../../components/icon-arrow-right-up-line/icon-arrow-right-up-line.component.js";
|
|
99
|
-
import type { ArrowsArrowUpLine } from "../../components/icon-arrow-up-line/icon-arrow-up-line.component.js";
|
|
100
100
|
import type { ArrowsArrowUpSFill } from "../../components/icon-arrow-up-s-fill/icon-arrow-up-s-fill.component.js";
|
|
101
|
+
import type { ArrowsArrowUpLine } from "../../components/icon-arrow-up-line/icon-arrow-up-line.component.js";
|
|
101
102
|
import type { ArrowsArrowUpSLine } from "../../components/icon-arrow-up-s-line/icon-arrow-up-s-line.component.js";
|
|
102
103
|
import type { ArrowsExpandUpDownFill } from "../../components/icon-expand-up-down-fill/icon-expand-up-down-fill.component.js";
|
|
103
|
-
import type { BuildingsHome6Line } from "../../components/icon-home-6-line/icon-home-6-line.component.js";
|
|
104
104
|
import type { BusinessCalendarLine } from "../../components/icon-calendar-line/icon-calendar-line.component.js";
|
|
105
105
|
import type { DocumentClipboardLine } from "../../components/icon-clipboard-line/icon-clipboard-line.component.js";
|
|
106
106
|
import type { DocumentFileCopyLine } from "../../components/icon-file-copy-line/icon-file-copy-line.component.js";
|
|
107
107
|
import type { OthersCookieLine } from "../../components/icon-cookie-line/icon-cookie-line.component.js";
|
|
108
108
|
import type { SystemAddLine } from "../../components/icon-add-line/icon-add-line.component.js";
|
|
109
109
|
import type { SystemAlertFill } from "../../components/icon-alert-fill/icon-alert-fill.component.js";
|
|
110
|
-
import type { SystemAlertLine } from "../../components/icon-alert-line/icon-alert-line.component.js";
|
|
111
110
|
import type { SystemCheckLine } from "../../components/icon-check-line/icon-check-line.component.js";
|
|
111
|
+
import type { SystemAlertLine } from "../../components/icon-alert-line/icon-alert-line.component.js";
|
|
112
112
|
import type { SystemCheckLine2 } from "../../components/icon-check-line2/icon-check-line2.component.js";
|
|
113
|
-
import type { SystemCheckboxBlankCircleFill } from "../../components/icon-checkbox-blank-circle-fill/icon-checkbox-blank-circle-fill.component.js";
|
|
114
113
|
import type { SystemCheckboxBlankCircleFillCheck } from "../../components/icon-checkbox-blank-circle-fill-check/icon-checkbox-blank-circle-fill-check.component.js";
|
|
114
|
+
import type { SystemCheckboxBlankCircleFill } from "../../components/icon-checkbox-blank-circle-fill/icon-checkbox-blank-circle-fill.component.js";
|
|
115
115
|
import type { SystemCheckboxBlankCircleLine } from "../../components/icon-checkbox-blank-circle-line/icon-checkbox-blank-circle-line.component.js";
|
|
116
116
|
import type { SystemCheckboxCircleFill } from "../../components/icon-checkbox-circle-fill/icon-checkbox-circle-fill.component.js";
|
|
117
117
|
import type { SystemCheckboxCircleLine } from "../../components/icon-checkbox-circle-line/icon-checkbox-circle-line.component.js";
|
|
118
118
|
import type { SystemCloseCircleFill } from "../../components/icon-close-circle-fill/icon-close-circle-fill.component.js";
|
|
119
|
-
import type { SystemCloseCircleLine } from "../../components/icon-close-circle-line/icon-close-circle-line.component.js";
|
|
120
119
|
import type { SystemCloseFill } from "../../components/icon-close-fill/icon-close-fill.component.js";
|
|
120
|
+
import type { SystemCloseCircleLine } from "../../components/icon-close-circle-line/icon-close-circle-line.component.js";
|
|
121
121
|
import type { SystemCloseLine } from "../../components/icon-close-line/icon-close-line.component.js";
|
|
122
|
-
import type { SystemDownloadLine } from "../../components/icon-download-line/icon-download-line.component.js";
|
|
123
122
|
import type { SystemErrorWarningFill } from "../../components/icon-error-warning-fill/icon-error-warning-fill.component.js";
|
|
123
|
+
import type { SystemDownloadLine } from "../../components/icon-download-line/icon-download-line.component.js";
|
|
124
124
|
import type { SystemErrorWarningLine } from "../../components/icon-error-warning-line/icon-error-warning-line.component.js";
|
|
125
125
|
import type { SystemExternalLinkLine } from "../../components/icon-external-link-line/icon-external-link-line.component.js";
|
|
126
126
|
import type { SystemEyeLine } from "../../components/icon-eye-line/icon-eye-line.component.js";
|
|
127
127
|
import type { SystemEyeOffLine } from "../../components/icon-eye-off-line/icon-eye-off-line.component.js";
|
|
128
|
-
import type { SystemForbidFill } from "../../components/icon-forbid-fill/icon-forbid-fill.component.js";
|
|
129
128
|
import type { SystemInformation2Fill } from "../../components/icon-information-2-fill/icon-information-2-fill.component.js";
|
|
129
|
+
import type { SystemForbidFill } from "../../components/icon-forbid-fill/icon-forbid-fill.component.js";
|
|
130
130
|
import type { SystemInformationFill } from "../../components/icon-information-fill/icon-information-fill.component.js";
|
|
131
|
-
import type { SystemInformationLine } from "../../components/icon-information-line/icon-information-line.component.js";
|
|
132
131
|
import type { SystemLightbulbFill } from "../../components/icon-lightbulb-fill/icon-lightbulb-fill.component.js";
|
|
133
|
-
import type {
|
|
132
|
+
import type { SystemInformationLine } from "../../components/icon-information-line/icon-information-line.component.js";
|
|
134
133
|
import type { SystemLockFill } from "../../components/icon-lock-fill/icon-lock-fill.component.js";
|
|
134
|
+
import type { SystemLoadingSpinner } from "../../components/icon-loading-spinner/icon-loading-spinner.component.js";
|
|
135
135
|
import type { SystemLockLine } from "../../components/icon-lock-line/icon-lock-line.component.js";
|
|
136
|
-
import type { SystemMenuLine } from "../../components/icon-menu-line/icon-menu-line.component.js";
|
|
137
136
|
import type { SystemMenuLineS } from "../../components/icon-menu-line-s/icon-menu-line-s.component.js";
|
|
138
|
-
import type {
|
|
137
|
+
import type { SystemMenuLine } from "../../components/icon-menu-line/icon-menu-line.component.js";
|
|
139
138
|
import type { SystemShieldCheckFill } from "../../components/icon-shield-check-fill/icon-shield-check-fill.component.js";
|
|
139
|
+
import type { SystemSearchLine } from "../../components/icon-search-line/icon-search-line.component.js";
|
|
140
140
|
import type { SystemShieldCheckLine } from "../../components/icon-shield-check-line/icon-shield-check-line.component.js";
|
|
141
|
-
import type { SystemStarFill } from "../../components/icon-star-fill/icon-star-fill.component.js";
|
|
142
141
|
import type { SystemSubtractLine } from "../../components/icon-subtract-line/icon-subtract-line.component.js";
|
|
142
|
+
import type { SystemStarFill } from "../../components/icon-star-fill/icon-star-fill.component.js";
|
|
143
143
|
import type { SystemSubtractLine2 } from "../../components/icon-subtract-line2/icon-subtract-line2.component.js";
|
|
144
144
|
|
|
145
145
|
type DapDSAccordionProps = {
|
|
@@ -156,9 +156,9 @@ type DapDSAccordionProps = {
|
|
|
156
156
|
/** Whether the accordion is the last item. */
|
|
157
157
|
lastItem?: DapDSAccordion["lastItem"];
|
|
158
158
|
/** Event fired when the accordion is opened. */
|
|
159
|
-
"ondds-opened"?: (e: CustomEvent<
|
|
159
|
+
"ondds-opened"?: (e: CustomEvent<{ open: boolean; item: AccordionBaseElement }>) => void;
|
|
160
160
|
/** Event fired when the accordion is closed. */
|
|
161
|
-
"ondds-closed"?: (e: CustomEvent<
|
|
161
|
+
"ondds-closed"?: (e: CustomEvent<{ open: boolean; item: AccordionBaseElement }>) => void;
|
|
162
162
|
};
|
|
163
163
|
|
|
164
164
|
type DapDSAccordionGroupProps = {
|
|
@@ -166,18 +166,30 @@ type DapDSAccordionGroupProps = {
|
|
|
166
166
|
autoClose?: DapDSAccordionGroup["autoClose"];
|
|
167
167
|
/** The variant of the accordion */
|
|
168
168
|
variant?: DapDSAccordionGroup["variant"];
|
|
169
|
+
};
|
|
169
170
|
|
|
170
|
-
|
|
171
|
-
|
|
171
|
+
type DapDSAvatarProps = {
|
|
172
|
+
/** The size of the avatar */
|
|
173
|
+
size?: DapDSAvatar["size"];
|
|
174
|
+
/** The source of the avatar. */
|
|
175
|
+
src?: DapDSAvatar["src"];
|
|
176
|
+
/** The alt text of the avatar. */
|
|
177
|
+
alt?: DapDSAvatar["alt"];
|
|
178
|
+
/** The width of the avatar. This will override the size. */
|
|
179
|
+
width?: DapDSAvatar["width"];
|
|
180
|
+
/** The height of the avatar. This will override the size. */
|
|
181
|
+
height?: DapDSAvatar["height"];
|
|
172
182
|
};
|
|
173
183
|
|
|
174
|
-
type
|
|
175
|
-
/** The
|
|
176
|
-
|
|
177
|
-
/** The
|
|
178
|
-
|
|
179
|
-
/**
|
|
180
|
-
|
|
184
|
+
type DapDSAnchorHeadingProps = {
|
|
185
|
+
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
186
|
+
variant?: DapDSAnchorHeading["variant"];
|
|
187
|
+
/** The label of the heading. */
|
|
188
|
+
label?: DapDSAnchorHeading["label"];
|
|
189
|
+
/** */
|
|
190
|
+
elementId?: DapDSAnchorHeading["elementId"];
|
|
191
|
+
/** */
|
|
192
|
+
anchorTitle?: DapDSAnchorHeading["anchorTitle"];
|
|
181
193
|
};
|
|
182
194
|
|
|
183
195
|
type DapDSBannerProps = {
|
|
@@ -193,18 +205,7 @@ type DapDSBannerProps = {
|
|
|
193
205
|
icon?: DapDSBanner["icon"];
|
|
194
206
|
|
|
195
207
|
/** Event fired when the banner is closed. */
|
|
196
|
-
"ondds-close"?: (e: CustomEvent<
|
|
197
|
-
};
|
|
198
|
-
|
|
199
|
-
type DapDSAnchorHeadingProps = {
|
|
200
|
-
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
201
|
-
variant?: DapDSAnchorHeading["variant"];
|
|
202
|
-
/** The label of the heading. */
|
|
203
|
-
label?: DapDSAnchorHeading["label"];
|
|
204
|
-
/** */
|
|
205
|
-
elementId?: DapDSAnchorHeading["elementId"];
|
|
206
|
-
/** */
|
|
207
|
-
anchorTitle?: DapDSAnchorHeading["anchorTitle"];
|
|
208
|
+
"ondds-close"?: (e: CustomEvent<{ void }>) => void;
|
|
208
209
|
};
|
|
209
210
|
|
|
210
211
|
type DapDSBreadcrumbProps = {
|
|
@@ -218,19 +219,6 @@ type DapDSBreadcrumbProps = {
|
|
|
218
219
|
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"];
|
|
219
220
|
};
|
|
220
221
|
|
|
221
|
-
type DapDSAvatarProps = {
|
|
222
|
-
/** The size of the avatar */
|
|
223
|
-
size?: DapDSAvatar["size"];
|
|
224
|
-
/** The source of the avatar. */
|
|
225
|
-
src?: DapDSAvatar["src"];
|
|
226
|
-
/** The alt text of the avatar. */
|
|
227
|
-
alt?: DapDSAvatar["alt"];
|
|
228
|
-
/** The width of the avatar. This will override the size. */
|
|
229
|
-
width?: DapDSAvatar["width"];
|
|
230
|
-
/** The height of the avatar. This will override the size. */
|
|
231
|
-
height?: DapDSAvatar["height"];
|
|
232
|
-
};
|
|
233
|
-
|
|
234
222
|
type DapDSBreadcrumbItemProps = {
|
|
235
223
|
/** The URL of the breadcrumb item. */
|
|
236
224
|
href?: DapDSBreadcrumbItem["href"];
|
|
@@ -246,6 +234,15 @@ type DapDSBreadcrumbItemProps = {
|
|
|
246
234
|
variant?: DapDSBreadcrumbItem["variant"];
|
|
247
235
|
};
|
|
248
236
|
|
|
237
|
+
type DapDSBadgeProps = {
|
|
238
|
+
/** The type of the badge */
|
|
239
|
+
type?: DapDSBadge["type"];
|
|
240
|
+
/** The size of the badge */
|
|
241
|
+
size?: DapDSBadge["size"];
|
|
242
|
+
/** The icon of the badge, this is a name of a built in icon */
|
|
243
|
+
icon?: DapDSBadge["icon"];
|
|
244
|
+
};
|
|
245
|
+
|
|
249
246
|
type DapDSButtonProps = {
|
|
250
247
|
/** The variant of the button */
|
|
251
248
|
variant?: DapDSButton["variant"];
|
|
@@ -314,7 +311,7 @@ type DapDSCalendarProps = {
|
|
|
314
311
|
/** */
|
|
315
312
|
endDate?: DapDSCalendar["endDate"];
|
|
316
313
|
/** Fired when the calendar value changes. */
|
|
317
|
-
"ondds-change"?: (e: CustomEvent<
|
|
314
|
+
"ondds-change"?: (e: CustomEvent<{ value: Dayjs }>) => void;
|
|
318
315
|
};
|
|
319
316
|
|
|
320
317
|
type DapDSCalloutProps = {
|
|
@@ -336,7 +333,7 @@ type DapDSCalloutProps = {
|
|
|
336
333
|
opened?: DapDSCallout["opened"];
|
|
337
334
|
|
|
338
335
|
/** Fired when the close button is clicked. */
|
|
339
|
-
"ondds-close"?: (e: CustomEvent<
|
|
336
|
+
"ondds-close"?: (e: CustomEvent<{ void }>) => void;
|
|
340
337
|
};
|
|
341
338
|
|
|
342
339
|
type DapDSCardActionsProps = {
|
|
@@ -459,76 +456,17 @@ type DapDSCheckboxProps = {
|
|
|
459
456
|
/** The optional label of the checkbox. */
|
|
460
457
|
optionalLabel?: DapDSCheckbox["optionalLabel"];
|
|
461
458
|
/** Fired when the checkbox is checked or unchecked. */
|
|
462
|
-
"ondds-change"?: (
|
|
459
|
+
"ondds-change"?: (
|
|
460
|
+
e: CustomEvent<{ checked: boolean; indeterminate: boolean; value: string; disabled: boolean; type: "checkbox" }>,
|
|
461
|
+
) => void;
|
|
463
462
|
/** Emitted when the checkbox loses focus. */
|
|
464
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
463
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
465
464
|
/** Emitted when the checkbox gains focus. */
|
|
466
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
465
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
467
466
|
/** Emitted when the checkbox receives input. */
|
|
468
|
-
"ondds-input"?: (
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
type DapDSComboboxProps = {
|
|
472
|
-
/** The value of the select. */
|
|
473
|
-
value?: DapDSCombobox["value"];
|
|
474
|
-
/** The placeholder of the select. */
|
|
475
|
-
placeholder?: DapDSCombobox["placeholder"];
|
|
476
|
-
/** The placement of the select dropdown. Default is 'bottom-start'. */
|
|
477
|
-
placement?: DapDSCombobox["placement"];
|
|
478
|
-
/** Whether the select dropdown is opened. */
|
|
479
|
-
opened?: DapDSCombobox["opened"];
|
|
480
|
-
/** The sync mode of the select dropdown. How the dropdown item size is synced to the trigger element'. */
|
|
481
|
-
sync?: DapDSCombobox["sync"];
|
|
482
|
-
/** The label of the select. */
|
|
483
|
-
label?: DapDSCombobox["label"];
|
|
484
|
-
/** The description of the select. */
|
|
485
|
-
description?: DapDSCombobox["description"];
|
|
486
|
-
/** The tooltip of the select. */
|
|
487
|
-
tooltip?: DapDSCombobox["tooltip"];
|
|
488
|
-
/** The tooltip placement of the input. */
|
|
489
|
-
tooltipPlacement?: DapDSCombobox["tooltipPlacement"];
|
|
490
|
-
/** The size of the select. Default is 'md'. */
|
|
491
|
-
size?: DapDSCombobox["size"];
|
|
492
|
-
/** Whether the select is disabled. */
|
|
493
|
-
disabled?: DapDSCombobox["disabled"];
|
|
494
|
-
/** Whether the select is required. */
|
|
495
|
-
required?: DapDSCombobox["required"];
|
|
496
|
-
/** Whether the select is readonly. */
|
|
497
|
-
readonly?: DapDSCombobox["readonly"];
|
|
498
|
-
/** Whether the select is autofocus. */
|
|
499
|
-
autofocus?: DapDSCombobox["autofocus"];
|
|
500
|
-
/** The feedback content of the select. */
|
|
501
|
-
feedback?: DapDSCombobox["feedback"];
|
|
502
|
-
/** The feedback type of the select. */
|
|
503
|
-
feedbackType?: DapDSCombobox["feedbackType"];
|
|
504
|
-
/** The search mode of the select. */
|
|
505
|
-
searchMode?: DapDSCombobox["searchMode"];
|
|
506
|
-
/** Whether the combobox should open on empty results. */
|
|
507
|
-
openOnEmpty?: DapDSCombobox["openOnEmpty"];
|
|
508
|
-
/** Whether the combobox allows manual input, or free text. */
|
|
509
|
-
allowManualInput?: DapDSCombobox["allowManualInput"];
|
|
510
|
-
/** Whether the combobox should search for the selected item text. */
|
|
511
|
-
searchForText?: DapDSCombobox["searchForText"];
|
|
512
|
-
/** Whether the combobox should not complete the text. */
|
|
513
|
-
noTextComplete?: DapDSCombobox["noTextComplete"];
|
|
514
|
-
/** The aria label of the search button. */
|
|
515
|
-
searchButtonAriaLabel?: DapDSCombobox["searchButtonAriaLabel"];
|
|
516
|
-
/** Show the selected item check mark in the dropdown. 'true' or 'false' */
|
|
517
|
-
selectable?: DapDSCombobox["selectable"];
|
|
518
|
-
/** Whether the combobox open indicator should be animated. */
|
|
519
|
-
noAnimation?: DapDSCombobox["noAnimation"];
|
|
520
|
-
/** Fired when the select value changes. */
|
|
521
|
-
"ondds-change"?: (e: CustomEvent<never>) => void;
|
|
522
|
-
/** Emitted when the select loses focus. */
|
|
523
|
-
"ondds-blur"?: (e: CustomEvent<never>) => void;
|
|
524
|
-
/** Emitted when the select gains focus. */
|
|
525
|
-
"ondds-focus"?: (e: CustomEvent<never>) => void;
|
|
526
|
-
/** Emitted when the select is cleared. */
|
|
527
|
-
"ondds-clear"?: (e: CustomEvent<never>) => void;
|
|
528
|
-
/** Emitted when the manual input value changes. */
|
|
529
|
-
"ondds-search"?: (e: CustomEvent<never>) => void;
|
|
530
|
-
/** Emitted when typing happens in the input. */
|
|
531
|
-
"ondds-input"?: (e: CustomEvent<never>) => void;
|
|
467
|
+
"ondds-input"?: (
|
|
468
|
+
e: CustomEvent<{ checked: boolean; indeterminate: boolean; value: string; disabled: boolean }>,
|
|
469
|
+
) => void;
|
|
532
470
|
};
|
|
533
471
|
|
|
534
472
|
type DapDSCommandGroupProps = {
|
|
@@ -559,7 +497,7 @@ type DapDSCommandItemProps = {
|
|
|
559
497
|
closeOnSelect?: DapDSCommandItem["closeOnSelect"];
|
|
560
498
|
|
|
561
499
|
/** Fired when the command item is clicked. */
|
|
562
|
-
"ondds-command-item-click"?: (e: CustomEvent<
|
|
500
|
+
"ondds-command-item-click"?: (e: CustomEvent<{ value: string; closeOnSelect: boolean }>) => void;
|
|
563
501
|
};
|
|
564
502
|
|
|
565
503
|
type DapDSCommandProps = {
|
|
@@ -586,9 +524,72 @@ type DapDSCommandProps = {
|
|
|
586
524
|
/** The size of the popup. */
|
|
587
525
|
size?: DapDSCommand["size"];
|
|
588
526
|
/** Fired when the popup is opened. */
|
|
589
|
-
"ondds-opened"?: (e: CustomEvent<
|
|
527
|
+
"ondds-opened"?: (e: CustomEvent<{ void }>) => void;
|
|
590
528
|
/** Fired when the popup is closed. */
|
|
591
|
-
"ondds-closed"?: (e: CustomEvent<
|
|
529
|
+
"ondds-closed"?: (e: CustomEvent<{ void }>) => void;
|
|
530
|
+
};
|
|
531
|
+
|
|
532
|
+
type DapDSComboboxProps = {
|
|
533
|
+
/** The value of the select. */
|
|
534
|
+
value?: DapDSCombobox["value"];
|
|
535
|
+
/** The placeholder of the select. */
|
|
536
|
+
placeholder?: DapDSCombobox["placeholder"];
|
|
537
|
+
/** The placement of the select dropdown. Default is 'bottom-start'. */
|
|
538
|
+
placement?: DapDSCombobox["placement"];
|
|
539
|
+
/** Whether the select dropdown is opened. */
|
|
540
|
+
opened?: DapDSCombobox["opened"];
|
|
541
|
+
/** The sync mode of the select dropdown. How the dropdown item size is synced to the trigger element'. */
|
|
542
|
+
sync?: DapDSCombobox["sync"];
|
|
543
|
+
/** The label of the select. */
|
|
544
|
+
label?: DapDSCombobox["label"];
|
|
545
|
+
/** The description of the select. */
|
|
546
|
+
description?: DapDSCombobox["description"];
|
|
547
|
+
/** The tooltip of the select. */
|
|
548
|
+
tooltip?: DapDSCombobox["tooltip"];
|
|
549
|
+
/** The tooltip placement of the input. */
|
|
550
|
+
tooltipPlacement?: DapDSCombobox["tooltipPlacement"];
|
|
551
|
+
/** The size of the select. Default is 'md'. */
|
|
552
|
+
size?: DapDSCombobox["size"];
|
|
553
|
+
/** Whether the select is disabled. */
|
|
554
|
+
disabled?: DapDSCombobox["disabled"];
|
|
555
|
+
/** Whether the select is required. */
|
|
556
|
+
required?: DapDSCombobox["required"];
|
|
557
|
+
/** Whether the select is readonly. */
|
|
558
|
+
readonly?: DapDSCombobox["readonly"];
|
|
559
|
+
/** Whether the select is autofocus. */
|
|
560
|
+
autofocus?: DapDSCombobox["autofocus"];
|
|
561
|
+
/** The feedback content of the select. */
|
|
562
|
+
feedback?: DapDSCombobox["feedback"];
|
|
563
|
+
/** The feedback type of the select. */
|
|
564
|
+
feedbackType?: DapDSCombobox["feedbackType"];
|
|
565
|
+
/** The search mode of the select. */
|
|
566
|
+
searchMode?: DapDSCombobox["searchMode"];
|
|
567
|
+
/** Whether the combobox should open on empty results. */
|
|
568
|
+
openOnEmpty?: DapDSCombobox["openOnEmpty"];
|
|
569
|
+
/** Whether the combobox allows manual input, or free text. */
|
|
570
|
+
allowManualInput?: DapDSCombobox["allowManualInput"];
|
|
571
|
+
/** Whether the combobox should search for the selected item text. */
|
|
572
|
+
searchForText?: DapDSCombobox["searchForText"];
|
|
573
|
+
/** Whether the combobox should not complete the text. */
|
|
574
|
+
noTextComplete?: DapDSCombobox["noTextComplete"];
|
|
575
|
+
/** The aria label of the search button. */
|
|
576
|
+
searchButtonAriaLabel?: DapDSCombobox["searchButtonAriaLabel"];
|
|
577
|
+
/** Show the selected item check mark in the dropdown. 'true' or 'false' */
|
|
578
|
+
selectable?: DapDSCombobox["selectable"];
|
|
579
|
+
/** Whether the combobox open indicator should be animated. */
|
|
580
|
+
noAnimation?: DapDSCombobox["noAnimation"];
|
|
581
|
+
/** Fired when the select value changes. */
|
|
582
|
+
"ondds-change"?: (e: CustomEvent<{ value }>) => void;
|
|
583
|
+
/** Emitted when the select loses focus. */
|
|
584
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
585
|
+
/** Emitted when the select gains focus. */
|
|
586
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
587
|
+
/** Emitted when the select is cleared. */
|
|
588
|
+
"ondds-clear"?: (e: CustomEvent<{ void }>) => void;
|
|
589
|
+
/** Emitted when the manual input value changes. */
|
|
590
|
+
"ondds-search"?: (e: CustomEvent<{ search: string }>) => void;
|
|
591
|
+
/** Emitted when typing happens in the input. */
|
|
592
|
+
"ondds-input"?: (e: CustomEvent<{ input: string; originalEvent: Event }>) => void;
|
|
592
593
|
};
|
|
593
594
|
|
|
594
595
|
type DapDSContentSwitcherItemProps = {
|
|
@@ -608,8 +609,8 @@ type DapDSContentSwitcherProps = {
|
|
|
608
609
|
/** The value of the content switcher. A comma-separated list if `multiSelect` is `true`. */
|
|
609
610
|
value?: DapDSContentSwitcher["value"];
|
|
610
611
|
|
|
611
|
-
/** Fired when the content switcher is changed.
|
|
612
|
-
"ondds-change"?: (e: CustomEvent<
|
|
612
|
+
/** Fired when the content switcher is changed. */
|
|
613
|
+
"ondds-change"?: (e: CustomEvent<{ value: string; selected: boolean }>) => void;
|
|
613
614
|
};
|
|
614
615
|
|
|
615
616
|
type DapDSCopyBoxInputProps = {
|
|
@@ -656,19 +657,19 @@ type DapDSCopyBoxInputProps = {
|
|
|
656
657
|
/** The weight of the label. Default is `false` */
|
|
657
658
|
subtle?: DapDSCopyBoxInput["subtle"];
|
|
658
659
|
/** Fired when the user clicks on the copy button. */
|
|
659
|
-
"ondds-copy"?: (e: CustomEvent<
|
|
660
|
+
"ondds-copy"?: (e: CustomEvent<{ value: string }>) => void;
|
|
660
661
|
/** Fired when the input value changes. */
|
|
661
|
-
"ondds-change"?: (e: CustomEvent<
|
|
662
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
662
663
|
/** Fired when the input value changes. */
|
|
663
|
-
"ondds-input"?: (e: CustomEvent<
|
|
664
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
664
665
|
/** Fired when a key is pressed down. */
|
|
665
|
-
"ondds-keydown"?: (e: CustomEvent<
|
|
666
|
+
"ondds-keydown"?: (e: CustomEvent<{ value: string; originalEvent: Event }>) => void;
|
|
666
667
|
/** Fired when the input loses focus. */
|
|
667
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
668
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
668
669
|
/** Emitted when the input gains focus. */
|
|
669
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
670
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
670
671
|
/** Emitted when the value cannot be copied. */
|
|
671
|
-
"ondds-not-allowed"?: (e: CustomEvent<
|
|
672
|
+
"ondds-not-allowed"?: (e: CustomEvent<{ void }>) => void;
|
|
672
673
|
};
|
|
673
674
|
|
|
674
675
|
type DapDSDAPBadgeProps = {
|
|
@@ -738,13 +739,13 @@ type DapDSDataTableProps = {
|
|
|
738
739
|
/** The function to determine the pager text */
|
|
739
740
|
pageStateText?: DapDSDataTable["pageStateText"];
|
|
740
741
|
/** Fired when the sorting of the table changes. */
|
|
741
|
-
"ondds-sorting-change"?: (e: CustomEvent<
|
|
742
|
+
"ondds-sorting-change"?: (e: CustomEvent<{ sorting: SortingState }>) => void;
|
|
742
743
|
/** Fired when the selection of the table changes. */
|
|
743
|
-
"ondds-selection-change"?: (e: CustomEvent<
|
|
744
|
+
"ondds-selection-change"?: (e: CustomEvent<{ selection: RowSelectionState }>) => void;
|
|
744
745
|
/** Fired when the pagination of the table changes. */
|
|
745
|
-
"ondds-pagination-change"?: (e: CustomEvent<
|
|
746
|
+
"ondds-pagination-change"?: (e: CustomEvent<{ pagination: PaginationState }>) => void;
|
|
746
747
|
/** Fired when a row is clicked. */
|
|
747
|
-
"ondds-row-click"?: (e: CustomEvent<
|
|
748
|
+
"ondds-row-click"?: (e: CustomEvent<{ row: Row<T> }>) => void;
|
|
748
749
|
};
|
|
749
750
|
|
|
750
751
|
type DapDSDatePickerProps = {
|
|
@@ -815,19 +816,19 @@ type DapDSDatePickerProps = {
|
|
|
815
816
|
/** The autocomplete of the datepicker. */
|
|
816
817
|
autocomplete?: DapDSDatePicker["autocomplete"];
|
|
817
818
|
/** Fired when the datepicker value changes. */
|
|
818
|
-
"ondds-change"?: (e: CustomEvent<
|
|
819
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
819
820
|
/** Fired when the datepicker input value changes. */
|
|
820
|
-
"ondds-input"?: (e: CustomEvent<
|
|
821
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
821
822
|
/** Fired when the datepicker input value is valid. Happens on manual input typing. */
|
|
822
|
-
"ondds-valid-date"?: (e: CustomEvent<
|
|
823
|
-
/** Fired when the datepicker input value is invalid.
|
|
824
|
-
"ondds-invalid-date"?: (e: CustomEvent<
|
|
823
|
+
"ondds-valid-date"?: (e: CustomEvent<{ value: string }>) => void;
|
|
824
|
+
/** Fired when the datepicker input value is invalid. Happens on manual input typing. */
|
|
825
|
+
"ondds-invalid-date"?: (e: CustomEvent<{ value: string; type: "invalid" | "out-of-range" }>) => void;
|
|
825
826
|
/** Fired when the datepicker is cleared. */
|
|
826
|
-
"ondds-clear"?: (e: CustomEvent<
|
|
827
|
+
"ondds-clear"?: (e: CustomEvent<{ void }>) => void;
|
|
827
828
|
/** Emitted when the datepicker gains focus. */
|
|
828
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
829
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
829
830
|
/** Emitted when the datepicker loses focus. */
|
|
830
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
831
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
831
832
|
};
|
|
832
833
|
|
|
833
834
|
type DapDSDividerProps = {
|
|
@@ -886,7 +887,7 @@ type DapDSFileInputListItemProps = {
|
|
|
886
887
|
/** */
|
|
887
888
|
formattedSize?: DapDSFileInputListItem["formattedSize"];
|
|
888
889
|
/** Dispatched when a file is removed from the list. */
|
|
889
|
-
"ondds-file-remove"?: (e: CustomEvent<
|
|
890
|
+
"ondds-file-remove"?: (e: CustomEvent<{ file: FileListElement }>) => void;
|
|
890
891
|
};
|
|
891
892
|
|
|
892
893
|
type DapDSFileInputListProps = {
|
|
@@ -954,19 +955,19 @@ type DapDSFileInputProps = {
|
|
|
954
955
|
/** Font weight of the feedback label. Default is `false` which is bold. */
|
|
955
956
|
subtle?: DapDSFileInput["subtle"];
|
|
956
957
|
/** Fired when a file upload starts. */
|
|
957
|
-
"ondds-upload-start"?: (e: CustomEvent<
|
|
958
|
+
"ondds-upload-start"?: (e: CustomEvent<{ file: File }>) => void;
|
|
958
959
|
/** Fired during file upload progress. */
|
|
959
|
-
"ondds-upload-progress"?: (e: CustomEvent<
|
|
960
|
+
"ondds-upload-progress"?: (e: CustomEvent<{ file: File; progress: number }>) => void;
|
|
960
961
|
/** Fired when a file upload completes successfully. */
|
|
961
|
-
"ondds-upload-complete"?: (e: CustomEvent<
|
|
962
|
+
"ondds-upload-complete"?: (e: CustomEvent<{ file: File; item: DapDSFileInputListItem; result: any }>) => void;
|
|
962
963
|
/** Fired when a file upload encounters an error. */
|
|
963
|
-
"ondds-upload-error"?: (e: CustomEvent<
|
|
964
|
+
"ondds-upload-error"?: (e: CustomEvent<{ file: File; item: DapDSFileInputListItem; error: Error }>) => void;
|
|
964
965
|
/** Fired when all file uploads are complete. */
|
|
965
|
-
"ondds-all-uploads-complete"?: (e: CustomEvent<
|
|
966
|
+
"ondds-all-uploads-complete"?: (e: CustomEvent<{ void }>) => void;
|
|
966
967
|
/** Fired when a file is removed from the file input. */
|
|
967
|
-
"ondds-file-removed"?: (e: CustomEvent<
|
|
968
|
+
"ondds-file-removed"?: (e: CustomEvent<{ file: FileListElement }>) => void;
|
|
968
969
|
/** Fired when the file input value changes. */
|
|
969
|
-
"ondds-file-change"?: (e: CustomEvent<
|
|
970
|
+
"ondds-file-change"?: (e: CustomEvent<{ files: File[] }>) => void;
|
|
970
971
|
};
|
|
971
972
|
|
|
972
973
|
type DapDSIconProps = {
|
|
@@ -1065,15 +1066,15 @@ type DapDSInputProps = {
|
|
|
1065
1066
|
/** The regex pattern of the input. */
|
|
1066
1067
|
pattern?: DapDSInput["pattern"];
|
|
1067
1068
|
/** Fired when the input value changes. */
|
|
1068
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1069
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1069
1070
|
/** Fired when the input value changes. */
|
|
1070
|
-
"ondds-input"?: (e: CustomEvent<
|
|
1071
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1071
1072
|
/** Fired when a key is pressed down. */
|
|
1072
|
-
"ondds-keydown"?: (e: CustomEvent<
|
|
1073
|
+
"ondds-keydown"?: (e: CustomEvent<{ value: string; originalEvent: Event }>) => void;
|
|
1073
1074
|
/** Fired when the input loses focus. */
|
|
1074
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
1075
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
1075
1076
|
/** Emitted when the input gains focus. */
|
|
1076
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
1077
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
1077
1078
|
};
|
|
1078
1079
|
|
|
1079
1080
|
type DapDSLabelProps = {
|
|
@@ -1120,7 +1121,7 @@ type DapDSLinkProps = {
|
|
|
1120
1121
|
download?: DapDSLink["download"];
|
|
1121
1122
|
|
|
1122
1123
|
/** Emitted when the link is clicked. */
|
|
1123
|
-
"ondds-click"?: (e: CustomEvent<
|
|
1124
|
+
"ondds-click"?: (e: CustomEvent<{ event: Event }>) => void;
|
|
1124
1125
|
};
|
|
1125
1126
|
|
|
1126
1127
|
type DapDSListItemProps = {
|
|
@@ -1196,19 +1197,19 @@ type DapDSModalProps = {
|
|
|
1196
1197
|
/** Whether the modal should use native focus. Default is false. */
|
|
1197
1198
|
useNativeFocus?: DapDSModal["useNativeFocus"];
|
|
1198
1199
|
/** Fires before the modal opens. */
|
|
1199
|
-
"ondds-before-open"?: (e: CustomEvent<
|
|
1200
|
+
"ondds-before-open"?: (e: CustomEvent<{ void }>) => void;
|
|
1200
1201
|
/** Fires after the modal opens. */
|
|
1201
|
-
"ondds-opened"?: (e: CustomEvent<
|
|
1202
|
+
"ondds-opened"?: (e: CustomEvent<{ void }>) => void;
|
|
1202
1203
|
/** Fires before the modal closes. */
|
|
1203
|
-
"ondds-before-close"?: (e: CustomEvent<
|
|
1204
|
+
"ondds-before-close"?: (e: CustomEvent<{ void }>) => void;
|
|
1204
1205
|
/** Fires after the modal closed. */
|
|
1205
|
-
"ondds-closed"?: (e: CustomEvent<
|
|
1206
|
+
"ondds-closed"?: (e: CustomEvent<{ void }>) => void;
|
|
1206
1207
|
/** Fires when the modal is closes. You can prevent the modal from closing by calling `event.preventDefault()`. */
|
|
1207
|
-
"ondds-close"?: (e: CustomEvent<
|
|
1208
|
+
"ondds-close"?: (e: CustomEvent<{ void }>) => void;
|
|
1208
1209
|
/** Fires when the OK button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`. */
|
|
1209
|
-
"ondds-ok"?: (e: CustomEvent<
|
|
1210
|
+
"ondds-ok"?: (e: CustomEvent<{ void }>) => void;
|
|
1210
1211
|
/** Fires when the Cancel button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`. */
|
|
1211
|
-
"ondds-cancel"?: (e: CustomEvent<
|
|
1212
|
+
"ondds-cancel"?: (e: CustomEvent<{ void }>) => void;
|
|
1212
1213
|
};
|
|
1213
1214
|
|
|
1214
1215
|
type DapDSNotificationBadgeProps = {
|
|
@@ -1290,15 +1291,15 @@ type DapDSNumberInputProps = {
|
|
|
1290
1291
|
/** Disables the enter key from being used to submit the form. */
|
|
1291
1292
|
disableEnter?: DapDSNumberInput["disableEnter"];
|
|
1292
1293
|
/** Fired when the input value changes. */
|
|
1293
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1294
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1294
1295
|
/** Fired when the input value changes. */
|
|
1295
|
-
"ondds-input"?: (e: CustomEvent<
|
|
1296
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1296
1297
|
/** Fired when a key is pressed down. */
|
|
1297
|
-
"ondds-keydown"?: (e: CustomEvent<
|
|
1298
|
+
"ondds-keydown"?: (e: CustomEvent<{ value: string; originalEvent: Event }>) => void;
|
|
1298
1299
|
/** Fired when the input loses focus. */
|
|
1299
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
1300
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
1300
1301
|
/** Emitted when the input gains focus. */
|
|
1301
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
1302
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
1302
1303
|
};
|
|
1303
1304
|
|
|
1304
1305
|
type DapDSOfficialWebsiteBannerProps = {
|
|
@@ -1315,9 +1316,9 @@ type DapDSOfficialWebsiteBannerProps = {
|
|
|
1315
1316
|
/** Whether the accordion is the last item. */
|
|
1316
1317
|
lastItem?: DapDSOfficialWebsiteBanner["lastItem"];
|
|
1317
1318
|
/** Event fired when the accordion is opened. */
|
|
1318
|
-
"ondds-opened"?: (e: CustomEvent<
|
|
1319
|
+
"ondds-opened"?: (e: CustomEvent<{ void }>) => void;
|
|
1319
1320
|
/** Event fired when the accordion is closed. */
|
|
1320
|
-
"ondds-closed"?: (e: CustomEvent<
|
|
1321
|
+
"ondds-closed"?: (e: CustomEvent<{ void }>) => void;
|
|
1321
1322
|
};
|
|
1322
1323
|
|
|
1323
1324
|
type DapDSOptionItemProps = {
|
|
@@ -1365,11 +1366,13 @@ type DapDSOptionListProps = {
|
|
|
1365
1366
|
/** */
|
|
1366
1367
|
buildQueryString?: DapDSOptionList["buildQueryString"];
|
|
1367
1368
|
/** Fired when the escape key is pressed. */
|
|
1368
|
-
"ondds-cancel"?: (e: CustomEvent<
|
|
1369
|
+
"ondds-cancel"?: (e: CustomEvent<{ void }>) => void;
|
|
1369
1370
|
/** Fired when the option list value changes. */
|
|
1370
|
-
"ondds-option-change"?: (
|
|
1371
|
+
"ondds-option-change"?: (
|
|
1372
|
+
e: CustomEvent<{ option: DapDSOptionItem; value: string; index: number; text: string }>,
|
|
1373
|
+
) => void;
|
|
1371
1374
|
/** Fired when a key is pressed down. */
|
|
1372
|
-
"ondds-keydown"?: (e: CustomEvent<
|
|
1375
|
+
"ondds-keydown"?: (e: CustomEvent<{ void }>) => void;
|
|
1373
1376
|
};
|
|
1374
1377
|
|
|
1375
1378
|
type DapDSOverlayProps = {
|
|
@@ -1413,7 +1416,9 @@ type DapDSPagerProps = {
|
|
|
1413
1416
|
/** The function to determine the pager text */
|
|
1414
1417
|
pageStateText?: DapDSPager["pageStateText"];
|
|
1415
1418
|
/** Event fired when the pagination changes */
|
|
1416
|
-
"ondds-pagination-change"?: (
|
|
1419
|
+
"ondds-pagination-change"?: (
|
|
1420
|
+
e: CustomEvent<{ action: string; pagination: { pageIndex: number; pageSize: number } }>,
|
|
1421
|
+
) => void;
|
|
1417
1422
|
};
|
|
1418
1423
|
|
|
1419
1424
|
type DapDSPasswordInputProps = {
|
|
@@ -1460,15 +1465,15 @@ type DapDSPasswordInputProps = {
|
|
|
1460
1465
|
/** The weight of the label. Default is `false` */
|
|
1461
1466
|
subtle?: DapDSPasswordInput["subtle"];
|
|
1462
1467
|
/** Fired when the input value changes. */
|
|
1463
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1468
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1464
1469
|
/** Fired when the input value changes. */
|
|
1465
|
-
"ondds-input"?: (e: CustomEvent<
|
|
1470
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1466
1471
|
/** Fired when a key is pressed down. */
|
|
1467
|
-
"ondds-keydown"?: (e: CustomEvent<
|
|
1472
|
+
"ondds-keydown"?: (e: CustomEvent<{ value: string; originalEvent: Event }>) => void;
|
|
1468
1473
|
/** Fired when the input loses focus. */
|
|
1469
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
1474
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
1470
1475
|
/** Emitted when the input gains focus. */
|
|
1471
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
1476
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
1472
1477
|
};
|
|
1473
1478
|
|
|
1474
1479
|
type DapDSPopupProps = {
|
|
@@ -1493,9 +1498,9 @@ type DapDSPopupProps = {
|
|
|
1493
1498
|
/** The size of the popup. */
|
|
1494
1499
|
size?: DapDSPopup["size"];
|
|
1495
1500
|
/** Fired when the popup is opened. */
|
|
1496
|
-
"ondds-opened"?: (e: CustomEvent<
|
|
1501
|
+
"ondds-opened"?: (e: CustomEvent<{ void }>) => void;
|
|
1497
1502
|
/** Fired when the popup is closed. */
|
|
1498
|
-
"ondds-closed"?: (e: CustomEvent<
|
|
1503
|
+
"ondds-closed"?: (e: CustomEvent<{ void }>) => void;
|
|
1499
1504
|
};
|
|
1500
1505
|
|
|
1501
1506
|
type DapDSRadioButtonProps = {
|
|
@@ -1528,13 +1533,13 @@ type DapDSRadioButtonProps = {
|
|
|
1528
1533
|
/** The placement of the description. */
|
|
1529
1534
|
descriptionPlacement?: DapDSRadioButton["descriptionPlacement"];
|
|
1530
1535
|
/** Fired when the radio button is checked. */
|
|
1531
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1536
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1532
1537
|
/** Emitted when the radio button loses focus. */
|
|
1533
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
1538
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
1534
1539
|
/** Emitted when the radio button gains focus. */
|
|
1535
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
1540
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
1536
1541
|
/** Emitted when the radio button receives input. */
|
|
1537
|
-
"ondds-input"?: (e: CustomEvent<
|
|
1542
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1538
1543
|
};
|
|
1539
1544
|
|
|
1540
1545
|
type DapDSRatingProps = {
|
|
@@ -1554,7 +1559,7 @@ This is a backup to catch keyboard events if they bubble up */
|
|
|
1554
1559
|
/** */
|
|
1555
1560
|
value?: DapDSRating["value"];
|
|
1556
1561
|
/** Event fired when the rating value changes. */
|
|
1557
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1562
|
+
"ondds-change"?: (e: CustomEvent<{ value: number }>) => void;
|
|
1558
1563
|
};
|
|
1559
1564
|
|
|
1560
1565
|
type DapDSScrollAreaProps = {
|
|
@@ -1689,11 +1694,11 @@ type DapDSSelectProps = {
|
|
|
1689
1694
|
/** The weight of the label. Default is `false` */
|
|
1690
1695
|
subtle?: DapDSSelect["subtle"];
|
|
1691
1696
|
/** Fired when the select value changes. */
|
|
1692
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1697
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1693
1698
|
/** Emitted when the select loses focus. */
|
|
1694
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
1699
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
1695
1700
|
/** Emitted when the select gains focus. */
|
|
1696
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
1701
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
1697
1702
|
};
|
|
1698
1703
|
|
|
1699
1704
|
type DapDSSideNavGroupProps = {
|
|
@@ -1707,7 +1712,7 @@ type DapDSSideNavGroupProps = {
|
|
|
1707
1712
|
open?: DapDSSideNavGroup["open"];
|
|
1708
1713
|
|
|
1709
1714
|
/** Event fired when the side navigation item is clicked. */
|
|
1710
|
-
"ondds-item-click"?: (e: CustomEvent<
|
|
1715
|
+
"ondds-item-click"?: (e: CustomEvent<{ href: string; event: Event }>) => void;
|
|
1711
1716
|
};
|
|
1712
1717
|
|
|
1713
1718
|
type DapDSSideNavItemProps = {
|
|
@@ -1719,7 +1724,7 @@ type DapDSSideNavItemProps = {
|
|
|
1719
1724
|
spacing?: DapDSSideNavItem["spacing"];
|
|
1720
1725
|
|
|
1721
1726
|
/** Event fired when the side navigation item is clicked. */
|
|
1722
|
-
"ondds-item-click"?: (e: CustomEvent<
|
|
1727
|
+
"ondds-item-click"?: (e: CustomEvent<{ href: string; event: Event }>) => void;
|
|
1723
1728
|
};
|
|
1724
1729
|
|
|
1725
1730
|
type DapDSSideNavProps = {
|
|
@@ -1729,7 +1734,7 @@ type DapDSSideNavProps = {
|
|
|
1729
1734
|
activeHref?: DapDSSideNav["activeHref"];
|
|
1730
1735
|
|
|
1731
1736
|
/** Event fired when the side navigation item is clicked. */
|
|
1732
|
-
"ondds-item-click"?: (e: CustomEvent<
|
|
1737
|
+
"ondds-item-click"?: (e: CustomEvent<{ href: string; event: Event }>) => void;
|
|
1733
1738
|
};
|
|
1734
1739
|
|
|
1735
1740
|
type DapDSSkipLinkProps = {
|
|
@@ -1754,7 +1759,7 @@ type DapDSSnackbarMessageProps = {
|
|
|
1754
1759
|
alertType?: DapDSSnackbarMessage["alertType"];
|
|
1755
1760
|
|
|
1756
1761
|
/** Fires when the snackbar closes. */
|
|
1757
|
-
"ondds-close"?: (e: CustomEvent<
|
|
1762
|
+
"ondds-close"?: (e: CustomEvent<{ id: string }>) => void;
|
|
1758
1763
|
};
|
|
1759
1764
|
|
|
1760
1765
|
type DapDSSnackbarProps = {
|
|
@@ -1828,13 +1833,13 @@ type DapDSSwitchProps = {
|
|
|
1828
1833
|
/** The optional label of the switch. */
|
|
1829
1834
|
optionalLabel?: DapDSSwitch["optionalLabel"];
|
|
1830
1835
|
/** Fired when the input value changes. */
|
|
1831
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1836
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1832
1837
|
/** Emitted when the input loses focus. */
|
|
1833
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
1838
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
1834
1839
|
/** Emitted when the input gains focus. */
|
|
1835
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
1840
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
1836
1841
|
/** Emitted when the input receives input. */
|
|
1837
|
-
"ondds-input"?: (e: CustomEvent<
|
|
1842
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1838
1843
|
};
|
|
1839
1844
|
|
|
1840
1845
|
type DapDSTabGroupProps = {
|
|
@@ -1846,7 +1851,7 @@ type DapDSTabGroupProps = {
|
|
|
1846
1851
|
mobile?: DapDSTabGroup["mobile"];
|
|
1847
1852
|
|
|
1848
1853
|
/** Fired when select a new tab. */
|
|
1849
|
-
"ondds-tab-select"?: (e: CustomEvent<
|
|
1854
|
+
"ondds-tab-select"?: (e: CustomEvent<{ tabId: string }>) => void;
|
|
1850
1855
|
};
|
|
1851
1856
|
|
|
1852
1857
|
type DapDSTabProps = {
|
|
@@ -1936,19 +1941,19 @@ type DapDSTextareaProps = {
|
|
|
1936
1941
|
/** The autofocus state of the textarea. */
|
|
1937
1942
|
autofocus?: DapDSTextarea["autofocus"];
|
|
1938
1943
|
/** Fires when the count of the textarea changes. */
|
|
1939
|
-
"ondds-count-change"?: (e: CustomEvent<
|
|
1944
|
+
"ondds-count-change"?: (e: CustomEvent<{ value: number }>) => void;
|
|
1940
1945
|
/** Fired when the textarea value changes. */
|
|
1941
|
-
"ondds-change"?: (e: CustomEvent<
|
|
1946
|
+
"ondds-change"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1942
1947
|
/** Fired when the textarea value changes. */
|
|
1943
|
-
"ondds-input"?: (e: CustomEvent<
|
|
1948
|
+
"ondds-input"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1944
1949
|
/** Fired when a key is pressed down. */
|
|
1945
|
-
"ondds-keydown"?: (e: CustomEvent<
|
|
1950
|
+
"ondds-keydown"?: (e: CustomEvent<{ value: string; originalEvent: Event }>) => void;
|
|
1946
1951
|
/** Fired when the textarea loses focus. */
|
|
1947
|
-
"ondds-blur"?: (e: CustomEvent<
|
|
1952
|
+
"ondds-blur"?: (e: CustomEvent<{ void }>) => void;
|
|
1948
1953
|
/** Emitted when the textarea gains focus. */
|
|
1949
|
-
"ondds-focus"?: (e: CustomEvent<
|
|
1954
|
+
"ondds-focus"?: (e: CustomEvent<{ void }>) => void;
|
|
1950
1955
|
/** Emitted when select text in textarea. */
|
|
1951
|
-
"ondds-select"?: (e: CustomEvent<
|
|
1956
|
+
"ondds-select"?: (e: CustomEvent<{ value: string }>) => void;
|
|
1952
1957
|
};
|
|
1953
1958
|
|
|
1954
1959
|
type DapDSTimelineItemProps = {};
|
|
@@ -1981,7 +1986,9 @@ type DapDSTOCProps = {
|
|
|
1981
1986
|
/** The size of the toc. Default is `lg`. */
|
|
1982
1987
|
size?: DapDSTOC["size"];
|
|
1983
1988
|
/** Event that is triggered when the anchor changes. */
|
|
1984
|
-
"ondds-anchor-change"?: (
|
|
1989
|
+
"ondds-anchor-change"?: (
|
|
1990
|
+
e: CustomEvent<{ selectedItem: HTMLAnchorElement; anchorElement: IntersectionObserverEntry | HTMLElement }>,
|
|
1991
|
+
) => void;
|
|
1985
1992
|
};
|
|
1986
1993
|
|
|
1987
1994
|
type DapDSToggleButtonProps = {
|
|
@@ -2036,15 +2043,15 @@ type DapDSTrayProps = {
|
|
|
2036
2043
|
/** The label of the Cancel button. */
|
|
2037
2044
|
cancelButtonLabel?: DapDSTray["cancelButtonLabel"];
|
|
2038
2045
|
/** Fires before the tray opens. */
|
|
2039
|
-
"ondds-before-open"?: (e: CustomEvent<
|
|
2046
|
+
"ondds-before-open"?: (e: CustomEvent<{ void }>) => void;
|
|
2040
2047
|
/** Fires after the tray opens. */
|
|
2041
|
-
"ondds-opened"?: (e: CustomEvent<
|
|
2048
|
+
"ondds-opened"?: (e: CustomEvent<{ void }>) => void;
|
|
2042
2049
|
/** Fires before the tray closes. */
|
|
2043
|
-
"ondds-before-close"?: (e: CustomEvent<
|
|
2050
|
+
"ondds-before-close"?: (e: CustomEvent<{ void }>) => void;
|
|
2044
2051
|
/** Fires after the tray closed. */
|
|
2045
|
-
"ondds-closed"?: (e: CustomEvent<
|
|
2052
|
+
"ondds-closed"?: (e: CustomEvent<{ void }>) => void;
|
|
2046
2053
|
/** Fires when the tray is closes. You can prevent the tray from closing by calling `event.preventDefault()`. */
|
|
2047
|
-
"ondds-close"?: (e: CustomEvent<
|
|
2054
|
+
"ondds-close"?: (e: CustomEvent<{ void }>) => void;
|
|
2048
2055
|
};
|
|
2049
2056
|
|
|
2050
2057
|
type DapDSTypographyProps = {
|
|
@@ -2151,6 +2158,17 @@ type DapDSRadioGroupProps = {
|
|
|
2151
2158
|
"ondds-focus"?: (e: CustomEvent<never>) => void;
|
|
2152
2159
|
};
|
|
2153
2160
|
|
|
2161
|
+
type BuildingsHome6LineProps = {
|
|
2162
|
+
/** (optional) The width and height in pixels */
|
|
2163
|
+
size?: BuildingsHome6Line["size"];
|
|
2164
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2165
|
+
selected?: BuildingsHome6Line["selected"];
|
|
2166
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2167
|
+
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"];
|
|
2168
|
+
/** (optional) If `true` the icon can receive focus */
|
|
2169
|
+
focusable?: BuildingsHome6Line["focusable"];
|
|
2170
|
+
};
|
|
2171
|
+
|
|
2154
2172
|
type ArrowsArrowDownLineProps = {
|
|
2155
2173
|
/** (optional) The width and height in pixels */
|
|
2156
2174
|
size?: ArrowsArrowDownLine["size"];
|
|
@@ -2195,6 +2213,17 @@ type ArrowsArrowLeftDownLineProps = {
|
|
|
2195
2213
|
focusable?: ArrowsArrowLeftDownLine["focusable"];
|
|
2196
2214
|
};
|
|
2197
2215
|
|
|
2216
|
+
type ArrowsArrowLeftSFillProps = {
|
|
2217
|
+
/** (optional) The width and height in pixels */
|
|
2218
|
+
size?: ArrowsArrowLeftSFill["size"];
|
|
2219
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2220
|
+
selected?: ArrowsArrowLeftSFill["selected"];
|
|
2221
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2222
|
+
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"];
|
|
2223
|
+
/** (optional) If `true` the icon can receive focus */
|
|
2224
|
+
focusable?: ArrowsArrowLeftSFill["focusable"];
|
|
2225
|
+
};
|
|
2226
|
+
|
|
2198
2227
|
type ArrowsArrowLeftLLineProps = {
|
|
2199
2228
|
/** (optional) The width and height in pixels */
|
|
2200
2229
|
size?: ArrowsArrowLeftLLine["size"];
|
|
@@ -2217,17 +2246,6 @@ type ArrowsArrowLeftLineProps = {
|
|
|
2217
2246
|
focusable?: ArrowsArrowLeftLine["focusable"];
|
|
2218
2247
|
};
|
|
2219
2248
|
|
|
2220
|
-
type ArrowsArrowLeftSFillProps = {
|
|
2221
|
-
/** (optional) The width and height in pixels */
|
|
2222
|
-
size?: ArrowsArrowLeftSFill["size"];
|
|
2223
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2224
|
-
selected?: ArrowsArrowLeftSFill["selected"];
|
|
2225
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2226
|
-
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"];
|
|
2227
|
-
/** (optional) If `true` the icon can receive focus */
|
|
2228
|
-
focusable?: ArrowsArrowLeftSFill["focusable"];
|
|
2229
|
-
};
|
|
2230
|
-
|
|
2231
2249
|
type ArrowsArrowLeftSLineProps = {
|
|
2232
2250
|
/** (optional) The width and height in pixels */
|
|
2233
2251
|
size?: ArrowsArrowLeftSLine["size"];
|
|
@@ -2316,26 +2334,26 @@ type ArrowsArrowRightUpLineProps = {
|
|
|
2316
2334
|
focusable?: ArrowsArrowRightUpLine["focusable"];
|
|
2317
2335
|
};
|
|
2318
2336
|
|
|
2319
|
-
type
|
|
2337
|
+
type ArrowsArrowUpSFillProps = {
|
|
2320
2338
|
/** (optional) The width and height in pixels */
|
|
2321
|
-
size?:
|
|
2339
|
+
size?: ArrowsArrowUpSFill["size"];
|
|
2322
2340
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2323
|
-
selected?:
|
|
2341
|
+
selected?: ArrowsArrowUpSFill["selected"];
|
|
2324
2342
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2325
|
-
accessibilityTitle?:
|
|
2343
|
+
accessibilityTitle?: ArrowsArrowUpSFill["accessibilityTitle"];
|
|
2326
2344
|
/** (optional) If `true` the icon can receive focus */
|
|
2327
|
-
focusable?:
|
|
2345
|
+
focusable?: ArrowsArrowUpSFill["focusable"];
|
|
2328
2346
|
};
|
|
2329
2347
|
|
|
2330
|
-
type
|
|
2348
|
+
type ArrowsArrowUpLineProps = {
|
|
2331
2349
|
/** (optional) The width and height in pixels */
|
|
2332
|
-
size?:
|
|
2350
|
+
size?: ArrowsArrowUpLine["size"];
|
|
2333
2351
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2334
|
-
selected?:
|
|
2352
|
+
selected?: ArrowsArrowUpLine["selected"];
|
|
2335
2353
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2336
|
-
accessibilityTitle?:
|
|
2354
|
+
accessibilityTitle?: ArrowsArrowUpLine["accessibilityTitle"];
|
|
2337
2355
|
/** (optional) If `true` the icon can receive focus */
|
|
2338
|
-
focusable?:
|
|
2356
|
+
focusable?: ArrowsArrowUpLine["focusable"];
|
|
2339
2357
|
};
|
|
2340
2358
|
|
|
2341
2359
|
type ArrowsArrowUpSLineProps = {
|
|
@@ -2360,17 +2378,6 @@ type ArrowsExpandUpDownFillProps = {
|
|
|
2360
2378
|
focusable?: ArrowsExpandUpDownFill["focusable"];
|
|
2361
2379
|
};
|
|
2362
2380
|
|
|
2363
|
-
type BuildingsHome6LineProps = {
|
|
2364
|
-
/** (optional) The width and height in pixels */
|
|
2365
|
-
size?: BuildingsHome6Line["size"];
|
|
2366
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2367
|
-
selected?: BuildingsHome6Line["selected"];
|
|
2368
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2369
|
-
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"];
|
|
2370
|
-
/** (optional) If `true` the icon can receive focus */
|
|
2371
|
-
focusable?: BuildingsHome6Line["focusable"];
|
|
2372
|
-
};
|
|
2373
|
-
|
|
2374
2381
|
type BusinessCalendarLineProps = {
|
|
2375
2382
|
/** (optional) The width and height in pixels */
|
|
2376
2383
|
size?: BusinessCalendarLine["size"];
|
|
@@ -2437,26 +2444,26 @@ type SystemAlertFillProps = {
|
|
|
2437
2444
|
focusable?: SystemAlertFill["focusable"];
|
|
2438
2445
|
};
|
|
2439
2446
|
|
|
2440
|
-
type
|
|
2447
|
+
type SystemCheckLineProps = {
|
|
2441
2448
|
/** (optional) The width and height in pixels */
|
|
2442
|
-
size?:
|
|
2449
|
+
size?: SystemCheckLine["size"];
|
|
2443
2450
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2444
|
-
selected?:
|
|
2451
|
+
selected?: SystemCheckLine["selected"];
|
|
2445
2452
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2446
|
-
accessibilityTitle?:
|
|
2453
|
+
accessibilityTitle?: SystemCheckLine["accessibilityTitle"];
|
|
2447
2454
|
/** (optional) If `true` the icon can receive focus */
|
|
2448
|
-
focusable?:
|
|
2455
|
+
focusable?: SystemCheckLine["focusable"];
|
|
2449
2456
|
};
|
|
2450
2457
|
|
|
2451
|
-
type
|
|
2458
|
+
type SystemAlertLineProps = {
|
|
2452
2459
|
/** (optional) The width and height in pixels */
|
|
2453
|
-
size?:
|
|
2460
|
+
size?: SystemAlertLine["size"];
|
|
2454
2461
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2455
|
-
selected?:
|
|
2462
|
+
selected?: SystemAlertLine["selected"];
|
|
2456
2463
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2457
|
-
accessibilityTitle?:
|
|
2464
|
+
accessibilityTitle?: SystemAlertLine["accessibilityTitle"];
|
|
2458
2465
|
/** (optional) If `true` the icon can receive focus */
|
|
2459
|
-
focusable?:
|
|
2466
|
+
focusable?: SystemAlertLine["focusable"];
|
|
2460
2467
|
};
|
|
2461
2468
|
|
|
2462
2469
|
type SystemCheckLine2Props = {
|
|
@@ -2470,26 +2477,26 @@ type SystemCheckLine2Props = {
|
|
|
2470
2477
|
focusable?: SystemCheckLine2["focusable"];
|
|
2471
2478
|
};
|
|
2472
2479
|
|
|
2473
|
-
type
|
|
2480
|
+
type SystemCheckboxBlankCircleFillCheckProps = {
|
|
2474
2481
|
/** (optional) The width and height in pixels */
|
|
2475
|
-
size?:
|
|
2482
|
+
size?: SystemCheckboxBlankCircleFillCheck["size"];
|
|
2476
2483
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2477
|
-
selected?:
|
|
2484
|
+
selected?: SystemCheckboxBlankCircleFillCheck["selected"];
|
|
2478
2485
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2479
|
-
accessibilityTitle?:
|
|
2486
|
+
accessibilityTitle?: SystemCheckboxBlankCircleFillCheck["accessibilityTitle"];
|
|
2480
2487
|
/** (optional) If `true` the icon can receive focus */
|
|
2481
|
-
focusable?:
|
|
2488
|
+
focusable?: SystemCheckboxBlankCircleFillCheck["focusable"];
|
|
2482
2489
|
};
|
|
2483
2490
|
|
|
2484
|
-
type
|
|
2491
|
+
type SystemCheckboxBlankCircleFillProps = {
|
|
2485
2492
|
/** (optional) The width and height in pixels */
|
|
2486
|
-
size?:
|
|
2493
|
+
size?: SystemCheckboxBlankCircleFill["size"];
|
|
2487
2494
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2488
|
-
selected?:
|
|
2495
|
+
selected?: SystemCheckboxBlankCircleFill["selected"];
|
|
2489
2496
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2490
|
-
accessibilityTitle?:
|
|
2497
|
+
accessibilityTitle?: SystemCheckboxBlankCircleFill["accessibilityTitle"];
|
|
2491
2498
|
/** (optional) If `true` the icon can receive focus */
|
|
2492
|
-
focusable?:
|
|
2499
|
+
focusable?: SystemCheckboxBlankCircleFill["focusable"];
|
|
2493
2500
|
};
|
|
2494
2501
|
|
|
2495
2502
|
type SystemCheckboxBlankCircleLineProps = {
|
|
@@ -2536,26 +2543,26 @@ type SystemCloseCircleFillProps = {
|
|
|
2536
2543
|
focusable?: SystemCloseCircleFill["focusable"];
|
|
2537
2544
|
};
|
|
2538
2545
|
|
|
2539
|
-
type
|
|
2546
|
+
type SystemCloseFillProps = {
|
|
2540
2547
|
/** (optional) The width and height in pixels */
|
|
2541
|
-
size?:
|
|
2548
|
+
size?: SystemCloseFill["size"];
|
|
2542
2549
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2543
|
-
selected?:
|
|
2550
|
+
selected?: SystemCloseFill["selected"];
|
|
2544
2551
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2545
|
-
accessibilityTitle?:
|
|
2552
|
+
accessibilityTitle?: SystemCloseFill["accessibilityTitle"];
|
|
2546
2553
|
/** (optional) If `true` the icon can receive focus */
|
|
2547
|
-
focusable?:
|
|
2554
|
+
focusable?: SystemCloseFill["focusable"];
|
|
2548
2555
|
};
|
|
2549
2556
|
|
|
2550
|
-
type
|
|
2557
|
+
type SystemCloseCircleLineProps = {
|
|
2551
2558
|
/** (optional) The width and height in pixels */
|
|
2552
|
-
size?:
|
|
2559
|
+
size?: SystemCloseCircleLine["size"];
|
|
2553
2560
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2554
|
-
selected?:
|
|
2561
|
+
selected?: SystemCloseCircleLine["selected"];
|
|
2555
2562
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2556
|
-
accessibilityTitle?:
|
|
2563
|
+
accessibilityTitle?: SystemCloseCircleLine["accessibilityTitle"];
|
|
2557
2564
|
/** (optional) If `true` the icon can receive focus */
|
|
2558
|
-
focusable?:
|
|
2565
|
+
focusable?: SystemCloseCircleLine["focusable"];
|
|
2559
2566
|
};
|
|
2560
2567
|
|
|
2561
2568
|
type SystemCloseLineProps = {
|
|
@@ -2569,26 +2576,26 @@ type SystemCloseLineProps = {
|
|
|
2569
2576
|
focusable?: SystemCloseLine["focusable"];
|
|
2570
2577
|
};
|
|
2571
2578
|
|
|
2572
|
-
type
|
|
2579
|
+
type SystemErrorWarningFillProps = {
|
|
2573
2580
|
/** (optional) The width and height in pixels */
|
|
2574
|
-
size?:
|
|
2581
|
+
size?: SystemErrorWarningFill["size"];
|
|
2575
2582
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2576
|
-
selected?:
|
|
2583
|
+
selected?: SystemErrorWarningFill["selected"];
|
|
2577
2584
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2578
|
-
accessibilityTitle?:
|
|
2585
|
+
accessibilityTitle?: SystemErrorWarningFill["accessibilityTitle"];
|
|
2579
2586
|
/** (optional) If `true` the icon can receive focus */
|
|
2580
|
-
focusable?:
|
|
2587
|
+
focusable?: SystemErrorWarningFill["focusable"];
|
|
2581
2588
|
};
|
|
2582
2589
|
|
|
2583
|
-
type
|
|
2590
|
+
type SystemDownloadLineProps = {
|
|
2584
2591
|
/** (optional) The width and height in pixels */
|
|
2585
|
-
size?:
|
|
2592
|
+
size?: SystemDownloadLine["size"];
|
|
2586
2593
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2587
|
-
selected?:
|
|
2594
|
+
selected?: SystemDownloadLine["selected"];
|
|
2588
2595
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2589
|
-
accessibilityTitle?:
|
|
2596
|
+
accessibilityTitle?: SystemDownloadLine["accessibilityTitle"];
|
|
2590
2597
|
/** (optional) If `true` the icon can receive focus */
|
|
2591
|
-
focusable?:
|
|
2598
|
+
focusable?: SystemDownloadLine["focusable"];
|
|
2592
2599
|
};
|
|
2593
2600
|
|
|
2594
2601
|
type SystemErrorWarningLineProps = {
|
|
@@ -2635,17 +2642,6 @@ type SystemEyeOffLineProps = {
|
|
|
2635
2642
|
focusable?: SystemEyeOffLine["focusable"];
|
|
2636
2643
|
};
|
|
2637
2644
|
|
|
2638
|
-
type SystemForbidFillProps = {
|
|
2639
|
-
/** (optional) The width and height in pixels */
|
|
2640
|
-
size?: SystemForbidFill["size"];
|
|
2641
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2642
|
-
selected?: SystemForbidFill["selected"];
|
|
2643
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2644
|
-
accessibilityTitle?: SystemForbidFill["accessibilityTitle"];
|
|
2645
|
-
/** (optional) If `true` the icon can receive focus */
|
|
2646
|
-
focusable?: SystemForbidFill["focusable"];
|
|
2647
|
-
};
|
|
2648
|
-
|
|
2649
2645
|
type SystemInformation2FillProps = {
|
|
2650
2646
|
/** (optional) The width and height in pixels */
|
|
2651
2647
|
size?: SystemInformation2Fill["size"];
|
|
@@ -2657,26 +2653,26 @@ type SystemInformation2FillProps = {
|
|
|
2657
2653
|
focusable?: SystemInformation2Fill["focusable"];
|
|
2658
2654
|
};
|
|
2659
2655
|
|
|
2660
|
-
type
|
|
2656
|
+
type SystemForbidFillProps = {
|
|
2661
2657
|
/** (optional) The width and height in pixels */
|
|
2662
|
-
size?:
|
|
2658
|
+
size?: SystemForbidFill["size"];
|
|
2663
2659
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2664
|
-
selected?:
|
|
2660
|
+
selected?: SystemForbidFill["selected"];
|
|
2665
2661
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2666
|
-
accessibilityTitle?:
|
|
2662
|
+
accessibilityTitle?: SystemForbidFill["accessibilityTitle"];
|
|
2667
2663
|
/** (optional) If `true` the icon can receive focus */
|
|
2668
|
-
focusable?:
|
|
2664
|
+
focusable?: SystemForbidFill["focusable"];
|
|
2669
2665
|
};
|
|
2670
2666
|
|
|
2671
|
-
type
|
|
2667
|
+
type SystemInformationFillProps = {
|
|
2672
2668
|
/** (optional) The width and height in pixels */
|
|
2673
|
-
size?:
|
|
2669
|
+
size?: SystemInformationFill["size"];
|
|
2674
2670
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2675
|
-
selected?:
|
|
2671
|
+
selected?: SystemInformationFill["selected"];
|
|
2676
2672
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2677
|
-
accessibilityTitle?:
|
|
2673
|
+
accessibilityTitle?: SystemInformationFill["accessibilityTitle"];
|
|
2678
2674
|
/** (optional) If `true` the icon can receive focus */
|
|
2679
|
-
focusable?:
|
|
2675
|
+
focusable?: SystemInformationFill["focusable"];
|
|
2680
2676
|
};
|
|
2681
2677
|
|
|
2682
2678
|
type SystemLightbulbFillProps = {
|
|
@@ -2690,15 +2686,15 @@ type SystemLightbulbFillProps = {
|
|
|
2690
2686
|
focusable?: SystemLightbulbFill["focusable"];
|
|
2691
2687
|
};
|
|
2692
2688
|
|
|
2693
|
-
type
|
|
2689
|
+
type SystemInformationLineProps = {
|
|
2694
2690
|
/** (optional) The width and height in pixels */
|
|
2695
|
-
size?:
|
|
2691
|
+
size?: SystemInformationLine["size"];
|
|
2696
2692
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2697
|
-
selected?:
|
|
2693
|
+
selected?: SystemInformationLine["selected"];
|
|
2698
2694
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2699
|
-
accessibilityTitle?:
|
|
2695
|
+
accessibilityTitle?: SystemInformationLine["accessibilityTitle"];
|
|
2700
2696
|
/** (optional) If `true` the icon can receive focus */
|
|
2701
|
-
focusable?:
|
|
2697
|
+
focusable?: SystemInformationLine["focusable"];
|
|
2702
2698
|
};
|
|
2703
2699
|
|
|
2704
2700
|
type SystemLockFillProps = {
|
|
@@ -2712,26 +2708,26 @@ type SystemLockFillProps = {
|
|
|
2712
2708
|
focusable?: SystemLockFill["focusable"];
|
|
2713
2709
|
};
|
|
2714
2710
|
|
|
2715
|
-
type
|
|
2711
|
+
type SystemLoadingSpinnerProps = {
|
|
2716
2712
|
/** (optional) The width and height in pixels */
|
|
2717
|
-
size?:
|
|
2713
|
+
size?: SystemLoadingSpinner["size"];
|
|
2718
2714
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2719
|
-
selected?:
|
|
2715
|
+
selected?: SystemLoadingSpinner["selected"];
|
|
2720
2716
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2721
|
-
accessibilityTitle?:
|
|
2717
|
+
accessibilityTitle?: SystemLoadingSpinner["accessibilityTitle"];
|
|
2722
2718
|
/** (optional) If `true` the icon can receive focus */
|
|
2723
|
-
focusable?:
|
|
2719
|
+
focusable?: SystemLoadingSpinner["focusable"];
|
|
2724
2720
|
};
|
|
2725
2721
|
|
|
2726
|
-
type
|
|
2722
|
+
type SystemLockLineProps = {
|
|
2727
2723
|
/** (optional) The width and height in pixels */
|
|
2728
|
-
size?:
|
|
2724
|
+
size?: SystemLockLine["size"];
|
|
2729
2725
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2730
|
-
selected?:
|
|
2726
|
+
selected?: SystemLockLine["selected"];
|
|
2731
2727
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2732
|
-
accessibilityTitle?:
|
|
2728
|
+
accessibilityTitle?: SystemLockLine["accessibilityTitle"];
|
|
2733
2729
|
/** (optional) If `true` the icon can receive focus */
|
|
2734
|
-
focusable?:
|
|
2730
|
+
focusable?: SystemLockLine["focusable"];
|
|
2735
2731
|
};
|
|
2736
2732
|
|
|
2737
2733
|
type SystemMenuLineSProps = {
|
|
@@ -2745,15 +2741,15 @@ type SystemMenuLineSProps = {
|
|
|
2745
2741
|
focusable?: SystemMenuLineS["focusable"];
|
|
2746
2742
|
};
|
|
2747
2743
|
|
|
2748
|
-
type
|
|
2744
|
+
type SystemMenuLineProps = {
|
|
2749
2745
|
/** (optional) The width and height in pixels */
|
|
2750
|
-
size?:
|
|
2746
|
+
size?: SystemMenuLine["size"];
|
|
2751
2747
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2752
|
-
selected?:
|
|
2748
|
+
selected?: SystemMenuLine["selected"];
|
|
2753
2749
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2754
|
-
accessibilityTitle?:
|
|
2750
|
+
accessibilityTitle?: SystemMenuLine["accessibilityTitle"];
|
|
2755
2751
|
/** (optional) If `true` the icon can receive focus */
|
|
2756
|
-
focusable?:
|
|
2752
|
+
focusable?: SystemMenuLine["focusable"];
|
|
2757
2753
|
};
|
|
2758
2754
|
|
|
2759
2755
|
type SystemShieldCheckFillProps = {
|
|
@@ -2767,26 +2763,26 @@ type SystemShieldCheckFillProps = {
|
|
|
2767
2763
|
focusable?: SystemShieldCheckFill["focusable"];
|
|
2768
2764
|
};
|
|
2769
2765
|
|
|
2770
|
-
type
|
|
2766
|
+
type SystemSearchLineProps = {
|
|
2771
2767
|
/** (optional) The width and height in pixels */
|
|
2772
|
-
size?:
|
|
2768
|
+
size?: SystemSearchLine["size"];
|
|
2773
2769
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2774
|
-
selected?:
|
|
2770
|
+
selected?: SystemSearchLine["selected"];
|
|
2775
2771
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2776
|
-
accessibilityTitle?:
|
|
2772
|
+
accessibilityTitle?: SystemSearchLine["accessibilityTitle"];
|
|
2777
2773
|
/** (optional) If `true` the icon can receive focus */
|
|
2778
|
-
focusable?:
|
|
2774
|
+
focusable?: SystemSearchLine["focusable"];
|
|
2779
2775
|
};
|
|
2780
2776
|
|
|
2781
|
-
type
|
|
2777
|
+
type SystemShieldCheckLineProps = {
|
|
2782
2778
|
/** (optional) The width and height in pixels */
|
|
2783
|
-
size?:
|
|
2779
|
+
size?: SystemShieldCheckLine["size"];
|
|
2784
2780
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2785
|
-
selected?:
|
|
2781
|
+
selected?: SystemShieldCheckLine["selected"];
|
|
2786
2782
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2787
|
-
accessibilityTitle?:
|
|
2783
|
+
accessibilityTitle?: SystemShieldCheckLine["accessibilityTitle"];
|
|
2788
2784
|
/** (optional) If `true` the icon can receive focus */
|
|
2789
|
-
focusable?:
|
|
2785
|
+
focusable?: SystemShieldCheckLine["focusable"];
|
|
2790
2786
|
};
|
|
2791
2787
|
|
|
2792
2788
|
type SystemSubtractLineProps = {
|
|
@@ -2800,6 +2796,17 @@ type SystemSubtractLineProps = {
|
|
|
2800
2796
|
focusable?: SystemSubtractLine["focusable"];
|
|
2801
2797
|
};
|
|
2802
2798
|
|
|
2799
|
+
type SystemStarFillProps = {
|
|
2800
|
+
/** (optional) The width and height in pixels */
|
|
2801
|
+
size?: SystemStarFill["size"];
|
|
2802
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
2803
|
+
selected?: SystemStarFill["selected"];
|
|
2804
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
2805
|
+
accessibilityTitle?: SystemStarFill["accessibilityTitle"];
|
|
2806
|
+
/** (optional) If `true` the icon can receive focus */
|
|
2807
|
+
focusable?: SystemStarFill["focusable"];
|
|
2808
|
+
};
|
|
2809
|
+
|
|
2803
2810
|
type SystemSubtractLine2Props = {
|
|
2804
2811
|
/** (optional) The width and height in pixels */
|
|
2805
2812
|
size?: SystemSubtractLine2["size"];
|
|
@@ -2866,9 +2873,6 @@ export type CustomElements = {
|
|
|
2866
2873
|
* ---
|
|
2867
2874
|
*
|
|
2868
2875
|
*
|
|
2869
|
-
* ### **Events:**
|
|
2870
|
-
* - **dds-change** - Event fired when an accordion is opened or closed.
|
|
2871
|
-
*
|
|
2872
2876
|
* ### **Slots:**
|
|
2873
2877
|
* - _default_ - The content of the accordion group.
|
|
2874
2878
|
*
|
|
@@ -2885,51 +2889,47 @@ export type CustomElements = {
|
|
|
2885
2889
|
"dap-ds-accordion-group": DefineComponent<DapDSAccordionGroupProps>;
|
|
2886
2890
|
|
|
2887
2891
|
/**
|
|
2888
|
-
*
|
|
2892
|
+
* Avatar component can be used to display user profile images or icons, or illustrations.
|
|
2889
2893
|
* ---
|
|
2890
2894
|
*
|
|
2891
2895
|
*
|
|
2892
|
-
* ### **
|
|
2893
|
-
* -
|
|
2894
|
-
* - **
|
|
2896
|
+
* ### **CSS Properties:**
|
|
2897
|
+
* - **--dds-avatar-border-radius** - The border radius of the avatar. Default is the design system's rounded radius. _(default: undefined)_
|
|
2898
|
+
* - **--dds-avatar-background-color** - The background color of the avatar. Default is transparent. _(default: undefined)_
|
|
2899
|
+
* - **--dds-avatar-border-width** - The width of the avatar's border. Default is 0. _(default: undefined)_
|
|
2900
|
+
* - **--dds-avatar-border-color** - The color of the avatar's border. Default is transparent. _(default: undefined)_
|
|
2901
|
+
* - **--dds-avatar-border-style** - The style of the avatar's border. Default is solid. _(default: undefined)_
|
|
2902
|
+
* - **--dds-avatar-transition** - The transition property for the avatar. Default is 'all 0.2s ease-in-out'. _(default: undefined)_
|
|
2903
|
+
* - **--dds-avatar-size-lg** - The size of the large avatar. Default is the design system's spacing-2000. _(default: undefined)_
|
|
2904
|
+
* - **--dds-avatar-size-md** - The size of the medium avatar. Default is the design system's spacing-1600. _(default: undefined)_
|
|
2905
|
+
* - **--dds-avatar-size-sm** - The size of the small avatar. Default is the design system's spacing-1200. _(default: undefined)_
|
|
2906
|
+
* - **--dds-avatar-size-xs** - The size of the extra small avatar. Default is the design system's spacing-800. _(default: undefined)_
|
|
2907
|
+
* - **--dds-avatar-size-xxs** - The size of the extra extra small avatar. Default is the design system's spacing-600. _(default: undefined)_
|
|
2908
|
+
*
|
|
2909
|
+
* ### **CSS Parts:**
|
|
2910
|
+
* - **base** - The main avatar image container.
|
|
2911
|
+
* - **img** - The avatar image.
|
|
2912
|
+
*/
|
|
2913
|
+
"dap-ds-avatar": DefineComponent<DapDSAvatarProps>;
|
|
2914
|
+
|
|
2915
|
+
/**
|
|
2916
|
+
* Anchor heading is a heading with an anchor link.
|
|
2917
|
+
* ---
|
|
2918
|
+
*
|
|
2895
2919
|
*
|
|
2896
2920
|
* ### **CSS Properties:**
|
|
2897
|
-
* - **--dds-
|
|
2898
|
-
* - **--dds-
|
|
2899
|
-
* - **--dds-
|
|
2900
|
-
* - **--dds-
|
|
2901
|
-
* - **--dds-badge-line-height** - The line height of the badge text. Default is 1.2. _(default: undefined)_
|
|
2902
|
-
* - **--dds-badge-transition** - The transition property for the badge. Default is 'all 0.2s ease-in-out'. _(default: undefined)_
|
|
2903
|
-
* - **--dds-badge-padding-sm** - The padding of the small badge. Default is the design system's spacing-100 and spacing-200. _(default: undefined)_
|
|
2904
|
-
* - **--dds-badge-padding-lg** - The padding of the large badge. Default is the design system's spacing-100 and spacing-300. _(default: undefined)_
|
|
2905
|
-
* - **--dds-badge-font-size-sm** - The font size of the small badge. Default is the design system's font-xs. _(default: undefined)_
|
|
2906
|
-
* - **--dds-badge-font-size-lg** - The font size of the large badge. Default is the design system's font-sm. _(default: undefined)_
|
|
2907
|
-
* - **--dds-badge-neutral-border-color** - The border color of the neutral badge. Default is the design system's border-neutral-base. _(default: undefined)_
|
|
2908
|
-
* - **--dds-badge-neutral-background** - The background color of the neutral badge. Default is the design system's background-neutral-medium. _(default: undefined)_
|
|
2909
|
-
* - **--dds-badge-neutral-color** - The text color of the neutral badge. Default is the design system's text-neutral-subtle. _(default: undefined)_
|
|
2910
|
-
* - **--dds-badge-brand-border-color** - The border color of the brand badge. Default is the design system's border-brand-base. _(default: undefined)_
|
|
2911
|
-
* - **--dds-badge-brand-background** - The background color of the brand badge. Default is the design system's background-brand-medium. _(default: undefined)_
|
|
2912
|
-
* - **--dds-badge-brand-color** - The text color of the brand badge. Default is the design system's text-brand-subtle. _(default: undefined)_
|
|
2913
|
-
* - **--dds-badge-info-border-color** - The border color of the info badge. Default is the design system's border-informative-base. _(default: undefined)_
|
|
2914
|
-
* - **--dds-badge-info-background** - The background color of the info badge. Default is the design system's background-informative-medium. _(default: undefined)_
|
|
2915
|
-
* - **--dds-badge-info-color** - The text color of the info badge. Default is the design system's text-informative-subtle. _(default: undefined)_
|
|
2916
|
-
* - **--dds-badge-positive-border-color** - The border color of the positive badge. Default is the design system's border-positive-base. _(default: undefined)_
|
|
2917
|
-
* - **--dds-badge-positive-background** - The background color of the positive badge. Default is the design system's background-positive-medium. _(default: undefined)_
|
|
2918
|
-
* - **--dds-badge-positive-color** - The text color of the positive badge. Default is the design system's text-positive-subtle. _(default: undefined)_
|
|
2919
|
-
* - **--dds-badge-warning-border-color** - The border color of the warning badge. Default is the design system's border-warning-subtle. _(default: undefined)_
|
|
2920
|
-
* - **--dds-badge-warning-background** - The background color of the warning badge. Default is the design system's background-warning-medium. _(default: undefined)_
|
|
2921
|
-
* - **--dds-badge-warning-color** - The text color of the warning badge. Default is the design system's text-warning-subtle. _(default: undefined)_
|
|
2922
|
-
* - **--dds-badge-negative-border-color** - The border color of the negative badge. Default is the design system's border-negative-base. _(default: undefined)_
|
|
2923
|
-
* - **--dds-badge-negative-background** - The background color of the negative badge. Default is the design system's background-negative-medium. _(default: undefined)_
|
|
2924
|
-
* - **--dds-badge-negative-color** - The text color of the negative badge. Default is the design system's text-negative-subtle. _(default: undefined)_
|
|
2921
|
+
* - **--dds-anchor-link-color** - The color of the anchor link. Default is the primary color. _(default: undefined)_
|
|
2922
|
+
* - **--dds-anchor-link-opacity** - The opacity of the anchor link when not hovered. Default is 0. _(default: undefined)_
|
|
2923
|
+
* - **--dds-anchor-link-hover-opacity** - The opacity of the anchor link when hovered. Default is 1. _(default: undefined)_
|
|
2924
|
+
* - **--dds-anchor-link-transition** - The transition property for the anchor link opacity. Default is 'opacity 0.2s ease-in-out'. _(default: undefined)_
|
|
2925
2925
|
*
|
|
2926
2926
|
* ### **CSS Parts:**
|
|
2927
|
-
* - **base** - The main
|
|
2928
|
-
* - **
|
|
2929
|
-
* - **
|
|
2930
|
-
* - **
|
|
2927
|
+
* - **base** - The main anchor heading container.
|
|
2928
|
+
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
2929
|
+
* - **link-base** - The base of the link part.
|
|
2930
|
+
* - **text** - The text of the anchor heading.
|
|
2931
2931
|
*/
|
|
2932
|
-
"dap-ds-
|
|
2932
|
+
"dap-ds-anchor-heading": DefineComponent<DapDSAnchorHeadingProps>;
|
|
2933
2933
|
|
|
2934
2934
|
/**
|
|
2935
2935
|
* A banner is a message displayed at the top of the page to provide important information to the user.
|
|
@@ -2977,30 +2977,11 @@ export type CustomElements = {
|
|
|
2977
2977
|
* - **icon-base** - The base of the icon.
|
|
2978
2978
|
* - **closebutton** - The close button of the banner.
|
|
2979
2979
|
* - **close-icon-element** - The icon element of the close button.
|
|
2980
|
-
* - **close-icon-base** - The base of the close button icon.
|
|
2981
|
-
* - **actions** - The actions of the banner.
|
|
2982
|
-
* - **title** - The title of the banner.
|
|
2983
|
-
*/
|
|
2984
|
-
"dap-ds-banner": DefineComponent<DapDSBannerProps>;
|
|
2985
|
-
|
|
2986
|
-
/**
|
|
2987
|
-
* Anchor heading is a heading with an anchor link.
|
|
2988
|
-
* ---
|
|
2989
|
-
*
|
|
2990
|
-
*
|
|
2991
|
-
* ### **CSS Properties:**
|
|
2992
|
-
* - **--dds-anchor-link-color** - The color of the anchor link. Default is the primary color. _(default: undefined)_
|
|
2993
|
-
* - **--dds-anchor-link-opacity** - The opacity of the anchor link when not hovered. Default is 0. _(default: undefined)_
|
|
2994
|
-
* - **--dds-anchor-link-hover-opacity** - The opacity of the anchor link when hovered. Default is 1. _(default: undefined)_
|
|
2995
|
-
* - **--dds-anchor-link-transition** - The transition property for the anchor link opacity. Default is 'opacity 0.2s ease-in-out'. _(default: undefined)_
|
|
2996
|
-
*
|
|
2997
|
-
* ### **CSS Parts:**
|
|
2998
|
-
* - **base** - The main anchor heading container.
|
|
2999
|
-
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
3000
|
-
* - **link-base** - The base of the link part.
|
|
3001
|
-
* - **text** - The text of the anchor heading.
|
|
2980
|
+
* - **close-icon-base** - The base of the close button icon.
|
|
2981
|
+
* - **actions** - The actions of the banner.
|
|
2982
|
+
* - **title** - The title of the banner.
|
|
3002
2983
|
*/
|
|
3003
|
-
"dap-ds-
|
|
2984
|
+
"dap-ds-banner": DefineComponent<DapDSBannerProps>;
|
|
3004
2985
|
|
|
3005
2986
|
/**
|
|
3006
2987
|
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
@@ -3026,30 +3007,6 @@ export type CustomElements = {
|
|
|
3026
3007
|
*/
|
|
3027
3008
|
"dap-ds-breadcrumb": DefineComponent<DapDSBreadcrumbProps>;
|
|
3028
3009
|
|
|
3029
|
-
/**
|
|
3030
|
-
* Avatar component can be used to display user profile images or icons, or illustrations.
|
|
3031
|
-
* ---
|
|
3032
|
-
*
|
|
3033
|
-
*
|
|
3034
|
-
* ### **CSS Properties:**
|
|
3035
|
-
* - **--dds-avatar-border-radius** - The border radius of the avatar. Default is the design system's rounded radius. _(default: undefined)_
|
|
3036
|
-
* - **--dds-avatar-background-color** - The background color of the avatar. Default is transparent. _(default: undefined)_
|
|
3037
|
-
* - **--dds-avatar-border-width** - The width of the avatar's border. Default is 0. _(default: undefined)_
|
|
3038
|
-
* - **--dds-avatar-border-color** - The color of the avatar's border. Default is transparent. _(default: undefined)_
|
|
3039
|
-
* - **--dds-avatar-border-style** - The style of the avatar's border. Default is solid. _(default: undefined)_
|
|
3040
|
-
* - **--dds-avatar-transition** - The transition property for the avatar. Default is 'all 0.2s ease-in-out'. _(default: undefined)_
|
|
3041
|
-
* - **--dds-avatar-size-lg** - The size of the large avatar. Default is the design system's spacing-2000. _(default: undefined)_
|
|
3042
|
-
* - **--dds-avatar-size-md** - The size of the medium avatar. Default is the design system's spacing-1600. _(default: undefined)_
|
|
3043
|
-
* - **--dds-avatar-size-sm** - The size of the small avatar. Default is the design system's spacing-1200. _(default: undefined)_
|
|
3044
|
-
* - **--dds-avatar-size-xs** - The size of the extra small avatar. Default is the design system's spacing-800. _(default: undefined)_
|
|
3045
|
-
* - **--dds-avatar-size-xxs** - The size of the extra extra small avatar. Default is the design system's spacing-600. _(default: undefined)_
|
|
3046
|
-
*
|
|
3047
|
-
* ### **CSS Parts:**
|
|
3048
|
-
* - **base** - The main avatar image container.
|
|
3049
|
-
* - **img** - The avatar image.
|
|
3050
|
-
*/
|
|
3051
|
-
"dap-ds-avatar": DefineComponent<DapDSAvatarProps>;
|
|
3052
|
-
|
|
3053
3010
|
/**
|
|
3054
3011
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
3055
3012
|
* ---
|
|
@@ -3083,6 +3040,53 @@ export type CustomElements = {
|
|
|
3083
3040
|
*/
|
|
3084
3041
|
"dap-ds-breadcrumb-item": DefineComponent<DapDSBreadcrumbItemProps>;
|
|
3085
3042
|
|
|
3043
|
+
/**
|
|
3044
|
+
* A badge is a small status descriptor for UI elements.
|
|
3045
|
+
* ---
|
|
3046
|
+
*
|
|
3047
|
+
*
|
|
3048
|
+
* ### **Slots:**
|
|
3049
|
+
* - _default_ - The content of the badge.
|
|
3050
|
+
* - **icon** - The icon of the badge.
|
|
3051
|
+
*
|
|
3052
|
+
* ### **CSS Properties:**
|
|
3053
|
+
* - **--dds-badge-border-width** - The width of the badge's border. Default is the design system's base border width. _(default: undefined)_
|
|
3054
|
+
* - **--dds-badge-border-style** - The style of the badge's border. Default is solid. _(default: undefined)_
|
|
3055
|
+
* - **--dds-badge-border-radius** - The border radius of the badge. Default is the design system's base radius. _(default: undefined)_
|
|
3056
|
+
* - **--dds-badge-font-weight** - The font weight of the badge text. Default is bold. _(default: undefined)_
|
|
3057
|
+
* - **--dds-badge-line-height** - The line height of the badge text. Default is 1.2. _(default: undefined)_
|
|
3058
|
+
* - **--dds-badge-transition** - The transition property for the badge. Default is 'all 0.2s ease-in-out'. _(default: undefined)_
|
|
3059
|
+
* - **--dds-badge-padding-sm** - The padding of the small badge. Default is the design system's spacing-100 and spacing-200. _(default: undefined)_
|
|
3060
|
+
* - **--dds-badge-padding-lg** - The padding of the large badge. Default is the design system's spacing-100 and spacing-300. _(default: undefined)_
|
|
3061
|
+
* - **--dds-badge-font-size-sm** - The font size of the small badge. Default is the design system's font-xs. _(default: undefined)_
|
|
3062
|
+
* - **--dds-badge-font-size-lg** - The font size of the large badge. Default is the design system's font-sm. _(default: undefined)_
|
|
3063
|
+
* - **--dds-badge-neutral-border-color** - The border color of the neutral badge. Default is the design system's border-neutral-base. _(default: undefined)_
|
|
3064
|
+
* - **--dds-badge-neutral-background** - The background color of the neutral badge. Default is the design system's background-neutral-medium. _(default: undefined)_
|
|
3065
|
+
* - **--dds-badge-neutral-color** - The text color of the neutral badge. Default is the design system's text-neutral-subtle. _(default: undefined)_
|
|
3066
|
+
* - **--dds-badge-brand-border-color** - The border color of the brand badge. Default is the design system's border-brand-base. _(default: undefined)_
|
|
3067
|
+
* - **--dds-badge-brand-background** - The background color of the brand badge. Default is the design system's background-brand-medium. _(default: undefined)_
|
|
3068
|
+
* - **--dds-badge-brand-color** - The text color of the brand badge. Default is the design system's text-brand-subtle. _(default: undefined)_
|
|
3069
|
+
* - **--dds-badge-info-border-color** - The border color of the info badge. Default is the design system's border-informative-base. _(default: undefined)_
|
|
3070
|
+
* - **--dds-badge-info-background** - The background color of the info badge. Default is the design system's background-informative-medium. _(default: undefined)_
|
|
3071
|
+
* - **--dds-badge-info-color** - The text color of the info badge. Default is the design system's text-informative-subtle. _(default: undefined)_
|
|
3072
|
+
* - **--dds-badge-positive-border-color** - The border color of the positive badge. Default is the design system's border-positive-base. _(default: undefined)_
|
|
3073
|
+
* - **--dds-badge-positive-background** - The background color of the positive badge. Default is the design system's background-positive-medium. _(default: undefined)_
|
|
3074
|
+
* - **--dds-badge-positive-color** - The text color of the positive badge. Default is the design system's text-positive-subtle. _(default: undefined)_
|
|
3075
|
+
* - **--dds-badge-warning-border-color** - The border color of the warning badge. Default is the design system's border-warning-subtle. _(default: undefined)_
|
|
3076
|
+
* - **--dds-badge-warning-background** - The background color of the warning badge. Default is the design system's background-warning-medium. _(default: undefined)_
|
|
3077
|
+
* - **--dds-badge-warning-color** - The text color of the warning badge. Default is the design system's text-warning-subtle. _(default: undefined)_
|
|
3078
|
+
* - **--dds-badge-negative-border-color** - The border color of the negative badge. Default is the design system's border-negative-base. _(default: undefined)_
|
|
3079
|
+
* - **--dds-badge-negative-background** - The background color of the negative badge. Default is the design system's background-negative-medium. _(default: undefined)_
|
|
3080
|
+
* - **--dds-badge-negative-color** - The text color of the negative badge. Default is the design system's text-negative-subtle. _(default: undefined)_
|
|
3081
|
+
*
|
|
3082
|
+
* ### **CSS Parts:**
|
|
3083
|
+
* - **base** - The main container of the badge.
|
|
3084
|
+
* - **icon** - The icon of the badge.
|
|
3085
|
+
* - **content** - The content of the badge.
|
|
3086
|
+
* - **icon-base** - The base of the icon.
|
|
3087
|
+
*/
|
|
3088
|
+
"dap-ds-badge": DefineComponent<DapDSBadgeProps>;
|
|
3089
|
+
|
|
3086
3090
|
/**
|
|
3087
3091
|
* A button is a clickable element that can be used to trigger an action.
|
|
3088
3092
|
* ---
|
|
@@ -3482,61 +3486,6 @@ export type CustomElements = {
|
|
|
3482
3486
|
*/
|
|
3483
3487
|
"dap-ds-checkbox": DefineComponent<DapDSCheckboxProps>;
|
|
3484
3488
|
|
|
3485
|
-
/**
|
|
3486
|
-
* A select is a form element that allows the user to select one option from a set.
|
|
3487
|
-
* ---
|
|
3488
|
-
*
|
|
3489
|
-
*
|
|
3490
|
-
* ### **Events:**
|
|
3491
|
-
* - **dds-change** - Fired when the select value changes.
|
|
3492
|
-
* - **dds-blur** - Emitted when the select loses focus.
|
|
3493
|
-
* - **dds-focus** - Emitted when the select gains focus.
|
|
3494
|
-
* - **dds-clear** - Emitted when the select is cleared.
|
|
3495
|
-
* - **dds-search** - Emitted when the manual input value changes.
|
|
3496
|
-
* - **dds-input** - Emitted when typing happens in the input.
|
|
3497
|
-
*
|
|
3498
|
-
* ### **Slots:**
|
|
3499
|
-
* - _default_ - The default slot for the options.
|
|
3500
|
-
*
|
|
3501
|
-
* ### **CSS Properties:**
|
|
3502
|
-
* - **--dds-combobox-background** - The background color of the combobox. Defaults to var(--dds-fields-background-default). _(default: undefined)_
|
|
3503
|
-
* - **--dds-combobox-border-color** - The border color of the combobox. Defaults to var(--dds-border-neutral-base). _(default: undefined)_
|
|
3504
|
-
* - **--dds-combobox-border-width** - The border width of the combobox. Defaults to var(--dds-border-width-base, 1px). _(default: undefined)_
|
|
3505
|
-
* - **--dds-combobox-border-radius** - The border radius of the combobox. Defaults to var(--dds-radius-base). _(default: undefined)_
|
|
3506
|
-
* - **--dds-combobox-text-color** - The text color of the combobox. Defaults to var(--dds-text-neutral-base). _(default: undefined)_
|
|
3507
|
-
* - **--dds-combobox-placeholder-color** - The placeholder text color. Defaults to var(--dds-text-neutral-subtle). _(default: undefined)_
|
|
3508
|
-
* - **--dds-combobox-disabled-background** - The background color when disabled. Defaults to var(--dds-background-neutral-stronger). _(default: undefined)_
|
|
3509
|
-
* - **--dds-combobox-disabled-text** - The text color when disabled. Defaults to var(--dds-text-neutral-disabled). _(default: undefined)_
|
|
3510
|
-
* - **--dds-combobox-error-border** - The border color for error state. Defaults to var(--dds-border-negative-base). _(default: undefined)_
|
|
3511
|
-
* - **--dds-combobox-success-border** - The border color for success state. Defaults to var(--dds-border-positive-base). _(default: undefined)_
|
|
3512
|
-
* - **--dds-combobox-icon-color** - The color of the icons. Defaults to var(--dds-text-icon-neutral-subtle). _(default: undefined)_
|
|
3513
|
-
* - **--dds-combobox-clear-icon-color** - The color of the clear icon. Defaults to var(--dds-button-subtle-icon-neutral-enabled). _(default: undefined)_
|
|
3514
|
-
* - **--dds-combobox-popup-background** - The background color of the popup. Defaults to var(--dds-background-neutral-subtle). _(default: undefined)_
|
|
3515
|
-
* - **--dds-combobox-popup-shadow** - The box shadow of the popup. Defaults to 0 4px 6px -1px rgb(0 0 0 / 8%), 0 2px 4px -1px rgb(0 0 0 / 6%). _(default: undefined)_
|
|
3516
|
-
* - **--dds-combobox-padding-xs** - The padding for extra small size. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3517
|
-
* - **--dds-combobox-padding-sm** - The padding for small size. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3518
|
-
* - **--dds-combobox-padding-lg** - The padding for large size. Defaults to var(--dds-spacing-300). _(default: undefined)_
|
|
3519
|
-
* - **--dds-combobox-padding-horizontal** - The horizontal padding. Defaults to var(--dds-spacing-300). _(default: undefined)_
|
|
3520
|
-
* - **--dds-combobox-padding-vertical** - The vertical padding. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3521
|
-
* - **--dds-combobox-gap** - The gap between elements. Defaults to var(--dds-spacing-100). _(default: undefined)_
|
|
3522
|
-
* - **--dds-combobox-icon-gap** - The gap between icons. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3523
|
-
* - **--dds-combobox-action-gap** - The gap between action elements. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3524
|
-
* - **--dds-combobox-action-padding** - The padding for action elements. Defaults to var(--dds-spacing-300). _(default: undefined)_
|
|
3525
|
-
* - **--dds-combobox-clear-icon-width** - The width of the clear icon. Defaults to var(--dds-spacing-800). _(default: undefined)_
|
|
3526
|
-
* - **--dds-combobox-dropdown-icon-right** - The right position of the dropdown icon. Defaults to var(--dds-spacing-600). _(default: undefined)_
|
|
3527
|
-
* - **--dds-combobox-min-width** - The minimum width of the combobox. Defaults to 7.5rem. _(default: undefined)_
|
|
3528
|
-
*
|
|
3529
|
-
* ### **CSS Parts:**
|
|
3530
|
-
* - **base** - The main select container.
|
|
3531
|
-
* - **trigger** - The trigger button of the select.
|
|
3532
|
-
* - **label** - The label of the select.
|
|
3533
|
-
* - **description** - The description of the select.
|
|
3534
|
-
* - **feedback** - The feedback of the select.
|
|
3535
|
-
* - **tooltip** - The tooltip of the select.
|
|
3536
|
-
* - **option-list** - The option list of the select.
|
|
3537
|
-
*/
|
|
3538
|
-
"dap-ds-combobox": DefineComponent<DapDSComboboxProps>;
|
|
3539
|
-
|
|
3540
3489
|
/**
|
|
3541
3490
|
* A command group is a group of command items.
|
|
3542
3491
|
* ---
|
|
@@ -3611,6 +3560,61 @@ export type CustomElements = {
|
|
|
3611
3560
|
*/
|
|
3612
3561
|
"dap-ds-command": DefineComponent<DapDSCommandProps>;
|
|
3613
3562
|
|
|
3563
|
+
/**
|
|
3564
|
+
* A select is a form element that allows the user to select one option from a set.
|
|
3565
|
+
* ---
|
|
3566
|
+
*
|
|
3567
|
+
*
|
|
3568
|
+
* ### **Events:**
|
|
3569
|
+
* - **dds-change** - Fired when the select value changes.
|
|
3570
|
+
* - **dds-blur** - Emitted when the select loses focus.
|
|
3571
|
+
* - **dds-focus** - Emitted when the select gains focus.
|
|
3572
|
+
* - **dds-clear** - Emitted when the select is cleared.
|
|
3573
|
+
* - **dds-search** - Emitted when the manual input value changes.
|
|
3574
|
+
* - **dds-input** - Emitted when typing happens in the input.
|
|
3575
|
+
*
|
|
3576
|
+
* ### **Slots:**
|
|
3577
|
+
* - _default_ - The default slot for the options.
|
|
3578
|
+
*
|
|
3579
|
+
* ### **CSS Properties:**
|
|
3580
|
+
* - **--dds-combobox-background** - The background color of the combobox. Defaults to var(--dds-fields-background-default). _(default: undefined)_
|
|
3581
|
+
* - **--dds-combobox-border-color** - The border color of the combobox. Defaults to var(--dds-border-neutral-base). _(default: undefined)_
|
|
3582
|
+
* - **--dds-combobox-border-width** - The border width of the combobox. Defaults to var(--dds-border-width-base, 1px). _(default: undefined)_
|
|
3583
|
+
* - **--dds-combobox-border-radius** - The border radius of the combobox. Defaults to var(--dds-radius-base). _(default: undefined)_
|
|
3584
|
+
* - **--dds-combobox-text-color** - The text color of the combobox. Defaults to var(--dds-text-neutral-base). _(default: undefined)_
|
|
3585
|
+
* - **--dds-combobox-placeholder-color** - The placeholder text color. Defaults to var(--dds-text-neutral-subtle). _(default: undefined)_
|
|
3586
|
+
* - **--dds-combobox-disabled-background** - The background color when disabled. Defaults to var(--dds-background-neutral-stronger). _(default: undefined)_
|
|
3587
|
+
* - **--dds-combobox-disabled-text** - The text color when disabled. Defaults to var(--dds-text-neutral-disabled). _(default: undefined)_
|
|
3588
|
+
* - **--dds-combobox-error-border** - The border color for error state. Defaults to var(--dds-border-negative-base). _(default: undefined)_
|
|
3589
|
+
* - **--dds-combobox-success-border** - The border color for success state. Defaults to var(--dds-border-positive-base). _(default: undefined)_
|
|
3590
|
+
* - **--dds-combobox-icon-color** - The color of the icons. Defaults to var(--dds-text-icon-neutral-subtle). _(default: undefined)_
|
|
3591
|
+
* - **--dds-combobox-clear-icon-color** - The color of the clear icon. Defaults to var(--dds-button-subtle-icon-neutral-enabled). _(default: undefined)_
|
|
3592
|
+
* - **--dds-combobox-popup-background** - The background color of the popup. Defaults to var(--dds-background-neutral-subtle). _(default: undefined)_
|
|
3593
|
+
* - **--dds-combobox-popup-shadow** - The box shadow of the popup. Defaults to 0 4px 6px -1px rgb(0 0 0 / 8%), 0 2px 4px -1px rgb(0 0 0 / 6%). _(default: undefined)_
|
|
3594
|
+
* - **--dds-combobox-padding-xs** - The padding for extra small size. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3595
|
+
* - **--dds-combobox-padding-sm** - The padding for small size. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3596
|
+
* - **--dds-combobox-padding-lg** - The padding for large size. Defaults to var(--dds-spacing-300). _(default: undefined)_
|
|
3597
|
+
* - **--dds-combobox-padding-horizontal** - The horizontal padding. Defaults to var(--dds-spacing-300). _(default: undefined)_
|
|
3598
|
+
* - **--dds-combobox-padding-vertical** - The vertical padding. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3599
|
+
* - **--dds-combobox-gap** - The gap between elements. Defaults to var(--dds-spacing-100). _(default: undefined)_
|
|
3600
|
+
* - **--dds-combobox-icon-gap** - The gap between icons. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3601
|
+
* - **--dds-combobox-action-gap** - The gap between action elements. Defaults to var(--dds-spacing-200). _(default: undefined)_
|
|
3602
|
+
* - **--dds-combobox-action-padding** - The padding for action elements. Defaults to var(--dds-spacing-300). _(default: undefined)_
|
|
3603
|
+
* - **--dds-combobox-clear-icon-width** - The width of the clear icon. Defaults to var(--dds-spacing-800). _(default: undefined)_
|
|
3604
|
+
* - **--dds-combobox-dropdown-icon-right** - The right position of the dropdown icon. Defaults to var(--dds-spacing-600). _(default: undefined)_
|
|
3605
|
+
* - **--dds-combobox-min-width** - The minimum width of the combobox. Defaults to 7.5rem. _(default: undefined)_
|
|
3606
|
+
*
|
|
3607
|
+
* ### **CSS Parts:**
|
|
3608
|
+
* - **base** - The main select container.
|
|
3609
|
+
* - **trigger** - The trigger button of the select.
|
|
3610
|
+
* - **label** - The label of the select.
|
|
3611
|
+
* - **description** - The description of the select.
|
|
3612
|
+
* - **feedback** - The feedback of the select.
|
|
3613
|
+
* - **tooltip** - The tooltip of the select.
|
|
3614
|
+
* - **option-list** - The option list of the select.
|
|
3615
|
+
*/
|
|
3616
|
+
"dap-ds-combobox": DefineComponent<DapDSComboboxProps>;
|
|
3617
|
+
|
|
3614
3618
|
/**
|
|
3615
3619
|
* Segmented control item component for the segmented control.
|
|
3616
3620
|
* ---
|
|
@@ -3643,7 +3647,7 @@ export type CustomElements = {
|
|
|
3643
3647
|
*
|
|
3644
3648
|
*
|
|
3645
3649
|
* ### **Events:**
|
|
3646
|
-
* - **dds-change** - Fired when the content switcher is changed.
|
|
3650
|
+
* - **dds-change** - Fired when the content switcher is changed.
|
|
3647
3651
|
*
|
|
3648
3652
|
* ### **Slots:**
|
|
3649
3653
|
* - _default_ - The content switcher items.
|
|
@@ -3784,7 +3788,7 @@ export type CustomElements = {
|
|
|
3784
3788
|
* - **dds-change** - Fired when the datepicker value changes.
|
|
3785
3789
|
* - **dds-input** - Fired when the datepicker input value changes.
|
|
3786
3790
|
* - **dds-valid-date** - Fired when the datepicker input value is valid. Happens on manual input typing.
|
|
3787
|
-
* - **dds-invalid-date** - Fired when the datepicker input value is invalid.
|
|
3791
|
+
* - **dds-invalid-date** - Fired when the datepicker input value is invalid. Happens on manual input typing.
|
|
3788
3792
|
* - **dds-clear** - Fired when the datepicker is cleared.
|
|
3789
3793
|
* - **dds-focus** - Emitted when the datepicker gains focus.
|
|
3790
3794
|
* - **dds-blur** - Emitted when the datepicker loses focus.
|
|
@@ -5375,6 +5379,16 @@ export type CustomElements = {
|
|
|
5375
5379
|
*/
|
|
5376
5380
|
"dap-ds-radio-group": DefineComponent<DapDSRadioGroupProps>;
|
|
5377
5381
|
|
|
5382
|
+
/**
|
|
5383
|
+
* An icon
|
|
5384
|
+
* ---
|
|
5385
|
+
*
|
|
5386
|
+
*
|
|
5387
|
+
* ### **CSS Parts:**
|
|
5388
|
+
* - **base** - The main icon container.
|
|
5389
|
+
*/
|
|
5390
|
+
"dap-ds-icon-home-6-line": DefineComponent<BuildingsHome6LineProps>;
|
|
5391
|
+
|
|
5378
5392
|
/**
|
|
5379
5393
|
* An icon
|
|
5380
5394
|
* ---
|
|
@@ -5423,7 +5437,7 @@ export type CustomElements = {
|
|
|
5423
5437
|
* ### **CSS Parts:**
|
|
5424
5438
|
* - **base** - The main icon container.
|
|
5425
5439
|
*/
|
|
5426
|
-
"dap-ds-icon-arrow-left-
|
|
5440
|
+
"dap-ds-icon-arrow-left-s-fill": DefineComponent<ArrowsArrowLeftSFillProps>;
|
|
5427
5441
|
|
|
5428
5442
|
/**
|
|
5429
5443
|
* An icon
|
|
@@ -5433,7 +5447,7 @@ export type CustomElements = {
|
|
|
5433
5447
|
* ### **CSS Parts:**
|
|
5434
5448
|
* - **base** - The main icon container.
|
|
5435
5449
|
*/
|
|
5436
|
-
"dap-ds-icon-arrow-left-line": DefineComponent<
|
|
5450
|
+
"dap-ds-icon-arrow-left-l-line": DefineComponent<ArrowsArrowLeftLLineProps>;
|
|
5437
5451
|
|
|
5438
5452
|
/**
|
|
5439
5453
|
* An icon
|
|
@@ -5443,7 +5457,7 @@ export type CustomElements = {
|
|
|
5443
5457
|
* ### **CSS Parts:**
|
|
5444
5458
|
* - **base** - The main icon container.
|
|
5445
5459
|
*/
|
|
5446
|
-
"dap-ds-icon-arrow-left-
|
|
5460
|
+
"dap-ds-icon-arrow-left-line": DefineComponent<ArrowsArrowLeftLineProps>;
|
|
5447
5461
|
|
|
5448
5462
|
/**
|
|
5449
5463
|
* An icon
|
|
@@ -5533,7 +5547,7 @@ export type CustomElements = {
|
|
|
5533
5547
|
* ### **CSS Parts:**
|
|
5534
5548
|
* - **base** - The main icon container.
|
|
5535
5549
|
*/
|
|
5536
|
-
"dap-ds-icon-arrow-up-
|
|
5550
|
+
"dap-ds-icon-arrow-up-s-fill": DefineComponent<ArrowsArrowUpSFillProps>;
|
|
5537
5551
|
|
|
5538
5552
|
/**
|
|
5539
5553
|
* An icon
|
|
@@ -5543,7 +5557,7 @@ export type CustomElements = {
|
|
|
5543
5557
|
* ### **CSS Parts:**
|
|
5544
5558
|
* - **base** - The main icon container.
|
|
5545
5559
|
*/
|
|
5546
|
-
"dap-ds-icon-arrow-up-
|
|
5560
|
+
"dap-ds-icon-arrow-up-line": DefineComponent<ArrowsArrowUpLineProps>;
|
|
5547
5561
|
|
|
5548
5562
|
/**
|
|
5549
5563
|
* An icon
|
|
@@ -5565,16 +5579,6 @@ export type CustomElements = {
|
|
|
5565
5579
|
*/
|
|
5566
5580
|
"dap-ds-icon-expand-up-down-fill": DefineComponent<ArrowsExpandUpDownFillProps>;
|
|
5567
5581
|
|
|
5568
|
-
/**
|
|
5569
|
-
* An icon
|
|
5570
|
-
* ---
|
|
5571
|
-
*
|
|
5572
|
-
*
|
|
5573
|
-
* ### **CSS Parts:**
|
|
5574
|
-
* - **base** - The main icon container.
|
|
5575
|
-
*/
|
|
5576
|
-
"dap-ds-icon-home-6-line": DefineComponent<BuildingsHome6LineProps>;
|
|
5577
|
-
|
|
5578
5582
|
/**
|
|
5579
5583
|
* An icon
|
|
5580
5584
|
* ---
|
|
@@ -5643,7 +5647,7 @@ export type CustomElements = {
|
|
|
5643
5647
|
* ### **CSS Parts:**
|
|
5644
5648
|
* - **base** - The main icon container.
|
|
5645
5649
|
*/
|
|
5646
|
-
"dap-ds-icon-
|
|
5650
|
+
"dap-ds-icon-check-line": DefineComponent<SystemCheckLineProps>;
|
|
5647
5651
|
|
|
5648
5652
|
/**
|
|
5649
5653
|
* An icon
|
|
@@ -5653,7 +5657,7 @@ export type CustomElements = {
|
|
|
5653
5657
|
* ### **CSS Parts:**
|
|
5654
5658
|
* - **base** - The main icon container.
|
|
5655
5659
|
*/
|
|
5656
|
-
"dap-ds-icon-
|
|
5660
|
+
"dap-ds-icon-alert-line": DefineComponent<SystemAlertLineProps>;
|
|
5657
5661
|
|
|
5658
5662
|
/**
|
|
5659
5663
|
* An icon
|
|
@@ -5673,7 +5677,7 @@ export type CustomElements = {
|
|
|
5673
5677
|
* ### **CSS Parts:**
|
|
5674
5678
|
* - **base** - The main icon container.
|
|
5675
5679
|
*/
|
|
5676
|
-
"dap-ds-icon-checkbox-blank-circle-fill": DefineComponent<
|
|
5680
|
+
"dap-ds-icon-checkbox-blank-circle-fill-check": DefineComponent<SystemCheckboxBlankCircleFillCheckProps>;
|
|
5677
5681
|
|
|
5678
5682
|
/**
|
|
5679
5683
|
* An icon
|
|
@@ -5683,7 +5687,7 @@ export type CustomElements = {
|
|
|
5683
5687
|
* ### **CSS Parts:**
|
|
5684
5688
|
* - **base** - The main icon container.
|
|
5685
5689
|
*/
|
|
5686
|
-
"dap-ds-icon-checkbox-blank-circle-fill
|
|
5690
|
+
"dap-ds-icon-checkbox-blank-circle-fill": DefineComponent<SystemCheckboxBlankCircleFillProps>;
|
|
5687
5691
|
|
|
5688
5692
|
/**
|
|
5689
5693
|
* An icon
|
|
@@ -5733,7 +5737,7 @@ export type CustomElements = {
|
|
|
5733
5737
|
* ### **CSS Parts:**
|
|
5734
5738
|
* - **base** - The main icon container.
|
|
5735
5739
|
*/
|
|
5736
|
-
"dap-ds-icon-close-
|
|
5740
|
+
"dap-ds-icon-close-fill": DefineComponent<SystemCloseFillProps>;
|
|
5737
5741
|
|
|
5738
5742
|
/**
|
|
5739
5743
|
* An icon
|
|
@@ -5743,7 +5747,7 @@ export type CustomElements = {
|
|
|
5743
5747
|
* ### **CSS Parts:**
|
|
5744
5748
|
* - **base** - The main icon container.
|
|
5745
5749
|
*/
|
|
5746
|
-
"dap-ds-icon-close-
|
|
5750
|
+
"dap-ds-icon-close-circle-line": DefineComponent<SystemCloseCircleLineProps>;
|
|
5747
5751
|
|
|
5748
5752
|
/**
|
|
5749
5753
|
* An icon
|
|
@@ -5763,7 +5767,7 @@ export type CustomElements = {
|
|
|
5763
5767
|
* ### **CSS Parts:**
|
|
5764
5768
|
* - **base** - The main icon container.
|
|
5765
5769
|
*/
|
|
5766
|
-
"dap-ds-icon-
|
|
5770
|
+
"dap-ds-icon-error-warning-fill": DefineComponent<SystemErrorWarningFillProps>;
|
|
5767
5771
|
|
|
5768
5772
|
/**
|
|
5769
5773
|
* An icon
|
|
@@ -5773,7 +5777,7 @@ export type CustomElements = {
|
|
|
5773
5777
|
* ### **CSS Parts:**
|
|
5774
5778
|
* - **base** - The main icon container.
|
|
5775
5779
|
*/
|
|
5776
|
-
"dap-ds-icon-
|
|
5780
|
+
"dap-ds-icon-download-line": DefineComponent<SystemDownloadLineProps>;
|
|
5777
5781
|
|
|
5778
5782
|
/**
|
|
5779
5783
|
* An icon
|
|
@@ -5823,7 +5827,7 @@ export type CustomElements = {
|
|
|
5823
5827
|
* ### **CSS Parts:**
|
|
5824
5828
|
* - **base** - The main icon container.
|
|
5825
5829
|
*/
|
|
5826
|
-
"dap-ds-icon-
|
|
5830
|
+
"dap-ds-icon-information-2-fill": DefineComponent<SystemInformation2FillProps>;
|
|
5827
5831
|
|
|
5828
5832
|
/**
|
|
5829
5833
|
* An icon
|
|
@@ -5833,7 +5837,7 @@ export type CustomElements = {
|
|
|
5833
5837
|
* ### **CSS Parts:**
|
|
5834
5838
|
* - **base** - The main icon container.
|
|
5835
5839
|
*/
|
|
5836
|
-
"dap-ds-icon-
|
|
5840
|
+
"dap-ds-icon-forbid-fill": DefineComponent<SystemForbidFillProps>;
|
|
5837
5841
|
|
|
5838
5842
|
/**
|
|
5839
5843
|
* An icon
|
|
@@ -5853,7 +5857,7 @@ export type CustomElements = {
|
|
|
5853
5857
|
* ### **CSS Parts:**
|
|
5854
5858
|
* - **base** - The main icon container.
|
|
5855
5859
|
*/
|
|
5856
|
-
"dap-ds-icon-
|
|
5860
|
+
"dap-ds-icon-lightbulb-fill": DefineComponent<SystemLightbulbFillProps>;
|
|
5857
5861
|
|
|
5858
5862
|
/**
|
|
5859
5863
|
* An icon
|
|
@@ -5863,7 +5867,7 @@ export type CustomElements = {
|
|
|
5863
5867
|
* ### **CSS Parts:**
|
|
5864
5868
|
* - **base** - The main icon container.
|
|
5865
5869
|
*/
|
|
5866
|
-
"dap-ds-icon-
|
|
5870
|
+
"dap-ds-icon-information-line": DefineComponent<SystemInformationLineProps>;
|
|
5867
5871
|
|
|
5868
5872
|
/**
|
|
5869
5873
|
* An icon
|
|
@@ -5873,7 +5877,7 @@ export type CustomElements = {
|
|
|
5873
5877
|
* ### **CSS Parts:**
|
|
5874
5878
|
* - **base** - The main icon container.
|
|
5875
5879
|
*/
|
|
5876
|
-
"dap-ds-icon-
|
|
5880
|
+
"dap-ds-icon-lock-fill": DefineComponent<SystemLockFillProps>;
|
|
5877
5881
|
|
|
5878
5882
|
/**
|
|
5879
5883
|
* An icon
|
|
@@ -5883,7 +5887,7 @@ export type CustomElements = {
|
|
|
5883
5887
|
* ### **CSS Parts:**
|
|
5884
5888
|
* - **base** - The main icon container.
|
|
5885
5889
|
*/
|
|
5886
|
-
"dap-ds-icon-
|
|
5890
|
+
"dap-ds-icon-loading-spinner": DefineComponent<SystemLoadingSpinnerProps>;
|
|
5887
5891
|
|
|
5888
5892
|
/**
|
|
5889
5893
|
* An icon
|
|
@@ -5903,7 +5907,7 @@ export type CustomElements = {
|
|
|
5903
5907
|
* ### **CSS Parts:**
|
|
5904
5908
|
* - **base** - The main icon container.
|
|
5905
5909
|
*/
|
|
5906
|
-
"dap-ds-icon-menu-line": DefineComponent<
|
|
5910
|
+
"dap-ds-icon-menu-line-s": DefineComponent<SystemMenuLineSProps>;
|
|
5907
5911
|
|
|
5908
5912
|
/**
|
|
5909
5913
|
* An icon
|
|
@@ -5913,7 +5917,7 @@ export type CustomElements = {
|
|
|
5913
5917
|
* ### **CSS Parts:**
|
|
5914
5918
|
* - **base** - The main icon container.
|
|
5915
5919
|
*/
|
|
5916
|
-
"dap-ds-icon-menu-line
|
|
5920
|
+
"dap-ds-icon-menu-line": DefineComponent<SystemMenuLineProps>;
|
|
5917
5921
|
|
|
5918
5922
|
/**
|
|
5919
5923
|
* An icon
|
|
@@ -5923,7 +5927,7 @@ export type CustomElements = {
|
|
|
5923
5927
|
* ### **CSS Parts:**
|
|
5924
5928
|
* - **base** - The main icon container.
|
|
5925
5929
|
*/
|
|
5926
|
-
"dap-ds-icon-
|
|
5930
|
+
"dap-ds-icon-shield-check-fill": DefineComponent<SystemShieldCheckFillProps>;
|
|
5927
5931
|
|
|
5928
5932
|
/**
|
|
5929
5933
|
* An icon
|
|
@@ -5933,7 +5937,7 @@ export type CustomElements = {
|
|
|
5933
5937
|
* ### **CSS Parts:**
|
|
5934
5938
|
* - **base** - The main icon container.
|
|
5935
5939
|
*/
|
|
5936
|
-
"dap-ds-icon-
|
|
5940
|
+
"dap-ds-icon-search-line": DefineComponent<SystemSearchLineProps>;
|
|
5937
5941
|
|
|
5938
5942
|
/**
|
|
5939
5943
|
* An icon
|
|
@@ -5953,7 +5957,7 @@ export type CustomElements = {
|
|
|
5953
5957
|
* ### **CSS Parts:**
|
|
5954
5958
|
* - **base** - The main icon container.
|
|
5955
5959
|
*/
|
|
5956
|
-
"dap-ds-icon-
|
|
5960
|
+
"dap-ds-icon-subtract-line": DefineComponent<SystemSubtractLineProps>;
|
|
5957
5961
|
|
|
5958
5962
|
/**
|
|
5959
5963
|
* An icon
|
|
@@ -5963,7 +5967,7 @@ export type CustomElements = {
|
|
|
5963
5967
|
* ### **CSS Parts:**
|
|
5964
5968
|
* - **base** - The main icon container.
|
|
5965
5969
|
*/
|
|
5966
|
-
"dap-ds-icon-
|
|
5970
|
+
"dap-ds-icon-star-fill": DefineComponent<SystemStarFillProps>;
|
|
5967
5971
|
|
|
5968
5972
|
/**
|
|
5969
5973
|
* An icon
|