@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 658 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InstanceIdLimit = exports.SmallScreenBreakpoint = exports.SidePanelPosition = void 0;
var SidePanelPosition;
(function (SidePanelPosition) {
SidePanelPosition[SidePanelPosition["Right"] = 0] = "Right";
SidePanelPosition[SidePanelPosition["Left"] = 1] = "Left";
})(SidePanelPosition = exports.SidePanelPosition || (exports.SidePanelPosition = {}));
exports.SmallScreenBreakpoint = 800;
/**
* Assuming that we won't have this many instances at the same time
* No scientific reason for the number, it's just my personal preference
*/
exports.InstanceIdLimit = 700;