vc-layout 1.0.98 → 1.0.99

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.
Files changed (21) hide show
  1. package/esm2022/lib/components/global-alert/global-alert/global-alert.component.mjs +2 -2
  2. package/esm2022/lib/components/header/business-cycle/business-cycle.component.mjs +2 -2
  3. package/esm2022/lib/components/header/create-workflow/create-workflow.component.mjs +2 -2
  4. package/esm2022/lib/components/header/header-container/header-container.component.mjs +14 -22
  5. package/esm2022/lib/components/header/queue/queue.component.mjs +2 -2
  6. package/esm2022/lib/components/header/search/search.component.mjs +11 -9
  7. package/esm2022/lib/components/header/support/support.component.mjs +5 -5
  8. package/esm2022/lib/components/header/user-details/user-details.component.mjs +5 -3
  9. package/esm2022/lib/components/product-list/module-list/module-list.component.mjs +4 -57
  10. package/esm2022/lib/components/product-list/preference-list/preference-list.component.mjs +7 -4
  11. package/esm2022/lib/components/product-list/product-list-container/product-list-container.component.mjs +2 -2
  12. package/esm2022/lib/components/sub-menu/sub-menu-container/sub-menu-container.component.mjs +2 -2
  13. package/esm2022/lib/constants/app-url.constant.mjs +6 -6
  14. package/esm2022/lib/shared/services/product-list.service.mjs +2 -5
  15. package/esm2022/lib/shared/ui-kit/avatar/avatar/avatar.component.mjs +2 -2
  16. package/esm2022/lib/shared/ui-kit/page-loader/page-loader.component.mjs +17 -3
  17. package/fesm2022/vc-layout.mjs +65 -110
  18. package/fesm2022/vc-layout.mjs.map +1 -1
  19. package/lib/components/header/header-container/header-container.component.d.ts +0 -2
  20. package/lib/components/product-list/module-list/module-list.component.d.ts +0 -10
  21. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vc-layout",
3
- "version": "1.0.98",
3
+ "version": "1.0.99",
4
4
  "peerDependencies": {
5
5
  "@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
6
6
  "@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "