{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/plots/pie/interactions/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAE7D,MAAM,CAAC,IAAM,aAAa,GAAG,eAAe,CAAC;AAE7C,cAAc,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;AAC/C,mBAAmB,CAAC,sBAAsB,EAAE;IAC1C,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,oBAAoB,EAAE,MAAM,EAAE,sBAAsB,EAAE,CAAC;IAC1E,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,oBAAoB,EAAE,MAAM,EAAE,qBAAqB,EAAE,CAAC;CACxE,CAAC,CAAC;AAEH,cAAc,CAAC,YAAY,EAAE,eAAe,CAAC,CAAC;AAC9C,mBAAmB,CAAC,mBAAmB,EAAE;IACvC,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,wBAAwB,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;IAC3E,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,wBAAwB,EAAE,MAAM,EAAE,kBAAkB,EAAE,CAAC;CACzE,CAAC,CAAC","sourcesContent":["import { registerAction, registerInteraction } from '@antv/g2';\nimport { PieLegendAction } from './actions/legend-active';\nimport { StatisticAction } from './actions/statistic-active';\n\nexport const PIE_STATISTIC = 'pie-statistic';\n\nregisterAction(PIE_STATISTIC, StatisticAction);\nregisterInteraction('pie-statistic-active', {\n start: [{ trigger: 'element:mouseenter', action: 'pie-statistic:change' }],\n end: [{ trigger: 'element:mouseleave', action: 'pie-statistic:reset' }],\n});\n\nregisterAction('pie-legend', PieLegendAction);\nregisterInteraction('pie-legend-active', {\n start: [{ trigger: 'legend-item:mouseenter', action: 'pie-legend:active' }],\n end: [{ trigger: 'legend-item:mouseleave', action: 'pie-legend:reset' }],\n});\n"]}