@trackunit/css-tailwind 0.0.71 → 0.0.73

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.71",
3
+ "version": "0.0.73",
4
4
  "main": "./index.cjs",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -10,10 +10,10 @@
10
10
  "type": "commonjs",
11
11
  "types": "./src/index.d.ts",
12
12
  "dependencies": {
13
- "@trackunit/css-component-tokens": "0.0.31",
14
- "@trackunit/css-core": "0.0.88",
15
- "@trackunit/css-tailwind-custom-properties-plugin": "0.0.23",
16
- "@trackunit/ui-design-tokens": "0.0.72"
13
+ "@trackunit/css-component-tokens": "0.0.32",
14
+ "@trackunit/css-core": "0.0.89",
15
+ "@trackunit/css-tailwind-custom-properties-plugin": "0.0.24",
16
+ "@trackunit/ui-design-tokens": "0.0.73"
17
17
  },
18
18
  "peerDependencies": {}
19
19
  }
@@ -926,9 +926,17 @@ var animations = {
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
928
  "bg-scroll-br": "bgScrollBR 10s ease infinite",
929
+ "modal-fade": "modalFade 0.3s ease-in-out 1 forwards",
929
930
  "fade-in-rising": "fadeInRising 0.2s ease-in"
930
931
  },
931
932
  keyframes: {
933
+ modalFade: {
934
+ from: {
935
+ opacity: "0",
936
+ visibility: "hidden"
937
+ },
938
+ to: { opacity: "1", visibility: "visible" }
939
+ },
932
940
  copy: {
933
941
  from: {
934
942
  color: "green",