@goodhood-web/nebenan-base 3.5.0-development.9 → 3.5.0

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 (97) hide show
  1. package/index.d.ts +6 -4
  2. package/index.js +136 -131
  3. package/index.mjs +69725 -68830
  4. package/lib/Authentication/Authentication.types.d.ts +12 -0
  5. package/lib/Authentication/LoginForm/LoginForm.d.ts +3 -0
  6. package/lib/Authentication/LoginForm/LoginForm.types.d.ts +8 -0
  7. package/lib/Authentication/LoginForm/LoginFormFields.d.ts +3 -0
  8. package/lib/Authentication/LoginForm/network.d.ts +6 -0
  9. package/lib/Authentication/PasswordForgotten/PasswordForgotten.d.ts +2 -0
  10. package/lib/Authentication/PasswordForgotten/PasswordForgotten.types.d.ts +4 -0
  11. package/lib/Authentication/PasswordForgotten/PasswordForgottenFormFields.d.ts +3 -0
  12. package/lib/Authentication/PasswordForgotten/network.d.ts +3 -0
  13. package/lib/Authentication/PasswordReset/PasswordReset.d.ts +6 -0
  14. package/lib/Authentication/PasswordReset/PasswordReset.types.d.ts +6 -0
  15. package/lib/Authentication/PasswordReset/PasswordResetFormFields.d.ts +3 -0
  16. package/lib/Authentication/PasswordReset/components/PasswordResetInstructions/PasswordResetInstructions.d.ts +4 -0
  17. package/lib/Authentication/PasswordReset/network.d.ts +3 -0
  18. package/lib/Authentication/PasswordReset/utils.d.ts +5 -0
  19. package/lib/{Registration/RegistrationFieldMappings/RegistrationFieldMappings.d.ts → Authentication/Registration/FieldMappings/FieldMappings.d.ts} +1 -1
  20. package/lib/Authentication/Registration/Register/Register.d.ts +3 -0
  21. package/lib/Authentication/Registration/Register/Register.types.d.ts +8 -0
  22. package/lib/Authentication/Registration/Register/components/InviteCard/InviteCard.d.ts +3 -0
  23. package/lib/Authentication/Registration/Register/components/InviteCard/InviteCard.types.d.ts +6 -0
  24. package/lib/Authentication/Registration/Registration.d.ts +3 -0
  25. package/lib/Authentication/Registration/Registration.types.d.ts +25 -0
  26. package/lib/Authentication/Registration/RegistrationCard/RegistrationCard.d.ts +3 -0
  27. package/lib/Authentication/Registration/RegistrationCard/RegistrationCard.types.d.ts +9 -0
  28. package/lib/{Registration → Authentication/Registration}/RegistrationForm/FieldMappings/FieldMappings.d.ts +1 -1
  29. package/lib/Authentication/Registration/RegistrationForm/RegistrationForm.d.ts +3 -0
  30. package/lib/Authentication/Registration/RegistrationForm/RegistrationForm.types.d.ts +8 -0
  31. package/lib/Authentication/Registration/RegistrationForm/Steps/Address.d.ts +3 -0
  32. package/lib/{Registration → Authentication/Registration}/RegistrationForm/Steps/Email.d.ts +2 -2
  33. package/lib/{Registration → Authentication/Registration}/RegistrationForm/Steps/Name.d.ts +1 -1
  34. package/lib/Authentication/Registration/RegistrationForm/network.d.ts +6 -0
  35. package/lib/Authentication/Registration/RegistrationForm/utils.d.ts +3 -0
  36. package/lib/{Registration → Authentication/Registration}/VerificationForm/FieldMappings/FieldMappings.d.ts +1 -1
  37. package/lib/{Registration → Authentication/Registration}/VerificationForm/Steps/Gps.d.ts +2 -2
  38. package/lib/{Registration → Authentication/Registration}/VerificationForm/Steps/InviteCode.d.ts +2 -2
  39. package/lib/Authentication/Registration/VerificationForm/Steps/Methods.d.ts +3 -0
  40. package/lib/{Registration → Authentication/Registration}/VerificationForm/Steps/PostalCode.d.ts +2 -2
  41. package/lib/{Registration → Authentication/Registration}/VerificationForm/Steps/PostalCodeRequested.d.ts +1 -1
  42. package/lib/{Registration → Authentication/Registration}/VerificationForm/Steps/Sms.d.ts +2 -2
  43. package/lib/{Registration → Authentication/Registration}/VerificationForm/Steps/SmsCode.d.ts +2 -2
  44. package/lib/Authentication/Registration/VerificationForm/VerificationForm.d.ts +3 -0
  45. package/lib/{Registration → Authentication/Registration}/VerificationForm/VerificationForm.types.d.ts +2 -2
  46. package/lib/{Registration → Authentication/Registration}/VerificationForm/network.d.ts +4 -4
  47. package/lib/{Registration → Authentication/Registration}/VerificationForm/utils.d.ts +2 -2
  48. package/lib/Authentication/Registration/utils.d.ts +8 -0
  49. package/lib/Authentication/components/AuthenticationCard/AuthenticationCard.d.ts +3 -0
  50. package/lib/Authentication/components/AuthenticationCard/AuthenticationCard.types.d.ts +12 -0
  51. package/lib/Authentication/components/DynamicScreen/DynamicScreen.d.ts +3 -0
  52. package/lib/Authentication/components/DynamicScreen/DynamicScreen.types.d.ts +26 -0
  53. package/lib/Authentication/components/DynamicScreen/utils.d.ts +2 -0
  54. package/lib/Authentication/components/EmailConfirmation/EmailConfirmation.d.ts +3 -0
  55. package/lib/Authentication/components/EmailConfirmation/EmailConfirmation.types.d.ts +5 -0
  56. package/lib/Authentication/components/ScreenCard/ScreenCard.d.ts +3 -0
  57. package/lib/Authentication/components/ScreenCard/ScreenCard.types.d.ts +16 -0
  58. package/lib/Authentication/components/ScreenLoading/ScreenLoading.d.ts +2 -0
  59. package/lib/Authentication/components/SuccessScreen/SuccessScreen.d.ts +4 -0
  60. package/lib/Authentication/components/index.d.ts +6 -0
  61. package/lib/Authentication/network.d.ts +3 -0
  62. package/lib/Forms/Fields/FormButton/FormButtonProps.d.ts +9 -5
  63. package/lib/Forms/Fields/FormSelectInput.d.ts +1 -0
  64. package/lib/Forms/Fields/NameAbbreviation/NameAbbreviation.d.ts +1 -1
  65. package/lib/Forms/Fields/PasswordField/PasswordField.d.ts +1 -1
  66. package/lib/Forms/Form/Form.types.d.ts +1 -1
  67. package/lib/Forms/Wizard/Wizard.types.d.ts +1 -1
  68. package/lib/utils/client.d.ts +2 -0
  69. package/lib/utils/hooks.d.ts +2 -2
  70. package/lib/utils/index.d.ts +4 -3
  71. package/lib/utils/server.d.ts +2 -0
  72. package/package.json +1 -1
  73. package/style.css +1 -1
  74. package/lib/AuthenticationForm/AuthenticationForm.d.ts +0 -3
  75. package/lib/AuthenticationForm/AuthenticationForm.types.d.ts +0 -13
  76. package/lib/Register/Register.d.ts +0 -3
  77. package/lib/Register/Register.types.d.ts +0 -4
  78. package/lib/Registration/Registration.d.ts +0 -3
  79. package/lib/Registration/Registration.store.d.ts +0 -4
  80. package/lib/Registration/Registration.types.d.ts +0 -17
  81. package/lib/Registration/RegistrationCard/RegistrationCard.d.ts +0 -9
  82. package/lib/Registration/RegistrationForm/RegistrationForm.d.ts +0 -3
  83. package/lib/Registration/RegistrationForm/RegistrationForm.types.d.ts +0 -5
  84. package/lib/Registration/RegistrationForm/Steps/Address.d.ts +0 -2
  85. package/lib/Registration/RegistrationForm/network.d.ts +0 -4
  86. package/lib/Registration/VerificationForm/Steps/Methods.d.ts +0 -3
  87. package/lib/Registration/VerificationForm/VerificationForm.d.ts +0 -3
  88. package/lib/Registration/VerificationForm/data.d.ts +0 -553
  89. package/lib/Registration/components/MandatoryEmailConfirmation/MandatoryEmailConfirmation.d.ts +0 -3
  90. package/lib/Registration/components/MandatoryEmailConfirmation/MandatoryEmailConfirmation.types.d.ts +0 -3
  91. package/lib/Registration/components/MandatoryEmailConfirmation/utils.d.ts +0 -4
  92. package/lib/Registration/components/SuccessScreen/SuccessScreen.d.ts +0 -2
  93. package/lib/Registration/utils.d.ts +0 -2
  94. /package/lib/{Register → Authentication/Registration/Register}/components/PrivacyInfoModal/PrivacyInfoModal.d.ts +0 -0
  95. /package/lib/{Register → Authentication/Registration/Register}/components/PrivacyInfoModal/PrivacyInfoModal.types.d.ts +0 -0
  96. /package/lib/{Registration → Authentication/Registration}/RegistrationForm/Steps/index.d.ts +0 -0
  97. /package/lib/{Registration → Authentication/Registration}/VerificationForm/Steps/index.d.ts +0 -0
package/index.d.ts CHANGED
@@ -1,6 +1,10 @@
1
1
  import { default as AccordionMenu } from './lib/AccordionMenu/AccordionMenu';
2
2
  import { default as LinkAttachment } from './lib/Attachments/LinkAttachment/LinkAttachment';
3
- import { default as AuthenticationForm } from './lib/AuthenticationForm/AuthenticationForm';
3
+ import { default as LoginForm } from './lib/Authentication/LoginForm/LoginForm';
4
+ import { default as PasswordForgotten } from './lib/Authentication/PasswordForgotten/PasswordForgotten';
5
+ import { default as PasswordReset } from './lib/Authentication/PasswordReset/PasswordReset';
6
+ import { default as Registration } from './lib/Authentication/Registration/Registration';
7
+ import { DynamicScreen } from './lib/Authentication/components';
4
8
  import { default as ChristmasGarland } from './lib/ChristmasGarland/ChristmasGarland';
5
9
  import { default as ComparisonTable } from './lib/ComparisonTable/ComparisonTable';
6
10
  import { default as ComplaintModal } from './lib/ComplaintModal/ComplaintModal';
@@ -42,9 +46,7 @@ import { default as Quote } from './lib/Quote/Quote';
42
46
  import { default as ReactionSelection } from './lib/Reactions/ReactionSelection/ReactionSelection';
43
47
  import { Reaction, ReactionPill, ReactionStack } from './lib/Reactions/ReactionStack';
44
48
  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';
47
49
  import { default as ResponsiveModal } from './lib/ResponsiveModal/ResponsiveModal';
48
50
  import { default as ThankYouCard } from './lib/ThankYouCard/ThankYouCard';
49
51
  export * from './lib/Forms';
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, };
52
+ export { AccordionMenu, LoginForm, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DynamicScreen, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, Registration, EmojiPicker, PasswordForgotten, PasswordReset, 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, };