dap-design-system 0.35.11 → 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 +169 -0
- package/dist/dds.js +3274 -3054
- 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 +231 -129
- package/dist/manifest/vscode.html-custom-data.json +239 -91
- package/dist/manifest/web-types.json +415 -153
- package/dist/react-types.ts +10 -6
- package/dist/react.d.ts +391 -146
- package/dist/react.js +465 -435
- 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,72 +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
142
|
{
|
|
182
143
|
"name": "dap-ds-badge",
|
|
183
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.",
|
|
@@ -229,79 +190,58 @@
|
|
|
229
190
|
}
|
|
230
191
|
},
|
|
231
192
|
{
|
|
232
|
-
"name": "dap-ds-
|
|
233
|
-
"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.",
|
|
234
195
|
"doc-url": "",
|
|
235
196
|
"attributes": [
|
|
236
197
|
{
|
|
237
|
-
"name": "
|
|
238
|
-
"description": "
|
|
239
|
-
"value": { "type": "
|
|
198
|
+
"name": "inverted",
|
|
199
|
+
"description": "Inverted color style",
|
|
200
|
+
"value": { "type": "boolean", "default": "false" }
|
|
240
201
|
},
|
|
241
202
|
{
|
|
242
|
-
"name": "
|
|
243
|
-
"
|
|
244
|
-
|
|
245
|
-
}
|
|
246
|
-
],
|
|
247
|
-
"events": [],
|
|
248
|
-
"js": {
|
|
249
|
-
"properties": [
|
|
250
|
-
{ "name": "variant", "type": "HeadingVariant" },
|
|
251
|
-
{ "name": "label", "type": "string" },
|
|
252
|
-
{ "name": "elementId" },
|
|
253
|
-
{ "name": "anchorTitle" }
|
|
254
|
-
],
|
|
255
|
-
"events": []
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
"name": "dap-ds-accordion-group",
|
|
260
|
-
"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.",
|
|
261
|
-
"doc-url": "",
|
|
262
|
-
"attributes": [
|
|
203
|
+
"name": "variant",
|
|
204
|
+
"value": { "type": "string", "default": "'normal'" }
|
|
205
|
+
},
|
|
263
206
|
{
|
|
264
|
-
"name": "
|
|
265
|
-
"description": "
|
|
266
|
-
"value": { "type": "
|
|
207
|
+
"name": "mobile",
|
|
208
|
+
"description": "Mobile version of the breadcrumb",
|
|
209
|
+
"value": { "type": "boolean", "default": "false" }
|
|
267
210
|
},
|
|
268
211
|
{
|
|
269
|
-
"name": "
|
|
270
|
-
"description": "The
|
|
271
|
-
"value": {
|
|
272
|
-
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'",
|
|
273
|
-
"default": "'default'"
|
|
274
|
-
}
|
|
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": []
|
|
@@ -526,6 +477,55 @@
|
|
|
526
477
|
"events": []
|
|
527
478
|
}
|
|
528
479
|
},
|
|
480
|
+
{
|
|
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.",
|
|
483
|
+
"doc-url": "",
|
|
484
|
+
"attributes": [
|
|
485
|
+
{
|
|
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
529
|
{
|
|
530
530
|
"name": "dap-ds-button",
|
|
531
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.",
|
|
@@ -3889,7 +3889,7 @@
|
|
|
3889
3889
|
},
|
|
3890
3890
|
{
|
|
3891
3891
|
"name": "dap-ds-link",
|
|
3892
|
-
"description": "A link is a reference to a web resource.\n---\n\n\n### **Slots:**\n - _default_ - The text of the link.\n\n### **CSS Properties:**\n - **--dds-link-color** - The color of the link text _(default: undefined)_\n- **--dds-link-hover-color** - The color of the link text on hover _(default: undefined)_\n- **--dds-link-active-color** - The color of the link text when active _(default: undefined)_\n- **--dds-link-visited-color** - The color of the visited link text _(default: undefined)_\n- **--dds-link-font-size** - The font size of the link text _(default: undefined)_\n- **--dds-link-line-height** - The line height of the link text _(default: undefined)_\n- **--dds-link-font-weight** - The font weight of the link text _(default: undefined)_\n- **--dds-link-text-decoration** - The text decoration of the link _(default: undefined)_\n- **--dds-link-neutral-color** - The color of the neutral variant link _(default: undefined)_\n- **--dds-link-neutral-hover-color** - The hover color of the neutral variant link _(default: undefined)_\n- **--dds-link-neutral-active-color** - The active color of the neutral variant link _(default: undefined)_\n- **--dds-link-neutral-visited-color** - The visited color of the neutral variant link _(default: undefined)_\n- **--dds-link-brand-color** - The color of the brand variant link _(default: undefined)_\n- **--dds-link-brand-hover-color** - The hover color of the brand variant link _(default: undefined)_\n- **--dds-link-brand-active-color** - The active color of the brand variant link _(default: undefined)_\n- **--dds-link-brand-visited-color** - The visited color of the brand variant link _(default: undefined)_\n- **--dds-link-inverted-color** - The color of the inverted variant link _(default: undefined)_\n- **--dds-link-inverted-hover-color** - The hover color of the inverted variant link _(default: undefined)_\n- **--dds-link-inverted-active-color** - The active color of the inverted variant link _(default: undefined)_\n- **--dds-link-inverted-visited-color** - The visited color of the inverted variant link _(default: undefined)_\n- **--dds-link-warning-color** - The color of the warning variant link _(default: undefined)_\n- **--dds-link-warning-hover-color** - The hover color of the warning variant link _(default: undefined)_\n- **--dds-link-warning-active-color** - The active color of the warning variant link _(default: undefined)_\n- **--dds-link-warning-visited-color** - The visited color of the warning variant link _(default: undefined)_\n- **--dds-link-disabled-color** - The color of the disabled link _(default: undefined)_\n- **--dds-link-disabled-hover-color** - The hover color of the disabled link _(default: undefined)_\n- **--dds-link-disabled-active-color** - The active color of the disabled link _(default: undefined)_\n- **--dds-link-disabled-visited-color** - The visited color of the disabled link _(default: undefined)_\n- **--dds-link-lg-font-size** - The font size of the large link _(default: undefined)_\n- **--dds-link-lg-line-height** - The line height of the large link _(default: undefined)_\n- **--dds-link-md-font-size** - The font size of the medium link _(default: undefined)_\n- **--dds-link-md-line-height** - The line height of the medium link _(default: undefined)_\n- **--dds-link-sm-font-size** - The font size of the small link _(default: undefined)_\n- **--dds-link-sm-line-height** - The line height of the small link _(default: undefined)_\n- **--dds-link-xs-font-size** - The font size of the extra small link _(default: undefined)_\n- **--dds-link-xs-line-height** - The line height of the extra small link _(default: undefined)_\n- **--dds-link-normal-font-weight** - The font weight of the normal link _(default: undefined)_\n- **--dds-link-bold-font-weight** - The font weight of the bold link _(default: undefined)_\n- **--dds-link-no-underline-text-decoration** - The text decoration when underline is removed _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main link container.\n- **text** - The text of the link.",
|
|
3892
|
+
"description": "A link is a reference to a web resource.\n---\n\n\n### **Events:**\n - **dds-click** - Emitted when the link is clicked.\n\n### **Slots:**\n - _default_ - The text of the link.\n\n### **CSS Properties:**\n - **--dds-link-color** - The color of the link text _(default: undefined)_\n- **--dds-link-hover-color** - The color of the link text on hover _(default: undefined)_\n- **--dds-link-active-color** - The color of the link text when active _(default: undefined)_\n- **--dds-link-visited-color** - The color of the visited link text _(default: undefined)_\n- **--dds-link-font-size** - The font size of the link text _(default: undefined)_\n- **--dds-link-line-height** - The line height of the link text _(default: undefined)_\n- **--dds-link-font-weight** - The font weight of the link text _(default: undefined)_\n- **--dds-link-text-decoration** - The text decoration of the link _(default: undefined)_\n- **--dds-link-neutral-color** - The color of the neutral variant link _(default: undefined)_\n- **--dds-link-neutral-hover-color** - The hover color of the neutral variant link _(default: undefined)_\n- **--dds-link-neutral-active-color** - The active color of the neutral variant link _(default: undefined)_\n- **--dds-link-neutral-visited-color** - The visited color of the neutral variant link _(default: undefined)_\n- **--dds-link-brand-color** - The color of the brand variant link _(default: undefined)_\n- **--dds-link-brand-hover-color** - The hover color of the brand variant link _(default: undefined)_\n- **--dds-link-brand-active-color** - The active color of the brand variant link _(default: undefined)_\n- **--dds-link-brand-visited-color** - The visited color of the brand variant link _(default: undefined)_\n- **--dds-link-inverted-color** - The color of the inverted variant link _(default: undefined)_\n- **--dds-link-inverted-hover-color** - The hover color of the inverted variant link _(default: undefined)_\n- **--dds-link-inverted-active-color** - The active color of the inverted variant link _(default: undefined)_\n- **--dds-link-inverted-visited-color** - The visited color of the inverted variant link _(default: undefined)_\n- **--dds-link-warning-color** - The color of the warning variant link _(default: undefined)_\n- **--dds-link-warning-hover-color** - The hover color of the warning variant link _(default: undefined)_\n- **--dds-link-warning-active-color** - The active color of the warning variant link _(default: undefined)_\n- **--dds-link-warning-visited-color** - The visited color of the warning variant link _(default: undefined)_\n- **--dds-link-disabled-color** - The color of the disabled link _(default: undefined)_\n- **--dds-link-disabled-hover-color** - The hover color of the disabled link _(default: undefined)_\n- **--dds-link-disabled-active-color** - The active color of the disabled link _(default: undefined)_\n- **--dds-link-disabled-visited-color** - The visited color of the disabled link _(default: undefined)_\n- **--dds-link-lg-font-size** - The font size of the large link _(default: undefined)_\n- **--dds-link-lg-line-height** - The line height of the large link _(default: undefined)_\n- **--dds-link-md-font-size** - The font size of the medium link _(default: undefined)_\n- **--dds-link-md-line-height** - The line height of the medium link _(default: undefined)_\n- **--dds-link-sm-font-size** - The font size of the small link _(default: undefined)_\n- **--dds-link-sm-line-height** - The line height of the small link _(default: undefined)_\n- **--dds-link-xs-font-size** - The font size of the extra small link _(default: undefined)_\n- **--dds-link-xs-line-height** - The line height of the extra small link _(default: undefined)_\n- **--dds-link-normal-font-weight** - The font weight of the normal link _(default: undefined)_\n- **--dds-link-bold-font-weight** - The font weight of the bold link _(default: undefined)_\n- **--dds-link-no-underline-text-decoration** - The text decoration when underline is removed _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main link container.\n- **text** - The text of the link.",
|
|
3893
3893
|
"doc-url": "",
|
|
3894
3894
|
"attributes": [
|
|
3895
3895
|
{
|
|
@@ -3945,7 +3945,12 @@
|
|
|
3945
3945
|
}
|
|
3946
3946
|
],
|
|
3947
3947
|
"slots": [{ "name": "", "description": "The text of the link." }],
|
|
3948
|
-
"events": [
|
|
3948
|
+
"events": [
|
|
3949
|
+
{
|
|
3950
|
+
"name": "dds-click",
|
|
3951
|
+
"description": "Emitted when the link is clicked."
|
|
3952
|
+
}
|
|
3953
|
+
],
|
|
3949
3954
|
"js": {
|
|
3950
3955
|
"properties": [
|
|
3951
3956
|
{
|
|
@@ -3993,8 +3998,13 @@
|
|
|
3993
3998
|
"description": "The download attribute of the link",
|
|
3994
3999
|
"type": "boolean"
|
|
3995
4000
|
}
|
|
3996
|
-
],
|
|
3997
|
-
"events": [
|
|
4001
|
+
],
|
|
4002
|
+
"events": [
|
|
4003
|
+
{
|
|
4004
|
+
"name": "dds-click",
|
|
4005
|
+
"description": "Emitted when the link is clicked."
|
|
4006
|
+
}
|
|
4007
|
+
]
|
|
3998
4008
|
}
|
|
3999
4009
|
},
|
|
4000
4010
|
{
|
|
@@ -11026,6 +11036,132 @@
|
|
|
11026
11036
|
"events": []
|
|
11027
11037
|
}
|
|
11028
11038
|
},
|
|
11039
|
+
{
|
|
11040
|
+
"name": "dap-ds-icon-lock-fill",
|
|
11041
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11042
|
+
"doc-url": "",
|
|
11043
|
+
"attributes": [
|
|
11044
|
+
{
|
|
11045
|
+
"name": "size",
|
|
11046
|
+
"description": "(optional) The width and height in pixels",
|
|
11047
|
+
"value": { "type": "number", "default": "24" }
|
|
11048
|
+
},
|
|
11049
|
+
{
|
|
11050
|
+
"name": "selected",
|
|
11051
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11052
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11053
|
+
},
|
|
11054
|
+
{
|
|
11055
|
+
"name": "decorative",
|
|
11056
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11057
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11058
|
+
},
|
|
11059
|
+
{
|
|
11060
|
+
"name": "accessibilityTitle",
|
|
11061
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11062
|
+
"value": { "type": "string | undefined" }
|
|
11063
|
+
},
|
|
11064
|
+
{
|
|
11065
|
+
"name": "focusable",
|
|
11066
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11067
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11068
|
+
}
|
|
11069
|
+
],
|
|
11070
|
+
"events": [],
|
|
11071
|
+
"js": {
|
|
11072
|
+
"properties": [
|
|
11073
|
+
{
|
|
11074
|
+
"name": "size",
|
|
11075
|
+
"description": "(optional) The width and height in pixels",
|
|
11076
|
+
"type": "number"
|
|
11077
|
+
},
|
|
11078
|
+
{
|
|
11079
|
+
"name": "selected",
|
|
11080
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11081
|
+
"type": "boolean | undefined"
|
|
11082
|
+
},
|
|
11083
|
+
{
|
|
11084
|
+
"name": "decorative",
|
|
11085
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11086
|
+
"type": "boolean | undefined"
|
|
11087
|
+
},
|
|
11088
|
+
{
|
|
11089
|
+
"name": "accessibilityTitle",
|
|
11090
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11091
|
+
"type": "string | undefined"
|
|
11092
|
+
},
|
|
11093
|
+
{
|
|
11094
|
+
"name": "focusable",
|
|
11095
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11096
|
+
"type": "boolean | undefined"
|
|
11097
|
+
}
|
|
11098
|
+
],
|
|
11099
|
+
"events": []
|
|
11100
|
+
}
|
|
11101
|
+
},
|
|
11102
|
+
{
|
|
11103
|
+
"name": "dap-ds-icon-lock-line",
|
|
11104
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11105
|
+
"doc-url": "",
|
|
11106
|
+
"attributes": [
|
|
11107
|
+
{
|
|
11108
|
+
"name": "size",
|
|
11109
|
+
"description": "(optional) The width and height in pixels",
|
|
11110
|
+
"value": { "type": "number", "default": "24" }
|
|
11111
|
+
},
|
|
11112
|
+
{
|
|
11113
|
+
"name": "selected",
|
|
11114
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11115
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11116
|
+
},
|
|
11117
|
+
{
|
|
11118
|
+
"name": "decorative",
|
|
11119
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11120
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11121
|
+
},
|
|
11122
|
+
{
|
|
11123
|
+
"name": "accessibilityTitle",
|
|
11124
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11125
|
+
"value": { "type": "string | undefined" }
|
|
11126
|
+
},
|
|
11127
|
+
{
|
|
11128
|
+
"name": "focusable",
|
|
11129
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11130
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11131
|
+
}
|
|
11132
|
+
],
|
|
11133
|
+
"events": [],
|
|
11134
|
+
"js": {
|
|
11135
|
+
"properties": [
|
|
11136
|
+
{
|
|
11137
|
+
"name": "size",
|
|
11138
|
+
"description": "(optional) The width and height in pixels",
|
|
11139
|
+
"type": "number"
|
|
11140
|
+
},
|
|
11141
|
+
{
|
|
11142
|
+
"name": "selected",
|
|
11143
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11144
|
+
"type": "boolean | undefined"
|
|
11145
|
+
},
|
|
11146
|
+
{
|
|
11147
|
+
"name": "decorative",
|
|
11148
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11149
|
+
"type": "boolean | undefined"
|
|
11150
|
+
},
|
|
11151
|
+
{
|
|
11152
|
+
"name": "accessibilityTitle",
|
|
11153
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11154
|
+
"type": "string | undefined"
|
|
11155
|
+
},
|
|
11156
|
+
{
|
|
11157
|
+
"name": "focusable",
|
|
11158
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11159
|
+
"type": "boolean | undefined"
|
|
11160
|
+
}
|
|
11161
|
+
],
|
|
11162
|
+
"events": []
|
|
11163
|
+
}
|
|
11164
|
+
},
|
|
11029
11165
|
{
|
|
11030
11166
|
"name": "dap-ds-icon-menu-line",
|
|
11031
11167
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
@@ -11216,7 +11352,7 @@
|
|
|
11216
11352
|
}
|
|
11217
11353
|
},
|
|
11218
11354
|
{
|
|
11219
|
-
"name": "dap-ds-icon-
|
|
11355
|
+
"name": "dap-ds-icon-shield-check-fill",
|
|
11220
11356
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11221
11357
|
"doc-url": "",
|
|
11222
11358
|
"attributes": [
|
|
@@ -11279,7 +11415,70 @@
|
|
|
11279
11415
|
}
|
|
11280
11416
|
},
|
|
11281
11417
|
{
|
|
11282
|
-
"name": "dap-ds-icon-
|
|
11418
|
+
"name": "dap-ds-icon-shield-check-line",
|
|
11419
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11420
|
+
"doc-url": "",
|
|
11421
|
+
"attributes": [
|
|
11422
|
+
{
|
|
11423
|
+
"name": "size",
|
|
11424
|
+
"description": "(optional) The width and height in pixels",
|
|
11425
|
+
"value": { "type": "number", "default": "24" }
|
|
11426
|
+
},
|
|
11427
|
+
{
|
|
11428
|
+
"name": "selected",
|
|
11429
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11430
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11431
|
+
},
|
|
11432
|
+
{
|
|
11433
|
+
"name": "decorative",
|
|
11434
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11435
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11436
|
+
},
|
|
11437
|
+
{
|
|
11438
|
+
"name": "accessibilityTitle",
|
|
11439
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11440
|
+
"value": { "type": "string | undefined" }
|
|
11441
|
+
},
|
|
11442
|
+
{
|
|
11443
|
+
"name": "focusable",
|
|
11444
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11445
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11446
|
+
}
|
|
11447
|
+
],
|
|
11448
|
+
"events": [],
|
|
11449
|
+
"js": {
|
|
11450
|
+
"properties": [
|
|
11451
|
+
{
|
|
11452
|
+
"name": "size",
|
|
11453
|
+
"description": "(optional) The width and height in pixels",
|
|
11454
|
+
"type": "number"
|
|
11455
|
+
},
|
|
11456
|
+
{
|
|
11457
|
+
"name": "selected",
|
|
11458
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11459
|
+
"type": "boolean | undefined"
|
|
11460
|
+
},
|
|
11461
|
+
{
|
|
11462
|
+
"name": "decorative",
|
|
11463
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11464
|
+
"type": "boolean | undefined"
|
|
11465
|
+
},
|
|
11466
|
+
{
|
|
11467
|
+
"name": "accessibilityTitle",
|
|
11468
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11469
|
+
"type": "string | undefined"
|
|
11470
|
+
},
|
|
11471
|
+
{
|
|
11472
|
+
"name": "focusable",
|
|
11473
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11474
|
+
"type": "boolean | undefined"
|
|
11475
|
+
}
|
|
11476
|
+
],
|
|
11477
|
+
"events": []
|
|
11478
|
+
}
|
|
11479
|
+
},
|
|
11480
|
+
{
|
|
11481
|
+
"name": "dap-ds-icon-star-fill",
|
|
11283
11482
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11284
11483
|
"doc-url": "",
|
|
11285
11484
|
"attributes": [
|
|
@@ -11403,6 +11602,69 @@
|
|
|
11403
11602
|
],
|
|
11404
11603
|
"events": []
|
|
11405
11604
|
}
|
|
11605
|
+
},
|
|
11606
|
+
{
|
|
11607
|
+
"name": "dap-ds-icon-subtract-line",
|
|
11608
|
+
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11609
|
+
"doc-url": "",
|
|
11610
|
+
"attributes": [
|
|
11611
|
+
{
|
|
11612
|
+
"name": "size",
|
|
11613
|
+
"description": "(optional) The width and height in pixels",
|
|
11614
|
+
"value": { "type": "number", "default": "24" }
|
|
11615
|
+
},
|
|
11616
|
+
{
|
|
11617
|
+
"name": "selected",
|
|
11618
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11619
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11620
|
+
},
|
|
11621
|
+
{
|
|
11622
|
+
"name": "decorative",
|
|
11623
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11624
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11625
|
+
},
|
|
11626
|
+
{
|
|
11627
|
+
"name": "accessibilityTitle",
|
|
11628
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11629
|
+
"value": { "type": "string | undefined" }
|
|
11630
|
+
},
|
|
11631
|
+
{
|
|
11632
|
+
"name": "focusable",
|
|
11633
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11634
|
+
"value": { "type": "boolean | undefined", "default": "false" }
|
|
11635
|
+
}
|
|
11636
|
+
],
|
|
11637
|
+
"events": [],
|
|
11638
|
+
"js": {
|
|
11639
|
+
"properties": [
|
|
11640
|
+
{
|
|
11641
|
+
"name": "size",
|
|
11642
|
+
"description": "(optional) The width and height in pixels",
|
|
11643
|
+
"type": "number"
|
|
11644
|
+
},
|
|
11645
|
+
{
|
|
11646
|
+
"name": "selected",
|
|
11647
|
+
"description": "(optional) Sets the icon color via the `fill` attribute",
|
|
11648
|
+
"type": "boolean | undefined"
|
|
11649
|
+
},
|
|
11650
|
+
{
|
|
11651
|
+
"name": "decorative",
|
|
11652
|
+
"description": "(optional) If `true` the SVG element will get `aria-hidden=\"true\"`",
|
|
11653
|
+
"type": "boolean | undefined"
|
|
11654
|
+
},
|
|
11655
|
+
{
|
|
11656
|
+
"name": "accessibilityTitle",
|
|
11657
|
+
"description": "(optional) When using the icon standalone, make it meaningful for accessibility",
|
|
11658
|
+
"type": "string | undefined"
|
|
11659
|
+
},
|
|
11660
|
+
{
|
|
11661
|
+
"name": "focusable",
|
|
11662
|
+
"description": "(optional) If `true` the icon can receive focus",
|
|
11663
|
+
"type": "boolean | undefined"
|
|
11664
|
+
}
|
|
11665
|
+
],
|
|
11666
|
+
"events": []
|
|
11667
|
+
}
|
|
11406
11668
|
}
|
|
11407
11669
|
]
|
|
11408
11670
|
}
|