@axos-web-dev/shared-components 0.0.141 → 0.0.142

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.
@@ -8,13 +8,12 @@ const MainHTML = ({
8
8
  className
9
9
  }) => {
10
10
  return /* @__PURE__ */ jsx(
11
- "main",
11
+ "div",
12
12
  {
13
13
  className: clsx(
14
14
  theme === "Premier" ? premierTheme : axosTheme,
15
15
  className
16
16
  ),
17
- id: "main-body",
18
17
  children
19
18
  }
20
19
  );
@@ -22,7 +22,11 @@ const moreDomains = {
22
22
  "{DEVAXC}": process.env.DEVELOPER_CLEARING || "https://developer.axosclearing.com",
23
23
  "{AFF}": process.env.FUNDFINDER_URL || "https://axosfundfinder.com",
24
24
  "{APL}": process.env.PERSONAL_LOANS_URL || "https://personalloans.axosbank.com",
25
- "{AXSEC}": process.env.AXOS_SECURE_URL || "https://secure.axosbank.com"
25
+ "{AXSEC}": process.env.AXOS_SECURE_URL || "https://secure.axosbank.com",
26
+ "{DOWNLOADAXOS}": process.env.AXOS_DOWNLOAD_URL || "https://downloads.axos.com",
27
+ "{SBAAX}": process.env.SMALL_BUSINESS_ACCOUNTS || "https://small-business-accounts.axosbank.com",
28
+ "{CPDS}": process.env.CP_DECISIONLENDER || "https://cp.decisionlender.solutions",
29
+ "{JHALOAN}": process.env.JHA_LOANSPQ || "https://jha.loanspq.com"
26
30
  };
27
31
  const isAllowedUrl = (url) => {
28
32
  const uri = new URL(url, location.href);
package/package.json CHANGED
@@ -1,121 +1,121 @@
1
- {
2
- "name": "@axos-web-dev/shared-components",
3
- "description": "Axos shared components library for web.",
4
- "version": "0.0.141",
5
- "type": "module",
6
- "module": "dist/main.js",
7
- "types": "dist/main.d.ts",
8
- "files": [
9
- "dist"
10
- ],
11
- "sideEffects": [
12
- "dist/assets/**/*.css"
13
- ],
14
- "scripts": {
15
- "dev": "vite",
16
- "build": "tsc --p ./tsconfig.build.json && vite build",
17
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
18
- "preview": "vite preview",
19
- "prepublishOnly": "npm run build",
20
- "check-types": "tsc --pretty --noEmit",
21
- "check-format": "prettier --check .",
22
- "check-lint": "eslint . --ext ts --ext tsx --ext js",
23
- "format": "prettier --write .",
24
- "test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
25
- "prepare": "husky",
26
- "storybook": "storybook dev -p 6006",
27
- "build-storybook": "storybook build",
28
- "npm:link": "npm run build && npm link"
29
- },
30
- "dependencies": {
31
- "@hookform/resolvers": "^3.9.0",
32
- "@react-input/mask": "^1.2.10",
33
- "@react-input/number-format": "^1.0.32",
34
- "@storybook/icons": "^1.2.12",
35
- "@storybook/preview-api": "^8.3.4",
36
- "@types/iframe-resizer": "3.5.13",
37
- "@vanilla-extract/css": "^1.16.0",
38
- "@vanilla-extract/recipes": "^0.5.1",
39
- "clsx": "^2.1.1",
40
- "iframe-resizer": "4.3.11",
41
- "lodash": "^4.17.21",
42
- "moment": "^2.30.1",
43
- "react-date-picker": "^11.0.0",
44
- "react-hook-form": "^7.53.0",
45
- "react-markdown": "^9.0.1",
46
- "react-slick": "^0.30.2",
47
- "react-use": "^17.5.1",
48
- "slick-carousel": "^1.8.1",
49
- "typed-css-modules": "^0.9.1",
50
- "vite-plugin-svgr": "^4.2.0",
51
- "zod": "^3.23.8",
52
- "zustand": "^4.5.5"
53
- },
54
- "peerDependencies": {
55
- "@vanilla-extract/css-utils": "^0.1.3",
56
- "@vanilla-extract/recipes": "^0.5.1",
57
- "@vanilla-extract/vite-plugin": "^4.0.3",
58
- "next": "^14.1.4",
59
- "react": "^18.2.0",
60
- "react-dom": "^18.2.0",
61
- "react-slick": "^0.30.2",
62
- "slick-carousel": "^1.8.1"
63
- },
64
- "devDependencies": {
65
- "@chromatic-com/storybook": "^1.8.0",
66
- "@rollup/plugin-alias": "^5.1.0",
67
- "@storybook/addon-essentials": "^8.2.9",
68
- "@storybook/addon-interactions": "^8.2.9",
69
- "@storybook/addon-links": "^8.2.9",
70
- "@storybook/addon-mdx-gfm": "^8.2.9",
71
- "@storybook/addon-onboarding": "^8.2.9",
72
- "@storybook/addon-themes": "^8.2.9",
73
- "@storybook/blocks": "^8.2.9",
74
- "@storybook/react": "^8.2.9",
75
- "@storybook/react-vite": "^8.2.9",
76
- "@storybook/test": "^8.2.9",
77
- "@svgr/core": "^8.1.0",
78
- "@svgr/plugin-prettier": "^8.1.0",
79
- "@svgr/plugin-svgo": "^8.1.0",
80
- "@types/lodash": "^4.17.10",
81
- "@types/node": "^20.16.10",
82
- "@types/react": "^18.3.11",
83
- "@types/react-datepicker": "^6.2.0",
84
- "@types/react-dom": "^18.3.0",
85
- "@types/react-slick": "^0.23.13",
86
- "@typescript-eslint/eslint-plugin": "^7.9.0",
87
- "@typescript-eslint/parser": "^7.9.0",
88
- "@vanilla-extract/css-utils": "^0.1.4",
89
- "@vanilla-extract/recipes": "^0.5.5",
90
- "@vanilla-extract/vite-plugin": "^4.0.15",
91
- "@vitejs/plugin-react-swc": "^3.7.0",
92
- "esbuild-vanilla-image-loader": "^0.1.3",
93
- "eslint": "^8.57.0",
94
- "eslint-plugin-react-hooks": "^4.6.2",
95
- "eslint-plugin-react-refresh": "^0.4.7",
96
- "eslint-plugin-storybook": "^0.8.0",
97
- "glob": "^10.4.5",
98
- "husky": "^9.1.6",
99
- "next": "^14.1.4",
100
- "prettier": "3.2.5",
101
- "react": "^18.3.1",
102
- "react-dom": "^18.3.1",
103
- "rollup-plugin-preserve-directives": "^0.4.0",
104
- "rollup-plugin-svg-import": "^3.0.0",
105
- "rollup-plugin-svgo": "^2.0.0",
106
- "storybook": "^8.2.9",
107
- "typescript": "^5.6.2",
108
- "typescript-plugin-css-modules": "^5.1.0",
109
- "vite": "^5.4.8",
110
- "vite-plugin-dts": "^3.9.1",
111
- "vite-plugin-lib-inject-css": "^2.1.1",
112
- "vite-plugin-setting-css-module": "^1.1.4",
113
- "vite-tsconfig-paths": "^4.3.2"
114
- },
115
- "main": "index.js",
116
- "directories": {
117
- "lib": "lib"
118
- },
119
- "author": "axos-web-dev",
120
- "license": "ISC"
121
- }
1
+ {
2
+ "name": "@axos-web-dev/shared-components",
3
+ "description": "Axos shared components library for web.",
4
+ "version": "0.0.142",
5
+ "type": "module",
6
+ "module": "dist/main.js",
7
+ "types": "dist/main.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "sideEffects": [
12
+ "dist/assets/**/*.css"
13
+ ],
14
+ "scripts": {
15
+ "dev": "vite",
16
+ "build": "tsc --p ./tsconfig.build.json && vite build",
17
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
18
+ "preview": "vite preview",
19
+ "prepublishOnly": "npm run build",
20
+ "check-types": "tsc --pretty --noEmit",
21
+ "check-format": "prettier --check .",
22
+ "check-lint": "eslint . --ext ts --ext tsx --ext js",
23
+ "format": "prettier --write .",
24
+ "test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
25
+ "prepare": "husky",
26
+ "storybook": "storybook dev -p 6006",
27
+ "build-storybook": "storybook build",
28
+ "npm:link": "npm run build && npm link"
29
+ },
30
+ "dependencies": {
31
+ "@hookform/resolvers": "^3.9.0",
32
+ "@react-input/mask": "^1.2.11",
33
+ "@react-input/number-format": "^1.1.1",
34
+ "@storybook/icons": "^1.2.12",
35
+ "@storybook/preview-api": "^8.3.5",
36
+ "@types/iframe-resizer": "3.5.13",
37
+ "@vanilla-extract/css": "^1.16.0",
38
+ "@vanilla-extract/recipes": "^0.5.1",
39
+ "clsx": "^2.1.1",
40
+ "iframe-resizer": "4.3.11",
41
+ "lodash": "^4.17.21",
42
+ "moment": "^2.30.1",
43
+ "react-date-picker": "^11.0.0",
44
+ "react-hook-form": "^7.53.1",
45
+ "react-markdown": "^9.0.1",
46
+ "react-slick": "^0.30.2",
47
+ "react-use": "^17.5.1",
48
+ "slick-carousel": "^1.8.1",
49
+ "typed-css-modules": "^0.9.1",
50
+ "vite-plugin-svgr": "^4.2.0",
51
+ "zod": "^3.23.8",
52
+ "zustand": "^4.5.5"
53
+ },
54
+ "peerDependencies": {
55
+ "@vanilla-extract/css-utils": "^0.1.3",
56
+ "@vanilla-extract/recipes": "^0.5.1",
57
+ "@vanilla-extract/vite-plugin": "^4.0.3",
58
+ "next": "^14.1.4",
59
+ "react": "^18.2.0",
60
+ "react-dom": "^18.2.0",
61
+ "react-slick": "^0.30.2",
62
+ "slick-carousel": "^1.8.1"
63
+ },
64
+ "devDependencies": {
65
+ "@chromatic-com/storybook": "^1.8.0",
66
+ "@rollup/plugin-alias": "^5.1.0",
67
+ "@storybook/addon-essentials": "^8.2.9",
68
+ "@storybook/addon-interactions": "^8.2.9",
69
+ "@storybook/addon-links": "^8.2.9",
70
+ "@storybook/addon-mdx-gfm": "^8.2.9",
71
+ "@storybook/addon-onboarding": "^8.2.9",
72
+ "@storybook/addon-themes": "^8.2.9",
73
+ "@storybook/blocks": "^8.2.9",
74
+ "@storybook/react": "^8.2.9",
75
+ "@storybook/react-vite": "^8.2.9",
76
+ "@storybook/test": "^8.2.9",
77
+ "@svgr/core": "^8.1.0",
78
+ "@svgr/plugin-prettier": "^8.1.0",
79
+ "@svgr/plugin-svgo": "^8.1.0",
80
+ "@types/lodash": "^4.17.10",
81
+ "@types/node": "^20.16.10",
82
+ "@types/react": "^18.3.11",
83
+ "@types/react-datepicker": "^6.2.0",
84
+ "@types/react-dom": "^18.3.0",
85
+ "@types/react-slick": "^0.23.13",
86
+ "@typescript-eslint/eslint-plugin": "^7.9.0",
87
+ "@typescript-eslint/parser": "^7.9.0",
88
+ "@vanilla-extract/css-utils": "^0.1.4",
89
+ "@vanilla-extract/recipes": "^0.5.5",
90
+ "@vanilla-extract/vite-plugin": "^4.0.15",
91
+ "@vitejs/plugin-react-swc": "^3.7.0",
92
+ "esbuild-vanilla-image-loader": "^0.1.3",
93
+ "eslint": "^8.57.0",
94
+ "eslint-plugin-react-hooks": "^4.6.2",
95
+ "eslint-plugin-react-refresh": "^0.4.7",
96
+ "eslint-plugin-storybook": "^0.8.0",
97
+ "glob": "^10.4.5",
98
+ "husky": "^9.1.6",
99
+ "next": "^14.1.4",
100
+ "prettier": "3.2.5",
101
+ "react": "^18.3.1",
102
+ "react-dom": "^18.3.1",
103
+ "rollup-plugin-preserve-directives": "^0.4.0",
104
+ "rollup-plugin-svg-import": "^3.0.0",
105
+ "rollup-plugin-svgo": "^2.0.0",
106
+ "storybook": "^8.2.9",
107
+ "typescript": "^5.6.2",
108
+ "typescript-plugin-css-modules": "^5.1.0",
109
+ "vite": "^5.4.9",
110
+ "vite-plugin-dts": "^3.9.1",
111
+ "vite-plugin-lib-inject-css": "^2.1.1",
112
+ "vite-plugin-setting-css-module": "^1.1.4",
113
+ "vite-tsconfig-paths": "^4.3.2"
114
+ },
115
+ "main": "index.js",
116
+ "directories": {
117
+ "lib": "lib"
118
+ },
119
+ "author": "axos-web-dev",
120
+ "license": "ISC"
121
+ }