@arquimedes.co/eureka-forms 1.9.68 → 1.9.70-test
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.
|
@@ -22,10 +22,10 @@ function ConfirmationDialog(_a) {
|
|
|
22
22
|
maxWidth: '100vw',
|
|
23
23
|
boxSizing: 'content-box',
|
|
24
24
|
},
|
|
25
|
-
}, open: true }, { children: _jsxs("div", __assign({ className: styles.confirmationContainer, style: { color:
|
|
25
|
+
}, open: true }, { children: _jsxs("div", __assign({ className: styles.confirmationContainer, style: { color: '#293241' } }, { children: [_jsx("div", __assign({ className: styles.closeIcon, onClick: function () {
|
|
26
26
|
onClose();
|
|
27
27
|
} }, { children: _jsx(CloseRoundedIcon, { fontSize: "inherit" }) })), _jsxs("div", __assign({ className: styles.container }, { children: [_jsx("div", __assign({ className: styles.checkContainer, style: { color: formStyle.primaryColor } }, { children: _jsx(CheckCircleOutlineRoundedIcon, { fontSize: "inherit", style: { fontSize: '160px' } }) })), _jsxs("div", __assign({ className: styles.messageContainer }, { children: ["Tu caso n\u00FAmero", ' ', _jsx("span", __assign({ style: { fontWeight: 'bold' } }, { children: confirmation.case })), ' ', "ha sido registrado!"] })), _jsx("div", __assign({ className: styles.messageContainer }, { children: "Pronto te estaremos dando respuesta." })), _jsxs("div", __assign({ className: styles.linkContainer }, { children: ["Puedes consultar el estado aqui:", ' '] })), _jsx("a", __assign({ className: styles.url, "data-testid": "ResUrl", target: "_blank", href: confirmation.url, style: {
|
|
28
|
-
color:
|
|
28
|
+
color: '#293241',
|
|
29
29
|
} }, { children: confirmation.url }))] }))] })) })));
|
|
30
30
|
}
|
|
31
31
|
export default ConfirmationDialog;
|
|
@@ -48,12 +48,12 @@ function ClassifierSelector(_a) {
|
|
|
48
48
|
ClassifierOptionTypes.HIDE &&
|
|
49
49
|
((_b = form.classifiers) === null || _b === void 0 ? void 0 : _b[idClassifier]);
|
|
50
50
|
}).map(function (idClassifier) {
|
|
51
|
-
var _a;
|
|
51
|
+
var _a, _b, _c;
|
|
52
52
|
var classifier = (_a = form.classifiers) === null || _a === void 0 ? void 0 : _a[idClassifier];
|
|
53
53
|
return {
|
|
54
54
|
value: classifier === null || classifier === void 0 ? void 0 : classifier._id,
|
|
55
|
-
label: (classifier === null || classifier === void 0 ? void 0 : classifier.clientName) && others.preview
|
|
56
|
-
? classifier.clientName
|
|
55
|
+
label: ((_c = (_b = classifier === null || classifier === void 0 ? void 0 : classifier.clientName) === null || _b === void 0 ? void 0 : _b.trim) === null || _c === void 0 ? void 0 : _c.call(_b)) && others.preview
|
|
56
|
+
? classifier === null || classifier === void 0 ? void 0 : classifier.clientName
|
|
57
57
|
: classifier === null || classifier === void 0 ? void 0 : classifier.name,
|
|
58
58
|
};
|
|
59
59
|
});
|
|
@@ -86,6 +86,9 @@ var useOutlinedInputStyles = function (props) {
|
|
|
86
86
|
'&.Mui-error .EF-MuiOutlinedInput-notchedOutline': {
|
|
87
87
|
borderColor: props.outlineColor,
|
|
88
88
|
},
|
|
89
|
+
'&.Mui-disabled .EF-MuiOutlinedInput-notchedOutline': {
|
|
90
|
+
borderColor: props.outlineColor,
|
|
91
|
+
},
|
|
89
92
|
'& .EF-MuiSelect-root': {
|
|
90
93
|
paddingLeft: props.paddingLeft,
|
|
91
94
|
},
|
package/package.json
CHANGED