@goodhood-web/nebenan-base 4.2.0 → 4.3.0-development.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/index.d.ts +3 -1
- package/index.js +102 -89
- package/index.mjs +13376 -13050
- package/lib/AttendeesModal/AttendeesModal.d.ts +3 -0
- package/lib/AttendeesModal/AttendeesModal.types.d.ts +4 -0
- package/lib/AttendeesModal/components/AttendeesList/AttendeesList.d.ts +3 -0
- package/lib/AttendeesModal/components/AttendeesList/AttendeesList.types.d.ts +8 -0
- package/lib/AttendeesModal/components/index.d.ts +2 -0
- package/lib/AttendeesModal/network.d.ts +4 -0
- package/lib/AttendeesModal/utils.d.ts +11 -0
- package/lib/Authentication/Registration/RegistrationForm/network.d.ts +1 -1
- package/lib/Authentication/Registration/utils.d.ts +1 -1
- package/lib/ContentCreator/validationSchemas/dynamicValidationSchema.d.ts +10 -10
- package/lib/ContentCreator/validationSchemas/eventSchema.d.ts +2 -2
- package/lib/ContentCreator/validationSchemas/marketplaceSchema.d.ts +2 -2
- package/lib/ContentCreator/validationSchemas/postSchema.d.ts +2 -2
- package/lib/ContentCreator/validationSchemas/recommendationSchema.d.ts +2 -2
- package/lib/ContentCreator/validationSchemas/searchSchema.d.ts +2 -2
- package/lib/Feed/FeedItem/Replies/ReplyReactions/network.d.ts +1 -0
- package/lib/Forms/DynamicForm/DynamicForm.d.ts +10 -3
- package/lib/Forms/DynamicForm/StandaloneDynamicForm.d.ts +19 -0
- package/lib/Forms/Form/utils/parseApiErrors.d.ts +2 -2
- package/lib/Forms/Wizard/Wizard.d.ts +1 -1
- package/lib/Forms/Wizard/WizardContext.d.ts +4 -0
- package/lib/Forms/index.d.ts +2 -1
- package/lib/InviteModal/InviteModal.d.ts +3 -0
- package/lib/InviteModal/InviteModal.types.d.ts +3 -0
- package/lib/InviteModal/components/InviteeList/InviteeList.d.ts +3 -0
- package/lib/InviteModal/components/InviteeList/InviteeList.types.d.ts +10 -0
- package/lib/InviteModal/components/InviteeList/netwrok.d.ts +1 -0
- package/lib/InviteModal/components/index.d.ts +2 -0
- package/lib/InviteModal/network.d.ts +4 -0
- package/lib/InviteModal/utils.d.ts +9 -0
- package/lib/RichTextArea/components/POI/POIRecommendation.d.ts +1 -1
- package/lib/RichTextArea/components/POI/POIRecommendation.types.d.ts +2 -3
- package/lib/RichTextArea/components/POI/Store/poi.d.ts +4 -0
- package/lib/RichTextArea/components/POI/components/Intro/Intro.d.ts +4 -0
- package/lib/RichTextArea/components/POI/components/Suggestions/Suggestions.d.ts +1 -1
- package/lib/RichTextArea/components/POI/components/Suggestions/Suggestions.types.d.ts +1 -6
- package/lib/SearchableList/SearchableList.d.ts +3 -0
- package/lib/SearchableList/SearchableList.types.d.ts +16 -0
- package/lib/SearchableList/components/Content/Content.d.ts +3 -0
- package/lib/SearchableList/components/Content/Content.types.d.ts +10 -0
- package/lib/SearchableList/components/Footer/Footer.d.ts +3 -0
- package/lib/SearchableList/components/Footer/Footer.types.d.ts +3 -0
- package/lib/SearchableList/components/Header/Header.d.ts +3 -0
- package/lib/SearchableList/components/Header/Header.types.d.ts +11 -0
- package/lib/SearchableList/components/Label/Label.d.ts +4 -0
- package/lib/SearchableList/components/SearchInput/SearchInput.d.ts +3 -0
- package/lib/SearchableList/components/SearchInput/SearchInput.types.d.ts +11 -0
- package/lib/utils/client.d.ts +5 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/RichTextArea/components/POI/components/SheetComponents/SheetComponents.d.ts +0 -4
- package/lib/RichTextArea/components/POI/components/SheetComponents/SheetComponents.types.d.ts +0 -21
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ContentProps, FooterProps, HeaderProps } from './SheetComponents.types';
|
|
2
|
-
export declare const Footer: ({ onDismiss }: FooterProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
3
|
-
export declare const Header: ({ onDismiss, setQuery }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
export declare const Content: ({ onChange, pois, query, setPois, setQuery, value, }: ContentProps) => import("react/jsx-runtime").JSX.Element;
|
package/lib/RichTextArea/components/POI/components/SheetComponents/SheetComponents.types.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Dispatch, SetStateAction } from 'react';
|
|
2
|
-
import { Poi } from '../../../../../../../../api/src/lib/core_v2';
|
|
3
|
-
import { RichTextAreaValueType } from '../../../../RichTextArea.types';
|
|
4
|
-
export type HeaderProps = {
|
|
5
|
-
onDismiss: () => void;
|
|
6
|
-
setQuery: Dispatch<SetStateAction<string>>;
|
|
7
|
-
};
|
|
8
|
-
export type FooterProps = {
|
|
9
|
-
onDismiss: () => void;
|
|
10
|
-
};
|
|
11
|
-
export type ContentProps = {
|
|
12
|
-
onChange: (value: RichTextAreaValueType) => void;
|
|
13
|
-
pois: Poi[] | null;
|
|
14
|
-
query: string;
|
|
15
|
-
setPois: Dispatch<SetStateAction<Poi[] | null>>;
|
|
16
|
-
setQuery: Dispatch<SetStateAction<string>>;
|
|
17
|
-
value: RichTextAreaValueType;
|
|
18
|
-
};
|
|
19
|
-
export type SearchInputProps = {
|
|
20
|
-
setQuery: Dispatch<SetStateAction<string>>;
|
|
21
|
-
};
|