@underverse-ui/underverse 2.0.36 → 2.0.37
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 +1 -1
- package/dist/{chunk-SCW2XGCE.js → chunk-6K6CKZUL.js} +10 -10
- package/dist/chunk-6K6CKZUL.js.map +1 -0
- package/dist/{chunk-V4VZZHV7.js → chunk-GZ7EDNGF.js} +202 -184
- package/dist/chunk-GZ7EDNGF.js.map +1 -0
- package/dist/index.cjs +484 -458
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/{menu-bar-MX3LXG6T.js → menu-bar-VXAMTP3E.js} +2 -2
- package/dist/ueditor.cjs +496 -470
- package/dist/ueditor.cjs.map +1 -1
- package/dist/ueditor.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-SCW2XGCE.js.map +0 -1
- package/dist/chunk-V4VZZHV7.js.map +0 -1
- /package/dist/{menu-bar-MX3LXG6T.js.map → menu-bar-VXAMTP3E.js.map} +0 -0
package/api-reference.json
CHANGED
|
@@ -19,6 +19,9 @@ import {
|
|
|
19
19
|
MIN_TABLE_ROW_HEIGHT,
|
|
20
20
|
ROW_RESIZE_LINE_THICKNESS,
|
|
21
21
|
TABLE_WIDTH_BASIS_POINTS,
|
|
22
|
+
TableVerticalAlignBottomIcon,
|
|
23
|
+
TableVerticalAlignMiddleIcon,
|
|
24
|
+
TableVerticalAlignTopIcon,
|
|
22
25
|
TextColorIcon,
|
|
23
26
|
ToolbarButton,
|
|
24
27
|
UEDITOR_PROSEMIRROR_CLASS_NAME,
|
|
@@ -93,7 +96,7 @@ import {
|
|
|
93
96
|
sanitizeUEditorUrl,
|
|
94
97
|
useEditorColors,
|
|
95
98
|
useSharedEditorUiRenderState
|
|
96
|
-
} from "./chunk-
|
|
99
|
+
} from "./chunk-GZ7EDNGF.js";
|
|
97
100
|
import {
|
|
98
101
|
Tooltip
|
|
99
102
|
} from "./chunk-EN33T3LJ.js";
|
|
@@ -5908,9 +5911,6 @@ import {
|
|
|
5908
5911
|
Unlink,
|
|
5909
5912
|
ExternalLink as ExternalLink2,
|
|
5910
5913
|
Sigma as Sigma2,
|
|
5911
|
-
AlignStartVertical,
|
|
5912
|
-
AlignCenterVertical,
|
|
5913
|
-
AlignEndVertical,
|
|
5914
5914
|
ArrowDown,
|
|
5915
5915
|
ArrowRight,
|
|
5916
5916
|
WrapText
|
|
@@ -6900,7 +6900,7 @@ var BubbleMenuContent = ({
|
|
|
6900
6900
|
] })
|
|
6901
6901
|
] });
|
|
6902
6902
|
}
|
|
6903
|
-
const VerticalAlignActiveIcon = currentCellVerticalAlign === "middle" ?
|
|
6903
|
+
const VerticalAlignActiveIcon = currentCellVerticalAlign === "middle" ? TableVerticalAlignMiddleIcon : currentCellVerticalAlign === "bottom" ? TableVerticalAlignBottomIcon : TableVerticalAlignTopIcon;
|
|
6904
6904
|
if (isTableCellSelection) {
|
|
6905
6905
|
return /* @__PURE__ */ jsxs10("div", { className: "flex items-center gap-0.5 p-1", "data-ueditor-cell-inspector": "", children: [
|
|
6906
6906
|
/* @__PURE__ */ jsx13(
|
|
@@ -6994,7 +6994,7 @@ var BubbleMenuContent = ({
|
|
|
6994
6994
|
/* @__PURE__ */ jsx13(
|
|
6995
6995
|
DropdownMenuItem,
|
|
6996
6996
|
{
|
|
6997
|
-
icon:
|
|
6997
|
+
icon: TableVerticalAlignTopIcon,
|
|
6998
6998
|
label: t("tableMenu.alignVerticalTop") || "Align top",
|
|
6999
6999
|
onClick: () => applyTableCellAttribute(editor, "verticalAlign", "top", { focus: false }),
|
|
7000
7000
|
active: currentCellVerticalAlign === "top"
|
|
@@ -7003,7 +7003,7 @@ var BubbleMenuContent = ({
|
|
|
7003
7003
|
/* @__PURE__ */ jsx13(
|
|
7004
7004
|
DropdownMenuItem,
|
|
7005
7005
|
{
|
|
7006
|
-
icon:
|
|
7006
|
+
icon: TableVerticalAlignMiddleIcon,
|
|
7007
7007
|
label: t("tableMenu.alignVerticalMiddle") || "Align middle",
|
|
7008
7008
|
onClick: () => applyTableCellAttribute(editor, "verticalAlign", "middle", { focus: false }),
|
|
7009
7009
|
active: currentCellVerticalAlign === "middle"
|
|
@@ -7012,7 +7012,7 @@ var BubbleMenuContent = ({
|
|
|
7012
7012
|
/* @__PURE__ */ jsx13(
|
|
7013
7013
|
DropdownMenuItem,
|
|
7014
7014
|
{
|
|
7015
|
-
icon:
|
|
7015
|
+
icon: TableVerticalAlignBottomIcon,
|
|
7016
7016
|
label: t("tableMenu.alignVerticalBottom") || "Align bottom",
|
|
7017
7017
|
onClick: () => applyTableCellAttribute(editor, "verticalAlign", "bottom", { focus: false }),
|
|
7018
7018
|
active: currentCellVerticalAlign === "bottom"
|
|
@@ -14997,7 +14997,7 @@ function useUEditorOutput({
|
|
|
14997
14997
|
// src/components/UEditor/UEditor.tsx
|
|
14998
14998
|
import { jsx as jsx21, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
14999
14999
|
var LazyMenuBar = React17.lazy(async () => {
|
|
15000
|
-
const { MenuBar } = await import("./menu-bar-
|
|
15000
|
+
const { MenuBar } = await import("./menu-bar-VXAMTP3E.js");
|
|
15001
15001
|
return { default: MenuBar };
|
|
15002
15002
|
});
|
|
15003
15003
|
var UEditor = React17.forwardRef(({
|
|
@@ -15491,4 +15491,4 @@ export {
|
|
|
15491
15491
|
prepareUEditorContentForSave,
|
|
15492
15492
|
UEditor_default
|
|
15493
15493
|
};
|
|
15494
|
-
//# sourceMappingURL=chunk-
|
|
15494
|
+
//# sourceMappingURL=chunk-6K6CKZUL.js.map
|