@reeverdev/ui 0.2.229 → 0.2.230
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/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -508,6 +508,7 @@ declare const ContextMenuShortcut: {
|
|
|
508
508
|
displayName: string;
|
|
509
509
|
};
|
|
510
510
|
|
|
511
|
+
type RadioColor = "default" | "secondary" | "success" | "warning" | "danger";
|
|
511
512
|
interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
512
513
|
value?: string;
|
|
513
514
|
defaultValue?: string;
|
|
@@ -517,7 +518,7 @@ interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
|
|
|
517
518
|
required?: boolean;
|
|
518
519
|
orientation?: "horizontal" | "vertical";
|
|
519
520
|
size?: "sm" | "md" | "lg";
|
|
520
|
-
color?:
|
|
521
|
+
color?: RadioColor | string;
|
|
521
522
|
}
|
|
522
523
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
523
524
|
interface RadioProps extends Omit<React$1.HTMLAttributes<HTMLLabelElement>, "value"> {
|
package/dist/index.d.ts
CHANGED
|
@@ -508,6 +508,7 @@ declare const ContextMenuShortcut: {
|
|
|
508
508
|
displayName: string;
|
|
509
509
|
};
|
|
510
510
|
|
|
511
|
+
type RadioColor = "default" | "secondary" | "success" | "warning" | "danger";
|
|
511
512
|
interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
512
513
|
value?: string;
|
|
513
514
|
defaultValue?: string;
|
|
@@ -517,7 +518,7 @@ interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
|
|
|
517
518
|
required?: boolean;
|
|
518
519
|
orientation?: "horizontal" | "vertical";
|
|
519
520
|
size?: "sm" | "md" | "lg";
|
|
520
|
-
color?:
|
|
521
|
+
color?: RadioColor | string;
|
|
521
522
|
}
|
|
522
523
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
523
524
|
interface RadioProps extends Omit<React$1.HTMLAttributes<HTMLLabelElement>, "value"> {
|