eddyter 1.3.63 → 1.3.64
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/LICENSE +24 -24
- package/README.md +493 -493
- package/dist/ImageResizer-CbtUYHip.js +199 -0
- package/dist/api/auth.d.ts +4 -2
- package/dist/assets/style.css +1 -1
- package/dist/{babel-B9hn44Wo.js → babel-CCPWkrf4.js} +1302 -726
- package/dist/components/LockedFeature/LockedFeature.d.ts +23 -0
- package/dist/components/LockedFeature/index.d.ts +2 -0
- package/dist/components/UnifiedColorPicker/UnifiedColorPicker.d.ts +14 -0
- package/dist/components/VideoView/index.d.ts +13 -0
- package/dist/constants.d.ts +3 -1
- package/dist/editorConfig.d.ts +2 -3
- package/dist/{estree-CocPn_Md.js → estree-CxUPh9wa.js} +917 -529
- package/dist/{html-CxCicOef.js → html-CmniStvG.js} +589 -350
- package/dist/{html2pdf.bundle-Bc2h6DHT.js → html2pdf.bundle-C1B1lr_T.js} +3796 -2777
- package/dist/{html2pdf.bundle.min-BvakEXhX.js → html2pdf.bundle.min-kPviTsNx.js} +5223 -3407
- package/dist/index-BL8HWCRw.js +816 -0
- package/dist/index-BpsoOKOs.js +274 -0
- package/dist/{index-C2a6-XFM.js → index-DHKx5grA.js} +4 -4
- package/dist/{index-DoJIKSPF.js → index-FZVNbwSO.js} +12356 -11290
- package/dist/index.js +3 -3
- package/dist/{markdown-BUjgWFLu.js → markdown-B0mEGGfQ.js} +1015 -578
- package/dist/nodes/UploadingVideoNode.d.ts +30 -0
- package/dist/nodes/VideoNode.d.ts +47 -0
- package/dist/plugins/CustomHorizontalRulePlugin/HorizontalRuleCustomizationDialog.d.ts +2 -1
- package/dist/plugins/FloatingTextFormatToolbarPlugin/index.d.ts +1 -1
- package/dist/plugins/VideoPlugin.d.ts +17 -0
- package/dist/{postcss-CGIcwj_g.js → postcss-B0bxXf7u.js} +1065 -615
- package/dist/{standalone-C0qguT38.js → standalone-DmuJV5rn.js} +596 -350
- package/dist/types.d.ts +4 -6
- package/dist/{typescript-BM7wk6k-.js → typescript-DZlC_9M8.js} +1805 -1113
- package/dist/ui/Icons.d.ts +2 -1
- package/dist/utils/uploadManager.d.ts +17 -0
- package/package.json +151 -151
- package/dist/index-B0VTEqfr.js +0 -985
package/dist/types.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface ToolbarProps {
|
|
|
24
24
|
enableTableOptions?: boolean;
|
|
25
25
|
enableImageOptions?: boolean;
|
|
26
26
|
enableInsertMenu?: boolean;
|
|
27
|
-
|
|
27
|
+
enableColors?: boolean;
|
|
28
28
|
enableClearOptions?: boolean;
|
|
29
29
|
enableEmojiPicker?: boolean;
|
|
30
30
|
enableDatePicker?: boolean;
|
|
@@ -43,7 +43,6 @@ export interface ToolbarProps {
|
|
|
43
43
|
enableImageUpload?: boolean;
|
|
44
44
|
enableWordCount?: boolean;
|
|
45
45
|
enableCharts?: boolean;
|
|
46
|
-
enableHighlight?: boolean;
|
|
47
46
|
enableAutoCorrection?: boolean;
|
|
48
47
|
enablePdfExport?: boolean;
|
|
49
48
|
enableSpeechToText?: boolean;
|
|
@@ -126,7 +125,7 @@ export interface EditorConfigTypes {
|
|
|
126
125
|
enableTableOptions: boolean;
|
|
127
126
|
enableImageOptions?: boolean;
|
|
128
127
|
enableInsertMenu: boolean;
|
|
129
|
-
|
|
128
|
+
enableColors: boolean;
|
|
130
129
|
enableClearOptions: boolean;
|
|
131
130
|
enableEmojiPicker: boolean;
|
|
132
131
|
enableDatePicker: boolean;
|
|
@@ -145,7 +144,6 @@ export interface EditorConfigTypes {
|
|
|
145
144
|
enableImageUpload: boolean;
|
|
146
145
|
enableWordCount: boolean;
|
|
147
146
|
enableCharts: boolean;
|
|
148
|
-
enableHighlight: boolean;
|
|
149
147
|
enableAutoCorrection: boolean;
|
|
150
148
|
enablePdfExport: boolean;
|
|
151
149
|
enableSpeechToText: boolean;
|
|
@@ -181,7 +179,7 @@ export interface EditorConfigTypes {
|
|
|
181
179
|
aiChat: boolean;
|
|
182
180
|
comment: boolean;
|
|
183
181
|
improve: boolean;
|
|
184
|
-
|
|
182
|
+
colors: boolean;
|
|
185
183
|
};
|
|
186
184
|
enableAutocomplete?: boolean;
|
|
187
185
|
autocompleteOptions?: {
|
|
@@ -190,7 +188,7 @@ export interface EditorConfigTypes {
|
|
|
190
188
|
};
|
|
191
189
|
}
|
|
192
190
|
export type EditorActionType = "insert_text" | "create_table" | "change_font" | "apply_formatting" | "change_block_type" | "change_alignment" | "unknown";
|
|
193
|
-
export type FormattingOptions = "bold" | "italic" | "strikethrough" | "underline" | "code" | "highlight" | "subscript" | "superscript" | "bullet" | "number" | "check" | "quote";
|
|
191
|
+
export type FormattingOptions = "bold" | "italic" | "strikethrough" | "underline" | "code" | "highlight" | "subscript" | "superscript" | "bullet" | "number" | "check" | "quote" | "codeBlock";
|
|
194
192
|
export type BlockType = "paragraph" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "bullet" | "number" | "check" | "quote" | "code";
|
|
195
193
|
export type TextAlignment = "left" | "center" | "right" | "justify";
|
|
196
194
|
export interface EditorAction {
|