You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING CHANGE:
- The `helper` slot has been removed. Developers should use the `helperText` property on `ion-input` and `ion-textarea`.
- The `error` slot has been removed. Developers should use the `errorText` property on `ion-input` and `ion-textarea`.
- Counter functionality has been removed including the `counter` and `counterFormatter` properties. Developers should use the properties of the same name on `ion-input` and `ion-textarea`.
- The `fill` property has been removed. Developers should use the property of the same name on `ion-input`, `ion-select`, and `ion-textarea`.
- The `shape` property has been removed. Developers should use the property of the same name on `ion-input`, `ion-select`, and `ion-textarea`.
Copy file name to clipboardExpand all lines: BREAKING.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ This is a comprehensive list of the breaking changes introduced in the major ver
21
21
-[Checkbox](#version-8x-checkbox)
22
22
-[Content](#version-8x-content)
23
23
-[Datetime](#version-8x-datetime)
24
+
-[Item](#version-8x-item)
24
25
-[Input](#version-8x-input)
25
26
-[Item](#version-8x-item)
26
27
-[Modal](#version-8x-modal)
@@ -162,6 +163,13 @@ For more information on the dynamic font, refer to the [Dynamic Font Scaling doc
162
163
+ background: red;
163
164
}
164
165
```
166
+
<h4 id="version-8x-item">Item</h4>
167
+
168
+
- The `helper` slot has been removed. Developers should use the `helperText` property on `ion-input` and `ion-textarea`.
169
+
- The `error` slot has been removed. Developers should use the `errorText` property on `ion-input` and `ion-textarea`.
170
+
- Counter functionality has been removed including the `counter` and `counterFormatter` properties. Developers should use the properties of the same name on `ion-input` and `ion-textarea`.
171
+
- The `fill` property has been removed. Developers should use the property of the same name on `ion-input`, `ion-select`, and `ion-textarea`.
172
+
- The `shape` property has been removed. Developers should use the property of the same name on `ion-input`, `ion-select`, and `ion-textarea`.
* The color to use from your application's color palette. Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`. For more information on colors, see [theming](/docs/theming/basics).
1295
1293
*/
1296
1294
"color"?: Color;
1297
-
/**
1298
-
* If `true`, a character counter will display the ratio of characters used and the total character limit. Only applies when the `maxlength` property is set on the inner `ion-input` or `ion-textarea`.
1299
-
* @deprecated Use the `counter` property on `ion-input` or `ion-textarea` instead.
1300
-
*/
1301
-
"counter": boolean;
1302
-
/**
1303
-
* A callback used to format the counter text. By default the counter text is set to "itemLength / maxLength".
1304
-
* @deprecated Use the `counterFormatter` property on `ion-input` or `ion-textarea` instead.
1305
-
*/
1306
-
"counterFormatter"?: CounterFormatter;
1307
1295
/**
1308
1296
* If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode` is `ios` and an `href` or `button` property is present.
* This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
1321
1309
*/
1322
1310
"download": string|undefined;
1323
-
/**
1324
-
* The fill for the item. If `"solid"` the item will have a background. If `"outline"` the item will be transparent with a border. Only available in `md` mode.
1325
-
* @deprecated Use the `fill` property on `ion-input` or `ion-textarea` instead.
1326
-
*/
1327
-
"fill"?: 'outline'|'solid';
1328
1311
/**
1329
1312
* Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
* The color to use from your application's color palette. Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`. For more information on colors, see [theming](/docs/theming/basics).
6010
5989
*/
6011
5990
"color"?: Color;
6012
-
/**
6013
-
* If `true`, a character counter will display the ratio of characters used and the total character limit. Only applies when the `maxlength` property is set on the inner `ion-input` or `ion-textarea`.
6014
-
* @deprecated Use the `counter` property on `ion-input` or `ion-textarea` instead.
6015
-
*/
6016
-
"counter"?: boolean;
6017
-
/**
6018
-
* A callback used to format the counter text. By default the counter text is set to "itemLength / maxLength".
6019
-
* @deprecated Use the `counterFormatter` property on `ion-input` or `ion-textarea` instead.
6020
-
*/
6021
-
"counterFormatter"?: CounterFormatter;
6022
5991
/**
6023
5992
* If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode` is `ios` and an `href` or `button` property is present.
* This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
6036
6005
*/
6037
6006
"download"?: string|undefined;
6038
-
/**
6039
-
* The fill for the item. If `"solid"` the item will have a background. If `"outline"` the item will be transparent with a border. Only available in `md` mode.
6040
-
* @deprecated Use the `fill` property on `ion-input` or `ion-textarea` instead.
6041
-
*/
6042
-
"fill"?: 'outline'|'solid';
6043
6007
/**
6044
6008
* Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
0 commit comments