@storyblok/js 4.4.5 → 5.1.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.
- package/README.md +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/storyblok-js.js +70 -1
- package/dist/storyblok-js.mjs +35346 -682
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ If you'd like to contribute, please refer to the [contributing guidelines](CONTR
|
|
|
45
45
|
|
|
46
46
|
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
|
|
47
47
|
|
|
48
|
-
- [Discuss Storyblok on
|
|
48
|
+
- [Discuss Storyblok on GitHub Discussions](https://github.com/storyblok/monoblok/discussions)
|
|
49
49
|
|
|
50
50
|
For community support, chatting with other users, please visit:
|
|
51
51
|
|
|
@@ -60,7 +60,7 @@ For bugs or feature requests, please [submit an issue](https://github.com/storyb
|
|
|
60
60
|
|
|
61
61
|
### I can't share my company project code
|
|
62
62
|
|
|
63
|
-
We understand that you might not be able to share your company's project code. Please provide a minimal reproducible example that demonstrates the issue by using tools like [Stackblitz](https://stackblitz.com) or a link to a
|
|
63
|
+
We understand that you might not be able to share your company's project code. Please provide a minimal reproducible example that demonstrates the issue by using tools like [Stackblitz](https://stackblitz.com) or a link to a GitHub repo. Please make sure you include a README file with the instructions to build and run the project, important not to include any access token, password or personal information of any kind.
|
|
64
64
|
|
|
65
65
|
### Feedback
|
|
66
66
|
|
package/dist/index.d.ts
CHANGED
|
@@ -19,5 +19,5 @@ export { useStoryblokBridge as registerStoryblokBridge };
|
|
|
19
19
|
export { default as apiPlugin } from './api';
|
|
20
20
|
export { default as storyblokEditable } from './editable';
|
|
21
21
|
export * from './types';
|
|
22
|
-
export { BlockTypes, MarkTypes, richTextResolver, type StoryblokRichTextDocumentNode, type StoryblokRichTextImageOptimizationOptions, type StoryblokRichTextNode, type
|
|
22
|
+
export { asTag, BlockTypes, ComponentBlok, LinkTypes, MarkTypes, richTextResolver, segmentStoryblokRichText, type StoryblokRichTextDocumentNode, type StoryblokRichTextImageOptimizationOptions, type StoryblokRichTextNode, type StoryblokRichTextNodeTypes, type StoryblokRichTextOptions, TextTypes, } from '@storyblok/richtext';
|
|
23
23
|
export { default as StoryblokClient } from 'storyblok-js-client';
|