@esic-lab/data-core-ui 0.0.35 → 0.0.37
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.cjs +4084 -0
- package/dist/index.d.cts +573 -0
- package/dist/index.d.mts +1 -63
- package/dist/index.d.ts +1 -63
- package/dist/index.js +242 -988
- package/dist/index.mjs +225 -990
- package/package.json +2 -10
package/dist/index.d.ts
CHANGED
|
@@ -256,68 +256,6 @@ interface InputFieldNumberProps {
|
|
|
256
256
|
}
|
|
257
257
|
declare function InputFieldNumber({ value, onChange, placeholder, label, required, disabled, error, addonBefore, addonAfter, defaultValue, className, max, min, controls, size, changeOnWheel, formatter, parser, }: InputFieldNumberProps): react_jsx_runtime.JSX.Element;
|
|
258
258
|
|
|
259
|
-
interface DatePickerBasicProps {
|
|
260
|
-
value: Date | null;
|
|
261
|
-
onChange: (day: Date | null) => void;
|
|
262
|
-
required?: boolean;
|
|
263
|
-
label?: string;
|
|
264
|
-
error?: string;
|
|
265
|
-
placeholder?: string;
|
|
266
|
-
disabled?: boolean;
|
|
267
|
-
defaultValue?: Date | null;
|
|
268
|
-
mode?: "time" | "date" | "month";
|
|
269
|
-
minDate?: Date;
|
|
270
|
-
maxDate?: Date;
|
|
271
|
-
disabledDate?: (currentDate: Date) => boolean;
|
|
272
|
-
className?: string;
|
|
273
|
-
size?: "small" | "middle" | "large";
|
|
274
|
-
}
|
|
275
|
-
declare function DatePickerBasic({ value, onChange, required, label, error, placeholder, disabled, defaultValue, minDate, maxDate, disabledDate, className, size, }: DatePickerBasicProps): react_jsx_runtime.JSX.Element;
|
|
276
|
-
|
|
277
|
-
interface DatePickerRangePickerProps {
|
|
278
|
-
value: [Date | null, Date | null] | null;
|
|
279
|
-
onChange: (val: [Date | null, Date | null] | null) => void;
|
|
280
|
-
placeholder?: [string, string];
|
|
281
|
-
label?: string;
|
|
282
|
-
required?: boolean;
|
|
283
|
-
error?: string;
|
|
284
|
-
disabled?: boolean;
|
|
285
|
-
defaultValue?: [Date, Date] | null;
|
|
286
|
-
mode?: "time" | "date" | "month";
|
|
287
|
-
minDate?: Date | undefined;
|
|
288
|
-
maxDate?: Date | undefined;
|
|
289
|
-
disabledDate?: (currentDate: Date) => boolean;
|
|
290
|
-
size?: "small" | "middle" | "large";
|
|
291
|
-
className?: string;
|
|
292
|
-
onOpenChange?: (open: boolean) => void;
|
|
293
|
-
onCalendarChange?: (dates: [Date | null, Date | null], dateStrings: [string, string], info: any) => void;
|
|
294
|
-
}
|
|
295
|
-
declare function DatePickerRangePicker({ value, onChange, placeholder, label, required, error, disabled, minDate, maxDate, disabledDate, size, className, onOpenChange, onCalendarChange, }: DatePickerRangePickerProps): react_jsx_runtime.JSX.Element;
|
|
296
|
-
|
|
297
|
-
interface TimePickerBasicProps {
|
|
298
|
-
value: Date | null;
|
|
299
|
-
onChange: (time: Date | null) => void;
|
|
300
|
-
required?: boolean;
|
|
301
|
-
label?: string;
|
|
302
|
-
error?: string;
|
|
303
|
-
placeholder?: string;
|
|
304
|
-
disabled?: boolean;
|
|
305
|
-
className?: string;
|
|
306
|
-
}
|
|
307
|
-
declare function TimePickerBasic({ value, onChange, required, label, error, placeholder, disabled, className, }: TimePickerBasicProps): react_jsx_runtime.JSX.Element;
|
|
308
|
-
|
|
309
|
-
interface TimePickerRangePickerProps {
|
|
310
|
-
value: [Date | null, Date | null] | null;
|
|
311
|
-
onChange: (val: [Date | null, Date | null] | null) => void;
|
|
312
|
-
placeholder?: [string, string];
|
|
313
|
-
label?: string;
|
|
314
|
-
required?: boolean;
|
|
315
|
-
error?: string;
|
|
316
|
-
disabled?: boolean;
|
|
317
|
-
className?: string;
|
|
318
|
-
}
|
|
319
|
-
declare function TimePickerRangePicker({ value, onChange, placeholder, label, required, error, disabled, className, }: TimePickerRangePickerProps): react_jsx_runtime.JSX.Element;
|
|
320
|
-
|
|
321
259
|
interface ColorPickerProps {
|
|
322
260
|
value: string | null;
|
|
323
261
|
onChange?: (color: Color, hex: string) => void;
|
|
@@ -570,4 +508,4 @@ declare const FilterPopUp: (filter: {
|
|
|
570
508
|
handleSearch: (listFiler: string[]) => void;
|
|
571
509
|
}) => react_jsx_runtime.JSX.Element;
|
|
572
510
|
|
|
573
|
-
export { AntDModal, AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable,
|
|
511
|
+
export { AntDModal, AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, FileUploader, FilterPopUp, GhostButton, HeadingPage, Indicator, InputField, InputFieldNumber, KpiSection, Loader, MenuNavBar, type MenuNavBarProps, PrimaryButton, ProgressBar, Radio, RadioGroup, SecondaryButton, SelectCustom, SelectField, SelectFieldGroup, SelectFieldStatus, SelectFieldStatusReport, SelectFieldTag, Sidebar, SortFilter, Switch, SwitchSelect, TabSelectionButton, TextAreaInput, TextInput, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
|