@instructure/ui-text-input 11.6.1-snapshot-0 → 11.6.1-snapshot-130

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.
Files changed (62) hide show
  1. package/CHANGELOG.md +45 -311
  2. package/es/TextInput/{index.js → v1/index.js} +2 -2
  3. package/es/TextInput/v2/index.js +308 -0
  4. package/es/TextInput/v2/props.js +26 -0
  5. package/es/TextInput/v2/styles.js +234 -0
  6. package/es/TextInput/v2/theme.js +73 -0
  7. package/es/{index.js → exports/a.js} +1 -1
  8. package/{src/index.ts → es/exports/b.js} +1 -2
  9. package/lib/TextInput/{index.js → v1/index.js} +3 -3
  10. package/lib/TextInput/v2/index.js +319 -0
  11. package/lib/TextInput/v2/props.js +31 -0
  12. package/lib/TextInput/v2/styles.js +239 -0
  13. package/lib/TextInput/v2/theme.js +79 -0
  14. package/lib/{index.js → exports/a.js} +2 -2
  15. package/lib/exports/b.js +12 -0
  16. package/package.json +45 -24
  17. package/src/TextInput/{index.tsx → v1/index.tsx} +2 -2
  18. package/src/TextInput/{props.ts → v1/props.ts} +1 -1
  19. package/src/TextInput/v2/README.md +334 -0
  20. package/src/TextInput/v2/index.tsx +406 -0
  21. package/src/TextInput/v2/props.ts +244 -0
  22. package/src/TextInput/v2/styles.ts +245 -0
  23. package/src/TextInput/v2/theme.ts +84 -0
  24. package/src/exports/a.ts +25 -0
  25. package/src/exports/b.ts +25 -0
  26. package/tsconfig.build.json +0 -3
  27. package/tsconfig.build.tsbuildinfo +1 -1
  28. package/types/TextInput/{index.d.ts → v1/index.d.ts} +1 -1
  29. package/types/TextInput/v1/index.d.ts.map +1 -0
  30. package/types/TextInput/{props.d.ts → v1/props.d.ts} +1 -1
  31. package/types/TextInput/v1/props.d.ts.map +1 -0
  32. package/types/TextInput/v1/styles.d.ts.map +1 -0
  33. package/types/TextInput/v1/theme.d.ts.map +1 -0
  34. package/types/TextInput/v2/index.d.ts +79 -0
  35. package/types/TextInput/v2/index.d.ts.map +1 -0
  36. package/types/TextInput/v2/props.d.ts +138 -0
  37. package/types/TextInput/v2/props.d.ts.map +1 -0
  38. package/types/TextInput/v2/styles.d.ts +16 -0
  39. package/types/TextInput/v2/styles.d.ts.map +1 -0
  40. package/types/TextInput/v2/theme.d.ts +10 -0
  41. package/types/TextInput/v2/theme.d.ts.map +1 -0
  42. package/types/exports/a.d.ts +3 -0
  43. package/types/exports/a.d.ts.map +1 -0
  44. package/types/exports/b.d.ts +3 -0
  45. package/types/exports/b.d.ts.map +1 -0
  46. package/types/TextInput/index.d.ts.map +0 -1
  47. package/types/TextInput/props.d.ts.map +0 -1
  48. package/types/TextInput/styles.d.ts.map +0 -1
  49. package/types/TextInput/theme.d.ts.map +0 -1
  50. package/types/index.d.ts +0 -3
  51. package/types/index.d.ts.map +0 -1
  52. /package/es/TextInput/{props.js → v1/props.js} +0 -0
  53. /package/es/TextInput/{styles.js → v1/styles.js} +0 -0
  54. /package/es/TextInput/{theme.js → v1/theme.js} +0 -0
  55. /package/lib/TextInput/{props.js → v1/props.js} +0 -0
  56. /package/lib/TextInput/{styles.js → v1/styles.js} +0 -0
  57. /package/lib/TextInput/{theme.js → v1/theme.js} +0 -0
  58. /package/src/TextInput/{README.md → v1/README.md} +0 -0
  59. /package/src/TextInput/{styles.ts → v1/styles.ts} +0 -0
  60. /package/src/TextInput/{theme.ts → v1/theme.ts} +0 -0
  61. /package/types/TextInput/{styles.d.ts → v1/styles.d.ts} +0 -0
  62. /package/types/TextInput/{theme.d.ts → v1/theme.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,607 +3,341 @@
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
- ## [11.6.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-0) (2026-02-24)
6
+ ## [11.6.1-snapshot-130](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-130) (2026-03-16)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-text-input
9
8
 
9
+ ### Bug Fixes
10
10
 
11
+ * **ui-many:** fix imports of the multiversion support ([ff5f2b3](https://github.com/instructure/instructure-ui/commit/ff5f2b38660ddae432edd32b98eedae586589977))
12
+ * **ui-text-input,emotion:** fix TextInput displaying double focus rings when a focusable element is rendered inside ([b33cea2](https://github.com/instructure/instructure-ui/commit/b33cea283ef84cdc674c43bf8a0b7ca55f04cfaa))
11
13
 
12
14
 
15
+ ### Features
13
16
 
14
- # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
17
+ * **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
18
+ * **many:** rework TextArea and dependent FormField components ([0f8c438](https://github.com/instructure/instructure-ui/commit/0f8c43803e3458bbf7b2dd266a9e246cb89b0d3c))
15
19
 
16
- **Note:** Version bump only for package @instructure/ui-text-input
17
20
 
18
21
 
19
22
 
20
23
 
21
-
22
- # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
24
+ # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
23
25
 
24
26
  **Note:** Version bump only for package @instructure/ui-text-input
25
27
 
28
+ # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
26
29
 
27
-
28
-
30
+ **Note:** Version bump only for package @instructure/ui-text-input
29
31
 
30
32
  # [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
31
33
 
32
34
  **Note:** Version bump only for package @instructure/ui-text-input
33
35
 
34
-
35
-
36
-
37
-
38
36
  # [11.3.0](https://github.com/instructure/instructure-ui/compare/v11.2.0...v11.3.0) (2026-01-12)
39
37
 
40
38
  **Note:** Version bump only for package @instructure/ui-text-input
41
39
 
42
-
43
-
44
-
45
-
46
40
  # [11.2.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.2.0) (2025-11-06)
47
41
 
48
-
49
42
  ### Features
50
43
 
51
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
52
-
53
-
54
-
55
-
44
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
56
45
 
57
46
  # [11.1.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.1.0) (2025-11-05)
58
47
 
59
-
60
48
  ### Features
61
49
 
62
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
63
-
64
-
65
-
66
-
50
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
67
51
 
68
52
  ## [11.0.1](https://github.com/instructure/instructure-ui/compare/v11.0.0...v11.0.1) (2025-10-13)
69
53
 
70
54
  **Note:** Version bump only for package @instructure/ui-text-input
71
55
 
72
-
73
-
74
-
75
-
76
56
  # [11.0.0](https://github.com/instructure/instructure-ui/compare/v10.26.0...v11.0.0) (2025-10-06)
77
57
 
78
-
79
58
  ### Features
80
59
 
81
- * **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
82
-
60
+ - **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
83
61
 
84
62
  ### BREAKING CHANGES
85
63
 
86
- * **many:** InstUI v11 contains the following breaking changes:
87
- - React 16 and 17 are no longer supported
88
- - remove `PropTypes` from all packages
89
- - remove `CodeEditor` component
90
- - remove `@instui/theme-registry` package
91
- - remove `@testable`, `@experimental`, `@hack` decorators
92
- - InstUISettingsProvider's `as` prop is removed
93
- - `canvas.use()`, `canvasHighContrast.use()` functions are removed
94
- - `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
95
- - `variables` field on theme objects are removed
96
- - remove deprecated props from Table: Row's `isStacked`, Body's
64
+ - **many:** InstUI v11 contains the following breaking changes:
65
+
66
+ * React 16 and 17 are no longer supported
67
+ * remove `PropTypes` from all packages
68
+ * remove `CodeEditor` component
69
+ * remove `@instui/theme-registry` package
70
+ * remove `@testable`, `@experimental`, `@hack` decorators
71
+ * InstUISettingsProvider's `as` prop is removed
72
+ * `canvas.use()`, `canvasHighContrast.use()` functions are removed
73
+ * `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
74
+ * `variables` field on theme objects are removed
75
+ * remove deprecated props from Table: Row's `isStacked`, Body's
97
76
  `isStacked`, `hover`, and `headers`
98
- - `Table`'s `caption` prop is now required
99
- - `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
100
-
101
-
102
-
103
-
77
+ * `Table`'s `caption` prop is now required
78
+ * `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
104
79
 
105
80
  # [10.26.0](https://github.com/instructure/instructure-ui/compare/v10.25.0...v10.26.0) (2025-10-01)
106
81
 
107
-
108
82
  ### Bug Fixes
109
83
 
110
- * **ui-text-input:** set IconButton height in TextInput to not break layout ([f345a58](https://github.com/instructure/instructure-ui/commit/f345a58accc725afd99381a93d14c81070c854bc))
111
-
112
-
113
-
114
-
84
+ - **ui-text-input:** set IconButton height in TextInput to not break layout ([f345a58](https://github.com/instructure/instructure-ui/commit/f345a58accc725afd99381a93d14c81070c854bc))
115
85
 
116
86
  # [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
117
87
 
118
88
  **Note:** Version bump only for package @instructure/ui-text-input
119
89
 
120
-
121
-
122
-
123
-
124
90
  ## [10.24.2](https://github.com/instructure/instructure-ui/compare/v10.24.1...v10.24.2) (2025-08-11)
125
91
 
126
92
  **Note:** Version bump only for package @instructure/ui-text-input
127
93
 
128
-
129
-
130
-
131
-
132
94
  ## [10.24.1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1) (2025-07-30)
133
95
 
134
96
  **Note:** Version bump only for package @instructure/ui-text-input
135
97
 
136
-
137
-
138
-
139
-
140
98
  # [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
141
99
 
142
100
  **Note:** Version bump only for package @instructure/ui-text-input
143
101
 
144
-
145
-
146
-
147
-
148
102
  # [10.23.0](https://github.com/instructure/instructure-ui/compare/v10.22.0...v10.23.0) (2025-07-09)
149
103
 
150
104
  **Note:** Version bump only for package @instructure/ui-text-input
151
105
 
152
-
153
-
154
-
155
-
156
106
  # [10.22.0](https://github.com/instructure/instructure-ui/compare/v10.21.0...v10.22.0) (2025-07-04)
157
107
 
158
-
159
108
  ### Bug Fixes
160
109
 
161
- * **ui-text-input:** better IconButton positioning inside TextInput when wrapped inside a Popover ([e39838e](https://github.com/instructure/instructure-ui/commit/e39838ee1149c32ccec2e7e6e17fdbc852571952))
162
-
163
-
164
-
165
-
110
+ - **ui-text-input:** better IconButton positioning inside TextInput when wrapped inside a Popover ([e39838e](https://github.com/instructure/instructure-ui/commit/e39838ee1149c32ccec2e7e6e17fdbc852571952))
166
111
 
167
112
  # [10.21.0](https://github.com/instructure/instructure-ui/compare/v10.20.1...v10.21.0) (2025-06-27)
168
113
 
169
-
170
114
  ### Features
171
115
 
172
- * **ui-text-input,ui-date-input:** properly support IconButtons inside TextInputs ([40ca6bb](https://github.com/instructure/instructure-ui/commit/40ca6bbaa9d113a34c2477501b34ba4342a044d6))
173
-
174
-
175
-
176
-
116
+ - **ui-text-input,ui-date-input:** properly support IconButtons inside TextInputs ([40ca6bb](https://github.com/instructure/instructure-ui/commit/40ca6bbaa9d113a34c2477501b34ba4342a044d6))
177
117
 
178
118
  ## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
179
119
 
180
120
  **Note:** Version bump only for package @instructure/ui-text-input
181
121
 
182
-
183
-
184
-
185
-
186
122
  # [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
187
123
 
188
-
189
124
  ### Bug Fixes
190
125
 
191
- * **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
192
-
193
-
194
-
195
-
126
+ - **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
196
127
 
197
128
  ## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
198
129
 
199
130
  **Note:** Version bump only for package @instructure/ui-text-input
200
131
 
201
-
202
-
203
-
204
-
205
132
  # [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
206
133
 
207
134
  **Note:** Version bump only for package @instructure/ui-text-input
208
135
 
209
-
210
-
211
-
212
-
213
136
  ## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
214
137
 
215
138
  **Note:** Version bump only for package @instructure/ui-text-input
216
139
 
217
-
218
-
219
-
220
-
221
140
  # [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
222
141
 
223
142
  **Note:** Version bump only for package @instructure/ui-text-input
224
143
 
225
-
226
-
227
-
228
-
229
144
  # [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
230
145
 
231
146
  **Note:** Version bump only for package @instructure/ui-text-input
232
147
 
233
-
234
-
235
-
236
-
237
148
  ## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
238
149
 
239
150
  **Note:** Version bump only for package @instructure/ui-text-input
240
151
 
241
-
242
-
243
-
244
-
245
152
  ## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
246
153
 
247
154
  **Note:** Version bump only for package @instructure/ui-text-input
248
155
 
249
-
250
-
251
-
252
-
253
156
  ## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
254
157
 
255
158
  **Note:** Version bump only for package @instructure/ui-text-input
256
159
 
257
-
258
-
259
-
260
-
261
160
  ## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
262
161
 
263
162
  **Note:** Version bump only for package @instructure/ui-text-input
264
163
 
265
-
266
-
267
-
268
-
269
164
  # [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
270
165
 
271
-
272
166
  ### Bug Fixes
273
167
 
274
- * **ui-text-input:** make TextInput maintain focus when renderAfterInput is conditionally rendered ([c124e16](https://github.com/instructure/instructure-ui/commit/c124e16000e1d60e49372ade27633dbeb48e22ae))
275
-
276
-
277
-
278
-
168
+ - **ui-text-input:** make TextInput maintain focus when renderAfterInput is conditionally rendered ([c124e16](https://github.com/instructure/instructure-ui/commit/c124e16000e1d60e49372ade27633dbeb48e22ae))
279
169
 
280
170
  ## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
281
171
 
282
172
  **Note:** Version bump only for package @instructure/ui-text-input
283
173
 
284
-
285
-
286
-
287
-
288
174
  ## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
289
175
 
290
176
  **Note:** Version bump only for package @instructure/ui-text-input
291
177
 
292
-
293
-
294
-
295
-
296
178
  # [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
297
179
 
298
180
  **Note:** Version bump only for package @instructure/ui-text-input
299
181
 
300
-
301
-
302
-
303
-
304
182
  # [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
305
183
 
306
184
  **Note:** Version bump only for package @instructure/ui-text-input
307
185
 
308
-
309
-
310
-
311
-
312
186
  # [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
313
187
 
314
-
315
188
  ### Bug Fixes
316
189
 
317
- * **many:** fix form label not read by NVDA in hover mode and other layout issues ([ef77281](https://github.com/instructure/instructure-ui/commit/ef77281890511e8eea794196445d3ef2454537ba))
318
-
319
-
320
-
321
-
190
+ - **many:** fix form label not read by NVDA in hover mode and other layout issues ([ef77281](https://github.com/instructure/instructure-ui/commit/ef77281890511e8eea794196445d3ef2454537ba))
322
191
 
323
192
  # [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
324
193
 
325
-
326
194
  ### Features
327
195
 
328
- * **many:** introduce new spacing tokens; add margin prop for more components ([048c902](https://github.com/instructure/instructure-ui/commit/048c902406c00611cd117fb2fb8164a6eba62fb8))
329
-
330
-
331
-
332
-
196
+ - **many:** introduce new spacing tokens; add margin prop for more components ([048c902](https://github.com/instructure/instructure-ui/commit/048c902406c00611cd117fb2fb8164a6eba62fb8))
333
197
 
334
198
  # [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
335
199
 
336
200
  **Note:** Version bump only for package @instructure/ui-text-input
337
201
 
338
-
339
-
340
-
341
-
342
202
  # [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
343
203
 
344
204
  **Note:** Version bump only for package @instructure/ui-text-input
345
205
 
346
-
347
-
348
-
349
-
350
206
  # [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
351
207
 
352
208
  **Note:** Version bump only for package @instructure/ui-text-input
353
209
 
354
-
355
-
356
-
357
-
358
210
  # [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
359
211
 
360
-
361
212
  ### Bug Fixes
362
213
 
363
- * **ui-select,ui-text-input:** fix long before elements overflowing in TextInput, Select, SimpleSelect ([ee9cafd](https://github.com/instructure/instructure-ui/commit/ee9cafdd027b9a1caaa0791d1b6dc4f8401c87e7))
364
-
365
-
366
-
367
-
214
+ - **ui-select,ui-text-input:** fix long before elements overflowing in TextInput, Select, SimpleSelect ([ee9cafd](https://github.com/instructure/instructure-ui/commit/ee9cafdd027b9a1caaa0791d1b6dc4f8401c87e7))
368
215
 
369
216
  # [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
370
217
 
371
-
372
218
  ### Bug Fixes
373
219
 
374
- * **many:** hide required asterisks from screenreaders ([78aec71](https://github.com/instructure/instructure-ui/commit/78aec71d1056df3a43ffd226d993c451a8fe9c1d))
375
-
376
-
377
-
378
-
220
+ - **many:** hide required asterisks from screenreaders ([78aec71](https://github.com/instructure/instructure-ui/commit/78aec71d1056df3a43ffd226d993c451a8fe9c1d))
379
221
 
380
222
  ## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
381
223
 
382
224
  **Note:** Version bump only for package @instructure/ui-text-input
383
225
 
384
-
385
-
386
-
387
-
388
226
  # [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
389
227
 
390
-
391
228
  ### Bug Fixes
392
229
 
393
- * **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
394
- * **many:** fix regression where form elements without label got misaligned ([139f7f1](https://github.com/instructure/instructure-ui/commit/139f7f130cd7e8372af869a13cfd50cd6a97fd85))
395
-
396
-
397
-
398
-
230
+ - **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
231
+ - **many:** fix regression where form elements without label got misaligned ([139f7f1](https://github.com/instructure/instructure-ui/commit/139f7f130cd7e8372af869a13cfd50cd6a97fd85))
399
232
 
400
233
  # [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
401
234
 
402
-
403
235
  ### Features
404
236
 
405
- * **many:** add new form field error msg style + add asterisk for required fields ([9b03683](https://github.com/instructure/instructure-ui/commit/9b03683dadeef4c5deae2c60bea10686f143ff5d))
406
-
407
-
408
-
409
-
237
+ - **many:** add new form field error msg style + add asterisk for required fields ([9b03683](https://github.com/instructure/instructure-ui/commit/9b03683dadeef4c5deae2c60bea10686f143ff5d))
410
238
 
411
239
  ## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
412
240
 
413
-
414
241
  ### Bug Fixes
415
242
 
416
- * update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
417
-
418
-
419
-
420
-
243
+ - update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
421
244
 
422
245
  # [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
423
246
 
424
247
  **Note:** Version bump only for package @instructure/ui-text-input
425
248
 
426
-
427
-
428
-
429
-
430
249
  # [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
431
250
 
432
-
433
251
  ### Bug Fixes
434
252
 
435
- * **ui-text-input:** icon in SimpleSelect is vertically centered ([13790d1](https://github.com/instructure/instructure-ui/commit/13790d14ac6eb6135d7ae22b2a29f542ddf95333))
436
-
437
-
438
-
439
-
253
+ - **ui-text-input:** icon in SimpleSelect is vertically centered ([13790d1](https://github.com/instructure/instructure-ui/commit/13790d14ac6eb6135d7ae22b2a29f542ddf95333))
440
254
 
441
255
  ## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
442
256
 
443
257
  **Note:** Version bump only for package @instructure/ui-text-input
444
258
 
445
-
446
-
447
-
448
-
449
259
  ## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
450
260
 
451
261
  **Note:** Version bump only for package @instructure/ui-text-input
452
262
 
453
-
454
-
455
-
456
-
457
263
  # [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
458
264
 
459
265
  **Note:** Version bump only for package @instructure/ui-text-input
460
266
 
461
-
462
-
463
-
464
-
465
267
  # [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
466
268
 
467
269
  **Note:** Version bump only for package @instructure/ui-text-input
468
270
 
469
-
470
-
471
-
472
-
473
271
  # [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
474
272
 
475
-
476
273
  ### Features
477
274
 
478
- * **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
479
-
275
+ - **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
480
276
 
481
277
  ### BREAKING CHANGES
482
278
 
483
- * **many:** Breaks color overrides in certain cases
484
-
485
-
486
-
487
-
279
+ - **many:** Breaks color overrides in certain cases
488
280
 
489
281
  ## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
490
282
 
491
283
  **Note:** Version bump only for package @instructure/ui-text-input
492
284
 
493
-
494
-
495
-
496
-
497
285
  # [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
498
286
 
499
-
500
287
  ### Features
501
288
 
502
- * **ui-date-input,ui-text-input:** add custom validation function and fix small layout issue ([77218be](https://github.com/instructure/instructure-ui/commit/77218be635611c1c674cc6c85d4dceaa76509117))
503
-
504
-
505
-
506
-
289
+ - **ui-date-input,ui-text-input:** add custom validation function and fix small layout issue ([77218be](https://github.com/instructure/instructure-ui/commit/77218be635611c1c674cc6c85d4dceaa76509117))
507
290
 
508
291
  # [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
509
292
 
510
-
511
293
  ### Features
512
294
 
513
- * **ui-date-input,ui-text-input:** add custom validation function and fix small layout issue ([77218be](https://github.com/instructure/instructure-ui/commit/77218be635611c1c674cc6c85d4dceaa76509117))
514
-
515
-
516
-
517
-
295
+ - **ui-date-input,ui-text-input:** add custom validation function and fix small layout issue ([77218be](https://github.com/instructure/instructure-ui/commit/77218be635611c1c674cc6c85d4dceaa76509117))
518
296
 
519
297
  # [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
520
298
 
521
299
  **Note:** Version bump only for package @instructure/ui-text-input
522
300
 
523
-
524
-
525
-
526
-
527
301
  # [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
528
302
 
529
303
  **Note:** Version bump only for package @instructure/ui-text-input
530
304
 
531
-
532
-
533
-
534
-
535
305
  # [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
536
306
 
537
307
  **Note:** Version bump only for package @instructure/ui-text-input
538
308
 
539
-
540
-
541
-
542
-
543
309
  ## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
544
310
 
545
311
  **Note:** Version bump only for package @instructure/ui-text-input
546
312
 
547
-
548
-
549
-
550
-
551
313
  # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
552
314
 
553
315
  **Note:** Version bump only for package @instructure/ui-text-input
554
316
 
555
-
556
-
557
-
558
-
559
317
  # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
560
318
 
561
319
  **Note:** Version bump only for package @instructure/ui-text-input
562
320
 
563
-
564
-
565
-
566
-
567
321
  ## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
568
322
 
569
323
  **Note:** Version bump only for package @instructure/ui-text-input
570
324
 
571
-
572
-
573
-
574
-
575
325
  # [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
576
326
 
577
327
  **Note:** Version bump only for package @instructure/ui-text-input
578
328
 
579
-
580
-
581
-
582
-
583
329
  # [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
584
330
 
585
331
  **Note:** Version bump only for package @instructure/ui-text-input
586
332
 
587
-
588
-
589
-
590
-
591
333
  ## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
592
334
 
593
335
  **Note:** Version bump only for package @instructure/ui-text-input
594
336
 
595
-
596
-
597
-
598
-
599
337
  ## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
600
338
 
601
339
  **Note:** Version bump only for package @instructure/ui-text-input
602
340
 
603
-
604
-
605
-
606
-
607
341
  # [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
608
342
 
609
343
  **Note:** Version bump only for package @instructure/ui-text-input
@@ -28,8 +28,8 @@ var _dec, _dec2, _class, _TextInput;
28
28
  import { Fragment, Component } from 'react';
29
29
  import { callRenderProp, getInteraction, passthroughProps, withDeterministicId } from '@instructure/ui-react-utils';
30
30
  import { isActiveElement, addEventListener, getCSSStyleDeclaration } from '@instructure/ui-dom-utils';
31
- import { FormField } from '@instructure/ui-form-field';
32
- import { withStyle } from '@instructure/emotion';
31
+ import { FormField } from '@instructure/ui-form-field/v11_6';
32
+ import { withStyleLegacy as withStyle } from '@instructure/emotion';
33
33
  import { hasVisibleChildren } from '@instructure/ui-a11y-utils';
34
34
  import generateStyle from "./styles.js";
35
35
  import generateComponentTheme from "./theme.js";