@crashbytes/contentful-richtext-editor 1.0.6 → 1.0.8

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.
@@ -0,0 +1,18 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { ContentfulRichTextEditor } from './ContentfulEditor';
3
+ declare const meta: Meta<typeof ContentfulRichTextEditor>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const BlogPostExample: Story;
8
+ export declare const MarketingCopyExample: Story;
9
+ export declare const TechnicalDocumentationExample: Story;
10
+ export declare const RecipeExample: Story;
11
+ export declare const ContentfulTheme: Story;
12
+ export declare const MinimalTheme: Story;
13
+ export declare const DefaultTheme: Story;
14
+ export declare const ReadOnly: Story;
15
+ export declare const LimitedFeatures: Story;
16
+ export declare const SimpleEditor: Story;
17
+ export declare const WithEmbedHandlers: Story;
18
+ export declare const CustomStyling: Story;
@@ -0,0 +1,10 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ declare const MockToolbarWrapper: ({ disabledFeatures, availableHeadings, availableMarks, onEmbedEntry, onEmbedAsset, }: any) => import("react/jsx-runtime").JSX.Element;
3
+ declare const meta: Meta<typeof MockToolbarWrapper>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const LimitedFeatures: Story;
8
+ export declare const MinimalToolbar: Story;
9
+ export declare const OnlyHeadings: Story;
10
+ export declare const NoEmbedControls: Story;