@eturnity/eturnity_reusable_components 8.26.11-autiFill.2 → 8.26.11-autiFill.6
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/main.es12.js +2 -2
- package/dist/main.es13.js +6 -6
- package/dist/main.es14.js +2 -2
- package/dist/main.es15.js +62 -22
- package/dist/main.es16.js +174 -1031
- package/dist/main.es17.js +21 -224
- package/dist/main.es18.js +1046 -89
- package/dist/main.es19.js +195 -67
- package/dist/main.es20.js +77 -148
- package/dist/main.es21.js +102 -2
- package/dist/main.es22.js +158 -505
- package/dist/main.es23.js +2 -199
- package/dist/main.es24.js +473 -148
- package/dist/main.es25.js +212 -60
- package/dist/main.es376.js +2 -2
- package/dist/main.es5.js +42 -3
- package/dist/main.es6.js +4 -4
- package/dist/main.es9.js +1 -1
- package/package.json +1 -1
- package/src/components/accordion/index.vue +8 -5
- package/src/components/statusIndicator/index.vue +31 -13
package/dist/main.es25.js
CHANGED
@@ -1,66 +1,218 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
const cacheStringFunction = (fn) => {
|
19
|
-
const cache = /* @__PURE__ */ Object.create(null);
|
20
|
-
return (str) => {
|
21
|
-
const hit = cache[str];
|
22
|
-
return hit || (cache[str] = fn(str));
|
23
|
-
};
|
1
|
+
import styled from "./main.es7.js";
|
2
|
+
import _sfc_main$1 from "./main.es376.js";
|
3
|
+
import theme from "./main.es8.js";
|
4
|
+
import "./main.es3.js";
|
5
|
+
import _export_sfc from "./main.es11.js";
|
6
|
+
import { resolveComponent, openBlock, createBlock, withCtx, createVNode, createCommentVNode, createTextVNode } from "./main.es6.js";
|
7
|
+
import { toDisplayString } from "./main.es16.js";
|
8
|
+
const PageContainer = styled.div``;
|
9
|
+
const ButtonAttrs = {
|
10
|
+
type: String,
|
11
|
+
isDisabled: Boolean,
|
12
|
+
minWidth: String,
|
13
|
+
noWrap: Boolean,
|
14
|
+
height: String,
|
15
|
+
variant: String,
|
16
|
+
buttonSize: String,
|
17
|
+
appTheme: String
|
24
18
|
};
|
25
|
-
const
|
26
|
-
|
27
|
-
|
28
|
-
)
|
29
|
-
|
30
|
-
(
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
19
|
+
const ButtonContainer = styled("div", ButtonAttrs)`
|
20
|
+
display: flex;
|
21
|
+
justify-content: center;
|
22
|
+
padding: ${(props) => {
|
23
|
+
var _a, _b, _c, _d;
|
24
|
+
return (_d = (_c = (_b = (_a = props.theme) == null ? void 0 : _a.mainButton) == null ? void 0 : _b.size) == null ? void 0 : _c[props.buttonSize]) == null ? void 0 : _d.padding;
|
25
|
+
}};
|
26
|
+
font-size: ${(props) => {
|
27
|
+
var _a, _b, _c, _d;
|
28
|
+
return (_d = (_c = (_b = (_a = props.theme) == null ? void 0 : _a.mainButton) == null ? void 0 : _b.size) == null ? void 0 : _c[props.buttonSize]) == null ? void 0 : _d.fontSize;
|
29
|
+
}};
|
30
|
+
color: ${(props) => props.isDisabled ? props.theme.mainButton[props.appTheme][props.type][props.variant].disabled.textColor : props.theme.mainButton[props.appTheme][props.type][props.variant].default.textColor};
|
31
|
+
background-color: ${(props) => props.isDisabled ? props.theme.mainButton[props.appTheme][props.type][props.variant].disabled.backgroundColor : props.theme.mainButton[props.appTheme][props.type][props.variant].default.backgroundColor};
|
32
|
+
border: ${(props) => {
|
33
|
+
const borderValue = props.isDisabled ? props.theme.mainButton[props.appTheme][props.type][props.variant].disabled.borderColor : props.theme.mainButton[props.appTheme][props.type][props.variant].default.borderColor;
|
34
|
+
return borderValue ? "1px solid " + borderValue : "none";
|
35
|
+
}};
|
36
|
+
border-radius: 4px;
|
37
|
+
text-align: center;
|
38
|
+
cursor: ${(props) => props.isDisabled ? "not-allowed" : "pointer"};
|
39
|
+
user-select: none;
|
40
|
+
${(props) => props.minWidth ? `min-width: ${props.minWidth};` : ""};
|
41
|
+
${(props) => props.noWrap ? `white-space: nowrap;` : ""};
|
42
|
+
height: ${(props) => props.height};
|
43
|
+
line-height: 1;
|
44
|
+
|
45
|
+
&:hover {
|
46
|
+
background-color: ${(props) => props.isDisabled ? props.theme.mainButton[props.appTheme][props.type][props.variant].disabled.backgroundColor : props.theme.mainButton[props.appTheme][props.type][props.variant].hover.backgroundColor};
|
47
|
+
}
|
48
|
+
|
49
|
+
&:active {
|
50
|
+
background-color: ${(props) => props.isDisabled ? props.theme.mainButton[props.appTheme][props.type][props.variant].disabled.backgroundColor : props.theme.mainButton[props.appTheme][props.type][props.variant].active.backgroundColor};
|
51
|
+
}
|
52
|
+
`;
|
53
|
+
const AltAttrs = {
|
54
|
+
altStyle: Boolean,
|
55
|
+
color: String
|
36
56
|
};
|
37
|
-
|
38
|
-
|
39
|
-
|
57
|
+
styled("div", AltAttrs)`
|
58
|
+
background-color: ${(props) => props.color ? props.color : props.theme.colors.transparentWhite1};
|
59
|
+
padding: 7px;
|
60
|
+
height: 100%;
|
61
|
+
width: 30%;
|
62
|
+
justify-content: center;
|
63
|
+
display: flex;
|
64
|
+
align-items: center;
|
65
|
+
border-radius: 4px 0 0 4px;
|
66
|
+
color: ${(props) => props.theme.colors.white};
|
67
|
+
all: ${(props) => props.altStyle ? "" : "unset"};
|
68
|
+
`;
|
69
|
+
styled("span", AltAttrs)`
|
70
|
+
padding: ${(props) => props.altStyle ? "7px" : "0"};
|
71
|
+
all: ${(props) => props.altStyle ? "" : "unset"};
|
72
|
+
`;
|
73
|
+
const LabelAttrs = {
|
74
|
+
hasIcon: Boolean
|
75
|
+
};
|
76
|
+
const LabelComponent = styled("span", LabelAttrs)`
|
77
|
+
display: flex;
|
78
|
+
align-items: center;
|
79
|
+
justify-content: center;
|
80
|
+
gap: ${(props) => props.hasIcon ? "5px" : "0"};
|
81
|
+
`;
|
82
|
+
const _sfc_main = {
|
83
|
+
name: "MainButton",
|
84
|
+
components: {
|
85
|
+
Icon: _sfc_main$1,
|
86
|
+
LabelComponent,
|
87
|
+
PageContainer,
|
88
|
+
ButtonContainer
|
89
|
+
},
|
90
|
+
props: {
|
91
|
+
type: {
|
92
|
+
required: false,
|
93
|
+
default: "primary",
|
94
|
+
// primary, secondary, tertiary, ghost
|
95
|
+
type: String
|
96
|
+
},
|
97
|
+
variant: {
|
98
|
+
required: false,
|
99
|
+
default: "main",
|
100
|
+
// main, cancel
|
101
|
+
type: String
|
102
|
+
},
|
103
|
+
isDisabled: {
|
104
|
+
required: false,
|
105
|
+
default: false,
|
106
|
+
type: Boolean
|
107
|
+
},
|
108
|
+
icon: {
|
109
|
+
required: false,
|
110
|
+
default: null,
|
111
|
+
type: String
|
112
|
+
},
|
113
|
+
iconColor: {
|
114
|
+
required: false,
|
115
|
+
default: "",
|
116
|
+
type: String
|
117
|
+
},
|
118
|
+
iconAltStyle: {
|
119
|
+
required: false,
|
120
|
+
default: false,
|
121
|
+
type: Boolean
|
122
|
+
},
|
123
|
+
iconAltStyleColor: {
|
124
|
+
required: false,
|
125
|
+
default: null,
|
126
|
+
type: String
|
127
|
+
},
|
128
|
+
text: {
|
129
|
+
required: true,
|
130
|
+
type: String
|
131
|
+
},
|
132
|
+
noWrap: {
|
133
|
+
required: false,
|
134
|
+
default: false,
|
135
|
+
type: Boolean
|
136
|
+
},
|
137
|
+
minWidth: {
|
138
|
+
required: false,
|
139
|
+
default: null,
|
140
|
+
type: String
|
141
|
+
},
|
142
|
+
height: {
|
143
|
+
required: false,
|
144
|
+
default: "auto",
|
145
|
+
type: String
|
146
|
+
},
|
147
|
+
id: {
|
148
|
+
required: false,
|
149
|
+
default: null,
|
150
|
+
type: String
|
151
|
+
},
|
152
|
+
dataId: {
|
153
|
+
type: String,
|
154
|
+
default: ""
|
155
|
+
},
|
156
|
+
dataQaId: {
|
157
|
+
type: String,
|
158
|
+
default: ""
|
159
|
+
},
|
160
|
+
appTheme: {
|
161
|
+
type: String,
|
162
|
+
default: "light"
|
163
|
+
},
|
164
|
+
buttonSize: {
|
165
|
+
type: String,
|
166
|
+
default: "medium",
|
167
|
+
required: false
|
168
|
+
}
|
169
|
+
},
|
170
|
+
computed: {
|
171
|
+
theme() {
|
172
|
+
return theme;
|
173
|
+
},
|
174
|
+
getIconColor() {
|
175
|
+
return this.isDisabled ? this.theme.mainButton[this.appTheme][this.type][this.variant].disabled.textColor : this.iconColor ? this.iconColor : this.theme.mainButton[this.appTheme][this.type][this.variant].default.textColor;
|
176
|
+
}
|
177
|
+
}
|
40
178
|
};
|
41
|
-
|
42
|
-
const
|
43
|
-
const
|
44
|
-
const
|
45
|
-
const
|
46
|
-
|
47
|
-
|
48
|
-
|
179
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
180
|
+
const _component_Icon = resolveComponent("Icon");
|
181
|
+
const _component_LabelComponent = resolveComponent("LabelComponent");
|
182
|
+
const _component_ButtonContainer = resolveComponent("ButtonContainer");
|
183
|
+
const _component_PageContainer = resolveComponent("PageContainer");
|
184
|
+
return openBlock(), createBlock(_component_PageContainer, null, {
|
185
|
+
default: withCtx(() => [createVNode(_component_ButtonContainer, {
|
186
|
+
id: $props.id,
|
187
|
+
"app-theme": $props.appTheme,
|
188
|
+
"button-size": $props.buttonSize,
|
189
|
+
"data-id": $props.dataId,
|
190
|
+
"data-qa-id": $props.dataQaId,
|
191
|
+
height: $props.height,
|
192
|
+
"is-disabled": $props.isDisabled,
|
193
|
+
"min-width": $props.minWidth,
|
194
|
+
"no-wrap": $props.noWrap,
|
195
|
+
type: $props.type,
|
196
|
+
variant: $props.variant
|
197
|
+
}, {
|
198
|
+
default: withCtx(() => [createVNode(_component_LabelComponent, {
|
199
|
+
"has-icon": Boolean($props.icon)
|
200
|
+
}, {
|
201
|
+
default: withCtx(() => [$props.icon ? (openBlock(), createBlock(_component_Icon, {
|
202
|
+
key: 0,
|
203
|
+
color: $options.getIconColor,
|
204
|
+
"hovered-color": $options.getIconColor,
|
205
|
+
name: $props.icon,
|
206
|
+
size: "14px"
|
207
|
+
}, null, 8, ["color", "hovered-color", "name"])) : createCommentVNode("", true), createTextVNode(" " + toDisplayString($props.text), 1)]),
|
208
|
+
_: 1
|
209
|
+
}, 8, ["has-icon"])]),
|
210
|
+
_: 1
|
211
|
+
}, 8, ["id", "app-theme", "button-size", "data-id", "data-qa-id", "height", "is-disabled", "min-width", "no-wrap", "type", "variant"])]),
|
212
|
+
_: 1
|
213
|
+
});
|
49
214
|
}
|
215
|
+
const RCButton = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
50
216
|
export {
|
51
|
-
|
52
|
-
extend,
|
53
|
-
hyphenate,
|
54
|
-
includeBooleanAttr,
|
55
|
-
invokeArrayFns,
|
56
|
-
isArray,
|
57
|
-
isFunction,
|
58
|
-
isHTMLTag,
|
59
|
-
isModelListener,
|
60
|
-
isOn,
|
61
|
-
isSVGTag,
|
62
|
-
isSpecialBooleanAttr,
|
63
|
-
isString,
|
64
|
-
looseToNumber,
|
65
|
-
makeMap
|
217
|
+
RCButton as default
|
66
218
|
};
|
package/dist/main.es376.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
import "./main.es3.js";
|
2
2
|
import styled from "./main.es7.js";
|
3
3
|
import { fetchIcon } from "./main.es381.js";
|
4
|
-
import { reactive } from "./main.
|
4
|
+
import { reactive } from "./main.es18.js";
|
5
5
|
import { computed, onMounted, watch, openBlock, createBlock, withCtx, createVNode, createElementVNode as createBaseVNode, createTextVNode, createCommentVNode } from "./main.es6.js";
|
6
|
-
import { toDisplayString } from "./main.
|
6
|
+
import { toDisplayString } from "./main.es16.js";
|
7
7
|
const _hoisted_1 = ["innerHTML"];
|
8
8
|
const _sfc_main = {
|
9
9
|
__name: "index",
|
package/dist/main.es5.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
import { isRuntimeOnly, warn, createRenderer, callWithAsyncErrorHandling } from "./main.es6.js";
|
2
2
|
import { Comment, Fragment, Static, Teleport, Text, callWithErrorHandling, cloneVNode, computed, createBlock, createCommentVNode, createElementBlock, createElementVNode, createStaticVNode, createTextVNode, createVNode, defineComponent, devtools, getCurrentInstance, guardReactiveProps, h, handleError, initCustomFormatter, inject, isVNode, mergeProps, nextTick, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, openBlock, provide, queuePostFlushCb, renderList, renderSlot, resolveComponent, resolveDynamicComponent, setBlockTracking, setDevtoolsHook, ssrContextKey, useSSRContext, version, watch, watchEffect, withCtx, withDirectives } from "./main.es6.js";
|
3
|
-
import { isFunction, isHTMLTag, isSVGTag, isString, looseToNumber, isArray, invokeArrayFns, hyphenate, extend, isOn, isModelListener, capitalize, isSpecialBooleanAttr, includeBooleanAttr } from "./main.
|
4
|
-
import { camelize } from "./main.
|
5
|
-
import { capitalize as capitalize2, normalizeClass, normalizeStyle, toDisplayString, toHandlerKey } from "./main.
|
3
|
+
import { isFunction, isHTMLTag, isSVGTag, isString, looseToNumber, isArray, invokeArrayFns, hyphenate, extend, isOn, isModelListener, capitalize, isSpecialBooleanAttr, includeBooleanAttr } from "./main.es15.js";
|
4
|
+
import { camelize } from "./main.es16.js";
|
5
|
+
import { capitalize as capitalize2, normalizeClass, normalizeStyle, toDisplayString, toHandlerKey } from "./main.es16.js";
|
6
6
|
const svgNS = "http://www.w3.org/2000/svg";
|
7
7
|
const doc = typeof document !== "undefined" ? document : null;
|
8
8
|
const templateContainer = doc && /* @__PURE__ */ doc.createElement("template");
|
@@ -460,6 +460,44 @@ const withKeys = (fn, modifiers) => {
|
|
460
460
|
}
|
461
461
|
};
|
462
462
|
};
|
463
|
+
const vShow = {
|
464
|
+
beforeMount(el, { value }, { transition }) {
|
465
|
+
el._vod = el.style.display === "none" ? "" : el.style.display;
|
466
|
+
if (transition && value) {
|
467
|
+
transition.beforeEnter(el);
|
468
|
+
} else {
|
469
|
+
setDisplay(el, value);
|
470
|
+
}
|
471
|
+
},
|
472
|
+
mounted(el, { value }, { transition }) {
|
473
|
+
if (transition && value) {
|
474
|
+
transition.enter(el);
|
475
|
+
}
|
476
|
+
},
|
477
|
+
updated(el, { value, oldValue }, { transition }) {
|
478
|
+
if (!value === !oldValue)
|
479
|
+
return;
|
480
|
+
if (transition) {
|
481
|
+
if (value) {
|
482
|
+
transition.beforeEnter(el);
|
483
|
+
setDisplay(el, true);
|
484
|
+
transition.enter(el);
|
485
|
+
} else {
|
486
|
+
transition.leave(el, () => {
|
487
|
+
setDisplay(el, false);
|
488
|
+
});
|
489
|
+
}
|
490
|
+
} else {
|
491
|
+
setDisplay(el, value);
|
492
|
+
}
|
493
|
+
},
|
494
|
+
beforeUnmount(el, { value }) {
|
495
|
+
setDisplay(el, value);
|
496
|
+
}
|
497
|
+
};
|
498
|
+
function setDisplay(el, value) {
|
499
|
+
el.style.display = value ? el._vod : "none";
|
500
|
+
}
|
463
501
|
const rendererOptions = /* @__PURE__ */ extend({ patchProp }, nodeOps);
|
464
502
|
let renderer;
|
465
503
|
function ensureRenderer() {
|
@@ -603,6 +641,7 @@ export {
|
|
603
641
|
toHandlerKey,
|
604
642
|
useSSRContext,
|
605
643
|
vModelText,
|
644
|
+
vShow,
|
606
645
|
version,
|
607
646
|
warn,
|
608
647
|
watch,
|
package/dist/main.es6.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import { isRef, toRaw, getCurrentScope, isShallow as isShallow$1, isReactive, ReactiveEffect, isProxy, computed as computed$1, pauseTracking, resetTracking, isReadonly, track, proxyRefs, markRaw, shallowReadonly, EffectScope, reactive, shallowReactive, trigger } from "./main.
|
2
|
-
import { readonly, ref, shallowRef, unref } from "./main.
|
3
|
-
import { isString, isFunction, getGlobalThis, isArray, NOOP, EMPTY_OBJ, normalizeClass, isObject, extend, normalizeStyle, isOn, isPromise, hasChanged, remove, isSet, isMap, isPlainObject, camelize, capitalize, toHandlerKey, hasOwn, EMPTY_ARR, NO, isBuiltInDirective, isReservedProp, invokeArrayFns, makeMap, looseToNumber, hyphenate, def, toRawType, isModelListener } from "./main.
|
4
|
-
import { toDisplayString } from "./main.
|
1
|
+
import { isRef, toRaw, getCurrentScope, isShallow as isShallow$1, isReactive, ReactiveEffect, isProxy, computed as computed$1, pauseTracking, resetTracking, isReadonly, track, proxyRefs, markRaw, shallowReadonly, EffectScope, reactive, shallowReactive, trigger } from "./main.es18.js";
|
2
|
+
import { readonly, ref, shallowRef, unref } from "./main.es18.js";
|
3
|
+
import { isString, isFunction, getGlobalThis, isArray, NOOP, EMPTY_OBJ, normalizeClass, isObject, extend, normalizeStyle, isOn, isPromise, hasChanged, remove, isSet, isMap, isPlainObject, camelize, capitalize, toHandlerKey, hasOwn, EMPTY_ARR, NO, isBuiltInDirective, isReservedProp, invokeArrayFns, makeMap, looseToNumber, hyphenate, def, toRawType, isModelListener } from "./main.es16.js";
|
4
|
+
import { toDisplayString } from "./main.es16.js";
|
5
5
|
const stack = [];
|
6
6
|
function pushWarningContext(vnode) {
|
7
7
|
stack.push(vnode);
|
package/dist/main.es9.js
CHANGED
package/package.json
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
<RCCaret :is-down="isOpenByClick" />
|
6
6
|
</WrapperHead>
|
7
7
|
<WrapperContent
|
8
|
-
v-
|
8
|
+
v-show="isOpenByClick"
|
9
9
|
class="accordion-content"
|
10
10
|
:class="{ openAccordion: isOpenByClick && openingMode == 'click' }"
|
11
11
|
>
|
@@ -69,7 +69,7 @@
|
|
69
69
|
default: 'click',
|
70
70
|
},
|
71
71
|
},
|
72
|
-
emits: ['on-open'],
|
72
|
+
emits: ['on-open', 'on-close'],
|
73
73
|
data() {
|
74
74
|
return {
|
75
75
|
isOpenByClick: false,
|
@@ -77,14 +77,17 @@
|
|
77
77
|
},
|
78
78
|
methods: {
|
79
79
|
toggleOpenByClick() {
|
80
|
-
|
81
|
-
this.$emit('on-open')
|
82
|
-
}
|
80
|
+
this.$emit(this.isOpenByClick ? 'on-close' : 'on-open')
|
83
81
|
this.isOpenByClick = !this.isOpenByClick
|
84
82
|
},
|
85
83
|
close() {
|
84
|
+
this.$emit('on-close')
|
86
85
|
this.isOpenByClick = false
|
87
86
|
},
|
87
|
+
open() {
|
88
|
+
this.$emit('on-open')
|
89
|
+
this.isOpenByClick = true
|
90
|
+
},
|
88
91
|
},
|
89
92
|
}
|
90
93
|
</script>
|
@@ -2,15 +2,15 @@
|
|
2
2
|
<BoxContainer
|
3
3
|
:border-radius="borderRadius"
|
4
4
|
:is-active="isActive"
|
5
|
+
:is-dirty="isDirty"
|
5
6
|
:is-disabled="isDisabled"
|
6
7
|
:is-error="isError"
|
7
|
-
:is-touched="isTouched"
|
8
8
|
:is-valid="isValid"
|
9
9
|
:is-warning="isWarning"
|
10
10
|
:size="size"
|
11
11
|
>
|
12
12
|
<RcIcon
|
13
|
-
v-if="isValid
|
13
|
+
v-if="isValid"
|
14
14
|
:color="theme.semanticColors.purple[500]"
|
15
15
|
:hovered-color="theme.semanticColors.purple[500]"
|
16
16
|
name="checkmark_thin"
|
@@ -20,15 +20,15 @@
|
|
20
20
|
v-else-if="isError"
|
21
21
|
:color="theme.colors.white"
|
22
22
|
:hovered-color="theme.colors.white"
|
23
|
-
name="
|
24
|
-
size="
|
23
|
+
name="cross"
|
24
|
+
size="10x"
|
25
25
|
/>
|
26
26
|
<RcIcon
|
27
27
|
v-else-if="isWarning"
|
28
28
|
:color="theme.colors.white"
|
29
29
|
:hovered-color="theme.colors.white"
|
30
30
|
name="warning_triangle"
|
31
|
-
size="
|
31
|
+
size="10px"
|
32
32
|
/>
|
33
33
|
<NumberContainer v-else :is-active="isActive" :is-valid="isValid">
|
34
34
|
<slot></slot>
|
@@ -41,7 +41,7 @@
|
|
41
41
|
// <StatusIndicator
|
42
42
|
// :is-error="true"
|
43
43
|
// :is-warning="true"
|
44
|
-
// :is-
|
44
|
+
// :is-dirty="true"
|
45
45
|
// :is-disabled="true"
|
46
46
|
// :is-active="true"
|
47
47
|
// >
|
@@ -62,7 +62,7 @@
|
|
62
62
|
isValid: Boolean,
|
63
63
|
isError: Boolean,
|
64
64
|
isWarning: Boolean,
|
65
|
-
|
65
|
+
isDirty: Boolean,
|
66
66
|
isDisabled: Boolean,
|
67
67
|
size: String,
|
68
68
|
borderRadius: String,
|
@@ -79,18 +79,36 @@
|
|
79
79
|
isActive,
|
80
80
|
isError,
|
81
81
|
isWarning,
|
82
|
-
|
82
|
+
isDirty,
|
83
83
|
isDisabled,
|
84
84
|
}) => {
|
85
85
|
if (isDisabled) return theme.semanticColors.grey[200]
|
86
86
|
if (isError) return theme.semanticColors.red[500]
|
87
87
|
if (isWarning) return theme.semanticColors.yellow[500]
|
88
|
-
if (!isTouched) return theme.semanticColors.grey[200]
|
89
88
|
if (isActive) {
|
90
|
-
if (isValid) return theme.semanticColors.purple[200]
|
91
89
|
return theme.semanticColors.purple[500]
|
92
90
|
}
|
93
|
-
return theme.semanticColors.grey[
|
91
|
+
if (!isDirty) return theme.semanticColors.grey[50]
|
92
|
+
if (isValid) return theme.semanticColors.purple[50]
|
93
|
+
return theme.semanticColors.grey[50]
|
94
|
+
}};
|
95
|
+
border: 1px solid;
|
96
|
+
border-color: ${({
|
97
|
+
theme,
|
98
|
+
isValid,
|
99
|
+
isActive,
|
100
|
+
isError,
|
101
|
+
isWarning,
|
102
|
+
isDirty,
|
103
|
+
isDisabled,
|
104
|
+
}) => {
|
105
|
+
if (isDisabled) return theme.semanticColors.grey[500]
|
106
|
+
if (isError) return theme.semanticColors.red[500]
|
107
|
+
if (isWarning) return theme.semanticColors.yellow[600]
|
108
|
+
if (!isDirty) return theme.semanticColors.grey[400]
|
109
|
+
if (isActive) return theme.semanticColors.purple[600]
|
110
|
+
if (isValid) return theme.semanticColors.purple[50]
|
111
|
+
return theme.semanticColors.grey[400]
|
94
112
|
}};
|
95
113
|
color: ${({ theme, isValid, isActive }) =>
|
96
114
|
isActive ? theme.colors.white : theme.semanticColors.grey[800]};
|
@@ -121,7 +139,7 @@
|
|
121
139
|
type: Boolean,
|
122
140
|
default: false,
|
123
141
|
},
|
124
|
-
|
142
|
+
isDirty: {
|
125
143
|
type: Boolean,
|
126
144
|
default: false,
|
127
145
|
},
|
@@ -149,7 +167,7 @@
|
|
149
167
|
},
|
150
168
|
computed: {
|
151
169
|
isValid() {
|
152
|
-
return this.
|
170
|
+
return this.isDirty && !this.isError && !this.isWarning
|
153
171
|
},
|
154
172
|
},
|
155
173
|
}
|