ngx-bimplus-components 0.0.3 → 0.0.4
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/esm2022/lib/components/bimplus-main-menu/bimplus-main-menu.component.mjs +5 -5
- package/esm2022/lib/components/bimplus-notify/bimplus-notify.component.mjs +3 -3
- package/esm2022/lib/components/bimplus-project-menu/bimplus-project-menu.component.mjs +1 -2
- package/esm2022/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.mjs +18 -19
- package/esm2022/lib/ngx-bimplus-components.service.mjs +2 -3
- package/fesm2022/ngx-bimplus-components.mjs +24 -27
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/lib/components/bimplus-main-menu/bimplus-main-menu.component.d.ts +4 -4
- package/lib/ngx-bimplus-components.service.d.ts +0 -1
- package/package.json +1 -1
|
@@ -59,8 +59,8 @@ export declare class BimplusMainMenuComponent extends BimplusLocalizedWidgetComp
|
|
|
59
59
|
ngOnChanges(changes: SimpleChanges): void;
|
|
60
60
|
get footerList(): MenuListType[];
|
|
61
61
|
/**--------------------------------------------------------------------------
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
* check if app is subscribed
|
|
63
|
+
--------------------------------------------------------------------------*/
|
|
64
64
|
_isSubscribed(item: MenuListType): boolean;
|
|
65
65
|
/**--------------------------------------------------------------------------
|
|
66
66
|
* check if app is clickable
|
|
@@ -71,8 +71,8 @@ export declare class BimplusMainMenuComponent extends BimplusLocalizedWidgetComp
|
|
|
71
71
|
--------------------------------------------------------------------------*/
|
|
72
72
|
_isHidden(item: MenuListType): boolean;
|
|
73
73
|
/**--------------------------------------------------------------------------
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
* check if app is disabled
|
|
75
|
+
--------------------------------------------------------------------------*/
|
|
76
76
|
_isDisabled(item: MenuListType): boolean;
|
|
77
77
|
_getContextData(item: MenuListType, active: boolean, disabled: boolean, clickable: boolean, selected: boolean): {
|
|
78
78
|
item: MenuListType;
|