@sprucelabs/heartwood-view-controllers 111.1.28 → 111.1.29
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.
|
@@ -28,7 +28,7 @@ export default abstract class AbstractViewController<ViewModel extends Record<st
|
|
|
28
28
|
* @deprecated this.getVcFactory() -> this.views()
|
|
29
29
|
*/
|
|
30
30
|
protected getVcFactory(): ViewControllerFactory;
|
|
31
|
-
protected views(): ViewControllerFactory;
|
|
31
|
+
protected get views(): ViewControllerFactory;
|
|
32
32
|
protected mixinControllers(map: Record<string, any>): void;
|
|
33
33
|
Controller<N extends ViewControllerId, O extends ControllerOptions<N>>(name: N, options: O): ViewControllerMap[N];
|
|
34
34
|
protected renderInDialog(dialog: DialogViewControllerOptions): import("./Dialog.vc").default;
|
|
@@ -28,7 +28,7 @@ export default abstract class AbstractViewController<ViewModel extends Record<st
|
|
|
28
28
|
* @deprecated this.getVcFactory() -> this.views()
|
|
29
29
|
*/
|
|
30
30
|
protected getVcFactory(): ViewControllerFactory;
|
|
31
|
-
protected views(): ViewControllerFactory;
|
|
31
|
+
protected get views(): ViewControllerFactory;
|
|
32
32
|
protected mixinControllers(map: Record<string, any>): void;
|
|
33
33
|
Controller<N extends ViewControllerId, O extends ControllerOptions<N>>(name: N, options: O): ViewControllerMap[N];
|
|
34
34
|
protected renderInDialog(dialog: DialogViewControllerOptions): import("./Dialog.vc").default;
|
package/package.json
CHANGED