piral-vue 0.15.0-alpha.4345 → 0.15.0-alpha.4399
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/convert.d.ts +2 -2
- package/esm/converter.d.ts +2 -2
- package/esm/mount.d.ts +1 -1
- package/lib/converter.d.ts +2 -2
- package/lib/mount.d.ts +1 -1
- package/package.json +3 -3
package/convert.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export interface VueConverter {
|
|
|
12
12
|
}
|
|
13
13
|
export declare function createVueConverter(...params: Parameters<typeof createConverter>): {
|
|
14
14
|
from: VueConverter;
|
|
15
|
-
Extension: Component<any, any, any, any>;
|
|
15
|
+
Extension: Component<any, any, any, any, {}>;
|
|
16
16
|
};
|
|
17
|
-
declare const fromVue: VueConverter, VueExtension: Component<any, any, any, any>;
|
|
17
|
+
declare const fromVue: VueConverter, VueExtension: Component<any, any, any, any, {}>;
|
|
18
18
|
export { fromVue, VueExtension };
|
package/esm/converter.d.ts
CHANGED
|
@@ -13,6 +13,6 @@ export interface VueConverterOptions {
|
|
|
13
13
|
rootName?: string;
|
|
14
14
|
}
|
|
15
15
|
export declare function createConverter(config?: VueConverterOptions): {
|
|
16
|
-
<TProps extends BaseComponentProps>(root: Component<TProps, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps>, captured?: Record<string, any>): ForeignComponent<TProps>;
|
|
17
|
-
Extension: Component<import("piral-core").ExtensionSlotProps<string>, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps>;
|
|
16
|
+
<TProps extends BaseComponentProps>(root: Component<TProps, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps, {}>, captured?: Record<string, any>): ForeignComponent<TProps>;
|
|
17
|
+
Extension: Component<import("piral-core").ExtensionSlotProps<string>, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps, {}>;
|
|
18
18
|
};
|
package/esm/mount.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import Vue from 'vue';
|
|
2
2
|
import type { BaseComponentProps, ComponentContext } from 'piral-core';
|
|
3
3
|
export declare function register<T>(name: string, component: Vue.Component<T>): void;
|
|
4
|
-
export declare function mountVue<T extends BaseComponentProps>(el: HTMLElement, root: Vue.Component<T>, props: T, ctx: ComponentContext, captured?: Record<string, any>): import("vue/types/vue").CombinedVueInstance<Vue, object, object, object, Record<never, any
|
|
4
|
+
export declare function mountVue<T extends BaseComponentProps>(el: HTMLElement, root: Vue.Component<T>, props: T, ctx: ComponentContext, captured?: Record<string, any>): import("vue/types/vue").CombinedVueInstance<Vue, object, object, object, Record<never, any>, {}>;
|
package/lib/converter.d.ts
CHANGED
|
@@ -13,6 +13,6 @@ export interface VueConverterOptions {
|
|
|
13
13
|
rootName?: string;
|
|
14
14
|
}
|
|
15
15
|
export declare function createConverter(config?: VueConverterOptions): {
|
|
16
|
-
<TProps extends BaseComponentProps>(root: Component<TProps, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps>, captured?: Record<string, any>): ForeignComponent<TProps>;
|
|
17
|
-
Extension: Component<import("piral-core").ExtensionSlotProps<string>, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps>;
|
|
16
|
+
<TProps extends BaseComponentProps>(root: Component<TProps, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps, {}>, captured?: Record<string, any>): ForeignComponent<TProps>;
|
|
17
|
+
Extension: Component<import("piral-core").ExtensionSlotProps<string>, import("vue/types/options").DefaultMethods<never>, import("vue/types/options").DefaultComputed, import("vue/types/options").DefaultProps, {}>;
|
|
18
18
|
};
|
package/lib/mount.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import Vue from 'vue';
|
|
2
2
|
import type { BaseComponentProps, ComponentContext } from 'piral-core';
|
|
3
3
|
export declare function register<T>(name: string, component: Vue.Component<T>): void;
|
|
4
|
-
export declare function mountVue<T extends BaseComponentProps>(el: HTMLElement, root: Vue.Component<T>, props: T, ctx: ComponentContext, captured?: Record<string, any>): import("vue/types/vue").CombinedVueInstance<Vue, object, object, object, Record<never, any
|
|
4
|
+
export declare function mountVue<T extends BaseComponentProps>(el: HTMLElement, root: Vue.Component<T>, props: T, ctx: ComponentContext, captured?: Record<string, any>): import("vue/types/vue").CombinedVueInstance<Vue, object, object, object, Record<never, any>, {}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-vue",
|
|
3
|
-
"version": "0.15.0-alpha.
|
|
3
|
+
"version": "0.15.0-alpha.4399",
|
|
4
4
|
"description": "Plugin for integrating Vue@2 components in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -65,11 +65,11 @@
|
|
|
65
65
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"piral-core": "0.15.0-alpha.
|
|
68
|
+
"piral-core": "0.15.0-alpha.4399",
|
|
69
69
|
"vue": "^2.6.10"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"vue": "^2.0.0"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "34be0cac6948a92981ab4994b01b34e44462e7a0"
|
|
75
75
|
}
|