@arquimedes.co/eureka-forms 3.0.32 → 3.0.33
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.
|
@@ -290,6 +290,8 @@ var getEntityValueOptions = function (step, dependencyStore, _a, fetchFilterInte
|
|
|
290
290
|
if (currentValue) {
|
|
291
291
|
if (typeof currentValue === 'string')
|
|
292
292
|
payload[key] = currentValue;
|
|
293
|
+
else if (currentValue instanceof Date)
|
|
294
|
+
payload[key] = currentValue.toISOString();
|
|
293
295
|
else
|
|
294
296
|
payload[key] =
|
|
295
297
|
(_p = currentValue._id) !== null && _p !== void 0 ? _p : currentValue.id;
|
package/package.json
CHANGED
|
@@ -1,128 +1,128 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
2
|
+
"name": "@arquimedes.co/eureka-forms",
|
|
3
|
+
"repository": "git://github.com/Arquimede5/Eureka-Forms.git",
|
|
4
|
+
"version": "3.0.33",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"start": "react-scripts start",
|
|
7
|
+
"build": "react-scripts build",
|
|
8
|
+
"lint": "eslint 'src/**/*.ts'",
|
|
9
|
+
"test": "react-scripts test",
|
|
10
|
+
"test-ci": "react-scripts test --reporters=default --reporters=jest-junit --coverage --coverageReporters cobertura html",
|
|
11
|
+
"tsc-build": "tsc --noEmit false --outDir ./dist --incremental false",
|
|
12
|
+
"watch": "tsc -w --noEmit false --outDir ./dist --preserveWatchOutput",
|
|
13
|
+
"storybook": "storybook dev -p 6006",
|
|
14
|
+
"build-storybook": "storybook build",
|
|
15
|
+
"cypress": "DISPLAY=:0 cypress open"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@date-io/date-fns": "^1.3.13",
|
|
19
|
+
"@material-ui/core": "^4.11.3",
|
|
20
|
+
"@material-ui/icons": "^4.11.2",
|
|
21
|
+
"@material-ui/lab": "^4.0.0-alpha.57",
|
|
22
|
+
"@material-ui/pickers": "^3.3.10",
|
|
23
|
+
"@reduxjs/toolkit": "^1.9.7",
|
|
24
|
+
"axios": "^1.6.3",
|
|
25
|
+
"date-fns": "^2.23.0",
|
|
26
|
+
"draft-js": "^0.11.7",
|
|
27
|
+
"i18n-iso-countries": "^7.11.3",
|
|
28
|
+
"jwt-decode": "^4.0.0",
|
|
29
|
+
"libphonenumber-js": "^1.11.7",
|
|
30
|
+
"logrocket": "^2.2.1",
|
|
31
|
+
"nanoid": "^3.3.7",
|
|
32
|
+
"react-draft-wysiwyg": "^1.15.0",
|
|
33
|
+
"react-google-recaptcha": "^3.1.0",
|
|
34
|
+
"react-hook-form": "^7.48.2",
|
|
35
|
+
"react-international-phone": "^4.3.0",
|
|
36
|
+
"react-redux": "^8.1.3",
|
|
37
|
+
"typescript": "^4.9.5"
|
|
38
|
+
},
|
|
39
|
+
"eslintConfig": {
|
|
40
|
+
"extends": [
|
|
41
|
+
"react-app",
|
|
42
|
+
"react-app/jest"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"browserslist": {
|
|
46
|
+
"production": [
|
|
47
|
+
">0.2%",
|
|
48
|
+
"not dead",
|
|
49
|
+
"not op_mini all"
|
|
50
|
+
],
|
|
51
|
+
"development": [
|
|
52
|
+
"last 1 chrome version",
|
|
53
|
+
"last 1 firefox version",
|
|
54
|
+
"last 1 safari version"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
59
|
+
"@babel/preset-env": "^7.23.5",
|
|
60
|
+
"@babel/preset-react": "^7.23.3",
|
|
61
|
+
"@babel/preset-typescript": "^7.23.3",
|
|
62
|
+
"@faker-js/faker": "^8.3.1",
|
|
63
|
+
"@storybook/addon-coverage": "^1.0.0",
|
|
64
|
+
"@storybook/addon-essentials": "^7.6.4",
|
|
65
|
+
"@storybook/addon-interactions": "^7.6.4",
|
|
66
|
+
"@storybook/addon-links": "^7.6.4",
|
|
67
|
+
"@storybook/addon-onboarding": "^1.0.9",
|
|
68
|
+
"@storybook/addon-themes": "^7.6.4",
|
|
69
|
+
"@storybook/blocks": "^7.6.4",
|
|
70
|
+
"@storybook/react": "^7.6.4",
|
|
71
|
+
"@storybook/react-webpack5": "^7.6.4",
|
|
72
|
+
"@storybook/test": "^7.6.4",
|
|
73
|
+
"@storybook/testing-library": "^0.2.2",
|
|
74
|
+
"@testing-library/dom": "^9.3.3",
|
|
75
|
+
"@testing-library/jest-dom": "^6.1.5",
|
|
76
|
+
"@testing-library/react": "^12.1.5",
|
|
77
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
78
|
+
"@testing-library/user-event": "^14.5.1",
|
|
79
|
+
"@types/draft-js": "^0.11.16",
|
|
80
|
+
"@types/jest": "^29.5.10",
|
|
81
|
+
"@types/react": "^17.0.71",
|
|
82
|
+
"@types/react-dom": "^17.0.25",
|
|
83
|
+
"@types/react-draft-wysiwyg": "^1.13.7",
|
|
84
|
+
"@types/react-google-recaptcha": "^2.1.8",
|
|
85
|
+
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
86
|
+
"@typescript-eslint/parser": "^6.13.1",
|
|
87
|
+
"chromatic": "^10.0.0",
|
|
88
|
+
"cypress": "^13.8.1",
|
|
89
|
+
"dotenv-webpack": "^8.0.1",
|
|
90
|
+
"eslint": "^8.55.0",
|
|
91
|
+
"eslint-config-prettier": "^9.1.0",
|
|
92
|
+
"eslint-plugin-css-modules": "^2.12.0",
|
|
93
|
+
"eslint-plugin-prettier": "^5.0.1",
|
|
94
|
+
"eslint-plugin-storybook": "^0.6.15",
|
|
95
|
+
"identity-obj-proxy": "^3.0.0",
|
|
96
|
+
"jest": "^29.7.0",
|
|
97
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
98
|
+
"jest-junit": "^16.0.0",
|
|
99
|
+
"jest-mock-axios": "^4.7.3",
|
|
100
|
+
"prettier": "^3.1.0",
|
|
101
|
+
"react-docgen-typescript": "^2.2.2",
|
|
102
|
+
"react-refresh": "^0.11.0",
|
|
103
|
+
"react-scripts": "5.0.1",
|
|
104
|
+
"storybook": "^7.6.4",
|
|
105
|
+
"storybook-mock-date-decorator": "^1.0.1",
|
|
106
|
+
"ts-jest": "^29.1.1"
|
|
107
|
+
},
|
|
108
|
+
"peerDependencies": {
|
|
109
|
+
"react": "^17.x.x",
|
|
110
|
+
"react-dom": "^17.x.x"
|
|
111
|
+
},
|
|
112
|
+
"publishConfig": {
|
|
113
|
+
"access": "public"
|
|
114
|
+
},
|
|
115
|
+
"main": "./dist/index.lib.js",
|
|
116
|
+
"files": [
|
|
117
|
+
"/dist"
|
|
50
118
|
],
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
"@babel/preset-react": "^7.23.3",
|
|
61
|
-
"@babel/preset-typescript": "^7.23.3",
|
|
62
|
-
"@faker-js/faker": "^8.3.1",
|
|
63
|
-
"@storybook/addon-coverage": "^1.0.0",
|
|
64
|
-
"@storybook/addon-essentials": "^7.6.4",
|
|
65
|
-
"@storybook/addon-interactions": "^7.6.4",
|
|
66
|
-
"@storybook/addon-links": "^7.6.4",
|
|
67
|
-
"@storybook/addon-onboarding": "^1.0.9",
|
|
68
|
-
"@storybook/addon-themes": "^7.6.4",
|
|
69
|
-
"@storybook/blocks": "^7.6.4",
|
|
70
|
-
"@storybook/react": "^7.6.4",
|
|
71
|
-
"@storybook/react-webpack5": "^7.6.4",
|
|
72
|
-
"@storybook/test": "^7.6.4",
|
|
73
|
-
"@storybook/testing-library": "^0.2.2",
|
|
74
|
-
"@testing-library/dom": "^9.3.3",
|
|
75
|
-
"@testing-library/jest-dom": "^6.1.5",
|
|
76
|
-
"@testing-library/react": "^12.1.5",
|
|
77
|
-
"@testing-library/react-hooks": "^8.0.1",
|
|
78
|
-
"@testing-library/user-event": "^14.5.1",
|
|
79
|
-
"@types/draft-js": "^0.11.16",
|
|
80
|
-
"@types/jest": "^29.5.10",
|
|
81
|
-
"@types/react": "^17.0.71",
|
|
82
|
-
"@types/react-dom": "^17.0.25",
|
|
83
|
-
"@types/react-draft-wysiwyg": "^1.13.7",
|
|
84
|
-
"@types/react-google-recaptcha": "^2.1.8",
|
|
85
|
-
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
86
|
-
"@typescript-eslint/parser": "^6.13.1",
|
|
87
|
-
"chromatic": "^10.0.0",
|
|
88
|
-
"cypress": "^13.8.1",
|
|
89
|
-
"dotenv-webpack": "^8.0.1",
|
|
90
|
-
"eslint": "^8.55.0",
|
|
91
|
-
"eslint-config-prettier": "^9.1.0",
|
|
92
|
-
"eslint-plugin-css-modules": "^2.12.0",
|
|
93
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
94
|
-
"eslint-plugin-storybook": "^0.6.15",
|
|
95
|
-
"identity-obj-proxy": "^3.0.0",
|
|
96
|
-
"jest": "^29.7.0",
|
|
97
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
98
|
-
"jest-junit": "^16.0.0",
|
|
99
|
-
"jest-mock-axios": "^4.7.3",
|
|
100
|
-
"prettier": "^3.1.0",
|
|
101
|
-
"react-docgen-typescript": "^2.2.2",
|
|
102
|
-
"react-refresh": "^0.11.0",
|
|
103
|
-
"react-scripts": "5.0.1",
|
|
104
|
-
"storybook": "^7.6.4",
|
|
105
|
-
"storybook-mock-date-decorator": "^1.0.1",
|
|
106
|
-
"ts-jest": "^29.1.1"
|
|
107
|
-
},
|
|
108
|
-
"peerDependencies": {
|
|
109
|
-
"react": "^17.x.x",
|
|
110
|
-
"react-dom": "^17.x.x"
|
|
111
|
-
},
|
|
112
|
-
"publishConfig": {
|
|
113
|
-
"access": "public"
|
|
114
|
-
},
|
|
115
|
-
"main": "./dist/index.lib.js",
|
|
116
|
-
"files": [
|
|
117
|
-
"/dist"
|
|
118
|
-
],
|
|
119
|
-
"jest": {
|
|
120
|
-
"transformIgnorePatterns": [
|
|
121
|
-
"node_modules/(?!axios)"
|
|
122
|
-
],
|
|
123
|
-
"moduleNameMapper": {
|
|
124
|
-
"\\.(scss|sass|css)$": "identity-obj-proxy"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
"proxy": "https://api.forms.capta.co"
|
|
119
|
+
"jest": {
|
|
120
|
+
"transformIgnorePatterns": [
|
|
121
|
+
"node_modules/(?!axios)"
|
|
122
|
+
],
|
|
123
|
+
"moduleNameMapper": {
|
|
124
|
+
"\\.(scss|sass|css)$": "identity-obj-proxy"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"proxy": "https://api.forms.capta.co"
|
|
128
128
|
}
|