@spark-ui/tailwind-plugins 6.3.11 → 6.4.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
+ # [6.4.0](https://github.com/adevinta/spark/compare/v6.3.11...v6.4.0) (2024-11-08)
7
+
8
+ ### Features
9
+
10
+ - **skeleton:** add skeleton items with animation ([55eb692](https://github.com/adevinta/spark/commit/55eb692776cebb1558258c794c387c007d141e24))
11
+
6
12
  ## [6.3.11](https://github.com/adevinta/spark/compare/v6.3.10...v6.3.11) (2024-11-06)
7
13
 
8
14
  **Note:** Version bump only for package @spark-ui/tailwind-plugins
@@ -1,3 +1,4 @@
1
+ /* eslint-disable max-lines-per-function */
1
2
  /* eslint-disable-next-line @typescript-eslint/no-var-requires */
2
3
  const plugin = require('tailwindcss/plugin')
3
4
 
@@ -197,6 +198,9 @@ module.exports = plugin.withOptions(
197
198
  width: '0',
198
199
  },
199
200
  },
201
+ shimmer: {
202
+ '100%': { maskPosition: '-200% 0%' },
203
+ },
200
204
  },
201
205
  animation: {
202
206
  'fade-in': 'fadeIn 0.25s cubic-bezier(0.2, 0, 0, 1)',
@@ -218,6 +222,8 @@ module.exports = plugin.withOptions(
218
222
  // swipeOut
219
223
  'swipe-out-right': 'swipeOutRight 0.1s ease-out',
220
224
  'swipe-out-left': 'swipeOutLeft 0.1s ease-out',
225
+ // shimmer
226
+ shimmer: 'shimmer 2s ease-in infinite',
221
227
  },
222
228
  },
223
229
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/tailwind-plugins",
3
- "version": "6.3.11",
3
+ "version": "6.4.0",
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": "^6.3.11",
18
+ "@spark-ui/theme-utils": "^6.4.0",
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": "c2cbff0da0bc187fa0a164e32239db21f334311d"
38
+ "gitHead": "e8eb31dc906cf69fa8a8c1ff672b91c4238f1b37"
39
39
  }