@indigina/ui-kit 1.1.159 → 1.1.160

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.
@@ -0,0 +1,16 @@
1
+ import { ElementRef, Signal, WritableSignal } from '@angular/core';
2
+ import { KitNavigationMenuService } from '../kit-navigation-menu/kit-navigation-menu.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class KitPageLayoutComponent {
5
+ private readonly kitNavigationMenuService;
6
+ readonly sidebarContainer: Signal<ElementRef<HTMLDivElement> | undefined>;
7
+ readonly headerContainer: Signal<ElementRef<HTMLDivElement> | undefined>;
8
+ readonly isMenuCollapsed: WritableSignal<boolean>;
9
+ readonly hasMenuSelected: WritableSignal<boolean>;
10
+ hasSidebar: boolean;
11
+ hasHeader: boolean;
12
+ constructor(kitNavigationMenuService: KitNavigationMenuService);
13
+ ngAfterContentInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitPageLayoutComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitPageLayoutComponent, "kit-page-layout", never, {}, {}, never, ["[sidebar]", "[header]", "[content]"], true, never>;
16
+ }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.159",
10
+ "version": "1.1.160",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^19.1.4",
13
13
  "@angular/core": "^19.1.4"
package/public-api.d.ts CHANGED
@@ -165,6 +165,7 @@ export { KitFilterOperator, KitFilterLogic, KitSortDirection } from './lib/utils
165
165
  export { KitTruncateTextComponent } from './lib/components/kit-truncate-text/kit-truncate-text.component';
166
166
  export { KitCollapsedListComponent } from './lib/components/kit-collapsed-list/kit-collapsed-list.component';
167
167
  export { KitCollapsedListItem } from './lib/components/kit-collapsed-list/kit-collapsed-list.model';
168
+ export { KitPageLayoutComponent } from './lib/components/kit-page-layout/kit-page-layout.component';
168
169
  export { KIT_BASE_PATH } from './lib/token/kit-base-path.token';
169
170
  export { KitTranslateService } from './lib/services/kit-translate/kit-translate.service';
170
171
  export { KitGridState, KIT_GRID_STATE_TOKEN } from './lib/widgets/kit-grid-management/store/kit-grid.state';
@@ -30,4 +30,7 @@ div[kendowatermarkoverlay] {
30
30
 
31
31
  :root {
32
32
  --ui-kit-header-height: 86px;
33
+ --ui-kit-sidebar-collapsed-width: 56px;
34
+ --ui-kit-sidebar-expanded-width: 256px;
35
+ --ui-kit-layout-gap: 25px;
33
36
  }
@@ -3,6 +3,7 @@
3
3
  /* common colors */
4
4
  --ui-kit-color-white: #ffffff;
5
5
  --ui-kit-color-black: #000000;
6
+ --ui-kit-color-navy: #251d2b;
6
7
 
7
8
  /* custom palette */
8
9
  --ui-kit-color-main: #56a2f7;