eddyter 1.4.12 → 1.4.13
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/README.md +3 -2
- package/dist/CommentBubblePlugin-DDCERFQO.js +29 -0
- package/dist/{LazyCodeMirror-CcceEUqu.js → LazyCodeMirror-C1bW4mVF.js} +941 -1484
- package/dist/{LazySignatureCanvas-Cck44R9l.js → LazySignatureCanvas-D5P1189T.js} +21 -38
- package/dist/Provider/EditorProvider.d.ts +2 -0
- package/dist/api/auth.d.ts +4 -0
- package/dist/assets/style.css +1 -1
- package/dist/{babel-CCPWkrf4.js → babel-B9hn44Wo.js} +726 -1302
- package/dist/components/ColorPicker/LazyHexColorPicker.d.ts +2 -0
- package/dist/components/CommentToggle/CommentToggle.d.ts +2 -2
- package/dist/components/ConfigurableEditorWithAuth.d.ts +2 -2
- package/dist/components/EmojiPickerWidget/LazyEmojiPicker.d.ts +4 -0
- package/dist/components/LockedFeature/FeatureLockCard.d.ts +22 -0
- package/dist/components/LockedFeature/FeatureLockTooltipContent.d.ts +12 -0
- package/dist/components/LockedFeature/LockedFeature.d.ts +6 -1
- package/dist/components/LockedFeature/lockedFeatureMetadata.d.ts +7 -0
- package/dist/components/Toolbar/styles.d.ts +5 -5
- package/dist/components/ui/tooltip.d.ts +2 -1
- package/dist/{estree-CxUPh9wa.js → estree-CocPn_Md.js} +529 -917
- package/dist/{generateDocxThumbnail-DGj_L73_.js → generateDocxThumbnail-BVFpoKUP.js} +762 -1118
- package/dist/{generatePdfThumbnail-D1ui86rp.js → generatePdfThumbnail-Pvt57kGy.js} +13 -19
- package/dist/{generateXlsxThumbnail-CbJOr-_6.js → generateXlsxThumbnail-DRggrLYK.js} +3322 -3508
- package/dist/{html-CmniStvG.js → html-CxCicOef.js} +350 -589
- package/dist/{html2canvas.esm-C2wu93Kq.js → html2canvas.esm-BD_Vwvv8.js} +139 -204
- package/dist/{html2pdf.bundle.min-CN_w9Sxu.js → html2pdf.bundle.min-DElEIEzd.js} +3405 -5221
- package/dist/{index-DiSjJC3k.js → index-C9Dld3-L.js} +13 -13
- package/dist/{index-CuwrKBfY.js → index-Cojy1w7r.js} +194 -217
- package/dist/index-D11sRTul.js +147 -0
- package/dist/{index-Dh0oRk6u.js → index-DFEFJp4J.js} +37294 -41489
- package/dist/index-D_izLqTY.js +552 -0
- package/dist/{index-hrDzgkRb.js → index-ZBDns08-.js} +81 -80
- package/dist/index-rm00T8b9.js +166 -0
- package/dist/index.js +2 -2
- package/dist/{markdown-B0mEGGfQ.js → markdown-BUjgWFLu.js} +578 -1015
- package/dist/{objectWithoutPropertiesLoose-DO0w4vQT.js → objectWithoutPropertiesLoose-DiWPeE4c.js} +6 -10
- package/dist/pages/ConfigurableEditor/ConfigurableEditor.d.ts +1 -1
- package/dist/plugins/LocalStoragePlugin.d.ts +0 -2
- package/dist/{postcss-B0bxXf7u.js → postcss-CGIcwj_g.js} +615 -1065
- package/dist/{standalone-DmuJV5rn.js → standalone-C0qguT38.js} +350 -596
- package/dist/{typescript-DZlC_9M8.js → typescript-BM7wk6k-.js} +1114 -1806
- package/package.json +8 -1
package/dist/{objectWithoutPropertiesLoose-DO0w4vQT.js → objectWithoutPropertiesLoose-DiWPeE4c.js}
RENAMED
|
@@ -2,22 +2,18 @@ function a() {
|
|
|
2
2
|
return a = Object.assign ? Object.assign.bind() : function(r) {
|
|
3
3
|
for (var e = 1; e < arguments.length; e++) {
|
|
4
4
|
var t = arguments[e];
|
|
5
|
-
for (var n in t)
|
|
6
|
-
({}).hasOwnProperty.call(t, n) && (r[n] = t[n]);
|
|
5
|
+
for (var n in t) ({}).hasOwnProperty.call(t, n) && (r[n] = t[n]);
|
|
7
6
|
}
|
|
8
7
|
return r;
|
|
9
8
|
}, a.apply(null, arguments);
|
|
10
9
|
}
|
|
11
10
|
function i(r, e) {
|
|
12
|
-
if (r == null)
|
|
13
|
-
return {};
|
|
11
|
+
if (r == null) return {};
|
|
14
12
|
var t = {};
|
|
15
|
-
for (var n in r)
|
|
16
|
-
if (
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
t[n] = r[n];
|
|
20
|
-
}
|
|
13
|
+
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
|
|
14
|
+
if (e.indexOf(n) !== -1) continue;
|
|
15
|
+
t[n] = r[n];
|
|
16
|
+
}
|
|
21
17
|
return t;
|
|
22
18
|
}
|
|
23
19
|
export {
|
|
@@ -22,7 +22,7 @@ interface ConfigurableEditorProps {
|
|
|
22
22
|
onChange?: (html: string) => void;
|
|
23
23
|
apiKey?: string;
|
|
24
24
|
toolbarConfig?: ToolbarConfig;
|
|
25
|
-
|
|
25
|
+
contentClassName?: string;
|
|
26
26
|
editorStyle?: React.CSSProperties;
|
|
27
27
|
}
|
|
28
28
|
declare const ConfigurableEditor: React.FC<ConfigurableEditorProps>;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { LocalStoragePluginProps } from '../types';
|
|
3
3
|
/**
|
|
4
|
-
* We have extended our editor so that it stores our content safely in an external store, utilizing the concept of Lexical’s editor state.
|
|
5
|
-
* @param namespace
|
|
6
4
|
*/
|
|
7
5
|
declare const LocalStoragePlugin: FC<LocalStoragePluginProps>;
|
|
8
6
|
export default LocalStoragePlugin;
|