dap-design-system 0.55.2 → 0.55.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/file-input/file-input.component.d.ts +7 -0
- package/dist/{components-ChK1mSip.js → components-NHQTi00b.js} +110 -107
- package/dist/components-NHQTi00b.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +406 -404
- package/dist/manifest/vscode.html-custom-data.json +303 -298
- package/dist/manifest/web-types.json +755 -745
- package/dist/react/dap-ds-file-input/index.d.ts +1 -0
- package/dist/react/index.d.ts +13 -13
- package/dist/react-types.ts +13 -13
- package/dist/react.js +130 -130
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-ChK1mSip.js.map +0 -1
|
@@ -33,270 +33,6 @@
|
|
|
33
33
|
"events": []
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
{
|
|
37
|
-
"name": "dap-ds-accordion",
|
|
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- **content-container** - The container of the accordion content.\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.",
|
|
39
|
-
"doc-url": "",
|
|
40
|
-
"attributes": [],
|
|
41
|
-
"slots": [
|
|
42
|
-
{
|
|
43
|
-
"name": "default",
|
|
44
|
-
"description": "The content of the accordion."
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"name": "heading",
|
|
48
|
-
"description": "The heading of the accordion."
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"name": "icon-opened",
|
|
52
|
-
"description": "The icon when the accordion is opened."
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"name": "icon-closed",
|
|
56
|
-
"description": "The icon when the accordion is closed."
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"events": [
|
|
60
|
-
{
|
|
61
|
-
"name": "dds-opened",
|
|
62
|
-
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
63
|
-
"description": "Event fired when the accordion is opened."
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"name": "dds-closed",
|
|
67
|
-
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
68
|
-
"description": "Event fired when the accordion is closed."
|
|
69
|
-
}
|
|
70
|
-
],
|
|
71
|
-
"js": {
|
|
72
|
-
"properties": [
|
|
73
|
-
{
|
|
74
|
-
"name": "size",
|
|
75
|
-
"description": "The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm).",
|
|
76
|
-
"type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "sizeMap",
|
|
80
|
-
"description": "Responsive size map (e.g. \"md:lg\")",
|
|
81
|
-
"type": "string"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"name": "parentSized",
|
|
85
|
-
"description": "When \"true\", size is taken from the parent card if present.",
|
|
86
|
-
"type": "string"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"name": "heading",
|
|
90
|
-
"description": "The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided",
|
|
91
|
-
"type": "string"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"name": "headingLevel",
|
|
95
|
-
"description": "The heading level of the accordion. Default is `4`.",
|
|
96
|
-
"type": "1 | 2 | 3 | 4 | 5 | 6"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"name": "opened",
|
|
100
|
-
"description": "Whether the accordion is opened. Default is `false`.",
|
|
101
|
-
"type": "boolean"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"name": "iconLocation",
|
|
105
|
-
"description": "The location of the icon. Default is `right`.",
|
|
106
|
-
"type": "'left' | 'right'"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"name": "variant",
|
|
110
|
-
"description": "The variant of the accordion.",
|
|
111
|
-
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"name": "lastItem",
|
|
115
|
-
"description": "Whether the accordion is the last item.",
|
|
116
|
-
"type": "boolean"
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"name": "disabled",
|
|
120
|
-
"description": "Whether the accordion is disabled.",
|
|
121
|
-
"type": "boolean"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"name": "loading",
|
|
125
|
-
"description": "Whether the accordion is in loading state.",
|
|
126
|
-
"type": "boolean"
|
|
127
|
-
}
|
|
128
|
-
],
|
|
129
|
-
"events": [
|
|
130
|
-
{
|
|
131
|
-
"name": "dds-opened",
|
|
132
|
-
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
133
|
-
"description": "Event fired when the accordion is opened."
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"name": "dds-closed",
|
|
137
|
-
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
138
|
-
"description": "Event fired when the accordion is closed."
|
|
139
|
-
}
|
|
140
|
-
]
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"name": "dap-ds-avatar",
|
|
145
|
-
"description": "Avatar component can be used to display user profile images, initials, or icons.\n---\n\n\n### **Events:**\n - **dds-load** - Fired when the image loads successfully.\n- **dds-error** - Fired when the image fails to load.\n\n### **Slots:**\n - **icon** - The icon to display when variant is 'icon'.\n- **fallback** - Custom fallback content when image fails to load.\n\n### **CSS Properties:**\n - **--dds-avatar-border-radius** - The border radius of the avatar (default: 50%) _(default: undefined)_\n- **--dds-avatar-background-color** - The background color of the avatar (default: var(--dds-neutral-200)) _(default: undefined)_\n- **--dds-avatar-border-width** - The border width of the avatar (default: 0) _(default: undefined)_\n- **--dds-avatar-border-color** - The color of the avatar's border (default: transparent) _(default: undefined)_\n- **--dds-avatar-border-style** - The style of the avatar's border (default: solid) _(default: undefined)_\n- **--dds-avatar-transition** - The transition property for the avatar (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-avatar-text-color** - The text color for initials (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-avatar-font-weight** - The font weight for initials (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-avatar-lg-size** - Size for large avatars (default: var(--dds-avatar-size-lg)) _(default: undefined)_\n- **--dds-avatar-md-size** - Size for medium avatars (default: var(--dds-avatar-size-md)) _(default: undefined)_\n- **--dds-avatar-sm-size** - Size for small avatars (default: var(--dds-avatar-size-sm)) _(default: undefined)_\n- **--dds-avatar-xs-size** - Size for extra small avatars (default: var(--dds-avatar-size-xs)) _(default: undefined)_\n- **--dds-avatar-xxs-size** - Size for extra extra small avatars (default: var(--dds-avatar-size-xxs)) _(default: undefined)_\n- **--dds-avatar-font-size-lg** - Font size for large avatars (default: var(--dds-font-2xl)) _(default: undefined)_\n- **--dds-avatar-font-size-md** - Font size for medium avatars (default: var(--dds-font-lg)) _(default: undefined)_\n- **--dds-avatar-font-size-sm** - Font size for small avatars (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-avatar-font-size-xs** - Font size for extra small avatars (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-avatar-font-size-xxs** - Font size for extra extra small avatars (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-avatar-hover-transform** - Transform applied on hover for interactive avatars (default: scale(1.05)) _(default: undefined)_\n- **--dds-avatar-active-transform** - Transform applied when active for interactive avatars (default: scale(0.95)) _(default: undefined)_\n- **--dds-avatar-focus-ring** - Focus ring style for interactive avatars (default: 0 0 0 2px var(--dds-focus-outer-ring)) _(default: undefined)_\n- **--dds-avatar-loading-background** - Background color when loading (default: var(--dds-neutral-100)) _(default: undefined)_\n- **--dds-avatar-error-background** - Background color when image fails to load (default: var(--dds-negative-100)) _(default: undefined)_\n- **--dds-avatar-error-color** - Text color when image fails to load (default: var(--dds-negative-600)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main avatar container.\n- **img** - The avatar image.\n- **initials** - The initials container.\n- **icon** - The icon container.\n- **fallback** - The fallback content container.\n- **loading** - The loading indicator.",
|
|
146
|
-
"doc-url": "",
|
|
147
|
-
"attributes": [
|
|
148
|
-
{
|
|
149
|
-
"name": "shape",
|
|
150
|
-
"description": "The shape of the avatar",
|
|
151
|
-
"value": {
|
|
152
|
-
"type": "'circle' | 'rounded' | 'square'",
|
|
153
|
-
"default": "'circle'"
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"name": "variant",
|
|
158
|
-
"description": "The variant type of the avatar",
|
|
159
|
-
"value": {
|
|
160
|
-
"type": "'image' | 'initials' | 'icon'",
|
|
161
|
-
"default": "'image'"
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"name": "src",
|
|
166
|
-
"description": "The source of the avatar image",
|
|
167
|
-
"value": { "type": "string" }
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"name": "alt",
|
|
171
|
-
"description": "The alt text of the avatar",
|
|
172
|
-
"value": { "type": "string" }
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"name": "initials",
|
|
176
|
-
"description": "The initials to display when variant is 'initials'",
|
|
177
|
-
"value": { "type": "string" }
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"name": "label",
|
|
181
|
-
"description": "Accessible label for the avatar",
|
|
182
|
-
"value": { "type": "string" }
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"name": "loading",
|
|
186
|
-
"description": "Loading state indicator",
|
|
187
|
-
"value": { "type": "boolean", "default": "false" }
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"name": "interactive",
|
|
191
|
-
"description": "Whether the avatar is interactive (clickable)",
|
|
192
|
-
"value": { "type": "boolean", "default": "false" }
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"name": "width",
|
|
196
|
-
"description": "The width of the avatar. This will override the size",
|
|
197
|
-
"value": { "type": "number" }
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"name": "height",
|
|
201
|
-
"description": "The height of the avatar. This will override the size",
|
|
202
|
-
"value": { "type": "number" }
|
|
203
|
-
}
|
|
204
|
-
],
|
|
205
|
-
"slots": [
|
|
206
|
-
{
|
|
207
|
-
"name": "icon",
|
|
208
|
-
"description": "The icon to display when variant is 'icon'."
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"name": "fallback",
|
|
212
|
-
"description": "Custom fallback content when image fails to load."
|
|
213
|
-
}
|
|
214
|
-
],
|
|
215
|
-
"events": [
|
|
216
|
-
{
|
|
217
|
-
"name": "dds-load",
|
|
218
|
-
"description": "Fired when the image loads successfully."
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"name": "dds-error",
|
|
222
|
-
"description": "Fired when the image fails to load."
|
|
223
|
-
}
|
|
224
|
-
],
|
|
225
|
-
"js": {
|
|
226
|
-
"properties": [
|
|
227
|
-
{
|
|
228
|
-
"name": "shape",
|
|
229
|
-
"description": "The shape of the avatar",
|
|
230
|
-
"type": "'circle' | 'rounded' | 'square'"
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"name": "variant",
|
|
234
|
-
"description": "The variant type of the avatar",
|
|
235
|
-
"type": "'image' | 'initials' | 'icon'"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"name": "src",
|
|
239
|
-
"description": "The source of the avatar image",
|
|
240
|
-
"type": "string"
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"name": "alt",
|
|
244
|
-
"description": "The alt text of the avatar",
|
|
245
|
-
"type": "string"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"name": "initials",
|
|
249
|
-
"description": "The initials to display when variant is 'initials'",
|
|
250
|
-
"type": "string"
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"name": "label",
|
|
254
|
-
"description": "Accessible label for the avatar",
|
|
255
|
-
"type": "string"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"name": "loading",
|
|
259
|
-
"description": "Loading state indicator",
|
|
260
|
-
"type": "boolean"
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"name": "interactive",
|
|
264
|
-
"description": "Whether the avatar is interactive (clickable)",
|
|
265
|
-
"type": "boolean"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"name": "width",
|
|
269
|
-
"description": "The width of the avatar. This will override the size",
|
|
270
|
-
"type": "number"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"name": "height",
|
|
274
|
-
"description": "The height of the avatar. This will override the size",
|
|
275
|
-
"type": "number"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"name": "size",
|
|
279
|
-
"description": "The size of the avatar. Default is `md`.",
|
|
280
|
-
"type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"name": "sizeMap",
|
|
284
|
-
"description": "Responsive size map (e.g. \"md:lg\").",
|
|
285
|
-
"type": "string"
|
|
286
|
-
}
|
|
287
|
-
],
|
|
288
|
-
"events": [
|
|
289
|
-
{
|
|
290
|
-
"name": "dds-load",
|
|
291
|
-
"description": "Fired when the image loads successfully."
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"name": "dds-error",
|
|
295
|
-
"description": "Fired when the image fails to load."
|
|
296
|
-
}
|
|
297
|
-
]
|
|
298
|
-
}
|
|
299
|
-
},
|
|
300
36
|
{
|
|
301
37
|
"name": "dap-ds-avatar-group",
|
|
302
38
|
"description": "Avatar group component displays multiple avatars in an organized layout with overflow management.\n---\n\n\n### **Events:**\n - **dds-overflow-click** - Fired when the overflow indicator is clicked.\n\n### **Slots:**\n - _default_ - The avatars to display in the group.\n\n### **CSS Properties:**\n - **--dds-avatar-group-gap** - Gap between avatars in grid layout (default: 0) _(default: undefined)_\n- **--dds-avatar-group-overlap** - Overlap amount for stacked layout (default: -8px) _(default: undefined)_\n- **--dds-avatar-group-border-width** - Border width for avatars (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-avatar-group-border-color** - Border color for avatars (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-avatar-group-overflow-bg** - Background color for overflow indicator (default: var(--dds-neutral-300)) _(default: undefined)_\n- **--dds-avatar-group-overflow-color** - Text color for overflow indicator (default: var(--dds-neutral-700)) _(default: undefined)_\n- **--dds-avatar-group-overflow-border** - Border for overflow indicator (default: var(--dds-avatar-group-border-width) solid var(--dds-avatar-group-border-color)) _(default: undefined)_\n- **--dds-avatar-group-size-lg** - Size for large avatars (default: var(--dds-spacing-2000)) _(default: undefined)_\n- **--dds-avatar-group-size-md** - Size for medium avatars (default: var(--dds-spacing-1600)) _(default: undefined)_\n- **--dds-avatar-group-size-sm** - Size for small avatars (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-avatar-group-size-xs** - Size for extra small avatars (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-avatar-group-size-xxs** - Size for extra extra small avatars (default: var(--dds-spacing-400)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main container of the avatar group.\n- **avatars** - The container for the visible avatars.\n- **overflow** - The overflow indicator element.",
|
|
@@ -396,51 +132,6 @@
|
|
|
396
132
|
]
|
|
397
133
|
}
|
|
398
134
|
},
|
|
399
|
-
{
|
|
400
|
-
"name": "dap-ds-breadcrumb",
|
|
401
|
-
"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: 100%) _(default: undefined)_\n- **--dds-breadcrumb-overflow-x** - The horizontal overflow behavior of the breadcrumb (default: auto) _(default: undefined)_\n- **--dds-breadcrumb-transition** - The transition property for the breadcrumb (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-breadcrumb-list-display** - The display property of the breadcrumb list (default: flex) _(default: undefined)_\n- **--dds-breadcrumb-list-flex-wrap** - The flex-wrap property of the breadcrumb list (default: nowrap) _(default: undefined)_\n- **--dds-breadcrumb-list-align-items** - The align-items property of the breadcrumb list (default: center) _(default: undefined)_\n- **--dds-breadcrumb-list-min-width** - The minimum width of the breadcrumb list (default: max-content) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main breadcrumb container.\n- **separator** - The separator of the breadcrumb.",
|
|
402
|
-
"doc-url": "",
|
|
403
|
-
"attributes": [
|
|
404
|
-
{
|
|
405
|
-
"name": "variant",
|
|
406
|
-
"value": { "type": "string", "default": "'normal'" }
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
"name": "mobile",
|
|
410
|
-
"description": "Mobile version of the breadcrumb",
|
|
411
|
-
"value": { "type": "boolean", "default": "false" }
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"name": "aria-labelledby",
|
|
415
|
-
"description": "The aria-labelledby of the breadcrumb",
|
|
416
|
-
"value": { "type": "string | undefined" }
|
|
417
|
-
}
|
|
418
|
-
],
|
|
419
|
-
"slots": [
|
|
420
|
-
{ "name": "", "description": "The content of the breadcrumb." },
|
|
421
|
-
{
|
|
422
|
-
"name": "separator",
|
|
423
|
-
"description": "The separator between breadcrumb items. Default is '/'."
|
|
424
|
-
}
|
|
425
|
-
],
|
|
426
|
-
"events": [],
|
|
427
|
-
"js": {
|
|
428
|
-
"properties": [
|
|
429
|
-
{ "name": "variant", "type": "string" },
|
|
430
|
-
{
|
|
431
|
-
"name": "mobile",
|
|
432
|
-
"description": "Mobile version of the breadcrumb",
|
|
433
|
-
"type": "boolean"
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"name": "ariaLabelledBy",
|
|
437
|
-
"description": "The aria-labelledby of the breadcrumb",
|
|
438
|
-
"type": "string | undefined"
|
|
439
|
-
}
|
|
440
|
-
],
|
|
441
|
-
"events": []
|
|
442
|
-
}
|
|
443
|
-
},
|
|
444
135
|
{
|
|
445
136
|
"name": "dap-ds-badge",
|
|
446
137
|
"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: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-badge-border-style** - The style of the badge's border (default: solid) _(default: undefined)_\n- **--dds-badge-border-radius** - The border radius of the badge (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-badge-font-weight** - The font weight of the badge text (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-badge-line-height** - The line height of the badge text (default: 1.2) _(default: undefined)_\n- **--dds-badge-transition** - The transition property for the badge (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-badge-padding-sm** - The padding of the small badge (default: var(--dds-spacing-100) var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-badge-padding-lg** - The padding of the large badge (default: var(--dds-spacing-100) var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-badge-font-size-sm** - The font size of the small badge (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-badge-font-size-lg** - The font size of the large badge (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-badge-neutral-border-color** - The border color of the neutral badge (default: var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-badge-neutral-background** - The background color of the neutral badge (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-badge-neutral-color** - The text color of the neutral badge (default: var(--dds-text-neutral-subtle)) _(default: undefined)_\n- **--dds-badge-brand-border-color** - The border color of the brand badge (default: var(--dds-border-brand-base)) _(default: undefined)_\n- **--dds-badge-brand-background** - The background color of the brand badge (default: var(--dds-background-brand-medium)) _(default: undefined)_\n- **--dds-badge-brand-color** - The text color of the brand badge (default: var(--dds-text-brand-subtle)) _(default: undefined)_\n- **--dds-badge-info-border-color** - The border color of the info badge (default: var(--dds-border-informative-base)) _(default: undefined)_\n- **--dds-badge-info-background** - The background color of the info badge (default: var(--dds-background-informative-medium)) _(default: undefined)_\n- **--dds-badge-info-color** - The text color of the info badge (default: var(--dds-text-informative-subtle)) _(default: undefined)_\n- **--dds-badge-positive-border-color** - The border color of the positive badge (default: var(--dds-border-positive-base)) _(default: undefined)_\n- **--dds-badge-positive-background** - The background color of the positive badge (default: var(--dds-background-positive-medium)) _(default: undefined)_\n- **--dds-badge-positive-color** - The text color of the positive badge (default: var(--dds-text-positive-subtle)) _(default: undefined)_\n- **--dds-badge-warning-border-color** - The border color of the warning badge (default: var(--dds-border-warning-subtle)) _(default: undefined)_\n- **--dds-badge-warning-background** - The background color of the warning badge (default: var(--dds-background-warning-medium)) _(default: undefined)_\n- **--dds-badge-warning-color** - The text color of the warning badge (default: var(--dds-text-warning-subtle)) _(default: undefined)_\n- **--dds-badge-negative-border-color** - The border color of the negative badge (default: var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-badge-negative-background** - The background color of the negative badge (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-badge-negative-color** - The text color of the negative badge (default: var(--dds-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.",
|
|
@@ -585,223 +276,353 @@
|
|
|
585
276
|
}
|
|
586
277
|
},
|
|
587
278
|
{
|
|
588
|
-
"name": "dap-ds-
|
|
589
|
-
"description": "
|
|
279
|
+
"name": "dap-ds-breadcrumb",
|
|
280
|
+
"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: 100%) _(default: undefined)_\n- **--dds-breadcrumb-overflow-x** - The horizontal overflow behavior of the breadcrumb (default: auto) _(default: undefined)_\n- **--dds-breadcrumb-transition** - The transition property for the breadcrumb (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-breadcrumb-list-display** - The display property of the breadcrumb list (default: flex) _(default: undefined)_\n- **--dds-breadcrumb-list-flex-wrap** - The flex-wrap property of the breadcrumb list (default: nowrap) _(default: undefined)_\n- **--dds-breadcrumb-list-align-items** - The align-items property of the breadcrumb list (default: center) _(default: undefined)_\n- **--dds-breadcrumb-list-min-width** - The minimum width of the breadcrumb list (default: max-content) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main breadcrumb container.\n- **separator** - The separator of the breadcrumb.",
|
|
590
281
|
"doc-url": "",
|
|
591
282
|
"attributes": [
|
|
592
283
|
{
|
|
593
|
-
"name": "
|
|
594
|
-
"
|
|
595
|
-
"value": { "type": "string", "default": "'true'" }
|
|
284
|
+
"name": "variant",
|
|
285
|
+
"value": { "type": "string", "default": "'normal'" }
|
|
596
286
|
},
|
|
597
287
|
{
|
|
598
|
-
"name": "
|
|
599
|
-
"description": "
|
|
600
|
-
"value": {
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
288
|
+
"name": "mobile",
|
|
289
|
+
"description": "Mobile version of the breadcrumb",
|
|
290
|
+
"value": { "type": "boolean", "default": "false" }
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "aria-labelledby",
|
|
294
|
+
"description": "The aria-labelledby of the breadcrumb",
|
|
295
|
+
"value": { "type": "string | undefined" }
|
|
604
296
|
}
|
|
605
297
|
],
|
|
606
298
|
"slots": [
|
|
607
|
-
{ "name": "", "description": "The content of the
|
|
299
|
+
{ "name": "", "description": "The content of the breadcrumb." },
|
|
300
|
+
{
|
|
301
|
+
"name": "separator",
|
|
302
|
+
"description": "The separator between breadcrumb items. Default is '/'."
|
|
303
|
+
}
|
|
608
304
|
],
|
|
609
305
|
"events": [],
|
|
610
306
|
"js": {
|
|
611
307
|
"properties": [
|
|
308
|
+
{ "name": "variant", "type": "string" },
|
|
612
309
|
{
|
|
613
|
-
"name": "
|
|
614
|
-
"description": "
|
|
615
|
-
"type": "
|
|
310
|
+
"name": "mobile",
|
|
311
|
+
"description": "Mobile version of the breadcrumb",
|
|
312
|
+
"type": "boolean"
|
|
616
313
|
},
|
|
617
314
|
{
|
|
618
|
-
"name": "
|
|
619
|
-
"description": "The
|
|
620
|
-
"type": "
|
|
315
|
+
"name": "ariaLabelledBy",
|
|
316
|
+
"description": "The aria-labelledby of the breadcrumb",
|
|
317
|
+
"type": "string | undefined"
|
|
621
318
|
}
|
|
622
319
|
],
|
|
623
320
|
"events": []
|
|
624
321
|
}
|
|
625
322
|
},
|
|
626
323
|
{
|
|
627
|
-
"name": "dap-ds-
|
|
628
|
-
"description": "A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.\n---\n\n\n### **Events:**\n - **dds-loading-timeout** - Emitted when the loading timeout is reached\n\n### **Slots:**\n - _default_ - The content of the button. Can contain text, icons, or other elements.\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.\n- **content** - The content wrapper inside the button.",
|
|
324
|
+
"name": "dap-ds-accordion",
|
|
325
|
+
"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- **content-container** - The container of the accordion content.\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.",
|
|
629
326
|
"doc-url": "",
|
|
630
|
-
"attributes": [
|
|
327
|
+
"attributes": [],
|
|
328
|
+
"slots": [
|
|
631
329
|
{
|
|
632
|
-
"name": "
|
|
633
|
-
"description": "The
|
|
634
|
-
"value": {
|
|
635
|
-
"type": "'primary' | 'outline' | 'subtle' | 'subtle-neutral' | 'subtle-quiet' | 'subtle-quiet-inverted' | 'clean' | 'primary-inverted' | 'outline-inverted' | 'subtle-inverted' | 'clean-inverted' | 'subtle-menu' | 'subtle-menu-item'",
|
|
636
|
-
"default": "'primary'"
|
|
637
|
-
}
|
|
330
|
+
"name": "default",
|
|
331
|
+
"description": "The content of the accordion."
|
|
638
332
|
},
|
|
639
333
|
{
|
|
640
|
-
"name": "
|
|
641
|
-
"description": "The
|
|
642
|
-
"value": {
|
|
643
|
-
"type": "'lg' | 'md' | 'sm' | 'xs'",
|
|
644
|
-
"default": "'md'"
|
|
645
|
-
}
|
|
334
|
+
"name": "heading",
|
|
335
|
+
"description": "The heading of the accordion."
|
|
646
336
|
},
|
|
647
337
|
{
|
|
648
|
-
"name": "
|
|
649
|
-
"description": "
|
|
650
|
-
"value": { "type": "boolean", "default": "false" }
|
|
338
|
+
"name": "icon-opened",
|
|
339
|
+
"description": "The icon when the accordion is opened."
|
|
651
340
|
},
|
|
652
341
|
{
|
|
653
|
-
"name": "
|
|
654
|
-
"description": "
|
|
655
|
-
|
|
342
|
+
"name": "icon-closed",
|
|
343
|
+
"description": "The icon when the accordion is closed."
|
|
344
|
+
}
|
|
345
|
+
],
|
|
346
|
+
"events": [
|
|
347
|
+
{
|
|
348
|
+
"name": "dds-opened",
|
|
349
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
350
|
+
"description": "Event fired when the accordion is opened."
|
|
656
351
|
},
|
|
352
|
+
{
|
|
353
|
+
"name": "dds-closed",
|
|
354
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
355
|
+
"description": "Event fired when the accordion is closed."
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"js": {
|
|
359
|
+
"properties": [
|
|
360
|
+
{
|
|
361
|
+
"name": "size",
|
|
362
|
+
"description": "The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm).",
|
|
363
|
+
"type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "sizeMap",
|
|
367
|
+
"description": "Responsive size map (e.g. \"md:lg\")",
|
|
368
|
+
"type": "string"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "parentSized",
|
|
372
|
+
"description": "When \"true\", size is taken from the parent card if present.",
|
|
373
|
+
"type": "string"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "heading",
|
|
377
|
+
"description": "The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided",
|
|
378
|
+
"type": "string"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "headingLevel",
|
|
382
|
+
"description": "The heading level of the accordion. Default is `4`.",
|
|
383
|
+
"type": "1 | 2 | 3 | 4 | 5 | 6"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "opened",
|
|
387
|
+
"description": "Whether the accordion is opened. Default is `false`.",
|
|
388
|
+
"type": "boolean"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "iconLocation",
|
|
392
|
+
"description": "The location of the icon. Default is `right`.",
|
|
393
|
+
"type": "'left' | 'right'"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "variant",
|
|
397
|
+
"description": "The variant of the accordion.",
|
|
398
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "lastItem",
|
|
402
|
+
"description": "Whether the accordion is the last item.",
|
|
403
|
+
"type": "boolean"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"name": "disabled",
|
|
407
|
+
"description": "Whether the accordion is disabled.",
|
|
408
|
+
"type": "boolean"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"name": "loading",
|
|
412
|
+
"description": "Whether the accordion is in loading state.",
|
|
413
|
+
"type": "boolean"
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
"events": [
|
|
417
|
+
{
|
|
418
|
+
"name": "dds-opened",
|
|
419
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
420
|
+
"description": "Event fired when the accordion is opened."
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "dds-closed",
|
|
424
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
425
|
+
"description": "Event fired when the accordion is closed."
|
|
426
|
+
}
|
|
427
|
+
]
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "dap-ds-avatar",
|
|
432
|
+
"description": "Avatar component can be used to display user profile images, initials, or icons.\n---\n\n\n### **Events:**\n - **dds-load** - Fired when the image loads successfully.\n- **dds-error** - Fired when the image fails to load.\n\n### **Slots:**\n - **icon** - The icon to display when variant is 'icon'.\n- **fallback** - Custom fallback content when image fails to load.\n\n### **CSS Properties:**\n - **--dds-avatar-border-radius** - The border radius of the avatar (default: 50%) _(default: undefined)_\n- **--dds-avatar-background-color** - The background color of the avatar (default: var(--dds-neutral-200)) _(default: undefined)_\n- **--dds-avatar-border-width** - The border width of the avatar (default: 0) _(default: undefined)_\n- **--dds-avatar-border-color** - The color of the avatar's border (default: transparent) _(default: undefined)_\n- **--dds-avatar-border-style** - The style of the avatar's border (default: solid) _(default: undefined)_\n- **--dds-avatar-transition** - The transition property for the avatar (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-avatar-text-color** - The text color for initials (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-avatar-font-weight** - The font weight for initials (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-avatar-lg-size** - Size for large avatars (default: var(--dds-avatar-size-lg)) _(default: undefined)_\n- **--dds-avatar-md-size** - Size for medium avatars (default: var(--dds-avatar-size-md)) _(default: undefined)_\n- **--dds-avatar-sm-size** - Size for small avatars (default: var(--dds-avatar-size-sm)) _(default: undefined)_\n- **--dds-avatar-xs-size** - Size for extra small avatars (default: var(--dds-avatar-size-xs)) _(default: undefined)_\n- **--dds-avatar-xxs-size** - Size for extra extra small avatars (default: var(--dds-avatar-size-xxs)) _(default: undefined)_\n- **--dds-avatar-font-size-lg** - Font size for large avatars (default: var(--dds-font-2xl)) _(default: undefined)_\n- **--dds-avatar-font-size-md** - Font size for medium avatars (default: var(--dds-font-lg)) _(default: undefined)_\n- **--dds-avatar-font-size-sm** - Font size for small avatars (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-avatar-font-size-xs** - Font size for extra small avatars (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-avatar-font-size-xxs** - Font size for extra extra small avatars (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-avatar-hover-transform** - Transform applied on hover for interactive avatars (default: scale(1.05)) _(default: undefined)_\n- **--dds-avatar-active-transform** - Transform applied when active for interactive avatars (default: scale(0.95)) _(default: undefined)_\n- **--dds-avatar-focus-ring** - Focus ring style for interactive avatars (default: 0 0 0 2px var(--dds-focus-outer-ring)) _(default: undefined)_\n- **--dds-avatar-loading-background** - Background color when loading (default: var(--dds-neutral-100)) _(default: undefined)_\n- **--dds-avatar-error-background** - Background color when image fails to load (default: var(--dds-negative-100)) _(default: undefined)_\n- **--dds-avatar-error-color** - Text color when image fails to load (default: var(--dds-negative-600)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main avatar container.\n- **img** - The avatar image.\n- **initials** - The initials container.\n- **icon** - The icon container.\n- **fallback** - The fallback content container.\n- **loading** - The loading indicator.",
|
|
433
|
+
"doc-url": "",
|
|
434
|
+
"attributes": [
|
|
657
435
|
{
|
|
658
436
|
"name": "shape",
|
|
659
|
-
"description": "The shape of the
|
|
660
|
-
"value": {
|
|
437
|
+
"description": "The shape of the avatar",
|
|
438
|
+
"value": {
|
|
439
|
+
"type": "'circle' | 'rounded' | 'square'",
|
|
440
|
+
"default": "'circle'"
|
|
441
|
+
}
|
|
661
442
|
},
|
|
662
443
|
{
|
|
663
|
-
"name": "
|
|
664
|
-
"description": "The
|
|
444
|
+
"name": "variant",
|
|
445
|
+
"description": "The variant type of the avatar",
|
|
665
446
|
"value": {
|
|
666
|
-
"type": "'
|
|
667
|
-
"default": "'
|
|
447
|
+
"type": "'image' | 'initials' | 'icon'",
|
|
448
|
+
"default": "'image'"
|
|
668
449
|
}
|
|
669
450
|
},
|
|
670
451
|
{
|
|
671
|
-
"name": "
|
|
672
|
-
"description": "The
|
|
673
|
-
"value": { "type": "string
|
|
452
|
+
"name": "src",
|
|
453
|
+
"description": "The source of the avatar image",
|
|
454
|
+
"value": { "type": "string" }
|
|
674
455
|
},
|
|
675
456
|
{
|
|
676
|
-
"name": "
|
|
677
|
-
"description": "The
|
|
678
|
-
"value": {
|
|
679
|
-
"type": "'_blank' | '_self' | '_parent' | '_top'",
|
|
680
|
-
"default": "'_self'"
|
|
681
|
-
}
|
|
457
|
+
"name": "alt",
|
|
458
|
+
"description": "The alt text of the avatar",
|
|
459
|
+
"value": { "type": "string" }
|
|
682
460
|
},
|
|
683
461
|
{
|
|
684
|
-
"name": "
|
|
685
|
-
"description": "The
|
|
686
|
-
"value": {
|
|
687
|
-
"type": "string | undefined",
|
|
688
|
-
"default": "'noreferrer noopener'"
|
|
689
|
-
}
|
|
462
|
+
"name": "initials",
|
|
463
|
+
"description": "The initials to display when variant is 'initials'",
|
|
464
|
+
"value": { "type": "string" }
|
|
690
465
|
},
|
|
691
466
|
{
|
|
692
|
-
"name": "
|
|
693
|
-
"description": "
|
|
694
|
-
"value": { "type": "
|
|
467
|
+
"name": "label",
|
|
468
|
+
"description": "Accessible label for the avatar",
|
|
469
|
+
"value": { "type": "string" }
|
|
695
470
|
},
|
|
696
471
|
{
|
|
697
|
-
"name": "
|
|
698
|
-
"description": "
|
|
472
|
+
"name": "loading",
|
|
473
|
+
"description": "Loading state indicator",
|
|
699
474
|
"value": { "type": "boolean", "default": "false" }
|
|
700
475
|
},
|
|
701
476
|
{
|
|
702
|
-
"name": "
|
|
703
|
-
"description": "
|
|
704
|
-
"value": { "type": "
|
|
477
|
+
"name": "interactive",
|
|
478
|
+
"description": "Whether the avatar is interactive (clickable)",
|
|
479
|
+
"value": { "type": "boolean", "default": "false" }
|
|
705
480
|
},
|
|
706
481
|
{
|
|
707
|
-
"name": "
|
|
708
|
-
"description": "
|
|
709
|
-
"value": { "type": "
|
|
482
|
+
"name": "width",
|
|
483
|
+
"description": "The width of the avatar. This will override the size",
|
|
484
|
+
"value": { "type": "number" }
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"name": "height",
|
|
488
|
+
"description": "The height of the avatar. This will override the size",
|
|
489
|
+
"value": { "type": "number" }
|
|
710
490
|
}
|
|
711
491
|
],
|
|
712
492
|
"slots": [
|
|
713
493
|
{
|
|
714
|
-
"name": "",
|
|
715
|
-
"description": "The
|
|
494
|
+
"name": "icon",
|
|
495
|
+
"description": "The icon to display when variant is 'icon'."
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "fallback",
|
|
499
|
+
"description": "Custom fallback content when image fails to load."
|
|
716
500
|
}
|
|
717
501
|
],
|
|
718
502
|
"events": [
|
|
719
503
|
{
|
|
720
|
-
"name": "dds-
|
|
721
|
-
"description": "
|
|
504
|
+
"name": "dds-load",
|
|
505
|
+
"description": "Fired when the image loads successfully."
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"name": "dds-error",
|
|
509
|
+
"description": "Fired when the image fails to load."
|
|
722
510
|
}
|
|
723
511
|
],
|
|
724
512
|
"js": {
|
|
725
513
|
"properties": [
|
|
726
514
|
{
|
|
727
|
-
"name": "
|
|
728
|
-
"description": "The
|
|
729
|
-
"type": "'
|
|
730
|
-
},
|
|
731
|
-
{
|
|
732
|
-
"name": "size",
|
|
733
|
-
"description": "The size of the button affecting padding and font size",
|
|
734
|
-
"type": "'lg' | 'md' | 'sm' | 'xs'"
|
|
515
|
+
"name": "shape",
|
|
516
|
+
"description": "The shape of the avatar",
|
|
517
|
+
"type": "'circle' | 'rounded' | 'square'"
|
|
735
518
|
},
|
|
736
519
|
{
|
|
737
|
-
"name": "
|
|
738
|
-
"description": "
|
|
739
|
-
"type": "
|
|
520
|
+
"name": "variant",
|
|
521
|
+
"description": "The variant type of the avatar",
|
|
522
|
+
"type": "'image' | 'initials' | 'icon'"
|
|
740
523
|
},
|
|
741
524
|
{
|
|
742
|
-
"name": "
|
|
743
|
-
"description": "
|
|
744
|
-
"type": "
|
|
525
|
+
"name": "src",
|
|
526
|
+
"description": "The source of the avatar image",
|
|
527
|
+
"type": "string"
|
|
745
528
|
},
|
|
746
529
|
{
|
|
747
|
-
"name": "
|
|
748
|
-
"description": "The
|
|
749
|
-
"type": "
|
|
530
|
+
"name": "alt",
|
|
531
|
+
"description": "The alt text of the avatar",
|
|
532
|
+
"type": "string"
|
|
750
533
|
},
|
|
751
534
|
{
|
|
752
|
-
"name": "
|
|
753
|
-
"description": "The
|
|
754
|
-
"type": "
|
|
535
|
+
"name": "initials",
|
|
536
|
+
"description": "The initials to display when variant is 'initials'",
|
|
537
|
+
"type": "string"
|
|
755
538
|
},
|
|
756
539
|
{
|
|
757
|
-
"name": "
|
|
758
|
-
"description": "
|
|
759
|
-
"type": "string
|
|
540
|
+
"name": "label",
|
|
541
|
+
"description": "Accessible label for the avatar",
|
|
542
|
+
"type": "string"
|
|
760
543
|
},
|
|
761
544
|
{
|
|
762
|
-
"name": "
|
|
763
|
-
"description": "
|
|
764
|
-
"type": "
|
|
545
|
+
"name": "loading",
|
|
546
|
+
"description": "Loading state indicator",
|
|
547
|
+
"type": "boolean"
|
|
765
548
|
},
|
|
766
549
|
{
|
|
767
|
-
"name": "
|
|
768
|
-
"description": "
|
|
769
|
-
"type": "
|
|
550
|
+
"name": "interactive",
|
|
551
|
+
"description": "Whether the avatar is interactive (clickable)",
|
|
552
|
+
"type": "boolean"
|
|
770
553
|
},
|
|
771
554
|
{
|
|
772
|
-
"name": "
|
|
773
|
-
"description": "
|
|
555
|
+
"name": "width",
|
|
556
|
+
"description": "The width of the avatar. This will override the size",
|
|
774
557
|
"type": "number"
|
|
775
558
|
},
|
|
776
559
|
{
|
|
777
|
-
"name": "
|
|
778
|
-
"description": "
|
|
779
|
-
"type": "
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"name": "targetBlankText",
|
|
783
|
-
"description": "The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text",
|
|
784
|
-
"type": "string"
|
|
560
|
+
"name": "height",
|
|
561
|
+
"description": "The height of the avatar. This will override the size",
|
|
562
|
+
"type": "number"
|
|
785
563
|
},
|
|
786
564
|
{
|
|
787
|
-
"name": "
|
|
788
|
-
"description": "
|
|
789
|
-
"type": "
|
|
565
|
+
"name": "size",
|
|
566
|
+
"description": "The size of the avatar. Default is `md`.",
|
|
567
|
+
"type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
|
|
790
568
|
},
|
|
791
569
|
{
|
|
792
570
|
"name": "sizeMap",
|
|
793
|
-
"description": "
|
|
571
|
+
"description": "Responsive size map (e.g. \"md:lg\").",
|
|
794
572
|
"type": "string"
|
|
795
573
|
}
|
|
796
574
|
],
|
|
797
575
|
"events": [
|
|
798
576
|
{
|
|
799
|
-
"name": "dds-
|
|
800
|
-
"description": "
|
|
577
|
+
"name": "dds-load",
|
|
578
|
+
"description": "Fired when the image loads successfully."
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "dds-error",
|
|
582
|
+
"description": "Fired when the image fails to load."
|
|
801
583
|
}
|
|
802
584
|
]
|
|
803
585
|
}
|
|
804
586
|
},
|
|
587
|
+
{
|
|
588
|
+
"name": "dap-ds-accordion-group",
|
|
589
|
+
"description": "An accordion group is a collection of accordion components.\n---\n\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.",
|
|
590
|
+
"doc-url": "",
|
|
591
|
+
"attributes": [
|
|
592
|
+
{
|
|
593
|
+
"name": "autoClose",
|
|
594
|
+
"description": "Whether to close other accordions when one is opened.",
|
|
595
|
+
"value": { "type": "string", "default": "'true'" }
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "variant",
|
|
599
|
+
"description": "The variant of the accordion",
|
|
600
|
+
"value": {
|
|
601
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'",
|
|
602
|
+
"default": "'default'"
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
],
|
|
606
|
+
"slots": [
|
|
607
|
+
{ "name": "", "description": "The content of the accordion group." }
|
|
608
|
+
],
|
|
609
|
+
"events": [],
|
|
610
|
+
"js": {
|
|
611
|
+
"properties": [
|
|
612
|
+
{
|
|
613
|
+
"name": "autoClose",
|
|
614
|
+
"description": "Whether to close other accordions when one is opened.",
|
|
615
|
+
"type": "string"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"name": "variant",
|
|
619
|
+
"description": "The variant of the accordion",
|
|
620
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
621
|
+
}
|
|
622
|
+
],
|
|
623
|
+
"events": []
|
|
624
|
+
}
|
|
625
|
+
},
|
|
805
626
|
{
|
|
806
627
|
"name": "dap-ds-breadcrumb-item",
|
|
807
628
|
"description": "A breadcrumb item 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 item.\n- **separator** - The separator between breadcrumb items. Default is an arrow-right-s-line icon.\n\n### **CSS Properties:**\n - **--dds-breadcrumb-item-display** - The display property of the breadcrumb item (default: inline-flex) _(default: undefined)_\n- **--dds-breadcrumb-item-flex-wrap** - The flex-wrap property of the breadcrumb item (default: nowrap) _(default: undefined)_\n- **--dds-breadcrumb-item-align-items** - The align-items property of the breadcrumb item (default: center) _(default: undefined)_\n- **--dds-breadcrumb-item-color** - The text color of the breadcrumb item (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-breadcrumb-item-transition** - The transition property for the breadcrumb item (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-breadcrumb-item-gap** - The gap between the breadcrumb item and the separator (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-breadcrumb-item-padding** - The padding of the breadcrumb item (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-breadcrumb-item-font-size** - The font size of the breadcrumb item (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-breadcrumb-item-font-weight** - The font weight of the breadcrumb item (default: var(--dds-font-weight-medium)) _(default: undefined)_\n- **--dds-breadcrumb-item-font-weight-bold** - The bold font weight of the breadcrumb item (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-breadcrumb-item-separator-color** - The color of the separator (default: var(--dds-text-neutral-disabled)) _(default: undefined)_\n- **--dds-breadcrumb-item-link-color** - The color of the link (default: var(--dds-link-neutral-enabled)) _(default: undefined)_\n- **--dds-breadcrumb-item-inverted-color** - The text color when inverted (default: var(--dds-text-neutral-inverted)) _(default: undefined)_\n- **--dds-breadcrumb-item-inverted-link-color** - The link color when inverted (default: var(--dds-text-neutral-inverted)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main breadcrumb item container. The li element.\n- **link** - The link of the breadcrumb item. The dds-link component.\n- **link-base** - The base part of the link part. The dds-link components base part.\n- **item-nolink** - The item of the breadcrumb item without a link. The span element.\n- **separator** - The separator of the breadcrumb item.",
|
|
@@ -879,125 +700,180 @@
|
|
|
879
700
|
}
|
|
880
701
|
},
|
|
881
702
|
{
|
|
882
|
-
"name": "dap-ds-
|
|
883
|
-
"description": "`dap-ds-callout` is a custom callout component.\n---\n\n\n### **Events:**\n - **dds-close** - Fired when the close button is clicked.\n\n### **Slots:**\n - _default_ - The content of the callout.\n- **title** - The title of the callout.\n- **icon** - The icon of the callout.\n- **actions** - The actions of the callout.\n- **close** - The close button of the callout.\n\n### **CSS Properties:**\n - **--dds-callout-padding** - Padding of the callout content. (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-callout-gap** - Gap between elements in horizontal layout. (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-callout-icon-size** - Size of the icon. (default: var(--dds-spacing-600)) _(default: undefined)_\n- **--dds-callout-title-color** - Color of the title text. (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-callout-description-color** - Color of the description text. (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-callout-title-font-size** - Font size of the title. (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-callout-description-font-size** - Font size of the description. (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-callout-title-font-weight** - Font weight of the title. (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-callout-description-font-weight** - Font weight of the description. (default: var(--dds-font-weight-medium)) _(default: undefined)_\n- **--dds-callout-actions-font-weight** - Font weight of the actions. (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-callout-actions-gap** - Gap between action items. (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-callout-content-gap** - Gap between content elements. (default: var(--dds-spacing-100)) _(default: undefined)_\n- **--dds-callout-border-radius** - Border radius of the callout. (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-callout-brand-background** - Brand variant background color. (default: var(--dds-background-brand-base)) _(default: undefined)_\n- **--dds-callout-brand-background-subtle** - Brand variant subtle background color. (default: var(--dds-background-brand-subtle)) _(default: undefined)_\n- **--dds-callout-brand-background-medium** - Brand variant medium background color. (default: var(--dds-background-brand-medium)) _(default: undefined)_\n- **--dds-callout-brand-background-strong** - Brand variant strong background color. (default: var(--dds-background-brand-strong)) _(default: undefined)_\n- **--dds-callout-brand-icon** - Brand variant icon color. (default: var(--dds-icon-brand-subtle)) _(default: undefined)_\n- **--dds-callout-brand-border** - Brand variant border color. (default: var(--dds-border-brand-subtle)) _(default: undefined)_\n- **--dds-callout-info-background** - Info variant background color. (default: var(--dds-background-informative-base)) _(default: undefined)_\n- **--dds-callout-info-background-subtle** - Info variant subtle background color. (default: var(--dds-background-informative-subtle)) _(default: undefined)_\n- **--dds-callout-info-background-medium** - Info variant medium background color. (default: var(--dds-background-informative-medium)) _(default: undefined)_\n- **--dds-callout-info-background-strong** - Info variant strong background color. (default: var(--dds-background-informative-strong)) _(default: undefined)_\n- **--dds-callout-info-icon** - Info variant icon color. (default: var(--dds-icon-informative-subtle)) _(default: undefined)_\n- **--dds-callout-info-border** - Info variant border color. (default: var(--dds-border-informative-subtle)) _(default: undefined)_\n- **--dds-callout-positive-background** - Positive variant background color. (default: var(--dds-background-positive-base)) _(default: undefined)_\n- **--dds-callout-positive-background-subtle** - Positive variant subtle background color. (default: var(--dds-background-positive-subtle)) _(default: undefined)_\n- **--dds-callout-positive-background-medium** - Positive variant medium background color. (default: var(--dds-background-positive-medium)) _(default: undefined)_\n- **--dds-callout-positive-background-strong** - Positive variant strong background color. (default: var(--dds-background-positive-strong)) _(default: undefined)_\n- **--dds-callout-positive-icon** - Positive variant icon color. (default: var(--dds-icon-positive-subtle)) _(default: undefined)_\n- **--dds-callout-positive-border** - Positive variant border color. (default: var(--dds-border-positive-subtle)) _(default: undefined)_\n- **--dds-callout-warning-background** - Warning variant background color. (default: var(--dds-background-warning-base)) _(default: undefined)_\n- **--dds-callout-warning-background-subtle** - Warning variant subtle background color. (default: var(--dds-background-warning-subtle)) _(default: undefined)_\n- **--dds-callout-warning-background-medium** - Warning variant medium background color. (default: var(--dds-background-warning-medium)) _(default: undefined)_\n- **--dds-callout-warning-background-strong** - Warning variant strong background color. (default: var(--dds-background-warning-strong)) _(default: undefined)_\n- **--dds-callout-warning-icon** - Warning variant icon color. (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-callout-warning-border** - Warning variant border color. (default: var(--dds-border-warning-subtle)) _(default: undefined)_\n- **--dds-callout-negative-background** - Negative variant background color. (default: var(--dds-background-negative-base)) _(default: undefined)_\n- **--dds-callout-negative-background-subtle** - Negative variant subtle background color. (default: var(--dds-background-negative-subtle)) _(default: undefined)_\n- **--dds-callout-negative-background-medium** - Negative variant medium background color. (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-callout-negative-background-strong** - Negative variant strong background color. (default: var(--dds-background-negative-strong)) _(default: undefined)_\n- **--dds-callout-negative-icon** - Negative variant icon color. (default: var(--dds-icon-negative-subtle)) _(default: undefined)_\n- **--dds-callout-negative-border** - Negative variant border color. (default: var(--dds-border-negative-subtle)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main callout container.\n- **content** - The content of the callout.\n- **card-content** - The content of the card.\n- **icon** - The icon of the callout.\n- **title** - The title of the callout.\n- **description** - The description of the callout.\n- **actions** - The actions of the callout.\n- **close** - The close button of the callout.",
|
|
703
|
+
"name": "dap-ds-button",
|
|
704
|
+
"description": "A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.\n---\n\n\n### **Events:**\n - **dds-loading-timeout** - Emitted when the loading timeout is reached\n\n### **Slots:**\n - _default_ - The content of the button. Can contain text, icons, or other elements.\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.\n- **content** - The content wrapper inside the button.",
|
|
884
705
|
"doc-url": "",
|
|
885
706
|
"attributes": [
|
|
886
707
|
{
|
|
887
708
|
"name": "variant",
|
|
888
|
-
"description": "The variant of the
|
|
709
|
+
"description": "The visual style variant of the button",
|
|
889
710
|
"value": {
|
|
890
|
-
"type": "'
|
|
891
|
-
"default": "'
|
|
711
|
+
"type": "'primary' | 'outline' | 'subtle' | 'subtle-neutral' | 'subtle-quiet' | 'subtle-quiet-inverted' | 'clean' | 'primary-inverted' | 'outline-inverted' | 'subtle-inverted' | 'clean-inverted' | 'subtle-menu' | 'subtle-menu-item'",
|
|
712
|
+
"default": "'primary'"
|
|
892
713
|
}
|
|
893
714
|
},
|
|
894
715
|
{
|
|
895
|
-
"name": "
|
|
896
|
-
"description": "The
|
|
716
|
+
"name": "size",
|
|
717
|
+
"description": "The size of the button affecting padding and font size",
|
|
718
|
+
"value": {
|
|
719
|
+
"type": "'lg' | 'md' | 'sm' | 'xs'",
|
|
720
|
+
"default": "'md'"
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "loading",
|
|
725
|
+
"description": "Whether the button is in loading state, showing a spinner and disabling interaction",
|
|
726
|
+
"value": { "type": "boolean", "default": "false" }
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"name": "danger",
|
|
730
|
+
"description": "Whether the button represents a destructive action (applies danger styling)",
|
|
731
|
+
"value": { "type": "boolean", "default": "false" }
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"name": "shape",
|
|
735
|
+
"description": "The shape of the button - use 'circle' for icon-only buttons",
|
|
736
|
+
"value": { "type": "'button' | 'circle'", "default": "'button'" }
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"name": "htmlType",
|
|
740
|
+
"description": "The HTML type attribute for form interaction",
|
|
741
|
+
"value": {
|
|
742
|
+
"type": "'button' | 'submit' | 'reset'",
|
|
743
|
+
"default": "'button'"
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "href",
|
|
748
|
+
"description": "The URL to navigate to. When present, the button renders as an anchor element",
|
|
749
|
+
"value": { "type": "string | undefined" }
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"name": "target",
|
|
753
|
+
"description": "The target attribute for link navigation",
|
|
897
754
|
"value": {
|
|
898
|
-
"type": "'
|
|
899
|
-
"default": "'
|
|
755
|
+
"type": "'_blank' | '_self' | '_parent' | '_top'",
|
|
756
|
+
"default": "'_self'"
|
|
900
757
|
}
|
|
901
758
|
},
|
|
902
759
|
{
|
|
903
|
-
"name": "
|
|
904
|
-
"description": "The
|
|
760
|
+
"name": "rel",
|
|
761
|
+
"description": "The rel attribute for link security and behavior",
|
|
905
762
|
"value": {
|
|
906
|
-
"type": "
|
|
907
|
-
"default": "'
|
|
763
|
+
"type": "string | undefined",
|
|
764
|
+
"default": "'noreferrer noopener'"
|
|
908
765
|
}
|
|
909
766
|
},
|
|
910
767
|
{
|
|
911
|
-
"name": "
|
|
912
|
-
"description": "
|
|
913
|
-
"value": { "type": "
|
|
768
|
+
"name": "loadingTimeout",
|
|
769
|
+
"description": "Controls loading timeout in milliseconds",
|
|
770
|
+
"value": { "type": "number", "default": "0" }
|
|
914
771
|
},
|
|
915
772
|
{
|
|
916
|
-
"name": "
|
|
917
|
-
"description": "
|
|
773
|
+
"name": "active",
|
|
774
|
+
"description": "Whether the button is active",
|
|
918
775
|
"value": { "type": "boolean", "default": "false" }
|
|
919
776
|
},
|
|
920
777
|
{
|
|
921
|
-
"name": "
|
|
922
|
-
"description": "The
|
|
923
|
-
"value": { "type": "string" }
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
"name": "closeButtonLabel",
|
|
927
|
-
"description": "The label of the close button",
|
|
778
|
+
"name": "targetBlankText",
|
|
779
|
+
"description": "The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text",
|
|
928
780
|
"value": { "type": "string" }
|
|
929
781
|
},
|
|
930
782
|
{
|
|
931
|
-
"name": "
|
|
932
|
-
"description": "
|
|
933
|
-
"value": { "type": "string
|
|
783
|
+
"name": "forceRole",
|
|
784
|
+
"description": "Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role=\"link\" on a button acting as a SPA navigation trigger).",
|
|
785
|
+
"value": { "type": "string | undefined" }
|
|
934
786
|
}
|
|
935
787
|
],
|
|
936
788
|
"slots": [
|
|
937
|
-
{ "name": "", "description": "The content of the callout." },
|
|
938
|
-
{ "name": "title", "description": "The title of the callout." },
|
|
939
|
-
{ "name": "icon", "description": "The icon of the callout." },
|
|
940
|
-
{ "name": "actions", "description": "The actions of the callout." },
|
|
941
789
|
{
|
|
942
|
-
"name": "
|
|
943
|
-
"description": "The
|
|
790
|
+
"name": "",
|
|
791
|
+
"description": "The content of the button. Can contain text, icons, or other elements."
|
|
944
792
|
}
|
|
945
793
|
],
|
|
946
794
|
"events": [
|
|
947
795
|
{
|
|
948
|
-
"name": "dds-
|
|
949
|
-
"
|
|
950
|
-
"description": "Fired when the close button is clicked."
|
|
796
|
+
"name": "dds-loading-timeout",
|
|
797
|
+
"description": "Emitted when the loading timeout is reached"
|
|
951
798
|
}
|
|
952
799
|
],
|
|
953
800
|
"js": {
|
|
954
801
|
"properties": [
|
|
955
802
|
{
|
|
956
803
|
"name": "variant",
|
|
957
|
-
"description": "The variant of the
|
|
958
|
-
"type": "'
|
|
804
|
+
"description": "The visual style variant of the button",
|
|
805
|
+
"type": "'primary' | 'outline' | 'subtle' | 'subtle-neutral' | 'subtle-quiet' | 'subtle-quiet-inverted' | 'clean' | 'primary-inverted' | 'outline-inverted' | 'subtle-inverted' | 'clean-inverted' | 'subtle-menu' | 'subtle-menu-item'"
|
|
959
806
|
},
|
|
960
807
|
{
|
|
961
|
-
"name": "
|
|
962
|
-
"description": "The
|
|
963
|
-
"type": "'
|
|
808
|
+
"name": "size",
|
|
809
|
+
"description": "The size of the button affecting padding and font size",
|
|
810
|
+
"type": "'lg' | 'md' | 'sm' | 'xs'"
|
|
964
811
|
},
|
|
965
812
|
{
|
|
966
|
-
"name": "
|
|
967
|
-
"description": "
|
|
968
|
-
"type": "
|
|
813
|
+
"name": "loading",
|
|
814
|
+
"description": "Whether the button is in loading state, showing a spinner and disabling interaction",
|
|
815
|
+
"type": "boolean"
|
|
969
816
|
},
|
|
970
817
|
{
|
|
971
|
-
"name": "
|
|
972
|
-
"description": "
|
|
973
|
-
"type": "
|
|
818
|
+
"name": "danger",
|
|
819
|
+
"description": "Whether the button represents a destructive action (applies danger styling)",
|
|
820
|
+
"type": "boolean"
|
|
974
821
|
},
|
|
975
822
|
{
|
|
976
|
-
"name": "
|
|
977
|
-
"description": "
|
|
823
|
+
"name": "shape",
|
|
824
|
+
"description": "The shape of the button - use 'circle' for icon-only buttons",
|
|
825
|
+
"type": "'button' | 'circle'"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"name": "htmlType",
|
|
829
|
+
"description": "The HTML type attribute for form interaction",
|
|
830
|
+
"type": "'button' | 'submit' | 'reset'"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"name": "href",
|
|
834
|
+
"description": "The URL to navigate to. When present, the button renders as an anchor element",
|
|
835
|
+
"type": "string | undefined"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"name": "target",
|
|
839
|
+
"description": "The target attribute for link navigation",
|
|
840
|
+
"type": "'_blank' | '_self' | '_parent' | '_top'"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"name": "rel",
|
|
844
|
+
"description": "The rel attribute for link security and behavior",
|
|
845
|
+
"type": "string | undefined"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"name": "loadingTimeout",
|
|
849
|
+
"description": "Controls loading timeout in milliseconds",
|
|
850
|
+
"type": "number"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"name": "active",
|
|
854
|
+
"description": "Whether the button is active",
|
|
978
855
|
"type": "boolean"
|
|
979
856
|
},
|
|
980
857
|
{
|
|
981
|
-
"name": "
|
|
982
|
-
"description": "The
|
|
858
|
+
"name": "targetBlankText",
|
|
859
|
+
"description": "The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text",
|
|
983
860
|
"type": "string"
|
|
984
861
|
},
|
|
985
862
|
{
|
|
986
|
-
"name": "
|
|
987
|
-
"description": "
|
|
988
|
-
"type": "string"
|
|
863
|
+
"name": "forceRole",
|
|
864
|
+
"description": "Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role=\"link\" on a button acting as a SPA navigation trigger).",
|
|
865
|
+
"type": "string | undefined"
|
|
989
866
|
},
|
|
990
867
|
{
|
|
991
|
-
"name": "
|
|
992
|
-
"description": "
|
|
868
|
+
"name": "sizeMap",
|
|
869
|
+
"description": "The size map of the button.",
|
|
993
870
|
"type": "string"
|
|
994
871
|
}
|
|
995
872
|
],
|
|
996
873
|
"events": [
|
|
997
874
|
{
|
|
998
|
-
"name": "dds-
|
|
999
|
-
"
|
|
1000
|
-
"description": "Fired when the close button is clicked."
|
|
875
|
+
"name": "dds-loading-timeout",
|
|
876
|
+
"description": "Emitted when the loading timeout is reached"
|
|
1001
877
|
}
|
|
1002
878
|
]
|
|
1003
879
|
}
|
|
@@ -1144,85 +1020,209 @@
|
|
|
1144
1020
|
"value": { "type": "boolean", "default": "false" }
|
|
1145
1021
|
},
|
|
1146
1022
|
{
|
|
1147
|
-
"name": "locale",
|
|
1148
|
-
"description": "The locale of the calendar.",
|
|
1149
|
-
"value": {
|
|
1150
|
-
"type": "'hu' | 'en' | 'de'",
|
|
1151
|
-
"default": "dayjs.locale()"
|
|
1152
|
-
}
|
|
1023
|
+
"name": "locale",
|
|
1024
|
+
"description": "The locale of the calendar.",
|
|
1025
|
+
"value": {
|
|
1026
|
+
"type": "'hu' | 'en' | 'de'",
|
|
1027
|
+
"default": "dayjs.locale()"
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
],
|
|
1031
|
+
"slots": [
|
|
1032
|
+
{ "name": "", "description": "The content of the calendar." }
|
|
1033
|
+
],
|
|
1034
|
+
"events": [
|
|
1035
|
+
{
|
|
1036
|
+
"name": "dds-change",
|
|
1037
|
+
"type": "{ value: Dayjs }",
|
|
1038
|
+
"description": "Fired when the calendar value changes."
|
|
1039
|
+
}
|
|
1040
|
+
],
|
|
1041
|
+
"js": {
|
|
1042
|
+
"properties": [
|
|
1043
|
+
{
|
|
1044
|
+
"name": "mode",
|
|
1045
|
+
"description": "The mode of the calendar - single date or range selection.",
|
|
1046
|
+
"type": "'single' | 'range'"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"name": "hideAdjacentMonths",
|
|
1050
|
+
"description": "Whether to hide dates from adjacent months (previous/next) in the calendar grid. When not explicitly set, defaults to false for single mode and true for range mode.",
|
|
1051
|
+
"type": "boolean"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"name": "value",
|
|
1055
|
+
"description": "The value of the calendar.",
|
|
1056
|
+
"type": "Dayjs"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"name": "rangeStart",
|
|
1060
|
+
"description": "The start date of the range selection (only used in range mode).",
|
|
1061
|
+
"type": "Dayjs"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"name": "rangeEnd",
|
|
1065
|
+
"description": "The end date of the range selection (only used in range mode).",
|
|
1066
|
+
"type": "Dayjs"
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"name": "currentDate",
|
|
1070
|
+
"description": "The current visible date of the calendar. Only the month and year are considered.",
|
|
1071
|
+
"type": "Dayjs"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"name": "minDate",
|
|
1075
|
+
"description": "The minimum date of the calendar. Only the month and year are considered.",
|
|
1076
|
+
"type": "Dayjs"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"name": "maxDate",
|
|
1080
|
+
"description": "The maximum date of the calendar. Only the month and year are considered.",
|
|
1081
|
+
"type": "Dayjs"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"name": "disabledDate",
|
|
1085
|
+
"description": "The function to determine if the date is disabled.",
|
|
1086
|
+
"type": "Function"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"name": "locale",
|
|
1090
|
+
"description": "The locale of the calendar.",
|
|
1091
|
+
"type": "'hu' | 'en' | 'de'"
|
|
1092
|
+
},
|
|
1093
|
+
{ "name": "startDate" },
|
|
1094
|
+
{ "name": "endDate" },
|
|
1095
|
+
{ "name": "shouldHideAdjacentMonths" }
|
|
1096
|
+
],
|
|
1097
|
+
"events": [
|
|
1098
|
+
{
|
|
1099
|
+
"name": "dds-change",
|
|
1100
|
+
"type": "{ value: Dayjs }",
|
|
1101
|
+
"description": "Fired when the calendar value changes."
|
|
1102
|
+
}
|
|
1103
|
+
]
|
|
1104
|
+
}
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"name": "dap-ds-callout",
|
|
1108
|
+
"description": "`dap-ds-callout` is a custom callout component.\n---\n\n\n### **Events:**\n - **dds-close** - Fired when the close button is clicked.\n\n### **Slots:**\n - _default_ - The content of the callout.\n- **title** - The title of the callout.\n- **icon** - The icon of the callout.\n- **actions** - The actions of the callout.\n- **close** - The close button of the callout.\n\n### **CSS Properties:**\n - **--dds-callout-padding** - Padding of the callout content. (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-callout-gap** - Gap between elements in horizontal layout. (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-callout-icon-size** - Size of the icon. (default: var(--dds-spacing-600)) _(default: undefined)_\n- **--dds-callout-title-color** - Color of the title text. (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-callout-description-color** - Color of the description text. (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-callout-title-font-size** - Font size of the title. (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-callout-description-font-size** - Font size of the description. (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-callout-title-font-weight** - Font weight of the title. (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-callout-description-font-weight** - Font weight of the description. (default: var(--dds-font-weight-medium)) _(default: undefined)_\n- **--dds-callout-actions-font-weight** - Font weight of the actions. (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-callout-actions-gap** - Gap between action items. (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-callout-content-gap** - Gap between content elements. (default: var(--dds-spacing-100)) _(default: undefined)_\n- **--dds-callout-border-radius** - Border radius of the callout. (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-callout-brand-background** - Brand variant background color. (default: var(--dds-background-brand-base)) _(default: undefined)_\n- **--dds-callout-brand-background-subtle** - Brand variant subtle background color. (default: var(--dds-background-brand-subtle)) _(default: undefined)_\n- **--dds-callout-brand-background-medium** - Brand variant medium background color. (default: var(--dds-background-brand-medium)) _(default: undefined)_\n- **--dds-callout-brand-background-strong** - Brand variant strong background color. (default: var(--dds-background-brand-strong)) _(default: undefined)_\n- **--dds-callout-brand-icon** - Brand variant icon color. (default: var(--dds-icon-brand-subtle)) _(default: undefined)_\n- **--dds-callout-brand-border** - Brand variant border color. (default: var(--dds-border-brand-subtle)) _(default: undefined)_\n- **--dds-callout-info-background** - Info variant background color. (default: var(--dds-background-informative-base)) _(default: undefined)_\n- **--dds-callout-info-background-subtle** - Info variant subtle background color. (default: var(--dds-background-informative-subtle)) _(default: undefined)_\n- **--dds-callout-info-background-medium** - Info variant medium background color. (default: var(--dds-background-informative-medium)) _(default: undefined)_\n- **--dds-callout-info-background-strong** - Info variant strong background color. (default: var(--dds-background-informative-strong)) _(default: undefined)_\n- **--dds-callout-info-icon** - Info variant icon color. (default: var(--dds-icon-informative-subtle)) _(default: undefined)_\n- **--dds-callout-info-border** - Info variant border color. (default: var(--dds-border-informative-subtle)) _(default: undefined)_\n- **--dds-callout-positive-background** - Positive variant background color. (default: var(--dds-background-positive-base)) _(default: undefined)_\n- **--dds-callout-positive-background-subtle** - Positive variant subtle background color. (default: var(--dds-background-positive-subtle)) _(default: undefined)_\n- **--dds-callout-positive-background-medium** - Positive variant medium background color. (default: var(--dds-background-positive-medium)) _(default: undefined)_\n- **--dds-callout-positive-background-strong** - Positive variant strong background color. (default: var(--dds-background-positive-strong)) _(default: undefined)_\n- **--dds-callout-positive-icon** - Positive variant icon color. (default: var(--dds-icon-positive-subtle)) _(default: undefined)_\n- **--dds-callout-positive-border** - Positive variant border color. (default: var(--dds-border-positive-subtle)) _(default: undefined)_\n- **--dds-callout-warning-background** - Warning variant background color. (default: var(--dds-background-warning-base)) _(default: undefined)_\n- **--dds-callout-warning-background-subtle** - Warning variant subtle background color. (default: var(--dds-background-warning-subtle)) _(default: undefined)_\n- **--dds-callout-warning-background-medium** - Warning variant medium background color. (default: var(--dds-background-warning-medium)) _(default: undefined)_\n- **--dds-callout-warning-background-strong** - Warning variant strong background color. (default: var(--dds-background-warning-strong)) _(default: undefined)_\n- **--dds-callout-warning-icon** - Warning variant icon color. (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-callout-warning-border** - Warning variant border color. (default: var(--dds-border-warning-subtle)) _(default: undefined)_\n- **--dds-callout-negative-background** - Negative variant background color. (default: var(--dds-background-negative-base)) _(default: undefined)_\n- **--dds-callout-negative-background-subtle** - Negative variant subtle background color. (default: var(--dds-background-negative-subtle)) _(default: undefined)_\n- **--dds-callout-negative-background-medium** - Negative variant medium background color. (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-callout-negative-background-strong** - Negative variant strong background color. (default: var(--dds-background-negative-strong)) _(default: undefined)_\n- **--dds-callout-negative-icon** - Negative variant icon color. (default: var(--dds-icon-negative-subtle)) _(default: undefined)_\n- **--dds-callout-negative-border** - Negative variant border color. (default: var(--dds-border-negative-subtle)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main callout container.\n- **content** - The content of the callout.\n- **card-content** - The content of the card.\n- **icon** - The icon of the callout.\n- **title** - The title of the callout.\n- **description** - The description of the callout.\n- **actions** - The actions of the callout.\n- **close** - The close button of the callout.",
|
|
1109
|
+
"doc-url": "",
|
|
1110
|
+
"attributes": [
|
|
1111
|
+
{
|
|
1112
|
+
"name": "variant",
|
|
1113
|
+
"description": "The variant of the callout",
|
|
1114
|
+
"value": {
|
|
1115
|
+
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'",
|
|
1116
|
+
"default": "'brand'"
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"name": "alignment",
|
|
1121
|
+
"description": "The alignment of the callout. Can be `vertical` or `horizontal`.",
|
|
1122
|
+
"value": {
|
|
1123
|
+
"type": "'vertical' | 'horizontal'",
|
|
1124
|
+
"default": "'horizontal'"
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"name": "shade",
|
|
1129
|
+
"description": "The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`.",
|
|
1130
|
+
"value": {
|
|
1131
|
+
"type": "'subtle' | 'base' | 'medium' | 'strong'",
|
|
1132
|
+
"default": "'base'"
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"name": "noBorder",
|
|
1137
|
+
"description": "If the callout has a border",
|
|
1138
|
+
"value": { "type": "string", "default": "'true'" }
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"name": "closeable",
|
|
1142
|
+
"description": "If the callout has a close button",
|
|
1143
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"name": "title",
|
|
1147
|
+
"description": "The header of the callout",
|
|
1148
|
+
"value": { "type": "string" }
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"name": "closeButtonLabel",
|
|
1152
|
+
"description": "The label of the close button",
|
|
1153
|
+
"value": { "type": "string" }
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"name": "opened",
|
|
1157
|
+
"description": "If the callout is opened",
|
|
1158
|
+
"value": { "type": "string", "default": "'true'" }
|
|
1153
1159
|
}
|
|
1154
1160
|
],
|
|
1155
1161
|
"slots": [
|
|
1156
|
-
{ "name": "", "description": "The content of the
|
|
1162
|
+
{ "name": "", "description": "The content of the callout." },
|
|
1163
|
+
{ "name": "title", "description": "The title of the callout." },
|
|
1164
|
+
{ "name": "icon", "description": "The icon of the callout." },
|
|
1165
|
+
{ "name": "actions", "description": "The actions of the callout." },
|
|
1166
|
+
{
|
|
1167
|
+
"name": "close",
|
|
1168
|
+
"description": "The close button of the callout."
|
|
1169
|
+
}
|
|
1157
1170
|
],
|
|
1158
1171
|
"events": [
|
|
1159
1172
|
{
|
|
1160
|
-
"name": "dds-
|
|
1161
|
-
"type": "{
|
|
1162
|
-
"description": "Fired when the
|
|
1173
|
+
"name": "dds-close",
|
|
1174
|
+
"type": "{ void }",
|
|
1175
|
+
"description": "Fired when the close button is clicked."
|
|
1163
1176
|
}
|
|
1164
1177
|
],
|
|
1165
1178
|
"js": {
|
|
1166
1179
|
"properties": [
|
|
1167
1180
|
{
|
|
1168
|
-
"name": "
|
|
1169
|
-
"description": "The
|
|
1170
|
-
"type": "'
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
"name": "hideAdjacentMonths",
|
|
1174
|
-
"description": "Whether to hide dates from adjacent months (previous/next) in the calendar grid. When not explicitly set, defaults to false for single mode and true for range mode.",
|
|
1175
|
-
"type": "boolean"
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"name": "value",
|
|
1179
|
-
"description": "The value of the calendar.",
|
|
1180
|
-
"type": "Dayjs"
|
|
1181
|
+
"name": "variant",
|
|
1182
|
+
"description": "The variant of the callout",
|
|
1183
|
+
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'"
|
|
1181
1184
|
},
|
|
1182
1185
|
{
|
|
1183
|
-
"name": "
|
|
1184
|
-
"description": "The
|
|
1185
|
-
"type": "
|
|
1186
|
+
"name": "alignment",
|
|
1187
|
+
"description": "The alignment of the callout. Can be `vertical` or `horizontal`.",
|
|
1188
|
+
"type": "'vertical' | 'horizontal'"
|
|
1186
1189
|
},
|
|
1187
1190
|
{
|
|
1188
|
-
"name": "
|
|
1189
|
-
"description": "The
|
|
1190
|
-
"type": "
|
|
1191
|
+
"name": "shade",
|
|
1192
|
+
"description": "The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`.",
|
|
1193
|
+
"type": "'subtle' | 'base' | 'medium' | 'strong'"
|
|
1191
1194
|
},
|
|
1192
1195
|
{
|
|
1193
|
-
"name": "
|
|
1194
|
-
"description": "
|
|
1195
|
-
"type": "
|
|
1196
|
+
"name": "noBorder",
|
|
1197
|
+
"description": "If the callout has a border",
|
|
1198
|
+
"type": "string"
|
|
1196
1199
|
},
|
|
1197
1200
|
{
|
|
1198
|
-
"name": "
|
|
1199
|
-
"description": "
|
|
1200
|
-
"type": "
|
|
1201
|
+
"name": "closeable",
|
|
1202
|
+
"description": "If the callout has a close button",
|
|
1203
|
+
"type": "boolean"
|
|
1201
1204
|
},
|
|
1202
1205
|
{
|
|
1203
|
-
"name": "
|
|
1204
|
-
"description": "The
|
|
1205
|
-
"type": "
|
|
1206
|
+
"name": "title",
|
|
1207
|
+
"description": "The header of the callout",
|
|
1208
|
+
"type": "string"
|
|
1206
1209
|
},
|
|
1207
1210
|
{
|
|
1208
|
-
"name": "
|
|
1209
|
-
"description": "The
|
|
1210
|
-
"type": "
|
|
1211
|
+
"name": "closeButtonLabel",
|
|
1212
|
+
"description": "The label of the close button",
|
|
1213
|
+
"type": "string"
|
|
1211
1214
|
},
|
|
1212
1215
|
{
|
|
1213
|
-
"name": "
|
|
1214
|
-
"description": "
|
|
1215
|
-
"type": "
|
|
1216
|
-
}
|
|
1217
|
-
{ "name": "startDate" },
|
|
1218
|
-
{ "name": "endDate" },
|
|
1219
|
-
{ "name": "shouldHideAdjacentMonths" }
|
|
1216
|
+
"name": "opened",
|
|
1217
|
+
"description": "If the callout is opened",
|
|
1218
|
+
"type": "string"
|
|
1219
|
+
}
|
|
1220
1220
|
],
|
|
1221
1221
|
"events": [
|
|
1222
1222
|
{
|
|
1223
|
-
"name": "dds-
|
|
1224
|
-
"type": "{
|
|
1225
|
-
"description": "Fired when the
|
|
1223
|
+
"name": "dds-close",
|
|
1224
|
+
"type": "{ void }",
|
|
1225
|
+
"description": "Fired when the close button is clicked."
|
|
1226
1226
|
}
|
|
1227
1227
|
]
|
|
1228
1228
|
}
|
|
@@ -2673,6 +2673,43 @@
|
|
|
2673
2673
|
]
|
|
2674
2674
|
}
|
|
2675
2675
|
},
|
|
2676
|
+
{
|
|
2677
|
+
"name": "dap-ds-dap-badge",
|
|
2678
|
+
"description": "A DÁP badge is a brand element showing the use of this system design library.\n---\n\n\n### **Slots:**\n - _default_ - Description of badge *\n\n### **CSS Properties:**\n - **--dds-badge-padding-sm** - Custom padding for the small badge (default: var(--dds-spacing-200) var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-badge-padding-lg** - Custom padding for the large badge (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-badge-border-width** - Custom border width for the badge (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-badge-border-color** - Custom border color for the badge (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-badge-border-radius** - Custom border radius for the badge (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-badge-color** - Custom text color for the badge (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-badge-gap** - Custom gap between icon and text (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-badge-font-size-sm** - Custom font size for the small badge (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-badge-font-size-lg** - Custom font size for the large badge (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-badge-font-weight** - Custom font weight for the badge (default: var(--dds-font-weight-medium)) _(default: undefined)_\n- **--dds-badge-line-height** - Custom line height for the badge (default: var(--dds-font-line-height-large)) _(default: undefined)_\n- **--dds-badge-border-color-normal** - Custom border color for the normal variant (default: var(--dds-transparent-black-medium)) _(default: undefined)_\n- **--dds-badge-background-color-normal** - Custom background color for the normal variant (default: var(--dds-background-brand-subtle)) _(default: undefined)_\n- **--dds-badge-color-normal** - Custom text color for the normal variant (default: var(--dds-text-brand-subtle)) _(default: undefined)_\n- **--dds-badge-border-color-inverted** - Custom border color for the inverted variant (default: var(--dds-transparent-white-medium)) _(default: undefined)_\n- **--dds-badge-background-color-inverted** - Custom background color for the inverted variant (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-badge-color-inverted** - Custom text color for the inverted variant (default: var(--dds-text-neutral-inverted)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - Main badge container\n- **icon** - Badge icon\n- **text** - Badge text",
|
|
2679
|
+
"doc-url": "",
|
|
2680
|
+
"attributes": [
|
|
2681
|
+
{
|
|
2682
|
+
"name": "variant",
|
|
2683
|
+
"description": "The variant of the DÁP badge",
|
|
2684
|
+
"value": {
|
|
2685
|
+
"type": "'normal' | 'inverted'",
|
|
2686
|
+
"default": "'normal'"
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2689
|
+
],
|
|
2690
|
+
"slots": [{ "name": "", "description": "Description of badge *" }],
|
|
2691
|
+
"events": [],
|
|
2692
|
+
"js": {
|
|
2693
|
+
"properties": [
|
|
2694
|
+
{
|
|
2695
|
+
"name": "variant",
|
|
2696
|
+
"description": "The variant of the DÁP badge",
|
|
2697
|
+
"type": "'normal' | 'inverted'"
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
"name": "size",
|
|
2701
|
+
"description": "The size of the DÁP badge. Default is `sm`.",
|
|
2702
|
+
"type": "'sm' | 'lg'"
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
"name": "sizeMap",
|
|
2706
|
+
"description": "Responsive size map (e.g. \"md:lg\").",
|
|
2707
|
+
"type": "string"
|
|
2708
|
+
}
|
|
2709
|
+
],
|
|
2710
|
+
"events": []
|
|
2711
|
+
}
|
|
2712
|
+
},
|
|
2676
2713
|
{
|
|
2677
2714
|
"name": "dap-ds-copybox-input",
|
|
2678
2715
|
"description": "A copybox input is a field for copying an input value.\n---\n\n\n### **Events:**\n - **dds-copy** - Fired when the user clicks on the copy button.\n- **dds-change** - Fired when the input value changes.\n- **dds-input** - Fired when the input value changes.\n- **dds-keydown** - Fired when a key is pressed down.\n- **dds-blur** - Fired when the input loses focus.\n- **dds-focus** - Emitted when the input gains focus.\n- **dds-not-allowed** - Emitted when the value cannot be copied.\n\n### **CSS Properties:**\n - **--dds-input-height-xs** - The height of the extra small input. (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-input-height-sm** - The height of the small input. (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-input-height-lg** - The height of the large input. (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-input-padding-xs** - The padding of the extra small input. (default: 0 var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-input-padding-sm** - The padding of the small input. (default: 0 var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-input-padding-lg** - The padding of the large input. (default: 0 var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-input-font-size-xs** - The font size of the extra small input. (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-input-font-size-sm** - The font size of the small input. (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-input-font-size-lg** - The font size of the large input. (default: var(--dds-font-lg)) _(default: undefined)_\n- **--dds-input-border** - The border of the input. (default: var(--dds-border-width-base) solid var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-input-background** - The background color of the input. (default: var(--dds-fields-background-default)) _(default: undefined)_\n- **--dds-input-text-color** - The text color of the input. (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-input-border-radius** - The border radius of the input. (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-input-disabled-border** - The border of the disabled input. (default: 0 solid var(--dds-border-neutral-disabled)) _(default: undefined)_\n- **--dds-input-disabled-background** - The background color of the disabled input. (default: var(--dds-fields-background-disabled)) _(default: undefined)_\n- **--dds-input-disabled-text** - The text color of the disabled input. (default: var(--dds-text-neutral-disabled)) _(default: undefined)_\n- **--dds-input-readonly-border** - The border of the readonly input. (default: 0 solid var(--dds-border-neutral-subtle)) _(default: undefined)_\n- **--dds-input-readonly-background** - The background color of the readonly input. (default: var(--dds-fields-background-read-only)) _(default: undefined)_\n- **--dds-input-readonly-text** - The text color of the readonly input. (default: var(--dds-text-neutral-subtle)) _(default: undefined)_\n- **--dds-input-success-border** - The border of the success input. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)) _(default: undefined)_\n- **--dds-input-error-border** - The border of the error input. (default: var(--dds-border-width-base) solid var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-input-addon-background** - The background color of the input addon. (default: var(--dds-fields-background-default)) _(default: undefined)_\n- **--dds-input-addon-success-background** - The background color of the success input addon. (default: var(--dds-fields-background-default)) _(default: undefined)_\n- **--dds-input-addon-error-background** - The background color of the error input addon. (default: var(--dds-fields-background-default)) _(default: undefined)_\n- **--dds-input-addon-border-before** - The border of the addon before the input. (default: var(--dds-border-width-base) solid var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-input-addon-border-after** - The border of the addon after the input. (default: var(--dds-border-width-base) solid var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-input-addon-border-width-before** - The border width of the addon before the input. (default: var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-input-addon-border-width-after** - The border width of the addon after the input. (default: var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0) _(default: undefined)_\n- **--dds-input-addon-success-border** - The border of the success addon. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)) _(default: undefined)_\n- **--dds-input-addon-success-border-before** - The border of the success addon before the input. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)) _(default: undefined)_\n- **--dds-input-addon-success-border-after** - The border of the success addon after the input. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)) _(default: undefined)_\n- **--dds-input-addon-success-border-width-before** - The border width of the success addon before the input. (default: var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-input-addon-success-border-width-after** - The border width of the success addon after the input. (default: var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0) _(default: undefined)_\n- **--dds-input-addon-error-border-before** - The border of the error addon before the input. (default: var(--dds-border-width-base) solid var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-input-addon-error-border-after** - The border of the error addon after the input. (default: var(--dds-border-width-base) solid var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-input-addon-error-border-width-before** - The border width of the error addon before the input. (default: var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-input-addon-error-border-width-after** - The border width of the error addon after the input. (default: var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The base container of the component.\n- **postfix** - The inner postfix icon part of the component.\n- **button** - The button of the component.\n- **copy-button-base** - The base of the copy button.\n- **copy-button-content** - The content of the copy button.\n- **copy-icon** - The copy icon of the component.\n- **copy-icon-base** - The base of the copy icon.",
|
|
@@ -2864,43 +2901,6 @@
|
|
|
2864
2901
|
]
|
|
2865
2902
|
}
|
|
2866
2903
|
},
|
|
2867
|
-
{
|
|
2868
|
-
"name": "dap-ds-dap-badge",
|
|
2869
|
-
"description": "A DÁP badge is a brand element showing the use of this system design library.\n---\n\n\n### **Slots:**\n - _default_ - Description of badge *\n\n### **CSS Properties:**\n - **--dds-badge-padding-sm** - Custom padding for the small badge (default: var(--dds-spacing-200) var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-badge-padding-lg** - Custom padding for the large badge (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-badge-border-width** - Custom border width for the badge (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-badge-border-color** - Custom border color for the badge (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-badge-border-radius** - Custom border radius for the badge (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-badge-color** - Custom text color for the badge (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-badge-gap** - Custom gap between icon and text (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-badge-font-size-sm** - Custom font size for the small badge (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-badge-font-size-lg** - Custom font size for the large badge (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-badge-font-weight** - Custom font weight for the badge (default: var(--dds-font-weight-medium)) _(default: undefined)_\n- **--dds-badge-line-height** - Custom line height for the badge (default: var(--dds-font-line-height-large)) _(default: undefined)_\n- **--dds-badge-border-color-normal** - Custom border color for the normal variant (default: var(--dds-transparent-black-medium)) _(default: undefined)_\n- **--dds-badge-background-color-normal** - Custom background color for the normal variant (default: var(--dds-background-brand-subtle)) _(default: undefined)_\n- **--dds-badge-color-normal** - Custom text color for the normal variant (default: var(--dds-text-brand-subtle)) _(default: undefined)_\n- **--dds-badge-border-color-inverted** - Custom border color for the inverted variant (default: var(--dds-transparent-white-medium)) _(default: undefined)_\n- **--dds-badge-background-color-inverted** - Custom background color for the inverted variant (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-badge-color-inverted** - Custom text color for the inverted variant (default: var(--dds-text-neutral-inverted)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - Main badge container\n- **icon** - Badge icon\n- **text** - Badge text",
|
|
2870
|
-
"doc-url": "",
|
|
2871
|
-
"attributes": [
|
|
2872
|
-
{
|
|
2873
|
-
"name": "variant",
|
|
2874
|
-
"description": "The variant of the DÁP badge",
|
|
2875
|
-
"value": {
|
|
2876
|
-
"type": "'normal' | 'inverted'",
|
|
2877
|
-
"default": "'normal'"
|
|
2878
|
-
}
|
|
2879
|
-
}
|
|
2880
|
-
],
|
|
2881
|
-
"slots": [{ "name": "", "description": "Description of badge *" }],
|
|
2882
|
-
"events": [],
|
|
2883
|
-
"js": {
|
|
2884
|
-
"properties": [
|
|
2885
|
-
{
|
|
2886
|
-
"name": "variant",
|
|
2887
|
-
"description": "The variant of the DÁP badge",
|
|
2888
|
-
"type": "'normal' | 'inverted'"
|
|
2889
|
-
},
|
|
2890
|
-
{
|
|
2891
|
-
"name": "size",
|
|
2892
|
-
"description": "The size of the DÁP badge. Default is `sm`.",
|
|
2893
|
-
"type": "'sm' | 'lg'"
|
|
2894
|
-
},
|
|
2895
|
-
{
|
|
2896
|
-
"name": "sizeMap",
|
|
2897
|
-
"description": "Responsive size map (e.g. \"md:lg\").",
|
|
2898
|
-
"type": "string"
|
|
2899
|
-
}
|
|
2900
|
-
],
|
|
2901
|
-
"events": []
|
|
2902
|
-
}
|
|
2903
|
-
},
|
|
2904
2904
|
{
|
|
2905
2905
|
"name": "dap-ds-datatable",
|
|
2906
2906
|
"description": "A data table is a component that displays data in a tabular format.\n---\n\n\n### **Events:**\n - **dds-sorting-change** - Fired when the sorting of the table changes.\n- **dds-selection-change** - Fired when the selection of the table changes.\n- **dds-pagination-change** - Fired when the pagination of the table changes.\n- **dds-row-click** - Fired when a row is clicked.\n\n### **Slots:**\n - **loading** - The loading content of the table.\n- **empty** - The empty content of the table.\n\n### **CSS Properties:**\n - **--dds-datatable-bg-color** - Background color of the table. (default: var(--dds-background-neutral-subtle)). _(default: undefined)_\n- **--dds-datatable-border-color** - Border color of the table cells. (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-datatable-header-bg-color** - Background color of the table header. (default: var(--dds-background-neutral-subtle)) _(default: undefined)_\n- **--dds-datatable-header-text-color** - Text color of the table header. (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-datatable-row-hover-bg-color** - Background color of hovered rows. (default: var(--dds-background-brand-strong)) _(default: undefined)_\n- **--dds-datatable-row-selected-bg-color** - Background color of selected rows. (default: var(--dds-background-brand-strong)) _(default: undefined)_\n- **--dds-datatable-cell-padding** - Padding of table cells. (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-datatable-header-padding** - Padding of header cells. (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-datatable-last-column-padding** - Padding of the last column. (default: var(--dds-spacing-500)) _(default: undefined)_\n- **--dds-datatable-first-column-padding** - Padding of the first column. (default: var(--dds-spacing-500)) _(default: undefined)_\n- **--dds-datatable-border-width** - Width of table borders. (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-datatable-stripe-color** - Background color for striped rows. (default: var(--dds-background-neutral-base)) _(default: undefined)_\n- **--dds-datatable-border-radius** - Border radius of the table. (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-datatable-shadow** - Box shadow of the table. (default: none) _(default: undefined)_\n- **--dds-datatable-transition-duration** - Duration of hover/selection transitions. (default: 0.2s) _(default: undefined)_\n- **--dds-datatable-z-index** - Z-index of the table. (default: 1) _(default: undefined)_\n- **--dds-datatable-min-height** - Minimum height of the table. (default: auto) _(default: undefined)_\n- **--dds-datatable-max-height** - Maximum height of the table. (default: none) _(default: undefined)_\n- **--dds-datatable-overflow-x** - Horizontal overflow behavior. (default: auto) _(default: undefined)_\n- **--dds-datatable-overflow-y** - Vertical overflow behavior. (default: auto) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main table container.\n- **header** - The header of the table.\n- **header-row** - The header row of the table.\n- **header-cell** - All cells of the header.\n- **body** - The body of the table.\n- **empty** - The empty content of the table.\n- **loading** - The loading content of the table.\n- **row** - All rows of the table.\n- **cell** - All cells of the table.\n- **pager** - The pager of the table.\n- **pager-base** - The base of the pager.\n- **pager-first** - The first button of the pager.\n- **pager-previous** - The previous button of the pager.\n- **pager-next** - The next button of the pager.\n- **pager-last** - The last button of the pager.\n- **pager-page-size-select** - The page size select of the pager.",
|
|
@@ -4376,6 +4376,11 @@
|
|
|
4376
4376
|
"description": "Aria label for the dropzone.",
|
|
4377
4377
|
"value": { "type": "string" }
|
|
4378
4378
|
},
|
|
4379
|
+
{
|
|
4380
|
+
"name": "dropzoneFocusable",
|
|
4381
|
+
"description": "Whether the dropzone is in the tab order and exposes button keyboard behavior (default: true).",
|
|
4382
|
+
"value": { "type": "boolean", "default": "'true'" }
|
|
4383
|
+
},
|
|
4379
4384
|
{
|
|
4380
4385
|
"name": "thumbnailSize",
|
|
4381
4386
|
"description": "Size of the thumbnail preview in the built-in file list",
|
|
@@ -4605,6 +4610,11 @@
|
|
|
4605
4610
|
"description": "Aria label for the dropzone.",
|
|
4606
4611
|
"type": "string"
|
|
4607
4612
|
},
|
|
4613
|
+
{
|
|
4614
|
+
"name": "dropzoneFocusable",
|
|
4615
|
+
"description": "Whether the dropzone is in the tab order and exposes button keyboard behavior (default: true).",
|
|
4616
|
+
"type": "boolean"
|
|
4617
|
+
},
|
|
4608
4618
|
{
|
|
4609
4619
|
"name": "thumbnailSize",
|
|
4610
4620
|
"description": "Size of the thumbnail preview in the built-in file list",
|
|
@@ -6374,17 +6384,104 @@
|
|
|
6374
6384
|
"type": "'top-start' | 'top-end' | 'bottom-start' | 'bottom-end'"
|
|
6375
6385
|
},
|
|
6376
6386
|
{
|
|
6377
|
-
"name": "circularAuto",
|
|
6378
|
-
"description": "Whether to automatically detect circular elements and adjust positioning accordingly",
|
|
6387
|
+
"name": "circularAuto",
|
|
6388
|
+
"description": "Whether to automatically detect circular elements and adjust positioning accordingly",
|
|
6389
|
+
"type": "boolean"
|
|
6390
|
+
},
|
|
6391
|
+
{
|
|
6392
|
+
"name": "forceCircular",
|
|
6393
|
+
"description": "Override circular positioning detection - forces circular positioning calculation",
|
|
6394
|
+
"type": "boolean"
|
|
6395
|
+
}
|
|
6396
|
+
],
|
|
6397
|
+
"events": []
|
|
6398
|
+
}
|
|
6399
|
+
},
|
|
6400
|
+
{
|
|
6401
|
+
"name": "dap-ds-official-website-banner",
|
|
6402
|
+
"description": "An official website banner is a banner that displays that the website is an official website.\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-official-banner-background-color** - The background color of the official website banner (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-official-banner-text-color** - The text color of the official website banner (default: var(--dds-text-neutral-on-inverted)) _(default: undefined)_\n- **--dds-official-banner-heading-hover-color** - The heading hover color of the official website banner (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-official-banner-border-radius** - The border radius of the official website banner (default: 0) _(default: undefined)_\n- **--dds-official-banner-icon-color** - The icon color of the official website banner (default: var(--dds-text-neutral-on-inverted)) _(default: undefined)_\n- **--dds-official-banner-icon-color-hover** - The icon hover color of the opener icon official website banner (default: var(--dds-text-neutral-on-inverted)) _(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- **content-container** - The container of the accordion content.\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.",
|
|
6403
|
+
"doc-url": "",
|
|
6404
|
+
"attributes": [],
|
|
6405
|
+
"slots": [
|
|
6406
|
+
{
|
|
6407
|
+
"name": "default",
|
|
6408
|
+
"description": "The content of the accordion."
|
|
6409
|
+
},
|
|
6410
|
+
{
|
|
6411
|
+
"name": "heading",
|
|
6412
|
+
"description": "The heading of the accordion."
|
|
6413
|
+
},
|
|
6414
|
+
{
|
|
6415
|
+
"name": "icon-opened",
|
|
6416
|
+
"description": "The icon when the accordion is opened."
|
|
6417
|
+
},
|
|
6418
|
+
{
|
|
6419
|
+
"name": "icon-closed",
|
|
6420
|
+
"description": "The icon when the accordion is closed."
|
|
6421
|
+
}
|
|
6422
|
+
],
|
|
6423
|
+
"events": [
|
|
6424
|
+
{
|
|
6425
|
+
"name": "dds-opened",
|
|
6426
|
+
"type": "{ void }",
|
|
6427
|
+
"description": "Event fired when the accordion is opened."
|
|
6428
|
+
},
|
|
6429
|
+
{
|
|
6430
|
+
"name": "dds-closed",
|
|
6431
|
+
"type": "{ void }",
|
|
6432
|
+
"description": "Event fired when the accordion is closed."
|
|
6433
|
+
}
|
|
6434
|
+
],
|
|
6435
|
+
"js": {
|
|
6436
|
+
"properties": [
|
|
6437
|
+
{
|
|
6438
|
+
"name": "size",
|
|
6439
|
+
"description": "The size of the official website banner. Default is `sm`.",
|
|
6440
|
+
"type": "'sm' | 'lg'"
|
|
6441
|
+
},
|
|
6442
|
+
{
|
|
6443
|
+
"name": "heading",
|
|
6444
|
+
"description": "The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided",
|
|
6445
|
+
"type": "string"
|
|
6446
|
+
},
|
|
6447
|
+
{
|
|
6448
|
+
"name": "headingLevel",
|
|
6449
|
+
"description": "The heading level of the accordion. Default is `4`.",
|
|
6450
|
+
"type": "1 | 2 | 3 | 4 | 5 | 6"
|
|
6451
|
+
},
|
|
6452
|
+
{
|
|
6453
|
+
"name": "opened",
|
|
6454
|
+
"description": "Whether the accordion is opened. Default is `false`.",
|
|
6455
|
+
"type": "boolean"
|
|
6456
|
+
},
|
|
6457
|
+
{
|
|
6458
|
+
"name": "iconLocation",
|
|
6459
|
+
"description": "The location of the icon. Default is `right`.",
|
|
6460
|
+
"type": "'left' | 'right'"
|
|
6461
|
+
},
|
|
6462
|
+
{
|
|
6463
|
+
"name": "variant",
|
|
6464
|
+
"description": "The variant of the accordion.",
|
|
6465
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
6466
|
+
},
|
|
6467
|
+
{
|
|
6468
|
+
"name": "lastItem",
|
|
6469
|
+
"description": "Whether the accordion is the last item.",
|
|
6379
6470
|
"type": "boolean"
|
|
6471
|
+
}
|
|
6472
|
+
],
|
|
6473
|
+
"events": [
|
|
6474
|
+
{
|
|
6475
|
+
"name": "dds-opened",
|
|
6476
|
+
"type": "{ void }",
|
|
6477
|
+
"description": "Event fired when the accordion is opened."
|
|
6380
6478
|
},
|
|
6381
6479
|
{
|
|
6382
|
-
"name": "
|
|
6383
|
-
"
|
|
6384
|
-
"
|
|
6480
|
+
"name": "dds-closed",
|
|
6481
|
+
"type": "{ void }",
|
|
6482
|
+
"description": "Event fired when the accordion is closed."
|
|
6385
6483
|
}
|
|
6386
|
-
]
|
|
6387
|
-
"events": []
|
|
6484
|
+
]
|
|
6388
6485
|
}
|
|
6389
6486
|
},
|
|
6390
6487
|
{
|
|
@@ -6646,93 +6743,6 @@
|
|
|
6646
6743
|
]
|
|
6647
6744
|
}
|
|
6648
6745
|
},
|
|
6649
|
-
{
|
|
6650
|
-
"name": "dap-ds-official-website-banner",
|
|
6651
|
-
"description": "An official website banner is a banner that displays that the website is an official website.\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-official-banner-background-color** - The background color of the official website banner (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-official-banner-text-color** - The text color of the official website banner (default: var(--dds-text-neutral-on-inverted)) _(default: undefined)_\n- **--dds-official-banner-heading-hover-color** - The heading hover color of the official website banner (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-official-banner-border-radius** - The border radius of the official website banner (default: 0) _(default: undefined)_\n- **--dds-official-banner-icon-color** - The icon color of the official website banner (default: var(--dds-text-neutral-on-inverted)) _(default: undefined)_\n- **--dds-official-banner-icon-color-hover** - The icon hover color of the opener icon official website banner (default: var(--dds-text-neutral-on-inverted)) _(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- **content-container** - The container of the accordion content.\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.",
|
|
6652
|
-
"doc-url": "",
|
|
6653
|
-
"attributes": [],
|
|
6654
|
-
"slots": [
|
|
6655
|
-
{
|
|
6656
|
-
"name": "default",
|
|
6657
|
-
"description": "The content of the accordion."
|
|
6658
|
-
},
|
|
6659
|
-
{
|
|
6660
|
-
"name": "heading",
|
|
6661
|
-
"description": "The heading of the accordion."
|
|
6662
|
-
},
|
|
6663
|
-
{
|
|
6664
|
-
"name": "icon-opened",
|
|
6665
|
-
"description": "The icon when the accordion is opened."
|
|
6666
|
-
},
|
|
6667
|
-
{
|
|
6668
|
-
"name": "icon-closed",
|
|
6669
|
-
"description": "The icon when the accordion is closed."
|
|
6670
|
-
}
|
|
6671
|
-
],
|
|
6672
|
-
"events": [
|
|
6673
|
-
{
|
|
6674
|
-
"name": "dds-opened",
|
|
6675
|
-
"type": "{ void }",
|
|
6676
|
-
"description": "Event fired when the accordion is opened."
|
|
6677
|
-
},
|
|
6678
|
-
{
|
|
6679
|
-
"name": "dds-closed",
|
|
6680
|
-
"type": "{ void }",
|
|
6681
|
-
"description": "Event fired when the accordion is closed."
|
|
6682
|
-
}
|
|
6683
|
-
],
|
|
6684
|
-
"js": {
|
|
6685
|
-
"properties": [
|
|
6686
|
-
{
|
|
6687
|
-
"name": "size",
|
|
6688
|
-
"description": "The size of the official website banner. Default is `sm`.",
|
|
6689
|
-
"type": "'sm' | 'lg'"
|
|
6690
|
-
},
|
|
6691
|
-
{
|
|
6692
|
-
"name": "heading",
|
|
6693
|
-
"description": "The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided",
|
|
6694
|
-
"type": "string"
|
|
6695
|
-
},
|
|
6696
|
-
{
|
|
6697
|
-
"name": "headingLevel",
|
|
6698
|
-
"description": "The heading level of the accordion. Default is `4`.",
|
|
6699
|
-
"type": "1 | 2 | 3 | 4 | 5 | 6"
|
|
6700
|
-
},
|
|
6701
|
-
{
|
|
6702
|
-
"name": "opened",
|
|
6703
|
-
"description": "Whether the accordion is opened. Default is `false`.",
|
|
6704
|
-
"type": "boolean"
|
|
6705
|
-
},
|
|
6706
|
-
{
|
|
6707
|
-
"name": "iconLocation",
|
|
6708
|
-
"description": "The location of the icon. Default is `right`.",
|
|
6709
|
-
"type": "'left' | 'right'"
|
|
6710
|
-
},
|
|
6711
|
-
{
|
|
6712
|
-
"name": "variant",
|
|
6713
|
-
"description": "The variant of the accordion.",
|
|
6714
|
-
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
6715
|
-
},
|
|
6716
|
-
{
|
|
6717
|
-
"name": "lastItem",
|
|
6718
|
-
"description": "Whether the accordion is the last item.",
|
|
6719
|
-
"type": "boolean"
|
|
6720
|
-
}
|
|
6721
|
-
],
|
|
6722
|
-
"events": [
|
|
6723
|
-
{
|
|
6724
|
-
"name": "dds-opened",
|
|
6725
|
-
"type": "{ void }",
|
|
6726
|
-
"description": "Event fired when the accordion is opened."
|
|
6727
|
-
},
|
|
6728
|
-
{
|
|
6729
|
-
"name": "dds-closed",
|
|
6730
|
-
"type": "{ void }",
|
|
6731
|
-
"description": "Event fired when the accordion is closed."
|
|
6732
|
-
}
|
|
6733
|
-
]
|
|
6734
|
-
}
|
|
6735
|
-
},
|
|
6736
6746
|
{
|
|
6737
6747
|
"name": "dap-ds-option-group",
|
|
6738
6748
|
"description": "An option group is a container for grouping related option items.\nUsed with dap-ds-select to create grouped options that render as native optgroup elements.\n---\n\n\n### **Slots:**\n - _default_ - The option items in this group.\n\n### **CSS Parts:**\n - **base** - The main option group container.\n- **label** - The label of the option group.",
|
|
@@ -8642,6 +8652,62 @@
|
|
|
8642
8652
|
]
|
|
8643
8653
|
}
|
|
8644
8654
|
},
|
|
8655
|
+
{
|
|
8656
|
+
"name": "dap-ds-skip-link",
|
|
8657
|
+
"description": "A skip link is a link that allows keyboard users to skip to the main content of a page.\n---\n\n\n### **Slots:**\n - _default_ - The content of the skip link.\n\n### **CSS Properties:**\n - **--dds-skip-link-border-color** - Border color for the high contrast outline (default: var(--dds-border-neutral-transparent-interactive, #fff500)) _(default: undefined)_\n- **--dds-skip-link-border-width** - Border width for the high contrast outline (default: var(--dds-border-width-large)) _(default: undefined)_\n- **--dds-skip-link-border-width-active** - Border width for the active state (default: var(--dds-border-width-xlarge)) _(default: undefined)_\n- **--dds-skip-link-border-radius** - Border radius of the skip link (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-skip-link-padding-sm** - Padding for small size variant (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-skip-link-padding-lg** - Padding for large size variant (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-skip-link-text-underline-offset** - Underline offset for the text (default: 3px) _(default: undefined)_\n- **--dds-skip-link-z-index** - Z-index of the skip link (default: var(--dds-z-index-100)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main skip link container.\n- **text** - The text container of the skip link.\n- **high-contrast** - The high contrast outline container.",
|
|
8658
|
+
"doc-url": "",
|
|
8659
|
+
"attributes": [
|
|
8660
|
+
{
|
|
8661
|
+
"name": "placement",
|
|
8662
|
+
"description": "The placement of the skip link.",
|
|
8663
|
+
"value": { "type": "'left' | 'center'" }
|
|
8664
|
+
},
|
|
8665
|
+
{
|
|
8666
|
+
"name": "href",
|
|
8667
|
+
"description": "The href of the skip link",
|
|
8668
|
+
"value": { "type": "string", "default": "'#'" }
|
|
8669
|
+
},
|
|
8670
|
+
{
|
|
8671
|
+
"name": "size",
|
|
8672
|
+
"description": "The size of the skip link",
|
|
8673
|
+
"value": { "type": "'sm' | 'lg'", "default": "'sm'" }
|
|
8674
|
+
},
|
|
8675
|
+
{
|
|
8676
|
+
"name": "noUnderline",
|
|
8677
|
+
"description": "Whether the skip link should have an underline",
|
|
8678
|
+
"value": { "type": "boolean", "default": "false" }
|
|
8679
|
+
}
|
|
8680
|
+
],
|
|
8681
|
+
"slots": [
|
|
8682
|
+
{ "name": "", "description": "The content of the skip link." }
|
|
8683
|
+
],
|
|
8684
|
+
"events": [],
|
|
8685
|
+
"js": {
|
|
8686
|
+
"properties": [
|
|
8687
|
+
{
|
|
8688
|
+
"name": "placement",
|
|
8689
|
+
"description": "The placement of the skip link.",
|
|
8690
|
+
"type": "'left' | 'center'"
|
|
8691
|
+
},
|
|
8692
|
+
{
|
|
8693
|
+
"name": "href",
|
|
8694
|
+
"description": "The href of the skip link",
|
|
8695
|
+
"type": "string"
|
|
8696
|
+
},
|
|
8697
|
+
{
|
|
8698
|
+
"name": "size",
|
|
8699
|
+
"description": "The size of the skip link",
|
|
8700
|
+
"type": "'sm' | 'lg'"
|
|
8701
|
+
},
|
|
8702
|
+
{
|
|
8703
|
+
"name": "noUnderline",
|
|
8704
|
+
"description": "Whether the skip link should have an underline",
|
|
8705
|
+
"type": "boolean"
|
|
8706
|
+
}
|
|
8707
|
+
],
|
|
8708
|
+
"events": []
|
|
8709
|
+
}
|
|
8710
|
+
},
|
|
8645
8711
|
{
|
|
8646
8712
|
"name": "dap-ds-skeleton",
|
|
8647
8713
|
"description": "A skeleton loader component for displaying placeholder content while loading.\n---\n\n\n### **CSS Properties:**\n - **--dds-skeleton-color** - The base color of the skeleton (default: linear-gradient(90deg, transparent, rgb(0 0 0 / 10%), transparent)) _(default: undefined)_\n- **--dds-skeleton-animation-duration** - Duration of the loading animation (default: 1.5s) _(default: undefined)_\n- **--dds-skeleton-border-radius** - Border radius for rectangular skeletons (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-skeleton-text-spacing** - Spacing between text lines in text variant (default: var(--dds-spacing-100)) _(default: undefined)_\n- **--dds-skeleton-animation-timing-function** - Timing function for the loading animation (default: ease-in-out) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main skeleton container.",
|
|
@@ -8721,62 +8787,6 @@
|
|
|
8721
8787
|
"events": []
|
|
8722
8788
|
}
|
|
8723
8789
|
},
|
|
8724
|
-
{
|
|
8725
|
-
"name": "dap-ds-skip-link",
|
|
8726
|
-
"description": "A skip link is a link that allows keyboard users to skip to the main content of a page.\n---\n\n\n### **Slots:**\n - _default_ - The content of the skip link.\n\n### **CSS Properties:**\n - **--dds-skip-link-border-color** - Border color for the high contrast outline (default: var(--dds-border-neutral-transparent-interactive, #fff500)) _(default: undefined)_\n- **--dds-skip-link-border-width** - Border width for the high contrast outline (default: var(--dds-border-width-large)) _(default: undefined)_\n- **--dds-skip-link-border-width-active** - Border width for the active state (default: var(--dds-border-width-xlarge)) _(default: undefined)_\n- **--dds-skip-link-border-radius** - Border radius of the skip link (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-skip-link-padding-sm** - Padding for small size variant (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-skip-link-padding-lg** - Padding for large size variant (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-skip-link-text-underline-offset** - Underline offset for the text (default: 3px) _(default: undefined)_\n- **--dds-skip-link-z-index** - Z-index of the skip link (default: var(--dds-z-index-100)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main skip link container.\n- **text** - The text container of the skip link.\n- **high-contrast** - The high contrast outline container.",
|
|
8727
|
-
"doc-url": "",
|
|
8728
|
-
"attributes": [
|
|
8729
|
-
{
|
|
8730
|
-
"name": "placement",
|
|
8731
|
-
"description": "The placement of the skip link.",
|
|
8732
|
-
"value": { "type": "'left' | 'center'" }
|
|
8733
|
-
},
|
|
8734
|
-
{
|
|
8735
|
-
"name": "href",
|
|
8736
|
-
"description": "The href of the skip link",
|
|
8737
|
-
"value": { "type": "string", "default": "'#'" }
|
|
8738
|
-
},
|
|
8739
|
-
{
|
|
8740
|
-
"name": "size",
|
|
8741
|
-
"description": "The size of the skip link",
|
|
8742
|
-
"value": { "type": "'sm' | 'lg'", "default": "'sm'" }
|
|
8743
|
-
},
|
|
8744
|
-
{
|
|
8745
|
-
"name": "noUnderline",
|
|
8746
|
-
"description": "Whether the skip link should have an underline",
|
|
8747
|
-
"value": { "type": "boolean", "default": "false" }
|
|
8748
|
-
}
|
|
8749
|
-
],
|
|
8750
|
-
"slots": [
|
|
8751
|
-
{ "name": "", "description": "The content of the skip link." }
|
|
8752
|
-
],
|
|
8753
|
-
"events": [],
|
|
8754
|
-
"js": {
|
|
8755
|
-
"properties": [
|
|
8756
|
-
{
|
|
8757
|
-
"name": "placement",
|
|
8758
|
-
"description": "The placement of the skip link.",
|
|
8759
|
-
"type": "'left' | 'center'"
|
|
8760
|
-
},
|
|
8761
|
-
{
|
|
8762
|
-
"name": "href",
|
|
8763
|
-
"description": "The href of the skip link",
|
|
8764
|
-
"type": "string"
|
|
8765
|
-
},
|
|
8766
|
-
{
|
|
8767
|
-
"name": "size",
|
|
8768
|
-
"description": "The size of the skip link",
|
|
8769
|
-
"type": "'sm' | 'lg'"
|
|
8770
|
-
},
|
|
8771
|
-
{
|
|
8772
|
-
"name": "noUnderline",
|
|
8773
|
-
"description": "Whether the skip link should have an underline",
|
|
8774
|
-
"type": "boolean"
|
|
8775
|
-
}
|
|
8776
|
-
],
|
|
8777
|
-
"events": []
|
|
8778
|
-
}
|
|
8779
|
-
},
|
|
8780
8790
|
{
|
|
8781
8791
|
"name": "dap-ds-snackbar-message",
|
|
8782
8792
|
"description": "The Snackbar component shows a sliding message to the user.\n---\n\n\n### **Events:**\n - **dds-close** - Fires when the snackbar closes.\n\n### **Slots:**\n - **default** - The content of the snackbar.\n\n### **CSS Properties:**\n - **--dds-snackbar-width** - Width of the snackbar (default: clamp(var(--dds-spacing-6000), 20vw, var(--dds-containers-xsmall))) _(default: undefined)_\n- **--dds-snackbar-gap** - Gap between snackbar elements (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-snackbar-padding** - Padding inside the snackbar (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-snackbar-margin-bottom** - Bottom margin of the snackbar (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-snackbar-transition** - Transition property for the snackbar (default: transform var(--dds-transition-slow) var(--dds-easing-ease-out)allow-discrete, opacity var(--dds-transition-slow) var(--dds-easing-ease-out) allow-discrete, margin var(--dds-transition-slow) var(--dds-easing-ease-out) allow-discrete, box-shadow var(--dds-transition-slow) var(--dds-easing-ease-out) allow-discrete) _(default: undefined)_\n- **--dds-snackbar-border-radius** - Border radius of the snackbar (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-snackbar-font-size** - Font size used in the snackbar (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-snackbar-background** - Background color of the snackbar (default: var(--dds-snackbar-error-background)) _(default: undefined)_\n- **--dds-snackbar-border** - Border color of the snackbar (default: var(--dds-snackbar-error-border)) _(default: undefined)_\n- **--dds-snackbar-text** - Text color of the snackbar (default: var(--dds-snackbar-variant-text)) _(default: undefined)_\n- **--dds-snackbar-icon** - Icon color of the snackbar (default: var(--dds-snackbar-variant-icon)) _(default: undefined)_\n- **--dds-snackbar-link** - Link color of the snackbar (default: var(--dds-snackbar-variant-link)) _(default: undefined)_\n- **--dds-snackbar-information-background** - Background color for information variant (default: var(--dds-background-informative-medium)) _(default: undefined)_\n- **--dds-snackbar-information-border** - Border color for information variant (default: var(--dds-border-width-base) solidvar(--dds-border-informative-subtle)) _(default: undefined)_\n- **--dds-snackbar-information-icon** - Icon color for information variant (default: var(--dds-icon-informative-subtle)) _(default: undefined)_\n- **--dds-snackbar-success-background** - Background color for success variant (default: var(--dds-background-positive-medium)) _(default: undefined)_\n- **--dds-snackbar-success-border** - Border color for success variant (default: var(--dds-border-width-base) solidvar(--dds-border-positive-subtle)) _(default: undefined)_\n- **--dds-snackbar-success-icon** - Icon color for success variant (default: var(--dds-icon-positive-subtle)) _(default: undefined)_\n- **--dds-snackbar-error-background** - Background color for error variant (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-snackbar-error-border** - Border color for error variant (default: var(--dds-border-width-base) solidvar(--dds-border-negative-subtle)) _(default: undefined)_\n- **--dds-snackbar-error-icon** - Icon color for error variant (default: var(--dds-icon-negative-subtle)) _(default: undefined)_\n- **--dds-snackbar-variant-text** - Text color for information, success, and error variants (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-snackbar-variant-icon** - Icon color for information, success, and error variants (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-snackbar-variant-link** - Link color for information, success, and error variants (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-snackbar-animation-duration** - Duration of entrance animations (default: 0.3s) _(default: undefined)_\n- **--dds-snackbar-animation-timing** - Timing function for animations (default: ease-out) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - Main snackbar container.\n- **text** - The text part of the snackbar.\n- **closebutton** - The close button part of the component.\n- **icon** - The icon part of the close button.",
|
|
@@ -11050,7 +11060,7 @@
|
|
|
11050
11060
|
}
|
|
11051
11061
|
},
|
|
11052
11062
|
{
|
|
11053
|
-
"name": "dap-ds-icon-
|
|
11063
|
+
"name": "dap-ds-icon-home-6-line",
|
|
11054
11064
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11055
11065
|
"doc-url": "",
|
|
11056
11066
|
"attributes": [
|
|
@@ -11103,7 +11113,7 @@
|
|
|
11103
11113
|
}
|
|
11104
11114
|
},
|
|
11105
11115
|
{
|
|
11106
|
-
"name": "dap-ds-icon-arrow-down-
|
|
11116
|
+
"name": "dap-ds-icon-arrow-down-line",
|
|
11107
11117
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11108
11118
|
"doc-url": "",
|
|
11109
11119
|
"attributes": [
|
|
@@ -11156,7 +11166,7 @@
|
|
|
11156
11166
|
}
|
|
11157
11167
|
},
|
|
11158
11168
|
{
|
|
11159
|
-
"name": "dap-ds-icon-arrow-down-s-
|
|
11169
|
+
"name": "dap-ds-icon-arrow-down-s-fill",
|
|
11160
11170
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11161
11171
|
"doc-url": "",
|
|
11162
11172
|
"attributes": [
|
|
@@ -11209,7 +11219,7 @@
|
|
|
11209
11219
|
}
|
|
11210
11220
|
},
|
|
11211
11221
|
{
|
|
11212
|
-
"name": "dap-ds-icon-arrow-
|
|
11222
|
+
"name": "dap-ds-icon-arrow-down-s-line",
|
|
11213
11223
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11214
11224
|
"doc-url": "",
|
|
11215
11225
|
"attributes": [
|
|
@@ -11262,7 +11272,7 @@
|
|
|
11262
11272
|
}
|
|
11263
11273
|
},
|
|
11264
11274
|
{
|
|
11265
|
-
"name": "dap-ds-icon-arrow-left-
|
|
11275
|
+
"name": "dap-ds-icon-arrow-left-down-line",
|
|
11266
11276
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11267
11277
|
"doc-url": "",
|
|
11268
11278
|
"attributes": [
|
|
@@ -11315,7 +11325,7 @@
|
|
|
11315
11325
|
}
|
|
11316
11326
|
},
|
|
11317
11327
|
{
|
|
11318
|
-
"name": "dap-ds-icon-arrow-left-line",
|
|
11328
|
+
"name": "dap-ds-icon-arrow-left-l-line",
|
|
11319
11329
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11320
11330
|
"doc-url": "",
|
|
11321
11331
|
"attributes": [
|
|
@@ -11368,7 +11378,7 @@
|
|
|
11368
11378
|
}
|
|
11369
11379
|
},
|
|
11370
11380
|
{
|
|
11371
|
-
"name": "dap-ds-icon-arrow-left-
|
|
11381
|
+
"name": "dap-ds-icon-arrow-left-line",
|
|
11372
11382
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11373
11383
|
"doc-url": "",
|
|
11374
11384
|
"attributes": [
|
|
@@ -11474,7 +11484,7 @@
|
|
|
11474
11484
|
}
|
|
11475
11485
|
},
|
|
11476
11486
|
{
|
|
11477
|
-
"name": "dap-ds-icon-arrow-left-
|
|
11487
|
+
"name": "dap-ds-icon-arrow-left-s-line",
|
|
11478
11488
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11479
11489
|
"doc-url": "",
|
|
11480
11490
|
"attributes": [
|
|
@@ -11580,7 +11590,7 @@
|
|
|
11580
11590
|
}
|
|
11581
11591
|
},
|
|
11582
11592
|
{
|
|
11583
|
-
"name": "dap-ds-icon-arrow-
|
|
11593
|
+
"name": "dap-ds-icon-arrow-left-up-line",
|
|
11584
11594
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11585
11595
|
"doc-url": "",
|
|
11586
11596
|
"attributes": [
|
|
@@ -11633,7 +11643,7 @@
|
|
|
11633
11643
|
}
|
|
11634
11644
|
},
|
|
11635
11645
|
{
|
|
11636
|
-
"name": "dap-ds-icon-arrow-right-line",
|
|
11646
|
+
"name": "dap-ds-icon-arrow-right-l-line",
|
|
11637
11647
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11638
11648
|
"doc-url": "",
|
|
11639
11649
|
"attributes": [
|
|
@@ -11686,7 +11696,7 @@
|
|
|
11686
11696
|
}
|
|
11687
11697
|
},
|
|
11688
11698
|
{
|
|
11689
|
-
"name": "dap-ds-icon-arrow-right-
|
|
11699
|
+
"name": "dap-ds-icon-arrow-right-line",
|
|
11690
11700
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11691
11701
|
"doc-url": "",
|
|
11692
11702
|
"attributes": [
|
|
@@ -11845,7 +11855,7 @@
|
|
|
11845
11855
|
}
|
|
11846
11856
|
},
|
|
11847
11857
|
{
|
|
11848
|
-
"name": "dap-ds-icon-arrow-
|
|
11858
|
+
"name": "dap-ds-icon-arrow-right-s-fill",
|
|
11849
11859
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11850
11860
|
"doc-url": "",
|
|
11851
11861
|
"attributes": [
|
|
@@ -11898,7 +11908,7 @@
|
|
|
11898
11908
|
}
|
|
11899
11909
|
},
|
|
11900
11910
|
{
|
|
11901
|
-
"name": "dap-ds-icon-arrow-up-
|
|
11911
|
+
"name": "dap-ds-icon-arrow-up-line",
|
|
11902
11912
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11903
11913
|
"doc-url": "",
|
|
11904
11914
|
"attributes": [
|
|
@@ -11951,7 +11961,7 @@
|
|
|
11951
11961
|
}
|
|
11952
11962
|
},
|
|
11953
11963
|
{
|
|
11954
|
-
"name": "dap-ds-icon-arrow-up-s-
|
|
11964
|
+
"name": "dap-ds-icon-arrow-up-s-fill",
|
|
11955
11965
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11956
11966
|
"doc-url": "",
|
|
11957
11967
|
"attributes": [
|
|
@@ -12004,7 +12014,7 @@
|
|
|
12004
12014
|
}
|
|
12005
12015
|
},
|
|
12006
12016
|
{
|
|
12007
|
-
"name": "dap-ds-icon-
|
|
12017
|
+
"name": "dap-ds-icon-arrow-up-s-line",
|
|
12008
12018
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
12009
12019
|
"doc-url": "",
|
|
12010
12020
|
"attributes": [
|
|
@@ -12057,7 +12067,7 @@
|
|
|
12057
12067
|
}
|
|
12058
12068
|
},
|
|
12059
12069
|
{
|
|
12060
|
-
"name": "dap-ds-icon-
|
|
12070
|
+
"name": "dap-ds-icon-expand-up-down-fill",
|
|
12061
12071
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
12062
12072
|
"doc-url": "",
|
|
12063
12073
|
"attributes": [
|
|
@@ -14866,7 +14876,7 @@
|
|
|
14866
14876
|
}
|
|
14867
14877
|
},
|
|
14868
14878
|
{
|
|
14869
|
-
"name": "dap-ds-icon-more-
|
|
14879
|
+
"name": "dap-ds-icon-more-line",
|
|
14870
14880
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
14871
14881
|
"doc-url": "",
|
|
14872
14882
|
"attributes": [
|
|
@@ -14919,7 +14929,7 @@
|
|
|
14919
14929
|
}
|
|
14920
14930
|
},
|
|
14921
14931
|
{
|
|
14922
|
-
"name": "dap-ds-icon-more-line",
|
|
14932
|
+
"name": "dap-ds-icon-more-2-line",
|
|
14923
14933
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
14924
14934
|
"doc-url": "",
|
|
14925
14935
|
"attributes": [
|