@lets-events/react 12.1.2 → 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 -11
- package/CHANGELOG.md +13 -1
- package/dist/QuillComponent-A5KIFPCL.mjs +438 -0
- package/dist/chunk-TU7LKUXZ.mjs +1927 -0
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1712 -1523
- package/dist/index.mjs +347 -2652
- package/package.json +2 -1
- package/src/components/RichEditor/RichEditor.tsx +15 -4
- package/src/components/TextareaField.tsx +23 -24
package/dist/index.d.mts
CHANGED
|
@@ -14344,12 +14344,11 @@ interface RichEditorProps {
|
|
|
14344
14344
|
onChange?: (value: string) => void;
|
|
14345
14345
|
placeholder?: string;
|
|
14346
14346
|
label?: string;
|
|
14347
|
-
required?: boolean;
|
|
14348
14347
|
disabled?: boolean;
|
|
14349
14348
|
className?: string;
|
|
14350
14349
|
uploadConfig: UploadConfig$1;
|
|
14351
14350
|
}
|
|
14352
|
-
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element;
|
|
14351
|
+
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
14353
14352
|
|
|
14354
14353
|
type RichEditorFormFieldProps = Omit<RichEditorProps, "value" | "onChange"> & {
|
|
14355
14354
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -14344,12 +14344,11 @@ interface RichEditorProps {
|
|
|
14344
14344
|
onChange?: (value: string) => void;
|
|
14345
14345
|
placeholder?: string;
|
|
14346
14346
|
label?: string;
|
|
14347
|
-
required?: boolean;
|
|
14348
14347
|
disabled?: boolean;
|
|
14349
14348
|
className?: string;
|
|
14350
14349
|
uploadConfig: UploadConfig$1;
|
|
14351
14350
|
}
|
|
14352
|
-
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element;
|
|
14351
|
+
declare const RichEditor: (props: RichEditorProps) => react_jsx_runtime.JSX.Element | null;
|
|
14353
14352
|
|
|
14354
14353
|
type RichEditorFormFieldProps = Omit<RichEditorProps, "value" | "onChange"> & {
|
|
14355
14354
|
name: string;
|