@truedat/cx 4.49.9 → 4.50.2
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/cx",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.50.2",
|
|
4
4
|
"description": "Truedat Web Connectors",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
94
|
"@apollo/client": "^3.6.4",
|
|
95
|
-
"@truedat/core": "4.
|
|
95
|
+
"@truedat/core": "4.50.2",
|
|
96
96
|
"lodash": "^4.17.21",
|
|
97
97
|
"match-sorter": "^6.3.1",
|
|
98
98
|
"path-to-regexp": "^1.7.0",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"react-dom": ">= 16.8.6 < 17",
|
|
112
112
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "5785ca8828b3c25947e8d2587c909f729fbee317"
|
|
115
115
|
}
|
|
@@ -29,7 +29,7 @@ const isValid = _.conforms({
|
|
|
29
29
|
|
|
30
30
|
const ConfigurationForm = ({
|
|
31
31
|
configuration,
|
|
32
|
-
|
|
32
|
+
onSubmit,
|
|
33
33
|
selectTemplate,
|
|
34
34
|
template,
|
|
35
35
|
templates,
|
|
@@ -93,7 +93,7 @@ const ConfigurationForm = ({
|
|
|
93
93
|
const newConfiguration = _.pick(["external_id", "type"])(formState);
|
|
94
94
|
const appliedContent = _.flow(_.prop("content"), applyTemplate)(formState);
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
onSubmit({
|
|
97
97
|
configuration: {
|
|
98
98
|
...newConfiguration,
|
|
99
99
|
content: appliedContent,
|
|
@@ -166,7 +166,7 @@ const ConfigurationForm = ({
|
|
|
166
166
|
|
|
167
167
|
ConfigurationForm.propTypes = {
|
|
168
168
|
configuration: PropTypes.object,
|
|
169
|
-
|
|
169
|
+
onSubmit: PropTypes.func,
|
|
170
170
|
selectTemplate: PropTypes.func,
|
|
171
171
|
template: PropTypes.object,
|
|
172
172
|
templates: PropTypes.array,
|