@mx-cartographer/experiences 2.34.2 → 2.35.0-alpha.j1

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,7 +6,7 @@ export interface BubbleData extends SimulationNodeDatum {
6
6
  budgetGuid: string;
7
7
  currentAmount: number;
8
8
  description: string;
9
- icon: string;
9
+ icon?: string;
10
10
  label: string;
11
11
  progressColor: string;
12
12
  radius: number;
@@ -2,6 +2,8 @@ import { default as React } from 'react';
2
2
 
3
3
  interface CashflowAmountHeadingProps {
4
4
  amount: number;
5
+ isMobile?: boolean;
6
+ isTotal?: boolean;
5
7
  label: string;
6
8
  tooltip?: React.ReactNode;
7
9
  }
@@ -0,0 +1,5 @@
1
+ interface RemainingCashProps {
2
+ remaining: number;
3
+ }
4
+ declare const RemainingCash: React.FC<RemainingCashProps>;
5
+ export default RemainingCash;
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
- import { SxProps } from '@mui/material/styles';
3
2
  import { TypographyProps } from '@mui/material/Typography';
3
+ import { SxProps } from '@mui/material/styles';
4
4
 
5
5
  interface CurrencyTextProps extends TypographyProps {
6
6
  isIncome?: boolean;
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+
3
+ type Dimensions = {
4
+ width: number;
5
+ height: number;
6
+ };
7
+ export declare function useDimensions(debounceDelay?: number): [React.RefCallback<HTMLElement>, Dimensions];
8
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "2.34.2",
3
+ "version": "2.35.0-alpha.j1",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -53,16 +53,16 @@
53
53
  "devDependencies": {
54
54
  "@babel/core": "^7.23.7",
55
55
  "@babel/eslint-parser": "^7.23.3",
56
- "@storybook/addon-a11y": "^8.2.5",
57
- "@storybook/addon-essentials": "^8.2.5",
58
- "@storybook/addon-interactions": "^8.2.5",
59
- "@storybook/addon-links": "^8.2.5",
60
- "@storybook/addon-mdx-gfm": "^8.2.5",
61
- "@storybook/blocks": "^8.2.5",
62
- "@storybook/react": "^8.2.5",
63
- "@storybook/react-vite": "^8.2.5",
64
- "@storybook/test": "^8.2.5",
65
- "@storybook/theming": "^8.2.5",
56
+ "@storybook/addon-a11y": "^8.2.4",
57
+ "@storybook/addon-essentials": "^8.2.4",
58
+ "@storybook/addon-interactions": "^8.2.4",
59
+ "@storybook/addon-links": "^8.2.4",
60
+ "@storybook/addon-mdx-gfm": "^8.2.4",
61
+ "@storybook/blocks": "^8.2.4",
62
+ "@storybook/react": "^8.2.4",
63
+ "@storybook/react-vite": "^8.2.4",
64
+ "@storybook/test": "^8.2.4",
65
+ "@storybook/theming": "^8.2.4",
66
66
  "@testing-library/dom": "^9.3.4",
67
67
  "@testing-library/jest-dom": "^6.4.2",
68
68
  "@testing-library/react": "^14.2.1",
@@ -96,7 +96,7 @@
96
96
  "path": "^0.12.7",
97
97
  "prettier": "^3.1.1",
98
98
  "prop-types": "^15.8.1",
99
- "storybook": "^8.2.5",
99
+ "storybook": "^8.2.4",
100
100
  "storybook-addon-mock": "^5.0.0",
101
101
  "storybook-dark-mode": "4.0.1",
102
102
  "typescript": "^5.5.3",
@@ -118,4 +118,4 @@
118
118
  "README.md"
119
119
  ],
120
120
  "packageManager": "yarn@4.3.1"
121
- }
121
+ }