ng-jvx-multiselect 16.0.13 → 17.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.
Files changed (36) hide show
  1. package/esm2022/lib/directives/ng-jvx-disabled-option.directive.mjs +46 -46
  2. package/esm2022/lib/directives/ng-jvx-focus.directive.mjs +29 -29
  3. package/esm2022/lib/directives/ng-jvx-group-header.directive.mjs +25 -25
  4. package/esm2022/lib/directives/ng-jvx-options-template.directive.mjs +26 -26
  5. package/esm2022/lib/directives/ng-jvx-selection-template.directive.mjs +25 -25
  6. package/esm2022/lib/interfaces/ng-jvx-group-mapper.mjs +1 -1
  7. package/esm2022/lib/interfaces/ng-jvx-option-mapper.mjs +1 -1
  8. package/esm2022/lib/interfaces/ng-jvx-search-mapper.mjs +1 -1
  9. package/esm2022/lib/ng-jvx-multiselect.component.mjs +630 -630
  10. package/esm2022/lib/ng-jvx-multiselect.module.mjs +92 -96
  11. package/esm2022/lib/ng-jvx-multiselect.service.mjs +43 -43
  12. package/esm2022/lib/ng-jvx-option/ng-jvx-option.component.mjs +31 -31
  13. package/esm2022/lib/utils.mjs +3 -3
  14. package/esm2022/ng-jvx-multiselect.mjs +4 -4
  15. package/esm2022/public-api.mjs +15 -15
  16. package/fesm2022/ng-jvx-multiselect.mjs +875 -915
  17. package/fesm2022/ng-jvx-multiselect.mjs.map +1 -1
  18. package/index.d.ts +5 -5
  19. package/lib/directives/ng-jvx-disabled-option.directive.d.ts +15 -15
  20. package/lib/directives/ng-jvx-focus.directive.d.ts +11 -11
  21. package/lib/directives/ng-jvx-group-header.directive.d.ts +10 -10
  22. package/lib/directives/ng-jvx-options-template.directive.d.ts +11 -11
  23. package/lib/directives/ng-jvx-selection-template.directive.d.ts +10 -10
  24. package/lib/interfaces/ng-jvx-group-mapper.d.ts +8 -8
  25. package/lib/interfaces/ng-jvx-option-mapper.d.ts +13 -13
  26. package/lib/interfaces/ng-jvx-search-mapper.d.ts +7 -7
  27. package/lib/ng-jvx-multiselect.component.d.ts +149 -149
  28. package/lib/ng-jvx-multiselect.module.d.ts +24 -25
  29. package/lib/ng-jvx-multiselect.service.d.ts +20 -20
  30. package/lib/ng-jvx-option/ng-jvx-option.component.d.ts +14 -14
  31. package/lib/utils.d.ts +3 -3
  32. package/package.json +6 -5
  33. package/public-api.d.ts +12 -12
  34. package/esm2022/lib/ng-jvx-panel/ng-jvx-panel.component.mjs +0 -42
  35. package/lib/ng-jvx-panel/ng-jvx-panel.component.d.ts +0 -17
  36. package/src/lib/ng-jvx-panel/ng-jvx-panel.component.scss +0 -0
@@ -1,149 +1,149 @@
1
- import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges } from '@angular/core';
2
- import { NgJvxOptionsTemplateDirective } from './directives/ng-jvx-options-template.directive';
3
- import { ControlValueAccessor, NgControl, UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
4
- import { MatSelectionList, MatSelectionListChange } from '@angular/material/list';
5
- import { NgJvxOptionComponent } from './ng-jvx-option/ng-jvx-option.component';
6
- import { MatMenuTrigger } from '@angular/material/menu';
7
- import { NgJvxMultiselectService } from './ng-jvx-multiselect.service';
8
- import { HttpHeaders } from '@angular/common/http';
9
- import { NgScrollbar } from 'ngx-scrollbar';
10
- import { Observable, Subject } from 'rxjs';
11
- import { NgJvxMultiOptionMapper, NgJvxOptionMapper } from './interfaces/ng-jvx-option-mapper';
12
- import { NgJvxSelectionTemplateDirective } from './directives/ng-jvx-selection-template.directive';
13
- import { MatFormFieldControl } from '@angular/material/form-field';
14
- import { NgJvxGroupHeaderDirective } from './directives/ng-jvx-group-header.directive';
15
- import { NgJvxSearchMapper } from './interfaces/ng-jvx-search-mapper';
16
- import { NgJvxGroupMapper } from './interfaces/ng-jvx-group-mapper';
17
- import * as i0 from "@angular/core";
18
- export declare class NgJvxMultiselectComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges, MatFormFieldControl<any>, ControlValueAccessor {
19
- private formBuilder;
20
- private service;
21
- private elementRef;
22
- private changeDetectorRef;
23
- ngControl: NgControl;
24
- static nextId: number;
25
- id: string;
26
- get shouldLabelFloat(): boolean;
27
- jvxMultiselect: ElementRef;
28
- selectionContainer: ElementRef;
29
- selection: MatSelectionList;
30
- trigger: MatMenuTrigger;
31
- scrollbar: NgScrollbar;
32
- multiContainer: ElementRef;
33
- optionComp: QueryList<NgJvxOptionComponent>;
34
- optionsTemplate: NgJvxOptionsTemplateDirective | null;
35
- selectionTemplate: NgJvxSelectionTemplateDirective | null;
36
- groupHeaderTemplate: NgJvxGroupHeaderDirective | null;
37
- options: any[];
38
- multi: boolean;
39
- url: string;
40
- requestType: 'get' | 'post';
41
- itemValue: string;
42
- itemText: string;
43
- ignorePagination: boolean;
44
- clearable: boolean;
45
- closeOnClick: boolean;
46
- hasErrors: boolean;
47
- searchMode: null | 'server' | 'client';
48
- searchInput: boolean;
49
- searchLabel: string;
50
- listProp: string;
51
- totalRowsProp: string;
52
- panelClass: string;
53
- searchProp: string;
54
- closeButton: boolean;
55
- mapper: NgJvxOptionMapper<any>;
56
- multiMapper: NgJvxMultiOptionMapper<any>;
57
- searchMapper: NgJvxSearchMapper<any>;
58
- groupBy: NgJvxGroupMapper<any> | string | null;
59
- set value(value: any[]);
60
- get value(): any[];
61
- requestHeaders: HttpHeaders;
62
- get required(): boolean;
63
- set required(req: boolean);
64
- private _required;
65
- get disabled(): boolean;
66
- set disabled(value: boolean);
67
- get pageSize(): number;
68
- set pageSize(val: number);
69
- private _disabled;
70
- get errorState(): boolean;
71
- valueChange: EventEmitter<any[]>;
72
- jvxMultiselectOpen: EventEmitter<void>;
73
- jvxMultiselectOpened: EventEmitter<void>;
74
- jvxMultiselectClose: EventEmitter<void>;
75
- jvxMultiselectClosed: EventEmitter<void>;
76
- scrollEnd: EventEmitter<void>;
77
- controlType: string;
78
- document: Document;
79
- window: Window & typeof globalThis;
80
- form: UntypedFormGroup;
81
- isOpen: boolean;
82
- isLoading: boolean;
83
- showList: boolean;
84
- asyncOptions: any;
85
- selectableOptions: any[];
86
- orderedOptions: {
87
- group: any;
88
- options: any[];
89
- }[];
90
- searchValue: string;
91
- yPosition: 'above' | 'below';
92
- stateChanges: Subject<void>;
93
- currentPage: number;
94
- listContainerSize: {
95
- height: string;
96
- minHeight: string;
97
- width: string;
98
- };
99
- parts: UntypedFormGroup;
100
- touched: boolean;
101
- placeholder: string;
102
- focused: boolean;
103
- multiContainerWidth: number;
104
- private searchValueSubject;
105
- private searchValue$;
106
- private pValue;
107
- private shouldLoadMore;
108
- private unsubscribe;
109
- private unsubscribe$;
110
- private intPageSize;
111
- onTouched: () => void;
112
- constructor(formBuilder: UntypedFormBuilder, service: NgJvxMultiselectService, elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, ngControl: NgControl, fb: UntypedFormBuilder);
113
- ngOnInit(): void;
114
- private clientSearch;
115
- private setSelectableOptions;
116
- private serverSearch;
117
- ngOnDestroy(): void;
118
- ngAfterViewInit(): void;
119
- ngOnChanges(changes: SimpleChanges): void;
120
- get selectionValue(): any[];
121
- get empty(): boolean;
122
- onCLickOnMenu(e: MouseEvent): void;
123
- private propagateChange;
124
- writeValue(obj: any[]): void;
125
- registerOnChange(fn: any): void;
126
- registerOnTouched(fn: any): void;
127
- onChange(e: MatSelectionListChange): void;
128
- onFocusIn(event: FocusEvent): void;
129
- onFocusOut(event: FocusEvent): void;
130
- onMenuOpen(): void;
131
- onMenuClose(): void;
132
- deselect(val: any): void;
133
- private setSelectionContainerSize;
134
- clickOnMenuTrigger(e: MouseEvent): void;
135
- private getList;
136
- onScrolled(e: any): void;
137
- onMenuOpened(): void;
138
- onMenuClosed(): void;
139
- onSearchInputClick(e: MouseEvent): void;
140
- onSearchValueChange(e: any): void;
141
- clear(e: Event): void;
142
- setDescribedByIds(ids: string[]): void;
143
- onContainerClick(event: MouseEvent): void;
144
- private get stateChange$();
145
- updateOrderedOptions(options: any): Observable<any>;
146
- closeMenu(): void;
147
- static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxMultiselectComponent, [null, null, null, null, { optional: true; self: true; }, null]>;
148
- static ɵcmp: i0.ɵɵComponentDeclaration<NgJvxMultiselectComponent, "ng-jvx-multiselect", never, { "options": { "alias": "options"; "required": false; }; "multi": { "alias": "multi"; "required": false; }; "url": { "alias": "url"; "required": false; }; "requestType": { "alias": "requestType"; "required": false; }; "itemValue": { "alias": "itemValue"; "required": false; }; "itemText": { "alias": "itemText"; "required": false; }; "ignorePagination": { "alias": "ignorePagination"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "closeOnClick": { "alias": "closeOnClick"; "required": false; }; "hasErrors": { "alias": "hasErrors"; "required": false; }; "searchMode": { "alias": "searchMode"; "required": false; }; "searchInput": { "alias": "searchInput"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "listProp": { "alias": "listProp"; "required": false; }; "totalRowsProp": { "alias": "totalRowsProp"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "searchProp": { "alias": "searchProp"; "required": false; }; "closeButton": { "alias": "closeButton"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; "multiMapper": { "alias": "multiMapper"; "required": false; }; "searchMapper": { "alias": "searchMapper"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "value": { "alias": "value"; "required": false; }; "requestHeaders": { "alias": "requestHeaders"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, { "valueChange": "valueChange"; "jvxMultiselectOpen": "jvxMultiselectOpen"; "jvxMultiselectOpened": "jvxMultiselectOpened"; "jvxMultiselectClose": "jvxMultiselectClose"; "jvxMultiselectClosed": "jvxMultiselectClosed"; "scrollEnd": "scrollEnd"; }, ["optionsTemplate", "selectionTemplate", "groupHeaderTemplate"], ["*", "[ng-jvx-footer]", "[placeholder]"], false, never>;
149
- }
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges } from '@angular/core';
2
+ import { NgJvxOptionsTemplateDirective } from './directives/ng-jvx-options-template.directive';
3
+ import { ControlValueAccessor, NgControl, UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
4
+ import { MatSelectionList, MatSelectionListChange } from '@angular/material/list';
5
+ import { NgJvxOptionComponent } from './ng-jvx-option/ng-jvx-option.component';
6
+ import { MatMenuTrigger } from '@angular/material/menu';
7
+ import { NgJvxMultiselectService } from './ng-jvx-multiselect.service';
8
+ import { HttpHeaders } from '@angular/common/http';
9
+ import { NgScrollbar } from 'ngx-scrollbar';
10
+ import { Observable, Subject } from 'rxjs';
11
+ import { NgJvxMultiOptionMapper, NgJvxOptionMapper } from './interfaces/ng-jvx-option-mapper';
12
+ import { NgJvxSelectionTemplateDirective } from './directives/ng-jvx-selection-template.directive';
13
+ import { MatFormFieldControl } from '@angular/material/form-field';
14
+ import { NgJvxGroupHeaderDirective } from './directives/ng-jvx-group-header.directive';
15
+ import { NgJvxSearchMapper } from './interfaces/ng-jvx-search-mapper';
16
+ import { NgJvxGroupMapper } from './interfaces/ng-jvx-group-mapper';
17
+ import * as i0 from "@angular/core";
18
+ export declare class NgJvxMultiselectComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges, MatFormFieldControl<any>, ControlValueAccessor {
19
+ private formBuilder;
20
+ private service;
21
+ private elementRef;
22
+ private changeDetectorRef;
23
+ ngControl: NgControl;
24
+ static nextId: number;
25
+ id: string;
26
+ get shouldLabelFloat(): boolean;
27
+ jvxMultiselect: ElementRef;
28
+ selectionContainer: ElementRef;
29
+ selection: MatSelectionList;
30
+ trigger: MatMenuTrigger;
31
+ scrollbar: NgScrollbar;
32
+ multiContainer: ElementRef;
33
+ optionComp: QueryList<NgJvxOptionComponent>;
34
+ optionsTemplate: NgJvxOptionsTemplateDirective | null;
35
+ selectionTemplate: NgJvxSelectionTemplateDirective | null;
36
+ groupHeaderTemplate: NgJvxGroupHeaderDirective | null;
37
+ options: any[];
38
+ multi: boolean;
39
+ url: string;
40
+ requestType: 'get' | 'post';
41
+ itemValue: string;
42
+ itemText: string;
43
+ ignorePagination: boolean;
44
+ clearable: boolean;
45
+ closeOnClick: boolean;
46
+ hasErrors: boolean;
47
+ searchMode: null | 'server' | 'client';
48
+ searchInput: boolean;
49
+ searchLabel: string;
50
+ listProp: string;
51
+ totalRowsProp: string;
52
+ panelClass: string;
53
+ searchProp: string;
54
+ closeButton: boolean;
55
+ mapper: NgJvxOptionMapper<any>;
56
+ multiMapper: NgJvxMultiOptionMapper<any>;
57
+ searchMapper: NgJvxSearchMapper<any>;
58
+ groupBy: NgJvxGroupMapper<any> | string | null;
59
+ set value(value: any[]);
60
+ get value(): any[];
61
+ requestHeaders: HttpHeaders;
62
+ get required(): boolean;
63
+ set required(req: boolean);
64
+ private _required;
65
+ get disabled(): boolean;
66
+ set disabled(value: boolean);
67
+ get pageSize(): number;
68
+ set pageSize(val: number);
69
+ private _disabled;
70
+ get errorState(): boolean;
71
+ valueChange: EventEmitter<any[]>;
72
+ jvxMultiselectOpen: EventEmitter<void>;
73
+ jvxMultiselectOpened: EventEmitter<void>;
74
+ jvxMultiselectClose: EventEmitter<void>;
75
+ jvxMultiselectClosed: EventEmitter<void>;
76
+ scrollEnd: EventEmitter<void>;
77
+ controlType: string;
78
+ document: Document;
79
+ window: Window & typeof globalThis;
80
+ form: UntypedFormGroup;
81
+ isOpen: boolean;
82
+ isLoading: boolean;
83
+ showList: boolean;
84
+ asyncOptions: any;
85
+ selectableOptions: any[];
86
+ orderedOptions: {
87
+ group: any;
88
+ options: any[];
89
+ }[];
90
+ searchValue: string;
91
+ yPosition: 'above' | 'below';
92
+ stateChanges: Subject<void>;
93
+ currentPage: number;
94
+ listContainerSize: {
95
+ height: string;
96
+ minHeight: string;
97
+ width: string;
98
+ };
99
+ parts: UntypedFormGroup;
100
+ touched: boolean;
101
+ placeholder: string;
102
+ focused: boolean;
103
+ multiContainerWidth: number;
104
+ private searchValueSubject;
105
+ private searchValue$;
106
+ private pValue;
107
+ private shouldLoadMore;
108
+ private unsubscribe;
109
+ private unsubscribe$;
110
+ private intPageSize;
111
+ onTouched: () => void;
112
+ constructor(formBuilder: UntypedFormBuilder, service: NgJvxMultiselectService, elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, ngControl: NgControl, fb: UntypedFormBuilder);
113
+ ngOnInit(): void;
114
+ private clientSearch;
115
+ private setSelectableOptions;
116
+ private serverSearch;
117
+ ngOnDestroy(): void;
118
+ ngAfterViewInit(): void;
119
+ ngOnChanges(changes: SimpleChanges): void;
120
+ get selectionValue(): any[];
121
+ get empty(): boolean;
122
+ onCLickOnMenu(e: MouseEvent): void;
123
+ private propagateChange;
124
+ writeValue(obj: any[]): void;
125
+ registerOnChange(fn: any): void;
126
+ registerOnTouched(fn: any): void;
127
+ onChange(e: MatSelectionListChange): void;
128
+ onFocusIn(event: FocusEvent): void;
129
+ onFocusOut(event: FocusEvent): void;
130
+ onMenuOpen(): void;
131
+ onMenuClose(): void;
132
+ deselect(val: any): void;
133
+ private setSelectionContainerSize;
134
+ clickOnMenuTrigger(e: MouseEvent): void;
135
+ private getList;
136
+ onScrolled(e: any): void;
137
+ onMenuOpened(): void;
138
+ onMenuClosed(): void;
139
+ onSearchInputClick(e: MouseEvent): void;
140
+ onSearchValueChange(e: any): void;
141
+ clear(e: Event): void;
142
+ setDescribedByIds(ids: string[]): void;
143
+ onContainerClick(event: MouseEvent): void;
144
+ private get stateChange$();
145
+ updateOrderedOptions(options: any): Observable<any>;
146
+ closeMenu(): void;
147
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxMultiselectComponent, [null, null, null, null, { optional: true; self: true; }, null]>;
148
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgJvxMultiselectComponent, "ng-jvx-multiselect", never, { "options": { "alias": "options"; "required": false; }; "multi": { "alias": "multi"; "required": false; }; "url": { "alias": "url"; "required": false; }; "requestType": { "alias": "requestType"; "required": false; }; "itemValue": { "alias": "itemValue"; "required": false; }; "itemText": { "alias": "itemText"; "required": false; }; "ignorePagination": { "alias": "ignorePagination"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "closeOnClick": { "alias": "closeOnClick"; "required": false; }; "hasErrors": { "alias": "hasErrors"; "required": false; }; "searchMode": { "alias": "searchMode"; "required": false; }; "searchInput": { "alias": "searchInput"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "listProp": { "alias": "listProp"; "required": false; }; "totalRowsProp": { "alias": "totalRowsProp"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "searchProp": { "alias": "searchProp"; "required": false; }; "closeButton": { "alias": "closeButton"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; "multiMapper": { "alias": "multiMapper"; "required": false; }; "searchMapper": { "alias": "searchMapper"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "value": { "alias": "value"; "required": false; }; "requestHeaders": { "alias": "requestHeaders"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, { "valueChange": "valueChange"; "jvxMultiselectOpen": "jvxMultiselectOpen"; "jvxMultiselectOpened": "jvxMultiselectOpened"; "jvxMultiselectClose": "jvxMultiselectClose"; "jvxMultiselectClosed": "jvxMultiselectClosed"; "scrollEnd": "scrollEnd"; }, ["optionsTemplate", "selectionTemplate", "groupHeaderTemplate"], ["*", "[ng-jvx-footer]", "[placeholder]"], false, never>;
149
+ }
@@ -1,25 +1,24 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./ng-jvx-multiselect.component";
3
- import * as i2 from "./ng-jvx-option/ng-jvx-option.component";
4
- import * as i3 from "./directives/ng-jvx-options-template.directive";
5
- import * as i4 from "./ng-jvx-panel/ng-jvx-panel.component";
6
- import * as i5 from "./directives/ng-jvx-selection-template.directive";
7
- import * as i6 from "./directives/ng-jvx-disabled-option.directive";
8
- import * as i7 from "./directives/ng-jvx-group-header.directive";
9
- import * as i8 from "./directives/ng-jvx-focus.directive";
10
- import * as i9 from "@angular/material/button";
11
- import * as i10 from "@angular/material/core";
12
- import * as i11 from "@angular/material/select";
13
- import * as i12 from "@angular/material/menu";
14
- import * as i13 from "@angular/common";
15
- import * as i14 from "@angular/material/icon";
16
- import * as i15 from "@angular/material/list";
17
- import * as i16 from "@angular/material/chips";
18
- import * as i17 from "@angular/forms";
19
- import * as i18 from "ngx-scrollbar";
20
- import * as i19 from "ngx-scrollbar/smooth-scroll";
21
- export declare class NgJvxMultiselectModule {
22
- static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxMultiselectModule, never>;
23
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgJvxMultiselectModule, [typeof i1.NgJvxMultiselectComponent, typeof i2.NgJvxOptionComponent, typeof i3.NgJvxOptionsTemplateDirective, typeof i4.NgJvxPanelComponent, typeof i5.NgJvxSelectionTemplateDirective, typeof i6.NgJvxDisabledOptionDirective, typeof i7.NgJvxGroupHeaderDirective, typeof i8.NgJvxFocusDirective], [typeof i9.MatButtonModule, typeof i10.MatOptionModule, typeof i11.MatSelectModule, typeof i12.MatMenuModule, typeof i13.CommonModule, typeof i14.MatIconModule, typeof i15.MatListModule, typeof i16.MatChipsModule, typeof i17.ReactiveFormsModule, typeof i18.NgScrollbarModule, typeof i19.SmoothScrollModule, typeof i17.FormsModule], [typeof i1.NgJvxMultiselectComponent, typeof i2.NgJvxOptionComponent, typeof i3.NgJvxOptionsTemplateDirective, typeof i5.NgJvxSelectionTemplateDirective, typeof i6.NgJvxDisabledOptionDirective, typeof i7.NgJvxGroupHeaderDirective]>;
24
- static ɵinj: i0.ɵɵInjectorDeclaration<NgJvxMultiselectModule>;
25
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./ng-jvx-multiselect.component";
3
+ import * as i2 from "./ng-jvx-option/ng-jvx-option.component";
4
+ import * as i3 from "./directives/ng-jvx-options-template.directive";
5
+ import * as i4 from "./directives/ng-jvx-selection-template.directive";
6
+ import * as i5 from "./directives/ng-jvx-disabled-option.directive";
7
+ import * as i6 from "./directives/ng-jvx-group-header.directive";
8
+ import * as i7 from "./directives/ng-jvx-focus.directive";
9
+ import * as i8 from "@angular/material/button";
10
+ import * as i9 from "@angular/material/core";
11
+ import * as i10 from "@angular/material/select";
12
+ import * as i11 from "@angular/material/menu";
13
+ import * as i12 from "@angular/common";
14
+ import * as i13 from "@angular/material/icon";
15
+ import * as i14 from "@angular/material/list";
16
+ import * as i15 from "@angular/material/chips";
17
+ import * as i16 from "@angular/forms";
18
+ import * as i17 from "ngx-scrollbar";
19
+ import * as i18 from "ngx-scrollbar/smooth-scroll";
20
+ export declare class NgJvxMultiselectModule {
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxMultiselectModule, never>;
22
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgJvxMultiselectModule, [typeof i1.NgJvxMultiselectComponent, typeof i2.NgJvxOptionComponent, typeof i3.NgJvxOptionsTemplateDirective, typeof i4.NgJvxSelectionTemplateDirective, typeof i5.NgJvxDisabledOptionDirective, typeof i6.NgJvxGroupHeaderDirective, typeof i7.NgJvxFocusDirective], [typeof i8.MatButtonModule, typeof i9.MatOptionModule, typeof i10.MatSelectModule, typeof i11.MatMenuModule, typeof i12.CommonModule, typeof i13.MatIconModule, typeof i14.MatListModule, typeof i15.MatChipsModule, typeof i16.ReactiveFormsModule, typeof i17.NgScrollbarModule, typeof i18.SmoothScroll, typeof i16.FormsModule], [typeof i1.NgJvxMultiselectComponent, typeof i2.NgJvxOptionComponent, typeof i3.NgJvxOptionsTemplateDirective, typeof i4.NgJvxSelectionTemplateDirective, typeof i5.NgJvxDisabledOptionDirective, typeof i6.NgJvxGroupHeaderDirective]>;
23
+ static ɵinj: i0.ɵɵInjectorDeclaration<NgJvxMultiselectModule>;
24
+ }
@@ -1,20 +1,20 @@
1
- import { Observable } from 'rxjs';
2
- import { HttpClient } from '@angular/common/http';
3
- import * as i0 from "@angular/core";
4
- export declare class NgJvxMultiselectService {
5
- private http;
6
- constructor(http: HttpClient);
7
- getList({ url, ignorePagination, currentPage, pageSize, requestType, requestHeaders, search, searchProp, data }: {
8
- url: string;
9
- ignorePagination: boolean;
10
- currentPage: number;
11
- pageSize: number;
12
- requestType: 'get' | 'post';
13
- requestHeaders: any;
14
- search?: string;
15
- searchProp?: string;
16
- data: any;
17
- }): Observable<any>;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxMultiselectService, never>;
19
- static ɵprov: i0.ɵɵInjectableDeclaration<NgJvxMultiselectService>;
20
- }
1
+ import { Observable } from 'rxjs';
2
+ import { HttpClient } from '@angular/common/http';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NgJvxMultiselectService {
5
+ private http;
6
+ constructor(http: HttpClient);
7
+ getList({ url, ignorePagination, currentPage, pageSize, requestType, requestHeaders, search, searchProp, data }: {
8
+ url: string;
9
+ ignorePagination: boolean;
10
+ currentPage: number;
11
+ pageSize: number;
12
+ requestType: 'get' | 'post';
13
+ requestHeaders: any;
14
+ search?: string;
15
+ searchProp?: string;
16
+ data: any;
17
+ }): Observable<any>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxMultiselectService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgJvxMultiselectService>;
20
+ }
@@ -1,14 +1,14 @@
1
- import { DoCheck, OnInit } from '@angular/core';
2
- import { MatListOption } from '@angular/material/list';
3
- import * as i0 from "@angular/core";
4
- export declare class NgJvxOptionComponent implements OnInit, DoCheck {
5
- listOption: MatListOption;
6
- value: any;
7
- isSelected: boolean;
8
- constructor();
9
- ngOnInit(): void;
10
- ngDoCheck(): void;
11
- deselect(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxOptionComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<NgJvxOptionComponent, "ng-jvx-option", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
14
- }
1
+ import { DoCheck, OnInit } from '@angular/core';
2
+ import { MatListOption } from '@angular/material/list';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NgJvxOptionComponent implements OnInit, DoCheck {
5
+ listOption: MatListOption;
6
+ value: any;
7
+ isSelected: boolean;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ ngDoCheck(): void;
11
+ deselect(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxOptionComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgJvxOptionComponent, "ng-jvx-option", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
14
+ }
package/lib/utils.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { HttpContextToken } from '@angular/common/http';
2
- export declare const JVXMULTISELECT: HttpContextToken<boolean>;
3
- export declare const setJvxCall: () => any;
1
+ import { HttpContextToken } from '@angular/common/http';
2
+ export declare const JVXMULTISELECT: HttpContextToken<boolean>;
3
+ export declare const setJvxCall: () => any;
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "ng-jvx-multiselect",
3
- "version": "16.0.13",
3
+ "version": "17.0.0",
4
+ "license": "MIT",
4
5
  "description": "ng-jvx-multiselect is a select based on angular material. It handles both single and multiple selections and allows to retrieves the options via asynchronous calls.",
5
6
  "exports": {
6
7
  ".": {
@@ -15,10 +16,10 @@
15
16
  }
16
17
  },
17
18
  "peerDependencies": {
18
- "@angular/core": "^16.0.2",
19
- "@angular/common": "^16.0.2",
20
- "@angular/material": "^16.0.1",
21
- "ngx-scrollbar": "^10.0.0"
19
+ "@angular/core": "^17.0.0",
20
+ "@angular/common": "^17.0.0",
21
+ "@angular/material": "^17.0.0",
22
+ "ngx-scrollbar": "^13.0.3"
22
23
  },
23
24
  "dependencies": {
24
25
  "tslib": "^2.0.0"
package/public-api.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- export * from './lib/ng-jvx-option/ng-jvx-option.component';
2
- export * from './lib/directives/ng-jvx-options-template.directive';
3
- export * from './lib/directives/ng-jvx-selection-template.directive';
4
- export * from './lib/directives/ng-jvx-group-header.directive';
5
- export * from './lib/directives/ng-jvx-disabled-option.directive';
6
- export * from './lib/ng-jvx-multiselect.service';
7
- export * from './lib/ng-jvx-multiselect.component';
8
- export * from './lib/ng-jvx-multiselect.module';
9
- export * from './lib/interfaces/ng-jvx-option-mapper';
10
- export * from './lib/interfaces/ng-jvx-search-mapper';
11
- export * from './lib/interfaces/ng-jvx-group-mapper';
12
- export * from './lib/utils';
1
+ export * from './lib/ng-jvx-option/ng-jvx-option.component';
2
+ export * from './lib/directives/ng-jvx-options-template.directive';
3
+ export * from './lib/directives/ng-jvx-selection-template.directive';
4
+ export * from './lib/directives/ng-jvx-group-header.directive';
5
+ export * from './lib/directives/ng-jvx-disabled-option.directive';
6
+ export * from './lib/ng-jvx-multiselect.service';
7
+ export * from './lib/ng-jvx-multiselect.component';
8
+ export * from './lib/ng-jvx-multiselect.module';
9
+ export * from './lib/interfaces/ng-jvx-option-mapper';
10
+ export * from './lib/interfaces/ng-jvx-search-mapper';
11
+ export * from './lib/interfaces/ng-jvx-group-mapper';
12
+ export * from './lib/utils';
@@ -1,42 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- import { ChangeDetectionStrategy, Component, Inject, ViewEncapsulation, } from '@angular/core';
9
- import { MAT_MENU_DEFAULT_OPTIONS, MAT_MENU_PANEL, matMenuAnimations } from '@angular/material/menu';
10
- import { _MatMenuBase, MatMenu } from '@angular/material/menu';
11
- import * as i0 from "@angular/core";
12
- import * as i1 from "@angular/common";
13
- /** @docs-public MatMenu */
14
- export class NgJvxPanelComponent extends _MatMenuBase {
15
- constructor(elementRef, ngZone, defaultOptions) {
16
- super(elementRef, ngZone, defaultOptions);
17
- }
18
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NgJvxPanelComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: MAT_MENU_DEFAULT_OPTIONS }], target: i0.ɵɵFactoryTarget.Component }); }
19
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.2", type: NgJvxPanelComponent, selector: "ngJvxPanel", host: { properties: { "attr.aria-label": "null", "attr.aria-labelledby": "null", "attr.aria-describedby": "null" } }, providers: [
20
- { provide: MAT_MENU_PANEL, useExisting: MatMenu },
21
- ], exportAs: ["ngJvxPanel"], usesInheritance: true, ngImport: i0, template: "<ng-template>\r\n <div\r\n class=\"mat-menu-panel\"\r\n [id]=\"panelId\"\r\n [ngClass]=\"_classList\"\r\n (keydown)=\"_handleKeydown($event)\"\r\n (click)=\"closed.emit('click')\"\r\n [@transformMenu]=\"_panelAnimationState\"\r\n (@transformMenu.start)=\"_onAnimationStart($event)\"\r\n (@transformMenu.done)=\"_onAnimationDone($event)\"\r\n tabindex=\"-1\"\r\n role=\"menu\"\r\n [attr.aria-label]=\"ariaLabel || null\"\r\n [attr.aria-labelledby]=\"ariaLabelledby || null\"\r\n [attr.aria-describedby]=\"ariaDescribedby || null\">\r\n <div class=\"mat-menu-content\">\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n</ng-template>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], animations: [
22
- matMenuAnimations.transformMenu,
23
- matMenuAnimations.fadeInItems
24
- ], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
25
- }
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NgJvxPanelComponent, decorators: [{
27
- type: Component,
28
- args: [{ selector: 'ngJvxPanel', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, exportAs: 'ngJvxPanel', host: {
29
- '[attr.aria-label]': 'null',
30
- '[attr.aria-labelledby]': 'null',
31
- '[attr.aria-describedby]': 'null',
32
- }, animations: [
33
- matMenuAnimations.transformMenu,
34
- matMenuAnimations.fadeInItems
35
- ], providers: [
36
- { provide: MAT_MENU_PANEL, useExisting: MatMenu },
37
- ], template: "<ng-template>\r\n <div\r\n class=\"mat-menu-panel\"\r\n [id]=\"panelId\"\r\n [ngClass]=\"_classList\"\r\n (keydown)=\"_handleKeydown($event)\"\r\n (click)=\"closed.emit('click')\"\r\n [@transformMenu]=\"_panelAnimationState\"\r\n (@transformMenu.start)=\"_onAnimationStart($event)\"\r\n (@transformMenu.done)=\"_onAnimationDone($event)\"\r\n tabindex=\"-1\"\r\n role=\"menu\"\r\n [attr.aria-label]=\"ariaLabel || null\"\r\n [attr.aria-labelledby]=\"ariaLabelledby || null\"\r\n [attr.aria-describedby]=\"ariaDescribedby || null\">\r\n <div class=\"mat-menu-content\">\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n</ng-template>\r\n" }]
38
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: undefined, decorators: [{
39
- type: Inject,
40
- args: [MAT_MENU_DEFAULT_OPTIONS]
41
- }] }]; } });
42
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctanZ4LXBhbmVsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25nLWp2eC1tdWx0aXNlbGVjdC9zcmMvbGliL25nLWp2eC1wYW5lbC9uZy1qdngtcGFuZWwuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmctanZ4LW11bHRpc2VsZWN0L3NyYy9saWIvbmctanZ4LXBhbmVsL25nLWp2eC1wYW5lbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxPQUFPLEVBQUMsdUJBQXVCLEVBQUUsU0FBUyxFQUFjLE1BQU0sRUFBVSxpQkFBaUIsR0FBRSxNQUFNLGVBQWUsQ0FBQztBQUNqSCxPQUFPLEVBQ0wsd0JBQXdCLEVBQ3hCLGNBQWMsRUFDZCxpQkFBaUIsRUFFbEIsTUFBTSx3QkFBd0IsQ0FBQztBQUNoQyxPQUFPLEVBQUMsWUFBWSxFQUFFLE9BQU8sRUFBQyxNQUFNLHdCQUF3QixDQUFDOzs7QUFHN0QsMkJBQTJCO0FBdUIzQixNQUFNLE9BQU8sbUJBQW9CLFNBQVEsWUFBWTtJQUNuRCxZQUFZLFVBQW1DLEVBQUUsTUFBYyxFQUNqQixjQUFxQztRQUNqRixLQUFLLENBQUMsVUFBVSxFQUFFLE1BQU0sRUFBRSxjQUFjLENBQUMsQ0FBQztJQUM1QyxDQUFDOzhHQUpVLG1CQUFtQixrRUFFVix3QkFBd0I7a0dBRmpDLG1CQUFtQiwySkFKbkI7WUFDVCxFQUFDLE9BQU8sRUFBRSxjQUFjLEVBQUUsV0FBVyxFQUFFLE9BQU8sRUFBQztTQUNoRCwyRUN2Q0gsdXJCQW9CQSwwSURhYztZQUNWLGlCQUFpQixDQUFDLGFBQWE7WUFDL0IsaUJBQWlCLENBQUMsV0FBVztTQUM5Qjs7MkZBS1UsbUJBQW1CO2tCQXRCL0IsU0FBUzsrQkFFRSxZQUFZLG1CQUdMLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksWUFDM0IsWUFBWSxRQUVoQjt3QkFDSixtQkFBbUIsRUFBRSxNQUFNO3dCQUMzQix3QkFBd0IsRUFBRSxNQUFNO3dCQUNoQyx5QkFBeUIsRUFBRSxNQUFNO3FCQUNsQyxjQUNXO3dCQUNWLGlCQUFpQixDQUFDLGFBQWE7d0JBQy9CLGlCQUFpQixDQUFDLFdBQVc7cUJBQzlCLGFBQ1U7d0JBQ1QsRUFBQyxPQUFPLEVBQUUsY0FBYyxFQUFFLFdBQVcsRUFBRSxPQUFPLEVBQUM7cUJBQ2hEOzswQkFJWSxNQUFNOzJCQUFDLHdCQUF3QiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBAbGljZW5zZVxyXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxyXG4gKlxyXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxyXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXHJcbiAqL1xyXG5cclxuaW1wb3J0IHtDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBJbmplY3QsIE5nWm9uZSwgVmlld0VuY2Fwc3VsYXRpb24sfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtcclxuICBNQVRfTUVOVV9ERUZBVUxUX09QVElPTlMsXHJcbiAgTUFUX01FTlVfUEFORUwsXHJcbiAgbWF0TWVudUFuaW1hdGlvbnMsXHJcbiAgTWF0TWVudURlZmF1bHRPcHRpb25zXHJcbn0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvbWVudSc7XHJcbmltcG9ydCB7X01hdE1lbnVCYXNlLCBNYXRNZW51fSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9tZW51JztcclxuXHJcblxyXG4vKiogQGRvY3MtcHVibGljIE1hdE1lbnUgKi9cclxuQENvbXBvbmVudCh7XHJcbiAgLy8gdHNsaW50OmRpc2FibGUtbmV4dC1saW5lOmNvbXBvbmVudC1zZWxlY3RvclxyXG4gIHNlbGVjdG9yOiAnbmdKdnhQYW5lbCcsXHJcbiAgdGVtcGxhdGVVcmw6ICduZy1qdngtcGFuZWwuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWyduZy1qdngtcGFuZWwuY29tcG9uZW50LnNjc3MnXSxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxyXG4gIGV4cG9ydEFzOiAnbmdKdnhQYW5lbCcsXHJcbiAgLy8gdHNsaW50OmRpc2FibGUtbmV4dC1saW5lOm5vLWhvc3QtbWV0YWRhdGEtcHJvcGVydHlcclxuICBob3N0OiB7XHJcbiAgICAnW2F0dHIuYXJpYS1sYWJlbF0nOiAnbnVsbCcsXHJcbiAgICAnW2F0dHIuYXJpYS1sYWJlbGxlZGJ5XSc6ICdudWxsJyxcclxuICAgICdbYXR0ci5hcmlhLWRlc2NyaWJlZGJ5XSc6ICdudWxsJyxcclxuICB9LFxyXG4gIGFuaW1hdGlvbnM6IFtcclxuICAgIG1hdE1lbnVBbmltYXRpb25zLnRyYW5zZm9ybU1lbnUsXHJcbiAgICBtYXRNZW51QW5pbWF0aW9ucy5mYWRlSW5JdGVtc1xyXG4gIF0sXHJcbiAgcHJvdmlkZXJzOiBbXHJcbiAgICB7cHJvdmlkZTogTUFUX01FTlVfUEFORUwsIHVzZUV4aXN0aW5nOiBNYXRNZW51fSxcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBOZ0p2eFBhbmVsQ29tcG9uZW50IGV4dGVuZHMgX01hdE1lbnVCYXNlIHtcclxuICBjb25zdHJ1Y3RvcihlbGVtZW50UmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50Piwgbmdab25lOiBOZ1pvbmUsXHJcbiAgICAgICAgICAgICAgQEluamVjdChNQVRfTUVOVV9ERUZBVUxUX09QVElPTlMpIGRlZmF1bHRPcHRpb25zOiBNYXRNZW51RGVmYXVsdE9wdGlvbnMpIHtcclxuICAgIHN1cGVyKGVsZW1lbnRSZWYsIG5nWm9uZSwgZGVmYXVsdE9wdGlvbnMpO1xyXG4gIH1cclxufVxyXG5cclxuIiwiPG5nLXRlbXBsYXRlPlxyXG4gIDxkaXZcclxuICAgIGNsYXNzPVwibWF0LW1lbnUtcGFuZWxcIlxyXG4gICAgW2lkXT1cInBhbmVsSWRcIlxyXG4gICAgW25nQ2xhc3NdPVwiX2NsYXNzTGlzdFwiXHJcbiAgICAoa2V5ZG93bik9XCJfaGFuZGxlS2V5ZG93bigkZXZlbnQpXCJcclxuICAgIChjbGljayk9XCJjbG9zZWQuZW1pdCgnY2xpY2snKVwiXHJcbiAgICBbQHRyYW5zZm9ybU1lbnVdPVwiX3BhbmVsQW5pbWF0aW9uU3RhdGVcIlxyXG4gICAgKEB0cmFuc2Zvcm1NZW51LnN0YXJ0KT1cIl9vbkFuaW1hdGlvblN0YXJ0KCRldmVudClcIlxyXG4gICAgKEB0cmFuc2Zvcm1NZW51LmRvbmUpPVwiX29uQW5pbWF0aW9uRG9uZSgkZXZlbnQpXCJcclxuICAgIHRhYmluZGV4PVwiLTFcIlxyXG4gICAgcm9sZT1cIm1lbnVcIlxyXG4gICAgW2F0dHIuYXJpYS1sYWJlbF09XCJhcmlhTGFiZWwgfHwgbnVsbFwiXHJcbiAgICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiYXJpYUxhYmVsbGVkYnkgfHwgbnVsbFwiXHJcbiAgICBbYXR0ci5hcmlhLWRlc2NyaWJlZGJ5XT1cImFyaWFEZXNjcmliZWRieSB8fCBudWxsXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwibWF0LW1lbnUtY29udGVudFwiPlxyXG4gICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19
@@ -1,17 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- import { ElementRef, NgZone } from '@angular/core';
9
- import { MatMenuDefaultOptions } from '@angular/material/menu';
10
- import { _MatMenuBase } from '@angular/material/menu';
11
- import * as i0 from "@angular/core";
12
- /** @docs-public MatMenu */
13
- export declare class NgJvxPanelComponent extends _MatMenuBase {
14
- constructor(elementRef: ElementRef<HTMLElement>, ngZone: NgZone, defaultOptions: MatMenuDefaultOptions);
15
- static ɵfac: i0.ɵɵFactoryDeclaration<NgJvxPanelComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<NgJvxPanelComponent, "ngJvxPanel", ["ngJvxPanel"], {}, {}, never, ["*"], false, never>;
17
- }
File without changes