@intellias/menu 2.1.8 → 2.1.10
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 +0 -2
- package/dist/css/main.css +652 -1449
- package/dist/js/kudosForm.js +42 -30
- package/dist/js/main.js +105 -117
- package/dist/js/vendors~kudosForm.js +0 -22
- package/package.json +1 -1
- package/dist/js/vue.js +0 -15
package/README.md
CHANGED
|
@@ -91,7 +91,6 @@ 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;
|
|
95
94
|
helperFunctions: Helpers;
|
|
96
95
|
// add more options here if needed
|
|
97
96
|
}
|
|
@@ -100,7 +99,6 @@ export interface MenuOptions {
|
|
|
100
99
|
|
|
101
100
|
- layout -> provide specific value from MenuLayout enum (Lite/Portals)
|
|
102
101
|
- 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)
|
|
104
102
|
- helperFunctions -> provide necessary helpers functions (add getUrlPathByName from @/bootstrap/vue-router)
|
|
105
103
|
|
|
106
104
|
# Updating the package and versioning
|