wix-style-react
Version:
22 lines (18 loc) • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ZIndex = ZIndex;
var ZIndexValues = {
Page: 1,
Notification: 4000,
Modal: 5000,
Tooltip: 6000
};
function ZIndex(layerName) {
var zIndexValue = ZIndexValues[layerName];
if (!zIndexValue) {
throw new Error("ZIndex: Layer with name ".concat(layerName, " does NOT exist. Layers = ").concat(Object.keys(ZIndexValues).join(', ')));
}
return zIndexValue;
}