px-react-ui-components 1.1.26 → 1.1.28
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.
|
@@ -271,10 +271,10 @@ function MyFileUpload({
|
|
|
271
271
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
272
272
|
style: {
|
|
273
273
|
display: 'flex',
|
|
274
|
-
flexDirection: '
|
|
274
|
+
flexDirection: 'column',
|
|
275
275
|
gap: '1px'
|
|
276
276
|
},
|
|
277
|
-
children: [label && /*#__PURE__*/(0, _jsxRuntime.
|
|
277
|
+
children: [label && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
278
278
|
style: {
|
|
279
279
|
display: "block",
|
|
280
280
|
fontSize: 11,
|
|
@@ -285,13 +285,22 @@ function MyFileUpload({
|
|
|
285
285
|
textTransform: "uppercase",
|
|
286
286
|
letterSpacing: "0.05em"
|
|
287
287
|
},
|
|
288
|
-
|
|
289
|
-
children: [label, " ", required && /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
288
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("span", {
|
|
290
289
|
style: {
|
|
291
|
-
|
|
290
|
+
display: 'flex',
|
|
291
|
+
flexDirection: 'row',
|
|
292
|
+
gap: '5px'
|
|
292
293
|
},
|
|
293
|
-
children: "
|
|
294
|
-
|
|
294
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
295
|
+
className: labelClassName ? labelClassName : '',
|
|
296
|
+
children: label
|
|
297
|
+
}), required && /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
298
|
+
style: {
|
|
299
|
+
color: 'red'
|
|
300
|
+
},
|
|
301
|
+
children: "*"
|
|
302
|
+
})]
|
|
303
|
+
})
|
|
295
304
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
296
305
|
className: _MyFileUploadModule.default.myFileUploadContainer + (className != null ? " " + className : ''),
|
|
297
306
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|