File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
packages/ui-extensions/src/surfaces/point-of-sale/render/components/NumberField Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @shopify/ui-extensions ' : patch
3
+ ---
4
+
5
+ NumberField - remove deprecation of min and max props
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ import type {InputProps} from '../shared/InputField';
9
9
export interface NumberFieldProps extends InputProps {
10
10
inputMode ?: 'decimal' | 'numeric' ;
11
11
/**
12
- * @deprecated Implement validation logic instead. This prop will be removed in 2025-10 .
12
+ * The highest decimal or integer to be accepted for the field .
13
13
*/
14
14
max ?: number ;
15
15
/**
16
- * @deprecated Implement validation logic instead. This prop will be removed in 2025-10 .
16
+ * The lowest decimal or integer to be accepted for the field .
17
17
*/
18
18
min ?: number ;
19
19
}
You can’t perform that action at this time.
0 commit comments