@eturnity/eturnity_reusable_components 8.22.21 → 8.22.23

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.es17.js CHANGED
@@ -1,218 +1,1058 @@
1
- import styled from "./main.es7.js";
2
- import _sfc_main$1 from "./main.es24.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
1
+ import { isSymbol, hasChanged, isObject, NOOP, isArray, extend, toRawType, isFunction, def, hasOwn, isIntegerKey, isMap, makeMap, capitalize } from "./main.es378.js";
2
+ function warn(msg, ...args) {
3
+ console.warn(`[Vue warn] ${msg}`, ...args);
4
+ }
5
+ let activeEffectScope;
6
+ class EffectScope {
7
+ constructor(detached = false) {
8
+ this.detached = detached;
9
+ this._active = true;
10
+ this.effects = [];
11
+ this.cleanups = [];
12
+ this.parent = activeEffectScope;
13
+ if (!detached && activeEffectScope) {
14
+ this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
15
+ this
16
+ ) - 1;
17
+ }
18
+ }
19
+ get active() {
20
+ return this._active;
21
+ }
22
+ run(fn) {
23
+ if (this._active) {
24
+ const currentEffectScope = activeEffectScope;
25
+ try {
26
+ activeEffectScope = this;
27
+ return fn();
28
+ } finally {
29
+ activeEffectScope = currentEffectScope;
30
+ }
31
+ } else if (!!(process.env.NODE_ENV !== "production")) {
32
+ warn(`cannot run an inactive effect scope.`);
33
+ }
34
+ }
35
+ /**
36
+ * This should only be called on non-detached scopes
37
+ * @internal
38
+ */
39
+ on() {
40
+ activeEffectScope = this;
41
+ }
42
+ /**
43
+ * This should only be called on non-detached scopes
44
+ * @internal
45
+ */
46
+ off() {
47
+ activeEffectScope = this.parent;
48
+ }
49
+ stop(fromParent) {
50
+ if (this._active) {
51
+ let i, l;
52
+ for (i = 0, l = this.effects.length; i < l; i++) {
53
+ this.effects[i].stop();
54
+ }
55
+ for (i = 0, l = this.cleanups.length; i < l; i++) {
56
+ this.cleanups[i]();
57
+ }
58
+ if (this.scopes) {
59
+ for (i = 0, l = this.scopes.length; i < l; i++) {
60
+ this.scopes[i].stop(true);
61
+ }
62
+ }
63
+ if (!this.detached && this.parent && !fromParent) {
64
+ const last = this.parent.scopes.pop();
65
+ if (last && last !== this) {
66
+ this.parent.scopes[this.index] = last;
67
+ last.index = this.index;
68
+ }
69
+ }
70
+ this.parent = void 0;
71
+ this._active = false;
72
+ }
73
+ }
74
+ }
75
+ function recordEffectScope(effect, scope = activeEffectScope) {
76
+ if (scope && scope.active) {
77
+ scope.effects.push(effect);
78
+ }
79
+ }
80
+ function getCurrentScope() {
81
+ return activeEffectScope;
82
+ }
83
+ const createDep = (effects) => {
84
+ const dep = new Set(effects);
85
+ dep.w = 0;
86
+ dep.n = 0;
87
+ return dep;
18
88
  };
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
89
+ const wasTracked = (dep) => (dep.w & trackOpBit) > 0;
90
+ const newTracked = (dep) => (dep.n & trackOpBit) > 0;
91
+ const initDepMarkers = ({ deps }) => {
92
+ if (deps.length) {
93
+ for (let i = 0; i < deps.length; i++) {
94
+ deps[i].w |= trackOpBit;
95
+ }
96
+ }
56
97
  };
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
98
+ const finalizeDepMarkers = (effect) => {
99
+ const { deps } = effect;
100
+ if (deps.length) {
101
+ let ptr = 0;
102
+ for (let i = 0; i < deps.length; i++) {
103
+ const dep = deps[i];
104
+ if (wasTracked(dep) && !newTracked(dep)) {
105
+ dep.delete(effect);
106
+ } else {
107
+ deps[ptr++] = dep;
108
+ }
109
+ dep.w &= ~trackOpBit;
110
+ dep.n &= ~trackOpBit;
111
+ }
112
+ deps.length = ptr;
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);
150
+ } else {
151
+ cleanupEffect(this);
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);
250
+ }
251
+ });
252
+ } else {
253
+ if (key !== void 0) {
254
+ deps.push(depsMap.get(key));
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);
287
+ } else {
288
+ triggerEffects(deps[0]);
289
+ }
290
+ }
291
+ } else {
292
+ const effects = [];
293
+ for (const dep of deps) {
294
+ if (dep) {
295
+ effects.push(...dep);
296
+ }
297
+ }
298
+ if (!!(process.env.NODE_ENV !== "production")) {
299
+ triggerEffects(createDep(effects), eventInfo);
300
+ } else {
301
+ triggerEffects(createDep(effects));
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));
350
+ } else {
351
+ return res;
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
75
465
  };
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
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;
89
476
  },
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
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;
637
+ }
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);
122
657
  },
123
- iconAltStyleColor: {
124
- required: false,
125
- default: null,
126
- type: String
658
+ get size() {
659
+ return size(this);
127
660
  },
128
- text: {
129
- required: true,
130
- type: String
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);
131
671
  },
132
- noWrap: {
133
- required: false,
134
- default: false,
135
- type: Boolean
672
+ get size() {
673
+ return size(this);
136
674
  },
137
- minWidth: {
138
- required: false,
139
- default: null,
140
- type: String
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);
141
685
  },
142
- height: {
143
- required: false,
144
- default: "auto",
145
- type: String
686
+ get size() {
687
+ return size(this, true);
146
688
  },
147
- id: {
148
- required: false,
149
- default: null,
150
- type: String
689
+ has(key) {
690
+ return has.call(this, key, true);
151
691
  },
152
- dataId: {
153
- type: String,
154
- default: ""
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);
155
701
  },
156
- dataQaId: {
157
- type: String,
158
- default: ""
702
+ get size() {
703
+ return size(this, true);
159
704
  },
160
- appTheme: {
161
- type: String,
162
- default: "light"
705
+ has(key) {
706
+ return has.call(this, key, true);
163
707
  },
164
- buttonSize: {
165
- type: String,
166
- default: "medium",
167
- required: false
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;
168
759
  }
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;
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);
176
977
  }
177
978
  }
178
979
  };
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
- });
980
+ function proxyRefs(objectWithRefs) {
981
+ return isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers);
982
+ }
983
+ class ComputedRefImpl {
984
+ constructor(getter, _setter, isReadonly2, isSSR) {
985
+ this._setter = _setter;
986
+ this.dep = void 0;
987
+ this.__v_isRef = true;
988
+ this["__v_isReadonly"] = false;
989
+ this._dirty = true;
990
+ this.effect = new ReactiveEffect(getter, () => {
991
+ if (!this._dirty) {
992
+ this._dirty = true;
993
+ triggerRefValue(this);
994
+ }
995
+ });
996
+ this.effect.computed = this;
997
+ this.effect.active = this._cacheable = !isSSR;
998
+ this["__v_isReadonly"] = isReadonly2;
999
+ }
1000
+ get value() {
1001
+ const self = toRaw(this);
1002
+ trackRefValue(self);
1003
+ if (self._dirty || !self._cacheable) {
1004
+ self._dirty = false;
1005
+ self._value = self.effect.run();
1006
+ }
1007
+ return self._value;
1008
+ }
1009
+ set value(newValue) {
1010
+ this._setter(newValue);
1011
+ }
1012
+ }
1013
+ function computed(getterOrOptions, debugOptions, isSSR = false) {
1014
+ let getter;
1015
+ let setter;
1016
+ const onlyGetter = isFunction(getterOrOptions);
1017
+ if (onlyGetter) {
1018
+ getter = getterOrOptions;
1019
+ setter = !!(process.env.NODE_ENV !== "production") ? () => {
1020
+ console.warn("Write operation failed: computed value is readonly");
1021
+ } : NOOP;
1022
+ } else {
1023
+ getter = getterOrOptions.get;
1024
+ setter = getterOrOptions.set;
1025
+ }
1026
+ const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter, isSSR);
1027
+ if (!!(process.env.NODE_ENV !== "production") && debugOptions && !isSSR) {
1028
+ cRef.effect.onTrack = debugOptions.onTrack;
1029
+ cRef.effect.onTrigger = debugOptions.onTrigger;
1030
+ }
1031
+ return cRef;
214
1032
  }
215
- const RCButton = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
216
1033
  export {
217
- RCButton as default
1034
+ EffectScope,
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
218
1058
  };