cozy-ui 106.2.0 → 106.3.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [106.3.0](https://github.com/cozy/cozy-ui/compare/v106.2.0...v106.3.0) (2024-05-15)
2
+
3
+
4
+ ### Features
5
+
6
+ * **TextField:** Force left text alignment for input ([d3ff3c2](https://github.com/cozy/cozy-ui/commit/d3ff3c2))
7
+
1
8
  # [106.2.0](https://github.com/cozy/cozy-ui/compare/v106.1.1...v106.2.0) (2024-05-14)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "106.2.0",
3
+ "version": "106.3.0",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -52,6 +52,7 @@ export const makeLightNormalOverrides = theme => ({
52
52
  transition: `border-color ${theme.transitions.duration.shorter}ms`
53
53
  },
54
54
  input: {
55
+ textAlign: 'left',
55
56
  padding: '18.5px 16px'
56
57
  },
57
58
  inputMarginDense: {
@@ -49,6 +49,7 @@ export var makeLightNormalOverrides = function makeLightNormalOverrides(theme) {
49
49
  transition: "border-color ".concat(theme.transitions.duration.shorter, "ms")
50
50
  },
51
51
  input: {
52
+ textAlign: 'left',
52
53
  padding: '18.5px 16px'
53
54
  },
54
55
  inputMarginDense: {