@underverse-ui/underverse 2.0.3 → 2.0.5
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/api-reference.json +9 -2
- package/dist/{chunk-Y7SQKJ7X.js → chunk-2UQ7H5GR.js} +3 -3
- package/dist/{chunk-Z6WE65J2.js → chunk-JXE7JBQV.js} +24 -6
- package/dist/chunk-JXE7JBQV.js.map +1 -0
- package/dist/{chunk-UNDGI6ZI.js → chunk-OZH3EDGZ.js} +2 -2
- package/dist/index.cjs +206 -88
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +76 -21
- package/dist/index.d.ts +76 -21
- package/dist/index.js +186 -86
- package/dist/index.js.map +1 -1
- package/dist/{menu-bar-AAD3LQTN.js → menu-bar-6HZDCX44.js} +3 -3
- package/dist/ueditor.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-Z6WE65J2.js.map +0 -1
- /package/dist/{chunk-Y7SQKJ7X.js.map → chunk-2UQ7H5GR.js.map} +0 -0
- /package/dist/{chunk-UNDGI6ZI.js.map → chunk-OZH3EDGZ.js.map} +0 -0
- /package/dist/{menu-bar-AAD3LQTN.js.map → menu-bar-6HZDCX44.js.map} +0 -0
package/api-reference.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@underverse-ui/underverse",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"sourceEntry": "src/index.ts",
|
|
5
|
-
"totalExports":
|
|
5
|
+
"totalExports": 257,
|
|
6
6
|
"exports": [
|
|
7
7
|
{
|
|
8
8
|
"name": "*",
|
|
@@ -466,6 +466,13 @@
|
|
|
466
466
|
"reexport": true,
|
|
467
467
|
"local": false
|
|
468
468
|
},
|
|
469
|
+
{
|
|
470
|
+
"name": "DataTablePaginationAlign",
|
|
471
|
+
"kind": "type",
|
|
472
|
+
"source": "./components/DataTable",
|
|
473
|
+
"reexport": true,
|
|
474
|
+
"local": false
|
|
475
|
+
},
|
|
469
476
|
{
|
|
470
477
|
"name": "DataTableProps",
|
|
471
478
|
"kind": "type",
|
|
@@ -53,7 +53,7 @@ import {
|
|
|
53
53
|
sanitizeUEditorUrl,
|
|
54
54
|
useEditorColors,
|
|
55
55
|
useSharedEditorUiRenderState
|
|
56
|
-
} from "./chunk-
|
|
56
|
+
} from "./chunk-JXE7JBQV.js";
|
|
57
57
|
import {
|
|
58
58
|
Tooltip,
|
|
59
59
|
cn,
|
|
@@ -14303,7 +14303,7 @@ function useUEditorOutput({
|
|
|
14303
14303
|
// src/components/UEditor/UEditor.tsx
|
|
14304
14304
|
import { jsx as jsx20, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
14305
14305
|
var LazyMenuBar = React15.lazy(async () => {
|
|
14306
|
-
const { MenuBar } = await import("./menu-bar-
|
|
14306
|
+
const { MenuBar } = await import("./menu-bar-6HZDCX44.js");
|
|
14307
14307
|
return { default: MenuBar };
|
|
14308
14308
|
});
|
|
14309
14309
|
var UEditor = React15.forwardRef(({
|
|
@@ -14753,4 +14753,4 @@ export {
|
|
|
14753
14753
|
prepareUEditorContentForSave,
|
|
14754
14754
|
UEditor_default
|
|
14755
14755
|
};
|
|
14756
|
-
//# sourceMappingURL=chunk-
|
|
14756
|
+
//# sourceMappingURL=chunk-2UQ7H5GR.js.map
|
|
@@ -579,17 +579,26 @@ import { ChevronRight } from "lucide-react";
|
|
|
579
579
|
|
|
580
580
|
// src/constants/form-control-size.ts
|
|
581
581
|
var formControlSizeStyles = {
|
|
582
|
+
xs: {
|
|
583
|
+
control: "h-6 px-2 text-xs leading-none",
|
|
584
|
+
compactControl: "h-6 px-2 text-xs leading-none",
|
|
585
|
+
input: "h-6 px-2 text-xs leading-none",
|
|
586
|
+
label: "text-xs",
|
|
587
|
+
icon: "h-3.5 w-3.5",
|
|
588
|
+
iconButton: "h-6 w-6",
|
|
589
|
+
tag: "h-4 max-w-20 px-1.5 text-[10px] leading-none"
|
|
590
|
+
},
|
|
582
591
|
sm: {
|
|
583
|
-
control: "h-8 px-3 text-sm leading-none
|
|
584
|
-
compactControl: "h-8 px-2.5 text-sm leading-none
|
|
585
|
-
input: "h-8 px-3 text-sm leading-none
|
|
592
|
+
control: "h-8 px-3 text-sm leading-none",
|
|
593
|
+
compactControl: "h-8 px-2.5 text-sm leading-none",
|
|
594
|
+
input: "h-8 px-3 text-sm leading-none",
|
|
586
595
|
label: "text-xs",
|
|
587
596
|
icon: "h-4 w-4 md:h-3.5 md:w-3.5",
|
|
588
597
|
iconButton: "h-7 w-7 md:h-6 md:w-6",
|
|
589
598
|
tag: "h-5 max-w-24 px-2 text-[10px] leading-none"
|
|
590
599
|
},
|
|
591
600
|
md: {
|
|
592
|
-
control: "h-10 px-
|
|
601
|
+
control: "h-10 px-4 text-sm leading-none",
|
|
593
602
|
compactControl: "h-10 px-3 text-sm leading-none",
|
|
594
603
|
input: "h-10 px-4 text-sm leading-none",
|
|
595
604
|
label: "text-sm",
|
|
@@ -598,13 +607,22 @@ var formControlSizeStyles = {
|
|
|
598
607
|
tag: "h-6 max-w-28 px-2 text-xs leading-none"
|
|
599
608
|
},
|
|
600
609
|
lg: {
|
|
601
|
-
control: "h-12 px-
|
|
610
|
+
control: "h-12 px-6 text-base leading-none",
|
|
602
611
|
compactControl: "h-12 px-4 text-base leading-none",
|
|
603
612
|
input: "h-12 px-5 text-base leading-none",
|
|
604
613
|
label: "text-base",
|
|
605
614
|
icon: "h-5 w-5",
|
|
606
615
|
iconButton: "h-10 w-10",
|
|
607
616
|
tag: "h-7 max-w-32 px-2.5 text-sm leading-none"
|
|
617
|
+
},
|
|
618
|
+
xl: {
|
|
619
|
+
control: "h-14 px-8 text-base leading-none",
|
|
620
|
+
compactControl: "h-14 px-5 text-base leading-none",
|
|
621
|
+
input: "h-14 px-6 text-base leading-none",
|
|
622
|
+
label: "text-base",
|
|
623
|
+
icon: "h-5 w-5",
|
|
624
|
+
iconButton: "h-12 w-12",
|
|
625
|
+
tag: "h-8 max-w-36 px-3 text-sm leading-none"
|
|
608
626
|
}
|
|
609
627
|
};
|
|
610
628
|
var formControlFixedClass = "min-h-0 overflow-hidden";
|
|
@@ -4549,4 +4567,4 @@ export {
|
|
|
4549
4567
|
EditorToolbar,
|
|
4550
4568
|
UEDITOR_PROSEMIRROR_CLASS_NAME
|
|
4551
4569
|
};
|
|
4552
|
-
//# sourceMappingURL=chunk-
|
|
4570
|
+
//# sourceMappingURL=chunk-JXE7JBQV.js.map
|