@dartech/arsenal-ui 1.3.49 → 1.3.50
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/index.js +21 -15
- package/package.json +1 -1
package/index.js
CHANGED
@@ -72,6 +72,8 @@ import StepConnector from '@mui/material/StepConnector';
|
|
72
72
|
import Select from '@mui/material/Select';
|
73
73
|
import CloseIcon from '@mui/icons-material/Close';
|
74
74
|
import InputLabel from '@mui/material/InputLabel';
|
75
|
+
import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns';
|
76
|
+
import { LocalizationProvider } from '@mui/x-date-pickers/LocalizationProvider';
|
75
77
|
import classnames from 'classnames';
|
76
78
|
import { toast } from 'react-toastify';
|
77
79
|
import CssBaseline from '@mui/material/CssBaseline';
|
@@ -5345,24 +5347,28 @@ const DefinitionFiller = ({
|
|
5345
5347
|
}
|
5346
5348
|
return [];
|
5347
5349
|
}, [properties, dataFieldName, _useExpression]);
|
5348
|
-
return
|
5349
|
-
|
5350
|
-
direction: "column",
|
5351
|
-
spacing: 2
|
5350
|
+
return jsx(LocalizationProvider, Object.assign({
|
5351
|
+
dateAdapter: AdapterDateFns
|
5352
5352
|
}, {
|
5353
|
-
children:
|
5354
|
-
|
5353
|
+
children: jsxs(Grid$1, Object.assign({
|
5354
|
+
container: true,
|
5355
|
+
direction: "column",
|
5356
|
+
spacing: 2
|
5355
5357
|
}, {
|
5356
|
-
children: jsx(
|
5357
|
-
|
5358
|
-
fontWeight: '600'
|
5359
|
-
}
|
5358
|
+
children: [title && jsx(Grid$1, Object.assign({
|
5359
|
+
xs: 12
|
5360
5360
|
}, {
|
5361
|
-
children:
|
5362
|
-
|
5363
|
-
|
5364
|
-
|
5365
|
-
|
5361
|
+
children: jsx("div", Object.assign({
|
5362
|
+
style: {
|
5363
|
+
fontWeight: '600'
|
5364
|
+
}
|
5365
|
+
}, {
|
5366
|
+
children: title
|
5367
|
+
}))
|
5368
|
+
})), jsx(StepperView, {
|
5369
|
+
data: stepperData
|
5370
|
+
})]
|
5371
|
+
}))
|
5366
5372
|
}));
|
5367
5373
|
};
|
5368
5374
|
|