@goodhood-web/nebenan-base 3.4.0-development.6 → 3.4.0-development.61

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 (142) hide show
  1. package/index.d.ts +7 -1
  2. package/index.js +107 -103
  3. package/index.mjs +21418 -13909
  4. package/lib/ComplaintModal/ComplaintModal.types.d.ts +1 -1
  5. package/lib/DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.d.ts +1 -1
  6. package/lib/DesktopLayoutTwoColumn/DesktopLayoutTwoColumn.types.d.ts +5 -2
  7. package/lib/Feed/FeedItem/Marketplace/InteractiveElements/InteractiveCardHeader.d.ts +1 -1
  8. package/lib/Feed/FeedItem/Marketplace/MarketplaceActions/MarketplaceActions.types.d.ts +1 -1
  9. package/lib/Feed/FeedItem/Marketplace/MarketplaceActions/components/BuyerActions/BuyerActions.d.ts +1 -1
  10. package/lib/Feed/FeedItem/Marketplace/MarketplaceBody/MarketplaceBody.types.d.ts +1 -1
  11. package/lib/Feed/FeedItem/Marketplace/MarketplaceDetailPage/MarketplaceDetailPage.d.ts +1 -1
  12. package/lib/Feed/FeedItem/Marketplace/MarketplaceDetailPage/MarketplaceDetailPage.types.d.ts +4 -2
  13. package/lib/Feed/FeedItem/Marketplace/MarketplaceDetailPage/components/CardAggregator/CardAggregator.d.ts +1 -1
  14. package/lib/Feed/FeedItem/Marketplace/MarketplaceDetailPage/components/MarketplaceContent/MarketplaceContent.d.ts +3 -1
  15. package/lib/Feed/FeedItem/Marketplace/MarketplaceMoreOptions/ComplaintModalComponent/ComplaintModalComponent.d.ts +1 -1
  16. package/lib/Feed/FeedItem/Marketplace/MarketplaceMoreOptions/InteractivePostInfo/utils.d.ts +1 -1
  17. package/lib/Feed/FeedItem/Marketplace/MarketplaceMoreOptions/MarketplaceMoreOptions.types.d.ts +1 -1
  18. package/lib/Feed/FeedItem/Reactions/PostReactions/PostReactions.d.ts +3 -0
  19. package/lib/Feed/FeedItem/Reactions/PostReactions/PostReactions.types.d.ts +13 -0
  20. package/lib/Feed/FeedItem/Reactions/PostReactions/utils.d.ts +8 -0
  21. package/lib/Feed/FeedItem/Reactions/ReplyReactions/Like/Like.d.ts +3 -0
  22. package/lib/Feed/FeedItem/Reactions/ReplyReactions/Like/Like.types.d.ts +21 -0
  23. package/lib/Feed/FeedItem/Reactions/ReplyReactions/Like/ReactionLabel/ReactionLabel.d.ts +7 -0
  24. package/lib/Feed/FeedItem/Reactions/ReplyReactions/ReplyReactions.d.ts +3 -0
  25. package/lib/Feed/FeedItem/Reactions/ReplyReactions/ReplyReactions.types.d.ts +16 -0
  26. package/lib/Feed/FeedItem/utils.d.ts +2 -2
  27. package/lib/Feed/GridFeed/GridFeed.types.d.ts +1 -1
  28. package/lib/Feed/utils.d.ts +1 -1
  29. package/lib/Forms/DynamicForm/DynamicForm.d.ts +1 -1
  30. package/lib/Forms/Fields/CodeField/CodeField.d.ts +3 -0
  31. package/lib/Forms/Fields/CodeField/CodeField.types.d.ts +9 -0
  32. package/lib/Forms/Fields/FormButton/FormButtonProps.d.ts +16 -0
  33. package/lib/Forms/Fields/FormCodeField.d.ts +5 -0
  34. package/lib/Forms/Fields/FormContentCreatorTile.d.ts +6 -0
  35. package/lib/Forms/Fields/FormGenderSelector.d.ts +5 -0
  36. package/lib/Forms/Fields/FormHeader/FormHeader.d.ts +3 -0
  37. package/lib/Forms/Fields/FormHeader/FormHeader.types.d.ts +10 -0
  38. package/lib/Forms/Fields/FormHeader/components/PhoneNumber.d.ts +4 -0
  39. package/lib/Forms/Fields/FormNameAbbreviation.d.ts +7 -0
  40. package/lib/Forms/Fields/FormPasswordField.d.ts +5 -0
  41. package/lib/Forms/Fields/FormPhoneInput.d.ts +5 -0
  42. package/lib/Forms/Fields/FormSelectInput.d.ts +12 -0
  43. package/lib/Forms/Fields/FormTextInput.d.ts +1 -1
  44. package/lib/Forms/Fields/GenderSelector/GenderSelector.d.ts +3 -0
  45. package/lib/Forms/Fields/GenderSelector/GenderSelector.types.d.ts +19 -0
  46. package/lib/Forms/Fields/GenderSelector/GenderSelector.utils.d.ts +4 -0
  47. package/lib/Forms/Fields/NameAbbreviation/NameAbbreviation.d.ts +3 -0
  48. package/lib/Forms/Fields/NameAbbreviation/NameAbbreviation.types.d.ts +11 -0
  49. package/lib/Forms/Fields/PasswordField/PasswordField.d.ts +3 -0
  50. package/lib/Forms/Fields/PasswordField/PasswordField.types.d.ts +16 -0
  51. package/lib/Forms/Fields/PasswordField/utils.d.ts +1 -0
  52. package/lib/Forms/Fields/PhoneInput/PhoneInput.d.ts +3 -0
  53. package/lib/Forms/Fields/PhoneInput/PhoneInput.types.d.ts +16 -0
  54. package/lib/Forms/Fields/PhoneInput/util.d.ts +153 -0
  55. package/lib/Forms/Fields/SelectInput/SelectInput.d.ts +3 -0
  56. package/lib/Forms/Fields/SelectInput/SelectInput.types.d.ts +31 -0
  57. package/lib/Forms/Fields/SelectInput/components/Input/Input.d.ts +3 -0
  58. package/lib/Forms/Fields/SelectInput/components/Input/Input.type.d.ts +5 -0
  59. package/lib/Forms/Fields/SelectInput/components/OptionsList/OptionsList.d.ts +3 -0
  60. package/lib/Forms/Fields/SelectInput/components/OptionsList/OptionsList.types.d.ts +11 -0
  61. package/lib/Forms/Fields/SelectInput/utils.d.ts +4 -0
  62. package/lib/Forms/Fields/index.d.ts +3 -1
  63. package/lib/Forms/Fields/utils.d.ts +1 -0
  64. package/lib/Forms/Form/Form.d.ts +1 -1
  65. package/lib/Forms/Form/Form.types.d.ts +12 -3
  66. package/lib/Forms/Form/utils/parseApiErrors.d.ts +5 -0
  67. package/lib/Forms/Form/utils/utils.d.ts +4 -0
  68. package/lib/Forms/Form.store.d.ts +7 -0
  69. package/lib/Forms/GridForm/GridForm.d.ts +1 -1
  70. package/lib/Forms/Wizard/Wizard.d.ts +1 -1
  71. package/lib/Forms/Wizard/Wizard.types.d.ts +70 -4
  72. package/lib/Forms/Wizard/WizardContext.d.ts +8 -1
  73. package/lib/Forms/Wizard/useWizard.d.ts +6 -1
  74. package/lib/Gallery/Gallery.d.ts +3 -0
  75. package/lib/Gallery/Gallery.types.d.ts +18 -0
  76. package/lib/Grids/Grid/Grid.types.d.ts +6 -5
  77. package/lib/Grids/Grid/GridItem/GridItem.d.ts +1 -1
  78. package/lib/Grids/Grid/GridItem/GridItem.types.d.ts +1 -0
  79. package/lib/ImageAttachment/ImageAttachment.d.ts +3 -0
  80. package/lib/ImageAttachment/ImageAttachment.types.d.ts +10 -0
  81. package/lib/ImageAttachment/components/CollageImageAttachment/CollageImageAttachment.d.ts +2 -0
  82. package/lib/ImageAttachment/components/PlaceholderImageAttachment/PlaceholderImageAttachment.d.ts +7 -0
  83. package/lib/ImageAttachment/components/SwiperImageAttachment/SwiperImageAttachment.d.ts +2 -0
  84. package/lib/ImageCropper/ImageCropper.d.ts +3 -0
  85. package/lib/{ImagePicker → ImageCropper}/ImageCropper.types.d.ts +1 -2
  86. package/lib/ImageCropper/util.d.ts +6 -0
  87. package/lib/MobileLayout/MobileLayout.types.d.ts +1 -0
  88. package/lib/ModalGallery/ModalGallery.d.ts +3 -0
  89. package/lib/ModalGallery/ModalGallery.types.d.ts +9 -0
  90. package/lib/ModalGallery/utils.d.ts +28 -0
  91. package/lib/Reactions/ReactionSelection/ReactionSelection.types.d.ts +1 -1
  92. package/lib/Reactions/ReactionStack/ReactionStack.types.d.ts +3 -7
  93. package/lib/Reactions/ReactionStack/components/ReactionItem/ReactionItem.types.d.ts +5 -4
  94. package/lib/Reactions/ReactionStack/components/ReactionPill/ReactionPill.d.ts +2 -2
  95. package/lib/Reactions/ReactionStack/components/ReactionPill/ReactionPill.type.d.ts +5 -2
  96. package/lib/Reactions/ReactionTabList/ReactionTabList.types.d.ts +1 -1
  97. package/lib/Reactions/utils.d.ts +1 -1
  98. package/lib/Register/Register.d.ts +3 -0
  99. package/lib/Register/Register.types.d.ts +4 -0
  100. package/lib/Register/components/PrivacyInfoModal/PrivacyInfoModal.d.ts +3 -0
  101. package/lib/Register/components/PrivacyInfoModal/PrivacyInfoModal.types.d.ts +3 -0
  102. package/lib/Registration/Registration.d.ts +3 -0
  103. package/lib/Registration/Registration.store.d.ts +4 -0
  104. package/lib/Registration/Registration.types.d.ts +17 -0
  105. package/lib/Registration/RegistrationCard/RegistrationCard.d.ts +9 -0
  106. package/lib/Registration/RegistrationFieldMappings/RegistrationFieldMappings.d.ts +3 -0
  107. package/lib/Registration/RegistrationForm/FieldMappings/FieldMappings.d.ts +3 -0
  108. package/lib/Registration/RegistrationForm/RegistrationForm.d.ts +3 -0
  109. package/lib/Registration/RegistrationForm/RegistrationForm.types.d.ts +5 -0
  110. package/lib/Registration/RegistrationForm/Steps/Address.d.ts +2 -0
  111. package/lib/Registration/RegistrationForm/Steps/Email.d.ts +3 -0
  112. package/lib/Registration/RegistrationForm/Steps/Name.d.ts +2 -0
  113. package/lib/Registration/RegistrationForm/Steps/index.d.ts +4 -0
  114. package/lib/Registration/RegistrationForm/network.d.ts +4 -0
  115. package/lib/Registration/VerificationForm/FieldMappings/FieldMappings.d.ts +3 -0
  116. package/lib/Registration/VerificationForm/Steps/Gps.d.ts +3 -0
  117. package/lib/Registration/VerificationForm/Steps/InviteCode.d.ts +3 -0
  118. package/lib/Registration/VerificationForm/Steps/Methods.d.ts +3 -0
  119. package/lib/Registration/VerificationForm/Steps/PostalCode.d.ts +3 -0
  120. package/lib/Registration/VerificationForm/Steps/PostalCodeRequested.d.ts +2 -0
  121. package/lib/Registration/VerificationForm/Steps/Sms.d.ts +3 -0
  122. package/lib/Registration/VerificationForm/Steps/SmsCode.d.ts +3 -0
  123. package/lib/Registration/VerificationForm/Steps/index.d.ts +7 -0
  124. package/lib/Registration/VerificationForm/VerificationForm.d.ts +3 -0
  125. package/lib/Registration/VerificationForm/VerificationForm.types.d.ts +10 -0
  126. package/lib/Registration/VerificationForm/data.d.ts +553 -0
  127. package/lib/Registration/VerificationForm/network.d.ts +7 -0
  128. package/lib/Registration/VerificationForm/utils.d.ts +67 -0
  129. package/lib/Registration/components/MandatoryEmailConfirmation/MandatoryEmailConfirmation.d.ts +3 -0
  130. package/lib/Registration/components/MandatoryEmailConfirmation/MandatoryEmailConfirmation.types.d.ts +3 -0
  131. package/lib/Registration/components/MandatoryEmailConfirmation/utils.d.ts +4 -0
  132. package/lib/Registration/components/SuccessScreen/SuccessScreen.d.ts +2 -0
  133. package/lib/Registration/utils.d.ts +2 -0
  134. package/lib/ResponsiveModal/ResponsiveModal.d.ts +1 -1
  135. package/lib/utils/hooks.d.ts +3 -0
  136. package/lib/utils/index.d.ts +1 -0
  137. package/package.json +1 -1
  138. package/style.css +1 -1
  139. package/lib/ImagePicker/ImageCropper.d.ts +0 -3
  140. package/lib/ImagePicker/hooks/useCropper.d.ts +0 -5
  141. package/lib/ImagePicker/util.d.ts +0 -2
  142. /package/lib/{ImagePicker → ImageCropper}/hooks/useImageLoader.d.ts +0 -0
package/index.d.ts CHANGED
@@ -20,9 +20,12 @@ import { default as PostInfo } from './lib/Feed/FeedItem/PostInfo/PostInfo';
20
20
  import { default as FeedRouterProvider } from './lib/Feed/FeedRouterProvider/FeedRouterProvider';
21
21
  import { default as GridFeed } from './lib/Feed/GridFeed/GridFeed';
22
22
  import { default as GridFeedAggregator } from './lib/Feed/GridFeed/GridFeedAggregator/GridFeedAggregator';
23
+ import { default as Gallery } from './lib/Gallery/Gallery';
23
24
  import { default as Grid } from './lib/Grids/Grid/Grid';
24
25
  import { default as GridItem } from './lib/Grids/Grid/GridItem/GridItem';
25
26
  import { default as HtmlContent } from './lib/HtmlContent/HtmlContent';
27
+ import { default as ImageAttachment } from './lib/ImageAttachment/ImageAttachment';
28
+ import { default as ImageCropper } from './lib/ImageCropper/ImageCropper';
26
29
  import { default as ImageGalleryTrigger } from './lib/ImageGalleryTrigger/ImageGalleryTrigger';
27
30
  import { default as LayoutLoadingSpinner } from './lib/LayoutLoadingSpinner/LayoutLoadingSpinner';
28
31
  import { default as MainLayout } from './lib/MainLayout/MainLayout';
@@ -30,6 +33,7 @@ import { default as MarkdownRichText } from './lib/MarkdownRichText/MarkdownRich
30
33
  import { default as MenuLinkList } from './lib/MenuLinkList/MenuLinkList';
31
34
  import { default as MobileLayout } from './lib/MobileLayout/MobileLayout';
32
35
  import { default as MobileHeaderBar } from './lib/MobileLayout/components/MobileHeaderBar/MobileHeaderBar';
36
+ import { default as ModalGallery } from './lib/ModalGallery/ModalGallery';
33
37
  import { default as NPEAggregator } from './lib/NPEAggregator/NPEAggregator';
34
38
  import { default as PointOfInterest } from './lib/PointOfInterest/PointOfInterest';
35
39
  import { default as Profile } from './lib/Profile/Profile';
@@ -38,7 +42,9 @@ import { default as Quote } from './lib/Quote/Quote';
38
42
  import { default as ReactionSelection } from './lib/Reactions/ReactionSelection/ReactionSelection';
39
43
  import { Reaction, ReactionPill, ReactionStack } from './lib/Reactions/ReactionStack';
40
44
  import { default as ReactionTabList } from './lib/Reactions/ReactionTabList/ReactionTabList';
45
+ import { default as Register } from './lib/Register/Register';
46
+ import { default as Registration } from './lib/Registration/Registration';
41
47
  import { default as ResponsiveModal } from './lib/ResponsiveModal/ResponsiveModal';
42
48
  import { default as ThankYouCard } from './lib/ThankYouCard/ThankYouCard';
43
49
  export * from './lib/Forms';
44
- export { AccordionMenu, AuthenticationForm, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, EmojiPicker, EmojiSearch, GridFeed, GridFeedAggregator, Grid, GridItem, HtmlContent, ImageGalleryTrigger, LayoutLoadingSpinner, LinkAttachment, MainLayout, MarkdownRichText, MarketplaceAggregatorCard, FeedRouterProvider, NPEAggregator, MarketplaceDetailPage, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, ThankYouCard, };
50
+ export { AccordionMenu, AuthenticationForm, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, Registration, Register, EmojiPicker, EmojiSearch, ImageCropper, Gallery, GridFeed, GridFeedAggregator, Grid, GridItem, HtmlContent, ImageAttachment, ImageGalleryTrigger, LayoutLoadingSpinner, LinkAttachment, MainLayout, MarkdownRichText, MarketplaceAggregatorCard, ModalGallery, FeedRouterProvider, NPEAggregator, MarketplaceDetailPage, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, ThankYouCard, };