@instructure/ui-number-input 11.7.3-snapshot-4 → 11.7.3-snapshot-6

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.3-snapshot-4](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-4) (2026-04-28)
6
+ ## [11.7.3-snapshot-6](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-6) (2026-04-29)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-number-input
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-number-input",
3
- "version": "11.7.3-snapshot-4",
3
+ "version": "11.7.3-snapshot-6",
4
4
  "description": "A UI component library made by Instructure Inc.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -16,23 +16,23 @@
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
18
  "keycode": "^2",
19
- "@instructure/emotion": "11.7.3-snapshot-4",
20
- "@instructure/shared-types": "11.7.3-snapshot-4",
21
- "@instructure/ui-form-field": "11.7.3-snapshot-4",
22
- "@instructure/ui-a11y-utils": "11.7.3-snapshot-4",
23
- "@instructure/ui-icons": "11.7.3-snapshot-4",
24
- "@instructure/ui-react-utils": "11.7.3-snapshot-4",
25
- "@instructure/ui-utils": "11.7.3-snapshot-4",
26
- "@instructure/uid": "11.7.3-snapshot-4"
19
+ "@instructure/emotion": "11.7.3-snapshot-6",
20
+ "@instructure/shared-types": "11.7.3-snapshot-6",
21
+ "@instructure/ui-a11y-utils": "11.7.3-snapshot-6",
22
+ "@instructure/ui-form-field": "11.7.3-snapshot-6",
23
+ "@instructure/ui-icons": "11.7.3-snapshot-6",
24
+ "@instructure/ui-react-utils": "11.7.3-snapshot-6",
25
+ "@instructure/ui-themes": "11.7.3-snapshot-6",
26
+ "@instructure/ui-utils": "11.7.3-snapshot-6",
27
+ "@instructure/uid": "11.7.3-snapshot-6"
27
28
  },
28
29
  "devDependencies": {
29
30
  "@testing-library/jest-dom": "^6.6.3",
30
31
  "@testing-library/react": "15.0.7",
31
32
  "@testing-library/user-event": "^14.6.1",
32
33
  "vitest": "^3.2.2",
33
- "@instructure/ui-babel-preset": "11.7.3-snapshot-4",
34
- "@instructure/ui-scripts": "11.7.3-snapshot-4",
35
- "@instructure/ui-themes": "11.7.3-snapshot-4"
34
+ "@instructure/ui-scripts": "11.7.3-snapshot-6",
35
+ "@instructure/ui-babel-preset": "11.7.3-snapshot-6"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "react": ">=18 <=19"
@@ -31,8 +31,8 @@ import type {
31
31
  } from '@instructure/shared-types'
32
32
  import type {
33
33
  ComponentStyle,
34
- Spacing,
35
- ThemeOverrideValue
34
+ NewThemeOverrideProp,
35
+ Spacing
36
36
  } from '@instructure/emotion'
37
37
  import type {
38
38
  FormFieldOwnProps,
@@ -43,6 +43,7 @@ import type {
43
43
  WithDeterministicIdProps
44
44
  } from '@instructure/ui-react-utils'
45
45
  import { Renderable } from '@instructure/shared-types'
46
+ import type { NewComponentTypes } from '@instructure/ui-themes'
46
47
 
47
48
  type NumberInputOwnProps = {
48
49
  /**
@@ -194,9 +195,9 @@ type NumberInputProps =
194
195
  FormFieldOwnProps,
195
196
  'label' | 'inline' | 'id' | 'elementRef'
196
197
  > &
197
- NumberInputOwnProps & {
198
- themeOverride?: ThemeOverrideValue
199
- } & OtherHTMLAttributes<
198
+ NumberInputOwnProps &
199
+ NewThemeOverrideProp<ReturnType<NewComponentTypes['TextInput']>> &
200
+ OtherHTMLAttributes<
200
201
  NumberInputOwnProps,
201
202
  InputHTMLAttributes<NumberInputOwnProps & Element>
202
203
  > &