@krosoft/react 0.0.264 → 0.0.265
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/dist/tailwind/index.d.ts
CHANGED
|
@@ -164,11 +164,22 @@ declare const krosoftPreset: {
|
|
|
164
164
|
transform: string;
|
|
165
165
|
};
|
|
166
166
|
};
|
|
167
|
+
"fade-in": {
|
|
168
|
+
from: {
|
|
169
|
+
opacity: string;
|
|
170
|
+
transform: string;
|
|
171
|
+
};
|
|
172
|
+
to: {
|
|
173
|
+
opacity: string;
|
|
174
|
+
transform: string;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
167
177
|
};
|
|
168
178
|
animation: {
|
|
169
179
|
"accordion-down": string;
|
|
170
180
|
"accordion-up": string;
|
|
171
181
|
progress: string;
|
|
182
|
+
"fade-in": string;
|
|
172
183
|
};
|
|
173
184
|
};
|
|
174
185
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tailwind/index.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;GAUG;AACH,eAAO,MAAM,cAAc,UAAiD,CAAC;AAE7E;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tailwind/index.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;GAUG;AACH,eAAO,MAAM,cAAc,UAAiD,CAAC;AAE7E;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6JQ,CAAC;AAE5B,eAAe,aAAa,CAAC"}
|
package/dist/tailwind/index.js
CHANGED
|
@@ -112,12 +112,23 @@ var t = ["./node_modules/@krosoft/react/dist/**/*.js"], n = {
|
|
|
112
112
|
progress: {
|
|
113
113
|
"0%": { transform: "translateX(-100%)" },
|
|
114
114
|
"100%": { transform: "translateX(100%)" }
|
|
115
|
+
},
|
|
116
|
+
"fade-in": {
|
|
117
|
+
from: {
|
|
118
|
+
opacity: "0",
|
|
119
|
+
transform: "translateY(10px)"
|
|
120
|
+
},
|
|
121
|
+
to: {
|
|
122
|
+
opacity: "1",
|
|
123
|
+
transform: "translateY(0)"
|
|
124
|
+
}
|
|
115
125
|
}
|
|
116
126
|
},
|
|
117
127
|
animation: {
|
|
118
128
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
119
129
|
"accordion-up": "accordion-up 0.2s ease-out",
|
|
120
|
-
progress: "progress 1.5s ease-in-out infinite"
|
|
130
|
+
progress: "progress 1.5s ease-in-out infinite",
|
|
131
|
+
"fade-in": "fade-in 0.3s ease-out"
|
|
121
132
|
}
|
|
122
133
|
}
|
|
123
134
|
},
|