1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import makeStyleMapper from './makeStyleMapper.js';
- export var AREA_STYLE_KEY_MAP = [['fill', 'color'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['opacity'], ['shadowColor']
- ];
- var getAreaStyle = makeStyleMapper(AREA_STYLE_KEY_MAP);
- var AreaStyleMixin = function () {
- function AreaStyleMixin() {}
- AreaStyleMixin.prototype.getAreaStyle = function (excludes, includes) {
- return getAreaStyle(this, excludes, includes);
- };
- return AreaStyleMixin;
- }();
- ;
- export { AreaStyleMixin };
|