piral-vue-3 0.15.12-beta.5535 → 0.15.12-beta.5541

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 CHANGED
@@ -12,7 +12,7 @@ export interface Vue3Converter {
12
12
  }
13
13
  export declare function createVue3Converter(...params: Parameters<typeof createConverter>): {
14
14
  from: Vue3Converter;
15
- Extension: Component<any, any, any, any, any>;
15
+ Extension: Component<any>;
16
16
  };
17
- declare const fromVue3: Vue3Converter, Vue3Extension: Component<any, any, any, any, any>;
17
+ declare const fromVue3: Vue3Converter, Vue3Extension: Component<any>;
18
18
  export { fromVue3, Vue3Extension };
package/convert.js CHANGED
@@ -8,7 +8,7 @@ export function createVue3Converter() {
8
8
  var Extension = convert.Extension;
9
9
  var from = function (root, captured) { return ({
10
10
  type: 'html',
11
- component: convert(root, captured)
11
+ component: convert(root, captured),
12
12
  }); };
13
13
  return { from: from, Extension: Extension };
14
14
  }
@@ -13,6 +13,6 @@ export interface Vue3ConverterOptions {
13
13
  rootName?: string;
14
14
  }
15
15
  export declare function createConverter(config?: Vue3ConverterOptions): {
16
- <TProps extends BaseComponentProps>(root: Component<TProps, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>, captured?: Record<string, any>): ForeignComponent<TProps>;
17
- Extension: Component<import("piral-core").ExtensionSlotProps<string>, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
16
+ <TProps extends BaseComponentProps>(root: Component<TProps>, captured?: Record<string, any>): ForeignComponent<TProps>;
17
+ Extension: Component<import("piral-core").ExtensionSlotProps>;
18
18
  };
@@ -13,6 +13,6 @@ export interface Vue3ConverterOptions {
13
13
  rootName?: string;
14
14
  }
15
15
  export declare function createConverter(config?: Vue3ConverterOptions): {
16
- <TProps extends BaseComponentProps>(root: Component<TProps, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>, captured?: Record<string, any>): ForeignComponent<TProps>;
17
- Extension: Component<import("piral-core").ExtensionSlotProps<string>, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
16
+ <TProps extends BaseComponentProps>(root: Component<TProps>, captured?: Record<string, any>): ForeignComponent<TProps>;
17
+ Extension: Component<import("piral-core").ExtensionSlotProps>;
18
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-vue-3",
3
- "version": "0.15.12-beta.5535",
3
+ "version": "0.15.12-beta.5541",
4
4
  "description": "Plugin for integrating Vue@3 components in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -69,11 +69,11 @@
69
69
  "test": "echo \"Error: run tests from root\" && exit 1"
70
70
  },
71
71
  "devDependencies": {
72
- "piral-core": "0.15.12-beta.5535",
72
+ "piral-core": "0.15.12-beta.5541",
73
73
  "vue": "^3.0.0"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "vue": "^3.0.0"
77
77
  },
78
- "gitHead": "6decbca12cb26efb2b2b4fdec3d692eea1420cdb"
78
+ "gitHead": "9006ea1da868b2647caf6c142af29f568ae76e4a"
79
79
  }