xmlui 0.10.8 → 0.10.11
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/{metadata/apiInterceptorWorker-Bb5-fQup.mjs → lib/apiInterceptorWorker-DPgtUtdA.mjs} +5870 -3195
- package/dist/lib/index-BuIblMfO.mjs +50034 -0
- package/dist/lib/index.css +1 -1
- package/dist/lib/initMock-CV-9AUzP.mjs +843 -0
- package/dist/lib/language-server-web-worker.mjs +8 -7
- package/dist/lib/language-server.mjs +6 -6
- package/dist/lib/{metadata-utils-DrEexTX9.mjs → metadata-utils-DzONZF-e.mjs} +161 -111
- package/dist/lib/scss/components-core/theming/_themes.scss +6 -7
- package/dist/lib/{server-common-ddmPKhK6.mjs → server-common-Dsyp3-Ro.mjs} +14949 -10880
- package/dist/lib/syntax-monaco.mjs +14 -11
- package/dist/lib/syntax-textmate.d.ts +2 -2
- package/dist/lib/syntax-textmate.mjs +128 -109
- package/dist/lib/transform-CBz7TQJh.mjs +7375 -0
- package/dist/lib/xmlui-parser.d.ts +3 -3
- package/dist/lib/xmlui-parser.mjs +49 -49
- package/dist/lib/xmlui-serializer-Bf9bdvlV.mjs +667 -0
- package/dist/lib/xmlui.d.ts +16 -11
- package/dist/lib/xmlui.mjs +44 -44
- package/dist/{lib/apiInterceptorWorker-DH8wqOVq.mjs → metadata/apiInterceptorWorker-BmKP8bnq.mjs} +5432 -3502
- package/dist/metadata/collectedComponentMetadata-Cdi6AFD3.mjs +55851 -0
- package/dist/metadata/initMock-B7OlSKKb.mjs +843 -0
- package/dist/metadata/style.css +1 -1
- package/dist/metadata/xmlui-metadata.mjs +3 -3
- package/dist/metadata/xmlui-metadata.umd.js +207 -419
- package/dist/scripts/package.json +3 -1
- package/dist/scripts/src/components/APICall/APICall.js +4 -4
- package/dist/scripts/src/components/Accordion/Accordion.js +1 -1
- package/dist/scripts/src/components/Accordion/AccordionItemNative.js +2 -2
- package/dist/scripts/src/components/Animation/AnimationNative.js +259 -0
- package/dist/scripts/src/components/App/App.js +10 -0
- package/dist/scripts/src/components/App/AppNative.js +29 -9
- package/dist/scripts/src/components/AutoComplete/AutoComplete.js +1 -1
- package/dist/scripts/src/components/AutoComplete/AutoCompleteNative.js +5 -4
- package/dist/scripts/src/components/Breakout/BreakoutNative.js +2 -2
- package/dist/scripts/src/components/Button/Button.js +1 -1
- package/dist/scripts/src/components/Button/ButtonNative.js +4 -0
- package/dist/scripts/src/components/Carousel/Carousel.js +13 -20
- package/dist/scripts/src/components/Carousel/CarouselContext.js +11 -2
- package/dist/scripts/src/components/Carousel/CarouselItemNative.js +2 -2
- package/dist/scripts/src/components/Carousel/CarouselNative.js +2 -2
- package/dist/scripts/src/components/Charts/AreaChart/AreaChart.js +92 -0
- package/dist/scripts/src/components/Charts/AreaChart/AreaChartNative.js +127 -0
- package/dist/scripts/src/components/Charts/BarChart/BarChart.js +4 -4
- package/dist/scripts/src/components/Charts/BarChart/BarChartNative.js +90 -82
- package/dist/scripts/src/components/Charts/LineChart/LineChart.js +3 -3
- package/dist/scripts/src/components/Charts/LineChart/LineChartNative.js +5 -1
- package/dist/scripts/src/components/Charts/RadarChart/RadarChart.js +92 -0
- package/dist/scripts/src/components/Charts/RadarChart/RadarChartNative.js +125 -0
- package/dist/scripts/src/components/Checkbox/Checkbox.js +2 -1
- package/dist/scripts/src/components/ComponentProvider.js +4 -0
- package/dist/scripts/src/components/DataSource/DataSource.js +124 -0
- package/dist/scripts/src/components/DateInput/DateInput.js +7 -9
- package/dist/scripts/src/components/DateInput/DateInputNative.js +101 -38
- package/dist/scripts/src/components/DropdownMenu/DropdownMenu.js +1 -1
- package/dist/scripts/src/components/ExpandableItem/ExpandableItemNative.js +18 -12
- package/dist/scripts/src/components/Footer/Footer.js +1 -1
- package/dist/scripts/src/components/FormItem/FormItem.js +1 -1
- package/dist/scripts/src/components/FormItem/ItemWithLabel.js +3 -3
- package/dist/scripts/src/components/Heading/Heading.js +83 -28
- package/dist/scripts/src/components/Heading/HeadingNative.js +10 -1
- package/dist/scripts/src/components/HtmlTags/HtmlTags.js +1 -1
- package/dist/scripts/src/components/Image/ImageNative.js +13 -0
- package/dist/scripts/src/components/Input/PartialInput.js +28 -3
- package/dist/scripts/src/components/List/ListNative.js +6 -5
- package/dist/scripts/src/components/NavLink/NavLink.js +1 -1
- package/dist/scripts/src/components/NavPanel/NavPanelNative.js +3 -8
- package/dist/scripts/src/components/NumberBox/NumberBoxNative.js +2 -2
- package/dist/scripts/src/components/Option/Option.js +2 -2
- package/dist/scripts/src/components/Option/OptionNative.js +12 -1
- package/dist/scripts/src/components/Pagination/Pagination.js +2 -1
- package/dist/scripts/src/components/RadioGroup/RadioGroup.js +7 -3
- package/dist/scripts/src/components/RadioGroup/RadioGroupNative.js +20 -5
- package/dist/scripts/src/components/RadioGroup/RadioItemNative.js +2 -1
- package/dist/scripts/src/components/Select/Select.js +1 -1
- package/dist/scripts/src/components/Select/SelectNative.js +1 -1
- package/dist/scripts/src/components/Slider/Slider.js +10 -8
- package/dist/scripts/src/components/Slider/SliderNative.js +24 -21
- package/dist/scripts/src/components/Switch/Switch.js +2 -1
- package/dist/scripts/src/components/Table/Table.js +1 -1
- package/dist/scripts/src/components/Table/TableNative.js +18 -13
- package/dist/scripts/src/components/TableOfContents/TableOfContents.js +1 -1
- package/dist/scripts/src/components/Text/Text.js +32 -14
- package/dist/scripts/src/components/Text/TextNative.js +17 -5
- package/dist/scripts/src/components/TextArea/TextAreaNative.js +3 -3
- package/dist/scripts/src/components/TextBox/TextBoxNative.js +3 -3
- package/dist/scripts/src/components/TimeInput/TimeInput.js +10 -10
- package/dist/scripts/src/components/TimeInput/TimeInputNative.js +87 -38
- package/dist/scripts/src/components/Toggle/Toggle.js +2 -2
- package/dist/scripts/src/components/Tooltip/Tooltip.js +9 -9
- package/dist/scripts/src/components/Tooltip/TooltipNative.js +4 -4
- package/dist/scripts/src/components/abstractions.js +7 -3
- package/dist/scripts/src/components/collectedComponentMetadata.js +316 -0
- package/dist/scripts/src/components-core/RestApiProxy.js +3 -1
- package/dist/scripts/src/components-core/StandaloneApp.js +823 -0
- package/dist/scripts/src/components-core/interception/ApiInterceptor.js +4 -1
- package/dist/scripts/src/components-core/interception/Backend.js +13 -7
- package/dist/scripts/src/components-core/markup-check.js +279 -0
- package/dist/scripts/src/components-core/parts.js +0 -4
- package/dist/scripts/src/components-core/rendering/ComponentAdapter.js +36 -16
- package/dist/scripts/src/components-core/script-runner/eval-tree-async.js +4 -1
- package/dist/scripts/src/components-core/script-runner/eval-tree-sync.js +4 -1
- package/dist/scripts/src/components-core/theming/themes/root.js +30 -17
- package/dist/scripts/src/components-core/theming/transformThemeVars.js +14 -7
- package/dist/scripts/src/components-core/xmlui-parser.js +60 -43
- package/dist/scripts/src/index.js +120 -0
- package/dist/scripts/src/parsers/xmlui-parser/transform.js +15 -4
- package/dist/standalone/xmlui-standalone.es.d.ts +23 -15
- package/dist/standalone/xmlui-standalone.umd.js +319 -823
- package/package.json +3 -1
- package/src/syntax/textMate/xmlui.tmLanguage.json +2 -2
- package/dist/lib/index-CqzCWOUw.mjs +0 -38579
- package/dist/lib/initMock-C5CXs0-5.mjs +0 -568
- package/dist/lib/transform-SMWeyMoq.mjs +0 -5391
- package/dist/lib/xmlui-serializer-a0O0jFY-.mjs +0 -497
- package/dist/metadata/collectedComponentMetadata-DIT5VbaH.mjs +0 -42985
- package/dist/metadata/initMock-D6Vi9kU_.mjs +0 -568
- package/dist/scripts/src/components-core/ScrollContext.js +0 -11
- package/dist/scripts/src/components-core/utils/audio-utils.js +0 -83
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const XmluiGrammar = {
|
|
2
2
|
id: "xmlui",
|
|
3
3
|
config: {
|
|
4
4
|
comments: {
|
|
@@ -21,7 +21,7 @@ const e = {
|
|
|
21
21
|
language: {
|
|
22
22
|
defaultToken: "",
|
|
23
23
|
tokenPostfix: ".xmlui",
|
|
24
|
-
ignoreCase:
|
|
24
|
+
ignoreCase: false,
|
|
25
25
|
identifier: /[a-zA-Z$_][-\w.$]*/,
|
|
26
26
|
tokenizer: {
|
|
27
27
|
root: [
|
|
@@ -280,7 +280,8 @@ const e = {
|
|
|
280
280
|
entity: [[/&(amp|lt|gt|quot|apos|nbsp);/, "string.escape"]]
|
|
281
281
|
}
|
|
282
282
|
}
|
|
283
|
-
}
|
|
283
|
+
};
|
|
284
|
+
const XmluiScripGrammar = {
|
|
284
285
|
id: "xmluiscript",
|
|
285
286
|
config: {
|
|
286
287
|
wordPattern: /(-?\d*\.\d\w*)|([^\`\~\!\@\#\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,
|
|
@@ -588,9 +589,10 @@ const e = {
|
|
|
588
589
|
]
|
|
589
590
|
}
|
|
590
591
|
}
|
|
591
|
-
}
|
|
592
|
+
};
|
|
593
|
+
const darkTheme = {
|
|
592
594
|
base: "vs-dark",
|
|
593
|
-
inherit:
|
|
595
|
+
inherit: true,
|
|
594
596
|
rules: [
|
|
595
597
|
{ token: "comment", foreground: "#9296a9" },
|
|
596
598
|
{ token: "comment.content", foreground: "#9296a9", fontStyle: "italic" },
|
|
@@ -609,9 +611,10 @@ const e = {
|
|
|
609
611
|
colors: {
|
|
610
612
|
"editor.background": "#17232b"
|
|
611
613
|
}
|
|
612
|
-
}
|
|
614
|
+
};
|
|
615
|
+
const lightTheme = {
|
|
613
616
|
base: "vs",
|
|
614
|
-
inherit:
|
|
617
|
+
inherit: true,
|
|
615
618
|
rules: [
|
|
616
619
|
{ token: "comment", foreground: "#606060" },
|
|
617
620
|
{ token: "comment.content", foreground: "#606060", fontStyle: "italic" },
|
|
@@ -632,8 +635,8 @@ const e = {
|
|
|
632
635
|
}
|
|
633
636
|
};
|
|
634
637
|
export {
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
638
|
+
XmluiGrammar as xmluiGrammar,
|
|
639
|
+
XmluiScripGrammar as xmluiScriptGrammar,
|
|
640
|
+
darkTheme as xmluiThemeDark,
|
|
641
|
+
lightTheme as xmluiThemeLight
|
|
639
642
|
};
|
|
@@ -205,8 +205,8 @@ export declare const xmluiGrammar: {
|
|
|
205
205
|
]
|
|
206
206
|
},
|
|
207
207
|
"scriptTag": {
|
|
208
|
-
"begin": "(
|
|
209
|
-
"end": "(
|
|
208
|
+
"begin": "(\\s*<)((?:[a-zA-Z_][\\w\\.\\-]*?:)?)(script)(\\s*>)",
|
|
209
|
+
"end": "(\\s*</)(\\2)(\\3)(\\s*>)",
|
|
210
210
|
"contentName": "meta.embedded.block.javascript",
|
|
211
211
|
"beginCaptures": {
|
|
212
212
|
"1": { "name": "punctuation.definition.tag.xmlui" },
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
const
|
|
1
|
+
const name$3 = "xmlui-dark";
|
|
2
|
+
const type$2 = "css";
|
|
3
|
+
const colors$2 = {
|
|
2
4
|
foreground: "#616161",
|
|
3
5
|
focusBorder: "#161F26",
|
|
4
6
|
"widget.shadow": "#161F2694",
|
|
@@ -138,7 +140,8 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
138
140
|
"editorMarkerNavigationInfo.background": "#6182b8",
|
|
139
141
|
"editorMarkerNavigationError.background": "#F44C5E",
|
|
140
142
|
"editorMarkerNavigationWarning.background": "#F6B555"
|
|
141
|
-
}
|
|
143
|
+
};
|
|
144
|
+
const tokenColors$2 = [
|
|
142
145
|
{
|
|
143
146
|
scope: [
|
|
144
147
|
"support.class.tag.component"
|
|
@@ -623,12 +626,16 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
623
626
|
foreground: "#0444ac"
|
|
624
627
|
}
|
|
625
628
|
}
|
|
626
|
-
]
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
629
|
+
];
|
|
630
|
+
const xmluiDark = {
|
|
631
|
+
name: name$3,
|
|
632
|
+
type: type$2,
|
|
633
|
+
colors: colors$2,
|
|
634
|
+
tokenColors: tokenColors$2
|
|
635
|
+
};
|
|
636
|
+
const name$2 = "xmlui-light";
|
|
637
|
+
const type$1 = "css";
|
|
638
|
+
const colors$1 = {
|
|
632
639
|
foreground: "#616161",
|
|
633
640
|
focusBorder: "#161F26",
|
|
634
641
|
"widget.shadow": "#161F2694",
|
|
@@ -768,7 +775,8 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
768
775
|
"editorMarkerNavigationInfo.background": "#6182b8",
|
|
769
776
|
"editorMarkerNavigationError.background": "#F44C5E",
|
|
770
777
|
"editorMarkerNavigationWarning.background": "#F6B555"
|
|
771
|
-
}
|
|
778
|
+
};
|
|
779
|
+
const tokenColors$1 = [
|
|
772
780
|
{
|
|
773
781
|
scope: [
|
|
774
782
|
"support.class.tag.component"
|
|
@@ -1253,12 +1261,16 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
1253
1261
|
foreground: "#0444ac"
|
|
1254
1262
|
}
|
|
1255
1263
|
}
|
|
1256
|
-
]
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1264
|
+
];
|
|
1265
|
+
const xmluiLight = {
|
|
1266
|
+
name: name$2,
|
|
1267
|
+
type: type$1,
|
|
1268
|
+
colors: colors$1,
|
|
1269
|
+
tokenColors: tokenColors$1
|
|
1270
|
+
};
|
|
1271
|
+
const name$1 = "xmlui";
|
|
1272
|
+
const type = "css";
|
|
1273
|
+
const colors = {
|
|
1262
1274
|
foreground: "#616161",
|
|
1263
1275
|
focusBorder: "#161F26",
|
|
1264
1276
|
"widget.shadow": "#161F2694",
|
|
@@ -1398,7 +1410,8 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
1398
1410
|
"editorMarkerNavigationInfo.background": "#6182b8",
|
|
1399
1411
|
"editorMarkerNavigationError.background": "#F44C5E",
|
|
1400
1412
|
"editorMarkerNavigationWarning.background": "#F6B555"
|
|
1401
|
-
}
|
|
1413
|
+
};
|
|
1414
|
+
const tokenColors = [
|
|
1402
1415
|
{
|
|
1403
1416
|
scope: [
|
|
1404
1417
|
"support.class.tag.component"
|
|
@@ -1882,16 +1895,21 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
1882
1895
|
foreground: "#0444ac"
|
|
1883
1896
|
}
|
|
1884
1897
|
}
|
|
1885
|
-
]
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1898
|
+
];
|
|
1899
|
+
const xmlui = {
|
|
1900
|
+
name: name$1,
|
|
1901
|
+
type,
|
|
1902
|
+
colors,
|
|
1903
|
+
tokenColors
|
|
1904
|
+
};
|
|
1905
|
+
const name = "xmlui";
|
|
1906
|
+
const scopeName = "source.xmlui";
|
|
1907
|
+
const patterns = [
|
|
1891
1908
|
{
|
|
1892
1909
|
include: "#root"
|
|
1893
1910
|
}
|
|
1894
|
-
]
|
|
1911
|
+
];
|
|
1912
|
+
const repository = {
|
|
1895
1913
|
root: {
|
|
1896
1914
|
patterns: [
|
|
1897
1915
|
{
|
|
@@ -1912,19 +1930,19 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
1912
1930
|
{
|
|
1913
1931
|
begin: "(<!\\[)(CDATA)(\\[)",
|
|
1914
1932
|
beginCaptures: {
|
|
1915
|
-
1: {
|
|
1933
|
+
"1": {
|
|
1916
1934
|
name: "punctuation.definition.tag.xmlui"
|
|
1917
1935
|
},
|
|
1918
|
-
2: {
|
|
1936
|
+
"2": {
|
|
1919
1937
|
name: "storage.xmlui"
|
|
1920
1938
|
},
|
|
1921
|
-
3: {
|
|
1939
|
+
"3": {
|
|
1922
1940
|
name: "punctuation.definition.tag.xmlui"
|
|
1923
1941
|
}
|
|
1924
1942
|
},
|
|
1925
1943
|
end: "]]>",
|
|
1926
1944
|
endCaptures: {
|
|
1927
|
-
0: {
|
|
1945
|
+
"0": {
|
|
1928
1946
|
name: "punctuation.definition.tag.xmlui"
|
|
1929
1947
|
}
|
|
1930
1948
|
},
|
|
@@ -1935,18 +1953,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
1935
1953
|
methodTag: {
|
|
1936
1954
|
begin: "(<)((?:[a-zA-Z_][\\w\\.\\-]*?:)?)(method)",
|
|
1937
1955
|
beginCaptures: {
|
|
1938
|
-
1: {
|
|
1956
|
+
"1": {
|
|
1939
1957
|
name: "punctuation.definition.tag.xmlui"
|
|
1940
1958
|
},
|
|
1941
|
-
2: {
|
|
1959
|
+
"2": {
|
|
1942
1960
|
name: "keyword.operator.namespace.xmlui"
|
|
1943
1961
|
},
|
|
1944
|
-
3: {
|
|
1962
|
+
"3": {
|
|
1945
1963
|
name: "entity.name.tag.localname.xmlui"
|
|
1946
1964
|
}
|
|
1947
1965
|
},
|
|
1948
1966
|
endCaptures: {
|
|
1949
|
-
0: {
|
|
1967
|
+
"0": {
|
|
1950
1968
|
name: "punctuation.definition.tag.xmlui"
|
|
1951
1969
|
}
|
|
1952
1970
|
},
|
|
@@ -1964,18 +1982,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
1964
1982
|
{
|
|
1965
1983
|
begin: "(?<!/|(?:/\\s*(?:method))\\s*)>",
|
|
1966
1984
|
beginCaptures: {
|
|
1967
|
-
0: {
|
|
1985
|
+
"0": {
|
|
1968
1986
|
name: "punctuation.definition.tag.xmlui"
|
|
1969
1987
|
}
|
|
1970
1988
|
},
|
|
1971
1989
|
endCaptures: {
|
|
1972
|
-
1: {
|
|
1990
|
+
"1": {
|
|
1973
1991
|
name: "punctuation.definition.tag.xmlui"
|
|
1974
1992
|
},
|
|
1975
|
-
2: {
|
|
1993
|
+
"2": {
|
|
1976
1994
|
name: "keyword.operator.namespace.xmlui"
|
|
1977
1995
|
},
|
|
1978
|
-
3: {
|
|
1996
|
+
"3": {
|
|
1979
1997
|
name: "entity.name.tag.localname.xmlui"
|
|
1980
1998
|
}
|
|
1981
1999
|
},
|
|
@@ -1993,18 +2011,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
1993
2011
|
eventTag: {
|
|
1994
2012
|
begin: "(<)((?:[a-zA-Z_][\\w\\.\\-]*?:)?)(event)",
|
|
1995
2013
|
beginCaptures: {
|
|
1996
|
-
1: {
|
|
2014
|
+
"1": {
|
|
1997
2015
|
name: "punctuation.definition.tag.xmlui"
|
|
1998
2016
|
},
|
|
1999
|
-
2: {
|
|
2017
|
+
"2": {
|
|
2000
2018
|
name: "keyword.operator.namespace.xmlui"
|
|
2001
2019
|
},
|
|
2002
|
-
3: {
|
|
2020
|
+
"3": {
|
|
2003
2021
|
name: "entity.name.tag.localname.xmlui"
|
|
2004
2022
|
}
|
|
2005
2023
|
},
|
|
2006
2024
|
endCaptures: {
|
|
2007
|
-
0: {
|
|
2025
|
+
"0": {
|
|
2008
2026
|
name: "punctuation.definition.tag.xmlui"
|
|
2009
2027
|
}
|
|
2010
2028
|
},
|
|
@@ -2022,18 +2040,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2022
2040
|
{
|
|
2023
2041
|
begin: "(?<!/|(?:/\\s*event)\\s*)(>)",
|
|
2024
2042
|
beginCaptures: {
|
|
2025
|
-
0: {
|
|
2043
|
+
"0": {
|
|
2026
2044
|
name: "punctuation.definition.tag.xmlui"
|
|
2027
2045
|
}
|
|
2028
2046
|
},
|
|
2029
2047
|
endCaptures: {
|
|
2030
|
-
1: {
|
|
2048
|
+
"1": {
|
|
2031
2049
|
name: "punctuation.definition.tag.xmlui"
|
|
2032
2050
|
},
|
|
2033
|
-
2: {
|
|
2051
|
+
"2": {
|
|
2034
2052
|
name: "keyword.operator.namespace.xmlui"
|
|
2035
2053
|
},
|
|
2036
|
-
3: {
|
|
2054
|
+
"3": {
|
|
2037
2055
|
name: "entity.name.tag.localname.xmlui"
|
|
2038
2056
|
}
|
|
2039
2057
|
},
|
|
@@ -2056,18 +2074,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2056
2074
|
fieldTag: {
|
|
2057
2075
|
begin: "(<)((?:[a-zA-Z_][\\w\\.\\-]*?:)?)(field)",
|
|
2058
2076
|
beginCaptures: {
|
|
2059
|
-
1: {
|
|
2077
|
+
"1": {
|
|
2060
2078
|
name: "punctuation.definition.tag.xmlui"
|
|
2061
2079
|
},
|
|
2062
|
-
2: {
|
|
2080
|
+
"2": {
|
|
2063
2081
|
name: "keyword.operator.namespace.xmlui"
|
|
2064
2082
|
},
|
|
2065
|
-
3: {
|
|
2083
|
+
"3": {
|
|
2066
2084
|
name: "entity.name.tag.localname.xmlui"
|
|
2067
2085
|
}
|
|
2068
2086
|
},
|
|
2069
2087
|
endCaptures: {
|
|
2070
|
-
0: {
|
|
2088
|
+
"0": {
|
|
2071
2089
|
name: "punctuation.definition.tag.xmlui"
|
|
2072
2090
|
}
|
|
2073
2091
|
},
|
|
@@ -2085,18 +2103,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2085
2103
|
{
|
|
2086
2104
|
begin: "(?<!/|(?:/\\s*field)\\s*)(>)",
|
|
2087
2105
|
beginCaptures: {
|
|
2088
|
-
0: {
|
|
2106
|
+
"0": {
|
|
2089
2107
|
name: "punctuation.definition.tag.xmlui"
|
|
2090
2108
|
}
|
|
2091
2109
|
},
|
|
2092
2110
|
endCaptures: {
|
|
2093
|
-
1: {
|
|
2111
|
+
"1": {
|
|
2094
2112
|
name: "punctuation.definition.tag.xmlui"
|
|
2095
2113
|
},
|
|
2096
|
-
2: {
|
|
2114
|
+
"2": {
|
|
2097
2115
|
name: "keyword.operator.namespace.xmlui"
|
|
2098
2116
|
},
|
|
2099
|
-
3: {
|
|
2117
|
+
"3": {
|
|
2100
2118
|
name: "entity.name.tag.localname.xmlui"
|
|
2101
2119
|
}
|
|
2102
2120
|
},
|
|
@@ -2119,18 +2137,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2119
2137
|
itemTag: {
|
|
2120
2138
|
begin: "(<)((?:[a-zA-Z_][\\w\\.\\-]*?:)?)(item)",
|
|
2121
2139
|
beginCaptures: {
|
|
2122
|
-
1: {
|
|
2140
|
+
"1": {
|
|
2123
2141
|
name: "punctuation.definition.tag.xmlui"
|
|
2124
2142
|
},
|
|
2125
|
-
2: {
|
|
2143
|
+
"2": {
|
|
2126
2144
|
name: "keyword.operator.namespace.xmlui"
|
|
2127
2145
|
},
|
|
2128
|
-
3: {
|
|
2146
|
+
"3": {
|
|
2129
2147
|
name: "entity.name.tag.localname.xmlui"
|
|
2130
2148
|
}
|
|
2131
2149
|
},
|
|
2132
2150
|
endCaptures: {
|
|
2133
|
-
0: {
|
|
2151
|
+
"0": {
|
|
2134
2152
|
name: "punctuation.definition.tag.xmlui"
|
|
2135
2153
|
}
|
|
2136
2154
|
},
|
|
@@ -2148,18 +2166,18 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2148
2166
|
{
|
|
2149
2167
|
begin: "(?<!/|(?:/\\s*item)\\s*)(>)",
|
|
2150
2168
|
beginCaptures: {
|
|
2151
|
-
0: {
|
|
2169
|
+
"0": {
|
|
2152
2170
|
name: "punctuation.definition.tag.xmlui"
|
|
2153
2171
|
}
|
|
2154
2172
|
},
|
|
2155
2173
|
endCaptures: {
|
|
2156
|
-
1: {
|
|
2174
|
+
"1": {
|
|
2157
2175
|
name: "punctuation.definition.tag.xmlui"
|
|
2158
2176
|
},
|
|
2159
|
-
2: {
|
|
2177
|
+
"2": {
|
|
2160
2178
|
name: "keyword.operator.namespace.xmlui"
|
|
2161
2179
|
},
|
|
2162
|
-
3: {
|
|
2180
|
+
"3": {
|
|
2163
2181
|
name: "entity.name.tag.localname.xmlui"
|
|
2164
2182
|
}
|
|
2165
2183
|
},
|
|
@@ -2184,12 +2202,12 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2184
2202
|
begin: "\\{",
|
|
2185
2203
|
end: "\\}",
|
|
2186
2204
|
beginCaptures: {
|
|
2187
|
-
0: {
|
|
2205
|
+
"0": {
|
|
2188
2206
|
name: "entity.name.function.xmlui punctuation.definition.block.xmlui"
|
|
2189
2207
|
}
|
|
2190
2208
|
},
|
|
2191
2209
|
endCaptures: {
|
|
2192
|
-
0: {
|
|
2210
|
+
"0": {
|
|
2193
2211
|
name: "entity.name.function.xmlui punctuation.definition.block.xmlui"
|
|
2194
2212
|
}
|
|
2195
2213
|
},
|
|
@@ -2225,10 +2243,10 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2225
2243
|
patterns: [
|
|
2226
2244
|
{
|
|
2227
2245
|
captures: {
|
|
2228
|
-
1: {
|
|
2246
|
+
"1": {
|
|
2229
2247
|
name: "entity.other.attribute-name.localname.xmlui"
|
|
2230
2248
|
},
|
|
2231
|
-
2: {
|
|
2249
|
+
"2": {
|
|
2232
2250
|
name: "keyword.operator.xmlui"
|
|
2233
2251
|
}
|
|
2234
2252
|
},
|
|
@@ -2240,34 +2258,34 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2240
2258
|
]
|
|
2241
2259
|
},
|
|
2242
2260
|
scriptTag: {
|
|
2243
|
-
begin: "(
|
|
2244
|
-
end: "(
|
|
2261
|
+
begin: "(\\s*<)((?:[a-zA-Z_][\\w\\.\\-]*?:)?)(script)(\\s*>)",
|
|
2262
|
+
end: "(\\s*</)(\\2)(\\3)(\\s*>)",
|
|
2245
2263
|
contentName: "meta.embedded.block.javascript",
|
|
2246
2264
|
beginCaptures: {
|
|
2247
|
-
1: {
|
|
2265
|
+
"1": {
|
|
2248
2266
|
name: "punctuation.definition.tag.xmlui"
|
|
2249
2267
|
},
|
|
2250
|
-
2: {
|
|
2268
|
+
"2": {
|
|
2251
2269
|
name: "keyword.operator.namespace.xmlui"
|
|
2252
2270
|
},
|
|
2253
|
-
3: {
|
|
2271
|
+
"3": {
|
|
2254
2272
|
name: "entity.name.function.xmlui"
|
|
2255
2273
|
},
|
|
2256
|
-
4: {
|
|
2274
|
+
"4": {
|
|
2257
2275
|
name: "punctuation.definition.tag.xmlui"
|
|
2258
2276
|
}
|
|
2259
2277
|
},
|
|
2260
2278
|
endCaptures: {
|
|
2261
|
-
1: {
|
|
2279
|
+
"1": {
|
|
2262
2280
|
name: "punctuation.definition.tag.xmlui"
|
|
2263
2281
|
},
|
|
2264
|
-
2: {
|
|
2282
|
+
"2": {
|
|
2265
2283
|
name: "keyword.operator.namespace.xmlui"
|
|
2266
2284
|
},
|
|
2267
|
-
3: {
|
|
2285
|
+
"3": {
|
|
2268
2286
|
name: "entity.name.function.xmlui"
|
|
2269
2287
|
},
|
|
2270
|
-
4: {
|
|
2288
|
+
"4": {
|
|
2271
2289
|
name: "punctuation.definition.tag.xmlui"
|
|
2272
2290
|
}
|
|
2273
2291
|
},
|
|
@@ -2293,19 +2311,19 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2293
2311
|
propOrVarTag: {
|
|
2294
2312
|
begin: "(</?)([a-zA-Z_][\\w\\.\\-]*?:)?((?:variable)|(?:property)|(?:prop))",
|
|
2295
2313
|
beginCaptures: {
|
|
2296
|
-
1: {
|
|
2314
|
+
"1": {
|
|
2297
2315
|
name: "punctuation.definition.tag.xmlui"
|
|
2298
2316
|
},
|
|
2299
|
-
2: {
|
|
2317
|
+
"2": {
|
|
2300
2318
|
name: "keyword.operator.namespace.xmlui"
|
|
2301
2319
|
},
|
|
2302
|
-
3: {
|
|
2320
|
+
"3": {
|
|
2303
2321
|
name: "entity.name.tag.localname.xmlui"
|
|
2304
2322
|
}
|
|
2305
2323
|
},
|
|
2306
2324
|
end: "(/?>)",
|
|
2307
2325
|
endCaptures: {
|
|
2308
|
-
1: {
|
|
2326
|
+
"1": {
|
|
2309
2327
|
name: "punctuation.definition.tag.xmlui"
|
|
2310
2328
|
}
|
|
2311
2329
|
},
|
|
@@ -2321,19 +2339,19 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2321
2339
|
componentTag: {
|
|
2322
2340
|
begin: "(\\s*</?)((?:[a-zA-Z_][\\w\\.\\-]*?:)?)([a-zA-Z][\\w\\.\\-]*)",
|
|
2323
2341
|
beginCaptures: {
|
|
2324
|
-
1: {
|
|
2342
|
+
"1": {
|
|
2325
2343
|
name: "punctuation.definition.tag.xmlui"
|
|
2326
2344
|
},
|
|
2327
|
-
2: {
|
|
2345
|
+
"2": {
|
|
2328
2346
|
name: "keyword.operator.namespace.xmlui"
|
|
2329
2347
|
},
|
|
2330
|
-
3: {
|
|
2348
|
+
"3": {
|
|
2331
2349
|
name: "support.class.tag.component.xmlui"
|
|
2332
2350
|
}
|
|
2333
2351
|
},
|
|
2334
2352
|
end: "(/?>)",
|
|
2335
2353
|
endCaptures: {
|
|
2336
|
-
1: {
|
|
2354
|
+
"1": {
|
|
2337
2355
|
name: "punctuation.definition.tag.xmlui"
|
|
2338
2356
|
}
|
|
2339
2357
|
},
|
|
@@ -2352,13 +2370,13 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2352
2370
|
quotedStringJsInside: {
|
|
2353
2371
|
begin: "\"|'|`",
|
|
2354
2372
|
beginCaptures: {
|
|
2355
|
-
0: {
|
|
2373
|
+
"0": {
|
|
2356
2374
|
name: "string.xmlui"
|
|
2357
2375
|
}
|
|
2358
2376
|
},
|
|
2359
2377
|
end: "\\0",
|
|
2360
2378
|
endCaptures: {
|
|
2361
|
-
0: {
|
|
2379
|
+
"0": {
|
|
2362
2380
|
name: "string.xmlui"
|
|
2363
2381
|
}
|
|
2364
2382
|
},
|
|
@@ -2371,13 +2389,13 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2371
2389
|
},
|
|
2372
2390
|
entity: {
|
|
2373
2391
|
captures: {
|
|
2374
|
-
1: {
|
|
2392
|
+
"1": {
|
|
2375
2393
|
name: "punctuation.definition.constant.xmlui"
|
|
2376
2394
|
},
|
|
2377
|
-
2: {
|
|
2395
|
+
"2": {
|
|
2378
2396
|
name: "punctuation.definition.constant.xmlui"
|
|
2379
2397
|
},
|
|
2380
|
-
3: {
|
|
2398
|
+
"3": {
|
|
2381
2399
|
name: "punctuation.definition.constant.xmlui"
|
|
2382
2400
|
}
|
|
2383
2401
|
},
|
|
@@ -2387,10 +2405,10 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2387
2405
|
patterns: [
|
|
2388
2406
|
{
|
|
2389
2407
|
captures: {
|
|
2390
|
-
1: {
|
|
2408
|
+
"1": {
|
|
2391
2409
|
name: "entity.other.attribute-name.localname.xmlui"
|
|
2392
2410
|
},
|
|
2393
|
-
2: {
|
|
2411
|
+
"2": {
|
|
2394
2412
|
name: "keyword.operator.xmlui"
|
|
2395
2413
|
}
|
|
2396
2414
|
},
|
|
@@ -2407,21 +2425,21 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2407
2425
|
begin: "(?:^|\\s+)((?:[a-zA-Z$_][-\\w.$]*:)?)([a-zA-Z$_][-\\w.$]*)(\\s*=\\s*)(['\"`])",
|
|
2408
2426
|
end: "\\4",
|
|
2409
2427
|
beginCaptures: {
|
|
2410
|
-
1: {
|
|
2428
|
+
"1": {
|
|
2411
2429
|
name: "keyword.operator.namespace.xmlui"
|
|
2412
2430
|
},
|
|
2413
|
-
2: {
|
|
2431
|
+
"2": {
|
|
2414
2432
|
name: "entity.other.attribute-name.localname.xmlui"
|
|
2415
2433
|
},
|
|
2416
|
-
3: {
|
|
2434
|
+
"3": {
|
|
2417
2435
|
name: "keyword.operator.xmlui"
|
|
2418
2436
|
},
|
|
2419
|
-
4: {
|
|
2437
|
+
"4": {
|
|
2420
2438
|
name: "string.xmlui"
|
|
2421
2439
|
}
|
|
2422
2440
|
},
|
|
2423
2441
|
endCaptures: {
|
|
2424
|
-
0: {
|
|
2442
|
+
"0": {
|
|
2425
2443
|
name: "string.xmlui"
|
|
2426
2444
|
}
|
|
2427
2445
|
},
|
|
@@ -2435,16 +2453,16 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2435
2453
|
{
|
|
2436
2454
|
match: "(?:^|\\s+)((?:[a-zA-Z$_][-\\w.$]*:)?)([a-zA-Z$_][-\\w.$]*)(\\s*=\\s*)([a-zA-Z$_][-\\w.$]*)",
|
|
2437
2455
|
captures: {
|
|
2438
|
-
1: {
|
|
2456
|
+
"1": {
|
|
2439
2457
|
name: "keyword.operator.namespace.xmlui"
|
|
2440
2458
|
},
|
|
2441
|
-
2: {
|
|
2459
|
+
"2": {
|
|
2442
2460
|
name: "entity.other.attribute-name.localname.xmlui"
|
|
2443
2461
|
},
|
|
2444
|
-
3: {
|
|
2462
|
+
"3": {
|
|
2445
2463
|
name: "keyword.operator.xmlui"
|
|
2446
2464
|
},
|
|
2447
|
-
4: {
|
|
2465
|
+
"4": {
|
|
2448
2466
|
name: "string.xmlui"
|
|
2449
2467
|
}
|
|
2450
2468
|
}
|
|
@@ -2453,10 +2471,10 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2453
2471
|
match: "(?:^|\\s+)((?:[a-zA-Z$_][-\\w.$]*:)?)([a-zA-Z$_][-\\w.$]*)",
|
|
2454
2472
|
name: "entity.other.attribute-name.localname.xmlui",
|
|
2455
2473
|
captures: {
|
|
2456
|
-
1: {
|
|
2474
|
+
"1": {
|
|
2457
2475
|
name: "keyword.operator.namespace.xmlui"
|
|
2458
2476
|
},
|
|
2459
|
-
2: {
|
|
2477
|
+
"2": {
|
|
2460
2478
|
name: "entity.other.attribute-name.localname.xmlui"
|
|
2461
2479
|
}
|
|
2462
2480
|
}
|
|
@@ -2468,7 +2486,7 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2468
2486
|
{
|
|
2469
2487
|
begin: "<!--",
|
|
2470
2488
|
captures: {
|
|
2471
|
-
0: {
|
|
2489
|
+
"0": {
|
|
2472
2490
|
name: "punctuation.definition.comment.xmlui"
|
|
2473
2491
|
}
|
|
2474
2492
|
},
|
|
@@ -2477,15 +2495,16 @@ const e = "xmlui-dark", n = "css", t = {
|
|
|
2477
2495
|
}
|
|
2478
2496
|
]
|
|
2479
2497
|
}
|
|
2480
|
-
}
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2498
|
+
};
|
|
2499
|
+
const xmlui_tmLanguage = {
|
|
2500
|
+
name,
|
|
2501
|
+
scopeName,
|
|
2502
|
+
patterns,
|
|
2503
|
+
repository
|
|
2485
2504
|
};
|
|
2486
2505
|
export {
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2506
|
+
xmlui_tmLanguage as xmluiGrammar,
|
|
2507
|
+
xmlui as xmluiTheme,
|
|
2508
|
+
xmluiDark as xmluiThemeDark,
|
|
2509
|
+
xmluiLight as xmluiThemeLight
|
|
2491
2510
|
};
|