ui-mathilde-web 0.1.13 → 0.1.15
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/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +15 -0
- package/dist/ui-mathilde-web.js +5091 -5133
- package/dist/ui-mathilde-web.umd.cjs +42 -65
- package/package.json +1 -1
|
@@ -83,7 +83,14 @@ export declare const DatePicker: ({ minDate, maxDate, }: {
|
|
|
83
83
|
export declare const DateRangePicker: React.FC<DateRangePickerProps>;
|
|
84
84
|
|
|
85
85
|
declare interface DateRangePickerProps {
|
|
86
|
+
value?: {
|
|
87
|
+
startDate: Date;
|
|
88
|
+
endDate: Date;
|
|
89
|
+
};
|
|
86
90
|
onChange?: (start: Date, end: Date) => void;
|
|
91
|
+
minData?: Date;
|
|
92
|
+
maxData?: Date;
|
|
93
|
+
quickRanges?: QuickRange[];
|
|
87
94
|
}
|
|
88
95
|
|
|
89
96
|
export declare const Dropzone: React.FC<DropzoneProps>;
|
|
@@ -185,6 +192,14 @@ export declare const ProgressBar: ({ start, end, current, }: {
|
|
|
185
192
|
current: number;
|
|
186
193
|
}) => JSX_2.Element;
|
|
187
194
|
|
|
195
|
+
declare interface QuickRange {
|
|
196
|
+
label: string;
|
|
197
|
+
range: () => {
|
|
198
|
+
startDate: Date;
|
|
199
|
+
endDate: Date;
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
|
|
188
203
|
export declare const SelectForm: ForwardRefExoticComponent<SelectFormProps & RefAttributes<HTMLSelectElement>>;
|
|
189
204
|
|
|
190
205
|
declare interface SelectFormProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
|