5.3.0
fix: realtimeSort: + When base axis is x, the initial sort should not be different from the subsequent sort. + Remove the transition animation of the baseAxis init state to the first sorted state. + Fix that throw error when series data does not cover all axis category. + Fix some incorrect logic like: + BarView sortMap input param + OrdinalScale['scale'] + OrdinalScale['getTicks'] + Simplify and clarify the params `sortInfo` of action "changeAxisOrder". ```js // before: sortInfo: [ // `beforeSortIndex` is not easy to understand and not necessary. { ordinalNumber: 2, beforeSortIndex: 4 }, { ordinalNumber: 5, beforeSortIndex: 5 }, { ordinalNumber: 3, beforeSortIndex: 0 }, { ordinalNumber: 4, beforeSortIndex: 2 }, { ordinalNumber: 0, beforeSortIndex: 3 }, { ordinalNumber: 1, beforeSortIndex: 1 }, ] // after: sortInfo: { ordinalNumbers: [2, 5, 3, 4, 0, 1] } ``` + some small refactor: naming, code organization, type. Add comments.
style: using utility methods for type checking.
refact: put all core modules in the core dir. only do export in lib/echarts
feat(axis): add alignTicks
refact: make components installable
chore: remove unused import and code.
refact: use 'style' in visual instead of separate color, opacity. bug fixes on state management.
fix: fix parallel action not work bug