@univerjs/docs-ui 0.6.5 → 0.6.6-nightly.202503141606
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/lib/cjs/index.js +18 -18
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +2132 -2037
- package/lib/es/locale/en-US.js +1 -0
- package/lib/es/locale/fa-IR.js +1 -0
- package/lib/es/locale/fr-FR.js +1 -0
- package/lib/es/locale/ru-RU.js +1 -0
- package/lib/es/locale/vi-VN.js +1 -0
- package/lib/es/locale/zh-CN.js +1 -0
- package/lib/es/locale/zh-TW.js +1 -0
- package/lib/types/commands/commands/break-line.command.d.ts +7 -3
- package/lib/types/commands/commands/doc-delete.command.d.ts +1 -0
- package/lib/types/commands/commands/doc-horizontal-line.command.d.ts +5 -0
- package/lib/types/controllers/menu/menu.d.ts +1 -0
- package/lib/types/locale/zh-CN.d.ts +1 -0
- package/lib/umd/index.js +16 -16
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +9 -9
- package/LICENSE +0 -176
package/lib/es/locale/en-US.js
CHANGED
package/lib/es/locale/fa-IR.js
CHANGED
package/lib/es/locale/fr-FR.js
CHANGED
package/lib/es/locale/ru-RU.js
CHANGED
|
@@ -31,6 +31,7 @@ const e = {
|
|
|
31
31
|
alignCenter: "Выровнять по центру",
|
|
32
32
|
alignRight: "Выровнять по правому краю",
|
|
33
33
|
alignJustify: "Выровнять по ширине",
|
|
34
|
+
horizontalLine: "Horizontal line",
|
|
34
35
|
headerFooter: "Header & Footer",
|
|
35
36
|
checklist: "Task list",
|
|
36
37
|
documentFlavor: "Modern Mode"
|
package/lib/es/locale/vi-VN.js
CHANGED
package/lib/es/locale/zh-CN.js
CHANGED
package/lib/es/locale/zh-TW.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
import { ICommand, IParagraph } from '@univerjs/core';
|
|
2
|
-
export declare function generateParagraphs(dataStream: string, prevParagraph?: IParagraph): IParagraph[];
|
|
3
|
-
|
|
1
|
+
import { ICommand, IParagraph, IParagraphBorder } from '@univerjs/core';
|
|
2
|
+
export declare function generateParagraphs(dataStream: string, prevParagraph?: IParagraph, borderBottom?: IParagraphBorder): IParagraph[];
|
|
3
|
+
interface IBreakLineCommandParams {
|
|
4
|
+
horizontalLine?: IParagraphBorder;
|
|
5
|
+
}
|
|
6
|
+
export declare const BreakLineCommand: ICommand<IBreakLineCommandParams>;
|
|
7
|
+
export {};
|
|
@@ -13,6 +13,7 @@ interface IMergeTwoParagraphParams {
|
|
|
13
13
|
range: ITextRangeWithStyle;
|
|
14
14
|
}
|
|
15
15
|
export declare const MergeTwoParagraphCommand: ICommand<IMergeTwoParagraphParams>;
|
|
16
|
+
export declare const RemoveHorizontalLineCommand: ICommand;
|
|
16
17
|
export declare function getCursorWhenDelete(textRanges: Readonly<Nullable<ITextRangeWithStyle[]>>, rectRanges: readonly IRectRangeWithStyle[]): number;
|
|
17
18
|
export declare const DeleteLeftCommand: ICommand;
|
|
18
19
|
export declare const DeleteRightCommand: ICommand;
|
|
@@ -18,6 +18,7 @@ export declare function AlignLeftMenuItemFactory(accessor: IAccessor): IMenuButt
|
|
|
18
18
|
export declare function AlignCenterMenuItemFactory(accessor: IAccessor): IMenuButtonItem;
|
|
19
19
|
export declare function AlignRightMenuItemFactory(accessor: IAccessor): IMenuButtonItem;
|
|
20
20
|
export declare function AlignJustifyMenuItemFactory(accessor: IAccessor): IMenuButtonItem;
|
|
21
|
+
export declare function HorizontalLineFactory(accessor: IAccessor): IMenuButtonItem;
|
|
21
22
|
export declare function OrderListMenuItemFactory(accessor: IAccessor): IMenuSelectorItem<PresetListType, PresetListType>;
|
|
22
23
|
export declare function BulletListMenuItemFactory(accessor: IAccessor): IMenuSelectorItem<PresetListType, PresetListType>;
|
|
23
24
|
export declare function CheckListMenuItemFactory(accessor: IAccessor): IMenuButtonItem;
|