@ambuj.bhaskar/react-component-library 0.28.1-alpha → 0.28.3-alpha
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/assets/index.css +1 -1
- package/dist/index.cjs +68 -68
- package/dist/index.d.ts +13 -0
- package/dist/index.js +4381 -4353
- package/dist/index.umd.js +81 -81
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -770,6 +770,19 @@ declare type CustomOption = {
|
|
|
770
770
|
|
|
771
771
|
declare type DateCompare = (() => boolean) | ((current: any) => boolean);
|
|
772
772
|
|
|
773
|
+
export declare const DatePicker: React.FC<DatePickerProps>;
|
|
774
|
+
|
|
775
|
+
export declare type DatePickerProps = {
|
|
776
|
+
size?: "s" | "m" | "l";
|
|
777
|
+
width?: CSSstring;
|
|
778
|
+
onChange: (date: Date | null) => void;
|
|
779
|
+
value?: Date | null;
|
|
780
|
+
format?: string;
|
|
781
|
+
className?: string;
|
|
782
|
+
popupClassName?: string;
|
|
783
|
+
allowClear?: boolean;
|
|
784
|
+
};
|
|
785
|
+
|
|
773
786
|
export declare const DateRangePicker: default_2.FC<DateRangePickerProps>;
|
|
774
787
|
|
|
775
788
|
export declare type DateRangePickerProps = {
|