@reeverdev/ui 0.2.229 → 0.2.231
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 +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +6 -6
- 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"> {
|
|
@@ -587,6 +588,7 @@ interface SliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
|
|
|
587
588
|
step?: number;
|
|
588
589
|
disabled?: boolean;
|
|
589
590
|
orientation?: "horizontal" | "vertical";
|
|
591
|
+
trackColor?: "primary" | "success" | "warning" | "danger" | string;
|
|
590
592
|
name?: string;
|
|
591
593
|
}
|
|
592
594
|
declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -3206,7 +3208,7 @@ interface RangeSliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
3206
3208
|
disabled?: boolean;
|
|
3207
3209
|
showLabels?: boolean;
|
|
3208
3210
|
formatLabel?: (value: number) => string;
|
|
3209
|
-
trackColor?: "primary" | "success" | "warning" | "danger";
|
|
3211
|
+
trackColor?: "primary" | "success" | "warning" | "danger" | string;
|
|
3210
3212
|
name?: string;
|
|
3211
3213
|
}
|
|
3212
3214
|
declare const RangeSlider: React$1.ForwardRefExoticComponent<RangeSliderProps & React$1.RefAttributes<HTMLDivElement>>;
|
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"> {
|
|
@@ -587,6 +588,7 @@ interface SliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
|
|
|
587
588
|
step?: number;
|
|
588
589
|
disabled?: boolean;
|
|
589
590
|
orientation?: "horizontal" | "vertical";
|
|
591
|
+
trackColor?: "primary" | "success" | "warning" | "danger" | string;
|
|
590
592
|
name?: string;
|
|
591
593
|
}
|
|
592
594
|
declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -3206,7 +3208,7 @@ interface RangeSliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
3206
3208
|
disabled?: boolean;
|
|
3207
3209
|
showLabels?: boolean;
|
|
3208
3210
|
formatLabel?: (value: number) => string;
|
|
3209
|
-
trackColor?: "primary" | "success" | "warning" | "danger";
|
|
3211
|
+
trackColor?: "primary" | "success" | "warning" | "danger" | string;
|
|
3210
3212
|
name?: string;
|
|
3211
3213
|
}
|
|
3212
3214
|
declare const RangeSlider: React$1.ForwardRefExoticComponent<RangeSliderProps & React$1.RefAttributes<HTMLDivElement>>;
|