@ambuj.bhaskar/react-component-library 0.26.0-alpha → 0.27.0-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 +123 -123
- package/dist/index.d.ts +15 -3
- package/dist/index.js +10632 -10548
- package/dist/index.umd.js +116 -116
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1139,11 +1139,11 @@ export declare type ModalProps = {
|
|
|
1139
1139
|
|
|
1140
1140
|
export declare const MonthPicker: React.FC<MonthPickerProps>;
|
|
1141
1141
|
|
|
1142
|
-
declare type MonthPickerProps = {
|
|
1142
|
+
export declare type MonthPickerProps = {
|
|
1143
1143
|
size?: "s" | "m" | "l";
|
|
1144
1144
|
width?: CSSstring;
|
|
1145
|
-
onChange: (date: Date | null) => void;
|
|
1146
|
-
value?: Date | null;
|
|
1145
|
+
onChange: (date: [Date | null, Date | null] | null) => void;
|
|
1146
|
+
value?: [Date | null, Date | null] | null;
|
|
1147
1147
|
format?: string;
|
|
1148
1148
|
className?: string;
|
|
1149
1149
|
popupClassName?: string;
|
|
@@ -1485,4 +1485,16 @@ export declare const useToast: () => {
|
|
|
1485
1485
|
warning: (body: string) => void;
|
|
1486
1486
|
};
|
|
1487
1487
|
|
|
1488
|
+
export declare const WeekPicker: React.FC<WeekPickerProps>;
|
|
1489
|
+
|
|
1490
|
+
export declare type WeekPickerProps = {
|
|
1491
|
+
size?: "s" | "m" | "l";
|
|
1492
|
+
width?: CSSstring;
|
|
1493
|
+
onChange: (date: [Date | null, Date | null] | null) => void;
|
|
1494
|
+
value?: [Date | null, Date | null] | null;
|
|
1495
|
+
format?: string;
|
|
1496
|
+
className?: string;
|
|
1497
|
+
popupClassName?: string;
|
|
1498
|
+
};
|
|
1499
|
+
|
|
1488
1500
|
export { }
|