@cgcs2000/l7plot-component
Version:
Components for L7Plot
12 lines • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ITEM_TPL = exports.CONTAINER_TPL = exports.VALUE_CLASS = exports.NAME_CLASS = exports.LIST_ITEM_CLASS = exports.LIST_CLASS = exports.TITLE_CLASS = exports.CONTAINER_CLASS = void 0;
exports.CONTAINER_CLASS = 'l7plot-tooltip';
exports.TITLE_CLASS = 'l7plot-tooltip__title';
exports.LIST_CLASS = 'l7plot-tooltip__list';
exports.LIST_ITEM_CLASS = 'l7plot-tooltip__list-item';
exports.NAME_CLASS = 'l7plot-tooltip__name';
exports.VALUE_CLASS = 'l7plot-tooltip__value';
exports.CONTAINER_TPL = "<div class=\"".concat(exports.CONTAINER_CLASS, "\">\n <div class=\"").concat(exports.TITLE_CLASS, "\"></div>\n <ul class=\"").concat(exports.LIST_CLASS, "\"></ul>\n</div>");
exports.ITEM_TPL = "<li class=\"".concat(exports.LIST_ITEM_CLASS, "\" data-index={index}>\n <span class=\"").concat(exports.NAME_CLASS, "\">{name}</span>\n <span class=\"").concat(exports.VALUE_CLASS, "\">{value}</span>\n</li>");
//# sourceMappingURL=constants.js.map