-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathbutton-toggle.d-659ece43.d.ts
executable file
·257 lines (255 loc) · 12.9 KB
/
button-toggle.d-659ece43.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import { Direction } from '@angular/cdk/bidi';
import * as i0 from '@angular/core';
import { InjectionToken, OnInit, AfterContentInit, QueryList, EventEmitter, AfterViewInit, OnDestroy, ElementRef } from '@angular/core';
import { ControlValueAccessor } from '@angular/forms';
/**
* @deprecated No longer used.
* @breaking-change 11.0.0
*/
type ToggleType = 'checkbox' | 'radio';
/** Possible appearance styles for the button toggle. */
type MatButtonToggleAppearance = 'legacy' | 'standard';
/**
* Represents the default options for the button toggle that can be configured
* using the `MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS` injection token.
*/
interface MatButtonToggleDefaultOptions {
/**
* Default appearance to be used by button toggles. Can be overridden by explicitly
* setting an appearance on a button toggle or group.
*/
appearance?: MatButtonToggleAppearance;
/** Whether icon indicators should be hidden for single-selection button toggle groups. */
hideSingleSelectionIndicator?: boolean;
/** Whether icon indicators should be hidden for multiple-selection button toggle groups. */
hideMultipleSelectionIndicator?: boolean;
/** Whether disabled toggle buttons should be interactive. */
disabledInteractive?: boolean;
}
/**
* Injection token that can be used to configure the
* default options for all button toggles within an app.
*/
declare const MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS: InjectionToken<MatButtonToggleDefaultOptions>;
/**
* @docs-private
* @deprecated No longer used, will be removed.
* @breaking-change 21.0.0
*/
declare function MAT_BUTTON_TOGGLE_GROUP_DEFAULT_OPTIONS_FACTORY(): MatButtonToggleDefaultOptions;
/**
* Injection token that can be used to reference instances of `MatButtonToggleGroup`.
* It serves as alternative token to the actual `MatButtonToggleGroup` class which
* could cause unnecessary retention of the class and its component metadata.
*/
declare const MAT_BUTTON_TOGGLE_GROUP: InjectionToken<MatButtonToggleGroup>;
/**
* Provider Expression that allows mat-button-toggle-group to register as a ControlValueAccessor.
* This allows it to support [(ngModel)].
* @docs-private
*/
declare const MAT_BUTTON_TOGGLE_GROUP_VALUE_ACCESSOR: any;
/** Change event object emitted by button toggle. */
declare class MatButtonToggleChange {
/** The button toggle that emits the event. */
source: MatButtonToggle;
/** The value assigned to the button toggle. */
value: any;
constructor(
/** The button toggle that emits the event. */
source: MatButtonToggle,
/** The value assigned to the button toggle. */
value: any);
}
/** Exclusive selection button toggle group that behaves like a radio-button group. */
declare class MatButtonToggleGroup implements ControlValueAccessor, OnInit, AfterContentInit {
private _changeDetector;
private _dir;
private _multiple;
private _disabled;
private _disabledInteractive;
private _selectionModel;
/**
* Reference to the raw value that the consumer tried to assign. The real
* value will exclude any values from this one that don't correspond to a
* toggle. Useful for the cases where the value is assigned before the toggles
* have been initialized or at the same that they're being swapped out.
*/
private _rawValue;
/**
* The method to be called in order to update ngModel.
* Now `ngModel` binding is not supported in multiple selection mode.
*/
_controlValueAccessorChangeFn: (value: any) => void;
/** onTouch function registered via registerOnTouch (ControlValueAccessor). */
_onTouched: () => any;
/** Child button toggle buttons. */
_buttonToggles: QueryList<MatButtonToggle>;
/** The appearance for all the buttons in the group. */
appearance: MatButtonToggleAppearance;
/** `name` attribute for the underlying `input` element. */
get name(): string;
set name(value: string);
private _name;
/** Whether the toggle group is vertical. */
vertical: boolean;
/** Value of the toggle group. */
get value(): any;
set value(newValue: any);
/**
* Event that emits whenever the value of the group changes.
* Used to facilitate two-way data binding.
* @docs-private
*/
readonly valueChange: EventEmitter<any>;
/** Selected button toggles in the group. */
get selected(): MatButtonToggle | MatButtonToggle[];
/** Whether multiple button toggles can be selected. */
get multiple(): boolean;
set multiple(value: boolean);
/** Whether multiple button toggle group is disabled. */
get disabled(): boolean;
set disabled(value: boolean);
/** Whether buttons in the group should be interactive while they're disabled. */
get disabledInteractive(): boolean;
set disabledInteractive(value: boolean);
/** The layout direction of the toggle button group. */
get dir(): Direction;
/** Event emitted when the group's value changes. */
readonly change: EventEmitter<MatButtonToggleChange>;
/** Whether checkmark indicator for single-selection button toggle groups is hidden. */
get hideSingleSelectionIndicator(): boolean;
set hideSingleSelectionIndicator(value: boolean);
private _hideSingleSelectionIndicator;
/** Whether checkmark indicator for multiple-selection button toggle groups is hidden. */
get hideMultipleSelectionIndicator(): boolean;
set hideMultipleSelectionIndicator(value: boolean);
private _hideMultipleSelectionIndicator;
constructor(...args: unknown[]);
ngOnInit(): void;
ngAfterContentInit(): void;
/**
* Sets the model value. Implemented as part of ControlValueAccessor.
* @param value Value to be set to the model.
*/
writeValue(value: any): void;
registerOnChange(fn: (value: any) => void): void;
registerOnTouched(fn: any): void;
setDisabledState(isDisabled: boolean): void;
/** Handle keydown event calling to single-select button toggle. */
protected _keydown(event: KeyboardEvent): void;
/** Dispatch change event with current selection and group value. */
_emitChangeEvent(toggle: MatButtonToggle): void;
/**
* Syncs a button toggle's selected state with the model value.
* @param toggle Toggle to be synced.
* @param select Whether the toggle should be selected.
* @param isUserInput Whether the change was a result of a user interaction.
* @param deferEvents Whether to defer emitting the change events.
*/
_syncButtonToggle(toggle: MatButtonToggle, select: boolean, isUserInput?: boolean, deferEvents?: boolean): void;
/** Checks whether a button toggle is selected. */
_isSelected(toggle: MatButtonToggle): boolean;
/** Determines whether a button toggle should be checked on init. */
_isPrechecked(toggle: MatButtonToggle): boolean;
/** Initializes the tabindex attribute using the radio pattern. */
private _initializeTabIndex;
/** Obtain the subsequent toggle to which the focus shifts. */
private _getNextButton;
/** Updates the selection state of the toggles in the group based on a value. */
private _setSelectionByValue;
/** Clears the selected toggles. */
private _clearSelection;
/** Selects a value if there's a toggle that corresponds to it. */
private _selectValue;
/** Syncs up the group's value with the model and emits the change event. */
private _updateModelValue;
/** Marks all of the child button toggles to be checked. */
private _markButtonsForCheck;
static ɵfac: i0.ɵɵFactoryDeclaration<MatButtonToggleGroup, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<MatButtonToggleGroup, "mat-button-toggle-group", ["matButtonToggleGroup"], { "appearance": { "alias": "appearance"; "required": false; }; "name": { "alias": "name"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "value": { "alias": "value"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disabledInteractive": { "alias": "disabledInteractive"; "required": false; }; "hideSingleSelectionIndicator": { "alias": "hideSingleSelectionIndicator"; "required": false; }; "hideMultipleSelectionIndicator": { "alias": "hideMultipleSelectionIndicator"; "required": false; }; }, { "valueChange": "valueChange"; "change": "change"; }, ["_buttonToggles"], never, true, never>;
static ngAcceptInputType_vertical: unknown;
static ngAcceptInputType_multiple: unknown;
static ngAcceptInputType_disabled: unknown;
static ngAcceptInputType_disabledInteractive: unknown;
static ngAcceptInputType_hideSingleSelectionIndicator: unknown;
static ngAcceptInputType_hideMultipleSelectionIndicator: unknown;
}
/** Single button inside of a toggle group. */
declare class MatButtonToggle implements OnInit, AfterViewInit, OnDestroy {
private _changeDetectorRef;
private _elementRef;
private _focusMonitor;
private _idGenerator;
private _animationDisabled;
private _checked;
/**
* Attached to the aria-label attribute of the host element. In most cases, aria-labelledby will
* take precedence so this may be omitted.
*/
ariaLabel: string;
/**
* Users can specify the `aria-labelledby` attribute which will be forwarded to the input element
*/
ariaLabelledby: string | null;
/** Underlying native `button` element. */
_buttonElement: ElementRef<HTMLButtonElement>;
/** The parent button toggle group (exclusive selection). Optional. */
buttonToggleGroup: MatButtonToggleGroup;
/** Unique ID for the underlying `button` element. */
get buttonId(): string;
/** The unique ID for this button toggle. */
id: string;
/** HTML's 'name' attribute used to group radios for unique selection. */
name: string;
/** MatButtonToggleGroup reads this to assign its own value. */
value: any;
/** Tabindex of the toggle. */
get tabIndex(): number | null;
set tabIndex(value: number | null);
private _tabIndex;
/** Whether ripples are disabled on the button toggle. */
disableRipple: boolean;
/** The appearance style of the button. */
get appearance(): MatButtonToggleAppearance;
set appearance(value: MatButtonToggleAppearance);
private _appearance;
/** Whether the button is checked. */
get checked(): boolean;
set checked(value: boolean);
/** Whether the button is disabled. */
get disabled(): boolean;
set disabled(value: boolean);
private _disabled;
/** Whether the button should remain interactive when it is disabled. */
get disabledInteractive(): boolean;
set disabledInteractive(value: boolean);
private _disabledInteractive;
/** Event emitted when the group value changes. */
readonly change: EventEmitter<MatButtonToggleChange>;
constructor(...args: unknown[]);
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
/** Focuses the button. */
focus(options?: FocusOptions): void;
/** Checks the button toggle due to an interaction with the underlying native button. */
_onButtonClick(): void;
/**
* Marks the button toggle as needing checking for change detection.
* This method is exposed because the parent button toggle group will directly
* update bound properties of the radio button.
*/
_markForCheck(): void;
/** Gets the name that should be assigned to the inner DOM node. */
_getButtonName(): string | null;
/** Whether the toggle is in single selection mode. */
isSingleSelector(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<MatButtonToggle, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MatButtonToggle, "mat-button-toggle", ["matButtonToggle"], { "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disabledInteractive": { "alias": "disabledInteractive"; "required": false; }; }, { "change": "change"; }, never, ["*"], true, never>;
static ngAcceptInputType_disableRipple: unknown;
static ngAcceptInputType_checked: unknown;
static ngAcceptInputType_disabled: unknown;
static ngAcceptInputType_disabledInteractive: unknown;
}
export { MatButtonToggleGroup as M, type ToggleType as T, MatButtonToggle as a, type MatButtonToggleAppearance as b, type MatButtonToggleDefaultOptions as c, MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS as d, MAT_BUTTON_TOGGLE_GROUP_DEFAULT_OPTIONS_FACTORY as e, MAT_BUTTON_TOGGLE_GROUP as f, MAT_BUTTON_TOGGLE_GROUP_VALUE_ACCESSOR as g, MatButtonToggleChange as h };