@trackunit/css-tailwind 0.0.66 → 0.0.68

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/css-tailwind",
3
- "version": "0.0.66",
3
+ "version": "0.0.68",
4
4
  "main": "./index.cjs",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -11,9 +11,9 @@
11
11
  "types": "./src/index.d.ts",
12
12
  "dependencies": {
13
13
  "@trackunit/css-component-tokens": "0.0.30",
14
- "@trackunit/css-core": "0.0.85",
14
+ "@trackunit/css-core": "0.0.86",
15
15
  "@trackunit/css-tailwind-custom-properties-plugin": "0.0.22",
16
- "@trackunit/ui-design-tokens": "0.0.69"
16
+ "@trackunit/ui-design-tokens": "0.0.70"
17
17
  },
18
18
  "peerDependencies": {}
19
19
  }
@@ -925,7 +925,8 @@ var animations = {
925
925
  "slide-in-top": "slideInTop 0.2s ease-in-out forwards",
926
926
  "slide-in-bottom": "slideInBottom 0.2s ease-in-out forwards",
927
927
  "ping-sm": "pingSm 1s cubic-bezier(0, 0, 0.2, 1) infinite",
928
- "bg-scroll-br": "bgScrollBR 10s ease infinite"
928
+ "bg-scroll-br": "bgScrollBR 10s ease infinite",
929
+ "fade-in-rising": "fadeInRising 0.2s ease-in"
929
930
  },
930
931
  keyframes: {
931
932
  copy: {
@@ -969,6 +970,16 @@ var animations = {
969
970
  transform: "scale(1.5)",
970
971
  opacity: "0"
971
972
  }
973
+ },
974
+ fadeInRising: {
975
+ "0%": {
976
+ opacity: "0",
977
+ transform: "translateY(50px)"
978
+ },
979
+ "100%": {
980
+ opacity: "1",
981
+ transform: "translateY(0)"
982
+ }
972
983
  }
973
984
  }
974
985
  };