@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.
Files changed (55) hide show
  1. package/index.d.ts +3 -1
  2. package/index.js +102 -89
  3. package/index.mjs +13376 -13050
  4. package/lib/AttendeesModal/AttendeesModal.d.ts +3 -0
  5. package/lib/AttendeesModal/AttendeesModal.types.d.ts +4 -0
  6. package/lib/AttendeesModal/components/AttendeesList/AttendeesList.d.ts +3 -0
  7. package/lib/AttendeesModal/components/AttendeesList/AttendeesList.types.d.ts +8 -0
  8. package/lib/AttendeesModal/components/index.d.ts +2 -0
  9. package/lib/AttendeesModal/network.d.ts +4 -0
  10. package/lib/AttendeesModal/utils.d.ts +11 -0
  11. package/lib/Authentication/Registration/RegistrationForm/network.d.ts +1 -1
  12. package/lib/Authentication/Registration/utils.d.ts +1 -1
  13. package/lib/ContentCreator/validationSchemas/dynamicValidationSchema.d.ts +10 -10
  14. package/lib/ContentCreator/validationSchemas/eventSchema.d.ts +2 -2
  15. package/lib/ContentCreator/validationSchemas/marketplaceSchema.d.ts +2 -2
  16. package/lib/ContentCreator/validationSchemas/postSchema.d.ts +2 -2
  17. package/lib/ContentCreator/validationSchemas/recommendationSchema.d.ts +2 -2
  18. package/lib/ContentCreator/validationSchemas/searchSchema.d.ts +2 -2
  19. package/lib/Feed/FeedItem/Replies/ReplyReactions/network.d.ts +1 -0
  20. package/lib/Forms/DynamicForm/DynamicForm.d.ts +10 -3
  21. package/lib/Forms/DynamicForm/StandaloneDynamicForm.d.ts +19 -0
  22. package/lib/Forms/Form/utils/parseApiErrors.d.ts +2 -2
  23. package/lib/Forms/Wizard/Wizard.d.ts +1 -1
  24. package/lib/Forms/Wizard/WizardContext.d.ts +4 -0
  25. package/lib/Forms/index.d.ts +2 -1
  26. package/lib/InviteModal/InviteModal.d.ts +3 -0
  27. package/lib/InviteModal/InviteModal.types.d.ts +3 -0
  28. package/lib/InviteModal/components/InviteeList/InviteeList.d.ts +3 -0
  29. package/lib/InviteModal/components/InviteeList/InviteeList.types.d.ts +10 -0
  30. package/lib/InviteModal/components/InviteeList/netwrok.d.ts +1 -0
  31. package/lib/InviteModal/components/index.d.ts +2 -0
  32. package/lib/InviteModal/network.d.ts +4 -0
  33. package/lib/InviteModal/utils.d.ts +9 -0
  34. package/lib/RichTextArea/components/POI/POIRecommendation.d.ts +1 -1
  35. package/lib/RichTextArea/components/POI/POIRecommendation.types.d.ts +2 -3
  36. package/lib/RichTextArea/components/POI/Store/poi.d.ts +4 -0
  37. package/lib/RichTextArea/components/POI/components/Intro/Intro.d.ts +4 -0
  38. package/lib/RichTextArea/components/POI/components/Suggestions/Suggestions.d.ts +1 -1
  39. package/lib/RichTextArea/components/POI/components/Suggestions/Suggestions.types.d.ts +1 -6
  40. package/lib/SearchableList/SearchableList.d.ts +3 -0
  41. package/lib/SearchableList/SearchableList.types.d.ts +16 -0
  42. package/lib/SearchableList/components/Content/Content.d.ts +3 -0
  43. package/lib/SearchableList/components/Content/Content.types.d.ts +10 -0
  44. package/lib/SearchableList/components/Footer/Footer.d.ts +3 -0
  45. package/lib/SearchableList/components/Footer/Footer.types.d.ts +3 -0
  46. package/lib/SearchableList/components/Header/Header.d.ts +3 -0
  47. package/lib/SearchableList/components/Header/Header.types.d.ts +11 -0
  48. package/lib/SearchableList/components/Label/Label.d.ts +4 -0
  49. package/lib/SearchableList/components/SearchInput/SearchInput.d.ts +3 -0
  50. package/lib/SearchableList/components/SearchInput/SearchInput.types.d.ts +11 -0
  51. package/lib/utils/client.d.ts +5 -0
  52. package/package.json +1 -1
  53. package/style.css +1 -1
  54. package/lib/RichTextArea/components/POI/components/SheetComponents/SheetComponents.d.ts +0 -4
  55. 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;
@@ -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
- };