@spark-ui/tailwind-plugins 3.0.5 → 3.1.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 +8 -0
- package/animations/index.js +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
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.1.0](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.0.5...@spark-ui/tailwind-plugins@3.1.0) (2023-08-25)
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
- **tailwind-plugins:** add progress bar animation ([5e101a8](https://github.com/adevinta/spark/commit/5e101a8715a0320aba85ebaef3d6e524780267d5))
|
11
|
+
- **tailwind-plugins:** update indeterminate bar animation name ([bcf64eb](https://github.com/adevinta/spark/commit/bcf64eb0e22343e4dc4f43cd09f79772a4e7cfc8))
|
12
|
+
- **tailwind-plugins:** update indeterminate bar name ([f22ed12](https://github.com/adevinta/spark/commit/f22ed120fef197c5240090a891af9e12186140e8))
|
13
|
+
|
6
14
|
## [3.0.5](https://github.com/adevinta/spark/compare/@spark-ui/tailwind-plugins@3.0.4...@spark-ui/tailwind-plugins@3.0.5) (2023-08-23)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @spark-ui/tailwind-plugins
|
package/animations/index.js
CHANGED
@@ -137,12 +137,22 @@ module.exports = plugin.withOptions(
|
|
137
137
|
'0%': { transform: 'translateX(0)' },
|
138
138
|
'100%': { transform: 'translateX(-100px)' },
|
139
139
|
},
|
140
|
+
standaloneIndeterminateBar: {
|
141
|
+
'0%': {
|
142
|
+
transform: 'translateX(0%) scaleX(0.2)',
|
143
|
+
},
|
144
|
+
'100%': {
|
145
|
+
transform: 'translateX(100%) scaleX(1)',
|
146
|
+
},
|
147
|
+
},
|
140
148
|
},
|
141
149
|
animation: {
|
142
150
|
'slide-top': 'slideTop 0.5s ease-in-out',
|
143
151
|
'slide-right': 'slideRight 0.5s ease-in-out',
|
144
152
|
'slide-bottom': 'slideBottom 0.5s ease-in-out',
|
145
153
|
'slide-left': 'slideLeft 0.5s ease-in-out',
|
154
|
+
'standalone-indeterminate-bar':
|
155
|
+
'standaloneIndeterminateBar 1.5s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite normal none running',
|
146
156
|
},
|
147
157
|
},
|
148
158
|
},
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@spark-ui/tailwind-plugins",
|
3
|
-
"version": "3.0
|
3
|
+
"version": "3.1.0",
|
4
4
|
"description": "Spark Tailwind plugins",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -23,5 +23,5 @@
|
|
23
23
|
},
|
24
24
|
"homepage": "https://sparkui.vercel.app",
|
25
25
|
"license": "MIT",
|
26
|
-
"gitHead": "
|
26
|
+
"gitHead": "342255fa39ae1d445200c86d0d46dd638c7b2311"
|
27
27
|
}
|