@mx-cartographer/insights-ui 1.18.0 → 1.18.2
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/insights/BillAmountNotStandard/BillAmountNotStandardMUI.d.ts +3 -0
- package/dist/components/insights/BillAmountNotStandard/index.d.ts +1 -0
- package/dist/components/insights/BillAmountNotStandard/types/BillAmountNotStandard.d.ts +2 -2
- package/dist/components/insights/CategorySpendingV2/CategorySpendingV2MUI.d.ts +2 -0
- package/dist/components/insights/CategorySpendingV2/index.d.ts +1 -0
- package/dist/components/insights/CategorySpendingV2/types/CategorySpendingV2.d.ts +3 -1
- package/dist/index.es.js +866 -768
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BarChartProps } from '../../../../types/Charts/BarChart';
|
|
1
|
+
import { BarChartProps, BarChartV2Props } from '../../../../types/Charts/BarChart';
|
|
2
2
|
import { CommonBeatProps } from '../../../../types/CommonBeat';
|
|
3
|
-
export interface BillAmountNotStandardProps extends CommonBeatProps, BarChartProps {
|
|
3
|
+
export interface BillAmountNotStandardProps extends CommonBeatProps, BarChartV2Props, BarChartProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import { BarChartProps } from '../../../../types/Charts/BarChart';
|
|
1
|
+
import { BarChartProps, BarChartV2Props } from '../../../../types/Charts/BarChart';
|
|
2
2
|
import { CommonBeatProps } from '../../../../types/CommonBeat';
|
|
3
3
|
export interface CategorySpendingV2Props extends CommonBeatProps, BarChartProps {
|
|
4
4
|
}
|
|
5
|
+
export interface CategorySpendingV2MUIProps extends CommonBeatProps, BarChartV2Props {
|
|
6
|
+
}
|