@spark-ui/tailwind-plugins 5.0.22 → 5.0.24

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/index.js +1 -1
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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
+ ## [5.0.24](https://github.com/adevinta/spark/compare/v5.0.23...v5.0.24) (2024-08-08)
7
+
8
+ ### Bug Fixes
9
+
10
+ - correct the return type annotation for the tailwind config builder ([3bda4e3](https://github.com/adevinta/spark/commit/3bda4e3edecb0026d13b464f6f6ea1d416d8d242))
11
+
12
+ ## [5.0.23](https://github.com/adevinta/spark/compare/v5.0.22...v5.0.23) (2024-08-06)
13
+
14
+ **Note:** Version bump only for package @spark-ui/tailwind-plugins
15
+
6
16
  ## [5.0.22](https://github.com/adevinta/spark/compare/v5.0.21...v5.0.22) (2024-08-06)
7
17
 
8
18
  **Note:** Version bump only for package @spark-ui/tailwind-plugins
package/index.js CHANGED
@@ -18,7 +18,7 @@ const tailwindcssRadix = require('tailwindcss-radix')
18
18
  * @param {Object} options The options for the plugin.
19
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
- * @returns {Function} The PostCSS plugin function.
21
+ * @returns {Function[]} The PostCSS plugin functions to apply.
22
22
  */
23
23
  const sparkConfig = ({ htmlFontSize, themes }) => {
24
24
  return [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/tailwind-plugins",
3
- "version": "5.0.22",
3
+ "version": "5.0.24",
4
4
  "description": "Spark Tailwind plugins",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  "main": "index.js",
17
17
  "dependencies": {
18
- "@spark-ui/theme-utils": "^5.0.22",
18
+ "@spark-ui/theme-utils": "^5.0.24",
19
19
  "tailwindcss-radix": "2.9.0"
20
20
  },
21
21
  "peerDependencies": {
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "homepage": "https://sparkui.vercel.app",
37
37
  "license": "MIT",
38
- "gitHead": "376a18756633d2144752220e09716477974add8a"
38
+ "gitHead": "1120d9e7ded56a637953675083e6dfe616597aef"
39
39
  }