not-bulma 1.0.83 → 1.0.85

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-bulma",
3
- "version": "1.0.83",
3
+ "version": "1.0.85",
4
4
  "description": "not-* family UI components on Bulma CSS Framework",
5
5
  "main": "src/index.js",
6
6
  "svelte": "src/index.js",
@@ -511,6 +511,8 @@ class notController extends notBase {
511
511
  controller: this,
512
512
  };
513
513
  }
514
+
515
+ static getMenu() {}
514
516
  }
515
517
 
516
518
  export default notController;
@@ -63,8 +63,8 @@ class CRUDGenericActionUpdate extends CRUDGenericAction {
63
63
  name: `${controller.getName()}.${this.ACTION}Form`,
64
64
  validators: controller.getOptions("Validators"),
65
65
  variants: controller.getOptions(`variants.${this.ACTION}`, {}),
66
- ui: controller.getOptions(`${ACTION}.ui`, {}),
67
- fields: controller.getOptions(`${ACTION}.fields`, {}),
66
+ ui: controller.getOptions(`${this.ACTION}.ui`, {}),
67
+ fields: controller.getOptions(`${this.ACTION}.fields`, {}),
68
68
  },
69
69
  data: this.TRANSFORMER(notCommon.stripProxy(res.result)),
70
70
  };
@@ -160,4 +160,4 @@ class CRUDGenericActionUpdate extends CRUDGenericAction {
160
160
  }
161
161
  }
162
162
 
163
- export default CRUDGenericAction;
163
+ export default CRUDGenericActionUpdate;