@cranberry-money/shared-constants
Version:
Shared constants for Blueberry platform
23 lines • 647 B
TypeScript
export declare const Z_INDEX: {
readonly BASE: 0;
readonly DROPDOWN: 10;
readonly STICKY: 20;
readonly FIXED: 30;
readonly MODAL_BACKDROP: 40;
readonly MODAL: 50;
readonly POPOVER: 60;
readonly TOOLTIP: 70;
readonly NOTIFICATION: 80;
readonly MAX: 9999;
};
export declare const Z_INDEX_SEMANTIC: {
readonly TABLE_HEADER: 10;
readonly NAVIGATION_OVERLAY: 50;
readonly DIALOG: 50;
readonly MENU_BUTTON: 20;
readonly MENU_PANEL: 30;
readonly BACKDROP: 10;
};
export type ZIndex = typeof Z_INDEX;
export type ZIndexSemantic = typeof Z_INDEX_SEMANTIC;
//# sourceMappingURL=zIndex.d.ts.map