@stackline/angular-multiselect-dropdown 2.0.5 → 4.0.1

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.
@@ -1,113 +0,0 @@
1
-
2
- $base-color: #000000;
3
- $btn-background: #fff;
4
- $btn-border: #ccc;
5
- $btn-text-color: #333;
6
- $btn-arrow: #333;
7
-
8
-
9
- $token-background: $base-color;
10
- $token-text-color: #fff;
11
- $token-remove-color: #fff;
12
-
13
- $box-shadow-color: #959595;
14
- $list-hover-background: #f5f5f5;
15
- $label-color: #000;
16
- $selected-background: #e9f4ff;
17
-
18
- .c-btn{
19
- background: $btn-background;
20
- border: 1px solid $btn-border;
21
- color: $btn-text-color;
22
- }
23
- .selected-list{
24
- .c-list{
25
- .c-token{
26
- background: $token-background;
27
- .c-label{
28
- color: $token-text-color;
29
- }
30
- .c-remove {
31
- svg {
32
- fill: $token-remove-color;
33
- }
34
- }
35
-
36
- }
37
- }
38
- .c-angle-down, .c-angle-up{
39
- svg {
40
- fill: $btn-arrow;
41
- }
42
- }
43
- }
44
- .dropdown-list{
45
- ul{
46
- li:hover{
47
- background: $list-hover-background;
48
- }
49
- }
50
- }
51
- .arrow-up, .arrow-down {
52
- border-bottom: 15px solid #fff;
53
- }
54
-
55
- .arrow-2{
56
- border-bottom: 15px solid #ccc;
57
- }
58
- .list-area{
59
- border: 1px solid #ccc;
60
- background: #fff;
61
- box-shadow: 0px 1px 5px $box-shadow-color;
62
- }
63
- .select-all{
64
- border-bottom: 1px solid #ccc;
65
- }
66
- .list-filter{
67
- border-bottom: 1px solid #ccc;
68
- .c-search{
69
- svg {
70
- fill: #888;
71
- }
72
- }
73
- .c-clear {
74
- svg {
75
- fill: #888;
76
- }
77
- }
78
- }
79
-
80
- .pure-checkbox {
81
- input[type="checkbox"]:focus + label:before, input[type="checkbox"]:hover + label:before{
82
- border-color: $base-color;
83
- background-color: #f2f2f2;
84
- }
85
- input[type="checkbox"] + label{
86
- color: $label-color;
87
- }
88
- input[type="checkbox"] + label:before{
89
- color: $base-color;
90
- border: 2px solid $base-color;
91
- }
92
- input[type="checkbox"] + label:after{
93
- background-color: $base-color;
94
- }
95
- input[type="checkbox"]:disabled + label:before{
96
- border-color: #cccccc;
97
- }
98
- input[type="checkbox"]:disabled:checked + label:before{
99
- background-color: #cccccc;
100
- }
101
- input[type="checkbox"] + label:after{
102
- border-color: #ffffff;
103
- }
104
- input[type="radio"]:checked + label:before{
105
- background-color: white;
106
- }
107
- input[type="checkbox"]:checked + label:before{
108
- background: $base-color;
109
- }
110
- }
111
- .selected-item{
112
- background: $selected-background;
113
- }
@@ -1,431 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { PipeTransform, TemplateRef, OnInit, OnDestroy, ViewContainerRef, EmbeddedViewRef, ElementRef, EventEmitter, OnChanges, Renderer2, NgZone, ChangeDetectorRef, AfterViewChecked, SimpleChanges } from '@angular/core';
3
- import * as i5 from '@angular/forms';
4
- import { ControlValueAccessor, Validator, UntypedFormControl } from '@angular/forms';
5
- import { Observable, Subject, Subscription } from 'rxjs';
6
- import * as i1 from '@angular/common';
7
-
8
- interface DropdownSettings {
9
- singleSelection?: boolean;
10
- text?: string;
11
- enableCheckAll?: boolean;
12
- selectAllText?: string;
13
- unSelectAllText?: string;
14
- filterSelectAllText?: string;
15
- filterUnSelectAllText?: string;
16
- enableFilterSelectAll?: boolean;
17
- enableSearchFilter?: boolean;
18
- searchBy?: string[];
19
- maxHeight?: number;
20
- badgeShowLimit?: number;
21
- classes?: string;
22
- limitSelection?: number;
23
- disabled?: boolean;
24
- searchPlaceholderText?: string;
25
- groupBy?: string;
26
- showCheckbox?: boolean;
27
- noDataLabel?: string;
28
- searchAutofocus?: boolean;
29
- lazyLoading?: boolean;
30
- labelKey?: string;
31
- primaryKey?: string;
32
- position?: string;
33
- loading?: boolean;
34
- selectGroup?: boolean;
35
- addNewItemOnFilter?: boolean;
36
- addNewButtonText?: string;
37
- escapeToClose?: boolean;
38
- autoPosition?: boolean;
39
- clearAll?: boolean;
40
- tagToBody?: boolean;
41
- }
42
-
43
- declare class DataService {
44
- filteredData: any;
45
- private subject;
46
- setData(data: any): void;
47
- getData(): Observable<any>;
48
- getFilteredData(): any;
49
- static ɵfac: i0.ɵɵFactoryDeclaration<DataService, never>;
50
- static ɵprov: i0.ɵɵInjectableDeclaration<DataService>;
51
- }
52
-
53
- declare class ListFilterPipe implements PipeTransform {
54
- private ds;
55
- filteredList: any;
56
- constructor(ds: DataService);
57
- transform(items: any[], filter: any, searchBy: any): any[];
58
- applyFilter(item: any, filter: any, searchBy: any): boolean;
59
- static ɵfac: i0.ɵɵFactoryDeclaration<ListFilterPipe, never>;
60
- static ɵpipe: i0.ɵɵPipeDeclaration<ListFilterPipe, "listFilter", false>;
61
- }
62
-
63
- declare class Item {
64
- template: TemplateRef<any>;
65
- constructor();
66
- static ɵfac: i0.ɵɵFactoryDeclaration<Item, never>;
67
- static ɵcmp: i0.ɵɵComponentDeclaration<Item, "c-item", never, {}, {}, ["template"], never, false, never>;
68
- }
69
- declare class Badge {
70
- template: TemplateRef<any>;
71
- constructor();
72
- static ɵfac: i0.ɵɵFactoryDeclaration<Badge, never>;
73
- static ɵcmp: i0.ɵɵComponentDeclaration<Badge, "c-badge", never, {}, {}, ["template"], never, false, never>;
74
- }
75
- declare class Search {
76
- template: TemplateRef<any>;
77
- constructor();
78
- static ɵfac: i0.ɵɵFactoryDeclaration<Search, never>;
79
- static ɵcmp: i0.ɵɵComponentDeclaration<Search, "c-search", never, {}, {}, ["template"], never, false, never>;
80
- }
81
- declare class TemplateRenderer implements OnInit, OnDestroy {
82
- viewContainer: ViewContainerRef;
83
- data: any;
84
- item: any;
85
- view: EmbeddedViewRef<any>;
86
- constructor(viewContainer: ViewContainerRef);
87
- ngOnInit(): void;
88
- ngOnDestroy(): void;
89
- static ɵfac: i0.ɵɵFactoryDeclaration<TemplateRenderer, never>;
90
- static ɵcmp: i0.ɵɵComponentDeclaration<TemplateRenderer, "c-templateRenderer", never, { "data": { "alias": "data"; "required": false; }; "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
91
- }
92
- declare class CIcon {
93
- name: any;
94
- static ɵfac: i0.ɵɵFactoryDeclaration<CIcon, never>;
95
- static ɵcmp: i0.ɵɵComponentDeclaration<CIcon, "c-icon", never, { "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
96
- }
97
-
98
- declare class ClickOutsideDirective {
99
- private _elementRef;
100
- constructor(_elementRef: ElementRef);
101
- clickOutside: EventEmitter<Event>;
102
- onClick(event: Event, targetElement: EventTarget | null): void;
103
- static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
104
- static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, {}, { "clickOutside": "clickOutside"; }, never, never, false, never>;
105
- }
106
- declare class ScrollDirective {
107
- private _elementRef;
108
- constructor(_elementRef: ElementRef);
109
- scroll: EventEmitter<Event>;
110
- onClick(event: Event): void;
111
- static ɵfac: i0.ɵɵFactoryDeclaration<ScrollDirective, never>;
112
- static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollDirective, "[scroll]", never, {}, { "scroll": "scroll"; }, never, never, false, never>;
113
- }
114
- declare class styleDirective {
115
- private el;
116
- constructor(el: ElementRef);
117
- styleVal: number;
118
- ngOnInit(): void;
119
- ngOnChanges(): void;
120
- static ɵfac: i0.ɵɵFactoryDeclaration<styleDirective, never>;
121
- static ɵdir: i0.ɵɵDirectiveDeclaration<styleDirective, "[styleProp]", never, { "styleVal": { "alias": "styleProp"; "required": false; }; }, {}, never, never, false, never>;
122
- }
123
- declare class setPosition implements OnInit, OnChanges {
124
- el: ElementRef;
125
- height: number;
126
- constructor(el: ElementRef);
127
- ngOnInit(): void;
128
- ngOnChanges(): void;
129
- static ɵfac: i0.ɵɵFactoryDeclaration<setPosition, never>;
130
- static ɵdir: i0.ɵɵDirectiveDeclaration<setPosition, "[setPosition]", never, { "height": { "alias": "setPosition"; "required": false; }; }, {}, never, never, false, never>;
131
- }
132
-
133
- interface VirtualScrollerDefaultOptions {
134
- scrollThrottlingTime: number;
135
- scrollDebounceTime: number;
136
- scrollAnimationTime: number;
137
- scrollbarWidth?: number;
138
- scrollbarHeight?: number;
139
- checkResizeInterval: number;
140
- resizeBypassRefreshThreshold: number;
141
- modifyOverflowStyleOfParentScroll: boolean;
142
- stripedTable: boolean;
143
- }
144
-
145
- interface IPageInfo {
146
- startIndex: number;
147
- endIndex: number;
148
- scrollStartPosition: number;
149
- scrollEndPosition: number;
150
- startIndexWithBuffer: number;
151
- endIndexWithBuffer: number;
152
- maxScrollPosition: number;
153
- }
154
-
155
- interface IViewport extends IPageInfo {
156
- padding: number;
157
- scrollLength: number;
158
- }
159
-
160
- interface WrapGroupDimension {
161
- childWidth: number;
162
- childHeight: number;
163
- items: any[];
164
- }
165
-
166
- interface WrapGroupDimensions {
167
- numberOfKnownWrapGroupChildSizes: number;
168
- sumOfKnownWrapGroupChildWidths: number;
169
- sumOfKnownWrapGroupChildHeights: number;
170
- maxChildSizePerWrapGroup: WrapGroupDimension[];
171
- }
172
-
173
- interface IDimensions {
174
- itemCount: number;
175
- itemsPerWrapGroup: number;
176
- wrapGroupsPerPage: number;
177
- itemsPerPage: number;
178
- pageCount_fractional: number;
179
- childWidth: number;
180
- childHeight: number;
181
- scrollLength: number;
182
- viewportLength: number;
183
- maxScrollPosition: number;
184
- }
185
-
186
- declare class VirtualScrollerComponent implements OnInit, OnChanges, OnDestroy {
187
- protected readonly element: ElementRef;
188
- protected readonly renderer: Renderer2;
189
- protected readonly zone: NgZone;
190
- protected changeDetectorRef: ChangeDetectorRef;
191
- viewPortItems: any[];
192
- window: Window & typeof globalThis;
193
- get viewPortInfo(): IPageInfo;
194
- executeRefreshOutsideAngularZone: boolean;
195
- protected _enableUnequalChildrenSizes: boolean;
196
- get enableUnequalChildrenSizes(): boolean;
197
- set enableUnequalChildrenSizes(value: boolean);
198
- useMarginInsteadOfTranslate: boolean;
199
- modifyOverflowStyleOfParentScroll: boolean;
200
- stripedTable: boolean;
201
- scrollbarWidth: number;
202
- scrollbarHeight: number;
203
- childWidth: number;
204
- childHeight: number;
205
- ssrChildWidth: number;
206
- ssrChildHeight: number;
207
- ssrViewportWidth: number;
208
- ssrViewportHeight: number;
209
- protected _bufferAmount: number;
210
- get bufferAmount(): number;
211
- set bufferAmount(value: number);
212
- scrollAnimationTime: number;
213
- resizeBypassRefreshThreshold: number;
214
- protected _scrollThrottlingTime: number;
215
- get scrollThrottlingTime(): number;
216
- set scrollThrottlingTime(value: number);
217
- protected _scrollDebounceTime: number;
218
- get scrollDebounceTime(): number;
219
- set scrollDebounceTime(value: number);
220
- protected onScroll: () => void;
221
- protected updateOnScrollFunction(): void;
222
- protected checkScrollElementResizedTimer: number;
223
- protected _checkResizeInterval: number;
224
- get checkResizeInterval(): number;
225
- set checkResizeInterval(value: number);
226
- protected _items: any[];
227
- get items(): any[];
228
- set items(value: any[]);
229
- compareItems: (item1: any, item2: any) => boolean;
230
- protected _horizontal: boolean;
231
- get horizontal(): boolean;
232
- set horizontal(value: boolean);
233
- protected revertParentOverscroll(): void;
234
- protected oldParentScrollOverflow: {
235
- x: string;
236
- y: string;
237
- };
238
- protected _parentScroll: Element | Window;
239
- get parentScroll(): Element | Window;
240
- set parentScroll(value: Element | Window);
241
- vsUpdate: EventEmitter<any[]>;
242
- vsChange: EventEmitter<IPageInfo>;
243
- vsStart: EventEmitter<IPageInfo>;
244
- vsEnd: EventEmitter<IPageInfo>;
245
- protected contentElementRef: ElementRef;
246
- protected invisiblePaddingElementRef: ElementRef;
247
- protected headerElementRef: ElementRef;
248
- protected containerElementRef: ElementRef;
249
- ngOnInit(): void;
250
- ngOnDestroy(): void;
251
- ngOnChanges(changes: any): void;
252
- ngDoCheck(): void;
253
- refresh(): void;
254
- invalidateAllCachedMeasurements(): void;
255
- invalidateCachedMeasurementForItem(item: any): void;
256
- invalidateCachedMeasurementAtIndex(index: number): void;
257
- scrollInto(item: any, alignToBeginning?: boolean, additionalOffset?: number, animationMilliseconds?: number, animationCompletedCallback?: () => void): void;
258
- scrollToIndex(index: number, alignToBeginning?: boolean, additionalOffset?: number, animationMilliseconds?: number, animationCompletedCallback?: () => void): void;
259
- protected scrollToIndex_internal(index: number, alignToBeginning?: boolean, additionalOffset?: number, animationMilliseconds?: number, animationCompletedCallback?: () => void): void;
260
- scrollToPosition(scrollPosition: number, animationMilliseconds?: number, animationCompletedCallback?: () => void): void;
261
- protected isAngularUniversalSSR: boolean;
262
- constructor(element: ElementRef, renderer: Renderer2, zone: NgZone, changeDetectorRef: ChangeDetectorRef, platformId: Object, options: VirtualScrollerDefaultOptions);
263
- protected getElementSize(element: HTMLElement): ClientRect;
264
- protected previousScrollBoundingRect: ClientRect;
265
- protected checkScrollElementResized(): void;
266
- protected _invisiblePaddingProperty: any;
267
- protected _offsetType: any;
268
- protected _scrollType: any;
269
- protected _pageOffsetType: any;
270
- protected _childScrollDim: any;
271
- protected _translateDir: any;
272
- protected _marginDir: any;
273
- protected updateDirection(): void;
274
- protected debounce(func: Function, wait: number): Function;
275
- protected throttleTrailing(func: Function, wait: number): Function;
276
- protected calculatedScrollbarWidth: number;
277
- protected calculatedScrollbarHeight: number;
278
- protected padding: number;
279
- protected previousViewPort: IViewport;
280
- protected currentTween: any;
281
- protected cachedItemsLength: number;
282
- protected disposeScrollHandler: () => void | undefined;
283
- protected disposeResizeHandler: () => void | undefined;
284
- protected refresh_internal(itemsArrayModified: boolean, refreshCompletedCallback?: () => void, maxRunTimes?: number): void;
285
- protected getScrollElement(): HTMLElement;
286
- protected addScrollEventHandlers(): void;
287
- protected removeScrollEventHandlers(): void;
288
- protected getElementsOffset(): number;
289
- protected countItemsPerWrapGroup(): number;
290
- protected getScrollStartPosition(): number;
291
- protected minMeasuredChildWidth: number;
292
- protected minMeasuredChildHeight: number;
293
- protected wrapGroupDimensions: WrapGroupDimensions;
294
- protected resetWrapGroupDimensions(): void;
295
- protected calculateDimensions(): IDimensions;
296
- protected cachedPageSize: number;
297
- protected previousScrollNumberElements: number;
298
- protected calculatePadding(arrayStartIndexWithBuffer: number, dimensions: IDimensions): number;
299
- protected calculatePageInfo(scrollPosition: number, dimensions: IDimensions): IPageInfo;
300
- protected calculateViewport(): IViewport;
301
- static ɵfac: i0.ɵɵFactoryDeclaration<VirtualScrollerComponent, [null, null, null, null, null, { optional: true; }]>;
302
- static ɵcmp: i0.ɵɵComponentDeclaration<VirtualScrollerComponent, "virtual-scroller,[virtualScroller]", ["virtualScroller"], { "executeRefreshOutsideAngularZone": { "alias": "executeRefreshOutsideAngularZone"; "required": false; }; "enableUnequalChildrenSizes": { "alias": "enableUnequalChildrenSizes"; "required": false; }; "useMarginInsteadOfTranslate": { "alias": "useMarginInsteadOfTranslate"; "required": false; }; "modifyOverflowStyleOfParentScroll": { "alias": "modifyOverflowStyleOfParentScroll"; "required": false; }; "stripedTable": { "alias": "stripedTable"; "required": false; }; "scrollbarWidth": { "alias": "scrollbarWidth"; "required": false; }; "scrollbarHeight": { "alias": "scrollbarHeight"; "required": false; }; "childWidth": { "alias": "childWidth"; "required": false; }; "childHeight": { "alias": "childHeight"; "required": false; }; "ssrChildWidth": { "alias": "ssrChildWidth"; "required": false; }; "ssrChildHeight": { "alias": "ssrChildHeight"; "required": false; }; "ssrViewportWidth": { "alias": "ssrViewportWidth"; "required": false; }; "ssrViewportHeight": { "alias": "ssrViewportHeight"; "required": false; }; "bufferAmount": { "alias": "bufferAmount"; "required": false; }; "scrollAnimationTime": { "alias": "scrollAnimationTime"; "required": false; }; "resizeBypassRefreshThreshold": { "alias": "resizeBypassRefreshThreshold"; "required": false; }; "scrollThrottlingTime": { "alias": "scrollThrottlingTime"; "required": false; }; "scrollDebounceTime": { "alias": "scrollDebounceTime"; "required": false; }; "checkResizeInterval": { "alias": "checkResizeInterval"; "required": false; }; "items": { "alias": "items"; "required": false; }; "compareItems": { "alias": "compareItems"; "required": false; }; "horizontal": { "alias": "horizontal"; "required": false; }; "parentScroll": { "alias": "parentScroll"; "required": false; }; }, { "vsUpdate": "vsUpdate"; "vsChange": "vsChange"; "vsStart": "vsStart"; "vsEnd": "vsEnd"; }, ["headerElementRef", "containerElementRef"], ["*"], false, never>;
303
- }
304
- declare class VirtualScrollerModule {
305
- static ɵfac: i0.ɵɵFactoryDeclaration<VirtualScrollerModule, never>;
306
- static ɵmod: i0.ɵɵNgModuleDeclaration<VirtualScrollerModule, [typeof VirtualScrollerComponent], [typeof i1.CommonModule], [typeof VirtualScrollerComponent]>;
307
- static ɵinj: i0.ɵɵInjectorDeclaration<VirtualScrollerModule>;
308
- }
309
-
310
- declare class AngularMultiSelect implements OnInit, ControlValueAccessor, OnChanges, Validator, AfterViewChecked, OnDestroy {
311
- _elementRef: ElementRef;
312
- private cdr;
313
- private filterPipe;
314
- data: Array<any>;
315
- settings: DropdownSettings;
316
- loading: boolean;
317
- onSelect: EventEmitter<any>;
318
- onDeSelect: EventEmitter<any>;
319
- onSelectAll: EventEmitter<Array<any>>;
320
- onDeSelectAll: EventEmitter<Array<any>>;
321
- onOpen: EventEmitter<any>;
322
- onClose: EventEmitter<any>;
323
- onScrollToEnd: EventEmitter<any>;
324
- onFilterSelectAll: EventEmitter<Array<any>>;
325
- onFilterDeSelectAll: EventEmitter<Array<any>>;
326
- onAddFilterNewItem: EventEmitter<any>;
327
- onGroupSelect: EventEmitter<any>;
328
- onGroupDeSelect: EventEmitter<any>;
329
- itemTempl: Item;
330
- badgeTempl: Badge;
331
- searchTempl: Search;
332
- searchInput: ElementRef;
333
- selectedListElem: ElementRef;
334
- dropdownListElem: ElementRef;
335
- stacklineDropdown: ElementRef;
336
- onEscapeDown(event: Event): void;
337
- onScroll(event: any): void;
338
- virtualdata: any;
339
- searchTerm$: Subject<string>;
340
- selectedItems: Array<any>;
341
- isActive: boolean;
342
- isSelectAll: boolean;
343
- isFilterSelectAll: boolean;
344
- isInfiniteFilterSelectAll: boolean;
345
- groupedData: Array<any>;
346
- filter: any;
347
- chunkArray: any[];
348
- scrollTop: any;
349
- chunkIndex: any[];
350
- cachedItems: any[];
351
- groupCachedItems: any[];
352
- totalRows: any;
353
- itemHeight: any;
354
- screenItemsLen: any;
355
- cachedItemsLen: any;
356
- totalHeight: any;
357
- scroller: any;
358
- maxBuffer: any;
359
- lastScrolled: any;
360
- lastRepaintY: any;
361
- selectedListHeight: any;
362
- filterLength: any;
363
- infiniteFilterLength: any;
364
- viewPortItems: any;
365
- item: any;
366
- dropdownListYOffset: number;
367
- subscription: Subscription;
368
- dropDownWidth: number;
369
- dropDownTop: string | null;
370
- dropDownBottom: string | null;
371
- dropDownLeft: number;
372
- id: any;
373
- defaultSettings: DropdownSettings;
374
- randomSize: boolean;
375
- parseError: boolean;
376
- filteredList: any;
377
- virtualScroollInit: boolean;
378
- private virtualScroller;
379
- isDisabledItemPresent: boolean;
380
- constructor(_elementRef: ElementRef, cdr: ChangeDetectorRef, filterPipe: ListFilterPipe);
381
- ngOnInit(): void;
382
- onKeyUp(evt: any): void;
383
- ngOnChanges(changes: SimpleChanges): void;
384
- ngDoCheck(): void;
385
- ngAfterViewInit(): void;
386
- ngAfterViewChecked(): void;
387
- onItemClick(item: any, index: number, evt: Event): void;
388
- validate(c: UntypedFormControl): any;
389
- private onTouchedCallback;
390
- private onChangeCallback;
391
- writeValue(value: any): void;
392
- registerOnChange(fn: any): void;
393
- registerOnTouched(fn: any): void;
394
- trackByFn(index: number, item: any): any;
395
- isSelected(clickedItem: any): boolean;
396
- addSelected(item: any): void;
397
- removeSelected(clickedItem: any): void;
398
- toggleDropdown(evt: any): void;
399
- openDropdown(): void;
400
- closeDropdown(): void;
401
- closeDropdownOnClickOut(): void;
402
- toggleSelectAll(event: any): void;
403
- filterGroupedList(): void;
404
- toggleFilterSelectAll(): void;
405
- toggleInfiniteFilterSelectAll(): void;
406
- clearSearch(): void;
407
- onFilterChange(data: any): void;
408
- cloneArray(arr: any): any;
409
- updateGroupInfo(item: any): void;
410
- transformData(arr: Array<any>, field: any): Array<any>;
411
- filterInfiniteList(evt: any): void;
412
- resetInfiniteSearch(): void;
413
- onScrollEnd(e: any): void;
414
- ngOnDestroy(): void;
415
- selectGroup(item: any): void;
416
- addFilterNewItem(): void;
417
- calculateDropdownDirection(): void;
418
- openTowardsTop(value: boolean): void;
419
- clearSelection(e?: any): void;
420
- filteritems(evt: any): void;
421
- static ɵfac: i0.ɵɵFactoryDeclaration<AngularMultiSelect, never>;
422
- static ɵcmp: i0.ɵɵComponentDeclaration<AngularMultiSelect, "angular-multiselect, angular2-multiselect", never, { "data": { "alias": "data"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "onSelect": "onSelect"; "onDeSelect": "onDeSelect"; "onSelectAll": "onSelectAll"; "onDeSelectAll": "onDeSelectAll"; "onOpen": "onOpen"; "onClose": "onClose"; "onScrollToEnd": "onScrollToEnd"; "onFilterSelectAll": "onFilterSelectAll"; "onFilterDeSelectAll": "onFilterDeSelectAll"; "onAddFilterNewItem": "onAddFilterNewItem"; "onGroupSelect": "onGroupSelect"; "onGroupDeSelect": "onGroupDeSelect"; }, ["itemTempl", "badgeTempl", "searchTempl"], never, false, never>;
423
- }
424
- declare class AngularMultiSelectModule {
425
- static ɵfac: i0.ɵɵFactoryDeclaration<AngularMultiSelectModule, never>;
426
- static ɵmod: i0.ɵɵNgModuleDeclaration<AngularMultiSelectModule, [typeof AngularMultiSelect, typeof ClickOutsideDirective, typeof ScrollDirective, typeof styleDirective, typeof ListFilterPipe, typeof Item, typeof TemplateRenderer, typeof Badge, typeof Search, typeof setPosition, typeof CIcon], [typeof i1.CommonModule, typeof i5.FormsModule, typeof VirtualScrollerModule], [typeof AngularMultiSelect, typeof ClickOutsideDirective, typeof ScrollDirective, typeof styleDirective, typeof ListFilterPipe, typeof Item, typeof TemplateRenderer, typeof Badge, typeof Search, typeof setPosition, typeof CIcon]>;
427
- static ɵinj: i0.ɵɵInjectorDeclaration<AngularMultiSelectModule>;
428
- }
429
-
430
- export { AngularMultiSelect, AngularMultiSelectModule, Badge, CIcon, ClickOutsideDirective, Item, ListFilterPipe, ScrollDirective, Search, TemplateRenderer, setPosition, styleDirective };
431
- export type { DropdownSettings };