@goodhood-web/nebenan-base 4.1.0-development.23 → 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.
- package/index.d.ts +2 -1
- package/index.js +84 -84
- package/index.mjs +67662 -67004
- package/lib/ContentCreator/ContentCreator.d.ts +3 -0
- package/lib/ContentCreator/ContentCreator.types.d.ts +18 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/ContentCreatorFieldsWrapper.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentFieldsSheet/ContentFieldsSheet.d.ts +4 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentFieldsSheet/ContentFieldsSheet.types.d.ts +34 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentTypeField/ContentTypeField.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ContentTypeField/ContentTypeField.types.d.ts +13 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/EventFields/EventField.d.ts +2 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/MarketplaceFields/MarketplaceFields.d.ts +2 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/PostFields/PostFields.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/PostFields/PostFields.types.d.ts +6 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ReachTypeField/ReachTypeField.d.ts +3 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/ReachTypeField/ReachTypeFields.type.d.ts +10 -0
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/index.d.ts +6 -0
- package/lib/ContentCreator/constants.d.ts +12 -0
- package/lib/ContentCreator/network.d.ts +4 -0
- package/lib/ContentCreator/utils.d.ts +14 -0
- package/lib/ContentCreator/validationSchemas/commonSchemas.d.ts +111 -0
- package/lib/ContentCreator/validationSchemas/dynamicValidationSchema.d.ts +628 -0
- package/lib/ContentCreator/validationSchemas/eventSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/index.d.ts +7 -0
- package/lib/ContentCreator/validationSchemas/marketplaceSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/postSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/recommendationSchema.d.ts +127 -0
- package/lib/ContentCreator/validationSchemas/searchSchema.d.ts +127 -0
- package/lib/Forms/Fields/FormRichTextArea.d.ts +8 -0
- package/lib/RichTextArea/RichTextArea.d.ts +1 -1
- package/lib/RichTextArea/RichTextArea.types.d.ts +2 -1
- package/package.json +1 -1
- 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, };
|