@instructure/ui-text-input 9.10.0 → 9.10.1

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [9.10.1](https://github.com/instructure/instructure-ui/compare/v9.10.0...v9.10.1) (2024-12-09)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **ui-text-input:** fix TextInput, Select, SimpleSelect overflowing when there are lots of renderBefore elements ([542c75f](https://github.com/instructure/instructure-ui/commit/542c75ff28244d3e721cb9936ed1e795fe785df0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [9.10.0](https://github.com/instructure/instructure-ui/compare/v9.9.0...v9.10.0) (2024-11-19)
7
18
 
8
19
  **Note:** Version bump only for package @instructure/ui-text-input
@@ -174,6 +174,7 @@ const generateStyle = (componentTheme, props, state) => {
174
174
  },
175
175
  beforeElement: {
176
176
  display: 'inline-flex',
177
+ flexWrap: 'wrap',
177
178
  alignItems: 'center',
178
179
  label: 'textInput__beforeElement',
179
180
  ...flexItemBase,
@@ -180,6 +180,7 @@ const generateStyle = (componentTheme, props, state) => {
180
180
  },
181
181
  beforeElement: {
182
182
  display: 'inline-flex',
183
+ flexWrap: 'wrap',
183
184
  alignItems: 'center',
184
185
  label: 'textInput__beforeElement',
185
186
  ...flexItemBase,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-text-input",
3
- "version": "9.10.0",
3
+ "version": "9.10.1",
4
4
  "description": "A styled HTML text input component.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,25 +23,25 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "9.10.0",
27
- "@instructure/ui-badge": "9.10.0",
28
- "@instructure/ui-color-utils": "9.10.0",
29
- "@instructure/ui-test-utils": "9.10.0",
30
- "@instructure/ui-themes": "9.10.0",
26
+ "@instructure/ui-babel-preset": "9.10.1",
27
+ "@instructure/ui-badge": "9.10.1",
28
+ "@instructure/ui-color-utils": "9.10.1",
29
+ "@instructure/ui-test-utils": "9.10.1",
30
+ "@instructure/ui-themes": "9.10.1",
31
31
  "react-dom": "^18.3.1"
32
32
  },
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.24.5",
35
- "@instructure/emotion": "9.10.0",
36
- "@instructure/shared-types": "9.10.0",
37
- "@instructure/ui-a11y-utils": "9.10.0",
38
- "@instructure/ui-dom-utils": "9.10.0",
39
- "@instructure/ui-form-field": "9.10.0",
40
- "@instructure/ui-icons": "9.10.0",
41
- "@instructure/ui-prop-types": "9.10.0",
42
- "@instructure/ui-react-utils": "9.10.0",
43
- "@instructure/ui-tag": "9.10.0",
44
- "@instructure/ui-testable": "9.10.0",
35
+ "@instructure/emotion": "9.10.1",
36
+ "@instructure/shared-types": "9.10.1",
37
+ "@instructure/ui-a11y-utils": "9.10.1",
38
+ "@instructure/ui-dom-utils": "9.10.1",
39
+ "@instructure/ui-form-field": "9.10.1",
40
+ "@instructure/ui-icons": "9.10.1",
41
+ "@instructure/ui-prop-types": "9.10.1",
42
+ "@instructure/ui-react-utils": "9.10.1",
43
+ "@instructure/ui-tag": "9.10.1",
44
+ "@instructure/ui-testable": "9.10.1",
45
45
  "prop-types": "^15.8.1"
46
46
  },
47
47
  "peerDependencies": {
@@ -203,6 +203,7 @@ const generateStyle = (
203
203
  },
204
204
  beforeElement: {
205
205
  display: 'inline-flex',
206
+ flexWrap: 'wrap',
206
207
  alignItems: 'center',
207
208
  label: 'textInput__beforeElement',
208
209
  ...flexItemBase,