feat(title): add support for small title (#19215)

Updates title to include `small` size and updates searchbar and UI to match native.

closes #18898
This commit is contained in:
Brandy Carney
2019-09-05 17:32:19 -04:00
committed by GitHub
parent ff2aaadf41
commit e27962dcaf
24 changed files with 657 additions and 314 deletions

View File

@ -452,7 +452,6 @@ export const SegmentExample: React.FC = () => (
| Event | Description | Type |
| ----------- | -------------------------------------------- | --------------------------------------- |
| `ionChange` | Emitted when the value property has changed. | `CustomEvent<SegmentChangeEventDetail>` |
| `ionStyle` | Emitted when the styles change. | `CustomEvent<StyleEventDetail>` |
----------------------------------------------

View File

@ -58,6 +58,7 @@ export class Segment implements ComponentInterface {
/**
* Emitted when the styles change.
* @internal
*/
@Event() ionStyle!: EventEmitter<StyleEventDetail>;