@ambuj.bhaskar/react-component-library 0.25.7-alpha → 0.26.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/README.md +34 -34
- package/bin/cli.js +87 -87
- package/dist/assets/index.css +1 -1
- package/dist/index.cjs +311 -311
- package/dist/index.d.ts +12 -0
- package/dist/index.js +54510 -54480
- package/dist/index.umd.js +312 -312
- package/package.json +102 -102
package/dist/index.d.ts
CHANGED
|
@@ -1137,6 +1137,18 @@ export declare type ModalProps = {
|
|
|
1137
1137
|
children: React.ReactNode;
|
|
1138
1138
|
};
|
|
1139
1139
|
|
|
1140
|
+
export declare const MonthPicker: React.FC<MonthPickerProps>;
|
|
1141
|
+
|
|
1142
|
+
declare type MonthPickerProps = {
|
|
1143
|
+
size?: "s" | "m" | "l";
|
|
1144
|
+
width?: CSSstring;
|
|
1145
|
+
onChange: (date: Date | null) => void;
|
|
1146
|
+
value?: Date | null;
|
|
1147
|
+
format?: string;
|
|
1148
|
+
className?: string;
|
|
1149
|
+
popupClassName?: string;
|
|
1150
|
+
};
|
|
1151
|
+
|
|
1140
1152
|
export declare const Multiselect: default_2.FC<MultiselectProps>;
|
|
1141
1153
|
|
|
1142
1154
|
export declare type MultiselectProps = {
|