moldekit-react 0.0.6 → 0.0.7
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/components/MkAlert/MkAlert.d.ts +1 -1
- package/dist/components/MkAlert/MkAlert.props.d.ts +3 -0
- package/dist/components/MkBarChart/MkBarChart.d.ts +1 -1
- package/dist/components/MkBarChart/MkBarChart.props.d.ts +5 -0
- package/dist/components/MkBarHistoryChart/MkBarHistoryChart.d.ts +1 -1
- package/dist/components/MkBarHistoryChart/MkBarHistoryChart.props.d.ts +5 -0
- package/dist/components/MkCheckbox/MkCheckbox.d.ts +1 -1
- package/dist/components/MkCheckbox/MkCheckbox.props.d.ts +3 -1
- package/dist/components/MkDonutChart/MkDonutChart.d.ts +1 -1
- package/dist/components/MkDonutChart/MkDonutChart.props.d.ts +8 -0
- package/dist/components/MkRadioButton/MkRadioButton.d.ts +1 -1
- package/dist/components/MkRadioButton/MkRadioButton.props.d.ts +5 -1
- package/dist/components/MkStackedBarChart/MkStackedBarChart.d.ts +1 -1
- package/dist/components/MkStackedBarChart/MkStackedBarChart.props.d.ts +5 -0
- package/dist/components/MkTag/MkTag.d.ts +2 -2
- package/dist/components/MkTag/MkTag.props.d.ts +5 -0
- package/dist/index.cjs +499 -120
- package/dist/index.js +500 -121
- package/dist/style.css +236 -0
- package/package.json +5 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MkAlertProps } from './MkAlert.props.ts';
|
|
2
|
-
declare function MkAlert({ className }: MkAlertProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function MkAlert({ label, state, position, className, }: MkAlertProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkAlert;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MkBarChartProps } from './MkBarChart.props.ts';
|
|
2
|
-
declare function MkBarChart({ className }: MkBarChartProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function MkBarChart({ data, className }: MkBarChartProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkBarChart;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MkBarHistoryChartProps } from './MkBarHistoryChart.props.ts';
|
|
2
|
-
declare function MkBarHistoryChart({ className }: MkBarHistoryChartProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function MkBarHistoryChart({ data, className }: MkBarHistoryChartProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkBarHistoryChart;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MkCheckboxProps } from './MkCheckbox.props.ts';
|
|
2
|
-
declare function MkCheckbox({ className }: MkCheckboxProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function MkCheckbox({ label, size, className, checked, disabled, id, onChange, ...props }: MkCheckboxProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkCheckbox;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MkDonutChartProps } from './MkDonutChart.props.ts';
|
|
2
|
-
declare function MkDonutChart({ className }: MkDonutChartProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function MkDonutChart({ data, className, sizePx, thicknessPx, centerLabel, centerValue, }: MkDonutChartProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkDonutChart;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MkRadioButtonProps } from './MkRadioButton.props.ts';
|
|
2
|
-
declare function MkRadioButton({ className }: MkRadioButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function MkRadioButton({ label, value, name, size, className, checked, disabled, id, onChange, ...props }: MkRadioButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkRadioButton;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MkStackedBarChartProps } from './MkStackedBarChart.props.ts';
|
|
2
|
-
declare function MkStackedBarChart({ className }: MkStackedBarChartProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function MkStackedBarChart({ data, className }: MkStackedBarChartProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkStackedBarChart;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { MkTagProps } from './MkTag.
|
|
2
|
-
declare function MkTag({ className }: MkTagProps): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
import { MkTagProps } from './MkTag.props.ts';
|
|
2
|
+
declare function MkTag({ data, onRemove, className }: MkTagProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MkTag;
|