@telia-ace/widget-core-flamingo 1.1.72-rc.1 → 1.1.72-rc.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -34,6 +34,7 @@ export declare class Application {
34
34
  plugin(plugin: PluginType): this;
35
35
  appendToDOM(): void;
36
36
  hide(): void;
37
+ setZIndex(zIndex: number): void;
37
38
  mute(): void;
38
39
  unmute(): void;
39
40
  registerComponent(type: string, component: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telia-ace/widget-core-flamingo",
3
- "version": "1.1.72-rc.1",
3
+ "version": "1.1.72-rc.11",
4
4
  "dependencies": {
5
5
  "lit": "^3.0.2",
6
6
  "@teliads/icons": "^8.4.0",
@@ -1,6 +1,6 @@
1
1
  export declare enum StorageCategory {
2
- Mandatory = "mandatory",
3
- Preferences = "preferences",
2
+ Necessary = "necessary",
3
+ Functional = "functional",
4
4
  Analytics = "analytics"
5
5
  }
6
6
  export declare class StorageService {
@@ -12,6 +12,7 @@ export declare class StorageService {
12
12
  set<T>(key: string, value: T, category: StorageCategory): void;
13
13
  get<T>(key: string): T | null;
14
14
  removeItem(key: string): void;
15
+ enforcePolicy(): void;
15
16
  updatePolicy(newPolicy: Record<StorageCategory, boolean>): void;
16
17
  disallowKey(key: string): void;
17
18
  private _prefixKey;
@@ -5,4 +5,5 @@ export declare class WidgetAPI {
5
5
  constructor(widget: Application);
6
6
  open(): void;
7
7
  close(): void;
8
+ setZIndex(zIndex: number): void;
8
9
  }