@groupeactual/ui-kit 0.4.23 → 0.4.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groupeactual/ui-kit",
3
- "version": "0.4.23",
3
+ "version": "0.4.24",
4
4
  "description": "A simple template for a custom React component library",
5
5
  "devDependencies": {
6
6
  "@babel/core": "^7.20.5",
@@ -40,6 +40,7 @@ const TextField = ({
40
40
  return (
41
41
  <MuiTextField
42
42
  id={label === placeholder ? 'text-field-mui' : 'test-field-ds'}
43
+ className="DsTextField"
43
44
  variant="outlined"
44
45
  name={name}
45
46
  label={label}
@@ -59,7 +59,13 @@ const Pagination = ({
59
59
  sx={{ marginRight: '16px', color: 'greyXLight' }}
60
60
  />
61
61
  <Select
62
- sx={{ height: '32px', width: '65px' }}
62
+ sx={{
63
+ //@TODO replace by Select from ui-kit when ready
64
+ height: '32px',
65
+ width: '75px',
66
+ fontSize: '14px',
67
+ fontWeight: 400
68
+ }}
63
69
  labelId="select-label"
64
70
  id="dac-select-label"
65
71
  value={internalLimit}