-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsort.d-75ca592a.d.ts
executable file
·87 lines (85 loc) · 4.18 KB
/
sort.d-75ca592a.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
import * as i0 from '@angular/core';
import { InjectionToken, OnChanges, OnDestroy, OnInit, EventEmitter } from '@angular/core';
import { Subject, Observable } from 'rxjs';
import { S as SortDirection } from './sort-direction.d-2be5f588.js';
/** Position of the arrow that displays when sorted. */
type SortHeaderArrowPosition = 'before' | 'after';
/** Interface for a directive that holds sorting state consumed by `MatSortHeader`. */
interface MatSortable {
/** The id of the column being sorted. */
id: string;
/** Starting sort direction. */
start: SortDirection;
/** Whether to disable clearing the sorting state. */
disableClear: boolean;
}
/** The current sort state. */
interface Sort {
/** The id of the column being sorted. */
active: string;
/** The sort direction. */
direction: SortDirection;
}
/** Default options for `mat-sort`. */
interface MatSortDefaultOptions {
/** Whether to disable clearing the sorting state. */
disableClear?: boolean;
/** Position of the arrow that displays when sorted. */
arrowPosition?: SortHeaderArrowPosition;
}
/** Injection token to be used to override the default options for `mat-sort`. */
declare const MAT_SORT_DEFAULT_OPTIONS: InjectionToken<MatSortDefaultOptions>;
/** Container for MatSortables to manage the sort state and provide default sort parameters. */
declare class MatSort implements OnChanges, OnDestroy, OnInit {
private _defaultOptions?;
private _initializedStream;
/** Collection of all registered sortables that this directive manages. */
sortables: Map<string, MatSortable>;
/** Used to notify any child components listening to state changes. */
readonly _stateChanges: Subject<void>;
/** The id of the most recently sorted MatSortable. */
active: string;
/**
* The direction to set when an MatSortable is initially sorted.
* May be overridden by the MatSortable's sort start.
*/
start: SortDirection;
/** The sort direction of the currently active MatSortable. */
get direction(): SortDirection;
set direction(direction: SortDirection);
private _direction;
/**
* Whether to disable the user from clearing the sort by finishing the sort direction cycle.
* May be overridden by the MatSortable's disable clear input.
*/
disableClear: boolean;
/** Whether the sortable is disabled. */
disabled: boolean;
/** Event emitted when the user changes either the active sort or sort direction. */
readonly sortChange: EventEmitter<Sort>;
/** Emits when the paginator is initialized. */
initialized: Observable<void>;
constructor(_defaultOptions?: MatSortDefaultOptions | undefined);
/**
* Register function to be used by the contained MatSortables. Adds the MatSortable to the
* collection of MatSortables.
*/
register(sortable: MatSortable): void;
/**
* Unregister function to be used by the contained MatSortables. Removes the MatSortable from the
* collection of contained MatSortables.
*/
deregister(sortable: MatSortable): void;
/** Sets the active sort id and determines the new sort direction. */
sort(sortable: MatSortable): void;
/** Returns the next sort direction of the active sortable, checking for potential overrides. */
getNextSortDirection(sortable: MatSortable): SortDirection;
ngOnInit(): void;
ngOnChanges(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<MatSort, [{ optional: true; }]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSort, "[matSort]", ["matSort"], { "active": { "alias": "matSortActive"; "required": false; }; "start": { "alias": "matSortStart"; "required": false; }; "direction": { "alias": "matSortDirection"; "required": false; }; "disableClear": { "alias": "matSortDisableClear"; "required": false; }; "disabled": { "alias": "matSortDisabled"; "required": false; }; }, { "sortChange": "matSortChange"; }, never, never, true, never>;
static ngAcceptInputType_disableClear: unknown;
static ngAcceptInputType_disabled: unknown;
}
export { type MatSortable as M, type SortHeaderArrowPosition as S, MatSort as a, type Sort as b, type MatSortDefaultOptions as c, MAT_SORT_DEFAULT_OPTIONS as d };