@igo2/context 20.1.0-next.15 → 20.1.0-next.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/igo2-context.mjs +2 -4
- package/fesm2022/igo2-context.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +7 -7
|
@@ -3656,12 +3656,10 @@ function userButtonSlideInOut() {
|
|
|
3656
3656
|
return trigger('userButtonState', [
|
|
3657
3657
|
state('collapse', style({
|
|
3658
3658
|
width: '0',
|
|
3659
|
-
overflow: 'hidden'
|
|
3660
|
-
display: 'none'
|
|
3659
|
+
overflow: 'hidden'
|
|
3661
3660
|
})),
|
|
3662
3661
|
state('expand', style({
|
|
3663
|
-
overflow: 'hidden'
|
|
3664
|
-
display: 'display'
|
|
3662
|
+
overflow: 'hidden'
|
|
3665
3663
|
})),
|
|
3666
3664
|
transition('collapse => expand', animate('200ms')),
|
|
3667
3665
|
transition('expand => collapse', animate('200ms'))
|