@esic-lab/data-core-ui 0.0.23 → 0.0.25
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.mts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +243 -147
- package/dist/index.mjs +223 -128
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -847,6 +847,23 @@ interface SelectFieldTagProps {
|
|
|
847
847
|
}
|
|
848
848
|
declare function SelectFieldTag({ title, require, bottomText, placeholder, options, showError, errorMessage, value: controlledValue, className, onChange, onClear }: SelectFieldTagProps): react_jsx_runtime.JSX.Element;
|
|
849
849
|
|
|
850
|
+
interface OptionItem {
|
|
851
|
+
value: string;
|
|
852
|
+
label: string;
|
|
853
|
+
}
|
|
854
|
+
interface SelectCustomProps {
|
|
855
|
+
title?: string;
|
|
856
|
+
placeholder?: string;
|
|
857
|
+
options: OptionItem[];
|
|
858
|
+
require?: boolean;
|
|
859
|
+
onChange?: (valueList: string[]) => void;
|
|
860
|
+
bottomText?: string;
|
|
861
|
+
showError?: boolean;
|
|
862
|
+
errorMessage?: string;
|
|
863
|
+
onClear?: () => void;
|
|
864
|
+
}
|
|
865
|
+
declare function SelectCustom({ title, placeholder, options, require, onChange, bottomText, showError, errorMessage, onClear }: SelectCustomProps): react_jsx_runtime.JSX.Element;
|
|
866
|
+
|
|
850
867
|
interface SortFilterProps {
|
|
851
868
|
showYear?: boolean;
|
|
852
869
|
showQuarter?: boolean;
|
|
@@ -921,4 +938,4 @@ interface KpiSectionProps {
|
|
|
921
938
|
}
|
|
922
939
|
declare function KpiSection({ type, onChangeKpiList }: KpiSectionProps): react_jsx_runtime.JSX.Element;
|
|
923
940
|
|
|
924
|
-
export { AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, DatePickerRangePicker, FileUploader, GhostButton, HeadingPage, InputField, KpiSection, Loader, MenuNavBar, type MenuNavBarProps, PrimaryButton, ProgressBar, Radio, RadioGroup, SecondaryButton, SelectField, SelectFieldGroup, SelectFieldStatus, SelectFieldStatusReport, SelectFieldTag, Sidebar, SortFilter, Switch, TextAreaInput, TextInput, TimePickerBasic, TimePickerRangePicker, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
|
|
941
|
+
export { AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, DatePickerRangePicker, FileUploader, GhostButton, HeadingPage, InputField, KpiSection, Loader, MenuNavBar, type MenuNavBarProps, PrimaryButton, ProgressBar, Radio, RadioGroup, SecondaryButton, SelectCustom, SelectField, SelectFieldGroup, SelectFieldStatus, SelectFieldStatusReport, SelectFieldTag, Sidebar, SortFilter, Switch, TextAreaInput, TextInput, TimePickerBasic, TimePickerRangePicker, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
|
package/dist/index.d.ts
CHANGED
|
@@ -847,6 +847,23 @@ interface SelectFieldTagProps {
|
|
|
847
847
|
}
|
|
848
848
|
declare function SelectFieldTag({ title, require, bottomText, placeholder, options, showError, errorMessage, value: controlledValue, className, onChange, onClear }: SelectFieldTagProps): react_jsx_runtime.JSX.Element;
|
|
849
849
|
|
|
850
|
+
interface OptionItem {
|
|
851
|
+
value: string;
|
|
852
|
+
label: string;
|
|
853
|
+
}
|
|
854
|
+
interface SelectCustomProps {
|
|
855
|
+
title?: string;
|
|
856
|
+
placeholder?: string;
|
|
857
|
+
options: OptionItem[];
|
|
858
|
+
require?: boolean;
|
|
859
|
+
onChange?: (valueList: string[]) => void;
|
|
860
|
+
bottomText?: string;
|
|
861
|
+
showError?: boolean;
|
|
862
|
+
errorMessage?: string;
|
|
863
|
+
onClear?: () => void;
|
|
864
|
+
}
|
|
865
|
+
declare function SelectCustom({ title, placeholder, options, require, onChange, bottomText, showError, errorMessage, onClear }: SelectCustomProps): react_jsx_runtime.JSX.Element;
|
|
866
|
+
|
|
850
867
|
interface SortFilterProps {
|
|
851
868
|
showYear?: boolean;
|
|
852
869
|
showQuarter?: boolean;
|
|
@@ -921,4 +938,4 @@ interface KpiSectionProps {
|
|
|
921
938
|
}
|
|
922
939
|
declare function KpiSection({ type, onChangeKpiList }: KpiSectionProps): react_jsx_runtime.JSX.Element;
|
|
923
940
|
|
|
924
|
-
export { AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, DatePickerRangePicker, FileUploader, GhostButton, HeadingPage, InputField, KpiSection, Loader, MenuNavBar, type MenuNavBarProps, PrimaryButton, ProgressBar, Radio, RadioGroup, SecondaryButton, SelectField, SelectFieldGroup, SelectFieldStatus, SelectFieldStatusReport, SelectFieldTag, Sidebar, SortFilter, Switch, TextAreaInput, TextInput, TimePickerBasic, TimePickerRangePicker, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
|
|
941
|
+
export { AntDataTable, Breadcrumbs, Calendar, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, DatePickerRangePicker, FileUploader, GhostButton, HeadingPage, InputField, KpiSection, Loader, MenuNavBar, type MenuNavBarProps, PrimaryButton, ProgressBar, Radio, RadioGroup, SecondaryButton, SelectCustom, SelectField, SelectFieldGroup, SelectFieldStatus, SelectFieldStatusReport, SelectFieldTag, Sidebar, SortFilter, Switch, TextAreaInput, TextInput, TimePickerBasic, TimePickerRangePicker, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
|