@rei/cedar 13.5.0-alpha.1 → 13.5.0-alpha.2
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/cedar-compiled.css +1031 -1031
- package/dist/component-docgen.json +3298 -0
- package/dist/icon-component-docgen.json +4094 -0
- package/dist/src/component-docgen.json.mjs +2421 -0
- package/dist/src/components/accordion/CdrAccordion.vue.mjs +13 -1
- package/dist/src/components/accordion/CdrAccordionGroup.vue.mjs +4 -0
- package/dist/src/components/accordion/styles/CdrAccordion.module.scss.mjs +29 -29
- package/dist/src/components/accordion/styles/CdrAccordionGroup.module.scss.mjs +2 -2
- package/dist/src/components/banner/CdrBanner.vue.mjs +5 -0
- package/dist/src/components/banner/styles/CdrBanner.module.scss.mjs +14 -14
- package/dist/src/components/breadcrumb/CdrBreadcrumb.vue.mjs +21 -8
- package/dist/src/components/breadcrumb/styles/CdrBreadcrumb.module.scss.mjs +7 -7
- package/dist/src/components/button/CdrButton.vue.mjs +29 -0
- package/dist/src/components/button/styles/CdrButton.module.scss.mjs +31 -31
- package/dist/src/components/caption/CdrCaption.vue.mjs +8 -0
- package/dist/src/components/caption/styles/CdrCaption.module.scss.mjs +2 -2
- package/dist/src/components/card/CdrCard.vue.mjs +3 -0
- package/dist/src/components/card/styles/CdrCard.module.scss.mjs +1 -1
- package/dist/src/components/checkbox/CdrCheckbox.vue.mjs +39 -21
- package/dist/src/components/checkbox/styles/CdrCheckbox.module.scss.mjs +25 -25
- package/dist/src/components/chip/CdrChipGroup.vue.mjs +6 -0
- package/dist/src/components/chip/styles/CdrChip.module.scss.mjs +4 -4
- package/dist/src/components/chip/styles/CdrChipGroup.module.scss.mjs +4 -4
- package/dist/src/components/container/CdrContainer.vue.mjs +6 -1
- package/dist/src/components/container/styles/CdrContainer.module.scss.mjs +2 -2
- package/dist/src/components/formError/styles/CdrFormError.module.scss.mjs +2 -2
- package/dist/src/components/formGroup/styles/CdrFormGroup.module.scss.mjs +8 -8
- package/dist/src/components/grid/CdrGrid.vue.mjs +4 -3
- package/dist/src/components/grid/styles/CdrGrid.module.scss.mjs +21 -21
- package/dist/src/components/icon/CdrIcon.vue.mjs +8 -5
- package/dist/src/components/icon/styles/CdrIcon.module.scss.mjs +12 -12
- package/dist/src/components/image/CdrImg.vue.mjs +16 -5
- package/dist/src/components/image/styles/CdrImg.module.scss.mjs +8 -8
- package/dist/src/components/input/CdrInput.vue.mjs +38 -10
- package/dist/src/components/input/styles/CdrInput.module.scss.mjs +32 -32
- package/dist/src/components/labelStandalone/styles/CdrLabelStandalone.module.scss.mjs +12 -12
- package/dist/src/components/labelWrapper/styles/CdrLabelWrapper.module.scss.mjs +23 -23
- package/dist/src/components/link/CdrLink.vue.mjs +14 -0
- package/dist/src/components/link/styles/CdrLink.module.scss.mjs +3 -3
- package/dist/src/components/list/CdrList.vue.mjs +7 -1
- package/dist/src/components/list/styles/CdrList.module.scss.mjs +5 -5
- package/dist/src/components/modal/CdrModal.vue.mjs +28 -1
- package/dist/src/components/modal/styles/CdrModal.module.scss.mjs +12 -12
- package/dist/src/components/pagination/CdrPagination.vue.mjs +53 -24
- package/dist/src/components/pagination/styles/CdrPagination.module.scss.mjs +53 -53
- package/dist/src/components/popover/CdrPopover.vue.mjs +33 -11
- package/dist/src/components/popover/styles/CdrPopover.module.scss.mjs +63 -63
- package/dist/src/components/popup/styles/CdrPopup.module.scss.mjs +14 -14
- package/dist/src/components/quote/CdrQuote.vue.mjs +11 -2
- package/dist/src/components/quote/styles/CdrQuote.module.scss.mjs +4 -4
- package/dist/src/components/radio/CdrRadio.vue.mjs +26 -7
- package/dist/src/components/radio/styles/CdrRadio.module.scss.mjs +25 -25
- package/dist/src/components/rating/CdrRating.vue.mjs +8 -3
- package/dist/src/components/rating/styles/CdrRating.module.scss.mjs +28 -28
- package/dist/src/components/select/CdrSelect.vue.mjs +41 -15
- package/dist/src/components/select/styles/CdrSelect.module.scss.mjs +42 -42
- package/dist/src/components/skeleton/CdrSkeleton.vue.mjs +6 -0
- package/dist/src/components/skeleton/CdrSkeletonBone.vue.mjs +5 -0
- package/dist/src/components/skeleton/styles/CdrSkeleton.module.scss.mjs +1 -1
- package/dist/src/components/skeleton/styles/CdrSkeletonBone.module.scss.mjs +7 -7
- package/dist/src/components/switch/CdrSwitch.vue.mjs +21 -1
- package/dist/src/components/switch/styles/CdrSwitch.module.scss.mjs +8 -8
- package/dist/src/components/table/CdrTable.vue.mjs +12 -0
- package/dist/src/components/table/styles/CdrTable.module.scss.mjs +13 -13
- package/dist/src/components/tabs/CdrTabPanel.vue.mjs +22 -11
- package/dist/src/components/tabs/CdrTabs.vue.mjs +20 -0
- package/dist/src/components/tabs/styles/CdrTabPanel.module.scss.mjs +5 -5
- package/dist/src/components/tabs/styles/CdrTabs.module.scss.mjs +28 -28
- package/dist/src/components/text/CdrText.vue.mjs +23 -17
- package/dist/src/components/text/styles/CdrText.module.scss.mjs +1 -1
- package/dist/src/components/toast/CdrToast.vue.mjs +17 -1
- package/dist/src/components/toast/styles/CdrToast.module.scss.mjs +57 -57
- package/dist/src/components/toggleButton/CdrToggleButton.vue.mjs +3 -0
- package/dist/src/components/toggleButton/CdrToggleGroup.vue.mjs +13 -1
- package/dist/src/components/toggleButton/styles/CdrToggleButton.module.scss.mjs +2 -2
- package/dist/src/components/toggleButton/styles/CdrToggleGroup.module.scss.mjs +5 -5
- package/dist/src/components/tooltip/CdrTooltip.vue.mjs +22 -1
- package/dist/src/components/tooltip/styles/CdrTooltip.module.scss.mjs +16 -16
- package/dist/src/lib.mjs +376 -374
- package/dist/style/cdr-accordion-group.css +1 -1
- package/dist/style/cdr-accordion.css +1 -1
- package/dist/style/cdr-banner.css +1 -1
- package/dist/style/cdr-breadcrumb.css +1 -1
- package/dist/style/cdr-button.css +1 -1
- package/dist/style/cdr-caption.css +1 -1
- package/dist/style/cdr-card.css +1 -1
- package/dist/style/cdr-checkbox.css +1 -1
- package/dist/style/cdr-chip-group.css +1 -1
- package/dist/style/cdr-chip.css +1 -1
- package/dist/style/cdr-container.css +1 -1
- package/dist/style/cdr-form-error.css +1 -1
- package/dist/style/cdr-form-group.css +1 -1
- package/dist/style/cdr-grid.css +1 -1
- package/dist/style/cdr-icon.css +1 -1
- package/dist/style/cdr-img.css +1 -1
- package/dist/style/cdr-input.css +1 -1
- package/dist/style/cdr-label-standalone.css +1 -1
- package/dist/style/cdr-label-wrapper.css +1 -1
- package/dist/style/cdr-link.css +1 -1
- package/dist/style/cdr-list.css +1 -1
- package/dist/style/cdr-modal.css +1 -1
- package/dist/style/cdr-pagination.css +1 -1
- package/dist/style/cdr-popover.css +1 -1
- package/dist/style/cdr-popup.css +1 -1
- package/dist/style/cdr-quote.css +1 -1
- package/dist/style/cdr-radio.css +1 -1
- package/dist/style/cdr-rating.css +1 -1
- package/dist/style/cdr-select.css +1 -1
- package/dist/style/cdr-skeleton-bone.css +1 -1
- package/dist/style/cdr-skeleton.css +1 -1
- package/dist/style/cdr-switch.css +1 -1
- package/dist/style/cdr-tab-panel.css +1 -1
- package/dist/style/cdr-table.css +1 -1
- package/dist/style/cdr-tabs.css +1 -1
- package/dist/style/cdr-text.css +1 -1
- package/dist/style/cdr-toast.css +1 -1
- package/dist/style/cdr-toggle-button.css +1 -1
- package/dist/style/cdr-toggle-group.css +1 -1
- package/dist/style/cdr-tooltip.css +1 -1
- package/dist/style.css +1 -1
- package/package.json +5 -2
|
@@ -0,0 +1,3298 @@
|
|
|
1
|
+
{
|
|
2
|
+
"CdrAccordionGroup": {
|
|
3
|
+
"displayName": "CdrAccordionGroup",
|
|
4
|
+
"exportName": "default",
|
|
5
|
+
"description": "",
|
|
6
|
+
"tags": {},
|
|
7
|
+
"props": [
|
|
8
|
+
{
|
|
9
|
+
"name": "unwrap",
|
|
10
|
+
"description": "A prop that will present accordion content as unwrapped. All content is expanded at the provided breakpoints.",
|
|
11
|
+
"tags": {},
|
|
12
|
+
"values": [
|
|
13
|
+
"@xs",
|
|
14
|
+
"@sm",
|
|
15
|
+
"@md",
|
|
16
|
+
"@lg",
|
|
17
|
+
"true"
|
|
18
|
+
],
|
|
19
|
+
"type": {
|
|
20
|
+
"name": "string|boolean"
|
|
21
|
+
},
|
|
22
|
+
"defaultValue": {
|
|
23
|
+
"func": false,
|
|
24
|
+
"value": false
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"slots": [
|
|
29
|
+
{
|
|
30
|
+
"name": "default",
|
|
31
|
+
"description": "CdrAccordionGroup content (i.e. CdrAccordion components)"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"sourceFiles": [
|
|
35
|
+
"./src/components/accordion/CdrAccordionGroup.vue"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"CdrAccordion": {
|
|
39
|
+
"displayName": "CdrAccordion",
|
|
40
|
+
"description": "Vertically-stacked list that allows users to expand and collapse additional content",
|
|
41
|
+
"tags": {},
|
|
42
|
+
"exportName": "default",
|
|
43
|
+
"props": [
|
|
44
|
+
{
|
|
45
|
+
"name": "id",
|
|
46
|
+
"description": "The unique id of an accordion.",
|
|
47
|
+
"tags": {
|
|
48
|
+
"demoIgnore": [
|
|
49
|
+
{
|
|
50
|
+
"description": "true",
|
|
51
|
+
"title": "demoIgnore"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"type": {
|
|
56
|
+
"name": "string"
|
|
57
|
+
},
|
|
58
|
+
"required": true
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "opened",
|
|
62
|
+
"description": "Toggle this value to open/close the accordion.",
|
|
63
|
+
"tags": {
|
|
64
|
+
"demoIgnore": [
|
|
65
|
+
{
|
|
66
|
+
"description": "true",
|
|
67
|
+
"title": "demoIgnore"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"type": {
|
|
72
|
+
"name": "boolean"
|
|
73
|
+
},
|
|
74
|
+
"defaultValue": {
|
|
75
|
+
"func": false,
|
|
76
|
+
"value": false
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "compact",
|
|
81
|
+
"description": "Sets a compact style.",
|
|
82
|
+
"type": {
|
|
83
|
+
"name": "boolean"
|
|
84
|
+
},
|
|
85
|
+
"defaultValue": {
|
|
86
|
+
"func": false,
|
|
87
|
+
"value": false
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "borderAligned",
|
|
92
|
+
"description": "Sets a border-aligned style.",
|
|
93
|
+
"type": {
|
|
94
|
+
"name": "boolean"
|
|
95
|
+
},
|
|
96
|
+
"defaultValue": {
|
|
97
|
+
"func": false,
|
|
98
|
+
"value": false
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "level",
|
|
103
|
+
"description": "Sets the heading level",
|
|
104
|
+
"tags": {
|
|
105
|
+
"demoIgnore": [
|
|
106
|
+
{
|
|
107
|
+
"description": "true",
|
|
108
|
+
"title": "demoIgnore"
|
|
109
|
+
}
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
"type": {
|
|
113
|
+
"name": "string|number"
|
|
114
|
+
},
|
|
115
|
+
"required": true
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "contentSpacing",
|
|
119
|
+
"description": "Toggles content spacing (padding)",
|
|
120
|
+
"type": {
|
|
121
|
+
"name": "boolean"
|
|
122
|
+
},
|
|
123
|
+
"defaultValue": {
|
|
124
|
+
"func": false,
|
|
125
|
+
"value": true
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "label",
|
|
130
|
+
"description": "Sets the readable text on CdrAccordion button (also can be slotted)",
|
|
131
|
+
"tags": {
|
|
132
|
+
"demoIgnore": [
|
|
133
|
+
{
|
|
134
|
+
"description": "true",
|
|
135
|
+
"title": "demoIgnore"
|
|
136
|
+
}
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
"type": {
|
|
140
|
+
"name": "string"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"events": [
|
|
145
|
+
{
|
|
146
|
+
"name": "accordion-toggle",
|
|
147
|
+
"description": "Emits on accordion open/close"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"slots": [
|
|
151
|
+
{
|
|
152
|
+
"name": "label",
|
|
153
|
+
"description": " Sets the readable text on the CdrAccordion button"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "default",
|
|
157
|
+
"description": "CdrAccordion content"
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"sourceFiles": [
|
|
161
|
+
"./src/components/accordion/CdrAccordion.vue"
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
"CdrBreadcrumb": {
|
|
165
|
+
"displayName": "CdrBreadcrumb",
|
|
166
|
+
"description": "Navigation used to reveal a page's location within the site hierarchy",
|
|
167
|
+
"tags": {},
|
|
168
|
+
"exportName": "default",
|
|
169
|
+
"props": [
|
|
170
|
+
{
|
|
171
|
+
"name": "items",
|
|
172
|
+
"description": "Sets the array of a breadcrumb object containing a 'url' and 'name' property.",
|
|
173
|
+
"tags": {
|
|
174
|
+
"demoIgnore": [
|
|
175
|
+
{
|
|
176
|
+
"description": "true",
|
|
177
|
+
"title": "demoIgnore"
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
"type": {
|
|
182
|
+
"name": "array"
|
|
183
|
+
},
|
|
184
|
+
"defaultValue": {
|
|
185
|
+
"func": false,
|
|
186
|
+
"value": []
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "truncationEnabled",
|
|
191
|
+
"description": "Controls the ability to truncate the entire breadcrumb path. If this value is false, truncation will no longer occur.",
|
|
192
|
+
"type": {
|
|
193
|
+
"name": "boolean"
|
|
194
|
+
},
|
|
195
|
+
"defaultValue": {
|
|
196
|
+
"func": false,
|
|
197
|
+
"value": true
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "id",
|
|
202
|
+
"description": "Define a custom ID for the `<nav>` element. Randomly generated if no ID provided.",
|
|
203
|
+
"tags": {
|
|
204
|
+
"demoIgnore": [
|
|
205
|
+
{
|
|
206
|
+
"description": "true",
|
|
207
|
+
"title": "demoIgnore"
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
"type": {
|
|
212
|
+
"name": "string"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"events": [
|
|
217
|
+
{
|
|
218
|
+
"name": "navigate",
|
|
219
|
+
"description": "Emits when a breadcrumb item is clicked. `e.preventDefault()` may be used to override the default link navigation."
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"slots": [
|
|
223
|
+
{
|
|
224
|
+
"name": "link",
|
|
225
|
+
"scoped": true,
|
|
226
|
+
"bindings": [
|
|
227
|
+
{
|
|
228
|
+
"name": "class",
|
|
229
|
+
"title": "binding"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "href",
|
|
233
|
+
"title": "binding"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "content",
|
|
237
|
+
"title": "binding"
|
|
238
|
+
}
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"sourceFiles": [
|
|
243
|
+
"./src/components/breadcrumb/CdrBreadcrumb.vue"
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
"CdrBanner": {
|
|
247
|
+
"displayName": "CdrBanner",
|
|
248
|
+
"description": "Provides contextual feedback messages for typical user actions",
|
|
249
|
+
"tags": {},
|
|
250
|
+
"exportName": "default",
|
|
251
|
+
"props": [
|
|
252
|
+
{
|
|
253
|
+
"name": "type",
|
|
254
|
+
"description": "Sets the banner style.",
|
|
255
|
+
"tags": {
|
|
256
|
+
"demoSelectMultiple": [
|
|
257
|
+
{
|
|
258
|
+
"description": "false",
|
|
259
|
+
"title": "demoSelectMultiple"
|
|
260
|
+
}
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
"values": [
|
|
264
|
+
"info",
|
|
265
|
+
"warning",
|
|
266
|
+
"success",
|
|
267
|
+
"error",
|
|
268
|
+
"default"
|
|
269
|
+
],
|
|
270
|
+
"type": {
|
|
271
|
+
"name": "string"
|
|
272
|
+
},
|
|
273
|
+
"defaultValue": {
|
|
274
|
+
"func": false,
|
|
275
|
+
"value": "'default'"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
"slots": [
|
|
280
|
+
{
|
|
281
|
+
"name": "icon-left",
|
|
282
|
+
"description": "Icon matching banner type"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"name": "default",
|
|
286
|
+
"description": "Primary message content"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "icon-right",
|
|
290
|
+
"description": "Additional icon"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "message-body",
|
|
294
|
+
"description": "Additional content about the message"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"name": "info-action",
|
|
298
|
+
"description": "Action-wrapped icon"
|
|
299
|
+
}
|
|
300
|
+
],
|
|
301
|
+
"sourceFiles": [
|
|
302
|
+
"./src/components/banner/CdrBanner.vue"
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
"CdrCaption": {
|
|
306
|
+
"displayName": "CdrCaption",
|
|
307
|
+
"description": "Provides context and credit for an asset such as an image, video, or chart",
|
|
308
|
+
"tags": {},
|
|
309
|
+
"exportName": "default",
|
|
310
|
+
"props": [
|
|
311
|
+
{
|
|
312
|
+
"name": "summary",
|
|
313
|
+
"description": "Sets the string content for the description body of the caption.",
|
|
314
|
+
"tags": {
|
|
315
|
+
"demoIgnore": [
|
|
316
|
+
{
|
|
317
|
+
"description": "true",
|
|
318
|
+
"title": "demoIgnore"
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
"type": {
|
|
323
|
+
"name": "string"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "credit",
|
|
328
|
+
"description": "Sets the string content for attribution.",
|
|
329
|
+
"tags": {
|
|
330
|
+
"demoIgnore": [
|
|
331
|
+
{
|
|
332
|
+
"description": "true",
|
|
333
|
+
"title": "demoIgnore"
|
|
334
|
+
}
|
|
335
|
+
]
|
|
336
|
+
},
|
|
337
|
+
"type": {
|
|
338
|
+
"name": "string"
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
],
|
|
342
|
+
"sourceFiles": [
|
|
343
|
+
"./src/components/caption/CdrCaption.vue"
|
|
344
|
+
]
|
|
345
|
+
},
|
|
346
|
+
"CdrButton": {
|
|
347
|
+
"displayName": "CdrButton",
|
|
348
|
+
"description": "Initiates an action, such as completing a task or submitting information",
|
|
349
|
+
"tags": {},
|
|
350
|
+
"exportName": "default",
|
|
351
|
+
"props": [
|
|
352
|
+
{
|
|
353
|
+
"name": "tag",
|
|
354
|
+
"description": "Renders CdrButton as a <button> or <a> element. When using the value of <a>, this element renders as an anchor link.",
|
|
355
|
+
"tags": {
|
|
356
|
+
"demoIgnore": [
|
|
357
|
+
{
|
|
358
|
+
"description": "true",
|
|
359
|
+
"title": "demoIgnore"
|
|
360
|
+
}
|
|
361
|
+
]
|
|
362
|
+
},
|
|
363
|
+
"values": [
|
|
364
|
+
"button",
|
|
365
|
+
"a"
|
|
366
|
+
],
|
|
367
|
+
"type": {
|
|
368
|
+
"name": "string"
|
|
369
|
+
},
|
|
370
|
+
"defaultValue": {
|
|
371
|
+
"func": false,
|
|
372
|
+
"value": "'button'"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "type",
|
|
377
|
+
"description": "Sets the button type",
|
|
378
|
+
"tags": {
|
|
379
|
+
"demoIgnore": [
|
|
380
|
+
{
|
|
381
|
+
"description": "true",
|
|
382
|
+
"title": "demoIgnore"
|
|
383
|
+
}
|
|
384
|
+
]
|
|
385
|
+
},
|
|
386
|
+
"values": [
|
|
387
|
+
"button",
|
|
388
|
+
"submit",
|
|
389
|
+
"reset"
|
|
390
|
+
],
|
|
391
|
+
"type": {
|
|
392
|
+
"name": "string"
|
|
393
|
+
},
|
|
394
|
+
"defaultValue": {
|
|
395
|
+
"func": false,
|
|
396
|
+
"value": "'button'"
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"name": "modifier",
|
|
401
|
+
"description": "Modifies the style variant for this component",
|
|
402
|
+
"tags": {
|
|
403
|
+
"demoSelectMultiple": [
|
|
404
|
+
{
|
|
405
|
+
"description": "false",
|
|
406
|
+
"title": "demoSelectMultiple"
|
|
407
|
+
}
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
"values": [
|
|
411
|
+
"primary",
|
|
412
|
+
"secondary",
|
|
413
|
+
"sale",
|
|
414
|
+
"dark",
|
|
415
|
+
"link"
|
|
416
|
+
],
|
|
417
|
+
"type": {
|
|
418
|
+
"name": "string"
|
|
419
|
+
},
|
|
420
|
+
"defaultValue": {
|
|
421
|
+
"func": false,
|
|
422
|
+
"value": "'primary'"
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "size",
|
|
427
|
+
"description": "Sets the button size; values can target responsive breakpoints. Example: `large@sm`.",
|
|
428
|
+
"tags": {
|
|
429
|
+
"demoSelectMultiple": [
|
|
430
|
+
{
|
|
431
|
+
"description": "false",
|
|
432
|
+
"title": "demoSelectMultiple"
|
|
433
|
+
}
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
"values": [
|
|
437
|
+
"small",
|
|
438
|
+
"medium",
|
|
439
|
+
"large"
|
|
440
|
+
],
|
|
441
|
+
"type": {
|
|
442
|
+
"name": "string"
|
|
443
|
+
},
|
|
444
|
+
"defaultValue": {
|
|
445
|
+
"func": false,
|
|
446
|
+
"value": "'medium'"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"name": "fullWidth",
|
|
451
|
+
"description": "Sets button width to 100%. Setting this value to true will set the button width to 100% of the parent container. Use the 'fullWidth' prop with the 'size' prop to control top and bottom padding.",
|
|
452
|
+
"type": {
|
|
453
|
+
"name": "string|boolean"
|
|
454
|
+
},
|
|
455
|
+
"defaultValue": {
|
|
456
|
+
"func": false,
|
|
457
|
+
"value": false
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"name": "iconOnly",
|
|
462
|
+
"description": "Renders an 'icon-only' button. When this value is true, it will override the size and 'responsiveSize' props. Can be used in conjunction with 'with-background'",
|
|
463
|
+
"type": {
|
|
464
|
+
"name": "boolean"
|
|
465
|
+
},
|
|
466
|
+
"defaultValue": {
|
|
467
|
+
"func": false,
|
|
468
|
+
"value": false
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"name": "withBackground",
|
|
473
|
+
"description": "Renders an 'icon-only' button with a background color and border. Must be used in conjunction with the 'iconOnly' prop.",
|
|
474
|
+
"type": {
|
|
475
|
+
"name": "boolean"
|
|
476
|
+
},
|
|
477
|
+
"defaultValue": {
|
|
478
|
+
"func": false,
|
|
479
|
+
"value": false
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
],
|
|
483
|
+
"slots": [
|
|
484
|
+
{
|
|
485
|
+
"name": "icon-left",
|
|
486
|
+
"description": "Icon to the left of text content"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "icon",
|
|
490
|
+
"description": "Icon for icon-only button"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "default",
|
|
494
|
+
"description": "Readable text of the button. Leave empty if icon-only"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"name": "icon-right",
|
|
498
|
+
"description": "Icon to the right of text content"
|
|
499
|
+
}
|
|
500
|
+
],
|
|
501
|
+
"sourceFiles": [
|
|
502
|
+
"./src/components/button/CdrButton.vue"
|
|
503
|
+
]
|
|
504
|
+
},
|
|
505
|
+
"CdrCheckbox": {
|
|
506
|
+
"displayName": "CdrCheckbox",
|
|
507
|
+
"description": "Allows selecting one or more items from a list",
|
|
508
|
+
"tags": {},
|
|
509
|
+
"exportName": "default",
|
|
510
|
+
"props": [
|
|
511
|
+
{
|
|
512
|
+
"name": "labelClass",
|
|
513
|
+
"description": "Passes a CSS class to the label for custom styles",
|
|
514
|
+
"type": {
|
|
515
|
+
"name": "string"
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"name": "inputClass",
|
|
520
|
+
"description": "Passes a CSS class to the input for custom styles",
|
|
521
|
+
"type": {
|
|
522
|
+
"name": "string"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"name": "contentClass",
|
|
527
|
+
"description": "Passes a CSS class to the slot wrapper for custom styles",
|
|
528
|
+
"type": {
|
|
529
|
+
"name": "string"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"name": "indeterminate",
|
|
534
|
+
"description": "Show checkbox in indeterminate state. (NOTE: this is a visual-only state and there is no logic for when to show it)",
|
|
535
|
+
"type": {
|
|
536
|
+
"name": "boolean|string"
|
|
537
|
+
},
|
|
538
|
+
"defaultValue": {
|
|
539
|
+
"func": false,
|
|
540
|
+
"value": false
|
|
541
|
+
}
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"name": "trueValue",
|
|
545
|
+
"description": "The value when checked.",
|
|
546
|
+
"type": {
|
|
547
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
548
|
+
},
|
|
549
|
+
"defaultValue": {
|
|
550
|
+
"func": false,
|
|
551
|
+
"value": true
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"name": "falseValue",
|
|
556
|
+
"description": "The value when unchecked.",
|
|
557
|
+
"type": {
|
|
558
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
559
|
+
},
|
|
560
|
+
"defaultValue": {
|
|
561
|
+
"func": false,
|
|
562
|
+
"value": false
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"name": "customValue",
|
|
567
|
+
"description": "The value when used in a checkbox group. Replaces `trueValue` and `falseValue`.",
|
|
568
|
+
"type": {
|
|
569
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "background",
|
|
574
|
+
"description": "Sets the background color the input is rendered on",
|
|
575
|
+
"tags": {},
|
|
576
|
+
"values": [
|
|
577
|
+
"primary",
|
|
578
|
+
"secondary"
|
|
579
|
+
],
|
|
580
|
+
"type": {
|
|
581
|
+
"name": "backgroundProps"
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"name": "size",
|
|
586
|
+
"tags": {
|
|
587
|
+
"demoSelectMultiple": [
|
|
588
|
+
{
|
|
589
|
+
"description": "false",
|
|
590
|
+
"title": "demoSelectMultiple"
|
|
591
|
+
}
|
|
592
|
+
]
|
|
593
|
+
},
|
|
594
|
+
"values": [
|
|
595
|
+
"small",
|
|
596
|
+
"medium",
|
|
597
|
+
"large"
|
|
598
|
+
],
|
|
599
|
+
"type": {
|
|
600
|
+
"name": "sizeProps"
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"name": "modifier",
|
|
605
|
+
"description": "Use `hide-figure` to hide the checkbox, which leaves the text label as the clickable element.\nAdd appropriate custom styles to convey selected and unselected states.",
|
|
606
|
+
"tags": {},
|
|
607
|
+
"values": [
|
|
608
|
+
"hide-figure"
|
|
609
|
+
],
|
|
610
|
+
"type": {
|
|
611
|
+
"name": "string"
|
|
612
|
+
},
|
|
613
|
+
"defaultValue": {
|
|
614
|
+
"func": false,
|
|
615
|
+
"value": "''"
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"name": "modelValue",
|
|
620
|
+
"tags": {
|
|
621
|
+
"ignore": [
|
|
622
|
+
{
|
|
623
|
+
"description": true,
|
|
624
|
+
"title": "ignore"
|
|
625
|
+
}
|
|
626
|
+
]
|
|
627
|
+
},
|
|
628
|
+
"type": {
|
|
629
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
"events": [
|
|
634
|
+
{
|
|
635
|
+
"name": "update:modelValue",
|
|
636
|
+
"description": "Event emitted by v-model on the <input> element",
|
|
637
|
+
"properties": [
|
|
638
|
+
{
|
|
639
|
+
"type": {
|
|
640
|
+
"names": [
|
|
641
|
+
"mixed"
|
|
642
|
+
]
|
|
643
|
+
},
|
|
644
|
+
"name": "modelValue"
|
|
645
|
+
}
|
|
646
|
+
],
|
|
647
|
+
"tags": [
|
|
648
|
+
{
|
|
649
|
+
"title": "param",
|
|
650
|
+
"type": {
|
|
651
|
+
"name": "mixed"
|
|
652
|
+
},
|
|
653
|
+
"name": "modelValue"
|
|
654
|
+
}
|
|
655
|
+
]
|
|
656
|
+
}
|
|
657
|
+
],
|
|
658
|
+
"slots": [
|
|
659
|
+
{
|
|
660
|
+
"name": "default",
|
|
661
|
+
"description": "Readable text for the label element"
|
|
662
|
+
}
|
|
663
|
+
],
|
|
664
|
+
"sourceFiles": [
|
|
665
|
+
"./src/components/checkbox/CdrCheckbox.vue"
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
"CdrChip": {
|
|
669
|
+
"displayName": "CdrChip",
|
|
670
|
+
"description": "Allows people to make selections, filter content, or trigger actions",
|
|
671
|
+
"tags": {},
|
|
672
|
+
"exportName": "default",
|
|
673
|
+
"slots": [
|
|
674
|
+
{
|
|
675
|
+
"name": "icon-left",
|
|
676
|
+
"description": "Icon to the left of the content"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"name": "icon-right",
|
|
680
|
+
"description": "Icon to the right of the content"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"name": "default",
|
|
684
|
+
"description": "Primary CdrChip content"
|
|
685
|
+
}
|
|
686
|
+
],
|
|
687
|
+
"sourceFiles": [
|
|
688
|
+
"./src/components/chip/CdrChip.vue"
|
|
689
|
+
]
|
|
690
|
+
},
|
|
691
|
+
"CdrCard": {
|
|
692
|
+
"displayName": "CdrCard",
|
|
693
|
+
"description": "Related, interactive containers linking to a single subject or destination",
|
|
694
|
+
"tags": {},
|
|
695
|
+
"exportName": "default",
|
|
696
|
+
"props": [
|
|
697
|
+
{
|
|
698
|
+
"name": "tag",
|
|
699
|
+
"description": "Sets valid HTML container element tag.",
|
|
700
|
+
"type": {
|
|
701
|
+
"name": "string"
|
|
702
|
+
},
|
|
703
|
+
"defaultValue": {
|
|
704
|
+
"func": false,
|
|
705
|
+
"value": "'article'"
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
],
|
|
709
|
+
"slots": [
|
|
710
|
+
{
|
|
711
|
+
"name": "default",
|
|
712
|
+
"description": "CdrCard content"
|
|
713
|
+
}
|
|
714
|
+
],
|
|
715
|
+
"sourceFiles": [
|
|
716
|
+
"./src/components/card/CdrCard.vue"
|
|
717
|
+
]
|
|
718
|
+
},
|
|
719
|
+
"CdrChipGroup": {
|
|
720
|
+
"displayName": "CdrChipGroup",
|
|
721
|
+
"exportName": "default",
|
|
722
|
+
"description": "",
|
|
723
|
+
"tags": {},
|
|
724
|
+
"props": [
|
|
725
|
+
{
|
|
726
|
+
"name": "label",
|
|
727
|
+
"description": "Sets a label that describes the chip group and what it is selecting. By default this label is visually hidden and only made available to screen readers.",
|
|
728
|
+
"type": {
|
|
729
|
+
"name": "string"
|
|
730
|
+
},
|
|
731
|
+
"required": true
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"name": "hideLabel",
|
|
735
|
+
"description": "Visually hides the chip group label but makes it accessible to screen readers.",
|
|
736
|
+
"type": {
|
|
737
|
+
"name": "boolean"
|
|
738
|
+
},
|
|
739
|
+
"defaultValue": {
|
|
740
|
+
"func": false,
|
|
741
|
+
"value": true
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
"slots": [
|
|
746
|
+
{
|
|
747
|
+
"name": "label",
|
|
748
|
+
"description": "Override CdrChip label content with a custom element"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"name": "default",
|
|
752
|
+
"description": "CdrChipGroup content (CdrChip components)"
|
|
753
|
+
}
|
|
754
|
+
],
|
|
755
|
+
"sourceFiles": [
|
|
756
|
+
"./src/components/chip/CdrChipGroup.vue"
|
|
757
|
+
]
|
|
758
|
+
},
|
|
759
|
+
"CdrFormGroup": {
|
|
760
|
+
"displayName": "CdrFormGroup",
|
|
761
|
+
"description": "Groups related input elements together",
|
|
762
|
+
"tags": {},
|
|
763
|
+
"exportName": "default",
|
|
764
|
+
"props": [
|
|
765
|
+
{
|
|
766
|
+
"name": "id",
|
|
767
|
+
"type": {
|
|
768
|
+
"name": "string"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"name": "label",
|
|
773
|
+
"type": {
|
|
774
|
+
"name": "string"
|
|
775
|
+
},
|
|
776
|
+
"required": false,
|
|
777
|
+
"defaultValue": {
|
|
778
|
+
"func": false,
|
|
779
|
+
"value": "''"
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"name": "error",
|
|
784
|
+
"type": {
|
|
785
|
+
"name": "boolean|string"
|
|
786
|
+
},
|
|
787
|
+
"defaultValue": {
|
|
788
|
+
"func": false,
|
|
789
|
+
"value": false
|
|
790
|
+
}
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"name": "required",
|
|
794
|
+
"type": {
|
|
795
|
+
"name": "boolean"
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"name": "optional",
|
|
800
|
+
"type": {
|
|
801
|
+
"name": "boolean"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"name": "disabled",
|
|
806
|
+
"type": {
|
|
807
|
+
"name": "boolean"
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
],
|
|
811
|
+
"slots": [
|
|
812
|
+
{
|
|
813
|
+
"name": "label"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"name": "default"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "error"
|
|
820
|
+
}
|
|
821
|
+
],
|
|
822
|
+
"sourceFiles": [
|
|
823
|
+
"./src/components/formGroup/CdrFormGroup.vue"
|
|
824
|
+
]
|
|
825
|
+
},
|
|
826
|
+
"CdrContainer": {
|
|
827
|
+
"displayName": "CdrContainer",
|
|
828
|
+
"description": "Provides base margins and responsive layout logic for pages",
|
|
829
|
+
"tags": {},
|
|
830
|
+
"exportName": "default",
|
|
831
|
+
"props": [
|
|
832
|
+
{
|
|
833
|
+
"name": "tag",
|
|
834
|
+
"description": "Sets the HTML tag for the container element",
|
|
835
|
+
"type": {
|
|
836
|
+
"name": "string"
|
|
837
|
+
},
|
|
838
|
+
"defaultValue": {
|
|
839
|
+
"func": false,
|
|
840
|
+
"value": "'div'"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"name": "modifier",
|
|
845
|
+
"description": "Controls whether container is static or fluid width.",
|
|
846
|
+
"tags": {
|
|
847
|
+
"demoSelectMultiple": [
|
|
848
|
+
{
|
|
849
|
+
"description": "false",
|
|
850
|
+
"title": "demoSelectMultiple"
|
|
851
|
+
}
|
|
852
|
+
]
|
|
853
|
+
},
|
|
854
|
+
"values": [
|
|
855
|
+
"static",
|
|
856
|
+
"fluid"
|
|
857
|
+
],
|
|
858
|
+
"type": {
|
|
859
|
+
"name": "string"
|
|
860
|
+
},
|
|
861
|
+
"defaultValue": {
|
|
862
|
+
"func": false,
|
|
863
|
+
"value": "'static'"
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
],
|
|
867
|
+
"slots": [
|
|
868
|
+
{
|
|
869
|
+
"name": "default",
|
|
870
|
+
"description": "CdrContainer content"
|
|
871
|
+
}
|
|
872
|
+
],
|
|
873
|
+
"sourceFiles": [
|
|
874
|
+
"./src/components/container/CdrContainer.vue"
|
|
875
|
+
]
|
|
876
|
+
},
|
|
877
|
+
"CdrGrid": {
|
|
878
|
+
"displayName": "CdrGrid",
|
|
879
|
+
"description": "Simple wrapper for working with CSS grid",
|
|
880
|
+
"tags": {},
|
|
881
|
+
"exportName": "default",
|
|
882
|
+
"props": [
|
|
883
|
+
{
|
|
884
|
+
"name": "gutter",
|
|
885
|
+
"description": "Defines gutter size. Also accepts responsive values with `@breakpoint`: \"none@md\"",
|
|
886
|
+
"tags": {
|
|
887
|
+
"demoSelectMultiple": [
|
|
888
|
+
{
|
|
889
|
+
"description": "false",
|
|
890
|
+
"title": "demoSelectMultiple"
|
|
891
|
+
}
|
|
892
|
+
]
|
|
893
|
+
},
|
|
894
|
+
"values": [
|
|
895
|
+
"none",
|
|
896
|
+
"small",
|
|
897
|
+
"medium",
|
|
898
|
+
"large"
|
|
899
|
+
],
|
|
900
|
+
"type": {
|
|
901
|
+
"name": "string"
|
|
902
|
+
},
|
|
903
|
+
"defaultValue": {
|
|
904
|
+
"func": false,
|
|
905
|
+
"value": "'medium@xs medium@sm large@md large@lg'"
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"name": "tag",
|
|
910
|
+
"description": "Sets the HTML tag for the grid element",
|
|
911
|
+
"type": {
|
|
912
|
+
"name": "string"
|
|
913
|
+
},
|
|
914
|
+
"defaultValue": {
|
|
915
|
+
"func": false,
|
|
916
|
+
"value": "'div'"
|
|
917
|
+
}
|
|
918
|
+
}
|
|
919
|
+
],
|
|
920
|
+
"slots": [
|
|
921
|
+
{
|
|
922
|
+
"name": "default",
|
|
923
|
+
"description": "CdrGrid content (grid child elements)"
|
|
924
|
+
}
|
|
925
|
+
],
|
|
926
|
+
"sourceFiles": [
|
|
927
|
+
"./src/components/grid/CdrGrid.vue"
|
|
928
|
+
]
|
|
929
|
+
},
|
|
930
|
+
"CdrIcon": {
|
|
931
|
+
"displayName": "CdrIcon",
|
|
932
|
+
"description": "Communicates meaning through graphics representing simple and complex ideas",
|
|
933
|
+
"tags": {},
|
|
934
|
+
"exportName": "default",
|
|
935
|
+
"props": [
|
|
936
|
+
{
|
|
937
|
+
"name": "use",
|
|
938
|
+
"description": "Only on CdrIcon. Sets the href attribute for use with SVG symbol sprite (see @rei/cedar-icons).",
|
|
939
|
+
"type": {
|
|
940
|
+
"name": "string"
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"name": "inheritColor",
|
|
945
|
+
"description": "Sets icon fill to \"inherit\" so as to use parent/ancestor fill color.",
|
|
946
|
+
"type": {
|
|
947
|
+
"name": "boolean"
|
|
948
|
+
},
|
|
949
|
+
"defaultValue": {
|
|
950
|
+
"func": false,
|
|
951
|
+
"value": false
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"name": "size",
|
|
956
|
+
"type": {
|
|
957
|
+
"name": "string"
|
|
958
|
+
},
|
|
959
|
+
"defaultValue": {
|
|
960
|
+
"func": false,
|
|
961
|
+
"value": "'medium'"
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
],
|
|
965
|
+
"slots": [
|
|
966
|
+
{
|
|
967
|
+
"name": "default"
|
|
968
|
+
}
|
|
969
|
+
],
|
|
970
|
+
"sourceFiles": [
|
|
971
|
+
"./src/components/icon/CdrIcon.vue"
|
|
972
|
+
]
|
|
973
|
+
},
|
|
974
|
+
"CdrImg": {
|
|
975
|
+
"displayName": "CdrImg",
|
|
976
|
+
"description": "Media for capturing attention and communicating messages",
|
|
977
|
+
"tags": {},
|
|
978
|
+
"exportName": "default",
|
|
979
|
+
"props": [
|
|
980
|
+
{
|
|
981
|
+
"name": "src",
|
|
982
|
+
"description": "Image source url.",
|
|
983
|
+
"type": {
|
|
984
|
+
"name": "string"
|
|
985
|
+
},
|
|
986
|
+
"required": true
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "alt",
|
|
990
|
+
"description": "Image alt text. Defaults to an empty string",
|
|
991
|
+
"type": {
|
|
992
|
+
"name": "string"
|
|
993
|
+
},
|
|
994
|
+
"defaultValue": {
|
|
995
|
+
"func": false,
|
|
996
|
+
"value": "''"
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"name": "ratio",
|
|
1001
|
+
"description": "Aspect ratio of the media container",
|
|
1002
|
+
"tags": {
|
|
1003
|
+
"demoSelectMultiple": [
|
|
1004
|
+
{
|
|
1005
|
+
"description": "false",
|
|
1006
|
+
"title": "demoSelectMultiple"
|
|
1007
|
+
}
|
|
1008
|
+
]
|
|
1009
|
+
},
|
|
1010
|
+
"values": [
|
|
1011
|
+
"auto",
|
|
1012
|
+
"square",
|
|
1013
|
+
"1-2",
|
|
1014
|
+
"2-3",
|
|
1015
|
+
"3-4",
|
|
1016
|
+
"9-16",
|
|
1017
|
+
"2-1",
|
|
1018
|
+
"3-2",
|
|
1019
|
+
"4-3",
|
|
1020
|
+
"16-9"
|
|
1021
|
+
],
|
|
1022
|
+
"type": {
|
|
1023
|
+
"name": "string"
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"name": "crop",
|
|
1028
|
+
"description": "Requires a `ratio`. Area to crop the image overflow to. {left, center, right} {top, center, bottom}",
|
|
1029
|
+
"tags": {
|
|
1030
|
+
"demoSelectMultiple": [
|
|
1031
|
+
{
|
|
1032
|
+
"description": "false",
|
|
1033
|
+
"title": "demoSelectMultiple"
|
|
1034
|
+
}
|
|
1035
|
+
]
|
|
1036
|
+
},
|
|
1037
|
+
"values": [
|
|
1038
|
+
"left",
|
|
1039
|
+
"x-center",
|
|
1040
|
+
"right",
|
|
1041
|
+
"top",
|
|
1042
|
+
"y-center",
|
|
1043
|
+
"bottom"
|
|
1044
|
+
],
|
|
1045
|
+
"type": {
|
|
1046
|
+
"name": "string"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"name": "cover",
|
|
1051
|
+
"description": "Requires a `ratio`. Scale the image to be as large as possible to fill the area (background-position: cover;)",
|
|
1052
|
+
"type": {
|
|
1053
|
+
"name": "boolean"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "containerClass",
|
|
1058
|
+
"description": "Adds a custom class to the cdr-img__ratio container div",
|
|
1059
|
+
"type": {
|
|
1060
|
+
"name": "string"
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"name": "radius",
|
|
1065
|
+
"description": "Sets a border radius to an element {square, top, right, bottom, left}",
|
|
1066
|
+
"tags": {
|
|
1067
|
+
"demoSelectMultiple": [
|
|
1068
|
+
{
|
|
1069
|
+
"description": "false",
|
|
1070
|
+
"title": "demoSelectMultiple"
|
|
1071
|
+
}
|
|
1072
|
+
]
|
|
1073
|
+
},
|
|
1074
|
+
"values": [
|
|
1075
|
+
"circle",
|
|
1076
|
+
"rounded"
|
|
1077
|
+
],
|
|
1078
|
+
"type": {
|
|
1079
|
+
"name": "string"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"name": "modifier",
|
|
1084
|
+
"description": "Modifies the style variant for this component.",
|
|
1085
|
+
"tags": {
|
|
1086
|
+
"demoSelectMultiple": [
|
|
1087
|
+
{
|
|
1088
|
+
"description": "false",
|
|
1089
|
+
"title": "demoSelectMultiple"
|
|
1090
|
+
}
|
|
1091
|
+
]
|
|
1092
|
+
},
|
|
1093
|
+
"values": [
|
|
1094
|
+
"responsive"
|
|
1095
|
+
],
|
|
1096
|
+
"type": {
|
|
1097
|
+
"name": "string"
|
|
1098
|
+
},
|
|
1099
|
+
"defaultValue": {
|
|
1100
|
+
"func": false,
|
|
1101
|
+
"value": "''"
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
],
|
|
1105
|
+
"sourceFiles": [
|
|
1106
|
+
"./src/components/image/CdrImg.vue"
|
|
1107
|
+
]
|
|
1108
|
+
},
|
|
1109
|
+
"CdrLabelStandalone": {
|
|
1110
|
+
"displayName": "CdrLabelStandalone",
|
|
1111
|
+
"exportName": "default",
|
|
1112
|
+
"description": "",
|
|
1113
|
+
"tags": {},
|
|
1114
|
+
"props": [
|
|
1115
|
+
{
|
|
1116
|
+
"name": "forId",
|
|
1117
|
+
"type": {
|
|
1118
|
+
"name": "string"
|
|
1119
|
+
},
|
|
1120
|
+
"required": true
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"name": "label",
|
|
1124
|
+
"type": {
|
|
1125
|
+
"name": "string"
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "disabled",
|
|
1130
|
+
"type": {
|
|
1131
|
+
"name": "boolean"
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"name": "required",
|
|
1136
|
+
"type": {
|
|
1137
|
+
"name": "boolean"
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"name": "optional",
|
|
1142
|
+
"type": {
|
|
1143
|
+
"name": "boolean"
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"name": "hideLabel",
|
|
1148
|
+
"type": {
|
|
1149
|
+
"name": "boolean"
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
],
|
|
1153
|
+
"slots": [
|
|
1154
|
+
{
|
|
1155
|
+
"name": "helper"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"name": "default"
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"name": "info-action"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"name": "info"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
"name": "helper-text-bottom"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"name": "error"
|
|
1171
|
+
}
|
|
1172
|
+
],
|
|
1173
|
+
"sourceFiles": [
|
|
1174
|
+
"./src/components/labelStandalone/CdrLabelStandalone.vue"
|
|
1175
|
+
]
|
|
1176
|
+
},
|
|
1177
|
+
"CdrInput": {
|
|
1178
|
+
"displayName": "CdrInput",
|
|
1179
|
+
"description": "Allows for data entry, editing, and search",
|
|
1180
|
+
"tags": {},
|
|
1181
|
+
"exportName": "default",
|
|
1182
|
+
"props": [
|
|
1183
|
+
{
|
|
1184
|
+
"name": "id",
|
|
1185
|
+
"description": "Custom ID that is mapped to the label ‘for’ attribute. If this value is not set, it will be randomly generated.",
|
|
1186
|
+
"type": {
|
|
1187
|
+
"name": "string"
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"name": "type",
|
|
1192
|
+
"description": "'type' attribute for the input as defined by w3c.\n Only supporting text|email|number|password|search|url|date.\n The increment/decrement webkit psuedo element is hidden for number.",
|
|
1193
|
+
"tags": {
|
|
1194
|
+
"demoSelectMultiple": [
|
|
1195
|
+
{
|
|
1196
|
+
"description": "false",
|
|
1197
|
+
"title": "demoSelectMultiple"
|
|
1198
|
+
}
|
|
1199
|
+
]
|
|
1200
|
+
},
|
|
1201
|
+
"values": [
|
|
1202
|
+
"text",
|
|
1203
|
+
"email",
|
|
1204
|
+
"number",
|
|
1205
|
+
"password",
|
|
1206
|
+
"search",
|
|
1207
|
+
"url",
|
|
1208
|
+
"tel",
|
|
1209
|
+
"date"
|
|
1210
|
+
],
|
|
1211
|
+
"type": {
|
|
1212
|
+
"name": "string"
|
|
1213
|
+
},
|
|
1214
|
+
"defaultValue": {
|
|
1215
|
+
"func": false,
|
|
1216
|
+
"value": "'text'"
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "label",
|
|
1221
|
+
"description": "Sets the text value for the input label. Required for a11y compliance. Use ‘hideLabel’ if the label display is not desired. Required.",
|
|
1222
|
+
"type": {
|
|
1223
|
+
"name": "string"
|
|
1224
|
+
},
|
|
1225
|
+
"required": true
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"name": "numeric",
|
|
1229
|
+
"description": "Sets default attributes for an input that should launch a numeric keyboard but is not strictly a 'number' (credit card, security code, postal code, etc.). Should be used in conjunction with the default text type input. An `input` listener can be used to fully restrict input values to numerical characters only",
|
|
1230
|
+
"type": {
|
|
1231
|
+
"name": "boolean"
|
|
1232
|
+
},
|
|
1233
|
+
"defaultValue": {
|
|
1234
|
+
"func": false,
|
|
1235
|
+
"value": false
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"name": "hideLabel",
|
|
1240
|
+
"description": "Removes the label element but sets the input `aria-label` to `label` text for a11y.",
|
|
1241
|
+
"type": {
|
|
1242
|
+
"name": "boolean"
|
|
1243
|
+
}
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"name": "rows",
|
|
1247
|
+
"description": "Number of rows for input. Converts component to text-area if rows greater than 1.",
|
|
1248
|
+
"type": {
|
|
1249
|
+
"name": "number"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"name": "background",
|
|
1254
|
+
"description": "Sets the background color the input is rendered on",
|
|
1255
|
+
"tags": {},
|
|
1256
|
+
"values": [
|
|
1257
|
+
"primary",
|
|
1258
|
+
"secondary"
|
|
1259
|
+
],
|
|
1260
|
+
"type": {
|
|
1261
|
+
"name": "backgroundProps"
|
|
1262
|
+
}
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"name": "size",
|
|
1266
|
+
"description": "Sets the input field size",
|
|
1267
|
+
"tags": {
|
|
1268
|
+
"demoSelectMultiple": [
|
|
1269
|
+
{
|
|
1270
|
+
"description": "false",
|
|
1271
|
+
"title": "demoSelectMultiple"
|
|
1272
|
+
}
|
|
1273
|
+
]
|
|
1274
|
+
},
|
|
1275
|
+
"values": [
|
|
1276
|
+
"medium",
|
|
1277
|
+
"large"
|
|
1278
|
+
],
|
|
1279
|
+
"type": {
|
|
1280
|
+
"name": "sizeProps"
|
|
1281
|
+
}
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"name": "errorRole",
|
|
1285
|
+
"description": "Sets the `role` attribute for the embedded error state messaging.",
|
|
1286
|
+
"type": {
|
|
1287
|
+
"name": "string"
|
|
1288
|
+
},
|
|
1289
|
+
"required": false,
|
|
1290
|
+
"defaultValue": {
|
|
1291
|
+
"func": false,
|
|
1292
|
+
"value": "'status'"
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"name": "error",
|
|
1297
|
+
"description": "Sets the input to an error state, displays the `error` slot if one is present.",
|
|
1298
|
+
"type": {
|
|
1299
|
+
"name": "boolean|string"
|
|
1300
|
+
},
|
|
1301
|
+
"defaultValue": {
|
|
1302
|
+
"func": false,
|
|
1303
|
+
"value": false
|
|
1304
|
+
}
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"name": "disabled",
|
|
1308
|
+
"description": "Sets the disabled state for the input field and label styling. Also, restricts user input.",
|
|
1309
|
+
"type": {
|
|
1310
|
+
"name": "boolean"
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"name": "required",
|
|
1315
|
+
"description": "Sets aria-required on the input field and displays an asterisk next to the input label.",
|
|
1316
|
+
"type": {
|
|
1317
|
+
"name": "boolean"
|
|
1318
|
+
}
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"name": "optional",
|
|
1322
|
+
"description": "Displays '(optional)' text next to the input label.",
|
|
1323
|
+
"type": {
|
|
1324
|
+
"name": "boolean"
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"name": "modelValue",
|
|
1329
|
+
"tags": {
|
|
1330
|
+
"ignore": [
|
|
1331
|
+
{
|
|
1332
|
+
"description": true,
|
|
1333
|
+
"title": "ignore"
|
|
1334
|
+
}
|
|
1335
|
+
]
|
|
1336
|
+
},
|
|
1337
|
+
"type": {
|
|
1338
|
+
"name": "string|number|func"
|
|
1339
|
+
}
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"name": "labelClass",
|
|
1343
|
+
"description": "Adds a custom class to the cdr-label-standalone wrapping div",
|
|
1344
|
+
"type": {
|
|
1345
|
+
"name": "string"
|
|
1346
|
+
}
|
|
1347
|
+
}
|
|
1348
|
+
],
|
|
1349
|
+
"events": [
|
|
1350
|
+
{
|
|
1351
|
+
"name": "update:modelValue",
|
|
1352
|
+
"description": "Event emitted by v-model on the <input> element",
|
|
1353
|
+
"properties": [
|
|
1354
|
+
{
|
|
1355
|
+
"type": {
|
|
1356
|
+
"names": [
|
|
1357
|
+
"mixed"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
"name": "modelValue"
|
|
1361
|
+
}
|
|
1362
|
+
],
|
|
1363
|
+
"tags": [
|
|
1364
|
+
{
|
|
1365
|
+
"title": "param",
|
|
1366
|
+
"type": {
|
|
1367
|
+
"name": "mixed"
|
|
1368
|
+
},
|
|
1369
|
+
"name": "modelValue"
|
|
1370
|
+
}
|
|
1371
|
+
]
|
|
1372
|
+
}
|
|
1373
|
+
],
|
|
1374
|
+
"slots": [
|
|
1375
|
+
{
|
|
1376
|
+
"name": "helper-text-top",
|
|
1377
|
+
"description": "Helper text above the input field"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"name": "info",
|
|
1381
|
+
"description": "Link or icon to the right above the input field."
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"name": "pre-icon",
|
|
1385
|
+
"description": "Icon preceding text within the input field"
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"name": "post-icon",
|
|
1389
|
+
"description": "Icon after text within the input field"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"name": "info-action",
|
|
1393
|
+
"description": "Action-wrapped icon within the input field (precedes post-icon)"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"name": "helper-text-bottom",
|
|
1397
|
+
"description": "Helper text below the input field"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"name": "error",
|
|
1401
|
+
"description": "Error messaging text that is displayed when the `error` prop is true."
|
|
1402
|
+
}
|
|
1403
|
+
],
|
|
1404
|
+
"sourceFiles": [
|
|
1405
|
+
"./src/components/input/CdrInput.vue"
|
|
1406
|
+
]
|
|
1407
|
+
},
|
|
1408
|
+
"CdrModal": {
|
|
1409
|
+
"displayName": "CdrModal",
|
|
1410
|
+
"description": "Disruptive, action-blocking overlays used to display important information",
|
|
1411
|
+
"tags": {},
|
|
1412
|
+
"exportName": "default",
|
|
1413
|
+
"props": [
|
|
1414
|
+
{
|
|
1415
|
+
"name": "opened",
|
|
1416
|
+
"description": "Toggles the state of the modal",
|
|
1417
|
+
"tags": {
|
|
1418
|
+
"demoIgnore": [
|
|
1419
|
+
{
|
|
1420
|
+
"description": "true",
|
|
1421
|
+
"title": "demoIgnore"
|
|
1422
|
+
}
|
|
1423
|
+
]
|
|
1424
|
+
},
|
|
1425
|
+
"type": {
|
|
1426
|
+
"name": "boolean"
|
|
1427
|
+
},
|
|
1428
|
+
"required": true
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"name": "label",
|
|
1432
|
+
"description": "Sets `aria-label` and modal title text. Can also use title slot to set title.",
|
|
1433
|
+
"type": {
|
|
1434
|
+
"name": "string"
|
|
1435
|
+
},
|
|
1436
|
+
"required": true
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"name": "showTitle",
|
|
1440
|
+
"description": "Toggles the modal title text, which comes from `label` prop or `title` slot.",
|
|
1441
|
+
"type": {
|
|
1442
|
+
"name": "boolean"
|
|
1443
|
+
},
|
|
1444
|
+
"required": false,
|
|
1445
|
+
"defaultValue": {
|
|
1446
|
+
"func": false,
|
|
1447
|
+
"value": true
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"name": "ariaDescribedby",
|
|
1452
|
+
"description": "Text for aria-describedby attribute. Applied to modal content element",
|
|
1453
|
+
"type": {
|
|
1454
|
+
"name": "string"
|
|
1455
|
+
},
|
|
1456
|
+
"required": false,
|
|
1457
|
+
"defaultValue": {
|
|
1458
|
+
"func": false,
|
|
1459
|
+
"value": "null"
|
|
1460
|
+
}
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"name": "role",
|
|
1464
|
+
"description": "Sets the `role` attribute on the modal content element",
|
|
1465
|
+
"tags": {},
|
|
1466
|
+
"values": [
|
|
1467
|
+
"dialog",
|
|
1468
|
+
"alertDialog"
|
|
1469
|
+
],
|
|
1470
|
+
"type": {
|
|
1471
|
+
"name": "string"
|
|
1472
|
+
},
|
|
1473
|
+
"required": false,
|
|
1474
|
+
"defaultValue": {
|
|
1475
|
+
"func": false,
|
|
1476
|
+
"value": "'dialog'"
|
|
1477
|
+
}
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"name": "id",
|
|
1481
|
+
"description": "Sets unique `id` for modal",
|
|
1482
|
+
"type": {
|
|
1483
|
+
"name": "string"
|
|
1484
|
+
},
|
|
1485
|
+
"required": false,
|
|
1486
|
+
"defaultValue": {
|
|
1487
|
+
"func": false,
|
|
1488
|
+
"value": "null"
|
|
1489
|
+
}
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"name": "overlayClass",
|
|
1493
|
+
"description": "Adds custom class to the `cdr-modal__overlay` div",
|
|
1494
|
+
"type": {
|
|
1495
|
+
"name": "string"
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"name": "wrapperClass",
|
|
1500
|
+
"description": "Adds custom class to the `cdr-modal__outerWrap` div",
|
|
1501
|
+
"type": {
|
|
1502
|
+
"name": "string"
|
|
1503
|
+
}
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"name": "contentClass",
|
|
1507
|
+
"description": "Adds custom class to the `cdr-modal__innerWrap` div",
|
|
1508
|
+
"type": {
|
|
1509
|
+
"name": "string"
|
|
1510
|
+
}
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"name": "animationDuration",
|
|
1514
|
+
"description": "Sets duration for modal's close animation",
|
|
1515
|
+
"type": {
|
|
1516
|
+
"name": "number"
|
|
1517
|
+
},
|
|
1518
|
+
"defaultValue": {
|
|
1519
|
+
"func": false,
|
|
1520
|
+
"value": "300"
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
],
|
|
1524
|
+
"events": [
|
|
1525
|
+
{
|
|
1526
|
+
"name": "closed",
|
|
1527
|
+
"description": "Fires when modal is closed"
|
|
1528
|
+
}
|
|
1529
|
+
],
|
|
1530
|
+
"slots": [
|
|
1531
|
+
{
|
|
1532
|
+
"name": "modal",
|
|
1533
|
+
"description": "Use to override the entire CdrModal content container."
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"name": "title",
|
|
1537
|
+
"description": "Use to override the default title"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"name": "default"
|
|
1541
|
+
}
|
|
1542
|
+
],
|
|
1543
|
+
"sourceFiles": [
|
|
1544
|
+
"./src/components/modal/CdrModal.vue"
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
1547
|
+
"CdrLabelWrapper": {
|
|
1548
|
+
"displayName": "CdrLabelWrapper",
|
|
1549
|
+
"exportName": "default",
|
|
1550
|
+
"description": "",
|
|
1551
|
+
"tags": {},
|
|
1552
|
+
"props": [
|
|
1553
|
+
{
|
|
1554
|
+
"name": "labelClass",
|
|
1555
|
+
"type": {
|
|
1556
|
+
"name": "string"
|
|
1557
|
+
}
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"name": "contentClass",
|
|
1561
|
+
"type": {
|
|
1562
|
+
"name": "string"
|
|
1563
|
+
}
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"name": "background",
|
|
1567
|
+
"type": {
|
|
1568
|
+
"name": "backgroundProps"
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"name": "disabled",
|
|
1573
|
+
"type": {
|
|
1574
|
+
"name": "boolean"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
"name": "modifier",
|
|
1579
|
+
"type": {
|
|
1580
|
+
"name": "string"
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"name": "size",
|
|
1585
|
+
"type": {
|
|
1586
|
+
"name": "string"
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
],
|
|
1590
|
+
"slots": [
|
|
1591
|
+
{
|
|
1592
|
+
"name": "input"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"name": "default"
|
|
1596
|
+
}
|
|
1597
|
+
],
|
|
1598
|
+
"sourceFiles": [
|
|
1599
|
+
"./src/components/labelWrapper/CdrLabelWrapper.vue"
|
|
1600
|
+
]
|
|
1601
|
+
},
|
|
1602
|
+
"CdrLink": {
|
|
1603
|
+
"displayName": "CdrLink",
|
|
1604
|
+
"description": "Clickable text elements used for navigating to other pages or sections",
|
|
1605
|
+
"tags": {},
|
|
1606
|
+
"exportName": "default",
|
|
1607
|
+
"props": [
|
|
1608
|
+
{
|
|
1609
|
+
"name": "tag",
|
|
1610
|
+
"description": "Sets valid HTML element tag",
|
|
1611
|
+
"tags": {},
|
|
1612
|
+
"values": [
|
|
1613
|
+
"a",
|
|
1614
|
+
"button"
|
|
1615
|
+
],
|
|
1616
|
+
"type": {
|
|
1617
|
+
"name": "string"
|
|
1618
|
+
},
|
|
1619
|
+
"defaultValue": {
|
|
1620
|
+
"func": false,
|
|
1621
|
+
"value": "'a'"
|
|
1622
|
+
}
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"name": "href",
|
|
1626
|
+
"description": "Sets value for anchors href property. Requires tag prop value to be `a`.",
|
|
1627
|
+
"type": {
|
|
1628
|
+
"name": "string"
|
|
1629
|
+
},
|
|
1630
|
+
"defaultValue": {
|
|
1631
|
+
"func": false,
|
|
1632
|
+
"value": "'#'"
|
|
1633
|
+
}
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"name": "inheritColor",
|
|
1637
|
+
"description": "Sets color and fill",
|
|
1638
|
+
"type": {
|
|
1639
|
+
"name": "boolean"
|
|
1640
|
+
},
|
|
1641
|
+
"defaultValue": {
|
|
1642
|
+
"func": false,
|
|
1643
|
+
"value": false
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"name": "modifier",
|
|
1648
|
+
"description": "Modifies the style variant for this component.",
|
|
1649
|
+
"tags": {},
|
|
1650
|
+
"values": [
|
|
1651
|
+
"standalone"
|
|
1652
|
+
],
|
|
1653
|
+
"type": {
|
|
1654
|
+
"name": "string"
|
|
1655
|
+
},
|
|
1656
|
+
"defaultValue": {
|
|
1657
|
+
"func": false,
|
|
1658
|
+
"value": "''"
|
|
1659
|
+
}
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"name": "target",
|
|
1663
|
+
"tags": {
|
|
1664
|
+
"ignore": [
|
|
1665
|
+
{
|
|
1666
|
+
"description": true,
|
|
1667
|
+
"title": "ignore"
|
|
1668
|
+
}
|
|
1669
|
+
]
|
|
1670
|
+
},
|
|
1671
|
+
"type": {
|
|
1672
|
+
"name": "string"
|
|
1673
|
+
}
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"name": "rel",
|
|
1677
|
+
"tags": {
|
|
1678
|
+
"ignore": [
|
|
1679
|
+
{
|
|
1680
|
+
"description": true,
|
|
1681
|
+
"title": "ignore"
|
|
1682
|
+
}
|
|
1683
|
+
]
|
|
1684
|
+
},
|
|
1685
|
+
"type": {
|
|
1686
|
+
"name": "string"
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
],
|
|
1690
|
+
"slots": [
|
|
1691
|
+
{
|
|
1692
|
+
"name": "default",
|
|
1693
|
+
"description": "Readable text of the link"
|
|
1694
|
+
}
|
|
1695
|
+
],
|
|
1696
|
+
"sourceFiles": [
|
|
1697
|
+
"./src/components/link/CdrLink.vue"
|
|
1698
|
+
]
|
|
1699
|
+
},
|
|
1700
|
+
"CdrPopover": {
|
|
1701
|
+
"displayName": "CdrPopover",
|
|
1702
|
+
"description": "Small overlay used to display contextual information",
|
|
1703
|
+
"tags": {},
|
|
1704
|
+
"exportName": "default",
|
|
1705
|
+
"props": [
|
|
1706
|
+
{
|
|
1707
|
+
"name": "position",
|
|
1708
|
+
"description": "Sets the position where the popover will render relative to the trigger element.",
|
|
1709
|
+
"tags": {
|
|
1710
|
+
"demoSelectMultiple": [
|
|
1711
|
+
{
|
|
1712
|
+
"description": "false",
|
|
1713
|
+
"title": "demoSelectMultiple"
|
|
1714
|
+
}
|
|
1715
|
+
]
|
|
1716
|
+
},
|
|
1717
|
+
"values": [
|
|
1718
|
+
"top",
|
|
1719
|
+
"bottom",
|
|
1720
|
+
"left",
|
|
1721
|
+
"right"
|
|
1722
|
+
],
|
|
1723
|
+
"type": {
|
|
1724
|
+
"name": "string"
|
|
1725
|
+
},
|
|
1726
|
+
"required": false,
|
|
1727
|
+
"defaultValue": {
|
|
1728
|
+
"func": false,
|
|
1729
|
+
"value": "'top'"
|
|
1730
|
+
}
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"name": "autoPosition",
|
|
1734
|
+
"description": "If set to `true`, popover will attempt to dynamically set it's position to\nensure it renders within the visible browser window.\nIf `false` the popover will always render in the provided `position`.",
|
|
1735
|
+
"type": {
|
|
1736
|
+
"name": "boolean"
|
|
1737
|
+
},
|
|
1738
|
+
"required": false,
|
|
1739
|
+
"defaultValue": {
|
|
1740
|
+
"func": false,
|
|
1741
|
+
"value": true
|
|
1742
|
+
}
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"name": "label",
|
|
1746
|
+
"description": "Sets the title for the popover content. Can also be provided via the `title` slot.",
|
|
1747
|
+
"type": {
|
|
1748
|
+
"name": "string"
|
|
1749
|
+
},
|
|
1750
|
+
"required": false
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"name": "id",
|
|
1754
|
+
"description": "ID for the popover element, required for accessibility",
|
|
1755
|
+
"type": {
|
|
1756
|
+
"name": "string"
|
|
1757
|
+
},
|
|
1758
|
+
"required": true
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
"name": "contentClass",
|
|
1762
|
+
"description": "Add custom class to the popover content wrapper. Allows for overriding size, styling, etc.",
|
|
1763
|
+
"type": {
|
|
1764
|
+
"name": "string"
|
|
1765
|
+
},
|
|
1766
|
+
"required": false
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"name": "open",
|
|
1770
|
+
"description": "Used to programmatically control the popover state. Does not need to be set if you are using the `trigger` slot.",
|
|
1771
|
+
"tags": {
|
|
1772
|
+
"demoIgnore": [
|
|
1773
|
+
{
|
|
1774
|
+
"description": "true",
|
|
1775
|
+
"title": "demoIgnore"
|
|
1776
|
+
}
|
|
1777
|
+
]
|
|
1778
|
+
},
|
|
1779
|
+
"type": {
|
|
1780
|
+
"name": "boolean"
|
|
1781
|
+
},
|
|
1782
|
+
"required": false,
|
|
1783
|
+
"defaultValue": {
|
|
1784
|
+
"func": false,
|
|
1785
|
+
"value": false
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
],
|
|
1789
|
+
"events": [
|
|
1790
|
+
{
|
|
1791
|
+
"name": "opened",
|
|
1792
|
+
"description": "Emits when popover is opened"
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"name": "closed",
|
|
1796
|
+
"description": "Emits when popover is closed"
|
|
1797
|
+
}
|
|
1798
|
+
],
|
|
1799
|
+
"slots": [
|
|
1800
|
+
{
|
|
1801
|
+
"name": "trigger",
|
|
1802
|
+
"description": " Slot for the element that triggers the popover."
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"name": "title",
|
|
1806
|
+
"description": "Sets the title for the popover. Can also be set with `label` prop"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"name": "default"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"name": "icon"
|
|
1813
|
+
}
|
|
1814
|
+
],
|
|
1815
|
+
"sourceFiles": [
|
|
1816
|
+
"./src/components/popover/CdrPopover.vue"
|
|
1817
|
+
]
|
|
1818
|
+
},
|
|
1819
|
+
"CdrList": {
|
|
1820
|
+
"displayName": "CdrList",
|
|
1821
|
+
"description": "Groups related content items together either vertically or horizontally",
|
|
1822
|
+
"tags": {},
|
|
1823
|
+
"exportName": "default",
|
|
1824
|
+
"props": [
|
|
1825
|
+
{
|
|
1826
|
+
"name": "tag",
|
|
1827
|
+
"description": "Sets list type and HTML element as \"unordered\" or \"ordered\"",
|
|
1828
|
+
"tags": {},
|
|
1829
|
+
"values": [
|
|
1830
|
+
"ul",
|
|
1831
|
+
"ol"
|
|
1832
|
+
],
|
|
1833
|
+
"type": {
|
|
1834
|
+
"name": "string"
|
|
1835
|
+
},
|
|
1836
|
+
"defaultValue": {
|
|
1837
|
+
"func": false,
|
|
1838
|
+
"value": "'ul'"
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"name": "modifier",
|
|
1843
|
+
"description": "Modifies the style variant for this component",
|
|
1844
|
+
"tags": {
|
|
1845
|
+
"demoSelectMultiple": [
|
|
1846
|
+
{
|
|
1847
|
+
"description": "true",
|
|
1848
|
+
"title": "demoSelectMultiple"
|
|
1849
|
+
}
|
|
1850
|
+
]
|
|
1851
|
+
},
|
|
1852
|
+
"values": [
|
|
1853
|
+
"ordered",
|
|
1854
|
+
"unordered",
|
|
1855
|
+
"compact",
|
|
1856
|
+
"inline"
|
|
1857
|
+
],
|
|
1858
|
+
"type": {
|
|
1859
|
+
"name": "string"
|
|
1860
|
+
},
|
|
1861
|
+
"defaultValue": {
|
|
1862
|
+
"func": false,
|
|
1863
|
+
"value": "''"
|
|
1864
|
+
}
|
|
1865
|
+
}
|
|
1866
|
+
],
|
|
1867
|
+
"slots": [
|
|
1868
|
+
{
|
|
1869
|
+
"name": "default",
|
|
1870
|
+
"description": "CdrList content (list-items)"
|
|
1871
|
+
}
|
|
1872
|
+
],
|
|
1873
|
+
"sourceFiles": [
|
|
1874
|
+
"./src/components/list/CdrList.vue"
|
|
1875
|
+
]
|
|
1876
|
+
},
|
|
1877
|
+
"CdrQuote": {
|
|
1878
|
+
"displayName": "CdrQuote",
|
|
1879
|
+
"description": "Short excerpt used to emphasize content or break up a large body of text",
|
|
1880
|
+
"tags": {},
|
|
1881
|
+
"exportName": "default",
|
|
1882
|
+
"props": [
|
|
1883
|
+
{
|
|
1884
|
+
"name": "tag",
|
|
1885
|
+
"description": "Sets the semantic HTML element for the quote.",
|
|
1886
|
+
"tags": {},
|
|
1887
|
+
"values": [
|
|
1888
|
+
"blockquote",
|
|
1889
|
+
"aside",
|
|
1890
|
+
"q",
|
|
1891
|
+
"div"
|
|
1892
|
+
],
|
|
1893
|
+
"type": {
|
|
1894
|
+
"name": "string"
|
|
1895
|
+
},
|
|
1896
|
+
"defaultValue": {
|
|
1897
|
+
"func": false,
|
|
1898
|
+
"value": "'blockquote'"
|
|
1899
|
+
}
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"name": "modifier",
|
|
1903
|
+
"description": "Modifies the style variant for the quote",
|
|
1904
|
+
"tags": {
|
|
1905
|
+
"demoSelectMultiple": [
|
|
1906
|
+
{
|
|
1907
|
+
"description": "true",
|
|
1908
|
+
"title": "demoSelectMultiple"
|
|
1909
|
+
}
|
|
1910
|
+
]
|
|
1911
|
+
},
|
|
1912
|
+
"values": [
|
|
1913
|
+
"pull"
|
|
1914
|
+
],
|
|
1915
|
+
"type": {
|
|
1916
|
+
"name": "string"
|
|
1917
|
+
},
|
|
1918
|
+
"defaultValue": {
|
|
1919
|
+
"func": false,
|
|
1920
|
+
"value": "''"
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"name": "summary",
|
|
1925
|
+
"description": "Sets the quote body text.",
|
|
1926
|
+
"type": {
|
|
1927
|
+
"name": "string"
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"name": "citation",
|
|
1932
|
+
"description": "Sets the quote attribution text.",
|
|
1933
|
+
"type": {
|
|
1934
|
+
"name": "string"
|
|
1935
|
+
}
|
|
1936
|
+
}
|
|
1937
|
+
],
|
|
1938
|
+
"slots": [
|
|
1939
|
+
{
|
|
1940
|
+
"name": "default"
|
|
1941
|
+
}
|
|
1942
|
+
],
|
|
1943
|
+
"sourceFiles": [
|
|
1944
|
+
"./src/components/quote/CdrQuote.vue"
|
|
1945
|
+
]
|
|
1946
|
+
},
|
|
1947
|
+
"CdrPagination": {
|
|
1948
|
+
"displayName": "CdrPagination",
|
|
1949
|
+
"description": "Allows people to navigate to the next or previous page within an experience",
|
|
1950
|
+
"tags": {},
|
|
1951
|
+
"exportName": "default",
|
|
1952
|
+
"props": [
|
|
1953
|
+
{
|
|
1954
|
+
"name": "id",
|
|
1955
|
+
"description": "Define a custom slug for the generated breadcrumb item IDs. Slug is randomly generated if no ID provided.",
|
|
1956
|
+
"tags": {
|
|
1957
|
+
"demoIgnore": [
|
|
1958
|
+
{
|
|
1959
|
+
"description": "true",
|
|
1960
|
+
"title": "demoIgnore"
|
|
1961
|
+
}
|
|
1962
|
+
]
|
|
1963
|
+
},
|
|
1964
|
+
"type": {
|
|
1965
|
+
"name": "string"
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"name": "totalPages",
|
|
1970
|
+
"description": "Sets the total number of pages for displaying \"Page x of <totalPages>\".\nSometimes the total number of pages is different than total page data objects in the pages array.\nFor example, if only the next and previous pages are provided.",
|
|
1971
|
+
"type": {
|
|
1972
|
+
"name": "number"
|
|
1973
|
+
},
|
|
1974
|
+
"defaultValue": {
|
|
1975
|
+
"func": false,
|
|
1976
|
+
"value": "null"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"name": "pages",
|
|
1981
|
+
"description": "Array of objects containing pagination data.\nObjects must have structure of `{ page: number, url: string }`",
|
|
1982
|
+
"type": {
|
|
1983
|
+
"name": "array"
|
|
1984
|
+
},
|
|
1985
|
+
"required": true
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"name": "linkTag",
|
|
1989
|
+
"description": "Sets which tag type is used to render pagination elements",
|
|
1990
|
+
"tags": {},
|
|
1991
|
+
"values": [
|
|
1992
|
+
"a",
|
|
1993
|
+
"button"
|
|
1994
|
+
],
|
|
1995
|
+
"type": {
|
|
1996
|
+
"name": "string"
|
|
1997
|
+
},
|
|
1998
|
+
"defaultValue": {
|
|
1999
|
+
"func": false,
|
|
2000
|
+
"value": "'a'"
|
|
2001
|
+
}
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"name": "forLabel",
|
|
2005
|
+
"description": "Used to customize the aria-label for the root pagination element.\nFor page-level pagination (i.e, pagination that updates the entire page content and changes the URL)\nthis property should be omitted.\nFor intra-page navigation this property should describe the element being paginated, for example:\n`Pagination for sub-content`",
|
|
2006
|
+
"type": {
|
|
2007
|
+
"name": "string"
|
|
2008
|
+
},
|
|
2009
|
+
"defaultValue": {
|
|
2010
|
+
"func": false,
|
|
2011
|
+
"value": "''"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
"name": "modelValue",
|
|
2016
|
+
"tags": {
|
|
2017
|
+
"ignore": [
|
|
2018
|
+
{
|
|
2019
|
+
"description": "used for binding v-model, represents the current page",
|
|
2020
|
+
"title": "ignore"
|
|
2021
|
+
}
|
|
2022
|
+
]
|
|
2023
|
+
},
|
|
2024
|
+
"type": {
|
|
2025
|
+
"name": "number"
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
],
|
|
2029
|
+
"events": [
|
|
2030
|
+
{
|
|
2031
|
+
"name": "update:modelValue",
|
|
2032
|
+
"description": "Event emitted by v-model on the select <input> element to indicate current page.\nOnly used on small devices",
|
|
2033
|
+
"properties": [
|
|
2034
|
+
{
|
|
2035
|
+
"type": {
|
|
2036
|
+
"names": [
|
|
2037
|
+
"mixed"
|
|
2038
|
+
]
|
|
2039
|
+
},
|
|
2040
|
+
"name": "modelValue"
|
|
2041
|
+
}
|
|
2042
|
+
],
|
|
2043
|
+
"tags": [
|
|
2044
|
+
{
|
|
2045
|
+
"title": "param",
|
|
2046
|
+
"type": {
|
|
2047
|
+
"name": "mixed"
|
|
2048
|
+
},
|
|
2049
|
+
"name": "modelValue"
|
|
2050
|
+
}
|
|
2051
|
+
]
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"name": "navigate",
|
|
2055
|
+
"description": "$emit event fired when page changes based on user interaction by clicking a link\nor selecting an option from the select on mobile.\n`event.preventDefault()` can be used to override the default link navigation behavior."
|
|
2056
|
+
}
|
|
2057
|
+
],
|
|
2058
|
+
"sourceFiles": [
|
|
2059
|
+
"./src/components/pagination/CdrPagination.vue"
|
|
2060
|
+
]
|
|
2061
|
+
},
|
|
2062
|
+
"CdrPopup": {
|
|
2063
|
+
"displayName": "CdrPopup",
|
|
2064
|
+
"exportName": "default",
|
|
2065
|
+
"description": "",
|
|
2066
|
+
"tags": {},
|
|
2067
|
+
"props": [
|
|
2068
|
+
{
|
|
2069
|
+
"name": "opened",
|
|
2070
|
+
"type": {
|
|
2071
|
+
"name": "boolean"
|
|
2072
|
+
},
|
|
2073
|
+
"defaultValue": {
|
|
2074
|
+
"func": false,
|
|
2075
|
+
"value": false
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"name": "position",
|
|
2080
|
+
"type": {
|
|
2081
|
+
"name": "string"
|
|
2082
|
+
},
|
|
2083
|
+
"required": false,
|
|
2084
|
+
"defaultValue": {
|
|
2085
|
+
"func": false,
|
|
2086
|
+
"value": "'top'"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"name": "autoPosition",
|
|
2091
|
+
"type": {
|
|
2092
|
+
"name": "boolean"
|
|
2093
|
+
},
|
|
2094
|
+
"defaultValue": {
|
|
2095
|
+
"func": false,
|
|
2096
|
+
"value": true
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"name": "contentClass",
|
|
2101
|
+
"type": {
|
|
2102
|
+
"name": "string"
|
|
2103
|
+
}
|
|
2104
|
+
}
|
|
2105
|
+
],
|
|
2106
|
+
"events": [
|
|
2107
|
+
{
|
|
2108
|
+
"name": "closed"
|
|
2109
|
+
}
|
|
2110
|
+
],
|
|
2111
|
+
"slots": [
|
|
2112
|
+
{
|
|
2113
|
+
"name": "default"
|
|
2114
|
+
}
|
|
2115
|
+
],
|
|
2116
|
+
"sourceFiles": [
|
|
2117
|
+
"./src/components/popup/CdrPopup.vue"
|
|
2118
|
+
]
|
|
2119
|
+
},
|
|
2120
|
+
"CdrSelect": {
|
|
2121
|
+
"displayName": "CdrSelect",
|
|
2122
|
+
"description": "Allows the selection of one or more options from a dropdown list",
|
|
2123
|
+
"tags": {},
|
|
2124
|
+
"exportName": "default",
|
|
2125
|
+
"props": [
|
|
2126
|
+
{
|
|
2127
|
+
"name": "id",
|
|
2128
|
+
"description": "Custom ID that is mapped to the label ‘for’ attribute. If this value is not set, it will be auto-generated.",
|
|
2129
|
+
"type": {
|
|
2130
|
+
"name": "string"
|
|
2131
|
+
}
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"name": "label",
|
|
2135
|
+
"description": "Sets the text value for the select label.\nRequired for accessibility compliance. Use ‘hideLabel’ to\nvisually hide the label but keep it available to screenreaders.",
|
|
2136
|
+
"type": {
|
|
2137
|
+
"name": "string"
|
|
2138
|
+
},
|
|
2139
|
+
"required": true
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"name": "hideLabel",
|
|
2143
|
+
"description": "Visually hides the label element, but leaves it available to screen readers for accessibility compliance.",
|
|
2144
|
+
"type": {
|
|
2145
|
+
"name": "boolean"
|
|
2146
|
+
},
|
|
2147
|
+
"defaultValue": {
|
|
2148
|
+
"func": false,
|
|
2149
|
+
"value": false
|
|
2150
|
+
}
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"name": "prompt",
|
|
2154
|
+
"description": "Adds an option that is disabled and selected by default to serve as a `placeholder` for the select.",
|
|
2155
|
+
"type": {
|
|
2156
|
+
"name": "string"
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"name": "options",
|
|
2161
|
+
"description": "Build options programmatically with data.\nProvide an array of objects [{ text: String, value: String}] for greater control\nor provide an array of strings ['String'] for simpler setup (value and text will be the same).",
|
|
2162
|
+
"type": {
|
|
2163
|
+
"name": "array"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
"name": "background",
|
|
2168
|
+
"description": "Sets the background color the radio button is rendered on",
|
|
2169
|
+
"tags": {},
|
|
2170
|
+
"values": [
|
|
2171
|
+
"primary",
|
|
2172
|
+
"secondary"
|
|
2173
|
+
],
|
|
2174
|
+
"type": {
|
|
2175
|
+
"name": "backgroundProps"
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"name": "size",
|
|
2180
|
+
"description": "Sets the component's size; values can target responsive breakpoints. Example `small@lg`",
|
|
2181
|
+
"tags": {
|
|
2182
|
+
"demoSelectMultiple": [
|
|
2183
|
+
{
|
|
2184
|
+
"description": "false",
|
|
2185
|
+
"title": "demoSelectMultiple"
|
|
2186
|
+
}
|
|
2187
|
+
]
|
|
2188
|
+
},
|
|
2189
|
+
"values": [
|
|
2190
|
+
"small",
|
|
2191
|
+
"medium",
|
|
2192
|
+
"large"
|
|
2193
|
+
],
|
|
2194
|
+
"type": {
|
|
2195
|
+
"name": "sizeProps"
|
|
2196
|
+
}
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"name": "error",
|
|
2200
|
+
"description": "Sets the select to an error state, displays the `error` slot if one is present.",
|
|
2201
|
+
"type": {
|
|
2202
|
+
"name": "boolean|string"
|
|
2203
|
+
},
|
|
2204
|
+
"defaultValue": {
|
|
2205
|
+
"func": false,
|
|
2206
|
+
"value": false
|
|
2207
|
+
}
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"name": "errorRole",
|
|
2211
|
+
"description": "Sets the `role` attribute for the embedded error state messaging.",
|
|
2212
|
+
"type": {
|
|
2213
|
+
"name": "string"
|
|
2214
|
+
},
|
|
2215
|
+
"defaultValue": {
|
|
2216
|
+
"func": false,
|
|
2217
|
+
"value": "'status'"
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"name": "modelValue",
|
|
2222
|
+
"tags": {
|
|
2223
|
+
"ignore": [
|
|
2224
|
+
{
|
|
2225
|
+
"description": true,
|
|
2226
|
+
"title": "ignore"
|
|
2227
|
+
}
|
|
2228
|
+
]
|
|
2229
|
+
},
|
|
2230
|
+
"type": {
|
|
2231
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"name": "disabled",
|
|
2236
|
+
"description": "Disables the input and sets appropriate styling",
|
|
2237
|
+
"type": {
|
|
2238
|
+
"name": "boolean"
|
|
2239
|
+
}
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"name": "required",
|
|
2243
|
+
"description": "Sets aria-required on the input field and displays an asterisk next to the select label",
|
|
2244
|
+
"type": {
|
|
2245
|
+
"name": "boolean"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
"name": "optional",
|
|
2250
|
+
"description": "Displays '(optional)' text next to the select label.",
|
|
2251
|
+
"type": {
|
|
2252
|
+
"name": "boolean"
|
|
2253
|
+
}
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"name": "multiple",
|
|
2257
|
+
"description": "Turns CdrSelect into a multi-select element.",
|
|
2258
|
+
"type": {
|
|
2259
|
+
"name": "boolean"
|
|
2260
|
+
}
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"name": "multipleSize",
|
|
2264
|
+
"description": "Sets the height of the CdrSelect when using the multiple option.\nThis number corresponds to the number of select options that will be visible without scrolling.",
|
|
2265
|
+
"type": {
|
|
2266
|
+
"name": "number"
|
|
2267
|
+
}
|
|
2268
|
+
}
|
|
2269
|
+
],
|
|
2270
|
+
"events": [
|
|
2271
|
+
{
|
|
2272
|
+
"name": "update:modelValue",
|
|
2273
|
+
"description": "Event emitted by v-model on the radio's <input> element",
|
|
2274
|
+
"properties": [
|
|
2275
|
+
{
|
|
2276
|
+
"type": {
|
|
2277
|
+
"names": [
|
|
2278
|
+
"mixed"
|
|
2279
|
+
]
|
|
2280
|
+
},
|
|
2281
|
+
"name": "modelValue"
|
|
2282
|
+
}
|
|
2283
|
+
],
|
|
2284
|
+
"tags": [
|
|
2285
|
+
{
|
|
2286
|
+
"title": "param",
|
|
2287
|
+
"type": {
|
|
2288
|
+
"name": "mixed"
|
|
2289
|
+
},
|
|
2290
|
+
"name": "modelValue"
|
|
2291
|
+
}
|
|
2292
|
+
]
|
|
2293
|
+
}
|
|
2294
|
+
],
|
|
2295
|
+
"slots": [
|
|
2296
|
+
{
|
|
2297
|
+
"name": "helper-text",
|
|
2298
|
+
"description": "Helper text above the select field"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"name": "info",
|
|
2302
|
+
"description": "Link or icon to the right above the select field."
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"name": "pre-icon",
|
|
2306
|
+
"description": "Icon preceding text within the select field"
|
|
2307
|
+
},
|
|
2308
|
+
{
|
|
2309
|
+
"name": "default",
|
|
2310
|
+
"description": "CdrSelect content (<option> tags). Leave empty if using the `options` prop."
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"name": "info-action",
|
|
2314
|
+
"description": "Action-wrapped icon to the right of the select field"
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"name": "error",
|
|
2318
|
+
"description": "Error messaging text that is displayed when the `error` prop is true."
|
|
2319
|
+
}
|
|
2320
|
+
],
|
|
2321
|
+
"sourceFiles": [
|
|
2322
|
+
"./src/components/select/CdrSelect.vue"
|
|
2323
|
+
]
|
|
2324
|
+
},
|
|
2325
|
+
"CdrRating": {
|
|
2326
|
+
"displayName": "CdrRating",
|
|
2327
|
+
"description": "Provides insight into user opinions for products, experiences, and more",
|
|
2328
|
+
"tags": {},
|
|
2329
|
+
"exportName": "default",
|
|
2330
|
+
"props": [
|
|
2331
|
+
{
|
|
2332
|
+
"name": "rating",
|
|
2333
|
+
"description": "Sets the rating values between 0 and 5.",
|
|
2334
|
+
"type": {
|
|
2335
|
+
"name": "string|number"
|
|
2336
|
+
},
|
|
2337
|
+
"required": true,
|
|
2338
|
+
"defaultValue": {
|
|
2339
|
+
"func": false,
|
|
2340
|
+
"value": "0"
|
|
2341
|
+
}
|
|
2342
|
+
},
|
|
2343
|
+
{
|
|
2344
|
+
"name": "count",
|
|
2345
|
+
"description": "Sets the total number of ratings",
|
|
2346
|
+
"type": {
|
|
2347
|
+
"name": "string|number"
|
|
2348
|
+
},
|
|
2349
|
+
"required": false,
|
|
2350
|
+
"defaultValue": {
|
|
2351
|
+
"func": false,
|
|
2352
|
+
"value": "null"
|
|
2353
|
+
}
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"name": "compact",
|
|
2357
|
+
"description": "Hides the word 'reviews' if true",
|
|
2358
|
+
"type": {
|
|
2359
|
+
"name": "boolean"
|
|
2360
|
+
},
|
|
2361
|
+
"defaultValue": {
|
|
2362
|
+
"func": false,
|
|
2363
|
+
"value": false
|
|
2364
|
+
}
|
|
2365
|
+
},
|
|
2366
|
+
{
|
|
2367
|
+
"name": "href",
|
|
2368
|
+
"description": "Sets the rating component (icons and text) to display inline and wraps them in an anchor tag so they can act as link.",
|
|
2369
|
+
"type": {
|
|
2370
|
+
"name": "string"
|
|
2371
|
+
}
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"name": "size",
|
|
2375
|
+
"description": "Sets the rating size.",
|
|
2376
|
+
"tags": {
|
|
2377
|
+
"demoSelectMultiple": [
|
|
2378
|
+
{
|
|
2379
|
+
"description": "false",
|
|
2380
|
+
"title": "demoSelectMultiple"
|
|
2381
|
+
}
|
|
2382
|
+
]
|
|
2383
|
+
},
|
|
2384
|
+
"values": [
|
|
2385
|
+
"small",
|
|
2386
|
+
"medium",
|
|
2387
|
+
"large"
|
|
2388
|
+
],
|
|
2389
|
+
"type": {
|
|
2390
|
+
"name": "string"
|
|
2391
|
+
},
|
|
2392
|
+
"defaultValue": {
|
|
2393
|
+
"func": false,
|
|
2394
|
+
"value": "'medium'"
|
|
2395
|
+
}
|
|
2396
|
+
}
|
|
2397
|
+
],
|
|
2398
|
+
"sourceFiles": [
|
|
2399
|
+
"./src/components/rating/CdrRating.vue"
|
|
2400
|
+
]
|
|
2401
|
+
},
|
|
2402
|
+
"CdrRadio": {
|
|
2403
|
+
"displayName": "CdrRadio",
|
|
2404
|
+
"description": "Permits the selection of only one option from a list of two or more",
|
|
2405
|
+
"tags": {},
|
|
2406
|
+
"exportName": "default",
|
|
2407
|
+
"props": [
|
|
2408
|
+
{
|
|
2409
|
+
"name": "labelClass",
|
|
2410
|
+
"description": "Adds CSS class to the label for custom styles.",
|
|
2411
|
+
"type": {
|
|
2412
|
+
"name": "string"
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"name": "inputClass",
|
|
2417
|
+
"description": "Adds CSS class to the input for custom styles.",
|
|
2418
|
+
"type": {
|
|
2419
|
+
"name": "string"
|
|
2420
|
+
}
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
"name": "contentClass",
|
|
2424
|
+
"description": "Adds CSS class to the slot wrapper for custom styles.",
|
|
2425
|
+
"type": {
|
|
2426
|
+
"name": "string"
|
|
2427
|
+
}
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"name": "name",
|
|
2431
|
+
"description": "Sets the name of the radio button.",
|
|
2432
|
+
"type": {
|
|
2433
|
+
"name": "string"
|
|
2434
|
+
},
|
|
2435
|
+
"required": true
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"name": "modifier",
|
|
2439
|
+
"description": "Modifies the style variants for this component",
|
|
2440
|
+
"tags": {
|
|
2441
|
+
"demoSelectMultiple": [
|
|
2442
|
+
{
|
|
2443
|
+
"description": "true",
|
|
2444
|
+
"title": "demoSelectMultiple"
|
|
2445
|
+
}
|
|
2446
|
+
]
|
|
2447
|
+
},
|
|
2448
|
+
"values": [
|
|
2449
|
+
"hide-figure"
|
|
2450
|
+
],
|
|
2451
|
+
"type": {
|
|
2452
|
+
"name": "string"
|
|
2453
|
+
},
|
|
2454
|
+
"defaultValue": {
|
|
2455
|
+
"func": false,
|
|
2456
|
+
"value": "''"
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"name": "size",
|
|
2461
|
+
"description": "Sets the radio size; values can target responsive breakpoints. Example `small@lg`",
|
|
2462
|
+
"tags": {
|
|
2463
|
+
"demoSelectMultiple": [
|
|
2464
|
+
{
|
|
2465
|
+
"description": "false",
|
|
2466
|
+
"title": "demoSelectMultiple"
|
|
2467
|
+
}
|
|
2468
|
+
]
|
|
2469
|
+
},
|
|
2470
|
+
"values": [
|
|
2471
|
+
"small",
|
|
2472
|
+
"medium",
|
|
2473
|
+
"large"
|
|
2474
|
+
],
|
|
2475
|
+
"type": {
|
|
2476
|
+
"name": "sizeProps"
|
|
2477
|
+
}
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
"name": "background",
|
|
2481
|
+
"description": "Sets the background color the radio button is rendered on",
|
|
2482
|
+
"tags": {},
|
|
2483
|
+
"values": [
|
|
2484
|
+
"primary",
|
|
2485
|
+
"secondary"
|
|
2486
|
+
],
|
|
2487
|
+
"type": {
|
|
2488
|
+
"name": "backgroundProps"
|
|
2489
|
+
}
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
"name": "customValue",
|
|
2493
|
+
"description": "Sets the value of the radio.",
|
|
2494
|
+
"type": {
|
|
2495
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
2496
|
+
}
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
"name": "modelValue",
|
|
2500
|
+
"tags": {
|
|
2501
|
+
"ignore": [
|
|
2502
|
+
{
|
|
2503
|
+
"description": "v-model binding",
|
|
2504
|
+
"title": "ignore"
|
|
2505
|
+
}
|
|
2506
|
+
]
|
|
2507
|
+
},
|
|
2508
|
+
"type": {
|
|
2509
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2512
|
+
],
|
|
2513
|
+
"events": [
|
|
2514
|
+
{
|
|
2515
|
+
"name": "update:modelValue",
|
|
2516
|
+
"description": "Event emitted by v-model on the radio's <input> element",
|
|
2517
|
+
"properties": [
|
|
2518
|
+
{
|
|
2519
|
+
"type": {
|
|
2520
|
+
"names": [
|
|
2521
|
+
"mixed"
|
|
2522
|
+
]
|
|
2523
|
+
},
|
|
2524
|
+
"name": "modelValue"
|
|
2525
|
+
}
|
|
2526
|
+
],
|
|
2527
|
+
"tags": [
|
|
2528
|
+
{
|
|
2529
|
+
"title": "param",
|
|
2530
|
+
"type": {
|
|
2531
|
+
"name": "mixed"
|
|
2532
|
+
},
|
|
2533
|
+
"name": "modelValue"
|
|
2534
|
+
}
|
|
2535
|
+
]
|
|
2536
|
+
}
|
|
2537
|
+
],
|
|
2538
|
+
"slots": [
|
|
2539
|
+
{
|
|
2540
|
+
"name": "default"
|
|
2541
|
+
}
|
|
2542
|
+
],
|
|
2543
|
+
"sourceFiles": [
|
|
2544
|
+
"./src/components/radio/CdrRadio.vue"
|
|
2545
|
+
]
|
|
2546
|
+
},
|
|
2547
|
+
"CdrSkeleton": {
|
|
2548
|
+
"displayName": "CdrSkeleton",
|
|
2549
|
+
"description": "Visually communicates content is in the process of loading",
|
|
2550
|
+
"tags": {},
|
|
2551
|
+
"exportName": "default",
|
|
2552
|
+
"props": [
|
|
2553
|
+
{
|
|
2554
|
+
"name": "motion",
|
|
2555
|
+
"description": "Toggle animation on/off.\nWhen `true`, animated gradient will be used while loading.\nWhen `false` a static background color will be used.\nAutomatically disabled if `prefers-reduced-motion` is set by user.",
|
|
2556
|
+
"type": {
|
|
2557
|
+
"name": "boolean"
|
|
2558
|
+
},
|
|
2559
|
+
"defaultValue": {
|
|
2560
|
+
"func": false,
|
|
2561
|
+
"value": true
|
|
2562
|
+
}
|
|
2563
|
+
}
|
|
2564
|
+
],
|
|
2565
|
+
"slots": [
|
|
2566
|
+
{
|
|
2567
|
+
"name": "default",
|
|
2568
|
+
"description": "CdrSkeleton content (CdrSkeletonBone components)"
|
|
2569
|
+
}
|
|
2570
|
+
],
|
|
2571
|
+
"sourceFiles": [
|
|
2572
|
+
"./src/components/skeleton/CdrSkeleton.vue"
|
|
2573
|
+
]
|
|
2574
|
+
},
|
|
2575
|
+
"CdrSkeletonBone": {
|
|
2576
|
+
"displayName": "CdrSkeletonBone",
|
|
2577
|
+
"exportName": "default",
|
|
2578
|
+
"description": "",
|
|
2579
|
+
"tags": {},
|
|
2580
|
+
"props": [
|
|
2581
|
+
{
|
|
2582
|
+
"name": "type",
|
|
2583
|
+
"description": "Sets the type of content placeholder",
|
|
2584
|
+
"tags": {
|
|
2585
|
+
"demoSelectMultiple": [
|
|
2586
|
+
{
|
|
2587
|
+
"description": "false",
|
|
2588
|
+
"title": "demoSelectMultiple"
|
|
2589
|
+
}
|
|
2590
|
+
]
|
|
2591
|
+
},
|
|
2592
|
+
"values": [
|
|
2593
|
+
"default",
|
|
2594
|
+
"heading",
|
|
2595
|
+
"line",
|
|
2596
|
+
"rectangle",
|
|
2597
|
+
"square"
|
|
2598
|
+
],
|
|
2599
|
+
"type": {
|
|
2600
|
+
"name": "string"
|
|
2601
|
+
},
|
|
2602
|
+
"required": false,
|
|
2603
|
+
"defaultValue": {
|
|
2604
|
+
"func": false,
|
|
2605
|
+
"value": "'default'"
|
|
2606
|
+
}
|
|
2607
|
+
}
|
|
2608
|
+
],
|
|
2609
|
+
"sourceFiles": [
|
|
2610
|
+
"./src/components/skeleton/CdrSkeletonBone.vue"
|
|
2611
|
+
]
|
|
2612
|
+
},
|
|
2613
|
+
"CdrTabs": {
|
|
2614
|
+
"displayName": "CdrTabs",
|
|
2615
|
+
"description": "Organizes related content into groups for people to navigate between",
|
|
2616
|
+
"tags": {},
|
|
2617
|
+
"exportName": "default",
|
|
2618
|
+
"props": [
|
|
2619
|
+
{
|
|
2620
|
+
"name": "height",
|
|
2621
|
+
"description": "Sets height of the tabs container element.\nPassing a `px` value will render tabs with a static height,\npassing `auto` will render tabs with variable height based on content size.",
|
|
2622
|
+
"type": {
|
|
2623
|
+
"name": "string"
|
|
2624
|
+
},
|
|
2625
|
+
"defaultValue": {
|
|
2626
|
+
"func": false,
|
|
2627
|
+
"value": "'240px'"
|
|
2628
|
+
}
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"name": "activeTab",
|
|
2632
|
+
"description": "Sets the index of the tab that should be active on initial page load. Note that this property is zero-indexed.",
|
|
2633
|
+
"type": {
|
|
2634
|
+
"name": "number"
|
|
2635
|
+
},
|
|
2636
|
+
"defaultValue": {
|
|
2637
|
+
"func": false,
|
|
2638
|
+
"value": "0"
|
|
2639
|
+
}
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
"name": "modifier",
|
|
2643
|
+
"description": "Modifies the style variants for this component",
|
|
2644
|
+
"tags": {},
|
|
2645
|
+
"values": [
|
|
2646
|
+
"centered",
|
|
2647
|
+
"compact",
|
|
2648
|
+
"full-width",
|
|
2649
|
+
"no-border"
|
|
2650
|
+
],
|
|
2651
|
+
"type": {
|
|
2652
|
+
"name": "string"
|
|
2653
|
+
}
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"name": "size",
|
|
2657
|
+
"description": "Use `small` to reduce spacing around the tabs for a denser visual design",
|
|
2658
|
+
"tags": {
|
|
2659
|
+
"demoSelectMultiple": [
|
|
2660
|
+
{
|
|
2661
|
+
"description": "true",
|
|
2662
|
+
"title": "demoSelectMultiple"
|
|
2663
|
+
}
|
|
2664
|
+
]
|
|
2665
|
+
},
|
|
2666
|
+
"values": [
|
|
2667
|
+
"small"
|
|
2668
|
+
],
|
|
2669
|
+
"type": {
|
|
2670
|
+
"name": "string"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
{
|
|
2674
|
+
"name": "backgroundColor",
|
|
2675
|
+
"description": "Sets the background color of the tab.\nFor CdrTabs that are rendered on non-primary backgrounds.\nPass the background-color into the component to ensure that the scrolling gradients render correctly.",
|
|
2676
|
+
"type": {
|
|
2677
|
+
"name": "string"
|
|
2678
|
+
},
|
|
2679
|
+
"defaultValue": {
|
|
2680
|
+
"func": false,
|
|
2681
|
+
"value": "CdrColorBackgroundPrimary"
|
|
2682
|
+
}
|
|
2683
|
+
}
|
|
2684
|
+
],
|
|
2685
|
+
"slots": [
|
|
2686
|
+
{
|
|
2687
|
+
"name": "default",
|
|
2688
|
+
"description": "CdrTabs content (CdrTabPanel components)"
|
|
2689
|
+
}
|
|
2690
|
+
],
|
|
2691
|
+
"sourceFiles": [
|
|
2692
|
+
"./src/components/tabs/CdrTabs.vue"
|
|
2693
|
+
]
|
|
2694
|
+
},
|
|
2695
|
+
"CdrText": {
|
|
2696
|
+
"displayName": "CdrText",
|
|
2697
|
+
"description": "Text container used for any text element such as paragraphs, headings, and lists",
|
|
2698
|
+
"tags": {},
|
|
2699
|
+
"exportName": "default",
|
|
2700
|
+
"props": [
|
|
2701
|
+
{
|
|
2702
|
+
"name": "tag",
|
|
2703
|
+
"description": "Sets the HTML tag (p, span, h1, h2, etc)",
|
|
2704
|
+
"type": {
|
|
2705
|
+
"name": "string"
|
|
2706
|
+
},
|
|
2707
|
+
"defaultValue": {
|
|
2708
|
+
"func": false,
|
|
2709
|
+
"value": "'p'"
|
|
2710
|
+
}
|
|
2711
|
+
}
|
|
2712
|
+
],
|
|
2713
|
+
"slots": [
|
|
2714
|
+
{
|
|
2715
|
+
"name": "default",
|
|
2716
|
+
"description": "CdrText content"
|
|
2717
|
+
}
|
|
2718
|
+
],
|
|
2719
|
+
"sourceFiles": [
|
|
2720
|
+
"./src/components/text/CdrText.vue"
|
|
2721
|
+
]
|
|
2722
|
+
},
|
|
2723
|
+
"CdrSwitch": {
|
|
2724
|
+
"displayName": "CdrSwitch",
|
|
2725
|
+
"description": "Permits selection from two opposing options",
|
|
2726
|
+
"tags": {},
|
|
2727
|
+
"exportName": "default",
|
|
2728
|
+
"props": [
|
|
2729
|
+
{
|
|
2730
|
+
"name": "id",
|
|
2731
|
+
"description": "Sets a custom ID for the switch. If this value is not set, it will be auto-generated.",
|
|
2732
|
+
"type": {
|
|
2733
|
+
"name": "string"
|
|
2734
|
+
}
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"name": "size",
|
|
2738
|
+
"description": "Sets the size of the switch",
|
|
2739
|
+
"tags": {
|
|
2740
|
+
"demoSelectMultiple": [
|
|
2741
|
+
{
|
|
2742
|
+
"description": "false",
|
|
2743
|
+
"title": "demoSelectMultiple"
|
|
2744
|
+
}
|
|
2745
|
+
]
|
|
2746
|
+
},
|
|
2747
|
+
"values": [
|
|
2748
|
+
"medium",
|
|
2749
|
+
"large"
|
|
2750
|
+
],
|
|
2751
|
+
"type": {
|
|
2752
|
+
"name": "string"
|
|
2753
|
+
},
|
|
2754
|
+
"defaultValue": {
|
|
2755
|
+
"func": false,
|
|
2756
|
+
"value": "'medium'"
|
|
2757
|
+
}
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"name": "fullWidth",
|
|
2761
|
+
"description": "Sets the label and switch to expand to the full width of its container with `space-between`",
|
|
2762
|
+
"type": {
|
|
2763
|
+
"name": "boolean"
|
|
2764
|
+
},
|
|
2765
|
+
"defaultValue": {
|
|
2766
|
+
"func": false,
|
|
2767
|
+
"value": false
|
|
2768
|
+
}
|
|
2769
|
+
},
|
|
2770
|
+
{
|
|
2771
|
+
"name": "modelValue",
|
|
2772
|
+
"tags": {
|
|
2773
|
+
"demoIgnore": [
|
|
2774
|
+
{
|
|
2775
|
+
"description": "true",
|
|
2776
|
+
"title": "demoIgnore"
|
|
2777
|
+
}
|
|
2778
|
+
]
|
|
2779
|
+
},
|
|
2780
|
+
"type": {
|
|
2781
|
+
"name": "boolean"
|
|
2782
|
+
},
|
|
2783
|
+
"required": true
|
|
2784
|
+
}
|
|
2785
|
+
],
|
|
2786
|
+
"events": [
|
|
2787
|
+
{
|
|
2788
|
+
"name": "update:modelValue",
|
|
2789
|
+
"description": "Event emitted by v-model on switch",
|
|
2790
|
+
"properties": [
|
|
2791
|
+
{
|
|
2792
|
+
"type": {
|
|
2793
|
+
"names": [
|
|
2794
|
+
"mixed"
|
|
2795
|
+
]
|
|
2796
|
+
},
|
|
2797
|
+
"name": "modelValue"
|
|
2798
|
+
}
|
|
2799
|
+
],
|
|
2800
|
+
"tags": [
|
|
2801
|
+
{
|
|
2802
|
+
"title": "param",
|
|
2803
|
+
"type": {
|
|
2804
|
+
"name": "mixed"
|
|
2805
|
+
},
|
|
2806
|
+
"name": "modelValue"
|
|
2807
|
+
}
|
|
2808
|
+
]
|
|
2809
|
+
}
|
|
2810
|
+
],
|
|
2811
|
+
"slots": [
|
|
2812
|
+
{
|
|
2813
|
+
"name": "default",
|
|
2814
|
+
"description": "The label for the switch"
|
|
2815
|
+
}
|
|
2816
|
+
],
|
|
2817
|
+
"sourceFiles": [
|
|
2818
|
+
"./src/components/switch/CdrSwitch.vue"
|
|
2819
|
+
]
|
|
2820
|
+
},
|
|
2821
|
+
"CdrTabPanel": {
|
|
2822
|
+
"displayName": "CdrTabPanel",
|
|
2823
|
+
"exportName": "default",
|
|
2824
|
+
"description": "",
|
|
2825
|
+
"tags": {},
|
|
2826
|
+
"props": [
|
|
2827
|
+
{
|
|
2828
|
+
"name": "id",
|
|
2829
|
+
"description": "Sets reference identifier for tab content. This property is required and is necessary for accessibility. Must be unique for each tabPanel, and cannot be the same as the `aria-labelledby` property.",
|
|
2830
|
+
"type": {
|
|
2831
|
+
"name": "string"
|
|
2832
|
+
}
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"name": "name",
|
|
2836
|
+
"description": "Sets tab display name. Required and must be unique for each tab. If `id` is not provided, this value will be used as the reference identifier.",
|
|
2837
|
+
"type": {
|
|
2838
|
+
"name": "string"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
{
|
|
2842
|
+
"name": "ariaLabelledby",
|
|
2843
|
+
"description": "Sets reference identifier for tab header. This property is required and is necessary for accessibility. Must be unique for each tabPanel, and cannot be the same as the `id` property.",
|
|
2844
|
+
"type": {
|
|
2845
|
+
"name": "string"
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
],
|
|
2849
|
+
"events": [
|
|
2850
|
+
{
|
|
2851
|
+
"name": "tab-change",
|
|
2852
|
+
"description": "Emits when active tab is changed",
|
|
2853
|
+
"tags": [
|
|
2854
|
+
{
|
|
2855
|
+
"title": "params",
|
|
2856
|
+
"content": "state, panelId"
|
|
2857
|
+
}
|
|
2858
|
+
]
|
|
2859
|
+
}
|
|
2860
|
+
],
|
|
2861
|
+
"slots": [
|
|
2862
|
+
{
|
|
2863
|
+
"name": "default",
|
|
2864
|
+
"description": "CdrTabPanel content"
|
|
2865
|
+
}
|
|
2866
|
+
],
|
|
2867
|
+
"sourceFiles": [
|
|
2868
|
+
"./src/components/tabs/CdrTabPanel.vue"
|
|
2869
|
+
]
|
|
2870
|
+
},
|
|
2871
|
+
"CdrTable": {
|
|
2872
|
+
"displayName": "CdrTable",
|
|
2873
|
+
"description": "Organizes structured data for users to easily scan, compare, and analyze",
|
|
2874
|
+
"tags": {},
|
|
2875
|
+
"exportName": "default",
|
|
2876
|
+
"props": [
|
|
2877
|
+
{
|
|
2878
|
+
"name": "striped",
|
|
2879
|
+
"description": "Sets row colors to alternate between darker and lighter backgrounds.\nStriping will not apply when `border` is true",
|
|
2880
|
+
"type": {
|
|
2881
|
+
"name": "boolean"
|
|
2882
|
+
},
|
|
2883
|
+
"defaultValue": {
|
|
2884
|
+
"func": false,
|
|
2885
|
+
"value": false
|
|
2886
|
+
}
|
|
2887
|
+
},
|
|
2888
|
+
{
|
|
2889
|
+
"name": "border",
|
|
2890
|
+
"description": "Adds borders between rows. Will disable `striped` if both are true",
|
|
2891
|
+
"type": {
|
|
2892
|
+
"name": "boolean"
|
|
2893
|
+
},
|
|
2894
|
+
"defaultValue": {
|
|
2895
|
+
"func": false,
|
|
2896
|
+
"value": true
|
|
2897
|
+
}
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
"name": "fullWidth",
|
|
2901
|
+
"description": "Sets the width to 100%. Also accepts space separated strings for breakpoints that it should be full width: { '@xs' | '@sm' | '@md' | '@lg' }",
|
|
2902
|
+
"type": {
|
|
2903
|
+
"name": "boolean|string"
|
|
2904
|
+
},
|
|
2905
|
+
"defaultValue": {
|
|
2906
|
+
"func": false,
|
|
2907
|
+
"value": true
|
|
2908
|
+
}
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"name": "responsive",
|
|
2912
|
+
"description": "Makes the table scroll horizontally when it would overflow its container",
|
|
2913
|
+
"type": {
|
|
2914
|
+
"name": "boolean"
|
|
2915
|
+
},
|
|
2916
|
+
"defaultValue": {
|
|
2917
|
+
"func": false,
|
|
2918
|
+
"value": true
|
|
2919
|
+
}
|
|
2920
|
+
},
|
|
2921
|
+
{
|
|
2922
|
+
"name": "hover",
|
|
2923
|
+
"description": "Adds a darker background on row hover",
|
|
2924
|
+
"type": {
|
|
2925
|
+
"name": "boolean"
|
|
2926
|
+
},
|
|
2927
|
+
"defaultValue": {
|
|
2928
|
+
"func": false,
|
|
2929
|
+
"value": false
|
|
2930
|
+
}
|
|
2931
|
+
},
|
|
2932
|
+
{
|
|
2933
|
+
"name": "size",
|
|
2934
|
+
"description": "Sets the table size (cell padding); values can target responsive breakpoints. Example `small@lg`.",
|
|
2935
|
+
"tags": {
|
|
2936
|
+
"demoSelectMultiple": [
|
|
2937
|
+
{
|
|
2938
|
+
"description": "false",
|
|
2939
|
+
"title": "demoSelectMultiple"
|
|
2940
|
+
}
|
|
2941
|
+
]
|
|
2942
|
+
},
|
|
2943
|
+
"values": [
|
|
2944
|
+
"small",
|
|
2945
|
+
"medium",
|
|
2946
|
+
"large"
|
|
2947
|
+
],
|
|
2948
|
+
"type": {
|
|
2949
|
+
"name": "string"
|
|
2950
|
+
},
|
|
2951
|
+
"defaultValue": {
|
|
2952
|
+
"func": false,
|
|
2953
|
+
"value": "'medium'"
|
|
2954
|
+
}
|
|
2955
|
+
}
|
|
2956
|
+
],
|
|
2957
|
+
"slots": [
|
|
2958
|
+
{
|
|
2959
|
+
"name": "default",
|
|
2960
|
+
"description": "CdrTable content (Valid table elements <th>, <tbody>, <tr>, <td>, etc.)"
|
|
2961
|
+
}
|
|
2962
|
+
],
|
|
2963
|
+
"sourceFiles": [
|
|
2964
|
+
"./src/components/table/CdrTable.vue"
|
|
2965
|
+
]
|
|
2966
|
+
},
|
|
2967
|
+
"CdrToast": {
|
|
2968
|
+
"displayName": "CdrToast",
|
|
2969
|
+
"description": "Non-modal dialog used to communicate the status of a task or process",
|
|
2970
|
+
"tags": {},
|
|
2971
|
+
"exportName": "default",
|
|
2972
|
+
"props": [
|
|
2973
|
+
{
|
|
2974
|
+
"name": "type",
|
|
2975
|
+
"description": "Sets the toast type.",
|
|
2976
|
+
"tags": {
|
|
2977
|
+
"demoSelectMultiple": [
|
|
2978
|
+
{
|
|
2979
|
+
"description": "false",
|
|
2980
|
+
"title": "demoSelectMultiple"
|
|
2981
|
+
}
|
|
2982
|
+
]
|
|
2983
|
+
},
|
|
2984
|
+
"values": [
|
|
2985
|
+
"info",
|
|
2986
|
+
"success",
|
|
2987
|
+
"warning",
|
|
2988
|
+
"error",
|
|
2989
|
+
"default"
|
|
2990
|
+
],
|
|
2991
|
+
"type": {
|
|
2992
|
+
"name": "string"
|
|
2993
|
+
},
|
|
2994
|
+
"defaultValue": {
|
|
2995
|
+
"func": false,
|
|
2996
|
+
"value": "'default'"
|
|
2997
|
+
}
|
|
2998
|
+
},
|
|
2999
|
+
{
|
|
3000
|
+
"name": "open",
|
|
3001
|
+
"description": "Used to programmatically control the toast open/close state.",
|
|
3002
|
+
"tags": {
|
|
3003
|
+
"demoIgnore": [
|
|
3004
|
+
{
|
|
3005
|
+
"description": "true",
|
|
3006
|
+
"title": "demoIgnore"
|
|
3007
|
+
}
|
|
3008
|
+
]
|
|
3009
|
+
},
|
|
3010
|
+
"type": {
|
|
3011
|
+
"name": "boolean"
|
|
3012
|
+
},
|
|
3013
|
+
"defaultValue": {
|
|
3014
|
+
"func": false,
|
|
3015
|
+
"value": false
|
|
3016
|
+
}
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
"name": "autoDismiss",
|
|
3020
|
+
"description": "Set to `false` to disable automatic closing after the `dismissDelay`.",
|
|
3021
|
+
"type": {
|
|
3022
|
+
"name": "boolean"
|
|
3023
|
+
},
|
|
3024
|
+
"defaultValue": {
|
|
3025
|
+
"func": false,
|
|
3026
|
+
"value": true
|
|
3027
|
+
}
|
|
3028
|
+
},
|
|
3029
|
+
{
|
|
3030
|
+
"name": "dismissDelay",
|
|
3031
|
+
"description": "Sets the interval (in milliseconds) before the toast automatically closes.",
|
|
3032
|
+
"type": {
|
|
3033
|
+
"name": "number"
|
|
3034
|
+
},
|
|
3035
|
+
"defaultValue": {
|
|
3036
|
+
"func": false,
|
|
3037
|
+
"value": "5000"
|
|
3038
|
+
}
|
|
3039
|
+
}
|
|
3040
|
+
],
|
|
3041
|
+
"events": [
|
|
3042
|
+
{
|
|
3043
|
+
"name": "open",
|
|
3044
|
+
"description": "Emits when toast opens"
|
|
3045
|
+
},
|
|
3046
|
+
{
|
|
3047
|
+
"name": "closed",
|
|
3048
|
+
"description": "Emits when toast closes"
|
|
3049
|
+
}
|
|
3050
|
+
],
|
|
3051
|
+
"slots": [
|
|
3052
|
+
{
|
|
3053
|
+
"name": "icon-left",
|
|
3054
|
+
"description": "Icon matching toast messaging type"
|
|
3055
|
+
},
|
|
3056
|
+
{
|
|
3057
|
+
"name": "default",
|
|
3058
|
+
"description": "CdrToast content"
|
|
3059
|
+
},
|
|
3060
|
+
{
|
|
3061
|
+
"name": "icon"
|
|
3062
|
+
}
|
|
3063
|
+
],
|
|
3064
|
+
"sourceFiles": [
|
|
3065
|
+
"./src/components/toast/CdrToast.vue"
|
|
3066
|
+
]
|
|
3067
|
+
},
|
|
3068
|
+
"CdrTooltip": {
|
|
3069
|
+
"displayName": "CdrTooltip",
|
|
3070
|
+
"description": "Floating label used to clarify interface actions",
|
|
3071
|
+
"tags": {},
|
|
3072
|
+
"exportName": "default",
|
|
3073
|
+
"props": [
|
|
3074
|
+
{
|
|
3075
|
+
"name": "position",
|
|
3076
|
+
"description": "Sets the position where the tooltip will render relative to the trigger element.",
|
|
3077
|
+
"tags": {
|
|
3078
|
+
"demoSelectMultiple": [
|
|
3079
|
+
{
|
|
3080
|
+
"description": "false",
|
|
3081
|
+
"title": "demoSelectMultiple"
|
|
3082
|
+
}
|
|
3083
|
+
]
|
|
3084
|
+
},
|
|
3085
|
+
"values": [
|
|
3086
|
+
"top",
|
|
3087
|
+
"bottom",
|
|
3088
|
+
"left",
|
|
3089
|
+
"right"
|
|
3090
|
+
],
|
|
3091
|
+
"type": {
|
|
3092
|
+
"name": "string"
|
|
3093
|
+
},
|
|
3094
|
+
"required": false,
|
|
3095
|
+
"defaultValue": {
|
|
3096
|
+
"func": false,
|
|
3097
|
+
"value": "'top'"
|
|
3098
|
+
}
|
|
3099
|
+
},
|
|
3100
|
+
{
|
|
3101
|
+
"name": "autoPosition",
|
|
3102
|
+
"description": "If set to `true`, tooltip will attempt to dynamically set it's position to\nensure it renders within the visible browser window.\nIf `false` the tooltip will always render in the provided `position`.",
|
|
3103
|
+
"type": {
|
|
3104
|
+
"name": "boolean"
|
|
3105
|
+
},
|
|
3106
|
+
"defaultValue": {
|
|
3107
|
+
"func": false,
|
|
3108
|
+
"value": true
|
|
3109
|
+
}
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"name": "id",
|
|
3113
|
+
"description": "ID for the tooltip element, required for accessibility",
|
|
3114
|
+
"type": {
|
|
3115
|
+
"name": "string"
|
|
3116
|
+
},
|
|
3117
|
+
"required": true
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
"name": "contentClass",
|
|
3121
|
+
"description": "Add custom class to the tooltip content wrapper. Allows for overriding size, styling, etc.",
|
|
3122
|
+
"type": {
|
|
3123
|
+
"name": "string"
|
|
3124
|
+
},
|
|
3125
|
+
"required": false
|
|
3126
|
+
},
|
|
3127
|
+
{
|
|
3128
|
+
"name": "open",
|
|
3129
|
+
"description": "Used to programmatically control the tooltip state. Does not need to be set if you are using the `trigger` slot.",
|
|
3130
|
+
"tags": {
|
|
3131
|
+
"demoIgnore": [
|
|
3132
|
+
{
|
|
3133
|
+
"description": "true",
|
|
3134
|
+
"title": "demoIgnore"
|
|
3135
|
+
}
|
|
3136
|
+
]
|
|
3137
|
+
},
|
|
3138
|
+
"type": {
|
|
3139
|
+
"name": "boolean"
|
|
3140
|
+
},
|
|
3141
|
+
"defaultValue": {
|
|
3142
|
+
"func": false,
|
|
3143
|
+
"value": false
|
|
3144
|
+
}
|
|
3145
|
+
}
|
|
3146
|
+
],
|
|
3147
|
+
"events": [
|
|
3148
|
+
{
|
|
3149
|
+
"name": "opened",
|
|
3150
|
+
"description": "Emits when tooltip is opened"
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"name": "closed",
|
|
3154
|
+
"description": "Emits when tooltip is closed"
|
|
3155
|
+
}
|
|
3156
|
+
],
|
|
3157
|
+
"slots": [
|
|
3158
|
+
{
|
|
3159
|
+
"name": "trigger",
|
|
3160
|
+
"description": " Slot for the element that triggers the tooltip."
|
|
3161
|
+
},
|
|
3162
|
+
{
|
|
3163
|
+
"name": "default",
|
|
3164
|
+
"description": "CdrTooltip content"
|
|
3165
|
+
}
|
|
3166
|
+
],
|
|
3167
|
+
"sourceFiles": [
|
|
3168
|
+
"./src/components/tooltip/CdrTooltip.vue"
|
|
3169
|
+
]
|
|
3170
|
+
},
|
|
3171
|
+
"CdrToggleButton": {
|
|
3172
|
+
"displayName": "CdrToggleButton",
|
|
3173
|
+
"description": "Permits switching two or more options on and off",
|
|
3174
|
+
"tags": {},
|
|
3175
|
+
"exportName": "default",
|
|
3176
|
+
"props": [
|
|
3177
|
+
{
|
|
3178
|
+
"name": "toggleValue",
|
|
3179
|
+
"description": "Sets the value and aria-label for the toggle button. Display can be overridden using default slot",
|
|
3180
|
+
"type": {
|
|
3181
|
+
"name": "string"
|
|
3182
|
+
},
|
|
3183
|
+
"required": true
|
|
3184
|
+
}
|
|
3185
|
+
],
|
|
3186
|
+
"slots": [
|
|
3187
|
+
{
|
|
3188
|
+
"name": "default",
|
|
3189
|
+
"description": "CdrToggleButton label content"
|
|
3190
|
+
}
|
|
3191
|
+
],
|
|
3192
|
+
"sourceFiles": [
|
|
3193
|
+
"./src/components/toggleButton/CdrToggleButton.vue"
|
|
3194
|
+
]
|
|
3195
|
+
},
|
|
3196
|
+
"CdrToggleGroup": {
|
|
3197
|
+
"displayName": "CdrToggleGroup",
|
|
3198
|
+
"exportName": "default",
|
|
3199
|
+
"description": "",
|
|
3200
|
+
"tags": {},
|
|
3201
|
+
"props": [
|
|
3202
|
+
{
|
|
3203
|
+
"name": "modelValue",
|
|
3204
|
+
"tags": {
|
|
3205
|
+
"ignore": [
|
|
3206
|
+
{
|
|
3207
|
+
"description": true,
|
|
3208
|
+
"title": "ignore"
|
|
3209
|
+
}
|
|
3210
|
+
]
|
|
3211
|
+
},
|
|
3212
|
+
"type": {
|
|
3213
|
+
"name": "string|number|boolean|object|array"
|
|
3214
|
+
},
|
|
3215
|
+
"required": true
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
"name": "size",
|
|
3219
|
+
"description": "Sets toggle button size",
|
|
3220
|
+
"tags": {
|
|
3221
|
+
"demoSelectMultiple": [
|
|
3222
|
+
{
|
|
3223
|
+
"description": "false",
|
|
3224
|
+
"title": "demoSelectMultiple"
|
|
3225
|
+
}
|
|
3226
|
+
]
|
|
3227
|
+
},
|
|
3228
|
+
"values": [
|
|
3229
|
+
"medium",
|
|
3230
|
+
"large"
|
|
3231
|
+
],
|
|
3232
|
+
"type": {
|
|
3233
|
+
"name": "string"
|
|
3234
|
+
},
|
|
3235
|
+
"defaultValue": {
|
|
3236
|
+
"func": false,
|
|
3237
|
+
"value": "'medium'"
|
|
3238
|
+
}
|
|
3239
|
+
}
|
|
3240
|
+
],
|
|
3241
|
+
"events": [
|
|
3242
|
+
{
|
|
3243
|
+
"name": "update:modelValue",
|
|
3244
|
+
"description": "Event emitted by v-model",
|
|
3245
|
+
"properties": [
|
|
3246
|
+
{
|
|
3247
|
+
"type": {
|
|
3248
|
+
"names": [
|
|
3249
|
+
"mixed"
|
|
3250
|
+
]
|
|
3251
|
+
},
|
|
3252
|
+
"name": "modelValue"
|
|
3253
|
+
}
|
|
3254
|
+
],
|
|
3255
|
+
"tags": [
|
|
3256
|
+
{
|
|
3257
|
+
"title": "param",
|
|
3258
|
+
"type": {
|
|
3259
|
+
"name": "mixed"
|
|
3260
|
+
},
|
|
3261
|
+
"name": "modelValue"
|
|
3262
|
+
}
|
|
3263
|
+
]
|
|
3264
|
+
}
|
|
3265
|
+
],
|
|
3266
|
+
"slots": [
|
|
3267
|
+
{
|
|
3268
|
+
"name": "default",
|
|
3269
|
+
"description": "CdrToggleGroup content (CdrToggleButton components)"
|
|
3270
|
+
}
|
|
3271
|
+
],
|
|
3272
|
+
"sourceFiles": [
|
|
3273
|
+
"./src/components/toggleButton/CdrToggleGroup.vue"
|
|
3274
|
+
]
|
|
3275
|
+
},
|
|
3276
|
+
"CdrFormError": {
|
|
3277
|
+
"displayName": "CdrFormError",
|
|
3278
|
+
"exportName": "default",
|
|
3279
|
+
"description": "",
|
|
3280
|
+
"tags": {},
|
|
3281
|
+
"props": [
|
|
3282
|
+
{
|
|
3283
|
+
"name": "error",
|
|
3284
|
+
"type": {
|
|
3285
|
+
"name": "boolean|string"
|
|
3286
|
+
}
|
|
3287
|
+
}
|
|
3288
|
+
],
|
|
3289
|
+
"slots": [
|
|
3290
|
+
{
|
|
3291
|
+
"name": "error"
|
|
3292
|
+
}
|
|
3293
|
+
],
|
|
3294
|
+
"sourceFiles": [
|
|
3295
|
+
"./src/components/formError/CdrFormError.vue"
|
|
3296
|
+
]
|
|
3297
|
+
}
|
|
3298
|
+
}
|