web-core-tcm 0.0.52 → 0.0.54

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.
Files changed (113) hide show
  1. package/dist/node_modules/@alova/shared/dist/alova-shared.esm.js +249 -101
  2. package/dist/node_modules/@bufbuild/protobuf/dist/esm/clone.js +35 -0
  3. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/embed.js +109 -0
  4. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/enum.js +16 -0
  5. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/extension.js +9 -0
  6. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/file.js +9 -10
  7. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/index.js +28 -0
  8. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/scalar.js +48 -0
  9. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/service.js +8 -0
  10. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/symbols.js +49 -0
  11. package/dist/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/types.js +1 -0
  12. package/dist/node_modules/@bufbuild/protobuf/dist/esm/equals.js +127 -0
  13. package/dist/node_modules/@bufbuild/protobuf/dist/esm/extensions.js +86 -0
  14. package/dist/node_modules/@bufbuild/protobuf/dist/esm/fields.js +11 -0
  15. package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js +60 -56
  16. package/dist/node_modules/@bufbuild/protobuf/dist/esm/from-json.js +434 -0
  17. package/dist/node_modules/@bufbuild/protobuf/dist/esm/index.js +49 -0
  18. package/dist/node_modules/@bufbuild/protobuf/dist/esm/merge.js +33 -0
  19. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js +12 -3
  20. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js +14 -10
  21. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js +32 -12
  22. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js +42 -6
  23. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js +58 -50
  24. package/dist/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js +26 -4
  25. package/dist/node_modules/@bufbuild/protobuf/dist/esm/registry.js +130 -99
  26. package/dist/node_modules/@bufbuild/protobuf/dist/esm/to-json.js +279 -0
  27. package/dist/node_modules/@bufbuild/protobuf/dist/esm/types.js +1 -0
  28. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js +48 -27
  29. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/index.js +24 -0
  30. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/size-delimited.js +123 -0
  31. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js +9 -5
  32. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/any.js +40 -0
  33. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/duration.js +18 -0
  34. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/any_pb.js +7 -0
  35. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/api_pb.js +11 -0
  36. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/compiler/plugin_pb.js +19 -0
  37. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/cpp_features_pb.js +18 -0
  38. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js +134 -60
  39. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/duration_pb.js +7 -0
  40. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/empty_pb.js +7 -0
  41. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/field_mask_pb.js +7 -0
  42. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/go_features_pb.js +25 -0
  43. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/java_features_pb.js +26 -0
  44. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/source_context_pb.js +7 -0
  45. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/struct_pb.js +17 -0
  46. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/timestamp_pb.js +7 -0
  47. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/type_pb.js +35 -0
  48. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/wrappers_pb.js +15 -0
  49. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/index.js +180 -0
  50. package/dist/node_modules/@bufbuild/protobuf/dist/esm/wkt/timestamp.js +29 -0
  51. package/dist/node_modules/alova/dist/adapter/fetch.esm.js +10 -10
  52. package/dist/node_modules/alova/dist/alova.esm.js +263 -211
  53. package/dist/node_modules/alova/dist/clienthook/index.esm.js +2110 -70
  54. package/dist/node_modules/builder-pattern/dist/index.js +25 -13
  55. package/dist/node_modules/pinyin/lib/esm/pinyin.js +2 -2
  56. package/dist/node_modules/punycode/punycode.es6.js +17 -17
  57. package/dist/src/api/algorithm/alova/implement/comprehensiveAlgorithm.js +4 -7
  58. package/dist/src/api/algorithm/alova/implement/index.js +12 -0
  59. package/dist/src/api/algorithm/alova/implement/inquiriesAlgorithm.js +4 -7
  60. package/dist/src/api/algorithm/alova/implement/inspectionsAlgorithm.js +7 -10
  61. package/dist/src/api/algorithm/alova/implement/lisemsAlgorithm.js +6 -9
  62. package/dist/src/api/algorithm/alova/implement/pulsationsAlgorithm.js +7 -10
  63. package/dist/src/api/algorithm/alova/index.js +11 -15
  64. package/dist/src/api/algorithm/comprehensiveAlgorithm.js +5 -6
  65. package/dist/src/api/authorization/alova/globals.js +1 -0
  66. package/dist/src/api/authorization/alova/implement/index.js +4 -0
  67. package/dist/src/api/authorization/alova/index.js +10 -8
  68. package/dist/src/api/check/alova/globals.js +1 -0
  69. package/dist/src/api/check/alova/implement/index.js +5 -0
  70. package/dist/src/api/check/alova/index.js +5 -6
  71. package/dist/src/api/check/check.js +2 -2
  72. package/dist/src/api/config/index.d.ts +1 -1
  73. package/dist/src/api/config/index.js +2 -2
  74. package/dist/src/api/core/index.js +9 -0
  75. package/dist/src/api/device/device.d.ts +4 -5
  76. package/dist/src/api/device/device.js +20 -29
  77. package/dist/src/api/doctor/alova/globals.js +1 -0
  78. package/dist/src/api/doctor/alova/implement/index.js +4 -0
  79. package/dist/src/api/doctor/alova/index.js +10 -9
  80. package/dist/src/api/index.d.ts +12 -11
  81. package/dist/src/api/index.js +28 -0
  82. package/dist/src/api/metric/alova/implement/index.js +4 -0
  83. package/dist/src/api/metric/alova/index.js +1 -0
  84. package/dist/src/api/metric/index.js +5 -4
  85. package/dist/src/api/oauth/alova/globals.js +1 -0
  86. package/dist/src/api/oauth/alova/implement/index.js +4 -0
  87. package/dist/src/api/oauth/alova/index.js +13 -11
  88. package/dist/src/api/outpatient/alova/globals.js +1 -0
  89. package/dist/src/api/outpatient/alova/implement/index.js +4 -0
  90. package/dist/src/api/outpatient/alova/index.js +5 -5
  91. package/dist/src/api/patient/alova/globals.js +1 -0
  92. package/dist/src/api/patient/alova/implement/index.js +16 -0
  93. package/dist/src/api/patient/alova/index.js +9 -12
  94. package/dist/src/api/patient/meta.js +1 -0
  95. package/dist/src/api/prescription/alova/globals.js +1 -0
  96. package/dist/src/api/prescription/alova/implement/index.js +6 -0
  97. package/dist/src/api/prescription/alova/index.js +8 -7
  98. package/dist/src/api/scientist/alova/globals.js +1 -0
  99. package/dist/src/api/scientist/alova/implement/index.js +4 -0
  100. package/dist/src/api/scientist/alova/index.js +5 -5
  101. package/dist/src/index.d.ts +0 -1
  102. package/dist/src/index.js +34 -32
  103. package/dist/src/proto/index.js +10 -0
  104. package/dist/src/proto/types/Images_pb.js +7 -6
  105. package/dist/src/proto/types/WaveMap_pb.js +4 -3
  106. package/dist/src/util/helper.js +38 -2
  107. package/dist/src/util/string.js +47 -5
  108. package/package.json +66 -14
  109. package/dist/node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js +0 -556
  110. package/dist/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js +0 -36
  111. package/dist/node_modules/@vue/shared/dist/shared.esm-bundler.js +0 -26
  112. package/dist/node_modules/quasar/src/composables/use-quasar/use-quasar.js +0 -8
  113. package/dist/node_modules/quasar/src/utils/private.symbols/symbols.js +0 -4
@@ -1,556 +0,0 @@
1
- import { hasChanged as M, extend as nt, isObject as O, toRawType as st, isSymbol as E, hasOwn as L, isArray as b, isIntegerKey as D, makeMap as it, isMap as A } from "../../shared/dist/shared.esm-bundler.js";
2
- let ot, Q = 0, j;
3
- function F() {
4
- Q++;
5
- }
6
- function G() {
7
- if (--Q > 0)
8
- return;
9
- let t;
10
- for (; j; ) {
11
- let e = j;
12
- for (j = void 0; e; ) {
13
- const n = e.next;
14
- if (e.next = void 0, e.flags &= -9, e.flags & 1)
15
- try {
16
- e.trigger();
17
- } catch (c) {
18
- t || (t = c);
19
- }
20
- e = n;
21
- }
22
- }
23
- if (t) throw t;
24
- }
25
- let y = !0;
26
- const U = [];
27
- function ct() {
28
- U.push(y), y = !1;
29
- }
30
- function at() {
31
- const t = U.pop();
32
- y = t === void 0 ? !0 : t;
33
- }
34
- class V {
35
- // TODO isolatedDeclarations "__v_skip"
36
- constructor(e) {
37
- this.computed = e, this.version = 0, this.activeLink = void 0, this.subs = void 0, this.map = void 0, this.key = void 0, this.sc = 0, this.__v_skip = !0;
38
- }
39
- track(e) {
40
- }
41
- trigger(e) {
42
- this.version++, this.notify(e);
43
- }
44
- notify(e) {
45
- F();
46
- try {
47
- for (let n = this.subs; n; n = n.prevSub)
48
- n.sub.notify() && n.sub.dep.notify();
49
- } finally {
50
- G();
51
- }
52
- }
53
- }
54
- const Y = /* @__PURE__ */ new WeakMap(), m = Symbol(
55
- ""
56
- ), N = Symbol(
57
- ""
58
- ), T = Symbol(
59
- ""
60
- );
61
- function d(t, e, n) {
62
- if (y && ot) {
63
- let c = Y.get(t);
64
- c || Y.set(t, c = /* @__PURE__ */ new Map());
65
- let r = c.get(n);
66
- r || (c.set(n, r = new V()), r.map = c, r.key = n), r.track();
67
- }
68
- }
69
- function w(t, e, n, c, r, s) {
70
- const i = Y.get(t);
71
- if (!i)
72
- return;
73
- const o = (a) => {
74
- a && a.trigger();
75
- };
76
- if (F(), e === "clear")
77
- i.forEach(o);
78
- else {
79
- const a = b(t), l = a && D(n);
80
- if (a && n === "length") {
81
- const _ = Number(c);
82
- i.forEach((f, p) => {
83
- (p === "length" || p === T || !E(p) && p >= _) && o(f);
84
- });
85
- } else
86
- switch ((n !== void 0 || i.has(void 0)) && o(i.get(n)), l && o(i.get(T)), e) {
87
- case "add":
88
- a ? l && o(i.get("length")) : (o(i.get(m)), A(t) && o(i.get(N)));
89
- break;
90
- case "delete":
91
- a || (o(i.get(m)), A(t) && o(i.get(N)));
92
- break;
93
- case "set":
94
- A(t) && o(i.get(m));
95
- break;
96
- }
97
- }
98
- G();
99
- }
100
- function R(t) {
101
- const e = u(t);
102
- return e === t ? e : (d(e, "iterate", T), v(t) ? e : e.map(h));
103
- }
104
- function q(t) {
105
- return d(t = u(t), "iterate", T), t;
106
- }
107
- const ut = {
108
- __proto__: null,
109
- [Symbol.iterator]() {
110
- return W(this, Symbol.iterator, h);
111
- },
112
- concat(...t) {
113
- return R(this).concat(
114
- ...t.map((e) => b(e) ? R(e) : e)
115
- );
116
- },
117
- entries() {
118
- return W(this, "entries", (t) => (t[1] = h(t[1]), t));
119
- },
120
- every(t, e) {
121
- return g(this, "every", t, e, void 0, arguments);
122
- },
123
- filter(t, e) {
124
- return g(this, "filter", t, e, (n) => n.map(h), arguments);
125
- },
126
- find(t, e) {
127
- return g(this, "find", t, e, h, arguments);
128
- },
129
- findIndex(t, e) {
130
- return g(this, "findIndex", t, e, void 0, arguments);
131
- },
132
- findLast(t, e) {
133
- return g(this, "findLast", t, e, h, arguments);
134
- },
135
- findLastIndex(t, e) {
136
- return g(this, "findLastIndex", t, e, void 0, arguments);
137
- },
138
- // flat, flatMap could benefit from ARRAY_ITERATE but are not straight-forward to implement
139
- forEach(t, e) {
140
- return g(this, "forEach", t, e, void 0, arguments);
141
- },
142
- includes(...t) {
143
- return H(this, "includes", t);
144
- },
145
- indexOf(...t) {
146
- return H(this, "indexOf", t);
147
- },
148
- join(t) {
149
- return R(this).join(t);
150
- },
151
- // keys() iterator only reads `length`, no optimization required
152
- lastIndexOf(...t) {
153
- return H(this, "lastIndexOf", t);
154
- },
155
- map(t, e) {
156
- return g(this, "map", t, e, void 0, arguments);
157
- },
158
- pop() {
159
- return I(this, "pop");
160
- },
161
- push(...t) {
162
- return I(this, "push", t);
163
- },
164
- reduce(t, ...e) {
165
- return J(this, "reduce", t, e);
166
- },
167
- reduceRight(t, ...e) {
168
- return J(this, "reduceRight", t, e);
169
- },
170
- shift() {
171
- return I(this, "shift");
172
- },
173
- // slice could use ARRAY_ITERATE but also seems to beg for range tracking
174
- some(t, e) {
175
- return g(this, "some", t, e, void 0, arguments);
176
- },
177
- splice(...t) {
178
- return I(this, "splice", t);
179
- },
180
- toReversed() {
181
- return R(this).toReversed();
182
- },
183
- toSorted(t) {
184
- return R(this).toSorted(t);
185
- },
186
- toSpliced(...t) {
187
- return R(this).toSpliced(...t);
188
- },
189
- unshift(...t) {
190
- return I(this, "unshift", t);
191
- },
192
- values() {
193
- return W(this, "values", h);
194
- }
195
- };
196
- function W(t, e, n) {
197
- const c = q(t), r = c[e]();
198
- return c !== t && !v(t) && (r._next = r.next, r.next = () => {
199
- const s = r._next();
200
- return s.done || (s.value = n(s.value)), s;
201
- }), r;
202
- }
203
- const lt = Array.prototype;
204
- function g(t, e, n, c, r, s) {
205
- const i = q(t), o = i !== t && !v(t), a = i[e];
206
- if (a !== lt[e]) {
207
- const f = a.apply(t, s);
208
- return o ? h(f) : f;
209
- }
210
- let l = n;
211
- i !== t && (o ? l = function(f, p) {
212
- return n.call(this, h(f), p, t);
213
- } : n.length > 2 && (l = function(f, p) {
214
- return n.call(this, f, p, t);
215
- }));
216
- const _ = a.call(i, l, c);
217
- return o && r ? r(_) : _;
218
- }
219
- function J(t, e, n, c) {
220
- const r = q(t);
221
- let s = n;
222
- return r !== t && (v(t) ? n.length > 3 && (s = function(i, o, a) {
223
- return n.call(this, i, o, a, t);
224
- }) : s = function(i, o, a) {
225
- return n.call(this, i, h(o), a, t);
226
- }), r[e](s, ...c);
227
- }
228
- function H(t, e, n) {
229
- const c = u(t);
230
- d(c, "iterate", T);
231
- const r = c[e](...n);
232
- return (r === -1 || r === !1) && Mt(n[0]) ? (n[0] = u(n[0]), c[e](...n)) : r;
233
- }
234
- function I(t, e, n = []) {
235
- ct(), F();
236
- const c = u(t)[e].apply(t, n);
237
- return G(), at(), c;
238
- }
239
- const ft = /* @__PURE__ */ it("__proto__,__v_isRef,__isVue"), X = new Set(
240
- /* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((t) => t !== "arguments" && t !== "caller").map((t) => Symbol[t]).filter(E)
241
- );
242
- function ht(t) {
243
- E(t) || (t = String(t));
244
- const e = u(this);
245
- return d(e, "has", t), e.hasOwnProperty(t);
246
- }
247
- class Z {
248
- constructor(e = !1, n = !1) {
249
- this._isReadonly = e, this._isShallow = n;
250
- }
251
- get(e, n, c) {
252
- if (n === "__v_skip") return e.__v_skip;
253
- const r = this._isReadonly, s = this._isShallow;
254
- if (n === "__v_isReactive")
255
- return !r;
256
- if (n === "__v_isReadonly")
257
- return r;
258
- if (n === "__v_isShallow")
259
- return s;
260
- if (n === "__v_raw")
261
- return c === (r ? s ? St : tt : s ? bt : k).get(e) || // receiver is not the reactive proxy, but has the same prototype
262
- // this means the receiver is a user proxy of the reactive proxy
263
- Object.getPrototypeOf(e) === Object.getPrototypeOf(c) ? e : void 0;
264
- const i = b(e);
265
- if (!r) {
266
- let a;
267
- if (i && (a = ut[n]))
268
- return a;
269
- if (n === "hasOwnProperty")
270
- return ht;
271
- }
272
- const o = Reflect.get(
273
- e,
274
- n,
275
- // if this is a proxy wrapping a ref, return methods using the raw ref
276
- // as receiver so that we don't have to call `toRaw` on the ref in all
277
- // its class methods
278
- S(e) ? e : c
279
- );
280
- if ((E(n) ? X.has(n) : ft(n)) || (r || d(e, "get", n), s))
281
- return o;
282
- if (S(o)) {
283
- const a = i && D(n) ? o : o.value;
284
- return r && O(a) ? B(a) : a;
285
- }
286
- return O(o) ? r ? B(o) : et(o) : o;
287
- }
288
- }
289
- class dt extends Z {
290
- constructor(e = !1) {
291
- super(!1, e);
292
- }
293
- set(e, n, c, r) {
294
- let s = e[n];
295
- if (!this._isShallow) {
296
- const a = x(s);
297
- if (!v(c) && !x(c) && (s = u(s), c = u(c)), !b(e) && S(s) && !S(c))
298
- return a || (s.value = c), !0;
299
- }
300
- const i = b(e) && D(n) ? Number(n) < e.length : L(e, n), o = Reflect.set(
301
- e,
302
- n,
303
- c,
304
- S(e) ? e : r
305
- );
306
- return e === u(r) && (i ? M(c, s) && w(e, "set", n, c) : w(e, "add", n, c)), o;
307
- }
308
- deleteProperty(e, n) {
309
- const c = L(e, n);
310
- e[n];
311
- const r = Reflect.deleteProperty(e, n);
312
- return r && c && w(e, "delete", n, void 0), r;
313
- }
314
- has(e, n) {
315
- const c = Reflect.has(e, n);
316
- return (!E(n) || !X.has(n)) && d(e, "has", n), c;
317
- }
318
- ownKeys(e) {
319
- return d(
320
- e,
321
- "iterate",
322
- b(e) ? "length" : m
323
- ), Reflect.ownKeys(e);
324
- }
325
- }
326
- class _t extends Z {
327
- constructor(e = !1) {
328
- super(!0, e);
329
- }
330
- set(e, n) {
331
- return !0;
332
- }
333
- deleteProperty(e, n) {
334
- return !0;
335
- }
336
- }
337
- const pt = /* @__PURE__ */ new dt(), gt = /* @__PURE__ */ new _t(), z = (t) => t, P = (t) => Reflect.getPrototypeOf(t);
338
- function wt(t, e, n) {
339
- return function(...c) {
340
- const r = this.__v_raw, s = u(r), i = A(s), o = t === "entries" || t === Symbol.iterator && i, a = t === "keys" && i, l = r[t](...c), _ = n ? z : e ? C : h;
341
- return !e && d(
342
- s,
343
- "iterate",
344
- a ? N : m
345
- ), {
346
- // iterator protocol
347
- next() {
348
- const { value: f, done: p } = l.next();
349
- return p ? { value: f, done: p } : {
350
- value: o ? [_(f[0]), _(f[1])] : _(f),
351
- done: p
352
- };
353
- },
354
- // iterable protocol
355
- [Symbol.iterator]() {
356
- return this;
357
- }
358
- };
359
- };
360
- }
361
- function K(t) {
362
- return function(...e) {
363
- return t === "delete" ? !1 : t === "clear" ? void 0 : this;
364
- };
365
- }
366
- function vt(t, e) {
367
- const n = {
368
- get(r) {
369
- const s = this.__v_raw, i = u(s), o = u(r);
370
- t || (M(r, o) && d(i, "get", r), d(i, "get", o));
371
- const { has: a } = P(i), l = e ? z : t ? C : h;
372
- if (a.call(i, r))
373
- return l(s.get(r));
374
- if (a.call(i, o))
375
- return l(s.get(o));
376
- s !== i && s.get(r);
377
- },
378
- get size() {
379
- const r = this.__v_raw;
380
- return !t && d(u(r), "iterate", m), r.size;
381
- },
382
- has(r) {
383
- const s = this.__v_raw, i = u(s), o = u(r);
384
- return t || (M(r, o) && d(i, "has", r), d(i, "has", o)), r === o ? s.has(r) : s.has(r) || s.has(o);
385
- },
386
- forEach(r, s) {
387
- const i = this, o = i.__v_raw, a = u(o), l = e ? z : t ? C : h;
388
- return !t && d(a, "iterate", m), o.forEach((_, f) => r.call(s, l(_), l(f), i));
389
- }
390
- };
391
- return nt(
392
- n,
393
- t ? {
394
- add: K("add"),
395
- set: K("set"),
396
- delete: K("delete"),
397
- clear: K("clear")
398
- } : {
399
- add(r) {
400
- !e && !v(r) && !x(r) && (r = u(r));
401
- const s = u(this);
402
- return P(s).has.call(s, r) || (s.add(r), w(s, "add", r, r)), this;
403
- },
404
- set(r, s) {
405
- !e && !v(s) && !x(s) && (s = u(s));
406
- const i = u(this), { has: o, get: a } = P(i);
407
- let l = o.call(i, r);
408
- l || (r = u(r), l = o.call(i, r));
409
- const _ = a.call(i, r);
410
- return i.set(r, s), l ? M(s, _) && w(i, "set", r, s) : w(i, "add", r, s), this;
411
- },
412
- delete(r) {
413
- const s = u(this), { has: i, get: o } = P(s);
414
- let a = i.call(s, r);
415
- a || (r = u(r), a = i.call(s, r)), o && o.call(s, r);
416
- const l = s.delete(r);
417
- return a && w(s, "delete", r, void 0), l;
418
- },
419
- clear() {
420
- const r = u(this), s = r.size !== 0, i = r.clear();
421
- return s && w(
422
- r,
423
- "clear",
424
- void 0,
425
- void 0
426
- ), i;
427
- }
428
- }
429
- ), [
430
- "keys",
431
- "values",
432
- "entries",
433
- Symbol.iterator
434
- ].forEach((r) => {
435
- n[r] = wt(r, t, e);
436
- }), n;
437
- }
438
- function $(t, e) {
439
- const n = vt(t, e);
440
- return (c, r, s) => r === "__v_isReactive" ? !t : r === "__v_isReadonly" ? t : r === "__v_raw" ? c : Reflect.get(
441
- L(n, r) && r in c ? n : c,
442
- r,
443
- s
444
- );
445
- }
446
- const mt = {
447
- get: /* @__PURE__ */ $(!1, !1)
448
- }, Rt = {
449
- get: /* @__PURE__ */ $(!0, !1)
450
- }, k = /* @__PURE__ */ new WeakMap(), bt = /* @__PURE__ */ new WeakMap(), tt = /* @__PURE__ */ new WeakMap(), St = /* @__PURE__ */ new WeakMap();
451
- function xt(t) {
452
- switch (t) {
453
- case "Object":
454
- case "Array":
455
- return 1;
456
- case "Map":
457
- case "Set":
458
- case "WeakMap":
459
- case "WeakSet":
460
- return 2;
461
- default:
462
- return 0;
463
- }
464
- }
465
- function It(t) {
466
- return t.__v_skip || !Object.isExtensible(t) ? 0 : xt(st(t));
467
- }
468
- function et(t) {
469
- return x(t) ? t : rt(
470
- t,
471
- !1,
472
- pt,
473
- mt,
474
- k
475
- );
476
- }
477
- function B(t) {
478
- return rt(
479
- t,
480
- !0,
481
- gt,
482
- Rt,
483
- tt
484
- );
485
- }
486
- function rt(t, e, n, c, r) {
487
- if (!O(t) || t.__v_raw && !(e && t.__v_isReactive))
488
- return t;
489
- const s = It(t);
490
- if (s === 0)
491
- return t;
492
- const i = r.get(t);
493
- if (i)
494
- return i;
495
- const o = new Proxy(
496
- t,
497
- s === 2 ? c : n
498
- );
499
- return r.set(t, o), o;
500
- }
501
- function x(t) {
502
- return !!(t && t.__v_isReadonly);
503
- }
504
- function v(t) {
505
- return !!(t && t.__v_isShallow);
506
- }
507
- function Mt(t) {
508
- return t ? !!t.__v_raw : !1;
509
- }
510
- function u(t) {
511
- const e = t && t.__v_raw;
512
- return e ? u(e) : t;
513
- }
514
- const h = (t) => O(t) ? et(t) : t, C = (t) => O(t) ? B(t) : t;
515
- function S(t) {
516
- return t ? t.__v_isRef === !0 : !1;
517
- }
518
- function Pt(t) {
519
- return Ot(t, !1);
520
- }
521
- function Ot(t, e) {
522
- return S(t) ? t : new Tt(t, e);
523
- }
524
- class Tt {
525
- constructor(e, n) {
526
- this.dep = new V(), this.__v_isRef = !0, this.__v_isShallow = !1, this._rawValue = n ? e : u(e), this._value = n ? e : h(e), this.__v_isShallow = n;
527
- }
528
- get value() {
529
- return this.dep.track(), this._value;
530
- }
531
- set value(e) {
532
- const n = this._rawValue, c = this.__v_isShallow || v(e) || x(e);
533
- e = c ? e : u(e), M(e, n) && (this._rawValue = e, this._value = c ? e : h(e), this.dep.trigger());
534
- }
535
- }
536
- export {
537
- T as ARRAY_ITERATE_KEY,
538
- m as ITERATE_KEY,
539
- N as MAP_KEY_ITERATE_KEY,
540
- Mt as isProxy,
541
- x as isReadonly,
542
- S as isRef,
543
- v as isShallow,
544
- ct as pauseTracking,
545
- et as reactive,
546
- R as reactiveReadArray,
547
- B as readonly,
548
- Pt as ref,
549
- at as resetTracking,
550
- q as shallowReadArray,
551
- u as toRaw,
552
- h as toReactive,
553
- C as toReadonly,
554
- d as track,
555
- w as trigger
556
- };
@@ -1,36 +0,0 @@
1
- import { getGlobalThis as s, isFunction as a } from "../../shared/dist/shared.esm-bundler.js";
2
- let u = null;
3
- s().requestIdleCallback;
4
- s().cancelIdleCallback;
5
- let p = null;
6
- function f(n, l, r = !1) {
7
- const e = _();
8
- if (e || p) {
9
- let t = e ? e.parent == null || e.ce ? e.vnode.appContext && e.vnode.appContext.provides : e.parent.provides : void 0;
10
- if (t && n in t)
11
- return t[n];
12
- if (arguments.length > 1)
13
- return r && a() ? l.call(e && e.proxy) : l;
14
- }
15
- }
16
- let c = null;
17
- const _ = () => c || u;
18
- {
19
- const n = s(), l = (r, e) => {
20
- let t;
21
- return (t = n[r]) || (t = n[r] = []), t.push(e), (o) => {
22
- t.length > 1 ? t.forEach((i) => i(o)) : t[0](o);
23
- };
24
- };
25
- l(
26
- "__VUE_INSTANCE_SETTERS__",
27
- (r) => c = r
28
- ), l(
29
- "__VUE_SSR_SETTERS__",
30
- (r) => r
31
- );
32
- }
33
- export {
34
- _ as getCurrentInstance,
35
- f as inject
36
- };
@@ -1,26 +0,0 @@
1
- // @__NO_SIDE_EFFECTS__
2
- function l(t) {
3
- const n = /* @__PURE__ */ Object.create(null);
4
- for (const o of t.split(",")) n[o] = 1;
5
- return (o) => o in n;
6
- }
7
- const a = Object.assign, c = Object.prototype.hasOwnProperty, p = (t, n) => c.call(t, n), f = Array.isArray, b = (t) => s(t) === "[object Map]", y = (t) => !1, i = (t) => typeof t == "string", d = (t) => typeof t == "symbol", g = (t) => t !== null && typeof t == "object", r = Object.prototype.toString, s = (t) => r.call(t), u = (t) => s(t).slice(8, -1), h = (t) => i(t) && t !== "NaN" && t[0] !== "-" && "" + parseInt(t, 10) === t, j = (t, n) => !Object.is(t, n);
8
- let e;
9
- const O = () => e || (e = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : typeof global < "u" ? global : {});
10
- export {
11
- a as extend,
12
- O as getGlobalThis,
13
- j as hasChanged,
14
- p as hasOwn,
15
- f as isArray,
16
- y as isFunction,
17
- h as isIntegerKey,
18
- b as isMap,
19
- g as isObject,
20
- i as isString,
21
- d as isSymbol,
22
- l as makeMap,
23
- r as objectToString,
24
- u as toRawType,
25
- s as toTypeString
26
- };
@@ -1,8 +0,0 @@
1
- import { quasarKey as r } from "../../utils/private.symbols/symbols.js";
2
- import { inject as t } from "../../../../@vue/runtime-core/dist/runtime-core.esm-bundler.js";
3
- function o() {
4
- return t(r);
5
- }
6
- export {
7
- o as default
8
- };
@@ -1,4 +0,0 @@
1
- const a = "_q_";
2
- export {
3
- a as quasarKey
4
- };