@uniformdev/uniform-nuxt 19.199.0 → 19.199.1-alpha.10
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/module.d.mts +1 -1
- package/dist/module.d.ts +1 -1
- package/dist/module.json +5 -1
- package/dist/runtime/components/{NuxtLinkRichTextNode.mjs → NuxtLinkRichTextNode.js} +1 -1
- package/dist/runtime/components/UniformRichText.d.ts +5 -5
- package/dist/runtime/components/{UniformRichText.mjs → UniformRichText.js} +2 -2
- package/dist/runtime/components/UniformRichTextNode.d.ts +11 -6
- package/dist/runtime/components/{UniformRichTextNode.mjs → UniformRichTextNode.js} +2 -2
- package/dist/runtime/composables/{useUniformComposition.mjs → useUniformComposition.js} +1 -1
- package/dist/runtime/{plugin.mjs → plugin.js} +1 -1
- package/dist/types.d.mts +4 -5
- package/dist/types.d.ts +4 -5
- package/package.json +13 -14
- /package/dist/runtime/components/{UniformComposition.mjs → UniformComposition.js} +0 -0
- /package/dist/runtime/components/{UniformPlayground.mjs → UniformPlayground.js} +0 -0
- /package/dist/runtime/components/{UniformSlot.mjs → UniformSlot.js} +0 -0
- /package/dist/runtime/components/{UniformText.mjs → UniformText.js} +0 -0
package/dist/module.d.mts
CHANGED
|
@@ -40,6 +40,6 @@ interface UniformModuleOptions {
|
|
|
40
40
|
*/
|
|
41
41
|
playgroundPath?: string;
|
|
42
42
|
}
|
|
43
|
-
declare const _default: _nuxt_schema.NuxtModule<UniformModuleOptions>;
|
|
43
|
+
declare const _default: _nuxt_schema.NuxtModule<UniformModuleOptions, UniformModuleOptions, false>;
|
|
44
44
|
|
|
45
45
|
export { type UniformModuleOptions, _default as default };
|
package/dist/module.d.ts
CHANGED
|
@@ -40,6 +40,6 @@ interface UniformModuleOptions {
|
|
|
40
40
|
*/
|
|
41
41
|
playgroundPath?: string;
|
|
42
42
|
}
|
|
43
|
-
declare const _default: _nuxt_schema.NuxtModule<UniformModuleOptions>;
|
|
43
|
+
declare const _default: _nuxt_schema.NuxtModule<UniformModuleOptions, UniformModuleOptions, false>;
|
|
44
44
|
|
|
45
45
|
export { type UniformModuleOptions, _default as default };
|
package/dist/module.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UniformRichTextProps } from '@uniformdev/canvas-vue';
|
|
2
|
-
import { PropType } from 'vue
|
|
3
|
-
export declare const UniformRichText: import("vue
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
export declare const UniformRichText: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
parameterId: {
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
required: true;
|
|
@@ -9,9 +9,9 @@ export declare const UniformRichText: import("vue-demi").DefineComponent<{
|
|
|
9
9
|
type: PropType<UniformRichTextProps["resolveRichTextRenderer"]>;
|
|
10
10
|
required: false;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
13
|
[key: string]: any;
|
|
14
|
-
}>,
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
parameterId: {
|
|
16
16
|
type: StringConstructor;
|
|
17
17
|
required: true;
|
|
@@ -20,5 +20,5 @@ export declare const UniformRichText: import("vue-demi").DefineComponent<{
|
|
|
20
20
|
type: PropType<UniformRichTextProps["resolveRichTextRenderer"]>;
|
|
21
21
|
required: false;
|
|
22
22
|
};
|
|
23
|
-
}
|
|
23
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
24
24
|
export default UniformRichText;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UniformRichText as VueUniformRichText } from "@uniformdev/canvas-vue";
|
|
2
|
-
import { computed, defineComponent, h } from "vue
|
|
3
|
-
import { getResolveVueRichTextRenderer } from "./UniformRichTextNode.
|
|
2
|
+
import { computed, defineComponent, h } from "vue";
|
|
3
|
+
import { getResolveVueRichTextRenderer } from "./UniformRichTextNode.js";
|
|
4
4
|
export const UniformRichText = defineComponent({
|
|
5
5
|
name: "UniformRichText",
|
|
6
6
|
props: {
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { UniformRichTextNodeProps } from '@uniformdev/canvas-vue';
|
|
2
2
|
import { RichTextNode } from '@uniformdev/richtext';
|
|
3
|
-
import { PropType } from 'vue
|
|
4
|
-
export declare function getResolveVueRichTextRenderer(resolveRichTextRenderer: UniformRichTextNodeProps['resolveRichTextRenderer']): (node: RichTextNode) => import("
|
|
5
|
-
|
|
3
|
+
import { PropType } from 'vue';
|
|
4
|
+
export declare function getResolveVueRichTextRenderer(resolveRichTextRenderer: UniformRichTextNodeProps['resolveRichTextRenderer']): (node: RichTextNode) => import("vue").ComponentOptions<import("@uniformdev/canvas-vue").RichTextComponentProps<RichTextNode>, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, string, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> | import("vue").FunctionalComponent<import("@uniformdev/canvas-vue").RichTextComponentProps<RichTextNode>, {}, any, {}> | {
|
|
5
|
+
new (...args: any[]): import("@uniformdev/canvas-vue").RichTextComponentProps<RichTextNode>;
|
|
6
|
+
__isFragment?: never;
|
|
7
|
+
__isTeleport?: never;
|
|
8
|
+
__isSuspense?: never;
|
|
9
|
+
} | null | undefined;
|
|
10
|
+
export declare const UniformRichTextNode: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
11
|
node: {
|
|
7
12
|
type: PropType<UniformRichTextNodeProps["node"]>;
|
|
8
13
|
required: true;
|
|
@@ -11,9 +16,9 @@ export declare const UniformRichTextNode: import("vue-demi").DefineComponent<{
|
|
|
11
16
|
type: PropType<UniformRichTextNodeProps["resolveRichTextRenderer"]>;
|
|
12
17
|
required: false;
|
|
13
18
|
};
|
|
14
|
-
}
|
|
19
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
20
|
[key: string]: any;
|
|
16
|
-
}>,
|
|
21
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
22
|
node: {
|
|
18
23
|
type: PropType<UniformRichTextNodeProps["node"]>;
|
|
19
24
|
required: true;
|
|
@@ -22,5 +27,5 @@ export declare const UniformRichTextNode: import("vue-demi").DefineComponent<{
|
|
|
22
27
|
type: PropType<UniformRichTextNodeProps["resolveRichTextRenderer"]>;
|
|
23
28
|
required: false;
|
|
24
29
|
};
|
|
25
|
-
}
|
|
30
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
31
|
export default UniformRichTextNode;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
UniformRichTextNode as VueUniformRichTextNode
|
|
3
3
|
} from "@uniformdev/canvas-vue";
|
|
4
|
-
import { computed, defineComponent, h } from "vue
|
|
5
|
-
import { NuxtLinkRichTextNode } from "./NuxtLinkRichTextNode.
|
|
4
|
+
import { computed, defineComponent, h } from "vue";
|
|
5
|
+
import { NuxtLinkRichTextNode } from "./NuxtLinkRichTextNode.js";
|
|
6
6
|
export function getResolveVueRichTextRenderer(resolveRichTextRenderer) {
|
|
7
7
|
return (node) => {
|
|
8
8
|
let result = void 0;
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
EMPTY_COMPOSITION
|
|
5
5
|
} from "@uniformdev/canvas";
|
|
6
6
|
import { globalCompositionEnhancerInjectionKey } from "@uniformdev/canvas-vue";
|
|
7
|
-
import { provide } from "vue
|
|
7
|
+
import { provide } from "vue";
|
|
8
8
|
import { useAsyncData, useNuxtApp } from "#app";
|
|
9
9
|
export const useUniformComposition = async (options) => {
|
|
10
10
|
const { enhance = (c) => c, ...parameters } = options;
|
package/dist/types.d.mts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
+
import type { NuxtModule } from '@nuxt/schema'
|
|
1
2
|
|
|
2
|
-
import type {
|
|
3
|
+
import type { default as Module } from './module.js'
|
|
3
4
|
|
|
5
|
+
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export type { UniformModuleOptions, default } from './module.js'
|
|
7
|
+
export { type UniformModuleOptions, default } from './module.js'
|
package/dist/types.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
+
import type { NuxtModule } from '@nuxt/schema'
|
|
1
2
|
|
|
2
|
-
import type {
|
|
3
|
+
import type { default as Module } from './module'
|
|
3
4
|
|
|
5
|
+
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export type { UniformModuleOptions, default } from './module'
|
|
7
|
+
export { type UniformModuleOptions, default } from './module'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/uniform-nuxt",
|
|
3
|
-
"version": "19.199.
|
|
3
|
+
"version": "19.199.1-alpha.10+7f62130189",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -23,26 +23,25 @@
|
|
|
23
23
|
"document": "api-extractor run --local"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@nuxt/kit": "3.
|
|
27
|
-
"@uniformdev/canvas": "19.199.
|
|
28
|
-
"@uniformdev/canvas-vue": "19.199.
|
|
29
|
-
"@uniformdev/context": "19.199.
|
|
30
|
-
"@uniformdev/context-vue": "19.199.
|
|
31
|
-
"@uniformdev/richtext": "19.199.
|
|
32
|
-
"vue-demi": "^0.14.6"
|
|
26
|
+
"@nuxt/kit": "3.13.2",
|
|
27
|
+
"@uniformdev/canvas": "19.199.1-alpha.10+7f62130189",
|
|
28
|
+
"@uniformdev/canvas-vue": "19.199.1-alpha.10+7f62130189",
|
|
29
|
+
"@uniformdev/context": "19.199.1-alpha.10+7f62130189",
|
|
30
|
+
"@uniformdev/context-vue": "19.199.1-alpha.10+7f62130189",
|
|
31
|
+
"@uniformdev/richtext": "19.199.1-alpha.10+7f62130189"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
|
-
"@nuxt/module-builder": "0.
|
|
36
|
-
"@nuxt/schema": "3.
|
|
34
|
+
"@nuxt/module-builder": "0.8.4",
|
|
35
|
+
"@nuxt/schema": "3.13.2",
|
|
37
36
|
"@nuxtjs/eslint-config-typescript": "12.1.0",
|
|
38
37
|
"esbuild": "0.19.11",
|
|
39
38
|
"eslint": "9.9.0",
|
|
40
|
-
"nuxt": "3.
|
|
41
|
-
"vue": "3.
|
|
42
|
-
"vue-router": "4.
|
|
39
|
+
"nuxt": "3.13.2",
|
|
40
|
+
"vue": "3.5.12",
|
|
41
|
+
"vue-router": "4.4.5"
|
|
43
42
|
},
|
|
44
43
|
"publishConfig": {
|
|
45
44
|
"access": "public"
|
|
46
45
|
},
|
|
47
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "7f62130189d43f7ecaaed0a41c929e5c166860d2"
|
|
48
47
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|