@trackunit/css-tailwind 0.0.36 → 0.0.38
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/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.38",
|
|
4
4
|
"main": "./index.cjs",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
7
7
|
"type": "commonjs",
|
|
8
8
|
"types": "./src/index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@trackunit/ui-design-tokens": "0.0.
|
|
11
|
-
"@trackunit/css-component-tokens": "0.0.
|
|
12
|
-
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.
|
|
13
|
-
"@trackunit/css-core": "0.0.
|
|
10
|
+
"@trackunit/ui-design-tokens": "0.0.58",
|
|
11
|
+
"@trackunit/css-component-tokens": "0.0.17",
|
|
12
|
+
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.9",
|
|
13
|
+
"@trackunit/css-core": "0.0.71"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {}
|
|
16
16
|
}
|
|
@@ -741,7 +741,8 @@ var animations = {
|
|
|
741
741
|
"slide-in-right": "slideInRight 0.2s ease-in-out forwards",
|
|
742
742
|
"slide-in-top": "slideInTop 0.2s ease-in-out forwards",
|
|
743
743
|
"slide-in-bottom": "slideInBottom 0.2s ease-in-out forwards",
|
|
744
|
-
"ping-sm": "pingSm 1s cubic-bezier(0, 0, 0.2, 1) infinite"
|
|
744
|
+
"ping-sm": "pingSm 1s cubic-bezier(0, 0, 0.2, 1) infinite",
|
|
745
|
+
"bg-scroll-br": "bgScrollBR 10s ease infinite"
|
|
745
746
|
},
|
|
746
747
|
keyframes: {
|
|
747
748
|
copy: {
|
|
@@ -751,6 +752,11 @@ var animations = {
|
|
|
751
752
|
},
|
|
752
753
|
to: { color: "initial", "border-color": "initial" }
|
|
753
754
|
},
|
|
755
|
+
bgScrollBR: {
|
|
756
|
+
"0%": { "background-position": "7% 0%", "background-size": "200% 200%" },
|
|
757
|
+
"50%": { "background-position": "94% 100%", "background-size": "200% 200%" },
|
|
758
|
+
"100%": { "background-position": "7% 0%", "background-size": "200% 200%" }
|
|
759
|
+
},
|
|
754
760
|
fadeOut: {
|
|
755
761
|
"0%": { opacity: "1" },
|
|
756
762
|
"100%": { opacity: "0" }
|