5.4.3
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.
chore: fix a few typos
fix(axis): remove unnecessary files
fix(subpixel): refactor subPixelOptimizeLine
fix(subpixel): set animation with subpixel optimization
refact: use 'style' in visual instead of separate color, opacity. bug fixes on state management.
fix: fix parallel action not work bug