hyperapp-is 0.1.17 → 0.1.19

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -364,7 +364,7 @@ Hyperapp の h 関数ラッパー。JSX と競合する場合に使用
364
364
  children の処理も同時に行っているため、本ライブラリでは VNode を作成する際に使用しています
365
365
 
366
366
  ```ts
367
- export const el = (tag: string) => <S> (
367
+ export const el = <S = any> (tag: string) => (
368
368
  props ?: { [key: string]: any },
369
369
  children?: Array
370
370
  ): VNode<S>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hyperapp-is",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "UI foundation library for Hyperapp by is4416",
5
5
  "license": "MIT",
6
6
  "type": "module",