@evotor-dev/ui-kit 8.0.0-beta.24 → 8.0.0-beta.26

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/icons/index.d.ts CHANGED
@@ -119,6 +119,7 @@ export declare const CATEGORY_BY_ICON_NAME: {
119
119
  readonly attach: "system";
120
120
  readonly block: "system";
121
121
  readonly book: "system";
122
+ readonly brand: "system";
122
123
  readonly bulb: "system";
123
124
  readonly bundle: "system";
124
125
  readonly "business-case": "system";
@@ -1,12 +1,10 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class EvoSidebarContentComponent implements OnInit {
4
- private sidebar;
5
- relativeFooter: boolean;
6
- private readonly hostClass;
7
- constructor(sidebar: any);
4
+ relativeFooter: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
5
+ readonly computedRelativeFooter: import("@angular/core").Signal<boolean>;
6
+ private readonly sidebar;
8
7
  ngOnInit(): void;
9
- get hostClasses(): string;
10
8
  static ɵfac: i0.ɵɵFactoryDeclaration<EvoSidebarContentComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<EvoSidebarContentComponent, "evo-sidebar-content, [evo-sidebar-content]", never, { "relativeFooter": { "alias": "relativeFooter"; "required": false; }; }, {}, never, ["*"], true, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<EvoSidebarContentComponent, "evo-sidebar-content, [evo-sidebar-content]", never, { "relativeFooter": { "alias": "relativeFooter"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
12
10
  }
@@ -1,7 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class EvoSidebarHeaderComponent implements OnInit {
4
- backButton: import("@angular/core").InputSignal<boolean>;
4
+ backButton: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
5
5
  readonly back: import("@angular/core").OutputEmitterRef<void>;
6
6
  readonly computedBackButton: import("@angular/core").Signal<boolean>;
7
7
  private readonly sidebar;
@@ -0,0 +1,7 @@
1
+ import { Signal } from "@angular/core";
2
+ import { EvoSidebarCloseTargets } from "./enums/evo-sidebar-close-targets";
3
+ export declare abstract class EvoSidebarToken {
4
+ abstract backButton: Signal<boolean>;
5
+ abstract relativeFooter: Signal<boolean>;
6
+ abstract closeSidebar(target: EvoSidebarCloseTargets): void;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evotor-dev/ui-kit",
3
- "version": "8.0.0-beta.24",
3
+ "version": "8.0.0-beta.26",
4
4
  "homepage": "https://evotor.github.io/Evo-UI-Kit",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,3 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- export const SidebarInjectionToken = new InjectionToken('SidebarInjectionToken');
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZWJhci1pbmplY3Rpb24tdG9rZW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9ldm8tdWkta2l0L3NyYy9saWIvY29tcG9uZW50cy9ldm8tc2lkZWJhci9zaWRlYmFyLWluamVjdGlvbi10b2tlbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsY0FBYyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBRTdDLE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFHLElBQUksY0FBYyxDQUFDLHVCQUF1QixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0luamVjdGlvblRva2VufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuZXhwb3J0IGNvbnN0IFNpZGViYXJJbmplY3Rpb25Ub2tlbiA9IG5ldyBJbmplY3Rpb25Ub2tlbignU2lkZWJhckluamVjdGlvblRva2VuJyk7XG4iXX0=
@@ -1,2 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- export declare const SidebarInjectionToken: InjectionToken<unknown>;