tailwind-ux-kit 1.0.62 → 1.0.63

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.
@@ -0,0 +1,18 @@
1
+ import { default as React } from 'react';
2
+ type BoxSize = "xs" | "sm" | "md" | "lg";
3
+ type Shape = "flat" | "rounded" | "pill";
4
+ type Variant = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "dark" | "light";
5
+ interface RadioButtonProps extends React.InputHTMLAttributes<HTMLInputElement> {
6
+ label?: React.ReactNode;
7
+ boxSize?: BoxSize;
8
+ shape?: Shape;
9
+ variant?: Variant;
10
+ selected?: boolean;
11
+ onSelectionChange?: (value: string) => void;
12
+ disabled?: boolean;
13
+ className?: string;
14
+ id?: string;
15
+ value: string;
16
+ }
17
+ declare const Radio: React.FC<RadioButtonProps>;
18
+ export default Radio;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwind-ux-kit",
3
- "version": "1.0.62",
3
+ "version": "1.0.63",
4
4
  "main": "lib/tailwind-ux-kit.es.js",
5
5
  "module": "lib/tailwind-ux-kit.umd.js",
6
6
  "types": "lib/tailwind-ux-kit.es.d.ts",