@vue/devtools-applet 7.3.6 → 7.3.7
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/index.cjs +1 -14
- package/dist/index.css +1 -1
- package/dist/index.js +2303 -18332
- package/package.json +5 -5
- package/dist/components/basic/CodeBlock.vue.d.ts +0 -41
- package/dist/composables/shiki.d.ts +0 -10
- package/dist/css-CAzixsid.js +0 -511
- package/dist/css-D2Iou8Kp.cjs +0 -505
- package/dist/diff-B-yfB5pV.cjs +0 -1
- package/dist/diff-Bo5iyMQ2.js +0 -7
- package/dist/html-BZB5lEhh.js +0 -84
- package/dist/html-Cm5OXZzB.cjs +0 -74
- package/dist/javascript-DqVBMyXe.js +0 -705
- package/dist/javascript-a-sFB2oM.cjs +0 -699
- package/dist/json-B12k4-6m.js +0 -31
- package/dist/json-BkokWKU4.cjs +0 -25
- package/dist/shellscript-BZ5EogJg.cjs +0 -1
- package/dist/shellscript-C_gmBC5P.js +0 -7
- package/dist/typescript-AEg-ehu7.js +0 -672
- package/dist/typescript-fPsIX9ZR.cjs +0 -666
- package/dist/vitesse-dark-BL9ALwfv.cjs +0 -1
- package/dist/vitesse-dark-CkUHDarG.js +0 -685
- package/dist/vitesse-light-BziCVrQz.cjs +0 -1
- package/dist/vitesse-light-K81-viQS.js +0 -683
- package/dist/vue-BJXWFdmh.js +0 -2125
- package/dist/vue-BuoOEaND.cjs +0 -2002
- package/dist/vue-html-0n5tMFM2.js +0 -11
- package/dist/vue-html-DNFDeK9z.cjs +0 -1
- package/dist/yaml-BEu5ErCD.js +0 -206
- package/dist/yaml-CjgQ_T2k.cjs +0 -200
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools-applet",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.3.
|
|
4
|
+
"version": "7.3.7",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"exports": {
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"shiki": "^1.10.3",
|
|
26
26
|
"splitpanes": "^3.1.5",
|
|
27
27
|
"vue-virtual-scroller": "2.0.0-beta.8",
|
|
28
|
-
"@vue/devtools-core": "^7.3.
|
|
29
|
-
"@vue/devtools-kit": "^7.3.
|
|
30
|
-
"@vue/devtools-ui": "^7.3.
|
|
31
|
-
"@vue/devtools-shared": "^7.3.
|
|
28
|
+
"@vue/devtools-core": "^7.3.7",
|
|
29
|
+
"@vue/devtools-kit": "^7.3.7",
|
|
30
|
+
"@vue/devtools-ui": "^7.3.7",
|
|
31
|
+
"@vue/devtools-shared": "^7.3.7"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/lodash-es": "^4.17.12",
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { BuiltinLanguage } from 'shiki';
|
|
2
|
-
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
code: string;
|
|
5
|
-
lang?: BuiltinLanguage | "text";
|
|
6
|
-
lines?: boolean;
|
|
7
|
-
transformRendered?: (code: string) => string;
|
|
8
|
-
}>, {
|
|
9
|
-
lines: boolean;
|
|
10
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
loaded: (...args: any[]) => void;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
|
-
code: string;
|
|
14
|
-
lang?: BuiltinLanguage | "text";
|
|
15
|
-
lines?: boolean;
|
|
16
|
-
transformRendered?: (code: string) => string;
|
|
17
|
-
}>, {
|
|
18
|
-
lines: boolean;
|
|
19
|
-
}>>> & {
|
|
20
|
-
onLoaded?: ((...args: any[]) => any) | undefined;
|
|
21
|
-
}, {
|
|
22
|
-
lines: boolean;
|
|
23
|
-
}, {}>;
|
|
24
|
-
export default _default;
|
|
25
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
27
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
28
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
29
|
-
} : {
|
|
30
|
-
type: import('vue').PropType<T[K]>;
|
|
31
|
-
required: true;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
type __VLS_WithDefaults<P, D> = {
|
|
35
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
36
|
-
default: D[K];
|
|
37
|
-
}> : P[K];
|
|
38
|
-
};
|
|
39
|
-
type __VLS_Prettify<T> = {
|
|
40
|
-
[K in keyof T]: T[K];
|
|
41
|
-
} & {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { BuiltinLanguage, HighlighterCore } from 'shiki';
|
|
2
|
-
|
|
3
|
-
export declare const shiki: import('vue').ShallowRef<HighlighterCore | undefined>;
|
|
4
|
-
export declare function renderCodeHighlight(code: string, lang?: BuiltinLanguage | 'text'): {
|
|
5
|
-
code: string;
|
|
6
|
-
supported: false | undefined;
|
|
7
|
-
} | {
|
|
8
|
-
code: string;
|
|
9
|
-
supported: boolean;
|
|
10
|
-
};
|
package/dist/css-CAzixsid.js
DELETED
|
@@ -1,511 +0,0 @@
|
|
|
1
|
-
const e = Object.freeze({ displayName: "CSS", name: "css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { include: "#combinators" }, { include: "#selector" }, { include: "#at-rules" }, { include: "#rule-list" }], repository: { "at-rules": { patterns: [{ begin: "\\A(?:\\xEF\\xBB\\xBF)?(?i:(?=\\s*@charset\\b))", end: ";|(?=$)", endCaptures: { 0: { name: "punctuation.terminator.rule.css" } }, name: "meta.at-rule.charset.css", patterns: [{ captures: { 1: { name: "invalid.illegal.not-lowercase.charset.css" }, 2: { name: "invalid.illegal.leading-whitespace.charset.css" }, 3: { name: "invalid.illegal.no-whitespace.charset.css" }, 4: { name: "invalid.illegal.whitespace.charset.css" }, 5: { name: "invalid.illegal.not-double-quoted.charset.css" }, 6: { name: "invalid.illegal.unclosed-string.charset.css" }, 7: { name: "invalid.illegal.unexpected-characters.charset.css" } }, match: `(?x)
|
|
2
|
-
\\G
|
|
3
|
-
((?!@charset)@\\w+)
|
|
4
|
-
|
|
|
5
|
-
\\G(\\s+)
|
|
6
|
-
|
|
|
7
|
-
(@charset\\S[^;]*)
|
|
8
|
-
|
|
|
9
|
-
(?<=@charset)
|
|
10
|
-
(\\x20{2,}|\\t+)
|
|
11
|
-
|
|
|
12
|
-
(?<=@charset\\x20)
|
|
13
|
-
([^";]+)
|
|
14
|
-
|
|
|
15
|
-
("[^"]+$)
|
|
16
|
-
|
|
|
17
|
-
(?<=")
|
|
18
|
-
([^;]+)` }, { captures: { 1: { name: "keyword.control.at-rule.charset.css" }, 2: { name: "punctuation.definition.keyword.css" } }, match: "((@)charset)(?=\\s)" }, { begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.css" } }, end: '"|$', endCaptures: { 0: { name: "punctuation.definition.string.end.css" } }, name: "string.quoted.double.css", patterns: [{ begin: '(?:\\G|^)(?=(?:[^"])+$)', end: "$", name: "invalid.illegal.unclosed.string.css" }] }] }, { begin: `(?i)((@)import)(?:\\s+|$|(?=['"]|/\\*))`, beginCaptures: { 1: { name: "keyword.control.at-rule.import.css" }, 2: { name: "punctuation.definition.keyword.css" } }, end: ";", endCaptures: { 0: { name: "punctuation.terminator.rule.css" } }, name: "meta.at-rule.import.css", patterns: [{ begin: "\\G\\s*(?=/\\*)", end: "(?<=\\*/)\\s*", patterns: [{ include: "#comment-block" }] }, { include: "#string" }, { include: "#url" }, { include: "#media-query-list" }] }, { begin: "(?i)((@)font-face)(?=\\s*|{|/\\*|$)", beginCaptures: { 1: { name: "keyword.control.at-rule.font-face.css" }, 2: { name: "punctuation.definition.keyword.css" } }, end: "(?!\\G)", name: "meta.at-rule.font-face.css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { include: "#rule-list" }] }, { begin: "(?i)(@)page(?=[\\s:{]|/\\*|$)", captures: { 0: { name: "keyword.control.at-rule.page.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*($|[:{;]))", name: "meta.at-rule.page.css", patterns: [{ include: "#rule-list" }] }, { begin: "(?i)(?=@media(\\s|\\(|/\\*|$))", end: "(?<=})(?!\\G)", patterns: [{ begin: "(?i)\\G(@)media", beginCaptures: { 0: { name: "keyword.control.at-rule.media.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*[{;])", name: "meta.at-rule.media.header.css", patterns: [{ include: "#media-query-list" }] }, { begin: "{", beginCaptures: { 0: { name: "punctuation.section.media.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.media.end.bracket.curly.css" } }, name: "meta.at-rule.media.body.css", patterns: [{ include: "$self" }] }] }, { begin: `(?i)(?=@counter-style([\\s'"{;]|/\\*|$))`, end: "(?<=})(?!\\G)", patterns: [{ begin: "(?i)\\G(@)counter-style", beginCaptures: { 0: { name: "keyword.control.at-rule.counter-style.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*{)", name: "meta.at-rule.counter-style.header.css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { captures: { 0: { patterns: [{ include: "#escapes" }] } }, match: `(?x)
|
|
19
|
-
(?:[-a-zA-Z_] | [^\\x00-\\x7F])
|
|
20
|
-
(?:[-a-zA-Z0-9_] | [^\\x00-\\x7F]
|
|
21
|
-
|\\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
22
|
-
)*`, name: "variable.parameter.style-name.css" }] }, { begin: "{", beginCaptures: { 0: { name: "punctuation.section.property-list.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.property-list.end.bracket.curly.css" } }, name: "meta.at-rule.counter-style.body.css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { include: "#rule-list-innards" }] }] }, { begin: `(?i)(?=@document([\\s'"{;]|/\\*|$))`, end: "(?<=})(?!\\G)", patterns: [{ begin: "(?i)\\G(@)document", beginCaptures: { 0: { name: "keyword.control.at-rule.document.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*[{;])", name: "meta.at-rule.document.header.css", patterns: [{ begin: "(?i)(?<![\\w-])(url-prefix|domain|regexp)(\\()", beginCaptures: { 1: { name: "support.function.document-rule.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.document-rule.css", patterns: [{ include: "#string" }, { include: "#comment-block" }, { include: "#escapes" }, { match: `[^'")\\s]+`, name: "variable.parameter.document-rule.css" }] }, { include: "#url" }, { include: "#commas" }, { include: "#comment-block" }, { include: "#escapes" }] }, { begin: "{", beginCaptures: { 0: { name: "punctuation.section.document.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.document.end.bracket.curly.css" } }, name: "meta.at-rule.document.body.css", patterns: [{ include: "$self" }] }] }, { begin: `(?i)(?=@(?:-(?:webkit|moz|o|ms)-)?keyframes([\\s'"{;]|/\\*|$))`, end: "(?<=})(?!\\G)", patterns: [{ begin: "(?i)\\G(@)(?:-(?:webkit|moz|o|ms)-)?keyframes", beginCaptures: { 0: { name: "keyword.control.at-rule.keyframes.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*{)", name: "meta.at-rule.keyframes.header.css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { captures: { 0: { patterns: [{ include: "#escapes" }] } }, match: `(?x)
|
|
23
|
-
(?:[-a-zA-Z_] | [^\\x00-\\x7F])
|
|
24
|
-
(?:[-a-zA-Z0-9_] | [^\\x00-\\x7F]
|
|
25
|
-
|\\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
26
|
-
)*`, name: "variable.parameter.keyframe-list.css" }] }, { begin: "{", beginCaptures: { 0: { name: "punctuation.section.keyframes.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.keyframes.end.bracket.curly.css" } }, name: "meta.at-rule.keyframes.body.css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { captures: { 1: { name: "entity.other.keyframe-offset.css" }, 2: { name: "entity.other.keyframe-offset.percentage.css" } }, match: `(?xi)
|
|
27
|
-
(?<![\\w-]) (from|to) (?![\\w-])
|
|
28
|
-
|
|
|
29
|
-
([-+]?(?:\\d+(?:\\.\\d+)?|\\.\\d+)%)` }, { include: "#rule-list" }] }] }, { begin: "(?i)(?=@supports(\\s|\\(|/\\*|$))", end: "(?<=})(?!\\G)|(?=;)", patterns: [{ begin: "(?i)\\G(@)supports", beginCaptures: { 0: { name: "keyword.control.at-rule.supports.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*[{;])", name: "meta.at-rule.supports.header.css", patterns: [{ include: "#feature-query-operators" }, { include: "#feature-query" }, { include: "#comment-block" }, { include: "#escapes" }] }, { begin: "{", beginCaptures: { 0: { name: "punctuation.section.supports.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.supports.end.bracket.curly.css" } }, name: "meta.at-rule.supports.body.css", patterns: [{ include: "$self" }] }] }, { begin: `(?i)((@)(-(ms|o)-)?viewport)(?=[\\s'"{;]|/\\*|$)`, beginCaptures: { 1: { name: "keyword.control.at-rule.viewport.css" }, 2: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*[@{;])", name: "meta.at-rule.viewport.css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }] }, { begin: `(?i)((@)font-feature-values)(?=[\\s'"{;]|/\\*|$)\\s*`, beginCaptures: { 1: { name: "keyword.control.at-rule.font-feature-values.css" }, 2: { name: "punctuation.definition.keyword.css" } }, contentName: "variable.parameter.font-name.css", end: "(?=\\s*[@{;])", name: "meta.at-rule.font-features.css", patterns: [{ include: "#comment-block" }, { include: "#escapes" }] }, { include: "#font-features" }, { begin: `(?i)((@)namespace)(?=[\\s'";]|/\\*|$)`, beginCaptures: { 1: { name: "keyword.control.at-rule.namespace.css" }, 2: { name: "punctuation.definition.keyword.css" } }, end: ";|(?=[@{])", endCaptures: { 0: { name: "punctuation.terminator.rule.css" } }, name: "meta.at-rule.namespace.css", patterns: [{ include: "#url" }, { captures: { 1: { patterns: [{ include: "#comment-block" }] }, 2: { name: "entity.name.function.namespace-prefix.css", patterns: [{ include: "#escapes" }] } }, match: `(?xi)
|
|
30
|
-
(?:\\G|^|(?<=\\s))
|
|
31
|
-
(?=
|
|
32
|
-
(?<=\\s|^)
|
|
33
|
-
(?:[-a-zA-Z_]|[^\\x00-\\x7F])
|
|
34
|
-
|
|
|
35
|
-
\\s*
|
|
36
|
-
/\\*(?:[^*]|\\*[^/])*\\*/
|
|
37
|
-
)
|
|
38
|
-
(.*?)
|
|
39
|
-
(
|
|
40
|
-
(?:[-a-zA-Z_] | [^\\x00-\\x7F])
|
|
41
|
-
(?:[-a-zA-Z0-9_] | [^\\x00-\\x7F]
|
|
42
|
-
|\\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
43
|
-
)*
|
|
44
|
-
)` }, { include: "#comment-block" }, { include: "#escapes" }, { include: "#string" }] }, { begin: "(?i)(?=@[\\w-]+[^;]+;s*$)", end: "(?<=;)(?!\\G)", patterns: [{ begin: "(?i)\\G(@)[\\w-]+", beginCaptures: { 0: { name: "keyword.control.at-rule.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: ";", endCaptures: { 0: { name: "punctuation.terminator.rule.css" } }, name: "meta.at-rule.header.css" }] }, { begin: "(?i)(?=@[\\w-]+(\\s|\\(|{|/\\*|$))", end: "(?<=})(?!\\G)", patterns: [{ begin: "(?i)\\G(@)[\\w-]+", beginCaptures: { 0: { name: "keyword.control.at-rule.css" }, 1: { name: "punctuation.definition.keyword.css" } }, end: "(?=\\s*[{;])", name: "meta.at-rule.header.css" }, { begin: "{", beginCaptures: { 0: { name: "punctuation.section.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.end.bracket.curly.css" } }, name: "meta.at-rule.body.css", patterns: [{ include: "$self" }] }] }] }, "color-keywords": { patterns: [{ match: "(?i)(?<![\\w-])(aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|orange|purple|red|silver|teal|white|yellow)(?![\\w-])", name: "support.constant.color.w3c-standard-color-name.css" }, { match: `(?xi) (?<![\\w-])
|
|
45
|
-
(aliceblue|antiquewhite|aquamarine|azure|beige|bisque|blanchedalmond|blueviolet|brown|burlywood
|
|
46
|
-
|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan
|
|
47
|
-
|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange
|
|
48
|
-
|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise
|
|
49
|
-
|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen
|
|
50
|
-
|gainsboro|ghostwhite|gold|goldenrod|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki
|
|
51
|
-
|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow
|
|
52
|
-
|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray
|
|
53
|
-
|lightslategrey|lightsteelblue|lightyellow|limegreen|linen|magenta|mediumaquamarine|mediumblue
|
|
54
|
-
|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise
|
|
55
|
-
|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|oldlace|olivedrab|orangered
|
|
56
|
-
|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum
|
|
57
|
-
|powderblue|rebeccapurple|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell
|
|
58
|
-
|sienna|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|thistle|tomato
|
|
59
|
-
|transparent|turquoise|violet|wheat|whitesmoke|yellowgreen)
|
|
60
|
-
(?![\\w-])`, name: "support.constant.color.w3c-extended-color-name.css" }, { match: "(?i)(?<![\\w-])currentColor(?![\\w-])", name: "support.constant.color.current.css" }, { match: `(?xi) (?<![\\w-])
|
|
61
|
-
(ActiveBorder|ActiveCaption|AppWorkspace|Background|ButtonFace|ButtonHighlight|ButtonShadow
|
|
62
|
-
|ButtonText|CaptionText|GrayText|Highlight|HighlightText|InactiveBorder|InactiveCaption
|
|
63
|
-
|InactiveCaptionText|InfoBackground|InfoText|Menu|MenuText|Scrollbar|ThreeDDarkShadow
|
|
64
|
-
|ThreeDFace|ThreeDHighlight|ThreeDLightShadow|ThreeDShadow|Window|WindowFrame|WindowText)
|
|
65
|
-
(?![\\w-])`, name: "invalid.deprecated.color.system.css" }] }, combinators: { patterns: [{ match: "/deep/|>>>", name: "invalid.deprecated.combinator.css" }, { match: ">>|>|\\+|~", name: "keyword.operator.combinator.css" }] }, commas: { match: ",", name: "punctuation.separator.list.comma.css" }, "comment-block": { begin: "/\\*", beginCaptures: { 0: { name: "punctuation.definition.comment.begin.css" } }, end: "\\*/", endCaptures: { 0: { name: "punctuation.definition.comment.end.css" } }, name: "comment.block.css" }, escapes: { patterns: [{ match: "\\\\[0-9a-fA-F]{1,6}", name: "constant.character.escape.codepoint.css" }, { begin: "\\\\$\\s*", end: "^(?<!\\G)", name: "constant.character.escape.newline.css" }, { match: "\\\\.", name: "constant.character.escape.css" }] }, "feature-query": { begin: "\\(", beginCaptures: { 0: { name: "punctuation.definition.condition.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.definition.condition.end.bracket.round.css" } }, name: "meta.feature-query.css", patterns: [{ include: "#feature-query-operators" }, { include: "#feature-query" }] }, "feature-query-operators": { patterns: [{ match: "(?i)(?<=[\\s()]|^|\\*/)(and|not|or)(?=[\\s()]|/\\*|$)", name: "keyword.operator.logical.feature.$1.css" }, { include: "#rule-list-innards" }] }, "font-features": { begin: `(?xi)
|
|
66
|
-
((@)(annotation|character-variant|ornaments|styleset|stylistic|swash))
|
|
67
|
-
(?=[\\s@'"{;]|/\\*|$)`, beginCaptures: { 1: { name: "keyword.control.at-rule.${3:/downcase}.css" }, 2: { name: "punctuation.definition.keyword.css" } }, end: "(?<=})", name: "meta.at-rule.${3:/downcase}.css", patterns: [{ begin: "{", beginCaptures: { 0: { name: "punctuation.section.property-list.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.property-list.end.bracket.curly.css" } }, name: "meta.property-list.font-feature.css", patterns: [{ captures: { 0: { patterns: [{ include: "#escapes" }] } }, match: `(?x)
|
|
68
|
-
(?: [-a-zA-Z_] | [^\\x00-\\x7F] )
|
|
69
|
-
(?: [-a-zA-Z0-9_] | [^\\x00-\\x7F]
|
|
70
|
-
| \\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
71
|
-
)*`, name: "variable.font-feature.css" }, { include: "#rule-list-innards" }] }] }, "functional-pseudo-classes": { patterns: [{ begin: "(?i)((:)dir)(\\()", beginCaptures: { 1: { name: "entity.other.attribute-name.pseudo-class.css" }, 2: { name: "punctuation.definition.entity.css" }, 3: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { match: "(?i)(?<![\\w-])(ltr|rtl)(?![\\w-])", name: "support.constant.text-direction.css" }, { include: "#property-values" }] }, { begin: "(?i)((:)lang)(\\()", beginCaptures: { 1: { name: "entity.other.attribute-name.pseudo-class.css" }, 2: { name: "punctuation.definition.entity.css" }, 3: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, patterns: [{ match: "(?<=[(,\\s])[a-zA-Z]+(-[a-zA-Z0-9]*|\\\\(?:[0-9a-fA-F]{1,6}|.))*(?=[),\\s])", name: "support.constant.language-range.css" }, { begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.css" } }, end: '"', endCaptures: { 0: { name: "punctuation.definition.string.end.css" } }, name: "string.quoted.double.css", patterns: [{ include: "#escapes" }, { match: '(?<=["\\s])[a-zA-Z*]+(-[a-zA-Z0-9*]*)*(?=["\\s])', name: "support.constant.language-range.css" }] }, { begin: "'", beginCaptures: { 0: { name: "punctuation.definition.string.begin.css" } }, end: "'", endCaptures: { 0: { name: "punctuation.definition.string.end.css" } }, name: "string.quoted.single.css", patterns: [{ include: "#escapes" }, { match: "(?<=['\\s])[a-zA-Z*]+(-[a-zA-Z0-9*]*)*(?=['\\s])", name: "support.constant.language-range.css" }] }, { include: "#commas" }] }, { begin: "(?i)((:)(?:not|has|matches|where|is))(\\()", beginCaptures: { 1: { name: "entity.other.attribute-name.pseudo-class.css" }, 2: { name: "punctuation.definition.entity.css" }, 3: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, patterns: [{ include: "#selector-innards" }] }, { begin: "(?i)((:)nth-(?:last-)?(?:child|of-type))(\\()", beginCaptures: { 1: { name: "entity.other.attribute-name.pseudo-class.css" }, 2: { name: "punctuation.definition.entity.css" }, 3: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, patterns: [{ match: "(?i)[+-]?(\\d+n?|n)(\\s*[+-]\\s*\\d+)?", name: "constant.numeric.css" }, { match: "(?i)even|odd", name: "support.constant.parity.css" }] }] }, functions: { patterns: [{ begin: "(?i)(?<![\\w-])(calc)(\\()", beginCaptures: { 1: { name: "support.function.calc.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.calc.css", patterns: [{ match: "[*/]|(?<=\\s|^)[-+](?=\\s|$)", name: "keyword.operator.arithmetic.css" }, { include: "#property-values" }] }, { begin: "(?i)(?<![\\w-])(rgba?|rgb|hsla?|hsl|hwb|lab|oklab|lch|oklch|color)(\\()", beginCaptures: { 1: { name: "support.function.misc.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.color.css", patterns: [{ include: "#property-values" }] }, { begin: `(?xi) (?<![\\w-])
|
|
72
|
-
(
|
|
73
|
-
(?:-webkit-|-moz-|-o-)?
|
|
74
|
-
(?:repeating-)?
|
|
75
|
-
(?:linear|radial|conic)
|
|
76
|
-
-gradient
|
|
77
|
-
)
|
|
78
|
-
(\\()`, beginCaptures: { 1: { name: "support.function.gradient.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.gradient.css", patterns: [{ match: "(?i)(?<![\\w-])(from|to|at|in|hue)(?![\\w-])", name: "keyword.operator.gradient.css" }, { include: "#property-values" }] }, { begin: "(?i)(?<![\\w-])(-webkit-gradient)(\\()", beginCaptures: { 1: { name: "invalid.deprecated.gradient.function.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.gradient.invalid.deprecated.gradient.css", patterns: [{ begin: "(?i)(?<![\\w-])(from|to|color-stop)(\\()", beginCaptures: { 1: { name: "invalid.deprecated.function.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, patterns: [{ include: "#property-values" }] }, { include: "#property-values" }] }, { begin: `(?xi) (?<![\\w-])
|
|
79
|
-
(annotation|attr|blur|brightness|character-variant|clamp|contrast|counters?
|
|
80
|
-
|cross-fade|drop-shadow|element|fit-content|format|grayscale|hue-rotate|color-mix
|
|
81
|
-
|image-set|invert|local|max|min|minmax|opacity|ornaments|repeat|saturate|sepia
|
|
82
|
-
|styleset|stylistic|swash|symbols
|
|
83
|
-
|cos|sin|tan|acos|asin|atan|atan2|hypot|sqrt|pow|log|exp|abs|sign)
|
|
84
|
-
(\\()`, beginCaptures: { 1: { name: "support.function.misc.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.misc.css", patterns: [{ match: `(?i)(?<=[,\\s"]|\\*/|^)\\d+x(?=[\\s,"')]|/\\*|$)`, name: "constant.numeric.other.density.css" }, { include: "#property-values" }, { match: `[^'"),\\s]+`, name: "variable.parameter.misc.css" }] }, { begin: "(?i)(?<![\\w-])(circle|ellipse|inset|polygon|rect)(\\()", beginCaptures: { 1: { name: "support.function.shape.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.shape.css", patterns: [{ match: "(?i)(?<=\\s|^|\\*/)(at|round)(?=\\s|/\\*|$)", name: "keyword.operator.shape.css" }, { include: "#property-values" }] }, { begin: "(?i)(?<![\\w-])(cubic-bezier|steps)(\\()", beginCaptures: { 1: { name: "support.function.timing-function.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.timing-function.css", patterns: [{ match: "(?i)(?<![\\w-])(start|end)(?=\\s*\\)|$)", name: "support.constant.step-direction.css" }, { include: "#property-values" }] }, { begin: `(?xi) (?<![\\w-])
|
|
85
|
-
( (?:translate|scale|rotate)(?:[XYZ]|3D)?
|
|
86
|
-
| matrix(?:3D)?
|
|
87
|
-
| skew[XY]?
|
|
88
|
-
| perspective
|
|
89
|
-
)
|
|
90
|
-
(\\()`, beginCaptures: { 1: { name: "support.function.transform.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, patterns: [{ include: "#property-values" }] }, { include: "#url" }, { begin: "(?i)(?<![\\w-])(var)(\\()", beginCaptures: { 1: { name: "support.function.misc.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.variable.css", patterns: [{ match: `(?x)
|
|
91
|
-
--
|
|
92
|
-
(?:[-a-zA-Z_] | [^\\x00-\\x7F])
|
|
93
|
-
(?:[-a-zA-Z0-9_] | [^\\x00-\\x7F]
|
|
94
|
-
|\\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
95
|
-
)*`, name: "variable.argument.css" }, { include: "#property-values" }] }] }, "media-feature-keywords": { match: `(?xi)
|
|
96
|
-
(?<=^|\\s|:|\\*/)
|
|
97
|
-
(?: portrait
|
|
98
|
-
| landscape
|
|
99
|
-
| progressive
|
|
100
|
-
| interlace
|
|
101
|
-
| fullscreen
|
|
102
|
-
| standalone
|
|
103
|
-
| minimal-ui
|
|
104
|
-
| browser
|
|
105
|
-
| hover
|
|
106
|
-
)
|
|
107
|
-
(?=\\s|\\)|$)`, name: "support.constant.property-value.css" }, "media-features": { captures: { 1: { name: "support.type.property-name.media.css" }, 2: { name: "support.type.property-name.media.css" }, 3: { name: "support.type.vendored.property-name.media.css" } }, match: `(?xi)
|
|
108
|
-
(?<=^|\\s|\\(|\\*/)
|
|
109
|
-
(?:
|
|
110
|
-
|
|
111
|
-
(
|
|
112
|
-
(?:min-|max-)?
|
|
113
|
-
(?: height
|
|
114
|
-
| width
|
|
115
|
-
| aspect-ratio
|
|
116
|
-
| color
|
|
117
|
-
| color-index
|
|
118
|
-
| monochrome
|
|
119
|
-
| resolution
|
|
120
|
-
)
|
|
121
|
-
| grid
|
|
122
|
-
| scan
|
|
123
|
-
| orientation
|
|
124
|
-
| display-mode
|
|
125
|
-
| hover
|
|
126
|
-
)
|
|
127
|
-
|
|
|
128
|
-
|
|
129
|
-
(
|
|
130
|
-
(?:min-|max-)?
|
|
131
|
-
device-
|
|
132
|
-
(?: height
|
|
133
|
-
| width
|
|
134
|
-
| aspect-ratio
|
|
135
|
-
)
|
|
136
|
-
)
|
|
137
|
-
|
|
|
138
|
-
|
|
139
|
-
(
|
|
140
|
-
(?:
|
|
141
|
-
|
|
142
|
-
[-_]
|
|
143
|
-
(?: webkit
|
|
144
|
-
| apple|khtml
|
|
145
|
-
| epub
|
|
146
|
-
| moz
|
|
147
|
-
| ms
|
|
148
|
-
| o
|
|
149
|
-
| xv|ah|rim|atsc|
|
|
150
|
-
hp|tc|wap|ro
|
|
151
|
-
)
|
|
152
|
-
|
|
|
153
|
-
|
|
154
|
-
(?: mso
|
|
155
|
-
| prince
|
|
156
|
-
)
|
|
157
|
-
)
|
|
158
|
-
-
|
|
159
|
-
[\\w-]+
|
|
160
|
-
(?=
|
|
161
|
-
\\s*
|
|
162
|
-
(?:
|
|
163
|
-
/\\*
|
|
164
|
-
(?:[^*]|\\*[^/])*
|
|
165
|
-
\\*/
|
|
166
|
-
)?
|
|
167
|
-
\\s*
|
|
168
|
-
[:)]
|
|
169
|
-
)
|
|
170
|
-
)
|
|
171
|
-
)
|
|
172
|
-
(?=\\s|$|[><:=]|\\)|/\\*)` }, "media-query": { begin: "\\G", end: "(?=\\s*[{;])", patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { include: "#media-types" }, { match: "(?i)(?<=\\s|^|,|\\*/)(only|not)(?=\\s|{|/\\*|$)", name: "keyword.operator.logical.$1.media.css" }, { match: "(?i)(?<=\\s|^|\\*/|\\))and(?=\\s|/\\*|$)", name: "keyword.operator.logical.and.media.css" }, { match: ",(?:(?:\\s*,)+|(?=\\s*[;){]))", name: "invalid.illegal.comma.css" }, { include: "#commas" }, { begin: "\\(", beginCaptures: { 0: { name: "punctuation.definition.parameters.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.definition.parameters.end.bracket.round.css" } }, patterns: [{ include: "#media-features" }, { include: "#media-feature-keywords" }, { match: ":", name: "punctuation.separator.key-value.css" }, { match: ">=|<=|=|<|>", name: "keyword.operator.comparison.css" }, { captures: { 1: { name: "constant.numeric.css" }, 2: { name: "keyword.operator.arithmetic.css" }, 3: { name: "constant.numeric.css" } }, match: "(\\d+)\\s*(/)\\s*(\\d+)", name: "meta.ratio.css" }, { include: "#numeric-values" }, { include: "#comment-block" }] }] }, "media-query-list": { begin: "(?=\\s*[^{;])", end: "(?=\\s*[{;])", patterns: [{ include: "#media-query" }] }, "media-types": { captures: { 1: { name: "support.constant.media.css" }, 2: { name: "invalid.deprecated.constant.media.css" } }, match: `(?xi)
|
|
173
|
-
(?<=^|\\s|,|\\*/)
|
|
174
|
-
(?:
|
|
175
|
-
|
|
176
|
-
(all|print|screen|speech)
|
|
177
|
-
|
|
|
178
|
-
|
|
179
|
-
(aural|braille|embossed|handheld|projection|tty|tv)
|
|
180
|
-
)
|
|
181
|
-
(?=$|[{,\\s;]|/\\*)` }, "numeric-values": { patterns: [{ captures: { 1: { name: "punctuation.definition.constant.css" } }, match: "(#)(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})\\b", name: "constant.other.color.rgb-value.hex.css" }, { captures: { 1: { name: "keyword.other.unit.percentage.css" }, 2: { name: "keyword.other.unit.${2:/downcase}.css" } }, match: `(?xi) (?<![\\w-])
|
|
182
|
-
[-+]?
|
|
183
|
-
|
|
184
|
-
(?:
|
|
185
|
-
[0-9]+ (?:\\.[0-9]+)?
|
|
186
|
-
| \\.[0-9]+
|
|
187
|
-
)
|
|
188
|
-
|
|
189
|
-
(?:
|
|
190
|
-
(?<=[0-9])
|
|
191
|
-
E
|
|
192
|
-
[-+]?
|
|
193
|
-
[0-9]+
|
|
194
|
-
)?
|
|
195
|
-
|
|
196
|
-
(?:
|
|
197
|
-
(%)
|
|
198
|
-
| ( deg|grad|rad|turn
|
|
199
|
-
| Hz|kHz
|
|
200
|
-
| ch|cm|em|ex|fr|in|mm|mozmm|
|
|
201
|
-
pc|pt|px|q|rem|rch|rex|rlh|
|
|
202
|
-
ic|ric|rcap|vh|vw|vb|vi|svh|
|
|
203
|
-
svw|svb|svi|dvh|dvw|dvb|dvi|
|
|
204
|
-
lvh|lvw|lvb|lvi|vmax|vmin|
|
|
205
|
-
cqw|cqi|cqh|cqb|cqmin|cqmax
|
|
206
|
-
| dpi|dpcm|dppx
|
|
207
|
-
| s|ms
|
|
208
|
-
)
|
|
209
|
-
\\b
|
|
210
|
-
)?`, name: "constant.numeric.css" }] }, "property-keywords": { patterns: [{ match: `(?xi) (?<![\\w-])
|
|
211
|
-
(above|absolute|active|add|additive|after-edge|alias|all|all-petite-caps|all-scroll|all-small-caps|alpha|alphabetic|alternate|alternate-reverse
|
|
212
|
-
|always|antialiased|auto|auto-fill|auto-fit|auto-pos|available|avoid|avoid-column|avoid-page|avoid-region|backwards|balance|baseline|before-edge|below|bevel
|
|
213
|
-
|bidi-override|blink|block|block-axis|block-start|block-end|bold|bolder|border|border-box|both|bottom|bottom-outside|break-all|break-word|bullets
|
|
214
|
-
|butt|capitalize|caption|cell|center|central|char|circle|clip|clone|close-quote|closest-corner|closest-side|col-resize|collapse|color|color-burn
|
|
215
|
-
|color-dodge|column|column-reverse|common-ligatures|compact|condensed|contain|content|content-box|contents|context-menu|contextual|copy|cover
|
|
216
|
-
|crisp-edges|crispEdges|crosshair|cyclic|dark|darken|dashed|decimal|default|dense|diagonal-fractions|difference|digits|disabled|disc|discretionary-ligatures
|
|
217
|
-
|distribute|distribute-all-lines|distribute-letter|distribute-space|dot|dotted|double|double-circle|downleft|downright|e-resize|each-line|ease|ease-in
|
|
218
|
-
|ease-in-out|ease-out|economy|ellipse|ellipsis|embed|end|evenodd|ew-resize|exact|exclude|exclusion|expanded|extends|extra-condensed|extra-expanded
|
|
219
|
-
|fallback|farthest-corner|farthest-side|fill|fill-available|fill-box|filled|fit-content|fixed|flat|flex|flex-end|flex-start|flip|flow-root|forwards|freeze
|
|
220
|
-
|from-image|full-width|geometricPrecision|georgian|grab|grabbing|grayscale|grid|groove|hand|hanging|hard-light|help|hidden|hide
|
|
221
|
-
|historical-forms|historical-ligatures|horizontal|horizontal-tb|hue|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space
|
|
222
|
-
|ideographic|inactive|infinite|inherit|initial|inline|inline-axis|inline-block|inline-end|inline-flex|inline-grid|inline-list-item|inline-start
|
|
223
|
-
|inline-table|inset|inside|inter-character|inter-ideograph|inter-word|intersect|invert|isolate|isolate-override|italic|jis04|jis78|jis83
|
|
224
|
-
|jis90|justify|justify-all|kannada|keep-all|landscape|large|larger|left|light|lighten|lighter|line|line-edge|line-through|linear|linearRGB
|
|
225
|
-
|lining-nums|list-item|local|loose|lowercase|lr|lr-tb|ltr|luminance|luminosity|main-size|mandatory|manipulation|manual|margin-box|match-parent
|
|
226
|
-
|match-source|mathematical|max-content|medium|menu|message-box|middle|min-content|miter|mixed|move|multiply|n-resize|narrower|ne-resize
|
|
227
|
-
|nearest-neighbor|nesw-resize|newspaper|no-change|no-clip|no-close-quote|no-common-ligatures|no-contextual|no-discretionary-ligatures
|
|
228
|
-
|no-drop|no-historical-ligatures|no-open-quote|no-repeat|none|nonzero|normal|not-allowed|nowrap|ns-resize|numbers|numeric|nw-resize|nwse-resize
|
|
229
|
-
|oblique|oldstyle-nums|open|open-quote|optimizeLegibility|optimizeQuality|optimizeSpeed|optional|ordinal|outset|outside|over|overlay|overline|padding
|
|
230
|
-
|padding-box|page|painted|pan-down|pan-left|pan-right|pan-up|pan-x|pan-y|paused|petite-caps|pixelated|plaintext|pointer|portrait|pre|pre-line
|
|
231
|
-
|pre-wrap|preserve-3d|progress|progressive|proportional-nums|proportional-width|proximity|radial|recto|region|relative|remove|repeat|repeat-[xy]
|
|
232
|
-
|reset-size|reverse|revert|ridge|right|rl|rl-tb|round|row|row-resize|row-reverse|row-severse|rtl|ruby|ruby-base|ruby-base-container|ruby-text
|
|
233
|
-
|ruby-text-container|run-in|running|s-resize|saturation|scale-down|screen|scroll|scroll-position|se-resize|semi-condensed|semi-expanded|separate
|
|
234
|
-
|sesame|show|sideways|sideways-left|sideways-lr|sideways-right|sideways-rl|simplified|slashed-zero|slice|small|small-caps|small-caption|smaller
|
|
235
|
-
|smooth|soft-light|solid|space|space-around|space-between|space-evenly|spell-out|square|sRGB|stacked-fractions|start|static|status-bar|swap
|
|
236
|
-
|step-end|step-start|sticky|stretch|strict|stroke|stroke-box|style|sub|subgrid|subpixel-antialiased|subtract|super|sw-resize|symbolic|table
|
|
237
|
-
|table-caption|table-cell|table-column|table-column-group|table-footer-group|table-header-group|table-row|table-row-group|tabular-nums|tb|tb-rl
|
|
238
|
-
|text|text-after-edge|text-before-edge|text-bottom|text-top|thick|thin|titling-caps|top|top-outside|touch|traditional|transparent|triangle
|
|
239
|
-
|ultra-condensed|ultra-expanded|under|underline|unicase|unset|upleft|uppercase|upright|use-glyph-orientation|use-script|verso|vertical
|
|
240
|
-
|vertical-ideographic|vertical-lr|vertical-rl|vertical-text|view-box|visible|visibleFill|visiblePainted|visibleStroke|w-resize|wait|wavy
|
|
241
|
-
|weight|whitespace|wider|words|wrap|wrap-reverse|x|x-large|x-small|xx-large|xx-small|y|zero|zoom-in|zoom-out)
|
|
242
|
-
(?![\\w-])`, name: "support.constant.property-value.css" }, { match: `(?xi) (?<![\\w-])
|
|
243
|
-
(arabic-indic|armenian|bengali|cambodian|circle|cjk-decimal|cjk-earthly-branch|cjk-heavenly-stem|cjk-ideographic
|
|
244
|
-
|decimal|decimal-leading-zero|devanagari|disc|disclosure-closed|disclosure-open|ethiopic-halehame-am
|
|
245
|
-
|ethiopic-halehame-ti-e[rt]|ethiopic-numeric|georgian|gujarati|gurmukhi|hangul|hangul-consonant|hebrew
|
|
246
|
-
|hiragana|hiragana-iroha|japanese-formal|japanese-informal|kannada|katakana|katakana-iroha|khmer
|
|
247
|
-
|korean-hangul-formal|korean-hanja-formal|korean-hanja-informal|lao|lower-alpha|lower-armenian|lower-greek
|
|
248
|
-
|lower-latin|lower-roman|malayalam|mongolian|myanmar|oriya|persian|simp-chinese-formal|simp-chinese-informal
|
|
249
|
-
|square|tamil|telugu|thai|tibetan|trad-chinese-formal|trad-chinese-informal|upper-alpha|upper-armenian
|
|
250
|
-
|upper-latin|upper-roman|urdu)
|
|
251
|
-
(?![\\w-])`, name: "support.constant.property-value.list-style-type.css" }, { match: "(?<![\\w-])(?i:-(?:ah|apple|atsc|epub|hp|khtml|moz|ms|o|rim|ro|tc|wap|webkit|xv)|(?:mso|prince))-[a-zA-Z-]+", name: "support.constant.vendored.property-value.css" }, { match: "(?<![\\w-])(?i:arial|century|comic|courier|garamond|georgia|helvetica|impact|lucida|symbol|system-ui|system|tahoma|times|trebuchet|ui-monospace|ui-rounded|ui-sans-serif|ui-serif|utopia|verdana|webdings|sans-serif|serif|monospace)(?![\\w-])", name: "support.constant.font-name.css" }] }, "property-names": { patterns: [{ match: `(?xi) (?<![\\w-])
|
|
252
|
-
(?:
|
|
253
|
-
|
|
254
|
-
accent-color|additive-symbols|align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration
|
|
255
|
-
| animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backdrop-filter
|
|
256
|
-
| backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image
|
|
257
|
-
| background-origin|background-position|background-position-[xy]|background-repeat|background-size|bleed|block-size|border
|
|
258
|
-
| border-block-end|border-block-end-color|border-block-end-style|border-block-end-width|border-block-start|border-block-start-color
|
|
259
|
-
| border-block-start-style|border-block-start-width|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius
|
|
260
|
-
| border-bottom-style|border-bottom-width|border-collapse|border-color|border-end-end-radius|border-end-start-radius|border-image
|
|
261
|
-
| border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-inline-end
|
|
262
|
-
| border-inline-end-color|border-inline-end-style|border-inline-end-width|border-inline-start|border-inline-start-color
|
|
263
|
-
| border-inline-start-style|border-inline-start-width|border-left|border-left-color|border-left-style|border-left-width
|
|
264
|
-
| border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-start-end-radius
|
|
265
|
-
| border-start-start-radius|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style
|
|
266
|
-
| border-top-width|border-width|bottom|box-decoration-break|box-shadow|box-sizing|break-after|break-before|break-inside|caption-side
|
|
267
|
-
| caret-color|clear|clip|clip-path|clip-rule|color|color-adjust|color-interpolation-filters|color-scheme|column-count|column-fill|column-gap
|
|
268
|
-
| column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|contain|container|container-name|container-type|content|counter-increment
|
|
269
|
-
| counter-reset|cursor|direction|display|empty-cells|enable-background|fallback|fill|fill-opacity|fill-rule|filter|flex|flex-basis
|
|
270
|
-
| flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|flood-color|flood-opacity|font|font-display|font-family
|
|
271
|
-
| font-feature-settings|font-kerning|font-language-override|font-optical-sizing|font-size|font-size-adjust|font-stretch
|
|
272
|
-
| font-style|font-synthesis|font-variant|font-variant-alternates|font-variant-caps|font-variant-east-asian|font-variant-ligatures
|
|
273
|
-
| font-variant-numeric|font-variant-position|font-variation-settings|font-weight|gap|glyph-orientation-horizontal|glyph-orientation-vertical
|
|
274
|
-
| grid|grid-area|grid-auto-columns|grid-auto-flow|grid-auto-rows|grid-column|grid-column-end|grid-column-gap|grid-column-start
|
|
275
|
-
| grid-gap|grid-row|grid-row-end|grid-row-gap|grid-row-start|grid-template|grid-template-areas|grid-template-columns|grid-template-rows
|
|
276
|
-
| hanging-punctuation|height|hyphens|image-orientation|image-rendering|image-resolution|ime-mode|initial-letter|initial-letter-align
|
|
277
|
-
| inline-size|inset|inset-block|inset-block-end|inset-block-start|inset-inline|inset-inline-end|inset-inline-start|isolation
|
|
278
|
-
| justify-content|justify-items|justify-self|kerning|left|letter-spacing|lighting-color|line-break|line-clamp|line-height|list-style
|
|
279
|
-
| list-style-image|list-style-position|list-style-type|margin|margin-block|margin-block-end|margin-block-start|margin-bottom|margin-inline|margin-inline-end|margin-inline-start
|
|
280
|
-
| margin-left|margin-right|margin-top|marker-end|marker-mid|marker-start|marks|mask|mask-border|mask-border-mode|mask-border-outset
|
|
281
|
-
| mask-border-repeat|mask-border-slice|mask-border-source|mask-border-width|mask-clip|mask-composite|mask-image|mask-mode
|
|
282
|
-
| mask-origin|mask-position|mask-repeat|mask-size|mask-type|max-block-size|max-height|max-inline-size|max-lines|max-width
|
|
283
|
-
| max-zoom|min-block-size|min-height|min-inline-size|min-width|min-zoom|mix-blend-mode|negative|object-fit|object-position
|
|
284
|
-
| offset|offset-anchor|offset-distance|offset-path|offset-position|offset-rotation|opacity|order|orientation|orphans
|
|
285
|
-
| outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-anchor|overflow-block|overflow-inline
|
|
286
|
-
| overflow-wrap|overflow-[xy]|overscroll-behavior|overscroll-behavior-block|overscroll-behavior-inline|overscroll-behavior-[xy]
|
|
287
|
-
| pad|padding|padding-block|padding-block-end|padding-block-start|padding-bottom|padding-inline|padding-inline-end|padding-inline-start|padding-left
|
|
288
|
-
| padding-right|padding-top|page-break-after|page-break-before|page-break-inside|paint-order|perspective|perspective-origin
|
|
289
|
-
| place-content|place-items|place-self|pointer-events|position|prefix|quotes|range|resize|right|rotate|row-gap|ruby-align
|
|
290
|
-
| ruby-merge|ruby-position|scale|scroll-behavior|scroll-margin|scroll-margin-block|scroll-margin-block-end|scroll-margin-block-start
|
|
291
|
-
| scroll-margin-bottom|scroll-margin-inline|scroll-margin-inline-end|scroll-margin-inline-start|scroll-margin-left|scroll-margin-right
|
|
292
|
-
| scroll-margin-top|scroll-padding|scroll-padding-block|scroll-padding-block-end|scroll-padding-block-start|scroll-padding-bottom
|
|
293
|
-
| scroll-padding-inline|scroll-padding-inline-end|scroll-padding-inline-start|scroll-padding-left|scroll-padding-right
|
|
294
|
-
| scroll-padding-top|scroll-snap-align|scroll-snap-coordinate|scroll-snap-destination|scroll-snap-stop|scroll-snap-type
|
|
295
|
-
| scrollbar-color|scrollbar-gutter|scrollbar-width|shape-image-threshold|shape-margin|shape-outside|shape-rendering|size
|
|
296
|
-
| speak-as|src|stop-color|stop-opacity|stroke|stroke-dasharray|stroke-dashoffset|stroke-linecap|stroke-linejoin|stroke-miterlimit
|
|
297
|
-
| stroke-opacity|stroke-width|suffix|symbols|system|tab-size|table-layout|text-align|text-align-last|text-anchor|text-combine-upright
|
|
298
|
-
| text-decoration|text-decoration-color|text-decoration-line|text-decoration-skip|text-decoration-skip-ink|text-decoration-style|text-decoration-thickness
|
|
299
|
-
| text-emphasis|text-emphasis-color|text-emphasis-position|text-emphasis-style|text-indent|text-justify|text-orientation
|
|
300
|
-
| text-overflow|text-rendering|text-shadow|text-size-adjust|text-transform|text-underline-offset|text-underline-position|top|touch-action|transform
|
|
301
|
-
| transform-box|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function
|
|
302
|
-
| translate|unicode-bidi|unicode-range|user-select|user-zoom|vertical-align|visibility|white-space|widows|width|will-change
|
|
303
|
-
| word-break|word-spacing|word-wrap|writing-mode|z-index|zoom
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
| alignment-baseline|baseline-shift|clip-rule|color-interpolation|color-interpolation-filters|color-profile
|
|
307
|
-
| color-rendering|cx|cy|dominant-baseline|enable-background|fill|fill-opacity|fill-rule|flood-color|flood-opacity
|
|
308
|
-
| glyph-orientation-horizontal|glyph-orientation-vertical|height|kerning|lighting-color|marker-end|marker-mid
|
|
309
|
-
| marker-start|r|rx|ry|shape-rendering|stop-color|stop-opacity|stroke|stroke-dasharray|stroke-dashoffset|stroke-linecap
|
|
310
|
-
| stroke-linejoin|stroke-miterlimit|stroke-opacity|stroke-width|text-anchor|width|x|y
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
| adjust|after|align|align-last|alignment|alignment-adjust|appearance|attachment|azimuth|background-break
|
|
314
|
-
| balance|baseline|before|bidi|binding|bookmark|bookmark-label|bookmark-level|bookmark-target|border-length
|
|
315
|
-
| bottom-color|bottom-left-radius|bottom-right-radius|bottom-style|bottom-width|box|box-align|box-direction
|
|
316
|
-
| box-flex|box-flex-group|box-lines|box-ordinal-group|box-orient|box-pack|break|character|collapse|column
|
|
317
|
-
| column-break-after|column-break-before|count|counter|crop|cue|cue-after|cue-before|decoration|decoration-break
|
|
318
|
-
| delay|display-model|display-role|down|drop|drop-initial-after-adjust|drop-initial-after-align|drop-initial-before-adjust
|
|
319
|
-
| drop-initial-before-align|drop-initial-size|drop-initial-value|duration|elevation|emphasis|family|fit|fit-position
|
|
320
|
-
| flex-group|float-offset|gap|grid-columns|grid-rows|hanging-punctuation|header|hyphenate|hyphenate-after|hyphenate-before
|
|
321
|
-
| hyphenate-character|hyphenate-lines|hyphenate-resource|icon|image|increment|indent|index|initial-after-adjust
|
|
322
|
-
| initial-after-align|initial-before-adjust|initial-before-align|initial-size|initial-value|inline-box-align|iteration-count
|
|
323
|
-
| justify|label|left-color|left-style|left-width|length|level|line|line-stacking|line-stacking-ruby|line-stacking-shift
|
|
324
|
-
| line-stacking-strategy|lines|list|mark|mark-after|mark-before|marks|marquee|marquee-direction|marquee-play-count|marquee-speed
|
|
325
|
-
| marquee-style|max|min|model|move-to|name|nav|nav-down|nav-index|nav-left|nav-right|nav-up|new|numeral|offset|ordinal-group
|
|
326
|
-
| orient|origin|overflow-style|overhang|pack|page|page-policy|pause|pause-after|pause-before|phonemes|pitch|pitch-range
|
|
327
|
-
| play-count|play-during|play-state|point|presentation|presentation-level|profile|property|punctuation|punctuation-trim
|
|
328
|
-
| radius|rate|rendering-intent|repeat|replace|reset|resolution|resource|respond-to|rest|rest-after|rest-before|richness
|
|
329
|
-
| right-color|right-style|right-width|role|rotation|rotation-point|rows|ruby|ruby-overhang|ruby-span|rule|rule-color
|
|
330
|
-
| rule-style|rule-width|shadow|size|size-adjust|sizing|space|space-collapse|spacing|span|speak|speak-header|speak-numeral
|
|
331
|
-
| speak-punctuation|speech|speech-rate|speed|stacking|stacking-ruby|stacking-shift|stacking-strategy|stress|stretch
|
|
332
|
-
| string-set|style|style-image|style-position|style-type|target|target-name|target-new|target-position|text|text-height
|
|
333
|
-
| text-justify|text-outline|text-replace|text-wrap|timing-function|top-color|top-left-radius|top-right-radius|top-style
|
|
334
|
-
| top-width|trim|unicode|up|user-select|variant|voice|voice-balance|voice-duration|voice-family|voice-pitch|voice-pitch-range
|
|
335
|
-
| voice-rate|voice-stress|voice-volume|volume|weight|white|white-space-collapse|word|wrap
|
|
336
|
-
)
|
|
337
|
-
(?![\\w-])`, name: "support.type.property-name.css" }, { match: "(?<![\\w-])(?i:-(?:ah|apple|atsc|epub|hp|khtml|moz|ms|o|rim|ro|tc|wap|webkit|xv)|(?:mso|prince))-[a-zA-Z-]+", name: "support.type.vendored.property-name.css" }] }, "property-values": { patterns: [{ include: "#commas" }, { include: "#comment-block" }, { include: "#escapes" }, { include: "#functions" }, { include: "#property-keywords" }, { include: "#unicode-range" }, { include: "#numeric-values" }, { include: "#color-keywords" }, { include: "#string" }, { match: "!\\s*important(?![\\w-])", name: "keyword.other.important.css" }] }, "pseudo-classes": { captures: { 1: { name: "punctuation.definition.entity.css" }, 2: { name: "invalid.illegal.colon.css" } }, match: `(?xi)
|
|
338
|
-
(:)(:*)
|
|
339
|
-
(?: active|any-link|checked|default|disabled|empty|enabled|first
|
|
340
|
-
| (?:first|last|only)-(?:child|of-type)|focus|focus-visible|focus-within|fullscreen|host|hover
|
|
341
|
-
| in-range|indeterminate|invalid|left|link|optional|out-of-range
|
|
342
|
-
| read-only|read-write|required|right|root|scope|target|unresolved
|
|
343
|
-
| valid|visited
|
|
344
|
-
)(?![\\w-]|\\s*[;}])`, name: "entity.other.attribute-name.pseudo-class.css" }, "pseudo-elements": { captures: { 1: { name: "punctuation.definition.entity.css" }, 2: { name: "punctuation.definition.entity.css" } }, match: `(?xi)
|
|
345
|
-
(?:
|
|
346
|
-
(::?)
|
|
347
|
-
(?: after
|
|
348
|
-
| before
|
|
349
|
-
| first-letter
|
|
350
|
-
| first-line
|
|
351
|
-
| (?:-(?:ah|apple|atsc|epub|hp|khtml|moz
|
|
352
|
-
|ms|o|rim|ro|tc|wap|webkit|xv)
|
|
353
|
-
| (?:mso|prince))
|
|
354
|
-
-[a-z-]+
|
|
355
|
-
)
|
|
356
|
-
|
|
|
357
|
-
(::)
|
|
358
|
-
(?: backdrop
|
|
359
|
-
| content
|
|
360
|
-
| grammar-error
|
|
361
|
-
| marker
|
|
362
|
-
| placeholder
|
|
363
|
-
| selection
|
|
364
|
-
| shadow
|
|
365
|
-
| spelling-error
|
|
366
|
-
)
|
|
367
|
-
)
|
|
368
|
-
(?![\\w-]|\\s*[;}])`, name: "entity.other.attribute-name.pseudo-element.css" }, "rule-list": { begin: "{", beginCaptures: { 0: { name: "punctuation.section.property-list.begin.bracket.curly.css" } }, end: "}", endCaptures: { 0: { name: "punctuation.section.property-list.end.bracket.curly.css" } }, name: "meta.property-list.css", patterns: [{ include: "#rule-list-innards" }] }, "rule-list-innards": { patterns: [{ include: "#comment-block" }, { include: "#escapes" }, { include: "#font-features" }, { match: `(?x) (?<![\\w-])
|
|
369
|
-
--
|
|
370
|
-
(?:[-a-zA-Z_] | [^\\x00-\\x7F])
|
|
371
|
-
(?:[-a-zA-Z0-9_] | [^\\x00-\\x7F]
|
|
372
|
-
|\\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
373
|
-
)*`, name: "variable.css" }, { begin: "(?<![-a-zA-Z])(?=[-a-zA-Z])", end: "$|(?![-a-zA-Z])", name: "meta.property-name.css", patterns: [{ include: "#property-names" }] }, { begin: "(:)\\s*", beginCaptures: { 1: { name: "punctuation.separator.key-value.css" } }, contentName: "meta.property-value.css", end: "\\s*(;)|\\s*(?=}|\\))", endCaptures: { 1: { name: "punctuation.terminator.rule.css" } }, patterns: [{ include: "#comment-block" }, { include: "#property-values" }] }, { match: ";", name: "punctuation.terminator.rule.css" }] }, selector: { begin: `(?x)
|
|
374
|
-
(?=
|
|
375
|
-
(?:\\|)?
|
|
376
|
-
(?:
|
|
377
|
-
[-\\[:.*\\#a-zA-Z_]
|
|
378
|
-
|
|
|
379
|
-
[^\\x00-\\x7F]
|
|
380
|
-
|
|
|
381
|
-
\\\\
|
|
382
|
-
(?:[0-9a-fA-F]{1,6}|.)
|
|
383
|
-
)
|
|
384
|
-
)`, end: "(?=\\s*[/@{)])", name: "meta.selector.css", patterns: [{ include: "#selector-innards" }] }, "selector-innards": { patterns: [{ include: "#comment-block" }, { include: "#commas" }, { include: "#escapes" }, { include: "#combinators" }, { captures: { 1: { name: "entity.other.namespace-prefix.css" }, 2: { name: "punctuation.separator.css" } }, match: `(?x)
|
|
385
|
-
(?:^|(?<=[\\s,(};]))
|
|
386
|
-
(?!
|
|
387
|
-
[-\\w*]+
|
|
388
|
-
\\|
|
|
389
|
-
(?!
|
|
390
|
-
[-\\[:.*\\#a-zA-Z_]
|
|
391
|
-
| [^\\x00-\\x7F]
|
|
392
|
-
)
|
|
393
|
-
)
|
|
394
|
-
(
|
|
395
|
-
(?: [-a-zA-Z_] | [^\\x00-\\x7F] )
|
|
396
|
-
(?: [-a-zA-Z0-9_] | [^\\x00-\\x7F]
|
|
397
|
-
| \\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
398
|
-
)*
|
|
399
|
-
|
|
|
400
|
-
\\*
|
|
401
|
-
)?
|
|
402
|
-
(\\|)` }, { include: "#tag-names" }, { match: "\\*", name: "entity.name.tag.wildcard.css" }, { captures: { 1: { name: "punctuation.definition.entity.css" }, 2: { patterns: [{ include: "#escapes" }] } }, match: `(?x) (?<![@\\w-])
|
|
403
|
-
([.\\#])
|
|
404
|
-
# Invalid identifier
|
|
405
|
-
(
|
|
406
|
-
(?:
|
|
407
|
-
|
|
408
|
-
-?[0-9]
|
|
409
|
-
|
|
|
410
|
-
|
|
411
|
-
-
|
|
412
|
-
(?= $
|
|
413
|
-
| [\\s,.\\#)\\[:{>+~|]
|
|
414
|
-
| /\\*
|
|
415
|
-
)
|
|
416
|
-
|
|
|
417
|
-
|
|
418
|
-
(?:
|
|
419
|
-
[-a-zA-Z_0-9]|[^\\x00-\\x7F]
|
|
420
|
-
| \\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
421
|
-
)*
|
|
422
|
-
(?:
|
|
423
|
-
[!"'%&(*;<?@^\`|\\]}]
|
|
424
|
-
|
|
|
425
|
-
/ (?!\\*)
|
|
426
|
-
)+
|
|
427
|
-
)
|
|
428
|
-
|
|
429
|
-
(?: [-a-zA-Z_0-9]|[^\\x00-\\x7F]
|
|
430
|
-
| \\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
431
|
-
)*
|
|
432
|
-
)`, name: "invalid.illegal.bad-identifier.css" }, { captures: { 1: { name: "punctuation.definition.entity.css" }, 2: { patterns: [{ include: "#escapes" }] } }, match: `(?x)
|
|
433
|
-
(\\.)
|
|
434
|
-
(
|
|
435
|
-
(?: [-a-zA-Z_0-9]|[^\\x00-\\x7F]
|
|
436
|
-
| \\\\(?:[0-9a-fA-F]{1,6}|.)
|
|
437
|
-
)+
|
|
438
|
-
)
|
|
439
|
-
(?= $
|
|
440
|
-
| [\\s,.\\#)\\[:{>+~|]
|
|
441
|
-
| /\\*
|
|
442
|
-
)`, name: "entity.other.attribute-name.class.css" }, { captures: { 1: { name: "punctuation.definition.entity.css" }, 2: { patterns: [{ include: "#escapes" }] } }, match: `(?x)
|
|
443
|
-
(\\#)
|
|
444
|
-
(
|
|
445
|
-
-?
|
|
446
|
-
(?![0-9])
|
|
447
|
-
(?:[-a-zA-Z0-9_]|[^\\x00-\\x7F]|\\\\(?:[0-9a-fA-F]{1,6}|.))+
|
|
448
|
-
)
|
|
449
|
-
(?=$|[\\s,.\\#)\\[:{>+~|]|/\\*)`, name: "entity.other.attribute-name.id.css" }, { begin: "\\[", beginCaptures: { 0: { name: "punctuation.definition.entity.begin.bracket.square.css" } }, end: "\\]", endCaptures: { 0: { name: "punctuation.definition.entity.end.bracket.square.css" } }, name: "meta.attribute-selector.css", patterns: [{ include: "#comment-block" }, { include: "#string" }, { captures: { 1: { name: "storage.modifier.ignore-case.css" } }, match: `(?<=["'\\s]|^|\\*/)\\s*([iI])\\s*(?=[\\s\\]]|/\\*|$)` }, { captures: { 1: { name: "string.unquoted.attribute-value.css", patterns: [{ include: "#escapes" }] } }, match: `(?x)(?<==)\\s*((?!/\\*)(?:[^\\\\"'\\s\\]]|\\\\.)+)` }, { include: "#escapes" }, { match: "[~|^$*]?=", name: "keyword.operator.pattern.css" }, { match: "\\|", name: "punctuation.separator.css" }, { captures: { 1: { name: "entity.other.namespace-prefix.css", patterns: [{ include: "#escapes" }] } }, match: `(?x)
|
|
450
|
-
# Qualified namespace prefix
|
|
451
|
-
( -?(?!\\d)(?:[\\w-]|[^\\x00-\\x7F]|\\\\(?:[0-9a-fA-F]{1,6}|.))+
|
|
452
|
-
| \\*
|
|
453
|
-
)
|
|
454
|
-
# Lookahead to ensure there's a valid identifier ahead
|
|
455
|
-
(?=
|
|
456
|
-
\\| (?!\\s|=|$|\\])
|
|
457
|
-
(?: -?(?!\\d)
|
|
458
|
-
| [\\\\\\w-]
|
|
459
|
-
| [^\\x00-\\x7F]
|
|
460
|
-
)
|
|
461
|
-
)` }, { captures: { 1: { name: "entity.other.attribute-name.css", patterns: [{ include: "#escapes" }] } }, match: `(?x)
|
|
462
|
-
(-?(?!\\d)(?>[\\w-]|[^\\x00-\\x7F]|\\\\(?:[0-9a-fA-F]{1,6}|.))+)
|
|
463
|
-
\\s*
|
|
464
|
-
(?=[~|^\\]$*=]|/\\*)` }] }, { include: "#pseudo-classes" }, { include: "#pseudo-elements" }, { include: "#functional-pseudo-classes" }, { match: `(?x) (?<![@\\w-])
|
|
465
|
-
(?=
|
|
466
|
-
[a-z]
|
|
467
|
-
\\w* -
|
|
468
|
-
)
|
|
469
|
-
(?:
|
|
470
|
-
(?![A-Z])
|
|
471
|
-
[\\w-]
|
|
472
|
-
)+
|
|
473
|
-
(?![(\\w-])`, name: "entity.name.tag.custom.css" }] }, string: { patterns: [{ begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.css" } }, end: '"|(?<!\\\\)(?=$|\\n)', endCaptures: { 0: { name: "punctuation.definition.string.end.css" } }, name: "string.quoted.double.css", patterns: [{ begin: '(?:\\G|^)(?=(?:[^\\\\"]|\\\\.)+$)', end: "$", name: "invalid.illegal.unclosed.string.css", patterns: [{ include: "#escapes" }] }, { include: "#escapes" }] }, { begin: "'", beginCaptures: { 0: { name: "punctuation.definition.string.begin.css" } }, end: "'|(?<!\\\\)(?=$|\\n)", endCaptures: { 0: { name: "punctuation.definition.string.end.css" } }, name: "string.quoted.single.css", patterns: [{ begin: "(?:\\G|^)(?=(?:[^\\\\']|\\\\.)+$)", end: "$", name: "invalid.illegal.unclosed.string.css", patterns: [{ include: "#escapes" }] }, { include: "#escapes" }] }] }, "tag-names": { match: `(?xi) (?<![\\w:-])
|
|
474
|
-
(?:
|
|
475
|
-
|
|
476
|
-
a|abbr|acronym|address|applet|area|article|aside|audio|b|base|basefont|bdi|bdo|bgsound
|
|
477
|
-
| big|blink|blockquote|body|br|button|canvas|caption|center|cite|code|col|colgroup|command
|
|
478
|
-
| content|data|datalist|dd|del|details|dfn|dialog|dir|div|dl|dt|element|em|embed|fieldset
|
|
479
|
-
| figcaption|figure|font|footer|form|frame|frameset|h[1-6]|head|header|hgroup|hr|html|i
|
|
480
|
-
| iframe|image|img|input|ins|isindex|kbd|keygen|label|legend|li|link|listing|main|map|mark
|
|
481
|
-
| marquee|math|menu|menuitem|meta|meter|multicol|nav|nextid|nobr|noembed|noframes|noscript
|
|
482
|
-
| object|ol|optgroup|option|output|p|param|picture|plaintext|pre|progress|q|rb|rp|rt|rtc
|
|
483
|
-
| ruby|s|samp|script|section|select|shadow|slot|small|source|spacer|span|strike|strong
|
|
484
|
-
| style|sub|summary|sup|table|tbody|td|template|textarea|tfoot|th|thead|time|title|tr
|
|
485
|
-
| track|tt|u|ul|var|video|wbr|xmp
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
| altGlyph|altGlyphDef|altGlyphItem|animate|animateColor|animateMotion|animateTransform
|
|
489
|
-
| circle|clipPath|color-profile|cursor|defs|desc|discard|ellipse|feBlend|feColorMatrix
|
|
490
|
-
| feComponentTransfer|feComposite|feConvolveMatrix|feDiffuseLighting|feDisplacementMap
|
|
491
|
-
| feDistantLight|feDropShadow|feFlood|feFuncA|feFuncB|feFuncG|feFuncR|feGaussianBlur
|
|
492
|
-
| feImage|feMerge|feMergeNode|feMorphology|feOffset|fePointLight|feSpecularLighting
|
|
493
|
-
| feSpotLight|feTile|feTurbulence|filter|font-face|font-face-format|font-face-name
|
|
494
|
-
| font-face-src|font-face-uri|foreignObject|g|glyph|glyphRef|hatch|hatchpath|hkern
|
|
495
|
-
| line|linearGradient|marker|mask|mesh|meshgradient|meshpatch|meshrow|metadata
|
|
496
|
-
| missing-glyph|mpath|path|pattern|polygon|polyline|radialGradient|rect|set|solidcolor
|
|
497
|
-
| stop|svg|switch|symbol|text|textPath|tref|tspan|use|view|vkern
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
| annotation|annotation-xml|maction|maligngroup|malignmark|math|menclose|merror|mfenced
|
|
501
|
-
| mfrac|mglyph|mi|mlabeledtr|mlongdiv|mmultiscripts|mn|mo|mover|mpadded|mphantom|mroot
|
|
502
|
-
| mrow|ms|mscarries|mscarry|msgroup|msline|mspace|msqrt|msrow|mstack|mstyle|msub|msubsup
|
|
503
|
-
| msup|mtable|mtd|mtext|mtr|munder|munderover|semantics
|
|
504
|
-
)
|
|
505
|
-
(?=[+~>\\s,.\\#|){:\\[]|/\\*|$)`, name: "entity.name.tag.css" }, "unicode-range": { captures: { 0: { name: "constant.other.unicode-range.css" }, 1: { name: "punctuation.separator.dash.unicode-range.css" } }, match: "(?<![\\w-])[Uu]\\+[0-9A-Fa-f?]{1,6}(?:(-)[0-9A-Fa-f]{1,6})?(?![\\w-])" }, url: { begin: "(?i)(?<![\\w@-])(url)(\\()", beginCaptures: { 1: { name: "support.function.url.css" }, 2: { name: "punctuation.section.function.begin.bracket.round.css" } }, end: "\\)", endCaptures: { 0: { name: "punctuation.section.function.end.bracket.round.css" } }, name: "meta.function.url.css", patterns: [{ match: `[^'")\\s]+`, name: "variable.parameter.url.css" }, { include: "#string" }, { include: "#comment-block" }, { include: "#escapes" }] } }, scopeName: "source.css" });
|
|
506
|
-
var n = [
|
|
507
|
-
e
|
|
508
|
-
];
|
|
509
|
-
export {
|
|
510
|
-
n as default
|
|
511
|
-
};
|