@reeverdev/ui 0.1.45 → 0.1.47
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 +20 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2694,6 +2694,11 @@ interface NumberFieldProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEle
|
|
|
2694
2694
|
onChange?: (value: number | undefined) => void;
|
|
2695
2695
|
showButtons?: boolean;
|
|
2696
2696
|
formatOptions?: Intl.NumberFormatOptions;
|
|
2697
|
+
/**
|
|
2698
|
+
* Whether the input should take full width
|
|
2699
|
+
* @default false
|
|
2700
|
+
*/
|
|
2701
|
+
fullWidth?: boolean;
|
|
2697
2702
|
}
|
|
2698
2703
|
declare const NumberField: React$1.ForwardRefExoticComponent<NumberFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2699
2704
|
|
|
@@ -2740,6 +2745,11 @@ interface DateFieldProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
2740
2745
|
maxDate?: Date;
|
|
2741
2746
|
dateFormat?: string;
|
|
2742
2747
|
showIcon?: boolean;
|
|
2748
|
+
/**
|
|
2749
|
+
* Whether the input should take full width
|
|
2750
|
+
* @default false
|
|
2751
|
+
*/
|
|
2752
|
+
fullWidth?: boolean;
|
|
2743
2753
|
}
|
|
2744
2754
|
declare const DateField: React$1.ForwardRefExoticComponent<DateFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2745
2755
|
|
|
@@ -2769,6 +2779,11 @@ interface TimeFieldProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "o
|
|
|
2769
2779
|
showSeconds?: boolean;
|
|
2770
2780
|
hourCycle?: 12 | 24;
|
|
2771
2781
|
disabled?: boolean;
|
|
2782
|
+
/**
|
|
2783
|
+
* Whether the input should take full width
|
|
2784
|
+
* @default false
|
|
2785
|
+
*/
|
|
2786
|
+
fullWidth?: boolean;
|
|
2772
2787
|
}
|
|
2773
2788
|
declare const TimeField: React$1.ForwardRefExoticComponent<TimeFieldProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2774
2789
|
|
|
@@ -2791,6 +2806,11 @@ interface ColorFieldProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElem
|
|
|
2791
2806
|
showSwatch?: boolean;
|
|
2792
2807
|
showPicker?: boolean;
|
|
2793
2808
|
allowAlpha?: boolean;
|
|
2809
|
+
/**
|
|
2810
|
+
* Whether the input should take full width
|
|
2811
|
+
* @default false
|
|
2812
|
+
*/
|
|
2813
|
+
fullWidth?: boolean;
|
|
2794
2814
|
}
|
|
2795
2815
|
declare const ColorField: React$1.ForwardRefExoticComponent<ColorFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2796
2816
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2694,6 +2694,11 @@ interface NumberFieldProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEle
|
|
|
2694
2694
|
onChange?: (value: number | undefined) => void;
|
|
2695
2695
|
showButtons?: boolean;
|
|
2696
2696
|
formatOptions?: Intl.NumberFormatOptions;
|
|
2697
|
+
/**
|
|
2698
|
+
* Whether the input should take full width
|
|
2699
|
+
* @default false
|
|
2700
|
+
*/
|
|
2701
|
+
fullWidth?: boolean;
|
|
2697
2702
|
}
|
|
2698
2703
|
declare const NumberField: React$1.ForwardRefExoticComponent<NumberFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2699
2704
|
|
|
@@ -2740,6 +2745,11 @@ interface DateFieldProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
2740
2745
|
maxDate?: Date;
|
|
2741
2746
|
dateFormat?: string;
|
|
2742
2747
|
showIcon?: boolean;
|
|
2748
|
+
/**
|
|
2749
|
+
* Whether the input should take full width
|
|
2750
|
+
* @default false
|
|
2751
|
+
*/
|
|
2752
|
+
fullWidth?: boolean;
|
|
2743
2753
|
}
|
|
2744
2754
|
declare const DateField: React$1.ForwardRefExoticComponent<DateFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2745
2755
|
|
|
@@ -2769,6 +2779,11 @@ interface TimeFieldProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "o
|
|
|
2769
2779
|
showSeconds?: boolean;
|
|
2770
2780
|
hourCycle?: 12 | 24;
|
|
2771
2781
|
disabled?: boolean;
|
|
2782
|
+
/**
|
|
2783
|
+
* Whether the input should take full width
|
|
2784
|
+
* @default false
|
|
2785
|
+
*/
|
|
2786
|
+
fullWidth?: boolean;
|
|
2772
2787
|
}
|
|
2773
2788
|
declare const TimeField: React$1.ForwardRefExoticComponent<TimeFieldProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2774
2789
|
|
|
@@ -2791,6 +2806,11 @@ interface ColorFieldProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElem
|
|
|
2791
2806
|
showSwatch?: boolean;
|
|
2792
2807
|
showPicker?: boolean;
|
|
2793
2808
|
allowAlpha?: boolean;
|
|
2809
|
+
/**
|
|
2810
|
+
* Whether the input should take full width
|
|
2811
|
+
* @default false
|
|
2812
|
+
*/
|
|
2813
|
+
fullWidth?: boolean;
|
|
2794
2814
|
}
|
|
2795
2815
|
declare const ColorField: React$1.ForwardRefExoticComponent<ColorFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2796
2816
|
|