@xaypay/tui 0.0.43 → 0.0.46
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/.idea/tui.iml +1 -1
- package/.idea/workspace.xml +26 -960
- package/dist/index.es.js +25 -21
- package/dist/index.js +25 -21
- package/package.json +1 -1
- package/src/components/autocomplate/index.js +1 -2
- package/src/components/file/file.module.css +0 -19
- package/src/components/file/index.js +12 -11
- package/src/components/typography/index.js +7 -4
- package/src/components/typography/typography.stories.js +2 -0
package/dist/index.es.js
CHANGED
|
@@ -144,6 +144,7 @@ const TypographyType = {
|
|
|
144
144
|
i: 'i'
|
|
145
145
|
};
|
|
146
146
|
const Typography = ({
|
|
147
|
+
onClick,
|
|
147
148
|
variant,
|
|
148
149
|
className,
|
|
149
150
|
color,
|
|
@@ -168,17 +169,20 @@ const Typography = ({
|
|
|
168
169
|
${bold ? 'font-weight: bold;' : ''}
|
|
169
170
|
`;
|
|
170
171
|
return /*#__PURE__*/React.createElement(StyledTypograpy, {
|
|
171
|
-
className: classProps
|
|
172
|
+
className: classProps,
|
|
173
|
+
onClick: onClick
|
|
172
174
|
}, " ", children, " ");
|
|
173
175
|
};
|
|
174
176
|
Typography.propTypes = {
|
|
175
177
|
variant: PropTypes.oneOf(Object.values(TypographyType)),
|
|
176
178
|
className: PropTypes.string,
|
|
177
179
|
bold: PropTypes.bool,
|
|
178
|
-
color: PropTypes.string
|
|
180
|
+
color: PropTypes.string,
|
|
181
|
+
onClick: PropTypes.func
|
|
179
182
|
};
|
|
180
183
|
Typography.defaultProps = {
|
|
181
|
-
variant: 'h1'
|
|
184
|
+
variant: 'h1',
|
|
185
|
+
onClick: () => {}
|
|
182
186
|
};
|
|
183
187
|
|
|
184
188
|
var css_248z$b = ".autocomplate-module_autocomplate-content__UbIUT{display:flex;flex-direction:column;position:relative}.autocomplate-module_autocomplate-content-top__FVgCp{border:2px solid #d1d1d1;border-radius:6px;box-sizing:border-box;color:#3c393e;cursor:pointer;display:flex;flex-direction:row;font-size:16px;font-weight:500;height:46px;line-height:22px;max-width:400px;padding:0 15px;transition:border-color .24s}.autocomplate-module_autocomplate-content-top__FVgCp.autocomplate-module_active__40fdV{border-color:#00236a}.autocomplate-module_autocomplate-content-top__FVgCp:hover{border-color:#3c393e}.autocomplate-module_autocomplate-content-bottom__yk0zP{animation:autocomplate-module_select-show__7Uap4 .64s linear forwards;background:#fbfbfb;border-radius:6px;box-shadow:0 0 10px rgba(60,57,62,.08);left:0;max-height:0;max-width:400px;overflow:hidden;position:absolute;top:52px;width:100%;z-index:1}.autocomplate-module_autocomplate-content-bottom-inner__rF5IF{display:flex;flex-direction:column;max-height:234px;overflow-x:hidden;overflow-y:auto}@keyframes autocomplate-module_select-show__7Uap4{to{max-height:400px}}.autocomplate-module_autocomplate-content-bottom-row__dRsZa{align-items:center;background:#fff;box-sizing:border-box;color:#3c393e;cursor:pointer;display:flex;font-size:16px;font-weight:500;height:46px;line-height:22px;margin-bottom:2px;padding:0 15px;transition:background .24s,color .24s}.autocomplate-module_autocomplate-content-bottom-row__dRsZa .autocomplate-module_no-option__xv0-E{color:red}.autocomplate-module_autocomplate-content-bottom-row__dRsZa:hover{background:unset;color:#00236a}.autocomplate-module_option-active__WuH4I .autocomplate-module_autocomplate-content-bottom-row__dRsZa{color:#00236a}.autocomplate-module_autocomplate-title__3Qxqz{color:#3c393e;display:block;font-size:16px;font-weight:500;line-height:22px;margin-bottom:6px;text-transform:none}";
|
|
@@ -213,7 +217,7 @@ const Autocomplate = ({
|
|
|
213
217
|
useEffect(() => {
|
|
214
218
|
setInputValue(JSON.parse(jsonSelectedOptionsData)[keyNames.name]);
|
|
215
219
|
setInputId(JSON.parse(jsonSelectedOptionsData)[keyNames.id]);
|
|
216
|
-
}, [jsonSelectedOptionsData]);
|
|
220
|
+
}, [JSON.parse(jsonSelectedOptionsData)[keyNames.id]]);
|
|
217
221
|
const handleChange = e => {
|
|
218
222
|
const currentInputValue = e.currentTarget.value;
|
|
219
223
|
setInputId(null);
|
|
@@ -281,7 +285,6 @@ const Autocomplate = ({
|
|
|
281
285
|
id: inputId,
|
|
282
286
|
type: "text",
|
|
283
287
|
className: styles$a['autocomplate-content-top'],
|
|
284
|
-
required: required,
|
|
285
288
|
disabled: disabled,
|
|
286
289
|
onChange: handleChange,
|
|
287
290
|
onClick: () => {
|
|
@@ -946,7 +949,7 @@ Select.defaultProps = {
|
|
|
946
949
|
required: false
|
|
947
950
|
};
|
|
948
951
|
|
|
949
|
-
var css_248z$2 = ".file-module_file-form__l13d5{align-items:center;background:#fbfbfb;border:2px dashed;border-radius:6px;cursor:pointer;display:flex;flex-direction:column;height:190px;justify-content:space-between;overflow:hidden;padding:4px 0;position:relative;width:100%}.file-module_file-form-wrap__qY--B:before{background:rgba(60,57,62,.4);border-radius:6px;content:\"\";height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;transition:opacity .24s;width:100%;z-index:1}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover:before{opacity:1;pointer-events:unset}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover .file-module_delete-upload-icon__PWN66{opacity:1}.file-module_file-form-inner-upload__tq3Dn{align-items:center;display:flex;flex-direction:column;justify-content:space-between;padding-bottom:16px;padding-top:48px}.file-module_file-form-inner-upload__tq3Dn>img{display:block;margin-bottom:14px}.file-module_upload-info__a8GFs{margin-bottom:40px;max-width:150px;text-align:center}.file-module_upload-info-txt__l11uN{color:#0da574}.file-module_file-form__l13d5.file-module_default__t7KU0{border-color:#d1d1d1}.file-module_file-form__l13d5.file-module_error__H-M4Z{border-color:#e00}.file-module_file-form__l13d5.file-module_accept__WTW6V{border-color:#00236a}.file-module_delete-upload-icon__PWN66{align-items:center;background:#fff;border-radius:6px;cursor:pointer;display:flex;height:26px;justify-content:center;opacity:0;position:absolute;right:10px;top:10px;transition:opacity .24s;width:26px;z-index:11}.file-module_delete-upload-icon__PWN66>i{color:#00236a;font-size:16px}.file-module_upload-file-content__QHMjn{align-items:center;display:flex;height:100%;justify-content:center;max-height:190px;overflow:hidden;position:relative;width:100%}.file-module_upload-file-content__QHMjn>img{bottom:0;display:block;height:190px;left:0;margin:auto;max-height:190px;position:absolute;right:0;top:0;width:auto}.file-module_file-form-title__zWTSB{margin-bottom:10px;max-width:390px;word-break:break-all}.file-module_file-form-wrap__qY--B{position:relative;transform:translateZ(0)}
|
|
952
|
+
var css_248z$2 = ".file-module_file-form__l13d5{align-items:center;background:#fbfbfb;border:2px dashed;border-radius:6px;cursor:pointer;display:flex;flex-direction:column;height:190px;justify-content:space-between;overflow:hidden;padding:4px 0;position:relative;width:100%}.file-module_file-form-wrap__qY--B:before{background:rgba(60,57,62,.4);border-radius:6px;content:\"\";height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;transition:opacity .24s;width:100%;z-index:1}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover:before{opacity:1;pointer-events:unset}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover .file-module_delete-upload-icon__PWN66{opacity:1}.file-module_file-form-inner-upload__tq3Dn{align-items:center;display:flex;flex-direction:column;justify-content:space-between;padding-bottom:16px;padding-top:48px}.file-module_file-form-inner-upload__tq3Dn>img{display:block;margin-bottom:14px}.file-module_upload-info__a8GFs{margin-bottom:40px;max-width:150px;text-align:center}.file-module_upload-info-txt__l11uN{color:#0da574}.file-module_file-form__l13d5.file-module_default__t7KU0{border-color:#d1d1d1}.file-module_file-form__l13d5.file-module_error__H-M4Z{border-color:#e00}.file-module_file-form__l13d5.file-module_accept__WTW6V{border-color:#00236a}.file-module_delete-upload-icon__PWN66{align-items:center;background:#fff;border-radius:6px;cursor:pointer;display:flex;height:26px;justify-content:center;opacity:0;position:absolute;right:10px;top:10px;transition:opacity .24s;width:26px;z-index:11}.file-module_delete-upload-icon__PWN66>i{color:#00236a;font-size:16px}.file-module_upload-file-content__QHMjn{align-items:center;display:flex;height:100%;justify-content:center;max-height:190px;overflow:hidden;position:relative;width:100%}.file-module_upload-file-content__QHMjn>img{bottom:0;display:block;height:190px;left:0;margin:auto;max-height:190px;position:absolute;right:0;top:0;width:auto}.file-module_file-form-title__zWTSB{margin-bottom:10px;max-width:390px;word-break:break-all}.file-module_file-form-wrap__qY--B{position:relative;transform:translateZ(0)}";
|
|
950
953
|
var styles$2 = {"file-form-wrap":"file-module_file-form-wrap__qY--B","file-form":"file-module_file-form__l13d5","active":"file-module_active__L1gPt","delete-upload-icon":"file-module_delete-upload-icon__PWN66","file-form-inner-upload":"file-module_file-form-inner-upload__tq3Dn","upload-info":"file-module_upload-info__a8GFs","upload-info-txt":"file-module_upload-info-txt__l11uN","default":"file-module_default__t7KU0","error":"file-module_error__H-M4Z","accept":"file-module_accept__WTW6V","upload-file-content":"file-module_upload-file-content__QHMjn","file-form-title":"file-module_file-form-title__zWTSB"};
|
|
951
954
|
styleInject(css_248z$2);
|
|
952
955
|
|
|
@@ -963,15 +966,22 @@ const File = ({
|
|
|
963
966
|
}) => {
|
|
964
967
|
const pdfImageName = 'https://play-lh.googleusercontent.com/kIwlXqs28otssKK_9AKwdkB6gouex_U2WmtLshTACnwIJuvOqVvJEzewpzuYBXwXQQ';
|
|
965
968
|
const [image, setImage] = useState(defaultData ? defaultData.type != 'application/pdf' ? defaultData.url : pdfImageName : null);
|
|
966
|
-
const [error, setError] = useState(
|
|
969
|
+
const [error, setError] = useState('');
|
|
967
970
|
const [fileName, setFileName] = useState('no selected file');
|
|
968
971
|
function fileType(file) {
|
|
969
|
-
if (file.size <= 5000000) {
|
|
970
|
-
if (file.type === 'image/jpeg' || file.type === 'image/png') {
|
|
971
|
-
|
|
972
|
+
if (file[0].size <= 5000000) {
|
|
973
|
+
if (file[0].type === 'image/jpeg' || file[0].type === 'image/png') {
|
|
974
|
+
setFileName(file[0].name);
|
|
975
|
+
setImage(URL.createObjectURL(file[0]));
|
|
976
|
+
onChange({
|
|
977
|
+
file
|
|
978
|
+
});
|
|
972
979
|
setError('');
|
|
973
|
-
} else if (file.type === 'application/pdf') {
|
|
980
|
+
} else if (file[0].type === 'application/pdf') {
|
|
974
981
|
setImage(pdfImageName);
|
|
982
|
+
onChange({
|
|
983
|
+
file
|
|
984
|
+
});
|
|
975
985
|
setError('');
|
|
976
986
|
} else {
|
|
977
987
|
setImage(null);
|
|
@@ -997,7 +1007,7 @@ const File = ({
|
|
|
997
1007
|
onChange: e => {
|
|
998
1008
|
console.log(e);
|
|
999
1009
|
},
|
|
1000
|
-
style: error ? {
|
|
1010
|
+
style: error || errorMesage ? {
|
|
1001
1011
|
borderColor: 'red'
|
|
1002
1012
|
} : {},
|
|
1003
1013
|
onClick: () => {
|
|
@@ -1013,14 +1023,8 @@ const File = ({
|
|
|
1013
1023
|
files
|
|
1014
1024
|
}
|
|
1015
1025
|
}) => {
|
|
1016
|
-
onChange({
|
|
1017
|
-
target: {
|
|
1018
|
-
files
|
|
1019
|
-
}
|
|
1020
|
-
});
|
|
1021
|
-
files[0] && setFileName(files[0].name);
|
|
1022
1026
|
if (files[0]) {
|
|
1023
|
-
fileType(files
|
|
1027
|
+
fileType(files);
|
|
1024
1028
|
}
|
|
1025
1029
|
}
|
|
1026
1030
|
}), image ? /*#__PURE__*/React.createElement("div", {
|
|
@@ -1051,11 +1055,11 @@ const File = ({
|
|
|
1051
1055
|
}
|
|
1052
1056
|
}, /*#__PURE__*/React.createElement("i", {
|
|
1053
1057
|
className: "icon-delete"
|
|
1054
|
-
})), error ? /*#__PURE__*/React.createElement("span", {
|
|
1058
|
+
})), errorMesage || error ? /*#__PURE__*/React.createElement("span", {
|
|
1055
1059
|
style: {
|
|
1056
1060
|
color: 'red'
|
|
1057
1061
|
}
|
|
1058
|
-
}, error) : null));
|
|
1062
|
+
}, errorMesage || error) : null));
|
|
1059
1063
|
};
|
|
1060
1064
|
File.propTypes = {
|
|
1061
1065
|
className: PropTypes.string,
|
package/dist/index.js
CHANGED
|
@@ -155,6 +155,7 @@ const TypographyType = {
|
|
|
155
155
|
i: 'i'
|
|
156
156
|
};
|
|
157
157
|
const Typography = ({
|
|
158
|
+
onClick,
|
|
158
159
|
variant,
|
|
159
160
|
className,
|
|
160
161
|
color,
|
|
@@ -179,17 +180,20 @@ const Typography = ({
|
|
|
179
180
|
${bold ? 'font-weight: bold;' : ''}
|
|
180
181
|
`;
|
|
181
182
|
return /*#__PURE__*/React__default["default"].createElement(StyledTypograpy, {
|
|
182
|
-
className: classProps
|
|
183
|
+
className: classProps,
|
|
184
|
+
onClick: onClick
|
|
183
185
|
}, " ", children, " ");
|
|
184
186
|
};
|
|
185
187
|
Typography.propTypes = {
|
|
186
188
|
variant: PropTypes__default["default"].oneOf(Object.values(TypographyType)),
|
|
187
189
|
className: PropTypes__default["default"].string,
|
|
188
190
|
bold: PropTypes__default["default"].bool,
|
|
189
|
-
color: PropTypes__default["default"].string
|
|
191
|
+
color: PropTypes__default["default"].string,
|
|
192
|
+
onClick: PropTypes__default["default"].func
|
|
190
193
|
};
|
|
191
194
|
Typography.defaultProps = {
|
|
192
|
-
variant: 'h1'
|
|
195
|
+
variant: 'h1',
|
|
196
|
+
onClick: () => {}
|
|
193
197
|
};
|
|
194
198
|
|
|
195
199
|
var css_248z$b = ".autocomplate-module_autocomplate-content__UbIUT{display:flex;flex-direction:column;position:relative}.autocomplate-module_autocomplate-content-top__FVgCp{border:2px solid #d1d1d1;border-radius:6px;box-sizing:border-box;color:#3c393e;cursor:pointer;display:flex;flex-direction:row;font-size:16px;font-weight:500;height:46px;line-height:22px;max-width:400px;padding:0 15px;transition:border-color .24s}.autocomplate-module_autocomplate-content-top__FVgCp.autocomplate-module_active__40fdV{border-color:#00236a}.autocomplate-module_autocomplate-content-top__FVgCp:hover{border-color:#3c393e}.autocomplate-module_autocomplate-content-bottom__yk0zP{animation:autocomplate-module_select-show__7Uap4 .64s linear forwards;background:#fbfbfb;border-radius:6px;box-shadow:0 0 10px rgba(60,57,62,.08);left:0;max-height:0;max-width:400px;overflow:hidden;position:absolute;top:52px;width:100%;z-index:1}.autocomplate-module_autocomplate-content-bottom-inner__rF5IF{display:flex;flex-direction:column;max-height:234px;overflow-x:hidden;overflow-y:auto}@keyframes autocomplate-module_select-show__7Uap4{to{max-height:400px}}.autocomplate-module_autocomplate-content-bottom-row__dRsZa{align-items:center;background:#fff;box-sizing:border-box;color:#3c393e;cursor:pointer;display:flex;font-size:16px;font-weight:500;height:46px;line-height:22px;margin-bottom:2px;padding:0 15px;transition:background .24s,color .24s}.autocomplate-module_autocomplate-content-bottom-row__dRsZa .autocomplate-module_no-option__xv0-E{color:red}.autocomplate-module_autocomplate-content-bottom-row__dRsZa:hover{background:unset;color:#00236a}.autocomplate-module_option-active__WuH4I .autocomplate-module_autocomplate-content-bottom-row__dRsZa{color:#00236a}.autocomplate-module_autocomplate-title__3Qxqz{color:#3c393e;display:block;font-size:16px;font-weight:500;line-height:22px;margin-bottom:6px;text-transform:none}";
|
|
@@ -224,7 +228,7 @@ const Autocomplate = ({
|
|
|
224
228
|
React.useEffect(() => {
|
|
225
229
|
setInputValue(JSON.parse(jsonSelectedOptionsData)[keyNames.name]);
|
|
226
230
|
setInputId(JSON.parse(jsonSelectedOptionsData)[keyNames.id]);
|
|
227
|
-
}, [jsonSelectedOptionsData]);
|
|
231
|
+
}, [JSON.parse(jsonSelectedOptionsData)[keyNames.id]]);
|
|
228
232
|
const handleChange = e => {
|
|
229
233
|
const currentInputValue = e.currentTarget.value;
|
|
230
234
|
setInputId(null);
|
|
@@ -292,7 +296,6 @@ const Autocomplate = ({
|
|
|
292
296
|
id: inputId,
|
|
293
297
|
type: "text",
|
|
294
298
|
className: styles$a['autocomplate-content-top'],
|
|
295
|
-
required: required,
|
|
296
299
|
disabled: disabled,
|
|
297
300
|
onChange: handleChange,
|
|
298
301
|
onClick: () => {
|
|
@@ -957,7 +960,7 @@ Select.defaultProps = {
|
|
|
957
960
|
required: false
|
|
958
961
|
};
|
|
959
962
|
|
|
960
|
-
var css_248z$2 = ".file-module_file-form__l13d5{align-items:center;background:#fbfbfb;border:2px dashed;border-radius:6px;cursor:pointer;display:flex;flex-direction:column;height:190px;justify-content:space-between;overflow:hidden;padding:4px 0;position:relative;width:100%}.file-module_file-form-wrap__qY--B:before{background:rgba(60,57,62,.4);border-radius:6px;content:\"\";height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;transition:opacity .24s;width:100%;z-index:1}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover:before{opacity:1;pointer-events:unset}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover .file-module_delete-upload-icon__PWN66{opacity:1}.file-module_file-form-inner-upload__tq3Dn{align-items:center;display:flex;flex-direction:column;justify-content:space-between;padding-bottom:16px;padding-top:48px}.file-module_file-form-inner-upload__tq3Dn>img{display:block;margin-bottom:14px}.file-module_upload-info__a8GFs{margin-bottom:40px;max-width:150px;text-align:center}.file-module_upload-info-txt__l11uN{color:#0da574}.file-module_file-form__l13d5.file-module_default__t7KU0{border-color:#d1d1d1}.file-module_file-form__l13d5.file-module_error__H-M4Z{border-color:#e00}.file-module_file-form__l13d5.file-module_accept__WTW6V{border-color:#00236a}.file-module_delete-upload-icon__PWN66{align-items:center;background:#fff;border-radius:6px;cursor:pointer;display:flex;height:26px;justify-content:center;opacity:0;position:absolute;right:10px;top:10px;transition:opacity .24s;width:26px;z-index:11}.file-module_delete-upload-icon__PWN66>i{color:#00236a;font-size:16px}.file-module_upload-file-content__QHMjn{align-items:center;display:flex;height:100%;justify-content:center;max-height:190px;overflow:hidden;position:relative;width:100%}.file-module_upload-file-content__QHMjn>img{bottom:0;display:block;height:190px;left:0;margin:auto;max-height:190px;position:absolute;right:0;top:0;width:auto}.file-module_file-form-title__zWTSB{margin-bottom:10px;max-width:390px;word-break:break-all}.file-module_file-form-wrap__qY--B{position:relative;transform:translateZ(0)}
|
|
963
|
+
var css_248z$2 = ".file-module_file-form__l13d5{align-items:center;background:#fbfbfb;border:2px dashed;border-radius:6px;cursor:pointer;display:flex;flex-direction:column;height:190px;justify-content:space-between;overflow:hidden;padding:4px 0;position:relative;width:100%}.file-module_file-form-wrap__qY--B:before{background:rgba(60,57,62,.4);border-radius:6px;content:\"\";height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;transition:opacity .24s;width:100%;z-index:1}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover:before{opacity:1;pointer-events:unset}.file-module_file-form-wrap__qY--B.file-module_active__L1gPt:hover .file-module_delete-upload-icon__PWN66{opacity:1}.file-module_file-form-inner-upload__tq3Dn{align-items:center;display:flex;flex-direction:column;justify-content:space-between;padding-bottom:16px;padding-top:48px}.file-module_file-form-inner-upload__tq3Dn>img{display:block;margin-bottom:14px}.file-module_upload-info__a8GFs{margin-bottom:40px;max-width:150px;text-align:center}.file-module_upload-info-txt__l11uN{color:#0da574}.file-module_file-form__l13d5.file-module_default__t7KU0{border-color:#d1d1d1}.file-module_file-form__l13d5.file-module_error__H-M4Z{border-color:#e00}.file-module_file-form__l13d5.file-module_accept__WTW6V{border-color:#00236a}.file-module_delete-upload-icon__PWN66{align-items:center;background:#fff;border-radius:6px;cursor:pointer;display:flex;height:26px;justify-content:center;opacity:0;position:absolute;right:10px;top:10px;transition:opacity .24s;width:26px;z-index:11}.file-module_delete-upload-icon__PWN66>i{color:#00236a;font-size:16px}.file-module_upload-file-content__QHMjn{align-items:center;display:flex;height:100%;justify-content:center;max-height:190px;overflow:hidden;position:relative;width:100%}.file-module_upload-file-content__QHMjn>img{bottom:0;display:block;height:190px;left:0;margin:auto;max-height:190px;position:absolute;right:0;top:0;width:auto}.file-module_file-form-title__zWTSB{margin-bottom:10px;max-width:390px;word-break:break-all}.file-module_file-form-wrap__qY--B{position:relative;transform:translateZ(0)}";
|
|
961
964
|
var styles$2 = {"file-form-wrap":"file-module_file-form-wrap__qY--B","file-form":"file-module_file-form__l13d5","active":"file-module_active__L1gPt","delete-upload-icon":"file-module_delete-upload-icon__PWN66","file-form-inner-upload":"file-module_file-form-inner-upload__tq3Dn","upload-info":"file-module_upload-info__a8GFs","upload-info-txt":"file-module_upload-info-txt__l11uN","default":"file-module_default__t7KU0","error":"file-module_error__H-M4Z","accept":"file-module_accept__WTW6V","upload-file-content":"file-module_upload-file-content__QHMjn","file-form-title":"file-module_file-form-title__zWTSB"};
|
|
962
965
|
styleInject(css_248z$2);
|
|
963
966
|
|
|
@@ -974,15 +977,22 @@ const File = ({
|
|
|
974
977
|
}) => {
|
|
975
978
|
const pdfImageName = 'https://play-lh.googleusercontent.com/kIwlXqs28otssKK_9AKwdkB6gouex_U2WmtLshTACnwIJuvOqVvJEzewpzuYBXwXQQ';
|
|
976
979
|
const [image, setImage] = React.useState(defaultData ? defaultData.type != 'application/pdf' ? defaultData.url : pdfImageName : null);
|
|
977
|
-
const [error, setError] = React.useState(
|
|
980
|
+
const [error, setError] = React.useState('');
|
|
978
981
|
const [fileName, setFileName] = React.useState('no selected file');
|
|
979
982
|
function fileType(file) {
|
|
980
|
-
if (file.size <= 5000000) {
|
|
981
|
-
if (file.type === 'image/jpeg' || file.type === 'image/png') {
|
|
982
|
-
|
|
983
|
+
if (file[0].size <= 5000000) {
|
|
984
|
+
if (file[0].type === 'image/jpeg' || file[0].type === 'image/png') {
|
|
985
|
+
setFileName(file[0].name);
|
|
986
|
+
setImage(URL.createObjectURL(file[0]));
|
|
987
|
+
onChange({
|
|
988
|
+
file
|
|
989
|
+
});
|
|
983
990
|
setError('');
|
|
984
|
-
} else if (file.type === 'application/pdf') {
|
|
991
|
+
} else if (file[0].type === 'application/pdf') {
|
|
985
992
|
setImage(pdfImageName);
|
|
993
|
+
onChange({
|
|
994
|
+
file
|
|
995
|
+
});
|
|
986
996
|
setError('');
|
|
987
997
|
} else {
|
|
988
998
|
setImage(null);
|
|
@@ -1008,7 +1018,7 @@ const File = ({
|
|
|
1008
1018
|
onChange: e => {
|
|
1009
1019
|
console.log(e);
|
|
1010
1020
|
},
|
|
1011
|
-
style: error ? {
|
|
1021
|
+
style: error || errorMesage ? {
|
|
1012
1022
|
borderColor: 'red'
|
|
1013
1023
|
} : {},
|
|
1014
1024
|
onClick: () => {
|
|
@@ -1024,14 +1034,8 @@ const File = ({
|
|
|
1024
1034
|
files
|
|
1025
1035
|
}
|
|
1026
1036
|
}) => {
|
|
1027
|
-
onChange({
|
|
1028
|
-
target: {
|
|
1029
|
-
files
|
|
1030
|
-
}
|
|
1031
|
-
});
|
|
1032
|
-
files[0] && setFileName(files[0].name);
|
|
1033
1037
|
if (files[0]) {
|
|
1034
|
-
fileType(files
|
|
1038
|
+
fileType(files);
|
|
1035
1039
|
}
|
|
1036
1040
|
}
|
|
1037
1041
|
}), image ? /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -1062,11 +1066,11 @@ const File = ({
|
|
|
1062
1066
|
}
|
|
1063
1067
|
}, /*#__PURE__*/React__default["default"].createElement("i", {
|
|
1064
1068
|
className: "icon-delete"
|
|
1065
|
-
})), error ? /*#__PURE__*/React__default["default"].createElement("span", {
|
|
1069
|
+
})), errorMesage || error ? /*#__PURE__*/React__default["default"].createElement("span", {
|
|
1066
1070
|
style: {
|
|
1067
1071
|
color: 'red'
|
|
1068
1072
|
}
|
|
1069
|
-
}, error) : null));
|
|
1073
|
+
}, errorMesage || error) : null));
|
|
1070
1074
|
};
|
|
1071
1075
|
File.propTypes = {
|
|
1072
1076
|
className: PropTypes__default["default"].string,
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@ export const Autocomplate = ({
|
|
|
30
30
|
useEffect(() => {
|
|
31
31
|
setInputValue(JSON.parse(jsonSelectedOptionsData)[keyNames.name])
|
|
32
32
|
setInputId(JSON.parse(jsonSelectedOptionsData)[keyNames.id])
|
|
33
|
-
}, [jsonSelectedOptionsData])
|
|
33
|
+
}, [JSON.parse(jsonSelectedOptionsData)[keyNames.id]])
|
|
34
34
|
|
|
35
35
|
const handleChange = (e) => {
|
|
36
36
|
const currentInputValue = e.currentTarget.value;
|
|
@@ -97,7 +97,6 @@ export const Autocomplate = ({
|
|
|
97
97
|
id={inputId}
|
|
98
98
|
type="text"
|
|
99
99
|
className={styles['autocomplate-content-top']}
|
|
100
|
-
required={required}
|
|
101
100
|
disabled={disabled}
|
|
102
101
|
onChange={handleChange}
|
|
103
102
|
onClick={() => { setShowOptions(!showOptions) }}
|
|
@@ -117,22 +117,3 @@
|
|
|
117
117
|
position: relative;
|
|
118
118
|
transform: translate3d(0,0,0);
|
|
119
119
|
}
|
|
120
|
-
|
|
121
|
-
html {
|
|
122
|
-
font-size: 1.4vmin;
|
|
123
|
-
}
|
|
124
|
-
@media only screen and (max-width: 1279px) {
|
|
125
|
-
html {
|
|
126
|
-
font-size: 1.2vmin;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
@media only screen and (max-width: 980px) {
|
|
130
|
-
html {
|
|
131
|
-
font-size: 1.5vmin;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
@media only screen and (max-width: 600px) {
|
|
135
|
-
html {
|
|
136
|
-
font-size: 2.4vmin;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
@@ -19,17 +19,20 @@ export const File = ({
|
|
|
19
19
|
const [image, setImage] = useState(defaultData ?
|
|
20
20
|
defaultData.type != 'application/pdf' ?
|
|
21
21
|
defaultData.url : pdfImageName : null);
|
|
22
|
-
const [error, setError] = useState(
|
|
22
|
+
const [error, setError] = useState('');
|
|
23
23
|
const [fileName, setFileName] = useState('no selected file');
|
|
24
24
|
function fileType(file) {
|
|
25
|
-
if (file.size <= 5000000) {
|
|
26
|
-
if (file.type === 'image/jpeg' || file.type === 'image/png') {
|
|
27
|
-
|
|
25
|
+
if (file[0].size <= 5000000) {
|
|
26
|
+
if (file[0].type === 'image/jpeg' || file[0].type === 'image/png') {
|
|
27
|
+
setFileName(file[0].name)
|
|
28
|
+
setImage(URL.createObjectURL(file[0]))
|
|
29
|
+
onChange({file})
|
|
28
30
|
setError('')
|
|
29
31
|
|
|
30
32
|
}
|
|
31
|
-
else if (file.type === 'application/pdf') {
|
|
33
|
+
else if (file[0].type === 'application/pdf') {
|
|
32
34
|
setImage(pdfImageName)
|
|
35
|
+
onChange({file})
|
|
33
36
|
setError('')
|
|
34
37
|
|
|
35
38
|
}
|
|
@@ -53,17 +56,15 @@ export const File = ({
|
|
|
53
56
|
<div
|
|
54
57
|
className={styles['file-form']}
|
|
55
58
|
onChange={(e) => { console.log(e) }}
|
|
56
|
-
style={error ? { borderColor: 'red' } : {}}
|
|
59
|
+
style={error || errorMesage ? { borderColor: 'red' } : {}}
|
|
57
60
|
onClick={() => {
|
|
58
61
|
document.querySelector(`.${name}`).click()
|
|
59
62
|
}}
|
|
60
63
|
>
|
|
61
64
|
<input type='file' className={name} hidden disabled={disabled}
|
|
62
|
-
onChange={({ target: { files } }) => {
|
|
63
|
-
onChange({ target: { files } })
|
|
64
|
-
files[0] && setFileName(files[0].name)
|
|
65
|
+
onChange={({ target: { files } }) => {
|
|
65
66
|
if (files[0]) {
|
|
66
|
-
fileType(files
|
|
67
|
+
fileType(files)
|
|
67
68
|
}
|
|
68
69
|
}}
|
|
69
70
|
/>
|
|
@@ -92,7 +93,7 @@ export const File = ({
|
|
|
92
93
|
<i className="icon-delete"/>
|
|
93
94
|
</div>
|
|
94
95
|
{
|
|
95
|
-
error
|
|
96
|
+
errorMesage || error ? <span style={{ color: 'red' }}>{errorMesage || error}</span> : null
|
|
96
97
|
}
|
|
97
98
|
</div>
|
|
98
99
|
</>
|
|
@@ -18,7 +18,7 @@ export const TypographyType = {
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
export const Typography = ({ variant, className, color, bold, children, ...props }) => {
|
|
21
|
+
export const Typography = ({onClick, variant, className, color, bold, children, ...props }) => {
|
|
22
22
|
const classProps = classnames(className,bold ? 'bold': '');
|
|
23
23
|
const CustomTag = variant;
|
|
24
24
|
|
|
@@ -37,7 +37,7 @@ export const Typography = ({ variant, className, color, bold, children, ...props
|
|
|
37
37
|
`;
|
|
38
38
|
|
|
39
39
|
return (
|
|
40
|
-
<StyledTypograpy className={classProps}> {children} </StyledTypograpy>
|
|
40
|
+
<StyledTypograpy className={classProps} onClick={onClick}> {children} </StyledTypograpy>
|
|
41
41
|
);
|
|
42
42
|
};
|
|
43
43
|
|
|
@@ -45,9 +45,12 @@ Typography.propTypes = {
|
|
|
45
45
|
variant: PropTypes.oneOf(Object.values(TypographyType)),
|
|
46
46
|
className: PropTypes.string,
|
|
47
47
|
bold: PropTypes.bool,
|
|
48
|
-
color: PropTypes.string
|
|
48
|
+
color: PropTypes.string,
|
|
49
|
+
onClick: PropTypes.func
|
|
49
50
|
};
|
|
50
51
|
|
|
51
52
|
Typography.defaultProps = {
|
|
52
|
-
variant: 'h1'
|
|
53
|
+
variant: 'h1',
|
|
54
|
+
onClick: ()=> {
|
|
55
|
+
}
|
|
53
56
|
};
|