File tree Expand file tree Collapse file tree 5 files changed +5
-8
lines changed
ui-extensions-react/src/surfaces
docs/surfaces/point-of-sale
src/surfaces/point-of-sale
render/components/TextField Expand file tree Collapse file tree 5 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export type {
69
69
SuccessProps ,
70
70
PasswordProps ,
71
71
EmbeddedElementProps ,
72
- TextFieldProps ,
72
+ NewTextFieldProps ,
73
73
TileProps ,
74
74
TimeFieldProps ,
75
75
TimePickerProps ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const data: ReferenceEntityTemplateSchema = {
12
12
title : 'TextField' ,
13
13
description :
14
14
'Use a text field to allow merchants to input or modify multiline text.' ,
15
- type : 'TextFieldProps ' ,
15
+ type : 'NewTextFieldProps ' ,
16
16
} ,
17
17
] ,
18
18
category : 'Components' ,
Original file line number Diff line number Diff line change @@ -46,9 +46,6 @@ Refer to the [migration guide](/docs/api/pos-ui-extensions/migrating) for more i
46
46
- Removed in POS version: N/A
47
47
- Release day: N/A
48
48
49
- ### Breaking Changes
50
- - Renamed \`NewTextFieldProps\` to \`TextFieldProps\`.
51
-
52
49
### Features
53
50
54
51
**Developer Preview**:
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export {TextArea} from './render/components/TextArea/TextArea';
120
120
export type { TextAreaProps } from './render/components/TextArea/TextArea' ;
121
121
export { TextField } from './render/components/TextField/TextField' ;
122
122
export type {
123
- TextFieldProps ,
123
+ NewTextFieldProps ,
124
124
ActionProps ,
125
125
InfoProps ,
126
126
SuccessProps ,
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ export type EmbeddedElementProps =
29
29
| SuccessProps
30
30
| PasswordProps ;
31
31
32
- export interface TextFieldProps extends InputProps { }
32
+ export interface NewTextFieldProps extends InputProps { }
33
33
34
- export const TextField = createRemoteComponent < 'TextField' , TextFieldProps > (
34
+ export const TextField = createRemoteComponent < 'TextField' , NewTextFieldProps > (
35
35
'TextField' ,
36
36
) ;
You can’t perform that action at this time.
0 commit comments