@eturnity/eturnity_reusable_components 8.26.4-EPDM-15929.1 → 8.26.4-EPDM-15023.0
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.es126.js +8 -3
- package/dist/main.es14.js +1 -1
- package/dist/main.es15.js +226 -60
- package/dist/main.es16.js +15 -150
- package/dist/main.es17.js +192 -209
- package/dist/main.es20.js +1 -1
- package/dist/main.es21.js +1 -1
- package/dist/main.es23.js +2 -2
- package/dist/main.es24.js +1 -1
- package/dist/main.es481.js +1 -1
- package/dist/main.es5.js +3 -3
- package/dist/main.es6.js +2 -2
- package/dist/main.es9.js +1 -1
- package/package.json +1 -1
- package/src/assets/svgIcons/download.svg +1 -0
- package/src/components/barchart/BottomFields.vue +32 -2
- package/src/components/barchart/index.vue +5 -0
- package/src/components/buttons/mainButton/index.vue +18 -1
- package/src/components/infoText/index.vue +4 -1
- package/src/components/inputs/inputNumber/index.vue +45 -4
- package/src/components/inputs/searchInput/index.vue +2 -11
package/dist/main.es17.js
CHANGED
@@ -1,218 +1,201 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
const
|
10
|
-
|
11
|
-
|
12
|
-
minWidth: String,
|
13
|
-
noWrap: Boolean,
|
14
|
-
height: String,
|
15
|
-
variant: String,
|
16
|
-
buttonSize: String,
|
17
|
-
appTheme: String
|
1
|
+
function makeMap(str, expectsLowerCase) {
|
2
|
+
const map = /* @__PURE__ */ Object.create(null);
|
3
|
+
const list = str.split(",");
|
4
|
+
for (let i = 0; i < list.length; i++) {
|
5
|
+
map[list[i]] = true;
|
6
|
+
}
|
7
|
+
return expectsLowerCase ? (val) => !!map[val.toLowerCase()] : (val) => !!map[val];
|
8
|
+
}
|
9
|
+
const EMPTY_OBJ = !!(process.env.NODE_ENV !== "production") ? Object.freeze({}) : {};
|
10
|
+
const EMPTY_ARR = !!(process.env.NODE_ENV !== "production") ? Object.freeze([]) : [];
|
11
|
+
const NOOP = () => {
|
18
12
|
};
|
19
|
-
const
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
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
|
13
|
+
const NO = () => false;
|
14
|
+
const onRE = /^on[^a-z]/;
|
15
|
+
const isOn = (key) => onRE.test(key);
|
16
|
+
const isModelListener = (key) => key.startsWith("onUpdate:");
|
17
|
+
const extend = Object.assign;
|
18
|
+
const remove = (arr, el) => {
|
19
|
+
const i = arr.indexOf(el);
|
20
|
+
if (i > -1) {
|
21
|
+
arr.splice(i, 1);
|
22
|
+
}
|
56
23
|
};
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
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
|
24
|
+
const hasOwnProperty = Object.prototype.hasOwnProperty;
|
25
|
+
const hasOwn = (val, key) => hasOwnProperty.call(val, key);
|
26
|
+
const isArray = Array.isArray;
|
27
|
+
const isMap = (val) => toTypeString(val) === "[object Map]";
|
28
|
+
const isSet = (val) => toTypeString(val) === "[object Set]";
|
29
|
+
const isFunction = (val) => typeof val === "function";
|
30
|
+
const isString = (val) => typeof val === "string";
|
31
|
+
const isObject = (val) => val !== null && typeof val === "object";
|
32
|
+
const isPromise = (val) => {
|
33
|
+
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
75
34
|
};
|
76
|
-
const
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
const
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
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
|
-
}
|
35
|
+
const objectToString = Object.prototype.toString;
|
36
|
+
const toTypeString = (value) => objectToString.call(value);
|
37
|
+
const toRawType = (value) => {
|
38
|
+
return toTypeString(value).slice(8, -1);
|
39
|
+
};
|
40
|
+
const isPlainObject = (val) => toTypeString(val) === "[object Object]";
|
41
|
+
const isReservedProp = /* @__PURE__ */ makeMap(
|
42
|
+
// the leading comma is intentional so empty string "" is also included
|
43
|
+
",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"
|
44
|
+
);
|
45
|
+
const isBuiltInDirective = /* @__PURE__ */ makeMap(
|
46
|
+
"bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"
|
47
|
+
);
|
48
|
+
const cacheStringFunction = (fn) => {
|
49
|
+
const cache = /* @__PURE__ */ Object.create(null);
|
50
|
+
return (str) => {
|
51
|
+
const hit = cache[str];
|
52
|
+
return hit || (cache[str] = fn(str));
|
53
|
+
};
|
54
|
+
};
|
55
|
+
const camelizeRE = /-(\w)/g;
|
56
|
+
const camelize = cacheStringFunction((str) => {
|
57
|
+
return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
|
58
|
+
});
|
59
|
+
const hyphenateRE = /\B([A-Z])/g;
|
60
|
+
const hyphenate = cacheStringFunction(
|
61
|
+
(str) => str.replace(hyphenateRE, "-$1").toLowerCase()
|
62
|
+
);
|
63
|
+
const capitalize = cacheStringFunction(
|
64
|
+
(str) => str.charAt(0).toUpperCase() + str.slice(1)
|
65
|
+
);
|
66
|
+
const toHandlerKey = cacheStringFunction(
|
67
|
+
(str) => str ? `on${capitalize(str)}` : ``
|
68
|
+
);
|
69
|
+
const hasChanged = (value, oldValue) => !Object.is(value, oldValue);
|
70
|
+
const invokeArrayFns = (fns, arg) => {
|
71
|
+
for (let i = 0; i < fns.length; i++) {
|
72
|
+
fns[i](arg);
|
177
73
|
}
|
178
74
|
};
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
key
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
75
|
+
const def = (obj, key, value) => {
|
76
|
+
Object.defineProperty(obj, key, {
|
77
|
+
configurable: true,
|
78
|
+
enumerable: false,
|
79
|
+
value
|
80
|
+
});
|
81
|
+
};
|
82
|
+
const looseToNumber = (val) => {
|
83
|
+
const n = parseFloat(val);
|
84
|
+
return isNaN(n) ? val : n;
|
85
|
+
};
|
86
|
+
let _globalThis;
|
87
|
+
const getGlobalThis = () => {
|
88
|
+
return _globalThis || (_globalThis = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : {});
|
89
|
+
};
|
90
|
+
function normalizeStyle(value) {
|
91
|
+
if (isArray(value)) {
|
92
|
+
const res = {};
|
93
|
+
for (let i = 0; i < value.length; i++) {
|
94
|
+
const item = value[i];
|
95
|
+
const normalized = isString(item) ? parseStringStyle(item) : normalizeStyle(item);
|
96
|
+
if (normalized) {
|
97
|
+
for (const key in normalized) {
|
98
|
+
res[key] = normalized[key];
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}
|
102
|
+
return res;
|
103
|
+
} else if (isString(value)) {
|
104
|
+
return value;
|
105
|
+
} else if (isObject(value)) {
|
106
|
+
return value;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
const listDelimiterRE = /;(?![^(]*\))/g;
|
110
|
+
const propertyDelimiterRE = /:([^]+)/;
|
111
|
+
const styleCommentRE = /\/\*[^]*?\*\//g;
|
112
|
+
function parseStringStyle(cssText) {
|
113
|
+
const ret = {};
|
114
|
+
cssText.replace(styleCommentRE, "").split(listDelimiterRE).forEach((item) => {
|
115
|
+
if (item) {
|
116
|
+
const tmp = item.split(propertyDelimiterRE);
|
117
|
+
tmp.length > 1 && (ret[tmp[0].trim()] = tmp[1].trim());
|
118
|
+
}
|
213
119
|
});
|
120
|
+
return ret;
|
121
|
+
}
|
122
|
+
function normalizeClass(value) {
|
123
|
+
let res = "";
|
124
|
+
if (isString(value)) {
|
125
|
+
res = value;
|
126
|
+
} else if (isArray(value)) {
|
127
|
+
for (let i = 0; i < value.length; i++) {
|
128
|
+
const normalized = normalizeClass(value[i]);
|
129
|
+
if (normalized) {
|
130
|
+
res += normalized + " ";
|
131
|
+
}
|
132
|
+
}
|
133
|
+
} else if (isObject(value)) {
|
134
|
+
for (const name in value) {
|
135
|
+
if (value[name]) {
|
136
|
+
res += name + " ";
|
137
|
+
}
|
138
|
+
}
|
139
|
+
}
|
140
|
+
return res.trim();
|
214
141
|
}
|
215
|
-
const
|
142
|
+
const toDisplayString = (val) => {
|
143
|
+
return isString(val) ? val : val == null ? "" : isArray(val) || isObject(val) && (val.toString === objectToString || !isFunction(val.toString)) ? JSON.stringify(val, replacer, 2) : String(val);
|
144
|
+
};
|
145
|
+
const replacer = (_key, val) => {
|
146
|
+
if (val && val.__v_isRef) {
|
147
|
+
return replacer(_key, val.value);
|
148
|
+
} else if (isMap(val)) {
|
149
|
+
return {
|
150
|
+
[`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val2]) => {
|
151
|
+
entries[`${key} =>`] = val2;
|
152
|
+
return entries;
|
153
|
+
}, {})
|
154
|
+
};
|
155
|
+
} else if (isSet(val)) {
|
156
|
+
return {
|
157
|
+
[`Set(${val.size})`]: [...val.values()]
|
158
|
+
};
|
159
|
+
} else if (isObject(val) && !isArray(val) && !isPlainObject(val)) {
|
160
|
+
return String(val);
|
161
|
+
}
|
162
|
+
return val;
|
163
|
+
};
|
216
164
|
export {
|
217
|
-
|
165
|
+
EMPTY_ARR,
|
166
|
+
EMPTY_OBJ,
|
167
|
+
NO,
|
168
|
+
NOOP,
|
169
|
+
camelize,
|
170
|
+
capitalize,
|
171
|
+
def,
|
172
|
+
extend,
|
173
|
+
getGlobalThis,
|
174
|
+
hasChanged,
|
175
|
+
hasOwn,
|
176
|
+
hyphenate,
|
177
|
+
invokeArrayFns,
|
178
|
+
isArray,
|
179
|
+
isBuiltInDirective,
|
180
|
+
isFunction,
|
181
|
+
isMap,
|
182
|
+
isModelListener,
|
183
|
+
isObject,
|
184
|
+
isOn,
|
185
|
+
isPlainObject,
|
186
|
+
isPromise,
|
187
|
+
isReservedProp,
|
188
|
+
isSet,
|
189
|
+
isString,
|
190
|
+
looseToNumber,
|
191
|
+
makeMap,
|
192
|
+
normalizeClass,
|
193
|
+
normalizeStyle,
|
194
|
+
objectToString,
|
195
|
+
parseStringStyle,
|
196
|
+
remove,
|
197
|
+
toDisplayString,
|
198
|
+
toHandlerKey,
|
199
|
+
toRawType,
|
200
|
+
toTypeString
|
218
201
|
};
|
package/dist/main.es20.js
CHANGED
@@ -2,7 +2,7 @@ import styled from "./main.es7.js";
|
|
2
2
|
import "./main.es3.js";
|
3
3
|
import _export_sfc from "./main.es11.js";
|
4
4
|
import { resolveComponent, openBlock, createBlock, withCtx, createVNode, createTextVNode } from "./main.es6.js";
|
5
|
-
import { toDisplayString } from "./main.
|
5
|
+
import { toDisplayString } from "./main.es17.js";
|
6
6
|
const Container = styled.div`
|
7
7
|
position: relative;
|
8
8
|
display: flex;
|
package/dist/main.es21.js
CHANGED
@@ -3,7 +3,7 @@ import styled from "./main.es7.js";
|
|
3
3
|
import "./main.es3.js";
|
4
4
|
import _export_sfc from "./main.es11.js";
|
5
5
|
import { resolveComponent, openBlock, createBlock, withCtx, createElementBlock, renderList, Fragment, createElementVNode as createBaseVNode, createTextVNode, createVNode } from "./main.es6.js";
|
6
|
-
import { toDisplayString } from "./main.
|
6
|
+
import { toDisplayString } from "./main.es17.js";
|
7
7
|
const Wrapper = styled.div`
|
8
8
|
display: block;
|
9
9
|
text-align: center;
|
package/dist/main.es23.js
CHANGED
@@ -4,7 +4,7 @@ import styled from "./main.es7.js";
|
|
4
4
|
import theme from "./main.es8.js";
|
5
5
|
import _export_sfc from "./main.es11.js";
|
6
6
|
import { computed, onMounted, onUnmounted, watch, nextTick, resolveComponent, openBlock, createBlock, withCtx, createElementVNode as createBaseVNode, createVNode, createElementBlock, createTextVNode, createCommentVNode, Fragment, renderSlot, Teleport } from "./main.es6.js";
|
7
|
-
import { toDisplayString, normalizeStyle } from "./main.
|
7
|
+
import { toDisplayString, normalizeStyle } from "./main.es17.js";
|
8
8
|
import { ref } from "./main.es19.js";
|
9
9
|
const TextOverlayAttrs = {
|
10
10
|
appTheme: String,
|
@@ -503,7 +503,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
503
503
|
_: 1
|
504
504
|
}, 8, ["color", "size"])) : createCommentVNode("", true)], 64)) : createCommentVNode("", true), createTextVNode(), renderSlot(_ctx.$slots, "trigger")]),
|
505
505
|
_: 3
|
506
|
-
}, 8, ["background-color", "border-radius", "hovered-icon", "is-active", "is-disabled", "padding"])], 512), createTextVNode(), $setup.isVisible && (!!$props.text || _ctx.$slots.default) ? (openBlock(), createBlock(Teleport, {
|
506
|
+
}, 8, ["background-color", "border-radius", "hovered-icon", "is-active", "is-disabled", "padding"])], 512), createTextVNode(), !$props.hideInfoText && $setup.isVisible && (!!$props.text || _ctx.$slots.default) ? (openBlock(), createBlock(Teleport, {
|
507
507
|
key: 0,
|
508
508
|
to: "body"
|
509
509
|
}, [createVNode(_component_TextWrapper, {
|
package/dist/main.es24.js
CHANGED
@@ -3,7 +3,7 @@ import styled from "./main.es7.js";
|
|
3
3
|
import { fetchIcon } from "./main.es377.js";
|
4
4
|
import { reactive } from "./main.es19.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.es17.js";
|
7
7
|
const _hoisted_1 = ["innerHTML"];
|
8
8
|
const _sfc_main = {
|
9
9
|
__name: "index",
|
package/dist/main.es481.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
const __vite_glob_0_101 = "data:image/svg+xml;base64,
|
1
|
+
const __vite_glob_0_101 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExIDYuNUw3IDEwLjVMMyA2LjUiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xMyAxM0gxTTExIDYuNUw3IDEwLjVNNyAxMC41TDMgNi41TTcgMTAuNVYxIiBzdHJva2U9IiM2RjIwREMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K";
|
2
2
|
export {
|
3
3
|
__vite_glob_0_101 as default
|
4
4
|
};
|
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.es16.js";
|
4
|
+
import { camelize } from "./main.es17.js";
|
5
|
+
import { capitalize as capitalize2, normalizeClass, normalizeStyle, toDisplayString, toHandlerKey } from "./main.es17.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");
|
package/dist/main.es6.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
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.es19.js";
|
2
2
|
import { readonly, ref, shallowRef, unref } from "./main.es19.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.
|
4
|
-
import { toDisplayString } 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.es17.js";
|
4
|
+
import { toDisplayString } from "./main.es17.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
@@ -1,3 +1,4 @@
|
|
1
1
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M11 6.5L7 10.5L3 6.5" fill="white"/>
|
2
3
|
<path d="M13 13H1M11 6.5L7 10.5M7 10.5L3 6.5M7 10.5V1" stroke="#6F20DC" stroke-linecap="round" stroke-linejoin="round"/>
|
3
4
|
</svg>
|
@@ -22,7 +22,7 @@
|
|
22
22
|
<!-- For stacked bar chart -->
|
23
23
|
<template v-if="seriesData.length">
|
24
24
|
<InputRow
|
25
|
-
v-for="series in seriesData"
|
25
|
+
v-for="(series, seriesIndex) in seriesData"
|
26
26
|
:key="series.name"
|
27
27
|
:data-series-name="series.name"
|
28
28
|
>
|
@@ -36,8 +36,10 @@
|
|
36
36
|
:allow-negative="false"
|
37
37
|
:default-number="0"
|
38
38
|
:disabled="isInputsDisabled"
|
39
|
+
:error-message="getInputErrorMessage(series.data, item.label)"
|
39
40
|
input-height="36px"
|
40
41
|
:is-disabled-styled-only="true"
|
42
|
+
:is-error="getIsError(series.data, item.label)"
|
41
43
|
:is-info-border="
|
42
44
|
fieldMode === 'percentage'
|
43
45
|
? calculatePercentageTotal(item.label) !== 100
|
@@ -117,8 +119,10 @@
|
|
117
119
|
<InputNumber
|
118
120
|
:allow-negative="false"
|
119
121
|
:disabled="isInputsDisabled"
|
122
|
+
:error-message="item.errorMessage"
|
120
123
|
input-height="36px"
|
121
124
|
:is-disabled-styled-only="true"
|
125
|
+
:is-error="item.isError"
|
122
126
|
:min-decimals="0"
|
123
127
|
:number-precision="0"
|
124
128
|
text-align="center"
|
@@ -142,6 +146,11 @@
|
|
142
146
|
</InfoCardBody>
|
143
147
|
</InfoCard>
|
144
148
|
</InfoCardContainer>
|
149
|
+
<InfoCardContainer v-if="hasInputErrors" :y-axis-width="yAxisWidth">
|
150
|
+
<InfoCard align-items="center" type="error_minor">
|
151
|
+
<InfoCardBody> {{ inputErrorMessage }} </InfoCardBody>
|
152
|
+
</InfoCard>
|
153
|
+
</InfoCardContainer>
|
145
154
|
</template>
|
146
155
|
|
147
156
|
<script setup>
|
@@ -204,6 +213,10 @@
|
|
204
213
|
type: String,
|
205
214
|
default: '',
|
206
215
|
},
|
216
|
+
inputErrorMessage: {
|
217
|
+
type: String,
|
218
|
+
default: '',
|
219
|
+
},
|
207
220
|
})
|
208
221
|
|
209
222
|
const seriesData = ref([])
|
@@ -229,6 +242,8 @@
|
|
229
242
|
label: d.label,
|
230
243
|
value: d.value,
|
231
244
|
percentage: d.percentage,
|
245
|
+
isError: d.isError,
|
246
|
+
errorMessage: d.errorMessage,
|
232
247
|
originalValue: currentSeriesData.length
|
233
248
|
? currentSeriesData[itemIndex].data[dIndex].originalValue
|
234
249
|
: d.value,
|
@@ -275,7 +290,7 @@
|
|
275
290
|
}
|
276
291
|
}
|
277
292
|
|
278
|
-
const getDisplayValue = (data, label
|
293
|
+
const getDisplayValue = (data, label) => {
|
279
294
|
if (props.fieldMode === 'absolute') {
|
280
295
|
return data.find((d) => d.label === label)?.value
|
281
296
|
}
|
@@ -283,6 +298,13 @@
|
|
283
298
|
return data.find((d) => d.label === label)?.percentage
|
284
299
|
}
|
285
300
|
|
301
|
+
const getIsError = (data, label) => {
|
302
|
+
return data.find((d) => d.label === label)?.isError
|
303
|
+
}
|
304
|
+
const getInputErrorMessage = (data, label) => {
|
305
|
+
return data.find((d) => d.label === label)?.errorMessage
|
306
|
+
}
|
307
|
+
|
286
308
|
const calculatePercentageTotal = (label) => {
|
287
309
|
const percentageTotal = seriesData.value.reduce((sum, series) => {
|
288
310
|
const percentage =
|
@@ -336,6 +358,14 @@
|
|
336
358
|
return calculatePercentageTotal(d.label) !== 100
|
337
359
|
})
|
338
360
|
})
|
361
|
+
const hasInputErrors = computed(() => {
|
362
|
+
if (seriesData.value.length) {
|
363
|
+
return seriesData.value.some((serie) =>
|
364
|
+
serie.data.some((item) => item.isError)
|
365
|
+
)
|
366
|
+
}
|
367
|
+
return props.data.some((item) => item.isError)
|
368
|
+
})
|
339
369
|
|
340
370
|
const handleFieldsScroll = (event) => {
|
341
371
|
emit('sync-scroll', event.target.scrollLeft)
|
@@ -166,6 +166,7 @@
|
|
166
166
|
:is-inputs-disabled="isLoading"
|
167
167
|
:is-scrollable="isScrollable"
|
168
168
|
:percentage-error-message="percentageErrorMessage"
|
169
|
+
:input-error-message="inputErrorMessage"
|
169
170
|
:series="series"
|
170
171
|
:y-axis-width="yAxisWidth"
|
171
172
|
@input-blur="handleInputBlur"
|
@@ -307,6 +308,10 @@
|
|
307
308
|
type: String,
|
308
309
|
default: '',
|
309
310
|
},
|
311
|
+
inputErrorMessage: {
|
312
|
+
type: String,
|
313
|
+
default: '',
|
314
|
+
},
|
310
315
|
})
|
311
316
|
|
312
317
|
const generateChartId = () =>
|