poro-editor 1.4.0 → 1.6.1
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/config.d.ts +23 -1
- package/dist/i18n/en.d.ts +182 -0
- package/dist/i18n/index.d.ts +11 -0
- package/dist/i18n/ja.d.ts +182 -0
- package/dist/i18n/zh.d.ts +182 -0
- package/dist/poro-editor.css +1 -1
- package/dist/poro-editor.js +19701 -15450
- package/dist/poro-editor.js.map +1 -1
- package/dist/poro-editor.umd.cjs +621 -145
- package/dist/poro-editor.umd.cjs.map +1 -1
- package/dist/theme/basicCSS.d.ts +1 -0
- package/dist/ui/ai/AIBubbleMenu.d.ts +5 -0
- package/dist/ui/ai/AIDialog.d.ts +8 -0
- package/dist/ui/ai/AIMenu.d.ts +6 -0
- package/dist/ui/ai/aiService.d.ts +81 -0
- package/dist/{EmojiPicker.d.ts → ui/emoji/EmojiPicker.d.ts} +2 -1
- package/dist/{ImageMenu.d.ts → ui/image/ImageMenu.d.ts} +2 -1
- package/dist/{AlignMenu.d.ts → ui/menubar/AlignMenu.d.ts} +2 -1
- package/dist/{FontSizeSelector.d.ts → ui/menubar/FontSizeSelector.d.ts} +2 -1
- package/dist/ui/menubar/FormatPainter.d.ts +5 -0
- package/dist/{HeadingSelector.d.ts → ui/menubar/HeadingSelector.d.ts} +2 -1
- package/dist/{LinkButton.d.ts → ui/menubar/LinkButton.d.ts} +2 -1
- package/dist/{HtmlPreview.d.ts → ui/source/HtmlPreview.d.ts} +2 -1
- package/dist/{SourceCodeViewer.d.ts → ui/source/SourceCodeViewer.d.ts} +2 -1
- package/dist/{TableMenu.d.ts → ui/table/TableMenu.d.ts} +2 -1
- package/dist/{VariableNodeView.d.ts → ui/variable/VariableNodeView.d.ts} +2 -1
- package/dist/{VariablePanel.d.ts → ui/variable/VariablePanel.d.ts} +2 -1
- package/package.json +2 -1
- package/dist/locales/index.d.ts +0 -452
- /package/dist/{BubbleMenuContent.d.ts → ui/bubble-menu/BubbleMenuContent.d.ts} +0 -0
- /package/dist/{CharCount.d.ts → ui/char-count/CharCount.d.ts} +0 -0
- /package/dist/{ColorPickerButton.d.ts → ui/common/ColorPickerButton.d.ts} +0 -0
- /package/dist/{Icon.d.ts → ui/common/Icon.d.ts} +0 -0
- /package/dist/{MenuButton.d.ts → ui/common/MenuButton.d.ts} +0 -0
- /package/dist/{FloatingMenuContent.d.ts → ui/floating-menu/FloatingMenuContent.d.ts} +0 -0
- /package/dist/{CustomImage.d.ts → ui/image/CustomImage.d.ts} +0 -0
- /package/dist/{ImagePaste.d.ts → ui/image/ImagePaste.d.ts} +0 -0
- /package/dist/{ImagePlaceholder.d.ts → ui/image/ImagePlaceholder.d.ts} +0 -0
- /package/dist/{ImageToolbar.d.ts → ui/image/ImageToolbar.d.ts} +0 -0
- /package/dist/{ImageView.d.ts → ui/image/ImageView.d.ts} +0 -0
- /package/dist/{imageUpload.d.ts → ui/image/imageUpload.d.ts} +0 -0
- /package/dist/{MenuBar.d.ts → ui/menubar/MenuBar.d.ts} +0 -0
- /package/dist/{OutlineExtension.d.ts → ui/outline/OutlineExtension.d.ts} +0 -0
- /package/dist/{OutlineNodeView.d.ts → ui/outline/OutlineNodeView.d.ts} +0 -0
- /package/dist/{TableBubbleMenu.d.ts → ui/table/TableBubbleMenu.d.ts} +0 -0
- /package/dist/{VariableExtension.d.ts → ui/variable/VariableExtension.d.ts} +0 -0
package/dist/config.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const MENU_BAR_ITEMS: string[];
|
|
2
|
-
export const BUBBLE_MENU_ITEMS: string[];
|
|
2
|
+
export const BUBBLE_MENU_ITEMS: (string | undefined)[];
|
|
3
3
|
export const FLOATING_MENU_ITEMS: string[];
|
|
4
4
|
export namespace DEFAULT_UPLOAD_CONFIG {
|
|
5
5
|
let uploadUrl: string;
|
|
@@ -17,6 +17,25 @@ export namespace DEFAULT_UPLOAD_CONFIG {
|
|
|
17
17
|
let customUploader: null;
|
|
18
18
|
}
|
|
19
19
|
export const DEFAULT_EXPORT_FORMATS: string[];
|
|
20
|
+
export const DEFAULT_VARIABLES: {
|
|
21
|
+
id: string;
|
|
22
|
+
label: string;
|
|
23
|
+
}[];
|
|
24
|
+
export namespace DEFAULT_VARIABLE_CONFIG {
|
|
25
|
+
export { DEFAULT_VARIABLES as items };
|
|
26
|
+
export let prefix: string;
|
|
27
|
+
export let suffix: string;
|
|
28
|
+
}
|
|
29
|
+
export namespace DEFAULT_AI_CONFIG {
|
|
30
|
+
let enabled: boolean;
|
|
31
|
+
let apiKey: string;
|
|
32
|
+
let baseURL: string;
|
|
33
|
+
let model: string;
|
|
34
|
+
let maxTokens: number;
|
|
35
|
+
let temperature: number;
|
|
36
|
+
let stream: boolean;
|
|
37
|
+
let customHandler: null;
|
|
38
|
+
}
|
|
20
39
|
export namespace DEFAULT_CONFIG {
|
|
21
40
|
export { MENU_BAR_ITEMS as menuBar };
|
|
22
41
|
export { BUBBLE_MENU_ITEMS as bubbleMenu };
|
|
@@ -28,4 +47,7 @@ export namespace DEFAULT_CONFIG {
|
|
|
28
47
|
export let maxLength: null;
|
|
29
48
|
export let showCharCount: boolean;
|
|
30
49
|
export let readonly: boolean;
|
|
50
|
+
export { DEFAULT_VARIABLE_CONFIG as variables };
|
|
51
|
+
export { DEFAULT_AI_CONFIG as ai };
|
|
52
|
+
export let injectStyles: boolean;
|
|
31
53
|
}
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export namespace toolbar {
|
|
3
|
+
let undo: string;
|
|
4
|
+
let redo: string;
|
|
5
|
+
let bold: string;
|
|
6
|
+
let italic: string;
|
|
7
|
+
let underline: string;
|
|
8
|
+
let strike: string;
|
|
9
|
+
let code: string;
|
|
10
|
+
let heading: string;
|
|
11
|
+
let heading1: string;
|
|
12
|
+
let heading2: string;
|
|
13
|
+
let heading3: string;
|
|
14
|
+
let heading4: string;
|
|
15
|
+
let heading5: string;
|
|
16
|
+
let heading6: string;
|
|
17
|
+
let paragraph: string;
|
|
18
|
+
let fontSize: string;
|
|
19
|
+
let textColor: string;
|
|
20
|
+
let bgColor: string;
|
|
21
|
+
let bulletList: string;
|
|
22
|
+
let orderedList: string;
|
|
23
|
+
let codeBlock: string;
|
|
24
|
+
let blockquote: string;
|
|
25
|
+
let link: string;
|
|
26
|
+
let horizontalRule: string;
|
|
27
|
+
let align: string;
|
|
28
|
+
let alignLeft: string;
|
|
29
|
+
let alignCenter: string;
|
|
30
|
+
let alignRight: string;
|
|
31
|
+
let alignJustify: string;
|
|
32
|
+
let image: string;
|
|
33
|
+
let table: string;
|
|
34
|
+
let hardBreak: string;
|
|
35
|
+
let variable: string;
|
|
36
|
+
let outline: string;
|
|
37
|
+
let sourceCode: string;
|
|
38
|
+
let htmlPreview: string;
|
|
39
|
+
let clearFormat: string;
|
|
40
|
+
let formatPainter: string;
|
|
41
|
+
let formatPainterActive: string;
|
|
42
|
+
let emoji: string;
|
|
43
|
+
}
|
|
44
|
+
export namespace image_1 {
|
|
45
|
+
export let upload: string;
|
|
46
|
+
export let url: string;
|
|
47
|
+
export let uploadPlaceholder: string;
|
|
48
|
+
export let uploadHint: string;
|
|
49
|
+
export let urlPlaceholder: string;
|
|
50
|
+
export let insert: string;
|
|
51
|
+
export let width: string;
|
|
52
|
+
export let small: string;
|
|
53
|
+
export let medium: string;
|
|
54
|
+
export let large: string;
|
|
55
|
+
export let auto: string;
|
|
56
|
+
let align_1: string;
|
|
57
|
+
export { align_1 as align };
|
|
58
|
+
export let float: string;
|
|
59
|
+
export let floatLeft: string;
|
|
60
|
+
export let floatRight: string;
|
|
61
|
+
export let customSize: string;
|
|
62
|
+
export let altText: string;
|
|
63
|
+
export let altPlaceholder: string;
|
|
64
|
+
let _delete: string;
|
|
65
|
+
export { _delete as delete };
|
|
66
|
+
export let retry: string;
|
|
67
|
+
export let uploading: string;
|
|
68
|
+
export let uploadFailed: string;
|
|
69
|
+
}
|
|
70
|
+
export { image_1 as image };
|
|
71
|
+
export namespace table_1 {
|
|
72
|
+
let insertTable: string;
|
|
73
|
+
let insertRowAbove: string;
|
|
74
|
+
let insertRowBelow: string;
|
|
75
|
+
let insertColLeft: string;
|
|
76
|
+
let insertColRight: string;
|
|
77
|
+
let deleteRow: string;
|
|
78
|
+
let deleteCol: string;
|
|
79
|
+
let mergeCells: string;
|
|
80
|
+
let splitCell: string;
|
|
81
|
+
let toggleHeader: string;
|
|
82
|
+
let appendRow: string;
|
|
83
|
+
let deleteTable: string;
|
|
84
|
+
let rows: string;
|
|
85
|
+
let cols: string;
|
|
86
|
+
}
|
|
87
|
+
export { table_1 as table };
|
|
88
|
+
export namespace link_1 {
|
|
89
|
+
export let title: string;
|
|
90
|
+
export let placeholder: string;
|
|
91
|
+
let insert_1: string;
|
|
92
|
+
export { insert_1 as insert };
|
|
93
|
+
export let remove: string;
|
|
94
|
+
}
|
|
95
|
+
export { link_1 as link };
|
|
96
|
+
export namespace sourceCode_1 {
|
|
97
|
+
let title_1: string;
|
|
98
|
+
export { title_1 as title };
|
|
99
|
+
export let html: string;
|
|
100
|
+
export let json: string;
|
|
101
|
+
export let markdown: string;
|
|
102
|
+
export let text: string;
|
|
103
|
+
}
|
|
104
|
+
export { sourceCode_1 as sourceCode };
|
|
105
|
+
export namespace htmlPreview_1 {
|
|
106
|
+
let title_2: string;
|
|
107
|
+
export { title_2 as title };
|
|
108
|
+
}
|
|
109
|
+
export { htmlPreview_1 as htmlPreview };
|
|
110
|
+
export namespace variable_1 {
|
|
111
|
+
let title_3: string;
|
|
112
|
+
export { title_3 as title };
|
|
113
|
+
export let avatar: string;
|
|
114
|
+
export let nickname: string;
|
|
115
|
+
export let email: string;
|
|
116
|
+
export let phone: string;
|
|
117
|
+
export let date: string;
|
|
118
|
+
export let time: string;
|
|
119
|
+
}
|
|
120
|
+
export { variable_1 as variable };
|
|
121
|
+
export namespace outline_1 {
|
|
122
|
+
let title_4: string;
|
|
123
|
+
export { title_4 as title };
|
|
124
|
+
export let empty: string;
|
|
125
|
+
let _delete_1: string;
|
|
126
|
+
export { _delete_1 as delete };
|
|
127
|
+
}
|
|
128
|
+
export { outline_1 as outline };
|
|
129
|
+
export namespace charCount {
|
|
130
|
+
let exceeded: string;
|
|
131
|
+
}
|
|
132
|
+
export namespace emoji_1 {
|
|
133
|
+
let grouped: string;
|
|
134
|
+
let classic: string;
|
|
135
|
+
namespace categories {
|
|
136
|
+
export let common: string;
|
|
137
|
+
export let promotion: string;
|
|
138
|
+
export let ranking: string;
|
|
139
|
+
export let entertainment: string;
|
|
140
|
+
export let system: string;
|
|
141
|
+
export let info: string;
|
|
142
|
+
let time_1: string;
|
|
143
|
+
export { time_1 as time };
|
|
144
|
+
export let mood: string;
|
|
145
|
+
export let decoration: string;
|
|
146
|
+
export let structure: string;
|
|
147
|
+
export let backup: string;
|
|
148
|
+
export let faces: string;
|
|
149
|
+
export let gestures: string;
|
|
150
|
+
export let animals: string;
|
|
151
|
+
export let food: string;
|
|
152
|
+
export let nature: string;
|
|
153
|
+
export let objects: string;
|
|
154
|
+
export let symbols: string;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
export { emoji_1 as emoji };
|
|
158
|
+
export namespace ai {
|
|
159
|
+
let title_5: string;
|
|
160
|
+
export { title_5 as title };
|
|
161
|
+
export let openDialog: string;
|
|
162
|
+
export let quickActions: string;
|
|
163
|
+
export let polish: string;
|
|
164
|
+
export let explain: string;
|
|
165
|
+
export let translate: string;
|
|
166
|
+
export let summarize: string;
|
|
167
|
+
export let expand: string;
|
|
168
|
+
export let fixGrammar: string;
|
|
169
|
+
export let send: string;
|
|
170
|
+
export let apply: string;
|
|
171
|
+
export let replace: string;
|
|
172
|
+
export let clear: string;
|
|
173
|
+
let placeholder_1: string;
|
|
174
|
+
export { placeholder_1 as placeholder };
|
|
175
|
+
export let inputPlaceholder: string;
|
|
176
|
+
export let noText: string;
|
|
177
|
+
export let noSelection: string;
|
|
178
|
+
export let error: string;
|
|
179
|
+
export let processing: string;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { default as zh } from './zh';
|
|
2
|
+
import { default as en } from './en';
|
|
3
|
+
import { default as ja } from './ja';
|
|
4
|
+
export namespace translations {
|
|
5
|
+
export { zh };
|
|
6
|
+
export { en };
|
|
7
|
+
export { ja };
|
|
8
|
+
}
|
|
9
|
+
export function detectLanguage(): "zh" | "en" | "ja";
|
|
10
|
+
export function getTranslation(locale: any): any;
|
|
11
|
+
export { zh, en, ja };
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export namespace toolbar {
|
|
3
|
+
let undo: string;
|
|
4
|
+
let redo: string;
|
|
5
|
+
let bold: string;
|
|
6
|
+
let italic: string;
|
|
7
|
+
let underline: string;
|
|
8
|
+
let strike: string;
|
|
9
|
+
let code: string;
|
|
10
|
+
let heading: string;
|
|
11
|
+
let heading1: string;
|
|
12
|
+
let heading2: string;
|
|
13
|
+
let heading3: string;
|
|
14
|
+
let heading4: string;
|
|
15
|
+
let heading5: string;
|
|
16
|
+
let heading6: string;
|
|
17
|
+
let paragraph: string;
|
|
18
|
+
let fontSize: string;
|
|
19
|
+
let textColor: string;
|
|
20
|
+
let bgColor: string;
|
|
21
|
+
let bulletList: string;
|
|
22
|
+
let orderedList: string;
|
|
23
|
+
let codeBlock: string;
|
|
24
|
+
let blockquote: string;
|
|
25
|
+
let link: string;
|
|
26
|
+
let horizontalRule: string;
|
|
27
|
+
let align: string;
|
|
28
|
+
let alignLeft: string;
|
|
29
|
+
let alignCenter: string;
|
|
30
|
+
let alignRight: string;
|
|
31
|
+
let alignJustify: string;
|
|
32
|
+
let image: string;
|
|
33
|
+
let table: string;
|
|
34
|
+
let hardBreak: string;
|
|
35
|
+
let variable: string;
|
|
36
|
+
let outline: string;
|
|
37
|
+
let sourceCode: string;
|
|
38
|
+
let htmlPreview: string;
|
|
39
|
+
let clearFormat: string;
|
|
40
|
+
let formatPainter: string;
|
|
41
|
+
let formatPainterActive: string;
|
|
42
|
+
let emoji: string;
|
|
43
|
+
}
|
|
44
|
+
export namespace image_1 {
|
|
45
|
+
export let upload: string;
|
|
46
|
+
export let url: string;
|
|
47
|
+
export let uploadPlaceholder: string;
|
|
48
|
+
export let uploadHint: string;
|
|
49
|
+
export let urlPlaceholder: string;
|
|
50
|
+
export let insert: string;
|
|
51
|
+
export let width: string;
|
|
52
|
+
export let small: string;
|
|
53
|
+
export let medium: string;
|
|
54
|
+
export let large: string;
|
|
55
|
+
export let auto: string;
|
|
56
|
+
let align_1: string;
|
|
57
|
+
export { align_1 as align };
|
|
58
|
+
export let float: string;
|
|
59
|
+
export let floatLeft: string;
|
|
60
|
+
export let floatRight: string;
|
|
61
|
+
export let customSize: string;
|
|
62
|
+
export let altText: string;
|
|
63
|
+
export let altPlaceholder: string;
|
|
64
|
+
let _delete: string;
|
|
65
|
+
export { _delete as delete };
|
|
66
|
+
export let retry: string;
|
|
67
|
+
export let uploading: string;
|
|
68
|
+
export let uploadFailed: string;
|
|
69
|
+
}
|
|
70
|
+
export { image_1 as image };
|
|
71
|
+
export namespace table_1 {
|
|
72
|
+
let insertTable: string;
|
|
73
|
+
let insertRowAbove: string;
|
|
74
|
+
let insertRowBelow: string;
|
|
75
|
+
let insertColLeft: string;
|
|
76
|
+
let insertColRight: string;
|
|
77
|
+
let deleteRow: string;
|
|
78
|
+
let deleteCol: string;
|
|
79
|
+
let mergeCells: string;
|
|
80
|
+
let splitCell: string;
|
|
81
|
+
let toggleHeader: string;
|
|
82
|
+
let appendRow: string;
|
|
83
|
+
let deleteTable: string;
|
|
84
|
+
let rows: string;
|
|
85
|
+
let cols: string;
|
|
86
|
+
}
|
|
87
|
+
export { table_1 as table };
|
|
88
|
+
export namespace link_1 {
|
|
89
|
+
export let title: string;
|
|
90
|
+
export let placeholder: string;
|
|
91
|
+
let insert_1: string;
|
|
92
|
+
export { insert_1 as insert };
|
|
93
|
+
export let remove: string;
|
|
94
|
+
}
|
|
95
|
+
export { link_1 as link };
|
|
96
|
+
export namespace sourceCode_1 {
|
|
97
|
+
let title_1: string;
|
|
98
|
+
export { title_1 as title };
|
|
99
|
+
export let html: string;
|
|
100
|
+
export let json: string;
|
|
101
|
+
export let markdown: string;
|
|
102
|
+
export let text: string;
|
|
103
|
+
}
|
|
104
|
+
export { sourceCode_1 as sourceCode };
|
|
105
|
+
export namespace htmlPreview_1 {
|
|
106
|
+
let title_2: string;
|
|
107
|
+
export { title_2 as title };
|
|
108
|
+
}
|
|
109
|
+
export { htmlPreview_1 as htmlPreview };
|
|
110
|
+
export namespace variable_1 {
|
|
111
|
+
let title_3: string;
|
|
112
|
+
export { title_3 as title };
|
|
113
|
+
export let avatar: string;
|
|
114
|
+
export let nickname: string;
|
|
115
|
+
export let email: string;
|
|
116
|
+
export let phone: string;
|
|
117
|
+
export let date: string;
|
|
118
|
+
export let time: string;
|
|
119
|
+
}
|
|
120
|
+
export { variable_1 as variable };
|
|
121
|
+
export namespace outline_1 {
|
|
122
|
+
let title_4: string;
|
|
123
|
+
export { title_4 as title };
|
|
124
|
+
export let empty: string;
|
|
125
|
+
let _delete_1: string;
|
|
126
|
+
export { _delete_1 as delete };
|
|
127
|
+
}
|
|
128
|
+
export { outline_1 as outline };
|
|
129
|
+
export namespace charCount {
|
|
130
|
+
let exceeded: string;
|
|
131
|
+
}
|
|
132
|
+
export namespace emoji_1 {
|
|
133
|
+
let grouped: string;
|
|
134
|
+
let classic: string;
|
|
135
|
+
namespace categories {
|
|
136
|
+
export let common: string;
|
|
137
|
+
export let promotion: string;
|
|
138
|
+
export let ranking: string;
|
|
139
|
+
export let entertainment: string;
|
|
140
|
+
export let system: string;
|
|
141
|
+
export let info: string;
|
|
142
|
+
let time_1: string;
|
|
143
|
+
export { time_1 as time };
|
|
144
|
+
export let mood: string;
|
|
145
|
+
export let decoration: string;
|
|
146
|
+
export let structure: string;
|
|
147
|
+
export let backup: string;
|
|
148
|
+
export let faces: string;
|
|
149
|
+
export let gestures: string;
|
|
150
|
+
export let animals: string;
|
|
151
|
+
export let food: string;
|
|
152
|
+
export let nature: string;
|
|
153
|
+
export let objects: string;
|
|
154
|
+
export let symbols: string;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
export { emoji_1 as emoji };
|
|
158
|
+
export namespace ai {
|
|
159
|
+
let title_5: string;
|
|
160
|
+
export { title_5 as title };
|
|
161
|
+
export let openDialog: string;
|
|
162
|
+
export let quickActions: string;
|
|
163
|
+
export let polish: string;
|
|
164
|
+
export let explain: string;
|
|
165
|
+
export let translate: string;
|
|
166
|
+
export let summarize: string;
|
|
167
|
+
export let expand: string;
|
|
168
|
+
export let fixGrammar: string;
|
|
169
|
+
export let send: string;
|
|
170
|
+
export let apply: string;
|
|
171
|
+
export let replace: string;
|
|
172
|
+
export let clear: string;
|
|
173
|
+
let placeholder_1: string;
|
|
174
|
+
export { placeholder_1 as placeholder };
|
|
175
|
+
export let inputPlaceholder: string;
|
|
176
|
+
export let noText: string;
|
|
177
|
+
export let noSelection: string;
|
|
178
|
+
export let error: string;
|
|
179
|
+
export let processing: string;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
export default _default;
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export namespace toolbar {
|
|
3
|
+
let undo: string;
|
|
4
|
+
let redo: string;
|
|
5
|
+
let bold: string;
|
|
6
|
+
let italic: string;
|
|
7
|
+
let underline: string;
|
|
8
|
+
let strike: string;
|
|
9
|
+
let code: string;
|
|
10
|
+
let heading: string;
|
|
11
|
+
let heading1: string;
|
|
12
|
+
let heading2: string;
|
|
13
|
+
let heading3: string;
|
|
14
|
+
let heading4: string;
|
|
15
|
+
let heading5: string;
|
|
16
|
+
let heading6: string;
|
|
17
|
+
let paragraph: string;
|
|
18
|
+
let fontSize: string;
|
|
19
|
+
let textColor: string;
|
|
20
|
+
let bgColor: string;
|
|
21
|
+
let bulletList: string;
|
|
22
|
+
let orderedList: string;
|
|
23
|
+
let codeBlock: string;
|
|
24
|
+
let blockquote: string;
|
|
25
|
+
let link: string;
|
|
26
|
+
let horizontalRule: string;
|
|
27
|
+
let align: string;
|
|
28
|
+
let alignLeft: string;
|
|
29
|
+
let alignCenter: string;
|
|
30
|
+
let alignRight: string;
|
|
31
|
+
let alignJustify: string;
|
|
32
|
+
let image: string;
|
|
33
|
+
let table: string;
|
|
34
|
+
let hardBreak: string;
|
|
35
|
+
let variable: string;
|
|
36
|
+
let outline: string;
|
|
37
|
+
let sourceCode: string;
|
|
38
|
+
let htmlPreview: string;
|
|
39
|
+
let clearFormat: string;
|
|
40
|
+
let formatPainter: string;
|
|
41
|
+
let formatPainterActive: string;
|
|
42
|
+
let emoji: string;
|
|
43
|
+
}
|
|
44
|
+
export namespace image_1 {
|
|
45
|
+
export let upload: string;
|
|
46
|
+
export let url: string;
|
|
47
|
+
export let uploadPlaceholder: string;
|
|
48
|
+
export let uploadHint: string;
|
|
49
|
+
export let urlPlaceholder: string;
|
|
50
|
+
export let insert: string;
|
|
51
|
+
export let width: string;
|
|
52
|
+
export let small: string;
|
|
53
|
+
export let medium: string;
|
|
54
|
+
export let large: string;
|
|
55
|
+
export let auto: string;
|
|
56
|
+
let align_1: string;
|
|
57
|
+
export { align_1 as align };
|
|
58
|
+
export let float: string;
|
|
59
|
+
export let floatLeft: string;
|
|
60
|
+
export let floatRight: string;
|
|
61
|
+
export let customSize: string;
|
|
62
|
+
export let altText: string;
|
|
63
|
+
export let altPlaceholder: string;
|
|
64
|
+
let _delete: string;
|
|
65
|
+
export { _delete as delete };
|
|
66
|
+
export let retry: string;
|
|
67
|
+
export let uploading: string;
|
|
68
|
+
export let uploadFailed: string;
|
|
69
|
+
}
|
|
70
|
+
export { image_1 as image };
|
|
71
|
+
export namespace table_1 {
|
|
72
|
+
let insertTable: string;
|
|
73
|
+
let insertRowAbove: string;
|
|
74
|
+
let insertRowBelow: string;
|
|
75
|
+
let insertColLeft: string;
|
|
76
|
+
let insertColRight: string;
|
|
77
|
+
let deleteRow: string;
|
|
78
|
+
let deleteCol: string;
|
|
79
|
+
let mergeCells: string;
|
|
80
|
+
let splitCell: string;
|
|
81
|
+
let toggleHeader: string;
|
|
82
|
+
let appendRow: string;
|
|
83
|
+
let deleteTable: string;
|
|
84
|
+
let rows: string;
|
|
85
|
+
let cols: string;
|
|
86
|
+
}
|
|
87
|
+
export { table_1 as table };
|
|
88
|
+
export namespace link_1 {
|
|
89
|
+
export let title: string;
|
|
90
|
+
export let placeholder: string;
|
|
91
|
+
let insert_1: string;
|
|
92
|
+
export { insert_1 as insert };
|
|
93
|
+
export let remove: string;
|
|
94
|
+
}
|
|
95
|
+
export { link_1 as link };
|
|
96
|
+
export namespace sourceCode_1 {
|
|
97
|
+
let title_1: string;
|
|
98
|
+
export { title_1 as title };
|
|
99
|
+
export let html: string;
|
|
100
|
+
export let json: string;
|
|
101
|
+
export let markdown: string;
|
|
102
|
+
export let text: string;
|
|
103
|
+
}
|
|
104
|
+
export { sourceCode_1 as sourceCode };
|
|
105
|
+
export namespace htmlPreview_1 {
|
|
106
|
+
let title_2: string;
|
|
107
|
+
export { title_2 as title };
|
|
108
|
+
}
|
|
109
|
+
export { htmlPreview_1 as htmlPreview };
|
|
110
|
+
export namespace variable_1 {
|
|
111
|
+
let title_3: string;
|
|
112
|
+
export { title_3 as title };
|
|
113
|
+
export let avatar: string;
|
|
114
|
+
export let nickname: string;
|
|
115
|
+
export let email: string;
|
|
116
|
+
export let phone: string;
|
|
117
|
+
export let date: string;
|
|
118
|
+
export let time: string;
|
|
119
|
+
}
|
|
120
|
+
export { variable_1 as variable };
|
|
121
|
+
export namespace outline_1 {
|
|
122
|
+
let title_4: string;
|
|
123
|
+
export { title_4 as title };
|
|
124
|
+
export let empty: string;
|
|
125
|
+
let _delete_1: string;
|
|
126
|
+
export { _delete_1 as delete };
|
|
127
|
+
}
|
|
128
|
+
export { outline_1 as outline };
|
|
129
|
+
export namespace charCount {
|
|
130
|
+
let exceeded: string;
|
|
131
|
+
}
|
|
132
|
+
export namespace emoji_1 {
|
|
133
|
+
let grouped: string;
|
|
134
|
+
let classic: string;
|
|
135
|
+
namespace categories {
|
|
136
|
+
export let common: string;
|
|
137
|
+
export let promotion: string;
|
|
138
|
+
export let ranking: string;
|
|
139
|
+
export let entertainment: string;
|
|
140
|
+
export let system: string;
|
|
141
|
+
export let info: string;
|
|
142
|
+
let time_1: string;
|
|
143
|
+
export { time_1 as time };
|
|
144
|
+
export let mood: string;
|
|
145
|
+
export let decoration: string;
|
|
146
|
+
export let structure: string;
|
|
147
|
+
export let backup: string;
|
|
148
|
+
export let faces: string;
|
|
149
|
+
export let gestures: string;
|
|
150
|
+
export let animals: string;
|
|
151
|
+
export let food: string;
|
|
152
|
+
export let nature: string;
|
|
153
|
+
export let objects: string;
|
|
154
|
+
export let symbols: string;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
export { emoji_1 as emoji };
|
|
158
|
+
export namespace ai {
|
|
159
|
+
let title_5: string;
|
|
160
|
+
export { title_5 as title };
|
|
161
|
+
export let openDialog: string;
|
|
162
|
+
export let quickActions: string;
|
|
163
|
+
export let polish: string;
|
|
164
|
+
export let explain: string;
|
|
165
|
+
export let translate: string;
|
|
166
|
+
export let summarize: string;
|
|
167
|
+
export let expand: string;
|
|
168
|
+
export let fixGrammar: string;
|
|
169
|
+
export let send: string;
|
|
170
|
+
export let apply: string;
|
|
171
|
+
export let replace: string;
|
|
172
|
+
export let clear: string;
|
|
173
|
+
let placeholder_1: string;
|
|
174
|
+
export { placeholder_1 as placeholder };
|
|
175
|
+
export let inputPlaceholder: string;
|
|
176
|
+
export let noText: string;
|
|
177
|
+
export let noSelection: string;
|
|
178
|
+
export let error: string;
|
|
179
|
+
export let processing: string;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
export default _default;
|