@pepperdash/mobile-control-react-app-core 1.20.6 → 1.20.8
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 +1124 -1064
- 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/dist/utils/WebsocketProvider.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/store/ui/uiSelectors.d.ts.map +0 -1
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import { RootState } from 'src/lib';
|
|
2
|
+
export declare const selectModalVisibility: (modalType: string) => ((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
|
+
}) => boolean) & {
|
|
9
|
+
clearCache: () => void;
|
|
10
|
+
resultsCount: () => number;
|
|
11
|
+
resetResultsCount: () => void;
|
|
12
|
+
} & {
|
|
13
|
+
resultFunc: (resultFuncArgs_0: import("src/lib").UiConfigState) => boolean;
|
|
14
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("src/lib").UiConfigState) => boolean) & {
|
|
15
|
+
clearCache: () => void;
|
|
16
|
+
resultsCount: () => number;
|
|
17
|
+
resetResultsCount: () => void;
|
|
18
|
+
};
|
|
19
|
+
lastResult: () => boolean;
|
|
20
|
+
dependencies: [(state: RootState) => import("src/lib").UiConfigState];
|
|
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 selectCurrentPopoverIdForGroup: (popoverGroup: 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
|
+
}) => string | undefined) & {
|
|
36
|
+
clearCache: () => void;
|
|
37
|
+
resultsCount: () => number;
|
|
38
|
+
resetResultsCount: () => void;
|
|
39
|
+
} & {
|
|
40
|
+
resultFunc: (resultFuncArgs_0: import("src/lib").UiConfigState) => string | undefined;
|
|
41
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("src/lib").UiConfigState) => string | undefined) & {
|
|
42
|
+
clearCache: () => void;
|
|
43
|
+
resultsCount: () => number;
|
|
44
|
+
resetResultsCount: () => void;
|
|
45
|
+
};
|
|
46
|
+
lastResult: () => string | undefined;
|
|
47
|
+
dependencies: [(state: RootState) => import("src/lib").UiConfigState];
|
|
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 selectShowPopoverById: (popoverGroup: string, popoverId: string) => ((state: {
|
|
57
|
+
appConfig: import("../appConfig/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
|
+
}) => boolean) & {
|
|
63
|
+
clearCache: () => void;
|
|
64
|
+
resultsCount: () => number;
|
|
65
|
+
resetResultsCount: () => void;
|
|
66
|
+
} & {
|
|
67
|
+
resultFunc: (resultFuncArgs_0: import("src/lib").UiConfigState) => boolean;
|
|
68
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("src/lib").UiConfigState) => boolean) & {
|
|
69
|
+
clearCache: () => void;
|
|
70
|
+
resultsCount: () => number;
|
|
71
|
+
resetResultsCount: () => void;
|
|
72
|
+
};
|
|
73
|
+
lastResult: () => boolean;
|
|
74
|
+
dependencies: [(state: RootState) => import("src/lib").UiConfigState];
|
|
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 selectError: ((state: {
|
|
84
|
+
appConfig: import("../appConfig/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
|
+
}) => string) & {
|
|
90
|
+
clearCache: () => void;
|
|
91
|
+
resultsCount: () => number;
|
|
92
|
+
resetResultsCount: () => void;
|
|
93
|
+
} & {
|
|
94
|
+
resultFunc: (resultFuncArgs_0: import("src/lib").UiConfigState) => string;
|
|
95
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("src/lib").UiConfigState) => string) & {
|
|
96
|
+
clearCache: () => void;
|
|
97
|
+
resultsCount: () => number;
|
|
98
|
+
resetResultsCount: () => void;
|
|
99
|
+
};
|
|
100
|
+
lastResult: () => string;
|
|
101
|
+
dependencies: [(state: RootState) => import("src/lib").UiConfigState];
|
|
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
|
+
};
|
|
110
|
+
export declare const selectShowReconnect: ((state: {
|
|
111
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
112
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
113
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
114
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
115
|
+
ui: import("src/lib").UiConfigState;
|
|
116
|
+
}) => boolean) & {
|
|
117
|
+
clearCache: () => void;
|
|
118
|
+
resultsCount: () => number;
|
|
119
|
+
resetResultsCount: () => void;
|
|
120
|
+
} & {
|
|
121
|
+
resultFunc: (resultFuncArgs_0: import("src/lib").UiConfigState) => boolean;
|
|
122
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("src/lib").UiConfigState) => boolean) & {
|
|
123
|
+
clearCache: () => void;
|
|
124
|
+
resultsCount: () => number;
|
|
125
|
+
resetResultsCount: () => void;
|
|
126
|
+
};
|
|
127
|
+
lastResult: () => boolean;
|
|
128
|
+
dependencies: [(state: RootState) => import("src/lib").UiConfigState];
|
|
129
|
+
recomputations: () => number;
|
|
130
|
+
resetRecomputations: () => void;
|
|
131
|
+
dependencyRecomputations: () => number;
|
|
132
|
+
resetDependencyRecomputations: () => void;
|
|
133
|
+
} & {
|
|
134
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
135
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
136
|
+
};
|
|
137
|
+
export declare const selectTheme: ((state: {
|
|
138
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
139
|
+
runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
|
|
140
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
141
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
142
|
+
ui: import("src/lib").UiConfigState;
|
|
143
|
+
}) => string | undefined) & {
|
|
144
|
+
clearCache: () => void;
|
|
145
|
+
resultsCount: () => number;
|
|
146
|
+
resetResultsCount: () => void;
|
|
147
|
+
} & {
|
|
148
|
+
resultFunc: (resultFuncArgs_0: import("src/lib").UiConfigState) => string | undefined;
|
|
149
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("src/lib").UiConfigState) => string | undefined) & {
|
|
150
|
+
clearCache: () => void;
|
|
151
|
+
resultsCount: () => number;
|
|
152
|
+
resetResultsCount: () => void;
|
|
153
|
+
};
|
|
154
|
+
lastResult: () => string | undefined;
|
|
155
|
+
dependencies: [(state: RootState) => import("src/lib").UiConfigState];
|
|
156
|
+
recomputations: () => number;
|
|
157
|
+
resetRecomputations: () => void;
|
|
158
|
+
dependencyRecomputations: () => number;
|
|
159
|
+
resetDependencyRecomputations: () => void;
|
|
160
|
+
} & {
|
|
161
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
162
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
163
|
+
};
|
|
164
|
+
//# sourceMappingURL=ui.selectors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ui.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/ui/ui.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAKpC,eAAO,MAAM,qBAAqB,cAAe,MAAM;;;;;;;;;;;;;;;;;;2BAF/B,SAAS;;;;;;;;CAKhC,CAAC;AAEF,eAAO,MAAM,8BAA8B,iBAAkB,MAAM;;;;;;;;;;;;;;;;;;2BAP3C,SAAS;;;;;;;;CAkBhC,CAAC;AAEF,eAAO,MAAM,qBAAqB,iBAAkB,MAAM,aAAa,MAAM;;;;;;;;;;;;;;;;;;2BApBrD,SAAS;;;;;;;;CAuBhC,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;2BAzBA,SAAS;;;;;;;;CA4BhC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;2BA9BR,SAAS;;;;;;;;CAiChC,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;2BAnCA,SAAS;;;;;;;;CAsChC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WebsocketProvider.d.ts","sourceRoot":"","sources":["../../src/lib/utils/WebsocketProvider.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAA4C,MAAM,OAAO,CAAC;AAuB5E;;;;GAIG;AACH,QAAA,MAAM,iBAAiB;cAA8B,SAAS;
|
|
1
|
+
{"version":3,"file":"WebsocketProvider.d.ts","sourceRoot":"","sources":["../../src/lib/utils/WebsocketProvider.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAA4C,MAAM,OAAO,CAAC;AAuB5E;;;;GAIG;AACH,QAAA,MAAM,iBAAiB;cAA8B,SAAS;6CA4V7D,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"uiSelectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/ui/uiSelectors.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,eAAiF,CAAC;AAEnH,eAAO,MAAM,wBAAwB,eAAqF,CAAC;AAE3H,eAAO,MAAM,YAAY,cAAe,MAAM,YAAmE,CAAC;AAElH,eAAO,MAAM,8BAA8B,iBAAkB,MAAM,uBAQjE,CAAC;AAEH,eAAO,MAAM,kBAAkB,iBAAkB,MAAM,aAAa,MAAM,YAAqF,CAAC;AAEhK,eAAO,MAAM,QAAQ,cAAkD,CAAC;AAExE,eAAO,MAAM,gBAAgB,eAA0D,CAAC;AAExF,eAAO,MAAM,QAAQ,0BAAkD,CAAC"}
|