@elliemae/ds-wysiwygeditor 3.17.0-next.2 → 3.17.0-next.20
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/types/DSWYSIWYGEditor.d.ts +1 -2
- package/dist/types/components/CustomImageUploader.d.ts +1 -2
- package/dist/types/components/CustomToolbar.d.ts +2 -3
- package/dist/types/components/DSWYSIWYGEditorImpl.d.ts +1 -1
- package/dist/types/components/ImageLibraryModal.d.ts +1 -1
- package/dist/types/components/InsertFieldModal.d.ts +4 -4
- package/package.json +10 -10
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const DSWYSIWYGEditor: {
|
|
3
2
|
({ value, onChange, getQuillRef, quillModules, customToolbar, toolbarHandlers, showRawHTML, height, hideItems, ...rest }: {
|
|
4
3
|
[x: string]: any;
|
|
@@ -11,7 +10,7 @@ declare const DSWYSIWYGEditor: {
|
|
|
11
10
|
showRawHTML?: boolean | undefined;
|
|
12
11
|
height: any;
|
|
13
12
|
hideItems: any;
|
|
14
|
-
}): JSX.Element;
|
|
13
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
15
14
|
propTypes: {
|
|
16
15
|
value: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
17
16
|
onChange: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const CustomImageUploader: ({ quillRef, editorFieldName, allowedImageTypes, uploadAsset, zIndex, }: {
|
|
3
2
|
quillRef: any;
|
|
4
3
|
editorFieldName: any;
|
|
5
4
|
allowedImageTypes?: string | undefined;
|
|
6
5
|
uploadAsset?: (() => null) | undefined;
|
|
7
6
|
zIndex?: number | undefined;
|
|
8
|
-
}) => JSX.Element;
|
|
7
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const CustomDropdown: ({ options, label, onSelectMenuItem, onClickOutsideMenu, onClose, closeMenuOnItemSelection, isOpen, minWidth, maxWidth, zIndex, }: {
|
|
3
2
|
options: any;
|
|
4
3
|
label: any;
|
|
@@ -10,7 +9,7 @@ export declare const CustomDropdown: ({ options, label, onSelectMenuItem, onClic
|
|
|
10
9
|
minWidth: any;
|
|
11
10
|
maxWidth: any;
|
|
12
11
|
zIndex?: number | undefined;
|
|
13
|
-
}) => JSX.Element;
|
|
12
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
14
13
|
export declare const CustomToolbar: ({ customFields, customItems, hideItems, onShowHTML, id, userProps, }: {
|
|
15
14
|
customFields: any;
|
|
16
15
|
customItems?: never[] | undefined;
|
|
@@ -18,4 +17,4 @@ export declare const CustomToolbar: ({ customFields, customItems, hideItems, onS
|
|
|
18
17
|
onShowHTML?: (() => void) | undefined;
|
|
19
18
|
id?: string | undefined;
|
|
20
19
|
userProps: any;
|
|
21
|
-
}) => JSX.Element;
|
|
20
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
@@ -20,7 +20,7 @@ export default class InsertFieldModal extends React.PureComponent {
|
|
|
20
20
|
disableDoubleClick: boolean;
|
|
21
21
|
isOpen: boolean;
|
|
22
22
|
modalTitle: string;
|
|
23
|
-
modalType:
|
|
23
|
+
modalType: string;
|
|
24
24
|
rejectLabel: string;
|
|
25
25
|
shouldCloseOnOverlayClick: boolean;
|
|
26
26
|
size: string;
|
|
@@ -31,10 +31,10 @@ export default class InsertFieldModal extends React.PureComponent {
|
|
|
31
31
|
getDerivedStateFromProps(nextProps: any): void;
|
|
32
32
|
onConfirm: () => void;
|
|
33
33
|
onReject: () => void;
|
|
34
|
-
drawDiv: (className: any, content: any, content2: any) => JSX.Element;
|
|
35
|
-
drawLabel: (className: any, label: any, value: any) => JSX.Element;
|
|
34
|
+
drawDiv: (className: any, content: any, content2: any) => import("react/jsx-runtime.js").JSX.Element;
|
|
35
|
+
drawLabel: (className: any, label: any, value: any) => import("react/jsx-runtime.js").JSX.Element;
|
|
36
36
|
handleElementClick: (e: any, selectedFieldCode: any) => void;
|
|
37
37
|
preventSpacebarScroll: () => void;
|
|
38
38
|
renderElements: () => any;
|
|
39
|
-
render(): JSX.Element;
|
|
39
|
+
render(): import("react/jsx-runtime.js").JSX.Element;
|
|
40
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-wysiwygeditor",
|
|
3
|
-
"version": "3.17.0-next.
|
|
3
|
+
"version": "3.17.0-next.20",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - WYSIWYG Editor",
|
|
6
6
|
"files": [
|
|
@@ -103,15 +103,15 @@
|
|
|
103
103
|
"quill-delta": "5.0.0",
|
|
104
104
|
"react-quill": "2.0.0-beta.4",
|
|
105
105
|
"uid": "^2.0.1",
|
|
106
|
-
"@elliemae/ds-
|
|
107
|
-
"@elliemae/ds-
|
|
108
|
-
"@elliemae/ds-
|
|
109
|
-
"@elliemae/ds-
|
|
110
|
-
"@elliemae/ds-
|
|
111
|
-
"@elliemae/ds-
|
|
112
|
-
"@elliemae/ds-
|
|
113
|
-
"@elliemae/ds-
|
|
114
|
-
"@elliemae/ds-
|
|
106
|
+
"@elliemae/ds-dropdownmenu": "3.17.0-next.20",
|
|
107
|
+
"@elliemae/ds-button": "3.17.0-next.20",
|
|
108
|
+
"@elliemae/ds-imagelibrarymodal": "3.17.0-next.20",
|
|
109
|
+
"@elliemae/ds-props-helpers": "3.17.0-next.20",
|
|
110
|
+
"@elliemae/ds-icons": "3.17.0-next.20",
|
|
111
|
+
"@elliemae/ds-tooltip": "3.17.0-next.20",
|
|
112
|
+
"@elliemae/ds-shared": "3.17.0-next.20",
|
|
113
|
+
"@elliemae/ds-modal": "3.17.0-next.20",
|
|
114
|
+
"@elliemae/ds-uploader": "3.17.0-next.20"
|
|
115
115
|
},
|
|
116
116
|
"publishConfig": {
|
|
117
117
|
"access": "public",
|