@ambuj.bhaskar/react-component-library 0.26.1-alpha → 0.28.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/index.d.ts CHANGED
@@ -1139,7 +1139,7 @@ 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
1145
  onChange: (date: [Date | null, Date | null] | null) => void;
@@ -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 { }