@pepperdash/mobile-control-react-app-core 1.20.5 → 1.20.7
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/mobile-control-react-app-core.es.js +861 -801
- package/dist/mobile-control-react-app-core.umd.js +10 -10
- package/dist/store/appConfig/appConfig.hooks.d.ts +4 -109
- package/dist/store/appConfig/appConfig.hooks.d.ts.map +1 -1
- package/dist/store/appConfig/appConfig.selectors.d.ts +109 -4
- package/dist/store/appConfig/appConfig.selectors.d.ts.map +1 -1
- package/dist/store/devices/devices.hooks.d.ts +12 -55
- package/dist/store/devices/devices.hooks.d.ts.map +1 -1
- package/dist/store/devices/devices.selectors.d.ts +55 -12
- package/dist/store/devices/devices.selectors.d.ts.map +1 -1
- package/dist/store/index.d.ts +6 -1
- package/dist/store/index.d.ts.map +1 -1
- package/dist/store/rooms/rooms.hooks.d.ts +25 -541
- package/dist/store/rooms/rooms.hooks.d.ts.map +1 -1
- package/dist/store/rooms/rooms.selectors.d.ts +664 -25
- package/dist/store/rooms/rooms.selectors.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtime.hooks.d.ts +10 -269
- package/dist/store/runtimeConfig/runtime.hooks.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtime.selectors.d.ts +269 -10
- package/dist/store/runtimeConfig/runtime.selectors.d.ts.map +1 -1
- package/dist/store/ui/{uiSelectors.d.ts → ui.hooks.d.ts} +1 -1
- package/dist/store/ui/ui.hooks.d.ts.map +1 -0
- package/dist/store/ui/ui.selectors.d.ts +164 -0
- package/dist/store/ui/ui.selectors.d.ts.map +1 -0
- package/package.json +1 -1
- package/dist/store/ui/uiSelectors.d.ts.map +0 -1
|
@@ -1,110 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
rooms: Record<string, import("src/lib").RoomState>;
|
|
6
|
-
devices: Record<string, import("src/lib").DeviceState>;
|
|
7
|
-
ui: import("src/lib").UiConfigState;
|
|
8
|
-
}) => AppConfigExtras) & {
|
|
9
|
-
clearCache: () => void;
|
|
10
|
-
resultsCount: () => number;
|
|
11
|
-
resetResultsCount: () => void;
|
|
12
|
-
} & {
|
|
13
|
-
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => AppConfigExtras;
|
|
14
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => AppConfigExtras) & {
|
|
15
|
-
clearCache: () => void;
|
|
16
|
-
resultsCount: () => number;
|
|
17
|
-
resetResultsCount: () => void;
|
|
18
|
-
};
|
|
19
|
-
lastResult: () => AppConfigExtras;
|
|
20
|
-
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
21
|
-
recomputations: () => number;
|
|
22
|
-
resetRecomputations: () => void;
|
|
23
|
-
dependencyRecomputations: () => number;
|
|
24
|
-
resetDependencyRecomputations: () => void;
|
|
25
|
-
} & {
|
|
26
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
27
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
28
|
-
};
|
|
29
|
-
export declare const selectApiPath: ((state: {
|
|
30
|
-
appConfig: import("./appConfig.slice").AppConfigState;
|
|
31
|
-
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
32
|
-
rooms: Record<string, import("src/lib").RoomState>;
|
|
33
|
-
devices: Record<string, import("src/lib").DeviceState>;
|
|
34
|
-
ui: import("src/lib").UiConfigState;
|
|
35
|
-
}) => string) & {
|
|
36
|
-
clearCache: () => void;
|
|
37
|
-
resultsCount: () => number;
|
|
38
|
-
resetResultsCount: () => void;
|
|
39
|
-
} & {
|
|
40
|
-
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string;
|
|
41
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string) & {
|
|
42
|
-
clearCache: () => void;
|
|
43
|
-
resultsCount: () => number;
|
|
44
|
-
resetResultsCount: () => void;
|
|
45
|
-
};
|
|
46
|
-
lastResult: () => string;
|
|
47
|
-
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
48
|
-
recomputations: () => number;
|
|
49
|
-
resetRecomputations: () => void;
|
|
50
|
-
dependencyRecomputations: () => number;
|
|
51
|
-
resetDependencyRecomputations: () => void;
|
|
52
|
-
} & {
|
|
53
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
54
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
55
|
-
};
|
|
56
|
-
export declare const selectLogoPath: ((state: {
|
|
57
|
-
appConfig: import("./appConfig.slice").AppConfigState;
|
|
58
|
-
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
59
|
-
rooms: Record<string, import("src/lib").RoomState>;
|
|
60
|
-
devices: Record<string, import("src/lib").DeviceState>;
|
|
61
|
-
ui: import("src/lib").UiConfigState;
|
|
62
|
-
}) => string) & {
|
|
63
|
-
clearCache: () => void;
|
|
64
|
-
resultsCount: () => number;
|
|
65
|
-
resetResultsCount: () => void;
|
|
66
|
-
} & {
|
|
67
|
-
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string;
|
|
68
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string) & {
|
|
69
|
-
clearCache: () => void;
|
|
70
|
-
resultsCount: () => number;
|
|
71
|
-
resetResultsCount: () => void;
|
|
72
|
-
};
|
|
73
|
-
lastResult: () => string;
|
|
74
|
-
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
75
|
-
recomputations: () => number;
|
|
76
|
-
resetRecomputations: () => void;
|
|
77
|
-
dependencyRecomputations: () => number;
|
|
78
|
-
resetDependencyRecomputations: () => void;
|
|
79
|
-
} & {
|
|
80
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
81
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
82
|
-
};
|
|
83
|
-
export declare const selectPartnerMetadata: ((state: {
|
|
84
|
-
appConfig: import("./appConfig.slice").AppConfigState;
|
|
85
|
-
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
86
|
-
rooms: Record<string, import("src/lib").RoomState>;
|
|
87
|
-
devices: Record<string, import("src/lib").DeviceState>;
|
|
88
|
-
ui: import("src/lib").UiConfigState;
|
|
89
|
-
}) => import("./appConfig.slice").PartnerMetadata[] | undefined) & {
|
|
90
|
-
clearCache: () => void;
|
|
91
|
-
resultsCount: () => number;
|
|
92
|
-
resetResultsCount: () => void;
|
|
93
|
-
} & {
|
|
94
|
-
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => import("./appConfig.slice").PartnerMetadata[] | undefined;
|
|
95
|
-
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => import("./appConfig.slice").PartnerMetadata[] | undefined) & {
|
|
96
|
-
clearCache: () => void;
|
|
97
|
-
resultsCount: () => number;
|
|
98
|
-
resetResultsCount: () => void;
|
|
99
|
-
};
|
|
100
|
-
lastResult: () => import("./appConfig.slice").PartnerMetadata[] | undefined;
|
|
101
|
-
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
102
|
-
recomputations: () => number;
|
|
103
|
-
resetRecomputations: () => void;
|
|
104
|
-
dependencyRecomputations: () => number;
|
|
105
|
-
resetDependencyRecomputations: () => void;
|
|
106
|
-
} & {
|
|
107
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
108
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
109
|
-
};
|
|
1
|
+
export declare const useAppConfig: () => import("../..").AppConfigExtras;
|
|
2
|
+
export declare const useApiPath: () => string;
|
|
3
|
+
export declare const useLogoPath: () => string;
|
|
4
|
+
export declare const usePartnerMetadata: () => import("./appConfig.slice").PartnerMetadata[] | undefined;
|
|
110
5
|
//# sourceMappingURL=appConfig.hooks.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appConfig.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/appConfig/appConfig.hooks.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"appConfig.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/appConfig/appConfig.hooks.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY,uCAAwC,CAAC;AAElE,eAAO,MAAM,UAAU,cAAsC,CAAC;AAE9D,eAAO,MAAM,WAAW,cAAuC,CAAC;AAEhE,eAAO,MAAM,kBAAkB,iEAA8C,CAAA"}
|
|
@@ -1,5 +1,110 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { AppConfigExtras, RootState } from 'src/lib';
|
|
2
|
+
export declare const selectAppConfig: ((state: {
|
|
3
|
+
appConfig: import("./appConfig.slice").AppConfigState;
|
|
4
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
5
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
6
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
7
|
+
ui: import("src/lib").UiConfigState;
|
|
8
|
+
}) => AppConfigExtras) & {
|
|
9
|
+
clearCache: () => void;
|
|
10
|
+
resultsCount: () => number;
|
|
11
|
+
resetResultsCount: () => void;
|
|
12
|
+
} & {
|
|
13
|
+
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => AppConfigExtras;
|
|
14
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => AppConfigExtras) & {
|
|
15
|
+
clearCache: () => void;
|
|
16
|
+
resultsCount: () => number;
|
|
17
|
+
resetResultsCount: () => void;
|
|
18
|
+
};
|
|
19
|
+
lastResult: () => AppConfigExtras;
|
|
20
|
+
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
21
|
+
recomputations: () => number;
|
|
22
|
+
resetRecomputations: () => void;
|
|
23
|
+
dependencyRecomputations: () => number;
|
|
24
|
+
resetDependencyRecomputations: () => void;
|
|
25
|
+
} & {
|
|
26
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
27
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
28
|
+
};
|
|
29
|
+
export declare const selectApiPath: ((state: {
|
|
30
|
+
appConfig: import("./appConfig.slice").AppConfigState;
|
|
31
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
32
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
33
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
34
|
+
ui: import("src/lib").UiConfigState;
|
|
35
|
+
}) => string) & {
|
|
36
|
+
clearCache: () => void;
|
|
37
|
+
resultsCount: () => number;
|
|
38
|
+
resetResultsCount: () => void;
|
|
39
|
+
} & {
|
|
40
|
+
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string;
|
|
41
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string) & {
|
|
42
|
+
clearCache: () => void;
|
|
43
|
+
resultsCount: () => number;
|
|
44
|
+
resetResultsCount: () => void;
|
|
45
|
+
};
|
|
46
|
+
lastResult: () => string;
|
|
47
|
+
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
48
|
+
recomputations: () => number;
|
|
49
|
+
resetRecomputations: () => void;
|
|
50
|
+
dependencyRecomputations: () => number;
|
|
51
|
+
resetDependencyRecomputations: () => void;
|
|
52
|
+
} & {
|
|
53
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
54
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
55
|
+
};
|
|
56
|
+
export declare const selectLogoPath: ((state: {
|
|
57
|
+
appConfig: import("./appConfig.slice").AppConfigState;
|
|
58
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
59
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
60
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
61
|
+
ui: import("src/lib").UiConfigState;
|
|
62
|
+
}) => string) & {
|
|
63
|
+
clearCache: () => void;
|
|
64
|
+
resultsCount: () => number;
|
|
65
|
+
resetResultsCount: () => void;
|
|
66
|
+
} & {
|
|
67
|
+
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string;
|
|
68
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string) & {
|
|
69
|
+
clearCache: () => void;
|
|
70
|
+
resultsCount: () => number;
|
|
71
|
+
resetResultsCount: () => void;
|
|
72
|
+
};
|
|
73
|
+
lastResult: () => string;
|
|
74
|
+
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
75
|
+
recomputations: () => number;
|
|
76
|
+
resetRecomputations: () => void;
|
|
77
|
+
dependencyRecomputations: () => number;
|
|
78
|
+
resetDependencyRecomputations: () => void;
|
|
79
|
+
} & {
|
|
80
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
81
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
82
|
+
};
|
|
83
|
+
export declare const selectPartnerMetadata: ((state: {
|
|
84
|
+
appConfig: import("./appConfig.slice").AppConfigState;
|
|
85
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
86
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
87
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
88
|
+
ui: import("src/lib").UiConfigState;
|
|
89
|
+
}) => import("./appConfig.slice").PartnerMetadata[] | undefined) & {
|
|
90
|
+
clearCache: () => void;
|
|
91
|
+
resultsCount: () => number;
|
|
92
|
+
resetResultsCount: () => void;
|
|
93
|
+
} & {
|
|
94
|
+
resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => import("./appConfig.slice").PartnerMetadata[] | undefined;
|
|
95
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => import("./appConfig.slice").PartnerMetadata[] | undefined) & {
|
|
96
|
+
clearCache: () => void;
|
|
97
|
+
resultsCount: () => number;
|
|
98
|
+
resetResultsCount: () => void;
|
|
99
|
+
};
|
|
100
|
+
lastResult: () => import("./appConfig.slice").PartnerMetadata[] | undefined;
|
|
101
|
+
dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
|
|
102
|
+
recomputations: () => number;
|
|
103
|
+
resetRecomputations: () => void;
|
|
104
|
+
dependencyRecomputations: () => number;
|
|
105
|
+
resetDependencyRecomputations: () => void;
|
|
106
|
+
} & {
|
|
107
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
108
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
109
|
+
};
|
|
5
110
|
//# sourceMappingURL=appConfig.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appConfig.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/appConfig/appConfig.selectors.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"appConfig.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/appConfig/appConfig.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAKrD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;2BAFG,SAAS;;;;;;;;CAKvC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;2BAPK,SAAS;;;;;;;;CAUvC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;2BAZI,SAAS;;;;;;;;CAevC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;2BAjBH,SAAS;;;;;;;;CAoBvC,CAAC"}
|
|
@@ -1,56 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
resultFunc: (resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState;
|
|
14
|
-
memoizedResultFunc: ((resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState) & {
|
|
15
|
-
clearCache: () => void;
|
|
16
|
-
resultsCount: () => number;
|
|
17
|
-
resetResultsCount: () => void;
|
|
18
|
-
};
|
|
19
|
-
lastResult: () => import("src/lib").DeviceState;
|
|
20
|
-
dependencies: [(state: RootState) => Record<string, import("src/lib").DeviceState>];
|
|
21
|
-
recomputations: () => number;
|
|
22
|
-
resetRecomputations: () => void;
|
|
23
|
-
dependencyRecomputations: () => number;
|
|
24
|
-
resetDependencyRecomputations: () => void;
|
|
25
|
-
} & {
|
|
26
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
27
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
28
|
-
};
|
|
29
|
-
export declare const selectDeviceByKey: (deviceKey: string) => ((state: {
|
|
30
|
-
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
31
|
-
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
32
|
-
rooms: Record<string, import("src/lib").RoomState>;
|
|
33
|
-
devices: Record<string, import("src/lib").DeviceState>;
|
|
34
|
-
ui: import("src/lib").UiConfigState;
|
|
35
|
-
}) => import("src/lib").DeviceState | undefined) & {
|
|
36
|
-
clearCache: () => void;
|
|
37
|
-
resultsCount: () => number;
|
|
38
|
-
resetResultsCount: () => void;
|
|
39
|
-
} & {
|
|
40
|
-
resultFunc: (resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState | undefined;
|
|
41
|
-
memoizedResultFunc: ((resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState | undefined) & {
|
|
42
|
-
clearCache: () => void;
|
|
43
|
-
resultsCount: () => number;
|
|
44
|
-
resetResultsCount: () => void;
|
|
45
|
-
};
|
|
46
|
-
lastResult: () => import("src/lib").DeviceState | undefined;
|
|
47
|
-
dependencies: [(state: RootState) => Record<string, import("src/lib").DeviceState>];
|
|
48
|
-
recomputations: () => number;
|
|
49
|
-
resetRecomputations: () => void;
|
|
50
|
-
dependencyRecomputations: () => number;
|
|
51
|
-
resetDependencyRecomputations: () => void;
|
|
52
|
-
} & {
|
|
53
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
54
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
55
|
-
};
|
|
1
|
+
import { DeviceState } from 'src/lib';
|
|
2
|
+
/**
|
|
3
|
+
* Selector for all devices
|
|
4
|
+
* @returns Record<string, DeviceState>
|
|
5
|
+
*/
|
|
6
|
+
export declare const useGetAllDevices: () => Record<string, DeviceState>;
|
|
7
|
+
/**
|
|
8
|
+
* Selector for a single device
|
|
9
|
+
* @param deviceKey
|
|
10
|
+
* @returns DeviceState or undefined
|
|
11
|
+
*/
|
|
12
|
+
export declare function useGetDevice<T extends DeviceState = DeviceState>(deviceKey: string): T | undefined;
|
|
56
13
|
//# sourceMappingURL=devices.hooks.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devices.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.hooks.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"devices.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAKtC;;;GAGG;AACH,eAAO,MAAM,gBAAgB,mCAE5B,CAAA;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,CAAC,SAAS,WAAW,GAAG,WAAW,EAAE,SAAS,EAAE,MAAM,GAAG,CAAC,GAAG,SAAS,CAElG"}
|
|
@@ -1,13 +1,56 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
import { RootState } from 'src/lib';
|
|
2
|
+
export declare const selectAllDevices: ((state: {
|
|
3
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
4
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
5
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
6
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
7
|
+
ui: import("src/lib").UiConfigState;
|
|
8
|
+
}) => Record<string, import("src/lib").DeviceState>) & {
|
|
9
|
+
clearCache: () => void;
|
|
10
|
+
resultsCount: () => number;
|
|
11
|
+
resetResultsCount: () => void;
|
|
12
|
+
} & {
|
|
13
|
+
resultFunc: (resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => Record<string, import("src/lib").DeviceState>;
|
|
14
|
+
memoizedResultFunc: ((resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => Record<string, import("src/lib").DeviceState>) & {
|
|
15
|
+
clearCache: () => void;
|
|
16
|
+
resultsCount: () => number;
|
|
17
|
+
resetResultsCount: () => void;
|
|
18
|
+
};
|
|
19
|
+
lastResult: () => Record<string, import("src/lib").DeviceState>;
|
|
20
|
+
dependencies: [(state: RootState) => Record<string, import("src/lib").DeviceState>];
|
|
21
|
+
recomputations: () => number;
|
|
22
|
+
resetRecomputations: () => void;
|
|
23
|
+
dependencyRecomputations: () => number;
|
|
24
|
+
resetDependencyRecomputations: () => void;
|
|
25
|
+
} & {
|
|
26
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
27
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
28
|
+
};
|
|
29
|
+
export declare const selectDeviceByKey: (deviceKey: string) => ((state: {
|
|
30
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
31
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
32
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
33
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
34
|
+
ui: import("src/lib").UiConfigState;
|
|
35
|
+
}) => import("src/lib").DeviceState | undefined) & {
|
|
36
|
+
clearCache: () => void;
|
|
37
|
+
resultsCount: () => number;
|
|
38
|
+
resetResultsCount: () => void;
|
|
39
|
+
} & {
|
|
40
|
+
resultFunc: (resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState | undefined;
|
|
41
|
+
memoizedResultFunc: ((resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState | undefined) & {
|
|
42
|
+
clearCache: () => void;
|
|
43
|
+
resultsCount: () => number;
|
|
44
|
+
resetResultsCount: () => void;
|
|
45
|
+
};
|
|
46
|
+
lastResult: () => import("src/lib").DeviceState | undefined;
|
|
47
|
+
dependencies: [(state: RootState) => Record<string, import("src/lib").DeviceState>];
|
|
48
|
+
recomputations: () => number;
|
|
49
|
+
resetRecomputations: () => void;
|
|
50
|
+
dependencyRecomputations: () => number;
|
|
51
|
+
resetDependencyRecomputations: () => void;
|
|
52
|
+
} & {
|
|
53
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
54
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
55
|
+
};
|
|
13
56
|
//# sourceMappingURL=devices.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devices.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.selectors.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"devices.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAKpC,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;2BAFM,SAAS;;;;;;;;CAK3C,CAAC;AAEF,eAAO,MAAM,iBAAiB,cAAe,MAAM;;;;;;;;;;;;;;;;;;2BAPhB,SAAS;;;;;;;;CAU3C,CAAC"}
|
package/dist/store/index.d.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
export * from './appConfig/appConfig.hooks';
|
|
1
2
|
export * from './appConfig/appConfig.selectors';
|
|
3
|
+
export * from './devices/devices.hooks';
|
|
2
4
|
export * from './devices/devices.selectors';
|
|
5
|
+
export * from './rooms/rooms.hooks';
|
|
3
6
|
export * from './rooms/rooms.selectors';
|
|
7
|
+
export * from './runtimeConfig/runtime.hooks';
|
|
4
8
|
export * from './runtimeConfig/runtime.selectors';
|
|
5
|
-
export * from './ui/
|
|
9
|
+
export * from './ui/ui.hooks';
|
|
10
|
+
export * from './ui/ui.selectors';
|
|
6
11
|
export * from './hooks';
|
|
7
12
|
export * from './ui/ui.slice';
|
|
8
13
|
export * from './store';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/store/index.ts"],"names":[],"mappings":"AAEA,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,yBAAyB,CAAC;AACxC,cAAc,mCAAmC,CAAC;AAClD,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/store/index.ts"],"names":[],"mappings":"AAEA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAChD,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mCAAmC,CAAC;AAClD,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAElC,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAE9B,cAAc,SAAS,CAAC"}
|