xmlui 0.9.43 → 0.9.45
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/lib/{index-ODN_c1bh.mjs → apiInterceptorWorker-DzZYVTsV.mjs} +1920 -1362
- package/dist/lib/{core-BZ7lCE9p.mjs → core-CvFpTAHi.mjs} +154 -154
- package/dist/lib/{index-ClyH3BAn.mjs → index-erPY1EdW.mjs} +8823 -8695
- package/dist/lib/index.css +1 -1
- package/dist/lib/language-server-web-worker.mjs +1 -1
- package/dist/lib/language-server.mjs +1 -1
- package/dist/lib/{metadata-utils-DI1nTN3y.mjs → metadata-utils-Cf8v_9Lr.mjs} +7 -7
- package/dist/lib/{server-common-C3t9MFME.mjs → server-common-kMTAr-QU.mjs} +210 -178
- package/dist/lib/{transform-BV--wKhF.mjs → transform-DU7v4c9h.mjs} +1193 -1158
- package/dist/lib/xmlui-parser.d.ts +10 -3
- package/dist/lib/xmlui-parser.mjs +31 -30
- package/dist/lib/{xmlui-serializer-D5UV-ftG.mjs → xmlui-serializer-B3OkRzrr.mjs} +9 -9
- package/dist/lib/xmlui.d.ts +72 -1
- package/dist/lib/xmlui.mjs +33 -27
- package/dist/metadata/style.css +1 -1
- package/dist/metadata/xmlui-metadata.mjs +4264 -4234
- package/dist/metadata/xmlui-metadata.umd.js +10 -10
- package/dist/scripts/package.json +5 -1
- package/dist/scripts/src/components/App/App.js +140 -27
- package/dist/scripts/src/components/App/AppNative.js +2 -1
- package/dist/scripts/src/components/App/IndexerContext.js +44 -0
- package/dist/scripts/src/components/App/SearchContext.js +35 -0
- package/dist/scripts/src/components/CodeBlock/CodeBlock.js +1 -0
- package/dist/scripts/src/components/CodeBlock/CodeBlockNative.js +42 -34
- package/dist/scripts/src/components/CodeBlock/highlight-code.js +18 -6
- package/dist/scripts/src/components/Markdown/MarkdownNative.js +63 -27
- package/dist/scripts/src/components/NestedApp/NestedApp.js +4 -3
- package/dist/scripts/src/components/NestedApp/NestedAppNative.js +61 -66
- package/dist/scripts/src/components/Table/TableNative.js +4 -4
- package/dist/scripts/src/components/TableOfContents/TableOfContents.js +9 -1
- package/dist/scripts/src/components/Text/Text.js +2 -2
- package/dist/scripts/src/components/TextBox/TextBoxNative.js +2 -1
- package/dist/scripts/src/components/Theme/ThemeNative.js +5 -0
- package/dist/scripts/src/components/ToneChangerButton/ToneChangerButton.js +1 -0
- package/dist/scripts/src/components-core/loader/DataLoader.js +9 -1
- package/dist/scripts/src/components-core/rendering/Container.js +7 -0
- package/dist/scripts/src/components-core/theming/ThemeProvider.js +1 -2
- package/dist/scripts/src/parsers/xmlui-parser/diagnostics.js +10 -4
- package/dist/scripts/src/parsers/xmlui-parser/parser.js +74 -30
- package/dist/standalone/xmlui-standalone.es.d.ts +132 -2
- package/dist/standalone/xmlui-standalone.umd.js +234 -223
- package/package.json +5 -1
- package/dist/lib/apiInterceptorWorker-D4BjYgiG.mjs +0 -563
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { y as m, B as f } from "./transform-DU7v4c9h.mjs";
|
|
2
2
|
const P = [
|
|
3
3
|
{
|
|
4
4
|
value: "_self",
|
|
@@ -106,7 +106,7 @@ const N = [
|
|
|
106
106
|
{ value: "error", description: "Visual indicator for an input that produced an error" }
|
|
107
107
|
], T = ["top", "bottom"];
|
|
108
108
|
[...T];
|
|
109
|
-
const
|
|
109
|
+
const B = {
|
|
110
110
|
abbr: "abbr",
|
|
111
111
|
cite: "cite",
|
|
112
112
|
code: "code",
|
|
@@ -131,7 +131,7 @@ const E = {
|
|
|
131
131
|
subheading: "h6",
|
|
132
132
|
tableheading: "h6",
|
|
133
133
|
secondary: "span"
|
|
134
|
-
},
|
|
134
|
+
}, E = [
|
|
135
135
|
{ value: "abbr", description: "Represents an abbreviation or acronym" },
|
|
136
136
|
{ value: "caption", description: "Represents the caption (or title) of a table" },
|
|
137
137
|
{ value: "cite", description: "Is used to mark up the title of a cited work" },
|
|
@@ -174,7 +174,7 @@ const E = {
|
|
|
174
174
|
{ value: "tableheading", description: "Indicates that the text is a table heading" },
|
|
175
175
|
{ value: "title", description: "Indicates that the text is the title of some other content" },
|
|
176
176
|
{ value: "var", description: "Represents the name of a variable in a mathematical expression" }
|
|
177
|
-
], V = ["title"], M = ["cite", "dateTime"],
|
|
177
|
+
], V = ["title"], M = ["cite", "dateTime"], U = [...V, ...M], F = [
|
|
178
178
|
"get",
|
|
179
179
|
"post",
|
|
180
180
|
"put",
|
|
@@ -398,15 +398,15 @@ function J(i) {
|
|
|
398
398
|
export {
|
|
399
399
|
P as L,
|
|
400
400
|
q as M,
|
|
401
|
-
|
|
402
|
-
|
|
401
|
+
B as T,
|
|
402
|
+
U as V,
|
|
403
403
|
J as a,
|
|
404
404
|
x as b,
|
|
405
405
|
N as c,
|
|
406
406
|
C as d,
|
|
407
407
|
z as e,
|
|
408
408
|
D as f,
|
|
409
|
-
|
|
409
|
+
E as g,
|
|
410
410
|
T as h,
|
|
411
411
|
K as i,
|
|
412
412
|
O as j,
|