not-bulma 1.2.52 → 1.2.53

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.2.52",
3
+ "version": "1.2.53",
4
4
  "description": "not-* family UI components on Bulma CSS Framework",
5
5
  "main": "src/index.js",
6
6
  "svelte": "src/index.js",
@@ -39,7 +39,7 @@ class notCRUD extends notController {
39
39
  });
40
40
  }
41
41
 
42
- static getMenu() {
42
+ static getMenu(itemCustomProps = {}) {
43
43
  return [
44
44
  {
45
45
  section: this.MODULE_NAME,
@@ -47,6 +47,7 @@ class notCRUD extends notController {
47
47
  url: `/${notCommon.lowerFirstLetter(
48
48
  this.MODULE_NAME
49
49
  )}/${notCommon.lowerFirstLetter(this.MODEL_NAME)}`,
50
+ ...itemCustomProps,
50
51
  },
51
52
  ];
52
53
  }