piral-million 1.8.0-beta.7544 → 1.8.0-beta.7655

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 MillionConverter {
12
12
  }
13
13
  export declare function createMillionConverter(...params: Parameters<typeof createConverter>): {
14
14
  from: MillionConverter;
15
- Extension: (props: any) => any;
15
+ Extension: (props: import("piral-core").ExtensionSlotProps) => import("million").VElement;
16
16
  };
17
- declare const fromMillion: MillionConverter, MillionExtension: (props: any) => any;
17
+ declare const fromMillion: MillionConverter, MillionExtension: (props: import("piral-core").ExtensionSlotProps) => import("million").VElement;
18
18
  export { fromMillion, MillionExtension };
@@ -3,5 +3,5 @@ export interface MillionConverterOptions {
3
3
  }
4
4
  export declare function createConverter(config?: MillionConverterOptions): {
5
5
  <TProps extends BaseComponentProps>(root: any): ForeignComponent<TProps>;
6
- Extension: (props: import("piral-core").ExtensionSlotProps) => import("million/dist/types-9663cfda").a;
6
+ Extension: (props: import("piral-core").ExtensionSlotProps) => import("million").VElement;
7
7
  };
@@ -1,2 +1,2 @@
1
1
  import type { ExtensionSlotProps } from 'piral-core';
2
- export declare const Extension: (props: ExtensionSlotProps) => import("million/dist/types-9663cfda").a;
2
+ export declare const Extension: (props: ExtensionSlotProps) => import("million").VElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-million",
3
- "version": "1.8.0-beta.7544",
3
+ "version": "1.8.0-beta.7655",
4
4
  "description": "Plugin for integrating Million components in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "million": "^1.12.0",
55
- "piral-core": "1.8.0-beta.7544"
55
+ "piral-core": "1.8.0-beta.7655"
56
56
  },
57
- "gitHead": "007e0558e140cf11ba91b5f30d991ed593c18b60"
57
+ "gitHead": "68e1232fe36c56cf7edaa546389bc635693907bf"
58
58
  }