@acuteinfo/common-screens 1.0.3 → 1.0.5
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/index.d.ts +1 -0
- package/dist/index.js +445 -6
- package/dist/index.js.map +1 -1
- package/dist/pages/auth/forgotPassword.d.ts +17 -0
- package/dist/pages/auth/forgotPasswordField.d.ts +5 -0
- package/package.json +105 -105
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface ForgotPasswordControllerProps {
|
|
3
|
+
bannerDetails: {
|
|
4
|
+
bannerImg: string;
|
|
5
|
+
bannerTitle: string;
|
|
6
|
+
bannerNote: string;
|
|
7
|
+
};
|
|
8
|
+
logoUrl: string;
|
|
9
|
+
updatenewPassword: Function;
|
|
10
|
+
veirfyUsernameandMobileNo: Function;
|
|
11
|
+
verifyOTPForPWDReset: Function;
|
|
12
|
+
ResetPassword: Function;
|
|
13
|
+
LanguageComponent: React.ComponentType;
|
|
14
|
+
screenFlag: "password" | "totp";
|
|
15
|
+
}
|
|
16
|
+
export declare const ForgotPasswordControllerWrapper: React.FC<ForgotPasswordControllerProps>;
|
|
17
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@acuteinfo/common-screens",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"react",
|
|
7
|
-
"typescript",
|
|
8
|
-
"mui"
|
|
9
|
-
],
|
|
10
|
-
"description": "Acute Informatics - Common Screens",
|
|
11
|
-
"author": "Acute",
|
|
12
|
-
"main": "dist/index.js",
|
|
13
|
-
"types": "dist/index.d.ts",
|
|
14
|
-
"dependencies": {
|
|
15
|
-
"@acuteinfo/common-base": "^1.0.0",
|
|
16
|
-
"@emotion/react": "^11.11.1",
|
|
17
|
-
"@emotion/styled": "^11.11.0",
|
|
18
|
-
"@mui/icons-material": "^5.14.11",
|
|
19
|
-
"@mui/styles": "^5.14.11",
|
|
20
|
-
"buffer": "^6.0.3",
|
|
21
|
-
"clsx": "^1.1.1",
|
|
22
|
-
"crypto-js": "^4.2.0",
|
|
23
|
-
"history": "^5.0.0",
|
|
24
|
-
"husky": "^4.3.0",
|
|
25
|
-
"i18next": "^22.5.1",
|
|
26
|
-
"json-rules-engine": "^5.0.4",
|
|
27
|
-
"lint-staged": "^10.5.1",
|
|
28
|
-
"lodash-es": "^4.17.21",
|
|
29
|
-
"match-sorter": "^6.3.0",
|
|
30
|
-
"notistack": "^3.0.1",
|
|
31
|
-
"otp-input-react": "^0.3.0",
|
|
32
|
-
"platform": "^1.3.6",
|
|
33
|
-
"react-i18next": "^12.3.1",
|
|
34
|
-
"react-query": "^3.12.0",
|
|
35
|
-
"react-router-dom": "^6.16.0",
|
|
36
|
-
"regenerator-runtime": "^0.14.1",
|
|
37
|
-
"typeface-roboto": "^0.0.75",
|
|
38
|
-
"typescript": "^4.2.2"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"build": "rm -rf dist && npx rollup -c"
|
|
42
|
-
},
|
|
43
|
-
"eslintConfig": {
|
|
44
|
-
"extends": [
|
|
45
|
-
"react-app",
|
|
46
|
-
"react-app/jest"
|
|
47
|
-
],
|
|
48
|
-
"rules": {
|
|
49
|
-
"react/jsx-uses-react": "off",
|
|
50
|
-
"react/react-in-jsx-scope": "off"
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
"browserslist": {
|
|
54
|
-
"production": [
|
|
55
|
-
">0.2%",
|
|
56
|
-
"not dead",
|
|
57
|
-
"not op_mini all"
|
|
58
|
-
],
|
|
59
|
-
"development": [
|
|
60
|
-
"last 1 chrome version",
|
|
61
|
-
"last 1 firefox version",
|
|
62
|
-
"last 1 safari version"
|
|
63
|
-
]
|
|
64
|
-
},
|
|
65
|
-
"husky": {
|
|
66
|
-
"hooks": {
|
|
67
|
-
"pre-commit": "lint-staged"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"lint-staged": {
|
|
71
|
-
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
72
|
-
"prettier --write"
|
|
73
|
-
]
|
|
74
|
-
},
|
|
75
|
-
"devDependencies": {
|
|
76
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
77
|
-
"@rollup/plugin-commonjs": "^25.0.7",
|
|
78
|
-
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
79
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
80
|
-
"@rollup/plugin-typescript": "^11.1.6",
|
|
81
|
-
"@testing-library/jest-dom": "^4.2.4",
|
|
82
|
-
"@testing-library/react": "^9.3.2",
|
|
83
|
-
"@testing-library/user-event": "^7.1.2",
|
|
84
|
-
"@types/lodash": "^4.14.160",
|
|
85
|
-
"@types/lodash-es": "^4.17.4",
|
|
86
|
-
"@types/node": "^20.12.5",
|
|
87
|
-
"@types/react": "^18.2.74",
|
|
88
|
-
"@types/react-i18next": "^8.1.0",
|
|
89
|
-
"@types/yup": "^0.29.6",
|
|
90
|
-
"postcss": "^8.4.38",
|
|
91
|
-
"postcss-nested": "^6.0.1",
|
|
92
|
-
"postcss-simple-vars": "^7.0.1",
|
|
93
|
-
"prettier": "^3.2.5",
|
|
94
|
-
"rollup": "^4.14.0",
|
|
95
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
96
|
-
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
97
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
98
|
-
"source-map-explorer": "^2.5.2",
|
|
99
|
-
"tslib": "^2.6.2"
|
|
100
|
-
},
|
|
101
|
-
"peerDependencies": {
|
|
102
|
-
"@mui/material": "^5.14.11",
|
|
103
|
-
"react": "^18.2.0",
|
|
104
|
-
"react-dom": "^18.2.0"
|
|
105
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@acuteinfo/common-screens",
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"typescript",
|
|
8
|
+
"mui"
|
|
9
|
+
],
|
|
10
|
+
"description": "Acute Informatics - Common Screens",
|
|
11
|
+
"author": "Acute",
|
|
12
|
+
"main": "dist/index.js",
|
|
13
|
+
"types": "dist/index.d.ts",
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@acuteinfo/common-base": "^1.0.0",
|
|
16
|
+
"@emotion/react": "^11.11.1",
|
|
17
|
+
"@emotion/styled": "^11.11.0",
|
|
18
|
+
"@mui/icons-material": "^5.14.11",
|
|
19
|
+
"@mui/styles": "^5.14.11",
|
|
20
|
+
"buffer": "^6.0.3",
|
|
21
|
+
"clsx": "^1.1.1",
|
|
22
|
+
"crypto-js": "^4.2.0",
|
|
23
|
+
"history": "^5.0.0",
|
|
24
|
+
"husky": "^4.3.0",
|
|
25
|
+
"i18next": "^22.5.1",
|
|
26
|
+
"json-rules-engine": "^5.0.4",
|
|
27
|
+
"lint-staged": "^10.5.1",
|
|
28
|
+
"lodash-es": "^4.17.21",
|
|
29
|
+
"match-sorter": "^6.3.0",
|
|
30
|
+
"notistack": "^3.0.1",
|
|
31
|
+
"otp-input-react": "^0.3.0",
|
|
32
|
+
"platform": "^1.3.6",
|
|
33
|
+
"react-i18next": "^12.3.1",
|
|
34
|
+
"react-query": "^3.12.0",
|
|
35
|
+
"react-router-dom": "^6.16.0",
|
|
36
|
+
"regenerator-runtime": "^0.14.1",
|
|
37
|
+
"typeface-roboto": "^0.0.75",
|
|
38
|
+
"typescript": "^4.2.2"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "rm -rf dist && npx rollup -c"
|
|
42
|
+
},
|
|
43
|
+
"eslintConfig": {
|
|
44
|
+
"extends": [
|
|
45
|
+
"react-app",
|
|
46
|
+
"react-app/jest"
|
|
47
|
+
],
|
|
48
|
+
"rules": {
|
|
49
|
+
"react/jsx-uses-react": "off",
|
|
50
|
+
"react/react-in-jsx-scope": "off"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"browserslist": {
|
|
54
|
+
"production": [
|
|
55
|
+
">0.2%",
|
|
56
|
+
"not dead",
|
|
57
|
+
"not op_mini all"
|
|
58
|
+
],
|
|
59
|
+
"development": [
|
|
60
|
+
"last 1 chrome version",
|
|
61
|
+
"last 1 firefox version",
|
|
62
|
+
"last 1 safari version"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"husky": {
|
|
66
|
+
"hooks": {
|
|
67
|
+
"pre-commit": "lint-staged"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"lint-staged": {
|
|
71
|
+
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
72
|
+
"prettier --write"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
77
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
78
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
79
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
80
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
81
|
+
"@testing-library/jest-dom": "^4.2.4",
|
|
82
|
+
"@testing-library/react": "^9.3.2",
|
|
83
|
+
"@testing-library/user-event": "^7.1.2",
|
|
84
|
+
"@types/lodash": "^4.14.160",
|
|
85
|
+
"@types/lodash-es": "^4.17.4",
|
|
86
|
+
"@types/node": "^20.12.5",
|
|
87
|
+
"@types/react": "^18.2.74",
|
|
88
|
+
"@types/react-i18next": "^8.1.0",
|
|
89
|
+
"@types/yup": "^0.29.6",
|
|
90
|
+
"postcss": "^8.4.38",
|
|
91
|
+
"postcss-nested": "^6.0.1",
|
|
92
|
+
"postcss-simple-vars": "^7.0.1",
|
|
93
|
+
"prettier": "^3.2.5",
|
|
94
|
+
"rollup": "^4.14.0",
|
|
95
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
96
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
97
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
98
|
+
"source-map-explorer": "^2.5.2",
|
|
99
|
+
"tslib": "^2.6.2"
|
|
100
|
+
},
|
|
101
|
+
"peerDependencies": {
|
|
102
|
+
"@mui/material": "^5.14.11",
|
|
103
|
+
"react": "^18.2.0",
|
|
104
|
+
"react-dom": "^18.2.0"
|
|
105
|
+
}
|
|
106
106
|
}
|