hyperapp-is 0.1.26 → 0.1.28

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.
@@ -59,6 +59,13 @@ export declare const NavigatorFinder: <S>(props: {
59
59
  afterRender?: (state: S, localState: Record<string, any>, vnode: VNode<S>) => VNode<S>;
60
60
  [key: string]: any;
61
61
  }) => VNode<S>;
62
+ export declare const icon_depth: VNode<any>;
63
+ export declare const icon_name: VNode<any>;
64
+ export declare const icon_directory: VNode<any>;
65
+ export declare const icon_file: VNode<any>;
66
+ export declare const icon_trashBox: VNode<any>;
67
+ export declare const icon_filter: VNode<any>;
68
+ export declare const icon_copy: VNode<any>;
62
69
  /**
63
70
  * 検索結果
64
71
  *
@@ -327,7 +327,7 @@ export const NavigatorFinder = function (props) {
327
327
  // svg icon
328
328
  // ---------- ---------- ---------- ---------- ----------
329
329
  // icon_depth
330
- const icon_depth = svg({
330
+ export const icon_depth = svg({
331
331
  width: 24,
332
332
  height: 24,
333
333
  viewBox: "0 0 24 24",
@@ -360,7 +360,7 @@ const icon_depth = svg({
360
360
  d: "M6 15v-4h12v4"
361
361
  }));
362
362
  // icon_name
363
- const icon_name = svg({
363
+ export const icon_name = svg({
364
364
  width: 24,
365
365
  height: 24,
366
366
  viewBox: "0 0 24 24",
@@ -371,7 +371,7 @@ const icon_name = svg({
371
371
  strokeLinejoin: "round"
372
372
  }, path({ d: "M4 18l2-8 2 8M5 14h2" }), path({ d: "M10 10h6l-6 8h6" }), path({ d: "M20 6v12" }), path({ d: "M17 15l3 3 3-3" }));
373
373
  // icon_directory
374
- const icon_directory = svg({
374
+ export const icon_directory = svg({
375
375
  width: 24,
376
376
  height: 24,
377
377
  viewBox: "0 0 24 24",
@@ -382,7 +382,7 @@ const icon_directory = svg({
382
382
  strokeLinejoin: "round"
383
383
  }, path({ d: "M3 7h6l2 2h10v8a2 2 0 0 1-2 2H3z" }));
384
384
  // icon_file
385
- const icon_file = svg({
385
+ export const icon_file = svg({
386
386
  width: 24,
387
387
  height: 24,
388
388
  viewBox: "0 0 24 24",
@@ -393,7 +393,7 @@ const icon_file = svg({
393
393
  strokeLinejoin: "round"
394
394
  }, path({ d: "M6 2h9l5 5v15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" }), path({ d: "M14 2v6h6" }));
395
395
  // icon_trashBox
396
- const icon_trashBox = svg({
396
+ export const icon_trashBox = svg({
397
397
  viewBox: "0 0 24 24",
398
398
  width: 24,
399
399
  height: 24,
@@ -404,7 +404,7 @@ const icon_trashBox = svg({
404
404
  strokeLinejoin: "round"
405
405
  }, path({ d: "M3 6h18" }), path({ d: "M8 6V4h8v2" }), path({ d: "M6 6l1 14h10l1-14" }), path({ d: "M10 11v6" }), path({ d: "M14 11v6" }));
406
406
  // icon_filter
407
- const icon_filter = svg({
407
+ export const icon_filter = svg({
408
408
  viewBox: "0 0 24 24",
409
409
  width: 24,
410
410
  height: 24,
@@ -415,7 +415,7 @@ const icon_filter = svg({
415
415
  strokeLinejoin: "round"
416
416
  }, path({ d: "M3 5h18" }), path({ d: "M6 12h12" }), path({ d: "M10 19h4" }));
417
417
  // icon_copy
418
- const icon_copy = svg({
418
+ export const icon_copy = svg({
419
419
  viewBox: "0 0 24 24",
420
420
  width: 24,
421
421
  height: 24,
@@ -2,7 +2,7 @@ export type { Keys, Keys_String, Keys_ArrayString, Keys_Number, Keys_ArrayNumber
2
2
  export type { NavigatorItem, JsonEntry, NavigatorColumn, SearchResult } from "./core/navigator";
3
3
  export { getValue, setValue, getLocalState, setLocalState, createLocalKey } from "./core/state";
4
4
  export { el, concatAction, getClassList, deleteKeys, Route, SelectButton, OptionButton } from "./core/component";
5
- export { convertJsonToNavigatorItem, getParentItems, NavigatorFinder, NavigatorSearch } from "./core/navigator";
5
+ export { convertJsonToNavigatorItem, getParentItems, NavigatorFinder, NavigatorSearch, icon_depth, icon_name, icon_directory, icon_file, icon_trashBox, icon_filter, icon_copy } from "./core/navigator";
6
6
  export type { InternalEffect, RAFEvent } from "./animation/raf";
7
7
  export type { CSSProperty } from "./animation/properties";
8
8
  export { RAFTask, subscription_RAFManager } from "./animation/raf";
@@ -1,7 +1,7 @@
1
1
  // hyperapp-is / index.ts
2
2
  export { getValue, setValue, getLocalState, setLocalState, createLocalKey } from "./core/state";
3
3
  export { el, concatAction, getClassList, deleteKeys, Route, SelectButton, OptionButton } from "./core/component";
4
- export { convertJsonToNavigatorItem, getParentItems, NavigatorFinder, NavigatorSearch } from "./core/navigator";
4
+ export { convertJsonToNavigatorItem, getParentItems, NavigatorFinder, NavigatorSearch, icon_depth, icon_name, icon_directory, icon_file, icon_trashBox, icon_filter, icon_copy } from "./core/navigator";
5
5
  export { RAFTask, subscription_RAFManager } from "./animation/raf";
6
6
  export { progress_easing } from "./animation/easing";
7
7
  export { createUnits, createRAFProperties, effect_RAFProperties } from "./animation/properties";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hyperapp-is",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "UI foundation library for Hyperapp by is4416",
5
5
  "license": "MIT",
6
6
  "type": "module",