@goodhood-web/nebenan-base 4.5.0-development.28 → 4.5.0-development.29
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.js +76 -76
- package/index.mjs +5885 -5857
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ListModalField/DropdownButton.d.ts +1 -1
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ListModalField/ListModalField.types.d.ts +1 -0
- package/lib/ContentCreator/validationSchemas/commonSchemas.d.ts +1 -1
- package/lib/MarketplaceImageCropper/components/ImageThumbnailGrid/ImageThumbnailGrid.d.ts +2 -1
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { DropdownButtonProps } from './ListModalField.types';
|
|
2
|
-
declare const DropdownButton: ({ disabled, hasError, isFilled, label, onOpen, value, }: DropdownButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const DropdownButton: ({ disabled, hasChevron, hasError, isFilled, label, onOpen, value, }: DropdownButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default DropdownButton;
|
|
@@ -30,7 +30,7 @@ export declare const imageFileSchema: z.ZodObject<{
|
|
|
30
30
|
}>;
|
|
31
31
|
export declare const reachSchema: z.ZodEnum<["profile", "hood", "extended", "public", "group"]>;
|
|
32
32
|
export type ImageFile = z.infer<typeof imageFileSchema>;
|
|
33
|
-
export declare const
|
|
33
|
+
export declare const createSubjectSchema: (errorMessage?: string) => z.ZodString;
|
|
34
34
|
export declare const bodyWithEmbedsSchema: z.ZodObject<{
|
|
35
35
|
attachments: z.ZodOptional<z.ZodObject<{
|
|
36
36
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5,7 +5,8 @@ interface ImageThumbnailGridProps {
|
|
|
5
5
|
isInContentCreator?: boolean;
|
|
6
6
|
selectedImg: ImageFile | null;
|
|
7
7
|
setImageFiles: Dispatch<SetStateAction<ImageFile[]>>;
|
|
8
|
+
setImageLoading: Dispatch<SetStateAction<boolean>>;
|
|
8
9
|
setSelectedImg: (img: ImageFile | null) => void;
|
|
9
10
|
}
|
|
10
|
-
declare const ImageThumbnailGrid: ({ imageFiles, isInContentCreator, selectedImg, setImageFiles, setSelectedImg, }: ImageThumbnailGridProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare const ImageThumbnailGrid: ({ imageFiles, isInContentCreator, selectedImg, setImageFiles, setImageLoading, setSelectedImg, }: ImageThumbnailGridProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export default ImageThumbnailGrid;
|