@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;
@@ -41,7 +41,7 @@ export default class AbstractViewController {
41
41
  getVcFactory() {
42
42
  return this.vcFactory;
43
43
  }
44
- views() {
44
+ get views() {
45
45
  return this.vcFactory;
46
46
  }
47
47
  mixinControllers(map) {
@@ -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;
@@ -36,7 +36,7 @@ class AbstractViewController {
36
36
  getVcFactory() {
37
37
  return this.vcFactory;
38
38
  }
39
- views() {
39
+ get views() {
40
40
  return this.vcFactory;
41
41
  }
42
42
  mixinControllers(map) {
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "sideEffects": false,
14
14
  "license": "MIT",
15
15
  "description": "All the power of Heartwood in one, convenient package.",
16
- "version": "111.1.28",
16
+ "version": "111.1.29",
17
17
  "skill": {
18
18
  "namespace": "HeartwoodViewControllers",
19
19
  "commandOverrides": {