@spark-ui/tailwind-plugins 3.7.2 → 3.8.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.8.0](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.7.2...@spark-ui/tailwind-plugins@3.8.0) (2024-06-12)
7
+
8
+ ### Features
9
+
10
+ - **collapsible:** collapsible stable release ([867eed8](https://github.com/adevinta/spark/commit/867eed8fc17a3653d4abda31a450f4edea03a033))
11
+
6
12
  ## [3.7.2](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.7.1...@spark-ui/tailwind-plugins@3.7.2) (2024-05-15)
7
13
 
8
14
  **Note:** Version bump only for package @spark-ui/tailwind-plugins
@@ -121,6 +121,14 @@ module.exports = plugin.withOptions(
121
121
  theme: {
122
122
  extend: {
123
123
  keyframes: {
124
+ standaloneCollapseIn: {
125
+ '0%': { opacity: 0, height: 0 },
126
+ '100%': { opacity: 1, height: 'var(--height)' },
127
+ },
128
+ standaloneCollapseOut: {
129
+ '0%': { opacity: 1, height: 'var(--height)' },
130
+ '100%': { opacity: 0, height: 0 },
131
+ },
124
132
  fadeIn: {
125
133
  '0%': { opacity: 0 },
126
134
  '100%': { opacity: 1 },
@@ -193,6 +201,8 @@ module.exports = plugin.withOptions(
193
201
  animation: {
194
202
  'fade-in': 'fadeIn 0.25s cubic-bezier(0.2, 0, 0, 1)',
195
203
  'fade-out': 'fadeOut 0.25s cubic-bezier(0.2, 0, 0, 1)',
204
+ 'standalone-collapse-in': 'standaloneCollapseIn 0.25s cubic-bezier(0.2, 0, 0, 1)',
205
+ 'standalone-collapse-out': 'standaloneCollapseOut 0.25s cubic-bezier(0.2, 0, 0, 1)',
196
206
  // slideIn
197
207
  'slide-in-top': 'slideInTop 0.4s cubic-bezier(0.05, 0.7, 0.1, 1)',
198
208
  'slide-in-right': 'slideInRight 0.4s cubic-bezier(0.05, 0.7, 0.1, 1)',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/tailwind-plugins",
3
- "version": "3.7.2",
3
+ "version": "3.8.0",
4
4
  "description": "Spark Tailwind plugins",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "homepage": "https://sparkui.vercel.app",
37
37
  "license": "MIT",
38
- "gitHead": "9439c0493a1b17fd937beb7cbc2ea461b4ab906a"
38
+ "gitHead": "aa2caf274538f534f4d61f2166ca31dcfccb005b"
39
39
  }