@esic-lab/data-core-ui 0.0.36 → 0.0.38

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.
@@ -0,0 +1,529 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import react, { ReactNode } from 'react';
3
+ import * as antd_es_table_interface from 'antd/es/table/interface';
4
+ import { ColumnsType, TableProps } from 'antd/es/table';
5
+ import { EventSourceInput } from '@fullcalendar/core';
6
+ import { InputNumberProps, SelectProps } from 'antd';
7
+ import { Color } from 'antd/es/color-picker';
8
+ import { MessageInstance } from 'antd/es/message/interface';
9
+ import { ItemType } from 'antd/es/breadcrumb/Breadcrumb';
10
+
11
+ type ColorScale = 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
12
+ type BaseColor = "primary" | "gray" | "green" | "red" | "yellow" | "blue";
13
+ type ThemeColor = `bg-${BaseColor}-${ColorScale}`;
14
+ interface PrimaryButtonProps {
15
+ title: string;
16
+ onClick: () => void;
17
+ iconLeft?: React.ReactNode;
18
+ iconRight?: React.ReactNode;
19
+ bgColor?: ThemeColor;
20
+ textColor?: "white" | "black";
21
+ disabled?: boolean;
22
+ }
23
+ declare function PrimaryButton({ title, onClick, iconLeft, iconRight, bgColor, textColor, disabled, }: PrimaryButtonProps): react_jsx_runtime.JSX.Element;
24
+
25
+ interface SecondaryButtonProps {
26
+ title: string;
27
+ onClick: () => void;
28
+ iconLeft?: React.ReactNode;
29
+ iconRight?: React.ReactNode;
30
+ disabled?: boolean;
31
+ }
32
+ declare function SecondaryButton({ title, onClick, iconLeft, iconRight, disabled }: SecondaryButtonProps): react_jsx_runtime.JSX.Element;
33
+
34
+ interface GhostButtonProps {
35
+ title: string;
36
+ onClick: () => void;
37
+ iconLeft?: React.ReactNode;
38
+ iconRight?: React.ReactNode;
39
+ disabled?: boolean;
40
+ }
41
+ declare function GhostButton({ title, onClick, iconLeft, iconRight, disabled }: GhostButtonProps): react_jsx_runtime.JSX.Element;
42
+
43
+ interface Title {
44
+ path: string;
45
+ name: string;
46
+ }
47
+ interface ParamTabSelection {
48
+ title: Title[];
49
+ now: string;
50
+ onClickGoto: (path: string) => void;
51
+ }
52
+ declare const TabSelectionButton: ({ title, now, onClickGoto }: ParamTabSelection) => react_jsx_runtime.JSX.Element;
53
+
54
+ interface LoaderProps {
55
+ size?: number;
56
+ color?: string;
57
+ }
58
+ declare function Loader({ size, color }: LoaderProps): react_jsx_runtime.JSX.Element;
59
+
60
+ interface CheckboxProps {
61
+ label?: string;
62
+ checked: boolean;
63
+ onChange: (checked: boolean) => void;
64
+ disabled?: boolean;
65
+ }
66
+ declare function Checkbox({ label, checked, onChange, disabled }: CheckboxProps): react_jsx_runtime.JSX.Element;
67
+
68
+ interface CheckboxOption {
69
+ checked: boolean;
70
+ label: string;
71
+ disabled?: boolean;
72
+ }
73
+ interface CheckboxGroupProps {
74
+ options: CheckboxOption[];
75
+ onChange: (label: string) => void;
76
+ alignment?: "horizontal" | "vertical";
77
+ }
78
+ declare function CheckboxGroup({ options, onChange, alignment }: CheckboxGroupProps): react_jsx_runtime.JSX.Element;
79
+
80
+ interface RadioProps {
81
+ selected: boolean;
82
+ onChange: (selected: boolean) => void;
83
+ disabled?: boolean;
84
+ }
85
+ declare function Radio({ selected, onChange, disabled }: RadioProps): react_jsx_runtime.JSX.Element;
86
+
87
+ interface RadioOption {
88
+ value: string;
89
+ label: string;
90
+ disabled?: boolean;
91
+ }
92
+ interface RadioGroupProps {
93
+ options: RadioOption[];
94
+ value: string;
95
+ onChange: (value: string) => void;
96
+ alignment?: "vertical" | "horizontal";
97
+ }
98
+ declare function RadioGroup({ options, value, onChange, alignment }: RadioGroupProps): react_jsx_runtime.JSX.Element;
99
+
100
+ interface SwitchProps {
101
+ label?: string;
102
+ checked: boolean;
103
+ onChange: (checked: boolean) => void;
104
+ disabled?: boolean;
105
+ }
106
+ declare function Switch({ label, checked, onChange, disabled }: SwitchProps): react_jsx_runtime.JSX.Element;
107
+
108
+ interface SwitchSelectProp {
109
+ option: {
110
+ value: string;
111
+ label: string;
112
+ }[];
113
+ value: string | number;
114
+ label: string;
115
+ color?: string;
116
+ required?: boolean;
117
+ onClick: (active: string) => void;
118
+ }
119
+ declare function SwitchSelect({ option, onClick, value, label, required, color, }: SwitchSelectProp): react_jsx_runtime.JSX.Element;
120
+
121
+ interface Menu {
122
+ title: string;
123
+ subMenus: {
124
+ title: string;
125
+ icon?: React.ReactNode | React.ReactElement;
126
+ iconActive?: React.ReactNode | React.ReactElement;
127
+ path: string;
128
+ customNode?: React.ReactNode | React.ReactElement;
129
+ }[];
130
+ }
131
+ interface MenuNavBarProps {
132
+ menus: Menu[];
133
+ onClick: (path: string) => void;
134
+ }
135
+ declare function MenuNavBar({ menus, onClick }: MenuNavBarProps): react_jsx_runtime.JSX.Element;
136
+
137
+ interface SidebarProps {
138
+ children: React.ReactNode;
139
+ logo?: string;
140
+ }
141
+ interface Sidebar {
142
+ icon: React.ReactNode;
143
+ iconHover?: React.ReactNode;
144
+ text: string;
145
+ disabled?: boolean;
146
+ }
147
+ declare function Sidebar({ children, logo }: SidebarProps): react_jsx_runtime.JSX.Element;
148
+
149
+ interface TopNavBarProps {
150
+ onClickNoti: () => void;
151
+ logo?: React.ReactNode;
152
+ }
153
+ declare function TopNavBar({ onClickNoti, logo }: TopNavBarProps): react_jsx_runtime.JSX.Element;
154
+
155
+ interface Column<T> {
156
+ header: string;
157
+ accessor: keyof T | ((row: T) => react.ReactNode);
158
+ sortable?: boolean;
159
+ }
160
+ interface DataTableProps<T> {
161
+ columns: Column<T>[];
162
+ data: T[];
163
+ onSort: () => void;
164
+ isLoading?: boolean;
165
+ }
166
+ declare function DataTable<T>({ columns, data, onSort, isLoading }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
167
+
168
+ interface AntDataTableProps<T> {
169
+ dataSource: T[];
170
+ columns: ColumnsType<T>;
171
+ pageSize?: number;
172
+ rowCheckbox?: boolean;
173
+ onRowSelect?: (newSelectedRowKeys: React.Key[]) => void;
174
+ onFilter: (filters: Record<string, antd_es_table_interface.FilterValue | null>) => void;
175
+ onChange?: TableProps<T>["onChange"];
176
+ width?: number;
177
+ height?: number;
178
+ pagination?: boolean;
179
+ }
180
+ declare function AntDataTable<T extends {
181
+ key: React.Key;
182
+ }>({ dataSource, columns, pageSize, rowCheckbox, onRowSelect, onFilter, onChange, width, height, pagination, }: AntDataTableProps<T>): react_jsx_runtime.JSX.Element;
183
+
184
+ interface CalendarProps {
185
+ events: EventSourceInput | undefined;
186
+ }
187
+ declare function Calendar({ events }: CalendarProps): react_jsx_runtime.JSX.Element;
188
+
189
+ interface TextInputProps {
190
+ label?: string;
191
+ placeholder?: string;
192
+ type?: "text" | "password";
193
+ maxLength?: number;
194
+ required?: boolean;
195
+ error?: string;
196
+ value?: string;
197
+ onChange: (value: string) => void;
198
+ disabled?: boolean;
199
+ }
200
+ declare function TextInput({ label, placeholder, type, maxLength, required, error, value, onChange, disabled, }: TextInputProps): react_jsx_runtime.JSX.Element;
201
+
202
+ interface TextAreaProps {
203
+ label?: string;
204
+ height?: number;
205
+ placeholder?: string;
206
+ value: string;
207
+ onChange: (value: string) => void;
208
+ maxLength?: number;
209
+ resizable?: boolean;
210
+ showCount?: boolean;
211
+ required?: boolean;
212
+ error?: string;
213
+ disabled?: boolean;
214
+ }
215
+ declare function TextAreaInput({ label, height, placeholder, onChange, value, maxLength, resizable, showCount, required, error, disabled, }: TextAreaProps): react_jsx_runtime.JSX.Element;
216
+
217
+ interface InputFieldProps {
218
+ value: string | undefined;
219
+ onChange: (value: string | undefined) => void;
220
+ placeholder?: string;
221
+ label?: string;
222
+ required?: boolean;
223
+ disabled?: boolean;
224
+ error?: string;
225
+ addonBefore?: ReactNode;
226
+ addonAfter?: ReactNode;
227
+ defaultValue?: string;
228
+ className?: string;
229
+ onClear?: () => void;
230
+ statickey?: string;
231
+ }
232
+ declare function InputField({ value, onChange, placeholder, label, required, disabled, error, addonBefore, addonAfter, defaultValue, className, onClear, statickey, }: InputFieldProps): react_jsx_runtime.JSX.Element;
233
+
234
+ interface InputFieldNumberProps {
235
+ value: number | string | null;
236
+ onChange: (value: number | string | null) => void;
237
+ placeholder?: string;
238
+ label?: string;
239
+ required?: boolean;
240
+ disabled?: boolean;
241
+ error?: string;
242
+ addonBefore?: React.ReactNode;
243
+ addonAfter?: React.ReactNode;
244
+ defaultValue?: number;
245
+ className?: string;
246
+ max?: number;
247
+ min?: number;
248
+ controls?: boolean | {
249
+ upIcon?: React.ReactNode;
250
+ downIcon?: React.ReactNode;
251
+ };
252
+ size?: "large" | "middle" | "small";
253
+ changeOnWheel?: boolean;
254
+ formatter?: InputNumberProps["formatter"];
255
+ parser?: InputNumberProps["parser"];
256
+ }
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
+
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 ColorPickerProps {
278
+ value: string | null;
279
+ onChange?: (color: Color, hex: string) => void;
280
+ required?: boolean;
281
+ label?: string;
282
+ error?: string;
283
+ disabled?: boolean;
284
+ allowClear?: boolean;
285
+ defaultFormat?: "hex" | "rgb" | "hsb";
286
+ className?: string;
287
+ placeholder?: string;
288
+ }
289
+ declare function ColorPickerBasic({ value, onChange, required, label, error, disabled, allowClear, defaultFormat, className, placeholder, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
290
+
291
+ interface ColorPalettePickerBasicProps {
292
+ value: string | null;
293
+ onChange?: (color: Color, hex: string) => void;
294
+ required?: boolean;
295
+ label?: string;
296
+ error?: string;
297
+ disabled?: boolean;
298
+ allowClear?: boolean;
299
+ defaultFormat?: "hex" | "rgb" | "hsb";
300
+ className?: string;
301
+ placeholder?: string;
302
+ onClear?: () => void;
303
+ }
304
+ declare function ColorPalettePickerBasic({ value, onChange, required, label, error, disabled, allowClear, defaultFormat, className, placeholder, onClear, }: ColorPalettePickerBasicProps): react_jsx_runtime.JSX.Element;
305
+
306
+ interface SelectFieldProps$1 {
307
+ value?: SelectProps["value"];
308
+ onChange: (value: SelectProps["value"]) => void;
309
+ placeholder?: string;
310
+ label?: string;
311
+ required?: boolean;
312
+ error?: string;
313
+ disabled?: boolean;
314
+ defaultValue?: string;
315
+ options?: {
316
+ label: ReactNode;
317
+ value: string | number | null;
318
+ disabled?: boolean;
319
+ }[];
320
+ mode?: "multiple" | "tags";
321
+ handleSearch?: (value: string) => void;
322
+ prefix?: ReactNode;
323
+ prefixSize?: number;
324
+ className?: string;
325
+ onClear?: () => void;
326
+ }
327
+ declare function SelectField({ value, onChange, placeholder, label, required, error, disabled, defaultValue, options, mode, prefix, prefixSize, handleSearch, className, onClear, }: SelectFieldProps$1): react_jsx_runtime.JSX.Element;
328
+
329
+ interface SelectFieldProps {
330
+ value?: SelectProps["value"];
331
+ onChange: (value: SelectProps["value"]) => void;
332
+ placeholder?: string;
333
+ label?: string;
334
+ required?: boolean;
335
+ error?: string;
336
+ disabled?: boolean;
337
+ defaultValue?: string;
338
+ options?: {
339
+ label: ReactNode;
340
+ options: {
341
+ label: ReactNode;
342
+ value: string | number;
343
+ disabled?: boolean;
344
+ }[];
345
+ }[];
346
+ mode?: "multiple" | "tags";
347
+ handleSearch?: (value: string) => void;
348
+ prefix?: ReactNode;
349
+ prefixSize?: number;
350
+ className?: string;
351
+ }
352
+ declare function SelectFieldGroup({ value, onChange, placeholder, label, required, error, disabled, defaultValue, options, mode, prefix, prefixSize, handleSearch, className, }: SelectFieldProps): react_jsx_runtime.JSX.Element;
353
+
354
+ interface SelectFieldStatusProps {
355
+ value: string | undefined;
356
+ onChange: (value: string | undefined) => void;
357
+ placeholder?: string;
358
+ label?: string;
359
+ required?: boolean;
360
+ disabled?: boolean;
361
+ error?: string;
362
+ options?: {
363
+ label: ReactNode;
364
+ value: string | number | null;
365
+ disabled?: boolean;
366
+ }[];
367
+ className?: string;
368
+ }
369
+ declare function SelectFieldStatus({ value, onChange, placeholder, label, required, disabled, error, options, className, }: SelectFieldStatusProps): react_jsx_runtime.JSX.Element;
370
+
371
+ interface SelectFieldStatusReportProps {
372
+ value: string | undefined;
373
+ onChange: (value: string | undefined) => void;
374
+ placeholder?: string;
375
+ label?: string;
376
+ required?: boolean;
377
+ disabled?: boolean;
378
+ error?: string;
379
+ className?: string;
380
+ options?: {
381
+ label: ReactNode;
382
+ value: string | number | null;
383
+ disabled?: boolean;
384
+ }[];
385
+ }
386
+ declare function SelectFieldStatusReport({ value, onChange, placeholder, label, required, disabled, error, className, options, }: SelectFieldStatusReportProps): react_jsx_runtime.JSX.Element;
387
+
388
+ interface SelectFieldTagProps {
389
+ label?: string | null;
390
+ required?: boolean;
391
+ placeholder?: string;
392
+ options?: {
393
+ label: ReactNode;
394
+ value: string | number | null;
395
+ disabled?: boolean;
396
+ }[];
397
+ error?: string;
398
+ value?: string[];
399
+ onChange?: (val: string[]) => void;
400
+ className?: string;
401
+ onClear?: () => void;
402
+ }
403
+ declare function SelectFieldTag({ label, required, placeholder, options, error, value: controlledValue, className, onChange, onClear, }: SelectFieldTagProps): react_jsx_runtime.JSX.Element;
404
+
405
+ interface OptionItem {
406
+ value: string;
407
+ label: string;
408
+ }
409
+ interface SelectCustomProps {
410
+ label?: string;
411
+ placeholder?: string;
412
+ options: OptionItem[];
413
+ required?: boolean;
414
+ onChange?: (valueList: string[]) => void;
415
+ error?: string;
416
+ onClear?: () => void;
417
+ }
418
+ declare function SelectCustom({ label, placeholder, options, required, onChange, error, onClear, }: SelectCustomProps): react_jsx_runtime.JSX.Element;
419
+
420
+ interface SortFilterProps {
421
+ showYear?: boolean;
422
+ showQuarter?: boolean;
423
+ showMonth?: boolean;
424
+ onSortClick?: () => void;
425
+ onFilterClick?: () => void;
426
+ }
427
+ declare function SortFilter({ showYear, showQuarter, showMonth, onSortClick, onFilterClick, }: SortFilterProps): react_jsx_runtime.JSX.Element;
428
+
429
+ interface FileUploaderProps {
430
+ onUpload: (file: File) => Promise<void>;
431
+ onRemove?: (index: number) => Promise<void>;
432
+ onError?: (message: string) => void;
433
+ accept?: string[];
434
+ maxSize?: number;
435
+ disabled?: boolean;
436
+ mode: "upload" | "drop";
437
+ description?: string;
438
+ label?: string;
439
+ }
440
+ declare function FileUploader({ onUpload, onError, onRemove, accept, maxSize, disabled, mode, description, label, }: FileUploaderProps): react_jsx_runtime.JSX.Element;
441
+
442
+ declare function setMessageApi(api: MessageInstance): void;
443
+ declare function messageSuccess(content: string): void;
444
+ declare function messageError(content: string): void;
445
+ declare function messageWarning(content: string): void;
446
+ declare function messageInfo(content: string): void;
447
+ declare function messageLoading(content: string, duration?: number): void;
448
+
449
+ interface BreadcrumbsProps {
450
+ items: ItemType[];
451
+ separator: ReactNode;
452
+ itemRender?: (route: any, params: any, routes: any[], paths: string[]) => ReactNode;
453
+ classname?: string;
454
+ params?: object;
455
+ }
456
+ declare function Breadcrumbs({ items, separator, itemRender, classname, params, }: BreadcrumbsProps): react_jsx_runtime.JSX.Element;
457
+
458
+ interface HeadingPageProps {
459
+ Heading: string;
460
+ }
461
+ declare function HeadingPage({ Heading }: HeadingPageProps): react_jsx_runtime.JSX.Element;
462
+
463
+ interface ProgressBarProps {
464
+ percent: number | undefined;
465
+ size?: number | [number | string, number] | {
466
+ width: number;
467
+ height: number;
468
+ } | "small" | "default";
469
+ checkpoints?: number[] | undefined;
470
+ showInfo?: boolean;
471
+ trailColor?: string;
472
+ type: "line" | "circle" | "dashboard";
473
+ strokeLinecap?: "round" | "butt" | "square";
474
+ strokeWidth?: number;
475
+ steps?: number;
476
+ isCheckPoints?: boolean;
477
+ }
478
+ declare function ProgressBar({ percent, size, checkpoints, showInfo, trailColor, type, strokeLinecap, strokeWidth, steps, isCheckPoints, }: ProgressBarProps): react_jsx_runtime.JSX.Element;
479
+
480
+ interface KpiNumberItem {
481
+ id: string;
482
+ name: string;
483
+ value: string;
484
+ unit: string;
485
+ isEditing?: boolean;
486
+ }
487
+
488
+ interface KpiSectionProps {
489
+ type: "number" | "text";
490
+ onChangeKpiList?: (data: KpiNumberItem[]) => void;
491
+ }
492
+ declare function KpiSection({ type, onChangeKpiList }: KpiSectionProps): react_jsx_runtime.JSX.Element;
493
+
494
+ interface ModalProps {
495
+ children: ReactNode;
496
+ isOpen: boolean;
497
+ width?: string | number;
498
+ onCancel: () => void;
499
+ }
500
+ declare function AntDModal({ children, isOpen, width, onCancel }: ModalProps): react_jsx_runtime.JSX.Element;
501
+
502
+ interface IndicatorProps {
503
+ option?: {
504
+ value: string;
505
+ label: string;
506
+ }[];
507
+ type: "OUTPUT" | "OUTCOME";
508
+ arrayData: IndicatorArray[];
509
+ setArrayData: (data: IndicatorArray[]) => void;
510
+ }
511
+ interface IndicatorArray {
512
+ indicatorType: "OUTPUT" | "OUTCOME";
513
+ inputType: "TEXT" | "NUMBER";
514
+ textValue: string;
515
+ numberValue?: string;
516
+ unit?: string;
517
+ }
518
+ declare function Indicator({ option, type, arrayData, setArrayData, }: IndicatorProps): react_jsx_runtime.JSX.Element;
519
+
520
+ interface optionSelect {
521
+ value: string;
522
+ label: string;
523
+ }
524
+ declare const FilterPopUp: (filter: {
525
+ selectionFilter: optionSelect[];
526
+ handleSearch: (listFiler: string[]) => void;
527
+ }) => react_jsx_runtime.JSX.Element;
528
+
529
+ export { AntDModal, AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, 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 };
package/dist/index.d.ts CHANGED
@@ -274,50 +274,6 @@ interface DatePickerBasicProps {
274
274
  }
275
275
  declare function DatePickerBasic({ value, onChange, required, label, error, placeholder, disabled, defaultValue, minDate, maxDate, disabledDate, className, size, }: DatePickerBasicProps): react_jsx_runtime.JSX.Element;
276
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
277
  interface ColorPickerProps {
322
278
  value: string | null;
323
279
  onChange?: (color: Color, hex: string) => void;
@@ -570,4 +526,4 @@ declare const FilterPopUp: (filter: {
570
526
  handleSearch: (listFiler: string[]) => void;
571
527
  }) => react_jsx_runtime.JSX.Element;
572
528
 
573
- export { AntDModal, AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, DatePickerRangePicker, 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, TimePickerBasic, TimePickerRangePicker, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
529
+ export { AntDModal, AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, 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 };