@rabex-kit/rabex-ui 0.1.27 → 0.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.
- package/dist/rabex-ui.cjs.development.js +4 -2
- package/dist/rabex-ui.cjs.development.js.map +1 -1
- package/dist/rabex-ui.cjs.production.min.js +1 -1
- package/dist/rabex-ui.cjs.production.min.js.map +1 -1
- package/dist/rabex-ui.esm.js +4 -2
- package/dist/rabex-ui.esm.js.map +1 -1
- package/package.json +1 -1
@@ -1322,7 +1322,8 @@ var Input = /*#__PURE__*/React__default.forwardRef(function (_ref, ref) {
|
|
1322
1322
|
value = _ref2.value,
|
1323
1323
|
onChange = _ref2.onChange,
|
1324
1324
|
valueFormat = _ref2.valueFormat,
|
1325
|
-
valueFormatOption = _ref2.valueFormatOption
|
1325
|
+
valueFormatOption = _ref2.valueFormatOption,
|
1326
|
+
fullWidth = _ref2.fullWidth;
|
1326
1327
|
if (!valueFormat && !!valueFormatOption) {
|
1327
1328
|
console.warn("'valueFormatOption' Only Work With known 'valueFormat's...");
|
1328
1329
|
}
|
@@ -1344,7 +1345,8 @@ var Input = /*#__PURE__*/React__default.forwardRef(function (_ref, ref) {
|
|
1344
1345
|
};
|
1345
1346
|
return React__default.createElement(Stack, {
|
1346
1347
|
flexDirection: "column",
|
1347
|
-
gap: props.size === 'sm' ? 1 : 2
|
1348
|
+
gap: props.size === 'sm' ? 1 : 2,
|
1349
|
+
width: fullWidth ? '100%' : 'unset'
|
1348
1350
|
}, title && React__default.createElement(Typography, Object.assign({
|
1349
1351
|
color: mode === 'light' ? 'textColor.A80' : 'textColor.A30'
|
1350
1352
|
}, titleProps), title), React__default.createElement(MuiInputStyled, Object.assign({
|