@goodhood-web/nebenan-base 4.1.0-development.24 → 4.1.0-development.25

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 (33) hide show
  1. package/index.d.ts +2 -1
  2. package/index.js +84 -84
  3. package/index.mjs +67662 -67004
  4. package/lib/ContentCreator/ContentCreator.d.ts +3 -0
  5. package/lib/ContentCreator/ContentCreator.types.d.ts +18 -0
  6. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/ContentCreatorFieldsWrapper.d.ts +3 -0
  7. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentFieldsSheet/ContentFieldsSheet.d.ts +4 -0
  8. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentFieldsSheet/ContentFieldsSheet.types.d.ts +34 -0
  9. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentTypeField/ContentTypeField.d.ts +3 -0
  10. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentTypeField/ContentTypeField.types.d.ts +13 -0
  11. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/EventFields/EventField.d.ts +2 -0
  12. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/MarketplaceFields/MarketplaceFields.d.ts +2 -0
  13. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/PostFields/PostFields.d.ts +3 -0
  14. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/PostFields/PostFields.types.d.ts +6 -0
  15. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ReachTypeField/ReachTypeField.d.ts +3 -0
  16. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ReachTypeField/ReachTypeFields.type.d.ts +10 -0
  17. package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/index.d.ts +6 -0
  18. package/lib/ContentCreator/constants.d.ts +12 -0
  19. package/lib/ContentCreator/network.d.ts +4 -0
  20. package/lib/ContentCreator/utils.d.ts +14 -0
  21. package/lib/ContentCreator/validationSchemas/commonSchemas.d.ts +111 -0
  22. package/lib/ContentCreator/validationSchemas/dynamicValidationSchema.d.ts +628 -0
  23. package/lib/ContentCreator/validationSchemas/eventSchema.d.ts +127 -0
  24. package/lib/ContentCreator/validationSchemas/index.d.ts +7 -0
  25. package/lib/ContentCreator/validationSchemas/marketplaceSchema.d.ts +127 -0
  26. package/lib/ContentCreator/validationSchemas/postSchema.d.ts +127 -0
  27. package/lib/ContentCreator/validationSchemas/recommendationSchema.d.ts +127 -0
  28. package/lib/ContentCreator/validationSchemas/searchSchema.d.ts +127 -0
  29. package/lib/Forms/Fields/FormRichTextArea.d.ts +8 -0
  30. package/lib/RichTextArea/RichTextArea.d.ts +1 -1
  31. package/lib/RichTextArea/RichTextArea.types.d.ts +2 -1
  32. package/package.json +1 -1
  33. package/style.css +1 -1
package/index.d.ts CHANGED
@@ -9,6 +9,7 @@ import { default as ChristmasGarland } from './lib/ChristmasGarland/ChristmasGar
9
9
  import { default as ComparisonTable } from './lib/ComparisonTable/ComparisonTable';
10
10
  import { default as ComplaintModal } from './lib/ComplaintModal/ComplaintModal';
11
11
  import { default as ConfirmDialog } from './lib/ConfirmDialog/ConfirmDialog';
12
+ import { default as ContentCreator } from './lib/ContentCreator/ContentCreator';
12
13
  import { default as ContentCreatorTrigger } from './lib/ContentCreatorTrigger/ContentCreatorTrigger';
13
14
  import { default as DesktopLayout } from './lib/DesktopLayout/DesktopLayout';
14
15
  import { default as DesktopNavbarSearchField } from './lib/DesktopNavbarSearchField/DesktopNavbarSearchField';
@@ -53,4 +54,4 @@ export * from './lib/Forms';
53
54
  export type { RichTextAreaValueType, CoreV3PostInput, ImageFile, } from './lib/RichTextArea/RichTextArea.types';
54
55
  export { toCoreV3Format } from './lib/RichTextArea/RichTextArea.types';
55
56
  export { useImageUpload } from './lib/RichTextArea/useImageUpload';
56
- export { AccordionMenu, LoginForm, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DynamicScreen, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, Registration, EmojiPicker, PasswordForgotten, PasswordReset, EmojiSearch, Gallery, Grid, GridFeed, GridItem, HtmlContent, ImageAttachment, ImageCropper, ImageGalleryTrigger, LayoutLoadingSpinner, LinkAttachment, MainLayout, MarkdownRichText, MarketplaceAggregatorCard, MarketplaceDetailPage, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, ModalGallery, NPEAggregator, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, RichTextArea, ThankYouCard, GridFeedAggregator, FeedRouterProvider };
57
+ export { AccordionMenu, LoginForm, ChristmasGarland, ComparisonTable, ComplaintModal, ConfirmDialog, ContentCreatorTrigger, DynamicScreen, DesktopLayout, DesktopNavbarSearchField, DesktopNavigationBar, Registration, EmojiPicker, PasswordForgotten, PasswordReset, EmojiSearch, Gallery, Grid, GridFeed, GridItem, HtmlContent, ImageAttachment, ImageCropper, ImageGalleryTrigger, LayoutLoadingSpinner, LinkAttachment, MainLayout, MarkdownRichText, MarketplaceAggregatorCard, MarketplaceDetailPage, MarketplaceItemCardless, MarketplaceMoreOptions, MenuLinkList, MobileHeaderBar, MobileLayout, ModalGallery, NPEAggregator, PointOfInterest, PostAuthor, PostInfo, Profile, ProfileControls, Quote, Reaction, ReactionPill, ReactionSelection, ReactionStack, ReactionTabList, ResponsiveModal, RichTextArea, ThankYouCard, GridFeedAggregator, FeedRouterProvider, ContentCreator, };