@mx-cartographer/experiences 3.1.3 → 3.2.0

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.
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface BodyProps {
4
+ accountGuid: string;
5
+ leftLowerText: string;
6
+ leftUpperText: string;
7
+ headerString: string;
8
+ rightLowerText: string;
9
+ rightUpperText: string;
10
+ isDarkMode: boolean;
11
+ }
12
+ export declare const SetUpDirectDepositBody: React.FC<BodyProps>;
13
+ export {};
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface SubHeaderProps {
4
+ ComponentRight: React.JSXElementConstructor<any>;
5
+ iconName: string;
6
+ }
7
+ export declare const SubHeader: React.FC<SubHeaderProps>;
8
+ export {};
@@ -1,2 +1,3 @@
1
+ export { SetUpDirectDepositBody } from './components/beats/SetupDirectDeposit/SetUpDirectDepositBody';
1
2
  export { default as SettingsDrawer } from './settings/SettingsDrawer';
2
3
  export type { DisabledBeatTemplate } from './settings/hiddeninsights/types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "3.1.3",
3
+ "version": "3.2.0",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -91,7 +91,7 @@
91
91
  "eslint-plugin-react-refresh": "^0.4.5",
92
92
  "eslint-plugin-storybook": "^0.8.0",
93
93
  "global-jsdom": "^9.2.0",
94
- "husky": "^9.0.11",
94
+ "husky": "^9.1.5",
95
95
  "jsdom": "^23.0.1",
96
96
  "lint-staged": "^15.2.0",
97
97
  "path": "^0.12.7",
@@ -119,4 +119,4 @@
119
119
  "README.md"
120
120
  ],
121
121
  "packageManager": "yarn@4.4.1"
122
- }
122
+ }