@tecsinapse/cortex-core 1.2.0-beta.11 → 1.2.0-beta.12
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/default.css +31 -0
- package/package.json +2 -2
package/dist/default.css
CHANGED
|
@@ -145,4 +145,35 @@
|
|
|
145
145
|
--z-drawer: 700;
|
|
146
146
|
--z-sidebar: 800;
|
|
147
147
|
--z-modal: 1000;
|
|
148
|
+
|
|
149
|
+
/* Opacity customizada */
|
|
150
|
+
--opacity-1: 1;
|
|
151
|
+
|
|
152
|
+
/* Duration customizada */
|
|
153
|
+
--duration-250: 250ms;
|
|
154
|
+
|
|
155
|
+
/* Animações customizadas */
|
|
156
|
+
--animate-opacity: opacity 1s ease-in-out;
|
|
157
|
+
--animate-progress: progress 1s infinite linear;
|
|
158
|
+
|
|
159
|
+
/* Transform origin customizado */
|
|
160
|
+
--transform-origin-left-right: 0% 50%;
|
|
161
|
+
|
|
162
|
+
/* Keyframes */
|
|
163
|
+
@keyframes opacity {
|
|
164
|
+
from { opacity: 0; }
|
|
165
|
+
to { opacity: 1; }
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@keyframes progress {
|
|
169
|
+
0% { transform: translateX(0) scaleX(0); }
|
|
170
|
+
40% { transform: translateX(0) scaleX(0.4); }
|
|
171
|
+
100% { transform: translateX(100%) scaleX(0.5); }
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
@layer utilities {
|
|
176
|
+
.origin-left-right {
|
|
177
|
+
transform-origin: var(--transform-origin-left-right);
|
|
178
|
+
}
|
|
148
179
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecsinapse/cortex-core",
|
|
3
|
-
"version": "1.2.0-beta.
|
|
3
|
+
"version": "1.2.0-beta.12",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Core library for tailwindcss based design",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"tailwindcss": "^4.1.16"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "c58714213817635c3f432931f4a1dc4b74106d9e"
|
|
38
38
|
}
|