@esic-lab/data-core-ui 0.0.22 → 0.0.24
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.css +3 -6
- package/dist/index.d.mts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +261 -153
- package/dist/index.mjs +243 -136
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -293,18 +293,12 @@
|
|
|
293
293
|
.top-12 {
|
|
294
294
|
top: calc(var(--spacing) * 12);
|
|
295
295
|
}
|
|
296
|
-
.top-21 {
|
|
297
|
-
top: calc(var(--spacing) * 21);
|
|
298
|
-
}
|
|
299
296
|
.right-0 {
|
|
300
297
|
right: calc(var(--spacing) * 0);
|
|
301
298
|
}
|
|
302
299
|
.right-3 {
|
|
303
300
|
right: calc(var(--spacing) * 3);
|
|
304
301
|
}
|
|
305
|
-
.right-5 {
|
|
306
|
-
right: calc(var(--spacing) * 5);
|
|
307
|
-
}
|
|
308
302
|
.left-full {
|
|
309
303
|
left: 100%;
|
|
310
304
|
}
|
|
@@ -341,6 +335,9 @@
|
|
|
341
335
|
.mt-\[12px\] {
|
|
342
336
|
margin-top: 12px;
|
|
343
337
|
}
|
|
338
|
+
.mt-\[28px\] {
|
|
339
|
+
margin-top: 28px;
|
|
340
|
+
}
|
|
344
341
|
.mr-2 {
|
|
345
342
|
margin-right: calc(var(--spacing) * 2);
|
|
346
343
|
}
|
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 };
|