angular-multiselect3 11.0.3 → 11.0.4
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/esm2022/lib/multiselect.component.mjs +5 -10
- package/esm2022/public_api.mjs +1 -2
- package/fesm2022/angular-multiselect3.mjs +6 -30
- package/fesm2022/angular-multiselect3.mjs.map +1 -1
- package/lib/multiselect.component.d.ts +6 -7
- package/package.json +1 -1
- package/public_api.d.ts +0 -1
- package/esm2022/lib/clickOutside.mjs +0 -22
- package/lib/clickOutside.d.ts +0 -8
|
@@ -6,12 +6,11 @@ import { Item, Badge, Search } from './menu-item';
|
|
|
6
6
|
import { Subscription, Subject } from 'rxjs';
|
|
7
7
|
import { ClickOutsideService } from './click-outside.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
import * as i1 from "./
|
|
10
|
-
import * as i2 from "./
|
|
11
|
-
import * as i3 from "
|
|
12
|
-
import * as i4 from "@angular/
|
|
13
|
-
import * as i5 from "
|
|
14
|
-
import * as i6 from "./virtual-scroll/virtual-scroll";
|
|
9
|
+
import * as i1 from "./list-filter";
|
|
10
|
+
import * as i2 from "./menu-item";
|
|
11
|
+
import * as i3 from "@angular/common";
|
|
12
|
+
import * as i4 from "@angular/forms";
|
|
13
|
+
import * as i5 from "./virtual-scroll/virtual-scroll";
|
|
15
14
|
export declare const DROPDOWN_CONTROL_VALUE_ACCESSOR: any;
|
|
16
15
|
export declare const DROPDOWN_CONTROL_VALIDATION: any;
|
|
17
16
|
export declare class AngularMultiSelect implements OnInit, ControlValueAccessor, OnChanges, Validator, AfterViewChecked, OnDestroy {
|
|
@@ -131,6 +130,6 @@ export declare class AngularMultiSelect implements OnInit, ControlValueAccessor,
|
|
|
131
130
|
}
|
|
132
131
|
export declare class AngularMultiSelectModule {
|
|
133
132
|
static ɵfac: i0.ɵɵFactoryDeclaration<AngularMultiSelectModule, never>;
|
|
134
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AngularMultiSelectModule, [typeof AngularMultiSelect, typeof i1.
|
|
133
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AngularMultiSelectModule, [typeof AngularMultiSelect, typeof i1.ListFilterPipe, typeof i2.Item, typeof i2.TemplateRenderer, typeof i2.Badge, typeof i2.Search, typeof i2.CIcon], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.VirtualScrollerModule], [typeof AngularMultiSelect, typeof i1.ListFilterPipe, typeof i2.Item, typeof i2.TemplateRenderer, typeof i2.Badge, typeof i2.Search, typeof i2.CIcon]>;
|
|
135
134
|
static ɵinj: i0.ɵɵInjectorDeclaration<AngularMultiSelectModule>;
|
|
136
135
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "../../node_modules/ng-packagr/package.schema.json",
|
|
3
3
|
"name": "angular-multiselect3",
|
|
4
|
-
"version": "11.0.
|
|
4
|
+
"version": "11.0.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Pradeep Terli",
|
|
7
7
|
"description": "Angular Multiselct dropdown component library for Angular version 11, 10, 9,8,6,4 ",
|
package/public_api.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export { AngularMultiSelect } from './lib/multiselect.component';
|
|
2
|
-
export { ScrollDirective } from './lib/clickOutside';
|
|
3
2
|
export { ListFilterPipe } from './lib/list-filter';
|
|
4
3
|
export { Item } from './lib/menu-item';
|
|
5
4
|
export { TemplateRenderer, Badge, Search, CIcon } from './lib/menu-item';
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Directive, Output, EventEmitter, HostListener } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ScrollDirective {
|
|
4
|
-
scroll = new EventEmitter();
|
|
5
|
-
onClick(event, targetElement) {
|
|
6
|
-
this.scroll.emit(event);
|
|
7
|
-
}
|
|
8
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
9
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ScrollDirective, selector: "[scroll]", outputs: { scroll: "scroll" }, host: { listeners: { "scroll": "onClick($event)" } }, ngImport: i0 });
|
|
10
|
-
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
12
|
-
type: Directive,
|
|
13
|
-
args: [{
|
|
14
|
-
selector: '[scroll]',
|
|
15
|
-
}]
|
|
16
|
-
}], propDecorators: { scroll: [{
|
|
17
|
-
type: Output
|
|
18
|
-
}], onClick: [{
|
|
19
|
-
type: HostListener,
|
|
20
|
-
args: ['scroll', ['$event']]
|
|
21
|
-
}] } });
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpY2tPdXRzaWRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhcjItbXVsdGlzZWxlY3QtZHJvcGRvd24tbGliL3NyYy9saWIvY2xpY2tPdXRzaWRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLFlBQVksRUFBRSxZQUFZLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBSzlFLE1BQU0sT0FBTyxlQUFlO0lBRW5CLE1BQU0sR0FBRyxJQUFJLFlBQVksRUFBYyxDQUFDO0lBR3hDLE9BQU8sQ0FBQyxLQUFpQixFQUFFLGFBQTBCO1FBQzFELElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzFCLENBQUM7d0dBUFUsZUFBZTs0RkFBZixlQUFlOzs0RkFBZixlQUFlO2tCQUgzQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxVQUFVO2lCQUNyQjs4QkFHUSxNQUFNO3NCQURaLE1BQU07Z0JBSUEsT0FBTztzQkFEYixZQUFZO3VCQUFDLFFBQVEsRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgT3V0cHV0LCBFdmVudEVtaXR0ZXIsIEhvc3RMaXN0ZW5lciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbc2Nyb2xsXScsXG59KVxuZXhwb3J0IGNsYXNzIFNjcm9sbERpcmVjdGl2ZSB7XG4gIEBPdXRwdXQoKVxuICBwdWJsaWMgc2Nyb2xsID0gbmV3IEV2ZW50RW1pdHRlcjxNb3VzZUV2ZW50PigpO1xuXG4gIEBIb3N0TGlzdGVuZXIoJ3Njcm9sbCcsIFsnJGV2ZW50J10pXG4gIHB1YmxpYyBvbkNsaWNrKGV2ZW50OiBNb3VzZUV2ZW50LCB0YXJnZXRFbGVtZW50OiBIVE1MRWxlbWVudCk6IHZvaWQge1xuICAgIHRoaXMuc2Nyb2xsLmVtaXQoZXZlbnQpO1xuICB9XG59XG4iXX0=
|
package/lib/clickOutside.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScrollDirective {
|
|
4
|
-
scroll: EventEmitter<MouseEvent>;
|
|
5
|
-
onClick(event: MouseEvent, targetElement: HTMLElement): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollDirective, "[scroll]", never, {}, { "scroll": "scroll"; }, never, never, false, never>;
|
|
8
|
-
}
|