@spark-ui/tailwind-plugins 3.7.0 → 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,20 @@
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
+
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)
13
+
14
+ **Note:** Version bump only for package @spark-ui/tailwind-plugins
15
+
16
+ ## [3.7.1](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.7.0...@spark-ui/tailwind-plugins@3.7.1) (2024-05-14)
17
+
18
+ **Note:** Version bump only for package @spark-ui/tailwind-plugins
19
+
6
20
  # [3.7.0](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.6.0...@spark-ui/tailwind-plugins@3.7.0) (2024-04-12)
7
21
 
8
22
  ### Features
@@ -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/index.js CHANGED
@@ -16,7 +16,7 @@ const tailwindcssRadix = require('tailwindcss-radix')
16
16
 
17
17
  /**
18
18
  * @param {Object} options The options for the plugin.
19
- * @param {Object} [options.themes={}] An object containing your themes where each key corresponds to a data-theme attribute value.
19
+ * @param {Object} [options.themes={}] An object containing your themes, where each key corresponds to a data-theme attribute value.
20
20
  * @param {string} [options.htmlFontSize=16] The base font size to use to properly compute rem values.
21
21
  * @returns {Function} The PostCSS plugin function.
22
22
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/tailwind-plugins",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
4
4
  "description": "Spark Tailwind plugins",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,7 +16,7 @@
16
16
  "main": "index.js",
17
17
  "dependencies": {
18
18
  "@spark-ui/theme-utils": "^4.1.1",
19
- "tailwindcss-radix": "2.8.0"
19
+ "tailwindcss-radix": "2.9.0"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "tailwindcss": "^3.0.0"
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "homepage": "https://sparkui.vercel.app",
37
37
  "license": "MIT",
38
- "gitHead": "0f4337672a59af327db0c62e0efbd14545bf4003"
38
+ "gitHead": "aa2caf274538f534f4d61f2166ca31dcfccb005b"
39
39
  }