@ng-matero/extensions 21.3.0 → 22.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/mtxAlert.mjs +7 -7
- package/fesm2022/mtxButton.mjs +10 -10
- package/fesm2022/mtxButton.mjs.map +1 -1
- package/fesm2022/mtxCheckboxGroup.mjs +35 -9
- package/fesm2022/mtxCheckboxGroup.mjs.map +1 -1
- package/fesm2022/mtxColorpicker.mjs +21 -21
- package/fesm2022/mtxColorpicker.mjs.map +1 -1
- package/fesm2022/mtxColumnResize.mjs +43 -43
- package/fesm2022/mtxCore.mjs +22 -22
- package/fesm2022/mtxCore.mjs.map +1 -1
- package/fesm2022/mtxDatetimepicker.mjs +64 -63
- package/fesm2022/mtxDatetimepicker.mjs.map +1 -1
- package/fesm2022/mtxDialog.mjs +10 -10
- package/fesm2022/mtxDrawer.mjs +11 -11
- package/fesm2022/mtxDrawer.mjs.map +1 -1
- package/fesm2022/mtxGrid.mjs +72 -72
- package/fesm2022/mtxGrid.mjs.map +1 -1
- package/fesm2022/mtxLoader.mjs +7 -7
- package/fesm2022/mtxPhotoviewer.mjs +7 -7
- package/fesm2022/mtxPopover.mjs +29 -35
- package/fesm2022/mtxPopover.mjs.map +1 -1
- package/fesm2022/mtxProgress.mjs +7 -7
- package/fesm2022/mtxSelect.mjs +95 -91
- package/fesm2022/mtxSelect.mjs.map +1 -1
- package/fesm2022/mtxSplit.mjs +10 -10
- package/fesm2022/mtxTooltip.mjs +10 -10
- package/package.json +9 -7
- package/select/select.scss +131 -150
- package/types/mtxCheckboxGroup.d.ts +5 -0
- package/types/mtxColorpicker.d.ts +1 -1
- package/types/mtxDatetimepicker.d.ts +1 -1
- package/types/mtxGrid.d.ts +1 -1
- package/types/mtxPopover.d.ts +2 -3
- package/types/mtxSelect.d.ts +32 -29
- package/types/mtxSplit.d.ts +1 -1
- package/types/mtxTooltip.d.ts +2 -2
package/select/select.scss
CHANGED
|
@@ -3,15 +3,16 @@
|
|
|
3
3
|
@use './m3-select';
|
|
4
4
|
|
|
5
5
|
$fallbacks: m3-select.get-tokens();
|
|
6
|
+
$filled-padding-top: var(--mat-form-field-filled-with-label-container-padding-top, 24px);
|
|
7
|
+
$filled-padding-bottom: var(--mat-form-field-filled-with-label-container-padding-bottom, 8px);
|
|
8
|
+
$vertical-padding: var(--mat-form-field-container-vertical-padding, 16px);
|
|
9
|
+
$text-line-height: var(
|
|
10
|
+
--mat-form-field-container-text-line-height,
|
|
11
|
+
var(--mat-sys-body-large-line-height)
|
|
12
|
+
);
|
|
6
13
|
|
|
7
14
|
.ng-select {
|
|
8
|
-
|
|
9
|
-
$filled-padding-bottom: var(--mat-form-field-filled-with-label-container-padding-bottom, 8px);
|
|
10
|
-
$vertical-padding: var(--mat-form-field-container-vertical-padding, 16px);
|
|
11
|
-
$text-line-height: var(
|
|
12
|
-
--mat-form-field-container-text-line-height,
|
|
13
|
-
var(--mat-sys-body-large-line-height)
|
|
14
|
-
);
|
|
15
|
+
--ns-indicator-icon-size: 16px;
|
|
15
16
|
|
|
16
17
|
.mat-mdc-form-field & {
|
|
17
18
|
padding: $filled-padding-top 16px $filled-padding-bottom;
|
|
@@ -25,132 +26,112 @@ $fallbacks: m3-select.get-tokens();
|
|
|
25
26
|
margin-top: calc($vertical-padding * -1);
|
|
26
27
|
margin-bottom: calc($vertical-padding * -1);
|
|
27
28
|
}
|
|
29
|
+
}
|
|
28
30
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
31
|
+
.ng-select-multiple {
|
|
32
|
+
.ng-select-value {
|
|
33
|
+
box-sizing: border-box;
|
|
34
|
+
height: $text-line-height;
|
|
35
|
+
padding: 0 calc(($text-line-height - 16px) / 2);
|
|
36
|
+
border-radius: 9999px;
|
|
37
|
+
font-size: 0.875em;
|
|
38
|
+
background-color: token-utils.slot(select-multiple-value-background-color, $fallbacks);
|
|
39
|
+
border: 1px solid token-utils.slot(select-multiple-value-outline-color, $fallbacks);
|
|
40
|
+
|
|
41
|
+
&.ng-select-value-disabled {
|
|
42
|
+
opacity: 0.4;
|
|
43
|
+
}
|
|
37
44
|
}
|
|
38
45
|
|
|
39
|
-
.ng-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
font: inherit;
|
|
46
|
+
.ng-select-value-label {
|
|
47
|
+
display: inline-block;
|
|
48
|
+
margin: 0 4px;
|
|
43
49
|
}
|
|
44
50
|
|
|
45
|
-
.ng-
|
|
51
|
+
.ng-select-value-remove {
|
|
46
52
|
display: inline-flex;
|
|
47
53
|
justify-content: center;
|
|
48
54
|
align-items: center;
|
|
49
|
-
width:
|
|
50
|
-
height:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
&:hover
|
|
54
|
-
color: token-utils.slot(
|
|
55
|
+
width: 16px;
|
|
56
|
+
height: 16px;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
|
|
59
|
+
&:hover {
|
|
60
|
+
background-color: token-utils.slot(
|
|
61
|
+
select-multiple-value-icon-hover-background-color,
|
|
62
|
+
$fallbacks
|
|
63
|
+
);
|
|
55
64
|
}
|
|
56
65
|
}
|
|
57
66
|
|
|
58
|
-
.ng-
|
|
59
|
-
|
|
60
|
-
opacity: 1;
|
|
61
|
-
color: token-utils.slot(select-placeholder-text-color, $fallbacks);
|
|
62
|
-
|
|
63
|
-
.mat-form-field-hide-placeholder & {
|
|
64
|
-
opacity: 0;
|
|
65
|
-
}
|
|
67
|
+
&.ng-select-disabled .ng-select-value {
|
|
68
|
+
border-color: token-utils.slot(select-multiple-value-disabled-outline-color, $fallbacks);
|
|
66
69
|
}
|
|
70
|
+
}
|
|
67
71
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
}
|
|
72
|
-
}
|
|
72
|
+
.ng-select-control {
|
|
73
|
+
color: token-utils.slot(select-container-text-color, $fallbacks);
|
|
74
|
+
}
|
|
73
75
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
visibility: hidden;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
76
|
+
.ng-select-value-container {
|
|
77
|
+
gap: 4px;
|
|
78
|
+
}
|
|
80
79
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
height: $text-line-height;
|
|
87
|
-
padding: 0 calc(($text-line-height - 16px) / 2);
|
|
88
|
-
border-radius: 9999px;
|
|
89
|
-
font-size: 0.875em;
|
|
90
|
-
background-color: token-utils.slot(select-multiple-value-background-color, $fallbacks);
|
|
91
|
-
border: 1px solid token-utils.slot(select-multiple-value-outline-color, $fallbacks);
|
|
92
|
-
|
|
93
|
-
&.ng-value-disabled {
|
|
94
|
-
opacity: 0.4;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
80
|
+
.ng-select-value {
|
|
81
|
+
.ng-select-disabled & {
|
|
82
|
+
color: token-utils.slot(select-disabled-text-color, $fallbacks);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
97
85
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
86
|
+
.ng-select-input {
|
|
87
|
+
height: $text-line-height;
|
|
88
|
+
color: inherit;
|
|
89
|
+
font: inherit;
|
|
90
|
+
}
|
|
103
91
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
border-radius: 50%;
|
|
109
|
-
text-align: center;
|
|
110
|
-
|
|
111
|
-
&:hover {
|
|
112
|
-
background-color: token-utils.slot(
|
|
113
|
-
select-multiple-value-icon-hover-background-color,
|
|
114
|
-
$fallbacks
|
|
115
|
-
);
|
|
116
|
-
}
|
|
117
|
-
}
|
|
92
|
+
.ng-select-placeholder {
|
|
93
|
+
transition: opacity 200ms;
|
|
94
|
+
opacity: 1;
|
|
95
|
+
color: token-utils.slot(select-placeholder-text-color, $fallbacks);
|
|
118
96
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
97
|
+
.mat-form-field-hide-placeholder & {
|
|
98
|
+
opacity: 0;
|
|
122
99
|
}
|
|
100
|
+
}
|
|
123
101
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
102
|
+
.ng-select-clear,
|
|
103
|
+
.ng-select-arrow {
|
|
104
|
+
display: inline-flex;
|
|
105
|
+
align-items: center;
|
|
106
|
+
line-height: 1;
|
|
107
|
+
transition: color 150ms;
|
|
108
|
+
}
|
|
127
109
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
border-style: solid;
|
|
131
|
-
border-color: $enabled-arrow-color transparent transparent;
|
|
132
|
-
}
|
|
110
|
+
.ng-select-clear {
|
|
111
|
+
color: token-utils.slot(select-clear-icon-color, $fallbacks);
|
|
133
112
|
|
|
134
|
-
|
|
135
|
-
|
|
113
|
+
&:hover {
|
|
114
|
+
color: token-utils.slot(select-clear-icon-hover-color, $fallbacks);
|
|
136
115
|
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.ng-select-arrow {
|
|
119
|
+
color: token-utils.slot(select-enabled-arrow-color, $fallbacks);
|
|
137
120
|
|
|
138
|
-
|
|
139
|
-
|
|
121
|
+
.ng-select-disabled & {
|
|
122
|
+
color: token-utils.slot(select-disabled-arrow-color, $fallbacks);
|
|
140
123
|
}
|
|
141
124
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
border-width: 0 5px 5px;
|
|
145
|
-
border-color: transparent transparent $enabled-arrow-color;
|
|
125
|
+
.ng-select-invalid & {
|
|
126
|
+
color: token-utils.slot(select-invalid-arrow-color, $fallbacks);
|
|
146
127
|
}
|
|
147
128
|
|
|
148
|
-
|
|
149
|
-
|
|
129
|
+
.ng-select-opened & {
|
|
130
|
+
transform: rotate(180deg);
|
|
150
131
|
}
|
|
151
132
|
}
|
|
152
133
|
|
|
153
|
-
.ng-
|
|
134
|
+
.ng-select-panel {
|
|
154
135
|
background-color: token-utils.slot(select-panel-background-color, $fallbacks);
|
|
155
136
|
|
|
156
137
|
&.ng-select-bottom {
|
|
@@ -166,67 +147,67 @@ $fallbacks: m3-select.get-tokens();
|
|
|
166
147
|
border-top-right-radius: token-utils.slot(select-container-shape, $fallbacks);
|
|
167
148
|
box-shadow: token-utils.slot(select-container-elevation-shadow, $fallbacks);
|
|
168
149
|
}
|
|
150
|
+
}
|
|
169
151
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
.ng-dropdown-header {
|
|
176
|
-
border-bottom: 1px solid token-utils.slot(select-panel-divider-color, $fallbacks);
|
|
177
|
-
}
|
|
152
|
+
.ng-select-panel-header,
|
|
153
|
+
.ng-select-panel-footer {
|
|
154
|
+
padding: 14px 16px;
|
|
155
|
+
}
|
|
178
156
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
157
|
+
.ng-select-panel-header {
|
|
158
|
+
border-bottom: 1px solid token-utils.slot(select-panel-divider-color, $fallbacks);
|
|
159
|
+
}
|
|
182
160
|
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
user-select: none;
|
|
187
|
-
cursor: pointer;
|
|
188
|
-
color: token-utils.slot(select-optgroup-label-text-color, $fallbacks);
|
|
161
|
+
.ng-select-panel-footer {
|
|
162
|
+
border-top: 1px solid token-utils.slot(select-panel-divider-color, $fallbacks);
|
|
163
|
+
}
|
|
189
164
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
165
|
+
.ng-select-optgroup {
|
|
166
|
+
padding: 14px 16px;
|
|
167
|
+
font-weight: 500;
|
|
168
|
+
user-select: none;
|
|
169
|
+
cursor: pointer;
|
|
170
|
+
color: token-utils.slot(select-optgroup-label-text-color, $fallbacks);
|
|
193
171
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
172
|
+
&.ng-select-option-disabled {
|
|
173
|
+
cursor: default;
|
|
174
|
+
}
|
|
197
175
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
color: token-utils.slot(select-option-selected-state-text-color, $fallbacks);
|
|
201
|
-
}
|
|
176
|
+
&.ng-select-option-marked {
|
|
177
|
+
background-color: token-utils.slot(select-option-hover-state-background-color, $fallbacks);
|
|
202
178
|
}
|
|
203
179
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
180
|
+
&.ng-select-option-selected {
|
|
181
|
+
background-color: token-utils.slot(select-option-selected-state-background-color, $fallbacks);
|
|
182
|
+
color: token-utils.slot(select-option-selected-state-text-color, $fallbacks);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
208
185
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
186
|
+
.ng-select-option {
|
|
187
|
+
position: relative;
|
|
188
|
+
padding: 14px 16px;
|
|
189
|
+
color: token-utils.slot(select-option-label-text-color, $fallbacks);
|
|
212
190
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
}
|
|
191
|
+
&.ng-select-option-marked {
|
|
192
|
+
background-color: token-utils.slot(select-option-hover-state-background-color, $fallbacks);
|
|
193
|
+
}
|
|
217
194
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
195
|
+
&.ng-select-option-selected {
|
|
196
|
+
background-color: token-utils.slot(select-option-selected-state-background-color, $fallbacks);
|
|
197
|
+
color: token-utils.slot(select-option-selected-state-text-color, $fallbacks);
|
|
198
|
+
}
|
|
221
199
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
}
|
|
200
|
+
&.ng-select-option-disabled {
|
|
201
|
+
color: token-utils.slot(select-option-disabled-state-text-color, $fallbacks);
|
|
225
202
|
}
|
|
226
203
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
margin-inline-end: 6px;
|
|
230
|
-
font-size: 80%;
|
|
204
|
+
&.ng-select-option-child {
|
|
205
|
+
padding-inline-start: 32px;
|
|
231
206
|
}
|
|
232
207
|
}
|
|
208
|
+
|
|
209
|
+
.ng-select-tag-option {
|
|
210
|
+
display: inline-block;
|
|
211
|
+
margin-inline-end: 6px;
|
|
212
|
+
font-size: 80%;
|
|
213
|
+
}
|
|
@@ -48,6 +48,7 @@ declare class MtxCheckboxGroup implements AfterViewInit, OnDestroy, ControlValue
|
|
|
48
48
|
set items(value: any[]);
|
|
49
49
|
private _items;
|
|
50
50
|
private _originalItems;
|
|
51
|
+
private _itemsAreUsed;
|
|
51
52
|
bindLabel: string;
|
|
52
53
|
bindValue: string;
|
|
53
54
|
showSelectAll: boolean;
|
|
@@ -66,6 +67,10 @@ declare class MtxCheckboxGroup implements AfterViewInit, OnDestroy, ControlValue
|
|
|
66
67
|
_onChange: (value: MtxCheckboxGroupOption[]) => void;
|
|
67
68
|
_onTouched: () => void;
|
|
68
69
|
ngAfterViewInit(): void;
|
|
70
|
+
/**
|
|
71
|
+
* Reads projected `<mat-checkbox>` elements and converts them into items.
|
|
72
|
+
*/
|
|
73
|
+
private _setItemsFromContentCheckboxes;
|
|
69
74
|
ngOnDestroy(): void;
|
|
70
75
|
/**
|
|
71
76
|
* Finds and selects and option based on its value.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { AfterViewInit, OnDestroy, EventEmitter, ElementRef, OnChanges, TemplateRef,
|
|
2
|
+
import { AfterViewInit, OnDestroy, EventEmitter, ElementRef, InjectionToken, OnChanges, TemplateRef, AfterContentInit, SimpleChanges } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import * as i2 from '@angular/cdk/overlay';
|
|
5
5
|
import { ScrollStrategy } from '@angular/cdk/overlay';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { AfterContentInit, OnDestroy, OnChanges, EventEmitter, SimpleChanges, ElementRef, AfterViewChecked,
|
|
2
|
+
import { AfterContentInit, OnDestroy, OnChanges, EventEmitter, SimpleChanges, ElementRef, AfterViewChecked, InjectionToken, AfterViewInit, TemplateRef } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import * as i2 from '@angular/cdk/overlay';
|
|
5
5
|
import { ScrollStrategy } from '@angular/cdk/overlay';
|
package/types/mtxGrid.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, NgZone, Type, Injector, ViewContainerRef, ChangeDetectorRef, TemplateRef, EventEmitter, OnChanges, AfterViewInit, OnDestroy, QueryList, TrackByFunction, KeyValueChangeRecord, SimpleChanges,
|
|
2
|
+
import { ElementRef, NgZone, Type, Injector, ViewContainerRef, ChangeDetectorRef, TemplateRef, EventEmitter, InjectionToken, OnChanges, AfterViewInit, OnDestroy, QueryList, TrackByFunction, KeyValueChangeRecord, SimpleChanges, OnInit, DoCheck, PipeTransform, Provider } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import * as i2$1 from '@angular/forms';
|
|
5
5
|
import * as i3 from '@angular/material/table';
|
package/types/mtxPopover.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnDestroy, TemplateRef,
|
|
2
|
+
import { InjectionToken, OnDestroy, TemplateRef, EventEmitter, OnInit, ElementRef, AfterContentInit } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import * as i2 from '@angular/cdk/overlay';
|
|
5
5
|
import { ScrollStrategy } from '@angular/cdk/overlay';
|
|
@@ -20,12 +20,11 @@ declare abstract class _MtxPopoverContentBase implements OnDestroy {
|
|
|
20
20
|
private _injector;
|
|
21
21
|
private _viewContainerRef;
|
|
22
22
|
private _document;
|
|
23
|
-
private _changeDetectorRef
|
|
23
|
+
private _changeDetectorRef;
|
|
24
24
|
private _portal;
|
|
25
25
|
private _outlet;
|
|
26
26
|
/** Emits when the popover content has been attached. */
|
|
27
27
|
readonly _attached: Subject<void>;
|
|
28
|
-
constructor(_template: TemplateRef<any>, _appRef: ApplicationRef, _injector: Injector, _viewContainerRef: ViewContainerRef, _document: any, _changeDetectorRef?: ChangeDetectorRef | undefined);
|
|
29
28
|
/**
|
|
30
29
|
* Attaches the content with a particular context.
|
|
31
30
|
* @docs-private
|
package/types/mtxSelect.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnChanges, AfterViewChecked, OnDestroy, ElementRef, SimpleChanges, DoCheck, AfterViewInit, ChangeDetectorRef, QueryList, TemplateRef, EventEmitter
|
|
2
|
+
import { OnChanges, AfterViewChecked, OnDestroy, ElementRef, SimpleChanges, InjectionToken, DoCheck, AfterViewInit, ChangeDetectorRef, QueryList, TemplateRef, EventEmitter } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import * as i2 from '@angular/forms';
|
|
5
5
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
6
6
|
import * as i3 from '@ng-matero/ng-select';
|
|
7
|
-
import { NgSelect, SearchEvent, ScrollEvent, AddTagFn, CompareWithFn,
|
|
7
|
+
import { NgSelect, SearchEvent, ScrollEvent, AddTagFn, CompareWithFn, PanelPosition, GroupValueFn, SearchFn, TrackByFn } from '@ng-matero/ng-select';
|
|
8
8
|
import { FocusMonitor } from '@angular/cdk/a11y';
|
|
9
9
|
import { ErrorStateMatcher } from '@angular/material/core';
|
|
10
10
|
import { MatFormFieldControl, MatFormField } from '@angular/material/form-field';
|
|
@@ -65,6 +65,7 @@ interface MtxSelectDefaultOptions {
|
|
|
65
65
|
virtualScroll?: boolean;
|
|
66
66
|
fixedPlaceholder?: boolean;
|
|
67
67
|
deselectOnClick?: boolean;
|
|
68
|
+
usePopover?: boolean;
|
|
68
69
|
}
|
|
69
70
|
/** Injection token that can be used to specify default select options. */
|
|
70
71
|
declare const MTX_SELECT_DEFAULT_OPTIONS: InjectionToken<MtxSelectDefaultOptions>;
|
|
@@ -82,13 +83,13 @@ declare class MtxSelect implements OnDestroy, DoCheck, AfterViewInit, ControlVal
|
|
|
82
83
|
optgroupTemplate?: TemplateRef<any>;
|
|
83
84
|
labelTemplate?: TemplateRef<any>;
|
|
84
85
|
multiLabelTemplate?: TemplateRef<any>;
|
|
85
|
-
|
|
86
|
-
|
|
86
|
+
panelHeaderTemplate?: TemplateRef<any>;
|
|
87
|
+
panelFooterTemplate?: TemplateRef<any>;
|
|
87
88
|
notFoundTemplate?: TemplateRef<any>;
|
|
88
89
|
typeToSearchTemplate?: TemplateRef<any>;
|
|
89
90
|
loadingTextTemplate?: TemplateRef<any>;
|
|
90
91
|
tagTemplate?: TemplateRef<any>;
|
|
91
|
-
|
|
92
|
+
loadingTemplate?: TemplateRef<any>;
|
|
92
93
|
placeholderTemplate?: TemplateRef<any>;
|
|
93
94
|
clearbuttonTemplate?: TemplateRef<any>;
|
|
94
95
|
blurEvent: EventEmitter<any>;
|
|
@@ -102,9 +103,10 @@ declare class MtxSelect implements OnDestroy, DoCheck, AfterViewInit, ControlVal
|
|
|
102
103
|
removeEvent: EventEmitter<any>;
|
|
103
104
|
scroll: EventEmitter<ScrollEvent>;
|
|
104
105
|
scrollToEnd: EventEmitter<any>;
|
|
106
|
+
usePopover: boolean;
|
|
105
107
|
addTag: boolean | AddTagFn;
|
|
106
108
|
addTagText?: string;
|
|
107
|
-
appendTo: string;
|
|
109
|
+
appendTo: string | undefined;
|
|
108
110
|
bindLabel: string | undefined;
|
|
109
111
|
bindValue: string | undefined;
|
|
110
112
|
closeOnSelect: boolean;
|
|
@@ -112,7 +114,7 @@ declare class MtxSelect implements OnDestroy, DoCheck, AfterViewInit, ControlVal
|
|
|
112
114
|
clearAllText?: string;
|
|
113
115
|
clearOnBackspace: boolean;
|
|
114
116
|
compareWith: CompareWithFn;
|
|
115
|
-
panelPosition:
|
|
117
|
+
panelPosition: PanelPosition;
|
|
116
118
|
groupBy?: string | ((value: any) => any);
|
|
117
119
|
groupValue?: GroupValueFn;
|
|
118
120
|
bufferAmount: number;
|
|
@@ -268,7 +270,8 @@ declare class MtxSelect implements OnDestroy, DoCheck, AfterViewInit, ControlVal
|
|
|
268
270
|
focus(): void;
|
|
269
271
|
blur(): void;
|
|
270
272
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelect, never>;
|
|
271
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtxSelect, "mtx-select", ["mtxSelect"], { "addTag": { "alias": "addTag"; "required": false; }; "addTagText": { "alias": "addTagText"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "clearAllText": { "alias": "clearAllText"; "required": false; }; "clearOnBackspace": { "alias": "clearOnBackspace"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "panelPosition": { "alias": "panelPosition"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "groupValue": { "alias": "groupValue"; "required": false; }; "bufferAmount": { "alias": "bufferAmount"; "required": false; }; "selectableGroup": { "alias": "selectableGroup"; "required": false; }; "selectableGroupAsModel": { "alias": "selectableGroupAsModel"; "required": false; }; "hideSelected": { "alias": "hideSelected"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "markFirst": { "alias": "markFirst"; "required": false; }; "maxSelectedItems": { "alias": "maxSelectedItems"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "searchWhileComposing": { "alias": "searchWhileComposing"; "required": false; }; "selectOnTab": { "alias": "selectOnTab"; "required": false; }; "trackByFn": { "alias": "trackByFn"; "required": false; }; "openOnEnter": { "alias": "openOnEnter"; "required": false; }; "minTermLength": { "alias": "minTermLength"; "required": false; }; "editableSearchTerm": { "alias": "editableSearchTerm"; "required": false; }; "keyDownFn": { "alias": "keyDownFn"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "typeToSearchText": { "alias": "typeToSearchText"; "required": false; }; "typeahead": { "alias": "typeahead"; "required": false; }; "panelDisabled": { "alias": "panelDisabled"; "required": false; }; "fixedPlaceholder": { "alias": "fixedPlaceholder"; "required": false; }; "preventToggleOnRightClick": { "alias": "preventToggleOnRightClick"; "required": false; }; "clearSearchOnAdd": { "alias": "clearSearchOnAdd"; "required": false; }; "deselectOnClick": { "alias": "deselectOnClick"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputAttrs": { "alias": "inputAttrs"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "items": { "alias": "items"; "required": false; }; "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; }; }, { "blurEvent": "blur"; "focusEvent": "focus"; "changeEvent": "change"; "openEvent": "open"; "closeEvent": "close"; "searchEvent": "search"; "clearEvent": "clear"; "addEvent": "add"; "removeEvent": "remove"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; }, ["optionTemplate", "optgroupTemplate", "labelTemplate", "multiLabelTemplate", "
|
|
273
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxSelect, "mtx-select", ["mtxSelect"], { "usePopover": { "alias": "usePopover"; "required": false; }; "addTag": { "alias": "addTag"; "required": false; }; "addTagText": { "alias": "addTagText"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "clearAllText": { "alias": "clearAllText"; "required": false; }; "clearOnBackspace": { "alias": "clearOnBackspace"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "panelPosition": { "alias": "panelPosition"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "groupValue": { "alias": "groupValue"; "required": false; }; "bufferAmount": { "alias": "bufferAmount"; "required": false; }; "selectableGroup": { "alias": "selectableGroup"; "required": false; }; "selectableGroupAsModel": { "alias": "selectableGroupAsModel"; "required": false; }; "hideSelected": { "alias": "hideSelected"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "markFirst": { "alias": "markFirst"; "required": false; }; "maxSelectedItems": { "alias": "maxSelectedItems"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "searchWhileComposing": { "alias": "searchWhileComposing"; "required": false; }; "selectOnTab": { "alias": "selectOnTab"; "required": false; }; "trackByFn": { "alias": "trackByFn"; "required": false; }; "openOnEnter": { "alias": "openOnEnter"; "required": false; }; "minTermLength": { "alias": "minTermLength"; "required": false; }; "editableSearchTerm": { "alias": "editableSearchTerm"; "required": false; }; "keyDownFn": { "alias": "keyDownFn"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "typeToSearchText": { "alias": "typeToSearchText"; "required": false; }; "typeahead": { "alias": "typeahead"; "required": false; }; "panelDisabled": { "alias": "panelDisabled"; "required": false; }; "fixedPlaceholder": { "alias": "fixedPlaceholder"; "required": false; }; "preventToggleOnRightClick": { "alias": "preventToggleOnRightClick"; "required": false; }; "clearSearchOnAdd": { "alias": "clearSearchOnAdd"; "required": false; }; "deselectOnClick": { "alias": "deselectOnClick"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputAttrs": { "alias": "inputAttrs"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "items": { "alias": "items"; "required": false; }; "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; }; }, { "blurEvent": "blur"; "focusEvent": "focus"; "changeEvent": "change"; "openEvent": "open"; "closeEvent": "close"; "searchEvent": "search"; "clearEvent": "clear"; "addEvent": "add"; "removeEvent": "remove"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; }, ["optionTemplate", "optgroupTemplate", "labelTemplate", "multiLabelTemplate", "panelHeaderTemplate", "panelFooterTemplate", "notFoundTemplate", "typeToSearchTemplate", "loadingTextTemplate", "tagTemplate", "loadingTemplate", "placeholderTemplate", "clearbuttonTemplate", "mtxOptions"], never, true, never>;
|
|
274
|
+
static ngAcceptInputType_usePopover: unknown;
|
|
272
275
|
static ngAcceptInputType_closeOnSelect: unknown;
|
|
273
276
|
static ngAcceptInputType_clearable: unknown;
|
|
274
277
|
static ngAcceptInputType_clearOnBackspace: unknown;
|
|
@@ -297,74 +300,74 @@ declare class MtxSelect implements OnDestroy, DoCheck, AfterViewInit, ControlVal
|
|
|
297
300
|
declare class MtxSelectOptionTemplate {
|
|
298
301
|
template: TemplateRef<any>;
|
|
299
302
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectOptionTemplate, never>;
|
|
300
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectOptionTemplate, "[
|
|
303
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectOptionTemplate, "[ngSelectOption]", never, {}, {}, never, never, true, never>;
|
|
301
304
|
}
|
|
302
305
|
declare class MtxSelectOptgroupTemplate {
|
|
303
306
|
template: TemplateRef<any>;
|
|
304
307
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectOptgroupTemplate, never>;
|
|
305
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectOptgroupTemplate, "[
|
|
308
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectOptgroupTemplate, "[ngSelectOptgroup]", never, {}, {}, never, never, true, never>;
|
|
306
309
|
}
|
|
307
310
|
declare class MtxSelectLabelTemplate {
|
|
308
311
|
template: TemplateRef<any>;
|
|
309
312
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectLabelTemplate, never>;
|
|
310
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLabelTemplate, "[
|
|
313
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLabelTemplate, "[ngSelectLabel]", never, {}, {}, never, never, true, never>;
|
|
311
314
|
}
|
|
312
315
|
declare class MtxSelectMultiLabelTemplate {
|
|
313
316
|
template: TemplateRef<any>;
|
|
314
317
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectMultiLabelTemplate, never>;
|
|
315
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectMultiLabelTemplate, "[
|
|
318
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectMultiLabelTemplate, "[ngSelectMultiLabel]", never, {}, {}, never, never, true, never>;
|
|
316
319
|
}
|
|
317
|
-
declare class
|
|
320
|
+
declare class MtxSelectPanelHeaderTemplate {
|
|
318
321
|
template: TemplateRef<any>;
|
|
319
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
320
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
322
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectPanelHeaderTemplate, never>;
|
|
323
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectPanelHeaderTemplate, "[ngSelectPanelHeader]", never, {}, {}, never, never, true, never>;
|
|
321
324
|
}
|
|
322
|
-
declare class
|
|
325
|
+
declare class MtxSelectPanelFooterTemplate {
|
|
323
326
|
template: TemplateRef<any>;
|
|
324
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
325
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
327
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectPanelFooterTemplate, never>;
|
|
328
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectPanelFooterTemplate, "[ngSelectPanelFooter]", never, {}, {}, never, never, true, never>;
|
|
326
329
|
}
|
|
327
330
|
declare class MtxSelectNotFoundTemplate {
|
|
328
331
|
template: TemplateRef<any>;
|
|
329
332
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectNotFoundTemplate, never>;
|
|
330
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectNotFoundTemplate, "[
|
|
333
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectNotFoundTemplate, "[ngSelectNotFound]", never, {}, {}, never, never, true, never>;
|
|
331
334
|
}
|
|
332
335
|
declare class MtxSelectTypeToSearchTemplate {
|
|
333
336
|
template: TemplateRef<any>;
|
|
334
337
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectTypeToSearchTemplate, never>;
|
|
335
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectTypeToSearchTemplate, "[
|
|
338
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectTypeToSearchTemplate, "[ngSelectTypeToSearch]", never, {}, {}, never, never, true, never>;
|
|
336
339
|
}
|
|
337
340
|
declare class MtxSelectLoadingTextTemplate {
|
|
338
341
|
template: TemplateRef<any>;
|
|
339
342
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectLoadingTextTemplate, never>;
|
|
340
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLoadingTextTemplate, "[
|
|
343
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLoadingTextTemplate, "[ngSelectLoadingText]", never, {}, {}, never, never, true, never>;
|
|
341
344
|
}
|
|
342
345
|
declare class MtxSelectTagTemplate {
|
|
343
346
|
template: TemplateRef<any>;
|
|
344
347
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectTagTemplate, never>;
|
|
345
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectTagTemplate, "[
|
|
348
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectTagTemplate, "[ngSelectTag]", never, {}, {}, never, never, true, never>;
|
|
346
349
|
}
|
|
347
|
-
declare class
|
|
350
|
+
declare class MtxSelectLoadingTemplate {
|
|
348
351
|
template: TemplateRef<any>;
|
|
349
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
350
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
352
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectLoadingTemplate, never>;
|
|
353
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLoadingTemplate, "[ngSelectLoading]", never, {}, {}, never, never, true, never>;
|
|
351
354
|
}
|
|
352
355
|
declare class MtxSelectPlaceholderTemplate {
|
|
353
356
|
template: TemplateRef<any>;
|
|
354
357
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectPlaceholderTemplate, never>;
|
|
355
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectPlaceholderTemplate, "[
|
|
358
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectPlaceholderTemplate, "[ngSelectPlaceholder]", never, {}, {}, never, never, true, never>;
|
|
356
359
|
}
|
|
357
360
|
declare class MtxSelectClearbuttonTemplate {
|
|
358
361
|
template: TemplateRef<any>;
|
|
359
362
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectClearbuttonTemplate, never>;
|
|
360
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectClearbuttonTemplate, "[
|
|
363
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectClearbuttonTemplate, "[ngSelectClearButton]", never, {}, {}, never, never, true, never>;
|
|
361
364
|
}
|
|
362
365
|
|
|
363
366
|
declare class MtxSelectModule {
|
|
364
367
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectModule, never>;
|
|
365
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxSelectModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.NgSelectModule, typeof MtxSelect, typeof MtxOption, typeof MtxSelectOptgroupTemplate, typeof MtxSelectOptionTemplate, typeof MtxSelectLabelTemplate, typeof MtxSelectMultiLabelTemplate, typeof
|
|
368
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxSelectModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.NgSelectModule, typeof MtxSelect, typeof MtxOption, typeof MtxSelectOptgroupTemplate, typeof MtxSelectOptionTemplate, typeof MtxSelectLabelTemplate, typeof MtxSelectMultiLabelTemplate, typeof MtxSelectPanelHeaderTemplate, typeof MtxSelectPanelFooterTemplate, typeof MtxSelectNotFoundTemplate, typeof MtxSelectTypeToSearchTemplate, typeof MtxSelectLoadingTextTemplate, typeof MtxSelectTagTemplate, typeof MtxSelectLoadingTemplate, typeof MtxSelectPlaceholderTemplate, typeof MtxSelectClearbuttonTemplate], [typeof MtxSelect, typeof MtxOption, typeof MtxSelectOptgroupTemplate, typeof MtxSelectOptionTemplate, typeof MtxSelectLabelTemplate, typeof MtxSelectMultiLabelTemplate, typeof MtxSelectPanelHeaderTemplate, typeof MtxSelectPanelFooterTemplate, typeof MtxSelectNotFoundTemplate, typeof MtxSelectTypeToSearchTemplate, typeof MtxSelectLoadingTextTemplate, typeof MtxSelectTagTemplate, typeof MtxSelectLoadingTemplate, typeof MtxSelectPlaceholderTemplate, typeof MtxSelectClearbuttonTemplate]>;
|
|
366
369
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtxSelectModule>;
|
|
367
370
|
}
|
|
368
371
|
|
|
369
|
-
export { MTX_SELECT_DEFAULT_OPTIONS, MtxOption, MtxSelect, MtxSelectClearbuttonTemplate,
|
|
372
|
+
export { MTX_SELECT_DEFAULT_OPTIONS, MtxOption, MtxSelect, MtxSelectClearbuttonTemplate, MtxSelectIntl, MtxSelectLabelTemplate, MtxSelectLoadingTemplate, MtxSelectLoadingTextTemplate, MtxSelectModule, MtxSelectMultiLabelTemplate, MtxSelectNotFoundTemplate, MtxSelectOptgroupTemplate, MtxSelectOptionTemplate, MtxSelectPanelFooterTemplate, MtxSelectPanelHeaderTemplate, MtxSelectPlaceholderTemplate, MtxSelectTagTemplate, MtxSelectTypeToSearchTemplate };
|
|
370
373
|
export type { MtxSelectDefaultOptions };
|
package/types/mtxSplit.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ThemePalette } from '@angular/material/core';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { OnInit, OnDestroy, ElementRef, AfterViewInit, EventEmitter
|
|
3
|
+
import { OnInit, OnDestroy, ElementRef, InjectionToken, AfterViewInit, EventEmitter } from '@angular/core';
|
|
4
4
|
import * as i1 from '@angular/common';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
6
6
|
|
package/types/mtxTooltip.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnDestroy, AfterViewInit, ElementRef, TemplateRef
|
|
2
|
+
import { InjectionToken, OnDestroy, AfterViewInit, ElementRef, TemplateRef } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/cdk/a11y';
|
|
4
4
|
import * as i2 from '@angular/cdk/overlay';
|
|
5
|
-
import { OverlayRef, ConnectedPosition, OriginConnectionPosition, OverlayConnectionPosition
|
|
5
|
+
import { ScrollStrategy, OverlayRef, ConnectedPosition, OriginConnectionPosition, OverlayConnectionPosition } from '@angular/cdk/overlay';
|
|
6
6
|
import * as i3 from '@ng-matero/extensions/core';
|
|
7
7
|
import * as i5 from '@angular/cdk/bidi';
|
|
8
8
|
import { Directionality } from '@angular/cdk/bidi';
|