hyperapp-is 0.1.49 → 0.1.50
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/dist/hyperapp-is/core/navigator.d.ts +7 -7
- package/dist/hyperapp-is/core/state.d.ts +2 -2
- package/package.json +1 -1
- package/dist/hyperapp-is/animation/index.d.ts +0 -5
- package/dist/hyperapp-is/animation/index.js +0 -4
- package/dist/hyperapp-is/animationView/index.d.ts +0 -2
- package/dist/hyperapp-is/animationView/index.js +0 -2
- package/dist/hyperapp-is/core/index.d.ts +0 -6
- package/dist/hyperapp-is/core/index.js +0 -4
- package/dist/hyperapp-is/dom/index.d.ts +0 -2
- package/dist/hyperapp-is/dom/index.js +0 -2
|
@@ -59,13 +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<
|
|
63
|
-
export declare const icon_name: VNode<
|
|
64
|
-
export declare const icon_directory: VNode<
|
|
65
|
-
export declare const icon_file: VNode<
|
|
66
|
-
export declare const icon_trashBox: VNode<
|
|
67
|
-
export declare const icon_filter: VNode<
|
|
68
|
-
export declare const icon_copy: VNode<
|
|
62
|
+
export declare const icon_depth: VNode<S>;
|
|
63
|
+
export declare const icon_name: VNode<S>;
|
|
64
|
+
export declare const icon_directory: VNode<S>;
|
|
65
|
+
export declare const icon_file: VNode<S>;
|
|
66
|
+
export declare const icon_trashBox: VNode<S>;
|
|
67
|
+
export declare const icon_filter: VNode<S>;
|
|
68
|
+
export declare const icon_copy: VNode<S>;
|
|
69
69
|
/**
|
|
70
70
|
* 検索結果
|
|
71
71
|
*
|
|
@@ -20,8 +20,8 @@ export declare const createLocalKey: (id: string) => string;
|
|
|
20
20
|
/**
|
|
21
21
|
* ステートから、ローカルステートを取得する
|
|
22
22
|
*/
|
|
23
|
-
export declare const getLocalState: <S>(state: S, id: string, def:
|
|
23
|
+
export declare const getLocalState: <S, T>(state: S, id: string, def: T) => T;
|
|
24
24
|
/**
|
|
25
25
|
* ローカルステートを更新してステートを返す
|
|
26
26
|
*/
|
|
27
|
-
export declare const setLocalState: <S>(state: S, id: string, value:
|
|
27
|
+
export declare const setLocalState: <S, T>(state: S, id: string, value: T) => S;
|
package/package.json
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export type { InternalEffect, RAFEvent } from "./raf";
|
|
2
|
-
export type { CSSProperty } from "./properties";
|
|
3
|
-
export { RAFTask, subscription_RAFManager } from "./raf";
|
|
4
|
-
export { progress_easing } from "./easing";
|
|
5
|
-
export { createUnits, createRAFProperties, effect_RAFProperties } from "./properties";
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export type { Keys } from "./state";
|
|
2
|
-
export { getValue, setValue, getLocalState, setLocalState, createLocalKey } from "./state";
|
|
3
|
-
export type { Keys_String, Keys_ArrayString } from "./component";
|
|
4
|
-
export { el, concatAction, getClassList, deleteKeys, Route, SelectButton, OptionButton } from "./component";
|
|
5
|
-
export type { Keys_NavigatorItem, NavigatorItem, JsonEntry, NavigatorColumn } from "./navigator";
|
|
6
|
-
export { convertJsonToNavigatorItem, getParentItems, NavigatorFinder } from "./navigator";
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
// hyperapp-is / core / index.ts
|
|
2
|
-
export { getValue, setValue, getLocalState, setLocalState, createLocalKey } from "./state";
|
|
3
|
-
export { el, concatAction, getClassList, deleteKeys, Route, SelectButton, OptionButton } from "./component";
|
|
4
|
-
export { convertJsonToNavigatorItem, getParentItems, NavigatorFinder } from "./navigator";
|