File tree Expand file tree Collapse file tree
RequestAnimationFrameQueue Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# [ 1.12.0] ( https://github.com/vault-developer/event-loop-explorer/compare/v1.11.5...v1.12.0 ) (2025-01-25)
22
3-
43### Features
54
6- * ** transition:** add color transition ([ c57add7] ( https://github.com/vault-developer/event-loop-explorer/commit/c57add774c09140a844c35ca38d699dfd838f2fe ) )
5+ - ** transition:** add color transition ([ c57add7] ( https://github.com/vault-developer/event-loop-explorer/commit/c57add774c09140a844c35ca38d699dfd838f2fe ) )
76
87## [ 1.11.5] ( https://github.com/vault-developer/event-loop-explorer/compare/v1.11.4...v1.11.5 ) (2025-01-25)
98
10-
119### Bug Fixes
1210
13- * ** colors:** update wheel colors ([ a6be71e] ( https://github.com/vault-developer/event-loop-explorer/commit/a6be71e6e512280842b5ad9683d1f1aaf6ee3d25 ) )
11+ - ** colors:** update wheel colors ([ a6be71e] ( https://github.com/vault-developer/event-loop-explorer/commit/a6be71e6e512280842b5ad9683d1f1aaf6ee3d25 ) )
1412
1513## [ 1.11.4] ( https://github.com/vault-developer/event-loop-explorer/compare/v1.11.3...v1.11.4 ) (2025-01-19)
1614
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export const Callstack = styled.div`
1313export const CallstackElement = styled . div (
1414 ( { theme } ) => css `
1515 background : ${ theme . custom . colors . onContainer . dim } ;
16+ transition : background-color ${ theme . custom . colorTransition } ;
1617 border-radius : 5px ;
1718 padding : 10px ;
1819 word-wrap : break-word;
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const LogQueue = styled.div`
1212export const Log = styled . div (
1313 ( { theme } ) => css `
1414 background : ${ theme . custom . colors . onContainer . dim } ;
15+ transition : background-color ${ theme . custom . colorTransition } ;
1516 border-radius : 5px ;
1617 padding : 10px ;
1718 word-wrap : break-word;
Original file line number Diff line number Diff line change @@ -15,7 +15,11 @@ export const SVGContainer = styled.svg(
1515 path ,
1616 text ,
1717 circle {
18- transition : all ${ theme . custom . colorTransition } ;
18+ transition :
19+ background-color ${ theme . custom . colorTransition } ,
20+ color ${ theme . custom . colorTransition } ,
21+ stroke ${ theme . custom . colorTransition } ,
22+ fill ${ theme . custom . colorTransition } ;
1923 }
2024 `
2125) ;
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const MicroTasksQueue = styled.div`
1212export const MicroTask = styled . div (
1313 ( { theme } ) => css `
1414 background : ${ theme . custom . colors . onContainer . dim } ;
15+ transition : background-color ${ theme . custom . colorTransition } ;
1516 flex : 1 ;
1617 display : flex;
1718 justify-content : center;
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const CallbacksQueue = styled.div`
1212export const Callback = styled . div (
1313 ( { theme } ) => css `
1414 background : ${ theme . custom . colors . onContainer . dim } ;
15+ transition : background-color ${ theme . custom . colorTransition } ;
1516 flex : 1 ;
1617 display : flex;
1718 justify-content : center;
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const TasksQueue = styled.div`
1212export const Task = styled . div (
1313 ( { theme } ) => css `
1414 background : ${ theme . custom . colors . onContainer . dim } ;
15+ transition : background-color ${ theme . custom . colorTransition } ;
1516 flex : 1 ;
1617 display : flex;
1718 justify-content : center;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { css } from '@emotion/react';
44export const WebApiItem = styled . div (
55 ( { theme } ) => css `
66 background : ${ theme . custom . colors . onContainer . dim } ;
7+ transition : background-color ${ theme . custom . colorTransition } ;
78 border-radius : 5px ;
89 padding : 10px ;
910 position : absolute;
You can’t perform that action at this time.
0 commit comments