feat(radio): component can be used outside of ion-item (#26582)

This commit is contained in:
Sean Perkins
2023-01-10 21:19:21 -05:00
committed by GitHub
parent 162c3f076a
commit 9761b0a092
252 changed files with 1521 additions and 436 deletions

View File

@ -1515,13 +1515,13 @@ export declare interface IonRadio extends Components.IonRadio {
@ProxyCmp({
defineCustomElementFn: undefined,
inputs: ['color', 'disabled', 'mode', 'name', 'value']
inputs: ['color', 'disabled', 'justify', 'labelPlacement', 'legacy', 'mode', 'name', 'value']
})
@Component({
selector: 'ion-radio',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
inputs: ['color', 'disabled', 'mode', 'name', 'value']
inputs: ['color', 'disabled', 'justify', 'labelPlacement', 'legacy', 'mode', 'name', 'value']
})
export class IonRadio {
protected el: HTMLElement;