react-onsenui: Fixed typo and property type for ProgressBar (#22999)

* react-onsenui: Added missing attributes to existing components and on-change event of a Switch.

* react-onsenui: Fixed typo for ProgressBar intermediate --> indeterminate

* react-onsenui: Fixed type for ProgressBar secondaryValue boolean --> number
This commit is contained in:
salim7
2018-01-17 22:45:17 +01:00
committed by Wesley Wigham
parent 10316fd981
commit 4f3535ffa1

View File

@@ -249,8 +249,8 @@ export class ActionSheetButton extends Component<{
export class ProgressBar extends Component<{
modifier?: string,
value?: number,
secondaryValue?: boolean,
intermediate?: boolean,
secondaryValue?: number,
indeterminate?: boolean,
}, any> {}
export class ProgressCircular extends Component<{