@rei/cedar 13.5.0-alpha.1 → 13.5.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cedar-compiled.css +1031 -1031
- package/dist/component-docgen.json +3298 -0
- package/dist/icon-component-docgen.json +4094 -0
- package/dist/src/component-docgen.json.mjs +2421 -0
- package/dist/src/components/accordion/CdrAccordion.vue.mjs +13 -1
- package/dist/src/components/accordion/CdrAccordionGroup.vue.mjs +4 -0
- package/dist/src/components/accordion/styles/CdrAccordion.module.scss.mjs +29 -29
- package/dist/src/components/accordion/styles/CdrAccordionGroup.module.scss.mjs +2 -2
- package/dist/src/components/banner/CdrBanner.vue.mjs +5 -0
- package/dist/src/components/banner/styles/CdrBanner.module.scss.mjs +14 -14
- package/dist/src/components/breadcrumb/CdrBreadcrumb.vue.mjs +21 -8
- package/dist/src/components/breadcrumb/styles/CdrBreadcrumb.module.scss.mjs +7 -7
- package/dist/src/components/button/CdrButton.vue.mjs +29 -0
- package/dist/src/components/button/styles/CdrButton.module.scss.mjs +31 -31
- package/dist/src/components/caption/CdrCaption.vue.mjs +8 -0
- package/dist/src/components/caption/styles/CdrCaption.module.scss.mjs +2 -2
- package/dist/src/components/card/CdrCard.vue.mjs +3 -0
- package/dist/src/components/card/styles/CdrCard.module.scss.mjs +1 -1
- package/dist/src/components/checkbox/CdrCheckbox.vue.mjs +39 -21
- package/dist/src/components/checkbox/styles/CdrCheckbox.module.scss.mjs +25 -25
- package/dist/src/components/chip/CdrChipGroup.vue.mjs +6 -0
- package/dist/src/components/chip/styles/CdrChip.module.scss.mjs +4 -4
- package/dist/src/components/chip/styles/CdrChipGroup.module.scss.mjs +4 -4
- package/dist/src/components/container/CdrContainer.vue.mjs +6 -1
- package/dist/src/components/container/styles/CdrContainer.module.scss.mjs +2 -2
- package/dist/src/components/formError/styles/CdrFormError.module.scss.mjs +2 -2
- package/dist/src/components/formGroup/styles/CdrFormGroup.module.scss.mjs +8 -8
- package/dist/src/components/grid/CdrGrid.vue.mjs +4 -3
- package/dist/src/components/grid/styles/CdrGrid.module.scss.mjs +21 -21
- package/dist/src/components/icon/CdrIcon.vue.mjs +8 -5
- package/dist/src/components/icon/styles/CdrIcon.module.scss.mjs +12 -12
- package/dist/src/components/image/CdrImg.vue.mjs +16 -5
- package/dist/src/components/image/styles/CdrImg.module.scss.mjs +8 -8
- package/dist/src/components/input/CdrInput.vue.mjs +38 -10
- package/dist/src/components/input/styles/CdrInput.module.scss.mjs +32 -32
- package/dist/src/components/labelStandalone/styles/CdrLabelStandalone.module.scss.mjs +12 -12
- package/dist/src/components/labelWrapper/styles/CdrLabelWrapper.module.scss.mjs +23 -23
- package/dist/src/components/link/CdrLink.vue.mjs +14 -0
- package/dist/src/components/link/styles/CdrLink.module.scss.mjs +3 -3
- package/dist/src/components/list/CdrList.vue.mjs +7 -1
- package/dist/src/components/list/styles/CdrList.module.scss.mjs +5 -5
- package/dist/src/components/modal/CdrModal.vue.mjs +28 -1
- package/dist/src/components/modal/styles/CdrModal.module.scss.mjs +12 -12
- package/dist/src/components/pagination/CdrPagination.vue.mjs +53 -24
- package/dist/src/components/pagination/styles/CdrPagination.module.scss.mjs +53 -53
- package/dist/src/components/popover/CdrPopover.vue.mjs +33 -11
- package/dist/src/components/popover/styles/CdrPopover.module.scss.mjs +63 -63
- package/dist/src/components/popup/styles/CdrPopup.module.scss.mjs +14 -14
- package/dist/src/components/quote/CdrQuote.vue.mjs +11 -2
- package/dist/src/components/quote/styles/CdrQuote.module.scss.mjs +4 -4
- package/dist/src/components/radio/CdrRadio.vue.mjs +26 -7
- package/dist/src/components/radio/styles/CdrRadio.module.scss.mjs +25 -25
- package/dist/src/components/rating/CdrRating.vue.mjs +8 -3
- package/dist/src/components/rating/styles/CdrRating.module.scss.mjs +28 -28
- package/dist/src/components/select/CdrSelect.vue.mjs +41 -15
- package/dist/src/components/select/styles/CdrSelect.module.scss.mjs +42 -42
- package/dist/src/components/skeleton/CdrSkeleton.vue.mjs +6 -0
- package/dist/src/components/skeleton/CdrSkeletonBone.vue.mjs +5 -0
- package/dist/src/components/skeleton/styles/CdrSkeleton.module.scss.mjs +1 -1
- package/dist/src/components/skeleton/styles/CdrSkeletonBone.module.scss.mjs +7 -7
- package/dist/src/components/switch/CdrSwitch.vue.mjs +21 -1
- package/dist/src/components/switch/styles/CdrSwitch.module.scss.mjs +8 -8
- package/dist/src/components/table/CdrTable.vue.mjs +12 -0
- package/dist/src/components/table/styles/CdrTable.module.scss.mjs +13 -13
- package/dist/src/components/tabs/CdrTabPanel.vue.mjs +22 -11
- package/dist/src/components/tabs/CdrTabs.vue.mjs +20 -0
- package/dist/src/components/tabs/styles/CdrTabPanel.module.scss.mjs +5 -5
- package/dist/src/components/tabs/styles/CdrTabs.module.scss.mjs +28 -28
- package/dist/src/components/text/CdrText.vue.mjs +23 -17
- package/dist/src/components/text/styles/CdrText.module.scss.mjs +1 -1
- package/dist/src/components/toast/CdrToast.vue.mjs +17 -1
- package/dist/src/components/toast/styles/CdrToast.module.scss.mjs +57 -57
- package/dist/src/components/toggleButton/CdrToggleButton.vue.mjs +3 -0
- package/dist/src/components/toggleButton/CdrToggleGroup.vue.mjs +13 -1
- package/dist/src/components/toggleButton/styles/CdrToggleButton.module.scss.mjs +2 -2
- package/dist/src/components/toggleButton/styles/CdrToggleGroup.module.scss.mjs +5 -5
- package/dist/src/components/tooltip/CdrTooltip.vue.mjs +22 -1
- package/dist/src/components/tooltip/styles/CdrTooltip.module.scss.mjs +16 -16
- package/dist/src/lib.mjs +376 -374
- package/dist/style/cdr-accordion-group.css +1 -1
- package/dist/style/cdr-accordion.css +1 -1
- package/dist/style/cdr-banner.css +1 -1
- package/dist/style/cdr-breadcrumb.css +1 -1
- package/dist/style/cdr-button.css +1 -1
- package/dist/style/cdr-caption.css +1 -1
- package/dist/style/cdr-card.css +1 -1
- package/dist/style/cdr-checkbox.css +1 -1
- package/dist/style/cdr-chip-group.css +1 -1
- package/dist/style/cdr-chip.css +1 -1
- package/dist/style/cdr-container.css +1 -1
- package/dist/style/cdr-form-error.css +1 -1
- package/dist/style/cdr-form-group.css +1 -1
- package/dist/style/cdr-grid.css +1 -1
- package/dist/style/cdr-icon.css +1 -1
- package/dist/style/cdr-img.css +1 -1
- package/dist/style/cdr-input.css +1 -1
- package/dist/style/cdr-label-standalone.css +1 -1
- package/dist/style/cdr-label-wrapper.css +1 -1
- package/dist/style/cdr-link.css +1 -1
- package/dist/style/cdr-list.css +1 -1
- package/dist/style/cdr-modal.css +1 -1
- package/dist/style/cdr-pagination.css +1 -1
- package/dist/style/cdr-popover.css +1 -1
- package/dist/style/cdr-popup.css +1 -1
- package/dist/style/cdr-quote.css +1 -1
- package/dist/style/cdr-radio.css +1 -1
- package/dist/style/cdr-rating.css +1 -1
- package/dist/style/cdr-select.css +1 -1
- package/dist/style/cdr-skeleton-bone.css +1 -1
- package/dist/style/cdr-skeleton.css +1 -1
- package/dist/style/cdr-switch.css +1 -1
- package/dist/style/cdr-tab-panel.css +1 -1
- package/dist/style/cdr-table.css +1 -1
- package/dist/style/cdr-tabs.css +1 -1
- package/dist/style/cdr-text.css +1 -1
- package/dist/style/cdr-toast.css +1 -1
- package/dist/style/cdr-toggle-button.css +1 -1
- package/dist/style/cdr-toggle-group.css +1 -1
- package/dist/style/cdr-tooltip.css +1 -1
- package/dist/style.css +1 -1
- package/package.json +5 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const c = {
|
|
2
|
-
"cdr-chip": "cdr-chip_13-5-0-alpha-
|
|
3
|
-
"cdr-chip__icon-left": "cdr-chip__icon-left_13-5-0-alpha-
|
|
4
|
-
"cdr-chip__icon-right": "cdr-chip__icon-right_13-5-0-alpha-
|
|
5
|
-
"cdr-chip__content": "cdr-chip__content_13-5-0-alpha-
|
|
2
|
+
"cdr-chip": "cdr-chip_13-5-0-alpha-2",
|
|
3
|
+
"cdr-chip__icon-left": "cdr-chip__icon-left_13-5-0-alpha-2",
|
|
4
|
+
"cdr-chip__icon-right": "cdr-chip__icon-right_13-5-0-alpha-2",
|
|
5
|
+
"cdr-chip__content": "cdr-chip__content_13-5-0-alpha-2"
|
|
6
6
|
};
|
|
7
7
|
export {
|
|
8
8
|
c as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const p = {
|
|
2
|
-
"cdr-chip-group": "cdr-chip-group_13-5-0-alpha-
|
|
3
|
-
"cdr-chip-group__content": "cdr-chip-group__content_13-5-0-alpha-
|
|
4
|
-
"cdr-chip-group__legend--hidden": "cdr-chip-group__legend--hidden_13-5-0-alpha-
|
|
5
|
-
"cdr-chip-group__legend": "cdr-chip-group__legend_13-5-0-alpha-
|
|
2
|
+
"cdr-chip-group": "cdr-chip-group_13-5-0-alpha-2",
|
|
3
|
+
"cdr-chip-group__content": "cdr-chip-group__content_13-5-0-alpha-2",
|
|
4
|
+
"cdr-chip-group__legend--hidden": "cdr-chip-group__legend--hidden_13-5-0-alpha-2",
|
|
5
|
+
"cdr-chip-group__legend": "cdr-chip-group__legend_13-5-0-alpha-2"
|
|
6
6
|
};
|
|
7
7
|
export {
|
|
8
8
|
p as default
|
|
@@ -6,11 +6,16 @@ import C from "../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
6
6
|
const $ = t({
|
|
7
7
|
name: "CdrContainer",
|
|
8
8
|
props: {
|
|
9
|
-
/**
|
|
9
|
+
/** Sets the HTML tag for the container element */
|
|
10
10
|
tag: {
|
|
11
11
|
type: String,
|
|
12
12
|
default: "div"
|
|
13
13
|
},
|
|
14
|
+
/**
|
|
15
|
+
* Controls whether container is static or fluid width.
|
|
16
|
+
* @demoSelectMultiple false
|
|
17
|
+
* @values static, fluid
|
|
18
|
+
*/
|
|
14
19
|
modifier: {
|
|
15
20
|
type: String,
|
|
16
21
|
default: "static",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const a = {
|
|
2
|
-
"cdr-container": "cdr-container_13-5-0-alpha-
|
|
3
|
-
"cdr-container--static": "cdr-container--static_13-5-0-alpha-
|
|
2
|
+
"cdr-container": "cdr-container_13-5-0-alpha-2",
|
|
3
|
+
"cdr-container--static": "cdr-container--static_13-5-0-alpha-2"
|
|
4
4
|
};
|
|
5
5
|
export {
|
|
6
6
|
a as default
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const r = {
|
|
2
|
-
"cdr-form-error": "cdr-form-error_13-5-0-alpha-
|
|
3
|
-
"cdr-form-error__icon": "cdr-form-error__icon_13-5-0-alpha-
|
|
2
|
+
"cdr-form-error": "cdr-form-error_13-5-0-alpha-2",
|
|
3
|
+
"cdr-form-error__icon": "cdr-form-error__icon_13-5-0-alpha-2"
|
|
4
4
|
};
|
|
5
5
|
export {
|
|
6
6
|
r as default
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
const r = {
|
|
2
|
-
"cdr-form-error": "cdr-form-error_13-5-0-alpha-
|
|
3
|
-
"cdr-form-error__icon": "cdr-form-error__icon_13-5-0-alpha-
|
|
4
|
-
"cdr-form-group": "cdr-form-group_13-5-0-alpha-
|
|
5
|
-
"cdr-form-group--error": "cdr-form-group--error_13-5-0-alpha-
|
|
6
|
-
"cdr-form-group--disabled": "cdr-form-group--disabled_13-5-0-alpha-
|
|
7
|
-
"cdr-form-group__optional": "cdr-form-group__optional_13-5-0-alpha-
|
|
8
|
-
"cdr-form-group__required": "cdr-form-group__required_13-5-0-alpha-
|
|
9
|
-
"cdr-form-group__wrapper": "cdr-form-group__wrapper_13-5-0-alpha-
|
|
2
|
+
"cdr-form-error": "cdr-form-error_13-5-0-alpha-2",
|
|
3
|
+
"cdr-form-error__icon": "cdr-form-error__icon_13-5-0-alpha-2",
|
|
4
|
+
"cdr-form-group": "cdr-form-group_13-5-0-alpha-2",
|
|
5
|
+
"cdr-form-group--error": "cdr-form-group--error_13-5-0-alpha-2",
|
|
6
|
+
"cdr-form-group--disabled": "cdr-form-group--disabled_13-5-0-alpha-2",
|
|
7
|
+
"cdr-form-group__optional": "cdr-form-group__optional_13-5-0-alpha-2",
|
|
8
|
+
"cdr-form-group__required": "cdr-form-group__required_13-5-0-alpha-2",
|
|
9
|
+
"cdr-form-group__wrapper": "cdr-form-group__wrapper_13-5-0-alpha-2"
|
|
10
10
|
};
|
|
11
11
|
export {
|
|
12
12
|
r as default
|
|
@@ -8,15 +8,16 @@ const y = r({
|
|
|
8
8
|
name: "CdrGrid",
|
|
9
9
|
props: {
|
|
10
10
|
/**
|
|
11
|
-
* Defines gutter size.
|
|
12
|
-
*
|
|
13
|
-
*
|
|
11
|
+
* Defines gutter size. Also accepts responsive values with `@breakpoint`: "none@md"
|
|
12
|
+
* @demoSelectMultiple false
|
|
13
|
+
* @values none, small, medium, large
|
|
14
14
|
*/
|
|
15
15
|
gutter: {
|
|
16
16
|
type: String,
|
|
17
17
|
validator: (e) => c(e, ["none", "small", "medium", "large"]),
|
|
18
18
|
default: "medium@xs medium@sm large@md large@lg"
|
|
19
19
|
},
|
|
20
|
+
/** Sets the HTML tag for the grid element */
|
|
20
21
|
tag: {
|
|
21
22
|
type: String,
|
|
22
23
|
default: "div"
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
const r = {
|
|
2
|
-
"cdr-grid": "cdr-grid_13-5-0-alpha-
|
|
3
|
-
"cdr-grid--gutter-none": "cdr-grid--gutter-none_13-5-0-alpha-
|
|
4
|
-
"cdr-grid--gutter-small": "cdr-grid--gutter-small_13-5-0-alpha-
|
|
5
|
-
"cdr-grid--gutter-medium": "cdr-grid--gutter-medium_13-5-0-alpha-
|
|
6
|
-
"cdr-grid--gutter-large": "cdr-grid--gutter-large_13-5-0-alpha-
|
|
7
|
-
"cdr-grid--gutter-none@xs": "cdr-grid--gutter-none@xs_13-5-0-alpha-
|
|
8
|
-
"cdr-grid--gutter-small@xs": "cdr-grid--gutter-small@xs_13-5-0-alpha-
|
|
9
|
-
"cdr-grid--gutter-medium@xs": "cdr-grid--gutter-medium@xs_13-5-0-alpha-
|
|
10
|
-
"cdr-grid--gutter-large@xs": "cdr-grid--gutter-large@xs_13-5-0-alpha-
|
|
11
|
-
"cdr-grid--gutter-none@sm": "cdr-grid--gutter-none@sm_13-5-0-alpha-
|
|
12
|
-
"cdr-grid--gutter-small@sm": "cdr-grid--gutter-small@sm_13-5-0-alpha-
|
|
13
|
-
"cdr-grid--gutter-medium@sm": "cdr-grid--gutter-medium@sm_13-5-0-alpha-
|
|
14
|
-
"cdr-grid--gutter-large@sm": "cdr-grid--gutter-large@sm_13-5-0-alpha-
|
|
15
|
-
"cdr-grid--gutter-none@md": "cdr-grid--gutter-none@md_13-5-0-alpha-
|
|
16
|
-
"cdr-grid--gutter-small@md": "cdr-grid--gutter-small@md_13-5-0-alpha-
|
|
17
|
-
"cdr-grid--gutter-medium@md": "cdr-grid--gutter-medium@md_13-5-0-alpha-
|
|
18
|
-
"cdr-grid--gutter-large@md": "cdr-grid--gutter-large@md_13-5-0-alpha-
|
|
19
|
-
"cdr-grid--gutter-none@lg": "cdr-grid--gutter-none@lg_13-5-0-alpha-
|
|
20
|
-
"cdr-grid--gutter-small@lg": "cdr-grid--gutter-small@lg_13-5-0-alpha-
|
|
21
|
-
"cdr-grid--gutter-medium@lg": "cdr-grid--gutter-medium@lg_13-5-0-alpha-
|
|
22
|
-
"cdr-grid--gutter-large@lg": "cdr-grid--gutter-large@lg_13-5-0-alpha-
|
|
2
|
+
"cdr-grid": "cdr-grid_13-5-0-alpha-2",
|
|
3
|
+
"cdr-grid--gutter-none": "cdr-grid--gutter-none_13-5-0-alpha-2",
|
|
4
|
+
"cdr-grid--gutter-small": "cdr-grid--gutter-small_13-5-0-alpha-2",
|
|
5
|
+
"cdr-grid--gutter-medium": "cdr-grid--gutter-medium_13-5-0-alpha-2",
|
|
6
|
+
"cdr-grid--gutter-large": "cdr-grid--gutter-large_13-5-0-alpha-2",
|
|
7
|
+
"cdr-grid--gutter-none@xs": "cdr-grid--gutter-none@xs_13-5-0-alpha-2",
|
|
8
|
+
"cdr-grid--gutter-small@xs": "cdr-grid--gutter-small@xs_13-5-0-alpha-2",
|
|
9
|
+
"cdr-grid--gutter-medium@xs": "cdr-grid--gutter-medium@xs_13-5-0-alpha-2",
|
|
10
|
+
"cdr-grid--gutter-large@xs": "cdr-grid--gutter-large@xs_13-5-0-alpha-2",
|
|
11
|
+
"cdr-grid--gutter-none@sm": "cdr-grid--gutter-none@sm_13-5-0-alpha-2",
|
|
12
|
+
"cdr-grid--gutter-small@sm": "cdr-grid--gutter-small@sm_13-5-0-alpha-2",
|
|
13
|
+
"cdr-grid--gutter-medium@sm": "cdr-grid--gutter-medium@sm_13-5-0-alpha-2",
|
|
14
|
+
"cdr-grid--gutter-large@sm": "cdr-grid--gutter-large@sm_13-5-0-alpha-2",
|
|
15
|
+
"cdr-grid--gutter-none@md": "cdr-grid--gutter-none@md_13-5-0-alpha-2",
|
|
16
|
+
"cdr-grid--gutter-small@md": "cdr-grid--gutter-small@md_13-5-0-alpha-2",
|
|
17
|
+
"cdr-grid--gutter-medium@md": "cdr-grid--gutter-medium@md_13-5-0-alpha-2",
|
|
18
|
+
"cdr-grid--gutter-large@md": "cdr-grid--gutter-large@md_13-5-0-alpha-2",
|
|
19
|
+
"cdr-grid--gutter-none@lg": "cdr-grid--gutter-none@lg_13-5-0-alpha-2",
|
|
20
|
+
"cdr-grid--gutter-small@lg": "cdr-grid--gutter-small@lg_13-5-0-alpha-2",
|
|
21
|
+
"cdr-grid--gutter-medium@lg": "cdr-grid--gutter-medium@lg_13-5-0-alpha-2",
|
|
22
|
+
"cdr-grid--gutter-large@lg": "cdr-grid--gutter-large@lg_13-5-0-alpha-2"
|
|
23
23
|
};
|
|
24
24
|
export {
|
|
25
25
|
r as default
|
|
@@ -8,13 +8,16 @@ const z = f({
|
|
|
8
8
|
name: "CdrIcon",
|
|
9
9
|
props: {
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
* Only on CdrIcon. Sets the href attribute for use with SVG symbol sprite (see @rei/cedar-icons).
|
|
12
|
+
*/
|
|
13
13
|
use: String,
|
|
14
14
|
/**
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
inheritColor:
|
|
15
|
+
* Sets icon fill to "inherit" so as to use parent/ancestor fill color.
|
|
16
|
+
*/
|
|
17
|
+
inheritColor: {
|
|
18
|
+
type: Boolean,
|
|
19
|
+
default: !1
|
|
20
|
+
},
|
|
18
21
|
size: {
|
|
19
22
|
type: String,
|
|
20
23
|
default: "medium",
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
const c = {
|
|
2
|
-
"cdr-icon": "cdr-icon_13-5-0-alpha-
|
|
3
|
-
"cdr-icon--small": "cdr-icon--small_13-5-0-alpha-
|
|
4
|
-
"cdr-icon--large": "cdr-icon--large_13-5-0-alpha-
|
|
5
|
-
"cdr-icon--small@xs": "cdr-icon--small@xs_13-5-0-alpha-
|
|
6
|
-
"cdr-icon--large@xs": "cdr-icon--large@xs_13-5-0-alpha-
|
|
7
|
-
"cdr-icon--small@sm": "cdr-icon--small@sm_13-5-0-alpha-
|
|
8
|
-
"cdr-icon--large@sm": "cdr-icon--large@sm_13-5-0-alpha-
|
|
9
|
-
"cdr-icon--small@md": "cdr-icon--small@md_13-5-0-alpha-
|
|
10
|
-
"cdr-icon--large@md": "cdr-icon--large@md_13-5-0-alpha-
|
|
11
|
-
"cdr-icon--small@lg": "cdr-icon--small@lg_13-5-0-alpha-
|
|
12
|
-
"cdr-icon--large@lg": "cdr-icon--large@lg_13-5-0-alpha-
|
|
13
|
-
"cdr-icon--inherit-color": "cdr-icon--inherit-color_13-5-0-alpha-
|
|
2
|
+
"cdr-icon": "cdr-icon_13-5-0-alpha-2",
|
|
3
|
+
"cdr-icon--small": "cdr-icon--small_13-5-0-alpha-2",
|
|
4
|
+
"cdr-icon--large": "cdr-icon--large_13-5-0-alpha-2",
|
|
5
|
+
"cdr-icon--small@xs": "cdr-icon--small@xs_13-5-0-alpha-2",
|
|
6
|
+
"cdr-icon--large@xs": "cdr-icon--large@xs_13-5-0-alpha-2",
|
|
7
|
+
"cdr-icon--small@sm": "cdr-icon--small@sm_13-5-0-alpha-2",
|
|
8
|
+
"cdr-icon--large@sm": "cdr-icon--large@sm_13-5-0-alpha-2",
|
|
9
|
+
"cdr-icon--small@md": "cdr-icon--small@md_13-5-0-alpha-2",
|
|
10
|
+
"cdr-icon--large@md": "cdr-icon--large@md_13-5-0-alpha-2",
|
|
11
|
+
"cdr-icon--small@lg": "cdr-icon--small@lg_13-5-0-alpha-2",
|
|
12
|
+
"cdr-icon--large@lg": "cdr-icon--large@lg_13-5-0-alpha-2",
|
|
13
|
+
"cdr-icon--inherit-color": "cdr-icon--inherit-color_13-5-0-alpha-2"
|
|
14
14
|
};
|
|
15
15
|
export {
|
|
16
16
|
c as default
|
|
@@ -8,21 +8,23 @@ const P = g({
|
|
|
8
8
|
inheritAttrs: !1,
|
|
9
9
|
props: {
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
* Image source url.
|
|
12
|
+
*/
|
|
13
13
|
src: {
|
|
14
14
|
type: String,
|
|
15
15
|
required: !0
|
|
16
16
|
},
|
|
17
17
|
/**
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
* Image alt text. Defaults to an empty string
|
|
19
|
+
*/
|
|
20
20
|
alt: {
|
|
21
21
|
type: String,
|
|
22
22
|
default: ""
|
|
23
23
|
},
|
|
24
24
|
/**
|
|
25
|
-
|
|
25
|
+
* Aspect ratio of the media container
|
|
26
|
+
* @demoSelectMultiple false
|
|
27
|
+
* @values auto, square, 1-2, 2-3, 3-4, 9-16, 2-1, 3-2, 4-3, 16-9
|
|
26
28
|
*/
|
|
27
29
|
ratio: {
|
|
28
30
|
type: String,
|
|
@@ -30,6 +32,8 @@ const P = g({
|
|
|
30
32
|
},
|
|
31
33
|
/**
|
|
32
34
|
* Requires a `ratio`. Area to crop the image overflow to. {left, center, right} {top, center, bottom}
|
|
35
|
+
* @demoSelectMultiple false
|
|
36
|
+
* @values left, x-center, right, top, y-center, bottom
|
|
33
37
|
*/
|
|
34
38
|
crop: {
|
|
35
39
|
type: String
|
|
@@ -46,11 +50,18 @@ const P = g({
|
|
|
46
50
|
containerClass: String,
|
|
47
51
|
/**
|
|
48
52
|
* Sets a border radius to an element {square, top, right, bottom, left}
|
|
53
|
+
* @demoSelectMultiple false
|
|
54
|
+
* @values circle, rounded
|
|
49
55
|
*/
|
|
50
56
|
radius: {
|
|
51
57
|
type: String,
|
|
52
58
|
validator: (s) => ["circle", "rounded"].indexOf(s) >= 0 || !1
|
|
53
59
|
},
|
|
60
|
+
/**
|
|
61
|
+
* Modifies the style variant for this component.
|
|
62
|
+
* @demoSelectMultiple false
|
|
63
|
+
* @values responsive
|
|
64
|
+
*/
|
|
54
65
|
modifier: {
|
|
55
66
|
type: String,
|
|
56
67
|
default: "",
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
const a = {
|
|
2
|
-
"cdr-image": "cdr-image_13-5-0-alpha-
|
|
3
|
-
"cdr-image--responsive": "cdr-image--responsive_13-5-0-alpha-
|
|
4
|
-
"cdr-image--rounded": "cdr-image--rounded_13-5-0-alpha-
|
|
5
|
-
"cdr-image--circle": "cdr-image--circle_13-5-0-alpha-
|
|
6
|
-
"cdr-image-ratio": "cdr-image-ratio_13-5-0-alpha-
|
|
7
|
-
"cdr-image-ratio__cover": "cdr-image-ratio__cover_13-5-0-alpha-
|
|
8
|
-
"cdr-image-ratio__cover--crop": "cdr-image-ratio__cover--crop_13-5-0-alpha-
|
|
9
|
-
"cdr-image-ratio__cover--cover": "cdr-image-ratio__cover--cover_13-5-0-alpha-
|
|
2
|
+
"cdr-image": "cdr-image_13-5-0-alpha-2",
|
|
3
|
+
"cdr-image--responsive": "cdr-image--responsive_13-5-0-alpha-2",
|
|
4
|
+
"cdr-image--rounded": "cdr-image--rounded_13-5-0-alpha-2",
|
|
5
|
+
"cdr-image--circle": "cdr-image--circle_13-5-0-alpha-2",
|
|
6
|
+
"cdr-image-ratio": "cdr-image-ratio_13-5-0-alpha-2",
|
|
7
|
+
"cdr-image-ratio__cover": "cdr-image-ratio__cover_13-5-0-alpha-2",
|
|
8
|
+
"cdr-image-ratio__cover--crop": "cdr-image-ratio__cover--crop_13-5-0-alpha-2",
|
|
9
|
+
"cdr-image-ratio__cover--cover": "cdr-image-ratio__cover--cover_13-5-0-alpha-2"
|
|
10
10
|
};
|
|
11
11
|
export {
|
|
12
12
|
a as default
|
|
@@ -18,15 +18,17 @@ const _ = E({
|
|
|
18
18
|
customOptions: {},
|
|
19
19
|
props: {
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Custom ID that is mapped to the label ‘for’ attribute. If this value is not set, it will be randomly generated.
|
|
22
22
|
*/
|
|
23
23
|
id: {
|
|
24
24
|
type: String
|
|
25
25
|
},
|
|
26
26
|
/**
|
|
27
27
|
* 'type' attribute for the input as defined by w3c.
|
|
28
|
-
* Only supporting text|email|number|password|search|url.
|
|
28
|
+
* Only supporting text|email|number|password|search|url|date.
|
|
29
29
|
* The increment/decrement webkit psuedo element is hidden for number.
|
|
30
|
+
* @demoSelectMultiple false
|
|
31
|
+
* @values text, email, number, password, search, url, tel, date
|
|
30
32
|
*/
|
|
31
33
|
type: {
|
|
32
34
|
type: [String],
|
|
@@ -34,13 +36,15 @@ const _ = E({
|
|
|
34
36
|
validator: (e) => O(e, ["text", "email", "number", "password", "search", "url", "tel", "date"])
|
|
35
37
|
},
|
|
36
38
|
/**
|
|
37
|
-
*
|
|
39
|
+
* Sets the text value for the input label. Required for a11y compliance. Use ‘hideLabel’ if the label display is not desired. Required.
|
|
38
40
|
*/
|
|
39
41
|
label: {
|
|
40
42
|
type: String,
|
|
41
43
|
required: !0
|
|
42
44
|
},
|
|
43
|
-
|
|
45
|
+
/**
|
|
46
|
+
* Sets default attributes for an input that should launch a numeric keyboard but is not strictly a 'number' (credit card, security code, postal code, etc.). Should be used in conjunction with the default text type input. An `input` listener can be used to fully restrict input values to numerical characters only
|
|
47
|
+
*/
|
|
44
48
|
numeric: {
|
|
45
49
|
type: Boolean,
|
|
46
50
|
default: !1
|
|
@@ -50,35 +54,59 @@ const _ = E({
|
|
|
50
54
|
*/
|
|
51
55
|
hideLabel: Boolean,
|
|
52
56
|
/**
|
|
53
|
-
* Number of rows for input.
|
|
57
|
+
* Number of rows for input. Converts component to text-area if rows greater than 1.
|
|
54
58
|
*/
|
|
55
59
|
rows: Number,
|
|
56
|
-
|
|
60
|
+
/**
|
|
61
|
+
* Sets the background color the input is rendered on
|
|
62
|
+
* @values primary, secondary
|
|
63
|
+
*/
|
|
57
64
|
background: Q,
|
|
65
|
+
/**
|
|
66
|
+
* Sets the input field size
|
|
67
|
+
* @demoSelectMultiple false
|
|
68
|
+
* @values medium, large
|
|
69
|
+
*/
|
|
58
70
|
size: K,
|
|
59
71
|
/**
|
|
60
|
-
*
|
|
72
|
+
* Sets the `role` attribute for the embedded error state messaging.
|
|
61
73
|
*/
|
|
62
74
|
errorRole: {
|
|
63
75
|
type: String,
|
|
64
76
|
required: !1,
|
|
65
77
|
default: "status"
|
|
66
78
|
},
|
|
67
|
-
|
|
79
|
+
/** Sets the input to an error state, displays the `error` slot if one is present. */
|
|
68
80
|
error: {
|
|
69
81
|
type: [Boolean, String],
|
|
70
82
|
default: !1
|
|
71
83
|
},
|
|
84
|
+
/**
|
|
85
|
+
* Sets the disabled state for the input field and label styling. Also, restricts user input.
|
|
86
|
+
*/
|
|
72
87
|
disabled: Boolean,
|
|
88
|
+
/**
|
|
89
|
+
* Sets aria-required on the input field and displays an asterisk next to the input label.
|
|
90
|
+
*/
|
|
73
91
|
required: Boolean,
|
|
92
|
+
/**
|
|
93
|
+
* Displays '(optional)' text next to the input label.
|
|
94
|
+
*/
|
|
74
95
|
optional: Boolean,
|
|
96
|
+
/** @ignore */
|
|
75
97
|
modelValue: {
|
|
76
98
|
type: [String, Number, Function]
|
|
77
99
|
},
|
|
78
|
-
|
|
100
|
+
/** Adds a custom class to the cdr-label-standalone wrapping div */
|
|
79
101
|
labelClass: String
|
|
80
102
|
},
|
|
81
|
-
emits:
|
|
103
|
+
emits: {
|
|
104
|
+
/**
|
|
105
|
+
* Event emitted by v-model on the <input> element
|
|
106
|
+
* @param modelValue
|
|
107
|
+
*/
|
|
108
|
+
"update:modelValue": null
|
|
109
|
+
},
|
|
82
110
|
setup(e, r) {
|
|
83
111
|
const f = "cdr-input", b = L(!1), y = r.slots["helper-text-top"], h = r.slots["helper-text-bottom"], p = r.slots["pre-icon"], t = r.slots["post-icon"], o = t && r.slots["post-icon"]().length > 1, q = r.slots.info, v = r.slots["info-action"], d = e.id ? e.id : X(), B = s(() => e.rows > 1 && "cdr-input--multiline"), w = s(() => p && "cdr-input--preicon"), M = s(() => t && "cdr-input--posticon"), S = s(() => o && "cdr-input--posticons"), z = s(() => e.error && "cdr-input--error"), F = s(() => `cdr-input--${e.background}`), P = s(() => e.size && `${f}--${e.size}`), V = s(() => b.value && "cdr-input--focus"), A = s(() => {
|
|
84
112
|
const n = [r.slots["helper-text-top"] ? `${d}-helper-text-top` : "", r.slots["helper-text-bottom"] ? `${d}-helper-text-bottom` : "", r.attrs["aria-describedby"]].filter((T) => T).join(" ");
|
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
const a = {
|
|
2
|
-
"cdr-label-standalone": "cdr-label-standalone_13-5-0-alpha-
|
|
3
|
-
"cdr-label-standalone__label-wrapper": "cdr-label-standalone__label-wrapper_13-5-0-alpha-
|
|
4
|
-
"cdr-label-standalone__label": "cdr-label-standalone__label_13-5-0-alpha-
|
|
5
|
-
"cdr-label-standalone__label--sr-only": "cdr-label-standalone__label--sr-only_13-5-0-alpha-
|
|
6
|
-
"cdr-label-standalone__label--disabled": "cdr-label-standalone__label--disabled_13-5-0-alpha-
|
|
7
|
-
"cdr-label-standalone__optional": "cdr-label-standalone__optional_13-5-0-alpha-
|
|
8
|
-
"cdr-label-standalone__helper": "cdr-label-standalone__helper_13-5-0-alpha-
|
|
9
|
-
"cdr-label-standalone__info": "cdr-label-standalone__info_13-5-0-alpha-
|
|
10
|
-
"cdr-label-standalone__post-content": "cdr-label-standalone__post-content_13-5-0-alpha-
|
|
11
|
-
"cdr-label-standalone__info-action": "cdr-label-standalone__info-action_13-5-0-alpha-
|
|
12
|
-
"cdr-label-standalone__input-wrap": "cdr-label-standalone__input-wrap_13-5-0-alpha-
|
|
13
|
-
"cdr-label-standalone__input-spacing": "cdr-label-standalone__input-spacing_13-5-0-alpha-
|
|
14
|
-
"cdr-form-error": "cdr-form-error_13-5-0-alpha-
|
|
15
|
-
"cdr-form-error__icon": "cdr-form-error__icon_13-5-0-alpha-
|
|
16
|
-
"cdr-input": "cdr-input_13-5-0-alpha-
|
|
17
|
-
"cdr-input--focus": "cdr-input--focus_13-5-0-alpha-
|
|
18
|
-
"cdr-input--multiline": "cdr-input--multiline_13-5-0-alpha-
|
|
19
|
-
"cdr-input--preicon": "cdr-input--preicon_13-5-0-alpha-
|
|
20
|
-
"cdr-input--posticon": "cdr-input--posticon_13-5-0-alpha-
|
|
21
|
-
"cdr-input--posticons": "cdr-input--posticons_13-5-0-alpha-
|
|
22
|
-
"cdr-input--primary": "cdr-input--primary_13-5-0-alpha-
|
|
23
|
-
"cdr-input--secondary": "cdr-input--secondary_13-5-0-alpha-
|
|
24
|
-
"cdr-input--error": "cdr-input--error_13-5-0-alpha-
|
|
25
|
-
"cdr-input--large": "cdr-input--large_13-5-0-alpha-
|
|
26
|
-
"cdr-input--large@xs": "cdr-input--large@xs_13-5-0-alpha-
|
|
27
|
-
"cdr-input--large@sm": "cdr-input--large@sm_13-5-0-alpha-
|
|
28
|
-
"cdr-input--large@md": "cdr-input--large@md_13-5-0-alpha-
|
|
29
|
-
"cdr-input--large@lg": "cdr-input--large@lg_13-5-0-alpha-
|
|
30
|
-
"cdr-input__pre-icon": "cdr-input__pre-icon_13-5-0-alpha-
|
|
31
|
-
"cdr-input__post-icon": "cdr-input__post-icon_13-5-0-alpha-
|
|
32
|
-
"cdr-input__helper-text": "cdr-input__helper-text_13-5-0-alpha-
|
|
33
|
-
"cdr-input-wrap": "cdr-input-wrap_13-5-0-alpha-
|
|
2
|
+
"cdr-label-standalone": "cdr-label-standalone_13-5-0-alpha-2",
|
|
3
|
+
"cdr-label-standalone__label-wrapper": "cdr-label-standalone__label-wrapper_13-5-0-alpha-2",
|
|
4
|
+
"cdr-label-standalone__label": "cdr-label-standalone__label_13-5-0-alpha-2",
|
|
5
|
+
"cdr-label-standalone__label--sr-only": "cdr-label-standalone__label--sr-only_13-5-0-alpha-2",
|
|
6
|
+
"cdr-label-standalone__label--disabled": "cdr-label-standalone__label--disabled_13-5-0-alpha-2",
|
|
7
|
+
"cdr-label-standalone__optional": "cdr-label-standalone__optional_13-5-0-alpha-2",
|
|
8
|
+
"cdr-label-standalone__helper": "cdr-label-standalone__helper_13-5-0-alpha-2",
|
|
9
|
+
"cdr-label-standalone__info": "cdr-label-standalone__info_13-5-0-alpha-2",
|
|
10
|
+
"cdr-label-standalone__post-content": "cdr-label-standalone__post-content_13-5-0-alpha-2",
|
|
11
|
+
"cdr-label-standalone__info-action": "cdr-label-standalone__info-action_13-5-0-alpha-2",
|
|
12
|
+
"cdr-label-standalone__input-wrap": "cdr-label-standalone__input-wrap_13-5-0-alpha-2",
|
|
13
|
+
"cdr-label-standalone__input-spacing": "cdr-label-standalone__input-spacing_13-5-0-alpha-2",
|
|
14
|
+
"cdr-form-error": "cdr-form-error_13-5-0-alpha-2",
|
|
15
|
+
"cdr-form-error__icon": "cdr-form-error__icon_13-5-0-alpha-2",
|
|
16
|
+
"cdr-input": "cdr-input_13-5-0-alpha-2",
|
|
17
|
+
"cdr-input--focus": "cdr-input--focus_13-5-0-alpha-2",
|
|
18
|
+
"cdr-input--multiline": "cdr-input--multiline_13-5-0-alpha-2",
|
|
19
|
+
"cdr-input--preicon": "cdr-input--preicon_13-5-0-alpha-2",
|
|
20
|
+
"cdr-input--posticon": "cdr-input--posticon_13-5-0-alpha-2",
|
|
21
|
+
"cdr-input--posticons": "cdr-input--posticons_13-5-0-alpha-2",
|
|
22
|
+
"cdr-input--primary": "cdr-input--primary_13-5-0-alpha-2",
|
|
23
|
+
"cdr-input--secondary": "cdr-input--secondary_13-5-0-alpha-2",
|
|
24
|
+
"cdr-input--error": "cdr-input--error_13-5-0-alpha-2",
|
|
25
|
+
"cdr-input--large": "cdr-input--large_13-5-0-alpha-2",
|
|
26
|
+
"cdr-input--large@xs": "cdr-input--large@xs_13-5-0-alpha-2",
|
|
27
|
+
"cdr-input--large@sm": "cdr-input--large@sm_13-5-0-alpha-2",
|
|
28
|
+
"cdr-input--large@md": "cdr-input--large@md_13-5-0-alpha-2",
|
|
29
|
+
"cdr-input--large@lg": "cdr-input--large@lg_13-5-0-alpha-2",
|
|
30
|
+
"cdr-input__pre-icon": "cdr-input__pre-icon_13-5-0-alpha-2",
|
|
31
|
+
"cdr-input__post-icon": "cdr-input__post-icon_13-5-0-alpha-2",
|
|
32
|
+
"cdr-input__helper-text": "cdr-input__helper-text_13-5-0-alpha-2",
|
|
33
|
+
"cdr-input-wrap": "cdr-input-wrap_13-5-0-alpha-2"
|
|
34
34
|
};
|
|
35
35
|
export {
|
|
36
36
|
a as default
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
const a = {
|
|
2
|
-
"cdr-label-standalone": "cdr-label-standalone_13-5-0-alpha-
|
|
3
|
-
"cdr-label-standalone__label-wrapper": "cdr-label-standalone__label-wrapper_13-5-0-alpha-
|
|
4
|
-
"cdr-label-standalone__label": "cdr-label-standalone__label_13-5-0-alpha-
|
|
5
|
-
"cdr-label-standalone__label--sr-only": "cdr-label-standalone__label--sr-only_13-5-0-alpha-
|
|
6
|
-
"cdr-label-standalone__label--disabled": "cdr-label-standalone__label--disabled_13-5-0-alpha-
|
|
7
|
-
"cdr-label-standalone__optional": "cdr-label-standalone__optional_13-5-0-alpha-
|
|
8
|
-
"cdr-label-standalone__helper": "cdr-label-standalone__helper_13-5-0-alpha-
|
|
9
|
-
"cdr-label-standalone__info": "cdr-label-standalone__info_13-5-0-alpha-
|
|
10
|
-
"cdr-label-standalone__post-content": "cdr-label-standalone__post-content_13-5-0-alpha-
|
|
11
|
-
"cdr-label-standalone__info-action": "cdr-label-standalone__info-action_13-5-0-alpha-
|
|
12
|
-
"cdr-label-standalone__input-wrap": "cdr-label-standalone__input-wrap_13-5-0-alpha-
|
|
13
|
-
"cdr-label-standalone__input-spacing": "cdr-label-standalone__input-spacing_13-5-0-alpha-
|
|
2
|
+
"cdr-label-standalone": "cdr-label-standalone_13-5-0-alpha-2",
|
|
3
|
+
"cdr-label-standalone__label-wrapper": "cdr-label-standalone__label-wrapper_13-5-0-alpha-2",
|
|
4
|
+
"cdr-label-standalone__label": "cdr-label-standalone__label_13-5-0-alpha-2",
|
|
5
|
+
"cdr-label-standalone__label--sr-only": "cdr-label-standalone__label--sr-only_13-5-0-alpha-2",
|
|
6
|
+
"cdr-label-standalone__label--disabled": "cdr-label-standalone__label--disabled_13-5-0-alpha-2",
|
|
7
|
+
"cdr-label-standalone__optional": "cdr-label-standalone__optional_13-5-0-alpha-2",
|
|
8
|
+
"cdr-label-standalone__helper": "cdr-label-standalone__helper_13-5-0-alpha-2",
|
|
9
|
+
"cdr-label-standalone__info": "cdr-label-standalone__info_13-5-0-alpha-2",
|
|
10
|
+
"cdr-label-standalone__post-content": "cdr-label-standalone__post-content_13-5-0-alpha-2",
|
|
11
|
+
"cdr-label-standalone__info-action": "cdr-label-standalone__info-action_13-5-0-alpha-2",
|
|
12
|
+
"cdr-label-standalone__input-wrap": "cdr-label-standalone__input-wrap_13-5-0-alpha-2",
|
|
13
|
+
"cdr-label-standalone__input-spacing": "cdr-label-standalone__input-spacing_13-5-0-alpha-2"
|
|
14
14
|
};
|
|
15
15
|
export {
|
|
16
16
|
a as default
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
const a = {
|
|
2
|
-
"cdr-label-wrapper": "cdr-label-wrapper_13-5-0-alpha-
|
|
3
|
-
"cdr-label-wrapper__container": "cdr-label-wrapper__container_13-5-0-alpha-
|
|
4
|
-
"cdr-label-wrapper--primary": "cdr-label-wrapper--primary_13-5-0-alpha-
|
|
5
|
-
"cdr-label-wrapper--secondary": "cdr-label-wrapper--secondary_13-5-0-alpha-
|
|
6
|
-
"cdr-label-wrapper--disabled": "cdr-label-wrapper--disabled_13-5-0-alpha-
|
|
7
|
-
"cdr-label-wrapper__figure": "cdr-label-wrapper__figure_13-5-0-alpha-
|
|
8
|
-
"cdr-label-wrapper__content": "cdr-label-wrapper__content_13-5-0-alpha-
|
|
9
|
-
"cdr-label-wrapper--hide-figure": "cdr-label-wrapper--hide-figure_13-5-0-alpha-
|
|
10
|
-
"cdr-label-wrapper--small": "cdr-label-wrapper--small_13-5-0-alpha-
|
|
11
|
-
"cdr-label-wrapper--medium": "cdr-label-wrapper--medium_13-5-0-alpha-
|
|
12
|
-
"cdr-label-wrapper--large": "cdr-label-wrapper--large_13-5-0-alpha-
|
|
13
|
-
"cdr-label-wrapper--small@xs": "cdr-label-wrapper--small@xs_13-5-0-alpha-
|
|
14
|
-
"cdr-label-wrapper--medium@xs": "cdr-label-wrapper--medium@xs_13-5-0-alpha-
|
|
15
|
-
"cdr-label-wrapper--large@xs": "cdr-label-wrapper--large@xs_13-5-0-alpha-
|
|
16
|
-
"cdr-label-wrapper--small@sm": "cdr-label-wrapper--small@sm_13-5-0-alpha-
|
|
17
|
-
"cdr-label-wrapper--medium@sm": "cdr-label-wrapper--medium@sm_13-5-0-alpha-
|
|
18
|
-
"cdr-label-wrapper--large@sm": "cdr-label-wrapper--large@sm_13-5-0-alpha-
|
|
19
|
-
"cdr-label-wrapper--small@md": "cdr-label-wrapper--small@md_13-5-0-alpha-
|
|
20
|
-
"cdr-label-wrapper--medium@md": "cdr-label-wrapper--medium@md_13-5-0-alpha-
|
|
21
|
-
"cdr-label-wrapper--large@md": "cdr-label-wrapper--large@md_13-5-0-alpha-
|
|
22
|
-
"cdr-label-wrapper--small@lg": "cdr-label-wrapper--small@lg_13-5-0-alpha-
|
|
23
|
-
"cdr-label-wrapper--medium@lg": "cdr-label-wrapper--medium@lg_13-5-0-alpha-
|
|
24
|
-
"cdr-label-wrapper--large@lg": "cdr-label-wrapper--large@lg_13-5-0-alpha-
|
|
2
|
+
"cdr-label-wrapper": "cdr-label-wrapper_13-5-0-alpha-2",
|
|
3
|
+
"cdr-label-wrapper__container": "cdr-label-wrapper__container_13-5-0-alpha-2",
|
|
4
|
+
"cdr-label-wrapper--primary": "cdr-label-wrapper--primary_13-5-0-alpha-2",
|
|
5
|
+
"cdr-label-wrapper--secondary": "cdr-label-wrapper--secondary_13-5-0-alpha-2",
|
|
6
|
+
"cdr-label-wrapper--disabled": "cdr-label-wrapper--disabled_13-5-0-alpha-2",
|
|
7
|
+
"cdr-label-wrapper__figure": "cdr-label-wrapper__figure_13-5-0-alpha-2",
|
|
8
|
+
"cdr-label-wrapper__content": "cdr-label-wrapper__content_13-5-0-alpha-2",
|
|
9
|
+
"cdr-label-wrapper--hide-figure": "cdr-label-wrapper--hide-figure_13-5-0-alpha-2",
|
|
10
|
+
"cdr-label-wrapper--small": "cdr-label-wrapper--small_13-5-0-alpha-2",
|
|
11
|
+
"cdr-label-wrapper--medium": "cdr-label-wrapper--medium_13-5-0-alpha-2",
|
|
12
|
+
"cdr-label-wrapper--large": "cdr-label-wrapper--large_13-5-0-alpha-2",
|
|
13
|
+
"cdr-label-wrapper--small@xs": "cdr-label-wrapper--small@xs_13-5-0-alpha-2",
|
|
14
|
+
"cdr-label-wrapper--medium@xs": "cdr-label-wrapper--medium@xs_13-5-0-alpha-2",
|
|
15
|
+
"cdr-label-wrapper--large@xs": "cdr-label-wrapper--large@xs_13-5-0-alpha-2",
|
|
16
|
+
"cdr-label-wrapper--small@sm": "cdr-label-wrapper--small@sm_13-5-0-alpha-2",
|
|
17
|
+
"cdr-label-wrapper--medium@sm": "cdr-label-wrapper--medium@sm_13-5-0-alpha-2",
|
|
18
|
+
"cdr-label-wrapper--large@sm": "cdr-label-wrapper--large@sm_13-5-0-alpha-2",
|
|
19
|
+
"cdr-label-wrapper--small@md": "cdr-label-wrapper--small@md_13-5-0-alpha-2",
|
|
20
|
+
"cdr-label-wrapper--medium@md": "cdr-label-wrapper--medium@md_13-5-0-alpha-2",
|
|
21
|
+
"cdr-label-wrapper--large@md": "cdr-label-wrapper--large@md_13-5-0-alpha-2",
|
|
22
|
+
"cdr-label-wrapper--small@lg": "cdr-label-wrapper--small@lg_13-5-0-alpha-2",
|
|
23
|
+
"cdr-label-wrapper--medium@lg": "cdr-label-wrapper--medium@lg_13-5-0-alpha-2",
|
|
24
|
+
"cdr-label-wrapper--large@lg": "cdr-label-wrapper--large@lg_13-5-0-alpha-2"
|
|
25
25
|
};
|
|
26
26
|
export {
|
|
27
27
|
a as default
|
|
@@ -6,18 +6,32 @@ import y from "../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
6
6
|
const $ = n({
|
|
7
7
|
name: "CdrLink",
|
|
8
8
|
props: {
|
|
9
|
+
/**
|
|
10
|
+
* Sets valid HTML element tag
|
|
11
|
+
* @values a, button
|
|
12
|
+
*/
|
|
9
13
|
tag: {
|
|
10
14
|
type: String,
|
|
11
15
|
default: "a"
|
|
12
16
|
},
|
|
17
|
+
/**
|
|
18
|
+
* Sets value for anchors href property. Requires tag prop value to be `a`.
|
|
19
|
+
*/
|
|
13
20
|
href: {
|
|
14
21
|
type: String,
|
|
15
22
|
default: "#"
|
|
16
23
|
},
|
|
24
|
+
/**
|
|
25
|
+
* Sets color and fill
|
|
26
|
+
*/
|
|
17
27
|
inheritColor: {
|
|
18
28
|
type: Boolean,
|
|
19
29
|
default: !1
|
|
20
30
|
},
|
|
31
|
+
/**
|
|
32
|
+
* Modifies the style variant for this component.
|
|
33
|
+
* @values standalone
|
|
34
|
+
*/
|
|
21
35
|
modifier: {
|
|
22
36
|
type: String,
|
|
23
37
|
default: "",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const l = {
|
|
2
|
-
"cdr-link": "cdr-link_13-5-0-alpha-
|
|
3
|
-
"cdr-link--standalone": "cdr-link--standalone_13-5-0-alpha-
|
|
4
|
-
"cdr-link--inherit-color": "cdr-link--inherit-color_13-5-0-alpha-
|
|
2
|
+
"cdr-link": "cdr-link_13-5-0-alpha-2",
|
|
3
|
+
"cdr-link--standalone": "cdr-link--standalone_13-5-0-alpha-2",
|
|
4
|
+
"cdr-link--inherit-color": "cdr-link--inherit-color_13-5-0-alpha-2"
|
|
5
5
|
};
|
|
6
6
|
export {
|
|
7
7
|
l as default
|
|
@@ -6,13 +6,19 @@ const _ = a({
|
|
|
6
6
|
name: "CdrList",
|
|
7
7
|
props: {
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Sets list type and HTML element as "unordered" or "ordered"
|
|
10
|
+
* @values ul, ol
|
|
10
11
|
*/
|
|
11
12
|
tag: {
|
|
12
13
|
type: String,
|
|
13
14
|
default: "ul",
|
|
14
15
|
validator: (e) => i(e, ["ul", "ol"])
|
|
15
16
|
},
|
|
17
|
+
/**
|
|
18
|
+
* Modifies the style variant for this component
|
|
19
|
+
* @demoSelectMultiple true
|
|
20
|
+
* @values ordered, unordered, compact, inline
|
|
21
|
+
*/
|
|
16
22
|
modifier: {
|
|
17
23
|
type: String,
|
|
18
24
|
default: "",
|