@storyblok/vue 9.4.4 → 10.0.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/dist/composables/useStoryblokRichText.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/storyblok-vue.js +71 -2
- package/dist/storyblok-vue.mjs +35335 -725
- package/dist/types.d.ts +3 -3
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SbBlokData, SbSDKOptions, StoryblokRichTextDocumentNode,
|
|
1
|
+
import { SbBlokData, SbSDKOptions, StoryblokRichTextDocumentNode, StoryblokRichTextOptions } from '@storyblok/js';
|
|
2
2
|
import { default as StoryblokComponent } from './components/StoryblokComponent.vue';
|
|
3
3
|
import { VNode } from 'vue';
|
|
4
4
|
declare module 'vue' {
|
|
@@ -6,7 +6,7 @@ declare module 'vue' {
|
|
|
6
6
|
StoryblokComponent: typeof StoryblokComponent;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
export type { ArrayFn, AsyncFn, ISbAlternateObject, ISbCache, ISbConfig, ISbContentMangmntAPI, ISbDimensions, ISbError, ISbManagmentApiResult, ISbResponse, ISbResult, ISbSchema, ISbStories, ISbStoriesParams, ISbStory, ISbStoryData, ISbStoryParams, SbBlokData, SbBlokKeyDataTypes, SbSDKOptions, StoryblokBridgeConfigV2, StoryblokBridgeV2, StoryblokClient, StoryblokComponentType, StoryblokRichTextDocumentNode, StoryblokRichTextImageOptimizationOptions, StoryblokRichTextNode,
|
|
9
|
+
export type { ArrayFn, AsyncFn, ISbAlternateObject, ISbCache, ISbConfig, ISbContentMangmntAPI, ISbDimensions, ISbError, ISbManagmentApiResult, ISbResponse, ISbResult, ISbSchema, ISbStories, ISbStoriesParams, ISbStory, ISbStoryData, ISbStoryParams, SbBlokData, SbBlokKeyDataTypes, SbSDKOptions, StoryblokBridgeConfigV2, StoryblokBridgeV2, StoryblokClient, StoryblokComponentType, StoryblokRichTextDocumentNode, StoryblokRichTextImageOptimizationOptions, StoryblokRichTextNode, StoryblokRichTextNodeTypes, } from '@storyblok/js';
|
|
10
10
|
export interface SbVueSDKOptions extends SbSDKOptions {
|
|
11
11
|
/**
|
|
12
12
|
* Show a fallback component in your frontend if a component is not registered properly.
|
|
@@ -22,5 +22,5 @@ export interface SbComponentProps {
|
|
|
22
22
|
}
|
|
23
23
|
export interface StoryblokRichTextProps {
|
|
24
24
|
doc: StoryblokRichTextDocumentNode;
|
|
25
|
-
|
|
25
|
+
tiptapExtensions?: StoryblokRichTextOptions<VNode>['tiptapExtensions'];
|
|
26
26
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storyblok/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "10.0.0",
|
|
5
5
|
"description": "SDK to integrate Storyblok into your project using Vue.",
|
|
6
6
|
"author": "Storyblok",
|
|
7
7
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"vue": ">=3.4"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@storyblok/js": "
|
|
34
|
+
"@storyblok/js": "5.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"vue": "^3.5.13",
|
|
52
52
|
"vue-router": "^4.5.0",
|
|
53
53
|
"vue-tsc": "^2.2.0",
|
|
54
|
-
"@storyblok/eslint-config": "0.4.
|
|
54
|
+
"@storyblok/eslint-config": "0.4.2"
|
|
55
55
|
},
|
|
56
56
|
"release": {
|
|
57
57
|
"branches": [
|