UNPKG

wix-style-react

Version:
19 lines (18 loc) 470 B
"use strict"; exports.__esModule = true; exports.ZIndex = ZIndex; var ZIndexValues = { Page: 1, Notification: 4000, Modal: 5000, Toast: 5500, 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; } //# sourceMappingURL=ZIndex.js.map