@select-org/select-post-builder 1.0.1 → 1.0.2
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/index.d.ts +2 -0
- package/dist/post-builder.cjs +123 -123
- package/dist/post-builder.css +1 -1
- package/dist/post-builder.js +16145 -16110
- package/dist/post-builder.umd.cjs +128 -128
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -97,12 +97,14 @@ declare type PostBuilderEditorProps = {
|
|
|
97
97
|
user?: AppUserPayload;
|
|
98
98
|
hideGroupSelector?: boolean;
|
|
99
99
|
showModal?: boolean;
|
|
100
|
+
isSubmitting?: boolean;
|
|
100
101
|
onCreatePost: (params: {
|
|
101
102
|
payload: Partial<PostCreationData>;
|
|
102
103
|
html: string;
|
|
103
104
|
json: JSONContent;
|
|
104
105
|
text: string;
|
|
105
106
|
}) => void;
|
|
107
|
+
clearOnSuccess?: boolean;
|
|
106
108
|
};
|
|
107
109
|
|
|
108
110
|
declare interface PostBuilderI18nKeys {
|