@sk-web-gui/core 0.1.45 → 0.1.46

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": "@sk-web-gui/core",
3
- "version": "0.1.45",
3
+ "version": "0.1.46",
4
4
  "license": "MIT",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -31,5 +31,5 @@
31
31
  "postcss-import": "^14.0.2",
32
32
  "tailwindcss": "^2.2.4"
33
33
  },
34
- "gitHead": "bf6d0f29d59737f2c9dae5a9a16e4242e6fdd761"
34
+ "gitHead": "865234c9f369416f8a0807615a49bd47cabec27a"
35
35
  }
@@ -66,6 +66,10 @@ module.exports = Accordion = (colors) => ({
66
66
  },
67
67
  },
68
68
 
69
+ '&-is-open &-body': {
70
+ '@apply overflow-visible animate-reset-overflow': {},
71
+ },
72
+
69
73
  '&-outline': {
70
74
  '@apply border border-gray-stroke': {},
71
75
  '.accordion-body': {
package/src/index.js CHANGED
@@ -223,6 +223,17 @@ module.exports = plugin.withOptions(
223
223
  toast: 1700,
224
224
  tooltip: 1800,
225
225
  },
226
+ keyframes: {
227
+ 'reset-overflow': {
228
+ 'from, to': {
229
+ 'overflow': 'hidden',
230
+ }
231
+ }
232
+
233
+ },
234
+ animation: {
235
+ 'reset-overflow': 'reset-overflow 180ms backwards'
236
+ }
226
237
  },
227
238
  },
228
239
  variants: {