12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import makeStyleMapper from './makeStyleMapper.js';
- export var ITEM_STYLE_KEY_MAP = [['fill', 'color'], ['stroke', 'borderColor'], ['lineWidth', 'borderWidth'], ['opacity'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['shadowColor'], ['lineDash', 'borderType'], ['lineDashOffset', 'borderDashOffset'], ['lineCap', 'borderCap'], ['lineJoin', 'borderJoin'], ['miterLimit', 'borderMiterLimit']
- ];
- var getItemStyle = makeStyleMapper(ITEM_STYLE_KEY_MAP);
- var ItemStyleMixin = function () {
- function ItemStyleMixin() {}
- ItemStyleMixin.prototype.getItemStyle = function (excludes, includes) {
- return getItemStyle(this, excludes, includes);
- };
- return ItemStyleMixin;
- }();
- export { ItemStyleMixin };
|