You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
990 B
38 lines
990 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.CLASS_NAMES = exports.HANDLE_DEFAULT_CFG = exports.HANDLE_LABEL_DEFAULT_CFG = exports.HANDLE_ICON_DEFAULT_CFG = void 0;
|
|
var util_1 = require("../../util");
|
|
exports.HANDLE_ICON_DEFAULT_CFG = {
|
|
fill: '#fff',
|
|
lineWidth: 1,
|
|
radius: 2,
|
|
size: 10,
|
|
stroke: '#bfbfbf',
|
|
strokeOpacity: 1,
|
|
zIndex: 0,
|
|
};
|
|
exports.HANDLE_LABEL_DEFAULT_CFG = {
|
|
fill: '#000',
|
|
fillOpacity: 0.45,
|
|
fontSize: 12,
|
|
textAlign: 'center',
|
|
textBaseline: 'middle',
|
|
zIndex: 1,
|
|
};
|
|
exports.HANDLE_DEFAULT_CFG = {
|
|
x: 0,
|
|
y: 0,
|
|
orientation: 'horizontal',
|
|
showLabel: true,
|
|
type: 'start',
|
|
};
|
|
exports.CLASS_NAMES = (0, util_1.classNames)({
|
|
foreground: 'foreground',
|
|
handle: 'handle',
|
|
selection: 'selection',
|
|
sparkline: 'sparkline',
|
|
sparklineGroup: 'sparkline-group',
|
|
track: 'track',
|
|
brushArea: 'brush-area',
|
|
}, 'slider');
|
|
//# sourceMappingURL=constant.js.map
|