dap-design-system 0.58.0 → 0.58.1
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/icon/icon.component.d.ts +3 -0
- package/dist/{components-Bo0Y80lA.js → components-DIc6GiB8.js} +4043 -4032
- package/dist/{components-Bo0Y80lA.js.map → components-DIc6GiB8.js.map} +1 -1
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +263 -263
- package/dist/manifest/vscode.html-custom-data.json +192 -192
- package/dist/manifest/web-types.json +501 -501
- package/dist/react/index.d.ts +9 -9
- package/dist/react-types.ts +9 -9
- package/dist/react.js +134 -134
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
|
@@ -7,135 +7,158 @@
|
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
|
-
"name": "dap-ds-
|
|
11
|
-
"description": "
|
|
10
|
+
"name": "dap-ds-avatar",
|
|
11
|
+
"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.",
|
|
12
12
|
"doc-url": "",
|
|
13
13
|
"attributes": [
|
|
14
|
+
{
|
|
15
|
+
"name": "shape",
|
|
16
|
+
"description": "The shape of the avatar",
|
|
17
|
+
"value": {
|
|
18
|
+
"type": "'circle' | 'rounded' | 'square'",
|
|
19
|
+
"default": "'circle'"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
14
22
|
{
|
|
15
23
|
"name": "variant",
|
|
16
|
-
"description": "The variant of the
|
|
17
|
-
"value": {
|
|
24
|
+
"description": "The variant type of the avatar",
|
|
25
|
+
"value": {
|
|
26
|
+
"type": "'image' | 'initials' | 'icon'",
|
|
27
|
+
"default": "'image'"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "src",
|
|
32
|
+
"description": "The source of the avatar image",
|
|
33
|
+
"value": { "type": "string" }
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "alt",
|
|
37
|
+
"description": "The alt text of the avatar",
|
|
38
|
+
"value": { "type": "string" }
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "initials",
|
|
42
|
+
"description": "The initials to display when variant is 'initials'",
|
|
43
|
+
"value": { "type": "string" }
|
|
18
44
|
},
|
|
19
45
|
{
|
|
20
46
|
"name": "label",
|
|
21
|
-
"description": "
|
|
47
|
+
"description": "Accessible label for the avatar",
|
|
22
48
|
"value": { "type": "string" }
|
|
23
|
-
}
|
|
24
|
-
],
|
|
25
|
-
"events": [],
|
|
26
|
-
"js": {
|
|
27
|
-
"properties": [
|
|
28
|
-
{ "name": "variant", "type": "HeadingVariant" },
|
|
29
|
-
{ "name": "label", "type": "string" },
|
|
30
|
-
{ "name": "elementId" },
|
|
31
|
-
{ "name": "anchorTitle" }
|
|
32
|
-
],
|
|
33
|
-
"events": []
|
|
34
|
-
}
|
|
35
|
-
},
|
|
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": [
|
|
49
|
+
},
|
|
42
50
|
{
|
|
43
|
-
"name": "
|
|
44
|
-
"description": "
|
|
51
|
+
"name": "loading",
|
|
52
|
+
"description": "Loading state indicator",
|
|
53
|
+
"value": { "type": "boolean", "default": "false" }
|
|
45
54
|
},
|
|
46
55
|
{
|
|
47
|
-
"name": "
|
|
48
|
-
"description": "
|
|
56
|
+
"name": "interactive",
|
|
57
|
+
"description": "Whether the avatar is interactive (clickable)",
|
|
58
|
+
"value": { "type": "boolean", "default": "false" }
|
|
49
59
|
},
|
|
50
60
|
{
|
|
51
|
-
"name": "
|
|
52
|
-
"description": "The
|
|
61
|
+
"name": "width",
|
|
62
|
+
"description": "The width of the avatar. This will override the size",
|
|
63
|
+
"value": { "type": "number" }
|
|
53
64
|
},
|
|
54
65
|
{
|
|
55
|
-
"name": "
|
|
56
|
-
"description": "The
|
|
66
|
+
"name": "height",
|
|
67
|
+
"description": "The height of the avatar. This will override the size",
|
|
68
|
+
"value": { "type": "number" }
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"slots": [
|
|
72
|
+
{
|
|
73
|
+
"name": "icon",
|
|
74
|
+
"description": "The icon to display when variant is 'icon'."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "fallback",
|
|
78
|
+
"description": "Custom fallback content when image fails to load."
|
|
57
79
|
}
|
|
58
80
|
],
|
|
59
81
|
"events": [
|
|
60
82
|
{
|
|
61
|
-
"name": "dds-
|
|
62
|
-
"
|
|
63
|
-
"description": "Event fired when the accordion is opened."
|
|
83
|
+
"name": "dds-load",
|
|
84
|
+
"description": "Fired when the image loads successfully."
|
|
64
85
|
},
|
|
65
86
|
{
|
|
66
|
-
"name": "dds-
|
|
67
|
-
"
|
|
68
|
-
"description": "Event fired when the accordion is closed."
|
|
87
|
+
"name": "dds-error",
|
|
88
|
+
"description": "Fired when the image fails to load."
|
|
69
89
|
}
|
|
70
90
|
],
|
|
71
91
|
"js": {
|
|
72
92
|
"properties": [
|
|
73
93
|
{
|
|
74
|
-
"name": "
|
|
75
|
-
"description": "The
|
|
76
|
-
"type": "'
|
|
94
|
+
"name": "shape",
|
|
95
|
+
"description": "The shape of the avatar",
|
|
96
|
+
"type": "'circle' | 'rounded' | 'square'"
|
|
77
97
|
},
|
|
78
98
|
{
|
|
79
|
-
"name": "
|
|
80
|
-
"description": "
|
|
99
|
+
"name": "variant",
|
|
100
|
+
"description": "The variant type of the avatar",
|
|
101
|
+
"type": "'image' | 'initials' | 'icon'"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "src",
|
|
105
|
+
"description": "The source of the avatar image",
|
|
81
106
|
"type": "string"
|
|
82
107
|
},
|
|
83
108
|
{
|
|
84
|
-
"name": "
|
|
85
|
-
"description": "
|
|
109
|
+
"name": "alt",
|
|
110
|
+
"description": "The alt text of the avatar",
|
|
86
111
|
"type": "string"
|
|
87
112
|
},
|
|
88
113
|
{
|
|
89
|
-
"name": "
|
|
90
|
-
"description": "The
|
|
114
|
+
"name": "initials",
|
|
115
|
+
"description": "The initials to display when variant is 'initials'",
|
|
91
116
|
"type": "string"
|
|
92
117
|
},
|
|
93
118
|
{
|
|
94
|
-
"name": "
|
|
95
|
-
"description": "
|
|
96
|
-
"type": "
|
|
119
|
+
"name": "label",
|
|
120
|
+
"description": "Accessible label for the avatar",
|
|
121
|
+
"type": "string"
|
|
97
122
|
},
|
|
98
123
|
{
|
|
99
|
-
"name": "
|
|
100
|
-
"description": "
|
|
124
|
+
"name": "loading",
|
|
125
|
+
"description": "Loading state indicator",
|
|
101
126
|
"type": "boolean"
|
|
102
127
|
},
|
|
103
128
|
{
|
|
104
|
-
"name": "
|
|
105
|
-
"description": "
|
|
106
|
-
"type": "
|
|
129
|
+
"name": "interactive",
|
|
130
|
+
"description": "Whether the avatar is interactive (clickable)",
|
|
131
|
+
"type": "boolean"
|
|
107
132
|
},
|
|
108
133
|
{
|
|
109
|
-
"name": "
|
|
110
|
-
"description": "The
|
|
111
|
-
"type": "
|
|
134
|
+
"name": "width",
|
|
135
|
+
"description": "The width of the avatar. This will override the size",
|
|
136
|
+
"type": "number"
|
|
112
137
|
},
|
|
113
138
|
{
|
|
114
|
-
"name": "
|
|
115
|
-
"description": "
|
|
116
|
-
"type": "
|
|
139
|
+
"name": "height",
|
|
140
|
+
"description": "The height of the avatar. This will override the size",
|
|
141
|
+
"type": "number"
|
|
117
142
|
},
|
|
118
143
|
{
|
|
119
|
-
"name": "
|
|
120
|
-
"description": "
|
|
121
|
-
"type": "
|
|
144
|
+
"name": "size",
|
|
145
|
+
"description": "The size of the avatar. Default is `md`.",
|
|
146
|
+
"type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
|
|
122
147
|
},
|
|
123
148
|
{
|
|
124
|
-
"name": "
|
|
125
|
-
"description": "
|
|
126
|
-
"type": "
|
|
149
|
+
"name": "sizeMap",
|
|
150
|
+
"description": "Responsive size map (e.g. \"md:lg\").",
|
|
151
|
+
"type": "string"
|
|
127
152
|
}
|
|
128
153
|
],
|
|
129
154
|
"events": [
|
|
130
155
|
{
|
|
131
|
-
"name": "dds-
|
|
132
|
-
"
|
|
133
|
-
"description": "Event fired when the accordion is opened."
|
|
156
|
+
"name": "dds-load",
|
|
157
|
+
"description": "Fired when the image loads successfully."
|
|
134
158
|
},
|
|
135
159
|
{
|
|
136
|
-
"name": "dds-
|
|
137
|
-
"
|
|
138
|
-
"description": "Event fired when the accordion is closed."
|
|
160
|
+
"name": "dds-error",
|
|
161
|
+
"description": "Fired when the image fails to load."
|
|
139
162
|
}
|
|
140
163
|
]
|
|
141
164
|
}
|
|
@@ -239,6 +262,113 @@
|
|
|
239
262
|
]
|
|
240
263
|
}
|
|
241
264
|
},
|
|
265
|
+
{
|
|
266
|
+
"name": "dap-ds-accordion",
|
|
267
|
+
"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.",
|
|
268
|
+
"doc-url": "",
|
|
269
|
+
"attributes": [],
|
|
270
|
+
"slots": [
|
|
271
|
+
{
|
|
272
|
+
"name": "default",
|
|
273
|
+
"description": "The content of the accordion."
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"name": "heading",
|
|
277
|
+
"description": "The heading of the accordion."
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"name": "icon-opened",
|
|
281
|
+
"description": "The icon when the accordion is opened."
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"name": "icon-closed",
|
|
285
|
+
"description": "The icon when the accordion is closed."
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"events": [
|
|
289
|
+
{
|
|
290
|
+
"name": "dds-opened",
|
|
291
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
292
|
+
"description": "Event fired when the accordion is opened."
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"name": "dds-closed",
|
|
296
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
297
|
+
"description": "Event fired when the accordion is closed."
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"js": {
|
|
301
|
+
"properties": [
|
|
302
|
+
{
|
|
303
|
+
"name": "size",
|
|
304
|
+
"description": "The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm).",
|
|
305
|
+
"type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "sizeMap",
|
|
309
|
+
"description": "Responsive size map (e.g. \"md:lg\")",
|
|
310
|
+
"type": "string"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"name": "parentSized",
|
|
314
|
+
"description": "When \"true\", size is taken from the parent card if present.",
|
|
315
|
+
"type": "string"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"name": "heading",
|
|
319
|
+
"description": "The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided",
|
|
320
|
+
"type": "string"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"name": "headingLevel",
|
|
324
|
+
"description": "The heading level of the accordion. Default is `4`.",
|
|
325
|
+
"type": "1 | 2 | 3 | 4 | 5 | 6"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "opened",
|
|
329
|
+
"description": "Whether the accordion is opened. Default is `false`.",
|
|
330
|
+
"type": "boolean"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"name": "iconLocation",
|
|
334
|
+
"description": "The location of the icon. Default is `right`.",
|
|
335
|
+
"type": "'left' | 'right'"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"name": "variant",
|
|
339
|
+
"description": "The variant of the accordion.",
|
|
340
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "lastItem",
|
|
344
|
+
"description": "Whether the accordion is the last item.",
|
|
345
|
+
"type": "boolean"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"name": "disabled",
|
|
349
|
+
"description": "Whether the accordion is disabled.",
|
|
350
|
+
"type": "boolean"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "loading",
|
|
354
|
+
"description": "Whether the accordion is in loading state.",
|
|
355
|
+
"type": "boolean"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"events": [
|
|
359
|
+
{
|
|
360
|
+
"name": "dds-opened",
|
|
361
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
362
|
+
"description": "Event fired when the accordion is opened."
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "dds-closed",
|
|
366
|
+
"type": "{ open: boolean, item: AccordionBaseElement }",
|
|
367
|
+
"description": "Event fired when the accordion is closed."
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
}
|
|
371
|
+
},
|
|
242
372
|
{
|
|
243
373
|
"name": "dap-ds-badge",
|
|
244
374
|
"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.",
|
|
@@ -300,292 +430,207 @@
|
|
|
300
430
|
}
|
|
301
431
|
},
|
|
302
432
|
{
|
|
303
|
-
"name": "dap-ds-
|
|
304
|
-
"description": "A
|
|
433
|
+
"name": "dap-ds-breadcrumb",
|
|
434
|
+
"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.",
|
|
305
435
|
"doc-url": "",
|
|
306
436
|
"attributes": [
|
|
307
437
|
{
|
|
308
438
|
"name": "variant",
|
|
309
|
-
"
|
|
310
|
-
"value": {
|
|
311
|
-
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'",
|
|
312
|
-
"default": "'brand'"
|
|
313
|
-
}
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"name": "closeable",
|
|
317
|
-
"description": "Whether the banner is closeable",
|
|
318
|
-
"value": { "type": "boolean" }
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"name": "opened",
|
|
322
|
-
"description": "State of the banner. If false banner is hidden",
|
|
323
|
-
"value": { "type": "string", "default": "'true'" }
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"name": "closeButtonLabel",
|
|
327
|
-
"description": "The aria-label for the close button",
|
|
328
|
-
"value": { "type": "string", "default": "'close'" }
|
|
439
|
+
"value": { "type": "string", "default": "'normal'" }
|
|
329
440
|
},
|
|
330
441
|
{
|
|
331
|
-
"name": "
|
|
332
|
-
"description": "
|
|
333
|
-
"value": { "type": "
|
|
442
|
+
"name": "mobile",
|
|
443
|
+
"description": "Mobile version of the breadcrumb",
|
|
444
|
+
"value": { "type": "boolean", "default": "false" }
|
|
334
445
|
},
|
|
335
446
|
{
|
|
336
|
-
"name": "
|
|
337
|
-
"description": "The
|
|
338
|
-
"value": { "type": "string" }
|
|
447
|
+
"name": "aria-labelledby",
|
|
448
|
+
"description": "The aria-labelledby of the breadcrumb",
|
|
449
|
+
"value": { "type": "string | undefined" }
|
|
339
450
|
}
|
|
340
451
|
],
|
|
341
452
|
"slots": [
|
|
342
|
-
{ "name": "", "description": "The content of the
|
|
343
|
-
{ "name": "actions", "description": "Actions of banner" },
|
|
344
|
-
{ "name": "icon", "description": "The icon of the banner." }
|
|
345
|
-
],
|
|
346
|
-
"events": [
|
|
347
|
-
{
|
|
348
|
-
"name": "dds-close",
|
|
349
|
-
"type": "{ void }",
|
|
350
|
-
"description": "Event fired when the banner is closed."
|
|
351
|
-
}
|
|
352
|
-
],
|
|
353
|
-
"js": {
|
|
354
|
-
"properties": [
|
|
355
|
-
{
|
|
356
|
-
"name": "variant",
|
|
357
|
-
"description": "The variant of the banner",
|
|
358
|
-
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'"
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"name": "closeable",
|
|
362
|
-
"description": "Whether the banner is closeable",
|
|
363
|
-
"type": "boolean"
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"name": "opened",
|
|
367
|
-
"description": "State of the banner. If false banner is hidden",
|
|
368
|
-
"type": "string"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"name": "closeButtonLabel",
|
|
372
|
-
"description": "The aria-label for the close button",
|
|
373
|
-
"type": "string"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"name": "closeButtonTestId",
|
|
377
|
-
"description": "`data-testid` for the close button.",
|
|
378
|
-
"type": "string"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"name": "icon",
|
|
382
|
-
"description": "The icon of the banner, this is a name of a built icon icon",
|
|
383
|
-
"type": "string"
|
|
384
|
-
}
|
|
385
|
-
],
|
|
386
|
-
"events": [
|
|
387
|
-
{
|
|
388
|
-
"name": "dds-close",
|
|
389
|
-
"type": "{ void }",
|
|
390
|
-
"description": "Event fired when the banner is closed."
|
|
391
|
-
}
|
|
392
|
-
]
|
|
393
|
-
}
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"name": "dap-ds-accordion-group",
|
|
397
|
-
"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.",
|
|
398
|
-
"doc-url": "",
|
|
399
|
-
"attributes": [
|
|
400
|
-
{
|
|
401
|
-
"name": "autoClose",
|
|
402
|
-
"description": "Whether to close other accordions when one is opened.",
|
|
403
|
-
"value": { "type": "string", "default": "'true'" }
|
|
404
|
-
},
|
|
453
|
+
{ "name": "", "description": "The content of the breadcrumb." },
|
|
405
454
|
{
|
|
406
|
-
"name": "
|
|
407
|
-
"description": "The
|
|
408
|
-
"value": {
|
|
409
|
-
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'",
|
|
410
|
-
"default": "'default'"
|
|
411
|
-
}
|
|
455
|
+
"name": "separator",
|
|
456
|
+
"description": "The separator between breadcrumb items. Default is '/'."
|
|
412
457
|
}
|
|
413
458
|
],
|
|
414
|
-
"slots": [
|
|
415
|
-
{ "name": "", "description": "The content of the accordion group." }
|
|
416
|
-
],
|
|
417
459
|
"events": [],
|
|
418
460
|
"js": {
|
|
419
461
|
"properties": [
|
|
462
|
+
{ "name": "variant", "type": "string" },
|
|
420
463
|
{
|
|
421
|
-
"name": "
|
|
422
|
-
"description": "
|
|
423
|
-
"type": "
|
|
464
|
+
"name": "mobile",
|
|
465
|
+
"description": "Mobile version of the breadcrumb",
|
|
466
|
+
"type": "boolean"
|
|
424
467
|
},
|
|
425
468
|
{
|
|
426
|
-
"name": "
|
|
427
|
-
"description": "The
|
|
428
|
-
"type": "
|
|
469
|
+
"name": "ariaLabelledBy",
|
|
470
|
+
"description": "The aria-labelledby of the breadcrumb",
|
|
471
|
+
"type": "string | undefined"
|
|
429
472
|
}
|
|
430
473
|
],
|
|
431
474
|
"events": []
|
|
432
475
|
}
|
|
433
476
|
},
|
|
434
477
|
{
|
|
435
|
-
"name": "dap-ds-
|
|
436
|
-
"description": "
|
|
478
|
+
"name": "dap-ds-banner",
|
|
479
|
+
"description": "A banner is a message displayed at the top of the page to provide important information to the user.\n---\n\n\n### **Events:**\n - **dds-close** - Event fired when the banner is closed.\n\n### **Slots:**\n - _default_ - The content of the banner.\n- **actions** - Actions of banner\n- **icon** - The icon of the banner.\n\n### **CSS Properties:**\n - **--dds-banner-gap** - The gap between banner elements (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-banner-line-height** - The line height of the banner text (default: var(--dds-font-line-height-xlarge)) _(default: undefined)_\n- **--dds-banner-transition** - The transition property for the banner (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-banner-brand-background** - The background color of the brand banner (default: var(--dds-banner-background-brand)) _(default: undefined)_\n- **--dds-banner-brand-icon-color** - The color of the brand banner icon (default: var(--dds-banner-icon-brand)) _(default: undefined)_\n- **--dds-banner-brand-text-color** - The text color of the brand banner (default: var(--dds-banner-text-brand)) _(default: undefined)_\n- **--dds-banner-brand-action-color** - The color of the brand banner actions (default: var(--dds-banner-action-enabled)) _(default: undefined)_\n- **--dds-banner-info-background** - The background color of the info banner (default: var(--dds-banner-background-informative)) _(default: undefined)_\n- **--dds-banner-info-icon-color** - The color of the info banner icon (default: var(--dds-banner-icon-informative)) _(default: undefined)_\n- **--dds-banner-info-text-color** - The text color of the info banner (default: var(--dds-banner-text-informative)) _(default: undefined)_\n- **--dds-banner-info-action-color** - The color of the info banner actions (default: var(--dds-banner-action-enabled)) _(default: undefined)_\n- **--dds-banner-positive-background** - The background color of the positive banner (default: var(--dds-banner-background-positive)) _(default: undefined)_\n- **--dds-banner-positive-icon-color** - The color of the positive banner icon (default: var(--dds-banner-icon-positive)) _(default: undefined)_\n- **--dds-banner-positive-text-color** - The text color of the positive banner (default: var(--dds-banner-text-positive)) _(default: undefined)_\n- **--dds-banner-positive-action-color** - The color of the positive banner actions (default: var(--dds-banner-action-enabled)) _(default: undefined)_\n- **--dds-banner-warning-background** - The background color of the warning banner (default: var(--dds-banner-background-warning)) _(default: undefined)_\n- **--dds-banner-warning-icon-color** - The color of the warning banner icon (default: var(--dds-banner-icon-warning)) _(default: undefined)_\n- **--dds-banner-warning-text-color** - The text color of the warning banner (default: var(--dds-banner-text-warning)) _(default: undefined)_\n- **--dds-banner-warning-action-color** - The color of the warning banner actions (default: var(--dds-banner-action-inverted-enabled)) _(default: undefined)_\n- **--dds-banner-negative-background** - The background color of the negative banner (default: var(--dds-banner-background-negative)) _(default: undefined)_\n- **--dds-banner-negative-icon-color** - The color of the negative banner icon (default: var(--dds-banner-icon-negative)) _(default: undefined)_\n- **--dds-banner-negative-text-color** - The text color of the negative banner (default: var(--dds-banner-text-negative)) _(default: undefined)_\n- **--dds-banner-negative-action-color** - The color of the negative banner actions (default: var(--dds-banner-action-inverted-enabled)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main banner container.\n- **card-base** - The wrapper card container.\n- **icon** - The icon of the banner.\n- **icon-element** - The icon element of the banner.\n- **icon-base** - The base of the icon.\n- **closebutton** - The close button of the banner.\n- **close-icon-element** - The icon element of the close button.\n- **close-icon-base** - The base of the close button icon.\n- **actions** - The actions of the banner.\n- **title** - The title of the banner.",
|
|
437
480
|
"doc-url": "",
|
|
438
481
|
"attributes": [
|
|
439
|
-
{
|
|
440
|
-
"name": "shape",
|
|
441
|
-
"description": "The shape of the avatar",
|
|
442
|
-
"value": {
|
|
443
|
-
"type": "'circle' | 'rounded' | 'square'",
|
|
444
|
-
"default": "'circle'"
|
|
445
|
-
}
|
|
446
|
-
},
|
|
447
482
|
{
|
|
448
483
|
"name": "variant",
|
|
449
|
-
"description": "The variant
|
|
484
|
+
"description": "The variant of the banner",
|
|
450
485
|
"value": {
|
|
451
|
-
"type": "'
|
|
452
|
-
"default": "'
|
|
486
|
+
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'",
|
|
487
|
+
"default": "'brand'"
|
|
453
488
|
}
|
|
454
489
|
},
|
|
455
490
|
{
|
|
456
|
-
"name": "
|
|
457
|
-
"description": "
|
|
458
|
-
"value": { "type": "
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
"name": "alt",
|
|
462
|
-
"description": "The alt text of the avatar",
|
|
463
|
-
"value": { "type": "string" }
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"name": "initials",
|
|
467
|
-
"description": "The initials to display when variant is 'initials'",
|
|
468
|
-
"value": { "type": "string" }
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"name": "label",
|
|
472
|
-
"description": "Accessible label for the avatar",
|
|
473
|
-
"value": { "type": "string" }
|
|
491
|
+
"name": "closeable",
|
|
492
|
+
"description": "Whether the banner is closeable",
|
|
493
|
+
"value": { "type": "boolean" }
|
|
474
494
|
},
|
|
475
495
|
{
|
|
476
|
-
"name": "
|
|
477
|
-
"description": "
|
|
478
|
-
"value": { "type": "
|
|
496
|
+
"name": "opened",
|
|
497
|
+
"description": "State of the banner. If false banner is hidden",
|
|
498
|
+
"value": { "type": "string", "default": "'true'" }
|
|
479
499
|
},
|
|
480
500
|
{
|
|
481
|
-
"name": "
|
|
482
|
-
"description": "
|
|
483
|
-
"value": { "type": "
|
|
501
|
+
"name": "closeButtonLabel",
|
|
502
|
+
"description": "The aria-label for the close button",
|
|
503
|
+
"value": { "type": "string", "default": "'close'" }
|
|
484
504
|
},
|
|
485
505
|
{
|
|
486
|
-
"name": "
|
|
487
|
-
"description": "
|
|
488
|
-
"value": { "type": "
|
|
506
|
+
"name": "closeButtonTestId",
|
|
507
|
+
"description": "`data-testid` for the close button.",
|
|
508
|
+
"value": { "type": "string", "default": "'banner-close-button'" }
|
|
489
509
|
},
|
|
490
510
|
{
|
|
491
|
-
"name": "
|
|
492
|
-
"description": "The
|
|
493
|
-
"value": { "type": "
|
|
511
|
+
"name": "icon",
|
|
512
|
+
"description": "The icon of the banner, this is a name of a built icon icon",
|
|
513
|
+
"value": { "type": "string" }
|
|
494
514
|
}
|
|
495
515
|
],
|
|
496
516
|
"slots": [
|
|
497
|
-
{
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
"name": "fallback",
|
|
503
|
-
"description": "Custom fallback content when image fails to load."
|
|
504
|
-
}
|
|
517
|
+
{ "name": "", "description": "The content of the banner." },
|
|
518
|
+
{ "name": "actions", "description": "Actions of banner" },
|
|
519
|
+
{ "name": "icon", "description": "The icon of the banner." }
|
|
505
520
|
],
|
|
506
521
|
"events": [
|
|
507
522
|
{
|
|
508
|
-
"name": "dds-
|
|
509
|
-
"
|
|
510
|
-
|
|
511
|
-
{
|
|
512
|
-
"name": "dds-error",
|
|
513
|
-
"description": "Fired when the image fails to load."
|
|
523
|
+
"name": "dds-close",
|
|
524
|
+
"type": "{ void }",
|
|
525
|
+
"description": "Event fired when the banner is closed."
|
|
514
526
|
}
|
|
515
527
|
],
|
|
516
528
|
"js": {
|
|
517
|
-
"properties": [
|
|
518
|
-
{
|
|
519
|
-
"name": "shape",
|
|
520
|
-
"description": "The shape of the avatar",
|
|
521
|
-
"type": "'circle' | 'rounded' | 'square'"
|
|
522
|
-
},
|
|
529
|
+
"properties": [
|
|
523
530
|
{
|
|
524
531
|
"name": "variant",
|
|
525
|
-
"description": "The variant
|
|
526
|
-
"type": "'
|
|
532
|
+
"description": "The variant of the banner",
|
|
533
|
+
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'"
|
|
527
534
|
},
|
|
528
535
|
{
|
|
529
|
-
"name": "
|
|
530
|
-
"description": "
|
|
531
|
-
"type": "
|
|
536
|
+
"name": "closeable",
|
|
537
|
+
"description": "Whether the banner is closeable",
|
|
538
|
+
"type": "boolean"
|
|
532
539
|
},
|
|
533
540
|
{
|
|
534
|
-
"name": "
|
|
535
|
-
"description": "
|
|
541
|
+
"name": "opened",
|
|
542
|
+
"description": "State of the banner. If false banner is hidden",
|
|
536
543
|
"type": "string"
|
|
537
544
|
},
|
|
538
545
|
{
|
|
539
|
-
"name": "
|
|
540
|
-
"description": "The
|
|
546
|
+
"name": "closeButtonLabel",
|
|
547
|
+
"description": "The aria-label for the close button",
|
|
541
548
|
"type": "string"
|
|
542
549
|
},
|
|
543
550
|
{
|
|
544
|
-
"name": "
|
|
545
|
-
"description": "
|
|
551
|
+
"name": "closeButtonTestId",
|
|
552
|
+
"description": "`data-testid` for the close button.",
|
|
546
553
|
"type": "string"
|
|
547
554
|
},
|
|
548
555
|
{
|
|
549
|
-
"name": "
|
|
550
|
-
"description": "
|
|
551
|
-
"type": "boolean"
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
"name": "interactive",
|
|
555
|
-
"description": "Whether the avatar is interactive (clickable)",
|
|
556
|
-
"type": "boolean"
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
"name": "width",
|
|
560
|
-
"description": "The width of the avatar. This will override the size",
|
|
561
|
-
"type": "number"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"name": "height",
|
|
565
|
-
"description": "The height of the avatar. This will override the size",
|
|
566
|
-
"type": "number"
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
"name": "size",
|
|
570
|
-
"description": "The size of the avatar. Default is `md`.",
|
|
571
|
-
"type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"name": "sizeMap",
|
|
575
|
-
"description": "Responsive size map (e.g. \"md:lg\").",
|
|
556
|
+
"name": "icon",
|
|
557
|
+
"description": "The icon of the banner, this is a name of a built icon icon",
|
|
576
558
|
"type": "string"
|
|
577
559
|
}
|
|
578
560
|
],
|
|
579
561
|
"events": [
|
|
580
562
|
{
|
|
581
|
-
"name": "dds-
|
|
582
|
-
"
|
|
563
|
+
"name": "dds-close",
|
|
564
|
+
"type": "{ void }",
|
|
565
|
+
"description": "Event fired when the banner is closed."
|
|
566
|
+
}
|
|
567
|
+
]
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"name": "dap-ds-accordion-group",
|
|
572
|
+
"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.",
|
|
573
|
+
"doc-url": "",
|
|
574
|
+
"attributes": [
|
|
575
|
+
{
|
|
576
|
+
"name": "autoClose",
|
|
577
|
+
"description": "Whether to close other accordions when one is opened.",
|
|
578
|
+
"value": { "type": "string", "default": "'true'" }
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "variant",
|
|
582
|
+
"description": "The variant of the accordion",
|
|
583
|
+
"value": {
|
|
584
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'",
|
|
585
|
+
"default": "'default'"
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
],
|
|
589
|
+
"slots": [
|
|
590
|
+
{ "name": "", "description": "The content of the accordion group." }
|
|
591
|
+
],
|
|
592
|
+
"events": [],
|
|
593
|
+
"js": {
|
|
594
|
+
"properties": [
|
|
595
|
+
{
|
|
596
|
+
"name": "autoClose",
|
|
597
|
+
"description": "Whether to close other accordions when one is opened.",
|
|
598
|
+
"type": "string"
|
|
583
599
|
},
|
|
584
600
|
{
|
|
585
|
-
"name": "
|
|
586
|
-
"description": "
|
|
601
|
+
"name": "variant",
|
|
602
|
+
"description": "The variant of the accordion",
|
|
603
|
+
"type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
|
|
587
604
|
}
|
|
588
|
-
]
|
|
605
|
+
],
|
|
606
|
+
"events": []
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"name": "dap-ds-anchor-heading",
|
|
611
|
+
"description": "Anchor heading is a heading with an anchor link.\n---\n\n\n### **CSS Properties:**\n - **--dds-anchor-link-color** - The color of the anchor link (default: var(--dds-color-primary)) _(default: undefined)_\n- **--dds-anchor-link-opacity** - The opacity of the anchor link when not hovered (default: 0) _(default: undefined)_\n- **--dds-anchor-link-hover-opacity** - The opacity of the anchor link when hovered (default: 1) _(default: undefined)_\n- **--dds-anchor-link-transition** - The transition property for the anchor link opacity (default: opacity 0.2s ease-in-out) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main anchor heading container.\n- **link** - The link of the anchor heading. dap-ds-link element.\n- **link-base** - The base of the link part.\n- **text** - The text of the anchor heading.",
|
|
612
|
+
"doc-url": "",
|
|
613
|
+
"attributes": [
|
|
614
|
+
{
|
|
615
|
+
"name": "variant",
|
|
616
|
+
"description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
|
|
617
|
+
"value": { "type": "HeadingVariant" }
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"name": "label",
|
|
621
|
+
"description": "The label of the heading.",
|
|
622
|
+
"value": { "type": "string" }
|
|
623
|
+
}
|
|
624
|
+
],
|
|
625
|
+
"events": [],
|
|
626
|
+
"js": {
|
|
627
|
+
"properties": [
|
|
628
|
+
{ "name": "variant", "type": "HeadingVariant" },
|
|
629
|
+
{ "name": "label", "type": "string" },
|
|
630
|
+
{ "name": "elementId" },
|
|
631
|
+
{ "name": "anchorTitle" }
|
|
632
|
+
],
|
|
633
|
+
"events": []
|
|
589
634
|
}
|
|
590
635
|
},
|
|
591
636
|
{
|
|
@@ -1046,44 +1091,178 @@
|
|
|
1046
1091
|
"type": "Dayjs"
|
|
1047
1092
|
},
|
|
1048
1093
|
{
|
|
1049
|
-
"name": "minDate",
|
|
1050
|
-
"description": "The minimum date of the calendar. Only the month and year are considered.",
|
|
1051
|
-
"type": "Dayjs"
|
|
1094
|
+
"name": "minDate",
|
|
1095
|
+
"description": "The minimum date of the calendar. Only the month and year are considered.",
|
|
1096
|
+
"type": "Dayjs"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"name": "maxDate",
|
|
1100
|
+
"description": "The maximum date of the calendar. Only the month and year are considered.",
|
|
1101
|
+
"type": "Dayjs"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"name": "disabledDate",
|
|
1105
|
+
"description": "The function to determine if the date is disabled.",
|
|
1106
|
+
"type": "Function"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"name": "locale",
|
|
1110
|
+
"description": "The locale of the calendar.",
|
|
1111
|
+
"type": "'hu' | 'en' | 'de'"
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"name": "prevButtonTestId",
|
|
1115
|
+
"description": "`data-testid` for the previous-month button.",
|
|
1116
|
+
"type": "string"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"name": "nextButtonTestId",
|
|
1120
|
+
"description": "`data-testid` for the next-month button.",
|
|
1121
|
+
"type": "string"
|
|
1122
|
+
},
|
|
1123
|
+
{ "name": "startDate" },
|
|
1124
|
+
{ "name": "endDate" },
|
|
1125
|
+
{ "name": "shouldHideAdjacentMonths" }
|
|
1126
|
+
],
|
|
1127
|
+
"events": [
|
|
1128
|
+
{
|
|
1129
|
+
"name": "dds-change",
|
|
1130
|
+
"type": "{ value: Dayjs }",
|
|
1131
|
+
"description": "Fired when the calendar value changes."
|
|
1132
|
+
}
|
|
1133
|
+
]
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"name": "dap-ds-callout",
|
|
1138
|
+
"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.",
|
|
1139
|
+
"doc-url": "",
|
|
1140
|
+
"attributes": [
|
|
1141
|
+
{
|
|
1142
|
+
"name": "variant",
|
|
1143
|
+
"description": "The variant of the callout",
|
|
1144
|
+
"value": {
|
|
1145
|
+
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'",
|
|
1146
|
+
"default": "'brand'"
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"name": "alignment",
|
|
1151
|
+
"description": "The alignment of the callout. Can be `vertical` or `horizontal`.",
|
|
1152
|
+
"value": {
|
|
1153
|
+
"type": "'vertical' | 'horizontal'",
|
|
1154
|
+
"default": "'horizontal'"
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"name": "shade",
|
|
1159
|
+
"description": "The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`.",
|
|
1160
|
+
"value": {
|
|
1161
|
+
"type": "'subtle' | 'base' | 'medium' | 'strong'",
|
|
1162
|
+
"default": "'base'"
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"name": "noBorder",
|
|
1167
|
+
"description": "If the callout has a border",
|
|
1168
|
+
"value": { "type": "string", "default": "'true'" }
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"name": "closeable",
|
|
1172
|
+
"description": "If the callout has a close button",
|
|
1173
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"name": "title",
|
|
1177
|
+
"description": "The header of the callout",
|
|
1178
|
+
"value": { "type": "string" }
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"name": "closeButtonLabel",
|
|
1182
|
+
"description": "The label of the close button",
|
|
1183
|
+
"value": { "type": "string" }
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"name": "closeButtonTestId",
|
|
1187
|
+
"description": "`data-testid` for the default close button.",
|
|
1188
|
+
"value": { "type": "string", "default": "'callout-close-button'" }
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"name": "opened",
|
|
1192
|
+
"description": "If the callout is opened",
|
|
1193
|
+
"value": { "type": "string", "default": "'true'" }
|
|
1194
|
+
}
|
|
1195
|
+
],
|
|
1196
|
+
"slots": [
|
|
1197
|
+
{ "name": "", "description": "The content of the callout." },
|
|
1198
|
+
{ "name": "title", "description": "The title of the callout." },
|
|
1199
|
+
{ "name": "icon", "description": "The icon of the callout." },
|
|
1200
|
+
{ "name": "actions", "description": "The actions of the callout." },
|
|
1201
|
+
{
|
|
1202
|
+
"name": "close",
|
|
1203
|
+
"description": "The close button of the callout."
|
|
1204
|
+
}
|
|
1205
|
+
],
|
|
1206
|
+
"events": [
|
|
1207
|
+
{
|
|
1208
|
+
"name": "dds-close",
|
|
1209
|
+
"type": "{ void }",
|
|
1210
|
+
"description": "Fired when the close button is clicked."
|
|
1211
|
+
}
|
|
1212
|
+
],
|
|
1213
|
+
"js": {
|
|
1214
|
+
"properties": [
|
|
1215
|
+
{
|
|
1216
|
+
"name": "variant",
|
|
1217
|
+
"description": "The variant of the callout",
|
|
1218
|
+
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"name": "alignment",
|
|
1222
|
+
"description": "The alignment of the callout. Can be `vertical` or `horizontal`.",
|
|
1223
|
+
"type": "'vertical' | 'horizontal'"
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"name": "shade",
|
|
1227
|
+
"description": "The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`.",
|
|
1228
|
+
"type": "'subtle' | 'base' | 'medium' | 'strong'"
|
|
1052
1229
|
},
|
|
1053
1230
|
{
|
|
1054
|
-
"name": "
|
|
1055
|
-
"description": "
|
|
1056
|
-
"type": "
|
|
1231
|
+
"name": "noBorder",
|
|
1232
|
+
"description": "If the callout has a border",
|
|
1233
|
+
"type": "string"
|
|
1057
1234
|
},
|
|
1058
1235
|
{
|
|
1059
|
-
"name": "
|
|
1060
|
-
"description": "
|
|
1061
|
-
"type": "
|
|
1236
|
+
"name": "closeable",
|
|
1237
|
+
"description": "If the callout has a close button",
|
|
1238
|
+
"type": "boolean"
|
|
1062
1239
|
},
|
|
1063
1240
|
{
|
|
1064
|
-
"name": "
|
|
1065
|
-
"description": "The
|
|
1066
|
-
"type": "
|
|
1241
|
+
"name": "title",
|
|
1242
|
+
"description": "The header of the callout",
|
|
1243
|
+
"type": "string"
|
|
1067
1244
|
},
|
|
1068
1245
|
{
|
|
1069
|
-
"name": "
|
|
1070
|
-
"description": "
|
|
1246
|
+
"name": "closeButtonLabel",
|
|
1247
|
+
"description": "The label of the close button",
|
|
1071
1248
|
"type": "string"
|
|
1072
1249
|
},
|
|
1073
1250
|
{
|
|
1074
|
-
"name": "
|
|
1075
|
-
"description": "`data-testid` for the
|
|
1251
|
+
"name": "closeButtonTestId",
|
|
1252
|
+
"description": "`data-testid` for the default close button.",
|
|
1076
1253
|
"type": "string"
|
|
1077
1254
|
},
|
|
1078
|
-
{
|
|
1079
|
-
|
|
1080
|
-
|
|
1255
|
+
{
|
|
1256
|
+
"name": "opened",
|
|
1257
|
+
"description": "If the callout is opened",
|
|
1258
|
+
"type": "string"
|
|
1259
|
+
}
|
|
1081
1260
|
],
|
|
1082
1261
|
"events": [
|
|
1083
1262
|
{
|
|
1084
|
-
"name": "dds-
|
|
1085
|
-
"type": "{
|
|
1086
|
-
"description": "Fired when the
|
|
1263
|
+
"name": "dds-close",
|
|
1264
|
+
"type": "{ void }",
|
|
1265
|
+
"description": "Fired when the close button is clicked."
|
|
1087
1266
|
}
|
|
1088
1267
|
]
|
|
1089
1268
|
}
|
|
@@ -1424,140 +1603,6 @@
|
|
|
1424
1603
|
"events": []
|
|
1425
1604
|
}
|
|
1426
1605
|
},
|
|
1427
|
-
{
|
|
1428
|
-
"name": "dap-ds-callout",
|
|
1429
|
-
"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.",
|
|
1430
|
-
"doc-url": "",
|
|
1431
|
-
"attributes": [
|
|
1432
|
-
{
|
|
1433
|
-
"name": "variant",
|
|
1434
|
-
"description": "The variant of the callout",
|
|
1435
|
-
"value": {
|
|
1436
|
-
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'",
|
|
1437
|
-
"default": "'brand'"
|
|
1438
|
-
}
|
|
1439
|
-
},
|
|
1440
|
-
{
|
|
1441
|
-
"name": "alignment",
|
|
1442
|
-
"description": "The alignment of the callout. Can be `vertical` or `horizontal`.",
|
|
1443
|
-
"value": {
|
|
1444
|
-
"type": "'vertical' | 'horizontal'",
|
|
1445
|
-
"default": "'horizontal'"
|
|
1446
|
-
}
|
|
1447
|
-
},
|
|
1448
|
-
{
|
|
1449
|
-
"name": "shade",
|
|
1450
|
-
"description": "The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`.",
|
|
1451
|
-
"value": {
|
|
1452
|
-
"type": "'subtle' | 'base' | 'medium' | 'strong'",
|
|
1453
|
-
"default": "'base'"
|
|
1454
|
-
}
|
|
1455
|
-
},
|
|
1456
|
-
{
|
|
1457
|
-
"name": "noBorder",
|
|
1458
|
-
"description": "If the callout has a border",
|
|
1459
|
-
"value": { "type": "string", "default": "'true'" }
|
|
1460
|
-
},
|
|
1461
|
-
{
|
|
1462
|
-
"name": "closeable",
|
|
1463
|
-
"description": "If the callout has a close button",
|
|
1464
|
-
"value": { "type": "boolean", "default": "false" }
|
|
1465
|
-
},
|
|
1466
|
-
{
|
|
1467
|
-
"name": "title",
|
|
1468
|
-
"description": "The header of the callout",
|
|
1469
|
-
"value": { "type": "string" }
|
|
1470
|
-
},
|
|
1471
|
-
{
|
|
1472
|
-
"name": "closeButtonLabel",
|
|
1473
|
-
"description": "The label of the close button",
|
|
1474
|
-
"value": { "type": "string" }
|
|
1475
|
-
},
|
|
1476
|
-
{
|
|
1477
|
-
"name": "closeButtonTestId",
|
|
1478
|
-
"description": "`data-testid` for the default close button.",
|
|
1479
|
-
"value": { "type": "string", "default": "'callout-close-button'" }
|
|
1480
|
-
},
|
|
1481
|
-
{
|
|
1482
|
-
"name": "opened",
|
|
1483
|
-
"description": "If the callout is opened",
|
|
1484
|
-
"value": { "type": "string", "default": "'true'" }
|
|
1485
|
-
}
|
|
1486
|
-
],
|
|
1487
|
-
"slots": [
|
|
1488
|
-
{ "name": "", "description": "The content of the callout." },
|
|
1489
|
-
{ "name": "title", "description": "The title of the callout." },
|
|
1490
|
-
{ "name": "icon", "description": "The icon of the callout." },
|
|
1491
|
-
{ "name": "actions", "description": "The actions of the callout." },
|
|
1492
|
-
{
|
|
1493
|
-
"name": "close",
|
|
1494
|
-
"description": "The close button of the callout."
|
|
1495
|
-
}
|
|
1496
|
-
],
|
|
1497
|
-
"events": [
|
|
1498
|
-
{
|
|
1499
|
-
"name": "dds-close",
|
|
1500
|
-
"type": "{ void }",
|
|
1501
|
-
"description": "Fired when the close button is clicked."
|
|
1502
|
-
}
|
|
1503
|
-
],
|
|
1504
|
-
"js": {
|
|
1505
|
-
"properties": [
|
|
1506
|
-
{
|
|
1507
|
-
"name": "variant",
|
|
1508
|
-
"description": "The variant of the callout",
|
|
1509
|
-
"type": "'brand' | 'positive' | 'info' | 'warning' | 'negative'"
|
|
1510
|
-
},
|
|
1511
|
-
{
|
|
1512
|
-
"name": "alignment",
|
|
1513
|
-
"description": "The alignment of the callout. Can be `vertical` or `horizontal`.",
|
|
1514
|
-
"type": "'vertical' | 'horizontal'"
|
|
1515
|
-
},
|
|
1516
|
-
{
|
|
1517
|
-
"name": "shade",
|
|
1518
|
-
"description": "The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`.",
|
|
1519
|
-
"type": "'subtle' | 'base' | 'medium' | 'strong'"
|
|
1520
|
-
},
|
|
1521
|
-
{
|
|
1522
|
-
"name": "noBorder",
|
|
1523
|
-
"description": "If the callout has a border",
|
|
1524
|
-
"type": "string"
|
|
1525
|
-
},
|
|
1526
|
-
{
|
|
1527
|
-
"name": "closeable",
|
|
1528
|
-
"description": "If the callout has a close button",
|
|
1529
|
-
"type": "boolean"
|
|
1530
|
-
},
|
|
1531
|
-
{
|
|
1532
|
-
"name": "title",
|
|
1533
|
-
"description": "The header of the callout",
|
|
1534
|
-
"type": "string"
|
|
1535
|
-
},
|
|
1536
|
-
{
|
|
1537
|
-
"name": "closeButtonLabel",
|
|
1538
|
-
"description": "The label of the close button",
|
|
1539
|
-
"type": "string"
|
|
1540
|
-
},
|
|
1541
|
-
{
|
|
1542
|
-
"name": "closeButtonTestId",
|
|
1543
|
-
"description": "`data-testid` for the default close button.",
|
|
1544
|
-
"type": "string"
|
|
1545
|
-
},
|
|
1546
|
-
{
|
|
1547
|
-
"name": "opened",
|
|
1548
|
-
"description": "If the callout is opened",
|
|
1549
|
-
"type": "string"
|
|
1550
|
-
}
|
|
1551
|
-
],
|
|
1552
|
-
"events": [
|
|
1553
|
-
{
|
|
1554
|
-
"name": "dds-close",
|
|
1555
|
-
"type": "{ void }",
|
|
1556
|
-
"description": "Fired when the close button is clicked."
|
|
1557
|
-
}
|
|
1558
|
-
]
|
|
1559
|
-
}
|
|
1560
|
-
},
|
|
1561
1606
|
{
|
|
1562
1607
|
"name": "dap-ds-checkbox",
|
|
1563
1608
|
"description": "A checkbox is a form element that allows the user to select one or more options from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the checkbox is checked or unchecked.\n- **dds-blur** - Emitted when the checkbox loses focus.\n- **dds-focus** - Emitted when the checkbox gains focus.\n- **dds-input** - Emitted when the checkbox receives input.\n\n### **Methods:**\n - **focus(): _void_** - Programmatically focuses the checkbox input element.\n- **blur(): _void_** - Programmatically blurs the checkbox input element.\n\n### **CSS Properties:**\n - **--dds-checkbox-size** - The size of the checkbox. (default: var(--dds-spacing-500)) _(default: undefined)_\n- **--dds-checkbox-border-width** - The border width of the checkbox. (default: var(--dds-border-width-large)) _(default: undefined)_\n- **--dds-checkbox-border-radius** - The border radius of the checkbox. (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-checkbox-border-color** - The border color of the checkbox. (default: var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-checkbox-background-color** - The background color of the checkbox. (default: transparent) _(default: undefined)_\n- **--dds-checkbox-icon-color** - The color of the checkbox icon. (default: var(--dds-button-primary-icon-enabled)) _(default: undefined)_\n- **--dds-checkbox-hover-border-color** - The border color when hovering over the checkbox. (default: var(--dds-border-neutral-medium)) _(default: undefined)_\n- **--dds-checkbox-hover-background-color** - The background color when hovering over the checkbox. (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-checkbox-active-border-color** - The border color when the checkbox is active. (default: var(--dds-border-neutral-strong)) _(default: undefined)_\n- **--dds-checkbox-active-background-color** - The background color when the checkbox is active. (default: var(--dds-background-neutral-strong)) _(default: undefined)_\n- **--dds-checkbox-checked-border-color** - The border color when the checkbox is checked. (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-background-color** - The background color when the checkbox is checked. (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-hover-border-color** - The border color when hovering over a checked checkbox. (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-hover-background-color** - The background color when hovering over a checked checkbox. (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-active-border-color** - The border color when a checked checkbox is active. (default: var(--dds-background-brand-strong-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-active-background-color** - The background color when a checked checkbox is active. (default: var(--dds-background-brand-strong-inverted)) _(default: undefined)_\n- **--dds-checkbox-invalid-border-color** - The border color when the checkbox is invalid. (default: var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-checkbox-invalid-background-color** - The background color when the checkbox is invalid. (default: var(--dds-background-negative-base)) _(default: undefined)_\n- **--dds-checkbox-invalid-hover-border-color** - The border color when hovering over an invalid checkbox. (default: var(--dds-border-negative-medium)) _(default: undefined)_\n- **--dds-checkbox-invalid-hover-background-color** - The background color when hovering over an invalid checkbox. (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-checkbox-invalid-active-border-color** - The border color when an invalid checkbox is active. (default: var(--dds-border-negative-strong)) _(default: undefined)_\n- **--dds-checkbox-invalid-active-background-color** - The background color when an invalid checkbox is active. (default: var(--dds-background-negative-strong)) _(default: undefined)_\n- **--dds-checkbox-disabled-border-color** - The border color when the checkbox is disabled. (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-checkbox-disabled-background-color** - The background color when the checkbox is disabled. (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-checkbox-disabled-icon-color** - The color of the checkbox icon when disabled. (default: var(--dds-button-primary-icon-disabled)) _(default: undefined)_\n- **--dds-checkbox-readonly-border-color** - The border color when the checkbox is readonly. (default: var(--dds-border-neutral-subtle)) _(default: undefined)_\n- **--dds-checkbox-readonly-background-color** - The background color when the checkbox is readonly. (default: var(--dds-background-neutral-subtle)) _(default: undefined)_\n- **--dds-checkbox-readonly-icon-color** - The color of the checkbox icon when readonly. (default: var(--dds-text-neutral-base)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main checkbox container.\n- **label** - The label of the checkbox.\n- **input** - The input of the checkbox.\n- **control** - The control of the checkbox.\n- **icon** - The icon of the checkbox.\n- **icon-base** - The base icon container.\n- **label-container** - The label container of the checkbox.\n- **description** - The description of the checkbox.\n- **readonly** - The readonly state of the checkbox.",
|
|
@@ -1878,51 +1923,6 @@
|
|
|
1878
1923
|
]
|
|
1879
1924
|
}
|
|
1880
1925
|
},
|
|
1881
|
-
{
|
|
1882
|
-
"name": "dap-ds-breadcrumb",
|
|
1883
|
-
"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.",
|
|
1884
|
-
"doc-url": "",
|
|
1885
|
-
"attributes": [
|
|
1886
|
-
{
|
|
1887
|
-
"name": "variant",
|
|
1888
|
-
"value": { "type": "string", "default": "'normal'" }
|
|
1889
|
-
},
|
|
1890
|
-
{
|
|
1891
|
-
"name": "mobile",
|
|
1892
|
-
"description": "Mobile version of the breadcrumb",
|
|
1893
|
-
"value": { "type": "boolean", "default": "false" }
|
|
1894
|
-
},
|
|
1895
|
-
{
|
|
1896
|
-
"name": "aria-labelledby",
|
|
1897
|
-
"description": "The aria-labelledby of the breadcrumb",
|
|
1898
|
-
"value": { "type": "string | undefined" }
|
|
1899
|
-
}
|
|
1900
|
-
],
|
|
1901
|
-
"slots": [
|
|
1902
|
-
{ "name": "", "description": "The content of the breadcrumb." },
|
|
1903
|
-
{
|
|
1904
|
-
"name": "separator",
|
|
1905
|
-
"description": "The separator between breadcrumb items. Default is '/'."
|
|
1906
|
-
}
|
|
1907
|
-
],
|
|
1908
|
-
"events": [],
|
|
1909
|
-
"js": {
|
|
1910
|
-
"properties": [
|
|
1911
|
-
{ "name": "variant", "type": "string" },
|
|
1912
|
-
{
|
|
1913
|
-
"name": "mobile",
|
|
1914
|
-
"description": "Mobile version of the breadcrumb",
|
|
1915
|
-
"type": "boolean"
|
|
1916
|
-
},
|
|
1917
|
-
{
|
|
1918
|
-
"name": "ariaLabelledBy",
|
|
1919
|
-
"description": "The aria-labelledby of the breadcrumb",
|
|
1920
|
-
"type": "string | undefined"
|
|
1921
|
-
}
|
|
1922
|
-
],
|
|
1923
|
-
"events": []
|
|
1924
|
-
}
|
|
1925
|
-
},
|
|
1926
1926
|
{
|
|
1927
1927
|
"name": "dap-ds-code-puncher-slot",
|
|
1928
1928
|
"description": "Individual digit input slot for code puncher.\n---\n\n\n### **CSS Parts:**\n - **base** - The slot container.\n- **input** - The input element.",
|
|
@@ -11905,7 +11905,7 @@
|
|
|
11905
11905
|
}
|
|
11906
11906
|
},
|
|
11907
11907
|
{
|
|
11908
|
-
"name": "dap-ds-icon-arrow-left-s-
|
|
11908
|
+
"name": "dap-ds-icon-arrow-left-s-fill",
|
|
11909
11909
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11910
11910
|
"doc-url": "",
|
|
11911
11911
|
"attributes": [
|
|
@@ -11958,7 +11958,7 @@
|
|
|
11958
11958
|
}
|
|
11959
11959
|
},
|
|
11960
11960
|
{
|
|
11961
|
-
"name": "dap-ds-icon-arrow-left-s-
|
|
11961
|
+
"name": "dap-ds-icon-arrow-left-s-line",
|
|
11962
11962
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
11963
11963
|
"doc-url": "",
|
|
11964
11964
|
"attributes": [
|
|
@@ -12594,7 +12594,7 @@
|
|
|
12594
12594
|
}
|
|
12595
12595
|
},
|
|
12596
12596
|
{
|
|
12597
|
-
"name": "dap-ds-icon-
|
|
12597
|
+
"name": "dap-ds-icon-calendar-line",
|
|
12598
12598
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
12599
12599
|
"doc-url": "",
|
|
12600
12600
|
"attributes": [
|
|
@@ -12647,7 +12647,7 @@
|
|
|
12647
12647
|
}
|
|
12648
12648
|
},
|
|
12649
12649
|
{
|
|
12650
|
-
"name": "dap-ds-icon-
|
|
12650
|
+
"name": "dap-ds-icon-home-6-line",
|
|
12651
12651
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
12652
12652
|
"doc-url": "",
|
|
12653
12653
|
"attributes": [
|
|
@@ -12859,7 +12859,7 @@
|
|
|
12859
12859
|
}
|
|
12860
12860
|
},
|
|
12861
12861
|
{
|
|
12862
|
-
"name": "dap-ds-icon-
|
|
12862
|
+
"name": "dap-ds-icon-clipboard-line",
|
|
12863
12863
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
12864
12864
|
"doc-url": "",
|
|
12865
12865
|
"attributes": [
|
|
@@ -12912,7 +12912,7 @@
|
|
|
12912
12912
|
}
|
|
12913
12913
|
},
|
|
12914
12914
|
{
|
|
12915
|
-
"name": "dap-ds-icon-
|
|
12915
|
+
"name": "dap-ds-icon-file-copy-line",
|
|
12916
12916
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
12917
12917
|
"doc-url": "",
|
|
12918
12918
|
"attributes": [
|
|
@@ -12965,7 +12965,7 @@
|
|
|
12965
12965
|
}
|
|
12966
12966
|
},
|
|
12967
12967
|
{
|
|
12968
|
-
"name": "dap-ds-icon-file-
|
|
12968
|
+
"name": "dap-ds-icon-file-image-line",
|
|
12969
12969
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
12970
12970
|
"doc-url": "",
|
|
12971
12971
|
"attributes": [
|
|
@@ -13018,7 +13018,7 @@
|
|
|
13018
13018
|
}
|
|
13019
13019
|
},
|
|
13020
13020
|
{
|
|
13021
|
-
"name": "dap-ds-icon-file-
|
|
13021
|
+
"name": "dap-ds-icon-file-music-line",
|
|
13022
13022
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13023
13023
|
"doc-url": "",
|
|
13024
13024
|
"attributes": [
|
|
@@ -13071,7 +13071,7 @@
|
|
|
13071
13071
|
}
|
|
13072
13072
|
},
|
|
13073
13073
|
{
|
|
13074
|
-
"name": "dap-ds-icon-file-
|
|
13074
|
+
"name": "dap-ds-icon-file-text-line",
|
|
13075
13075
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13076
13076
|
"doc-url": "",
|
|
13077
13077
|
"attributes": [
|
|
@@ -13124,7 +13124,7 @@
|
|
|
13124
13124
|
}
|
|
13125
13125
|
},
|
|
13126
13126
|
{
|
|
13127
|
-
"name": "dap-ds-icon-file-
|
|
13127
|
+
"name": "dap-ds-icon-file-video-line",
|
|
13128
13128
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13129
13129
|
"doc-url": "",
|
|
13130
13130
|
"attributes": [
|
|
@@ -13177,7 +13177,7 @@
|
|
|
13177
13177
|
}
|
|
13178
13178
|
},
|
|
13179
13179
|
{
|
|
13180
|
-
"name": "dap-ds-icon-
|
|
13180
|
+
"name": "dap-ds-icon-folder-line",
|
|
13181
13181
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13182
13182
|
"doc-url": "",
|
|
13183
13183
|
"attributes": [
|
|
@@ -13230,7 +13230,7 @@
|
|
|
13230
13230
|
}
|
|
13231
13231
|
},
|
|
13232
13232
|
{
|
|
13233
|
-
"name": "dap-ds-icon-folder-line",
|
|
13233
|
+
"name": "dap-ds-icon-folder-open-line",
|
|
13234
13234
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13235
13235
|
"doc-url": "",
|
|
13236
13236
|
"attributes": [
|
|
@@ -13283,7 +13283,7 @@
|
|
|
13283
13283
|
}
|
|
13284
13284
|
},
|
|
13285
13285
|
{
|
|
13286
|
-
"name": "dap-ds-icon-
|
|
13286
|
+
"name": "dap-ds-icon-separator",
|
|
13287
13287
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13288
13288
|
"doc-url": "",
|
|
13289
13289
|
"attributes": [
|
|
@@ -13760,7 +13760,7 @@
|
|
|
13760
13760
|
}
|
|
13761
13761
|
},
|
|
13762
13762
|
{
|
|
13763
|
-
"name": "dap-ds-icon-alert-
|
|
13763
|
+
"name": "dap-ds-icon-alert-fill",
|
|
13764
13764
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13765
13765
|
"doc-url": "",
|
|
13766
13766
|
"attributes": [
|
|
@@ -13813,7 +13813,7 @@
|
|
|
13813
13813
|
}
|
|
13814
13814
|
},
|
|
13815
13815
|
{
|
|
13816
|
-
"name": "dap-ds-icon-alert-
|
|
13816
|
+
"name": "dap-ds-icon-alert-line",
|
|
13817
13817
|
"description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
|
|
13818
13818
|
"doc-url": "",
|
|
13819
13819
|
"attributes": [
|