@tecsinapse/cortex-core 0.1.2 → 0.1.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.
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
var tailwindVariants = require('tailwind-variants');
|
|
4
4
|
|
|
5
5
|
const radioButton = tailwindVariants.tv({
|
|
6
|
-
base: "accent-
|
|
6
|
+
base: "accent-orange-600 h-5 w-5 cursor-pointer peer"
|
|
7
7
|
});
|
|
8
8
|
const labelRadioButton = tailwindVariants.tv({
|
|
9
|
-
base: "cursor-pointer"
|
|
9
|
+
base: "cursor-pointer peer-checked:font-bold"
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
exports.labelRadioButton = labelRadioButton;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { tv } from 'tailwind-variants';
|
|
2
2
|
|
|
3
3
|
const radioButton = tv({
|
|
4
|
-
base: "accent-
|
|
4
|
+
base: "accent-orange-600 h-5 w-5 cursor-pointer peer"
|
|
5
5
|
});
|
|
6
6
|
const labelRadioButton = tv({
|
|
7
|
-
base: "cursor-pointer"
|
|
7
|
+
base: "cursor-pointer peer-checked:font-bold"
|
|
8
8
|
});
|
|
9
9
|
|
|
10
10
|
export { labelRadioButton, radioButton };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const radioButton: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "accent-
|
|
2
|
-
export declare const labelRadioButton: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "cursor-pointer", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "cursor-pointer", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
1
|
+
export declare const radioButton: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "accent-orange-600 h-5 w-5 cursor-pointer peer", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "accent-orange-600 h-5 w-5 cursor-pointer peer", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
2
|
+
export declare const labelRadioButton: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "cursor-pointer peer-checked:font-bold", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "cursor-pointer peer-checked:font-bold", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecsinapse/cortex-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"tailwind-merge": "^2.0.0",
|
|
21
21
|
"tailwind-variants": "^0.1.18"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "4de80f030078d995895dd12c0f405e2a3377fb56"
|
|
24
24
|
}
|