@lets-events/react 12.1.3 → 12.1.4
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/.turbo/turbo-build.log +10 -8
- package/CHANGELOG.md +6 -0
- package/dist/QuillComponent-A5KIFPCL.mjs +438 -0
- package/dist/chunk-TU7LKUXZ.mjs +1927 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1742 -1554
- package/dist/index.mjs +291 -2597
- package/package.json +1 -1
- package/src/components/RichEditor/RichEditor.tsx +15 -3
package/dist/index.d.mts
CHANGED
|
@@ -14348,7 +14348,7 @@ interface RichEditorProps {
|
|
|
14348
14348
|
className?: string;
|
|
14349
14349
|
uploadConfig: UploadConfig$1;
|
|
14350
14350
|
}
|
|
14351
|
-
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element;
|
|
14351
|
+
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
14352
14352
|
|
|
14353
14353
|
type RichEditorFormFieldProps = Omit<RichEditorProps, "value" | "onChange"> & {
|
|
14354
14354
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -14348,7 +14348,7 @@ interface RichEditorProps {
|
|
|
14348
14348
|
className?: string;
|
|
14349
14349
|
uploadConfig: UploadConfig$1;
|
|
14350
14350
|
}
|
|
14351
|
-
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element;
|
|
14351
|
+
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
14352
14352
|
|
|
14353
14353
|
type RichEditorFormFieldProps = Omit<RichEditorProps, "value" | "onChange"> & {
|
|
14354
14354
|
name: string;
|