xmlui 0.9.37 → 0.9.39
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/{apiInterceptorWorker-5JLbCSKz.mjs → apiInterceptorWorker-CuqdinHT.mjs} +2 -1
- package/dist/lib/{core-XLM8cuFP.mjs → core-CNYDxpbi.mjs} +1 -1
- package/dist/lib/{index-qQpSddXH.mjs → index-DAE4_Ivq.mjs} +1337 -8880
- package/dist/lib/index-DCbaK7GI.mjs +17521 -0
- package/dist/lib/index.css +248 -551
- package/dist/lib/language-server-web-worker.mjs +1 -1
- package/dist/lib/language-server.mjs +1 -1
- package/dist/lib/{server-common-D9McswSL.mjs → server-common-GEz8hGWu.mjs} +6 -0
- package/dist/lib/xmlui.d.ts +1 -1
- package/dist/lib/xmlui.mjs +16 -16
- package/dist/metadata/style.css +248 -551
- package/dist/metadata/xmlui-metadata.mjs +223 -189
- package/dist/metadata/xmlui-metadata.umd.js +223 -189
- package/dist/scripts/package.json +3 -3
- package/dist/scripts/src/components/CodeBlock/CodeBlockNative.js +24 -1
- package/dist/scripts/src/components/CodeBlock/highlight-code.js +21 -1
- package/dist/scripts/src/components/ComponentProvider.js +9 -9
- package/dist/scripts/src/components/DatePicker/DatePicker.js +1 -0
- package/dist/scripts/src/components/DatePicker/DatePickerNative.js +25 -22
- package/dist/scripts/src/components/Heading/Heading.js +1 -1
- package/dist/scripts/src/components/Heading/HeadingNative.js +11 -2
- package/dist/scripts/src/components/Icon/AdmonitionDanger.js +10 -0
- package/dist/scripts/src/components/Icon/AdmonitionInfo.js +10 -0
- package/dist/scripts/src/components/Icon/AdmonitionNote.js +10 -0
- package/dist/scripts/src/components/Icon/AdmonitionTip.js +10 -0
- package/dist/scripts/src/components/Icon/AdmonitionWarning.js +10 -0
- package/dist/scripts/src/components/IconProvider.js +10 -0
- package/dist/scripts/src/components/Markdown/MarkdownNative.js +24 -18
- package/dist/scripts/src/components/NavLink/NavLinkNative.js +9 -19
- package/dist/scripts/src/components/NestedApp/NestedAppNative.js +64 -22
- package/dist/scripts/src/components-core/XmluiCodeHighlighter.js +4 -4
- package/dist/scripts/src/components-core/interception/apiInterceptorWorker.js +2 -1
- package/dist/scripts/src/components-core/loader/Loader.js +4 -4
- package/dist/scripts/src/components-core/rendering/AppWrapper.js +3 -5
- package/dist/standalone/xmlui-standalone.es.d.ts +1 -1
- package/dist/standalone/xmlui-standalone.umd.js +53304 -46983
- package/package.json +3 -3
|
@@ -17414,6 +17414,11 @@ const collectedComponentMetadata = {
|
|
|
17414
17414
|
"description": "This boolean property specifies whether leading indents should be removed from the markdown content. If set to `true`, the shortest indent found at the start of the content lines is removed from the beginning of every line.",
|
|
17415
17415
|
"valueType": "boolean",
|
|
17416
17416
|
"defaultValue": true
|
|
17417
|
+
},
|
|
17418
|
+
"showHeadingAnchors": {
|
|
17419
|
+
"description": "This boolean property specifies whether heading anchors should be displayed. If set to `true`, heading anchors will be displayed on hover next to headings.",
|
|
17420
|
+
"valueType": "boolean",
|
|
17421
|
+
"defaultValue": false
|
|
17417
17422
|
}
|
|
17418
17423
|
},
|
|
17419
17424
|
"defaultThemeVars": {
|
|
@@ -20586,6 +20591,7 @@ const collectedComponentMetadata = {
|
|
|
20586
20591
|
"textColor-Text": "$textColor-primary",
|
|
20587
20592
|
"fontFamily-Text": "$fontFamily",
|
|
20588
20593
|
"fontWeight-Text": "$fontWeight-normal",
|
|
20594
|
+
"fontSize-Text-codefence": "$fontSize-small",
|
|
20589
20595
|
"fontFamily-Text-code": "$fontFamily-monospace",
|
|
20590
20596
|
"fontSize-Text-code": "$fontSize-small",
|
|
20591
20597
|
"borderWidth-Text-code": "1px",
|
package/dist/lib/xmlui.d.ts
CHANGED
|
@@ -1252,7 +1252,7 @@ declare type Message = ValueOrFunction<Renderable, Toast>;
|
|
|
1252
1252
|
*/
|
|
1253
1253
|
declare type ModuleErrors = Record<string, ScriptParserErrorMessage[]>;
|
|
1254
1254
|
|
|
1255
|
-
export declare function NestedApp({ api, app, components, config, activeTheme, activeTone, title, height, allowPlaygroundPopup, withFrame }: NestedAppProps): JSX_2.Element;
|
|
1255
|
+
export declare function NestedApp({ api, app, components, config, activeTheme, activeTone, title, height, allowPlaygroundPopup, withFrame, }: NestedAppProps): JSX_2.Element;
|
|
1256
1256
|
|
|
1257
1257
|
declare type NestedAppProps = {
|
|
1258
1258
|
api?: any;
|
package/dist/lib/xmlui.mjs
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { y, A, B, E, I, N, z, i, h, S, b, k, l, D, C, c, e, f, w, j, p, s, t, n, q, v, u, x } from "./index-DAE4_Ivq.mjs";
|
|
2
2
|
import { X } from "./xmlui-serializer-CQnuXBof.mjs";
|
|
3
3
|
export {
|
|
4
|
-
|
|
4
|
+
y as ApiInterceptorProvider,
|
|
5
5
|
A as AppRoot,
|
|
6
6
|
B as Button,
|
|
7
7
|
E as ErrorBoundary,
|
|
8
8
|
I as Icon,
|
|
9
9
|
N as NestedApp,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
z as Spinner,
|
|
11
|
+
i as Splitter,
|
|
12
|
+
h as Stack,
|
|
13
13
|
S as StandaloneApp,
|
|
14
14
|
b as StandaloneExtensionManager,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
k as TabItem,
|
|
16
|
+
l as Tabs,
|
|
17
|
+
D as Text,
|
|
18
18
|
X as XmlUiHelper,
|
|
19
|
-
|
|
19
|
+
C as builtInThemes,
|
|
20
20
|
c as createComponentRenderer,
|
|
21
21
|
e as createMetadata,
|
|
22
22
|
f as d,
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
w as errReportComponent,
|
|
24
|
+
j as getColor,
|
|
25
25
|
p as parseScssVar,
|
|
26
|
-
|
|
26
|
+
s as startApp,
|
|
27
27
|
t as toCssVar,
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
n as useColors,
|
|
29
|
+
q as useDevTools,
|
|
30
|
+
v as useLogger,
|
|
31
31
|
u as useTheme,
|
|
32
|
-
|
|
32
|
+
x as xmlUiMarkupToComponent
|
|
33
33
|
};
|