@ironsource/shared-ui 2.1.11-rc.59 → 2.1.11-rc.60
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/ChartLegend.vue_vue_type_style_index_0_scoped_aa32a103_lang.css +1 -0
- package/ChartLoader.vue_vue_type_style_index_0_scoped_ffa4cc66_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_2a77c137_lang.css +1 -0
- package/components/chart/ChartLegend.vue.js +2 -2
- package/components/chart/ChartLegend.vue2.js +60 -50
- package/components/chart/ChartLoader.vue.js +5 -23
- package/components/chart/ChartLoader.vue2.js +15 -0
- package/components/dropdown/v4/ConditionalDropdown.vue.js +2 -2
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +8 -8
- package/index.js +1 -1
- package/package.json +1 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_a1c626cd_lang.css +0 -1
- package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_03022bc9_lang.css +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.disabled-tooltip[data-v-aa32a103],.disabled-tooltip[data-v-aa32a103] .container{width:100%}.chart-legend[data-v-aa32a103]{display:flex;flex-direction:column;width:220px;height:100%;padding:0 8px 8px}.search-box[data-v-aa32a103]{padding:12px 0 4px}.legend[data-v-aa32a103]{overflow-y:auto;color:var(--text-primary);height:100%;overflow-x:hidden}.legend__list[data-v-aa32a103]{list-style:none;padding:0}.legend__list>li[data-v-aa32a103]{display:flex;align-items:center;gap:8px;padding:6px 8px}.legend__list>li[data-v-aa32a103]:hover{background-color:var(--action-hover);border-radius:8px;cursor:pointer}.legend__list>li.disabled-item[data-v-aa32a103]{cursor:not-allowed!important;opacity:.5;background:var(--background-paper)}.legend__list>li.empty-list[data-v-aa32a103]{display:flex;align-items:center;justify-content:flex-start;height:32px;color:var(--text-disabled)}.legend__list>li.empty-list[data-v-aa32a103]:hover{background-color:transparent;cursor:default}.legend__list>li .item-wrapper[data-v-aa32a103]{display:flex;align-items:center;gap:8px;width:100%}.legend__list>li .item-wrapper .legend-label[data-v-aa32a103]{width:80%}.legend__list>li .item-wrapper .icon-color[data-v-aa32a103]{color:var(--action-active)}.legend__list>li .item-wrapper .label-container[data-v-aa32a103]{display:flex;flex-direction:column;width:100%}.legend__list>li .item-wrapper .label-container .legend-caption[data-v-aa32a103]{color:var(--text-secondary)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.label[data-v-ffa4cc66]{color:#41454d}.chart-loader[data-v-ffa4cc66]{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.chart-loader .chart-loader-wrapper[data-v-ffa4cc66]{width:40px;height:40px;display:flex;align-items:center;justify-content:center}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.custom-list-area[data-v-2a77c137]{color:var(--text-secondary);width:100%;text-align:center;box-sizing:border-box;padding:63px 43px}.inline-search[data-v-2a77c137]{width:100%}.contain-accept[data-v-2a77c137]{padding:6px 8px;margin-bottom:4px;cursor:pointer}.contain-accept[data-v-2a77c137]:hover{background-color:var(--action-hover);border-radius:.5rem}.contain-accept--query[data-v-2a77c137]{margin-left:4px;display:inline-flex;color:var(--primary-main)}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e from "./ChartLegend.vue2.js";
|
|
2
2
|
/* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../ChartLegend.
|
|
4
|
-
const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-
|
|
3
|
+
// import "../../ChartLegend.vue_vue_type_style_index_0_scoped_aa32a103_lang.css"; //*');
|
|
4
|
+
const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-aa32a103"]]);
|
|
5
5
|
export {
|
|
6
6
|
s as default
|
|
7
7
|
};
|
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
import "../../ChartLegend.
|
|
1
|
+
import "../../ChartLegend.vue_vue_type_style_index_0_scoped_aa32a103_lang.css"; import { defineComponent as D, ref as M, computed as m, openBlock as n, createElementBlock as d, createElementVNode as r, createVNode as s, unref as o, mergeProps as I, withCtx as c, createTextVNode as b, Fragment as S, renderList as P, normalizeClass as A, withModifiers as F, createBlock as H, createCommentVNode as U, toDisplayString as L } from "vue";
|
|
2
2
|
import { useVirtualList as z } from "@vueuse/core";
|
|
3
|
-
import
|
|
3
|
+
import f from "../typography/v4/Typography.vue.js";
|
|
4
4
|
import R from "../checkbox/v4/CheckboxV4.vue.js";
|
|
5
5
|
import q from "../search/v4/SearchV4.vue.js";
|
|
6
6
|
import { DEFAULT_MIN_VISIBLE as G, DEFAULT_MAX_VISIBLE as X } from "./consts.js";
|
|
7
7
|
import $ from "../icon/v4/IconV4.vue.js";
|
|
8
8
|
import "../icon/v4/IconFlag.vue.js";
|
|
9
9
|
import j from "../tooltip/v4/TooltipV4.vue.js";
|
|
10
|
-
const J = { class: "chart-legend" }, K = { class: "search-box" }, O =
|
|
10
|
+
const J = { class: "chart-legend" }, K = { class: "search-box" }, O = {
|
|
11
|
+
key: 0,
|
|
12
|
+
class: "empty-list"
|
|
13
|
+
}, Q = ["onClick"], W = { class: "label-container" }, ne = /* @__PURE__ */ D({
|
|
11
14
|
__name: "ChartLegend",
|
|
12
15
|
props: {
|
|
13
16
|
items: { default: () => [] },
|
|
@@ -17,70 +20,77 @@ const J = { class: "chart-legend" }, K = { class: "search-box" }, O = ["onClick"
|
|
|
17
20
|
maxLimitTooltipText: { default: "" }
|
|
18
21
|
},
|
|
19
22
|
emits: ["update:visibleIds"],
|
|
20
|
-
setup(
|
|
21
|
-
const
|
|
22
|
-
const t =
|
|
23
|
-
return
|
|
24
|
-
(
|
|
23
|
+
setup(v, { emit: g }) {
|
|
24
|
+
const l = v, k = 32, p = M(""), T = m(() => {
|
|
25
|
+
const t = p.value.toLowerCase();
|
|
26
|
+
return l.items.filter(
|
|
27
|
+
(i) => i.label.toLowerCase().includes(t)
|
|
25
28
|
);
|
|
26
|
-
}),
|
|
27
|
-
() =>
|
|
28
|
-
),
|
|
29
|
-
() =>
|
|
30
|
-
),
|
|
31
|
-
|
|
29
|
+
}), a = (t) => l.visibleIds.includes(t.id), h = m(
|
|
30
|
+
() => l.visibleIds.length >= l.maxVisible
|
|
31
|
+
), y = m(
|
|
32
|
+
() => l.visibleIds.length <= l.minVisible
|
|
33
|
+
), u = (t) => y.value && a(t) || h.value && !a(t), C = (t) => !l.maxLimitTooltipText || a(t) || !h.value, V = (t, i) => {
|
|
34
|
+
g(
|
|
32
35
|
"update:visibleIds",
|
|
33
|
-
t ? [...
|
|
36
|
+
t ? [...l.visibleIds, i.id] : l.visibleIds.filter((e) => e !== i.id)
|
|
34
37
|
);
|
|
35
|
-
}, { list:
|
|
36
|
-
itemHeight:
|
|
38
|
+
}, { list: x, containerProps: w, wrapperProps: E } = z(T, {
|
|
39
|
+
itemHeight: k,
|
|
37
40
|
overscan: 10
|
|
38
|
-
}),
|
|
39
|
-
|
|
41
|
+
}), N = (t) => {
|
|
42
|
+
u(t) || V(!a(t), t);
|
|
40
43
|
};
|
|
41
|
-
return (t,
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
modelValue:
|
|
45
|
-
"onUpdate:modelValue":
|
|
44
|
+
return (t, i) => (n(), d("div", J, [
|
|
45
|
+
r("div", K, [
|
|
46
|
+
s(o(q), {
|
|
47
|
+
modelValue: p.value,
|
|
48
|
+
"onUpdate:modelValue": i[0] || (i[0] = (e) => p.value = e)
|
|
46
49
|
}, null, 8, ["modelValue"])
|
|
47
50
|
]),
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
(
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
r("div", I({ class: "legend" }, o(w)), [
|
|
52
|
+
r("ul", I({ class: "legend__list" }, o(E)), [
|
|
53
|
+
o(x).length === 0 ? (n(), d("li", O, [
|
|
54
|
+
s(o(f), { variant: "body2" }, {
|
|
55
|
+
default: c(() => [
|
|
56
|
+
b("No results")
|
|
57
|
+
]),
|
|
58
|
+
_: 1
|
|
59
|
+
})
|
|
60
|
+
])) : (n(!0), d(S, { key: 1 }, P(o(x), ({ data: e, index: B }) => (n(), d("li", {
|
|
61
|
+
key: B,
|
|
62
|
+
class: A({ "disabled-item": u(e) })
|
|
53
63
|
}, [
|
|
54
|
-
|
|
55
|
-
text:
|
|
64
|
+
s(o(j), {
|
|
65
|
+
text: v.maxLimitTooltipText,
|
|
56
66
|
disabled: C(e),
|
|
57
67
|
class: "disabled-tooltip"
|
|
58
68
|
}, {
|
|
59
|
-
default:
|
|
60
|
-
|
|
69
|
+
default: c(() => [
|
|
70
|
+
r("div", {
|
|
61
71
|
class: "item-wrapper",
|
|
62
|
-
onClick: (
|
|
72
|
+
onClick: (_) => N(e)
|
|
63
73
|
}, [
|
|
64
|
-
|
|
74
|
+
s(o(R), {
|
|
65
75
|
color: e.color,
|
|
66
|
-
"is-checked":
|
|
67
|
-
disabled:
|
|
68
|
-
onClick:
|
|
69
|
-
(
|
|
70
|
-
|
|
76
|
+
"is-checked": a(e),
|
|
77
|
+
disabled: u(e),
|
|
78
|
+
onClick: i[1] || (i[1] = F(
|
|
79
|
+
(_) => {
|
|
80
|
+
_.stopPropagation();
|
|
71
81
|
},
|
|
72
82
|
["stop"]
|
|
73
83
|
))
|
|
74
84
|
}, null, 8, ["color", "is-checked", "disabled"]),
|
|
75
|
-
e.icon ? (
|
|
85
|
+
e.icon ? (n(), H(o($), {
|
|
76
86
|
key: 0,
|
|
77
87
|
class: "icon-color",
|
|
78
88
|
type: e.iconType,
|
|
79
89
|
name: e.icon,
|
|
80
90
|
size: "16px"
|
|
81
91
|
}, null, 8, ["type", "name"])) : U("", !0),
|
|
82
|
-
|
|
83
|
-
|
|
92
|
+
r("div", W, [
|
|
93
|
+
s(o(f), {
|
|
84
94
|
variant: "body2",
|
|
85
95
|
class: "legend-label",
|
|
86
96
|
"is-truncated": "",
|
|
@@ -88,12 +98,12 @@ const J = { class: "chart-legend" }, K = { class: "search-box" }, O = ["onClick"
|
|
|
88
98
|
"tooltip-text": e.label,
|
|
89
99
|
"tooltip-placement": "left"
|
|
90
100
|
}, {
|
|
91
|
-
default:
|
|
92
|
-
|
|
101
|
+
default: c(() => [
|
|
102
|
+
b(L(e.label), 1)
|
|
93
103
|
]),
|
|
94
104
|
_: 2
|
|
95
105
|
}, 1032, ["tooltip-text"]),
|
|
96
|
-
|
|
106
|
+
s(o(f), {
|
|
97
107
|
variant: "caption",
|
|
98
108
|
class: "legend-caption legend-label",
|
|
99
109
|
"is-truncated": "",
|
|
@@ -101,13 +111,13 @@ const J = { class: "chart-legend" }, K = { class: "search-box" }, O = ["onClick"
|
|
|
101
111
|
"tooltip-text": e.caption,
|
|
102
112
|
"tooltip-placement": "left"
|
|
103
113
|
}, {
|
|
104
|
-
default:
|
|
105
|
-
|
|
114
|
+
default: c(() => [
|
|
115
|
+
b(L(e.caption), 1)
|
|
106
116
|
]),
|
|
107
117
|
_: 2
|
|
108
118
|
}, 1032, ["tooltip-text"])
|
|
109
119
|
])
|
|
110
|
-
], 8,
|
|
120
|
+
], 8, Q)
|
|
111
121
|
]),
|
|
112
122
|
_: 2
|
|
113
123
|
}, 1032, ["text", "disabled"])
|
|
@@ -118,5 +128,5 @@ const J = { class: "chart-legend" }, K = { class: "search-box" }, O = ["onClick"
|
|
|
118
128
|
}
|
|
119
129
|
});
|
|
120
130
|
export {
|
|
121
|
-
|
|
131
|
+
ne as default
|
|
122
132
|
};
|
|
@@ -1,25 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
/* empty css */import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
viewBox: "0 0 1072 275",
|
|
6
|
-
preserveAspectRatio: "none",
|
|
7
|
-
width: "100%",
|
|
8
|
-
height: "100%",
|
|
9
|
-
fill: "none"
|
|
10
|
-
}, [
|
|
11
|
-
/* @__PURE__ */ t("path", {
|
|
12
|
-
d: "M499.744 87.7024L499 87.4816C399.137 70.0475 293 138.418 218 173.72C120 219.848 87 235.892 0 275L1072 275C979 -57.3526 836.258 -31.5829 732 59.404C648.885 131.939 570.549 108.704 499.744 87.7024Z",
|
|
13
|
-
fill: "black",
|
|
14
|
-
"fill-opacity": "0.05"
|
|
15
|
-
})
|
|
16
|
-
], -1)), _ = [
|
|
17
|
-
p
|
|
18
|
-
];
|
|
19
|
-
function l(e, h) {
|
|
20
|
-
return o(), c("div", n, _);
|
|
21
|
-
}
|
|
22
|
-
const w = /* @__PURE__ */ a(d, [["render", l], ["__scopeId", "data-v-142c444a"]]);
|
|
1
|
+
import o from "./ChartLoader.vue2.js";
|
|
2
|
+
/* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../ChartLoader.vue_vue_type_style_index_0_scoped_ffa4cc66_lang.css"; //*');
|
|
4
|
+
const c = /* @__PURE__ */ e(o, [["__scopeId", "data-v-ffa4cc66"]]);
|
|
23
5
|
export {
|
|
24
|
-
|
|
6
|
+
c as default
|
|
25
7
|
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import "../../ChartLoader.vue_vue_type_style_index_0_scoped_ffa4cc66_lang.css"; import { defineComponent as e, openBlock as o, createElementBlock as r, createElementVNode as t, createVNode as a } from "vue";
|
|
2
|
+
import c from "../loader/v4/Loader.vue.js";
|
|
3
|
+
const n = { class: "chart-loader" }, s = { class: "chart-loader-wrapper" }, i = /* @__PURE__ */ e({
|
|
4
|
+
__name: "ChartLoader",
|
|
5
|
+
setup(d) {
|
|
6
|
+
return (_, p) => (o(), r("div", n, [
|
|
7
|
+
t("div", s, [
|
|
8
|
+
a(c)
|
|
9
|
+
])
|
|
10
|
+
]));
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
export {
|
|
14
|
+
i as default
|
|
15
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./ConditionalDropdown.vue2.js";
|
|
2
2
|
/* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../../ConditionalDropdown.
|
|
4
|
-
const n = /* @__PURE__ */ _(o, [["__scopeId", "data-v-
|
|
3
|
+
// import "../../../ConditionalDropdown.vue_vue_type_style_index_0_scoped_2a77c137_lang.css"; //*');
|
|
4
|
+
const n = /* @__PURE__ */ _(o, [["__scopeId", "data-v-2a77c137"]]);
|
|
5
5
|
export {
|
|
6
6
|
n as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../ConditionalDropdown.
|
|
1
|
+
import "../../../ConditionalDropdown.vue_vue_type_style_index_0_scoped_2a77c137_lang.css"; import { defineComponent as W, computed as O, ref as s, watch as k, onMounted as q, openBlock as L, createBlock as G, unref as d, withCtx as f, createVNode as y, mergeProps as H, createElementVNode as J, isRef as X, normalizeProps as Y, guardReactiveProps as Z, createElementBlock as _, createTextVNode as ee, toDisplayString as le, createCommentVNode as oe } from "vue";
|
|
2
2
|
import N from "./DropdownV4.vue.js";
|
|
3
3
|
import "./DefaultDropdownTrigger.vue.js";
|
|
4
4
|
import "./IconButtonDropdownTrigger.vue.js";
|
|
@@ -15,7 +15,7 @@ import { useDebounceFn as ue } from "@vueuse/core";
|
|
|
15
15
|
const re = { class: "conditional-container" }, se = {
|
|
16
16
|
key: 0,
|
|
17
17
|
class: "custom-list-area"
|
|
18
|
-
},
|
|
18
|
+
}, we = /* @__PURE__ */ W({
|
|
19
19
|
__name: "ConditionalDropdown",
|
|
20
20
|
props: {
|
|
21
21
|
selectedCondition: null,
|
|
@@ -55,7 +55,7 @@ const re = { class: "conditional-container" }, se = {
|
|
|
55
55
|
}), F = () => {
|
|
56
56
|
const { appliedSelections: l } = e;
|
|
57
57
|
return l ? Array.isArray(l) ? l : [l] : [];
|
|
58
|
-
},
|
|
58
|
+
}, K = s(null), c = s(!0), a = s([]), r = s(F()), w = s(!0), p = s(!1), C = s(!1), i = s(e.searchQuery), B = s(""), m = s(e.label), T = s([]), U = O(() => (!i.value || i.value?.length < e.minCharsToStart) && !a.value.length ? `Enter at least ${e.minCharsToStart} characters to begin` : "No results found"), I = O(() => {
|
|
59
59
|
const l = c.value ? 4 : 4.5, t = a.value.length > 4 ? a.value.length : l;
|
|
60
60
|
if (e.groupedOptions) {
|
|
61
61
|
let o = 0;
|
|
@@ -102,7 +102,7 @@ const re = { class: "conditional-container" }, se = {
|
|
|
102
102
|
A,
|
|
103
103
|
e.fetchDataDebounceTime
|
|
104
104
|
), b = (l) => {
|
|
105
|
-
l.length >= e.minCharsToStart ? (V(l),
|
|
105
|
+
l.length >= e.minCharsToStart ? (V(l), K.value?.scrollTo(0)) : e.infiniteLoading && n.value.multi ? a.value = T.value || [] : a.value = [];
|
|
106
106
|
}, x = () => {
|
|
107
107
|
i.value && a.value.length && !p.value && !n.value.multi ? a.value[0].conditionalOptions ? a.value[0] = {
|
|
108
108
|
name: i.value,
|
|
@@ -132,7 +132,7 @@ const re = { class: "conditional-container" }, se = {
|
|
|
132
132
|
}
|
|
133
133
|
);
|
|
134
134
|
const P = () => {
|
|
135
|
-
c.value && r.value.length === 0 ? (n.value = null, S.value = [], n.value = null) : (B.value = i.value, S.value = c.value ? [...r.value] : { ...r.value },
|
|
135
|
+
c.value && r.value.length === 0 ? (n.value = null, S.value = [], n.value = null) : (B.value = i.value, S.value = c.value ? [...r.value] : { ...r.value }, w.value = c.value), D();
|
|
136
136
|
};
|
|
137
137
|
k(n, (l, t) => {
|
|
138
138
|
n.value.multi ? (p.value = !0, !t.multi && l.multi && Array.isArray(e.appliedSelections) && (r.value = e.appliedSelections), setTimeout(() => {
|
|
@@ -156,7 +156,7 @@ const re = { class: "conditional-container" }, se = {
|
|
|
156
156
|
};
|
|
157
157
|
return (l, t) => (L(), G(d(N), {
|
|
158
158
|
ref_key: "dropdownRef",
|
|
159
|
-
ref:
|
|
159
|
+
ref: K,
|
|
160
160
|
selected: r.value,
|
|
161
161
|
"onUpdate:selected": t[2] || (t[2] = (o) => r.value = o),
|
|
162
162
|
"predefined-trigger": "chip",
|
|
@@ -192,7 +192,7 @@ const re = { class: "conditional-container" }, se = {
|
|
|
192
192
|
y(d(ae), H(o, {
|
|
193
193
|
label: m.value,
|
|
194
194
|
"selected-option": d(S),
|
|
195
|
-
multi:
|
|
195
|
+
multi: w.value,
|
|
196
196
|
"cancel-all-selected-display": "",
|
|
197
197
|
"display-value-in-quotes": !Array.isArray(r.value) && r.value.conditionalOptions,
|
|
198
198
|
onClear: R
|
|
@@ -242,5 +242,5 @@ const re = { class: "conditional-container" }, se = {
|
|
|
242
242
|
}
|
|
243
243
|
});
|
|
244
244
|
export {
|
|
245
|
-
|
|
245
|
+
we as default
|
|
246
246
|
};
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './AutocompleteDropdown.vue_vue_type_style_index_0_scoped_214ddaf4_lang.css';
|
|
2
2
|
import { AppTriggerTypes as ro } from "./components/appTrigger/index.js";
|
|
3
3
|
import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
|
|
4
4
|
import { MenuItemTypes as po } from "./components/menuItem/index.js";
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.disabled-tooltip[data-v-a1c626cd],.disabled-tooltip[data-v-a1c626cd] .container{width:100%}.chart-legend[data-v-a1c626cd]{display:flex;flex-direction:column;width:220px;height:100%;padding:0 8px 8px}.search-box[data-v-a1c626cd]{padding:12px 0 4px}.legend[data-v-a1c626cd]{overflow-y:auto;color:var(--text-primary);height:100%;overflow-x:hidden}.legend__list[data-v-a1c626cd]{list-style:none;padding:0}.legend__list>li[data-v-a1c626cd]{display:flex;align-items:center;gap:8px;padding:6px 8px}.legend__list>li[data-v-a1c626cd]:hover{background-color:var(--action-hover, rgba(0, 0, 0, .05));border-radius:8px;cursor:pointer}.legend__list>li.disabled-item[data-v-a1c626cd]{cursor:not-allowed!important;opacity:.5;background:var(--background-paper)}.legend__list>li .item-wrapper[data-v-a1c626cd]{display:flex;align-items:center;gap:8px;width:100%}.legend__list>li .item-wrapper .legend-label[data-v-a1c626cd]{width:80%}.legend__list>li .item-wrapper .icon-color[data-v-a1c626cd]{color:var(--action-active)}.legend__list>li .item-wrapper .label-container[data-v-a1c626cd]{display:flex;flex-direction:column;width:100%}.legend__list>li .item-wrapper .label-container .legend-caption[data-v-a1c626cd]{color:var(--text-secondary, #646464)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-142c444a]{color:#41454d}.chart-loader[data-v-142c444a]{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;padding:80px 31px 31px}.chart-loader[data-v-142c444a]:after{position:absolute;inset:0;transform:translate(-100%);background-image:linear-gradient(90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.2) 20%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0));animation:shimmer-142c444a 2s infinite;content:""}@keyframes shimmer-142c444a{to{transform:translate(100%)}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.custom-list-area[data-v-03022bc9]{color:var(--text-secondary);width:100%;text-align:center;box-sizing:border-box;padding:63px 43px}.inline-search[data-v-03022bc9]{width:100%}.contain-accept[data-v-03022bc9]{padding:6px 8px;margin-bottom:4px;cursor:pointer}.contain-accept[data-v-03022bc9]:hover{background-color:var(--action-hover);border-radius:.5rem}.contain-accept--query[data-v-03022bc9]{margin-left:4px;display:inline-flex;color:var(--primary-main)}
|