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