hyperapp-is 0.1.19 → 0.1.21

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/README.md CHANGED
@@ -632,38 +632,34 @@ export const NavigatorFinder = function <S> (
632
632
 
633
633
  vnode
634
634
  ```html
635
- <div>
636
- <div class="main">
637
- <section>
638
- <div class="toolBar">
639
- <input type="text" />
640
- <button type="button">FILTER</button>
641
- </div>
642
-
643
- <div class="parentItems">
644
- <ol>
645
- <li>parent</li>
646
- </ol>
647
- <button type="button">COPY</button>
648
- </div>
649
-
650
- <div class="items">
651
- <table>
652
- <thead>
653
- <tr>
654
- <th>ヘッダー</th>
655
- <th class="sort">ソート付きヘッダー</th>
656
- </tr>
657
- </thead>
658
- <tbody>
659
- <tr>
660
- <td class="file"><span>value</span></td>
661
- <td class="directory"><span>value</span></td>
662
- </tr>
663
- </tbody>
664
- </table>
665
- </div>
666
- </section>
635
+ <div id={id}>
636
+ <div class="toolBar">
637
+ <input type="text" />
638
+ <button type="button">FILTER</button>
639
+ </div>
640
+
641
+ <div class="parentItems">
642
+ <ol>
643
+ <li>parent</li>
644
+ </ol>
645
+ <button type="button">COPY</button>
646
+ </div>
647
+
648
+ <div class="items">
649
+ <table>
650
+ <thead>
651
+ <tr>
652
+ <th>ヘッダー</th>
653
+ <th class="sort">ソート付きヘッダー</th>
654
+ </tr>
655
+ </thead>
656
+ <tbody>
657
+ <tr>
658
+ <td class="file"><span>value</span></td>
659
+ <td class="directory"><span>value</span></td>
660
+ </tr>
661
+ </tbody>
662
+ </table>
667
663
  </div>
668
664
 
669
665
  <!-- statusBar -->
@@ -4,7 +4,7 @@ import { Keys_String, Keys_ArrayString } from "./state";
4
4
  * h 関数のラッパー
5
5
  * hが競合する可能性があるので作成した
6
6
  */
7
- export declare const el: (tag: string) => <S>(props?: {
7
+ export declare const el: <S = any>(tag: string) => (props?: {
8
8
  [key: string]: any;
9
9
  }, ...children: any[]) => VNode<S>;
10
10
  /**
@@ -261,10 +261,8 @@ export const NavigatorFinder = function (props) {
261
261
  // VNode
262
262
  // ---------- ---------- ----------
263
263
  const vnode = div({
264
- ...deleteKeys(props, "state", "currentKeys", "columns", "afterRender")
264
+ ...deleteKeys(props, "state", "currentKeys", "columns", "afterRender", "extension")
265
265
  }, div({
266
- class: "main"
267
- }, section({}, div({
268
266
  class: "toolBar"
269
267
  }, input({
270
268
  type: "text",
@@ -307,7 +305,7 @@ export const NavigatorFinder = function (props) {
307
305
  }, span({
308
306
  class: hitTest(t) ? "hit" : ""
309
307
  }, v));
310
- })))))))),
308
+ })))))),
311
309
  // statusBar
312
310
  div({ class: "statusBar" }, message));
313
311
  // ---------- ---------- ----------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hyperapp-is",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "UI foundation library for Hyperapp by is4416",
5
5
  "license": "MIT",
6
6
  "type": "module",