lone-format 0.1.4 → 0.1.5

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.
@@ -1,5 +1,5 @@
1
- import { defineComponent as ae, useCssVars as ue, ref as B, computed as j, resolveComponent as he, createElementBlock as w, openBlock as k, createElementVNode as P, createCommentVNode as N, withDirectives as te, toDisplayString as U, withKeys as X, vModelText as re, createTextVNode as ie, Fragment as de, renderList as fe, createVNode as le, normalizeClass as pe, nextTick as ee, watch as ye } from "vue";
2
- class ge {
1
+ import { defineComponent as le, useCssVars as ce, ref as R, computed as T, resolveComponent as pe, createElementBlock as A, openBlock as w, createElementVNode as P, createCommentVNode as N, withDirectives as re, toDisplayString as $, withKeys as X, vModelText as ne, createTextVNode as ie, Fragment as ye, renderList as be, createVNode as ue, normalizeClass as de, nextTick as ee, watch as ge } from "vue";
2
+ class Ee {
3
3
  /**
4
4
  * @callback HookCallback
5
5
  * @this {*|Jsep} this
@@ -18,13 +18,13 @@ class ge {
18
18
  * @param {?boolean} [first=false] Will add the hook to the top of the list (defaults to the bottom)
19
19
  * @public
20
20
  */
21
- add(e, t, s) {
21
+ add(e, t, o) {
22
22
  if (typeof arguments[0] != "string")
23
23
  for (let n in arguments[0])
24
24
  this.add(n, arguments[0][n], arguments[1]);
25
25
  else
26
26
  (Array.isArray(e) ? e : [e]).forEach(function(n) {
27
- this[n] = this[n] || [], t && this[n][s ? "unshift" : "push"](t);
27
+ this[n] = this[n] || [], t && this[n][o ? "unshift" : "push"](t);
28
28
  }, this);
29
29
  }
30
30
  /**
@@ -37,12 +37,12 @@ class ge {
37
37
  * @public
38
38
  */
39
39
  run(e, t) {
40
- this[e] = this[e] || [], this[e].forEach(function(s) {
41
- s.call(t && t.context ? t.context : t, t);
40
+ this[e] = this[e] || [], this[e].forEach(function(o) {
41
+ o.call(t && t.context ? t.context : t, t);
42
42
  });
43
43
  }
44
44
  }
45
- class Ee {
45
+ class me {
46
46
  constructor(e) {
47
47
  this.jsep = e, this.registered = {};
48
48
  }
@@ -60,8 +60,8 @@ class Ee {
60
60
  * @public
61
61
  */
62
62
  register() {
63
- for (var e = arguments.length, t = new Array(e), s = 0; s < e; s++)
64
- t[s] = arguments[s];
63
+ for (var e = arguments.length, t = new Array(e), o = 0; o < e; o++)
64
+ t[o] = arguments[o];
65
65
  t.forEach((n) => {
66
66
  if (typeof n != "object" || !n.name || !n.init)
67
67
  throw new Error("Invalid JSEP plugin format");
@@ -69,7 +69,7 @@ class Ee {
69
69
  });
70
70
  }
71
71
  }
72
- class i {
72
+ class s {
73
73
  /**
74
74
  * @returns {string}
75
75
  */
@@ -80,7 +80,7 @@ class i {
80
80
  * @returns {string}
81
81
  */
82
82
  static toString() {
83
- return "JavaScript Expression Parser (JSEP) v" + i.version;
83
+ return "JavaScript Expression Parser (JSEP) v" + s.version;
84
84
  }
85
85
  // ==================== CONFIG ================================
86
86
  /**
@@ -89,7 +89,7 @@ class i {
89
89
  * @returns {Jsep}
90
90
  */
91
91
  static addUnaryOp(e) {
92
- return i.max_unop_len = Math.max(e.length, i.max_unop_len), i.unary_ops[e] = 1, i;
92
+ return s.max_unop_len = Math.max(e.length, s.max_unop_len), s.unary_ops[e] = 1, s;
93
93
  }
94
94
  /**
95
95
  * @method jsep.addBinaryOp
@@ -98,8 +98,8 @@ class i {
98
98
  * @param {boolean} [isRightAssociative=false] whether operator is right-associative
99
99
  * @returns {Jsep}
100
100
  */
101
- static addBinaryOp(e, t, s) {
102
- return i.max_binop_len = Math.max(e.length, i.max_binop_len), i.binary_ops[e] = t, s ? i.right_associative.add(e) : i.right_associative.delete(e), i;
101
+ static addBinaryOp(e, t, o) {
102
+ return s.max_binop_len = Math.max(e.length, s.max_binop_len), s.binary_ops[e] = t, o ? s.right_associative.add(e) : s.right_associative.delete(e), s;
103
103
  }
104
104
  /**
105
105
  * @method addIdentifierChar
@@ -107,7 +107,7 @@ class i {
107
107
  * @returns {Jsep}
108
108
  */
109
109
  static addIdentifierChar(e) {
110
- return i.additional_identifier_chars.add(e), i;
110
+ return s.additional_identifier_chars.add(e), s;
111
111
  }
112
112
  /**
113
113
  * @method addLiteral
@@ -116,7 +116,7 @@ class i {
116
116
  * @returns {Jsep}
117
117
  */
118
118
  static addLiteral(e, t) {
119
- return i.literals[e] = t, i;
119
+ return s.literals[e] = t, s;
120
120
  }
121
121
  /**
122
122
  * @method removeUnaryOp
@@ -124,14 +124,14 @@ class i {
124
124
  * @returns {Jsep}
125
125
  */
126
126
  static removeUnaryOp(e) {
127
- return delete i.unary_ops[e], e.length === i.max_unop_len && (i.max_unop_len = i.getMaxKeyLen(i.unary_ops)), i;
127
+ return delete s.unary_ops[e], e.length === s.max_unop_len && (s.max_unop_len = s.getMaxKeyLen(s.unary_ops)), s;
128
128
  }
129
129
  /**
130
130
  * @method removeAllUnaryOps
131
131
  * @returns {Jsep}
132
132
  */
133
133
  static removeAllUnaryOps() {
134
- return i.unary_ops = {}, i.max_unop_len = 0, i;
134
+ return s.unary_ops = {}, s.max_unop_len = 0, s;
135
135
  }
136
136
  /**
137
137
  * @method removeIdentifierChar
@@ -139,7 +139,7 @@ class i {
139
139
  * @returns {Jsep}
140
140
  */
141
141
  static removeIdentifierChar(e) {
142
- return i.additional_identifier_chars.delete(e), i;
142
+ return s.additional_identifier_chars.delete(e), s;
143
143
  }
144
144
  /**
145
145
  * @method removeBinaryOp
@@ -147,14 +147,14 @@ class i {
147
147
  * @returns {Jsep}
148
148
  */
149
149
  static removeBinaryOp(e) {
150
- return delete i.binary_ops[e], e.length === i.max_binop_len && (i.max_binop_len = i.getMaxKeyLen(i.binary_ops)), i.right_associative.delete(e), i;
150
+ return delete s.binary_ops[e], e.length === s.max_binop_len && (s.max_binop_len = s.getMaxKeyLen(s.binary_ops)), s.right_associative.delete(e), s;
151
151
  }
152
152
  /**
153
153
  * @method removeAllBinaryOps
154
154
  * @returns {Jsep}
155
155
  */
156
156
  static removeAllBinaryOps() {
157
- return i.binary_ops = {}, i.max_binop_len = 0, i;
157
+ return s.binary_ops = {}, s.max_binop_len = 0, s;
158
158
  }
159
159
  /**
160
160
  * @method removeLiteral
@@ -162,14 +162,14 @@ class i {
162
162
  * @returns {Jsep}
163
163
  */
164
164
  static removeLiteral(e) {
165
- return delete i.literals[e], i;
165
+ return delete s.literals[e], s;
166
166
  }
167
167
  /**
168
168
  * @method removeAllLiterals
169
169
  * @returns {Jsep}
170
170
  */
171
171
  static removeAllLiterals() {
172
- return i.literals = {}, i;
172
+ return s.literals = {}, s;
173
173
  }
174
174
  // ==================== END CONFIG ============================
175
175
  /**
@@ -196,7 +196,7 @@ class i {
196
196
  * @returns {jsep.Expression}
197
197
  */
198
198
  static parse(e) {
199
- return new i(e).parse();
199
+ return new s(e).parse();
200
200
  }
201
201
  /**
202
202
  * Get the longest key length of any object
@@ -220,7 +220,7 @@ class i {
220
220
  * @returns {number}
221
221
  */
222
222
  static binaryPrecedence(e) {
223
- return i.binary_ops[e] || 0;
223
+ return s.binary_ops[e] || 0;
224
224
  }
225
225
  /**
226
226
  * Looks for start of identifier
@@ -230,15 +230,15 @@ class i {
230
230
  static isIdentifierStart(e) {
231
231
  return e >= 65 && e <= 90 || // A...Z
232
232
  e >= 97 && e <= 122 || // a...z
233
- e >= 128 && !i.binary_ops[String.fromCharCode(e)] || // any non-ASCII that is not an operator
234
- i.additional_identifier_chars.has(String.fromCharCode(e));
233
+ e >= 128 && !s.binary_ops[String.fromCharCode(e)] || // any non-ASCII that is not an operator
234
+ s.additional_identifier_chars.has(String.fromCharCode(e));
235
235
  }
236
236
  /**
237
237
  * @param {number} ch
238
238
  * @returns {boolean}
239
239
  */
240
240
  static isIdentifierPart(e) {
241
- return i.isIdentifierStart(e) || i.isDecimalDigit(e);
241
+ return s.isIdentifierStart(e) || s.isDecimalDigit(e);
242
242
  }
243
243
  /**
244
244
  * throw error at index of the expression
@@ -256,12 +256,12 @@ class i {
256
256
  * @returns {?jsep.Expression}
257
257
  */
258
258
  runHook(e, t) {
259
- if (i.hooks[e]) {
260
- const s = {
259
+ if (s.hooks[e]) {
260
+ const o = {
261
261
  context: this,
262
262
  node: t
263
263
  };
264
- return i.hooks.run(e, s), s.node;
264
+ return s.hooks.run(e, o), o.node;
265
265
  }
266
266
  return t;
267
267
  }
@@ -271,12 +271,12 @@ class i {
271
271
  * @returns {?jsep.Expression}
272
272
  */
273
273
  searchHook(e) {
274
- if (i.hooks[e]) {
274
+ if (s.hooks[e]) {
275
275
  const t = {
276
276
  context: this
277
277
  };
278
- return i.hooks[e].find(function(s) {
279
- return s.call(t.context, t), t.node;
278
+ return s.hooks[e].find(function(o) {
279
+ return o.call(t.context, t), t.node;
280
280
  }), t.node;
281
281
  }
282
282
  }
@@ -285,7 +285,7 @@ class i {
285
285
  */
286
286
  gobbleSpaces() {
287
287
  let e = this.code;
288
- for (; e === i.SPACE_CODE || e === i.TAB_CODE || e === i.LF_CODE || e === i.CR_CODE; )
288
+ for (; e === s.SPACE_CODE || e === s.TAB_CODE || e === s.LF_CODE || e === s.CR_CODE; )
289
289
  e = this.expr.charCodeAt(++this.index);
290
290
  this.runHook("gobble-spaces");
291
291
  }
@@ -296,7 +296,7 @@ class i {
296
296
  parse() {
297
297
  this.runHook("before-all");
298
298
  const e = this.gobbleExpressions(), t = e.length === 1 ? e[0] : {
299
- type: i.COMPOUND,
299
+ type: s.COMPOUND,
300
300
  body: e
301
301
  };
302
302
  return this.runHook("after-all", t);
@@ -307,14 +307,14 @@ class i {
307
307
  * @returns {jsep.Expression[]}
308
308
  */
309
309
  gobbleExpressions(e) {
310
- let t = [], s, n;
310
+ let t = [], o, n;
311
311
  for (; this.index < this.expr.length; )
312
- if (s = this.code, s === i.SEMCOL_CODE || s === i.COMMA_CODE)
312
+ if (o = this.code, o === s.SEMCOL_CODE || o === s.COMMA_CODE)
313
313
  this.index++;
314
314
  else if (n = this.gobbleExpression())
315
315
  t.push(n);
316
316
  else if (this.index < this.expr.length) {
317
- if (s === e)
317
+ if (o === e)
318
318
  break;
319
319
  this.throwError('Unexpected "' + this.char + '"');
320
320
  }
@@ -337,9 +337,9 @@ class i {
337
337
  */
338
338
  gobbleBinaryOp() {
339
339
  this.gobbleSpaces();
340
- let e = this.expr.substr(this.index, i.max_binop_len), t = e.length;
340
+ let e = this.expr.substr(this.index, s.max_binop_len), t = e.length;
341
341
  for (; t > 0; ) {
342
- if (i.binary_ops.hasOwnProperty(e) && (!i.isIdentifierStart(this.code) || this.index + e.length < this.expr.length && !i.isIdentifierPart(this.expr.charCodeAt(this.index + e.length))))
342
+ if (s.binary_ops.hasOwnProperty(e) && (!s.isIdentifierStart(this.code) || this.index + e.length < this.expr.length && !s.isIdentifierPart(this.expr.charCodeAt(this.index + e.length))))
343
343
  return this.index += t, e;
344
344
  e = e.substr(0, --t);
345
345
  }
@@ -351,40 +351,40 @@ class i {
351
351
  * @returns {?jsep.BinaryExpression}
352
352
  */
353
353
  gobbleBinaryExpression() {
354
- let e, t, s, n, a, c, d, u, h;
355
- if (c = this.gobbleToken(), !c || (t = this.gobbleBinaryOp(), !t))
356
- return c;
354
+ let e, t, o, n, a, l, f, d, h;
355
+ if (l = this.gobbleToken(), !l || (t = this.gobbleBinaryOp(), !t))
356
+ return l;
357
357
  for (a = {
358
358
  value: t,
359
- prec: i.binaryPrecedence(t),
360
- right_a: i.right_associative.has(t)
361
- }, d = this.gobbleToken(), d || this.throwError("Expected expression after " + t), n = [c, a, d]; t = this.gobbleBinaryOp(); ) {
362
- if (s = i.binaryPrecedence(t), s === 0) {
359
+ prec: s.binaryPrecedence(t),
360
+ right_a: s.right_associative.has(t)
361
+ }, f = this.gobbleToken(), f || this.throwError("Expected expression after " + t), n = [l, a, f]; t = this.gobbleBinaryOp(); ) {
362
+ if (o = s.binaryPrecedence(t), o === 0) {
363
363
  this.index -= t.length;
364
364
  break;
365
365
  }
366
366
  a = {
367
367
  value: t,
368
- prec: s,
369
- right_a: i.right_associative.has(t)
368
+ prec: o,
369
+ right_a: s.right_associative.has(t)
370
370
  }, h = t;
371
- const b = (m) => a.right_a && m.right_a ? s > m.prec : s <= m.prec;
372
- for (; n.length > 2 && b(n[n.length - 2]); )
373
- d = n.pop(), t = n.pop().value, c = n.pop(), e = {
374
- type: i.BINARY_EXP,
371
+ const m = (p) => a.right_a && p.right_a ? o > p.prec : o <= p.prec;
372
+ for (; n.length > 2 && m(n[n.length - 2]); )
373
+ f = n.pop(), t = n.pop().value, l = n.pop(), e = {
374
+ type: s.BINARY_EXP,
375
375
  operator: t,
376
- left: c,
377
- right: d
376
+ left: l,
377
+ right: f
378
378
  }, n.push(e);
379
379
  e = this.gobbleToken(), e || this.throwError("Expected expression after " + h), n.push(a, e);
380
380
  }
381
- for (u = n.length - 1, e = n[u]; u > 1; )
381
+ for (d = n.length - 1, e = n[d]; d > 1; )
382
382
  e = {
383
- type: i.BINARY_EXP,
384
- operator: n[u - 1].value,
385
- left: n[u - 2],
383
+ type: s.BINARY_EXP,
384
+ operator: n[d - 1].value,
385
+ left: n[d - 2],
386
386
  right: e
387
- }, u -= 2;
387
+ }, d -= 2;
388
388
  return e;
389
389
  }
390
390
  /**
@@ -393,36 +393,36 @@ class i {
393
393
  * @returns {boolean|jsep.Expression}
394
394
  */
395
395
  gobbleToken() {
396
- let e, t, s, n;
396
+ let e, t, o, n;
397
397
  if (this.gobbleSpaces(), n = this.searchHook("gobble-token"), n)
398
398
  return this.runHook("after-token", n);
399
- if (e = this.code, i.isDecimalDigit(e) || e === i.PERIOD_CODE)
399
+ if (e = this.code, s.isDecimalDigit(e) || e === s.PERIOD_CODE)
400
400
  return this.gobbleNumericLiteral();
401
- if (e === i.SQUOTE_CODE || e === i.DQUOTE_CODE)
401
+ if (e === s.SQUOTE_CODE || e === s.DQUOTE_CODE)
402
402
  n = this.gobbleStringLiteral();
403
- else if (e === i.OBRACK_CODE)
403
+ else if (e === s.OBRACK_CODE)
404
404
  n = this.gobbleArray();
405
405
  else {
406
- for (t = this.expr.substr(this.index, i.max_unop_len), s = t.length; s > 0; ) {
407
- if (i.unary_ops.hasOwnProperty(t) && (!i.isIdentifierStart(this.code) || this.index + t.length < this.expr.length && !i.isIdentifierPart(this.expr.charCodeAt(this.index + t.length)))) {
408
- this.index += s;
406
+ for (t = this.expr.substr(this.index, s.max_unop_len), o = t.length; o > 0; ) {
407
+ if (s.unary_ops.hasOwnProperty(t) && (!s.isIdentifierStart(this.code) || this.index + t.length < this.expr.length && !s.isIdentifierPart(this.expr.charCodeAt(this.index + t.length)))) {
408
+ this.index += o;
409
409
  const a = this.gobbleToken();
410
410
  return a || this.throwError("missing unaryOp argument"), this.runHook("after-token", {
411
- type: i.UNARY_EXP,
411
+ type: s.UNARY_EXP,
412
412
  operator: t,
413
413
  argument: a,
414
414
  prefix: !0
415
415
  });
416
416
  }
417
- t = t.substr(0, --s);
417
+ t = t.substr(0, --o);
418
418
  }
419
- i.isIdentifierStart(e) ? (n = this.gobbleIdentifier(), i.literals.hasOwnProperty(n.name) ? n = {
420
- type: i.LITERAL,
421
- value: i.literals[n.name],
419
+ s.isIdentifierStart(e) ? (n = this.gobbleIdentifier(), s.literals.hasOwnProperty(n.name) ? n = {
420
+ type: s.LITERAL,
421
+ value: s.literals[n.name],
422
422
  raw: n.name
423
- } : n.name === i.this_str && (n = {
424
- type: i.THIS_EXP
425
- })) : e === i.OPAREN_CODE && (n = this.gobbleGroup());
423
+ } : n.name === s.this_str && (n = {
424
+ type: s.THIS_EXP
425
+ })) : e === s.OPAREN_CODE && (n = this.gobbleGroup());
426
426
  }
427
427
  return n ? (n = this.gobbleTokenProperty(n), this.runHook("after-token", n)) : this.runHook("after-token", !1);
428
428
  }
@@ -437,28 +437,28 @@ class i {
437
437
  gobbleTokenProperty(e) {
438
438
  this.gobbleSpaces();
439
439
  let t = this.code;
440
- for (; t === i.PERIOD_CODE || t === i.OBRACK_CODE || t === i.OPAREN_CODE || t === i.QUMARK_CODE; ) {
441
- let s;
442
- if (t === i.QUMARK_CODE) {
443
- if (this.expr.charCodeAt(this.index + 1) !== i.PERIOD_CODE)
440
+ for (; t === s.PERIOD_CODE || t === s.OBRACK_CODE || t === s.OPAREN_CODE || t === s.QUMARK_CODE; ) {
441
+ let o;
442
+ if (t === s.QUMARK_CODE) {
443
+ if (this.expr.charCodeAt(this.index + 1) !== s.PERIOD_CODE)
444
444
  break;
445
- s = !0, this.index += 2, this.gobbleSpaces(), t = this.code;
445
+ o = !0, this.index += 2, this.gobbleSpaces(), t = this.code;
446
446
  }
447
- this.index++, t === i.OBRACK_CODE ? (e = {
448
- type: i.MEMBER_EXP,
447
+ this.index++, t === s.OBRACK_CODE ? (e = {
448
+ type: s.MEMBER_EXP,
449
449
  computed: !0,
450
450
  object: e,
451
451
  property: this.gobbleExpression()
452
- }, e.property || this.throwError('Unexpected "' + this.char + '"'), this.gobbleSpaces(), t = this.code, t !== i.CBRACK_CODE && this.throwError("Unclosed ["), this.index++) : t === i.OPAREN_CODE ? e = {
453
- type: i.CALL_EXP,
454
- arguments: this.gobbleArguments(i.CPAREN_CODE),
452
+ }, e.property || this.throwError('Unexpected "' + this.char + '"'), this.gobbleSpaces(), t = this.code, t !== s.CBRACK_CODE && this.throwError("Unclosed ["), this.index++) : t === s.OPAREN_CODE ? e = {
453
+ type: s.CALL_EXP,
454
+ arguments: this.gobbleArguments(s.CPAREN_CODE),
455
455
  callee: e
456
- } : (t === i.PERIOD_CODE || s) && (s && this.index--, this.gobbleSpaces(), e = {
457
- type: i.MEMBER_EXP,
456
+ } : (t === s.PERIOD_CODE || o) && (o && this.index--, this.gobbleSpaces(), e = {
457
+ type: s.MEMBER_EXP,
458
458
  computed: !1,
459
459
  object: e,
460
460
  property: this.gobbleIdentifier()
461
- }), s && (e.optional = !0), this.gobbleSpaces(), t = this.code;
461
+ }), o && (e.optional = !0), this.gobbleSpaces(), t = this.code;
462
462
  }
463
463
  return e;
464
464
  }
@@ -468,19 +468,19 @@ class i {
468
468
  * @returns {jsep.Literal}
469
469
  */
470
470
  gobbleNumericLiteral() {
471
- let e = "", t, s;
472
- for (; i.isDecimalDigit(this.code); )
471
+ let e = "", t, o;
472
+ for (; s.isDecimalDigit(this.code); )
473
473
  e += this.expr.charAt(this.index++);
474
- if (this.code === i.PERIOD_CODE)
475
- for (e += this.expr.charAt(this.index++); i.isDecimalDigit(this.code); )
474
+ if (this.code === s.PERIOD_CODE)
475
+ for (e += this.expr.charAt(this.index++); s.isDecimalDigit(this.code); )
476
476
  e += this.expr.charAt(this.index++);
477
477
  if (t = this.char, t === "e" || t === "E") {
478
- for (e += this.expr.charAt(this.index++), t = this.char, (t === "+" || t === "-") && (e += this.expr.charAt(this.index++)); i.isDecimalDigit(this.code); )
478
+ for (e += this.expr.charAt(this.index++), t = this.char, (t === "+" || t === "-") && (e += this.expr.charAt(this.index++)); s.isDecimalDigit(this.code); )
479
479
  e += this.expr.charAt(this.index++);
480
- i.isDecimalDigit(this.expr.charCodeAt(this.index - 1)) || this.throwError("Expected exponent (" + e + this.char + ")");
480
+ s.isDecimalDigit(this.expr.charCodeAt(this.index - 1)) || this.throwError("Expected exponent (" + e + this.char + ")");
481
481
  }
482
- return s = this.code, i.isIdentifierStart(s) ? this.throwError("Variable names cannot start with a number (" + e + this.char + ")") : (s === i.PERIOD_CODE || e.length === 1 && e.charCodeAt(0) === i.PERIOD_CODE) && this.throwError("Unexpected period"), {
483
- type: i.LITERAL,
482
+ return o = this.code, s.isIdentifierStart(o) ? this.throwError("Variable names cannot start with a number (" + e + this.char + ")") : (o === s.PERIOD_CODE || e.length === 1 && e.charCodeAt(0) === s.PERIOD_CODE) && this.throwError("Unexpected period"), {
483
+ type: s.LITERAL,
484
484
  value: parseFloat(e),
485
485
  raw: e
486
486
  };
@@ -492,11 +492,11 @@ class i {
492
492
  */
493
493
  gobbleStringLiteral() {
494
494
  let e = "";
495
- const t = this.index, s = this.expr.charAt(this.index++);
495
+ const t = this.index, o = this.expr.charAt(this.index++);
496
496
  let n = !1;
497
497
  for (; this.index < this.expr.length; ) {
498
498
  let a = this.expr.charAt(this.index++);
499
- if (a === s) {
499
+ if (a === o) {
500
500
  n = !0;
501
501
  break;
502
502
  } else if (a === "\\")
@@ -527,7 +527,7 @@ class i {
527
527
  e += a;
528
528
  }
529
529
  return n || this.throwError('Unclosed quote after "' + e + '"'), {
530
- type: i.LITERAL,
530
+ type: s.LITERAL,
531
531
  value: e,
532
532
  raw: this.expr.substring(t, this.index)
533
533
  };
@@ -541,10 +541,10 @@ class i {
541
541
  */
542
542
  gobbleIdentifier() {
543
543
  let e = this.code, t = this.index;
544
- for (i.isIdentifierStart(e) ? this.index++ : this.throwError("Unexpected " + this.char); this.index < this.expr.length && (e = this.code, i.isIdentifierPart(e)); )
544
+ for (s.isIdentifierStart(e) ? this.index++ : this.throwError("Unexpected " + this.char); this.index < this.expr.length && (e = this.code, s.isIdentifierPart(e)); )
545
545
  this.index++;
546
546
  return {
547
- type: i.IDENTIFIER,
547
+ type: s.IDENTIFIER,
548
548
  name: this.expr.slice(t, this.index)
549
549
  };
550
550
  }
@@ -559,29 +559,29 @@ class i {
559
559
  */
560
560
  gobbleArguments(e) {
561
561
  const t = [];
562
- let s = !1, n = 0;
562
+ let o = !1, n = 0;
563
563
  for (; this.index < this.expr.length; ) {
564
564
  this.gobbleSpaces();
565
565
  let a = this.code;
566
566
  if (a === e) {
567
- s = !0, this.index++, e === i.CPAREN_CODE && n && n >= t.length && this.throwError("Unexpected token " + String.fromCharCode(e));
567
+ o = !0, this.index++, e === s.CPAREN_CODE && n && n >= t.length && this.throwError("Unexpected token " + String.fromCharCode(e));
568
568
  break;
569
- } else if (a === i.COMMA_CODE) {
569
+ } else if (a === s.COMMA_CODE) {
570
570
  if (this.index++, n++, n !== t.length) {
571
- if (e === i.CPAREN_CODE)
571
+ if (e === s.CPAREN_CODE)
572
572
  this.throwError("Unexpected token ,");
573
- else if (e === i.CBRACK_CODE)
574
- for (let c = t.length; c < n; c++)
573
+ else if (e === s.CBRACK_CODE)
574
+ for (let l = t.length; l < n; l++)
575
575
  t.push(null);
576
576
  }
577
577
  } else if (t.length !== n && n !== 0)
578
578
  this.throwError("Expected comma");
579
579
  else {
580
- const c = this.gobbleExpression();
581
- (!c || c.type === i.COMPOUND) && this.throwError("Expected comma"), t.push(c);
580
+ const l = this.gobbleExpression();
581
+ (!l || l.type === s.COMPOUND) && this.throwError("Expected comma"), t.push(l);
582
582
  }
583
583
  }
584
- return s || this.throwError("Expected " + String.fromCharCode(e)), t;
584
+ return o || this.throwError("Expected " + String.fromCharCode(e)), t;
585
585
  }
586
586
  /**
587
587
  * Responsible for parsing a group of things within parentheses `()`
@@ -594,10 +594,10 @@ class i {
594
594
  */
595
595
  gobbleGroup() {
596
596
  this.index++;
597
- let e = this.gobbleExpressions(i.CPAREN_CODE);
598
- if (this.code === i.CPAREN_CODE)
597
+ let e = this.gobbleExpressions(s.CPAREN_CODE);
598
+ if (this.code === s.CPAREN_CODE)
599
599
  return this.index++, e.length === 1 ? e[0] : e.length ? {
600
- type: i.SEQUENCE_EXP,
600
+ type: s.SEQUENCE_EXP,
601
601
  expressions: e
602
602
  } : !1;
603
603
  this.throwError("Unclosed (");
@@ -610,15 +610,15 @@ class i {
610
610
  */
611
611
  gobbleArray() {
612
612
  return this.index++, {
613
- type: i.ARRAY_EXP,
614
- elements: this.gobbleArguments(i.CBRACK_CODE)
613
+ type: s.ARRAY_EXP,
614
+ elements: this.gobbleArguments(s.CBRACK_CODE)
615
615
  };
616
616
  }
617
617
  }
618
- const be = new ge();
619
- Object.assign(i, {
620
- hooks: be,
621
- plugins: new Ee(i),
618
+ const ve = new Ee();
619
+ Object.assign(s, {
620
+ hooks: ve,
621
+ plugins: new me(s),
622
622
  // Node Types
623
623
  // ----------
624
624
  // This is the full set of types that any JSEP node can be.
@@ -712,35 +712,35 @@ Object.assign(i, {
712
712
  // Except for `this`, which is special. This could be changed to something like `'self'` as well
713
713
  this_str: "this"
714
714
  });
715
- i.max_unop_len = i.getMaxKeyLen(i.unary_ops);
716
- i.max_binop_len = i.getMaxKeyLen(i.binary_ops);
717
- const L = (r) => new i(r).parse(), ve = Object.getOwnPropertyNames(class {
715
+ s.max_unop_len = s.getMaxKeyLen(s.unary_ops);
716
+ s.max_binop_len = s.getMaxKeyLen(s.binary_ops);
717
+ const L = (r) => new s(r).parse(), _e = Object.getOwnPropertyNames(class {
718
718
  });
719
- Object.getOwnPropertyNames(i).filter((r) => !ve.includes(r) && L[r] === void 0).forEach((r) => {
720
- L[r] = i[r];
719
+ Object.getOwnPropertyNames(s).filter((r) => !_e.includes(r) && L[r] === void 0).forEach((r) => {
720
+ L[r] = s[r];
721
721
  });
722
- L.Jsep = i;
723
- const _e = "ConditionalExpression";
724
- var me = {
722
+ L.Jsep = s;
723
+ const xe = "ConditionalExpression";
724
+ var ke = {
725
725
  name: "ternary",
726
726
  init(r) {
727
727
  r.hooks.add("after-expression", function(t) {
728
728
  if (t.node && this.code === r.QUMARK_CODE) {
729
729
  this.index++;
730
- const s = t.node, n = this.gobbleExpression();
730
+ const o = t.node, n = this.gobbleExpression();
731
731
  if (n || this.throwError("Expected expression"), this.gobbleSpaces(), this.code === r.COLON_CODE) {
732
732
  this.index++;
733
733
  const a = this.gobbleExpression();
734
734
  if (a || this.throwError("Expected expression"), t.node = {
735
- type: _e,
736
- test: s,
735
+ type: xe,
736
+ test: o,
737
737
  consequent: n,
738
738
  alternate: a
739
- }, s.operator && r.binary_ops[s.operator] <= 0.9) {
740
- let c = s;
741
- for (; c.right.operator && r.binary_ops[c.right.operator] <= 0.9; )
742
- c = c.right;
743
- t.node.test = c.right, c.right = t.node, t.node = s;
739
+ }, o.operator && r.binary_ops[o.operator] <= 0.9) {
740
+ let l = o;
741
+ for (; l.right.operator && r.binary_ops[l.right.operator] <= 0.9; )
742
+ l = l.right;
743
+ t.node.test = l.right, l.right = t.node, t.node = o;
744
744
  }
745
745
  } else
746
746
  this.throwError("Expected :");
@@ -748,66 +748,66 @@ var me = {
748
748
  });
749
749
  }
750
750
  };
751
- L.plugins.register(me);
752
- const oe = 47, xe = 92;
753
- var Oe = {
751
+ L.plugins.register(ke);
752
+ const ae = 47, Oe = 92;
753
+ var Ce = {
754
754
  name: "regex",
755
755
  init(r) {
756
756
  r.hooks.add("gobble-token", function(t) {
757
- if (this.code === oe) {
758
- const s = ++this.index;
757
+ if (this.code === ae) {
758
+ const o = ++this.index;
759
759
  let n = !1;
760
760
  for (; this.index < this.expr.length; ) {
761
- if (this.code === oe && !n) {
762
- const a = this.expr.slice(s, this.index);
763
- let c = "";
761
+ if (this.code === ae && !n) {
762
+ const a = this.expr.slice(o, this.index);
763
+ let l = "";
764
764
  for (; ++this.index < this.expr.length; ) {
765
- const u = this.code;
766
- if (u >= 97 && u <= 122 || u >= 65 && u <= 90 || u >= 48 && u <= 57)
767
- c += this.char;
765
+ const d = this.code;
766
+ if (d >= 97 && d <= 122 || d >= 65 && d <= 90 || d >= 48 && d <= 57)
767
+ l += this.char;
768
768
  else
769
769
  break;
770
770
  }
771
- let d;
771
+ let f;
772
772
  try {
773
- d = new RegExp(a, c);
774
- } catch (u) {
775
- this.throwError(u.message);
773
+ f = new RegExp(a, l);
774
+ } catch (d) {
775
+ this.throwError(d.message);
776
776
  }
777
777
  return t.node = {
778
778
  type: r.LITERAL,
779
- value: d,
780
- raw: this.expr.slice(s - 1, this.index)
779
+ value: f,
780
+ raw: this.expr.slice(o - 1, this.index)
781
781
  }, t.node = this.gobbleTokenProperty(t.node), t.node;
782
782
  }
783
- this.code === r.OBRACK_CODE ? n = !0 : n && this.code === r.CBRACK_CODE && (n = !1), this.index += this.code === xe ? 2 : 1;
783
+ this.code === r.OBRACK_CODE ? n = !0 : n && this.code === r.CBRACK_CODE && (n = !1), this.index += this.code === Oe ? 2 : 1;
784
784
  }
785
785
  this.throwError("Unclosed Regex");
786
786
  }
787
787
  });
788
788
  }
789
789
  };
790
- const ne = 43, Ce = 45, H = {
790
+ const oe = 43, Ae = 45, G = {
791
791
  name: "assignment",
792
792
  assignmentOperators: /* @__PURE__ */ new Set(["=", "*=", "**=", "/=", "%=", "+=", "-=", "<<=", ">>=", ">>>=", "&=", "^=", "|=", "||=", "&&=", "??="]),
793
- updateOperators: [ne, Ce],
793
+ updateOperators: [oe, Ae],
794
794
  assignmentPrecedence: 0.9,
795
795
  init(r) {
796
796
  const e = [r.IDENTIFIER, r.MEMBER_EXP];
797
- H.assignmentOperators.forEach((s) => r.addBinaryOp(s, H.assignmentPrecedence, !0)), r.hooks.add("gobble-token", function(n) {
797
+ G.assignmentOperators.forEach((o) => r.addBinaryOp(o, G.assignmentPrecedence, !0)), r.hooks.add("gobble-token", function(n) {
798
798
  const a = this.code;
799
- H.updateOperators.some((c) => c === a && c === this.expr.charCodeAt(this.index + 1)) && (this.index += 2, n.node = {
799
+ G.updateOperators.some((l) => l === a && l === this.expr.charCodeAt(this.index + 1)) && (this.index += 2, n.node = {
800
800
  type: "UpdateExpression",
801
- operator: a === ne ? "++" : "--",
801
+ operator: a === oe ? "++" : "--",
802
802
  argument: this.gobbleTokenProperty(this.gobbleIdentifier()),
803
803
  prefix: !0
804
804
  }, (!n.node.argument || !e.includes(n.node.argument.type)) && this.throwError(`Unexpected ${n.node.operator}`));
805
805
  }), r.hooks.add("after-token", function(n) {
806
806
  if (n.node) {
807
807
  const a = this.code;
808
- H.updateOperators.some((c) => c === a && c === this.expr.charCodeAt(this.index + 1)) && (e.includes(n.node.type) || this.throwError(`Unexpected ${n.node.operator}`), this.index += 2, n.node = {
808
+ G.updateOperators.some((l) => l === a && l === this.expr.charCodeAt(this.index + 1)) && (e.includes(n.node.type) || this.throwError(`Unexpected ${n.node.operator}`), this.index += 2, n.node = {
809
809
  type: "UpdateExpression",
810
- operator: a === ne ? "++" : "--",
810
+ operator: a === oe ? "++" : "--",
811
811
  argument: n.node,
812
812
  prefix: !1
813
813
  });
@@ -815,18 +815,18 @@ const ne = 43, Ce = 45, H = {
815
815
  }), r.hooks.add("after-expression", function(n) {
816
816
  n.node && t(n.node);
817
817
  });
818
- function t(s) {
819
- H.assignmentOperators.has(s.operator) ? (s.type = "AssignmentExpression", t(s.left), t(s.right)) : s.operator || Object.values(s).forEach((n) => {
818
+ function t(o) {
819
+ G.assignmentOperators.has(o.operator) ? (o.type = "AssignmentExpression", t(o.left), t(o.right)) : o.operator || Object.values(o).forEach((n) => {
820
820
  n && typeof n == "object" && t(n);
821
821
  });
822
822
  }
823
823
  }
824
824
  };
825
- L.plugins.register(Oe, H);
825
+ L.plugins.register(Ce, G);
826
826
  L.addUnaryOp("typeof");
827
827
  L.addLiteral("null", null);
828
828
  L.addLiteral("undefined", void 0);
829
- const Ae = /* @__PURE__ */ new Set(["constructor", "__proto__", "__defineGetter__", "__defineSetter__"]), O = {
829
+ const we = /* @__PURE__ */ new Set(["constructor", "__proto__", "__defineGetter__", "__defineSetter__"]), O = {
830
830
  /**
831
831
  * @param {jsep.Expression} ast
832
832
  * @param {Record<string, any>} subs
@@ -860,36 +860,36 @@ const Ae = /* @__PURE__ */ new Set(["constructor", "__proto__", "__defineGetter_
860
860
  },
861
861
  evalBinaryExpression(r, e) {
862
862
  return {
863
- "||": (s, n) => s || n(),
864
- "&&": (s, n) => s && n(),
865
- "|": (s, n) => s | n(),
866
- "^": (s, n) => s ^ n(),
867
- "&": (s, n) => s & n(),
863
+ "||": (o, n) => o || n(),
864
+ "&&": (o, n) => o && n(),
865
+ "|": (o, n) => o | n(),
866
+ "^": (o, n) => o ^ n(),
867
+ "&": (o, n) => o & n(),
868
868
  // eslint-disable-next-line eqeqeq -- API
869
- "==": (s, n) => s == n(),
869
+ "==": (o, n) => o == n(),
870
870
  // eslint-disable-next-line eqeqeq -- API
871
- "!=": (s, n) => s != n(),
872
- "===": (s, n) => s === n(),
873
- "!==": (s, n) => s !== n(),
874
- "<": (s, n) => s < n(),
875
- ">": (s, n) => s > n(),
876
- "<=": (s, n) => s <= n(),
877
- ">=": (s, n) => s >= n(),
878
- "<<": (s, n) => s << n(),
879
- ">>": (s, n) => s >> n(),
880
- ">>>": (s, n) => s >>> n(),
881
- "+": (s, n) => s + n(),
882
- "-": (s, n) => s - n(),
883
- "*": (s, n) => s * n(),
884
- "/": (s, n) => s / n(),
885
- "%": (s, n) => s % n()
871
+ "!=": (o, n) => o != n(),
872
+ "===": (o, n) => o === n(),
873
+ "!==": (o, n) => o !== n(),
874
+ "<": (o, n) => o < n(),
875
+ ">": (o, n) => o > n(),
876
+ "<=": (o, n) => o <= n(),
877
+ ">=": (o, n) => o >= n(),
878
+ "<<": (o, n) => o << n(),
879
+ ">>": (o, n) => o >> n(),
880
+ ">>>": (o, n) => o >>> n(),
881
+ "+": (o, n) => o + n(),
882
+ "-": (o, n) => o - n(),
883
+ "*": (o, n) => o * n(),
884
+ "/": (o, n) => o / n(),
885
+ "%": (o, n) => o % n()
886
886
  }[r.operator](O.evalAst(r.left, e), () => O.evalAst(r.right, e));
887
887
  },
888
888
  evalCompound(r, e) {
889
889
  let t;
890
- for (let s = 0; s < r.body.length; s++) {
891
- r.body[s].type === "Identifier" && ["var", "let", "const"].includes(r.body[s].name) && r.body[s + 1] && r.body[s + 1].type === "AssignmentExpression" && (s += 1);
892
- const n = r.body[s];
890
+ for (let o = 0; o < r.body.length; o++) {
891
+ r.body[o].type === "Identifier" && ["var", "let", "const"].includes(r.body[o].name) && r.body[o + 1] && r.body[o + 1].type === "AssignmentExpression" && (o += 1);
892
+ const n = r.body[o];
893
893
  t = O.evalAst(n, e);
894
894
  }
895
895
  return t;
@@ -912,22 +912,22 @@ const Ae = /* @__PURE__ */ new Set(["constructor", "__proto__", "__defineGetter_
912
912
  // i.e. `value = {toString: () => []}`
913
913
  r.computed ? O.evalAst(r.property) : r.property.name
914
914
  // `object.property` property is Identifier
915
- ), s = O.evalAst(r.object, e);
916
- if (s == null)
917
- throw TypeError(`Cannot read properties of ${s} (reading '${t}')`);
918
- if (!Object.hasOwn(s, t) && Ae.has(t))
919
- throw TypeError(`Cannot read properties of ${s} (reading '${t}')`);
920
- const n = s[t];
921
- return typeof n == "function" ? n.bind(s) : n;
915
+ ), o = O.evalAst(r.object, e);
916
+ if (o == null)
917
+ throw TypeError(`Cannot read properties of ${o} (reading '${t}')`);
918
+ if (!Object.hasOwn(o, t) && we.has(t))
919
+ throw TypeError(`Cannot read properties of ${o} (reading '${t}')`);
920
+ const n = o[t];
921
+ return typeof n == "function" ? n.bind(o) : n;
922
922
  },
923
923
  evalUnaryExpression(r, e) {
924
924
  return {
925
- "-": (s) => -O.evalAst(s, e),
926
- "!": (s) => !O.evalAst(s, e),
927
- "~": (s) => ~O.evalAst(s, e),
925
+ "-": (o) => -O.evalAst(o, e),
926
+ "!": (o) => !O.evalAst(o, e),
927
+ "~": (o) => ~O.evalAst(o, e),
928
928
  // eslint-disable-next-line no-implicit-coercion -- API
929
- "+": (s) => +O.evalAst(s, e),
930
- typeof: (s) => typeof O.evalAst(s, e)
929
+ "+": (o) => +O.evalAst(o, e),
930
+ typeof: (o) => typeof O.evalAst(o, e)
931
931
  }[r.operator](r.argument);
932
932
  },
933
933
  evalArrayExpression(r, e) {
@@ -940,11 +940,11 @@ const Ae = /* @__PURE__ */ new Set(["constructor", "__proto__", "__defineGetter_
940
940
  evalAssignmentExpression(r, e) {
941
941
  if (r.left.type !== "Identifier")
942
942
  throw SyntaxError("Invalid left-hand side in assignment");
943
- const t = r.left.name, s = O.evalAst(r.right, e);
944
- return e[t] = s, e[t];
943
+ const t = r.left.name, o = O.evalAst(r.right, e);
944
+ return e[t] = o, e[t];
945
945
  }
946
946
  };
947
- class we {
947
+ class Se {
948
948
  /**
949
949
  * @param {string} expr Expression to evaluate
950
950
  */
@@ -961,13 +961,13 @@ class we {
961
961
  return O.evalAst(this.ast, t);
962
962
  }
963
963
  }
964
- function F(r, e) {
964
+ function M(r, e) {
965
965
  return r = r.slice(), r.push(e), r;
966
966
  }
967
967
  function se(r, e) {
968
968
  return e = e.slice(), e.unshift(r), e;
969
969
  }
970
- class ke extends Error {
970
+ class Pe extends Error {
971
971
  /**
972
972
  * @param {AnyResult} value The evaluated scalar value
973
973
  */
@@ -975,55 +975,55 @@ class ke extends Error {
975
975
  super('JSONPath should not be called with "new" (it prevents return of (unwrapped) scalar values)'), this.avoidNew = !0, this.value = e, this.name = "NewError";
976
976
  }
977
977
  }
978
- function x(r, e, t, s, n) {
978
+ function x(r, e, t, o, n) {
979
979
  if (!(this instanceof x))
980
980
  try {
981
- return new x(r, e, t, s, n);
982
- } catch (c) {
983
- if (!c.avoidNew)
984
- throw c;
985
- return c.value;
981
+ return new x(r, e, t, o, n);
982
+ } catch (l) {
983
+ if (!l.avoidNew)
984
+ throw l;
985
+ return l.value;
986
986
  }
987
- typeof r == "string" && (n = s, s = t, t = e, e = r, r = null);
987
+ typeof r == "string" && (n = o, o = t, t = e, e = r, r = null);
988
988
  const a = r && typeof r == "object";
989
- if (r = r || {}, this.json = r.json || t, this.path = r.path || e, this.resultType = r.resultType || "value", this.flatten = r.flatten || !1, this.wrap = Object.hasOwn(r, "wrap") ? r.wrap : !0, this.sandbox = r.sandbox || {}, this.eval = r.eval === void 0 ? "safe" : r.eval, this.ignoreEvalErrors = typeof r.ignoreEvalErrors > "u" ? !1 : r.ignoreEvalErrors, this.parent = r.parent || null, this.parentProperty = r.parentProperty || null, this.callback = r.callback || s || null, this.otherTypeCallback = r.otherTypeCallback || n || function() {
989
+ if (r = r || {}, this.json = r.json || t, this.path = r.path || e, this.resultType = r.resultType || "value", this.flatten = r.flatten || !1, this.wrap = Object.hasOwn(r, "wrap") ? r.wrap : !0, this.sandbox = r.sandbox || {}, this.eval = r.eval === void 0 ? "safe" : r.eval, this.ignoreEvalErrors = typeof r.ignoreEvalErrors > "u" ? !1 : r.ignoreEvalErrors, this.parent = r.parent || null, this.parentProperty = r.parentProperty || null, this.callback = r.callback || o || null, this.otherTypeCallback = r.otherTypeCallback || n || function() {
990
990
  throw new TypeError("You must supply an otherTypeCallback callback option with the @other() operator.");
991
991
  }, r.autostart !== !1) {
992
- const c = {
992
+ const l = {
993
993
  path: a ? r.path : e
994
994
  };
995
- a ? "json" in r && (c.json = r.json) : c.json = t;
996
- const d = this.evaluate(c);
997
- if (!d || typeof d != "object")
998
- throw new ke(d);
999
- return d;
995
+ a ? "json" in r && (l.json = r.json) : l.json = t;
996
+ const f = this.evaluate(l);
997
+ if (!f || typeof f != "object")
998
+ throw new Pe(f);
999
+ return f;
1000
1000
  }
1001
1001
  }
1002
- x.prototype.evaluate = function(r, e, t, s) {
1002
+ x.prototype.evaluate = function(r, e, t, o) {
1003
1003
  let n = this.parent, a = this.parentProperty, {
1004
- flatten: c,
1005
- wrap: d
1004
+ flatten: l,
1005
+ wrap: f
1006
1006
  } = this;
1007
- if (this.currResultType = this.resultType, this.currEval = this.eval, this.currSandbox = this.sandbox, t = t || this.callback, this.currOtherTypeCallback = s || this.otherTypeCallback, e = e || this.json, r = r || this.path, r && typeof r == "object" && !Array.isArray(r)) {
1007
+ if (this.currResultType = this.resultType, this.currEval = this.eval, this.currSandbox = this.sandbox, t = t || this.callback, this.currOtherTypeCallback = o || this.otherTypeCallback, e = e || this.json, r = r || this.path, r && typeof r == "object" && !Array.isArray(r)) {
1008
1008
  if (!r.path && r.path !== "")
1009
1009
  throw new TypeError('You must supply a "path" property when providing an object argument to JSONPath.evaluate().');
1010
1010
  if (!Object.hasOwn(r, "json"))
1011
1011
  throw new TypeError('You must supply a "json" property when providing an object argument to JSONPath.evaluate().');
1012
1012
  ({
1013
1013
  json: e
1014
- } = r), c = Object.hasOwn(r, "flatten") ? r.flatten : c, this.currResultType = Object.hasOwn(r, "resultType") ? r.resultType : this.currResultType, this.currSandbox = Object.hasOwn(r, "sandbox") ? r.sandbox : this.currSandbox, d = Object.hasOwn(r, "wrap") ? r.wrap : d, this.currEval = Object.hasOwn(r, "eval") ? r.eval : this.currEval, t = Object.hasOwn(r, "callback") ? r.callback : t, this.currOtherTypeCallback = Object.hasOwn(r, "otherTypeCallback") ? r.otherTypeCallback : this.currOtherTypeCallback, n = Object.hasOwn(r, "parent") ? r.parent : n, a = Object.hasOwn(r, "parentProperty") ? r.parentProperty : a, r = r.path;
1014
+ } = r), l = Object.hasOwn(r, "flatten") ? r.flatten : l, this.currResultType = Object.hasOwn(r, "resultType") ? r.resultType : this.currResultType, this.currSandbox = Object.hasOwn(r, "sandbox") ? r.sandbox : this.currSandbox, f = Object.hasOwn(r, "wrap") ? r.wrap : f, this.currEval = Object.hasOwn(r, "eval") ? r.eval : this.currEval, t = Object.hasOwn(r, "callback") ? r.callback : t, this.currOtherTypeCallback = Object.hasOwn(r, "otherTypeCallback") ? r.otherTypeCallback : this.currOtherTypeCallback, n = Object.hasOwn(r, "parent") ? r.parent : n, a = Object.hasOwn(r, "parentProperty") ? r.parentProperty : a, r = r.path;
1015
1015
  }
1016
1016
  if (n = n || null, a = a || null, Array.isArray(r) && (r = x.toPathString(r)), !r && r !== "" || !e)
1017
1017
  return;
1018
- const u = x.toPathArray(r);
1019
- u[0] === "$" && u.length > 1 && u.shift(), this._hasParentSelector = null;
1020
- const h = this._trace(u, e, ["$"], n, a, t).filter(function(b) {
1021
- return b && !b.isParentSelector;
1018
+ const d = x.toPathArray(r);
1019
+ d[0] === "$" && d.length > 1 && d.shift(), this._hasParentSelector = null;
1020
+ const h = this._trace(d, e, ["$"], n, a, t).filter(function(m) {
1021
+ return m && !m.isParentSelector;
1022
1022
  });
1023
- return h.length ? !d && h.length === 1 && !h[0].hasArrExpr ? this._getPreferredOutput(h[0]) : h.reduce((b, m) => {
1024
- const C = this._getPreferredOutput(m);
1025
- return c && Array.isArray(C) ? b = b.concat(C) : b.push(C), b;
1026
- }, []) : d ? [] : void 0;
1023
+ return h.length ? !f && h.length === 1 && !h[0].hasArrExpr ? this._getPreferredOutput(h[0]) : h.reduce((m, p) => {
1024
+ const k = this._getPreferredOutput(p);
1025
+ return l && Array.isArray(k) ? m = m.concat(k) : m.push(k), m;
1026
+ }, []) : f ? [] : void 0;
1027
1027
  };
1028
1028
  x.prototype._getPreferredOutput = function(r) {
1029
1029
  const e = this.currResultType;
@@ -1046,203 +1046,203 @@ x.prototype._getPreferredOutput = function(r) {
1046
1046
  };
1047
1047
  x.prototype._handleCallback = function(r, e, t) {
1048
1048
  if (e) {
1049
- const s = this._getPreferredOutput(r);
1050
- r.path = typeof r.path == "string" ? r.path : x.toPathString(r.path), e(s, t, r);
1049
+ const o = this._getPreferredOutput(r);
1050
+ r.path = typeof r.path == "string" ? r.path : x.toPathString(r.path), e(o, t, r);
1051
1051
  }
1052
1052
  };
1053
- x.prototype._trace = function(r, e, t, s, n, a, c, d) {
1054
- let u;
1053
+ x.prototype._trace = function(r, e, t, o, n, a, l, f) {
1054
+ let d;
1055
1055
  if (!r.length)
1056
- return u = {
1056
+ return d = {
1057
1057
  path: t,
1058
1058
  value: e,
1059
- parent: s,
1059
+ parent: o,
1060
1060
  parentProperty: n,
1061
- hasArrExpr: c
1062
- }, this._handleCallback(u, a, "value"), u;
1063
- const h = r[0], b = r.slice(1), m = [];
1064
- function C(E) {
1065
- Array.isArray(E) ? E.forEach((S) => {
1066
- m.push(S);
1067
- }) : m.push(E);
1068
- }
1069
- if ((typeof h != "string" || d) && e && Object.hasOwn(e, h))
1070
- C(this._trace(b, e[h], F(t, h), e, h, a, c));
1061
+ hasArrExpr: l
1062
+ }, this._handleCallback(d, a, "value"), d;
1063
+ const h = r[0], m = r.slice(1), p = [];
1064
+ function k(g) {
1065
+ Array.isArray(g) ? g.forEach((S) => {
1066
+ p.push(S);
1067
+ }) : p.push(g);
1068
+ }
1069
+ if ((typeof h != "string" || f) && e && Object.hasOwn(e, h))
1070
+ k(this._trace(m, e[h], M(t, h), e, h, a, l));
1071
1071
  else if (h === "*")
1072
- this._walk(e, (E) => {
1073
- C(this._trace(b, e[E], F(t, E), e, E, a, !0, !0));
1072
+ this._walk(e, (g) => {
1073
+ k(this._trace(m, e[g], M(t, g), e, g, a, !0, !0));
1074
1074
  });
1075
1075
  else if (h === "..")
1076
- C(this._trace(b, e, t, s, n, a, c)), this._walk(e, (E) => {
1077
- typeof e[E] == "object" && C(this._trace(r.slice(), e[E], F(t, E), e, E, a, !0));
1076
+ k(this._trace(m, e, t, o, n, a, l)), this._walk(e, (g) => {
1077
+ typeof e[g] == "object" && k(this._trace(r.slice(), e[g], M(t, g), e, g, a, !0));
1078
1078
  });
1079
1079
  else {
1080
1080
  if (h === "^")
1081
1081
  return this._hasParentSelector = !0, {
1082
1082
  path: t.slice(0, -1),
1083
- expr: b,
1083
+ expr: m,
1084
1084
  isParentSelector: !0
1085
1085
  };
1086
1086
  if (h === "~")
1087
- return u = {
1088
- path: F(t, h),
1087
+ return d = {
1088
+ path: M(t, h),
1089
1089
  value: n,
1090
- parent: s,
1090
+ parent: o,
1091
1091
  parentProperty: null
1092
- }, this._handleCallback(u, a, "property"), u;
1092
+ }, this._handleCallback(d, a, "property"), d;
1093
1093
  if (h === "$")
1094
- C(this._trace(b, e, t, null, null, a, c));
1094
+ k(this._trace(m, e, t, null, null, a, l));
1095
1095
  else if (/^(-?\d*):(-?\d*):?(\d*)$/u.test(h))
1096
- C(this._slice(h, b, e, t, s, n, a));
1096
+ k(this._slice(h, m, e, t, o, n, a));
1097
1097
  else if (h.indexOf("?(") === 0) {
1098
1098
  if (this.currEval === !1)
1099
1099
  throw new Error("Eval [?(expr)] prevented in JSONPath expression.");
1100
- const E = h.replace(/^\?\((.*?)\)$/u, "$1"), S = /@.?([^?]*)[['](\??\(.*?\))(?!.\)\])[\]']/gu.exec(E);
1101
- S ? this._walk(e, (A) => {
1102
- const T = [S[2]], $ = S[1] ? e[A][S[1]] : e[A];
1103
- this._trace(T, $, t, s, n, a, !0).length > 0 && C(this._trace(b, e[A], F(t, A), e, A, a, !0));
1104
- }) : this._walk(e, (A) => {
1105
- this._eval(E, e[A], A, t, s, n) && C(this._trace(b, e[A], F(t, A), e, A, a, !0));
1100
+ const g = h.replace(/^\?\((.*?)\)$/u, "$1"), S = /@.?([^?]*)[['](\??\(.*?\))(?!.\)\])[\]']/gu.exec(g);
1101
+ S ? this._walk(e, (C) => {
1102
+ const U = [S[2]], D = S[1] ? e[C][S[1]] : e[C];
1103
+ this._trace(U, D, t, o, n, a, !0).length > 0 && k(this._trace(m, e[C], M(t, C), e, C, a, !0));
1104
+ }) : this._walk(e, (C) => {
1105
+ this._eval(g, e[C], C, t, o, n) && k(this._trace(m, e[C], M(t, C), e, C, a, !0));
1106
1106
  });
1107
1107
  } else if (h[0] === "(") {
1108
1108
  if (this.currEval === !1)
1109
1109
  throw new Error("Eval [(expr)] prevented in JSONPath expression.");
1110
- C(this._trace(se(this._eval(h, e, t.at(-1), t.slice(0, -1), s, n), b), e, t, s, n, a, c));
1110
+ k(this._trace(se(this._eval(h, e, t.at(-1), t.slice(0, -1), o, n), m), e, t, o, n, a, l));
1111
1111
  } else if (h[0] === "@") {
1112
- let E = !1;
1112
+ let g = !1;
1113
1113
  const S = h.slice(1, -2);
1114
1114
  switch (S) {
1115
1115
  case "scalar":
1116
- (!e || !["object", "function"].includes(typeof e)) && (E = !0);
1116
+ (!e || !["object", "function"].includes(typeof e)) && (g = !0);
1117
1117
  break;
1118
1118
  case "boolean":
1119
1119
  case "string":
1120
1120
  case "undefined":
1121
1121
  case "function":
1122
- typeof e === S && (E = !0);
1122
+ typeof e === S && (g = !0);
1123
1123
  break;
1124
1124
  case "integer":
1125
- Number.isFinite(e) && !(e % 1) && (E = !0);
1125
+ Number.isFinite(e) && !(e % 1) && (g = !0);
1126
1126
  break;
1127
1127
  case "number":
1128
- Number.isFinite(e) && (E = !0);
1128
+ Number.isFinite(e) && (g = !0);
1129
1129
  break;
1130
1130
  case "nonFinite":
1131
- typeof e == "number" && !Number.isFinite(e) && (E = !0);
1131
+ typeof e == "number" && !Number.isFinite(e) && (g = !0);
1132
1132
  break;
1133
1133
  case "object":
1134
- e && typeof e === S && (E = !0);
1134
+ e && typeof e === S && (g = !0);
1135
1135
  break;
1136
1136
  case "array":
1137
- Array.isArray(e) && (E = !0);
1137
+ Array.isArray(e) && (g = !0);
1138
1138
  break;
1139
1139
  case "other":
1140
- E = this.currOtherTypeCallback(e, t, s, n);
1140
+ g = this.currOtherTypeCallback(e, t, o, n);
1141
1141
  break;
1142
1142
  case "null":
1143
- e === null && (E = !0);
1143
+ e === null && (g = !0);
1144
1144
  break;
1145
1145
  /* c8 ignore next 2 */
1146
1146
  default:
1147
1147
  throw new TypeError("Unknown value type " + S);
1148
1148
  }
1149
- if (E)
1150
- return u = {
1149
+ if (g)
1150
+ return d = {
1151
1151
  path: t,
1152
1152
  value: e,
1153
- parent: s,
1153
+ parent: o,
1154
1154
  parentProperty: n
1155
- }, this._handleCallback(u, a, "value"), u;
1155
+ }, this._handleCallback(d, a, "value"), d;
1156
1156
  } else if (h[0] === "`" && e && Object.hasOwn(e, h.slice(1))) {
1157
- const E = h.slice(1);
1158
- C(this._trace(b, e[E], F(t, E), e, E, a, c, !0));
1157
+ const g = h.slice(1);
1158
+ k(this._trace(m, e[g], M(t, g), e, g, a, l, !0));
1159
1159
  } else if (h.includes(",")) {
1160
- const E = h.split(",");
1161
- for (const S of E)
1162
- C(this._trace(se(S, b), e, t, s, n, a, !0));
1163
- } else !d && e && Object.hasOwn(e, h) && C(this._trace(b, e[h], F(t, h), e, h, a, c, !0));
1160
+ const g = h.split(",");
1161
+ for (const S of g)
1162
+ k(this._trace(se(S, m), e, t, o, n, a, !0));
1163
+ } else !f && e && Object.hasOwn(e, h) && k(this._trace(m, e[h], M(t, h), e, h, a, l, !0));
1164
1164
  }
1165
1165
  if (this._hasParentSelector)
1166
- for (let E = 0; E < m.length; E++) {
1167
- const S = m[E];
1166
+ for (let g = 0; g < p.length; g++) {
1167
+ const S = p[g];
1168
1168
  if (S && S.isParentSelector) {
1169
- const A = this._trace(S.expr, e, S.path, s, n, a, c);
1170
- if (Array.isArray(A)) {
1171
- m[E] = A[0];
1172
- const T = A.length;
1173
- for (let $ = 1; $ < T; $++)
1174
- E++, m.splice(E, 0, A[$]);
1169
+ const C = this._trace(S.expr, e, S.path, o, n, a, l);
1170
+ if (Array.isArray(C)) {
1171
+ p[g] = C[0];
1172
+ const U = C.length;
1173
+ for (let D = 1; D < U; D++)
1174
+ g++, p.splice(g, 0, C[D]);
1175
1175
  } else
1176
- m[E] = A;
1176
+ p[g] = C;
1177
1177
  }
1178
1178
  }
1179
- return m;
1179
+ return p;
1180
1180
  };
1181
1181
  x.prototype._walk = function(r, e) {
1182
1182
  if (Array.isArray(r)) {
1183
1183
  const t = r.length;
1184
- for (let s = 0; s < t; s++)
1185
- e(s);
1184
+ for (let o = 0; o < t; o++)
1185
+ e(o);
1186
1186
  } else r && typeof r == "object" && Object.keys(r).forEach((t) => {
1187
1187
  e(t);
1188
1188
  });
1189
1189
  };
1190
- x.prototype._slice = function(r, e, t, s, n, a, c) {
1190
+ x.prototype._slice = function(r, e, t, o, n, a, l) {
1191
1191
  if (!Array.isArray(t))
1192
1192
  return;
1193
- const d = t.length, u = r.split(":"), h = u[2] && Number.parseInt(u[2]) || 1;
1194
- let b = u[0] && Number.parseInt(u[0]) || 0, m = u[1] && Number.parseInt(u[1]) || d;
1195
- b = b < 0 ? Math.max(0, b + d) : Math.min(d, b), m = m < 0 ? Math.max(0, m + d) : Math.min(d, m);
1196
- const C = [];
1197
- for (let E = b; E < m; E += h)
1198
- this._trace(se(E, e), t, s, n, a, c, !0).forEach((A) => {
1199
- C.push(A);
1193
+ const f = t.length, d = r.split(":"), h = d[2] && Number.parseInt(d[2]) || 1;
1194
+ let m = d[0] && Number.parseInt(d[0]) || 0, p = d[1] && Number.parseInt(d[1]) || f;
1195
+ m = m < 0 ? Math.max(0, m + f) : Math.min(f, m), p = p < 0 ? Math.max(0, p + f) : Math.min(f, p);
1196
+ const k = [];
1197
+ for (let g = m; g < p; g += h)
1198
+ this._trace(se(g, e), t, o, n, a, l, !0).forEach((C) => {
1199
+ k.push(C);
1200
1200
  });
1201
- return C;
1201
+ return k;
1202
1202
  };
1203
- x.prototype._eval = function(r, e, t, s, n, a) {
1203
+ x.prototype._eval = function(r, e, t, o, n, a) {
1204
1204
  this.currSandbox._$_parentProperty = a, this.currSandbox._$_parent = n, this.currSandbox._$_property = t, this.currSandbox._$_root = this.json, this.currSandbox._$_v = e;
1205
- const c = r.includes("@path");
1206
- c && (this.currSandbox._$_path = x.toPathString(s.concat([t])));
1207
- const d = this.currEval + "Script:" + r;
1208
- if (!x.cache[d]) {
1209
- let u = r.replaceAll("@parentProperty", "_$_parentProperty").replaceAll("@parent", "_$_parent").replaceAll("@property", "_$_property").replaceAll("@root", "_$_root").replaceAll(/@([.\s)[])/gu, "_$_v$1");
1210
- if (c && (u = u.replaceAll("@path", "_$_path")), this.currEval === "safe" || this.currEval === !0 || this.currEval === void 0)
1211
- x.cache[d] = new this.safeVm.Script(u);
1205
+ const l = r.includes("@path");
1206
+ l && (this.currSandbox._$_path = x.toPathString(o.concat([t])));
1207
+ const f = this.currEval + "Script:" + r;
1208
+ if (!x.cache[f]) {
1209
+ let d = r.replaceAll("@parentProperty", "_$_parentProperty").replaceAll("@parent", "_$_parent").replaceAll("@property", "_$_property").replaceAll("@root", "_$_root").replaceAll(/@([.\s)[])/gu, "_$_v$1");
1210
+ if (l && (d = d.replaceAll("@path", "_$_path")), this.currEval === "safe" || this.currEval === !0 || this.currEval === void 0)
1211
+ x.cache[f] = new this.safeVm.Script(d);
1212
1212
  else if (this.currEval === "native")
1213
- x.cache[d] = new this.vm.Script(u);
1213
+ x.cache[f] = new this.vm.Script(d);
1214
1214
  else if (typeof this.currEval == "function" && this.currEval.prototype && Object.hasOwn(this.currEval.prototype, "runInNewContext")) {
1215
1215
  const h = this.currEval;
1216
- x.cache[d] = new h(u);
1216
+ x.cache[f] = new h(d);
1217
1217
  } else if (typeof this.currEval == "function")
1218
- x.cache[d] = {
1219
- runInNewContext: (h) => this.currEval(u, h)
1218
+ x.cache[f] = {
1219
+ runInNewContext: (h) => this.currEval(d, h)
1220
1220
  };
1221
1221
  else
1222
1222
  throw new TypeError(`Unknown "eval" property "${this.currEval}"`);
1223
1223
  }
1224
1224
  try {
1225
- return x.cache[d].runInNewContext(this.currSandbox);
1226
- } catch (u) {
1225
+ return x.cache[f].runInNewContext(this.currSandbox);
1226
+ } catch (d) {
1227
1227
  if (this.ignoreEvalErrors)
1228
1228
  return !1;
1229
- throw new Error("jsonPath: " + u.message + ": " + r);
1229
+ throw new Error("jsonPath: " + d.message + ": " + r);
1230
1230
  }
1231
1231
  };
1232
1232
  x.cache = {};
1233
1233
  x.toPathString = function(r) {
1234
1234
  const e = r, t = e.length;
1235
- let s = "$";
1235
+ let o = "$";
1236
1236
  for (let n = 1; n < t; n++)
1237
- /^(~|\^|@.*?\(\))$/u.test(e[n]) || (s += /^[0-9*]+$/u.test(e[n]) ? "[" + e[n] + "]" : "['" + e[n] + "']");
1238
- return s;
1237
+ /^(~|\^|@.*?\(\))$/u.test(e[n]) || (o += /^[0-9*]+$/u.test(e[n]) ? "[" + e[n] + "]" : "['" + e[n] + "']");
1238
+ return o;
1239
1239
  };
1240
1240
  x.toPointer = function(r) {
1241
1241
  const e = r, t = e.length;
1242
- let s = "";
1242
+ let o = "";
1243
1243
  for (let n = 1; n < t; n++)
1244
- /^(~|\^|@.*?\(\))$/u.test(e[n]) || (s += "/" + e[n].toString().replaceAll("~", "~0").replaceAll("/", "~1"));
1245
- return s;
1244
+ /^(~|\^|@.*?\(\))$/u.test(e[n]) || (o += "/" + e[n].toString().replaceAll("~", "~0").replaceAll("/", "~1"));
1245
+ return o;
1246
1246
  };
1247
1247
  x.toPathArray = function(r) {
1248
1248
  const {
@@ -1250,29 +1250,29 @@ x.toPathArray = function(r) {
1250
1250
  } = x;
1251
1251
  if (e[r])
1252
1252
  return e[r].concat();
1253
- const t = [], n = r.replaceAll(/@(?:null|boolean|number|string|integer|undefined|nonFinite|scalar|array|object|function|other)\(\)/gu, ";$&;").replaceAll(/[['](\??\(.*?\))[\]'](?!.\])/gu, function(a, c) {
1254
- return "[#" + (t.push(c) - 1) + "]";
1255
- }).replaceAll(/\[['"]([^'\]]*)['"]\]/gu, function(a, c) {
1256
- return "['" + c.replaceAll(".", "%@%").replaceAll("~", "%%@@%%") + "']";
1257
- }).replaceAll("~", ";~;").replaceAll(/['"]?\.['"]?(?![^[]*\])|\[['"]?/gu, ";").replaceAll("%@%", ".").replaceAll("%%@@%%", "~").replaceAll(/(?:;)?(\^+)(?:;)?/gu, function(a, c) {
1258
- return ";" + c.split("").join(";") + ";";
1253
+ const t = [], n = r.replaceAll(/@(?:null|boolean|number|string|integer|undefined|nonFinite|scalar|array|object|function|other)\(\)/gu, ";$&;").replaceAll(/[['](\??\(.*?\))[\]'](?!.\])/gu, function(a, l) {
1254
+ return "[#" + (t.push(l) - 1) + "]";
1255
+ }).replaceAll(/\[['"]([^'\]]*)['"]\]/gu, function(a, l) {
1256
+ return "['" + l.replaceAll(".", "%@%").replaceAll("~", "%%@@%%") + "']";
1257
+ }).replaceAll("~", ";~;").replaceAll(/['"]?\.['"]?(?![^[]*\])|\[['"]?/gu, ";").replaceAll("%@%", ".").replaceAll("%%@@%%", "~").replaceAll(/(?:;)?(\^+)(?:;)?/gu, function(a, l) {
1258
+ return ";" + l.split("").join(";") + ";";
1259
1259
  }).replaceAll(/;;;|;;/gu, ";..;").replaceAll(/;$|'?\]|'$/gu, "").split(";").map(function(a) {
1260
- const c = a.match(/#(\d+)/u);
1261
- return !c || !c[1] ? a : t[c[1]];
1260
+ const l = a.match(/#(\d+)/u);
1261
+ return !l || !l[1] ? a : t[l[1]];
1262
1262
  });
1263
1263
  return e[r] = n, e[r].concat();
1264
1264
  };
1265
1265
  x.prototype.safeVm = {
1266
- Script: we
1266
+ Script: Se
1267
1267
  };
1268
- const Se = function(r, e, t) {
1269
- const s = r.length;
1270
- for (let n = 0; n < s; n++) {
1268
+ const Ne = function(r, e, t) {
1269
+ const o = r.length;
1270
+ for (let n = 0; n < o; n++) {
1271
1271
  const a = r[n];
1272
1272
  t(a) && e.push(r.splice(n--, 1)[0]);
1273
1273
  }
1274
1274
  };
1275
- class Pe {
1275
+ class Te {
1276
1276
  /**
1277
1277
  * @param {string} expr Expression to evaluate
1278
1278
  */
@@ -1286,48 +1286,48 @@ class Pe {
1286
1286
  */
1287
1287
  runInNewContext(e) {
1288
1288
  let t = this.code;
1289
- const s = Object.keys(e), n = [];
1290
- Se(s, n, (h) => typeof e[h] == "function");
1291
- const a = s.map((h) => e[h]);
1292
- t = n.reduce((h, b) => {
1293
- let m = e[b].toString();
1294
- return /function/u.test(m) || (m = "function " + m), "var " + b + "=" + m + ";" + h;
1295
- }, "") + t, !/(['"])use strict\1/u.test(t) && !s.includes("arguments") && (t = "var arguments = undefined;" + t), t = t.replace(/;\s*$/u, "");
1296
- const d = t.lastIndexOf(";"), u = d !== -1 ? t.slice(0, d + 1) + " return " + t.slice(d + 1) : " return " + t;
1297
- return new Function(...s, u)(...a);
1289
+ const o = Object.keys(e), n = [];
1290
+ Ne(o, n, (h) => typeof e[h] == "function");
1291
+ const a = o.map((h) => e[h]);
1292
+ t = n.reduce((h, m) => {
1293
+ let p = e[m].toString();
1294
+ return /function/u.test(p) || (p = "function " + p), "var " + m + "=" + p + ";" + h;
1295
+ }, "") + t, !/(['"])use strict\1/u.test(t) && !o.includes("arguments") && (t = "var arguments = undefined;" + t), t = t.replace(/;\s*$/u, "");
1296
+ const f = t.lastIndexOf(";"), d = f !== -1 ? t.slice(0, f + 1) + " return " + t.slice(f + 1) : " return " + t;
1297
+ return new Function(...o, d)(...a);
1298
1298
  }
1299
1299
  }
1300
1300
  x.prototype.vm = {
1301
- Script: Pe
1301
+ Script: Te
1302
1302
  };
1303
- const Ne = { class: "json-node" }, De = {
1303
+ const Be = { class: "json-node" }, De = {
1304
1304
  key: 0,
1305
1305
  class: "json-node__container"
1306
1306
  }, je = { class: "json-node__line" }, Ie = {
1307
1307
  key: 2,
1308
1308
  class: "json-node__colon"
1309
- }, $e = ["title"], Te = {
1309
+ }, $e = ["title"], Re = {
1310
1310
  key: 3,
1311
1311
  class: "json-node__collapsed"
1312
- }, Re = {
1312
+ }, Le = {
1313
1313
  key: 4,
1314
1314
  class: "json-node__comma"
1315
1315
  }, Ue = {
1316
1316
  key: 0,
1317
1317
  class: "json-node__children"
1318
- }, Be = { class: "json-node__children-content" }, Le = { class: "json-node__line json-node__closing-bracket" }, Me = { class: "json-node__bracket" }, Fe = {
1318
+ }, Me = { class: "json-node__children-content" }, Ve = { class: "json-node__line json-node__closing-bracket" }, Fe = { class: "json-node__bracket" }, He = {
1319
1319
  key: 0,
1320
1320
  class: "json-node__comma"
1321
- }, Ve = {
1321
+ }, Ke = {
1322
1322
  key: 1,
1323
1323
  class: "json-node__primitive"
1324
- }, Ke = {
1324
+ }, Xe = {
1325
1325
  key: 2,
1326
1326
  class: "json-node__colon"
1327
- }, Xe = ["title"], He = {
1327
+ }, Ge = ["title"], Qe = {
1328
1328
  key: 0,
1329
1329
  class: "json-node__comma"
1330
- }, Qe = /* @__PURE__ */ ae({
1330
+ }, Ye = /* @__PURE__ */ le({
1331
1331
  name: "JsonNode",
1332
1332
  __name: "JsonNode",
1333
1333
  props: {
@@ -1336,232 +1336,429 @@ const Ne = { class: "json-node" }, De = {
1336
1336
  level: {},
1337
1337
  path: { default: "" },
1338
1338
  expanded: {},
1339
- isLast: { type: Boolean, default: !1 }
1339
+ isLast: { type: Boolean, default: !1 },
1340
+ theme: {}
1340
1341
  },
1341
1342
  emits: ["update:value", "toggle-expand", "copy", "update:key"],
1342
1343
  setup(r, { emit: e }) {
1343
- ue((f) => ({
1344
- "1f6d5aa6": f.level
1344
+ ce((u) => ({
1345
+ "9759b91a": u.level,
1346
+ "35265df4": u.theme.colors.syntaxKey,
1347
+ "86a60ffc": u.theme.colors.hoverBackground,
1348
+ d1dccc86: u.theme.colors.syntaxBracket,
1349
+ "8f163582": u.theme.colors.textSecondary,
1350
+ "2a47fc5c": u.theme.colors.syntaxString,
1351
+ "21cb7794": u.theme.colors.syntaxNumber,
1352
+ da874d86: u.theme.colors.syntaxBoolean,
1353
+ "6fa6f892": u.theme.colors.syntaxNull,
1354
+ "078e91b6": u.theme.colors.background,
1355
+ "73841b48": u.theme.colors.indentLine
1345
1356
  }));
1346
- const t = r, s = e, n = B(!1), a = B(!1), c = B(""), d = B(""), u = (f) => {
1347
- if (!/^-?\d+(\.\d+)?$/.test(f)) return !1;
1348
- const v = Number(f);
1349
- return !Number.isSafeInteger(v) || f.length > 15;
1350
- }, h = j(() => t.value !== null && typeof t.value == "object"), b = j(() => Array.isArray(t.value)), m = j(() => t.path ? t.path : t.keyName ? t.keyName : "root"), C = j(() => t.expanded.has(m.value)), E = j(() => t.keyName), S = j(() => b.value ? "[" : "{"), A = j(() => b.value ? "]" : "}"), T = j(() => {
1357
+ const t = r, o = e, n = R(!1), a = R(!1), l = R(""), f = R(""), d = (u) => {
1358
+ if (!/^-?\d+(\.\d+)?$/.test(u)) return !1;
1359
+ const v = Number(u);
1360
+ return !Number.isSafeInteger(v) || u.length > 15;
1361
+ }, h = T(() => t.value !== null && typeof t.value == "object"), m = T(() => Array.isArray(t.value)), p = T(() => t.path ? t.path : t.keyName ? t.keyName : "root"), k = T(() => t.expanded.has(p.value)), g = T(() => t.keyName), S = T(() => m.value ? "[" : "{"), C = T(() => m.value ? "]" : "}"), U = T(() => {
1351
1362
  if (!t.value) return "";
1352
1363
  const v = Object.keys(t.value).length;
1353
- return b.value ? v > 0 ? ` ${v} items ` : " " : v > 0 ? ` ${v} keys ` : " ";
1354
- }), $ = j(() => {
1355
- const f = typeof t.value;
1356
- return t.value === null ? "json-node__value--null" : f === "boolean" ? "json-node__value--boolean" : f === "number" ? "json-node__value--number" : f === "string" ? u(t.value) ? "json-node__value--number" : "json-node__value--string" : "";
1357
- }), q = j(() => a.value ? d.value : t.value === null ? "null" : typeof t.value == "boolean" || typeof t.value == "number" ? String(t.value) : typeof t.value == "string" ? u(t.value) ? t.value : `"${t.value}"` : String(t.value)), G = j(() => "Click to edit, double-click to copy"), K = (f) => t.level === 0 ? f : m.value ? `${m.value}.${f}` : f, z = (f) => {
1364
+ return m.value ? v > 0 ? ` ${v} items ` : " " : v > 0 ? ` ${v} keys ` : " ";
1365
+ }), D = T(() => {
1366
+ const u = typeof t.value;
1367
+ return t.value === null ? "json-node__value--null" : u === "boolean" ? "json-node__value--boolean" : u === "number" ? "json-node__value--number" : u === "string" ? d(t.value) ? "json-node__value--number" : "json-node__value--string" : "";
1368
+ }), Q = T(() => a.value ? f.value : t.value === null ? "null" : typeof t.value == "boolean" || typeof t.value == "number" ? String(t.value) : typeof t.value == "string" ? d(t.value) ? t.value : `"${t.value}"` : String(t.value)), te = T(() => "Click to edit, double-click to copy"), Z = (u) => t.level === 0 ? u : p.value ? `${p.value}.${u}` : u, F = (u) => {
1358
1369
  const v = Object.keys(t.value);
1359
- return v.indexOf(f) === v.length - 1;
1360
- }, Q = () => {
1361
- s("toggle-expand", m.value);
1370
+ return v.indexOf(u) === v.length - 1;
1362
1371
  }, Y = () => {
1363
- t.level !== 0 && (n.value = !0, c.value = t.keyName, ee(() => {
1364
- const f = document.querySelectorAll(".json-node__key-input"), v = f[f.length - 1];
1372
+ o("toggle-expand", p.value);
1373
+ }, q = () => {
1374
+ t.level !== 0 && (n.value = !0, l.value = t.keyName, ee(() => {
1375
+ const u = document.querySelectorAll(".json-node__key-input"), v = u[u.length - 1];
1365
1376
  v && (v.focus(), v.select());
1366
1377
  }));
1367
- }, W = () => {
1368
- h.value || (a.value = !0, typeof t.value == "string" && u(t.value) || typeof t.value == "string" ? d.value = t.value : d.value = String(t.value), ee(() => {
1369
- const f = document.querySelectorAll(".json-node__value-input"), v = f[f.length - 1];
1378
+ }, J = () => {
1379
+ h.value || (a.value = !0, typeof t.value == "string" && d(t.value) || typeof t.value == "string" ? f.value = t.value : f.value = String(t.value), ee(() => {
1380
+ const u = document.querySelectorAll(".json-node__value-input"), v = u[u.length - 1];
1370
1381
  v && (v.focus(), v.select());
1371
1382
  }));
1372
1383
  }, V = () => {
1373
1384
  if (t.level === 0 || !n.value) return;
1374
- const f = c.value.trim();
1375
- if (!f) {
1376
- M();
1385
+ const u = l.value.trim();
1386
+ if (!u) {
1387
+ W();
1377
1388
  return;
1378
1389
  }
1379
- if (f === t.keyName) {
1390
+ if (u === t.keyName) {
1380
1391
  n.value = !1;
1381
1392
  return;
1382
1393
  }
1383
- n.value = !1, s("update:key", m.value, f);
1384
- }, Z = () => {
1394
+ n.value = !1, o("update:key", p.value, u);
1395
+ }, z = () => {
1385
1396
  try {
1386
- let f;
1387
- const v = d.value.trim();
1397
+ let u;
1398
+ const v = f.value.trim();
1388
1399
  if (v === "null")
1389
- f = null;
1400
+ u = null;
1390
1401
  else if (v === "true" || v === "false")
1391
- f = v === "true";
1402
+ u = v === "true";
1392
1403
  else if (!isNaN(Number(v)) && v !== "") {
1393
- const o = Number(v);
1394
- !Number.isSafeInteger(o) || v.length > 15 ? f = v : f = o;
1404
+ const K = Number(v);
1405
+ !Number.isSafeInteger(K) || v.length > 15 ? u = v : u = K;
1395
1406
  } else
1396
- f = d.value;
1397
- s("update:value", m.value, f), a.value = !1;
1398
- } catch (f) {
1399
- console.error("Failed to parse value:", f), a.value = !1;
1407
+ u = f.value;
1408
+ o("update:value", p.value, u), a.value = !1;
1409
+ } catch (u) {
1410
+ console.error("Failed to parse value:", u), a.value = !1;
1400
1411
  }
1401
- }, M = () => {
1402
- n.value = !1, c.value = t.keyName;
1403
- }, J = () => {
1404
- a.value = !1, typeof t.value == "string" && u(t.value) || typeof t.value == "string" ? d.value = t.value : d.value = String(t.value);
1412
+ }, W = () => {
1413
+ n.value = !1, l.value = t.keyName;
1414
+ }, H = () => {
1415
+ a.value = !1, typeof t.value == "string" && d(t.value) || typeof t.value == "string" ? f.value = t.value : f.value = String(t.value);
1405
1416
  };
1406
- return (f, v) => {
1407
- const o = he("JsonNode", !0);
1408
- return k(), w("div", Ne, [
1409
- h.value ? (k(), w("div", De, [
1417
+ return (u, v) => {
1418
+ const K = pe("JsonNode", !0);
1419
+ return w(), A("div", Be, [
1420
+ h.value ? (w(), A("div", De, [
1410
1421
  P("div", je, [
1411
- f.keyName && !n.value ? (k(), w("span", {
1422
+ u.keyName && !n.value ? (w(), A("span", {
1412
1423
  key: 0,
1413
1424
  class: "json-node__key",
1414
- onClick: Y,
1425
+ onClick: q,
1415
1426
  title: "Click to edit key"
1416
- }, ' "' + U(E.value) + '" ', 1)) : N("", !0),
1417
- f.keyName && n.value ? te((k(), w("input", {
1427
+ }, ' "' + $(g.value) + '" ', 1)) : N("", !0),
1428
+ u.keyName && n.value ? re((w(), A("input", {
1418
1429
  key: 1,
1419
- "onUpdate:modelValue": v[0] || (v[0] = (l) => c.value = l),
1430
+ "onUpdate:modelValue": v[0] || (v[0] = (i) => l.value = i),
1420
1431
  onKeyup: [
1421
1432
  X(V, ["enter"]),
1422
- X(M, ["escape"])
1433
+ X(W, ["escape"])
1423
1434
  ],
1424
1435
  onBlur: V,
1425
1436
  class: "json-node__key-input"
1426
1437
  }, null, 544)), [
1427
- [re, c.value]
1438
+ [ne, l.value]
1428
1439
  ]) : N("", !0),
1429
- f.keyName ? (k(), w("span", Ie, ": ")) : N("", !0),
1440
+ u.keyName ? (w(), A("span", Ie, ": ")) : N("", !0),
1430
1441
  P("span", {
1431
1442
  class: "json-node__bracket json-node__bracket--clickable",
1432
- onClick: Q,
1433
- title: C.value ? "Click to collapse" : "Click to expand"
1434
- }, U(S.value), 9, $e),
1435
- C.value ? N("", !0) : (k(), w("span", Te, [
1436
- ie(U(T.value) + " ", 1),
1443
+ onClick: Y,
1444
+ title: k.value ? "Click to collapse" : "Click to expand"
1445
+ }, $(S.value), 9, $e),
1446
+ k.value ? N("", !0) : (w(), A("span", Re, [
1447
+ ie($(U.value) + " ", 1),
1437
1448
  P("span", {
1438
1449
  class: "json-node__bracket json-node__bracket--clickable",
1439
- onClick: Q
1440
- }, U(A.value), 1)
1450
+ onClick: Y
1451
+ }, $(C.value), 1)
1441
1452
  ])),
1442
- !C.value && !f.isLast ? (k(), w("span", Re, ",")) : N("", !0)
1453
+ !k.value && !u.isLast ? (w(), A("span", Le, ",")) : N("", !0)
1443
1454
  ]),
1444
- C.value ? (k(), w("div", Ue, [
1445
- P("div", Be, [
1446
- (k(!0), w(de, null, fe(f.value, (l, g) => (k(), w("div", {
1447
- key: g,
1455
+ k.value ? (w(), A("div", Ue, [
1456
+ P("div", Me, [
1457
+ (w(!0), A(ye, null, be(u.value, (i, c) => (w(), A("div", {
1458
+ key: c,
1448
1459
  class: "json-node__child"
1449
1460
  }, [
1450
- le(o, {
1451
- value: l,
1452
- "key-name": b.value ? "" : String(g),
1453
- level: f.level + 1,
1454
- path: K(String(g)),
1455
- expanded: f.expanded,
1456
- "onUpdate:value": v[1] || (v[1] = (p, y) => f.$emit("update:value", p, y)),
1457
- onToggleExpand: v[2] || (v[2] = (p) => f.$emit("toggle-expand", p)),
1458
- onCopy: v[3] || (v[3] = (p) => f.$emit("copy", p)),
1459
- "onUpdate:key": v[4] || (v[4] = (p, y) => f.$emit("update:key", p, y)),
1460
- "is-last": z(String(g))
1461
- }, null, 8, ["value", "key-name", "level", "path", "expanded", "is-last"])
1461
+ ue(K, {
1462
+ value: i,
1463
+ "key-name": m.value ? "" : String(c),
1464
+ level: u.level + 1,
1465
+ path: Z(String(c)),
1466
+ expanded: u.expanded,
1467
+ theme: u.theme,
1468
+ "onUpdate:value": v[1] || (v[1] = (y, b) => u.$emit("update:value", y, b)),
1469
+ onToggleExpand: v[2] || (v[2] = (y) => u.$emit("toggle-expand", y)),
1470
+ onCopy: v[3] || (v[3] = (y) => u.$emit("copy", y)),
1471
+ "onUpdate:key": v[4] || (v[4] = (y, b) => u.$emit("update:key", y, b)),
1472
+ "is-last": F(String(c))
1473
+ }, null, 8, ["value", "key-name", "level", "path", "expanded", "theme", "is-last"])
1462
1474
  ]))), 128))
1463
1475
  ]),
1464
- P("div", Le, [
1465
- P("span", Me, U(A.value), 1),
1466
- f.isLast ? N("", !0) : (k(), w("span", Fe, ","))
1476
+ P("div", Ve, [
1477
+ P("span", Fe, $(C.value), 1),
1478
+ u.isLast ? N("", !0) : (w(), A("span", He, ","))
1467
1479
  ])
1468
1480
  ])) : N("", !0)
1469
- ])) : (k(), w("div", Ve, [
1470
- f.keyName && !n.value ? (k(), w("span", {
1481
+ ])) : (w(), A("div", Ke, [
1482
+ u.keyName && !n.value ? (w(), A("span", {
1471
1483
  key: 0,
1472
1484
  class: "json-node__key",
1473
- onClick: Y,
1485
+ onClick: q,
1474
1486
  title: "Click to edit key"
1475
- }, ' "' + U(E.value) + '" ', 1)) : N("", !0),
1476
- f.keyName && n.value ? te((k(), w("input", {
1487
+ }, ' "' + $(g.value) + '" ', 1)) : N("", !0),
1488
+ u.keyName && n.value ? re((w(), A("input", {
1477
1489
  key: 1,
1478
- "onUpdate:modelValue": v[5] || (v[5] = (l) => c.value = l),
1490
+ "onUpdate:modelValue": v[5] || (v[5] = (i) => l.value = i),
1479
1491
  onKeyup: [
1480
1492
  X(V, ["enter"]),
1481
- X(M, ["escape"])
1493
+ X(W, ["escape"])
1482
1494
  ],
1483
1495
  onBlur: V,
1484
1496
  class: "json-node__key-input"
1485
1497
  }, null, 544)), [
1486
- [re, c.value]
1498
+ [ne, l.value]
1487
1499
  ]) : N("", !0),
1488
- f.keyName ? (k(), w("span", Ke, ": ")) : N("", !0),
1489
- a.value ? N("", !0) : (k(), w("span", {
1500
+ u.keyName ? (w(), A("span", Xe, ": ")) : N("", !0),
1501
+ a.value ? N("", !0) : (w(), A("span", {
1490
1502
  key: 3,
1491
- class: pe(["json-node__value", $.value]),
1492
- onClick: W,
1493
- onDblclick: v[6] || (v[6] = (l) => f.$emit("copy", f.value)),
1494
- title: G.value
1503
+ class: de(["json-node__value", D.value]),
1504
+ onClick: J,
1505
+ onDblclick: v[6] || (v[6] = (i) => u.$emit("copy", u.value)),
1506
+ title: te.value
1495
1507
  }, [
1496
- ie(U(q.value), 1),
1497
- f.isLast ? N("", !0) : (k(), w("span", He, ","))
1498
- ], 42, Xe)),
1499
- a.value ? te((k(), w("input", {
1508
+ ie($(Q.value), 1),
1509
+ u.isLast ? N("", !0) : (w(), A("span", Qe, ","))
1510
+ ], 42, Ge)),
1511
+ a.value ? re((w(), A("input", {
1500
1512
  key: 4,
1501
- "onUpdate:modelValue": v[7] || (v[7] = (l) => d.value = l),
1513
+ "onUpdate:modelValue": v[7] || (v[7] = (i) => f.value = i),
1502
1514
  onKeyup: [
1503
- X(Z, ["enter"]),
1504
- X(J, ["escape"])
1515
+ X(z, ["enter"]),
1516
+ X(H, ["escape"])
1505
1517
  ],
1506
- onBlur: Z,
1518
+ onBlur: z,
1507
1519
  class: "json-node__value-input"
1508
1520
  }, null, 544)), [
1509
- [re, d.value]
1521
+ [ne, f.value]
1510
1522
  ]) : N("", !0)
1511
1523
  ]))
1512
1524
  ]);
1513
1525
  };
1514
1526
  }
1515
- }), ce = (r, e) => {
1527
+ }), he = (r, e) => {
1516
1528
  const t = r.__vccOpts || r;
1517
- for (const [s, n] of e)
1518
- t[s] = n;
1529
+ for (const [o, n] of e)
1530
+ t[o] = n;
1519
1531
  return t;
1520
- }, Ye = /* @__PURE__ */ ce(Qe, [["__scopeId", "data-v-fdfd4b42"]]), qe = { class: "json-format" }, Ge = {
1532
+ }, qe = /* @__PURE__ */ he(Ye, [["__scopeId", "data-v-65598de1"]]), fe = {
1533
+ name: "github-light",
1534
+ colors: {
1535
+ // 背景色
1536
+ background: "#ffffff",
1537
+ surfaceBackground: "#f6f8fa",
1538
+ // 边框色
1539
+ border: "#d0d7de",
1540
+ // 文本色
1541
+ text: "#24292f",
1542
+ textSecondary: "#656d76",
1543
+ // 按钮样式
1544
+ buttonBackground: "#f6f8fa",
1545
+ buttonBackgroundHover: "#f3f4f6",
1546
+ buttonBorder: "#d0d7de",
1547
+ buttonText: "#24292f",
1548
+ buttonPrimary: "#2da44e",
1549
+ buttonPrimaryHover: "#2c974b",
1550
+ // 状态指示
1551
+ success: "#1a7f37",
1552
+ successBackground: "#dafbe1",
1553
+ error: "#cf222e",
1554
+ errorBackground: "#ffebe9",
1555
+ // JSON 语法高亮
1556
+ syntaxString: "#0a3069",
1557
+ syntaxNumber: "#0969da",
1558
+ syntaxBoolean: "#8250df",
1559
+ syntaxNull: "#656d76",
1560
+ syntaxKey: "#0969da",
1561
+ syntaxBracket: "#24292f",
1562
+ // 滚动条
1563
+ scrollbarTrack: "#f6f8fa",
1564
+ scrollbarThumb: "#d0d7de",
1565
+ scrollbarThumbHover: "#afb8c1",
1566
+ // 悬停效果
1567
+ hoverBackground: "#f6f8fa",
1568
+ // 缩进线
1569
+ indentLine: "#d0d7de"
1570
+ }
1571
+ }, ze = {
1572
+ name: "github-dark",
1573
+ colors: {
1574
+ // 背景色
1575
+ background: "#0d1117",
1576
+ surfaceBackground: "#161b22",
1577
+ // 边框色
1578
+ border: "#30363d",
1579
+ // 文本色
1580
+ text: "#e6edf3",
1581
+ textSecondary: "#7d8590",
1582
+ // 按钮样式
1583
+ buttonBackground: "#21262d",
1584
+ buttonBackgroundHover: "#30363d",
1585
+ buttonBorder: "#30363d",
1586
+ buttonText: "#e6edf3",
1587
+ buttonPrimary: "#238636",
1588
+ buttonPrimaryHover: "#2ea043",
1589
+ // 状态指示
1590
+ success: "#3fb950",
1591
+ successBackground: "#0f2419",
1592
+ error: "#f85149",
1593
+ errorBackground: "#381921",
1594
+ // JSON 语法高亮
1595
+ syntaxString: "#a5d6ff",
1596
+ syntaxNumber: "#79c0ff",
1597
+ syntaxBoolean: "#d2a8ff",
1598
+ syntaxNull: "#7d8590",
1599
+ syntaxKey: "#79c0ff",
1600
+ syntaxBracket: "#e6edf3",
1601
+ // 滚动条
1602
+ scrollbarTrack: "#161b22",
1603
+ scrollbarThumb: "#30363d",
1604
+ scrollbarThumbHover: "#6e7681",
1605
+ // 悬停效果
1606
+ hoverBackground: "#161b22",
1607
+ // 缩进线
1608
+ indentLine: "#30363d"
1609
+ }
1610
+ }, We = {
1611
+ name: "min-light",
1612
+ colors: {
1613
+ // 背景色 - 纯白简洁
1614
+ background: "#ffffff",
1615
+ surfaceBackground: "#fafafa",
1616
+ // 边框色 - 极浅灰
1617
+ border: "#e5e5e5",
1618
+ // 文本色 - 深灰而非纯黑
1619
+ text: "#333333",
1620
+ textSecondary: "#888888",
1621
+ // 按钮样式 - 简约设计
1622
+ buttonBackground: "#f8f8f8",
1623
+ buttonBackgroundHover: "#eeeeee",
1624
+ buttonBorder: "#e0e0e0",
1625
+ buttonText: "#333333",
1626
+ buttonPrimary: "#007acc",
1627
+ buttonPrimaryHover: "#005a9e",
1628
+ // 状态指示 - 柔和色彩
1629
+ success: "#22c55e",
1630
+ successBackground: "#f0fdf4",
1631
+ error: "#ef4444",
1632
+ errorBackground: "#fef2f2",
1633
+ // JSON 语法高亮 - 简约配色
1634
+ syntaxString: "#22c55e",
1635
+ syntaxNumber: "#3b82f6",
1636
+ syntaxBoolean: "#8b5cf6",
1637
+ syntaxNull: "#6b7280",
1638
+ syntaxKey: "#1f2937",
1639
+ syntaxBracket: "#374151",
1640
+ // 滚动条 - 极简
1641
+ scrollbarTrack: "#f5f5f5",
1642
+ scrollbarThumb: "#d1d5db",
1643
+ scrollbarThumbHover: "#9ca3af",
1644
+ // 悬停效果
1645
+ hoverBackground: "#f9f9f9",
1646
+ // 缩进线
1647
+ indentLine: "#e5e7eb"
1648
+ }
1649
+ }, Ze = {
1650
+ name: "slack-ochin",
1651
+ colors: {
1652
+ // 背景色 - 温暖的米色调
1653
+ background: "#fefbf6",
1654
+ surfaceBackground: "#faf6f0",
1655
+ // 边框色 - 暖橙色调
1656
+ border: "#e8d5b7",
1657
+ // 文本色 - 深棕色
1658
+ text: "#4a3b2a",
1659
+ textSecondary: "#8b7355",
1660
+ // 按钮样式 - Slack 风格橙色
1661
+ buttonBackground: "#f4ede4",
1662
+ buttonBackgroundHover: "#efe5d8",
1663
+ buttonBorder: "#e8d5b7",
1664
+ buttonText: "#4a3b2a",
1665
+ buttonPrimary: "#ff6b35",
1666
+ buttonPrimaryHover: "#e55a2b",
1667
+ // 状态指示 - 暖色调
1668
+ success: "#ff9500",
1669
+ successBackground: "#fff8f0",
1670
+ error: "#d73502",
1671
+ errorBackground: "#ffeee8",
1672
+ // JSON 语法高亮 - 温暖配色
1673
+ syntaxString: "#d73502",
1674
+ syntaxNumber: "#ff6b35",
1675
+ syntaxBoolean: "#b7472a",
1676
+ syntaxNull: "#8b7355",
1677
+ syntaxKey: "#4a3b2a",
1678
+ syntaxBracket: "#6b5444",
1679
+ // 滚动条 - 暖色调
1680
+ scrollbarTrack: "#f4ede4",
1681
+ scrollbarThumb: "#e8d5b7",
1682
+ scrollbarThumbHover: "#d4c4a8",
1683
+ // 悬停效果
1684
+ hoverBackground: "#f8f2eb",
1685
+ // 缩进线
1686
+ indentLine: "#e8d5b7"
1687
+ }
1688
+ }, Je = {
1689
+ "github-light": fe,
1690
+ "github-dark": ze,
1691
+ "min-light": We,
1692
+ "slack-ochin": Ze
1693
+ };
1694
+ function et(r = "github-light") {
1695
+ return Je[r] || fe;
1696
+ }
1697
+ const tt = {
1521
1698
  key: 0,
1522
1699
  class: "json-format__toolbar"
1523
- }, ze = { class: "json-format__actions" }, We = ["disabled"], Ze = ["disabled"], Je = ["disabled"], et = ["disabled"], tt = { class: "json-format__info" }, rt = {
1700
+ }, rt = { class: "json-format__actions" }, nt = ["disabled"], ot = ["disabled"], st = ["disabled"], it = ["disabled"], at = { class: "json-format__info" }, lt = {
1524
1701
  key: 0,
1525
1702
  class: "json-format__status json-format__status--success"
1526
- }, nt = {
1703
+ }, ct = {
1527
1704
  key: 1,
1528
1705
  class: "json-format__status json-format__status--error"
1529
- }, st = { class: "json-format__content" }, it = {
1706
+ }, ut = { class: "json-format__content" }, dt = {
1530
1707
  key: 0,
1531
1708
  class: "json-format__error"
1532
- }, ot = {
1709
+ }, ht = {
1533
1710
  key: 1,
1534
1711
  class: "json-format__error"
1535
- }, at = {
1712
+ }, ft = {
1536
1713
  key: 2,
1537
1714
  class: "json-format__viewer"
1538
- }, lt = /* @__PURE__ */ ae({
1715
+ }, pt = /* @__PURE__ */ le({
1539
1716
  name: "JsonFormat",
1540
1717
  __name: "index",
1541
1718
  props: {
1542
1719
  modelValue: { default: "" },
1543
1720
  readonly: { type: Boolean, default: !1 },
1544
1721
  maxDepth: { default: 10 },
1545
- showToolbar: { type: Boolean, default: !0 }
1722
+ showToolbar: { type: Boolean, default: !0 },
1723
+ theme: { default: "github-light" }
1546
1724
  },
1547
1725
  emits: ["update:modelValue", "copy-success", "copy-error", "expand-all", "collapse-all", "compress"],
1548
1726
  setup(r, { expose: e, emit: t }) {
1549
- const s = r, n = t, a = B(null), c = B(""), d = B(/* @__PURE__ */ new Set()), u = B(null), h = B(""), b = j(() => c.value === ""), m = j(() => h.value ? null : u.value !== null ? u.value : a.value), C = (o) => {
1550
- if (!o.trim()) {
1551
- a.value = null, c.value = "", u.value = null, h.value = "";
1727
+ ce((i) => ({
1728
+ "8d5bfdae": p.value.colors.border,
1729
+ "14a51bab": p.value.colors.background,
1730
+ "0504ed6a": p.value.colors.text,
1731
+ a5b566c4: p.value.colors.surfaceBackground,
1732
+ a172158a: p.value.colors.buttonBorder,
1733
+ "5ffdb6bd": p.value.colors.buttonBackground,
1734
+ "796bbdfc": p.value.colors.buttonText,
1735
+ "225a5f02": p.value.colors.buttonBackgroundHover,
1736
+ "22d2aed3": p.value.colors.buttonPrimary,
1737
+ "27e37629": p.value.colors.buttonPrimaryHover,
1738
+ "1d58ec74": p.value.colors.successBackground,
1739
+ "04bd5ab4": p.value.colors.success,
1740
+ "0242d8f9": p.value.colors.errorBackground,
1741
+ ca699d2a: p.value.colors.error,
1742
+ "4d5522c2": p.value.colors.scrollbarTrack,
1743
+ "4d50e34d": p.value.colors.scrollbarThumb,
1744
+ "6854fdef": p.value.colors.scrollbarThumbHover
1745
+ }));
1746
+ const o = r, n = t, a = R(null), l = R(""), f = R(/* @__PURE__ */ new Set()), d = R(null), h = R(""), m = T(() => l.value === ""), p = T(() => et(o.theme)), k = T(() => h.value ? null : d.value !== null ? d.value : a.value), g = (i) => {
1747
+ if (!i.trim()) {
1748
+ a.value = null, l.value = "", d.value = null, h.value = "";
1552
1749
  return;
1553
1750
  }
1554
1751
  try {
1555
- let l = o;
1556
- l = l.replace(/:\s*(\d{16,})\s*([,}])/g, ': "$1"$2'), l = l.replace(/:\s*(\d+\.\d*?0+)\s*([,}])/g, ': "$1"$2'), a.value = JSON.parse(l), c.value = "", u.value = null, h.value = "", ee(() => {
1557
- m.value !== null && K();
1752
+ let c = i;
1753
+ c = c.replace(/:\s*(\d{16,})\s*([,}])/g, ': "$1"$2'), c = c.replace(/:\s*(\d+\.\d*?0+)\s*([,}])/g, ': "$1"$2'), a.value = JSON.parse(c), l.value = "", d.value = null, h.value = "", ee(() => {
1754
+ k.value !== null && F();
1558
1755
  });
1559
- } catch (l) {
1560
- c.value = l instanceof Error ? l.message : "Unknown parsing error", a.value = null, u.value = null, h.value = "";
1756
+ } catch (c) {
1757
+ l.value = c instanceof Error ? c.message : "Unknown parsing error", a.value = null, d.value = null, h.value = "";
1561
1758
  }
1562
- }, E = (o) => {
1563
- if (!o || !o.expression.trim()) {
1564
- S();
1759
+ }, S = (i) => {
1760
+ if (!i || !i.expression.trim()) {
1761
+ C();
1565
1762
  return;
1566
1763
  }
1567
1764
  if (!a.value) {
@@ -1569,256 +1766,259 @@ const Ne = { class: "json-node" }, De = {
1569
1766
  return;
1570
1767
  }
1571
1768
  try {
1572
- let l;
1573
- if (o.type === "jsonpath")
1574
- l = x({ path: o.expression, json: a.value }), l.length === 1 && o.expression.includes("$[") === !1 && !o.expression.endsWith("[*]") ? u.value = l[0] : u.value = l;
1575
- else if (o.type === "js")
1576
- l = new Function("data", `
1769
+ let c;
1770
+ if (i.type === "jsonpath")
1771
+ c = x({ path: i.expression, json: a.value }), c.length === 1 && i.expression.includes("$[") === !1 && !i.expression.endsWith("[*]") ? d.value = c[0] : d.value = c;
1772
+ else if (i.type === "js")
1773
+ c = new Function("data", `
1577
1774
  try {
1578
- return ${o.expression};
1775
+ return ${i.expression};
1579
1776
  } catch (error) {
1580
1777
  throw new Error('JavaScript expression error: ' + error.message);
1581
1778
  }
1582
- `)(a.value), u.value = l;
1779
+ `)(a.value), d.value = c;
1583
1780
  else
1584
- throw new Error(`Unsupported filter type: ${o.type}`);
1781
+ throw new Error(`Unsupported filter type: ${i.type}`);
1585
1782
  h.value = "", ee(() => {
1586
- K();
1783
+ F();
1587
1784
  });
1588
- } catch (l) {
1589
- h.value = l instanceof Error ? l.message : "Filter execution error", u.value = null;
1785
+ } catch (c) {
1786
+ h.value = c instanceof Error ? c.message : "Filter execution error", d.value = null;
1590
1787
  }
1591
- }, S = () => {
1592
- u.value = null, h.value = "";
1788
+ }, C = () => {
1789
+ d.value = null, h.value = "";
1593
1790
  };
1594
- ye(() => s.modelValue, (o) => {
1595
- C(o);
1791
+ ge(() => o.modelValue, (i) => {
1792
+ g(i);
1596
1793
  }, { immediate: !0 });
1597
- const A = (o) => {
1598
- if (!/^-?\d+(\.\d+)?$/.test(o)) return !1;
1599
- const l = Number(o);
1600
- return !Number.isSafeInteger(l) || o.length > 15;
1601
- }, T = (o, l, g) => JSON.stringify(o, (p, y) => {
1602
- if (typeof y == "string" && A(y))
1603
- return `__BIG_NUMBER__${y}__BIG_NUMBER__`;
1604
- if (typeof y == "string" && /^-?\d+(\.\d+)?$/.test(y)) {
1605
- const _ = Number(y);
1606
- if (Number.isSafeInteger(_) && _.toString() === y)
1794
+ const U = (i) => {
1795
+ if (!/^-?\d+(\.\d+)?$/.test(i)) return !1;
1796
+ const c = Number(i);
1797
+ return !Number.isSafeInteger(c) || i.length > 15;
1798
+ }, D = (i, c, y) => JSON.stringify(i, (b, E) => {
1799
+ if (typeof E == "string" && U(E))
1800
+ return `__BIG_NUMBER__${E}__BIG_NUMBER__`;
1801
+ if (typeof E == "string" && /^-?\d+(\.\d+)?$/.test(E)) {
1802
+ const _ = Number(E);
1803
+ if (Number.isSafeInteger(_) && _.toString() === E)
1607
1804
  return _;
1608
- if (!Number.isNaN(_) && isFinite(_) && y.includes("."))
1609
- return _.toString() === y ? _ : y;
1805
+ if (!Number.isNaN(_) && isFinite(_) && E.includes("."))
1806
+ return _.toString() === E ? _ : `__PRESERVE_STRING__${E}__PRESERVE_STRING__`;
1610
1807
  if (!Number.isNaN(_) && isFinite(_))
1611
1808
  return _;
1612
1809
  }
1613
- return l && typeof l == "function" ? l(p, y) : y;
1614
- }, g).replace(/"__BIG_NUMBER__(.+?)__BIG_NUMBER__"/g, "$1"), $ = (o, l) => {
1615
- if (!s.readonly)
1810
+ return c && typeof c == "function" ? c(b, E) : E;
1811
+ }, y).replace(/"__BIG_NUMBER__(.+?)__BIG_NUMBER__"/g, "$1").replace(/"__PRESERVE_STRING__(.+?)__PRESERVE_STRING__"/g, "$1"), Q = (i, c) => {
1812
+ if (!o.readonly)
1616
1813
  try {
1617
- const g = q(a.value, o, l), p = T(g, null, 2);
1618
- n("update:modelValue", p);
1619
- } catch (g) {
1620
- console.error("Failed to update JSON:", g);
1814
+ const y = te(a.value, i, c), b = D(y, null, 2);
1815
+ n("update:modelValue", b);
1816
+ } catch (y) {
1817
+ console.error("Failed to update JSON:", y);
1621
1818
  }
1622
- }, q = (o, l, g) => {
1623
- if (!l || l === "root") return g;
1624
- const p = l.split("."), y = M(o, p.slice(0, -1));
1625
- let _ = y;
1626
- for (let I = 0; I < p.length - 1; I++) {
1627
- const R = p[I];
1628
- R !== "root" && (Array.isArray(_) ? _ = _[parseInt(R)] : _ = _[R]);
1819
+ }, te = (i, c, y) => {
1820
+ if (!c || c === "root") return y;
1821
+ const b = c.split("."), E = H(i, b.slice(0, -1));
1822
+ let _ = E;
1823
+ for (let j = 0; j < b.length - 1; j++) {
1824
+ const I = b[j];
1825
+ I !== "root" && (Array.isArray(_) ? _ = _[parseInt(I)] : _ = _[I]);
1629
1826
  }
1630
- const D = p[p.length - 1];
1631
- return D === "root" ? g : (Array.isArray(_) ? _[parseInt(D)] = g : _[D] = g, y);
1632
- }, G = (o) => {
1633
- d.value.has(o) ? d.value.delete(o) : d.value.add(o);
1634
- }, K = () => {
1635
- const o = /* @__PURE__ */ new Set(), l = (g, p = "") => {
1636
- g !== null && typeof g == "object" && (o.add(p || "root"), Array.isArray(g) ? g.forEach((y, _) => {
1637
- const D = p ? `${p}.${_}` : `${_}`;
1638
- l(y, D);
1639
- }) : Object.keys(g).forEach((y) => {
1640
- const _ = p ? `${p}.${y}` : y;
1641
- l(g[y], _);
1827
+ const B = b[b.length - 1];
1828
+ return B === "root" ? y : (Array.isArray(_) ? _[parseInt(B)] = y : _[B] = y, E);
1829
+ }, Z = (i) => {
1830
+ f.value.has(i) ? f.value.delete(i) : f.value.add(i);
1831
+ }, F = () => {
1832
+ const i = /* @__PURE__ */ new Set(), c = (y, b = "") => {
1833
+ y !== null && typeof y == "object" && (i.add(b || "root"), Array.isArray(y) ? y.forEach((E, _) => {
1834
+ const B = b ? `${b}.${_}` : `${_}`;
1835
+ c(E, B);
1836
+ }) : Object.keys(y).forEach((E) => {
1837
+ const _ = b ? `${b}.${E}` : E;
1838
+ c(y[E], _);
1642
1839
  }));
1643
1840
  };
1644
- l(m.value), d.value = o, n("expand-all");
1645
- }, z = () => {
1646
- d.value = /* @__PURE__ */ new Set(["root"]), n("collapse-all");
1647
- }, Q = async () => {
1648
- if (b.value)
1841
+ c(k.value), f.value = i, n("expand-all");
1842
+ }, Y = () => {
1843
+ f.value = /* @__PURE__ */ new Set(["root"]), n("collapse-all");
1844
+ }, q = async () => {
1845
+ if (m.value)
1649
1846
  try {
1650
- const o = m.value, g = JSON.stringify(o, null, 2).replace(/"(\d{16,})"/g, "$1");
1651
- await navigator.clipboard.writeText(g), n("copy-success", g);
1652
- } catch (o) {
1653
- console.error("Failed to copy JSON:", o), n("copy-error", o instanceof Error ? o : new Error("Failed to copy JSON"));
1847
+ const i = k.value, c = D(i, null, 2);
1848
+ await navigator.clipboard.writeText(c), n("copy-success", c);
1849
+ } catch (i) {
1850
+ console.error("Failed to copy JSON:", i), n("copy-error", i instanceof Error ? i : new Error("Failed to copy JSON"));
1654
1851
  }
1655
- }, Y = () => {
1656
- if (b.value)
1852
+ }, J = () => {
1853
+ if (m.value)
1657
1854
  try {
1658
- const o = m.value, l = T(o);
1659
- n("update:modelValue", l), n("compress", l);
1660
- } catch (o) {
1661
- console.error("Failed to compress JSON:", o);
1855
+ const i = k.value, c = D(i);
1856
+ n("update:modelValue", c), n("compress", c);
1857
+ } catch (i) {
1858
+ console.error("Failed to compress JSON:", i);
1662
1859
  }
1663
- }, W = async (o) => {
1860
+ }, V = async (i) => {
1664
1861
  try {
1665
- let l;
1666
- typeof o == "string" && A(o) ? l = o : typeof o == "string" ? l = `"${o}"` : l = JSON.stringify(o), await navigator.clipboard.writeText(l);
1667
- } catch (l) {
1668
- console.error("Failed to copy value:", l);
1862
+ let c;
1863
+ typeof i == "string" && U(i) ? c = i : typeof i == "string" ? c = `"${i}"` : c = JSON.stringify(i), await navigator.clipboard.writeText(c);
1864
+ } catch (c) {
1865
+ console.error("Failed to copy value:", c);
1669
1866
  }
1670
- }, V = (o, l) => {
1671
- if (!s.readonly)
1867
+ }, z = (i, c) => {
1868
+ if (!o.readonly)
1672
1869
  try {
1673
- const g = Z(a.value, o, l), p = T(g, null, 2);
1674
- n("update:modelValue", p), v(o, l);
1675
- } catch (g) {
1676
- console.error("Failed to rename key:", g);
1870
+ const y = W(a.value, i, c), b = D(y, null, 2);
1871
+ n("update:modelValue", b), K(i, c);
1872
+ } catch (y) {
1873
+ console.error("Failed to rename key:", y);
1677
1874
  }
1678
- }, Z = (o, l, g) => {
1679
- if (!l || l === "root") return o;
1680
- const p = l.split("."), y = M(o, p.slice(0, -1));
1681
- if (p.length === 1) {
1682
- const I = p[0];
1683
- return y && typeof y == "object" && !Array.isArray(y) ? J(y, I, g) : y;
1875
+ }, W = (i, c, y) => {
1876
+ if (!c || c === "root") return i;
1877
+ const b = c.split("."), E = H(i, b.slice(0, -1));
1878
+ if (b.length === 1) {
1879
+ const j = b[0];
1880
+ return E && typeof E == "object" && !Array.isArray(E) ? u(E, j, y) : E;
1684
1881
  }
1685
- let _ = y;
1686
- for (let I = 0; I < p.length - 1; I++) {
1687
- const R = p[I];
1688
- Array.isArray(_) ? _ = _[parseInt(R)] : _ = _[R];
1882
+ let _ = E;
1883
+ for (let j = 0; j < b.length - 1; j++) {
1884
+ const I = b[j];
1885
+ Array.isArray(_) ? _ = _[parseInt(I)] : _ = _[I];
1689
1886
  }
1690
- const D = p[p.length - 1];
1887
+ const B = b[b.length - 1];
1691
1888
  if (!Array.isArray(_) && _ && typeof _ == "object") {
1692
- const I = J(_, D, g), R = p.slice(0, -1);
1693
- R.length > 0 && f(y, R, I);
1889
+ const j = u(_, B, y), I = b.slice(0, -1);
1890
+ I.length > 0 && v(E, I, j);
1694
1891
  }
1695
- return y;
1696
- }, M = (o, l) => {
1697
- if (l.length === 0) return o;
1698
- if (Array.isArray(o)) {
1699
- const g = [...o], p = l[0], y = parseInt(p);
1700
- return l.length === 1 || (g[y] = M(o[y], l.slice(1))), g;
1701
- } else if (o && typeof o == "object") {
1702
- const g = { ...o }, p = l[0];
1703
- return l.length === 1 || (g[p] = M(o[p], l.slice(1))), g;
1892
+ return E;
1893
+ }, H = (i, c) => {
1894
+ if (c.length === 0) return i;
1895
+ if (Array.isArray(i)) {
1896
+ const y = [...i], b = c[0], E = parseInt(b);
1897
+ return c.length === 1 || (y[E] = H(i[E], c.slice(1))), y;
1898
+ } else if (i && typeof i == "object") {
1899
+ const y = { ...i }, b = c[0];
1900
+ return c.length === 1 || (y[b] = H(i[b], c.slice(1))), y;
1704
1901
  }
1705
- return o;
1706
- }, J = (o, l, g) => {
1707
- if (!o || typeof o != "object" || Array.isArray(o))
1708
- return o;
1709
- const p = Object.keys(o), y = {};
1710
- for (const _ of p)
1711
- _ === l ? y[g] = o[_] : y[_] = o[_];
1712
- return y;
1713
- }, f = (o, l, g) => {
1714
- let p = o;
1715
- for (let _ = 0; _ < l.length - 1; _++) {
1716
- const D = l[_];
1717
- Array.isArray(p) ? p = p[parseInt(D)] : p = p[D];
1902
+ return i;
1903
+ }, u = (i, c, y) => {
1904
+ if (!i || typeof i != "object" || Array.isArray(i))
1905
+ return i;
1906
+ const b = Object.keys(i), E = {};
1907
+ for (const _ of b)
1908
+ _ === c ? E[y] = i[_] : E[_] = i[_];
1909
+ return E;
1910
+ }, v = (i, c, y) => {
1911
+ let b = i;
1912
+ for (let _ = 0; _ < c.length - 1; _++) {
1913
+ const B = c[_];
1914
+ Array.isArray(b) ? b = b[parseInt(B)] : b = b[B];
1718
1915
  }
1719
- const y = l[l.length - 1];
1720
- Array.isArray(p) ? p[parseInt(y)] = g : p[y] = g;
1721
- }, v = (o, l) => {
1722
- const g = /* @__PURE__ */ new Set();
1723
- d.value.forEach((p) => {
1724
- if (p === o) {
1725
- const y = o.split(".");
1726
- y[y.length - 1] = l, g.add(y.join("."));
1727
- } else if (p.startsWith(o + ".")) {
1728
- const y = o.split(".");
1729
- y[y.length - 1] = l;
1730
- const _ = y.join("."), D = p.substring(o.length);
1731
- g.add(_ + D);
1916
+ const E = c[c.length - 1];
1917
+ Array.isArray(b) ? b[parseInt(E)] = y : b[E] = y;
1918
+ }, K = (i, c) => {
1919
+ const y = /* @__PURE__ */ new Set();
1920
+ f.value.forEach((b) => {
1921
+ if (b === i) {
1922
+ const E = i.split(".");
1923
+ E[E.length - 1] = c, y.add(E.join("."));
1924
+ } else if (b.startsWith(i + ".")) {
1925
+ const E = i.split(".");
1926
+ E[E.length - 1] = c;
1927
+ const _ = E.join("."), B = b.substring(i.length);
1928
+ y.add(_ + B);
1732
1929
  } else
1733
- g.add(p);
1734
- }), d.value = g;
1930
+ y.add(b);
1931
+ }), f.value = y;
1735
1932
  };
1736
1933
  return e({
1737
1934
  // 核心操作方法
1738
- copyJson: Q,
1739
- compressSource: Y,
1740
- expandAll: K,
1741
- collapseAll: z,
1742
- toggleExpand: G,
1743
- updateValue: $,
1744
- updateKey: V,
1935
+ copyJson: q,
1936
+ compressSource: J,
1937
+ expandAll: F,
1938
+ collapseAll: Y,
1939
+ toggleExpand: Z,
1940
+ updateValue: Q,
1941
+ updateKey: z,
1745
1942
  // Filter 相关方法
1746
- filter: E,
1747
- clearFilter: S,
1943
+ filter: S,
1944
+ clearFilter: C,
1748
1945
  // 状态访问方法
1749
- isValidJson: () => b.value,
1946
+ isValidJson: () => m.value,
1750
1947
  getParsedJson: () => a.value,
1751
- getFilteredJson: () => u.value,
1752
- getExpandedNodes: () => d.value,
1753
- getParseError: () => c.value,
1948
+ getFilteredJson: () => d.value,
1949
+ getExpandedNodes: () => f.value,
1950
+ getParseError: () => l.value,
1754
1951
  getFilterError: () => h.value,
1755
1952
  // 工具方法
1756
- parseJson: (o) => C(o),
1757
- copyValue: (o) => W(o)
1758
- }), (o, l) => (k(), w("div", qe, [
1759
- o.showToolbar ? (k(), w("div", Ge, [
1760
- P("div", ze, [
1953
+ parseJson: (i) => g(i),
1954
+ copyValue: (i) => V(i)
1955
+ }), (i, c) => (w(), A("div", {
1956
+ class: de(["json-format", `json-format--${p.value.name}`])
1957
+ }, [
1958
+ i.showToolbar ? (w(), A("div", tt, [
1959
+ P("div", rt, [
1761
1960
  P("button", {
1762
1961
  class: "json-format__btn json-format__btn--primary",
1763
- onClick: Q,
1764
- disabled: !b.value,
1962
+ onClick: q,
1963
+ disabled: !m.value,
1765
1964
  title: "Copy JSON"
1766
- }, " 📋 Copy ", 8, We),
1965
+ }, " 📋 Copy ", 8, nt),
1767
1966
  P("button", {
1768
1967
  class: "json-format__btn json-format__btn--secondary",
1769
- onClick: K,
1770
- disabled: !b.value,
1968
+ onClick: F,
1969
+ disabled: !m.value,
1771
1970
  title: "Expand All"
1772
- }, " ⬇️ Expand All ", 8, Ze),
1971
+ }, " ⬇️ Expand All ", 8, ot),
1773
1972
  P("button", {
1774
1973
  class: "json-format__btn json-format__btn--secondary",
1775
- onClick: z,
1776
- disabled: !b.value,
1974
+ onClick: Y,
1975
+ disabled: !m.value,
1777
1976
  title: "Collapse All"
1778
- }, " ➡️ Collapse All ", 8, Je),
1977
+ }, " ➡️ Collapse All ", 8, st),
1779
1978
  P("button", {
1780
1979
  class: "json-format__btn json-format__btn--secondary",
1781
- onClick: Y,
1782
- disabled: !b.value,
1980
+ onClick: J,
1981
+ disabled: !m.value,
1783
1982
  title: "Compress JSON"
1784
- }, " 📦 Compress ", 8, et)
1983
+ }, " 📦 Compress ", 8, it)
1785
1984
  ]),
1786
- P("div", tt, [
1787
- b.value ? (k(), w("span", rt, " ✅ Valid JSON ")) : (k(), w("span", nt, " ❌ Invalid JSON "))
1985
+ P("div", at, [
1986
+ m.value ? (w(), A("span", lt, " ✅ Valid JSON ")) : (w(), A("span", ct, " ❌ Invalid JSON "))
1788
1987
  ])
1789
1988
  ])) : N("", !0),
1790
- P("div", st, [
1791
- b.value ? h.value ? (k(), w("div", ot, [
1792
- l[1] || (l[1] = P("h4", null, "Filter Error:", -1)),
1793
- P("pre", null, U(h.value), 1)
1794
- ])) : (k(), w("div", at, [
1795
- le(Ye, {
1796
- value: m.value,
1989
+ P("div", ut, [
1990
+ m.value ? h.value ? (w(), A("div", ht, [
1991
+ c[1] || (c[1] = P("h4", null, "Filter Error:", -1)),
1992
+ P("pre", null, $(h.value), 1)
1993
+ ])) : (w(), A("div", ft, [
1994
+ ue(qe, {
1995
+ value: k.value,
1797
1996
  "key-name": "",
1798
1997
  level: 0,
1799
- expanded: d.value,
1998
+ expanded: f.value,
1800
1999
  "is-last": !0,
1801
- "onUpdate:value": $,
1802
- onToggleExpand: G,
1803
- onCopy: W,
1804
- "onUpdate:key": V
1805
- }, null, 8, ["value", "expanded"])
1806
- ])) : (k(), w("div", it, [
1807
- l[0] || (l[0] = P("h4", null, "JSON Parse Error:", -1)),
1808
- P("pre", null, U(c.value), 1)
2000
+ theme: p.value,
2001
+ "onUpdate:value": Q,
2002
+ onToggleExpand: Z,
2003
+ onCopy: V,
2004
+ "onUpdate:key": z
2005
+ }, null, 8, ["value", "expanded", "theme"])
2006
+ ])) : (w(), A("div", dt, [
2007
+ c[0] || (c[0] = P("h4", null, "JSON Parse Error:", -1)),
2008
+ P("pre", null, $(l.value), 1)
1809
2009
  ]))
1810
2010
  ])
1811
- ]));
2011
+ ], 2));
1812
2012
  }
1813
- }), ct = /* @__PURE__ */ ce(lt, [["__scopeId", "data-v-c212b38f"]]), ut = [ct], ht = (r) => {
1814
- ut.forEach((e) => {
2013
+ }), yt = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-38157665"]]), bt = [yt], gt = (r) => {
2014
+ bt.forEach((e) => {
1815
2015
  const t = e.name || e.__name || "UnknownComponent";
1816
2016
  r.component(t, e);
1817
2017
  });
1818
- }, pt = {
1819
- install: ht
2018
+ }, vt = {
2019
+ install: gt
1820
2020
  };
1821
2021
  export {
1822
- ct as JsonFormat,
1823
- pt as default
2022
+ yt as JsonFormat,
2023
+ vt as default
1824
2024
  };