@eturnity/eturnity_reusable_components 8.26.1 → 8.26.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/main.es12.js +2 -2
- package/dist/main.es13.js +3 -3
- package/dist/main.es14.js +2 -2
- package/dist/main.es15.js +212 -60
- package/dist/main.es16.js +21 -196
- package/dist/main.es17.js +1051 -19
- package/dist/main.es18.js +215 -1044
- package/dist/main.es19.js +69 -197
- package/dist/main.es20.js +2 -99
- package/dist/main.es21.js +541 -2
- package/dist/main.es22.js +188 -530
- package/dist/main.es23.js +60 -212
- package/dist/main.es24.js +2 -2
- package/dist/main.es5.js +3 -3
- package/dist/main.es6.js +4 -4
- package/dist/main.es9.js +1 -1
- package/package.json +1 -1
- package/src/components/errorMessage/index.vue +1 -1
- package/src/components/inputs/inputText/index.vue +1 -3
- package/src/components/tableDropdown/index.vue +7 -5
package/dist/main.es18.js
CHANGED
@@ -1,1058 +1,229 @@
|
|
1
|
-
import
|
2
|
-
|
3
|
-
|
4
|
-
}
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
}
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
1
|
+
import styled from "./main.es7.js";
|
2
|
+
import "./main.es3.js";
|
3
|
+
import _export_sfc from "./main.es11.js";
|
4
|
+
import { resolveComponent, openBlock, createBlock, withCtx, createVNode, createTextVNode } from "./main.es6.js";
|
5
|
+
import { toDisplayString } from "./main.es22.js";
|
6
|
+
const Container = styled.div`
|
7
|
+
position: relative;
|
8
|
+
display: flex;
|
9
|
+
height: 47px;
|
10
|
+
width: ${(props) => props.width};
|
11
|
+
`;
|
12
|
+
const TopValueContainer = styled("div", {
|
13
|
+
position: String
|
14
|
+
})`
|
15
|
+
font-size: 11px;
|
16
|
+
left: ${(props) => props.position};
|
17
|
+
position: absolute;
|
18
|
+
display: flex;
|
19
|
+
justify-content: center
|
20
|
+
width: 0px;
|
21
|
+
color:${(props) => props.theme.colors.black};
|
22
|
+
item-align: center;
|
23
|
+
|
24
|
+
`;
|
25
|
+
const BottomValueContainer = styled("div", {
|
26
|
+
position: String
|
27
|
+
})`
|
28
|
+
font-size: 12px;
|
29
|
+
left: ${(props) => props.position};
|
30
|
+
width: 0px;
|
31
|
+
bottom: -2px;
|
32
|
+
position: absolute;
|
33
|
+
display: flex;
|
34
|
+
justify-content: center;
|
35
|
+
item-align: center;
|
36
|
+
border-radius: 4px;
|
37
|
+
color: white;
|
38
|
+
`;
|
39
|
+
const TextWrapper = styled("div", {
|
40
|
+
backgroundColor: String
|
41
|
+
})`
|
42
|
+
padding: 2px 6px;
|
43
|
+
background-color: ${(props) => props.theme.colors[props.backgroundColor] || props.backgroundColor};
|
44
|
+
border-radius: 4px;
|
45
|
+
`;
|
46
|
+
const Arrow = styled("div", {
|
47
|
+
backgroundColor: String
|
48
|
+
})`
|
49
|
+
position: absolute;
|
50
|
+
bottom: -10px;
|
51
|
+
left: calc(50% - 6px);
|
52
|
+
width: 0;
|
53
|
+
height: 0;
|
54
|
+
border: 6px solid transparent;
|
55
|
+
border-top-color: ${(props) => props.theme.colors[props.backgroundColor] || props.backgroundColor};
|
56
|
+
filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
|
57
|
+
`;
|
58
|
+
const MainLine = styled.div`
|
59
|
+
display: block;
|
60
|
+
position: absolute;
|
61
|
+
bottom: 16px;
|
62
|
+
height: 4px;
|
63
|
+
width: 100%;
|
64
|
+
border-radius: 4px;
|
65
|
+
background-color: ${(props) => props.theme.colors.grey4};
|
66
|
+
`;
|
67
|
+
const MainLineHighlight = styled("div", {
|
68
|
+
minPercent: Number,
|
69
|
+
maxPercent: Number
|
70
|
+
})`
|
71
|
+
display: block;
|
72
|
+
position: absolute;
|
73
|
+
left: ${(props) => props.minPercent + "%"};
|
74
|
+
right: ${(props) => 100 - props.maxPercent + "%"};
|
75
|
+
bottom: 16px;
|
76
|
+
height: 4px;
|
77
|
+
background-color: white;
|
78
|
+
`;
|
79
|
+
const VerticalMarker = styled("div")`
|
80
|
+
position: absolute;
|
81
|
+
width: 1px;
|
82
|
+
height: 8px;
|
83
|
+
background-color: white;
|
84
|
+
display: inline-block;
|
85
|
+
top: -6px;
|
86
|
+
left: 0px;
|
87
|
+
`;
|
88
|
+
const VerticalMarkerArrow = styled("div", {
|
89
|
+
color: String
|
90
|
+
})`
|
91
|
+
position: absolute;
|
92
|
+
width: 1px;
|
93
|
+
height: 4px;
|
94
|
+
background-color: ${(props) => props.color};
|
95
|
+
display: inline-block;
|
96
|
+
bottom: -14px;
|
97
|
+
left: 0px;
|
98
|
+
`;
|
99
|
+
const _sfc_main = {
|
100
|
+
name: "ProgressBar",
|
101
|
+
components: {
|
102
|
+
Container,
|
103
|
+
MainLineHighlight,
|
104
|
+
Arrow,
|
105
|
+
TopValueContainer,
|
106
|
+
BottomValueContainer,
|
107
|
+
MainLine,
|
108
|
+
VerticalMarker,
|
109
|
+
VerticalMarkerArrow,
|
110
|
+
TextWrapper
|
111
|
+
},
|
112
|
+
props: {
|
113
|
+
minValue: {
|
114
|
+
required: true,
|
115
|
+
type: Number
|
116
|
+
},
|
117
|
+
maxValue: {
|
118
|
+
required: true,
|
119
|
+
type: Number
|
120
|
+
},
|
121
|
+
value: {
|
122
|
+
required: true,
|
123
|
+
type: Number
|
124
|
+
},
|
125
|
+
arrowColor: {
|
126
|
+
required: false,
|
127
|
+
type: String,
|
128
|
+
default: "white"
|
129
|
+
},
|
130
|
+
width: {
|
131
|
+
required: false,
|
132
|
+
type: String,
|
133
|
+
default: null
|
95
134
|
}
|
96
|
-
}
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
if (wasTracked(dep) && !newTracked(dep)) {
|
105
|
-
dep.delete(effect);
|
135
|
+
},
|
136
|
+
data() {
|
137
|
+
return {};
|
138
|
+
},
|
139
|
+
computed: {
|
140
|
+
minPercent() {
|
141
|
+
if (this.maxValue === this.minValue) {
|
142
|
+
return 50;
|
106
143
|
} else {
|
107
|
-
|
144
|
+
return 30;
|
108
145
|
}
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
}
|
114
|
-
};
|
115
|
-
const targetMap = /* @__PURE__ */ new WeakMap();
|
116
|
-
let effectTrackDepth = 0;
|
117
|
-
let trackOpBit = 1;
|
118
|
-
const maxMarkerBits = 30;
|
119
|
-
let activeEffect;
|
120
|
-
const ITERATE_KEY = Symbol(!!(process.env.NODE_ENV !== "production") ? "iterate" : "");
|
121
|
-
const MAP_KEY_ITERATE_KEY = Symbol(!!(process.env.NODE_ENV !== "production") ? "Map key iterate" : "");
|
122
|
-
class ReactiveEffect {
|
123
|
-
constructor(fn, scheduler = null, scope) {
|
124
|
-
this.fn = fn;
|
125
|
-
this.scheduler = scheduler;
|
126
|
-
this.active = true;
|
127
|
-
this.deps = [];
|
128
|
-
this.parent = void 0;
|
129
|
-
recordEffectScope(this, scope);
|
130
|
-
}
|
131
|
-
run() {
|
132
|
-
if (!this.active) {
|
133
|
-
return this.fn();
|
134
|
-
}
|
135
|
-
let parent = activeEffect;
|
136
|
-
let lastShouldTrack = shouldTrack;
|
137
|
-
while (parent) {
|
138
|
-
if (parent === this) {
|
139
|
-
return;
|
140
|
-
}
|
141
|
-
parent = parent.parent;
|
142
|
-
}
|
143
|
-
try {
|
144
|
-
this.parent = activeEffect;
|
145
|
-
activeEffect = this;
|
146
|
-
shouldTrack = true;
|
147
|
-
trackOpBit = 1 << ++effectTrackDepth;
|
148
|
-
if (effectTrackDepth <= maxMarkerBits) {
|
149
|
-
initDepMarkers(this);
|
146
|
+
},
|
147
|
+
maxPercent() {
|
148
|
+
if (this.maxValue === this.minValue) {
|
149
|
+
return 50;
|
150
150
|
} else {
|
151
|
-
|
152
|
-
}
|
153
|
-
return this.fn();
|
154
|
-
} finally {
|
155
|
-
if (effectTrackDepth <= maxMarkerBits) {
|
156
|
-
finalizeDepMarkers(this);
|
157
|
-
}
|
158
|
-
trackOpBit = 1 << --effectTrackDepth;
|
159
|
-
activeEffect = this.parent;
|
160
|
-
shouldTrack = lastShouldTrack;
|
161
|
-
this.parent = void 0;
|
162
|
-
if (this.deferStop) {
|
163
|
-
this.stop();
|
164
|
-
}
|
165
|
-
}
|
166
|
-
}
|
167
|
-
stop() {
|
168
|
-
if (activeEffect === this) {
|
169
|
-
this.deferStop = true;
|
170
|
-
} else if (this.active) {
|
171
|
-
cleanupEffect(this);
|
172
|
-
if (this.onStop) {
|
173
|
-
this.onStop();
|
174
|
-
}
|
175
|
-
this.active = false;
|
176
|
-
}
|
177
|
-
}
|
178
|
-
}
|
179
|
-
function cleanupEffect(effect2) {
|
180
|
-
const { deps } = effect2;
|
181
|
-
if (deps.length) {
|
182
|
-
for (let i = 0; i < deps.length; i++) {
|
183
|
-
deps[i].delete(effect2);
|
184
|
-
}
|
185
|
-
deps.length = 0;
|
186
|
-
}
|
187
|
-
}
|
188
|
-
let shouldTrack = true;
|
189
|
-
const trackStack = [];
|
190
|
-
function pauseTracking() {
|
191
|
-
trackStack.push(shouldTrack);
|
192
|
-
shouldTrack = false;
|
193
|
-
}
|
194
|
-
function resetTracking() {
|
195
|
-
const last = trackStack.pop();
|
196
|
-
shouldTrack = last === void 0 ? true : last;
|
197
|
-
}
|
198
|
-
function track(target, type, key) {
|
199
|
-
if (shouldTrack && activeEffect) {
|
200
|
-
let depsMap = targetMap.get(target);
|
201
|
-
if (!depsMap) {
|
202
|
-
targetMap.set(target, depsMap = /* @__PURE__ */ new Map());
|
203
|
-
}
|
204
|
-
let dep = depsMap.get(key);
|
205
|
-
if (!dep) {
|
206
|
-
depsMap.set(key, dep = createDep());
|
207
|
-
}
|
208
|
-
const eventInfo = !!(process.env.NODE_ENV !== "production") ? { effect: activeEffect, target, type, key } : void 0;
|
209
|
-
trackEffects(dep, eventInfo);
|
210
|
-
}
|
211
|
-
}
|
212
|
-
function trackEffects(dep, debuggerEventExtraInfo) {
|
213
|
-
let shouldTrack2 = false;
|
214
|
-
if (effectTrackDepth <= maxMarkerBits) {
|
215
|
-
if (!newTracked(dep)) {
|
216
|
-
dep.n |= trackOpBit;
|
217
|
-
shouldTrack2 = !wasTracked(dep);
|
218
|
-
}
|
219
|
-
} else {
|
220
|
-
shouldTrack2 = !dep.has(activeEffect);
|
221
|
-
}
|
222
|
-
if (shouldTrack2) {
|
223
|
-
dep.add(activeEffect);
|
224
|
-
activeEffect.deps.push(dep);
|
225
|
-
if (!!(process.env.NODE_ENV !== "production") && activeEffect.onTrack) {
|
226
|
-
activeEffect.onTrack(
|
227
|
-
extend(
|
228
|
-
{
|
229
|
-
effect: activeEffect
|
230
|
-
},
|
231
|
-
debuggerEventExtraInfo
|
232
|
-
)
|
233
|
-
);
|
234
|
-
}
|
235
|
-
}
|
236
|
-
}
|
237
|
-
function trigger(target, type, key, newValue, oldValue, oldTarget) {
|
238
|
-
const depsMap = targetMap.get(target);
|
239
|
-
if (!depsMap) {
|
240
|
-
return;
|
241
|
-
}
|
242
|
-
let deps = [];
|
243
|
-
if (type === "clear") {
|
244
|
-
deps = [...depsMap.values()];
|
245
|
-
} else if (key === "length" && isArray(target)) {
|
246
|
-
const newLength = Number(newValue);
|
247
|
-
depsMap.forEach((dep, key2) => {
|
248
|
-
if (key2 === "length" || key2 >= newLength) {
|
249
|
-
deps.push(dep);
|
151
|
+
return 70;
|
250
152
|
}
|
251
|
-
}
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
switch (type) {
|
257
|
-
case "add":
|
258
|
-
if (!isArray(target)) {
|
259
|
-
deps.push(depsMap.get(ITERATE_KEY));
|
260
|
-
if (isMap(target)) {
|
261
|
-
deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));
|
262
|
-
}
|
263
|
-
} else if (isIntegerKey(key)) {
|
264
|
-
deps.push(depsMap.get("length"));
|
265
|
-
}
|
266
|
-
break;
|
267
|
-
case "delete":
|
268
|
-
if (!isArray(target)) {
|
269
|
-
deps.push(depsMap.get(ITERATE_KEY));
|
270
|
-
if (isMap(target)) {
|
271
|
-
deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));
|
272
|
-
}
|
273
|
-
}
|
274
|
-
break;
|
275
|
-
case "set":
|
276
|
-
if (isMap(target)) {
|
277
|
-
deps.push(depsMap.get(ITERATE_KEY));
|
278
|
-
}
|
279
|
-
break;
|
280
|
-
}
|
281
|
-
}
|
282
|
-
const eventInfo = !!(process.env.NODE_ENV !== "production") ? { target, type, key, newValue, oldValue, oldTarget } : void 0;
|
283
|
-
if (deps.length === 1) {
|
284
|
-
if (deps[0]) {
|
285
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
286
|
-
triggerEffects(deps[0], eventInfo);
|
153
|
+
},
|
154
|
+
valuePercent() {
|
155
|
+
let percent;
|
156
|
+
if (this.maxValue === this.minValue) {
|
157
|
+
percent = this.minPercent + 10 * (this.value - this.minValue);
|
287
158
|
} else {
|
288
|
-
|
289
|
-
}
|
290
|
-
}
|
291
|
-
} else {
|
292
|
-
const effects = [];
|
293
|
-
for (const dep of deps) {
|
294
|
-
if (dep) {
|
295
|
-
effects.push(...dep);
|
159
|
+
percent = this.minPercent + (this.maxPercent - this.minPercent) / (this.maxValue - this.minValue) * (this.value - this.minValue);
|
296
160
|
}
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
}
|
303
|
-
}
|
304
|
-
}
|
305
|
-
function triggerEffects(dep, debuggerEventExtraInfo) {
|
306
|
-
const effects = isArray(dep) ? dep : [...dep];
|
307
|
-
for (const effect2 of effects) {
|
308
|
-
if (effect2.computed) {
|
309
|
-
triggerEffect(effect2, debuggerEventExtraInfo);
|
310
|
-
}
|
311
|
-
}
|
312
|
-
for (const effect2 of effects) {
|
313
|
-
if (!effect2.computed) {
|
314
|
-
triggerEffect(effect2, debuggerEventExtraInfo);
|
315
|
-
}
|
316
|
-
}
|
317
|
-
}
|
318
|
-
function triggerEffect(effect2, debuggerEventExtraInfo) {
|
319
|
-
if (effect2 !== activeEffect || effect2.allowRecurse) {
|
320
|
-
if (!!(process.env.NODE_ENV !== "production") && effect2.onTrigger) {
|
321
|
-
effect2.onTrigger(extend({ effect: effect2 }, debuggerEventExtraInfo));
|
322
|
-
}
|
323
|
-
if (effect2.scheduler) {
|
324
|
-
effect2.scheduler();
|
325
|
-
} else {
|
326
|
-
effect2.run();
|
327
|
-
}
|
328
|
-
}
|
329
|
-
}
|
330
|
-
const isNonTrackableKeys = /* @__PURE__ */ makeMap(`__proto__,__v_isRef,__isVue`);
|
331
|
-
const builtInSymbols = new Set(
|
332
|
-
/* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((key) => key !== "arguments" && key !== "caller").map((key) => Symbol[key]).filter(isSymbol)
|
333
|
-
);
|
334
|
-
const get$1 = /* @__PURE__ */ createGetter();
|
335
|
-
const shallowGet = /* @__PURE__ */ createGetter(false, true);
|
336
|
-
const readonlyGet = /* @__PURE__ */ createGetter(true);
|
337
|
-
const shallowReadonlyGet = /* @__PURE__ */ createGetter(true, true);
|
338
|
-
const arrayInstrumentations = /* @__PURE__ */ createArrayInstrumentations();
|
339
|
-
function createArrayInstrumentations() {
|
340
|
-
const instrumentations = {};
|
341
|
-
["includes", "indexOf", "lastIndexOf"].forEach((key) => {
|
342
|
-
instrumentations[key] = function(...args) {
|
343
|
-
const arr = toRaw(this);
|
344
|
-
for (let i = 0, l = this.length; i < l; i++) {
|
345
|
-
track(arr, "get", i + "");
|
346
|
-
}
|
347
|
-
const res = arr[key](...args);
|
348
|
-
if (res === -1 || res === false) {
|
349
|
-
return arr[key](...args.map(toRaw));
|
161
|
+
return Math.max(0, Math.min(100, percent));
|
162
|
+
},
|
163
|
+
colorVerticalMarkerArrow() {
|
164
|
+
if (this.value < this.maxValue && this.value > this.minValue) {
|
165
|
+
return "black";
|
350
166
|
} else {
|
351
|
-
return
|
352
|
-
}
|
353
|
-
};
|
354
|
-
});
|
355
|
-
["push", "pop", "shift", "unshift", "splice"].forEach((key) => {
|
356
|
-
instrumentations[key] = function(...args) {
|
357
|
-
pauseTracking();
|
358
|
-
const res = toRaw(this)[key].apply(this, args);
|
359
|
-
resetTracking();
|
360
|
-
return res;
|
361
|
-
};
|
362
|
-
});
|
363
|
-
return instrumentations;
|
364
|
-
}
|
365
|
-
function hasOwnProperty(key) {
|
366
|
-
const obj = toRaw(this);
|
367
|
-
track(obj, "has", key);
|
368
|
-
return obj.hasOwnProperty(key);
|
369
|
-
}
|
370
|
-
function createGetter(isReadonly2 = false, shallow = false) {
|
371
|
-
return function get2(target, key, receiver) {
|
372
|
-
if (key === "__v_isReactive") {
|
373
|
-
return !isReadonly2;
|
374
|
-
} else if (key === "__v_isReadonly") {
|
375
|
-
return isReadonly2;
|
376
|
-
} else if (key === "__v_isShallow") {
|
377
|
-
return shallow;
|
378
|
-
} else if (key === "__v_raw" && receiver === (isReadonly2 ? shallow ? shallowReadonlyMap : readonlyMap : shallow ? shallowReactiveMap : reactiveMap).get(target)) {
|
379
|
-
return target;
|
380
|
-
}
|
381
|
-
const targetIsArray = isArray(target);
|
382
|
-
if (!isReadonly2) {
|
383
|
-
if (targetIsArray && hasOwn(arrayInstrumentations, key)) {
|
384
|
-
return Reflect.get(arrayInstrumentations, key, receiver);
|
385
|
-
}
|
386
|
-
if (key === "hasOwnProperty") {
|
387
|
-
return hasOwnProperty;
|
388
|
-
}
|
389
|
-
}
|
390
|
-
const res = Reflect.get(target, key, receiver);
|
391
|
-
if (isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {
|
392
|
-
return res;
|
393
|
-
}
|
394
|
-
if (!isReadonly2) {
|
395
|
-
track(target, "get", key);
|
396
|
-
}
|
397
|
-
if (shallow) {
|
398
|
-
return res;
|
399
|
-
}
|
400
|
-
if (isRef(res)) {
|
401
|
-
return targetIsArray && isIntegerKey(key) ? res : res.value;
|
402
|
-
}
|
403
|
-
if (isObject(res)) {
|
404
|
-
return isReadonly2 ? readonly(res) : reactive(res);
|
405
|
-
}
|
406
|
-
return res;
|
407
|
-
};
|
408
|
-
}
|
409
|
-
const set$1 = /* @__PURE__ */ createSetter();
|
410
|
-
const shallowSet = /* @__PURE__ */ createSetter(true);
|
411
|
-
function createSetter(shallow = false) {
|
412
|
-
return function set2(target, key, value, receiver) {
|
413
|
-
let oldValue = target[key];
|
414
|
-
if (isReadonly(oldValue) && isRef(oldValue) && !isRef(value)) {
|
415
|
-
return false;
|
416
|
-
}
|
417
|
-
if (!shallow) {
|
418
|
-
if (!isShallow(value) && !isReadonly(value)) {
|
419
|
-
oldValue = toRaw(oldValue);
|
420
|
-
value = toRaw(value);
|
421
|
-
}
|
422
|
-
if (!isArray(target) && isRef(oldValue) && !isRef(value)) {
|
423
|
-
oldValue.value = value;
|
424
|
-
return true;
|
425
|
-
}
|
426
|
-
}
|
427
|
-
const hadKey = isArray(target) && isIntegerKey(key) ? Number(key) < target.length : hasOwn(target, key);
|
428
|
-
const result = Reflect.set(target, key, value, receiver);
|
429
|
-
if (target === toRaw(receiver)) {
|
430
|
-
if (!hadKey) {
|
431
|
-
trigger(target, "add", key, value);
|
432
|
-
} else if (hasChanged(value, oldValue)) {
|
433
|
-
trigger(target, "set", key, value, oldValue);
|
434
|
-
}
|
435
|
-
}
|
436
|
-
return result;
|
437
|
-
};
|
438
|
-
}
|
439
|
-
function deleteProperty(target, key) {
|
440
|
-
const hadKey = hasOwn(target, key);
|
441
|
-
const oldValue = target[key];
|
442
|
-
const result = Reflect.deleteProperty(target, key);
|
443
|
-
if (result && hadKey) {
|
444
|
-
trigger(target, "delete", key, void 0, oldValue);
|
445
|
-
}
|
446
|
-
return result;
|
447
|
-
}
|
448
|
-
function has$1(target, key) {
|
449
|
-
const result = Reflect.has(target, key);
|
450
|
-
if (!isSymbol(key) || !builtInSymbols.has(key)) {
|
451
|
-
track(target, "has", key);
|
452
|
-
}
|
453
|
-
return result;
|
454
|
-
}
|
455
|
-
function ownKeys(target) {
|
456
|
-
track(target, "iterate", isArray(target) ? "length" : ITERATE_KEY);
|
457
|
-
return Reflect.ownKeys(target);
|
458
|
-
}
|
459
|
-
const mutableHandlers = {
|
460
|
-
get: get$1,
|
461
|
-
set: set$1,
|
462
|
-
deleteProperty,
|
463
|
-
has: has$1,
|
464
|
-
ownKeys
|
465
|
-
};
|
466
|
-
const readonlyHandlers = {
|
467
|
-
get: readonlyGet,
|
468
|
-
set(target, key) {
|
469
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
470
|
-
warn(
|
471
|
-
`Set operation on key "${String(key)}" failed: target is readonly.`,
|
472
|
-
target
|
473
|
-
);
|
474
|
-
}
|
475
|
-
return true;
|
476
|
-
},
|
477
|
-
deleteProperty(target, key) {
|
478
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
479
|
-
warn(
|
480
|
-
`Delete operation on key "${String(key)}" failed: target is readonly.`,
|
481
|
-
target
|
482
|
-
);
|
483
|
-
}
|
484
|
-
return true;
|
485
|
-
}
|
486
|
-
};
|
487
|
-
const shallowReactiveHandlers = /* @__PURE__ */ extend(
|
488
|
-
{},
|
489
|
-
mutableHandlers,
|
490
|
-
{
|
491
|
-
get: shallowGet,
|
492
|
-
set: shallowSet
|
493
|
-
}
|
494
|
-
);
|
495
|
-
const shallowReadonlyHandlers = /* @__PURE__ */ extend(
|
496
|
-
{},
|
497
|
-
readonlyHandlers,
|
498
|
-
{
|
499
|
-
get: shallowReadonlyGet
|
500
|
-
}
|
501
|
-
);
|
502
|
-
const toShallow = (value) => value;
|
503
|
-
const getProto = (v) => Reflect.getPrototypeOf(v);
|
504
|
-
function get(target, key, isReadonly2 = false, isShallow2 = false) {
|
505
|
-
target = target["__v_raw"];
|
506
|
-
const rawTarget = toRaw(target);
|
507
|
-
const rawKey = toRaw(key);
|
508
|
-
if (!isReadonly2) {
|
509
|
-
if (key !== rawKey) {
|
510
|
-
track(rawTarget, "get", key);
|
511
|
-
}
|
512
|
-
track(rawTarget, "get", rawKey);
|
513
|
-
}
|
514
|
-
const { has: has2 } = getProto(rawTarget);
|
515
|
-
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
516
|
-
if (has2.call(rawTarget, key)) {
|
517
|
-
return wrap(target.get(key));
|
518
|
-
} else if (has2.call(rawTarget, rawKey)) {
|
519
|
-
return wrap(target.get(rawKey));
|
520
|
-
} else if (target !== rawTarget) {
|
521
|
-
target.get(key);
|
522
|
-
}
|
523
|
-
}
|
524
|
-
function has(key, isReadonly2 = false) {
|
525
|
-
const target = this["__v_raw"];
|
526
|
-
const rawTarget = toRaw(target);
|
527
|
-
const rawKey = toRaw(key);
|
528
|
-
if (!isReadonly2) {
|
529
|
-
if (key !== rawKey) {
|
530
|
-
track(rawTarget, "has", key);
|
531
|
-
}
|
532
|
-
track(rawTarget, "has", rawKey);
|
533
|
-
}
|
534
|
-
return key === rawKey ? target.has(key) : target.has(key) || target.has(rawKey);
|
535
|
-
}
|
536
|
-
function size(target, isReadonly2 = false) {
|
537
|
-
target = target["__v_raw"];
|
538
|
-
!isReadonly2 && track(toRaw(target), "iterate", ITERATE_KEY);
|
539
|
-
return Reflect.get(target, "size", target);
|
540
|
-
}
|
541
|
-
function add(value) {
|
542
|
-
value = toRaw(value);
|
543
|
-
const target = toRaw(this);
|
544
|
-
const proto = getProto(target);
|
545
|
-
const hadKey = proto.has.call(target, value);
|
546
|
-
if (!hadKey) {
|
547
|
-
target.add(value);
|
548
|
-
trigger(target, "add", value, value);
|
549
|
-
}
|
550
|
-
return this;
|
551
|
-
}
|
552
|
-
function set(key, value) {
|
553
|
-
value = toRaw(value);
|
554
|
-
const target = toRaw(this);
|
555
|
-
const { has: has2, get: get2 } = getProto(target);
|
556
|
-
let hadKey = has2.call(target, key);
|
557
|
-
if (!hadKey) {
|
558
|
-
key = toRaw(key);
|
559
|
-
hadKey = has2.call(target, key);
|
560
|
-
} else if (!!(process.env.NODE_ENV !== "production")) {
|
561
|
-
checkIdentityKeys(target, has2, key);
|
562
|
-
}
|
563
|
-
const oldValue = get2.call(target, key);
|
564
|
-
target.set(key, value);
|
565
|
-
if (!hadKey) {
|
566
|
-
trigger(target, "add", key, value);
|
567
|
-
} else if (hasChanged(value, oldValue)) {
|
568
|
-
trigger(target, "set", key, value, oldValue);
|
569
|
-
}
|
570
|
-
return this;
|
571
|
-
}
|
572
|
-
function deleteEntry(key) {
|
573
|
-
const target = toRaw(this);
|
574
|
-
const { has: has2, get: get2 } = getProto(target);
|
575
|
-
let hadKey = has2.call(target, key);
|
576
|
-
if (!hadKey) {
|
577
|
-
key = toRaw(key);
|
578
|
-
hadKey = has2.call(target, key);
|
579
|
-
} else if (!!(process.env.NODE_ENV !== "production")) {
|
580
|
-
checkIdentityKeys(target, has2, key);
|
581
|
-
}
|
582
|
-
const oldValue = get2 ? get2.call(target, key) : void 0;
|
583
|
-
const result = target.delete(key);
|
584
|
-
if (hadKey) {
|
585
|
-
trigger(target, "delete", key, void 0, oldValue);
|
586
|
-
}
|
587
|
-
return result;
|
588
|
-
}
|
589
|
-
function clear() {
|
590
|
-
const target = toRaw(this);
|
591
|
-
const hadItems = target.size !== 0;
|
592
|
-
const oldTarget = !!(process.env.NODE_ENV !== "production") ? isMap(target) ? new Map(target) : new Set(target) : void 0;
|
593
|
-
const result = target.clear();
|
594
|
-
if (hadItems) {
|
595
|
-
trigger(target, "clear", void 0, void 0, oldTarget);
|
596
|
-
}
|
597
|
-
return result;
|
598
|
-
}
|
599
|
-
function createForEach(isReadonly2, isShallow2) {
|
600
|
-
return function forEach(callback, thisArg) {
|
601
|
-
const observed = this;
|
602
|
-
const target = observed["__v_raw"];
|
603
|
-
const rawTarget = toRaw(target);
|
604
|
-
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
605
|
-
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
|
606
|
-
return target.forEach((value, key) => {
|
607
|
-
return callback.call(thisArg, wrap(value), wrap(key), observed);
|
608
|
-
});
|
609
|
-
};
|
610
|
-
}
|
611
|
-
function createIterableMethod(method, isReadonly2, isShallow2) {
|
612
|
-
return function(...args) {
|
613
|
-
const target = this["__v_raw"];
|
614
|
-
const rawTarget = toRaw(target);
|
615
|
-
const targetIsMap = isMap(rawTarget);
|
616
|
-
const isPair = method === "entries" || method === Symbol.iterator && targetIsMap;
|
617
|
-
const isKeyOnly = method === "keys" && targetIsMap;
|
618
|
-
const innerIterator = target[method](...args);
|
619
|
-
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
620
|
-
!isReadonly2 && track(
|
621
|
-
rawTarget,
|
622
|
-
"iterate",
|
623
|
-
isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY
|
624
|
-
);
|
625
|
-
return {
|
626
|
-
// iterator protocol
|
627
|
-
next() {
|
628
|
-
const { value, done } = innerIterator.next();
|
629
|
-
return done ? { value, done } : {
|
630
|
-
value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value),
|
631
|
-
done
|
632
|
-
};
|
633
|
-
},
|
634
|
-
// iterable protocol
|
635
|
-
[Symbol.iterator]() {
|
636
|
-
return this;
|
167
|
+
return "white";
|
637
168
|
}
|
638
|
-
};
|
639
|
-
};
|
640
|
-
}
|
641
|
-
function createReadonlyMethod(type) {
|
642
|
-
return function(...args) {
|
643
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
644
|
-
const key = args[0] ? `on key "${args[0]}" ` : ``;
|
645
|
-
console.warn(
|
646
|
-
`${capitalize(type)} operation ${key}failed: target is readonly.`,
|
647
|
-
toRaw(this)
|
648
|
-
);
|
649
|
-
}
|
650
|
-
return type === "delete" ? false : this;
|
651
|
-
};
|
652
|
-
}
|
653
|
-
function createInstrumentations() {
|
654
|
-
const mutableInstrumentations2 = {
|
655
|
-
get(key) {
|
656
|
-
return get(this, key);
|
657
|
-
},
|
658
|
-
get size() {
|
659
|
-
return size(this);
|
660
|
-
},
|
661
|
-
has,
|
662
|
-
add,
|
663
|
-
set,
|
664
|
-
delete: deleteEntry,
|
665
|
-
clear,
|
666
|
-
forEach: createForEach(false, false)
|
667
|
-
};
|
668
|
-
const shallowInstrumentations2 = {
|
669
|
-
get(key) {
|
670
|
-
return get(this, key, false, true);
|
671
|
-
},
|
672
|
-
get size() {
|
673
|
-
return size(this);
|
674
|
-
},
|
675
|
-
has,
|
676
|
-
add,
|
677
|
-
set,
|
678
|
-
delete: deleteEntry,
|
679
|
-
clear,
|
680
|
-
forEach: createForEach(false, true)
|
681
|
-
};
|
682
|
-
const readonlyInstrumentations2 = {
|
683
|
-
get(key) {
|
684
|
-
return get(this, key, true);
|
685
|
-
},
|
686
|
-
get size() {
|
687
|
-
return size(this, true);
|
688
|
-
},
|
689
|
-
has(key) {
|
690
|
-
return has.call(this, key, true);
|
691
|
-
},
|
692
|
-
add: createReadonlyMethod("add"),
|
693
|
-
set: createReadonlyMethod("set"),
|
694
|
-
delete: createReadonlyMethod("delete"),
|
695
|
-
clear: createReadonlyMethod("clear"),
|
696
|
-
forEach: createForEach(true, false)
|
697
|
-
};
|
698
|
-
const shallowReadonlyInstrumentations2 = {
|
699
|
-
get(key) {
|
700
|
-
return get(this, key, true, true);
|
701
|
-
},
|
702
|
-
get size() {
|
703
|
-
return size(this, true);
|
704
|
-
},
|
705
|
-
has(key) {
|
706
|
-
return has.call(this, key, true);
|
707
|
-
},
|
708
|
-
add: createReadonlyMethod("add"),
|
709
|
-
set: createReadonlyMethod("set"),
|
710
|
-
delete: createReadonlyMethod("delete"),
|
711
|
-
clear: createReadonlyMethod("clear"),
|
712
|
-
forEach: createForEach(true, true)
|
713
|
-
};
|
714
|
-
const iteratorMethods = ["keys", "values", "entries", Symbol.iterator];
|
715
|
-
iteratorMethods.forEach((method) => {
|
716
|
-
mutableInstrumentations2[method] = createIterableMethod(
|
717
|
-
method,
|
718
|
-
false,
|
719
|
-
false
|
720
|
-
);
|
721
|
-
readonlyInstrumentations2[method] = createIterableMethod(
|
722
|
-
method,
|
723
|
-
true,
|
724
|
-
false
|
725
|
-
);
|
726
|
-
shallowInstrumentations2[method] = createIterableMethod(
|
727
|
-
method,
|
728
|
-
false,
|
729
|
-
true
|
730
|
-
);
|
731
|
-
shallowReadonlyInstrumentations2[method] = createIterableMethod(
|
732
|
-
method,
|
733
|
-
true,
|
734
|
-
true
|
735
|
-
);
|
736
|
-
});
|
737
|
-
return [
|
738
|
-
mutableInstrumentations2,
|
739
|
-
readonlyInstrumentations2,
|
740
|
-
shallowInstrumentations2,
|
741
|
-
shallowReadonlyInstrumentations2
|
742
|
-
];
|
743
|
-
}
|
744
|
-
const [
|
745
|
-
mutableInstrumentations,
|
746
|
-
readonlyInstrumentations,
|
747
|
-
shallowInstrumentations,
|
748
|
-
shallowReadonlyInstrumentations
|
749
|
-
] = /* @__PURE__ */ createInstrumentations();
|
750
|
-
function createInstrumentationGetter(isReadonly2, shallow) {
|
751
|
-
const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations;
|
752
|
-
return (target, key, receiver) => {
|
753
|
-
if (key === "__v_isReactive") {
|
754
|
-
return !isReadonly2;
|
755
|
-
} else if (key === "__v_isReadonly") {
|
756
|
-
return isReadonly2;
|
757
|
-
} else if (key === "__v_raw") {
|
758
|
-
return target;
|
759
|
-
}
|
760
|
-
return Reflect.get(
|
761
|
-
hasOwn(instrumentations, key) && key in target ? instrumentations : target,
|
762
|
-
key,
|
763
|
-
receiver
|
764
|
-
);
|
765
|
-
};
|
766
|
-
}
|
767
|
-
const mutableCollectionHandlers = {
|
768
|
-
get: /* @__PURE__ */ createInstrumentationGetter(false, false)
|
769
|
-
};
|
770
|
-
const shallowCollectionHandlers = {
|
771
|
-
get: /* @__PURE__ */ createInstrumentationGetter(false, true)
|
772
|
-
};
|
773
|
-
const readonlyCollectionHandlers = {
|
774
|
-
get: /* @__PURE__ */ createInstrumentationGetter(true, false)
|
775
|
-
};
|
776
|
-
const shallowReadonlyCollectionHandlers = {
|
777
|
-
get: /* @__PURE__ */ createInstrumentationGetter(true, true)
|
778
|
-
};
|
779
|
-
function checkIdentityKeys(target, has2, key) {
|
780
|
-
const rawKey = toRaw(key);
|
781
|
-
if (rawKey !== key && has2.call(target, rawKey)) {
|
782
|
-
const type = toRawType(target);
|
783
|
-
console.warn(
|
784
|
-
`Reactive ${type} contains both the raw and reactive versions of the same object${type === `Map` ? ` as keys` : ``}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.`
|
785
|
-
);
|
786
|
-
}
|
787
|
-
}
|
788
|
-
const reactiveMap = /* @__PURE__ */ new WeakMap();
|
789
|
-
const shallowReactiveMap = /* @__PURE__ */ new WeakMap();
|
790
|
-
const readonlyMap = /* @__PURE__ */ new WeakMap();
|
791
|
-
const shallowReadonlyMap = /* @__PURE__ */ new WeakMap();
|
792
|
-
function targetTypeMap(rawType) {
|
793
|
-
switch (rawType) {
|
794
|
-
case "Object":
|
795
|
-
case "Array":
|
796
|
-
return 1;
|
797
|
-
case "Map":
|
798
|
-
case "Set":
|
799
|
-
case "WeakMap":
|
800
|
-
case "WeakSet":
|
801
|
-
return 2;
|
802
|
-
default:
|
803
|
-
return 0;
|
804
|
-
}
|
805
|
-
}
|
806
|
-
function getTargetType(value) {
|
807
|
-
return value["__v_skip"] || !Object.isExtensible(value) ? 0 : targetTypeMap(toRawType(value));
|
808
|
-
}
|
809
|
-
function reactive(target) {
|
810
|
-
if (isReadonly(target)) {
|
811
|
-
return target;
|
812
|
-
}
|
813
|
-
return createReactiveObject(
|
814
|
-
target,
|
815
|
-
false,
|
816
|
-
mutableHandlers,
|
817
|
-
mutableCollectionHandlers,
|
818
|
-
reactiveMap
|
819
|
-
);
|
820
|
-
}
|
821
|
-
function shallowReactive(target) {
|
822
|
-
return createReactiveObject(
|
823
|
-
target,
|
824
|
-
false,
|
825
|
-
shallowReactiveHandlers,
|
826
|
-
shallowCollectionHandlers,
|
827
|
-
shallowReactiveMap
|
828
|
-
);
|
829
|
-
}
|
830
|
-
function readonly(target) {
|
831
|
-
return createReactiveObject(
|
832
|
-
target,
|
833
|
-
true,
|
834
|
-
readonlyHandlers,
|
835
|
-
readonlyCollectionHandlers,
|
836
|
-
readonlyMap
|
837
|
-
);
|
838
|
-
}
|
839
|
-
function shallowReadonly(target) {
|
840
|
-
return createReactiveObject(
|
841
|
-
target,
|
842
|
-
true,
|
843
|
-
shallowReadonlyHandlers,
|
844
|
-
shallowReadonlyCollectionHandlers,
|
845
|
-
shallowReadonlyMap
|
846
|
-
);
|
847
|
-
}
|
848
|
-
function createReactiveObject(target, isReadonly2, baseHandlers, collectionHandlers, proxyMap) {
|
849
|
-
if (!isObject(target)) {
|
850
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
851
|
-
console.warn(`value cannot be made reactive: ${String(target)}`);
|
852
|
-
}
|
853
|
-
return target;
|
854
|
-
}
|
855
|
-
if (target["__v_raw"] && !(isReadonly2 && target["__v_isReactive"])) {
|
856
|
-
return target;
|
857
|
-
}
|
858
|
-
const existingProxy = proxyMap.get(target);
|
859
|
-
if (existingProxy) {
|
860
|
-
return existingProxy;
|
861
|
-
}
|
862
|
-
const targetType = getTargetType(target);
|
863
|
-
if (targetType === 0) {
|
864
|
-
return target;
|
865
|
-
}
|
866
|
-
const proxy = new Proxy(
|
867
|
-
target,
|
868
|
-
targetType === 2 ? collectionHandlers : baseHandlers
|
869
|
-
);
|
870
|
-
proxyMap.set(target, proxy);
|
871
|
-
return proxy;
|
872
|
-
}
|
873
|
-
function isReactive(value) {
|
874
|
-
if (isReadonly(value)) {
|
875
|
-
return isReactive(value["__v_raw"]);
|
876
|
-
}
|
877
|
-
return !!(value && value["__v_isReactive"]);
|
878
|
-
}
|
879
|
-
function isReadonly(value) {
|
880
|
-
return !!(value && value["__v_isReadonly"]);
|
881
|
-
}
|
882
|
-
function isShallow(value) {
|
883
|
-
return !!(value && value["__v_isShallow"]);
|
884
|
-
}
|
885
|
-
function isProxy(value) {
|
886
|
-
return isReactive(value) || isReadonly(value);
|
887
|
-
}
|
888
|
-
function toRaw(observed) {
|
889
|
-
const raw = observed && observed["__v_raw"];
|
890
|
-
return raw ? toRaw(raw) : observed;
|
891
|
-
}
|
892
|
-
function markRaw(value) {
|
893
|
-
def(value, "__v_skip", true);
|
894
|
-
return value;
|
895
|
-
}
|
896
|
-
const toReactive = (value) => isObject(value) ? reactive(value) : value;
|
897
|
-
const toReadonly = (value) => isObject(value) ? readonly(value) : value;
|
898
|
-
function trackRefValue(ref2) {
|
899
|
-
if (shouldTrack && activeEffect) {
|
900
|
-
ref2 = toRaw(ref2);
|
901
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
902
|
-
trackEffects(ref2.dep || (ref2.dep = createDep()), {
|
903
|
-
target: ref2,
|
904
|
-
type: "get",
|
905
|
-
key: "value"
|
906
|
-
});
|
907
|
-
} else {
|
908
|
-
trackEffects(ref2.dep || (ref2.dep = createDep()));
|
909
|
-
}
|
910
|
-
}
|
911
|
-
}
|
912
|
-
function triggerRefValue(ref2, newVal) {
|
913
|
-
ref2 = toRaw(ref2);
|
914
|
-
const dep = ref2.dep;
|
915
|
-
if (dep) {
|
916
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
917
|
-
triggerEffects(dep, {
|
918
|
-
target: ref2,
|
919
|
-
type: "set",
|
920
|
-
key: "value",
|
921
|
-
newValue: newVal
|
922
|
-
});
|
923
|
-
} else {
|
924
|
-
triggerEffects(dep);
|
925
|
-
}
|
926
|
-
}
|
927
|
-
}
|
928
|
-
function isRef(r) {
|
929
|
-
return !!(r && r.__v_isRef === true);
|
930
|
-
}
|
931
|
-
function ref(value) {
|
932
|
-
return createRef(value, false);
|
933
|
-
}
|
934
|
-
function shallowRef(value) {
|
935
|
-
return createRef(value, true);
|
936
|
-
}
|
937
|
-
function createRef(rawValue, shallow) {
|
938
|
-
if (isRef(rawValue)) {
|
939
|
-
return rawValue;
|
940
|
-
}
|
941
|
-
return new RefImpl(rawValue, shallow);
|
942
|
-
}
|
943
|
-
class RefImpl {
|
944
|
-
constructor(value, __v_isShallow) {
|
945
|
-
this.__v_isShallow = __v_isShallow;
|
946
|
-
this.dep = void 0;
|
947
|
-
this.__v_isRef = true;
|
948
|
-
this._rawValue = __v_isShallow ? value : toRaw(value);
|
949
|
-
this._value = __v_isShallow ? value : toReactive(value);
|
950
|
-
}
|
951
|
-
get value() {
|
952
|
-
trackRefValue(this);
|
953
|
-
return this._value;
|
954
|
-
}
|
955
|
-
set value(newVal) {
|
956
|
-
const useDirectValue = this.__v_isShallow || isShallow(newVal) || isReadonly(newVal);
|
957
|
-
newVal = useDirectValue ? newVal : toRaw(newVal);
|
958
|
-
if (hasChanged(newVal, this._rawValue)) {
|
959
|
-
this._rawValue = newVal;
|
960
|
-
this._value = useDirectValue ? newVal : toReactive(newVal);
|
961
|
-
triggerRefValue(this, newVal);
|
962
|
-
}
|
963
|
-
}
|
964
|
-
}
|
965
|
-
function unref(ref2) {
|
966
|
-
return isRef(ref2) ? ref2.value : ref2;
|
967
|
-
}
|
968
|
-
const shallowUnwrapHandlers = {
|
969
|
-
get: (target, key, receiver) => unref(Reflect.get(target, key, receiver)),
|
970
|
-
set: (target, key, value, receiver) => {
|
971
|
-
const oldValue = target[key];
|
972
|
-
if (isRef(oldValue) && !isRef(value)) {
|
973
|
-
oldValue.value = value;
|
974
|
-
return true;
|
975
|
-
} else {
|
976
|
-
return Reflect.set(target, key, value, receiver);
|
977
169
|
}
|
978
170
|
}
|
979
171
|
};
|
980
|
-
function
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
}
|
172
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
173
|
+
const _component_MainLine = resolveComponent("MainLine");
|
174
|
+
const _component_MainLineHighlight = resolveComponent("MainLineHighlight");
|
175
|
+
const _component_TextWrapper = resolveComponent("TextWrapper");
|
176
|
+
const _component_Arrow = resolveComponent("Arrow");
|
177
|
+
const _component_VerticalMarkerArrow = resolveComponent("VerticalMarkerArrow");
|
178
|
+
const _component_TopValueContainer = resolveComponent("TopValueContainer");
|
179
|
+
const _component_VerticalMarker = resolveComponent("VerticalMarker");
|
180
|
+
const _component_BottomValueContainer = resolveComponent("BottomValueContainer");
|
181
|
+
const _component_Container = resolveComponent("Container");
|
182
|
+
return openBlock(), createBlock(_component_Container, {
|
183
|
+
width: $props.width
|
184
|
+
}, {
|
185
|
+
default: withCtx(() => [createVNode(_component_MainLine), createTextVNode(), createVNode(_component_MainLineHighlight, {
|
186
|
+
"max-percent": $options.maxPercent,
|
187
|
+
"min-percent": $options.minPercent
|
188
|
+
}, null, 8, ["max-percent", "min-percent"]), createTextVNode(), createVNode(_component_TopValueContainer, {
|
189
|
+
position: $options.valuePercent + "%"
|
190
|
+
}, {
|
191
|
+
default: withCtx(() => [createVNode(_component_TextWrapper, {
|
192
|
+
"background-color": $props.arrowColor
|
193
|
+
}, {
|
194
|
+
default: withCtx(() => [createTextVNode(toDisplayString($props.value), 1)]),
|
195
|
+
_: 1
|
196
|
+
}, 8, ["background-color"]), createTextVNode(), createVNode(_component_Arrow, {
|
197
|
+
"background-color": $props.arrowColor
|
198
|
+
}, null, 8, ["background-color"]), createTextVNode(), createVNode(_component_VerticalMarkerArrow, {
|
199
|
+
color: $options.colorVerticalMarkerArrow
|
200
|
+
}, null, 8, ["color"])]),
|
201
|
+
_: 1
|
202
|
+
}, 8, ["position"]), createTextVNode(), createVNode(_component_BottomValueContainer, {
|
203
|
+
position: $options.minPercent + "%"
|
204
|
+
}, {
|
205
|
+
default: withCtx(() => [createVNode(_component_TextWrapper, null, {
|
206
|
+
default: withCtx(() => [createTextVNode(toDisplayString($props.minValue), 1)]),
|
207
|
+
_: 1
|
208
|
+
}), createTextVNode(), createVNode(_component_VerticalMarker, {
|
209
|
+
side: "bottom"
|
210
|
+
})]),
|
211
|
+
_: 1
|
212
|
+
}, 8, ["position"]), createTextVNode(), createVNode(_component_BottomValueContainer, {
|
213
|
+
position: $options.maxPercent + "%"
|
214
|
+
}, {
|
215
|
+
default: withCtx(() => [createVNode(_component_TextWrapper, null, {
|
216
|
+
default: withCtx(() => [createTextVNode(toDisplayString($props.maxValue), 1)]),
|
217
|
+
_: 1
|
218
|
+
}), createTextVNode(), createVNode(_component_VerticalMarker, {
|
219
|
+
side: "bottom"
|
220
|
+
})]),
|
221
|
+
_: 1
|
222
|
+
}, 8, ["position"])]),
|
223
|
+
_: 1
|
224
|
+
}, 8, ["width"]);
|
225
|
+
}
|
226
|
+
const PanelRangeInfo = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
1033
227
|
export {
|
1034
|
-
|
1035
|
-
ITERATE_KEY,
|
1036
|
-
ReactiveEffect,
|
1037
|
-
computed,
|
1038
|
-
getCurrentScope,
|
1039
|
-
isProxy,
|
1040
|
-
isReactive,
|
1041
|
-
isReadonly,
|
1042
|
-
isRef,
|
1043
|
-
isShallow,
|
1044
|
-
markRaw,
|
1045
|
-
pauseTracking,
|
1046
|
-
proxyRefs,
|
1047
|
-
reactive,
|
1048
|
-
readonly,
|
1049
|
-
ref,
|
1050
|
-
resetTracking,
|
1051
|
-
shallowReactive,
|
1052
|
-
shallowReadonly,
|
1053
|
-
shallowRef,
|
1054
|
-
toRaw,
|
1055
|
-
track,
|
1056
|
-
trigger,
|
1057
|
-
unref
|
228
|
+
PanelRangeInfo as default
|
1058
229
|
};
|