@rei/cedar 14.0.0-ts.5 → 14.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cedar-compiled.css +1074 -1036
- package/dist/cedar.umd.js +31 -2
- package/dist/component-docgen.json +3065 -976
- package/dist/components/image/CdrImg.vue.d.ts +2 -2
- package/dist/components/labelWrapper/CdrLabelWrapper.vue.d.ts +1 -0
- package/dist/components/rating/components/CdrStar00.vue.d.ts +16 -0
- package/dist/components/rating/components/CdrStar100.vue.d.ts +16 -0
- package/dist/components/rating/components/CdrStar25.vue.d.ts +16 -0
- package/dist/components/rating/components/CdrStar50.vue.d.ts +16 -0
- package/dist/components/rating/components/CdrStar75.vue.d.ts +16 -0
- package/dist/components/rating/components/CdrStarNull.vue.d.ts +16 -0
- package/dist/components/rating/composables/useStar.d.ts +8 -0
- package/dist/components/tabs/CdrTabs.vue.d.ts +2 -2
- package/dist/icon-component-docgen.json +575 -389
- package/dist/src/components/accordion/CdrAccordion.vue2.mjs +51 -54
- package/dist/src/components/accordion/CdrAccordionGroup.vue2.mjs +19 -19
- 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/accordion/symbols.mjs +2 -3
- package/dist/src/components/banner/styles/CdrBanner.module.scss.mjs +14 -14
- package/dist/src/components/breadcrumb/styles/CdrBreadcrumb.module.scss.mjs +7 -7
- package/dist/src/components/button/styles/CdrButton.module.scss.mjs +31 -31
- package/dist/src/components/caption/styles/CdrCaption.module.scss.mjs +4 -4
- package/dist/src/components/card/styles/CdrCard.module.scss.mjs +1 -1
- package/dist/src/components/checkbox/CdrCheckbox.vue2.mjs +32 -20
- package/dist/src/components/checkbox/styles/CdrCheckbox.module.scss.mjs +27 -25
- 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/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/styles/CdrGrid.module.scss.mjs +21 -21
- package/dist/src/components/icon/styles/CdrIcon.module.scss.mjs +12 -12
- package/dist/src/components/image/CdrImg.vue2.mjs +7 -7
- package/dist/src/components/image/styles/CdrImg.module.scss.mjs +8 -8
- package/dist/src/components/input/styles/CdrInput.module.scss.mjs +34 -34
- package/dist/src/components/labelStandalone/styles/CdrLabelStandalone.module.scss.mjs +12 -12
- package/dist/src/components/labelWrapper/CdrLabelWrapper.vue2.mjs +11 -11
- package/dist/src/components/labelWrapper/styles/CdrLabelWrapper.module.scss.mjs +25 -23
- package/dist/src/components/link/styles/CdrLink.module.scss.mjs +3 -3
- package/dist/src/components/list/styles/CdrList.module.scss.mjs +7 -7
- package/dist/src/components/modal/CdrModal.vue2.mjs +2 -2
- package/dist/src/components/modal/styles/CdrModal.module.scss.mjs +12 -12
- package/dist/src/components/pagination/styles/CdrPagination.module.scss.mjs +53 -53
- package/dist/src/components/popover/styles/CdrPopover.module.scss.mjs +65 -65
- package/dist/src/components/popup/styles/CdrPopup.module.scss.mjs +14 -14
- package/dist/src/components/quote/styles/CdrQuote.module.scss.mjs +4 -4
- package/dist/src/components/radio/styles/CdrRadio.module.scss.mjs +27 -25
- package/dist/src/components/rating/CdrRating.vue2.mjs +43 -29
- package/dist/src/components/rating/components/CdrStar00.vue.mjs +9 -0
- package/dist/src/components/rating/components/CdrStar00.vue2.mjs +37 -0
- package/dist/src/components/rating/components/CdrStar100.vue.mjs +9 -0
- package/dist/src/components/rating/components/CdrStar100.vue2.mjs +37 -0
- package/dist/src/components/rating/components/CdrStar25.vue.mjs +9 -0
- package/dist/src/components/rating/components/CdrStar25.vue2.mjs +48 -0
- package/dist/src/components/rating/components/CdrStar50.vue.mjs +9 -0
- package/dist/src/components/rating/components/CdrStar50.vue2.mjs +53 -0
- package/dist/src/components/rating/components/CdrStar75.vue.mjs +9 -0
- package/dist/src/components/rating/components/CdrStar75.vue2.mjs +50 -0
- package/dist/src/components/rating/components/CdrStarNull.vue.mjs +9 -0
- package/dist/src/components/rating/components/CdrStarNull.vue2.mjs +43 -0
- package/dist/src/components/rating/composables/useStar.mjs +8 -0
- package/dist/src/components/rating/styles/CdrRating.module.scss.mjs +44 -28
- package/dist/src/components/select/styles/CdrSelect.module.scss.mjs +42 -42
- 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/styles/CdrSwitch.module.scss.mjs +10 -10
- package/dist/src/components/table/styles/CdrTable.module.scss.mjs +13 -13
- package/dist/src/components/tabs/CdrTabs.vue2.mjs +12 -12
- package/dist/src/components/tabs/styles/CdrTabPanel.module.scss.mjs +5 -5
- package/dist/src/components/tabs/styles/CdrTabs.module.scss.mjs +30 -30
- package/dist/src/components/text/styles/CdrText.module.scss.mjs +1 -1
- package/dist/src/components/toast/styles/CdrToast.module.scss.mjs +57 -57
- package/dist/src/components/toggleButton/styles/CdrToggleButton.module.scss.mjs +2 -2
- package/dist/src/components/toggleButton/styles/CdrToggleGroup.module.scss.mjs +7 -7
- package/dist/src/components/tooltip/styles/CdrTooltip.module.scss.mjs +16 -16
- package/dist/src/mixins/breakpoints.mjs +2 -2
- 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 +3 -3
- /package/dist/node_modules/@rei/cdr-tokens/dist/{js → rei-dot-com/js}/cdr-tokens.mjs +0 -0
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"CdrAccordion": {
|
|
3
|
+
"name": "CdrAccordion",
|
|
4
|
+
"description": "Vertically-stacked list that allows users to expand and collapse additional content",
|
|
5
|
+
"tags": {},
|
|
3
6
|
"exportName": "default",
|
|
4
7
|
"displayName": "CdrAccordion",
|
|
5
|
-
"description": "",
|
|
6
|
-
"tags": {},
|
|
7
8
|
"props": [
|
|
8
9
|
{
|
|
9
10
|
"name": "id",
|
|
@@ -123,49 +124,51 @@
|
|
|
123
124
|
],
|
|
124
125
|
"sourceFiles": [
|
|
125
126
|
"./src/components/accordion/CdrAccordion.vue"
|
|
126
|
-
]
|
|
127
|
-
},
|
|
128
|
-
"CdrAccordionGroup": {
|
|
129
|
-
"exportName": "default",
|
|
130
|
-
"displayName": "CdrAccordionGroup",
|
|
131
|
-
"description": "",
|
|
132
|
-
"tags": {},
|
|
133
|
-
"props": [
|
|
134
|
-
{
|
|
135
|
-
"name": "unwrap",
|
|
136
|
-
"description": "A prop that will present accordion content as unwrapped. All content is expanded at the provided breakpoints.",
|
|
137
|
-
"tags": {},
|
|
138
|
-
"values": [
|
|
139
|
-
"@xs",
|
|
140
|
-
"@sm",
|
|
141
|
-
"@md",
|
|
142
|
-
"@lg",
|
|
143
|
-
"true"
|
|
144
|
-
],
|
|
145
|
-
"type": {
|
|
146
|
-
"name": "string|boolean"
|
|
147
|
-
},
|
|
148
|
-
"defaultValue": {
|
|
149
|
-
"func": false,
|
|
150
|
-
"value": false
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
127
|
],
|
|
154
|
-
"
|
|
128
|
+
"UIProperties": [
|
|
155
129
|
{
|
|
156
|
-
"name": "
|
|
157
|
-
"
|
|
130
|
+
"name": "--cdr-accordion-border-color",
|
|
131
|
+
"defaultValue": "--cdr-color-border-primary",
|
|
132
|
+
"description": "Border color of cdr-accordion"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "--cdr-accordion-button-background-color",
|
|
136
|
+
"defaultValue": "transparent",
|
|
137
|
+
"description": "Background color of a cdr-accordion header button"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"name": "--cdr-accordion-button-color",
|
|
141
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
142
|
+
"description": "Text color of a cdr-accordion header button"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "--cdr-accordion-button-background-color-hover",
|
|
146
|
+
"defaultValue": "--cdr-color-background-accordion-hover",
|
|
147
|
+
"description": "Background color of a cdr-accordion header button on focus and hover"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "--cdr-accordion-icon-fill",
|
|
151
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
152
|
+
"description": "Fill color of icons on a cdr-accordion. This is used for the caret which changes orientation when the accordion collapses and expands"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "--cdr-accordion-content-background-color",
|
|
156
|
+
"defaultValue": "transparent",
|
|
157
|
+
"description": "Background color of cdr-accordion content"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "--cdr-accordion-content-text-color",
|
|
161
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
162
|
+
"description": "Text color of cdr-accordion content"
|
|
158
163
|
}
|
|
159
|
-
],
|
|
160
|
-
"sourceFiles": [
|
|
161
|
-
"./src/components/accordion/CdrAccordionGroup.vue"
|
|
162
164
|
]
|
|
163
165
|
},
|
|
164
166
|
"CdrBanner": {
|
|
167
|
+
"name": "CdrBanner",
|
|
168
|
+
"description": "Provides contextual feedback messages for typical user actions",
|
|
169
|
+
"tags": {},
|
|
165
170
|
"exportName": "default",
|
|
166
171
|
"displayName": "CdrBanner",
|
|
167
|
-
"description": "",
|
|
168
|
-
"tags": {},
|
|
169
172
|
"props": [
|
|
170
173
|
{
|
|
171
174
|
"name": "type",
|
|
@@ -218,13 +221,193 @@
|
|
|
218
221
|
],
|
|
219
222
|
"sourceFiles": [
|
|
220
223
|
"./src/components/banner/CdrBanner.vue"
|
|
224
|
+
],
|
|
225
|
+
"UIProperties": [
|
|
226
|
+
{
|
|
227
|
+
"name": "--cdr-banner-message-body-background-color",
|
|
228
|
+
"defaultValue": "--cdr-color-background-primary",
|
|
229
|
+
"description": "Message body background color"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "--cdr-banner-icon-right-fill",
|
|
233
|
+
"defaultValue": "--cdr-color-text-emphasis",
|
|
234
|
+
"description": "Right icon fill color"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "--cdr-banner-info-action-fill",
|
|
238
|
+
"defaultValue": "--cdr-color-text-link-rest",
|
|
239
|
+
"description": "Info action icon fill color"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "--cdr-banner-default-icon-left-background-color",
|
|
243
|
+
"defaultValue": "--cdr-color-background-message-default-02",
|
|
244
|
+
"description": "Left icon background color for default banner"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "--cdr-banner-default-icon-left-fill",
|
|
248
|
+
"defaultValue": "--cdr-color-icon-message-default",
|
|
249
|
+
"description": "Left icon fill color for default banner"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"name": "--cdr-banner-default-wrapper-border-left-color",
|
|
253
|
+
"defaultValue": "--cdr-color-border-message-default-01",
|
|
254
|
+
"description": "Wrapper border left color for default banner"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"name": "--cdr-banner-info-icon-left-background-color",
|
|
258
|
+
"defaultValue": "--cdr-color-background-message-info-02",
|
|
259
|
+
"description": "Left icon background color for info banner"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"name": "--cdr-banner-info-icon-left-fill",
|
|
263
|
+
"defaultValue": "--cdr-color-icon-message-info",
|
|
264
|
+
"description": "Left icon fill color for info banner"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"name": "--cdr-banner-info-wrapper-border-left-color",
|
|
268
|
+
"defaultValue": "--cdr-color-border-message-info-01",
|
|
269
|
+
"description": "Wrapper border left color for info banner"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"name": "--cdr-banner-warning-icon-left-background-color",
|
|
273
|
+
"defaultValue": "--cdr-color-background-message-warning-02",
|
|
274
|
+
"description": "Left icon background color for warning banner"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "--cdr-banner-warning-icon-left-fill",
|
|
278
|
+
"defaultValue": "--cdr-color-icon-message-warning",
|
|
279
|
+
"description": "Left icon fill color for warning banner"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "--cdr-banner-warning-wrapper-border-left-color",
|
|
283
|
+
"defaultValue": "--cdr-color-border-message-warning-01",
|
|
284
|
+
"description": "Wrapper border left color for warning banner"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "--cdr-banner-success-icon-left-background-color",
|
|
288
|
+
"defaultValue": "--cdr-color-background-message-success-02",
|
|
289
|
+
"description": "Left icon background color for success banner"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "--cdr-banner-success-icon-left-fill",
|
|
293
|
+
"defaultValue": "--cdr-color-icon-message-success",
|
|
294
|
+
"description": "Left icon fill color for success banner"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"name": "--cdr-banner-success-wrapper-border-left-color",
|
|
298
|
+
"defaultValue": "--cdr-color-border-message-success-01",
|
|
299
|
+
"description": "Wrapper border left color for success banner"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"name": "--cdr-banner-error-icon-left-background-color",
|
|
303
|
+
"defaultValue": "--cdr-color-background-message-error-02",
|
|
304
|
+
"description": "Left icon background color for error banner"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"name": "--cdr-banner-error-icon-left-fill",
|
|
308
|
+
"defaultValue": "--cdr-color-icon-message-error",
|
|
309
|
+
"description": "Left icon fill color for error banner"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "--cdr-banner-error-wrapper-border-left-color",
|
|
313
|
+
"defaultValue": "--cdr-color-border-message-error-01",
|
|
314
|
+
"description": "Wrapper border left color for error banner"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "--cdr-banner-default-background-color",
|
|
318
|
+
"defaultValue": "--cdr-color-background-message-default-01",
|
|
319
|
+
"description": "Background color for a default cdr-banner"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"name": "--cdr-banner-default-outline-color",
|
|
323
|
+
"defaultValue": "--cdr-color-border-message-default-02",
|
|
324
|
+
"description": "Outline color for a default cdr-banner"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "--cdr-banner-info-background-color",
|
|
328
|
+
"defaultValue": "--cdr-color-background-message-info-01",
|
|
329
|
+
"description": "Background color for an info cdr-banner"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "--cdr-banner-info-outline-color",
|
|
333
|
+
"defaultValue": "--cdr-color-border-message-info-02",
|
|
334
|
+
"description": "Outline color for an info cdr-banner"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"name": "--cdr-banner-success-background-color",
|
|
338
|
+
"defaultValue": "--cdr-color-background-message-success-01",
|
|
339
|
+
"description": "Background color for a success cdr-banner"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"name": "--cdr-banner-success-outline-color",
|
|
343
|
+
"defaultValue": "--cdr-color-border-message-success-02",
|
|
344
|
+
"description": "Outline color for a success cdr-banner"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "--cdr-banner-warning-background-color",
|
|
348
|
+
"defaultValue": "--cdr-color-background-message-warning-01",
|
|
349
|
+
"description": "Background color for a warning cdr-banner"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"name": "--cdr-banner-warning-outline-color",
|
|
353
|
+
"defaultValue": "--cdr-color-border-message-warning-02",
|
|
354
|
+
"description": "Outline color for a warning cdr-banner"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "--cdr-banner-error-background-color",
|
|
358
|
+
"defaultValue": "--cdr-color-background-message-error-01",
|
|
359
|
+
"description": "Background color for an error cdr-banner"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "--cdr-banner-error-outline-color",
|
|
363
|
+
"defaultValue": "--cdr-color-border-message-error-02",
|
|
364
|
+
"description": "Outline color for an error cdr-banner"
|
|
365
|
+
}
|
|
221
366
|
]
|
|
222
367
|
},
|
|
223
|
-
"
|
|
368
|
+
"CdrAccordionGroup": {
|
|
369
|
+
"name": "CdrAccordionGroup",
|
|
224
370
|
"exportName": "default",
|
|
225
|
-
"displayName": "
|
|
371
|
+
"displayName": "CdrAccordionGroup",
|
|
226
372
|
"description": "",
|
|
227
373
|
"tags": {},
|
|
374
|
+
"props": [
|
|
375
|
+
{
|
|
376
|
+
"name": "unwrap",
|
|
377
|
+
"description": "A prop that will present accordion content as unwrapped. All content is expanded at the provided breakpoints.",
|
|
378
|
+
"tags": {},
|
|
379
|
+
"values": [
|
|
380
|
+
"@xs",
|
|
381
|
+
"@sm",
|
|
382
|
+
"@md",
|
|
383
|
+
"@lg",
|
|
384
|
+
"true"
|
|
385
|
+
],
|
|
386
|
+
"type": {
|
|
387
|
+
"name": "string|boolean"
|
|
388
|
+
},
|
|
389
|
+
"defaultValue": {
|
|
390
|
+
"func": false,
|
|
391
|
+
"value": false
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
],
|
|
395
|
+
"slots": [
|
|
396
|
+
{
|
|
397
|
+
"name": "default",
|
|
398
|
+
"description": "CdrAccordionGroup content (i.e. CdrAccordion components)"
|
|
399
|
+
}
|
|
400
|
+
],
|
|
401
|
+
"sourceFiles": [
|
|
402
|
+
"./src/components/accordion/CdrAccordionGroup.vue"
|
|
403
|
+
]
|
|
404
|
+
},
|
|
405
|
+
"CdrButton": {
|
|
406
|
+
"name": "CdrButton",
|
|
407
|
+
"description": "Initiates an action, such as completing a task or submitting information",
|
|
408
|
+
"tags": {},
|
|
409
|
+
"exportName": "default",
|
|
410
|
+
"displayName": "CdrButton",
|
|
228
411
|
"props": [
|
|
229
412
|
{
|
|
230
413
|
"name": "tag",
|
|
@@ -377,121 +560,623 @@
|
|
|
377
560
|
],
|
|
378
561
|
"sourceFiles": [
|
|
379
562
|
"./src/components/button/CdrButton.vue"
|
|
380
|
-
]
|
|
381
|
-
|
|
382
|
-
"CdrCaption": {
|
|
383
|
-
"exportName": "default",
|
|
384
|
-
"displayName": "CdrCaption",
|
|
385
|
-
"description": "",
|
|
386
|
-
"tags": {},
|
|
387
|
-
"props": [
|
|
563
|
+
],
|
|
564
|
+
"UIProperties": [
|
|
388
565
|
{
|
|
389
|
-
"name": "
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
"demoIgnore": [
|
|
393
|
-
{
|
|
394
|
-
"description": "true",
|
|
395
|
-
"title": "demoIgnore"
|
|
396
|
-
}
|
|
397
|
-
]
|
|
398
|
-
},
|
|
399
|
-
"type": {
|
|
400
|
-
"name": "string"
|
|
401
|
-
}
|
|
566
|
+
"name": "--cdr-button-primary-background-color-rest",
|
|
567
|
+
"defaultValue": "--cdr-color-background-button-primary-rest",
|
|
568
|
+
"description": "Primary button's background color"
|
|
402
569
|
},
|
|
403
570
|
{
|
|
404
|
-
"name": "
|
|
405
|
-
"
|
|
406
|
-
"
|
|
407
|
-
|
|
408
|
-
{
|
|
409
|
-
"description": "true",
|
|
410
|
-
"title": "demoIgnore"
|
|
411
|
-
}
|
|
412
|
-
]
|
|
413
|
-
},
|
|
414
|
-
"type": {
|
|
415
|
-
"name": "string"
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
],
|
|
419
|
-
"sourceFiles": [
|
|
420
|
-
"./src/components/caption/CdrCaption.vue"
|
|
421
|
-
]
|
|
422
|
-
},
|
|
423
|
-
"CdrBreadcrumb": {
|
|
424
|
-
"exportName": "default",
|
|
425
|
-
"displayName": "CdrBreadcrumb",
|
|
426
|
-
"description": "",
|
|
427
|
-
"tags": {},
|
|
428
|
-
"props": [
|
|
571
|
+
"name": "--cdr-button-primary-box-shadow-color-rest",
|
|
572
|
+
"defaultValue": "--cdr-color-border-button-primary-rest",
|
|
573
|
+
"description": "Primary button's box shadow which serves as a border"
|
|
574
|
+
},
|
|
429
575
|
{
|
|
430
|
-
"name": "
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
"demoIgnore": [
|
|
434
|
-
{
|
|
435
|
-
"description": "true",
|
|
436
|
-
"title": "demoIgnore"
|
|
437
|
-
}
|
|
438
|
-
]
|
|
439
|
-
},
|
|
440
|
-
"type": {
|
|
441
|
-
"name": "breadcrumbItem[]"
|
|
442
|
-
},
|
|
443
|
-
"defaultValue": {
|
|
444
|
-
"func": true,
|
|
445
|
-
"value": "() => []"
|
|
446
|
-
}
|
|
576
|
+
"name": "--cdr-button-primary-text-color",
|
|
577
|
+
"defaultValue": "--cdr-color-text-button-primary",
|
|
578
|
+
"description": "Primary button's text color"
|
|
447
579
|
},
|
|
448
580
|
{
|
|
449
|
-
"name": "
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"name": "boolean"
|
|
453
|
-
},
|
|
454
|
-
"defaultValue": {
|
|
455
|
-
"func": false,
|
|
456
|
-
"value": true
|
|
457
|
-
}
|
|
581
|
+
"name": "--cdr-button-primary-fill-color",
|
|
582
|
+
"defaultValue": "--cdr-color-text-button-primary",
|
|
583
|
+
"description": "Primary button's fill color"
|
|
458
584
|
},
|
|
459
585
|
{
|
|
460
|
-
"name": "
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
|
|
464
|
-
{
|
|
465
|
-
"description": "true",
|
|
466
|
-
"title": "demoIgnore"
|
|
467
|
-
}
|
|
468
|
-
]
|
|
469
|
-
},
|
|
470
|
-
"type": {
|
|
471
|
-
"name": "string"
|
|
472
|
-
}
|
|
473
|
-
}
|
|
474
|
-
],
|
|
475
|
-
"events": [
|
|
586
|
+
"name": "--cdr-button-primary-text-color-interaction",
|
|
587
|
+
"defaultValue": "--cdr-color-text-button-primary-hover",
|
|
588
|
+
"description": "Primary button's text color when hovered or focused"
|
|
589
|
+
},
|
|
476
590
|
{
|
|
477
|
-
"name": "
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
591
|
+
"name": "--cdr-button-primary-fill-color-interaction",
|
|
592
|
+
"defaultValue": "--cdr-color-text-button-primary-hover",
|
|
593
|
+
"description": "Primary button's fill color when hovered or focused"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"name": "--cdr-button-primary-background-color-interaction",
|
|
597
|
+
"defaultValue": "--cdr-color-background-button-primary-hover",
|
|
598
|
+
"description": "Primary button's background color when hovered or focused"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"name": "--cdr-button-primary-box-shadow-color-interaction",
|
|
602
|
+
"defaultValue": "--cdr-color-border-button-primary-hover",
|
|
603
|
+
"description": "Primary button's box shadow when hovered or focused"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"name": "--cdr-button-primary-text-color-active",
|
|
607
|
+
"defaultValue": "--cdr-color-text-button-primary-active",
|
|
608
|
+
"description": "Primary button's text color when active"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"name": "--cdr-button-primary-fill-color-active",
|
|
612
|
+
"defaultValue": "--cdr-color-text-button-primary-active",
|
|
613
|
+
"description": "Primary button's fill color when active"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"name": "--cdr-button-primary-background-color-active",
|
|
617
|
+
"defaultValue": "--cdr-color-background-button-primary-active",
|
|
618
|
+
"description": "Primary button's background color when active"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"name": "--cdr-button-primary-box-shadow-color-active",
|
|
622
|
+
"defaultValue": "--cdr-color-border-button-primary-active",
|
|
623
|
+
"description": "Primary button's box shadow when active."
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"name": "--cdr-button-primary-box-shadow-color-active-inset",
|
|
627
|
+
"defaultValue": "--cdr-color-border-button-primary-active-inset",
|
|
628
|
+
"description": "Primary button's inset box shadow when active"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"name": "--cdr-button-primary-background-color-disabled",
|
|
632
|
+
"defaultValue": "--cdr-color-background-button-default-disabled",
|
|
633
|
+
"description": "Primary button's background color when disabled"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "--cdr-button-primary-box-shadow-color-disabled",
|
|
637
|
+
"defaultValue": "--cdr-color-border-button-default-disabled",
|
|
638
|
+
"description": "Primary button's border color when disabled"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"name": "--cdr-button-primary-text-color-disabled",
|
|
642
|
+
"defaultValue": "--cdr-color-text-button-primary-disabled",
|
|
643
|
+
"description": "Primary button's text color when disabled"
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"name": "--cdr-button-primary-fill-color-disabled",
|
|
647
|
+
"defaultValue": "--cdr-color-text-button-primary-disabled",
|
|
648
|
+
"description": "Primary button's fill color when disabled"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "--cdr-button-secondary-background-color-rest",
|
|
652
|
+
"defaultValue": "--cdr-color-background-button-secondary-rest",
|
|
653
|
+
"description": "Secondary button's background color"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"name": "--cdr-button-secondary-box-shadow-color-rest",
|
|
657
|
+
"defaultValue": "--cdr-color-border-button-secondary-rest",
|
|
658
|
+
"description": "Secondary button's box shadow which serves as a border"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"name": "--cdr-button-secondary-text-color",
|
|
662
|
+
"defaultValue": "--cdr-color-text-button-secondary",
|
|
663
|
+
"description": "Secondary button's text color"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"name": "--cdr-button-secondary-fill-color",
|
|
667
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
668
|
+
"description": "Secondary button's fill color"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "--cdr-button-secondary-text-color-interaction",
|
|
672
|
+
"defaultValue": "--cdr-color-text-button-secondary-hover",
|
|
673
|
+
"description": "Secondary button's text color when hovered or focused"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"name": "--cdr-button-secondary-fill-color-interaction",
|
|
677
|
+
"defaultValue": "--cdr-color-text-button-secondary-hover",
|
|
678
|
+
"description": "Secondary button's fill color when hovered or focused"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"name": "--cdr-button-secondary-background-color-interaction",
|
|
682
|
+
"defaultValue": "--cdr-color-background-button-secondary-hover",
|
|
683
|
+
"description": "Secondary button's background color when hovered or focused"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"name": "--cdr-button-secondary-box-shadow-color-interaction",
|
|
687
|
+
"defaultValue": "--cdr-color-border-button-secondary-hover",
|
|
688
|
+
"description": "Secondary button's box shadow when hovered or focused"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"name": "--cdr-button-secondary-text-color-active",
|
|
692
|
+
"defaultValue": "--cdr-color-text-button-secondary-active",
|
|
693
|
+
"description": "Secondary button's text color when active"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"name": "--cdr-button-secondary-fill-color-active",
|
|
697
|
+
"defaultValue": "--cdr-color-text-button-secondary-active",
|
|
698
|
+
"description": "Secondary button's fill color when active"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"name": "--cdr-button-secondary-background-color-active",
|
|
702
|
+
"defaultValue": "--cdr-color-background-button-secondary-active",
|
|
703
|
+
"description": "Secondary button's background color when active"
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"name": "--cdr-button-secondary-box-shadow-color-active",
|
|
707
|
+
"defaultValue": "--cdr-color-border-button-secondary-active",
|
|
708
|
+
"description": "Secondary button's box shadow when active."
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "--cdr-button-secondary-border-color-active-inset",
|
|
712
|
+
"defaultValue": "--cdr-color-border-button-secondary-active-inset",
|
|
713
|
+
"description": "Secondary button's inset box shadow when active"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"name": "--cdr-button-secondary-background-color-disabled",
|
|
717
|
+
"defaultValue": "--cdr-color-background-button-secondary-disabled",
|
|
718
|
+
"description": "Secondary button's background color when disabled"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"name": "--cdr-button-secondary-box-shadow-color-disabled",
|
|
722
|
+
"defaultValue": "--cdr-color-border-button-default-disabled",
|
|
723
|
+
"description": "Secondary button's box shadow color when disabled. The box shadow serves as a border"
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"name": "--cdr-button-secondary-text-color-disabled",
|
|
727
|
+
"defaultValue": "--cdr-color-text-button-secondary-disabled",
|
|
728
|
+
"description": "Secondary button's text color when disabled"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"name": "--cdr-button-secondary-fill-color-disabled",
|
|
732
|
+
"defaultValue": "--cdr-color-text-button-secondary-disabled",
|
|
733
|
+
"description": "Secondary button's fill color when disabled"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "--cdr-button-dark-background-color-rest",
|
|
737
|
+
"defaultValue": "--cdr-color-background-button-dark-rest",
|
|
738
|
+
"description": "Dark button's background color"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"name": "--cdr-button-dark-box-shadow-color-rest",
|
|
742
|
+
"defaultValue": "--cdr-color-border-button-dark-rest",
|
|
743
|
+
"description": "Dark button's box shadow which serves as a border"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"name": "--cdr-button-dark-text-color",
|
|
747
|
+
"defaultValue": "--cdr-color-text-button-dark",
|
|
748
|
+
"description": "Dark button's text color"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"name": "--cdr-button-dark-fill-color",
|
|
752
|
+
"defaultValue": "--cdr-color-text-button-dark",
|
|
753
|
+
"description": "Dark button's fill color"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"name": "--cdr-button-dark-text-color-interaction",
|
|
757
|
+
"defaultValue": "--cdr-color-text-button-dark-hover",
|
|
758
|
+
"description": "Dark button's text color when hovered or focused"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"name": "--cdr-button-dark-fill-color-interaction",
|
|
762
|
+
"defaultValue": "--cdr-color-text-button-dark-hover",
|
|
763
|
+
"description": "Dark button's fill color when hovered or focused"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"name": "--cdr-button-dark-background-color-interaction",
|
|
767
|
+
"defaultValue": "--cdr-color-background-button-dark-hover",
|
|
768
|
+
"description": "Dark button's background color when hovered or focused"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"name": "--cdr-button-dark-box-shadow-color-interaction",
|
|
772
|
+
"defaultValue": "--cdr-color-border-button-dark-hover",
|
|
773
|
+
"description": "Dark button's box shadow when hovered or focused"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"name": "--cdr-button-dark-text-color-active",
|
|
777
|
+
"defaultValue": "--cdr-color-text-button-dark-active",
|
|
778
|
+
"description": "Dark button's text color when active"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"name": "--cdr-button-dark-fill-color-active",
|
|
782
|
+
"defaultValue": "--cdr-color-text-button-dark-active",
|
|
783
|
+
"description": "Dark button's fill color when active"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"name": "--cdr-button-dark-background-color-active",
|
|
787
|
+
"defaultValue": "--cdr-color-background-button-dark-active",
|
|
788
|
+
"description": "Dark button's background color when active"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"name": "--cdr-button-dark-box-shadow-color-active",
|
|
792
|
+
"defaultValue": "--cdr-color-border-button-dark-active",
|
|
793
|
+
"description": "Dark button's box shadow when active. The box shadow serves as a border."
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"name": "--cdr-button-dark-box-shadow-color-active-inset",
|
|
797
|
+
"defaultValue": "--cdr-color-border-button-dark-active-inset",
|
|
798
|
+
"description": "Dark button's inset box shadow when active. The box shadow serves as a border"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"name": "--cdr-button-dark-background-color-disabled",
|
|
802
|
+
"defaultValue": "--cdr-color-background-button-default-disabled",
|
|
803
|
+
"description": "Dark button's background color when disabled"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"name": "--cdr-button-dark-box-shadow-color-disabled",
|
|
807
|
+
"defaultValue": "--cdr-color-border-button-default-disabled",
|
|
808
|
+
"description": "Dark button's box shadow color when disabled. The box shadow serves as a border"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"name": "--cdr-button-dark-text-color-disabled",
|
|
812
|
+
"defaultValue": "--cdr-color-text-button-dark-disabled",
|
|
813
|
+
"description": "Dark button's text color when disabled"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"name": "--cdr-button-dark-fill-color-disabled",
|
|
817
|
+
"defaultValue": "--cdr-color-text-button-dark-disabled",
|
|
818
|
+
"description": "Dark button's fill color when disabled"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"name": "--cdr-button-sale-background-color-rest",
|
|
822
|
+
"defaultValue": "--cdr-color-background-button-sale-rest",
|
|
823
|
+
"description": "Sale button's background color"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"name": "--cdr-button-sale-box-shadow-color-rest",
|
|
827
|
+
"defaultValue": "--cdr-color-border-button-sale-rest",
|
|
828
|
+
"description": "Sale button's box shadow which serves as a border"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"name": "--cdr-button-sale-text-color",
|
|
832
|
+
"defaultValue": "--cdr-color-text-button-sale",
|
|
833
|
+
"description": "Sale button's text color"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"name": "--cdr-button-sale-fill-color",
|
|
837
|
+
"defaultValue": "--cdr-color-text-button-sale",
|
|
838
|
+
"description": "Sale button's fill color"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"name": "--cdr-button-sale-text-color-interaction",
|
|
842
|
+
"defaultValue": "--cdr-color-text-button-sale-hover",
|
|
843
|
+
"description": "Sale button's text color when hovered or focused"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"name": "--cdr-button-sale-fill-color-interaction",
|
|
847
|
+
"defaultValue": "--cdr-color-text-button-sale-hover",
|
|
848
|
+
"description": "Sale button's fill color when hovered or focused"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"name": "--cdr-button-sale-background-color-interaction",
|
|
852
|
+
"defaultValue": "--cdr-color-background-button-sale-hover",
|
|
853
|
+
"description": "Sale button's background color when hovered or focused"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"name": "--cdr-button-sale-box-shadow-color-interaction",
|
|
857
|
+
"defaultValue": "--cdr-color-border-button-sale-hover",
|
|
858
|
+
"description": "Sale button's box shadow when hovered or focused. The box shadow serves as a border"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "--cdr-button-sale-text-color-active",
|
|
862
|
+
"defaultValue": "--cdr-color-text-button-sale-active",
|
|
863
|
+
"description": "Sale button's text color when active"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"name": "--cdr-button-sale-fill-color-active",
|
|
867
|
+
"defaultValue": "--cdr-color-text-button-sale-active",
|
|
868
|
+
"description": "Sale button's fill color when active"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"name": "--cdr-button-sale-background-color-active",
|
|
872
|
+
"defaultValue": "--cdr-color-background-button-sale-active",
|
|
873
|
+
"description": "Sale button's background color when active"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"name": "--cdr-button-sale-box-shadow-color-active",
|
|
877
|
+
"defaultValue": "--cdr-color-border-button-sale-active",
|
|
878
|
+
"description": "Sale button's box shadow when active. The box shadow serves as a border."
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "--cdr-button-sale-box-shadow-color-active-inset",
|
|
882
|
+
"defaultValue": "--cdr-color-border-button-sale-active-inset",
|
|
883
|
+
"description": "Sale button's inset box shadow when active. The box shadow serves as a border"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"name": "--cdr-button-sale-background-color-disabled",
|
|
887
|
+
"defaultValue": "--cdr-color-background-button-default-disabled",
|
|
888
|
+
"description": "Sale button's background color when disabled"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"name": "--cdr-button-sale-box-shadow-color-disabled",
|
|
892
|
+
"defaultValue": "--cdr-color-border-button-default-disabled",
|
|
893
|
+
"description": "Sale button's border color when disabled"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"name": "--cdr-button-sale-text-color-disabled",
|
|
897
|
+
"defaultValue": "--cdr-color-text-button-sale-disabled",
|
|
898
|
+
"description": "Sale button's text color when disabled"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "--cdr-button-sale-fill-color-disabled",
|
|
902
|
+
"defaultValue": "--cdr-color-text-button-sale-disabled",
|
|
903
|
+
"description": "Sale button's fill color when disabled"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"name": "--cdr-button-link-text-color",
|
|
907
|
+
"defaultValue": "--cdr-color-text-link-rest",
|
|
908
|
+
"description": "Link variant of cdr-button's text color"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"name": "--cdr-button-link-fill-color",
|
|
912
|
+
"defaultValue": "--cdr-color-text-link-rest",
|
|
913
|
+
"description": "Link variant of cdr-button's fill color"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"name": "--cdr-button-link-text-color-active",
|
|
917
|
+
"defaultValue": "--cdr-color-text-link-active",
|
|
918
|
+
"description": "Link variant of cdr-button's text color when active or focused"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"name": "--cdr-button-link-text-color-hover",
|
|
922
|
+
"defaultValue": "--cdr-color-text-link-hover",
|
|
923
|
+
"description": "Link variant of cdr-button's text color when hovered"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"name": "--cdr-button-link-outline",
|
|
927
|
+
"defaultValue": "--default-outline",
|
|
928
|
+
"description": "Link variant of cdr-button's outline"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"name": "--cdr-button-secondary-box-shadow",
|
|
932
|
+
"defaultValue": "--cdr-color-border-button-secondary-rest",
|
|
933
|
+
"description": "Box shadow color of a secondary elevated cdr-button"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"name": "--cdr-button-secondary-interaction-box-shadow",
|
|
937
|
+
"defaultValue": "--cdr-color-border-button-secondary-hover",
|
|
938
|
+
"description": "Box shadow color of a secondary elevated cdr-button when hovered or focused"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"name": "--cdr-button-secondary-active-box-shadow",
|
|
942
|
+
"defaultValue": "--cdr-color-border-button-secondary-active",
|
|
943
|
+
"description": "Box shadow color of a secondary elevated cdr-button when active."
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"name": "--cdr-button-secondary-active-inset-box-shadow",
|
|
947
|
+
"defaultValue": "--cdr-color-border-button-secondary-active-inset",
|
|
948
|
+
"description": "Inset box shadow color of a secondary elevated cdr-button when active"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"name": "--cdr-button-primary-box-shadow",
|
|
952
|
+
"defaultValue": "--cdr-color-border-button-primary-rest",
|
|
953
|
+
"description": "Box shadow color of a primary elevated cdr-button"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"name": "--cdr-button-primary-hover-focus-box-shadow",
|
|
957
|
+
"defaultValue": "--cdr-color-border-button-primary-hover",
|
|
958
|
+
"description": "Box shadow color of a primary elevated cdr-button when hovered or focused"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"name": "--cdr-button-primary-active-box-shadow",
|
|
962
|
+
"defaultValue": "--cdr-color-border-button-primary-active",
|
|
963
|
+
"description": "Box shadow color of a primary elevated cdr-button when active."
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"name": "--cdr-button-primary-active-inset-box-shadow",
|
|
967
|
+
"defaultValue": "--cdr-color-border-button-primary-active-inset",
|
|
968
|
+
"description": "Inset box shadow color of a primary elevated cdr-button when active"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"name": "--cdr-button-dark-box-shadow-rest",
|
|
972
|
+
"defaultValue": "--cdr-color-border-button-dark-rest",
|
|
973
|
+
"description": "Box shadow color of a dark elevated cdr-button"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"name": "--cdr-button-dark-box-shadow-interaction",
|
|
977
|
+
"defaultValue": "--cdr-color-border-button-dark-hover",
|
|
978
|
+
"description": "Box shadow color of a dark elevated cdr-button when hovered or focused"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"name": "--cdr-button-dark-box-shadow-active",
|
|
982
|
+
"defaultValue": "--cdr-color-border-button-dark-active",
|
|
983
|
+
"description": "Box shadow color of a dark elevated cdr-button when active."
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"name": "--cdr-button-dark-active-inset-box-shadow",
|
|
987
|
+
"defaultValue": "--cdr-color-border-button-dark-active-inset",
|
|
988
|
+
"description": "Inset box shadow color of a dark elevated cdr-button when active"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"name": "--cdr-button-sale-box-shadow-rest",
|
|
992
|
+
"defaultValue": "--cdr-color-border-button-sale-rest",
|
|
993
|
+
"description": "Box shadow color of a sale elevated cdr-button"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"name": "--cdr-button-sale-box-shadow-interaction",
|
|
997
|
+
"defaultValue": "--cdr-color-border-button-sale-hover",
|
|
998
|
+
"description": "Box shadow color of a sale elevated cdr-button when hovered or focused"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"name": "--cdr-button-sale-box-shadow-active",
|
|
1002
|
+
"defaultValue": "--cdr-color-border-button-sale-active",
|
|
1003
|
+
"description": "Box shadow color of a sale elevated cdr-button when active."
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"name": "--cdr-button-sale-active-inset-box-shadow",
|
|
1007
|
+
"defaultValue": "--cdr-color-border-button-sale-active-inset",
|
|
1008
|
+
"description": "Inset box shadow color of a sale elevated cdr-button when active"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"name": "--cdr-button-icon-only-icon-fill",
|
|
1012
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
1013
|
+
"description": "Fill color of an icon-only cdr-button"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"name": "--cdr-button-icon-only-icon-fill-hover",
|
|
1017
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
1018
|
+
"description": "Fill color of an icon-only cdr-button when hovered"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"name": "--cdr-button-icon-only-icon-fill-active",
|
|
1022
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
1023
|
+
"description": "Fill color of an icon-only cdr-button when active or focused"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"name": "--cdr-button-icon-only-icon-svg-box-shadow",
|
|
1027
|
+
"defaultValue": "--cdr-color-border-button-secondary-active",
|
|
1028
|
+
"description": "Box shadow of the svg in an icon-only cdr-button when active or focused"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"name": "--cdr-button-icon-only-disabled-icon-fill",
|
|
1032
|
+
"defaultValue": "--cdr-color-icon-disabled",
|
|
1033
|
+
"description": "Fill color of a disabled icon-only cdr-button"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"name": "--cdr-button-with-background-icon-fill",
|
|
1037
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
1038
|
+
"description": "Fill color of a cdr-button with background"
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"name": "--cdr-button-with-background-background-color",
|
|
1042
|
+
"defaultValue": "--cdr-color-background-button-secondary-rest",
|
|
1043
|
+
"description": "Background color of a cdr-button with background"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"name": "--cdr-button-with-background-box-shadow",
|
|
1047
|
+
"defaultValue": "--cdr-color-border-button-secondary-rest",
|
|
1048
|
+
"description": "Box shadow color of a cdr-button with background"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"name": "--cdr-button-with-background-icon-fill-interaction",
|
|
1052
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
1053
|
+
"description": "Fill color of a cdr-button with background during interaction"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"name": "--cdr-button-with-background-background-color-interaction",
|
|
1057
|
+
"defaultValue": "--cdr-color-background-button-secondary-hover",
|
|
1058
|
+
"description": "Background color of a cdr-button with background during interaction"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"name": "--cdr-button-with-background-box-shadow-interaction",
|
|
1062
|
+
"defaultValue": "--cdr-color-border-button-secondary-hover",
|
|
1063
|
+
"description": "Box shadow color of a cdr-button with background during interaction"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"name": "--cdr-button-with-background-color-active",
|
|
1067
|
+
"defaultValue": "--cdr-color-text-button-secondary-active",
|
|
1068
|
+
"description": "Text color of an active cdr-button with background"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"name": "--cdr-button-with-background-fill-active",
|
|
1072
|
+
"defaultValue": "--cdr-color-text-button-secondary-active",
|
|
1073
|
+
"description": "Fill color of an active cdr-button with background"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"name": "--cdr-button-with-background-background-color-active",
|
|
1077
|
+
"defaultValue": "--cdr-color-background-button-secondary-active",
|
|
1078
|
+
"description": "Background color of an active cdr-button with background"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"name": "--cdr-button-with-background-box-shadow-active",
|
|
1082
|
+
"defaultValue": "--cdr-color-border-button-secondary-active",
|
|
1083
|
+
"description": "Box shadow color of an active cdr-button with background"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"name": "--cdr-button-with-background-box-shadow-inset-active",
|
|
1087
|
+
"defaultValue": "--cdr-color-border-button-secondary-active-inset",
|
|
1088
|
+
"description": null
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"name": "--cdr-button-with-background-background-color-disabled",
|
|
1092
|
+
"defaultValue": "--cdr-color-background-button-secondary-disabled",
|
|
1093
|
+
"description": "Background color of a disabled cdr-button with background"
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"name": "--cdr-button-with-background-box-shadow-disabled",
|
|
1097
|
+
"defaultValue": "--cdr-color-border-button-default-disabled",
|
|
1098
|
+
"description": "Box shadow color of a disabled cdr-button with background"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "--cdr-button-with-background-fill-disabled",
|
|
1102
|
+
"defaultValue": "--cdr-color-text-button-secondary-disabled",
|
|
1103
|
+
"description": "Fill color of a disabled cdr-button with background"
|
|
1104
|
+
}
|
|
1105
|
+
]
|
|
1106
|
+
},
|
|
1107
|
+
"CdrBreadcrumb": {
|
|
1108
|
+
"name": "CdrBreadcrumb",
|
|
1109
|
+
"description": "Navigation used to reveal a page's location within the site hierarchy",
|
|
1110
|
+
"tags": {},
|
|
1111
|
+
"exportName": "default",
|
|
1112
|
+
"displayName": "CdrBreadcrumb",
|
|
1113
|
+
"props": [
|
|
1114
|
+
{
|
|
1115
|
+
"name": "items",
|
|
1116
|
+
"description": "Sets the array of a breadcrumb object containing a 'url' and 'name' property.",
|
|
1117
|
+
"tags": {
|
|
1118
|
+
"demoIgnore": [
|
|
1119
|
+
{
|
|
1120
|
+
"description": "true",
|
|
1121
|
+
"title": "demoIgnore"
|
|
1122
|
+
}
|
|
1123
|
+
]
|
|
1124
|
+
},
|
|
1125
|
+
"type": {
|
|
1126
|
+
"name": "breadcrumbItem[]"
|
|
1127
|
+
},
|
|
1128
|
+
"defaultValue": {
|
|
1129
|
+
"func": true,
|
|
1130
|
+
"value": "() => []"
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"name": "truncationEnabled",
|
|
1135
|
+
"description": "Controls the ability to truncate the entire breadcrumb path. If this value is false, truncation will no longer occur.",
|
|
1136
|
+
"type": {
|
|
1137
|
+
"name": "boolean"
|
|
1138
|
+
},
|
|
1139
|
+
"defaultValue": {
|
|
1140
|
+
"func": false,
|
|
1141
|
+
"value": true
|
|
1142
|
+
}
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"name": "id",
|
|
1146
|
+
"description": "Define a custom ID for the `<nav>` element. Randomly generated if no ID provided.",
|
|
1147
|
+
"tags": {
|
|
1148
|
+
"demoIgnore": [
|
|
1149
|
+
{
|
|
1150
|
+
"description": "true",
|
|
1151
|
+
"title": "demoIgnore"
|
|
1152
|
+
}
|
|
1153
|
+
]
|
|
1154
|
+
},
|
|
1155
|
+
"type": {
|
|
1156
|
+
"name": "string"
|
|
1157
|
+
}
|
|
1158
|
+
}
|
|
1159
|
+
],
|
|
1160
|
+
"events": [
|
|
1161
|
+
{
|
|
1162
|
+
"name": "navigate",
|
|
1163
|
+
"description": "Emits when a breadcrumb item is clicked. `e.preventDefault()` may be used to override the default link navigation.",
|
|
1164
|
+
"properties": [
|
|
1165
|
+
{
|
|
1166
|
+
"type": {
|
|
1167
|
+
"names": [
|
|
1168
|
+
"mixed"
|
|
1169
|
+
]
|
|
1170
|
+
},
|
|
1171
|
+
"name": "breadcrumb",
|
|
1172
|
+
"description": "The breadcrumb data object"
|
|
1173
|
+
}
|
|
1174
|
+
],
|
|
1175
|
+
"tags": [
|
|
1176
|
+
{
|
|
1177
|
+
"title": "param",
|
|
1178
|
+
"type": {
|
|
1179
|
+
"name": "mixed"
|
|
495
1180
|
},
|
|
496
1181
|
"name": "breadcrumb",
|
|
497
1182
|
"description": "The breadcrumb data object"
|
|
@@ -521,13 +1206,90 @@
|
|
|
521
1206
|
],
|
|
522
1207
|
"sourceFiles": [
|
|
523
1208
|
"./src/components/breadcrumb/CdrBreadcrumb.vue"
|
|
1209
|
+
],
|
|
1210
|
+
"UIProperties": [
|
|
1211
|
+
{
|
|
1212
|
+
"name": "--cdr-breadcrumb-ellipses-icon-color",
|
|
1213
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
1214
|
+
"description": "Ellipses icon color"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"name": "--cdr-breadcrumb-ellipses-icon-highlight-color",
|
|
1218
|
+
"defaultValue": "--cdr-color-text-link-hover",
|
|
1219
|
+
"description": "Ellipses icon hover, active and focus color"
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"name": "--cdr-breadcrumb-item-color",
|
|
1223
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
1224
|
+
"description": "Breadcrumb item color"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"name": "--cdr-breadcrumb-item-linked-highlight-color",
|
|
1228
|
+
"defaultValue": "--cdr-color-text-link-hover",
|
|
1229
|
+
"description": "Breadcrumb item linked hover, active and focus color"
|
|
1230
|
+
}
|
|
1231
|
+
]
|
|
1232
|
+
},
|
|
1233
|
+
"CdrCaption": {
|
|
1234
|
+
"name": "CdrCaption",
|
|
1235
|
+
"description": "Provides context and credit for an asset such as an image, video, or chart",
|
|
1236
|
+
"tags": {},
|
|
1237
|
+
"exportName": "default",
|
|
1238
|
+
"displayName": "CdrCaption",
|
|
1239
|
+
"props": [
|
|
1240
|
+
{
|
|
1241
|
+
"name": "summary",
|
|
1242
|
+
"description": "Sets the string content for the description body of the caption.",
|
|
1243
|
+
"tags": {
|
|
1244
|
+
"demoIgnore": [
|
|
1245
|
+
{
|
|
1246
|
+
"description": "true",
|
|
1247
|
+
"title": "demoIgnore"
|
|
1248
|
+
}
|
|
1249
|
+
]
|
|
1250
|
+
},
|
|
1251
|
+
"type": {
|
|
1252
|
+
"name": "string"
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"name": "credit",
|
|
1257
|
+
"description": "Sets the string content for attribution.",
|
|
1258
|
+
"tags": {
|
|
1259
|
+
"demoIgnore": [
|
|
1260
|
+
{
|
|
1261
|
+
"description": "true",
|
|
1262
|
+
"title": "demoIgnore"
|
|
1263
|
+
}
|
|
1264
|
+
]
|
|
1265
|
+
},
|
|
1266
|
+
"type": {
|
|
1267
|
+
"name": "string"
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
],
|
|
1271
|
+
"sourceFiles": [
|
|
1272
|
+
"./src/components/caption/CdrCaption.vue"
|
|
1273
|
+
],
|
|
1274
|
+
"UIProperties": [
|
|
1275
|
+
{
|
|
1276
|
+
"name": "--cdr-caption-summary-color",
|
|
1277
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
1278
|
+
"description": "Text color of a cdr-caption"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"name": "--cdr-caption-cite-color",
|
|
1282
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
1283
|
+
"description": "Text color of a cdr-caption"
|
|
1284
|
+
}
|
|
524
1285
|
]
|
|
525
1286
|
},
|
|
526
1287
|
"CdrCard": {
|
|
1288
|
+
"name": "CdrCard",
|
|
1289
|
+
"description": "Related, interactive containers linking to a single subject or destination",
|
|
1290
|
+
"tags": {},
|
|
527
1291
|
"exportName": "default",
|
|
528
1292
|
"displayName": "CdrCard",
|
|
529
|
-
"description": "",
|
|
530
|
-
"tags": {},
|
|
531
1293
|
"props": [
|
|
532
1294
|
{
|
|
533
1295
|
"name": "tag",
|
|
@@ -549,13 +1311,36 @@
|
|
|
549
1311
|
],
|
|
550
1312
|
"sourceFiles": [
|
|
551
1313
|
"./src/components/card/CdrCard.vue"
|
|
1314
|
+
],
|
|
1315
|
+
"UIProperties": [
|
|
1316
|
+
{
|
|
1317
|
+
"name": "--cdr-card-base-background-color",
|
|
1318
|
+
"defaultValue": "--cdr-color-background-primary",
|
|
1319
|
+
"description": "Background color of a cdr-card"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"name": "--cdr-card-base-color",
|
|
1323
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
1324
|
+
"description": "Text color of a cdr-card"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"name": "--cdr-card-link-color",
|
|
1328
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
1329
|
+
"description": "Link text color of a cdr-card"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"name": "--cdr-card-link-hover-color",
|
|
1333
|
+
"defaultValue": "--cdr-color-text-link-hover",
|
|
1334
|
+
"description": "Link hover text color of a cdr-card"
|
|
1335
|
+
}
|
|
552
1336
|
]
|
|
553
1337
|
},
|
|
554
1338
|
"CdrCheckbox": {
|
|
1339
|
+
"name": "CdrCheckbox",
|
|
1340
|
+
"description": "Allows selecting one or more items from a list",
|
|
1341
|
+
"tags": {},
|
|
555
1342
|
"exportName": "default",
|
|
556
1343
|
"displayName": "CdrCheckbox",
|
|
557
|
-
"description": "",
|
|
558
|
-
"tags": {},
|
|
559
1344
|
"props": [
|
|
560
1345
|
{
|
|
561
1346
|
"name": "labelClass",
|
|
@@ -713,38 +1498,234 @@
|
|
|
713
1498
|
],
|
|
714
1499
|
"slots": [
|
|
715
1500
|
{
|
|
716
|
-
"name": "default",
|
|
717
|
-
"description": "Readable text for the label element"
|
|
718
|
-
}
|
|
719
|
-
],
|
|
720
|
-
"sourceFiles": [
|
|
721
|
-
"./src/components/checkbox/CdrCheckbox.vue"
|
|
722
|
-
]
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
1501
|
+
"name": "default",
|
|
1502
|
+
"description": "Readable text for the label element"
|
|
1503
|
+
}
|
|
1504
|
+
],
|
|
1505
|
+
"sourceFiles": [
|
|
1506
|
+
"./src/components/checkbox/CdrCheckbox.vue"
|
|
1507
|
+
],
|
|
1508
|
+
"UIProperties": [
|
|
1509
|
+
{
|
|
1510
|
+
"name": "--cdr-form-figure-checkbox-fill-checked",
|
|
1511
|
+
"defaultValue": "--cdr-color-icon-checkbox-default-selected",
|
|
1512
|
+
"description": "Fill color of the checkbox check icon when checked"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"name": "--cdr-form-figure-checkbox-fill-checked-hover",
|
|
1516
|
+
"defaultValue": "--cdr-color-icon-checkbox-default-selected-hover",
|
|
1517
|
+
"description": "Fill color of the checkbox check icon when checked and hovered"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"name": "--cdr-form-figure-checkbox-box-shadow-checked",
|
|
1521
|
+
"defaultValue": "--cdr-color-border-input-default-selected",
|
|
1522
|
+
"description": "Box-shadow color of a checked cdr-checkbox"
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
"name": "--cdr-form-figure-checkbox-background-color-checked",
|
|
1526
|
+
"defaultValue": "--cdr-color-background-input-default-selected",
|
|
1527
|
+
"description": "Background color of a checked cdr-checkbox"
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
"name": "--cdr-form-figure-checkbox-box-shadow-hover",
|
|
1531
|
+
"defaultValue": "--cdr-color-border-input-default-hover",
|
|
1532
|
+
"description": "Box-shadow color of a hovered cdr-checkbox"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"name": "--cdr-form-figure-checkbox-background-hover",
|
|
1536
|
+
"defaultValue": "--cdr-color-background-input-default-hover",
|
|
1537
|
+
"description": "Background color of a hovered cdr-checkbox"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"name": "--cdr-form-figure-checkbox-checked-box-shadow-hover",
|
|
1541
|
+
"defaultValue": "--cdr-color-border-input-default-selected-hover",
|
|
1542
|
+
"description": "Box-shadow color of a checked and hovered cdr-checkbox"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"name": "--cdr-form-figure-checkbox-checked-hover-box-shadow",
|
|
1546
|
+
"defaultValue": "--cdr-color-border-input-default-selected-hover",
|
|
1547
|
+
"description": null
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"name": "--cdr-form-figure-checkbox-checked-background-hover",
|
|
1551
|
+
"defaultValue": "--cdr-color-background-input-default-selected-hover",
|
|
1552
|
+
"description": "Background color of a checked and hovered cdr-checkbox"
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
"name": "--cdr-form-figure-checkbox-box-shadow-disabled",
|
|
1556
|
+
"defaultValue": "--cdr-color-border-input-default-disabled",
|
|
1557
|
+
"description": "Box-shadow color of a cdr-checkbox when disabled"
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"name": "--cdr-form-figure-checkbox-background-disabled",
|
|
1561
|
+
"defaultValue": "--cdr-color-background-input-default-disabled",
|
|
1562
|
+
"description": "Background color of a cdr-checkbox when disabled"
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"name": "--cdr-form-figure-checkbox-background-checked-disabled",
|
|
1566
|
+
"defaultValue": "--cdr-color-background-input-default-disabled",
|
|
1567
|
+
"description": "Background color of a checked cdr-checkbox when disabled"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"name": "--cdr-form-figure-checkbox-box-shadow-active",
|
|
1571
|
+
"defaultValue": "--cdr-color-border-input-default-active",
|
|
1572
|
+
"description": "Box-shadow color of a cdr-checkbox when active"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"name": "--cdr-form-figure-checkbox-background-active",
|
|
1576
|
+
"defaultValue": "--cdr-color-background-input-default-active",
|
|
1577
|
+
"description": "Background color of a cdr-checkbox when active"
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"name": "--cdr-form-figure-checkbox-box-shadow-focus",
|
|
1581
|
+
"defaultValue": "--cdr-color-border-input-default-active",
|
|
1582
|
+
"description": "Box-shadow color of a cdr-checkbox when focused"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"name": "--cdr-form-figure-checkbox-background-focus",
|
|
1586
|
+
"defaultValue": "--cdr-color-background-input-default-focus",
|
|
1587
|
+
"description": "Background color of a cdr-checkbox when focused"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"name": "--cdr-form-figure-checkbox-background-checked-focus",
|
|
1591
|
+
"defaultValue": "--cdr-color-background-input-default-selected-focus",
|
|
1592
|
+
"description": "Background color of a checked cdr-checkbox when focused"
|
|
1593
|
+
}
|
|
1594
|
+
]
|
|
1595
|
+
},
|
|
1596
|
+
"CdrChip": {
|
|
1597
|
+
"name": "CdrChip",
|
|
1598
|
+
"description": "Allows people to make selections, filter content, or trigger actions",
|
|
1599
|
+
"tags": {},
|
|
1600
|
+
"exportName": "default",
|
|
1601
|
+
"displayName": "CdrChip",
|
|
1602
|
+
"slots": [
|
|
1603
|
+
{
|
|
1604
|
+
"name": "icon-left",
|
|
1605
|
+
"description": "Icon to the left of the content"
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"name": "icon-right",
|
|
1609
|
+
"description": "Icon to the right of the content"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"name": "default",
|
|
1613
|
+
"description": "Primary CdrChip content"
|
|
1614
|
+
}
|
|
1615
|
+
],
|
|
1616
|
+
"sourceFiles": [
|
|
1617
|
+
"./src/components/chip/CdrChip.vue"
|
|
1618
|
+
],
|
|
1619
|
+
"UIProperties": [
|
|
1620
|
+
{
|
|
1621
|
+
"name": "--cdr-chip-text-color",
|
|
1622
|
+
"defaultValue": "--cdr-color-text-chip-default",
|
|
1623
|
+
"description": "Text color of a cdr-chip"
|
|
1624
|
+
},
|
|
1625
|
+
{
|
|
1626
|
+
"name": "--cdr-chip-fill-color",
|
|
1627
|
+
"defaultValue": "--cdr-color-text-chip-default",
|
|
1628
|
+
"description": "Fill color of a cdr-chip"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"name": "--cdr-chip-background-color-rest",
|
|
1632
|
+
"defaultValue": "--cdr-color-background-chip-default-rest",
|
|
1633
|
+
"description": "Background color of a cdr-chip"
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"name": "--cdr-chip-box-shadow-color-rest",
|
|
1637
|
+
"defaultValue": "--cdr-color-border-chip-default-rest",
|
|
1638
|
+
"description": "Box-shadow color of a cdr-chip"
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"name": "--cdr-chip-background-color-disabled",
|
|
1642
|
+
"defaultValue": "--cdr-color-background-chip-default-disabled",
|
|
1643
|
+
"description": "Background color of a cdr-chip when disabled"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"name": "--cdr-chip-box-shadow-color-disabled",
|
|
1647
|
+
"defaultValue": "--cdr-color-border-chip-default-disabled",
|
|
1648
|
+
"description": "Box-shadow color of a cdr-chip when disabled"
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
"name": "--cdr-chip-text-color-disabled",
|
|
1652
|
+
"defaultValue": "--cdr-color-text-chip-disabled",
|
|
1653
|
+
"description": "Text color of a cdr-chip when disabled"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"name": "--cdr-chip-background-color-hover",
|
|
1657
|
+
"defaultValue": "--cdr-color-background-chip-default-hover",
|
|
1658
|
+
"description": "Background color of a cdr-chip on hover"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"name": "--cdr-chip-box-shadow-color-hover",
|
|
1662
|
+
"defaultValue": "--cdr-color-border-chip-default-hover",
|
|
1663
|
+
"description": "Box-shadow color of a cdr-chip on hover"
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"name": "--cdr-chip-background-color-focus",
|
|
1667
|
+
"defaultValue": "--cdr-color-background-chip-default-focus",
|
|
1668
|
+
"description": "Background color of a cdr-chip on focus"
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"name": "--cdr-chip-box-shadow-color-focus",
|
|
1672
|
+
"defaultValue": "--cdr-color-border-chip-default-focus",
|
|
1673
|
+
"description": "Box-shadow color of a cdr-chip on focus"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"name": "--cdr-chip-background-color-active",
|
|
1677
|
+
"defaultValue": "--cdr-color-background-chip-default-active",
|
|
1678
|
+
"description": "Background color of a cdr-chip when active"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"name": "--cdr-chip-box-shadow-color-active",
|
|
1682
|
+
"defaultValue": "--cdr-color-border-chip-default-active",
|
|
1683
|
+
"description": "Box-shadow color of a cdr-chip when active"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"name": "--cdr-chip-background-color-selected-rest",
|
|
1687
|
+
"defaultValue": "--cdr-color-background-chip-default-selected",
|
|
1688
|
+
"description": "Background color of a cdr-chip when selected"
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"name": "--cdr-chip-box-shadow-color-selected-rest",
|
|
1692
|
+
"defaultValue": "--cdr-color-border-chip-default-selected-rest",
|
|
1693
|
+
"description": "Box-shadow color of a cdr-chip when selected"
|
|
1694
|
+
},
|
|
730
1695
|
{
|
|
731
|
-
"name": "
|
|
732
|
-
"
|
|
1696
|
+
"name": "--cdr-chip-background-color-selected-hover",
|
|
1697
|
+
"defaultValue": "--cdr-color-background-chip-default-selected-hover",
|
|
1698
|
+
"description": "Background color of a cdr-chip when selected and hovered"
|
|
733
1699
|
},
|
|
734
1700
|
{
|
|
735
|
-
"name": "
|
|
736
|
-
"
|
|
1701
|
+
"name": "--cdr-chip-box-shadow-color-selected-hover",
|
|
1702
|
+
"defaultValue": "--cdr-color-border-chip-default-selected-hover",
|
|
1703
|
+
"description": "Box-shadow color of a cdr-chip when selected and hovered"
|
|
737
1704
|
},
|
|
738
1705
|
{
|
|
739
|
-
"name": "
|
|
740
|
-
"
|
|
1706
|
+
"name": "--cdr-chip-background-color-selected-focus",
|
|
1707
|
+
"defaultValue": "--cdr-color-background-chip-default-selected-focus",
|
|
1708
|
+
"description": "Background color of a cdr-chip when selected and focused"
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"name": "--cdr-chip-box-shadow-color-selected-focus",
|
|
1712
|
+
"defaultValue": "--cdr-color-border-chip-default-selected-focus",
|
|
1713
|
+
"description": "Box-shadow color of a cdr-chip when selected and focused"
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"name": "--cdr-chip-background-color-selected-active",
|
|
1717
|
+
"defaultValue": "--cdr-color-background-chip-default-selected-active",
|
|
1718
|
+
"description": "Background color of a cdr-chip when selected and active"
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"name": "--cdr-chip-box-shadow-color-selected-focus",
|
|
1722
|
+
"defaultValue": "--cdr-color-border-chip-default-selected-focus",
|
|
1723
|
+
"description": "Box-shadow color of a cdr-chip when selected and active"
|
|
741
1724
|
}
|
|
742
|
-
],
|
|
743
|
-
"sourceFiles": [
|
|
744
|
-
"./src/components/chip/CdrChip.vue"
|
|
745
1725
|
]
|
|
746
1726
|
},
|
|
747
1727
|
"CdrChipGroup": {
|
|
1728
|
+
"name": "CdrChipGroup",
|
|
748
1729
|
"exportName": "default",
|
|
749
1730
|
"displayName": "CdrChipGroup",
|
|
750
1731
|
"description": "",
|
|
@@ -784,11 +1765,47 @@
|
|
|
784
1765
|
"./src/components/chip/CdrChipGroup.vue"
|
|
785
1766
|
]
|
|
786
1767
|
},
|
|
787
|
-
"
|
|
1768
|
+
"CdrFormError": {
|
|
1769
|
+
"name": "CdrFormError",
|
|
788
1770
|
"exportName": "default",
|
|
789
|
-
"displayName": "
|
|
1771
|
+
"displayName": "CdrFormError",
|
|
790
1772
|
"description": "",
|
|
791
1773
|
"tags": {},
|
|
1774
|
+
"props": [
|
|
1775
|
+
{
|
|
1776
|
+
"name": "error",
|
|
1777
|
+
"type": {
|
|
1778
|
+
"name": "boolean|string"
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1781
|
+
],
|
|
1782
|
+
"slots": [
|
|
1783
|
+
{
|
|
1784
|
+
"name": "error"
|
|
1785
|
+
}
|
|
1786
|
+
],
|
|
1787
|
+
"sourceFiles": [
|
|
1788
|
+
"./src/components/formError/CdrFormError.vue"
|
|
1789
|
+
],
|
|
1790
|
+
"UIProperties": [
|
|
1791
|
+
{
|
|
1792
|
+
"name": "--cdr-form-error-text-color",
|
|
1793
|
+
"defaultValue": "--cdr-color-text-input-error",
|
|
1794
|
+
"description": "Text color of a cdr-form-error"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"name": "--cdr-form-error-fill-color",
|
|
1798
|
+
"defaultValue": "--cdr-color-text-input-error",
|
|
1799
|
+
"description": "Fill color of a cdr-form-error"
|
|
1800
|
+
}
|
|
1801
|
+
]
|
|
1802
|
+
},
|
|
1803
|
+
"CdrContainer": {
|
|
1804
|
+
"name": "CdrContainer",
|
|
1805
|
+
"description": "Provides base margins and responsive layout logic for pages",
|
|
1806
|
+
"tags": {},
|
|
1807
|
+
"exportName": "default",
|
|
1808
|
+
"displayName": "CdrContainer",
|
|
792
1809
|
"props": [
|
|
793
1810
|
{
|
|
794
1811
|
"name": "tag",
|
|
@@ -835,33 +1852,12 @@
|
|
|
835
1852
|
"./src/components/container/CdrContainer.vue"
|
|
836
1853
|
]
|
|
837
1854
|
},
|
|
838
|
-
"CdrFormError": {
|
|
839
|
-
"exportName": "default",
|
|
840
|
-
"displayName": "CdrFormError",
|
|
841
|
-
"description": "",
|
|
842
|
-
"tags": {},
|
|
843
|
-
"props": [
|
|
844
|
-
{
|
|
845
|
-
"name": "error",
|
|
846
|
-
"type": {
|
|
847
|
-
"name": "boolean|string"
|
|
848
|
-
}
|
|
849
|
-
}
|
|
850
|
-
],
|
|
851
|
-
"slots": [
|
|
852
|
-
{
|
|
853
|
-
"name": "error"
|
|
854
|
-
}
|
|
855
|
-
],
|
|
856
|
-
"sourceFiles": [
|
|
857
|
-
"./src/components/formError/CdrFormError.vue"
|
|
858
|
-
]
|
|
859
|
-
},
|
|
860
1855
|
"CdrFormGroup": {
|
|
1856
|
+
"name": "CdrFormGroup",
|
|
1857
|
+
"description": "Groups related input elements together",
|
|
1858
|
+
"tags": {},
|
|
861
1859
|
"exportName": "default",
|
|
862
1860
|
"displayName": "CdrFormGroup",
|
|
863
|
-
"description": "",
|
|
864
|
-
"tags": {},
|
|
865
1861
|
"props": [
|
|
866
1862
|
{
|
|
867
1863
|
"name": "id",
|
|
@@ -949,13 +1945,154 @@
|
|
|
949
1945
|
],
|
|
950
1946
|
"sourceFiles": [
|
|
951
1947
|
"./src/components/formGroup/CdrFormGroup.vue"
|
|
1948
|
+
],
|
|
1949
|
+
"UIProperties": [
|
|
1950
|
+
{
|
|
1951
|
+
"name": "--cdr-form-group-error-box-shadow",
|
|
1952
|
+
"defaultValue": "--cdr-color-border-input-error",
|
|
1953
|
+
"description": "Box-shadow color of a cdr-form-group error"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"name": "--cdr-form-group-error-background-color",
|
|
1957
|
+
"defaultValue": "--cdr-color-background-input-error",
|
|
1958
|
+
"description": "Background color of a cdr-form-group error"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"name": "--cdr-form-group-error-background-hover",
|
|
1962
|
+
"defaultValue": "transparent",
|
|
1963
|
+
"description": "Background color of a cdr-form-group error on hover"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"name": "--cdr-form-group-optional-text-color",
|
|
1967
|
+
"defaultValue": "--cdr-color-text-input-optional",
|
|
1968
|
+
"description": "Text color of an optional cdr-form-group"
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"name": "--cdr-form-group-disabled-text-color",
|
|
1972
|
+
"defaultValue": "--cdr-color-text-disabled",
|
|
1973
|
+
"description": "Text color of a disabled cdr-form-group"
|
|
1974
|
+
}
|
|
1975
|
+
]
|
|
1976
|
+
},
|
|
1977
|
+
"CdrGrid": {
|
|
1978
|
+
"name": "CdrGrid",
|
|
1979
|
+
"description": "Simple wrapper for working with CSS grid",
|
|
1980
|
+
"tags": {},
|
|
1981
|
+
"exportName": "default",
|
|
1982
|
+
"displayName": "CdrGrid",
|
|
1983
|
+
"props": [
|
|
1984
|
+
{
|
|
1985
|
+
"name": "gutter",
|
|
1986
|
+
"description": "Defines gutter size. Also accepts responsive values with `@breakpoint`: \"none@md\"",
|
|
1987
|
+
"tags": {
|
|
1988
|
+
"demoSelectMultiple": [
|
|
1989
|
+
{
|
|
1990
|
+
"description": "false",
|
|
1991
|
+
"title": "demoSelectMultiple"
|
|
1992
|
+
}
|
|
1993
|
+
]
|
|
1994
|
+
},
|
|
1995
|
+
"values": [
|
|
1996
|
+
"none",
|
|
1997
|
+
"small",
|
|
1998
|
+
"medium",
|
|
1999
|
+
"large"
|
|
2000
|
+
],
|
|
2001
|
+
"type": {
|
|
2002
|
+
"name": "string"
|
|
2003
|
+
},
|
|
2004
|
+
"defaultValue": {
|
|
2005
|
+
"func": false,
|
|
2006
|
+
"value": "'medium@xs medium@sm large@md large@lg'"
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"name": "tag",
|
|
2011
|
+
"description": "Sets the HTML tag for the grid element",
|
|
2012
|
+
"type": {
|
|
2013
|
+
"name": "string"
|
|
2014
|
+
},
|
|
2015
|
+
"defaultValue": {
|
|
2016
|
+
"func": false,
|
|
2017
|
+
"value": "'div'"
|
|
2018
|
+
}
|
|
2019
|
+
}
|
|
2020
|
+
],
|
|
2021
|
+
"slots": [
|
|
2022
|
+
{
|
|
2023
|
+
"name": "default",
|
|
2024
|
+
"description": "CdrGrid content (grid child elements)"
|
|
2025
|
+
}
|
|
2026
|
+
],
|
|
2027
|
+
"sourceFiles": [
|
|
2028
|
+
"./src/components/grid/CdrGrid.vue"
|
|
2029
|
+
]
|
|
2030
|
+
},
|
|
2031
|
+
"CdrIcon": {
|
|
2032
|
+
"name": "CdrIcon",
|
|
2033
|
+
"description": "Communicates meaning through graphics representing simple and complex ideas",
|
|
2034
|
+
"tags": {
|
|
2035
|
+
"demoComponentNames": [
|
|
2036
|
+
{
|
|
2037
|
+
"description": "icon-account-profile, icon-camera",
|
|
2038
|
+
"title": "demoComponentNames"
|
|
2039
|
+
}
|
|
2040
|
+
]
|
|
2041
|
+
},
|
|
2042
|
+
"exportName": "default",
|
|
2043
|
+
"displayName": "CdrIcon",
|
|
2044
|
+
"props": [
|
|
2045
|
+
{
|
|
2046
|
+
"name": "use",
|
|
2047
|
+
"description": "Only on CdrIcon. Sets the href attribute for use with SVG symbol sprite (see @rei/cedar-icons).",
|
|
2048
|
+
"type": {
|
|
2049
|
+
"name": "string"
|
|
2050
|
+
}
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
"name": "inheritColor",
|
|
2054
|
+
"description": "Sets icon fill to \"inherit\" so as to use parent/ancestor fill color.",
|
|
2055
|
+
"type": {
|
|
2056
|
+
"name": "boolean"
|
|
2057
|
+
},
|
|
2058
|
+
"defaultValue": {
|
|
2059
|
+
"func": false,
|
|
2060
|
+
"value": false
|
|
2061
|
+
}
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"name": "size",
|
|
2065
|
+
"type": {
|
|
2066
|
+
"name": "string"
|
|
2067
|
+
},
|
|
2068
|
+
"defaultValue": {
|
|
2069
|
+
"func": false,
|
|
2070
|
+
"value": "'medium'"
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
],
|
|
2074
|
+
"slots": [
|
|
2075
|
+
{
|
|
2076
|
+
"name": "default"
|
|
2077
|
+
}
|
|
2078
|
+
],
|
|
2079
|
+
"sourceFiles": [
|
|
2080
|
+
"./src/components/icon/CdrIcon.vue"
|
|
2081
|
+
],
|
|
2082
|
+
"UIProperties": [
|
|
2083
|
+
{
|
|
2084
|
+
"name": "--cdr-icon-fill-default",
|
|
2085
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
2086
|
+
"description": "Fill color of an icon"
|
|
2087
|
+
}
|
|
952
2088
|
]
|
|
953
2089
|
},
|
|
954
2090
|
"CdrImg": {
|
|
2091
|
+
"name": "CdrImg",
|
|
2092
|
+
"description": "Media for capturing attention and communicating messages",
|
|
2093
|
+
"tags": {},
|
|
955
2094
|
"exportName": "default",
|
|
956
2095
|
"displayName": "CdrImg",
|
|
957
|
-
"description": "",
|
|
958
|
-
"tags": {},
|
|
959
2096
|
"props": [
|
|
960
2097
|
{
|
|
961
2098
|
"name": "src",
|
|
@@ -1004,7 +2141,7 @@
|
|
|
1004
2141
|
},
|
|
1005
2142
|
"defaultValue": {
|
|
1006
2143
|
"func": false,
|
|
1007
|
-
"value": "
|
|
2144
|
+
"value": "undefined"
|
|
1008
2145
|
}
|
|
1009
2146
|
},
|
|
1010
2147
|
{
|
|
@@ -1090,108 +2227,103 @@
|
|
|
1090
2227
|
"./src/components/image/CdrImg.vue"
|
|
1091
2228
|
]
|
|
1092
2229
|
},
|
|
1093
|
-
"
|
|
1094
|
-
"
|
|
1095
|
-
"displayName": "CdrGrid",
|
|
1096
|
-
"description": "",
|
|
1097
|
-
"tags": {},
|
|
1098
|
-
"props": [
|
|
1099
|
-
{
|
|
1100
|
-
"name": "gutter",
|
|
1101
|
-
"description": "Defines gutter size. Also accepts responsive values with `@breakpoint`: \"none@md\"",
|
|
1102
|
-
"tags": {
|
|
1103
|
-
"demoSelectMultiple": [
|
|
1104
|
-
{
|
|
1105
|
-
"description": "false",
|
|
1106
|
-
"title": "demoSelectMultiple"
|
|
1107
|
-
}
|
|
1108
|
-
]
|
|
1109
|
-
},
|
|
1110
|
-
"values": [
|
|
1111
|
-
"none",
|
|
1112
|
-
"small",
|
|
1113
|
-
"medium",
|
|
1114
|
-
"large"
|
|
1115
|
-
],
|
|
1116
|
-
"type": {
|
|
1117
|
-
"name": "string"
|
|
1118
|
-
},
|
|
1119
|
-
"defaultValue": {
|
|
1120
|
-
"func": false,
|
|
1121
|
-
"value": "'medium@xs medium@sm large@md large@lg'"
|
|
1122
|
-
}
|
|
1123
|
-
},
|
|
1124
|
-
{
|
|
1125
|
-
"name": "tag",
|
|
1126
|
-
"description": "Sets the HTML tag for the grid element",
|
|
1127
|
-
"type": {
|
|
1128
|
-
"name": "string"
|
|
1129
|
-
},
|
|
1130
|
-
"defaultValue": {
|
|
1131
|
-
"func": false,
|
|
1132
|
-
"value": "'div'"
|
|
1133
|
-
}
|
|
1134
|
-
}
|
|
1135
|
-
],
|
|
1136
|
-
"slots": [
|
|
1137
|
-
{
|
|
1138
|
-
"name": "default",
|
|
1139
|
-
"description": "CdrGrid content (grid child elements)"
|
|
1140
|
-
}
|
|
1141
|
-
],
|
|
1142
|
-
"sourceFiles": [
|
|
1143
|
-
"./src/components/grid/CdrGrid.vue"
|
|
1144
|
-
]
|
|
1145
|
-
},
|
|
1146
|
-
"CdrIcon": {
|
|
2230
|
+
"CdrLabelStandalone": {
|
|
2231
|
+
"name": "CdrLabelStandalone",
|
|
1147
2232
|
"exportName": "default",
|
|
1148
|
-
"displayName": "
|
|
2233
|
+
"displayName": "CdrLabelStandalone",
|
|
1149
2234
|
"description": "",
|
|
1150
2235
|
"tags": {},
|
|
1151
2236
|
"props": [
|
|
1152
2237
|
{
|
|
1153
|
-
"name": "
|
|
1154
|
-
"
|
|
2238
|
+
"name": "forId",
|
|
2239
|
+
"type": {
|
|
2240
|
+
"name": "string"
|
|
2241
|
+
},
|
|
2242
|
+
"required": true
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"name": "label",
|
|
1155
2246
|
"type": {
|
|
1156
2247
|
"name": "string"
|
|
1157
2248
|
}
|
|
1158
2249
|
},
|
|
1159
2250
|
{
|
|
1160
|
-
"name": "
|
|
1161
|
-
"description": "Sets icon fill to \"inherit\" so as to use parent/ancestor fill color.",
|
|
2251
|
+
"name": "disabled",
|
|
1162
2252
|
"type": {
|
|
1163
2253
|
"name": "boolean"
|
|
1164
|
-
},
|
|
1165
|
-
"defaultValue": {
|
|
1166
|
-
"func": false,
|
|
1167
|
-
"value": false
|
|
1168
2254
|
}
|
|
1169
2255
|
},
|
|
1170
2256
|
{
|
|
1171
|
-
"name": "
|
|
2257
|
+
"name": "required",
|
|
1172
2258
|
"type": {
|
|
1173
|
-
"name": "
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
2259
|
+
"name": "boolean"
|
|
2260
|
+
}
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"name": "optional",
|
|
2264
|
+
"type": {
|
|
2265
|
+
"name": "boolean"
|
|
2266
|
+
}
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
"name": "hideLabel",
|
|
2270
|
+
"type": {
|
|
2271
|
+
"name": "boolean"
|
|
1178
2272
|
}
|
|
1179
2273
|
}
|
|
1180
2274
|
],
|
|
1181
2275
|
"slots": [
|
|
2276
|
+
{
|
|
2277
|
+
"name": "helper"
|
|
2278
|
+
},
|
|
1182
2279
|
{
|
|
1183
2280
|
"name": "default"
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
"name": "info-action"
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"name": "info"
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"name": "helper-text-bottom"
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
"name": "error"
|
|
1184
2293
|
}
|
|
1185
2294
|
],
|
|
1186
2295
|
"sourceFiles": [
|
|
1187
|
-
"./src/components/
|
|
2296
|
+
"./src/components/labelStandalone/CdrLabelStandalone.vue"
|
|
2297
|
+
],
|
|
2298
|
+
"UIProperties": [
|
|
2299
|
+
{
|
|
2300
|
+
"name": "--cdr-label-standalone-text-color",
|
|
2301
|
+
"defaultValue": "--cdr-color-text-input-label",
|
|
2302
|
+
"description": "Text color of a standalone label"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"name": "--cdr-label-standalone-disabled-text-color",
|
|
2306
|
+
"defaultValue": "--cdr-color-text-input-disabled",
|
|
2307
|
+
"description": "Text color of a standalone label when disabled"
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
"name": "--cdr-label-standalone-optional-text-color",
|
|
2311
|
+
"defaultValue": "--cdr-color-text-input-optional",
|
|
2312
|
+
"description": "Text color of a standalone label when optional"
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
"name": "--cdr-label-standalone-helper-text-color",
|
|
2316
|
+
"defaultValue": "--cdr-color-text-input-help",
|
|
2317
|
+
"description": "Text color of a standalone helper label"
|
|
2318
|
+
}
|
|
1188
2319
|
]
|
|
1189
2320
|
},
|
|
1190
2321
|
"CdrInput": {
|
|
2322
|
+
"name": "CdrInput",
|
|
2323
|
+
"description": "Allows for data entry, editing, and search",
|
|
2324
|
+
"tags": {},
|
|
1191
2325
|
"exportName": "default",
|
|
1192
2326
|
"displayName": "CdrInput",
|
|
1193
|
-
"description": "",
|
|
1194
|
-
"tags": {},
|
|
1195
2327
|
"props": [
|
|
1196
2328
|
{
|
|
1197
2329
|
"name": "id",
|
|
@@ -1420,77 +2552,117 @@
|
|
|
1420
2552
|
],
|
|
1421
2553
|
"sourceFiles": [
|
|
1422
2554
|
"./src/components/input/CdrInput.vue"
|
|
1423
|
-
]
|
|
1424
|
-
|
|
1425
|
-
"CdrLabelStandalone": {
|
|
1426
|
-
"exportName": "default",
|
|
1427
|
-
"displayName": "CdrLabelStandalone",
|
|
1428
|
-
"description": "",
|
|
1429
|
-
"tags": {},
|
|
1430
|
-
"props": [
|
|
2555
|
+
],
|
|
2556
|
+
"UIProperties": [
|
|
1431
2557
|
{
|
|
1432
|
-
"name": "
|
|
1433
|
-
"
|
|
1434
|
-
|
|
1435
|
-
},
|
|
1436
|
-
"required": true
|
|
2558
|
+
"name": "--cdr-input-label-background-color",
|
|
2559
|
+
"defaultValue": "--cdr-color-border-input-default",
|
|
2560
|
+
"description": "Background color of the cdr-button label"
|
|
1437
2561
|
},
|
|
1438
2562
|
{
|
|
1439
|
-
"name": "label",
|
|
1440
|
-
"
|
|
1441
|
-
|
|
1442
|
-
}
|
|
2563
|
+
"name": "--cdr-input-label-background-interaction",
|
|
2564
|
+
"defaultValue": "--cdr-color-background-input-default-active",
|
|
2565
|
+
"description": "Background color of the cdr-input label in hover, active, focus, and focus-within states"
|
|
1443
2566
|
},
|
|
1444
2567
|
{
|
|
1445
|
-
"name": "
|
|
1446
|
-
"
|
|
1447
|
-
|
|
1448
|
-
}
|
|
2568
|
+
"name": "--cdr-input-label-box-shadow-interaction",
|
|
2569
|
+
"defaultValue": "--cdr-color-border-input-default-focus",
|
|
2570
|
+
"description": "Box-shadow color of the cdr-input label in hover, active, focus, and focus-within states"
|
|
1449
2571
|
},
|
|
1450
2572
|
{
|
|
1451
|
-
"name": "
|
|
1452
|
-
"
|
|
1453
|
-
|
|
1454
|
-
}
|
|
2573
|
+
"name": "--cdr-input-label-fill-interaction",
|
|
2574
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
2575
|
+
"description": "Fill color of the cdr-input label in hover, active, focus, and focus-within states"
|
|
1455
2576
|
},
|
|
1456
2577
|
{
|
|
1457
|
-
"name": "
|
|
1458
|
-
"
|
|
1459
|
-
|
|
1460
|
-
}
|
|
2578
|
+
"name": "--cdr-input-svg-fill-focus",
|
|
2579
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
2580
|
+
"description": "Fill color of the cdr-input SVG when the parent is focused"
|
|
1461
2581
|
},
|
|
1462
2582
|
{
|
|
1463
|
-
"name": "
|
|
1464
|
-
"
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
}
|
|
1468
|
-
],
|
|
1469
|
-
"slots": [
|
|
2583
|
+
"name": "--cdr-input-wrap-fill",
|
|
2584
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
2585
|
+
"description": "Fill color of the cdr-input wrapper"
|
|
2586
|
+
},
|
|
1470
2587
|
{
|
|
1471
|
-
"name": "
|
|
2588
|
+
"name": "--cdr-input-text-color-default",
|
|
2589
|
+
"defaultValue": "--cdr-color-text-input-default",
|
|
2590
|
+
"description": "Text color of a cdr-input by default"
|
|
1472
2591
|
},
|
|
1473
2592
|
{
|
|
1474
|
-
"name": "default"
|
|
2593
|
+
"name": "--cdr-input-background-color-default",
|
|
2594
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
2595
|
+
"description": "Background color of a cdr-input by default"
|
|
1475
2596
|
},
|
|
1476
2597
|
{
|
|
1477
|
-
"name": "
|
|
2598
|
+
"name": "--cdr-input-box-shadow-default",
|
|
2599
|
+
"defaultValue": "--cdr-color-border-input-default",
|
|
2600
|
+
"description": "Box-shadow color of a cdr-input by default"
|
|
1478
2601
|
},
|
|
1479
2602
|
{
|
|
1480
|
-
"name": "
|
|
2603
|
+
"name": "--cdr-input-icon-fill",
|
|
2604
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
2605
|
+
"description": "Fill color of an icon in a cdr-input"
|
|
1481
2606
|
},
|
|
1482
2607
|
{
|
|
1483
|
-
"name": "
|
|
2608
|
+
"name": "--cdr-input-box-shadow-focus",
|
|
2609
|
+
"defaultValue": "--cdr-color-border-input-default-focus",
|
|
2610
|
+
"description": "Box shadow of a focused or active cdr-input"
|
|
1484
2611
|
},
|
|
1485
2612
|
{
|
|
1486
|
-
"name": "
|
|
2613
|
+
"name": "--cdr-input-background-color-disabled",
|
|
2614
|
+
"defaultValue": "--cdr-color-background-input-default-disabled",
|
|
2615
|
+
"description": "Background color of a disabled cdr-input"
|
|
2616
|
+
},
|
|
2617
|
+
{
|
|
2618
|
+
"name": "--cdr-input-text-color-disabled",
|
|
2619
|
+
"defaultValue": "--cdr-color-text-input-disabled",
|
|
2620
|
+
"description": "Text color of a disabled cdr-input"
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
"name": "--cdr-input-box-shadow-disabled",
|
|
2624
|
+
"defaultValue": "--cdr-color-border-input-default-disabled",
|
|
2625
|
+
"description": "Box-shadow color of a disabled cdr-input"
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"name": "--cdr-input-background-color-default",
|
|
2629
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
2630
|
+
"description": "Background color of a default cdr-input"
|
|
2631
|
+
},
|
|
2632
|
+
{
|
|
2633
|
+
"name": "--cdr-input-background-color-default-focus",
|
|
2634
|
+
"defaultValue": "--cdr-color-background-input-default-active",
|
|
2635
|
+
"description": "Background color of a default cdr-input in active or focus state"
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
"name": "--cdr-input-background-color-secondary",
|
|
2639
|
+
"defaultValue": "--cdr-color-background-input-secondary",
|
|
2640
|
+
"description": "Background color of a secondary cdr-input"
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
"name": "--cdr-input-background-color-secondary-active",
|
|
2644
|
+
"defaultValue": "--cdr-color-background-input-secondary-active",
|
|
2645
|
+
"description": "Background color of a secondary cdr-input in active or focus state"
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
"name": "--cdr-input-error-background-color",
|
|
2649
|
+
"defaultValue": "--cdr-color-background-input-error",
|
|
2650
|
+
"description": "Background color of a cdr-input in error state"
|
|
2651
|
+
},
|
|
2652
|
+
{
|
|
2653
|
+
"name": "--cdr-input-error-box-shadow",
|
|
2654
|
+
"defaultValue": "--cdr-color-border-input-error",
|
|
2655
|
+
"description": "Box-shadow color of a cdr-input in error state"
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"name": "--cdr-input-helper-text-color",
|
|
2659
|
+
"defaultValue": "--cdr-color-text-input-help",
|
|
2660
|
+
"description": "Text color of a cdr-input's helper text"
|
|
1487
2661
|
}
|
|
1488
|
-
],
|
|
1489
|
-
"sourceFiles": [
|
|
1490
|
-
"./src/components/labelStandalone/CdrLabelStandalone.vue"
|
|
1491
2662
|
]
|
|
1492
2663
|
},
|
|
1493
2664
|
"CdrLabelWrapper": {
|
|
2665
|
+
"name": "CdrLabelWrapper",
|
|
1494
2666
|
"exportName": "default",
|
|
1495
2667
|
"displayName": "CdrLabelWrapper",
|
|
1496
2668
|
"description": "",
|
|
@@ -1537,19 +2709,95 @@
|
|
|
1537
2709
|
{
|
|
1538
2710
|
"name": "input"
|
|
1539
2711
|
},
|
|
2712
|
+
{
|
|
2713
|
+
"name": "svgs"
|
|
2714
|
+
},
|
|
1540
2715
|
{
|
|
1541
2716
|
"name": "default"
|
|
1542
2717
|
}
|
|
1543
2718
|
],
|
|
1544
2719
|
"sourceFiles": [
|
|
1545
2720
|
"./src/components/labelWrapper/CdrLabelWrapper.vue"
|
|
2721
|
+
],
|
|
2722
|
+
"UIProperties": [
|
|
2723
|
+
{
|
|
2724
|
+
"name": "--cdr-label-wrapper-text-color",
|
|
2725
|
+
"defaultValue": "--cdr-color-text-input-label",
|
|
2726
|
+
"description": "Text color of a label wrapper"
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
"name": "--cdr-label-wrapper-background-color",
|
|
2730
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
2731
|
+
"description": "Background color of a label wrapper"
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
"name": "--cdr-label-wrapper-primary-background-color-hover",
|
|
2735
|
+
"defaultValue": "--cdr-color-background-label-default-hover",
|
|
2736
|
+
"description": "Background color of a primary label wrapper when hovered"
|
|
2737
|
+
},
|
|
2738
|
+
{
|
|
2739
|
+
"name": "--cdr-label-wrapper-primary-background-color-focus",
|
|
2740
|
+
"defaultValue": "--cdr-color-background-label-default-focus",
|
|
2741
|
+
"description": "Background color of a primary label wrapper when it has focus within"
|
|
2742
|
+
},
|
|
2743
|
+
{
|
|
2744
|
+
"name": "--cdr-label-wrapper-primary-focus-box-shadow-color",
|
|
2745
|
+
"defaultValue": "--cdr-color-border-label-default-focus",
|
|
2746
|
+
"description": "Box shadow color of a primary label wrapper when it has focus within"
|
|
2747
|
+
},
|
|
2748
|
+
{
|
|
2749
|
+
"name": "--cdr-label-wrapper-primary-background-color-active",
|
|
2750
|
+
"defaultValue": "--cdr-color-background-label-default-active",
|
|
2751
|
+
"description": "Background color of a primary label wrapper when active"
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
"name": "--cdr-label-wrapper-secondary-background-color",
|
|
2755
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
2756
|
+
"description": "Background color of a secondary label wrapper"
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"name": "--cdr-label-wrapper-secondary-background-color-hover",
|
|
2760
|
+
"defaultValue": "--cdr-color-background-label-secondary-hover",
|
|
2761
|
+
"description": "Background color of a secondary label wrapper when hovered"
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
"name": "--cdr-label-wrapper-secondary-background-color-focus",
|
|
2765
|
+
"defaultValue": "--cdr-color-background-label-secondary-focus",
|
|
2766
|
+
"description": "Background color of a secondary label wrapper when it has focus within"
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
"name": "--cdr-label-wrapper-secondary-background-color-active",
|
|
2770
|
+
"defaultValue": "--cdr-color-background-label-secondary-active",
|
|
2771
|
+
"description": "Background color of a secondary label wrapper when active"
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"name": "--cdr-label-wrapper-text-color-disabled",
|
|
2775
|
+
"defaultValue": "--cdr-color-text-input-disabled",
|
|
2776
|
+
"description": "Text color of a disabled label wrapper"
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
"name": "--cdr-label-wrapper-background-color-disabled",
|
|
2780
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
2781
|
+
"description": "Background color of a disabled label wrapper"
|
|
2782
|
+
},
|
|
2783
|
+
{
|
|
2784
|
+
"name": "--cdr-form-figure-background-color",
|
|
2785
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
2786
|
+
"description": "Background color of a form figure"
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"name": "--cdr-form-figure-box-shadow-color",
|
|
2790
|
+
"defaultValue": "--cdr-color-border-input-default",
|
|
2791
|
+
"description": "Box shadow color of a form figure"
|
|
2792
|
+
}
|
|
1546
2793
|
]
|
|
1547
2794
|
},
|
|
1548
2795
|
"CdrLink": {
|
|
2796
|
+
"name": "CdrLink",
|
|
2797
|
+
"description": "Clickable text elements used for navigating to other pages or sections",
|
|
2798
|
+
"tags": {},
|
|
1549
2799
|
"exportName": "default",
|
|
1550
2800
|
"displayName": "CdrLink",
|
|
1551
|
-
"description": "",
|
|
1552
|
-
"tags": {},
|
|
1553
2801
|
"props": [
|
|
1554
2802
|
{
|
|
1555
2803
|
"name": "tag",
|
|
@@ -1641,67 +2889,70 @@
|
|
|
1641
2889
|
],
|
|
1642
2890
|
"sourceFiles": [
|
|
1643
2891
|
"./src/components/link/CdrLink.vue"
|
|
1644
|
-
]
|
|
1645
|
-
|
|
1646
|
-
"CdrPagination": {
|
|
1647
|
-
"exportName": "default",
|
|
1648
|
-
"displayName": "CdrPagination",
|
|
1649
|
-
"description": "",
|
|
1650
|
-
"tags": {},
|
|
1651
|
-
"props": [
|
|
2892
|
+
],
|
|
2893
|
+
"UIProperties": [
|
|
1652
2894
|
{
|
|
1653
|
-
"name": "
|
|
1654
|
-
"
|
|
1655
|
-
"
|
|
1656
|
-
"demoIgnore": [
|
|
1657
|
-
{
|
|
1658
|
-
"description": "true",
|
|
1659
|
-
"title": "demoIgnore"
|
|
1660
|
-
}
|
|
1661
|
-
]
|
|
1662
|
-
},
|
|
1663
|
-
"type": {
|
|
1664
|
-
"name": "string"
|
|
1665
|
-
}
|
|
2895
|
+
"name": "--cdr-link-text-color",
|
|
2896
|
+
"defaultValue": "--cdr-color-text-link-rest",
|
|
2897
|
+
"description": "Color of the link text"
|
|
1666
2898
|
},
|
|
1667
2899
|
{
|
|
1668
|
-
"name": "
|
|
1669
|
-
"
|
|
1670
|
-
"
|
|
1671
|
-
"name": "number"
|
|
1672
|
-
},
|
|
1673
|
-
"defaultValue": {
|
|
1674
|
-
"func": false,
|
|
1675
|
-
"value": "null"
|
|
1676
|
-
}
|
|
2900
|
+
"name": "--cdr-link-fill-color",
|
|
2901
|
+
"defaultValue": "--cdr-color-text-link-rest",
|
|
2902
|
+
"description": "Color of the link fill"
|
|
1677
2903
|
},
|
|
1678
2904
|
{
|
|
1679
|
-
"name": "
|
|
1680
|
-
"
|
|
1681
|
-
"
|
|
1682
|
-
"name": "paginationItem[]"
|
|
1683
|
-
},
|
|
1684
|
-
"required": true
|
|
2905
|
+
"name": "--cdr-link-active-text-color-active",
|
|
2906
|
+
"defaultValue": "--cdr-color-text-link-active",
|
|
2907
|
+
"description": "Color of the link text when active or focused"
|
|
1685
2908
|
},
|
|
1686
2909
|
{
|
|
1687
|
-
"name": "
|
|
1688
|
-
"
|
|
2910
|
+
"name": "--cdr-link-text-color-hover",
|
|
2911
|
+
"defaultValue": "--cdr-color-text-link-hover",
|
|
2912
|
+
"description": "Color of the link text when hovered"
|
|
2913
|
+
}
|
|
2914
|
+
]
|
|
2915
|
+
},
|
|
2916
|
+
"CdrList": {
|
|
2917
|
+
"name": "CdrList",
|
|
2918
|
+
"description": "Groups related content items together either vertically or horizontally",
|
|
2919
|
+
"tags": {},
|
|
2920
|
+
"exportName": "default",
|
|
2921
|
+
"displayName": "CdrList",
|
|
2922
|
+
"props": [
|
|
2923
|
+
{
|
|
2924
|
+
"name": "tag",
|
|
2925
|
+
"description": "Sets list type and HTML element as \"unordered\" or \"ordered\"",
|
|
1689
2926
|
"tags": {},
|
|
1690
2927
|
"values": [
|
|
1691
|
-
"
|
|
1692
|
-
"
|
|
2928
|
+
"ul",
|
|
2929
|
+
"ol"
|
|
1693
2930
|
],
|
|
1694
2931
|
"type": {
|
|
1695
2932
|
"name": "string"
|
|
1696
2933
|
},
|
|
1697
2934
|
"defaultValue": {
|
|
1698
2935
|
"func": false,
|
|
1699
|
-
"value": "'
|
|
2936
|
+
"value": "'ul'"
|
|
1700
2937
|
}
|
|
1701
2938
|
},
|
|
1702
2939
|
{
|
|
1703
|
-
"name": "
|
|
1704
|
-
"description": "
|
|
2940
|
+
"name": "modifier",
|
|
2941
|
+
"description": "Modifies the style variant for this component",
|
|
2942
|
+
"tags": {
|
|
2943
|
+
"demoSelectMultiple": [
|
|
2944
|
+
{
|
|
2945
|
+
"description": "true",
|
|
2946
|
+
"title": "demoSelectMultiple"
|
|
2947
|
+
}
|
|
2948
|
+
]
|
|
2949
|
+
},
|
|
2950
|
+
"values": [
|
|
2951
|
+
"ordered",
|
|
2952
|
+
"unordered",
|
|
2953
|
+
"compact",
|
|
2954
|
+
"inline"
|
|
2955
|
+
],
|
|
1705
2956
|
"type": {
|
|
1706
2957
|
"name": "string"
|
|
1707
2958
|
},
|
|
@@ -1709,60 +2960,46 @@
|
|
|
1709
2960
|
"func": false,
|
|
1710
2961
|
"value": "''"
|
|
1711
2962
|
}
|
|
1712
|
-
}
|
|
2963
|
+
}
|
|
2964
|
+
],
|
|
2965
|
+
"slots": [
|
|
1713
2966
|
{
|
|
1714
|
-
"name": "
|
|
1715
|
-
"
|
|
1716
|
-
"ignore": [
|
|
1717
|
-
{
|
|
1718
|
-
"description": "used for binding v-model, represents the current page",
|
|
1719
|
-
"title": "ignore"
|
|
1720
|
-
}
|
|
1721
|
-
]
|
|
1722
|
-
},
|
|
1723
|
-
"type": {
|
|
1724
|
-
"name": "number"
|
|
1725
|
-
}
|
|
2967
|
+
"name": "default",
|
|
2968
|
+
"description": "CdrList content (list-items)"
|
|
1726
2969
|
}
|
|
1727
2970
|
],
|
|
1728
|
-
"
|
|
2971
|
+
"sourceFiles": [
|
|
2972
|
+
"./src/components/list/CdrList.vue"
|
|
2973
|
+
],
|
|
2974
|
+
"UIProperties": [
|
|
1729
2975
|
{
|
|
1730
|
-
"name": "
|
|
1731
|
-
"
|
|
1732
|
-
"
|
|
1733
|
-
{
|
|
1734
|
-
"type": {
|
|
1735
|
-
"names": [
|
|
1736
|
-
"mixed"
|
|
1737
|
-
]
|
|
1738
|
-
},
|
|
1739
|
-
"name": "modelValue"
|
|
1740
|
-
}
|
|
1741
|
-
],
|
|
1742
|
-
"tags": [
|
|
1743
|
-
{
|
|
1744
|
-
"title": "param",
|
|
1745
|
-
"type": {
|
|
1746
|
-
"name": "mixed"
|
|
1747
|
-
},
|
|
1748
|
-
"name": "modelValue"
|
|
1749
|
-
}
|
|
1750
|
-
]
|
|
2976
|
+
"name": "--cdr-list-inline-text-color",
|
|
2977
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
2978
|
+
"description": "Color of the unordered inline list item prefix"
|
|
1751
2979
|
},
|
|
1752
2980
|
{
|
|
1753
|
-
"name": "
|
|
1754
|
-
"
|
|
2981
|
+
"name": "--cdr-list-ordered-nested-prefix-color",
|
|
2982
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
2983
|
+
"description": "Color of the nested ordered cdr-list item prefix"
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
"name": "--cdr-list-unordered-prefix-color",
|
|
2987
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
2988
|
+
"description": "Color of the unordered cdr-list item prefix"
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
"name": "--cdr-list-unordered-nested-prefix-color",
|
|
2992
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
2993
|
+
"description": "Color of the nested unordered cdr-list item prefix"
|
|
1755
2994
|
}
|
|
1756
|
-
],
|
|
1757
|
-
"sourceFiles": [
|
|
1758
|
-
"./src/components/pagination/CdrPagination.vue"
|
|
1759
2995
|
]
|
|
1760
2996
|
},
|
|
1761
2997
|
"CdrModal": {
|
|
2998
|
+
"name": "CdrModal",
|
|
2999
|
+
"description": "Disruptive, action-blocking overlays used to display important information",
|
|
3000
|
+
"tags": {},
|
|
1762
3001
|
"exportName": "default",
|
|
1763
3002
|
"displayName": "CdrModal",
|
|
1764
|
-
"description": "",
|
|
1765
|
-
"tags": {},
|
|
1766
3003
|
"props": [
|
|
1767
3004
|
{
|
|
1768
3005
|
"name": "opened",
|
|
@@ -1895,71 +3132,179 @@
|
|
|
1895
3132
|
],
|
|
1896
3133
|
"sourceFiles": [
|
|
1897
3134
|
"./src/components/modal/CdrModal.vue"
|
|
3135
|
+
],
|
|
3136
|
+
"UIProperties": [
|
|
3137
|
+
{
|
|
3138
|
+
"name": "--cdr-modal-overlay-background-color",
|
|
3139
|
+
"defaultValue": "--cdr-color-background-modal-overlay",
|
|
3140
|
+
"description": "Background color of the modal overlay"
|
|
3141
|
+
},
|
|
3142
|
+
{
|
|
3143
|
+
"name": "--cdr-modal-content-wrap-background-color",
|
|
3144
|
+
"defaultValue": "--cdr-color-background-primary",
|
|
3145
|
+
"description": "Background color of the content wrap"
|
|
3146
|
+
}
|
|
1898
3147
|
]
|
|
1899
3148
|
},
|
|
1900
|
-
"
|
|
1901
|
-
"
|
|
1902
|
-
"
|
|
1903
|
-
"description": "",
|
|
3149
|
+
"CdrPagination": {
|
|
3150
|
+
"name": "CdrPagination",
|
|
3151
|
+
"description": "Allows people to navigate to the next or previous page within an experience",
|
|
1904
3152
|
"tags": {},
|
|
3153
|
+
"exportName": "default",
|
|
3154
|
+
"displayName": "CdrPagination",
|
|
1905
3155
|
"props": [
|
|
1906
3156
|
{
|
|
1907
|
-
"name": "
|
|
1908
|
-
"description": "
|
|
1909
|
-
"tags": {
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
3157
|
+
"name": "id",
|
|
3158
|
+
"description": "Define a custom slug for the generated pagination item IDs. Slug is randomly generated if no ID provided.",
|
|
3159
|
+
"tags": {
|
|
3160
|
+
"demoIgnore": [
|
|
3161
|
+
{
|
|
3162
|
+
"description": "true",
|
|
3163
|
+
"title": "demoIgnore"
|
|
3164
|
+
}
|
|
3165
|
+
]
|
|
3166
|
+
},
|
|
1914
3167
|
"type": {
|
|
1915
3168
|
"name": "string"
|
|
3169
|
+
}
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
"name": "totalPages",
|
|
3173
|
+
"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.",
|
|
3174
|
+
"type": {
|
|
3175
|
+
"name": "number"
|
|
1916
3176
|
},
|
|
1917
3177
|
"defaultValue": {
|
|
1918
3178
|
"func": false,
|
|
1919
|
-
"value": "
|
|
3179
|
+
"value": "null"
|
|
1920
3180
|
}
|
|
1921
3181
|
},
|
|
1922
3182
|
{
|
|
1923
|
-
"name": "
|
|
1924
|
-
"description": "
|
|
1925
|
-
"
|
|
1926
|
-
"
|
|
1927
|
-
{
|
|
1928
|
-
"description": "true",
|
|
1929
|
-
"title": "demoSelectMultiple"
|
|
1930
|
-
}
|
|
1931
|
-
]
|
|
3183
|
+
"name": "pages",
|
|
3184
|
+
"description": "Array of objects containing pagination data.\nObjects must have structure of `{ page: number, url: string }`",
|
|
3185
|
+
"type": {
|
|
3186
|
+
"name": "paginationItem[]"
|
|
1932
3187
|
},
|
|
3188
|
+
"required": true
|
|
3189
|
+
},
|
|
3190
|
+
{
|
|
3191
|
+
"name": "linkTag",
|
|
3192
|
+
"description": "Sets which tag type is used to render pagination elements",
|
|
3193
|
+
"tags": {},
|
|
1933
3194
|
"values": [
|
|
1934
|
-
"
|
|
1935
|
-
"
|
|
1936
|
-
"compact",
|
|
1937
|
-
"inline"
|
|
3195
|
+
"a",
|
|
3196
|
+
"button"
|
|
1938
3197
|
],
|
|
1939
3198
|
"type": {
|
|
1940
3199
|
"name": "string"
|
|
1941
3200
|
},
|
|
3201
|
+
"defaultValue": {
|
|
3202
|
+
"func": false,
|
|
3203
|
+
"value": "'a'"
|
|
3204
|
+
}
|
|
3205
|
+
},
|
|
3206
|
+
{
|
|
3207
|
+
"name": "forLabel",
|
|
3208
|
+
"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`",
|
|
3209
|
+
"type": {
|
|
3210
|
+
"name": "string"
|
|
3211
|
+
},
|
|
1942
3212
|
"defaultValue": {
|
|
1943
3213
|
"func": false,
|
|
1944
3214
|
"value": "''"
|
|
1945
3215
|
}
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
"name": "modelValue",
|
|
3219
|
+
"tags": {
|
|
3220
|
+
"ignore": [
|
|
3221
|
+
{
|
|
3222
|
+
"description": "used for binding v-model, represents the current page",
|
|
3223
|
+
"title": "ignore"
|
|
3224
|
+
}
|
|
3225
|
+
]
|
|
3226
|
+
},
|
|
3227
|
+
"type": {
|
|
3228
|
+
"name": "number"
|
|
3229
|
+
}
|
|
1946
3230
|
}
|
|
1947
3231
|
],
|
|
1948
|
-
"
|
|
3232
|
+
"events": [
|
|
1949
3233
|
{
|
|
1950
|
-
"name": "
|
|
1951
|
-
"description": "
|
|
3234
|
+
"name": "update:modelValue",
|
|
3235
|
+
"description": "Event emitted by v-model on the select <input> element to indicate current page.\nOnly used on small devices",
|
|
3236
|
+
"properties": [
|
|
3237
|
+
{
|
|
3238
|
+
"type": {
|
|
3239
|
+
"names": [
|
|
3240
|
+
"mixed"
|
|
3241
|
+
]
|
|
3242
|
+
},
|
|
3243
|
+
"name": "modelValue"
|
|
3244
|
+
}
|
|
3245
|
+
],
|
|
3246
|
+
"tags": [
|
|
3247
|
+
{
|
|
3248
|
+
"title": "param",
|
|
3249
|
+
"type": {
|
|
3250
|
+
"name": "mixed"
|
|
3251
|
+
},
|
|
3252
|
+
"name": "modelValue"
|
|
3253
|
+
}
|
|
3254
|
+
]
|
|
3255
|
+
},
|
|
3256
|
+
{
|
|
3257
|
+
"name": "navigate",
|
|
3258
|
+
"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."
|
|
1952
3259
|
}
|
|
1953
3260
|
],
|
|
1954
3261
|
"sourceFiles": [
|
|
1955
|
-
"./src/components/
|
|
3262
|
+
"./src/components/pagination/CdrPagination.vue"
|
|
3263
|
+
],
|
|
3264
|
+
"UIProperties": [
|
|
3265
|
+
{
|
|
3266
|
+
"name": "--cdr-pagination-link-text-color",
|
|
3267
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
3268
|
+
"description": "Text color of a cdr-pagination link"
|
|
3269
|
+
},
|
|
3270
|
+
{
|
|
3271
|
+
"name": "--cdr-pagination-link-fill-color",
|
|
3272
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
3273
|
+
"description": "Fill color of a cdr-pagination link"
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"name": "--cdr-pagination-link-background-color-interaction",
|
|
3277
|
+
"defaultValue": "--cdr-color-background-pagination-hover",
|
|
3278
|
+
"description": "Background color of a cdr-pagination link on hover/focus/active"
|
|
3279
|
+
},
|
|
3280
|
+
{
|
|
3281
|
+
"name": "--cdr-pagination-link-current-background-color-keyline",
|
|
3282
|
+
"defaultValue": "--cdr-color-background-pagination-keyline",
|
|
3283
|
+
"description": "Background color of the keyline for the current cdr-pagination link"
|
|
3284
|
+
},
|
|
3285
|
+
{
|
|
3286
|
+
"name": "--cdr-pagination-link-text-color-disabled",
|
|
3287
|
+
"defaultValue": "--cdr-color-text-disabled",
|
|
3288
|
+
"description": "Text color of a disabled cdr-pagination link"
|
|
3289
|
+
},
|
|
3290
|
+
{
|
|
3291
|
+
"name": "--cdr-pagination-link-fill-color-disabled",
|
|
3292
|
+
"defaultValue": "--cdr-color-text-disabled",
|
|
3293
|
+
"description": "Fill color of a disabled cdr-pagination link"
|
|
3294
|
+
},
|
|
3295
|
+
{
|
|
3296
|
+
"name": "--cdr-pagination-link-text-color-interactive-disabled",
|
|
3297
|
+
"defaultValue": "--cdr-color-text-disabled",
|
|
3298
|
+
"description": "Text color of a disabled cdr-pagination link on hover/focus/active"
|
|
3299
|
+
}
|
|
1956
3300
|
]
|
|
1957
3301
|
},
|
|
1958
3302
|
"CdrPopover": {
|
|
3303
|
+
"name": "CdrPopover",
|
|
3304
|
+
"description": "Small overlay used to display contextual information",
|
|
3305
|
+
"tags": {},
|
|
1959
3306
|
"exportName": "default",
|
|
1960
3307
|
"displayName": "CdrPopover",
|
|
1961
|
-
"description": "",
|
|
1962
|
-
"tags": {},
|
|
1963
3308
|
"props": [
|
|
1964
3309
|
{
|
|
1965
3310
|
"name": "position",
|
|
@@ -2074,11 +3419,83 @@
|
|
|
2074
3419
|
"./src/components/popover/CdrPopover.vue"
|
|
2075
3420
|
]
|
|
2076
3421
|
},
|
|
3422
|
+
"CdrPopup": {
|
|
3423
|
+
"name": "CdrPopup",
|
|
3424
|
+
"description": "An internal helper component used by Popover and Tooltip",
|
|
3425
|
+
"tags": {},
|
|
3426
|
+
"exportName": "default",
|
|
3427
|
+
"displayName": "CdrPopup",
|
|
3428
|
+
"props": [
|
|
3429
|
+
{
|
|
3430
|
+
"name": "opened",
|
|
3431
|
+
"type": {
|
|
3432
|
+
"name": "boolean"
|
|
3433
|
+
},
|
|
3434
|
+
"defaultValue": {
|
|
3435
|
+
"func": false,
|
|
3436
|
+
"value": false
|
|
3437
|
+
}
|
|
3438
|
+
},
|
|
3439
|
+
{
|
|
3440
|
+
"name": "position",
|
|
3441
|
+
"type": {
|
|
3442
|
+
"name": "string"
|
|
3443
|
+
},
|
|
3444
|
+
"required": false,
|
|
3445
|
+
"defaultValue": {
|
|
3446
|
+
"func": false,
|
|
3447
|
+
"value": "'top'"
|
|
3448
|
+
}
|
|
3449
|
+
},
|
|
3450
|
+
{
|
|
3451
|
+
"name": "autoPosition",
|
|
3452
|
+
"type": {
|
|
3453
|
+
"name": "boolean"
|
|
3454
|
+
},
|
|
3455
|
+
"defaultValue": {
|
|
3456
|
+
"func": false,
|
|
3457
|
+
"value": true
|
|
3458
|
+
}
|
|
3459
|
+
},
|
|
3460
|
+
{
|
|
3461
|
+
"name": "contentClass",
|
|
3462
|
+
"type": {
|
|
3463
|
+
"name": "string"
|
|
3464
|
+
}
|
|
3465
|
+
}
|
|
3466
|
+
],
|
|
3467
|
+
"events": [
|
|
3468
|
+
{
|
|
3469
|
+
"name": "closed"
|
|
3470
|
+
}
|
|
3471
|
+
],
|
|
3472
|
+
"slots": [
|
|
3473
|
+
{
|
|
3474
|
+
"name": "default"
|
|
3475
|
+
}
|
|
3476
|
+
],
|
|
3477
|
+
"sourceFiles": [
|
|
3478
|
+
"./src/components/popup/CdrPopup.vue"
|
|
3479
|
+
],
|
|
3480
|
+
"UIProperties": [
|
|
3481
|
+
{
|
|
3482
|
+
"name": "--cdr-popup-content-background",
|
|
3483
|
+
"defaultValue": "--cdr-color-background-primary",
|
|
3484
|
+
"description": "Background color of cdr-popup content"
|
|
3485
|
+
},
|
|
3486
|
+
{
|
|
3487
|
+
"name": "--cdr-popup-content-border-color",
|
|
3488
|
+
"defaultValue": "--cdr-color-border-secondary",
|
|
3489
|
+
"description": "Border color of cdr-popup content"
|
|
3490
|
+
}
|
|
3491
|
+
]
|
|
3492
|
+
},
|
|
2077
3493
|
"CdrQuote": {
|
|
3494
|
+
"name": "CdrQuote",
|
|
3495
|
+
"description": "Short excerpt used to emphasize content or break up a large body of text",
|
|
3496
|
+
"tags": {},
|
|
2078
3497
|
"exportName": "default",
|
|
2079
3498
|
"displayName": "CdrQuote",
|
|
2080
|
-
"description": "",
|
|
2081
|
-
"tags": {},
|
|
2082
3499
|
"props": [
|
|
2083
3500
|
{
|
|
2084
3501
|
"name": "tag",
|
|
@@ -2142,71 +3559,161 @@
|
|
|
2142
3559
|
],
|
|
2143
3560
|
"sourceFiles": [
|
|
2144
3561
|
"./src/components/quote/CdrQuote.vue"
|
|
3562
|
+
],
|
|
3563
|
+
"UIProperties": [
|
|
3564
|
+
{
|
|
3565
|
+
"name": "--cdr-quote-cite-text-color",
|
|
3566
|
+
"defaultValue": "--cdr-color-text-secondary",
|
|
3567
|
+
"description": "Text color of a cdr-quote citation"
|
|
3568
|
+
},
|
|
3569
|
+
{
|
|
3570
|
+
"name": "--cdr-quote-content-text-color",
|
|
3571
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
3572
|
+
"description": "Text color of cdr-quote content"
|
|
3573
|
+
},
|
|
3574
|
+
{
|
|
3575
|
+
"name": "--cdr-quote-pull-container-border-color",
|
|
3576
|
+
"defaultValue": "--cdr-color-border-primary",
|
|
3577
|
+
"description": "Border color of a cdr-quote pull container"
|
|
3578
|
+
}
|
|
2145
3579
|
]
|
|
2146
3580
|
},
|
|
2147
|
-
"
|
|
2148
|
-
"
|
|
2149
|
-
"
|
|
2150
|
-
"description": "",
|
|
3581
|
+
"CdrRating": {
|
|
3582
|
+
"name": "CdrRating",
|
|
3583
|
+
"description": "Provides insight into user opinions for products, experiences, and more",
|
|
2151
3584
|
"tags": {},
|
|
3585
|
+
"exportName": "default",
|
|
3586
|
+
"displayName": "CdrRating",
|
|
2152
3587
|
"props": [
|
|
2153
3588
|
{
|
|
2154
|
-
"name": "
|
|
3589
|
+
"name": "rating",
|
|
3590
|
+
"description": "Sets the rating values between 0 and 5.",
|
|
2155
3591
|
"type": {
|
|
2156
|
-
"name": "
|
|
3592
|
+
"name": "string|number"
|
|
2157
3593
|
},
|
|
3594
|
+
"required": true,
|
|
2158
3595
|
"defaultValue": {
|
|
2159
3596
|
"func": false,
|
|
2160
|
-
"value":
|
|
3597
|
+
"value": "0"
|
|
2161
3598
|
}
|
|
2162
3599
|
},
|
|
2163
3600
|
{
|
|
2164
|
-
"name": "
|
|
3601
|
+
"name": "count",
|
|
3602
|
+
"description": "Sets the total number of ratings",
|
|
2165
3603
|
"type": {
|
|
2166
|
-
"name": "string"
|
|
3604
|
+
"name": "string|number"
|
|
2167
3605
|
},
|
|
2168
3606
|
"required": false,
|
|
2169
3607
|
"defaultValue": {
|
|
2170
3608
|
"func": false,
|
|
2171
|
-
"value": "
|
|
3609
|
+
"value": "null"
|
|
2172
3610
|
}
|
|
2173
3611
|
},
|
|
2174
3612
|
{
|
|
2175
|
-
"name": "
|
|
3613
|
+
"name": "compact",
|
|
3614
|
+
"description": "Hides the word 'reviews' if true",
|
|
2176
3615
|
"type": {
|
|
2177
3616
|
"name": "boolean"
|
|
2178
3617
|
},
|
|
2179
3618
|
"defaultValue": {
|
|
2180
3619
|
"func": false,
|
|
2181
|
-
"value":
|
|
3620
|
+
"value": false
|
|
2182
3621
|
}
|
|
2183
3622
|
},
|
|
2184
3623
|
{
|
|
2185
|
-
"name": "
|
|
3624
|
+
"name": "href",
|
|
3625
|
+
"description": "Sets the rating component (icons and text) to display inline and wraps them in an anchor tag so they can act as link.",
|
|
2186
3626
|
"type": {
|
|
2187
3627
|
"name": "string"
|
|
2188
3628
|
}
|
|
2189
|
-
}
|
|
2190
|
-
],
|
|
2191
|
-
"events": [
|
|
3629
|
+
},
|
|
2192
3630
|
{
|
|
2193
|
-
"name": "
|
|
3631
|
+
"name": "size",
|
|
3632
|
+
"description": "Sets the rating size.",
|
|
3633
|
+
"tags": {
|
|
3634
|
+
"demoSelectMultiple": [
|
|
3635
|
+
{
|
|
3636
|
+
"description": "false",
|
|
3637
|
+
"title": "demoSelectMultiple"
|
|
3638
|
+
}
|
|
3639
|
+
]
|
|
3640
|
+
},
|
|
3641
|
+
"values": [
|
|
3642
|
+
"small",
|
|
3643
|
+
"medium",
|
|
3644
|
+
"large"
|
|
3645
|
+
],
|
|
3646
|
+
"type": {
|
|
3647
|
+
"name": "string"
|
|
3648
|
+
},
|
|
3649
|
+
"defaultValue": {
|
|
3650
|
+
"func": false,
|
|
3651
|
+
"value": "'medium'"
|
|
3652
|
+
}
|
|
2194
3653
|
}
|
|
2195
3654
|
],
|
|
2196
|
-
"
|
|
3655
|
+
"sourceFiles": [
|
|
3656
|
+
"./src/components/rating/CdrRating.vue"
|
|
3657
|
+
],
|
|
3658
|
+
"UIProperties": [
|
|
2197
3659
|
{
|
|
2198
|
-
"name": "
|
|
3660
|
+
"name": "--cdr-rating-count-hover-color",
|
|
3661
|
+
"defaultValue": "--cdr-color-text-rating-hover",
|
|
3662
|
+
"description": "Hover text color of cdr-rating count"
|
|
3663
|
+
},
|
|
3664
|
+
{
|
|
3665
|
+
"name": "--cdr-rating-text-rating-separator",
|
|
3666
|
+
"defaultValue": "--cdr-color-text-rating-separator",
|
|
3667
|
+
"description": "Color of the rating text separator"
|
|
3668
|
+
},
|
|
3669
|
+
{
|
|
3670
|
+
"name": "--cdr-rating-star-null-fill-color",
|
|
3671
|
+
"defaultValue": "#F9F8F6",
|
|
3672
|
+
"description": "Fill color of a null star"
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
"name": "--cdr-rating-star-null-outline-color",
|
|
3676
|
+
"defaultValue": "#928B80",
|
|
3677
|
+
"description": "Outline color of a null star"
|
|
3678
|
+
},
|
|
3679
|
+
{
|
|
3680
|
+
"name": "--cdr-rating-star-partial-fill-color",
|
|
3681
|
+
"defaultValue": "#FFD280",
|
|
3682
|
+
"description": "Fill color of a partially filled star"
|
|
3683
|
+
},
|
|
3684
|
+
{
|
|
3685
|
+
"name": "--cdr-rating-star-partial-stroke-color",
|
|
3686
|
+
"defaultValue": "#BD7B2D",
|
|
3687
|
+
"description": "Stroke color of a partially filled star"
|
|
3688
|
+
},
|
|
3689
|
+
{
|
|
3690
|
+
"name": "--cdr-rating-star-filled-fill-color",
|
|
3691
|
+
"defaultValue": "#FFD280",
|
|
3692
|
+
"description": "Fill color of a filled star"
|
|
3693
|
+
},
|
|
3694
|
+
{
|
|
3695
|
+
"name": "--cdr-rating-star-filled-stroke-color",
|
|
3696
|
+
"defaultValue": "#BD7B2D",
|
|
3697
|
+
"description": "Stroke color of a filled star"
|
|
3698
|
+
},
|
|
3699
|
+
{
|
|
3700
|
+
"name": "--cdr-rating-star-empty-fill-color",
|
|
3701
|
+
"defaultValue": "#F9F8F6",
|
|
3702
|
+
"description": "Fill color of an empty star"
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
"name": "--cdr-rating-star-empty-stroke-color",
|
|
3706
|
+
"defaultValue": "#BD7B2D",
|
|
3707
|
+
"description": "Stroke color of an empty star"
|
|
2199
3708
|
}
|
|
2200
|
-
],
|
|
2201
|
-
"sourceFiles": [
|
|
2202
|
-
"./src/components/popup/CdrPopup.vue"
|
|
2203
3709
|
]
|
|
2204
3710
|
},
|
|
2205
3711
|
"CdrRadio": {
|
|
3712
|
+
"name": "CdrRadio",
|
|
3713
|
+
"description": "Permits the selection of only one option from a list of two or more",
|
|
3714
|
+
"tags": {},
|
|
2206
3715
|
"exportName": "default",
|
|
2207
3716
|
"displayName": "CdrRadio",
|
|
2208
|
-
"description": "",
|
|
2209
|
-
"tags": {},
|
|
2210
3717
|
"props": [
|
|
2211
3718
|
{
|
|
2212
3719
|
"name": "labelClass",
|
|
@@ -2310,7 +3817,244 @@
|
|
|
2310
3817
|
"tags": {
|
|
2311
3818
|
"ignore": [
|
|
2312
3819
|
{
|
|
2313
|
-
"description": "v-model binding",
|
|
3820
|
+
"description": "v-model binding",
|
|
3821
|
+
"title": "ignore"
|
|
3822
|
+
}
|
|
3823
|
+
]
|
|
3824
|
+
},
|
|
3825
|
+
"type": {
|
|
3826
|
+
"name": "string|number|boolean|object|array|symbol|func"
|
|
3827
|
+
}
|
|
3828
|
+
}
|
|
3829
|
+
],
|
|
3830
|
+
"events": [
|
|
3831
|
+
{
|
|
3832
|
+
"name": "update:modelValue",
|
|
3833
|
+
"description": "Event emitted by v-model on the radio's <input> element",
|
|
3834
|
+
"properties": [
|
|
3835
|
+
{
|
|
3836
|
+
"type": {
|
|
3837
|
+
"names": [
|
|
3838
|
+
"mixed"
|
|
3839
|
+
]
|
|
3840
|
+
},
|
|
3841
|
+
"name": "modelValue"
|
|
3842
|
+
}
|
|
3843
|
+
],
|
|
3844
|
+
"tags": [
|
|
3845
|
+
{
|
|
3846
|
+
"title": "param",
|
|
3847
|
+
"type": {
|
|
3848
|
+
"name": "mixed"
|
|
3849
|
+
},
|
|
3850
|
+
"name": "modelValue"
|
|
3851
|
+
}
|
|
3852
|
+
]
|
|
3853
|
+
}
|
|
3854
|
+
],
|
|
3855
|
+
"slots": [
|
|
3856
|
+
{
|
|
3857
|
+
"name": "default"
|
|
3858
|
+
}
|
|
3859
|
+
],
|
|
3860
|
+
"sourceFiles": [
|
|
3861
|
+
"./src/components/radio/CdrRadio.vue"
|
|
3862
|
+
],
|
|
3863
|
+
"UIProperties": [
|
|
3864
|
+
{
|
|
3865
|
+
"name": "--cdr-radio-box-shadow-color-selected",
|
|
3866
|
+
"defaultValue": "--cdr-color-border-input-default-selected",
|
|
3867
|
+
"description": "Box-shadow color of cdr-radio when selected"
|
|
3868
|
+
},
|
|
3869
|
+
{
|
|
3870
|
+
"name": "--cdr-radio-background-color-selected",
|
|
3871
|
+
"defaultValue": "--cdr-color-background-input-default-selected",
|
|
3872
|
+
"description": "Background color of cdr-radio when selected"
|
|
3873
|
+
},
|
|
3874
|
+
{
|
|
3875
|
+
"name": "--cdr-radio-inner-circle-background-color-selected",
|
|
3876
|
+
"defaultValue": "--cdr-color-icon-checkbox-default-selected",
|
|
3877
|
+
"description": "Background color of the inner circle of cdr-radio when selected"
|
|
3878
|
+
},
|
|
3879
|
+
{
|
|
3880
|
+
"name": "--cdr-radio-box-shadow-color-hover",
|
|
3881
|
+
"defaultValue": "--cdr-color-border-input-default-hover",
|
|
3882
|
+
"description": "Box-shadow color of cdr-radio on hover"
|
|
3883
|
+
},
|
|
3884
|
+
{
|
|
3885
|
+
"name": "--cdr-radio-background-color-hover",
|
|
3886
|
+
"defaultValue": "--cdr-color-background-input-default-hover",
|
|
3887
|
+
"description": "Background color of cdr-radio on hover"
|
|
3888
|
+
},
|
|
3889
|
+
{
|
|
3890
|
+
"name": "--cdr-radio-box-shadow-color-selected-hover",
|
|
3891
|
+
"defaultValue": "--cdr-color-border-input-default-selected-hover",
|
|
3892
|
+
"description": "Box-shadow color of cdr-radio when selected on hover"
|
|
3893
|
+
},
|
|
3894
|
+
{
|
|
3895
|
+
"name": "--cdr-radio-background-color-selected-hover",
|
|
3896
|
+
"defaultValue": "--cdr-color-background-input-default-selected-hover",
|
|
3897
|
+
"description": "Background color of cdr-radio when selected on hover"
|
|
3898
|
+
},
|
|
3899
|
+
{
|
|
3900
|
+
"name": "--cdr-radio-box-shadow-color-disabled",
|
|
3901
|
+
"defaultValue": "--cdr-color-border-input-default-disabled",
|
|
3902
|
+
"description": "Box-shadow color of cdr-radio when disabled"
|
|
3903
|
+
},
|
|
3904
|
+
{
|
|
3905
|
+
"name": "--cdr-radio-background-color-disabled",
|
|
3906
|
+
"defaultValue": "--cdr-color-background-input-default-disabled",
|
|
3907
|
+
"description": "Background color of cdr-radio when disabled"
|
|
3908
|
+
},
|
|
3909
|
+
{
|
|
3910
|
+
"name": "--cdr-radio-inner-circle-background-color-disabled",
|
|
3911
|
+
"defaultValue": "--cdr-color-background-input-default-disabled",
|
|
3912
|
+
"description": "Background color of the inner circle of cdr-radio when disabled"
|
|
3913
|
+
},
|
|
3914
|
+
{
|
|
3915
|
+
"name": "--cdr-radio-inner-circle-background-color-selected-disabled",
|
|
3916
|
+
"defaultValue": "--cdr-color-background-input-default-disabled",
|
|
3917
|
+
"description": "Background color of the inner circle of cdr-radio when selected and disabled"
|
|
3918
|
+
},
|
|
3919
|
+
{
|
|
3920
|
+
"name": "--cdr-radio-box-shadow-color-focus",
|
|
3921
|
+
"defaultValue": "--cdr-color-border-input-default-active",
|
|
3922
|
+
"description": "Box-shadow color of cdr-radio on focus"
|
|
3923
|
+
},
|
|
3924
|
+
{
|
|
3925
|
+
"name": "--cdr-radio-background-color-focus",
|
|
3926
|
+
"defaultValue": "--cdr-color-background-input-default-focus",
|
|
3927
|
+
"description": "Background color of cdr-radio on focus"
|
|
3928
|
+
},
|
|
3929
|
+
{
|
|
3930
|
+
"name": "--cdr-radio-background-color-selected-focus",
|
|
3931
|
+
"defaultValue": "--cdr-color-background-input-default-selected-focus",
|
|
3932
|
+
"description": "Background color of cdr-radio when selected on focus"
|
|
3933
|
+
},
|
|
3934
|
+
{
|
|
3935
|
+
"name": "--cdr-radio-box-shadow-color-active",
|
|
3936
|
+
"defaultValue": "--cdr-color-border-input-default-active",
|
|
3937
|
+
"description": "Box-shadow color of cdr-radio when active"
|
|
3938
|
+
},
|
|
3939
|
+
{
|
|
3940
|
+
"name": "--cdr-radio-background-color-active",
|
|
3941
|
+
"defaultValue": "--cdr-color-background-input-default-active",
|
|
3942
|
+
"description": "Background color of cdr-radio when active"
|
|
3943
|
+
},
|
|
3944
|
+
{
|
|
3945
|
+
"name": "--cdr-radio-inner-circle-background-color-selected-active",
|
|
3946
|
+
"defaultValue": "--cdr-color-icon-checkbox-default-selected-active",
|
|
3947
|
+
"description": "Background color of the inner circle of cdr-radio when selected and active"
|
|
3948
|
+
}
|
|
3949
|
+
]
|
|
3950
|
+
},
|
|
3951
|
+
"CdrSelect": {
|
|
3952
|
+
"name": "CdrSelect",
|
|
3953
|
+
"description": "Allows the selection of one or more options from a dropdown list",
|
|
3954
|
+
"tags": {},
|
|
3955
|
+
"exportName": "default",
|
|
3956
|
+
"displayName": "CdrSelect",
|
|
3957
|
+
"props": [
|
|
3958
|
+
{
|
|
3959
|
+
"name": "id",
|
|
3960
|
+
"description": "Custom ID that is mapped to the label ‘for’ attribute. If this value is not set, it will be auto-generated.",
|
|
3961
|
+
"type": {
|
|
3962
|
+
"name": "string"
|
|
3963
|
+
}
|
|
3964
|
+
},
|
|
3965
|
+
{
|
|
3966
|
+
"name": "label",
|
|
3967
|
+
"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.",
|
|
3968
|
+
"type": {
|
|
3969
|
+
"name": "string"
|
|
3970
|
+
},
|
|
3971
|
+
"required": true
|
|
3972
|
+
},
|
|
3973
|
+
{
|
|
3974
|
+
"name": "hideLabel",
|
|
3975
|
+
"description": "Visually hides the label element, but leaves it available to screen readers for accessibility compliance.",
|
|
3976
|
+
"type": {
|
|
3977
|
+
"name": "boolean"
|
|
3978
|
+
},
|
|
3979
|
+
"defaultValue": {
|
|
3980
|
+
"func": false,
|
|
3981
|
+
"value": false
|
|
3982
|
+
}
|
|
3983
|
+
},
|
|
3984
|
+
{
|
|
3985
|
+
"name": "prompt",
|
|
3986
|
+
"description": "Adds an option that is disabled and selected by default to serve as a `placeholder` for the select.",
|
|
3987
|
+
"type": {
|
|
3988
|
+
"name": "string"
|
|
3989
|
+
}
|
|
3990
|
+
},
|
|
3991
|
+
{
|
|
3992
|
+
"name": "options",
|
|
3993
|
+
"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).",
|
|
3994
|
+
"type": {
|
|
3995
|
+
"name": "selectOption[] | string[]"
|
|
3996
|
+
}
|
|
3997
|
+
},
|
|
3998
|
+
{
|
|
3999
|
+
"name": "background",
|
|
4000
|
+
"description": "Sets the background color the radio button is rendered on",
|
|
4001
|
+
"tags": {},
|
|
4002
|
+
"values": [
|
|
4003
|
+
"primary",
|
|
4004
|
+
"secondary"
|
|
4005
|
+
],
|
|
4006
|
+
"type": {
|
|
4007
|
+
"name": "backgroundProps"
|
|
4008
|
+
}
|
|
4009
|
+
},
|
|
4010
|
+
{
|
|
4011
|
+
"name": "size",
|
|
4012
|
+
"description": "Sets the component's size; values can target responsive breakpoints. Example `small@lg`",
|
|
4013
|
+
"tags": {
|
|
4014
|
+
"demoSelectMultiple": [
|
|
4015
|
+
{
|
|
4016
|
+
"description": "false",
|
|
4017
|
+
"title": "demoSelectMultiple"
|
|
4018
|
+
}
|
|
4019
|
+
]
|
|
4020
|
+
},
|
|
4021
|
+
"values": [
|
|
4022
|
+
"small",
|
|
4023
|
+
"medium",
|
|
4024
|
+
"large"
|
|
4025
|
+
],
|
|
4026
|
+
"type": {
|
|
4027
|
+
"name": "sizeProps"
|
|
4028
|
+
}
|
|
4029
|
+
},
|
|
4030
|
+
{
|
|
4031
|
+
"name": "error",
|
|
4032
|
+
"description": "Sets the select to an error state, displays the `error` slot if one is present.",
|
|
4033
|
+
"type": {
|
|
4034
|
+
"name": "boolean|string"
|
|
4035
|
+
},
|
|
4036
|
+
"defaultValue": {
|
|
4037
|
+
"func": false,
|
|
4038
|
+
"value": false
|
|
4039
|
+
}
|
|
4040
|
+
},
|
|
4041
|
+
{
|
|
4042
|
+
"name": "errorRole",
|
|
4043
|
+
"description": "Sets the `role` attribute for the embedded error state messaging.",
|
|
4044
|
+
"type": {
|
|
4045
|
+
"name": "string"
|
|
4046
|
+
},
|
|
4047
|
+
"defaultValue": {
|
|
4048
|
+
"func": false,
|
|
4049
|
+
"value": "'status'"
|
|
4050
|
+
}
|
|
4051
|
+
},
|
|
4052
|
+
{
|
|
4053
|
+
"name": "modelValue",
|
|
4054
|
+
"tags": {
|
|
4055
|
+
"ignore": [
|
|
4056
|
+
{
|
|
4057
|
+
"description": true,
|
|
2314
4058
|
"title": "ignore"
|
|
2315
4059
|
}
|
|
2316
4060
|
]
|
|
@@ -2318,6 +4062,41 @@
|
|
|
2318
4062
|
"type": {
|
|
2319
4063
|
"name": "string|number|boolean|object|array|symbol|func"
|
|
2320
4064
|
}
|
|
4065
|
+
},
|
|
4066
|
+
{
|
|
4067
|
+
"name": "disabled",
|
|
4068
|
+
"description": "Disables the input and sets appropriate styling",
|
|
4069
|
+
"type": {
|
|
4070
|
+
"name": "boolean"
|
|
4071
|
+
}
|
|
4072
|
+
},
|
|
4073
|
+
{
|
|
4074
|
+
"name": "required",
|
|
4075
|
+
"description": "Sets aria-required on the input field and displays an asterisk next to the select label",
|
|
4076
|
+
"type": {
|
|
4077
|
+
"name": "boolean"
|
|
4078
|
+
}
|
|
4079
|
+
},
|
|
4080
|
+
{
|
|
4081
|
+
"name": "optional",
|
|
4082
|
+
"description": "Displays '(optional)' text next to the select label.",
|
|
4083
|
+
"type": {
|
|
4084
|
+
"name": "boolean"
|
|
4085
|
+
}
|
|
4086
|
+
},
|
|
4087
|
+
{
|
|
4088
|
+
"name": "multiple",
|
|
4089
|
+
"description": "Turns CdrSelect into a multi-select element.",
|
|
4090
|
+
"type": {
|
|
4091
|
+
"name": "boolean"
|
|
4092
|
+
}
|
|
4093
|
+
},
|
|
4094
|
+
{
|
|
4095
|
+
"name": "multipleSize",
|
|
4096
|
+
"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.",
|
|
4097
|
+
"type": {
|
|
4098
|
+
"name": "number"
|
|
4099
|
+
}
|
|
2321
4100
|
}
|
|
2322
4101
|
],
|
|
2323
4102
|
"events": [
|
|
@@ -2347,64 +4126,131 @@
|
|
|
2347
4126
|
],
|
|
2348
4127
|
"slots": [
|
|
2349
4128
|
{
|
|
2350
|
-
"name": "
|
|
4129
|
+
"name": "helper-text",
|
|
4130
|
+
"description": "Helper text above the select field"
|
|
4131
|
+
},
|
|
4132
|
+
{
|
|
4133
|
+
"name": "info",
|
|
4134
|
+
"description": "Link or icon to the right above the select field."
|
|
4135
|
+
},
|
|
4136
|
+
{
|
|
4137
|
+
"name": "pre-icon",
|
|
4138
|
+
"description": "Icon preceding text within the select field"
|
|
4139
|
+
},
|
|
4140
|
+
{
|
|
4141
|
+
"name": "default",
|
|
4142
|
+
"description": "CdrSelect content (<option> tags). Leave empty if using the `options` prop."
|
|
4143
|
+
},
|
|
4144
|
+
{
|
|
4145
|
+
"name": "info-action",
|
|
4146
|
+
"description": "Action-wrapped icon to the right of the select field"
|
|
4147
|
+
},
|
|
4148
|
+
{
|
|
4149
|
+
"name": "error",
|
|
4150
|
+
"description": "Error messaging text that is displayed when the `error` prop is true."
|
|
2351
4151
|
}
|
|
2352
4152
|
],
|
|
2353
4153
|
"sourceFiles": [
|
|
2354
|
-
"./src/components/
|
|
2355
|
-
]
|
|
2356
|
-
|
|
2357
|
-
"CdrRating": {
|
|
2358
|
-
"exportName": "default",
|
|
2359
|
-
"displayName": "CdrRating",
|
|
2360
|
-
"description": "",
|
|
2361
|
-
"tags": {},
|
|
2362
|
-
"props": [
|
|
4154
|
+
"./src/components/select/CdrSelect.vue"
|
|
4155
|
+
],
|
|
4156
|
+
"UIProperties": [
|
|
2363
4157
|
{
|
|
2364
|
-
"name": "
|
|
2365
|
-
"
|
|
2366
|
-
"
|
|
2367
|
-
"name": "string|number"
|
|
2368
|
-
},
|
|
2369
|
-
"required": true,
|
|
2370
|
-
"defaultValue": {
|
|
2371
|
-
"func": false,
|
|
2372
|
-
"value": "0"
|
|
2373
|
-
}
|
|
4158
|
+
"name": "--cdr-select-caret-fill",
|
|
4159
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
4160
|
+
"description": "Color of the cdr-select caret"
|
|
2374
4161
|
},
|
|
2375
4162
|
{
|
|
2376
|
-
"name": "
|
|
2377
|
-
"
|
|
2378
|
-
"
|
|
2379
|
-
"name": "string|number"
|
|
2380
|
-
},
|
|
2381
|
-
"required": false,
|
|
2382
|
-
"defaultValue": {
|
|
2383
|
-
"func": false,
|
|
2384
|
-
"value": "null"
|
|
2385
|
-
}
|
|
4163
|
+
"name": "--cdr-select-caret-fill-disabled",
|
|
4164
|
+
"defaultValue": "--cdr-color-icon-disabled",
|
|
4165
|
+
"description": "Color of a disabled cdr-select caret"
|
|
2386
4166
|
},
|
|
2387
4167
|
{
|
|
2388
|
-
"name": "
|
|
2389
|
-
"
|
|
2390
|
-
"
|
|
2391
|
-
"name": "boolean"
|
|
2392
|
-
},
|
|
2393
|
-
"defaultValue": {
|
|
2394
|
-
"func": false,
|
|
2395
|
-
"value": false
|
|
2396
|
-
}
|
|
4168
|
+
"name": "--cdr-select-background-color",
|
|
4169
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
4170
|
+
"description": "Background color of cdr-select"
|
|
2397
4171
|
},
|
|
2398
4172
|
{
|
|
2399
|
-
"name": "
|
|
2400
|
-
"
|
|
2401
|
-
"
|
|
2402
|
-
"name": "string"
|
|
2403
|
-
}
|
|
4173
|
+
"name": "--cdr-select-text-color",
|
|
4174
|
+
"defaultValue": "--cdr-color-text-input-default",
|
|
4175
|
+
"description": "Text color of cdr-select"
|
|
2404
4176
|
},
|
|
2405
4177
|
{
|
|
2406
|
-
"name": "
|
|
2407
|
-
"
|
|
4178
|
+
"name": "--cdr-select-box-shadow-color",
|
|
4179
|
+
"defaultValue": "--cdr-color-border-input-default",
|
|
4180
|
+
"description": "Box-shadow color of cdr-select"
|
|
4181
|
+
},
|
|
4182
|
+
{
|
|
4183
|
+
"name": "--cdr-select-background-color-disabled",
|
|
4184
|
+
"defaultValue": "--cdr-color-background-input-default-disabled",
|
|
4185
|
+
"description": "Background color of a disabled cdr-select"
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
"name": "--cdr-select-text-color-disabled",
|
|
4189
|
+
"defaultValue": "--cdr-color-text-input-disabled",
|
|
4190
|
+
"description": "Text color of a disabled cdr-select"
|
|
4191
|
+
},
|
|
4192
|
+
{
|
|
4193
|
+
"name": "--cdr-select-box-shadow-color-disabled",
|
|
4194
|
+
"defaultValue": "--cdr-color-border-input-default-disabled",
|
|
4195
|
+
"description": "Box-shadow color of a disabled cdr-select"
|
|
4196
|
+
},
|
|
4197
|
+
{
|
|
4198
|
+
"name": "--cdr-select-box-shadow-color-focus",
|
|
4199
|
+
"defaultValue": "--cdr-color-border-input-default-focus",
|
|
4200
|
+
"description": "Box-shadow color of a cdr-select when active or focused"
|
|
4201
|
+
},
|
|
4202
|
+
{
|
|
4203
|
+
"name": "--cdr-select-prompt-text-color",
|
|
4204
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
4205
|
+
"description": "Text color of cdr-select prompt"
|
|
4206
|
+
},
|
|
4207
|
+
{
|
|
4208
|
+
"name": "--cdr-select-prompt-text-color-disabled",
|
|
4209
|
+
"defaultValue": "--cdr-color-text-input-disabled",
|
|
4210
|
+
"description": "Text color of a disabled cdr-select prompt"
|
|
4211
|
+
},
|
|
4212
|
+
{
|
|
4213
|
+
"name": "--cdr-select-primary-background-color",
|
|
4214
|
+
"defaultValue": "--cdr-color-background-input-default",
|
|
4215
|
+
"description": "Background color of a primary cdr-select"
|
|
4216
|
+
},
|
|
4217
|
+
{
|
|
4218
|
+
"name": "--cdr-select-primary-background-color-active",
|
|
4219
|
+
"defaultValue": "--cdr-color-background-input-default-active",
|
|
4220
|
+
"description": "Background color of a primary cdr-select when active or focused"
|
|
4221
|
+
},
|
|
4222
|
+
{
|
|
4223
|
+
"name": "--cdr-select-secondary-background-color",
|
|
4224
|
+
"defaultValue": "--cdr-color-background-input-secondary",
|
|
4225
|
+
"description": "Background color of a secondary cdr-select"
|
|
4226
|
+
},
|
|
4227
|
+
{
|
|
4228
|
+
"name": "--cdr-select-secondary-background-color-active",
|
|
4229
|
+
"defaultValue": "--cdr-color-background-input-secondary-active",
|
|
4230
|
+
"description": "Background color of a secondary cdr-select when active or focused"
|
|
4231
|
+
},
|
|
4232
|
+
{
|
|
4233
|
+
"name": "--cdr-select-background-color-error",
|
|
4234
|
+
"defaultValue": "--cdr-color-background-input-error",
|
|
4235
|
+
"description": "Background color of a cdr-select error"
|
|
4236
|
+
},
|
|
4237
|
+
{
|
|
4238
|
+
"name": "--cdr-select-box-shadow-color-error",
|
|
4239
|
+
"defaultValue": "--cdr-color-border-input-error",
|
|
4240
|
+
"description": "Box-shadow color of a cdr-select error"
|
|
4241
|
+
}
|
|
4242
|
+
]
|
|
4243
|
+
},
|
|
4244
|
+
"CdrSkeletonBone": {
|
|
4245
|
+
"name": "CdrSkeletonBone",
|
|
4246
|
+
"exportName": "default",
|
|
4247
|
+
"displayName": "CdrSkeletonBone",
|
|
4248
|
+
"description": "",
|
|
4249
|
+
"tags": {},
|
|
4250
|
+
"props": [
|
|
4251
|
+
{
|
|
4252
|
+
"name": "type",
|
|
4253
|
+
"description": "Sets the type of content placeholder",
|
|
2408
4254
|
"tags": {
|
|
2409
4255
|
"demoSelectMultiple": [
|
|
2410
4256
|
{
|
|
@@ -2414,270 +4260,356 @@
|
|
|
2414
4260
|
]
|
|
2415
4261
|
},
|
|
2416
4262
|
"values": [
|
|
2417
|
-
"
|
|
2418
|
-
"
|
|
2419
|
-
"
|
|
4263
|
+
"default",
|
|
4264
|
+
"heading",
|
|
4265
|
+
"line",
|
|
4266
|
+
"rectangle",
|
|
4267
|
+
"square"
|
|
2420
4268
|
],
|
|
2421
4269
|
"type": {
|
|
2422
4270
|
"name": "string"
|
|
2423
4271
|
},
|
|
2424
4272
|
"defaultValue": {
|
|
2425
4273
|
"func": false,
|
|
2426
|
-
"value": "'
|
|
4274
|
+
"value": "'default'"
|
|
2427
4275
|
}
|
|
2428
4276
|
}
|
|
2429
4277
|
],
|
|
2430
4278
|
"sourceFiles": [
|
|
2431
|
-
"./src/components/
|
|
4279
|
+
"./src/components/skeleton/CdrSkeletonBone.vue"
|
|
2432
4280
|
]
|
|
2433
4281
|
},
|
|
2434
|
-
"
|
|
4282
|
+
"CdrTabPanel": {
|
|
4283
|
+
"name": "CdrTabPanel",
|
|
2435
4284
|
"exportName": "default",
|
|
2436
|
-
"displayName": "
|
|
4285
|
+
"displayName": "CdrTabPanel",
|
|
2437
4286
|
"description": "",
|
|
2438
4287
|
"tags": {},
|
|
2439
4288
|
"props": [
|
|
2440
4289
|
{
|
|
2441
4290
|
"name": "id",
|
|
2442
|
-
"description": "
|
|
4291
|
+
"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.",
|
|
2443
4292
|
"type": {
|
|
2444
4293
|
"name": "string"
|
|
2445
4294
|
}
|
|
2446
4295
|
},
|
|
2447
4296
|
{
|
|
2448
|
-
"name": "
|
|
2449
|
-
"description": "Sets
|
|
4297
|
+
"name": "name",
|
|
4298
|
+
"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.",
|
|
2450
4299
|
"type": {
|
|
2451
4300
|
"name": "string"
|
|
2452
|
-
},
|
|
2453
|
-
"required": true
|
|
2454
|
-
},
|
|
2455
|
-
{
|
|
2456
|
-
"name": "hideLabel",
|
|
2457
|
-
"description": "Visually hides the label element, but leaves it available to screen readers for accessibility compliance.",
|
|
2458
|
-
"type": {
|
|
2459
|
-
"name": "boolean"
|
|
2460
|
-
},
|
|
2461
|
-
"defaultValue": {
|
|
2462
|
-
"func": false,
|
|
2463
|
-
"value": false
|
|
2464
4301
|
}
|
|
2465
4302
|
},
|
|
2466
4303
|
{
|
|
2467
|
-
"name": "
|
|
2468
|
-
"description": "
|
|
4304
|
+
"name": "ariaLabelledby",
|
|
4305
|
+
"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.",
|
|
2469
4306
|
"type": {
|
|
2470
4307
|
"name": "string"
|
|
2471
4308
|
}
|
|
2472
|
-
}
|
|
4309
|
+
}
|
|
4310
|
+
],
|
|
4311
|
+
"events": [
|
|
2473
4312
|
{
|
|
2474
|
-
"name": "
|
|
2475
|
-
"description": "
|
|
4313
|
+
"name": "tab-change",
|
|
4314
|
+
"description": "Emits when active tab is changed",
|
|
4315
|
+
"tags": [
|
|
4316
|
+
{
|
|
4317
|
+
"title": "params",
|
|
4318
|
+
"content": "state, panelId"
|
|
4319
|
+
}
|
|
4320
|
+
]
|
|
4321
|
+
}
|
|
4322
|
+
],
|
|
4323
|
+
"slots": [
|
|
4324
|
+
{
|
|
4325
|
+
"name": "default",
|
|
4326
|
+
"description": "CdrTabPanel content"
|
|
4327
|
+
}
|
|
4328
|
+
],
|
|
4329
|
+
"sourceFiles": [
|
|
4330
|
+
"./src/components/tabs/CdrTabPanel.vue"
|
|
4331
|
+
]
|
|
4332
|
+
},
|
|
4333
|
+
"CdrTable": {
|
|
4334
|
+
"name": "CdrTable",
|
|
4335
|
+
"description": "Organizes structured data for users to easily scan, compare, and analyze",
|
|
4336
|
+
"tags": {},
|
|
4337
|
+
"exportName": "default",
|
|
4338
|
+
"displayName": "CdrTable",
|
|
4339
|
+
"props": [
|
|
4340
|
+
{
|
|
4341
|
+
"name": "striped",
|
|
4342
|
+
"description": "Sets row colors to alternate between darker and lighter backgrounds.\nStriping will not apply when `border` is true",
|
|
2476
4343
|
"type": {
|
|
2477
|
-
"name": "
|
|
4344
|
+
"name": "boolean"
|
|
4345
|
+
},
|
|
4346
|
+
"defaultValue": {
|
|
4347
|
+
"func": false,
|
|
4348
|
+
"value": false
|
|
2478
4349
|
}
|
|
2479
4350
|
},
|
|
2480
4351
|
{
|
|
2481
|
-
"name": "
|
|
2482
|
-
"description": "
|
|
2483
|
-
"tags": {},
|
|
2484
|
-
"values": [
|
|
2485
|
-
"primary",
|
|
2486
|
-
"secondary"
|
|
2487
|
-
],
|
|
4352
|
+
"name": "border",
|
|
4353
|
+
"description": "Adds borders between rows. Will disable `striped` if both are true",
|
|
2488
4354
|
"type": {
|
|
2489
|
-
"name": "
|
|
4355
|
+
"name": "boolean"
|
|
4356
|
+
},
|
|
4357
|
+
"defaultValue": {
|
|
4358
|
+
"func": false,
|
|
4359
|
+
"value": true
|
|
2490
4360
|
}
|
|
2491
4361
|
},
|
|
2492
4362
|
{
|
|
2493
|
-
"name": "
|
|
2494
|
-
"description": "Sets the
|
|
2495
|
-
"tags": {
|
|
2496
|
-
"demoSelectMultiple": [
|
|
2497
|
-
{
|
|
2498
|
-
"description": "false",
|
|
2499
|
-
"title": "demoSelectMultiple"
|
|
2500
|
-
}
|
|
2501
|
-
]
|
|
2502
|
-
},
|
|
2503
|
-
"values": [
|
|
2504
|
-
"small",
|
|
2505
|
-
"medium",
|
|
2506
|
-
"large"
|
|
2507
|
-
],
|
|
4363
|
+
"name": "fullWidth",
|
|
4364
|
+
"description": "Sets the width to 100%. Also accepts space separated strings for breakpoints that it should be full width: { '@xs' | '@sm' | '@md' | '@lg' }",
|
|
2508
4365
|
"type": {
|
|
2509
|
-
"name": "
|
|
4366
|
+
"name": "boolean|string"
|
|
4367
|
+
},
|
|
4368
|
+
"defaultValue": {
|
|
4369
|
+
"func": false,
|
|
4370
|
+
"value": true
|
|
2510
4371
|
}
|
|
2511
4372
|
},
|
|
2512
4373
|
{
|
|
2513
|
-
"name": "
|
|
2514
|
-
"description": "
|
|
4374
|
+
"name": "responsive",
|
|
4375
|
+
"description": "Makes the table scroll horizontally when it would overflow its container",
|
|
2515
4376
|
"type": {
|
|
2516
|
-
"name": "boolean
|
|
4377
|
+
"name": "boolean"
|
|
2517
4378
|
},
|
|
2518
4379
|
"defaultValue": {
|
|
2519
4380
|
"func": false,
|
|
2520
|
-
"value":
|
|
4381
|
+
"value": true
|
|
2521
4382
|
}
|
|
2522
4383
|
},
|
|
2523
4384
|
{
|
|
2524
|
-
"name": "
|
|
2525
|
-
"description": "
|
|
4385
|
+
"name": "hover",
|
|
4386
|
+
"description": "Adds a darker background on row hover",
|
|
2526
4387
|
"type": {
|
|
2527
|
-
"name": "
|
|
4388
|
+
"name": "boolean"
|
|
2528
4389
|
},
|
|
2529
4390
|
"defaultValue": {
|
|
2530
4391
|
"func": false,
|
|
2531
|
-
"value":
|
|
4392
|
+
"value": false
|
|
2532
4393
|
}
|
|
2533
4394
|
},
|
|
2534
4395
|
{
|
|
2535
|
-
"name": "
|
|
4396
|
+
"name": "size",
|
|
4397
|
+
"description": "Sets the table size (cell padding); values can target responsive breakpoints. Example `small@lg`.",
|
|
2536
4398
|
"tags": {
|
|
2537
|
-
"
|
|
4399
|
+
"demoSelectMultiple": [
|
|
2538
4400
|
{
|
|
2539
|
-
"description":
|
|
2540
|
-
"title": "
|
|
4401
|
+
"description": "false",
|
|
4402
|
+
"title": "demoSelectMultiple"
|
|
2541
4403
|
}
|
|
2542
4404
|
]
|
|
2543
4405
|
},
|
|
4406
|
+
"values": [
|
|
4407
|
+
"small",
|
|
4408
|
+
"medium",
|
|
4409
|
+
"large"
|
|
4410
|
+
],
|
|
2544
4411
|
"type": {
|
|
2545
|
-
"name": "string
|
|
4412
|
+
"name": "string"
|
|
4413
|
+
},
|
|
4414
|
+
"defaultValue": {
|
|
4415
|
+
"func": false,
|
|
4416
|
+
"value": "'medium'"
|
|
2546
4417
|
}
|
|
2547
|
-
}
|
|
4418
|
+
}
|
|
4419
|
+
],
|
|
4420
|
+
"slots": [
|
|
2548
4421
|
{
|
|
2549
|
-
"name": "
|
|
2550
|
-
"description": "
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
4422
|
+
"name": "default",
|
|
4423
|
+
"description": "CdrTable content (Valid table elements <th>, <tbody>, <tr>, <td>, etc.)"
|
|
4424
|
+
}
|
|
4425
|
+
],
|
|
4426
|
+
"sourceFiles": [
|
|
4427
|
+
"./src/components/table/CdrTable.vue"
|
|
4428
|
+
],
|
|
4429
|
+
"UIProperties": [
|
|
2555
4430
|
{
|
|
2556
|
-
"name": "
|
|
2557
|
-
"
|
|
2558
|
-
"
|
|
2559
|
-
"name": "boolean"
|
|
2560
|
-
}
|
|
4431
|
+
"name": "--cdr-table-base-text-color",
|
|
4432
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
4433
|
+
"description": "Color of the cdr-table base text"
|
|
2561
4434
|
},
|
|
2562
4435
|
{
|
|
2563
|
-
"name": "
|
|
2564
|
-
"
|
|
2565
|
-
"
|
|
2566
|
-
"name": "boolean"
|
|
2567
|
-
}
|
|
4436
|
+
"name": "--cdr-table-row-background-color",
|
|
4437
|
+
"defaultValue": "--cdr-color-background-table-row",
|
|
4438
|
+
"description": "Background color of the table rows"
|
|
2568
4439
|
},
|
|
2569
4440
|
{
|
|
2570
|
-
"name": "
|
|
2571
|
-
"
|
|
2572
|
-
"
|
|
2573
|
-
"name": "boolean"
|
|
2574
|
-
}
|
|
4441
|
+
"name": "--cdr-table-header-background-color",
|
|
4442
|
+
"defaultValue": "--cdr-color-background-table-header",
|
|
4443
|
+
"description": "Background color of the table header"
|
|
2575
4444
|
},
|
|
2576
4445
|
{
|
|
2577
|
-
"name": "
|
|
2578
|
-
"
|
|
2579
|
-
"
|
|
2580
|
-
|
|
2581
|
-
}
|
|
2582
|
-
}
|
|
2583
|
-
],
|
|
2584
|
-
"events": [
|
|
4446
|
+
"name": "--cdr-table-text-cell-color",
|
|
4447
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
4448
|
+
"description": "Text color of the table cells"
|
|
4449
|
+
},
|
|
2585
4450
|
{
|
|
2586
|
-
"name": "
|
|
2587
|
-
"
|
|
2588
|
-
"
|
|
2589
|
-
|
|
2590
|
-
"type": {
|
|
2591
|
-
"names": [
|
|
2592
|
-
"mixed"
|
|
2593
|
-
]
|
|
2594
|
-
},
|
|
2595
|
-
"name": "modelValue"
|
|
2596
|
-
}
|
|
2597
|
-
],
|
|
2598
|
-
"tags": [
|
|
2599
|
-
{
|
|
2600
|
-
"title": "param",
|
|
2601
|
-
"type": {
|
|
2602
|
-
"name": "mixed"
|
|
2603
|
-
},
|
|
2604
|
-
"name": "modelValue"
|
|
2605
|
-
}
|
|
2606
|
-
]
|
|
2607
|
-
}
|
|
2608
|
-
],
|
|
2609
|
-
"slots": [
|
|
4451
|
+
"name": "--cdr-table-border-color-default",
|
|
4452
|
+
"defaultValue": "--cdr-color-border-table-default",
|
|
4453
|
+
"description": "Default border color of the table"
|
|
4454
|
+
},
|
|
2610
4455
|
{
|
|
2611
|
-
"name": "
|
|
2612
|
-
"
|
|
4456
|
+
"name": "--cdr-table-head-border-default",
|
|
4457
|
+
"defaultValue": "--cdr-color-border-table-head",
|
|
4458
|
+
"description": "Head border color of the table"
|
|
2613
4459
|
},
|
|
2614
4460
|
{
|
|
2615
|
-
"name": "
|
|
2616
|
-
"
|
|
4461
|
+
"name": "--cdr-table-odd-row-background-color",
|
|
4462
|
+
"defaultValue": "--cdr-color-background-table-row-alt",
|
|
4463
|
+
"description": "Background color of all odd rows in the table"
|
|
2617
4464
|
},
|
|
2618
4465
|
{
|
|
2619
|
-
"name": "
|
|
2620
|
-
"
|
|
4466
|
+
"name": "--cdr-table-header-odd-row-background-color",
|
|
4467
|
+
"defaultValue": "--cdr-color-background-table-row",
|
|
4468
|
+
"description": "Background color of odd rows in the table header"
|
|
2621
4469
|
},
|
|
2622
4470
|
{
|
|
2623
|
-
"name": "
|
|
2624
|
-
"
|
|
4471
|
+
"name": "--cdr-table-striped-odd-row-background-color",
|
|
4472
|
+
"defaultValue": "--cdr-color-background-table-row",
|
|
4473
|
+
"description": "Background color of the odd rows in striped tables"
|
|
2625
4474
|
},
|
|
2626
4475
|
{
|
|
2627
|
-
"name": "
|
|
2628
|
-
"
|
|
4476
|
+
"name": "--cdr-table-body-footer-odd-row-background-color",
|
|
4477
|
+
"defaultValue": "--cdr-color-background-table-row-alt",
|
|
4478
|
+
"description": "Background color of odd rows in the table body and footer"
|
|
2629
4479
|
},
|
|
2630
4480
|
{
|
|
2631
|
-
"name": "
|
|
2632
|
-
"
|
|
4481
|
+
"name": "--cdr-table-cell-background-color-hover",
|
|
4482
|
+
"defaultValue": "--cdr-color-background-table-header",
|
|
4483
|
+
"description": "Background color of table cells on hover"
|
|
2633
4484
|
}
|
|
2634
|
-
],
|
|
2635
|
-
"sourceFiles": [
|
|
2636
|
-
"./src/components/select/CdrSelect.vue"
|
|
2637
4485
|
]
|
|
2638
4486
|
},
|
|
2639
|
-
"
|
|
2640
|
-
"
|
|
2641
|
-
"
|
|
2642
|
-
"description": "",
|
|
4487
|
+
"CdrTabs": {
|
|
4488
|
+
"name": "CdrTabs",
|
|
4489
|
+
"description": "Organizes related content into groups for people to navigate between",
|
|
2643
4490
|
"tags": {},
|
|
4491
|
+
"exportName": "default",
|
|
4492
|
+
"displayName": "CdrTabs",
|
|
2644
4493
|
"props": [
|
|
2645
4494
|
{
|
|
2646
|
-
"name": "
|
|
2647
|
-
"description": "Sets the
|
|
4495
|
+
"name": "height",
|
|
4496
|
+
"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.",
|
|
4497
|
+
"type": {
|
|
4498
|
+
"name": "string"
|
|
4499
|
+
},
|
|
4500
|
+
"defaultValue": {
|
|
4501
|
+
"func": false,
|
|
4502
|
+
"value": "'240px'"
|
|
4503
|
+
}
|
|
4504
|
+
},
|
|
4505
|
+
{
|
|
4506
|
+
"name": "activeTab",
|
|
4507
|
+
"description": "Sets the index of the tab that should be active on initial page load. Note that this property is zero-indexed.",
|
|
4508
|
+
"type": {
|
|
4509
|
+
"name": "number"
|
|
4510
|
+
},
|
|
4511
|
+
"defaultValue": {
|
|
4512
|
+
"func": false,
|
|
4513
|
+
"value": "0"
|
|
4514
|
+
}
|
|
4515
|
+
},
|
|
4516
|
+
{
|
|
4517
|
+
"name": "modifier",
|
|
4518
|
+
"description": "Modifies the style variants for this component",
|
|
4519
|
+
"tags": {},
|
|
4520
|
+
"values": [
|
|
4521
|
+
"centered",
|
|
4522
|
+
"compact",
|
|
4523
|
+
"full-width",
|
|
4524
|
+
"no-border"
|
|
4525
|
+
],
|
|
4526
|
+
"type": {
|
|
4527
|
+
"name": "string"
|
|
4528
|
+
}
|
|
4529
|
+
},
|
|
4530
|
+
{
|
|
4531
|
+
"name": "size",
|
|
4532
|
+
"description": "Use `small` to reduce spacing around the tabs for a denser visual design",
|
|
2648
4533
|
"tags": {
|
|
2649
4534
|
"demoSelectMultiple": [
|
|
2650
4535
|
{
|
|
2651
|
-
"description": "
|
|
4536
|
+
"description": "true",
|
|
2652
4537
|
"title": "demoSelectMultiple"
|
|
2653
4538
|
}
|
|
2654
4539
|
]
|
|
2655
4540
|
},
|
|
2656
4541
|
"values": [
|
|
2657
|
-
"
|
|
2658
|
-
"heading",
|
|
2659
|
-
"line",
|
|
2660
|
-
"rectangle",
|
|
2661
|
-
"square"
|
|
4542
|
+
"small"
|
|
2662
4543
|
],
|
|
4544
|
+
"type": {
|
|
4545
|
+
"name": "string"
|
|
4546
|
+
}
|
|
4547
|
+
},
|
|
4548
|
+
{
|
|
4549
|
+
"name": "backgroundColor",
|
|
4550
|
+
"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.",
|
|
2663
4551
|
"type": {
|
|
2664
4552
|
"name": "string"
|
|
2665
4553
|
},
|
|
2666
4554
|
"defaultValue": {
|
|
2667
4555
|
"func": false,
|
|
2668
|
-
"value": "
|
|
4556
|
+
"value": "CdrColorBackgroundPrimary"
|
|
2669
4557
|
}
|
|
2670
4558
|
}
|
|
2671
4559
|
],
|
|
4560
|
+
"slots": [
|
|
4561
|
+
{
|
|
4562
|
+
"name": "default",
|
|
4563
|
+
"description": "CdrTabs content (CdrTabPanel components)"
|
|
4564
|
+
}
|
|
4565
|
+
],
|
|
2672
4566
|
"sourceFiles": [
|
|
2673
|
-
"./src/components/
|
|
4567
|
+
"./src/components/tabs/CdrTabs.vue"
|
|
4568
|
+
],
|
|
4569
|
+
"UIProperties": [
|
|
4570
|
+
{
|
|
4571
|
+
"name": "--cdr-tabs-header-container-keyline-color",
|
|
4572
|
+
"defaultValue": "--cdr-color-border-tab-keyline-rest",
|
|
4573
|
+
"description": "Keyline color of the cdr-tabs header container"
|
|
4574
|
+
},
|
|
4575
|
+
{
|
|
4576
|
+
"name": "--cdr-tabs-tab-text-color",
|
|
4577
|
+
"defaultValue": "--cdr-color-text-tab-rest",
|
|
4578
|
+
"description": "Text color in a tab"
|
|
4579
|
+
},
|
|
4580
|
+
{
|
|
4581
|
+
"name": "--cdr-tabs-tab-text-color-active",
|
|
4582
|
+
"defaultValue": "--cdr-color-text-tab-active",
|
|
4583
|
+
"description": "Text color of an active tab"
|
|
4584
|
+
},
|
|
4585
|
+
{
|
|
4586
|
+
"name": "--cdr-tabs-tab-text-color-interaction",
|
|
4587
|
+
"defaultValue": "--cdr-color-text-tab-hover",
|
|
4588
|
+
"description": "Text color of a tab on active, focus, or hover"
|
|
4589
|
+
},
|
|
4590
|
+
{
|
|
4591
|
+
"name": "--cdr-tabs-tab-text-color-disabled",
|
|
4592
|
+
"defaultValue": "--cdr-color-text-tab-disabled",
|
|
4593
|
+
"description": "Text color of a disabled tab"
|
|
4594
|
+
},
|
|
4595
|
+
{
|
|
4596
|
+
"name": "--cdr-tabs-keyline-background-color",
|
|
4597
|
+
"defaultValue": "--cdr-color-border-tab-keyline-active",
|
|
4598
|
+
"description": "Background color of the cdr-tabs keyline"
|
|
4599
|
+
},
|
|
4600
|
+
{
|
|
4601
|
+
"name": "--cdr-tabs-no-border-border-color",
|
|
4602
|
+
"defaultValue": "transparent",
|
|
4603
|
+
"description": "Border color of the cdr-tabs with no-border modifier"
|
|
4604
|
+
}
|
|
2674
4605
|
]
|
|
2675
4606
|
},
|
|
2676
4607
|
"CdrSkeleton": {
|
|
4608
|
+
"name": "CdrSkeleton",
|
|
4609
|
+
"description": "Visually communicates content is in the process of loading",
|
|
4610
|
+
"tags": {},
|
|
2677
4611
|
"exportName": "default",
|
|
2678
4612
|
"displayName": "CdrSkeleton",
|
|
2679
|
-
"description": "",
|
|
2680
|
-
"tags": {},
|
|
2681
4613
|
"props": [
|
|
2682
4614
|
{
|
|
2683
4615
|
"name": "motion",
|
|
@@ -2699,13 +4631,72 @@
|
|
|
2699
4631
|
],
|
|
2700
4632
|
"sourceFiles": [
|
|
2701
4633
|
"./src/components/skeleton/CdrSkeleton.vue"
|
|
4634
|
+
],
|
|
4635
|
+
"UIProperties": [
|
|
4636
|
+
{
|
|
4637
|
+
"name": "--cdr-skeleton-bone-background-color",
|
|
4638
|
+
"defaultValue": "#edeae3",
|
|
4639
|
+
"description": "Skeleton bone background color"
|
|
4640
|
+
},
|
|
4641
|
+
{
|
|
4642
|
+
"name": "--cdr-skeleton-gradient-1",
|
|
4643
|
+
"defaultValue": "rgba(237,234,227,1)",
|
|
4644
|
+
"description": "Skeleton shimmer gradient part 1"
|
|
4645
|
+
},
|
|
4646
|
+
{
|
|
4647
|
+
"name": "--cdr-skeleton-gradient-2",
|
|
4648
|
+
"defaultValue": "rgba(249,248,240,1)",
|
|
4649
|
+
"description": "Skeleton shimmer gradient part 2"
|
|
4650
|
+
},
|
|
4651
|
+
{
|
|
4652
|
+
"name": "--cdr-skeleton-gradient-3",
|
|
4653
|
+
"defaultValue": "rgba(237,234,227,1)",
|
|
4654
|
+
"description": "Skeleton shimmer gradient part 3"
|
|
4655
|
+
}
|
|
4656
|
+
]
|
|
4657
|
+
},
|
|
4658
|
+
"CdrText": {
|
|
4659
|
+
"name": "CdrText",
|
|
4660
|
+
"description": "Text container used for any text element such as paragraphs, headings, and lists",
|
|
4661
|
+
"tags": {},
|
|
4662
|
+
"exportName": "default",
|
|
4663
|
+
"displayName": "CdrText",
|
|
4664
|
+
"props": [
|
|
4665
|
+
{
|
|
4666
|
+
"name": "tag",
|
|
4667
|
+
"description": "Sets the HTML tag (p, span, h1, h2, etc)",
|
|
4668
|
+
"type": {
|
|
4669
|
+
"name": "string"
|
|
4670
|
+
},
|
|
4671
|
+
"defaultValue": {
|
|
4672
|
+
"func": false,
|
|
4673
|
+
"value": "'p'"
|
|
4674
|
+
}
|
|
4675
|
+
}
|
|
4676
|
+
],
|
|
4677
|
+
"slots": [
|
|
4678
|
+
{
|
|
4679
|
+
"name": "default",
|
|
4680
|
+
"description": "CdrText content"
|
|
4681
|
+
}
|
|
4682
|
+
],
|
|
4683
|
+
"sourceFiles": [
|
|
4684
|
+
"./src/components/text/CdrText.vue"
|
|
4685
|
+
],
|
|
4686
|
+
"UIProperties": [
|
|
4687
|
+
{
|
|
4688
|
+
"name": "--cdr-text-color",
|
|
4689
|
+
"defaultValue": "--cdr-color-text-primary",
|
|
4690
|
+
"description": "Text color"
|
|
4691
|
+
}
|
|
2702
4692
|
]
|
|
2703
4693
|
},
|
|
2704
4694
|
"CdrSwitch": {
|
|
4695
|
+
"name": "CdrSwitch",
|
|
4696
|
+
"description": "Permits selection from two opposing options",
|
|
4697
|
+
"tags": {},
|
|
2705
4698
|
"exportName": "default",
|
|
2706
4699
|
"displayName": "CdrSwitch",
|
|
2707
|
-
"description": "",
|
|
2708
|
-
"tags": {},
|
|
2709
4700
|
"props": [
|
|
2710
4701
|
{
|
|
2711
4702
|
"name": "id",
|
|
@@ -2797,196 +4788,141 @@
|
|
|
2797
4788
|
],
|
|
2798
4789
|
"sourceFiles": [
|
|
2799
4790
|
"./src/components/switch/CdrSwitch.vue"
|
|
2800
|
-
]
|
|
2801
|
-
},
|
|
2802
|
-
"CdrText": {
|
|
2803
|
-
"exportName": "default",
|
|
2804
|
-
"displayName": "CdrText",
|
|
2805
|
-
"description": "",
|
|
2806
|
-
"tags": {},
|
|
2807
|
-
"props": [
|
|
2808
|
-
{
|
|
2809
|
-
"name": "tag",
|
|
2810
|
-
"description": "Sets the HTML tag (p, span, h1, h2, etc)",
|
|
2811
|
-
"type": {
|
|
2812
|
-
"name": "string"
|
|
2813
|
-
},
|
|
2814
|
-
"defaultValue": {
|
|
2815
|
-
"func": false,
|
|
2816
|
-
"value": "'p'"
|
|
2817
|
-
}
|
|
2818
|
-
}
|
|
2819
4791
|
],
|
|
2820
|
-
"
|
|
4792
|
+
"UIProperties": [
|
|
2821
4793
|
{
|
|
2822
|
-
"name": "
|
|
2823
|
-
"
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
"sourceFiles": [
|
|
2827
|
-
"./src/components/text/CdrText.vue"
|
|
2828
|
-
]
|
|
2829
|
-
},
|
|
2830
|
-
"CdrToggleGroup": {
|
|
2831
|
-
"exportName": "default",
|
|
2832
|
-
"displayName": "CdrToggleGroup",
|
|
2833
|
-
"description": "",
|
|
2834
|
-
"tags": {},
|
|
2835
|
-
"props": [
|
|
4794
|
+
"name": "--cdr-switch-border-color",
|
|
4795
|
+
"defaultValue": "--cdr-color-border-secondary",
|
|
4796
|
+
"description": "Border of the cdr-switch button"
|
|
4797
|
+
},
|
|
2836
4798
|
{
|
|
2837
|
-
"name": "
|
|
2838
|
-
"
|
|
2839
|
-
|
|
2840
|
-
{
|
|
2841
|
-
"description": true,
|
|
2842
|
-
"title": "ignore"
|
|
2843
|
-
}
|
|
2844
|
-
]
|
|
2845
|
-
},
|
|
2846
|
-
"type": {
|
|
2847
|
-
"name": "string|number|boolean|object|array"
|
|
2848
|
-
},
|
|
2849
|
-
"required": true
|
|
4799
|
+
"name": "--cdr-switch-background-color",
|
|
4800
|
+
"defaultValue": "--cdr-color-background-switch-default-rest",
|
|
4801
|
+
"description": "Background color of the cdr-switch button"
|
|
2850
4802
|
},
|
|
2851
4803
|
{
|
|
2852
|
-
"name": "
|
|
2853
|
-
"
|
|
2854
|
-
"
|
|
2855
|
-
|
|
2856
|
-
{
|
|
2857
|
-
"description": "false",
|
|
2858
|
-
"title": "demoSelectMultiple"
|
|
2859
|
-
}
|
|
2860
|
-
]
|
|
2861
|
-
},
|
|
2862
|
-
"values": [
|
|
2863
|
-
"medium",
|
|
2864
|
-
"large"
|
|
2865
|
-
],
|
|
2866
|
-
"type": {
|
|
2867
|
-
"name": "string"
|
|
2868
|
-
},
|
|
2869
|
-
"defaultValue": {
|
|
2870
|
-
"func": false,
|
|
2871
|
-
"value": "'medium'"
|
|
2872
|
-
}
|
|
2873
|
-
}
|
|
2874
|
-
],
|
|
2875
|
-
"events": [
|
|
4804
|
+
"name": "--cdr-switch-icon-fill",
|
|
4805
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
4806
|
+
"description": "Fill of the cdr-switch x and check icons"
|
|
4807
|
+
},
|
|
2876
4808
|
{
|
|
2877
|
-
"name": "
|
|
2878
|
-
"
|
|
2879
|
-
"
|
|
2880
|
-
|
|
2881
|
-
"type": {
|
|
2882
|
-
"names": [
|
|
2883
|
-
"mixed"
|
|
2884
|
-
]
|
|
2885
|
-
},
|
|
2886
|
-
"name": "modelValue"
|
|
2887
|
-
}
|
|
2888
|
-
],
|
|
2889
|
-
"tags": [
|
|
2890
|
-
{
|
|
2891
|
-
"title": "param",
|
|
2892
|
-
"type": {
|
|
2893
|
-
"name": "mixed"
|
|
2894
|
-
},
|
|
2895
|
-
"name": "modelValue"
|
|
2896
|
-
}
|
|
2897
|
-
]
|
|
2898
|
-
}
|
|
2899
|
-
],
|
|
2900
|
-
"slots": [
|
|
4809
|
+
"name": "--cdr-switch-box-shadow-color-focus",
|
|
4810
|
+
"defaultValue": "--cdr-color-border-secondary",
|
|
4811
|
+
"description": "Box-shadow of the cdr-switch button on focus"
|
|
4812
|
+
},
|
|
2901
4813
|
{
|
|
2902
|
-
"name": "
|
|
2903
|
-
"
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
"sourceFiles": [
|
|
2907
|
-
"./src/components/toggleButton/CdrToggleGroup.vue"
|
|
2908
|
-
]
|
|
2909
|
-
},
|
|
2910
|
-
"CdrTabPanel": {
|
|
2911
|
-
"exportName": "default",
|
|
2912
|
-
"displayName": "CdrTabPanel",
|
|
2913
|
-
"description": "",
|
|
2914
|
-
"tags": {},
|
|
2915
|
-
"props": [
|
|
4814
|
+
"name": "--cdr-switch-background-color-focus",
|
|
4815
|
+
"defaultValue": "--cdr-color-background-switch-default-focus",
|
|
4816
|
+
"description": "Background color of the cdr-switch button on focus"
|
|
4817
|
+
},
|
|
2916
4818
|
{
|
|
2917
|
-
"name": "
|
|
2918
|
-
"
|
|
2919
|
-
"
|
|
2920
|
-
"name": "string"
|
|
2921
|
-
}
|
|
4819
|
+
"name": "--cdr-switch-icon-fill-focus",
|
|
4820
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
4821
|
+
"description": "Fill of the cdr-switch x and check icons on focus"
|
|
2922
4822
|
},
|
|
2923
4823
|
{
|
|
2924
|
-
"name": "
|
|
2925
|
-
"
|
|
2926
|
-
"
|
|
2927
|
-
"name": "string"
|
|
2928
|
-
}
|
|
4824
|
+
"name": "--cdr-switch-handle-background-color-focus",
|
|
4825
|
+
"defaultValue": "--cdr-color-background-switch-handle-default-focus",
|
|
4826
|
+
"description": "Background color of the cdr-switch handle before on focus"
|
|
2929
4827
|
},
|
|
2930
4828
|
{
|
|
2931
|
-
"name": "
|
|
2932
|
-
"
|
|
2933
|
-
"
|
|
2934
|
-
|
|
2935
|
-
}
|
|
2936
|
-
}
|
|
2937
|
-
],
|
|
2938
|
-
"events": [
|
|
4829
|
+
"name": "--cdr-switch-hover-border-color",
|
|
4830
|
+
"defaultValue": "--cdr-color-border-switch-default-hover",
|
|
4831
|
+
"description": "Border of the cdr-switch button on hover when not in focus"
|
|
4832
|
+
},
|
|
2939
4833
|
{
|
|
2940
|
-
"name": "
|
|
2941
|
-
"
|
|
2942
|
-
"
|
|
2943
|
-
|
|
2944
|
-
"title": "params",
|
|
2945
|
-
"content": "state, panelId"
|
|
2946
|
-
}
|
|
2947
|
-
]
|
|
2948
|
-
}
|
|
2949
|
-
],
|
|
2950
|
-
"slots": [
|
|
4834
|
+
"name": "--cdr-switch-background-color-hover",
|
|
4835
|
+
"defaultValue": "--cdr-color-background-switch-default-hover",
|
|
4836
|
+
"description": "Background color of the cdr-switch button on hover when not in focus"
|
|
4837
|
+
},
|
|
2951
4838
|
{
|
|
2952
|
-
"name": "
|
|
2953
|
-
"
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
"sourceFiles": [
|
|
2957
|
-
"./src/components/tabs/CdrTabPanel.vue"
|
|
2958
|
-
]
|
|
2959
|
-
},
|
|
2960
|
-
"CdrToggleButton": {
|
|
2961
|
-
"exportName": "default",
|
|
2962
|
-
"displayName": "CdrToggleButton",
|
|
2963
|
-
"description": "",
|
|
2964
|
-
"tags": {},
|
|
2965
|
-
"props": [
|
|
4839
|
+
"name": "--cdr-switch-icon-fill-hover",
|
|
4840
|
+
"defaultValue": "--cdr-color-icon-emphasis",
|
|
4841
|
+
"description": "Fill of the cdr-switch x and check icons on hover when not in focus"
|
|
4842
|
+
},
|
|
2966
4843
|
{
|
|
2967
|
-
"name": "
|
|
2968
|
-
"
|
|
2969
|
-
"
|
|
2970
|
-
|
|
2971
|
-
},
|
|
2972
|
-
"required": true
|
|
2973
|
-
}
|
|
2974
|
-
],
|
|
2975
|
-
"slots": [
|
|
4844
|
+
"name": "--cdr-switch-handle-border-color-hover",
|
|
4845
|
+
"defaultValue": "--cdr-color-border-switch-default-hover",
|
|
4846
|
+
"description": "Border of the cdr-switch handle on hover when not in focus"
|
|
4847
|
+
},
|
|
2976
4848
|
{
|
|
2977
|
-
"name": "
|
|
2978
|
-
"
|
|
4849
|
+
"name": "--cdr-switch-background-color-checked",
|
|
4850
|
+
"defaultValue": "--cdr-color-background-switch-selected-default-rest",
|
|
4851
|
+
"description": "Background color of the cdr-switch button when it is checked"
|
|
4852
|
+
},
|
|
4853
|
+
{
|
|
4854
|
+
"name": "--cdr-switch-icon-fill-checked",
|
|
4855
|
+
"defaultValue": "--cdr-color-icon-switch-selected-default-rest",
|
|
4856
|
+
"description": "Fill of the cdr-switch x and check icons when it is checked"
|
|
4857
|
+
},
|
|
4858
|
+
{
|
|
4859
|
+
"name": "--cdr-switch-box-shadow-color-checked-focus",
|
|
4860
|
+
"defaultValue": "--cdr-color-border-secondary",
|
|
4861
|
+
"description": "Box-shadow of the cdr-switch button when it is checked and in focus"
|
|
4862
|
+
},
|
|
4863
|
+
{
|
|
4864
|
+
"name": "--cdr-switch-background-color-checked-focus",
|
|
4865
|
+
"defaultValue": "--cdr-color-background-switch-selected-default-focus",
|
|
4866
|
+
"description": "Background color of the cdr-switch button when it is checked and in focus"
|
|
4867
|
+
},
|
|
4868
|
+
{
|
|
4869
|
+
"name": "--cdr-switch-handle-border-color-checked-focus",
|
|
4870
|
+
"defaultValue": "--cdr-color-border-switch-handle-default-focus",
|
|
4871
|
+
"description": "Border of the cdr-switch handle when it is checked and in focus"
|
|
4872
|
+
},
|
|
4873
|
+
{
|
|
4874
|
+
"name": "--cdr-switch-handle-background-color-checked-focus",
|
|
4875
|
+
"defaultValue": "--cdr-color-background-switch-handle-selected-default-focus",
|
|
4876
|
+
"description": "Background color of the cdr-switch handle when it is checked and in focus"
|
|
4877
|
+
},
|
|
4878
|
+
{
|
|
4879
|
+
"name": "--cdr-switch-icon-fill-checked-focus",
|
|
4880
|
+
"defaultValue": "--cdr-color-icon-switch-selected-default-focus",
|
|
4881
|
+
"description": "Fill of the cdr-switch x and check icons when it is checked and in focus"
|
|
4882
|
+
},
|
|
4883
|
+
{
|
|
4884
|
+
"name": "--cdr-switch-handle-background-color-checked",
|
|
4885
|
+
"defaultValue": "--cdr-color-background-switch-handle-selected-default-rest",
|
|
4886
|
+
"description": "Background color of the cdr-switch handle when it is checked"
|
|
4887
|
+
},
|
|
4888
|
+
{
|
|
4889
|
+
"name": "--cdr-switch-border-color-checked-hover",
|
|
4890
|
+
"defaultValue": "--cdr-color-border-secondary",
|
|
4891
|
+
"description": "Border of the cdr-switch button when it is checked and on hover but not in focus"
|
|
4892
|
+
},
|
|
4893
|
+
{
|
|
4894
|
+
"name": "--cdr-switch-background-color-checked-hover",
|
|
4895
|
+
"defaultValue": "--cdr-color-background-switch-selected-default-hover",
|
|
4896
|
+
"description": "Background color of the cdr-switch button when it is checked and on hover but not in focus"
|
|
4897
|
+
},
|
|
4898
|
+
{
|
|
4899
|
+
"name": "--cdr-switch-icon-fill-checked-hover",
|
|
4900
|
+
"defaultValue": "--cdr-color-icon-switch-selected-default-hover",
|
|
4901
|
+
"description": "Fill of the cdr-switch x and check icons when it is checked and on hover but not in focus"
|
|
4902
|
+
},
|
|
4903
|
+
{
|
|
4904
|
+
"name": "--cdr-switch-handle-border-color-checked-hover",
|
|
4905
|
+
"defaultValue": "--cdr-color-border-switch-handle-default-hover",
|
|
4906
|
+
"description": "Border of the cdr-switch handle when it is checked and on hover but not in focus"
|
|
4907
|
+
},
|
|
4908
|
+
{
|
|
4909
|
+
"name": "--cdr-switch-handle-border",
|
|
4910
|
+
"defaultValue": "--cdr-color-border-secondary",
|
|
4911
|
+
"description": "Border color of the cdr-switch handle"
|
|
4912
|
+
},
|
|
4913
|
+
{
|
|
4914
|
+
"name": "--cdr-switch-handle-background-color-rest",
|
|
4915
|
+
"defaultValue": "--cdr-color-background-switch-handle-default-rest",
|
|
4916
|
+
"description": "Background color of the cdr-switch handle"
|
|
2979
4917
|
}
|
|
2980
|
-
],
|
|
2981
|
-
"sourceFiles": [
|
|
2982
|
-
"./src/components/toggleButton/CdrToggleButton.vue"
|
|
2983
4918
|
]
|
|
2984
4919
|
},
|
|
2985
4920
|
"CdrToast": {
|
|
4921
|
+
"name": "CdrToast",
|
|
4922
|
+
"description": "Non-modal dialog used to communicate the status of a task or process",
|
|
4923
|
+
"tags": {},
|
|
2986
4924
|
"exportName": "default",
|
|
2987
4925
|
"displayName": "CdrToast",
|
|
2988
|
-
"description": "",
|
|
2989
|
-
"tags": {},
|
|
2990
4926
|
"props": [
|
|
2991
4927
|
{
|
|
2992
4928
|
"name": "type",
|
|
@@ -3058,118 +4994,340 @@
|
|
|
3058
4994
|
],
|
|
3059
4995
|
"events": [
|
|
3060
4996
|
{
|
|
3061
|
-
"name": "open",
|
|
3062
|
-
"description": "Emits when toast opens"
|
|
4997
|
+
"name": "open",
|
|
4998
|
+
"description": "Emits when toast opens"
|
|
4999
|
+
},
|
|
5000
|
+
{
|
|
5001
|
+
"name": "closed",
|
|
5002
|
+
"description": "Emits when toast closes"
|
|
5003
|
+
}
|
|
5004
|
+
],
|
|
5005
|
+
"slots": [
|
|
5006
|
+
{
|
|
5007
|
+
"name": "icon-left",
|
|
5008
|
+
"description": "Icon matching toast messaging type"
|
|
5009
|
+
},
|
|
5010
|
+
{
|
|
5011
|
+
"name": "default",
|
|
5012
|
+
"description": "CdrToast content"
|
|
5013
|
+
},
|
|
5014
|
+
{
|
|
5015
|
+
"name": "icon"
|
|
5016
|
+
}
|
|
5017
|
+
],
|
|
5018
|
+
"sourceFiles": [
|
|
5019
|
+
"./src/components/toast/CdrToast.vue"
|
|
5020
|
+
],
|
|
5021
|
+
"UIProperties": [
|
|
5022
|
+
{
|
|
5023
|
+
"name": "--cdr-toast-close-button-fill",
|
|
5024
|
+
"defaultValue": "--cdr-color-text-emphasis",
|
|
5025
|
+
"description": "Fill color of the cdr-toast close button icon"
|
|
5026
|
+
},
|
|
5027
|
+
{
|
|
5028
|
+
"name": "--cdr-toast-icon-left-background-color-default",
|
|
5029
|
+
"defaultValue": "--cdr-color-background-message-default-02",
|
|
5030
|
+
"description": "Default background color of the cdr-toast icon-left"
|
|
5031
|
+
},
|
|
5032
|
+
{
|
|
5033
|
+
"name": "--cdr-toast-icon-left-fill-default",
|
|
5034
|
+
"defaultValue": "--cdr-color-icon-message-default",
|
|
5035
|
+
"description": "Default fill color of the cdr-toast icon-left"
|
|
5036
|
+
},
|
|
5037
|
+
{
|
|
5038
|
+
"name": "--cdr-toast-icon-left-background-color-info",
|
|
5039
|
+
"defaultValue": "--cdr-color-background-message-info-02",
|
|
5040
|
+
"description": "Info background color of the cdr-toast icon-left"
|
|
5041
|
+
},
|
|
5042
|
+
{
|
|
5043
|
+
"name": "--cdr-toast-icon-left-fill-info",
|
|
5044
|
+
"defaultValue": "--cdr-color-icon-message-info",
|
|
5045
|
+
"description": "Info fill color of the cdr-toast icon-left"
|
|
5046
|
+
},
|
|
5047
|
+
{
|
|
5048
|
+
"name": "--cdr-toast-border-left-color-info",
|
|
5049
|
+
"defaultValue": "--cdr-color-border-message-info-01",
|
|
5050
|
+
"description": "Info border-left color of the cdr-toast"
|
|
5051
|
+
},
|
|
5052
|
+
{
|
|
5053
|
+
"name": "--cdr-toast-icon-left-background-color-warning",
|
|
5054
|
+
"defaultValue": "--cdr-color-background-message-warning-02",
|
|
5055
|
+
"description": "Warning background color of the cdr-toast icon-left"
|
|
5056
|
+
},
|
|
5057
|
+
{
|
|
5058
|
+
"name": "--cdr-toast-icon-left-fill-warning",
|
|
5059
|
+
"defaultValue": "--cdr-color-icon-message-warning",
|
|
5060
|
+
"description": "Warning fill color of the cdr-toast icon-left"
|
|
5061
|
+
},
|
|
5062
|
+
{
|
|
5063
|
+
"name": "--cdr-toast-border-left-color-warning",
|
|
5064
|
+
"defaultValue": "--cdr-color-border-message-warning-01",
|
|
5065
|
+
"description": "Warning border-left color of the cdr-toast"
|
|
5066
|
+
},
|
|
5067
|
+
{
|
|
5068
|
+
"name": "--cdr-toast-icon-left-background-color-success",
|
|
5069
|
+
"defaultValue": "--cdr-color-background-message-success-02",
|
|
5070
|
+
"description": "Success background color of the cdr-toast icon-left"
|
|
5071
|
+
},
|
|
5072
|
+
{
|
|
5073
|
+
"name": "--cdr-toast-icon-left-fill-success",
|
|
5074
|
+
"defaultValue": "--cdr-color-icon-message-success",
|
|
5075
|
+
"description": "Success fill color of the cdr-toast icon-left"
|
|
5076
|
+
},
|
|
5077
|
+
{
|
|
5078
|
+
"name": "--cdr-toast-border-left-color-success",
|
|
5079
|
+
"defaultValue": "--cdr-color-border-message-success-01",
|
|
5080
|
+
"description": "Success border-left color of the cdr-toast"
|
|
5081
|
+
},
|
|
5082
|
+
{
|
|
5083
|
+
"name": "--cdr-toast-icon-left-background-color-error",
|
|
5084
|
+
"defaultValue": "--cdr-color-background-message-error-02",
|
|
5085
|
+
"description": "Error background color of the cdr-toast icon-left"
|
|
5086
|
+
},
|
|
5087
|
+
{
|
|
5088
|
+
"name": "--cdr-toast-icon-left-fill-error",
|
|
5089
|
+
"defaultValue": "--cdr-color-icon-message-error",
|
|
5090
|
+
"description": "Error fill color of the cdr-toast icon-left"
|
|
5091
|
+
},
|
|
5092
|
+
{
|
|
5093
|
+
"name": "--cdr-toast-border-left-color-error",
|
|
5094
|
+
"defaultValue": "--cdr-color-border-message-error-01",
|
|
5095
|
+
"description": "Error border-left color of the cdr-toast"
|
|
3063
5096
|
},
|
|
3064
5097
|
{
|
|
3065
|
-
"name": "
|
|
3066
|
-
"
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
"slots": [
|
|
5098
|
+
"name": "--cdr-toast-background-color-default",
|
|
5099
|
+
"defaultValue": "--cdr-color-background-message-default-01",
|
|
5100
|
+
"description": "Default background color of cdr-toast"
|
|
5101
|
+
},
|
|
3070
5102
|
{
|
|
3071
|
-
"name": "
|
|
3072
|
-
"
|
|
5103
|
+
"name": "--cdr-toast-outline-color-default",
|
|
5104
|
+
"defaultValue": "--cdr-color-border-message-default-02",
|
|
5105
|
+
"description": "Default outline color of cdr-toast"
|
|
3073
5106
|
},
|
|
3074
5107
|
{
|
|
3075
|
-
"name": "
|
|
3076
|
-
"
|
|
5108
|
+
"name": "--cdr-toast-background-color-info",
|
|
5109
|
+
"defaultValue": "--cdr-color-background-message-info-01",
|
|
5110
|
+
"description": "Info background color of cdr-toast"
|
|
3077
5111
|
},
|
|
3078
5112
|
{
|
|
3079
|
-
"name": "
|
|
5113
|
+
"name": "--cdr-toast-background-color-success",
|
|
5114
|
+
"defaultValue": "--cdr-color-background-message-success-01",
|
|
5115
|
+
"description": "Success background color of cdr-toast"
|
|
5116
|
+
},
|
|
5117
|
+
{
|
|
5118
|
+
"name": "--cdr-toast-outline-color-success",
|
|
5119
|
+
"defaultValue": "--cdr-color-border-message-success-02",
|
|
5120
|
+
"description": "Success outline color of cdr-toast"
|
|
5121
|
+
},
|
|
5122
|
+
{
|
|
5123
|
+
"name": "--cdr-toast-background-color-warning",
|
|
5124
|
+
"defaultValue": "--cdr-color-background-message-warning-01",
|
|
5125
|
+
"description": "Warning background color of cdr-toast"
|
|
5126
|
+
},
|
|
5127
|
+
{
|
|
5128
|
+
"name": "--cdr-toast-outline-color-warning",
|
|
5129
|
+
"defaultValue": "--cdr-color-border-message-warning-02",
|
|
5130
|
+
"description": "Warning outline color of cdr-toast"
|
|
5131
|
+
},
|
|
5132
|
+
{
|
|
5133
|
+
"name": "--cdr-toast-background-color-error",
|
|
5134
|
+
"defaultValue": "--cdr-color-background-message-error-01",
|
|
5135
|
+
"description": "Error background color of cdr-toast"
|
|
5136
|
+
},
|
|
5137
|
+
{
|
|
5138
|
+
"name": "--cdr-toast-outline-color-error",
|
|
5139
|
+
"defaultValue": "--cdr-color-border-message-error-02",
|
|
5140
|
+
"description": "Error outline color of cdr-toast"
|
|
3080
5141
|
}
|
|
3081
|
-
],
|
|
3082
|
-
"sourceFiles": [
|
|
3083
|
-
"./src/components/toast/CdrToast.vue"
|
|
3084
5142
|
]
|
|
3085
5143
|
},
|
|
3086
|
-
"
|
|
5144
|
+
"CdrToggleGroup": {
|
|
5145
|
+
"name": "CdrToggleGroup",
|
|
3087
5146
|
"exportName": "default",
|
|
3088
|
-
"displayName": "
|
|
5147
|
+
"displayName": "CdrToggleGroup",
|
|
3089
5148
|
"description": "",
|
|
3090
5149
|
"tags": {},
|
|
3091
5150
|
"props": [
|
|
3092
5151
|
{
|
|
3093
|
-
"name": "
|
|
3094
|
-
"
|
|
3095
|
-
|
|
3096
|
-
|
|
5152
|
+
"name": "modelValue",
|
|
5153
|
+
"tags": {
|
|
5154
|
+
"ignore": [
|
|
5155
|
+
{
|
|
5156
|
+
"description": true,
|
|
5157
|
+
"title": "ignore"
|
|
5158
|
+
}
|
|
5159
|
+
]
|
|
3097
5160
|
},
|
|
3098
|
-
"defaultValue": {
|
|
3099
|
-
"func": false,
|
|
3100
|
-
"value": "'240px'"
|
|
3101
|
-
}
|
|
3102
|
-
},
|
|
3103
|
-
{
|
|
3104
|
-
"name": "activeTab",
|
|
3105
|
-
"description": "Sets the index of the tab that should be active on initial page load. Note that this property is zero-indexed.",
|
|
3106
5161
|
"type": {
|
|
3107
|
-
"name": "number"
|
|
5162
|
+
"name": "string|number|boolean|object|array"
|
|
3108
5163
|
},
|
|
3109
|
-
"
|
|
3110
|
-
"func": false,
|
|
3111
|
-
"value": "0"
|
|
3112
|
-
}
|
|
3113
|
-
},
|
|
3114
|
-
{
|
|
3115
|
-
"name": "modifier",
|
|
3116
|
-
"description": "Modifies the style variants for this component",
|
|
3117
|
-
"tags": {},
|
|
3118
|
-
"values": [
|
|
3119
|
-
"centered",
|
|
3120
|
-
"compact",
|
|
3121
|
-
"full-width",
|
|
3122
|
-
"no-border"
|
|
3123
|
-
],
|
|
3124
|
-
"type": {
|
|
3125
|
-
"name": "string"
|
|
3126
|
-
}
|
|
5164
|
+
"required": true
|
|
3127
5165
|
},
|
|
3128
5166
|
{
|
|
3129
5167
|
"name": "size",
|
|
3130
|
-
"description": "
|
|
5168
|
+
"description": "Sets toggle button size",
|
|
3131
5169
|
"tags": {
|
|
3132
5170
|
"demoSelectMultiple": [
|
|
3133
5171
|
{
|
|
3134
|
-
"description": "
|
|
5172
|
+
"description": "false",
|
|
3135
5173
|
"title": "demoSelectMultiple"
|
|
3136
5174
|
}
|
|
3137
5175
|
]
|
|
3138
5176
|
},
|
|
3139
5177
|
"values": [
|
|
3140
|
-
"
|
|
5178
|
+
"medium",
|
|
5179
|
+
"large"
|
|
3141
5180
|
],
|
|
3142
5181
|
"type": {
|
|
3143
5182
|
"name": "string"
|
|
5183
|
+
},
|
|
5184
|
+
"defaultValue": {
|
|
5185
|
+
"func": false,
|
|
5186
|
+
"value": "'medium'"
|
|
3144
5187
|
}
|
|
5188
|
+
}
|
|
5189
|
+
],
|
|
5190
|
+
"events": [
|
|
5191
|
+
{
|
|
5192
|
+
"name": "update:modelValue",
|
|
5193
|
+
"description": "Event emitted by v-model",
|
|
5194
|
+
"properties": [
|
|
5195
|
+
{
|
|
5196
|
+
"type": {
|
|
5197
|
+
"names": [
|
|
5198
|
+
"mixed"
|
|
5199
|
+
]
|
|
5200
|
+
},
|
|
5201
|
+
"name": "modelValue"
|
|
5202
|
+
}
|
|
5203
|
+
],
|
|
5204
|
+
"tags": [
|
|
5205
|
+
{
|
|
5206
|
+
"title": "param",
|
|
5207
|
+
"type": {
|
|
5208
|
+
"name": "mixed"
|
|
5209
|
+
},
|
|
5210
|
+
"name": "modelValue"
|
|
5211
|
+
}
|
|
5212
|
+
]
|
|
5213
|
+
}
|
|
5214
|
+
],
|
|
5215
|
+
"slots": [
|
|
5216
|
+
{
|
|
5217
|
+
"name": "default",
|
|
5218
|
+
"description": "CdrToggleGroup content (CdrToggleButton components)"
|
|
5219
|
+
}
|
|
5220
|
+
],
|
|
5221
|
+
"sourceFiles": [
|
|
5222
|
+
"./src/components/toggleButton/CdrToggleGroup.vue"
|
|
5223
|
+
],
|
|
5224
|
+
"UIProperties": [
|
|
5225
|
+
{
|
|
5226
|
+
"name": "--cdr-toggle-group-border-color",
|
|
5227
|
+
"defaultValue": "--cdr-color-border-primary",
|
|
5228
|
+
"description": "Border color of the cdr-toggle-group"
|
|
3145
5229
|
},
|
|
3146
5230
|
{
|
|
3147
|
-
"name": "
|
|
3148
|
-
"
|
|
5231
|
+
"name": "--cdr-toggle-group-background-color-default-rest",
|
|
5232
|
+
"defaultValue": "--cdr-color-background-toggle-group-default-rest",
|
|
5233
|
+
"description": "Default background color of the cdr-toggle-group"
|
|
5234
|
+
}
|
|
5235
|
+
]
|
|
5236
|
+
},
|
|
5237
|
+
"CdrToggleButton": {
|
|
5238
|
+
"name": "CdrToggleButton",
|
|
5239
|
+
"description": "Permits switching two or more options on and off",
|
|
5240
|
+
"tags": {},
|
|
5241
|
+
"exportName": "default",
|
|
5242
|
+
"displayName": "CdrToggleButton",
|
|
5243
|
+
"props": [
|
|
5244
|
+
{
|
|
5245
|
+
"name": "toggleValue",
|
|
5246
|
+
"description": "Sets the value and aria-label for the toggle button. Display can be overridden using default slot",
|
|
3149
5247
|
"type": {
|
|
3150
5248
|
"name": "string"
|
|
3151
5249
|
},
|
|
3152
|
-
"
|
|
3153
|
-
"func": false,
|
|
3154
|
-
"value": "CdrColorBackgroundPrimary"
|
|
3155
|
-
}
|
|
5250
|
+
"required": true
|
|
3156
5251
|
}
|
|
3157
5252
|
],
|
|
3158
5253
|
"slots": [
|
|
3159
5254
|
{
|
|
3160
5255
|
"name": "default",
|
|
3161
|
-
"description": "
|
|
5256
|
+
"description": "CdrToggleButton label content"
|
|
3162
5257
|
}
|
|
3163
5258
|
],
|
|
3164
5259
|
"sourceFiles": [
|
|
3165
|
-
"./src/components/
|
|
5260
|
+
"./src/components/toggleButton/CdrToggleButton.vue"
|
|
5261
|
+
],
|
|
5262
|
+
"UIProperties": [
|
|
5263
|
+
{
|
|
5264
|
+
"name": "--cdr-toggle-button-color-default-rest",
|
|
5265
|
+
"defaultValue": "--cdr-color-text-toggle-button-default-rest",
|
|
5266
|
+
"description": "Default text color of the cdr-toggle-button"
|
|
5267
|
+
},
|
|
5268
|
+
{
|
|
5269
|
+
"name": "--cdr-toggle-button-background-color-default-rest",
|
|
5270
|
+
"defaultValue": "--cdr-color-background-toggle-button-default-rest",
|
|
5271
|
+
"description": "Default background color of the cdr-toggle-button"
|
|
5272
|
+
},
|
|
5273
|
+
{
|
|
5274
|
+
"name": "--cdr-toggle-button-border-color-default-focus",
|
|
5275
|
+
"defaultValue": "--cdr-color-border-toggle-button-default-focus",
|
|
5276
|
+
"description": "Focus border color of the cdr-toggle-button"
|
|
5277
|
+
},
|
|
5278
|
+
{
|
|
5279
|
+
"name": "--cdr-toggle-button-background-color-default-focus",
|
|
5280
|
+
"defaultValue": "--cdr-color-background-toggle-button-default-focus",
|
|
5281
|
+
"description": "Focus background color of the cdr-toggle-button"
|
|
5282
|
+
},
|
|
5283
|
+
{
|
|
5284
|
+
"name": "--cdr-toggle-button-icon-fill-default",
|
|
5285
|
+
"defaultValue": "--cdr-color-icon-default",
|
|
5286
|
+
"description": "Default fill color of the cdr-toggle-button's svg"
|
|
5287
|
+
},
|
|
5288
|
+
{
|
|
5289
|
+
"name": "--cdr-toggle-button-background-color-default-selected-rest",
|
|
5290
|
+
"defaultValue": "--cdr-color-background-toggle-button-default-selected-rest",
|
|
5291
|
+
"description": "Selected background color of the cdr-toggle-button at rest"
|
|
5292
|
+
},
|
|
5293
|
+
{
|
|
5294
|
+
"name": "--cdr-toggle-button-border-color-default-selected-rest",
|
|
5295
|
+
"defaultValue": "--cdr-color-border-toggle-button-default-selected-rest",
|
|
5296
|
+
"description": "Selected border color of the cdr-toggle-button at rest"
|
|
5297
|
+
},
|
|
5298
|
+
{
|
|
5299
|
+
"name": "--cdr-toggle-button-icon-fill-selected-rest",
|
|
5300
|
+
"defaultValue": "--cdr-color-icon-emphasis",
|
|
5301
|
+
"description": "Selected fill color of the cdr-toggle-button's svg at rest"
|
|
5302
|
+
},
|
|
5303
|
+
{
|
|
5304
|
+
"name": "--cdr-toggle-button-border-color-default-selected-focus",
|
|
5305
|
+
"defaultValue": "--cdr-color-border-toggle-button-default-selected-focus",
|
|
5306
|
+
"description": "Selected border color of the cdr-toggle-button on focus"
|
|
5307
|
+
},
|
|
5308
|
+
{
|
|
5309
|
+
"name": "--cdr-toggle-button-background-color-default-selected-hover",
|
|
5310
|
+
"defaultValue": "--cdr-color-background-toggle-button-default-selected-hover",
|
|
5311
|
+
"description": "Selected background color of the cdr-toggle-button on hover"
|
|
5312
|
+
},
|
|
5313
|
+
{
|
|
5314
|
+
"name": "--cdr-toggle-button-background-color-default-hover",
|
|
5315
|
+
"defaultValue": "--cdr-color-background-toggle-button-default-hover",
|
|
5316
|
+
"description": "Background color of the cdr-toggle-button on hover"
|
|
5317
|
+
},
|
|
5318
|
+
{
|
|
5319
|
+
"name": "--cdr-toggle-button-border-color-hover-focus",
|
|
5320
|
+
"defaultValue": "--cdr-color-border-toggle-button-default-selected-focus",
|
|
5321
|
+
"description": "Hover border color of the cdr-toggle-button on focus"
|
|
5322
|
+
}
|
|
3166
5323
|
]
|
|
3167
5324
|
},
|
|
3168
5325
|
"CdrTooltip": {
|
|
5326
|
+
"name": "CdrTooltip",
|
|
5327
|
+
"description": "Floating label used to clarify interface actions",
|
|
5328
|
+
"tags": {},
|
|
3169
5329
|
"exportName": "default",
|
|
3170
5330
|
"displayName": "CdrTooltip",
|
|
3171
|
-
"description": "",
|
|
3172
|
-
"tags": {},
|
|
3173
5331
|
"props": [
|
|
3174
5332
|
{
|
|
3175
5333
|
"name": "position",
|
|
@@ -3266,102 +5424,33 @@
|
|
|
3266
5424
|
],
|
|
3267
5425
|
"sourceFiles": [
|
|
3268
5426
|
"./src/components/tooltip/CdrTooltip.vue"
|
|
3269
|
-
]
|
|
3270
|
-
|
|
3271
|
-
"CdrTable": {
|
|
3272
|
-
"exportName": "default",
|
|
3273
|
-
"displayName": "CdrTable",
|
|
3274
|
-
"description": "",
|
|
3275
|
-
"tags": {},
|
|
3276
|
-
"props": [
|
|
3277
|
-
{
|
|
3278
|
-
"name": "striped",
|
|
3279
|
-
"description": "Sets row colors to alternate between darker and lighter backgrounds.\nStriping will not apply when `border` is true",
|
|
3280
|
-
"type": {
|
|
3281
|
-
"name": "boolean"
|
|
3282
|
-
},
|
|
3283
|
-
"defaultValue": {
|
|
3284
|
-
"func": false,
|
|
3285
|
-
"value": false
|
|
3286
|
-
}
|
|
3287
|
-
},
|
|
5427
|
+
],
|
|
5428
|
+
"UIProperties": [
|
|
3288
5429
|
{
|
|
3289
|
-
"name": "
|
|
3290
|
-
"
|
|
3291
|
-
"
|
|
3292
|
-
"name": "boolean"
|
|
3293
|
-
},
|
|
3294
|
-
"defaultValue": {
|
|
3295
|
-
"func": false,
|
|
3296
|
-
"value": true
|
|
3297
|
-
}
|
|
5430
|
+
"name": "--cdr-popup-background-color-default",
|
|
5431
|
+
"defaultValue": "--cdr-color-background-tooltip-default",
|
|
5432
|
+
"description": "Background color of the cdr-popup"
|
|
3298
5433
|
},
|
|
3299
5434
|
{
|
|
3300
|
-
"name": "
|
|
3301
|
-
"
|
|
3302
|
-
"
|
|
3303
|
-
"name": "boolean|string"
|
|
3304
|
-
},
|
|
3305
|
-
"defaultValue": {
|
|
3306
|
-
"func": false,
|
|
3307
|
-
"value": true
|
|
3308
|
-
}
|
|
5435
|
+
"name": "--cdr-popup-text-color-default",
|
|
5436
|
+
"defaultValue": "--cdr-color-text-tooltip-default",
|
|
5437
|
+
"description": "Text color of the cdr-popup"
|
|
3309
5438
|
},
|
|
3310
5439
|
{
|
|
3311
|
-
"name": "
|
|
3312
|
-
"
|
|
3313
|
-
"
|
|
3314
|
-
"name": "boolean"
|
|
3315
|
-
},
|
|
3316
|
-
"defaultValue": {
|
|
3317
|
-
"func": false,
|
|
3318
|
-
"value": true
|
|
3319
|
-
}
|
|
5440
|
+
"name": "--cdr-popup-border-color-default",
|
|
5441
|
+
"defaultValue": "--cdr-color-border-tooltip-default",
|
|
5442
|
+
"description": "Border color of the cdr-popup"
|
|
3320
5443
|
},
|
|
3321
5444
|
{
|
|
3322
|
-
"name": "
|
|
3323
|
-
"
|
|
3324
|
-
"
|
|
3325
|
-
"name": "boolean"
|
|
3326
|
-
},
|
|
3327
|
-
"defaultValue": {
|
|
3328
|
-
"func": false,
|
|
3329
|
-
"value": false
|
|
3330
|
-
}
|
|
5445
|
+
"name": "--cdr-popup-arrow-border-bottom-color",
|
|
5446
|
+
"defaultValue": "--cdr-color-border-tooltip-default",
|
|
5447
|
+
"description": "Border color of the cdr-popup arrow"
|
|
3331
5448
|
},
|
|
3332
5449
|
{
|
|
3333
|
-
"name": "
|
|
3334
|
-
"
|
|
3335
|
-
"
|
|
3336
|
-
"demoSelectMultiple": [
|
|
3337
|
-
{
|
|
3338
|
-
"description": "false",
|
|
3339
|
-
"title": "demoSelectMultiple"
|
|
3340
|
-
}
|
|
3341
|
-
]
|
|
3342
|
-
},
|
|
3343
|
-
"values": [
|
|
3344
|
-
"small",
|
|
3345
|
-
"medium",
|
|
3346
|
-
"large"
|
|
3347
|
-
],
|
|
3348
|
-
"type": {
|
|
3349
|
-
"name": "string"
|
|
3350
|
-
},
|
|
3351
|
-
"defaultValue": {
|
|
3352
|
-
"func": false,
|
|
3353
|
-
"value": "'medium'"
|
|
3354
|
-
}
|
|
3355
|
-
}
|
|
3356
|
-
],
|
|
3357
|
-
"slots": [
|
|
3358
|
-
{
|
|
3359
|
-
"name": "default",
|
|
3360
|
-
"description": "CdrTable content (Valid table elements <th>, <tbody>, <tr>, <td>, etc.)"
|
|
5450
|
+
"name": "--cdr-popup-arrow-background-color",
|
|
5451
|
+
"defaultValue": "--cdr-color-background-tooltip-default",
|
|
5452
|
+
"description": "Background color of the cdr-popup arrow"
|
|
3361
5453
|
}
|
|
3362
|
-
],
|
|
3363
|
-
"sourceFiles": [
|
|
3364
|
-
"./src/components/table/CdrTable.vue"
|
|
3365
5454
|
]
|
|
3366
5455
|
}
|
|
3367
5456
|
}
|