piral-vue 1.9.2-beta.8358 → 1.9.2
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/lib/mount.d.ts +1 -1
- package/package.json +5 -5
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<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue>, object, object, object, Record<never, any>, {}, import("vue
|
|
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<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue>, object, object, object, Record<never, any>, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue/types/v3-component-public-instance").OptionTypesType<{}, {}, {}, {}, {}, {}>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-vue",
|
|
3
|
-
"version": "1.9.2
|
|
3
|
+
"version": "1.9.2",
|
|
4
4
|
"description": "Plugin for integrating Vue@2 components in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"exports": {
|
|
24
24
|
".": "./lib/index.js",
|
|
25
25
|
"./lib/*": {
|
|
26
|
-
"
|
|
27
|
-
"
|
|
26
|
+
"types": "./lib/*.d.ts",
|
|
27
|
+
"import": "./lib/*"
|
|
28
28
|
},
|
|
29
29
|
"./convert": "./convert.js",
|
|
30
30
|
"./extend-webpack": "./extend-webpack.js",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"piral-core": "1.9.2
|
|
57
|
+
"piral-core": "^1.9.2",
|
|
58
58
|
"vue": "^2.6.10"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "3adb702cbb788889a05a30d2a7ee657ad713a468"
|
|
61
61
|
}
|