@vue/devtools-electron 7.0.12 → 7.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/cli.d.ts +1 -0
  2. package/client/assets/{css-a-KJtBLB.js → css-tuEqSfZX.js} +347 -347
  3. package/client/assets/html-NT1OIsSF.js +74 -0
  4. package/client/assets/index-KXVUFBYX.js +1096 -0
  5. package/client/assets/{index-598L0Wdv.css → index-fx3Lb9Fg.css} +1 -1
  6. package/client/assets/{javascript-Of8SnKfU.js → javascript-4rbEI_qn.js} +507 -507
  7. package/client/assets/json-xL80yL3n.js +25 -0
  8. package/client/assets/{shellscript-h1L64xId.js → shellscript-82BvnTib.js} +3 -3
  9. package/client/assets/{typescript-b1Nw_bQe.js → typescript-IWNmnGsa.js} +487 -487
  10. package/client/assets/unocss-runtime-TAqnQCrJ.js +2 -0
  11. package/client/assets/{vue-nOwTje1i.js → vue-YzhXM3IG.js} +1508 -1508
  12. package/client/assets/{vue-html-eJ6eRCYJ.js → vue-html-K7eG1nl_.js} +1 -1
  13. package/client/assets/yaml-zytfnWoA.js +200 -0
  14. package/client/{css-hXHVOlj5.js → css-FzZ_BjSq.js} +347 -347
  15. package/client/devtools-panel.css +1 -1
  16. package/client/devtools-panel.js +12834 -12546
  17. package/client/html-WFjUqgJ3.js +84 -0
  18. package/client/index.html +3 -3
  19. package/client/{javascript-iu2g-HpL.js → javascript-_oSuCsY2.js} +507 -507
  20. package/client/json-GUBx_oBO.js +31 -0
  21. package/client/logo.svg +208 -0
  22. package/client/{shellscript-lFevXvOp.js → shellscript-OgCjrX59.js} +3 -3
  23. package/client/{typescript-SzFP_hYV.js → typescript-Pt1W475c.js} +487 -487
  24. package/client/unocss-runtime-Pdo20xvb.js +1988 -0
  25. package/client/{vue-vFbCUJfs.js → vue-CJRD3BeY.js} +1529 -1529
  26. package/client/{vue-html-IdJrwrVJ.js → vue-html-9E-FEOoO.js} +7 -7
  27. package/client/yaml-0qnKYER3.js +206 -0
  28. package/dist/devtools.js +3298 -3298
  29. package/dist/index.cjs +41 -41
  30. package/dist/{index.mjs → index.js} +43 -43
  31. package/dist/user-app.cjs +42 -42
  32. package/dist/user-app.iife.js +38 -38
  33. package/dist/{user-app.mjs → user-app.js} +42 -42
  34. package/package.json +7 -7
  35. package/client/assets/html-5-AIf93y.js +0 -74
  36. package/client/assets/index-cEmzwhNg.js +0 -1096
  37. package/client/assets/json-t1qiHl76.js +0 -25
  38. package/client/assets/unocss-runtime-402WFgCt.js +0 -2
  39. package/client/assets/yaml-FtfhlYqU.js +0 -200
  40. package/client/html-r4dic7N6.js +0 -84
  41. package/client/json-6ED1Ntns.js +0 -31
  42. package/client/unocss-runtime-WFlXz1xh.js +0 -1974
  43. package/client/yaml-n_HyS7lr.js +0 -206
  44. /package/dist/{app.mjs → app.js} +0 -0
@@ -1,31 +0,0 @@
1
- const n = Object.freeze({ displayName: "JSON", name: "json", patterns: [{ include: "#value" }], repository: { array: { begin: "\\[", beginCaptures: { 0: { name: "punctuation.definition.array.begin.json" } }, end: "\\]", endCaptures: { 0: { name: "punctuation.definition.array.end.json" } }, name: "meta.structure.array.json", patterns: [{ include: "#value" }, { match: ",", name: "punctuation.separator.array.json" }, { match: "[^\\s\\]]", name: "invalid.illegal.expected-array-separator.json" }] }, comments: { patterns: [{ begin: "/\\*\\*(?!/)", captures: { 0: { name: "punctuation.definition.comment.json" } }, end: "\\*/", name: "comment.block.documentation.json" }, { begin: "/\\*", captures: { 0: { name: "punctuation.definition.comment.json" } }, end: "\\*/", name: "comment.block.json" }, { captures: { 1: { name: "punctuation.definition.comment.json" } }, match: "(//).*$\\n?", name: "comment.line.double-slash.js" }] }, constant: { match: "\\b(?:true|false|null)\\b", name: "constant.language.json" }, number: { match: `(?x) # turn on extended mode
2
- -? # an optional minus
3
- (?:
4
- 0 # a zero
5
- | # ...or...
6
- [1-9] # a 1-9 character
7
- \\d* # followed by zero or more digits
8
- )
9
- (?:
10
- (?:
11
- \\. # a period
12
- \\d+ # followed by one or more digits
13
- )?
14
- (?:
15
- [eE] # an e character
16
- [+-]? # followed by an option +/-
17
- \\d+ # followed by one or more digits
18
- )? # make exponent optional
19
- )? # make decimal portion optional`, name: "constant.numeric.json" }, object: { begin: "\\{", beginCaptures: { 0: { name: "punctuation.definition.dictionary.begin.json" } }, end: "\\}", endCaptures: { 0: { name: "punctuation.definition.dictionary.end.json" } }, name: "meta.structure.dictionary.json", patterns: [{ comment: "the JSON object key", include: "#objectkey" }, { include: "#comments" }, { begin: ":", beginCaptures: { 0: { name: "punctuation.separator.dictionary.key-value.json" } }, end: "(,)|(?=\\})", endCaptures: { 1: { name: "punctuation.separator.dictionary.pair.json" } }, name: "meta.structure.dictionary.value.json", patterns: [{ comment: "the JSON object value", include: "#value" }, { match: "[^\\s,]", name: "invalid.illegal.expected-dictionary-separator.json" }] }, { match: "[^\\s\\}]", name: "invalid.illegal.expected-dictionary-separator.json" }] }, objectkey: { begin: '"', beginCaptures: { 0: { name: "punctuation.support.type.property-name.begin.json" } }, end: '"', endCaptures: { 0: { name: "punctuation.support.type.property-name.end.json" } }, name: "string.json support.type.property-name.json", patterns: [{ include: "#stringcontent" }] }, string: { begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.json" } }, end: '"', endCaptures: { 0: { name: "punctuation.definition.string.end.json" } }, name: "string.quoted.double.json", patterns: [{ include: "#stringcontent" }] }, stringcontent: { patterns: [{ match: `(?x) # turn on extended mode
20
- \\\\ # a literal backslash
21
- (?: # ...followed by...
22
- ["\\\\/bfnrt] # one of these characters
23
- | # ...or...
24
- u # a u
25
- [0-9a-fA-F]{4}) # and four hex digits`, name: "constant.character.escape.json" }, { match: "\\\\.", name: "invalid.illegal.unrecognized-string-escape.json" }] }, value: { patterns: [{ include: "#constant" }, { include: "#number" }, { include: "#string" }, { include: "#array" }, { include: "#object" }, { include: "#comments" }] } }, scopeName: "source.json" });
26
- var e = [
27
- n
28
- ];
29
- export {
30
- e as default
31
- };