@ones-editor/editor 0.0.3-beta.94 → 0.0.3-beta.95
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/@ones-editor/code-block/src/locale/en-us.d.ts +0 -2
- package/@ones-editor/code-block/src/locale/ja-jp.d.ts +0 -2
- package/@ones-editor/code-block/src/locale/zh-cn.d.ts +0 -2
- package/@ones-editor/core/src/i18n/i18n.d.ts +0 -16
- package/@ones-editor/dividing-line-embed/src/i18n/ja-jp.d.ts +6 -0
- package/@ones-editor/table-block/src/table-block/table-dom.d.ts +1 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/dist/index.js +117 -117
- package/package.json +1 -1
- package/@ones-editor/core/src/i18n/ja-jp.d.ts +0 -17
- package/@ones-editor/ui-base/src/locale/ja-jp.d.ts +0 -12
|
@@ -31,22 +31,6 @@ declare const langs: {
|
|
|
31
31
|
cancel: string;
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
|
-
'ja-JP': {
|
|
35
|
-
name: string;
|
|
36
|
-
date: {
|
|
37
|
-
dateFromFuture: string;
|
|
38
|
-
dateJustNow: string;
|
|
39
|
-
dateYesterday: string;
|
|
40
|
-
dateMinutesAgo: string;
|
|
41
|
-
date1HourAgo: string;
|
|
42
|
-
dateHoursAgo: string;
|
|
43
|
-
dateDaysAgo: string;
|
|
44
|
-
dateWeeksAgo: string;
|
|
45
|
-
};
|
|
46
|
-
common: {
|
|
47
|
-
cancel: string;
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
34
|
};
|
|
51
35
|
export declare function setLang(lang?: string | null | undefined): void;
|
|
52
36
|
export declare function mergeLang(l: any): void;
|
|
@@ -4,6 +4,7 @@ export declare function getTableScrollKey(block: BlockElement): string;
|
|
|
4
4
|
export declare function getTableContent(editor: OnesEditor, block: BlockElement): HTMLDivElement;
|
|
5
5
|
export declare function getBlockTable(block: BlockElement): HTMLTableElement;
|
|
6
6
|
export declare function getTableTools(editor: OnesEditor, block: BlockElement): HTMLElement;
|
|
7
|
+
export declare function findExistsTableTools(editor: OnesEditor, block: BlockElement): HTMLElement | null;
|
|
7
8
|
export declare function getTableCells(table: HTMLTableElement): HTMLTableCellElement[];
|
|
8
9
|
export declare function getChildContainerInCell(cell: HTMLTableCellElement): ContainerElement;
|
|
9
10
|
export declare function getTableContainers(table: HTMLTableElement): ContainerElement[];
|