@bluealba/pae-ui-react-core 4.3.0 → 4.4.0-develop-159

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.
@@ -12,6 +12,12 @@ export interface DialogProps {
12
12
  onClose?: () => void;
13
13
  open?: boolean;
14
14
  className?: string;
15
+ /**
16
+ * Z-index stacking level relative to --platform-modal-layer.
17
+ * Level 0 (default): overlay = modal-layer, content = modal-layer + 1.
18
+ * Level 1 (nested): overlay = modal-layer + 2, content = modal-layer + 3.
19
+ */
20
+ zIndexLevel?: number;
15
21
  }
16
22
  interface Component extends FC<DialogProps> {
17
23
  Header: typeof Header;
@@ -1 +1 @@
1
- export declare const useFeatureFlag: (flagName: string) => boolean;
1
+ export declare const useFeatureFlag: (flagName: string) => any;
@@ -1 +1 @@
1
- export declare const useFeatureFlags: () => Record<string, boolean>;
1
+ export declare const useFeatureFlags: () => Record<string, any>;
@@ -22,7 +22,8 @@ export type PAEState = {
22
22
  currentTenant?: Tenant;
23
23
  tenantConfig?: TenantConfig;
24
24
  platformVersion: string;
25
- featureFlags: Record<string, boolean>;
25
+ platformEnvironment?: string;
26
+ featureFlags: Record<string, any>;
26
27
  }
27
28
 
28
29
  export type PAECustomizationsLoadingState = BehaviorSubject<boolean | undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluealba/pae-ui-react-core",
3
- "version": "4.3.0",
3
+ "version": "4.4.0-develop-159",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",