piral-hyperapp 0.15.12-beta.5535 → 0.15.12-beta.5538
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.js +1 -1
- package/esm/converter.d.ts +1 -1
- package/lib/converter.d.ts +1 -1
- package/package.json +3 -3
package/convert.js
CHANGED
|
@@ -8,7 +8,7 @@ export function createHyperappConverter() {
|
|
|
8
8
|
var Extension = convert.Extension;
|
|
9
9
|
var from = function (root, state, actions) { return ({
|
|
10
10
|
type: 'html',
|
|
11
|
-
component: convert(root, state, actions)
|
|
11
|
+
component: convert(root, state, actions),
|
|
12
12
|
}); };
|
|
13
13
|
return { from: from, Extension: Extension };
|
|
14
14
|
}
|
package/esm/converter.d.ts
CHANGED
|
@@ -9,5 +9,5 @@ export interface HyperappConverterOptions {
|
|
|
9
9
|
}
|
|
10
10
|
export declare function createConverter(config?: HyperappConverterOptions): {
|
|
11
11
|
<TProps extends BaseComponentProps>(root: Component<TProps, {}, {}>, state: any, actions: any): ForeignComponent<TProps>;
|
|
12
|
-
Extension: Component<import("piral-core").ExtensionSlotProps
|
|
12
|
+
Extension: Component<import("piral-core").ExtensionSlotProps, {}, {}>;
|
|
13
13
|
};
|
package/lib/converter.d.ts
CHANGED
|
@@ -9,5 +9,5 @@ export interface HyperappConverterOptions {
|
|
|
9
9
|
}
|
|
10
10
|
export declare function createConverter(config?: HyperappConverterOptions): {
|
|
11
11
|
<TProps extends BaseComponentProps>(root: Component<TProps, {}, {}>, state: any, actions: any): ForeignComponent<TProps>;
|
|
12
|
-
Extension: Component<import("piral-core").ExtensionSlotProps
|
|
12
|
+
Extension: Component<import("piral-core").ExtensionSlotProps, {}, {}>;
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-hyperapp",
|
|
3
|
-
"version": "0.15.12-beta.
|
|
3
|
+
"version": "0.15.12-beta.5538",
|
|
4
4
|
"description": "Plugin for integrating hyperapp components in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"hyperapp": "^1.2.10",
|
|
68
|
-
"piral-core": "0.15.12-beta.
|
|
68
|
+
"piral-core": "0.15.12-beta.5538"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"hyperapp": "^1.0.0"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "edf6a2b34e37e7d280a949f0955105e07ac01542"
|
|
74
74
|
}
|