(
elOption: GraphicComponentElementOption
)
| 480 | } |
| 481 | // Remove unnecessary props to avoid potential problems. |
| 482 | function getCleanedElOption( |
| 483 | elOption: GraphicComponentElementOption |
| 484 | ): Omit<GraphicComponentElementOption, 'textContent'> { |
| 485 | elOption = zrUtil.extend({}, elOption); |
| 486 | zrUtil.each( |
| 487 | ['id', 'parentId', '$action', 'hv', 'bounding', 'textContent', 'clipPath'].concat(layoutUtil.LOCATION_PARAMS), |
| 488 | function (name) { |
| 489 | delete (elOption as any)[name]; |
| 490 | } |
| 491 | ); |
| 492 | return elOption; |
| 493 | } |
| 494 | |
| 495 | function setEventData( |
| 496 | el: Element, |
no test coverage detected
searching dependent graphs…