zek 16.1.10 → 16.1.11

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.
@@ -16,7 +16,7 @@ export declare enum Color {
16
16
  Dark = 8
17
17
  }
18
18
  export declare class BootstrapHelper {
19
- static cssColor(color?: Color | null): "" | "bg-primary text-white" | "bg-secondary text-white" | "bg-success text-white" | "bg-danger text-white" | "bg-warning text-dark" | "bg-info text-dark" | "bg-dark text-white";
19
+ static cssColor(color?: Color | null): "" | "bg-primary text-white" | "bg-success text-white" | "bg-danger text-white" | "bg-warning text-dark" | "bg-dark text-white" | "bg-secondary text-white" | "bg-info text-dark";
20
20
  static cssIcon(type: ComponentType): string | null;
21
21
  static cssButton(type: ComponentType): string;
22
22
  static cssAlert(type?: AlertType | null): string;
@@ -19,5 +19,6 @@ export * from './storage-helper';
19
19
  export * from './string-helper';
20
20
  export * from './thenBy';
21
21
  export * from './time-helper';
22
+ export * from './tmp-helper';
22
23
  export * from './url-helper';
23
24
  export * from './validation-helper';
@@ -0,0 +1,7 @@
1
+ export declare class TmpHelper {
2
+ private static _obj;
3
+ static get(key: string): any;
4
+ static set(key: string, value: any): void;
5
+ static clear(): void;
6
+ static remove(key: string): void;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "16.1.10",
3
+ "version": "16.1.11",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"