@tap-payments/auth-jsconnect 2.3.62-test → 2.3.64-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.
|
@@ -93,6 +93,9 @@ var ButtonStyled = styled(Button, {
|
|
|
93
93
|
} }, (hasUrl && {
|
|
94
94
|
svg: {
|
|
95
95
|
filter: 'brightness(3)'
|
|
96
|
+
},
|
|
97
|
+
img: {
|
|
98
|
+
filter: 'brightness(3)'
|
|
96
99
|
}
|
|
97
100
|
})))) }, _b[theme.breakpoints.down('sm')] = {
|
|
98
101
|
'&:hover': __assign({ backgroundColor: theme.palette.common.white, border: "1px solid ".concat(theme.palette.primary.main), img: {
|
|
@@ -102,6 +105,9 @@ var ButtonStyled = styled(Button, {
|
|
|
102
105
|
} }, (hasUrl && {
|
|
103
106
|
svg: {
|
|
104
107
|
filter: 'brightness(3)'
|
|
108
|
+
},
|
|
109
|
+
img: {
|
|
110
|
+
filter: 'brightness(3)'
|
|
105
111
|
}
|
|
106
112
|
}))))
|
|
107
113
|
}, _b['&:disabled'] = {
|
|
@@ -169,10 +169,10 @@ var UploadMultipleFile = function (_a) {
|
|
|
169
169
|
}
|
|
170
170
|
};
|
|
171
171
|
var fileExists = fileInfoArray.length > 0;
|
|
172
|
-
return (_jsxs(FeatureStyled, { children: [_jsxs(LabelContainerStyled, { children: [_jsx(InputLabelStyled, { children: _jsxs(_Fragment, { children: [label, required && _jsx(Mandatory, {})] }) }), _jsx(Collapse, __assign({ in: !!uploadedFileCount, timeout: 100, unmountOnExit: true }, { children: _jsx(UploadCountBox, { children: "".concat(uploadedFileCount, " ").concat(t('uploaded_file')) }) }))] }), _jsx(Collapse, __assign({ in:
|
|
172
|
+
return (_jsxs(FeatureStyled, { children: [_jsxs(LabelContainerStyled, { children: [_jsx(InputLabelStyled, { children: _jsxs(_Fragment, { children: [label, required && _jsx(Mandatory, {})] }) }), _jsx(Collapse, __assign({ in: !!uploadedFileCount, timeout: 100, unmountOnExit: true }, { children: _jsx(UploadCountBox, { children: "".concat(uploadedFileCount, " ").concat(t('uploaded_file')) }) }))] }), _jsx(Collapse, __assign({ in: fileExists, timeout: 300 }, { children: (fileArray || []).map(function (file, index) {
|
|
173
173
|
return (_jsx(UploadFile, { readOnly: readOnly, required: required, purpose: purpose, fileType: fileType, title: fileTitle, isSubmitting: isSubmitting, uploadedFiles: fileInfoArray, index: index, file: file, sx: {
|
|
174
174
|
borderBottom: index === fileArray.length - 1 ? "1px solid ".concat(alpha(theme.palette.divider, 0.8)) : ''
|
|
175
175
|
}, onSuccess: handleSuccess, onDelete: handleDelete, onUpdate: handleUpdate }, index));
|
|
176
|
-
}) }))] }));
|
|
176
|
+
}) })), _jsx(Collapse, __assign({ in: !readOnly }, { children: _jsx(InputContainerStyled, __assign({ sx: { mt: 2.5 } }, { children: _jsx(DragAndDrop, { title: title, subTitle: subTitle, description: dragDescription, fileExists: fileExists, uploadingTitle: uploadingTitle, successTitle: successTitle, onSuccess: handleFileChange, multiple: true, error: error }) })) }))] }));
|
|
177
177
|
};
|
|
178
178
|
export default UploadMultipleFile;
|