qpp-style 9.34.1 → 9.34.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qpp-style",
3
- "version": "9.34.1",
3
+ "version": "9.34.2",
4
4
  "description": "Shared style guide across the QPP program.",
5
5
  "main": "dist/index.js",
6
6
  "homepage": "https://cmsgov.github.io/qpp-style",
@@ -88,7 +88,7 @@
88
88
  "dependencies": {
89
89
  "@material-design-icons/svg": "^0.14.11",
90
90
  "ariakit": "^2.0.0-next.44",
91
- "axios": "^1.4.0",
91
+ "axios": "^1.5.0",
92
92
  "cookie": "^0.5.0",
93
93
  "jwt-decode": "^3.1.2",
94
94
  "prop-types": "^15.8.1",
@@ -61,19 +61,8 @@ $detailsMaxHeight: 130px;
61
61
  @include delayKeyframes('Details', $detailsMaxHeight);
62
62
 
63
63
  .animation-group {
64
- transition: opacity 0.5s ease-in-out;
65
- opacity: 0;
66
- overflow: hidden;
67
-
68
- &.background-highlight {
69
- background-color: $color-slate-dark;
70
- }
71
- }
72
-
73
- .animation-group-enter {
74
64
  opacity: 1;
75
65
  transition-delay: 0.5s;
76
-
77
66
  animation-delay: 0s;
78
67
  animation-duration: 0.6s;
79
68
  animation-fill-mode: forwards;
@@ -81,42 +70,18 @@ $detailsMaxHeight: 130px;
81
70
  animation-timing-function: ease-in-out;
82
71
  }
83
72
 
84
- .animation-group-exit {
85
- opacity: 0;
73
+ .animation-group.background-highlight {
74
+ background-color: $color-slate-dark;
75
+ }
86
76
 
77
+ .closed .animation-group {
78
+ opacity: 0;
87
79
  animation-delay: 0.3s;
88
80
  animation-duration: 0.6s;
89
81
  animation-fill-mode: forwards;
90
82
  animation-name: delayRemoveSimple;
91
83
  animation-timing-function: ease-in-out;
92
- }
93
-
94
- // custom max heights
95
- .animation-group-details.animation-group-enter {
96
- animation-name: delayAddDetails;
97
- }
98
-
99
- .animation-group-details.animation-group-exit {
100
- animation-name: delayRemoveDetails;
101
- }
102
-
103
- .animation-group-chart.animation-group-enter {
104
- animation-name: delayAddChart;
105
- }
106
-
107
- .animation-group-chart.animation-group-exit {
108
- animation-name: delayRemoveChart;
109
- }
110
-
111
- .link-drawer {
112
- .animation-group-enter {
113
- animation-name: delayAddDrawer;
114
- }
115
-
116
- .animation-group-exit {
117
- animation-name: delayRemoveDrawer;
118
- }
119
- }
84
+ }
120
85
 
121
86
  .sidebar {
122
87
  .animation-flat {