@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
28 lines (27 loc) • 1.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.initialTheme = exports.EPandoraThemeTypes = exports.themeOptions = exports.EShape = exports.EThemeTypes = void 0;
var EThemeTypes;
(function (EThemeTypes) {
EThemeTypes["Light"] = "light";
EThemeTypes["Dark"] = "dark";
EThemeTypes["EleganceGreen"] = "eleganceGreen";
})(EThemeTypes = exports.EThemeTypes || (exports.EThemeTypes = {}));
var EShape;
(function (EShape) {
EShape["line"] = "line";
EShape["circle"] = "circle";
EShape["square"] = "square";
})(EShape = exports.EShape || (exports.EShape = {}));
exports.themeOptions = [
EThemeTypes.Light,
EThemeTypes.Dark,
EThemeTypes.EleganceGreen
];
var EPandoraThemeTypes;
(function (EPandoraThemeTypes) {
EPandoraThemeTypes["Light"] = "pandora-light";
EPandoraThemeTypes["Dark"] = "pandora-dark";
EPandoraThemeTypes["EleganceGreen"] = "pandora-eleganceGreen";
})(EPandoraThemeTypes = exports.EPandoraThemeTypes || (exports.EPandoraThemeTypes = {}));
exports.initialTheme = EThemeTypes.Light;