xmlui 0.9.70 → 0.9.72
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-Cp_yrBPk.mjs → apiInterceptorWorker-B9Uw4ogq.mjs} +1 -1
- package/dist/lib/{index-4WlYHG9T.mjs → index-DHZSwtDq.mjs} +10425 -10767
- package/dist/lib/index.css +1 -1
- package/dist/lib/xmlui.d.ts +4 -9
- package/dist/lib/xmlui.mjs +1 -1
- package/dist/metadata/{apiInterceptorWorker-yn6Vdys3.mjs → apiInterceptorWorker-DwXA1Dk9.mjs} +1 -1
- package/dist/metadata/{collectedComponentMetadata-BJvhmV4w.mjs → collectedComponentMetadata-B6Gwz_zi.mjs} +9279 -9620
- package/dist/metadata/style.css +1 -1
- package/dist/metadata/xmlui-metadata.mjs +1 -1
- package/dist/metadata/xmlui-metadata.umd.js +92 -92
- package/dist/scripts/package.json +4 -3
- package/dist/scripts/src/components/Checkbox/Checkbox.js +3 -8
- package/dist/scripts/src/components/CodeBlock/CodeBlockNative.js +4 -2
- package/dist/scripts/src/components/FlowLayout/FlowLayoutNative.js +1 -1
- package/dist/scripts/src/components/List/ListNative.js +1 -1
- package/dist/scripts/src/components/Markdown/MarkdownNative.js +2 -2
- package/dist/scripts/src/components/NestedApp/AppWithCodeViewNative.js +13 -15
- package/dist/scripts/src/components/NestedApp/NestedApp.js +5 -15
- package/dist/scripts/src/components/NestedApp/NestedAppNative.js +56 -87
- package/dist/scripts/src/components/NestedApp/utils.js +7 -0
- package/dist/scripts/src/components/Switch/Switch.js +2 -2
- package/dist/scripts/src/components/TableOfContents/TableOfContents.js +8 -2
- package/dist/scripts/src/components/TableOfContents/TableOfContentsNative.js +4 -3
- package/dist/scripts/src/components/Toggle/Toggle.js +8 -11
- package/dist/scripts/src/components-core/interception/ApiInterceptorProvider.js +48 -26
- package/dist/scripts/src/components-core/rendering/AppContent.js +8 -5
- package/dist/scripts/src/components-core/theming/ThemeProvider.js +1 -2
- package/dist/standalone/xmlui-standalone.es.d.ts +4 -9
- package/dist/standalone/xmlui-standalone.umd.js +235 -235
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xmlui",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.72",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start-test-bed": "cd src/testing/infrastructure && xmlui start",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"@radix-ui/react-alert-dialog": "^1.1.2",
|
|
35
35
|
"@radix-ui/react-dialog": "1.0.5",
|
|
36
36
|
"@radix-ui/react-dropdown-menu": "2.0.6",
|
|
37
|
+
"@radix-ui/react-focus-scope": "1.0.4",
|
|
37
38
|
"@radix-ui/react-hover-card": "1.0.7",
|
|
38
39
|
"@radix-ui/react-popover": "^1.1.2",
|
|
39
40
|
"@radix-ui/react-radio-group": "1.1.3",
|
|
@@ -47,12 +48,12 @@
|
|
|
47
48
|
"@tanstack/react-query-devtools": "^4.36.1",
|
|
48
49
|
"@tanstack/react-table": "8.17.3",
|
|
49
50
|
"@tanstack/react-virtual": "3.10.8",
|
|
50
|
-
"@tiptap/react": "^2.23.0",
|
|
51
|
-
"@tiptap/starter-kit": "^2.23.0",
|
|
52
51
|
"@tiptap/extension-table": "^2.23.0",
|
|
53
52
|
"@tiptap/extension-table-cell": "^2.23.0",
|
|
54
53
|
"@tiptap/extension-table-header": "^2.23.0",
|
|
55
54
|
"@tiptap/extension-table-row": "^2.23.0",
|
|
55
|
+
"@tiptap/react": "^2.23.0",
|
|
56
|
+
"@tiptap/starter-kit": "^2.23.0",
|
|
56
57
|
"@types/chroma-js": "^3.1.1",
|
|
57
58
|
"@types/color": "3.0.6",
|
|
58
59
|
"@vitejs/plugin-react": "4.3.0",
|