@tecsinapse/cortex-core 1.2.0-beta.11 → 1.2.0-beta.13

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.
Files changed (2) hide show
  1. package/dist/default.css +43 -12
  2. package/package.json +2 -2
package/dist/default.css CHANGED
@@ -133,16 +133,47 @@
133
133
  --color-text-dark: #353231;
134
134
  --color-text-orange: #f89907;
135
135
 
136
- /* Z-index */
137
- --z-default: 0;
138
- --z-absolute: 1;
139
- --z-select: 20;
140
- --z-input: 20;
141
- --z-popover: 30;
142
- --z-tooltip: 40;
143
- --z-header: 600;
144
- --z-backdrop: 700;
145
- --z-drawer: 700;
146
- --z-sidebar: 800;
147
- --z-modal: 1000;
136
+ /* Z-index - CORRIGIDO: prefixo --z-index-* para funcionar como classes */
137
+ --z-index-default: 0;
138
+ --z-index-absolute: 1;
139
+ --z-index-select: 20;
140
+ --z-index-input: 20;
141
+ --z-index-popover: 30;
142
+ --z-index-tooltip: 40;
143
+ --z-index-header: 600;
144
+ --z-index-backdrop: 700;
145
+ --z-index-drawer: 700;
146
+ --z-index-sidebar: 800;
147
+ --z-index-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.11",
3
+ "version": "1.2.0-beta.13",
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": "602490b0038907a0965283c460819443043ca692"
37
+ "gitHead": "9704085b4fdacaca51fa32376291220a01e394c5"
38
38
  }