@sprucelabs/heartwood-view-controllers 121.2.7 → 121.2.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.
|
@@ -7,15 +7,15 @@ export default class ViewControllerFactory {
|
|
|
7
7
|
protected log?: Log;
|
|
8
8
|
protected plugins: ViewControllerPlugins;
|
|
9
9
|
protected toastHandler: ToastHandler;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
10
|
+
protected controllerMap: Record<string, any>;
|
|
11
|
+
protected renderInDialogHandler: RenderInDialogHandler;
|
|
12
|
+
protected confirmHandler: ConfirmHandler;
|
|
13
|
+
protected voteHandler: VoteHandler;
|
|
14
|
+
protected device: Device;
|
|
15
|
+
protected dates: DateUtil;
|
|
16
|
+
protected maps: MapUtil;
|
|
17
|
+
protected AppMap: Record<string, AppControllerConstructor>;
|
|
18
|
+
protected renderLockScreenHandler: RenderLockScreenHandler;
|
|
19
19
|
constructor(options: ViewControllerFactoryConstructorOptions);
|
|
20
20
|
setRenderInDialogHandler(handler: RenderInDialogHandler): void;
|
|
21
21
|
setConfirmHandler(handler: ConfirmHandler): void;
|
|
@@ -7,15 +7,15 @@ export default class ViewControllerFactory {
|
|
|
7
7
|
protected log?: Log;
|
|
8
8
|
protected plugins: ViewControllerPlugins;
|
|
9
9
|
protected toastHandler: ToastHandler;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
10
|
+
protected controllerMap: Record<string, any>;
|
|
11
|
+
protected renderInDialogHandler: RenderInDialogHandler;
|
|
12
|
+
protected confirmHandler: ConfirmHandler;
|
|
13
|
+
protected voteHandler: VoteHandler;
|
|
14
|
+
protected device: Device;
|
|
15
|
+
protected dates: DateUtil;
|
|
16
|
+
protected maps: MapUtil;
|
|
17
|
+
protected AppMap: Record<string, AppControllerConstructor>;
|
|
18
|
+
protected renderLockScreenHandler: RenderLockScreenHandler;
|
|
19
19
|
constructor(options: ViewControllerFactoryConstructorOptions);
|
|
20
20
|
setRenderInDialogHandler(handler: RenderInDialogHandler): void;
|
|
21
21
|
setConfirmHandler(handler: ConfirmHandler): void;
|
package/package.json
CHANGED