Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 11bf320

Browse files
committed
Reorder StateID
1 parent 51c945a commit 11bf320

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/csstransitionstate.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ export interface CSSTransitionState {
2020
}
2121

2222
export enum StateID {
23+
DefaultInit,
2324
ActiveInit,
25+
Default,
2426
Active,
25-
LeavePending,
26-
LeaveTriggered,
27-
LeaveStarted,
2827
EnterPending,
2928
EnterTriggered,
3029
EnterStarted,
31-
Default,
32-
DefaultInit,
30+
LeavePending,
31+
LeaveTriggered,
32+
LeaveStarted,
3333
}
3434

3535
export const StateIDList = [
36-
StateID.ActiveInit, StateID.Active,
37-
StateID.DefaultInit, StateID.Default,
38-
StateID.LeavePending, StateID.LeaveTriggered, StateID.LeaveStarted,
36+
StateID.ActiveInit, StateID.DefaultInit,
37+
StateID.Active, StateID.Default,
3938
StateID.EnterPending, StateID.EnterTriggered, StateID.EnterStarted,
39+
StateID.LeavePending, StateID.LeaveTriggered, StateID.LeaveStarted,
4040
];
4141

4242
export enum ActionID {

0 commit comments

Comments
 (0)