@tecsinapse/cortex-react 1.16.0-beta.2 → 1.16.0-beta.4
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.
|
@@ -21,7 +21,7 @@ const menubar = tailwindVariants.tv({
|
|
|
21
21
|
const mostUsed = tailwindVariants.tv({
|
|
22
22
|
slots: {
|
|
23
23
|
container: "mb-kilo",
|
|
24
|
-
label: "font-bold mb-centi",
|
|
24
|
+
label: "font-bold mb-centi text-default",
|
|
25
25
|
containerList: "gap-x-kilo flex flex-row"
|
|
26
26
|
}
|
|
27
27
|
});
|
|
@@ -29,26 +29,26 @@ const mostUsedItem = tailwindVariants.tv({
|
|
|
29
29
|
slots: {
|
|
30
30
|
container: "flex-1 py-mili",
|
|
31
31
|
title: "text-primary-medium font-bold text-base",
|
|
32
|
-
category: "text-
|
|
32
|
+
category: "text-content-low text-label"
|
|
33
33
|
}
|
|
34
34
|
});
|
|
35
35
|
const item = tailwindVariants.tv({
|
|
36
36
|
slots: {
|
|
37
|
-
container: "flex flex-row gap-x-deca items-center text-
|
|
37
|
+
container: "flex flex-row gap-x-deca items-center text-content-medium hover:cursor-pointer text-base",
|
|
38
38
|
textBehavior: "hover:text-primary-medium",
|
|
39
39
|
icon: "text-primary-medium hover:cursor-pointer"
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
const category = tailwindVariants.tv({
|
|
43
43
|
slots: {
|
|
44
|
-
text: "mb-mili font-bold",
|
|
45
|
-
hr: "mb-mili border-0 h-px bg-
|
|
44
|
+
text: "mb-mili font-bold text-default",
|
|
45
|
+
hr: "mb-mili border-0 h-px bg-content-high",
|
|
46
46
|
container: "flex flex-col gap-y-mili"
|
|
47
47
|
}
|
|
48
48
|
});
|
|
49
49
|
const subItem = tailwindVariants.tv({
|
|
50
50
|
slots: {
|
|
51
|
-
container: "pl-deca text-sub border-l-[1px] border-primary-medium text-
|
|
51
|
+
container: "pl-deca text-sub border-l-[1px] border-primary-medium text-content-medium hover:text-primary-medium cursor-pointer"
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
const animate = tailwindVariants.tv({
|
|
@@ -19,7 +19,7 @@ const menubar = tv({
|
|
|
19
19
|
const mostUsed = tv({
|
|
20
20
|
slots: {
|
|
21
21
|
container: "mb-kilo",
|
|
22
|
-
label: "font-bold mb-centi",
|
|
22
|
+
label: "font-bold mb-centi text-default",
|
|
23
23
|
containerList: "gap-x-kilo flex flex-row"
|
|
24
24
|
}
|
|
25
25
|
});
|
|
@@ -27,26 +27,26 @@ const mostUsedItem = tv({
|
|
|
27
27
|
slots: {
|
|
28
28
|
container: "flex-1 py-mili",
|
|
29
29
|
title: "text-primary-medium font-bold text-base",
|
|
30
|
-
category: "text-
|
|
30
|
+
category: "text-content-low text-label"
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
33
|
const item = tv({
|
|
34
34
|
slots: {
|
|
35
|
-
container: "flex flex-row gap-x-deca items-center text-
|
|
35
|
+
container: "flex flex-row gap-x-deca items-center text-content-medium hover:cursor-pointer text-base",
|
|
36
36
|
textBehavior: "hover:text-primary-medium",
|
|
37
37
|
icon: "text-primary-medium hover:cursor-pointer"
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
40
|
const category = tv({
|
|
41
41
|
slots: {
|
|
42
|
-
text: "mb-mili font-bold",
|
|
43
|
-
hr: "mb-mili border-0 h-px bg-
|
|
42
|
+
text: "mb-mili font-bold text-default",
|
|
43
|
+
hr: "mb-mili border-0 h-px bg-content-high",
|
|
44
44
|
container: "flex flex-col gap-y-mili"
|
|
45
45
|
}
|
|
46
46
|
});
|
|
47
47
|
const subItem = tv({
|
|
48
48
|
slots: {
|
|
49
|
-
container: "pl-deca text-sub border-l-[1px] border-primary-medium text-
|
|
49
|
+
container: "pl-deca text-sub border-l-[1px] border-primary-medium text-content-medium hover:text-primary-medium cursor-pointer"
|
|
50
50
|
}
|
|
51
51
|
});
|
|
52
52
|
const animate = tv({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecsinapse/cortex-react",
|
|
3
|
-
"version": "1.16.0-beta.
|
|
3
|
+
"version": "1.16.0-beta.4",
|
|
4
4
|
"description": "React components based in @tecsinapse/cortex-core",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@floating-ui/react": "^0.26.18",
|
|
22
22
|
"@internationalized/date": "3.7.0",
|
|
23
|
-
"@tecsinapse/cortex-core": "1.3.0-beta.
|
|
23
|
+
"@tecsinapse/cortex-core": "1.3.0-beta.4",
|
|
24
24
|
"clsx": "2.1.1",
|
|
25
25
|
"currency.js": "2.0.4",
|
|
26
26
|
"embla-carousel-autoplay": "^8.0.0",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"react-icons": ">=5.2.0",
|
|
49
49
|
"tailwind": ">=3.3.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "b874e5cbb323a24981bb9d6e2e1f1d2ccf454b0a"
|
|
52
52
|
}
|