import {MatSlideToggleModule} from '@angular/material/slide-toggle';
MatSlideToggle
Selector: mat-slide-toggle
Exported as: matSlideToggleName | Description |
---|---|
@Input('aria-describedby')
|
Used to set the aria-describedby attribute on the underlying input element. |
@Input('aria-label')
|
Used to set the aria-label attribute on the underlying input element. |
@Input('aria-labelledby')
|
Used to set the aria-labelledby attribute on the underlying input element. |
@Input({ transform: booleanAttribute })
|
Whether the slide-toggle element is checked or not. |
@Input()
|
Theme color of the slide toggle. This API is supported in M2 themes only, it has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/slide-toggle/styling. For information on applying color variants in M3, see https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants |
@Input({ transform: booleanAttribute })
|
Whether the slide toggle has a ripple. |
@Input({ transform: booleanAttribute })
|
Whether the slide toggle is disabled. |
@Input({ transform: booleanAttribute })
|
Whether the slide toggle should remain interactive when it is disabled. |
@Input({ transform: booleanAttribute })
|
Whether to hide the icon inside of the slide toggle. |
@Input()
|
A unique id for the slide-toggle input. If none is supplied, it will be auto-generated. |
@Input()
|
Whether the label should appear after or before the slide-toggle. Defaults to 'after'. |
@Input()
|
Name value will be applied to the input element if present. |
@Input({ transform: booleanAttribute })
|
Whether the slide-toggle is required. |
@Output()
|
An event will be dispatched each time the slide-toggle changes its value. |
@Output()
|
An event will be dispatched each time the slide-toggle input is toggled. This event is always emitted when the user toggles the slide toggle, but this does not mean the slide toggle's value has changed. |
|
Returns the unique id for the visual hidden button. |
|
|
|
Returns the unique id for the visual hidden input. |
focus | |
---|---|
Focuses the slide-toggle. |
registerOnValidatorChange | |
---|---|
Implemented as a part of Validator. |
|
Parameters | |
fn () => void
|
|
toggle | |
---|---|
Toggles the checked state of the slide-toggle. |
validate | |
---|---|
Implemented as a part of Validator. |
|
Parameters | |
control AbstractControl<boolean, boolean>
|
|
Returns | |
ValidationErrors | null
|
|
MatSlideToggleChange
Change event object emitted by a slide toggle.
Name | Description |
---|---|
|
The new |
|
The source slide toggle of the event. |
MatSlideToggleDefaultOptions
Default mat-slide-toggle
options that can be overridden.
Name | Description |
---|---|
|
Default theme color of the slide toggle. This API is supported in M2 themes only, it has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/slide-toggle/styling. For information on applying color variants in M3, see https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants |
|
Whether toggle action triggers value changes in slide toggle. |
|
Whether disabled slide toggles should remain interactive. |
|
Whether to hide the icon inside the slide toggle. |
MAT_SLIDE_TOGGLE_DEFAULT_OPTIONS
Injection token to be used to override the default options for mat-slide-toggle
.
const MAT_SLIDE_TOGGLE_DEFAULT_OPTIONS: InjectionToken<MatSlideToggleDefaultOptions>;