dap-design-system 0.35.12 → 0.35.13
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/dark.theme.css +2 -2
- package/dist/dds.d.ts +156 -0
- package/dist/dds.js +3265 -3053
- package/dist/dds.js.map +1 -1
- package/dist/high-contrast.theme.css +2 -2
- package/dist/light.theme.css +2 -2
- package/dist/manifest/types/vue/index.d.ts +392 -296
- package/dist/manifest/vscode.html-custom-data.json +265 -117
- package/dist/manifest/web-types.json +753 -501
- package/dist/react-types.ts +14 -10
- package/dist/react.d.ts +373 -145
- package/dist/react.js +474 -446
- package/dist/react.js.map +1 -1
- package/dist/variables/variables-dark.css +2 -1
- package/dist/variables/variables-high-contrast.css +2 -1
- package/dist/variables/variables-light.css +2 -1
- package/package.json +1 -1
|
@@ -6,6 +6,33 @@
|
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
|
+
{
|
|
10
|
+
"name": "dap-ds-anchor-heading",
|
|
11
|
+
"description": "Anchor heading is a heading with an anchor link.\n---\n\n\n### **CSS Properties:**\n - **--dds-anchor-link-color** - The color of the anchor link. Default is the primary color. _(default: undefined)_\n- **--dds-anchor-link-opacity** - The opacity of the anchor link when not hovered. Default is 0. _(default: undefined)_\n- **--dds-anchor-link-hover-opacity** - The opacity of the anchor link when hovered. Default is 1. _(default: undefined)_\n- **--dds-anchor-link-transition** - The transition property for the anchor link opacity. Default is 'opacity 0.2s ease-in-out'. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main anchor heading container.\n- **link** - The link of the anchor heading. dap-ds-link element.\n- **link-base** - The base of the link part.\n- **text** - The text of the anchor heading.",
|
|
12
|
+
"doc-url": "",
|
|
13
|
+
"attributes": [
|
|
14
|
+
{
|
|
15
|
+
"name": "variant",
|
|
16
|
+
"description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
|
|
17
|
+
"value": { "type": "HeadingVariant" }
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "label",
|
|
21
|
+
"description": "The label of the heading.",
|
|
22
|
+
"value": { "type": "string" }
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"events": [],
|
|
26
|
+
"js": {
|
|
27
|
+
"properties": [
|
|
28
|
+
{ "name": "variant", "type": "HeadingVariant" },
|
|
29
|
+
{ "name": "label", "type": "string" },
|
|
30
|
+
{ "name": "elementId" },
|
|
31
|
+
{ "name": "anchorTitle" }
|
|
32
|
+
],
|
|
33
|
+
"events": []
|
|
34
|
+
}
|
|
35
|
+
},
|
|
9
36
|
{
|
|
10
37
|
"name": "dap-ds-accordion",
|
|
11
38
|
"description": "An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.\n---\n\n\n### **Events:**\n - **dds-opened** - Event fired when the accordion is opened.\n- **dds-closed** - Event fired when the accordion is closed.\n\n### **Slots:**\n - **default** - The content of the accordion.\n- **heading** - The heading of the accordion.\n- **icon-opened** - The icon when the accordion is opened.\n- **icon-closed** - The icon when the accordion is closed.\n\n### **CSS Properties:**\n - **--dds-accordion-border-width** - The width of the accordion border (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-accordion-border-style** - The style of the accordion border (default: solid) _(default: undefined)_\n- **--dds-accordion-border-radius** - The border radius of the accordion (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-accordion-border-color** - The color of the accordion border (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-accordion-background-color** - The background color of the accordion (default: var(--dds-background-neutral-subtle)) _(default: undefined)_\n- **--dds-accordion-text-color** - The text color of the accordion (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-hover-background** - The background color when hovering over the accordion (default: var(--dds-background-neutral-base)) _(default: undefined)_\n- **--dds-accordion-active-background** - The background color when the accordion is active (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-accordion-icon-background** - The background color of the accordion icon (default: var(--dds-transparent-black-subtle)) _(default: undefined)_\n- **--dds-accordion-icon-color** - The color of the accordion icon (default: var(--dds-icon-neutral-base)) _(default: undefined)_\n- **--dds-accordion-icon-hover-background** - The background color of the accordion icon when hovered (default: var(--dds-transparent-black-base)) _(default: undefined)_\n- **--dds-accordion-icon-active-background** - The background color of the accordion icon when active (default: var(--dds-transparent-black-strong)) _(default: undefined)_\n- **--dds-accordion-icon-hover-color** - The color of the accordion icon when hovered (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-icon-active-color** - The color of the accordion icon when active (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-content-color** - The color of the accordion content (default: var(--dds-text-text-neutral)) _(default: undefined)_\n- **--dds-accordion-transition-duration** - The duration of the accordion transitions (default: var(--dds-transition-fast)) _(default: undefined)_\n- **--dds-accordion-transition-timing** - The timing function of the accordion transitions (default: var(--dds-easing-ease-in-out)) _(default: undefined)_\n- **--dds-accordion-divider-color** - The color of the divider between accordion items (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main accordion container.\n- **heading** - The heading of the accordion.\n- **button** - The button of the accordion.\n- **content** - The content of the accordion.\n- **icon-wrapper** - The icon wrapper of the accordion.\n- **open-icon** - The icon when the accordion is opened.\n- **open-icon-base** - The base of the icon when the accordion is opened.\n- **close-icon** - The icon when the accordion is closed.\n- **close-icon-base** - The base of the icon when the accordion is closed.",
|
|
@@ -112,99 +139,6 @@
|
|
|
112
139
|
]
|
|
113
140
|
}
|
|
114
141
|
},
|
|
115
|
-
{
|
|
116
|
-
"name": "dap-ds-avatar",
|
|
117
|
-
"description": "Avatar component can be used to display user profile images or icons, or illustrations.\n---\n\n\n### **CSS Properties:**\n - **--dds-avatar-border-radius** - The border radius of the avatar. Default is the design system's rounded radius. _(default: undefined)_\n- **--dds-avatar-background-color** - The background color of the avatar. Default is transparent. _(default: undefined)_\n- **--dds-avatar-border-width** - The width of the avatar's border. Default is 0. _(default: undefined)_\n- **--dds-avatar-border-color** - The color of the avatar's border. Default is transparent. _(default: undefined)_\n- **--dds-avatar-border-style** - The style of the avatar's border. Default is solid. _(default: undefined)_\n- **--dds-avatar-transition** - The transition property for the avatar. Default is 'all 0.2s ease-in-out'. _(default: undefined)_\n- **--dds-avatar-size-lg** - The size of the large avatar. Default is the design system's spacing-2000. _(default: undefined)_\n- **--dds-avatar-size-md** - The size of the medium avatar. Default is the design system's spacing-1600. _(default: undefined)_\n- **--dds-avatar-size-sm** - The size of the small avatar. Default is the design system's spacing-1200. _(default: undefined)_\n- **--dds-avatar-size-xs** - The size of the extra small avatar. Default is the design system's spacing-800. _(default: undefined)_\n- **--dds-avatar-size-xxs** - The size of the extra extra small avatar. Default is the design system's spacing-600. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main avatar image container.\n- **img** - The avatar image.",
|
|
118
|
-
"doc-url": "",
|
|
119
|
-
"attributes": [
|
|
120
|
-
{
|
|
121
|
-
"name": "size",
|
|
122
|
-
"description": "The size of the avatar",
|
|
123
|
-
"value": {
|
|
124
|
-
"type": "'lg' | 'md' | 'sm' | 'xs' | 'xxs'",
|
|
125
|
-
"default": "'md'"
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"name": "src",
|
|
130
|
-
"description": "The source of the avatar.",
|
|
131
|
-
"value": { "type": "string" }
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"name": "alt",
|
|
135
|
-
"description": "The alt text of the avatar.",
|
|
136
|
-
"value": { "type": "string" }
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"name": "width",
|
|
140
|
-
"description": "The width of the avatar. This will override the size.",
|
|
141
|
-
"value": { "type": "number" }
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"name": "height",
|
|
145
|
-
"description": "The height of the avatar. This will override the size.",
|
|
146
|
-
"value": { "type": "number" }
|
|
147
|
-
}
|
|
148
|
-
],
|
|
149
|
-
"events": [],
|
|
150
|
-
"js": {
|
|
151
|
-
"properties": [
|
|
152
|
-
{
|
|
153
|
-
"name": "size",
|
|
154
|
-
"description": "The size of the avatar",
|
|
155
|
-
"type": "'lg' | 'md' | 'sm' | 'xs' | 'xxs'"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"name": "src",
|
|
159
|
-
"description": "The source of the avatar.",
|
|
160
|
-
"type": "string"
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"name": "alt",
|
|
164
|
-
"description": "The alt text of the avatar.",
|
|
165
|
-
"type": "string"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"name": "width",
|
|
169
|
-
"description": "The width of the avatar. This will override the size.",
|
|
170
|
-
"type": "number"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"name": "height",
|
|
174
|
-
"description": "The height of the avatar. This will override the size.",
|
|
175
|
-
"type": "number"
|
|
176
|
-
}
|
|
177
|
-
],
|
|
178
|
-
"events": []
|
|
179
|
-
}
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"name": "dap-ds-anchor-heading",
|
|
183
|
-
"description": "Anchor heading is a heading with an anchor link.\n---\n\n\n### **CSS Properties:**\n - **--dds-anchor-link-color** - The color of the anchor link. Default is the primary color. _(default: undefined)_\n- **--dds-anchor-link-opacity** - The opacity of the anchor link when not hovered. Default is 0. _(default: undefined)_\n- **--dds-anchor-link-hover-opacity** - The opacity of the anchor link when hovered. Default is 1. _(default: undefined)_\n- **--dds-anchor-link-transition** - The transition property for the anchor link opacity. Default is 'opacity 0.2s ease-in-out'. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main anchor heading container.\n- **link** - The link of the anchor heading. dap-ds-link element.\n- **link-base** - The base of the link part.\n- **text** - The text of the anchor heading.",
|
|
184
|
-
"doc-url": "",
|
|
185
|
-
"attributes": [
|
|
186
|
-
{
|
|
187
|
-
"name": "variant",
|
|
188
|
-
"description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
|
|
189
|
-
"value": { "type": "HeadingVariant" }
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"name": "label",
|
|
193
|
-
"description": "The label of the heading.",
|
|
194
|
-
"value": { "type": "string" }
|
|
195
|
-
}
|
|
196
|
-
],
|
|
197
|
-
"events": [],
|
|
198
|
-
"js": {
|
|
199
|
-
"properties": [
|
|
200
|
-
{ "name": "variant", "type": "HeadingVariant" },
|
|
201
|
-
{ "name": "label", "type": "string" },
|
|
202
|
-
{ "name": "elementId" },
|
|
203
|
-
{ "name": "anchorTitle" }
|
|
204
|
-
],
|
|
205
|
-
"events": []
|
|
206
|
-
}
|
|
207
|
-
},
|
|
208
142
|
{
|
|
209
143
|
"name": "dap-ds-badge",
|
|
210
144
|
"description": "A badge is a small status descriptor for UI elements.\n---\n\n\n### **Slots:**\n - _default_ - The content of the badge.\n- **icon** - The icon of the badge.\n\n### **CSS Properties:**\n - **--dds-badge-border-width** - The width of the badge's border. Default is the design system's base border width. _(default: undefined)_\n- **--dds-badge-border-style** - The style of the badge's border. Default is solid. _(default: undefined)_\n- **--dds-badge-border-radius** - The border radius of the badge. Default is the design system's base radius. _(default: undefined)_\n- **--dds-badge-font-weight** - The font weight of the badge text. Default is bold. _(default: undefined)_\n- **--dds-badge-line-height** - The line height of the badge text. Default is 1.2. _(default: undefined)_\n- **--dds-badge-transition** - The transition property for the badge. Default is 'all 0.2s ease-in-out'. _(default: undefined)_\n- **--dds-badge-padding-sm** - The padding of the small badge. Default is the design system's spacing-100 and spacing-200. _(default: undefined)_\n- **--dds-badge-padding-lg** - The padding of the large badge. Default is the design system's spacing-100 and spacing-300. _(default: undefined)_\n- **--dds-badge-font-size-sm** - The font size of the small badge. Default is the design system's font-xs. _(default: undefined)_\n- **--dds-badge-font-size-lg** - The font size of the large badge. Default is the design system's font-sm. _(default: undefined)_\n- **--dds-badge-neutral-border-color** - The border color of the neutral badge. Default is the design system's border-neutral-base. _(default: undefined)_\n- **--dds-badge-neutral-background** - The background color of the neutral badge. Default is the design system's background-neutral-medium. _(default: undefined)_\n- **--dds-badge-neutral-color** - The text color of the neutral badge. Default is the design system's text-neutral-subtle. _(default: undefined)_\n- **--dds-badge-brand-border-color** - The border color of the brand badge. Default is the design system's border-brand-base. _(default: undefined)_\n- **--dds-badge-brand-background** - The background color of the brand badge. Default is the design system's background-brand-medium. _(default: undefined)_\n- **--dds-badge-brand-color** - The text color of the brand badge. Default is the design system's text-brand-subtle. _(default: undefined)_\n- **--dds-badge-info-border-color** - The border color of the info badge. Default is the design system's border-informative-base. _(default: undefined)_\n- **--dds-badge-info-background** - The background color of the info badge. Default is the design system's background-informative-medium. _(default: undefined)_\n- **--dds-badge-info-color** - The text color of the info badge. Default is the design system's text-informative-subtle. _(default: undefined)_\n- **--dds-badge-positive-border-color** - The border color of the positive badge. Default is the design system's border-positive-base. _(default: undefined)_\n- **--dds-badge-positive-background** - The background color of the positive badge. Default is the design system's background-positive-medium. _(default: undefined)_\n- **--dds-badge-positive-color** - The text color of the positive badge. Default is the design system's text-positive-subtle. _(default: undefined)_\n- **--dds-badge-warning-border-color** - The border color of the warning badge. Default is the design system's border-warning-subtle. _(default: undefined)_\n- **--dds-badge-warning-background** - The background color of the warning badge. Default is the design system's background-warning-medium. _(default: undefined)_\n- **--dds-badge-warning-color** - The text color of the warning badge. Default is the design system's text-warning-subtle. _(default: undefined)_\n- **--dds-badge-negative-border-color** - The border color of the negative badge. Default is the design system's border-negative-base. _(default: undefined)_\n- **--dds-badge-negative-background** - The background color of the negative badge. Default is the design system's background-negative-medium. _(default: undefined)_\n- **--dds-badge-negative-color** - The text color of the negative badge. Default is the design system's text-negative-subtle. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main container of the badge.\n- **icon** - The icon of the badge.\n- **content** - The content of the badge.\n- **icon-base** - The base of the icon.",
|
|
@@ -256,52 +190,58 @@
|
|
|
256
190
|
}
|
|
257
191
|
},
|
|
258
192
|
{
|
|
259
|
-
"name": "dap-ds-
|
|
260
|
-
"description": "
|
|
193
|
+
"name": "dap-ds-breadcrumb",
|
|
194
|
+
"description": "A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.\n---\n\n\n### **Slots:**\n - _default_ - The content of the breadcrumb.\n- **separator** - The separator between breadcrumb items. Default is '/'.\n\n### **CSS Properties:**\n - **--dds-breadcrumb-width** - The width of the breadcrumb container. Default is 100%. _(default: undefined)_\n- **--dds-breadcrumb-overflow-x** - The horizontal overflow behavior of the breadcrumb. Default is auto. _(default: undefined)_\n- **--dds-breadcrumb-transition** - The transition property for the breadcrumb. Default is 'all 0.2s ease-in-out'. _(default: undefined)_\n- **--dds-breadcrumb-list-display** - The display property of the breadcrumb list. Default is flex. _(default: undefined)_\n- **--dds-breadcrumb-list-flex-wrap** - The flex-wrap property of the breadcrumb list. Default is nowrap. _(default: undefined)_\n- **--dds-breadcrumb-list-align-items** - The align-items property of the breadcrumb list. Default is center. _(default: undefined)_\n- **--dds-breadcrumb-list-min-width** - The minimum width of the breadcrumb list. Default is max-content. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main breadcrumb container.\n- **separator** - The separator of the breadcrumb.",
|
|
261
195
|
"doc-url": "",
|
|
262
196
|
"attributes": [
|
|
263
197
|
{
|
|
264
|
-
"name": "
|
|
265
|
-
"description": "
|
|
266
|
-
"value": { "type": "
|
|
198
|
+
"name": "inverted",
|
|
199
|
+
"description": "Inverted color style",
|
|
200
|
+
"value": { "type": "boolean", "default": "false" }
|
|
267
201
|
},
|
|
268
202
|
{
|
|
269
203
|
"name": "variant",
|
|
270
|
-
"
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
204
|
+
"value": { "type": "string", "default": "'normal'" }
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "mobile",
|
|
208
|
+
"description": "Mobile version of the breadcrumb",
|
|
209
|
+
"value": { "type": "boolean", "default": "false" }
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "aria-labelledby",
|
|
213
|
+
"description": "The aria-labelledby of the breadcrumb",
|
|
214
|
+
"value": { "type": "string | undefined" }
|
|
275
215
|
}
|
|
276
216
|
],
|
|
277
217
|
"slots": [
|
|
278
|
-
{ "name": "", "description": "The content of the
|
|
279
|
-
],
|
|
280
|
-
"events": [
|
|
218
|
+
{ "name": "", "description": "The content of the breadcrumb." },
|
|
281
219
|
{
|
|
282
|
-
"name": "
|
|
283
|
-
"description": "
|
|
220
|
+
"name": "separator",
|
|
221
|
+
"description": "The separator between breadcrumb items. Default is '/'."
|
|
284
222
|
}
|
|
285
223
|
],
|
|
224
|
+
"events": [],
|
|
286
225
|
"js": {
|
|
287
226
|
"properties": [
|
|
288
227
|
{
|
|
289
|
-
"name": "
|
|
290
|
-
"description": "
|
|
291
|
-
"type": "
|
|
228
|
+
"name": "inverted",
|
|
229
|
+
"description": "Inverted color style",
|
|
230
|
+
"type": "boolean"
|
|
292
231
|
},
|
|
232
|
+
{ "name": "variant", "type": "string" },
|
|
293
233
|
{
|
|
294
|
-
"name": "
|
|
295
|
-
"description": "
|
|
296
|
-
"type": "
|
|
297
|
-
}
|
|
298
|
-
],
|
|
299
|
-
"events": [
|
|
234
|
+
"name": "mobile",
|
|
235
|
+
"description": "Mobile version of the breadcrumb",
|
|
236
|
+
"type": "boolean"
|
|
237
|
+
},
|
|
300
238
|
{
|
|
301
|
-
"name": "
|
|
302
|
-
"description": "
|
|
239
|
+
"name": "ariaLabelledBy",
|
|
240
|
+
"description": "The aria-labelledby of the breadcrumb",
|
|
241
|
+
"type": "string | undefined"
|
|
303
242
|
}
|
|
304
|
-
]
|
|
243
|
+
],
|
|
244
|
+
"events": []
|
|
305
245
|
}
|
|
306
246
|
},
|
|
307
247
|
{
|
|
@@ -386,55 +326,66 @@
|
|
|
386
326
|
}
|
|
387
327
|
},
|
|
388
328
|
{
|
|
389
|
-
"name": "dap-ds-
|
|
390
|
-
"description": "
|
|
329
|
+
"name": "dap-ds-avatar",
|
|
330
|
+
"description": "Avatar component can be used to display user profile images or icons, or illustrations.\n---\n\n\n### **CSS Properties:**\n - **--dds-avatar-border-radius** - The border radius of the avatar. Default is the design system's rounded radius. _(default: undefined)_\n- **--dds-avatar-background-color** - The background color of the avatar. Default is transparent. _(default: undefined)_\n- **--dds-avatar-border-width** - The width of the avatar's border. Default is 0. _(default: undefined)_\n- **--dds-avatar-border-color** - The color of the avatar's border. Default is transparent. _(default: undefined)_\n- **--dds-avatar-border-style** - The style of the avatar's border. Default is solid. _(default: undefined)_\n- **--dds-avatar-transition** - The transition property for the avatar. Default is 'all 0.2s ease-in-out'. _(default: undefined)_\n- **--dds-avatar-size-lg** - The size of the large avatar. Default is the design system's spacing-2000. _(default: undefined)_\n- **--dds-avatar-size-md** - The size of the medium avatar. Default is the design system's spacing-1600. _(default: undefined)_\n- **--dds-avatar-size-sm** - The size of the small avatar. Default is the design system's spacing-1200. _(default: undefined)_\n- **--dds-avatar-size-xs** - The size of the extra small avatar. Default is the design system's spacing-800. _(default: undefined)_\n- **--dds-avatar-size-xxs** - The size of the extra extra small avatar. Default is the design system's spacing-600. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main avatar image container.\n- **img** - The avatar image.",
|
|
391
331
|
"doc-url": "",
|
|
392
332
|
"attributes": [
|
|
393
333
|
{
|
|
394
|
-
"name": "
|
|
395
|
-
"description": "
|
|
396
|
-
"value": {
|
|
334
|
+
"name": "size",
|
|
335
|
+
"description": "The size of the avatar",
|
|
336
|
+
"value": {
|
|
337
|
+
"type": "'lg' | 'md' | 'sm' | 'xs' | 'xxs'",
|
|
338
|
+
"default": "'md'"
|
|
339
|
+
}
|
|
397
340
|
},
|
|
398
341
|
{
|
|
399
|
-
"name": "
|
|
400
|
-
"
|
|
342
|
+
"name": "src",
|
|
343
|
+
"description": "The source of the avatar.",
|
|
344
|
+
"value": { "type": "string" }
|
|
401
345
|
},
|
|
402
346
|
{
|
|
403
|
-
"name": "
|
|
404
|
-
"description": "
|
|
405
|
-
"value": { "type": "
|
|
347
|
+
"name": "alt",
|
|
348
|
+
"description": "The alt text of the avatar.",
|
|
349
|
+
"value": { "type": "string" }
|
|
406
350
|
},
|
|
407
351
|
{
|
|
408
|
-
"name": "
|
|
409
|
-
"description": "The
|
|
410
|
-
"value": { "type": "
|
|
411
|
-
}
|
|
412
|
-
],
|
|
413
|
-
"slots": [
|
|
414
|
-
{ "name": "", "description": "The content of the breadcrumb." },
|
|
352
|
+
"name": "width",
|
|
353
|
+
"description": "The width of the avatar. This will override the size.",
|
|
354
|
+
"value": { "type": "number" }
|
|
355
|
+
},
|
|
415
356
|
{
|
|
416
|
-
"name": "
|
|
417
|
-
"description": "The
|
|
357
|
+
"name": "height",
|
|
358
|
+
"description": "The height of the avatar. This will override the size.",
|
|
359
|
+
"value": { "type": "number" }
|
|
418
360
|
}
|
|
419
361
|
],
|
|
420
362
|
"events": [],
|
|
421
363
|
"js": {
|
|
422
364
|
"properties": [
|
|
423
365
|
{
|
|
424
|
-
"name": "
|
|
425
|
-
"description": "
|
|
426
|
-
"type": "
|
|
366
|
+
"name": "size",
|
|
367
|
+
"description": "The size of the avatar",
|
|
368
|
+
"type": "'lg' | 'md' | 'sm' | 'xs' | 'xxs'"
|
|
427
369
|
},
|
|
428
|
-
{ "name": "variant", "type": "string" },
|
|
429
370
|
{
|
|
430
|
-
"name": "
|
|
431
|
-
"description": "
|
|
432
|
-
"type": "
|
|
371
|
+
"name": "src",
|
|
372
|
+
"description": "The source of the avatar.",
|
|
373
|
+
"type": "string"
|
|
433
374
|
},
|
|
434
375
|
{
|
|
435
|
-
"name": "
|
|
436
|
-
"description": "The
|
|
437
|
-
"type": "string
|
|
376
|
+
"name": "alt",
|
|
377
|
+
"description": "The alt text of the avatar.",
|
|
378
|
+
"type": "string"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "width",
|
|
382
|
+
"description": "The width of the avatar. This will override the size.",
|
|
383
|
+
"type": "number"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "height",
|
|
387
|
+
"description": "The height of the avatar. This will override the size.",
|
|
388
|
+
"type": "number"
|
|
438
389
|
}
|
|
439
390
|
],
|
|
440
391
|
"events": []
|
|
@@ -527,14 +478,63 @@
|
|
|
527
478
|
}
|
|
528
479
|
},
|
|
529
480
|
{
|
|
530
|
-
"name": "dap-ds-
|
|
531
|
-
"description": "A button is a clickable element that can be used to trigger an action.\n---\n\n\n### **Slots:**\n - _default_ - The content of the button.\n\n### **CSS Properties:**\n - **--dds-button-padding-x** - Horizontal padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-padding-y** - Vertical padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-border-radius** - Border radius of the button (default: var(--dds-radius-rounded)) _(default: undefined)_\n- **--dds-button-font-weight** - Font weight of the button (default: 700) _(default: undefined)_\n- **--dds-button-line-height** - Line height of the button (default: var(--dds-font-line-height-large)) _(default: undefined)_\n- **--dds-button-transition** - Transition property of the button (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-button-disabled-opacity** - Opacity of disabled button (default: 0.5) _(default: undefined)_\n- **--dds-button-size-lg** - Size of large button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-size-md** - Size of medium button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-size-sm** - Size of small button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-size-xs** - Size of extra small button (default: var(--dds-spacing-600)) _(default: undefined)_\n- **--dds-button-circle-lg** - Size of large circle button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-circle-md** - Size of medium circle button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-circle-sm** - Size of small circle button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-circle-xs** - Size of extra small circle button (default: var(--dds-spacing-600)) Primary button properties: _(default: undefined)_\n- **--dds-button-primary-color-bg** - Background color of primary button (default: var(--dds-button-primary-background-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-bg-hover** - Background color of primary button on hover (default: var(--dds-button-primary-background-hover)) _(default: undefined)_\n- **--dds-button-primary-color-bg-active** - Background color of primary button when active (default: var(--dds-button-primary-background-pressed)) _(default: undefined)_\n- **--dds-button-primary-color-bg-disabled** - Background color of disabled primary button (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-button-primary-color-text** - Text color of primary button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-text-disabled** - Text color of disabled primary button (default: var(--dds-button-primary-text-disabled)) Primary inverted button properties: _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg** - Background color of primary inverted button (default: var(--dds-button-primary-background-inverted-enabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-hover** - Background color of primary inverted button on hover (default: var(--dds-button-primary-background-inverted-hover)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-active** - Background color of primary inverted button when active (default: var(--dds-button-primary-background-inverted-pressed)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-disabled** - Background color of disabled primary inverted button (default: var(--dds-button-primary-background-inverted-disabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text** - Text color of primary inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text-disabled** - Text color of disabled primary inverted button (default: var(--dds-button-primary-text-inverted-disabled)) Outline button properties: _(default: undefined)_\n- **--dds-button-outline-color-border** - Border color of outline button (default: var(--dds-button-outline-border-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-border-hover** - Border color of outline button on hover (default: var(--dds-button-outline-border-hover)) _(default: undefined)_\n- **--dds-button-outline-color-border-active** - Border color of outline button when active (default: var(--dds-button-outline-border-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-border-disabled** - Border color of disabled outline button (default: var(--dds-button-outline-border-disabled)) _(default: undefined)_\n- **--dds-button-outline-color-text** - Text color of outline button (default: var(--dds-button-outline-text-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-text-hover** - Text color of outline button on hover (default: var(--dds-button-outline-text-hover)) _(default: undefined)_\n- **--dds-button-outline-color-text-active** - Text color of outline button when active (default: var(--dds-button-outline-text-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-text-disabled** - Text color of disabled outline button (default: var(--dds-button-outline-text-disabled)) Outline inverted button properties: _(default: undefined)_\n- **--dds-button-outline-inverted-color-border** - Border color of outline inverted button (default: var(--dds-button-outline-border-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-hover** - Border color of outline inverted button on hover (default: var(--dds-button-outline-border-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-active** - Border color of outline inverted button when active (default: var(--dds-button-outline-border-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-disabled** - Border color of disabled outline inverted button (default: var(--dds-button-outline-border-inverted-disabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text** - Text color of outline inverted button (default: var(--dds-button-outline-text-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-hover** - Text color of outline inverted button on hover (default: var(--dds-button-outline-text-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-active** - Text color of outline inverted button when active (default: var(--dds-button-outline-text-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-disabled** - Text color of disabled outline inverted button (default: var(--dds-button-outline-text-inverted-disabled)) Subtle button properties: _(default: undefined)_\n- **--dds-button-subtle-color-bg** - Background color of subtle button (default: var(--dds-button-subtle-background-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-hover** - Background color of subtle button on hover (default: var(--dds-button-subtle-background-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-active** - Background color of subtle button when active (default: var(--dds-button-subtle-background-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-disabled** - Background color of disabled subtle button (default: var(--dds-button-subtle-background-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border** - Border color of subtle button (default: var(--dds-button-subtle-border-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border-hover** - Border color of subtle button on hover (default: var(--dds-button-subtle-border-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-border-active** - Border color of subtle button when active (default: var(--dds-button-subtle-border-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-border-disabled** - Border color of disabled subtle button (default: var(--dds-button-subtle-border-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text** - Text color of subtle button (default: var(--dds-button-subtle-text-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text-hover** - Text color of subtle button on hover (default: var(--dds-button-subtle-text-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-text-active** - Text color of subtle button when active (default: var(--dds-button-subtle-text-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-text-disabled** - Text color of disabled subtle button (default: var(--dds-button-subtle-text-disabled)) Clean button properties: _(default: undefined)_\n- **--dds-button-clean-color-text** - Text color of clean button (default: var(--dds-text-link-base)) _(default: undefined)_\n- **--dds-button-clean-color-text-hover** - Text color of clean button on hover (default: var(--dds-text-link-hover)) _(default: undefined)_\n- **--dds-button-clean-color-text-active** - Text color of clean button when active (default: var(--dds-text-link-pressed)) _(default: undefined)_\n- **--dds-button-clean-color-text-disabled** - Text color of disabled clean button (default: var(--dds-text-neutral-disabled)) Clean inverted button properties: _(default: undefined)_\n- **--dds-button-clean-inverted-color-text** - Text color of clean inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-hover** - Text color of clean inverted button on hover (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-active** - Text color of clean inverted button when active (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-disabled** - Text color of disabled clean inverted button (default: var(--dds-text-neutral-disabled)) Danger button properties: _(default: undefined)_\n- **--dds-button-danger-color-bg** - Background color of danger button (default: var(--dds-button-primary-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-color-bg-hover** - Background color of danger button on hover (default: var(--dds-button-primary-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-color-bg-active** - Background color of danger button when active (default: var(--dds-button-primary-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-color-text** - Text color of danger button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border** - Border color of danger outline button (default: var(--dds-button-outline-border-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-hover** - Border color of danger outline button on hover (default: var(--dds-button-outline-border-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-active** - Border color of danger outline button when active (default: var(--dds-button-outline-border-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text** - Text color of danger outline button (default: var(--dds-button-outline-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-hover** - Text color of danger outline button on hover (default: var(--dds-button-outline-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-active** - Text color of danger outline button when active (default: var(--dds-button-outline-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg** - Background color of danger subtle button (default: var(--dds-button-subtle-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-hover** - Background color of danger subtle button on hover (default: var(--dds-button-subtle-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-active** - Background color of danger subtle button when active (default: var(--dds-button-subtle-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text** - Text color of danger subtle button (default: var(--dds-button-subtle-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-hover** - Text color of danger subtle button on hover (default: var(--dds-button-subtle-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-active** - Text color of danger subtle button when active (default: var(--dds-button-subtle-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text** - Text color of danger clean button (default: var(--dds-text-negative-subtle)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-hover** - Text color of danger clean button on hover (default: var(--dds-text-negative-base)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-active** - Text color of danger clean button when active (default: var(--dds-text-negative-strong)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main button container.\n- **high-contrast** - The high contrast part of the button.",
|
|
481
|
+
"name": "dap-ds-accordion-group",
|
|
482
|
+
"description": "An accordion group is a collection of accordion components.\n---\n\n\n### **Events:**\n - **dds-change** - Event fired when an accordion is opened or closed.\n\n### **Slots:**\n - _default_ - The content of the accordion group.\n\n### **CSS Properties:**\n - **--dds-accordion-group-spacing** - Controls the gap between accordion items (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-accordion-group-border-color** - Controls the border color (default: var(--dds-border-neutral-subtle)) _(default: undefined)_\n- **--dds-accordion-group-border-width** - Controls the border width (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-accordion-group-border-radius** - Controls the border radius (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-accordion-group-background** - Controls the background color (default: transparent) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main accordion group container.",
|
|
532
483
|
"doc-url": "",
|
|
533
484
|
"attributes": [
|
|
534
485
|
{
|
|
535
|
-
"name": "
|
|
536
|
-
"description": "
|
|
537
|
-
"value": {
|
|
486
|
+
"name": "autoClose",
|
|
487
|
+
"description": "Whether to close other accordions when one is opened.",
|
|
488
|
+
"value": { "type": "string", "default": "'true'" }
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"name": "variant",
|
|
492
|
+
"description": "The variant of the accordion",
|
|
493
|
+
"value": {
|
|
494
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'",
|
|
495
|
+
"default": "'default'"
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
"slots": [
|
|
500
|
+
{ "name": "", "description": "The content of the accordion group." }
|
|
501
|
+
],
|
|
502
|
+
"events": [
|
|
503
|
+
{
|
|
504
|
+
"name": "dds-change",
|
|
505
|
+
"description": "Event fired when an accordion is opened or closed."
|
|
506
|
+
}
|
|
507
|
+
],
|
|
508
|
+
"js": {
|
|
509
|
+
"properties": [
|
|
510
|
+
{
|
|
511
|
+
"name": "autoClose",
|
|
512
|
+
"description": "Whether to close other accordions when one is opened.",
|
|
513
|
+
"type": "string"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "variant",
|
|
517
|
+
"description": "The variant of the accordion",
|
|
518
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
"events": [
|
|
522
|
+
{
|
|
523
|
+
"name": "dds-change",
|
|
524
|
+
"description": "Event fired when an accordion is opened or closed."
|
|
525
|
+
}
|
|
526
|
+
]
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"name": "dap-ds-button",
|
|
531
|
+
"description": "A button is a clickable element that can be used to trigger an action.\n---\n\n\n### **Slots:**\n - _default_ - The content of the button.\n\n### **CSS Properties:**\n - **--dds-button-padding-x** - Horizontal padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-padding-y** - Vertical padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-border-radius** - Border radius of the button (default: var(--dds-radius-rounded)) _(default: undefined)_\n- **--dds-button-font-weight** - Font weight of the button (default: 700) _(default: undefined)_\n- **--dds-button-line-height** - Line height of the button (default: var(--dds-font-line-height-large)) _(default: undefined)_\n- **--dds-button-transition** - Transition property of the button (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-button-disabled-opacity** - Opacity of disabled button (default: 0.5) _(default: undefined)_\n- **--dds-button-size-lg** - Size of large button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-size-md** - Size of medium button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-size-sm** - Size of small button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-size-xs** - Size of extra small button (default: var(--dds-spacing-600)) _(default: undefined)_\n- **--dds-button-circle-lg** - Size of large circle button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-circle-md** - Size of medium circle button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-circle-sm** - Size of small circle button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-circle-xs** - Size of extra small circle button (default: var(--dds-spacing-600)) Primary button properties: _(default: undefined)_\n- **--dds-button-primary-color-bg** - Background color of primary button (default: var(--dds-button-primary-background-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-bg-hover** - Background color of primary button on hover (default: var(--dds-button-primary-background-hover)) _(default: undefined)_\n- **--dds-button-primary-color-bg-active** - Background color of primary button when active (default: var(--dds-button-primary-background-pressed)) _(default: undefined)_\n- **--dds-button-primary-color-bg-disabled** - Background color of disabled primary button (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-button-primary-color-text** - Text color of primary button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-text-disabled** - Text color of disabled primary button (default: var(--dds-button-primary-text-disabled)) Primary inverted button properties: _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg** - Background color of primary inverted button (default: var(--dds-button-primary-background-inverted-enabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-hover** - Background color of primary inverted button on hover (default: var(--dds-button-primary-background-inverted-hover)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-active** - Background color of primary inverted button when active (default: var(--dds-button-primary-background-inverted-pressed)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-disabled** - Background color of disabled primary inverted button (default: var(--dds-button-primary-background-inverted-disabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text** - Text color of primary inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text-disabled** - Text color of disabled primary inverted button (default: var(--dds-button-primary-text-inverted-disabled)) Outline button properties: _(default: undefined)_\n- **--dds-button-outline-color-border** - Border color of outline button (default: var(--dds-button-outline-border-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-border-hover** - Border color of outline button on hover (default: var(--dds-button-outline-border-hover)) _(default: undefined)_\n- **--dds-button-outline-color-border-active** - Border color of outline button when active (default: var(--dds-button-outline-border-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-border-disabled** - Border color of disabled outline button (default: var(--dds-button-outline-border-disabled)) _(default: undefined)_\n- **--dds-button-outline-color-text** - Text color of outline button (default: var(--dds-button-outline-text-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-text-hover** - Text color of outline button on hover (default: var(--dds-button-outline-text-hover)) _(default: undefined)_\n- **--dds-button-outline-color-text-active** - Text color of outline button when active (default: var(--dds-button-outline-text-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-text-disabled** - Text color of disabled outline button (default: var(--dds-button-outline-text-disabled)) Outline inverted button properties: _(default: undefined)_\n- **--dds-button-outline-inverted-color-border** - Border color of outline inverted button (default: var(--dds-button-outline-border-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-hover** - Border color of outline inverted button on hover (default: var(--dds-button-outline-border-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-active** - Border color of outline inverted button when active (default: var(--dds-button-outline-border-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-disabled** - Border color of disabled outline inverted button (default: var(--dds-button-outline-border-inverted-disabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text** - Text color of outline inverted button (default: var(--dds-button-outline-text-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-hover** - Text color of outline inverted button on hover (default: var(--dds-button-outline-text-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-active** - Text color of outline inverted button when active (default: var(--dds-button-outline-text-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-disabled** - Text color of disabled outline inverted button (default: var(--dds-button-outline-text-inverted-disabled)) Subtle button properties: _(default: undefined)_\n- **--dds-button-subtle-color-bg** - Background color of subtle button (default: var(--dds-button-subtle-background-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-hover** - Background color of subtle button on hover (default: var(--dds-button-subtle-background-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-active** - Background color of subtle button when active (default: var(--dds-button-subtle-background-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-disabled** - Background color of disabled subtle button (default: var(--dds-button-subtle-background-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border** - Border color of subtle button (default: var(--dds-button-subtle-border-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border-hover** - Border color of subtle button on hover (default: var(--dds-button-subtle-border-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-border-active** - Border color of subtle button when active (default: var(--dds-button-subtle-border-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-border-disabled** - Border color of disabled subtle button (default: var(--dds-button-subtle-border-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text** - Text color of subtle button (default: var(--dds-button-subtle-text-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text-hover** - Text color of subtle button on hover (default: var(--dds-button-subtle-text-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-text-active** - Text color of subtle button when active (default: var(--dds-button-subtle-text-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-text-disabled** - Text color of disabled subtle button (default: var(--dds-button-subtle-text-disabled)) Clean button properties: _(default: undefined)_\n- **--dds-button-clean-color-text** - Text color of clean button (default: var(--dds-text-link-base)) _(default: undefined)_\n- **--dds-button-clean-color-text-hover** - Text color of clean button on hover (default: var(--dds-text-link-hover)) _(default: undefined)_\n- **--dds-button-clean-color-text-active** - Text color of clean button when active (default: var(--dds-text-link-pressed)) _(default: undefined)_\n- **--dds-button-clean-color-text-disabled** - Text color of disabled clean button (default: var(--dds-text-neutral-disabled)) Clean inverted button properties: _(default: undefined)_\n- **--dds-button-clean-inverted-color-text** - Text color of clean inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-hover** - Text color of clean inverted button on hover (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-active** - Text color of clean inverted button when active (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-disabled** - Text color of disabled clean inverted button (default: var(--dds-text-neutral-disabled)) Danger button properties: _(default: undefined)_\n- **--dds-button-danger-color-bg** - Background color of danger button (default: var(--dds-button-primary-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-color-bg-hover** - Background color of danger button on hover (default: var(--dds-button-primary-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-color-bg-active** - Background color of danger button when active (default: var(--dds-button-primary-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-color-text** - Text color of danger button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border** - Border color of danger outline button (default: var(--dds-button-outline-border-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-hover** - Border color of danger outline button on hover (default: var(--dds-button-outline-border-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-active** - Border color of danger outline button when active (default: var(--dds-button-outline-border-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text** - Text color of danger outline button (default: var(--dds-button-outline-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-hover** - Text color of danger outline button on hover (default: var(--dds-button-outline-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-active** - Text color of danger outline button when active (default: var(--dds-button-outline-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg** - Background color of danger subtle button (default: var(--dds-button-subtle-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-hover** - Background color of danger subtle button on hover (default: var(--dds-button-subtle-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-active** - Background color of danger subtle button when active (default: var(--dds-button-subtle-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text** - Text color of danger subtle button (default: var(--dds-button-subtle-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-hover** - Text color of danger subtle button on hover (default: var(--dds-button-subtle-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-active** - Text color of danger subtle button when active (default: var(--dds-button-subtle-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text** - Text color of danger clean button (default: var(--dds-text-negative-subtle)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-hover** - Text color of danger clean button on hover (default: var(--dds-text-negative-base)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-active** - Text color of danger clean button when active (default: var(--dds-text-negative-strong)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main button container.\n- **high-contrast** - The high contrast part of the button.",
|
|
532
|
+
"doc-url": "",
|
|
533
|
+
"attributes": [
|
|
534
|
+
{
|
|
535
|
+
"name": "variant",
|
|
536
|
+
"description": "The variant of the button",
|
|
537
|
+
"value": {
|
|
538
538
|
"type": "'primary' | 'outline' | 'subtle' | 'subtle-neutral' | 'clean' | 'primary-inverted' | 'outline-inverted' | 'subtle-inverted' | 'clean-inverted'",
|
|
539
539
|
"default": "'primary'"
|
|
540
540
|
}
|
|
@@ -1295,177 +1295,6 @@
|
|
|
1295
1295
|
"events": []
|
|
1296
1296
|
}
|
|
1297
1297
|
},
|
|
1298
|
-
{
|
|
1299
|
-
"name": "dap-ds-checkbox",
|
|
1300
|
-
"description": "A checkbox is a form element that allows the user to select one or more options from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the checkbox is checked or unchecked.\n- **dds-blur** - Emitted when the checkbox loses focus.\n- **dds-focus** - Emitted when the checkbox gains focus.\n- **dds-input** - Emitted when the checkbox receives input.\n\n### **CSS Properties:**\n - **--dds-checkbox-size** - The size of the checkbox. Default is `var(--dds-spacing-500)`. _(default: undefined)_\n- **--dds-checkbox-border-width** - The border width of the checkbox. Default is `var(--dds-border-width-large)`. _(default: undefined)_\n- **--dds-checkbox-border-radius** - The border radius of the checkbox. Default is `var(--dds-radius-small)`. _(default: undefined)_\n- **--dds-checkbox-border-color** - The border color of the checkbox. Default is `var(--dds-border-neutral-base)`. _(default: undefined)_\n- **--dds-checkbox-background-color** - The background color of the checkbox. Default is `transparent`. _(default: undefined)_\n- **--dds-checkbox-icon-color** - The color of the checkbox icon. Default is `var(--dds-button-primary-icon-enabled)`. _(default: undefined)_\n- **--dds-checkbox-hover-border-color** - The border color when hovering over the checkbox. Default is `var(--dds-border-neutral-medium)`. _(default: undefined)_\n- **--dds-checkbox-hover-background-color** - The background color when hovering over the checkbox. Default is `var(--dds-background-neutral-medium)`. _(default: undefined)_\n- **--dds-checkbox-active-border-color** - The border color when the checkbox is active. Default is `var(--dds-border-neutral-strong)`. _(default: undefined)_\n- **--dds-checkbox-active-background-color** - The background color when the checkbox is active. Default is `var(--dds-background-neutral-strong)`. _(default: undefined)_\n- **--dds-checkbox-checked-border-color** - The border color when the checkbox is checked. Default is `var(--dds-background-brand-base-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-background-color** - The background color when the checkbox is checked. Default is `var(--dds-background-brand-base-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-hover-border-color** - The border color when hovering over a checked checkbox. Default is `var(--dds-background-brand-medium-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-hover-background-color** - The background color when hovering over a checked checkbox. Default is `var(--dds-background-brand-medium-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-active-border-color** - The border color when a checked checkbox is active. Default is `var(--dds-background-brand-strong-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-active-background-color** - The background color when a checked checkbox is active. Default is `var(--dds-background-brand-strong-inverted)`. _(default: undefined)_\n- **--dds-checkbox-invalid-border-color** - The border color when the checkbox is invalid. Default is `var(--dds-border-negative-base)`. _(default: undefined)_\n- **--dds-checkbox-invalid-background-color** - The background color when the checkbox is invalid. Default is `var(--dds-background-negative-base)`. _(default: undefined)_\n- **--dds-checkbox-invalid-hover-border-color** - The border color when hovering over an invalid checkbox. Default is `var(--dds-border-negative-medium)`. _(default: undefined)_\n- **--dds-checkbox-invalid-hover-background-color** - The background color when hovering over an invalid checkbox. Default is `var(--dds-background-negative-medium)`. _(default: undefined)_\n- **--dds-checkbox-invalid-active-border-color** - The border color when an invalid checkbox is active. Default is `var(--dds-border-negative-strong)`. _(default: undefined)_\n- **--dds-checkbox-invalid-active-background-color** - The background color when an invalid checkbox is active. Default is `var(--dds-background-negative-strong)`. _(default: undefined)_\n- **--dds-checkbox-disabled-border-color** - The border color when the checkbox is disabled. Default is `var(--dds-button-primary-background-disabled)`. _(default: undefined)_\n- **--dds-checkbox-disabled-background-color** - The background color when the checkbox is disabled. Default is `var(--dds-button-primary-background-disabled)`. _(default: undefined)_\n- **--dds-checkbox-disabled-icon-color** - The color of the checkbox icon when disabled. Default is `var(--dds-button-primary-icon-disabled)`. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main checkbox container.\n- **label** - The label of the checkbox.\n- **input** - The input of the checkbox.\n- **control** - The control of the checkbox.\n- **icon** - The icon of the checkbox.\n- **label-container** - The label container of the checkbox.\n- **description** - The description of the checkbox.",
|
|
1301
|
-
"doc-url": "",
|
|
1302
|
-
"attributes": [
|
|
1303
|
-
{
|
|
1304
|
-
"name": "indeterminate",
|
|
1305
|
-
"description": "Whether the checkbox is indeterminate",
|
|
1306
|
-
"value": { "type": "boolean", "default": "false" }
|
|
1307
|
-
},
|
|
1308
|
-
{
|
|
1309
|
-
"name": "preventDefault",
|
|
1310
|
-
"description": "Whether the checkbox should prevent the default action",
|
|
1311
|
-
"value": { "type": "boolean", "default": "false" }
|
|
1312
|
-
},
|
|
1313
|
-
{
|
|
1314
|
-
"name": "border",
|
|
1315
|
-
"description": "This sets up border around the checkbox, when true.",
|
|
1316
|
-
"value": { "type": "boolean", "default": "false" }
|
|
1317
|
-
},
|
|
1318
|
-
{
|
|
1319
|
-
"name": "type",
|
|
1320
|
-
"description": "The type of the checkbox",
|
|
1321
|
-
"value": {
|
|
1322
|
-
"type": "'normal' | 'background'",
|
|
1323
|
-
"default": "'normal'"
|
|
1324
|
-
}
|
|
1325
|
-
}
|
|
1326
|
-
],
|
|
1327
|
-
"events": [
|
|
1328
|
-
{
|
|
1329
|
-
"name": "dds-change",
|
|
1330
|
-
"description": "Fired when the checkbox is checked or unchecked."
|
|
1331
|
-
},
|
|
1332
|
-
{
|
|
1333
|
-
"name": "dds-blur",
|
|
1334
|
-
"description": "Emitted when the checkbox loses focus."
|
|
1335
|
-
},
|
|
1336
|
-
{
|
|
1337
|
-
"name": "dds-focus",
|
|
1338
|
-
"description": "Emitted when the checkbox gains focus."
|
|
1339
|
-
},
|
|
1340
|
-
{
|
|
1341
|
-
"name": "dds-input",
|
|
1342
|
-
"description": "Emitted when the checkbox receives input."
|
|
1343
|
-
}
|
|
1344
|
-
],
|
|
1345
|
-
"js": {
|
|
1346
|
-
"properties": [
|
|
1347
|
-
{
|
|
1348
|
-
"name": "indeterminate",
|
|
1349
|
-
"description": "Whether the checkbox is indeterminate",
|
|
1350
|
-
"type": "boolean"
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
"name": "preventDefault",
|
|
1354
|
-
"description": "Whether the checkbox should prevent the default action",
|
|
1355
|
-
"type": "boolean"
|
|
1356
|
-
},
|
|
1357
|
-
{
|
|
1358
|
-
"name": "border",
|
|
1359
|
-
"description": "This sets up border around the checkbox, when true.",
|
|
1360
|
-
"type": "boolean"
|
|
1361
|
-
},
|
|
1362
|
-
{
|
|
1363
|
-
"name": "type",
|
|
1364
|
-
"description": "The type of the checkbox",
|
|
1365
|
-
"type": "'normal' | 'background'"
|
|
1366
|
-
},
|
|
1367
|
-
{ "name": "focusElement" },
|
|
1368
|
-
{
|
|
1369
|
-
"name": "name",
|
|
1370
|
-
"description": "The name of the checkbox.",
|
|
1371
|
-
"type": "string"
|
|
1372
|
-
},
|
|
1373
|
-
{
|
|
1374
|
-
"name": "value",
|
|
1375
|
-
"description": "The value of the checkbox.",
|
|
1376
|
-
"type": "string"
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
"name": "checked",
|
|
1380
|
-
"description": "Whether the checkbox is checked.",
|
|
1381
|
-
"type": "boolean"
|
|
1382
|
-
},
|
|
1383
|
-
{
|
|
1384
|
-
"name": "label",
|
|
1385
|
-
"description": "The label of the checkbox.",
|
|
1386
|
-
"type": "string"
|
|
1387
|
-
},
|
|
1388
|
-
{
|
|
1389
|
-
"name": "description",
|
|
1390
|
-
"description": "The description of the checkbox.",
|
|
1391
|
-
"type": "string"
|
|
1392
|
-
},
|
|
1393
|
-
{
|
|
1394
|
-
"name": "disabled",
|
|
1395
|
-
"description": "Whether the checkbox is disabled.",
|
|
1396
|
-
"type": "boolean"
|
|
1397
|
-
},
|
|
1398
|
-
{
|
|
1399
|
-
"name": "required",
|
|
1400
|
-
"description": "Whether the checkbox is required.",
|
|
1401
|
-
"type": "boolean"
|
|
1402
|
-
},
|
|
1403
|
-
{
|
|
1404
|
-
"name": "size",
|
|
1405
|
-
"description": "The size of the checkbox.",
|
|
1406
|
-
"type": "'xs' | sm' | 'md' | 'lg'"
|
|
1407
|
-
},
|
|
1408
|
-
{
|
|
1409
|
-
"name": "labelPlacement",
|
|
1410
|
-
"description": "The placement of the label.",
|
|
1411
|
-
"type": "'left' | 'right'"
|
|
1412
|
-
},
|
|
1413
|
-
{
|
|
1414
|
-
"name": "descriptionPlacement",
|
|
1415
|
-
"description": "The placement of the description.",
|
|
1416
|
-
"type": "'top' | 'bottom'"
|
|
1417
|
-
},
|
|
1418
|
-
{
|
|
1419
|
-
"name": "subtle",
|
|
1420
|
-
"description": "The weight of the label.",
|
|
1421
|
-
"type": "boolean"
|
|
1422
|
-
},
|
|
1423
|
-
{
|
|
1424
|
-
"name": "feedback",
|
|
1425
|
-
"description": "The feedback of the checkbox.",
|
|
1426
|
-
"type": "string"
|
|
1427
|
-
},
|
|
1428
|
-
{
|
|
1429
|
-
"name": "feedbackType",
|
|
1430
|
-
"description": "The feedback type of the checkbox.",
|
|
1431
|
-
"type": "'negative' | 'positive' | 'warning'"
|
|
1432
|
-
},
|
|
1433
|
-
{
|
|
1434
|
-
"name": "invalid",
|
|
1435
|
-
"description": "The invalid state of the checkbox.",
|
|
1436
|
-
"type": "boolean"
|
|
1437
|
-
},
|
|
1438
|
-
{
|
|
1439
|
-
"name": "optional",
|
|
1440
|
-
"description": "The optional state of the checkbox.",
|
|
1441
|
-
"type": "boolean"
|
|
1442
|
-
},
|
|
1443
|
-
{
|
|
1444
|
-
"name": "optionalLabel",
|
|
1445
|
-
"description": "The optional label of the checkbox.",
|
|
1446
|
-
"type": "string"
|
|
1447
|
-
}
|
|
1448
|
-
],
|
|
1449
|
-
"events": [
|
|
1450
|
-
{
|
|
1451
|
-
"name": "dds-change",
|
|
1452
|
-
"description": "Fired when the checkbox is checked or unchecked."
|
|
1453
|
-
},
|
|
1454
|
-
{
|
|
1455
|
-
"name": "dds-blur",
|
|
1456
|
-
"description": "Emitted when the checkbox loses focus."
|
|
1457
|
-
},
|
|
1458
|
-
{
|
|
1459
|
-
"name": "dds-focus",
|
|
1460
|
-
"description": "Emitted when the checkbox gains focus."
|
|
1461
|
-
},
|
|
1462
|
-
{
|
|
1463
|
-
"name": "dds-input",
|
|
1464
|
-
"description": "Emitted when the checkbox receives input."
|
|
1465
|
-
}
|
|
1466
|
-
]
|
|
1467
|
-
}
|
|
1468
|
-
},
|
|
1469
1298
|
{
|
|
1470
1299
|
"name": "dap-ds-combobox",
|
|
1471
1300
|
"description": "A select is a form element that allows the user to select one option from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the select value changes.\n- **dds-blur** - Emitted when the select loses focus.\n- **dds-focus** - Emitted when the select gains focus.\n- **dds-clear** - Emitted when the select is cleared.\n- **dds-search** - Emitted when the manual input value changes.\n- **dds-input** - Emitted when typing happens in the input.\n\n### **Slots:**\n - _default_ - The default slot for the options.\n\n### **CSS Properties:**\n - **--dds-combobox-background** - The background color of the combobox. Defaults to var(--dds-fields-background-default). _(default: undefined)_\n- **--dds-combobox-border-color** - The border color of the combobox. Defaults to var(--dds-border-neutral-base). _(default: undefined)_\n- **--dds-combobox-border-width** - The border width of the combobox. Defaults to var(--dds-border-width-base, 1px). _(default: undefined)_\n- **--dds-combobox-border-radius** - The border radius of the combobox. Defaults to var(--dds-radius-base). _(default: undefined)_\n- **--dds-combobox-text-color** - The text color of the combobox. Defaults to var(--dds-text-neutral-base). _(default: undefined)_\n- **--dds-combobox-placeholder-color** - The placeholder text color. Defaults to var(--dds-text-neutral-subtle). _(default: undefined)_\n- **--dds-combobox-disabled-background** - The background color when disabled. Defaults to var(--dds-background-neutral-stronger). _(default: undefined)_\n- **--dds-combobox-disabled-text** - The text color when disabled. Defaults to var(--dds-text-neutral-disabled). _(default: undefined)_\n- **--dds-combobox-error-border** - The border color for error state. Defaults to var(--dds-border-negative-base). _(default: undefined)_\n- **--dds-combobox-success-border** - The border color for success state. Defaults to var(--dds-border-positive-base). _(default: undefined)_\n- **--dds-combobox-icon-color** - The color of the icons. Defaults to var(--dds-text-icon-neutral-subtle). _(default: undefined)_\n- **--dds-combobox-clear-icon-color** - The color of the clear icon. Defaults to var(--dds-button-subtle-icon-neutral-enabled). _(default: undefined)_\n- **--dds-combobox-popup-background** - The background color of the popup. Defaults to var(--dds-background-neutral-subtle). _(default: undefined)_\n- **--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)_\n- **--dds-combobox-padding-xs** - The padding for extra small size. Defaults to var(--dds-spacing-200). _(default: undefined)_\n- **--dds-combobox-padding-sm** - The padding for small size. Defaults to var(--dds-spacing-200). _(default: undefined)_\n- **--dds-combobox-padding-lg** - The padding for large size. Defaults to var(--dds-spacing-300). _(default: undefined)_\n- **--dds-combobox-padding-horizontal** - The horizontal padding. Defaults to var(--dds-spacing-300). _(default: undefined)_\n- **--dds-combobox-padding-vertical** - The vertical padding. Defaults to var(--dds-spacing-200). _(default: undefined)_\n- **--dds-combobox-gap** - The gap between elements. Defaults to var(--dds-spacing-100). _(default: undefined)_\n- **--dds-combobox-icon-gap** - The gap between icons. Defaults to var(--dds-spacing-200). _(default: undefined)_\n- **--dds-combobox-action-gap** - The gap between action elements. Defaults to var(--dds-spacing-200). _(default: undefined)_\n- **--dds-combobox-action-padding** - The padding for action elements. Defaults to var(--dds-spacing-300). _(default: undefined)_\n- **--dds-combobox-clear-icon-width** - The width of the clear icon. Defaults to var(--dds-spacing-800). _(default: undefined)_\n- **--dds-combobox-dropdown-icon-right** - The right position of the dropdown icon. Defaults to var(--dds-spacing-600). _(default: undefined)_\n- **--dds-combobox-min-width** - The minimum width of the combobox. Defaults to 7.5rem. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main select container.\n- **trigger** - The trigger button of the select.\n- **label** - The label of the select.\n- **description** - The description of the select.\n- **feedback** - The feedback of the select.\n- **tooltip** - The tooltip of the select.\n- **option-list** - The option list of the select.",
|
|
@@ -1652,29 +1481,200 @@
|
|
|
1652
1481
|
}
|
|
1653
1482
|
},
|
|
1654
1483
|
{
|
|
1655
|
-
"name": "dap-ds-
|
|
1656
|
-
"description": "A
|
|
1484
|
+
"name": "dap-ds-checkbox",
|
|
1485
|
+
"description": "A checkbox is a form element that allows the user to select one or more options from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the checkbox is checked or unchecked.\n- **dds-blur** - Emitted when the checkbox loses focus.\n- **dds-focus** - Emitted when the checkbox gains focus.\n- **dds-input** - Emitted when the checkbox receives input.\n\n### **CSS Properties:**\n - **--dds-checkbox-size** - The size of the checkbox. Default is `var(--dds-spacing-500)`. _(default: undefined)_\n- **--dds-checkbox-border-width** - The border width of the checkbox. Default is `var(--dds-border-width-large)`. _(default: undefined)_\n- **--dds-checkbox-border-radius** - The border radius of the checkbox. Default is `var(--dds-radius-small)`. _(default: undefined)_\n- **--dds-checkbox-border-color** - The border color of the checkbox. Default is `var(--dds-border-neutral-base)`. _(default: undefined)_\n- **--dds-checkbox-background-color** - The background color of the checkbox. Default is `transparent`. _(default: undefined)_\n- **--dds-checkbox-icon-color** - The color of the checkbox icon. Default is `var(--dds-button-primary-icon-enabled)`. _(default: undefined)_\n- **--dds-checkbox-hover-border-color** - The border color when hovering over the checkbox. Default is `var(--dds-border-neutral-medium)`. _(default: undefined)_\n- **--dds-checkbox-hover-background-color** - The background color when hovering over the checkbox. Default is `var(--dds-background-neutral-medium)`. _(default: undefined)_\n- **--dds-checkbox-active-border-color** - The border color when the checkbox is active. Default is `var(--dds-border-neutral-strong)`. _(default: undefined)_\n- **--dds-checkbox-active-background-color** - The background color when the checkbox is active. Default is `var(--dds-background-neutral-strong)`. _(default: undefined)_\n- **--dds-checkbox-checked-border-color** - The border color when the checkbox is checked. Default is `var(--dds-background-brand-base-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-background-color** - The background color when the checkbox is checked. Default is `var(--dds-background-brand-base-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-hover-border-color** - The border color when hovering over a checked checkbox. Default is `var(--dds-background-brand-medium-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-hover-background-color** - The background color when hovering over a checked checkbox. Default is `var(--dds-background-brand-medium-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-active-border-color** - The border color when a checked checkbox is active. Default is `var(--dds-background-brand-strong-inverted)`. _(default: undefined)_\n- **--dds-checkbox-checked-active-background-color** - The background color when a checked checkbox is active. Default is `var(--dds-background-brand-strong-inverted)`. _(default: undefined)_\n- **--dds-checkbox-invalid-border-color** - The border color when the checkbox is invalid. Default is `var(--dds-border-negative-base)`. _(default: undefined)_\n- **--dds-checkbox-invalid-background-color** - The background color when the checkbox is invalid. Default is `var(--dds-background-negative-base)`. _(default: undefined)_\n- **--dds-checkbox-invalid-hover-border-color** - The border color when hovering over an invalid checkbox. Default is `var(--dds-border-negative-medium)`. _(default: undefined)_\n- **--dds-checkbox-invalid-hover-background-color** - The background color when hovering over an invalid checkbox. Default is `var(--dds-background-negative-medium)`. _(default: undefined)_\n- **--dds-checkbox-invalid-active-border-color** - The border color when an invalid checkbox is active. Default is `var(--dds-border-negative-strong)`. _(default: undefined)_\n- **--dds-checkbox-invalid-active-background-color** - The background color when an invalid checkbox is active. Default is `var(--dds-background-negative-strong)`. _(default: undefined)_\n- **--dds-checkbox-disabled-border-color** - The border color when the checkbox is disabled. Default is `var(--dds-button-primary-background-disabled)`. _(default: undefined)_\n- **--dds-checkbox-disabled-background-color** - The background color when the checkbox is disabled. Default is `var(--dds-button-primary-background-disabled)`. _(default: undefined)_\n- **--dds-checkbox-disabled-icon-color** - The color of the checkbox icon when disabled. Default is `var(--dds-button-primary-icon-disabled)`. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main checkbox container.\n- **label** - The label of the checkbox.\n- **input** - The input of the checkbox.\n- **control** - The control of the checkbox.\n- **icon** - The icon of the checkbox.\n- **label-container** - The label container of the checkbox.\n- **description** - The description of the checkbox.",
|
|
1657
1486
|
"doc-url": "",
|
|
1658
1487
|
"attributes": [
|
|
1659
1488
|
{
|
|
1660
|
-
"name": "
|
|
1661
|
-
"description": "
|
|
1662
|
-
"value": { "type": "
|
|
1489
|
+
"name": "indeterminate",
|
|
1490
|
+
"description": "Whether the checkbox is indeterminate",
|
|
1491
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1663
1492
|
},
|
|
1664
1493
|
{
|
|
1665
|
-
"name": "
|
|
1666
|
-
"description": "Whether the
|
|
1494
|
+
"name": "preventDefault",
|
|
1495
|
+
"description": "Whether the checkbox should prevent the default action",
|
|
1667
1496
|
"value": { "type": "boolean", "default": "false" }
|
|
1668
|
-
}
|
|
1669
|
-
],
|
|
1670
|
-
"slots": [
|
|
1497
|
+
},
|
|
1671
1498
|
{
|
|
1672
|
-
"name": "",
|
|
1673
|
-
"description": "
|
|
1499
|
+
"name": "border",
|
|
1500
|
+
"description": "This sets up border around the checkbox, when true.",
|
|
1501
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"name": "type",
|
|
1505
|
+
"description": "The type of the checkbox",
|
|
1506
|
+
"value": {
|
|
1507
|
+
"type": "'normal' | 'background'",
|
|
1508
|
+
"default": "'normal'"
|
|
1509
|
+
}
|
|
1674
1510
|
}
|
|
1675
1511
|
],
|
|
1676
|
-
"events": [
|
|
1677
|
-
|
|
1512
|
+
"events": [
|
|
1513
|
+
{
|
|
1514
|
+
"name": "dds-change",
|
|
1515
|
+
"description": "Fired when the checkbox is checked or unchecked."
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"name": "dds-blur",
|
|
1519
|
+
"description": "Emitted when the checkbox loses focus."
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"name": "dds-focus",
|
|
1523
|
+
"description": "Emitted when the checkbox gains focus."
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"name": "dds-input",
|
|
1527
|
+
"description": "Emitted when the checkbox receives input."
|
|
1528
|
+
}
|
|
1529
|
+
],
|
|
1530
|
+
"js": {
|
|
1531
|
+
"properties": [
|
|
1532
|
+
{
|
|
1533
|
+
"name": "indeterminate",
|
|
1534
|
+
"description": "Whether the checkbox is indeterminate",
|
|
1535
|
+
"type": "boolean"
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
"name": "preventDefault",
|
|
1539
|
+
"description": "Whether the checkbox should prevent the default action",
|
|
1540
|
+
"type": "boolean"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"name": "border",
|
|
1544
|
+
"description": "This sets up border around the checkbox, when true.",
|
|
1545
|
+
"type": "boolean"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"name": "type",
|
|
1549
|
+
"description": "The type of the checkbox",
|
|
1550
|
+
"type": "'normal' | 'background'"
|
|
1551
|
+
},
|
|
1552
|
+
{ "name": "focusElement" },
|
|
1553
|
+
{
|
|
1554
|
+
"name": "name",
|
|
1555
|
+
"description": "The name of the checkbox.",
|
|
1556
|
+
"type": "string"
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"name": "value",
|
|
1560
|
+
"description": "The value of the checkbox.",
|
|
1561
|
+
"type": "string"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"name": "checked",
|
|
1565
|
+
"description": "Whether the checkbox is checked.",
|
|
1566
|
+
"type": "boolean"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"name": "label",
|
|
1570
|
+
"description": "The label of the checkbox.",
|
|
1571
|
+
"type": "string"
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"name": "description",
|
|
1575
|
+
"description": "The description of the checkbox.",
|
|
1576
|
+
"type": "string"
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"name": "disabled",
|
|
1580
|
+
"description": "Whether the checkbox is disabled.",
|
|
1581
|
+
"type": "boolean"
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"name": "required",
|
|
1585
|
+
"description": "Whether the checkbox is required.",
|
|
1586
|
+
"type": "boolean"
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"name": "size",
|
|
1590
|
+
"description": "The size of the checkbox.",
|
|
1591
|
+
"type": "'xs' | sm' | 'md' | 'lg'"
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"name": "labelPlacement",
|
|
1595
|
+
"description": "The placement of the label.",
|
|
1596
|
+
"type": "'left' | 'right'"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"name": "descriptionPlacement",
|
|
1600
|
+
"description": "The placement of the description.",
|
|
1601
|
+
"type": "'top' | 'bottom'"
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"name": "subtle",
|
|
1605
|
+
"description": "The weight of the label.",
|
|
1606
|
+
"type": "boolean"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"name": "feedback",
|
|
1610
|
+
"description": "The feedback of the checkbox.",
|
|
1611
|
+
"type": "string"
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"name": "feedbackType",
|
|
1615
|
+
"description": "The feedback type of the checkbox.",
|
|
1616
|
+
"type": "'negative' | 'positive' | 'warning'"
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
"name": "invalid",
|
|
1620
|
+
"description": "The invalid state of the checkbox.",
|
|
1621
|
+
"type": "boolean"
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"name": "optional",
|
|
1625
|
+
"description": "The optional state of the checkbox.",
|
|
1626
|
+
"type": "boolean"
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"name": "optionalLabel",
|
|
1630
|
+
"description": "The optional label of the checkbox.",
|
|
1631
|
+
"type": "string"
|
|
1632
|
+
}
|
|
1633
|
+
],
|
|
1634
|
+
"events": [
|
|
1635
|
+
{
|
|
1636
|
+
"name": "dds-change",
|
|
1637
|
+
"description": "Fired when the checkbox is checked or unchecked."
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"name": "dds-blur",
|
|
1641
|
+
"description": "Emitted when the checkbox loses focus."
|
|
1642
|
+
},
|
|
1643
|
+
{
|
|
1644
|
+
"name": "dds-focus",
|
|
1645
|
+
"description": "Emitted when the checkbox gains focus."
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"name": "dds-input",
|
|
1649
|
+
"description": "Emitted when the checkbox receives input."
|
|
1650
|
+
}
|
|
1651
|
+
]
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"name": "dap-ds-command-group",
|
|
1656
|
+
"description": "A command group is a group of command items.\n---\n\n\n### **Slots:**\n - _default_ - The default slot for the command group.\n\n### **CSS Properties:**\n - **--dds-command-group-gap** - The gap between command group elements. Defaults to var(--dds-spacing-100) _(default: undefined)_\n- **--dds-command-group-margin-bottom** - The bottom margin of the command group. Defaults to var(--dds-spacing-200) _(default: undefined)_\n- **--dds-command-group-border-radius** - The border radius of the command group. Defaults to var(--dds-radius-small) _(default: undefined)_\n- **--dds-command-group-label-font-weight** - The font weight of the command group label. Defaults to var(--dds-font-weight-bold) _(default: undefined)_\n- **--dds-command-group-items-gap** - The gap between command items. Defaults to var(--dds-spacing-100) _(default: undefined)_",
|
|
1657
|
+
"doc-url": "",
|
|
1658
|
+
"attributes": [
|
|
1659
|
+
{
|
|
1660
|
+
"name": "label",
|
|
1661
|
+
"description": "The label of the command group.",
|
|
1662
|
+
"value": { "type": "string | undefined" }
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
"name": "exclusive",
|
|
1666
|
+
"description": "Whether the command group is exclusive, only one item can be selected at a time.",
|
|
1667
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1668
|
+
}
|
|
1669
|
+
],
|
|
1670
|
+
"slots": [
|
|
1671
|
+
{
|
|
1672
|
+
"name": "",
|
|
1673
|
+
"description": "The default slot for the command group."
|
|
1674
|
+
}
|
|
1675
|
+
],
|
|
1676
|
+
"events": [],
|
|
1677
|
+
"js": {
|
|
1678
1678
|
"properties": [
|
|
1679
1679
|
{
|
|
1680
1680
|
"name": "label",
|
|
@@ -7746,148 +7746,400 @@
|
|
|
7746
7746
|
"type": "string"
|
|
7747
7747
|
},
|
|
7748
7748
|
{
|
|
7749
|
-
"name": "subtle",
|
|
7750
|
-
"description": "Whether the input group label is subtle.",
|
|
7751
|
-
"type": "boolean"
|
|
7749
|
+
"name": "subtle",
|
|
7750
|
+
"description": "Whether the input group label is subtle.",
|
|
7751
|
+
"type": "boolean"
|
|
7752
|
+
}
|
|
7753
|
+
],
|
|
7754
|
+
"events": []
|
|
7755
|
+
}
|
|
7756
|
+
},
|
|
7757
|
+
{
|
|
7758
|
+
"name": "dap-ds-radio-group",
|
|
7759
|
+
"description": "A radio group is a form element that allows the user to select one option from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the radio group is checked.\n- **dds-blur** - Emitted when the radio group loses focus.\n- **dds-focus** - Emitted when the radio group gains focus.\n\n### **Slots:**\n - _default_ - The content of the radio group.\n- **feedback-icon** - The custom icon of the feedback.\n\n### **CSS Parts:**\n - **base** - The main radio group container.\n- **label** - The label of the radio group.\n- **tooltip** - The tooltip of the radio group.\n- **container** - The container of the radio group items.",
|
|
7760
|
+
"doc-url": "",
|
|
7761
|
+
"attributes": [
|
|
7762
|
+
{
|
|
7763
|
+
"name": "tooltipPlacement",
|
|
7764
|
+
"description": "The tooltip placement of the radio group.",
|
|
7765
|
+
"value": {
|
|
7766
|
+
"type": "'top' | 'right' | 'bottom' | 'left'",
|
|
7767
|
+
"default": "'bottom'"
|
|
7768
|
+
}
|
|
7769
|
+
},
|
|
7770
|
+
{
|
|
7771
|
+
"name": "optionalLabel",
|
|
7772
|
+
"description": "Text of optional label.",
|
|
7773
|
+
"value": { "type": "string", "default": "''" }
|
|
7774
|
+
}
|
|
7775
|
+
],
|
|
7776
|
+
"slots": [
|
|
7777
|
+
{ "name": "", "description": "The content of the radio group." },
|
|
7778
|
+
{
|
|
7779
|
+
"name": "feedback-icon",
|
|
7780
|
+
"description": "The custom icon of the feedback."
|
|
7781
|
+
}
|
|
7782
|
+
],
|
|
7783
|
+
"events": [
|
|
7784
|
+
{
|
|
7785
|
+
"name": "dds-change",
|
|
7786
|
+
"description": "Fired when the radio group is checked."
|
|
7787
|
+
},
|
|
7788
|
+
{
|
|
7789
|
+
"name": "dds-blur",
|
|
7790
|
+
"description": "Emitted when the radio group loses focus."
|
|
7791
|
+
},
|
|
7792
|
+
{
|
|
7793
|
+
"name": "dds-focus",
|
|
7794
|
+
"description": "Emitted when the radio group gains focus."
|
|
7795
|
+
}
|
|
7796
|
+
],
|
|
7797
|
+
"js": {
|
|
7798
|
+
"properties": [
|
|
7799
|
+
{
|
|
7800
|
+
"name": "tooltipPlacement",
|
|
7801
|
+
"description": "The tooltip placement of the radio group.",
|
|
7802
|
+
"type": "'top' | 'right' | 'bottom' | 'left'"
|
|
7803
|
+
},
|
|
7804
|
+
{ "name": "hiddenInput", "type": "HTMLInputElement" },
|
|
7805
|
+
{
|
|
7806
|
+
"name": "optionalLabel",
|
|
7807
|
+
"description": "Text of optional label.",
|
|
7808
|
+
"type": "string"
|
|
7809
|
+
},
|
|
7810
|
+
{ "name": "validationMessage", "type": "string" },
|
|
7811
|
+
{ "name": "validity" },
|
|
7812
|
+
{
|
|
7813
|
+
"name": "name",
|
|
7814
|
+
"description": "The name of the radio group.",
|
|
7815
|
+
"type": "string"
|
|
7816
|
+
},
|
|
7817
|
+
{
|
|
7818
|
+
"name": "value",
|
|
7819
|
+
"description": "The value of the radio group.",
|
|
7820
|
+
"type": "string"
|
|
7821
|
+
},
|
|
7822
|
+
{
|
|
7823
|
+
"name": "disabled",
|
|
7824
|
+
"description": "Whether the radio group is disabled.",
|
|
7825
|
+
"type": "boolean"
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"name": "required",
|
|
7829
|
+
"description": "Whether the radio group is required.",
|
|
7830
|
+
"type": "boolean"
|
|
7831
|
+
},
|
|
7832
|
+
{
|
|
7833
|
+
"name": "label",
|
|
7834
|
+
"description": "The label of the radio group.",
|
|
7835
|
+
"type": "string"
|
|
7836
|
+
},
|
|
7837
|
+
{
|
|
7838
|
+
"name": "description",
|
|
7839
|
+
"description": "The description of the radio group.",
|
|
7840
|
+
"type": "string"
|
|
7841
|
+
},
|
|
7842
|
+
{
|
|
7843
|
+
"name": "tooltip",
|
|
7844
|
+
"description": "The tooltip of the radio group.",
|
|
7845
|
+
"type": "string"
|
|
7846
|
+
},
|
|
7847
|
+
{
|
|
7848
|
+
"name": "feedback",
|
|
7849
|
+
"description": "The feedback of the radio group.",
|
|
7850
|
+
"type": "string"
|
|
7851
|
+
},
|
|
7852
|
+
{
|
|
7853
|
+
"name": "feedbackType",
|
|
7854
|
+
"description": "The feedback type of the radio group. Can be `negative`, `positive`, or `warning`.",
|
|
7855
|
+
"type": "'negative' | 'positive' | 'warning'"
|
|
7856
|
+
},
|
|
7857
|
+
{
|
|
7858
|
+
"name": "optional",
|
|
7859
|
+
"description": "The optional state of the radio group.",
|
|
7860
|
+
"type": "boolean"
|
|
7861
|
+
},
|
|
7862
|
+
{
|
|
7863
|
+
"name": "subtle",
|
|
7864
|
+
"description": "Font weight of the feedback label. Default is `false` which is bold.",
|
|
7865
|
+
"type": "boolean"
|
|
7866
|
+
},
|
|
7867
|
+
{
|
|
7868
|
+
"name": "size",
|
|
7869
|
+
"description": "The size of the radio group. Default is `sm`.",
|
|
7870
|
+
"type": "'xs' | 'sm' | 'lg'"
|
|
7871
|
+
}
|
|
7872
|
+
],
|
|
7873
|
+
"events": [
|
|
7874
|
+
{
|
|
7875
|
+
"name": "dds-change",
|
|
7876
|
+
"description": "Fired when the radio group is checked."
|
|
7877
|
+
},
|
|
7878
|
+
{
|
|
7879
|
+
"name": "dds-blur",
|
|
7880
|
+
"description": "Emitted when the radio group loses focus."
|
|
7881
|
+
},
|
|
7882
|
+
{
|
|
7883
|
+
"name": "dds-focus",
|
|
7884
|
+
"description": "Emitted when the radio group gains focus."
|
|
7885
|
+
}
|
|
7886
|
+
]
|
|
7887
|
+
}
|
|
7888
|
+
},
|
|
7889
|
+
{
|
|
7890
|
+
"name": "dap-ds-icon-arrow-down-line",
|
|
7891
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
7892
|
+
"doc-url": "",
|
|
7893
|
+
"attributes": [
|
|
7894
|
+
{
|
|
7895
|
+
"name": "size",
|
|
7896
|
+
"description": "(optional) The width and height in pixels",
|
|
7897
|
+
"value": { "type": "number", "default": "24" }
|
|
7898
|
+
},
|
|
7899
|
+
{
|
|
7900
|
+
"name": "selected",
|
|
7901
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
7902
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7903
|
+
},
|
|
7904
|
+
{
|
|
7905
|
+
"name": "decorative",
|
|
7906
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
7907
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7908
|
+
},
|
|
7909
|
+
{
|
|
7910
|
+
"name": "accessibilityTitle",
|
|
7911
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
7912
|
+
"value": { "type": "string | undefined" }
|
|
7913
|
+
},
|
|
7914
|
+
{
|
|
7915
|
+
"name": "focusable",
|
|
7916
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
7917
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7918
|
+
}
|
|
7919
|
+
],
|
|
7920
|
+
"events": [],
|
|
7921
|
+
"js": {
|
|
7922
|
+
"properties": [
|
|
7923
|
+
{
|
|
7924
|
+
"name": "size",
|
|
7925
|
+
"description": "(optional) The width and height in pixels",
|
|
7926
|
+
"type": "number"
|
|
7927
|
+
},
|
|
7928
|
+
{
|
|
7929
|
+
"name": "selected",
|
|
7930
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
7931
|
+
"type": "boolean | undefined"
|
|
7932
|
+
},
|
|
7933
|
+
{
|
|
7934
|
+
"name": "decorative",
|
|
7935
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
7936
|
+
"type": "boolean | undefined"
|
|
7937
|
+
},
|
|
7938
|
+
{
|
|
7939
|
+
"name": "accessibilityTitle",
|
|
7940
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
7941
|
+
"type": "string | undefined"
|
|
7942
|
+
},
|
|
7943
|
+
{
|
|
7944
|
+
"name": "focusable",
|
|
7945
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
7946
|
+
"type": "boolean | undefined"
|
|
7947
|
+
}
|
|
7948
|
+
],
|
|
7949
|
+
"events": []
|
|
7950
|
+
}
|
|
7951
|
+
},
|
|
7952
|
+
{
|
|
7953
|
+
"name": "dap-ds-icon-arrow-down-s-fill",
|
|
7954
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
7955
|
+
"doc-url": "",
|
|
7956
|
+
"attributes": [
|
|
7957
|
+
{
|
|
7958
|
+
"name": "size",
|
|
7959
|
+
"description": "(optional) The width and height in pixels",
|
|
7960
|
+
"value": { "type": "number", "default": "24" }
|
|
7961
|
+
},
|
|
7962
|
+
{
|
|
7963
|
+
"name": "selected",
|
|
7964
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
7965
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7966
|
+
},
|
|
7967
|
+
{
|
|
7968
|
+
"name": "decorative",
|
|
7969
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
7970
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7971
|
+
},
|
|
7972
|
+
{
|
|
7973
|
+
"name": "accessibilityTitle",
|
|
7974
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
7975
|
+
"value": { "type": "string | undefined" }
|
|
7976
|
+
},
|
|
7977
|
+
{
|
|
7978
|
+
"name": "focusable",
|
|
7979
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
7980
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7981
|
+
}
|
|
7982
|
+
],
|
|
7983
|
+
"events": [],
|
|
7984
|
+
"js": {
|
|
7985
|
+
"properties": [
|
|
7986
|
+
{
|
|
7987
|
+
"name": "size",
|
|
7988
|
+
"description": "(optional) The width and height in pixels",
|
|
7989
|
+
"type": "number"
|
|
7990
|
+
},
|
|
7991
|
+
{
|
|
7992
|
+
"name": "selected",
|
|
7993
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
7994
|
+
"type": "boolean | undefined"
|
|
7995
|
+
},
|
|
7996
|
+
{
|
|
7997
|
+
"name": "decorative",
|
|
7998
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
7999
|
+
"type": "boolean | undefined"
|
|
8000
|
+
},
|
|
8001
|
+
{
|
|
8002
|
+
"name": "accessibilityTitle",
|
|
8003
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
8004
|
+
"type": "string | undefined"
|
|
8005
|
+
},
|
|
8006
|
+
{
|
|
8007
|
+
"name": "focusable",
|
|
8008
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
8009
|
+
"type": "boolean | undefined"
|
|
8010
|
+
}
|
|
8011
|
+
],
|
|
8012
|
+
"events": []
|
|
8013
|
+
}
|
|
8014
|
+
},
|
|
8015
|
+
{
|
|
8016
|
+
"name": "dap-ds-icon-arrow-down-s-line",
|
|
8017
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8018
|
+
"doc-url": "",
|
|
8019
|
+
"attributes": [
|
|
8020
|
+
{
|
|
8021
|
+
"name": "size",
|
|
8022
|
+
"description": "(optional) The width and height in pixels",
|
|
8023
|
+
"value": { "type": "number", "default": "24" }
|
|
8024
|
+
},
|
|
8025
|
+
{
|
|
8026
|
+
"name": "selected",
|
|
8027
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
8028
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
8029
|
+
},
|
|
8030
|
+
{
|
|
8031
|
+
"name": "decorative",
|
|
8032
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
8033
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
8034
|
+
},
|
|
8035
|
+
{
|
|
8036
|
+
"name": "accessibilityTitle",
|
|
8037
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
8038
|
+
"value": { "type": "string | undefined" }
|
|
8039
|
+
},
|
|
8040
|
+
{
|
|
8041
|
+
"name": "focusable",
|
|
8042
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
8043
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
8044
|
+
}
|
|
8045
|
+
],
|
|
8046
|
+
"events": [],
|
|
8047
|
+
"js": {
|
|
8048
|
+
"properties": [
|
|
8049
|
+
{
|
|
8050
|
+
"name": "size",
|
|
8051
|
+
"description": "(optional) The width and height in pixels",
|
|
8052
|
+
"type": "number"
|
|
8053
|
+
},
|
|
8054
|
+
{
|
|
8055
|
+
"name": "selected",
|
|
8056
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
8057
|
+
"type": "boolean | undefined"
|
|
8058
|
+
},
|
|
8059
|
+
{
|
|
8060
|
+
"name": "decorative",
|
|
8061
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
8062
|
+
"type": "boolean | undefined"
|
|
8063
|
+
},
|
|
8064
|
+
{
|
|
8065
|
+
"name": "accessibilityTitle",
|
|
8066
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
8067
|
+
"type": "string | undefined"
|
|
8068
|
+
},
|
|
8069
|
+
{
|
|
8070
|
+
"name": "focusable",
|
|
8071
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
8072
|
+
"type": "boolean | undefined"
|
|
7752
8073
|
}
|
|
7753
8074
|
],
|
|
7754
8075
|
"events": []
|
|
7755
8076
|
}
|
|
7756
8077
|
},
|
|
7757
8078
|
{
|
|
7758
|
-
"name": "dap-ds-
|
|
7759
|
-
"description": "
|
|
8079
|
+
"name": "dap-ds-icon-arrow-left-down-line",
|
|
8080
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
7760
8081
|
"doc-url": "",
|
|
7761
8082
|
"attributes": [
|
|
7762
8083
|
{
|
|
7763
|
-
"name": "
|
|
7764
|
-
"description": "The
|
|
7765
|
-
"value": {
|
|
7766
|
-
"type": "'top' | 'right' | 'bottom' | 'left'",
|
|
7767
|
-
"default": "'bottom'"
|
|
7768
|
-
}
|
|
8084
|
+
"name": "size",
|
|
8085
|
+
"description": "(optional) The width and height in pixels",
|
|
8086
|
+
"value": { "type": "number", "default": "24" }
|
|
7769
8087
|
},
|
|
7770
8088
|
{
|
|
7771
|
-
"name": "
|
|
7772
|
-
"description": "
|
|
7773
|
-
"value": { "type": "
|
|
7774
|
-
}
|
|
7775
|
-
],
|
|
7776
|
-
"slots": [
|
|
7777
|
-
{ "name": "", "description": "The content of the radio group." },
|
|
7778
|
-
{
|
|
7779
|
-
"name": "feedback-icon",
|
|
7780
|
-
"description": "The custom icon of the feedback."
|
|
7781
|
-
}
|
|
7782
|
-
],
|
|
7783
|
-
"events": [
|
|
8089
|
+
"name": "selected",
|
|
8090
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
8091
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
8092
|
+
},
|
|
7784
8093
|
{
|
|
7785
|
-
"name": "
|
|
7786
|
-
"description": "
|
|
8094
|
+
"name": "decorative",
|
|
8095
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
8096
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7787
8097
|
},
|
|
7788
8098
|
{
|
|
7789
|
-
"name": "
|
|
7790
|
-
"description": "
|
|
8099
|
+
"name": "accessibilityTitle",
|
|
8100
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
8101
|
+
"value": { "type": "string | undefined" }
|
|
7791
8102
|
},
|
|
7792
8103
|
{
|
|
7793
|
-
"name": "
|
|
7794
|
-
"description": "
|
|
8104
|
+
"name": "focusable",
|
|
8105
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
8106
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
7795
8107
|
}
|
|
7796
8108
|
],
|
|
8109
|
+
"events": [],
|
|
7797
8110
|
"js": {
|
|
7798
8111
|
"properties": [
|
|
7799
8112
|
{
|
|
7800
|
-
"name": "
|
|
7801
|
-
"description": "The
|
|
7802
|
-
"type": "
|
|
7803
|
-
},
|
|
7804
|
-
{ "name": "hiddenInput", "type": "HTMLInputElement" },
|
|
7805
|
-
{
|
|
7806
|
-
"name": "optionalLabel",
|
|
7807
|
-
"description": "Text of optional label.",
|
|
7808
|
-
"type": "string"
|
|
7809
|
-
},
|
|
7810
|
-
{ "name": "validationMessage", "type": "string" },
|
|
7811
|
-
{ "name": "validity" },
|
|
7812
|
-
{
|
|
7813
|
-
"name": "name",
|
|
7814
|
-
"description": "The name of the radio group.",
|
|
7815
|
-
"type": "string"
|
|
7816
|
-
},
|
|
7817
|
-
{
|
|
7818
|
-
"name": "value",
|
|
7819
|
-
"description": "The value of the radio group.",
|
|
7820
|
-
"type": "string"
|
|
7821
|
-
},
|
|
7822
|
-
{
|
|
7823
|
-
"name": "disabled",
|
|
7824
|
-
"description": "Whether the radio group is disabled.",
|
|
7825
|
-
"type": "boolean"
|
|
7826
|
-
},
|
|
7827
|
-
{
|
|
7828
|
-
"name": "required",
|
|
7829
|
-
"description": "Whether the radio group is required.",
|
|
7830
|
-
"type": "boolean"
|
|
7831
|
-
},
|
|
7832
|
-
{
|
|
7833
|
-
"name": "label",
|
|
7834
|
-
"description": "The label of the radio group.",
|
|
7835
|
-
"type": "string"
|
|
7836
|
-
},
|
|
7837
|
-
{
|
|
7838
|
-
"name": "description",
|
|
7839
|
-
"description": "The description of the radio group.",
|
|
7840
|
-
"type": "string"
|
|
7841
|
-
},
|
|
7842
|
-
{
|
|
7843
|
-
"name": "tooltip",
|
|
7844
|
-
"description": "The tooltip of the radio group.",
|
|
7845
|
-
"type": "string"
|
|
7846
|
-
},
|
|
7847
|
-
{
|
|
7848
|
-
"name": "feedback",
|
|
7849
|
-
"description": "The feedback of the radio group.",
|
|
7850
|
-
"type": "string"
|
|
8113
|
+
"name": "size",
|
|
8114
|
+
"description": "(optional) The width and height in pixels",
|
|
8115
|
+
"type": "number"
|
|
7851
8116
|
},
|
|
7852
8117
|
{
|
|
7853
|
-
"name": "
|
|
7854
|
-
"description": "
|
|
7855
|
-
"type": "
|
|
8118
|
+
"name": "selected",
|
|
8119
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
8120
|
+
"type": "boolean | undefined"
|
|
7856
8121
|
},
|
|
7857
8122
|
{
|
|
7858
|
-
"name": "
|
|
7859
|
-
"description": "
|
|
7860
|
-
"type": "boolean"
|
|
8123
|
+
"name": "decorative",
|
|
8124
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
8125
|
+
"type": "boolean | undefined"
|
|
7861
8126
|
},
|
|
7862
8127
|
{
|
|
7863
|
-
"name": "
|
|
7864
|
-
"description": "
|
|
7865
|
-
"type": "
|
|
8128
|
+
"name": "accessibilityTitle",
|
|
8129
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
8130
|
+
"type": "string | undefined"
|
|
7866
8131
|
},
|
|
7867
8132
|
{
|
|
7868
|
-
"name": "
|
|
7869
|
-
"description": "
|
|
7870
|
-
"type": "
|
|
8133
|
+
"name": "focusable",
|
|
8134
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
8135
|
+
"type": "boolean | undefined"
|
|
7871
8136
|
}
|
|
7872
8137
|
],
|
|
7873
|
-
"events": [
|
|
7874
|
-
{
|
|
7875
|
-
"name": "dds-change",
|
|
7876
|
-
"description": "Fired when the radio group is checked."
|
|
7877
|
-
},
|
|
7878
|
-
{
|
|
7879
|
-
"name": "dds-blur",
|
|
7880
|
-
"description": "Emitted when the radio group loses focus."
|
|
7881
|
-
},
|
|
7882
|
-
{
|
|
7883
|
-
"name": "dds-focus",
|
|
7884
|
-
"description": "Emitted when the radio group gains focus."
|
|
7885
|
-
}
|
|
7886
|
-
]
|
|
8138
|
+
"events": []
|
|
7887
8139
|
}
|
|
7888
8140
|
},
|
|
7889
8141
|
{
|
|
7890
|
-
"name": "dap-ds-icon-arrow-
|
|
8142
|
+
"name": "dap-ds-icon-arrow-left-l-line",
|
|
7891
8143
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
7892
8144
|
"doc-url": "",
|
|
7893
8145
|
"attributes": [
|
|
@@ -7950,7 +8202,7 @@
|
|
|
7950
8202
|
}
|
|
7951
8203
|
},
|
|
7952
8204
|
{
|
|
7953
|
-
"name": "dap-ds-icon-arrow-
|
|
8205
|
+
"name": "dap-ds-icon-arrow-left-line",
|
|
7954
8206
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
7955
8207
|
"doc-url": "",
|
|
7956
8208
|
"attributes": [
|
|
@@ -8013,7 +8265,7 @@
|
|
|
8013
8265
|
}
|
|
8014
8266
|
},
|
|
8015
8267
|
{
|
|
8016
|
-
"name": "dap-ds-icon-arrow-
|
|
8268
|
+
"name": "dap-ds-icon-arrow-left-s-fill",
|
|
8017
8269
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8018
8270
|
"doc-url": "",
|
|
8019
8271
|
"attributes": [
|
|
@@ -8076,7 +8328,7 @@
|
|
|
8076
8328
|
}
|
|
8077
8329
|
},
|
|
8078
8330
|
{
|
|
8079
|
-
"name": "dap-ds-icon-arrow-left-
|
|
8331
|
+
"name": "dap-ds-icon-arrow-left-s-line",
|
|
8080
8332
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8081
8333
|
"doc-url": "",
|
|
8082
8334
|
"attributes": [
|
|
@@ -8139,7 +8391,7 @@
|
|
|
8139
8391
|
}
|
|
8140
8392
|
},
|
|
8141
8393
|
{
|
|
8142
|
-
"name": "dap-ds-icon-arrow-left-
|
|
8394
|
+
"name": "dap-ds-icon-arrow-left-up-line",
|
|
8143
8395
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8144
8396
|
"doc-url": "",
|
|
8145
8397
|
"attributes": [
|
|
@@ -8202,7 +8454,7 @@
|
|
|
8202
8454
|
}
|
|
8203
8455
|
},
|
|
8204
8456
|
{
|
|
8205
|
-
"name": "dap-ds-icon-arrow-
|
|
8457
|
+
"name": "dap-ds-icon-arrow-right-down-line",
|
|
8206
8458
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8207
8459
|
"doc-url": "",
|
|
8208
8460
|
"attributes": [
|
|
@@ -8265,7 +8517,7 @@
|
|
|
8265
8517
|
}
|
|
8266
8518
|
},
|
|
8267
8519
|
{
|
|
8268
|
-
"name": "dap-ds-icon-arrow-
|
|
8520
|
+
"name": "dap-ds-icon-arrow-right-l-line",
|
|
8269
8521
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8270
8522
|
"doc-url": "",
|
|
8271
8523
|
"attributes": [
|
|
@@ -8328,7 +8580,7 @@
|
|
|
8328
8580
|
}
|
|
8329
8581
|
},
|
|
8330
8582
|
{
|
|
8331
|
-
"name": "dap-ds-icon-arrow-
|
|
8583
|
+
"name": "dap-ds-icon-arrow-right-line",
|
|
8332
8584
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8333
8585
|
"doc-url": "",
|
|
8334
8586
|
"attributes": [
|
|
@@ -8391,7 +8643,7 @@
|
|
|
8391
8643
|
}
|
|
8392
8644
|
},
|
|
8393
8645
|
{
|
|
8394
|
-
"name": "dap-ds-icon-arrow-
|
|
8646
|
+
"name": "dap-ds-icon-arrow-right-s-fill",
|
|
8395
8647
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8396
8648
|
"doc-url": "",
|
|
8397
8649
|
"attributes": [
|
|
@@ -8454,7 +8706,7 @@
|
|
|
8454
8706
|
}
|
|
8455
8707
|
},
|
|
8456
8708
|
{
|
|
8457
|
-
"name": "dap-ds-icon-arrow-right-
|
|
8709
|
+
"name": "dap-ds-icon-arrow-right-s-line",
|
|
8458
8710
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8459
8711
|
"doc-url": "",
|
|
8460
8712
|
"attributes": [
|
|
@@ -8517,7 +8769,7 @@
|
|
|
8517
8769
|
}
|
|
8518
8770
|
},
|
|
8519
8771
|
{
|
|
8520
|
-
"name": "dap-ds-icon-arrow-right-
|
|
8772
|
+
"name": "dap-ds-icon-arrow-right-up-line",
|
|
8521
8773
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8522
8774
|
"doc-url": "",
|
|
8523
8775
|
"attributes": [
|
|
@@ -8580,7 +8832,7 @@
|
|
|
8580
8832
|
}
|
|
8581
8833
|
},
|
|
8582
8834
|
{
|
|
8583
|
-
"name": "dap-ds-icon-arrow-
|
|
8835
|
+
"name": "dap-ds-icon-arrow-up-line",
|
|
8584
8836
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8585
8837
|
"doc-url": "",
|
|
8586
8838
|
"attributes": [
|
|
@@ -8643,7 +8895,7 @@
|
|
|
8643
8895
|
}
|
|
8644
8896
|
},
|
|
8645
8897
|
{
|
|
8646
|
-
"name": "dap-ds-icon-arrow-
|
|
8898
|
+
"name": "dap-ds-icon-arrow-up-s-fill",
|
|
8647
8899
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8648
8900
|
"doc-url": "",
|
|
8649
8901
|
"attributes": [
|
|
@@ -8706,7 +8958,7 @@
|
|
|
8706
8958
|
}
|
|
8707
8959
|
},
|
|
8708
8960
|
{
|
|
8709
|
-
"name": "dap-ds-icon-arrow-
|
|
8961
|
+
"name": "dap-ds-icon-arrow-up-s-line",
|
|
8710
8962
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8711
8963
|
"doc-url": "",
|
|
8712
8964
|
"attributes": [
|
|
@@ -8769,7 +9021,7 @@
|
|
|
8769
9021
|
}
|
|
8770
9022
|
},
|
|
8771
9023
|
{
|
|
8772
|
-
"name": "dap-ds-icon-
|
|
9024
|
+
"name": "dap-ds-icon-expand-up-down-fill",
|
|
8773
9025
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8774
9026
|
"doc-url": "",
|
|
8775
9027
|
"attributes": [
|
|
@@ -8832,7 +9084,7 @@
|
|
|
8832
9084
|
}
|
|
8833
9085
|
},
|
|
8834
9086
|
{
|
|
8835
|
-
"name": "dap-ds-icon-
|
|
9087
|
+
"name": "dap-ds-icon-home-6-line",
|
|
8836
9088
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8837
9089
|
"doc-url": "",
|
|
8838
9090
|
"attributes": [
|
|
@@ -8895,7 +9147,7 @@
|
|
|
8895
9147
|
}
|
|
8896
9148
|
},
|
|
8897
9149
|
{
|
|
8898
|
-
"name": "dap-ds-icon-
|
|
9150
|
+
"name": "dap-ds-icon-calendar-line",
|
|
8899
9151
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8900
9152
|
"doc-url": "",
|
|
8901
9153
|
"attributes": [
|
|
@@ -8958,7 +9210,7 @@
|
|
|
8958
9210
|
}
|
|
8959
9211
|
},
|
|
8960
9212
|
{
|
|
8961
|
-
"name": "dap-ds-icon-
|
|
9213
|
+
"name": "dap-ds-icon-clipboard-line",
|
|
8962
9214
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
8963
9215
|
"doc-url": "",
|
|
8964
9216
|
"attributes": [
|
|
@@ -9021,7 +9273,7 @@
|
|
|
9021
9273
|
}
|
|
9022
9274
|
},
|
|
9023
9275
|
{
|
|
9024
|
-
"name": "dap-ds-icon-
|
|
9276
|
+
"name": "dap-ds-icon-file-copy-line",
|
|
9025
9277
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9026
9278
|
"doc-url": "",
|
|
9027
9279
|
"attributes": [
|
|
@@ -9084,7 +9336,7 @@
|
|
|
9084
9336
|
}
|
|
9085
9337
|
},
|
|
9086
9338
|
{
|
|
9087
|
-
"name": "dap-ds-icon-
|
|
9339
|
+
"name": "dap-ds-icon-cookie-line",
|
|
9088
9340
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9089
9341
|
"doc-url": "",
|
|
9090
9342
|
"attributes": [
|
|
@@ -9147,7 +9399,7 @@
|
|
|
9147
9399
|
}
|
|
9148
9400
|
},
|
|
9149
9401
|
{
|
|
9150
|
-
"name": "dap-ds-icon-
|
|
9402
|
+
"name": "dap-ds-icon-add-line",
|
|
9151
9403
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9152
9404
|
"doc-url": "",
|
|
9153
9405
|
"attributes": [
|
|
@@ -9210,7 +9462,7 @@
|
|
|
9210
9462
|
}
|
|
9211
9463
|
},
|
|
9212
9464
|
{
|
|
9213
|
-
"name": "dap-ds-icon-
|
|
9465
|
+
"name": "dap-ds-icon-alert-fill",
|
|
9214
9466
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9215
9467
|
"doc-url": "",
|
|
9216
9468
|
"attributes": [
|
|
@@ -9273,7 +9525,7 @@
|
|
|
9273
9525
|
}
|
|
9274
9526
|
},
|
|
9275
9527
|
{
|
|
9276
|
-
"name": "dap-ds-icon-
|
|
9528
|
+
"name": "dap-ds-icon-alert-line",
|
|
9277
9529
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9278
9530
|
"doc-url": "",
|
|
9279
9531
|
"attributes": [
|
|
@@ -9336,7 +9588,7 @@
|
|
|
9336
9588
|
}
|
|
9337
9589
|
},
|
|
9338
9590
|
{
|
|
9339
|
-
"name": "dap-ds-icon-
|
|
9591
|
+
"name": "dap-ds-icon-check-line",
|
|
9340
9592
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9341
9593
|
"doc-url": "",
|
|
9342
9594
|
"attributes": [
|
|
@@ -9399,7 +9651,7 @@
|
|
|
9399
9651
|
}
|
|
9400
9652
|
},
|
|
9401
9653
|
{
|
|
9402
|
-
"name": "dap-ds-icon-
|
|
9654
|
+
"name": "dap-ds-icon-check-line2",
|
|
9403
9655
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9404
9656
|
"doc-url": "",
|
|
9405
9657
|
"attributes": [
|
|
@@ -9462,7 +9714,7 @@
|
|
|
9462
9714
|
}
|
|
9463
9715
|
},
|
|
9464
9716
|
{
|
|
9465
|
-
"name": "dap-ds-icon-
|
|
9717
|
+
"name": "dap-ds-icon-checkbox-blank-circle-fill",
|
|
9466
9718
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9467
9719
|
"doc-url": "",
|
|
9468
9720
|
"attributes": [
|
|
@@ -9525,7 +9777,7 @@
|
|
|
9525
9777
|
}
|
|
9526
9778
|
},
|
|
9527
9779
|
{
|
|
9528
|
-
"name": "dap-ds-icon-
|
|
9780
|
+
"name": "dap-ds-icon-checkbox-blank-circle-fill-check",
|
|
9529
9781
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9530
9782
|
"doc-url": "",
|
|
9531
9783
|
"attributes": [
|
|
@@ -9588,7 +9840,7 @@
|
|
|
9588
9840
|
}
|
|
9589
9841
|
},
|
|
9590
9842
|
{
|
|
9591
|
-
"name": "dap-ds-icon-
|
|
9843
|
+
"name": "dap-ds-icon-checkbox-blank-circle-line",
|
|
9592
9844
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9593
9845
|
"doc-url": "",
|
|
9594
9846
|
"attributes": [
|
|
@@ -9651,7 +9903,7 @@
|
|
|
9651
9903
|
}
|
|
9652
9904
|
},
|
|
9653
9905
|
{
|
|
9654
|
-
"name": "dap-ds-icon-
|
|
9906
|
+
"name": "dap-ds-icon-checkbox-circle-fill",
|
|
9655
9907
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9656
9908
|
"doc-url": "",
|
|
9657
9909
|
"attributes": [
|
|
@@ -9714,7 +9966,7 @@
|
|
|
9714
9966
|
}
|
|
9715
9967
|
},
|
|
9716
9968
|
{
|
|
9717
|
-
"name": "dap-ds-icon-checkbox-
|
|
9969
|
+
"name": "dap-ds-icon-checkbox-circle-line",
|
|
9718
9970
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9719
9971
|
"doc-url": "",
|
|
9720
9972
|
"attributes": [
|
|
@@ -9777,7 +10029,7 @@
|
|
|
9777
10029
|
}
|
|
9778
10030
|
},
|
|
9779
10031
|
{
|
|
9780
|
-
"name": "dap-ds-icon-
|
|
10032
|
+
"name": "dap-ds-icon-close-circle-fill",
|
|
9781
10033
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9782
10034
|
"doc-url": "",
|
|
9783
10035
|
"attributes": [
|
|
@@ -9840,7 +10092,7 @@
|
|
|
9840
10092
|
}
|
|
9841
10093
|
},
|
|
9842
10094
|
{
|
|
9843
|
-
"name": "dap-ds-icon-
|
|
10095
|
+
"name": "dap-ds-icon-close-circle-line",
|
|
9844
10096
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9845
10097
|
"doc-url": "",
|
|
9846
10098
|
"attributes": [
|
|
@@ -9903,7 +10155,7 @@
|
|
|
9903
10155
|
}
|
|
9904
10156
|
},
|
|
9905
10157
|
{
|
|
9906
|
-
"name": "dap-ds-icon-
|
|
10158
|
+
"name": "dap-ds-icon-close-fill",
|
|
9907
10159
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9908
10160
|
"doc-url": "",
|
|
9909
10161
|
"attributes": [
|
|
@@ -9966,7 +10218,7 @@
|
|
|
9966
10218
|
}
|
|
9967
10219
|
},
|
|
9968
10220
|
{
|
|
9969
|
-
"name": "dap-ds-icon-
|
|
10221
|
+
"name": "dap-ds-icon-close-line",
|
|
9970
10222
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
9971
10223
|
"doc-url": "",
|
|
9972
10224
|
"attributes": [
|
|
@@ -10029,7 +10281,7 @@
|
|
|
10029
10281
|
}
|
|
10030
10282
|
},
|
|
10031
10283
|
{
|
|
10032
|
-
"name": "dap-ds-icon-
|
|
10284
|
+
"name": "dap-ds-icon-download-line",
|
|
10033
10285
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10034
10286
|
"doc-url": "",
|
|
10035
10287
|
"attributes": [
|
|
@@ -10092,7 +10344,7 @@
|
|
|
10092
10344
|
}
|
|
10093
10345
|
},
|
|
10094
10346
|
{
|
|
10095
|
-
"name": "dap-ds-icon-
|
|
10347
|
+
"name": "dap-ds-icon-error-warning-fill",
|
|
10096
10348
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10097
10349
|
"doc-url": "",
|
|
10098
10350
|
"attributes": [
|
|
@@ -10155,7 +10407,7 @@
|
|
|
10155
10407
|
}
|
|
10156
10408
|
},
|
|
10157
10409
|
{
|
|
10158
|
-
"name": "dap-ds-icon-
|
|
10410
|
+
"name": "dap-ds-icon-error-warning-line",
|
|
10159
10411
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10160
10412
|
"doc-url": "",
|
|
10161
10413
|
"attributes": [
|
|
@@ -10218,7 +10470,7 @@
|
|
|
10218
10470
|
}
|
|
10219
10471
|
},
|
|
10220
10472
|
{
|
|
10221
|
-
"name": "dap-ds-icon-
|
|
10473
|
+
"name": "dap-ds-icon-external-link-line",
|
|
10222
10474
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10223
10475
|
"doc-url": "",
|
|
10224
10476
|
"attributes": [
|
|
@@ -10281,7 +10533,7 @@
|
|
|
10281
10533
|
}
|
|
10282
10534
|
},
|
|
10283
10535
|
{
|
|
10284
|
-
"name": "dap-ds-icon-
|
|
10536
|
+
"name": "dap-ds-icon-eye-line",
|
|
10285
10537
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10286
10538
|
"doc-url": "",
|
|
10287
10539
|
"attributes": [
|
|
@@ -10344,7 +10596,7 @@
|
|
|
10344
10596
|
}
|
|
10345
10597
|
},
|
|
10346
10598
|
{
|
|
10347
|
-
"name": "dap-ds-icon-
|
|
10599
|
+
"name": "dap-ds-icon-eye-off-line",
|
|
10348
10600
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10349
10601
|
"doc-url": "",
|
|
10350
10602
|
"attributes": [
|
|
@@ -10407,7 +10659,7 @@
|
|
|
10407
10659
|
}
|
|
10408
10660
|
},
|
|
10409
10661
|
{
|
|
10410
|
-
"name": "dap-ds-icon-
|
|
10662
|
+
"name": "dap-ds-icon-forbid-fill",
|
|
10411
10663
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10412
10664
|
"doc-url": "",
|
|
10413
10665
|
"attributes": [
|
|
@@ -10470,7 +10722,7 @@
|
|
|
10470
10722
|
}
|
|
10471
10723
|
},
|
|
10472
10724
|
{
|
|
10473
|
-
"name": "dap-ds-icon-
|
|
10725
|
+
"name": "dap-ds-icon-information-2-fill",
|
|
10474
10726
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10475
10727
|
"doc-url": "",
|
|
10476
10728
|
"attributes": [
|
|
@@ -10533,7 +10785,7 @@
|
|
|
10533
10785
|
}
|
|
10534
10786
|
},
|
|
10535
10787
|
{
|
|
10536
|
-
"name": "dap-ds-icon-
|
|
10788
|
+
"name": "dap-ds-icon-information-fill",
|
|
10537
10789
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10538
10790
|
"doc-url": "",
|
|
10539
10791
|
"attributes": [
|
|
@@ -10596,7 +10848,7 @@
|
|
|
10596
10848
|
}
|
|
10597
10849
|
},
|
|
10598
10850
|
{
|
|
10599
|
-
"name": "dap-ds-icon-
|
|
10851
|
+
"name": "dap-ds-icon-information-line",
|
|
10600
10852
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10601
10853
|
"doc-url": "",
|
|
10602
10854
|
"attributes": [
|
|
@@ -10659,7 +10911,7 @@
|
|
|
10659
10911
|
}
|
|
10660
10912
|
},
|
|
10661
10913
|
{
|
|
10662
|
-
"name": "dap-ds-icon-
|
|
10914
|
+
"name": "dap-ds-icon-lightbulb-fill",
|
|
10663
10915
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10664
10916
|
"doc-url": "",
|
|
10665
10917
|
"attributes": [
|
|
@@ -10722,7 +10974,7 @@
|
|
|
10722
10974
|
}
|
|
10723
10975
|
},
|
|
10724
10976
|
{
|
|
10725
|
-
"name": "dap-ds-icon-
|
|
10977
|
+
"name": "dap-ds-icon-loading-spinner",
|
|
10726
10978
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10727
10979
|
"doc-url": "",
|
|
10728
10980
|
"attributes": [
|
|
@@ -10785,7 +11037,7 @@
|
|
|
10785
11037
|
}
|
|
10786
11038
|
},
|
|
10787
11039
|
{
|
|
10788
|
-
"name": "dap-ds-icon-
|
|
11040
|
+
"name": "dap-ds-icon-lock-fill",
|
|
10789
11041
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10790
11042
|
"doc-url": "",
|
|
10791
11043
|
"attributes": [
|
|
@@ -10848,7 +11100,7 @@
|
|
|
10848
11100
|
}
|
|
10849
11101
|
},
|
|
10850
11102
|
{
|
|
10851
|
-
"name": "dap-ds-icon-
|
|
11103
|
+
"name": "dap-ds-icon-lock-line",
|
|
10852
11104
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10853
11105
|
"doc-url": "",
|
|
10854
11106
|
"attributes": [
|
|
@@ -10911,7 +11163,7 @@
|
|
|
10911
11163
|
}
|
|
10912
11164
|
},
|
|
10913
11165
|
{
|
|
10914
|
-
"name": "dap-ds-icon-
|
|
11166
|
+
"name": "dap-ds-icon-menu-line",
|
|
10915
11167
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10916
11168
|
"doc-url": "",
|
|
10917
11169
|
"attributes": [
|
|
@@ -10974,7 +11226,7 @@
|
|
|
10974
11226
|
}
|
|
10975
11227
|
},
|
|
10976
11228
|
{
|
|
10977
|
-
"name": "dap-ds-icon-
|
|
11229
|
+
"name": "dap-ds-icon-menu-line-s",
|
|
10978
11230
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
10979
11231
|
"doc-url": "",
|
|
10980
11232
|
"attributes": [
|
|
@@ -11037,7 +11289,7 @@
|
|
|
11037
11289
|
}
|
|
11038
11290
|
},
|
|
11039
11291
|
{
|
|
11040
|
-
"name": "dap-ds-icon-
|
|
11292
|
+
"name": "dap-ds-icon-search-line",
|
|
11041
11293
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11042
11294
|
"doc-url": "",
|
|
11043
11295
|
"attributes": [
|
|
@@ -11100,7 +11352,7 @@
|
|
|
11100
11352
|
}
|
|
11101
11353
|
},
|
|
11102
11354
|
{
|
|
11103
|
-
"name": "dap-ds-icon-
|
|
11355
|
+
"name": "dap-ds-icon-shield-check-fill",
|
|
11104
11356
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11105
11357
|
"doc-url": "",
|
|
11106
11358
|
"attributes": [
|
|
@@ -11163,7 +11415,7 @@
|
|
|
11163
11415
|
}
|
|
11164
11416
|
},
|
|
11165
11417
|
{
|
|
11166
|
-
"name": "dap-ds-icon-
|
|
11418
|
+
"name": "dap-ds-icon-shield-check-line",
|
|
11167
11419
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11168
11420
|
"doc-url": "",
|
|
11169
11421
|
"attributes": [
|
|
@@ -11289,7 +11541,7 @@
|
|
|
11289
11541
|
}
|
|
11290
11542
|
},
|
|
11291
11543
|
{
|
|
11292
|
-
"name": "dap-ds-icon-subtract-
|
|
11544
|
+
"name": "dap-ds-icon-subtract-line2",
|
|
11293
11545
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11294
11546
|
"doc-url": "",
|
|
11295
11547
|
"attributes": [
|
|
@@ -11352,7 +11604,7 @@
|
|
|
11352
11604
|
}
|
|
11353
11605
|
},
|
|
11354
11606
|
{
|
|
11355
|
-
"name": "dap-ds-icon-subtract-
|
|
11607
|
+
"name": "dap-ds-icon-subtract-line",
|
|
11356
11608
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11357
11609
|
"doc-url": "",
|
|
11358
11610
|
"attributes": [
|