@vue/devtools-electron 7.3.9 → 7.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/css-mL5aELmx.js +7 -0
- package/client/devtools-panel.css +1 -1
- package/client/devtools-panel.js +40815 -40016
- package/client/html-G4l_pga6.js +11 -0
- package/client/javascript-Cb-dipD1.js +7 -0
- package/client/json-BIlH1wF4.js +7 -0
- package/client/{shellscript-4vnCAIm1.js → shellscript-CIq-wl_g.js} +1 -1
- package/client/typescript-zuWlX6el.js +7 -0
- package/client/vue-KNOEyOOi.js +128 -0
- package/client/{vue-html-DruuqmJy.js → vue-html-S5gN87CA.js} +3 -3
- package/client/yaml-Ckl1MHis.js +7 -0
- package/dist/devtools.js +162 -4391
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/user-app.cjs +1 -1
- package/dist/user-app.iife.js +54 -54
- package/dist/user-app.js +1 -1
- package/package.json +6 -6
- package/client/css-CAzixsid.js +0 -511
- package/client/html-BZB5lEhh.js +0 -84
- package/client/javascript-DqVBMyXe.js +0 -705
- package/client/json-B12k4-6m.js +0 -31
- package/client/typescript-AEg-ehu7.js +0 -672
- package/client/vue-C9HFRM79.js +0 -2195
- package/client/yaml-BEu5ErCD.js +0 -206
package/client/json-B12k4-6m.js
DELETED
|
@@ -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)
|
|
2
|
-
-?
|
|
3
|
-
(?:
|
|
4
|
-
0
|
|
5
|
-
|
|
|
6
|
-
[1-9]
|
|
7
|
-
\\d*
|
|
8
|
-
)
|
|
9
|
-
(?:
|
|
10
|
-
(?:
|
|
11
|
-
\\.
|
|
12
|
-
\\d+
|
|
13
|
-
)?
|
|
14
|
-
(?:
|
|
15
|
-
[eE]
|
|
16
|
-
[+-]?
|
|
17
|
-
\\d+
|
|
18
|
-
)?
|
|
19
|
-
)?`, 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)
|
|
20
|
-
\\\\
|
|
21
|
-
(?:
|
|
22
|
-
["\\\\/bfnrt]
|
|
23
|
-
|
|
|
24
|
-
u
|
|
25
|
-
[0-9a-fA-F]{4})`, 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
|
-
};
|