diff --git a/BREAKING.md b/BREAKING.md index 0061211fbe..ed7fbaa684 100644 --- a/BREAKING.md +++ b/BREAKING.md @@ -18,6 +18,7 @@ A list of the breaking changes introduced in Ionic Angular v4. - [Radio](#radio) - [Range](#range) - [Segment](#segment) +- [Select](#select) - [Toolbar](#toolbar) - [Sass](#sass) @@ -553,6 +554,41 @@ These have been renamed to the following: The markup hasn't changed for Segments, but now writing `` will render a native button element inside of it. +## Select + +The `selectOptions` property was renamed to `interfaceOptions` since it directly correlates with the `interface` property. + +**Old Usage Example:** + +```html + + ... + +``` + +```ts +this.customOptions = { + title: 'Pizza Toppings', + subTitle: 'Select your toppings' +}; +``` + +**New Usage Example:** + +```html + + ... + +``` + +```ts +this.customOptions = { + title: 'Pizza Toppings', + subTitle: 'Select your toppings' +}; +``` + + ## Toolbar ### Attributes Renamed diff --git a/packages/core/src/components/select-popover/readme.md b/packages/core/src/components/select-popover/readme.md index 70950226c9..823e09e0c4 100644 --- a/packages/core/src/components/select-popover/readme.md +++ b/packages/core/src/components/select-popover/readme.md @@ -7,18 +7,48 @@ ## Properties +#### message + +string + + #### options any +#### subTitle + +string + + +#### title + +string + + ## Attributes +#### message + +string + + #### options any +#### subTitle + +string + + +#### title + +string + + ---------------------------------------------- diff --git a/packages/core/src/components/select/readme.md b/packages/core/src/components/select/readme.md index 9644671989..a5e61cdb4e 100644 --- a/packages/core/src/components/select/readme.md +++ b/packages/core/src/components/select/readme.md @@ -1,5 +1,80 @@ # ion-select +The `` element is similar to a native `