@spark-ui/tailwind-plugins 3.2.0 → 3.2.2

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,17 @@
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.2.2](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.2.1...@spark-ui/tailwind-plugins@3.2.2) (2023-08-29)
7
+
8
+ **Note:** Version bump only for package @spark-ui/tailwind-plugins
9
+
10
+ ## [3.2.1](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.2.0...@spark-ui/tailwind-plugins@3.2.1) (2023-08-29)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **tailwind-plugins:** progress animation ([85d92e4](https://github.com/adevinta/spark/commit/85d92e4c6791c23a7e916b3b3e30947f082ec6c6))
15
+ - **tailwind-plugins:** update progress animation ([46f9ce0](https://github.com/adevinta/spark/commit/46f9ce031fb6518763d92e7d9e1029b82a02e6cc))
16
+
6
17
  # [3.2.0](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.1.0...@spark-ui/tailwind-plugins@3.2.0) (2023-08-25)
7
18
 
8
19
  ### Features
@@ -165,10 +165,20 @@ module.exports = plugin.withOptions(
165
165
  },
166
166
  standaloneIndeterminateBar: {
167
167
  '0%': {
168
- transform: 'translateX(0%) scaleX(0.2)',
168
+ left: '0',
169
+ width: '0',
170
+ },
171
+ '50%': {
172
+ left: '50%',
173
+ width: '50%',
174
+ },
175
+ '75%': {
176
+ left: '100%',
177
+ width: '0',
169
178
  },
170
179
  '100%': {
171
- transform: 'translateX(100%) scaleX(1)',
180
+ left: '0',
181
+ width: '0',
172
182
  },
173
183
  },
174
184
  },
@@ -186,7 +196,7 @@ module.exports = plugin.withOptions(
186
196
  'slide-out-bottom': 'slideOutBottom 0.4s cubic-bezier(0.05, 0.7, 0.1, 1)',
187
197
  'slide-out-left': 'slideOutLeft 0.4s cubic-bezier(0.05, 0.7, 0.1, 1)',
188
198
  'standalone-indeterminate-bar':
189
- 'standaloneIndeterminateBar 1.5s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite normal none running',
199
+ 'standaloneIndeterminateBar 1s ease-out infinite normal none running',
190
200
  },
191
201
  },
192
202
  },
package/package.json CHANGED
@@ -1,13 +1,21 @@
1
1
  {
2
2
  "name": "@spark-ui/tailwind-plugins",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "description": "Spark Tailwind plugins",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
+ "keywords": [
9
+ "@spark-ui",
10
+ "util",
11
+ "utility",
12
+ "plugin",
13
+ "tailwind",
14
+ "tailwindcss"
15
+ ],
8
16
  "main": "index.js",
9
17
  "dependencies": {
10
- "@spark-ui/theme-utils": "^3.0.2",
18
+ "@spark-ui/theme-utils": "^3.0.3",
11
19
  "tailwindcss-radix": "2.8.0"
12
20
  },
13
21
  "peerDependencies": {
@@ -23,5 +31,5 @@
23
31
  },
24
32
  "homepage": "https://sparkui.vercel.app",
25
33
  "license": "MIT",
26
- "gitHead": "c56865b3d1a8af06fe80467a4805ba3fd9521d84"
34
+ "gitHead": "0c0a05d34d4ade1b5e3ba458cc9865dedad5a1e3"
27
35
  }