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';
99export interface NumberFieldProps extends InputProps {
1010 inputMode ?: 'decimal' | 'numeric' ;
1111 /**
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 .
1313 */
1414 max ?: number ;
1515 /**
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 .
1717 */
1818 min ?: number ;
1919}
You can’t perform that action at this time.
0 commit comments