@esic-lab/data-core-ui 0.0.61 → 0.0.63
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 +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +670 -514
- package/dist/index.mjs +517 -363
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -56,6 +56,19 @@ interface ParamTabSelection {
|
|
|
56
56
|
}
|
|
57
57
|
declare const TabSelectionButton: ({ title, now, onClickGoto }: ParamTabSelection) => react_jsx_runtime.JSX.Element;
|
|
58
58
|
|
|
59
|
+
interface TertiaryButtonProps {
|
|
60
|
+
title: string;
|
|
61
|
+
onClick: () => void;
|
|
62
|
+
icon?: React.ReactNode;
|
|
63
|
+
disabled?: boolean;
|
|
64
|
+
iconPlacement?: "start" | "end";
|
|
65
|
+
size?: "large" | "middle" | "small";
|
|
66
|
+
colorPrimary?: string;
|
|
67
|
+
colorPrimaryHover?: string;
|
|
68
|
+
textColor?: string;
|
|
69
|
+
}
|
|
70
|
+
declare function TertiaryButton({ title, onClick, disabled, iconPlacement, size, colorPrimary, colorPrimaryHover, textColor, icon, }: TertiaryButtonProps): react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
59
72
|
interface LoaderProps {
|
|
60
73
|
size?: number;
|
|
61
74
|
color?: string;
|
|
@@ -652,4 +665,19 @@ interface GanttChartProps {
|
|
|
652
665
|
}
|
|
653
666
|
declare const GanttChart: react.FC<GanttChartProps>;
|
|
654
667
|
|
|
655
|
-
|
|
668
|
+
type CardKPIProps = {
|
|
669
|
+
dataItem: {
|
|
670
|
+
id: string;
|
|
671
|
+
projectId: string;
|
|
672
|
+
name: string;
|
|
673
|
+
percent: number;
|
|
674
|
+
projectColor: string;
|
|
675
|
+
};
|
|
676
|
+
indicator: any[];
|
|
677
|
+
projectId: string;
|
|
678
|
+
overallPercent: number;
|
|
679
|
+
onDetailsClick: (key: string) => void;
|
|
680
|
+
};
|
|
681
|
+
declare function CardKPI({ dataItem, overallPercent, onDetailsClick, indicator, projectId, }: CardKPIProps): react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
683
|
+
export { AntDModal, AntDataTable, BarChart, Breadcrumbs, Calendar, CardKPI, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, DatePickerRange, FileUploader, FilterPopUp, GanttChart, GhostButton, HeadingPage, Indicator, InputField, InputFieldNumber, KpiSection, Loader, MenuNavBar, type MenuNavBarProps, PieChart, PrimaryButton, ProfileSelect, ProgressBar, QRCodeGenerator, Radio, RadioGroup, SecondaryButton, SelectCustom, SelectField, SelectFieldGroup, SelectFieldStatus, SelectFieldStatusReport, SelectFieldTag, Sidebar, SortFilter, Switch, SwitchSelect, TabProject, TabSelectionButton, TertiaryButton, TextAreaInput, TextInput, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
|
package/dist/index.d.ts
CHANGED
|
@@ -56,6 +56,19 @@ interface ParamTabSelection {
|
|
|
56
56
|
}
|
|
57
57
|
declare const TabSelectionButton: ({ title, now, onClickGoto }: ParamTabSelection) => react_jsx_runtime.JSX.Element;
|
|
58
58
|
|
|
59
|
+
interface TertiaryButtonProps {
|
|
60
|
+
title: string;
|
|
61
|
+
onClick: () => void;
|
|
62
|
+
icon?: React.ReactNode;
|
|
63
|
+
disabled?: boolean;
|
|
64
|
+
iconPlacement?: "start" | "end";
|
|
65
|
+
size?: "large" | "middle" | "small";
|
|
66
|
+
colorPrimary?: string;
|
|
67
|
+
colorPrimaryHover?: string;
|
|
68
|
+
textColor?: string;
|
|
69
|
+
}
|
|
70
|
+
declare function TertiaryButton({ title, onClick, disabled, iconPlacement, size, colorPrimary, colorPrimaryHover, textColor, icon, }: TertiaryButtonProps): react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
59
72
|
interface LoaderProps {
|
|
60
73
|
size?: number;
|
|
61
74
|
color?: string;
|
|
@@ -652,4 +665,19 @@ interface GanttChartProps {
|
|
|
652
665
|
}
|
|
653
666
|
declare const GanttChart: react.FC<GanttChartProps>;
|
|
654
667
|
|
|
655
|
-
|
|
668
|
+
type CardKPIProps = {
|
|
669
|
+
dataItem: {
|
|
670
|
+
id: string;
|
|
671
|
+
projectId: string;
|
|
672
|
+
name: string;
|
|
673
|
+
percent: number;
|
|
674
|
+
projectColor: string;
|
|
675
|
+
};
|
|
676
|
+
indicator: any[];
|
|
677
|
+
projectId: string;
|
|
678
|
+
overallPercent: number;
|
|
679
|
+
onDetailsClick: (key: string) => void;
|
|
680
|
+
};
|
|
681
|
+
declare function CardKPI({ dataItem, overallPercent, onDetailsClick, indicator, projectId, }: CardKPIProps): react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
683
|
+
export { AntDModal, AntDataTable, BarChart, Breadcrumbs, Calendar, CardKPI, Checkbox, CheckboxGroup, ColorPalettePickerBasic, ColorPickerBasic, DataTable, DatePickerBasic, DatePickerRange, FileUploader, FilterPopUp, GanttChart, GhostButton, HeadingPage, Indicator, InputField, InputFieldNumber, KpiSection, Loader, MenuNavBar, type MenuNavBarProps, PieChart, PrimaryButton, ProfileSelect, ProgressBar, QRCodeGenerator, Radio, RadioGroup, SecondaryButton, SelectCustom, SelectField, SelectFieldGroup, SelectFieldStatus, SelectFieldStatusReport, SelectFieldTag, Sidebar, SortFilter, Switch, SwitchSelect, TabProject, TabSelectionButton, TertiaryButton, TextAreaInput, TextInput, TopNavBar, messageError, messageInfo, messageLoading, messageSuccess, messageWarning, setMessageApi };
|