piral-inferno 0.14.20-beta.4067 → 0.14.21-beta.4078

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/esm/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { ForeignComponent, ExtensionSlotProps } from 'piral-core';
2
- import { Component, ComponentType } from 'inferno';
1
+ import type { ForeignComponent, ExtensionSlotProps } from 'piral-core';
2
+ import type { Component, ComponentType } from 'inferno';
3
3
  declare module 'piral-core/lib/types/custom' {
4
4
  interface PiletCustomApi extends PiletInfernoApi {
5
5
  }
package/lib/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { ForeignComponent, ExtensionSlotProps } from 'piral-core';
2
- import { Component, ComponentType } from 'inferno';
1
+ import type { ForeignComponent, ExtensionSlotProps } from 'piral-core';
2
+ import type { Component, ComponentType } from 'inferno';
3
3
  declare module 'piral-core/lib/types/custom' {
4
4
  interface PiletCustomApi extends PiletInfernoApi {
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-inferno",
3
- "version": "0.14.20-beta.4067",
3
+ "version": "0.14.21-beta.4078",
4
4
  "description": "Plugin for integrating Inferno components in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -45,12 +45,12 @@
45
45
  "devDependencies": {
46
46
  "inferno": "^7.3.2",
47
47
  "inferno-create-element": "^7.3.2",
48
- "piral-core": "0.14.20-beta.4067"
48
+ "piral-core": "0.14.21-beta.4078"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "inferno": "^7.0.0",
52
52
  "inferno-create-element": "^7.0.0",
53
53
  "piral-core": "0.14.x"
54
54
  },
55
- "gitHead": "5b43da5b2d6fab54ddc757fc76e34a603e3d6b0d"
55
+ "gitHead": "d749c0bccec08ba46738559a398f276d4adff221"
56
56
  }
package/src/types.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { ForeignComponent, ExtensionSlotProps } from 'piral-core';
2
- import { Component, ComponentType } from 'inferno';
1
+ import type { ForeignComponent, ExtensionSlotProps } from 'piral-core';
2
+ import type { Component, ComponentType } from 'inferno';
3
3
 
4
4
  declare module 'piral-core/lib/types/custom' {
5
5
  interface PiletCustomApi extends PiletInfernoApi {}