@intellias/menu 2.1.6 → 2.1.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.
- package/README.md +2 -0
- package/dist/css/main.css +1451 -654
- package/dist/js/kudosForm.js +29 -41
- package/dist/js/main.js +117 -105
- package/dist/js/vendors~kudosForm.js +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,6 +91,7 @@ import '@intellias/menu/dist/css/main.css' // Menu css import must be here for
|
|
|
91
91
|
export interface MenuOptions {
|
|
92
92
|
layout: MenuLayout;
|
|
93
93
|
storeAdapter: keyable;
|
|
94
|
+
subMenus?: Submenus;
|
|
94
95
|
helperFunctions: Helpers;
|
|
95
96
|
// add more options here if needed
|
|
96
97
|
}
|
|
@@ -99,6 +100,7 @@ export interface MenuOptions {
|
|
|
99
100
|
|
|
100
101
|
- layout -> provide specific value from MenuLayout enum (Lite/Portals)
|
|
101
102
|
- storeAdapter -> provide necessary Vuex store adapters( StoreAdapter)
|
|
103
|
+
- subMenus -> provide subMenuList object, optional. DEMANDED ONLY WHEN IMPORTING TO LITE PROJECT (@app/core/helpers/sub-menu/SubMenuList)
|
|
102
104
|
- helperFunctions -> provide necessary helpers functions (add getUrlPathByName from @/bootstrap/vue-router)
|
|
103
105
|
|
|
104
106
|
# Updating the package and versioning
|