xertica-ui 1.4.8 → 1.4.9
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 +1 -1
- package/templates/index.css +19 -1
- package/templates/package.json +2 -2
package/package.json
CHANGED
package/templates/index.css
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
@import 'xertica-ui/style.css';
|
|
8
8
|
|
|
9
9
|
/* Tell Tailwind v4 to scan xertica-ui for class names */
|
|
10
|
-
@source '
|
|
10
|
+
@source './node_modules/xertica-ui';
|
|
11
11
|
|
|
12
12
|
@theme {
|
|
13
13
|
--shadow-elevation-sm: 0px 0px 48px 0px rgba(0, 0, 0, 0.1);
|
|
@@ -44,4 +44,22 @@
|
|
|
44
44
|
--radius-lg: var(--radius);
|
|
45
45
|
--radius-md: calc(var(--radius) - 2px);
|
|
46
46
|
--radius-sm: calc(var(--radius) - 4px);
|
|
47
|
+
|
|
48
|
+
/* Animations for shadcn/ui */
|
|
49
|
+
--animate-in: enter 200ms ease-out;
|
|
50
|
+
--animate-out: exit 200ms ease-in;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@keyframes enter {
|
|
54
|
+
from {
|
|
55
|
+
opacity: var(--tw-enter-opacity, 1);
|
|
56
|
+
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@keyframes exit {
|
|
61
|
+
to {
|
|
62
|
+
opacity: var(--tw-exit-opacity, 1);
|
|
63
|
+
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
|
64
|
+
}
|
|
47
65
|
}
|
package/templates/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type-check": "tsc --noEmit"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"xertica-ui": "^1.4.
|
|
14
|
+
"xertica-ui": "^1.4.9",
|
|
15
15
|
"react": "^18.3.1",
|
|
16
16
|
"react-dom": "^18.3.1",
|
|
17
17
|
"react-router-dom": "^7.1.3",
|
|
@@ -37,4 +37,4 @@
|
|
|
37
37
|
"autoprefixer": "^10.4.20",
|
|
38
38
|
"postcss": "^8.4.49"
|
|
39
39
|
}
|
|
40
|
-
}
|
|
40
|
+
}
|