vite-plugin-vue-devtools 7.0.2 → 7.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/assets/{index-V3PM1gE9.js → index-W2IbiBHh.js} +65 -65
- package/dist/client/assets/{index-NNrCE7Vx.css → index-nniB9uqZ.css} +1 -1
- package/dist/client/index.html +2 -2
- package/package.json +4 -4
- package/src/overlay/devtools-overlay.js +3 -3
- package/dist/client/css-hXHVOlj5.js +0 -511
- package/dist/client/devtools-panel.css +0 -1
- package/dist/client/devtools-panel.js +0 -77726
- package/dist/client/diff-nydZCsp5.js +0 -7
- package/dist/client/html-r4dic7N6.js +0 -84
- package/dist/client/javascript-iu2g-HpL.js +0 -705
- package/dist/client/json-6ED1Ntns.js +0 -31
- package/dist/client/onig-NuJRzyUz.js +0 -4
- package/dist/client/shellscript-lFevXvOp.js +0 -10
- package/dist/client/typescript-SzFP_hYV.js +0 -672
- package/dist/client/unocss-runtime-c8-Zzj4C.js +0 -1974
- package/dist/client/vitesse-dark-Q3b2Vb5y.js +0 -683
- package/dist/client/vitesse-light-T_UJmsth.js +0 -681
- package/dist/client/vue-apis-j7ljdRbm.js +0 -1127
- package/dist/client/vue-html-IdJrwrVJ.js +0 -16
- package/dist/client/vue-vFbCUJfs.js +0 -2118
- package/dist/client/yaml-n_HyS7lr.js +0 -206
|
@@ -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
|
-
};
|