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="
|
|
637
|
-
<
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
<
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
<
|
|
651
|
-
<
|
|
652
|
-
<
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
<
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
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) =>
|
|
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
|
// ---------- ---------- ----------
|