5htp-core 0.2.8-2 → 0.2.8-3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "5htp-core",
3
3
  "description": "Convenient TypeScript framework designed for Performance and Productivity.",
4
- "version": "0.2.8-2",
4
+ "version": "0.2.8-3",
5
5
  "author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
6
6
  "repository": "git://github.com/gaetanlegac/5htp-core.git",
7
7
  "license": "MIT",
@@ -65,6 +65,7 @@ export default ({
65
65
  setValue( !value );
66
66
  }}
67
67
  checked={value}
68
+ {...fieldProps}
68
69
  />
69
70
 
70
71
  <label htmlFor={id} class="col-1 txt-left">
@@ -94,8 +94,7 @@ export default abstract class Application extends Service<Config, Hooks, /* TODO
94
94
 
95
95
  public constructor() {
96
96
 
97
- // @ts-ignore: can't pass this to super
98
- super();
97
+ super({}, {});
99
98
 
100
99
  // Gestion crash
101
100
  process.on('unhandledRejection', (error: any, promise: any) => {