@instructure/ui-form-field 11.7.2-snapshot-54 → 11.7.2-snapshot-62

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,7 +3,7 @@
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.7.2-snapshot-54](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-54) (2026-04-23)
6
+ ## [11.7.2-snapshot-62](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-62) (2026-04-23)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-form-field",
3
- "version": "11.7.2-snapshot-54",
3
+ "version": "11.7.2-snapshot-62",
4
4
  "description": "Form layout components.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,24 +15,24 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/console": "11.7.2-snapshot-54",
19
- "@instructure/shared-types": "11.7.2-snapshot-54",
20
- "@instructure/ui-a11y-utils": "11.7.2-snapshot-54",
21
- "@instructure/emotion": "11.7.2-snapshot-54",
22
- "@instructure/ui-a11y-content": "11.7.2-snapshot-54",
23
- "@instructure/ui-grid": "11.7.2-snapshot-54",
24
- "@instructure/ui-react-utils": "11.7.2-snapshot-54",
25
- "@instructure/ui-utils": "11.7.2-snapshot-54",
26
- "@instructure/ui-icons": "11.7.2-snapshot-54",
27
- "@instructure/uid": "11.7.2-snapshot-54"
18
+ "@instructure/console": "11.7.2-snapshot-62",
19
+ "@instructure/shared-types": "11.7.2-snapshot-62",
20
+ "@instructure/emotion": "11.7.2-snapshot-62",
21
+ "@instructure/ui-a11y-content": "11.7.2-snapshot-62",
22
+ "@instructure/ui-a11y-utils": "11.7.2-snapshot-62",
23
+ "@instructure/ui-grid": "11.7.2-snapshot-62",
24
+ "@instructure/ui-icons": "11.7.2-snapshot-62",
25
+ "@instructure/ui-react-utils": "11.7.2-snapshot-62",
26
+ "@instructure/uid": "11.7.2-snapshot-62",
27
+ "@instructure/ui-utils": "11.7.2-snapshot-62"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@testing-library/jest-dom": "^6.6.3",
31
31
  "@testing-library/react": "15.0.7",
32
32
  "vitest": "^3.2.2",
33
- "@instructure/ui-babel-preset": "11.7.2-snapshot-54",
34
- "@instructure/ui-axe-check": "11.7.2-snapshot-54",
35
- "@instructure/ui-themes": "11.7.2-snapshot-54"
33
+ "@instructure/ui-babel-preset": "11.7.2-snapshot-62",
34
+ "@instructure/ui-axe-check": "11.7.2-snapshot-62",
35
+ "@instructure/ui-themes": "11.7.2-snapshot-62"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "react": ">=18 <=19"
@@ -82,7 +82,7 @@ const generateGridLayout = (
82
82
  * @return The final style object, which will be used in the component
83
83
  */
84
84
  const generateStyle = (
85
- componentTheme: NewComponentTypes['FormFieldLayout'],
85
+ componentTheme: ReturnType<NewComponentTypes['FormFieldLayout']>,
86
86
  params: StyleParams,
87
87
  sharedTokens: SharedTokens
88
88
  ): FormFieldLayoutStyle => {
@@ -41,7 +41,7 @@ type StyleParams = {
41
41
  * @return {Object} The final style object, which will be used in the component
42
42
  */
43
43
  const generateStyle = (
44
- componentTheme: NewComponentTypes['FormFieldMessage'],
44
+ componentTheme: ReturnType<NewComponentTypes['FormFieldMessage']>,
45
45
  params: StyleParams,
46
46
  sharedTokens: SharedTokens
47
47
  ): FormFieldMessageStyle => {