@goodhood-web/nebenan-base 4.1.0-development.24 → 4.1.0-development.26
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/index.d.ts +4 -2
- package/index.js +85 -85
- package/index.mjs +70252 -69410
- package/lib/ContentCreator/ContentCreator.d.ts +3 -0
- package/lib/ContentCreator/ContentCreator.types.d.ts +18 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/ContentCreatorFieldsWrapper.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentFieldsSheet/ContentFieldsSheet.d.ts +4 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentFieldsSheet/ContentFieldsSheet.types.d.ts +34 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentTypeField/ContentTypeField.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentTypeField/ContentTypeField.types.d.ts +13 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/EventFields/EventField.d.ts +2 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/MarketplaceFields/MarketplaceFields.d.ts +2 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/PostFields/PostFields.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/PostFields/PostFields.types.d.ts +6 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ReachTypeField/ReachTypeField.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ReachTypeField/ReachTypeFields.type.d.ts +10 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/index.d.ts +6 -0
- package/lib/ContentCreator/constants.d.ts +12 -0
- package/lib/ContentCreator/network.d.ts +4 -0
- package/lib/ContentCreator/utils.d.ts +14 -0
- package/lib/ContentCreator/validationSchemas/commonSchemas.d.ts +112 -0
- package/lib/ContentCreator/validationSchemas/dynamicValidationSchema.d.ts +628 -0
- package/lib/ContentCreator/validationSchemas/eventSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/index.d.ts +7 -0
- package/lib/ContentCreator/validationSchemas/marketplaceSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/postSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/recommendationSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/searchSchema.d.ts +127 -0
- package/lib/Forms/Fields/FormRichTextArea.d.ts +8 -0
- package/lib/MarketplaceImageCropper/MarketplaceImageCropper.d.ts +5 -0
- package/lib/MarketplaceImageCropper/MarketplaceImageCropper.types.d.ts +6 -0
- package/lib/MarketplaceImageCropper/components/ImageThumbnailGrid/ImageThumbnailGrid.d.ts +10 -0
- package/lib/RichTextArea/RichTextArea.d.ts +1 -1
- package/lib/RichTextArea/RichTextArea.types.d.ts +2 -1
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -20,7 +20,8 @@ export type RichTextAreaProps = {
|
|
|
20
20
|
onBlur?: (event: FocusEvent<HTMLDivElement>) => void;
|
|
21
21
|
onChange: (value: RichTextAreaValueType) => void;
|
|
22
22
|
onFocus?: (event: FocusEvent<HTMLDivElement>) => void;
|
|
23
|
-
onImageClick?:
|
|
23
|
+
onImageClick?: boolean;
|
|
24
|
+
onImageUploadDismiss?: () => void;
|
|
24
25
|
onPoiClick?: boolean;
|
|
25
26
|
onPoiDismiss?: () => void;
|
|
26
27
|
size?: 'medium' | 'large';
|