vc-layout 1.0.96 → 1.0.97
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/header/header-container/header-container.component.mjs +15 -23
- package/esm2022/lib/components/header/support/support.component.mjs +5 -5
- package/esm2022/lib/components/header/user-details/user-details.component.mjs +2 -2
- package/esm2022/lib/components/product-list/module-list/module-list.component.mjs +2 -38
- package/esm2022/lib/components/product-list/preference-list/preference-list.component.mjs +6 -3
- package/esm2022/lib/constants/app-url.constant.mjs +6 -6
- package/esm2022/lib/shared/services/product-list.service.mjs +2 -5
- package/esm2022/lib/shared/ui-kit/page-loader/page-loader.component.mjs +17 -3
- package/fesm2022/vc-layout.mjs +36 -68
- package/fesm2022/vc-layout.mjs.map +1 -1
- package/lib/components/header/header-container/header-container.component.d.ts +0 -2
- package/lib/components/product-list/module-list/module-list.component.d.ts +0 -10
- package/package.json +1 -1
|
@@ -14,7 +14,6 @@ export declare class HeaderContainerComponent implements OnInit, OnDestroy {
|
|
|
14
14
|
showBusinessCycle: string[];
|
|
15
15
|
currentUrl: string;
|
|
16
16
|
defaultURL: string;
|
|
17
|
-
showCreateWorkflow: boolean;
|
|
18
17
|
showSearch: boolean;
|
|
19
18
|
featureFlag: any;
|
|
20
19
|
isAdvanceSearch: boolean;
|
|
@@ -30,7 +29,6 @@ export declare class HeaderContainerComponent implements OnInit, OnDestroy {
|
|
|
30
29
|
get isBusinessCycleVisible(): boolean;
|
|
31
30
|
checkSnowFallVisibility(): void;
|
|
32
31
|
checkXmasCapVisibility(): void;
|
|
33
|
-
checkComplianceFlag(): void;
|
|
34
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderContainerComponent, never>;
|
|
35
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderContainerComponent, "vc-header-container", never, { "showSearch": { "alias": "showSearch"; "required": false; }; "featureFlag": { "alias": "featureFlag"; "required": false; }; "isAdvanceSearch": { "alias": "isAdvanceSearch"; "required": false; }; "iframeLoading": { "alias": "iframeLoading"; "required": false; }; }, { "businessCycleChange": "businessCycleChange"; "openDialog": "openDialog"; "onSearchAction": "onSearchAction"; }, never, never, false, never>;
|
|
36
34
|
}
|
|
@@ -19,16 +19,6 @@ export declare class ModuleListComponent implements OnChanges, OnInit {
|
|
|
19
19
|
constructor(productListService: ProductListService, apiService: ApiService, rbacService: RbacService);
|
|
20
20
|
ngOnInit(): void;
|
|
21
21
|
ngOnChanges(): void;
|
|
22
|
-
/**
|
|
23
|
-
* Initialize the product list only after all required data is available
|
|
24
|
-
* This prevents icon flashing by building the filtered list incrementally
|
|
25
|
-
*/
|
|
26
|
-
private initializeProductList;
|
|
27
|
-
/**
|
|
28
|
-
* Build the filtered product list incrementally and show all at once
|
|
29
|
-
* This prevents icon flashing by only showing the final filtered result
|
|
30
|
-
*/
|
|
31
|
-
private buildFilteredProductList;
|
|
32
22
|
/**
|
|
33
23
|
* Handles the toggle event of the submenu for each product.
|
|
34
24
|
*
|
package/package.json
CHANGED