ng-jvx-multiselect 1.2.8 → 1.3.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 (39) hide show
  1. package/README.md +1 -0
  2. package/esm2020/lib/directives/ng-jvx-disabled-option.directive.mjs +3 -3
  3. package/esm2020/lib/directives/ng-jvx-focus.directive.mjs +3 -3
  4. package/esm2020/lib/directives/ng-jvx-group-header.directive.mjs +3 -3
  5. package/esm2020/lib/directives/ng-jvx-options-template.directive.mjs +3 -3
  6. package/esm2020/lib/directives/ng-jvx-selection-template.directive.mjs +3 -3
  7. package/esm2020/lib/ng-jvx-multiselect.component.mjs +28 -21
  8. package/esm2020/lib/ng-jvx-multiselect.module.mjs +11 -14
  9. package/esm2020/lib/ng-jvx-multiselect.service.mjs +3 -3
  10. package/esm2020/lib/ng-jvx-option/ng-jvx-option.component.mjs +5 -5
  11. package/fesm2015/ng-jvx-multiselect.mjs +78 -112
  12. package/fesm2015/ng-jvx-multiselect.mjs.map +1 -1
  13. package/fesm2020/ng-jvx-multiselect.mjs +78 -110
  14. package/fesm2020/ng-jvx-multiselect.mjs.map +1 -1
  15. package/lib/directives/ng-jvx-disabled-option.directive.d.ts +1 -1
  16. package/lib/directives/ng-jvx-disabled-option.directive.d.ts.map +1 -0
  17. package/lib/directives/ng-jvx-focus.directive.d.ts +1 -1
  18. package/lib/directives/ng-jvx-focus.directive.d.ts.map +1 -0
  19. package/lib/directives/ng-jvx-group-header.directive.d.ts +1 -1
  20. package/lib/directives/ng-jvx-group-header.directive.d.ts.map +1 -0
  21. package/lib/directives/ng-jvx-options-template.directive.d.ts +1 -1
  22. package/lib/directives/ng-jvx-options-template.directive.d.ts.map +1 -0
  23. package/lib/directives/ng-jvx-selection-template.directive.d.ts +1 -1
  24. package/lib/directives/ng-jvx-selection-template.directive.d.ts.map +1 -0
  25. package/lib/interfaces/ng-jvx-group-mapper.d.ts.map +1 -0
  26. package/lib/interfaces/ng-jvx-option-mapper.d.ts.map +1 -0
  27. package/lib/interfaces/ng-jvx-search-mapper.d.ts.map +1 -0
  28. package/lib/ng-jvx-multiselect.component.d.ts +5 -4
  29. package/lib/ng-jvx-multiselect.component.d.ts.map +1 -0
  30. package/lib/ng-jvx-multiselect.module.d.ts +16 -17
  31. package/lib/ng-jvx-multiselect.module.d.ts.map +1 -0
  32. package/lib/ng-jvx-multiselect.service.d.ts.map +1 -0
  33. package/lib/ng-jvx-option/ng-jvx-option.component.d.ts +2 -2
  34. package/lib/ng-jvx-option/ng-jvx-option.component.d.ts.map +1 -0
  35. package/lib/utils.d.ts.map +1 -0
  36. package/ng-jvx-multiselect.d.ts.map +1 -0
  37. package/package.json +8 -8
  38. package/public-api.d.ts.map +1 -0
  39. package/src/lib/ng-jvx-multiselect.component.scss +22 -2
package/README.md CHANGED
@@ -93,6 +93,7 @@ In <b>example.component.ts</b>
93
93
  | Name | Type | Default | Description |
94
94
  |------------------|----------------------------------------------------------|------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
95
95
  | `clearable` | `Boolean` | `false` | True to enable the empty selection. |
96
+ | `closeButton` | `Boolean` | `false` | True to show the button that closes the menu. |
96
97
  | `disabled` | `Boolean` | `false` | True to disable the select. |
97
98
  | `itemText` | `String` | `'text'` | The name of the property of the option object that will be displayed as description of the options. |
98
99
  | `itemValue` | `String` | `'value'` | The name of the property of the option object that will be treated as value of the options. |
@@ -35,9 +35,9 @@ export class NgJvxDisabledOptionDirective {
35
35
  this.unsubs.complete();
36
36
  }
37
37
  }
38
- NgJvxDisabledOptionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxDisabledOptionDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
39
- NgJvxDisabledOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: NgJvxDisabledOptionDirective, selector: "[ngJvxDisabledOption]", inputs: { ngJvxDisabledOption: "ngJvxDisabledOption" }, ngImport: i0 });
40
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxDisabledOptionDirective, decorators: [{
38
+ NgJvxDisabledOptionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxDisabledOptionDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
39
+ NgJvxDisabledOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: NgJvxDisabledOptionDirective, selector: "[ngJvxDisabledOption]", inputs: { ngJvxDisabledOption: "ngJvxDisabledOption" }, ngImport: i0 });
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxDisabledOptionDirective, decorators: [{
41
41
  type: Directive,
42
42
  args: [{
43
43
  // tslint:disable-next-line:directive-selector
@@ -15,9 +15,9 @@ export class NgJvxFocusDirective {
15
15
  }
16
16
  }
17
17
  }
18
- NgJvxFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
19
- NgJvxFocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: NgJvxFocusDirective, selector: "[ngJvxFocus]", inputs: { ngJvxFocus: "ngJvxFocus" }, usesOnChanges: true, ngImport: i0 });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxFocusDirective, decorators: [{
18
+ NgJvxFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
19
+ NgJvxFocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: NgJvxFocusDirective, selector: "[ngJvxFocus]", inputs: { ngJvxFocus: "ngJvxFocus" }, usesOnChanges: true, ngImport: i0 });
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxFocusDirective, decorators: [{
21
21
  type: Directive,
22
22
  args: [{
23
23
  // tslint:disable-next-line:directive-selector
@@ -11,9 +11,9 @@ export class NgJvxGroupHeaderDirective {
11
11
  }
12
12
  }
13
13
  }
14
- NgJvxGroupHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxGroupHeaderDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
15
- NgJvxGroupHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: NgJvxGroupHeaderDirective, selector: "[ngJvxGroupHeader]", inputs: { ngJvxGroupHeaderOf: "ngJvxGroupHeaderOf" }, ngImport: i0 });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxGroupHeaderDirective, decorators: [{
14
+ NgJvxGroupHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxGroupHeaderDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
15
+ NgJvxGroupHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: NgJvxGroupHeaderDirective, selector: "[ngJvxGroupHeader]", inputs: { ngJvxGroupHeaderOf: "ngJvxGroupHeaderOf" }, ngImport: i0 });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxGroupHeaderDirective, decorators: [{
17
17
  type: Directive,
18
18
  args: [{
19
19
  // tslint:disable-next-line:directive-selector
@@ -12,9 +12,9 @@ export class NgJvxOptionsTemplateDirective {
12
12
  }
13
13
  }
14
14
  }
15
- NgJvxOptionsTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxOptionsTemplateDirective, deps: [{ token: i0.ElementRef }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
16
- NgJvxOptionsTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: NgJvxOptionsTemplateDirective, selector: "[ngJvxOptionsTemplate]", inputs: { ngJvxOptionsTemplateOf: "ngJvxOptionsTemplateOf" }, ngImport: i0 });
17
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxOptionsTemplateDirective, decorators: [{
15
+ NgJvxOptionsTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxOptionsTemplateDirective, deps: [{ token: i0.ElementRef }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
16
+ NgJvxOptionsTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: NgJvxOptionsTemplateDirective, selector: "[ngJvxOptionsTemplate]", inputs: { ngJvxOptionsTemplateOf: "ngJvxOptionsTemplateOf" }, ngImport: i0 });
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxOptionsTemplateDirective, decorators: [{
18
18
  type: Directive,
19
19
  args: [{
20
20
  // tslint:disable-next-line:directive-selector
@@ -11,9 +11,9 @@ export class NgJvxSelectionTemplateDirective {
11
11
  }
12
12
  }
13
13
  }
14
- NgJvxSelectionTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxSelectionTemplateDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
15
- NgJvxSelectionTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: NgJvxSelectionTemplateDirective, selector: "[ngJvxSelectionTemplate]", inputs: { ngJvxSelectionTemplateOf: "ngJvxSelectionTemplateOf" }, ngImport: i0 });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: NgJvxSelectionTemplateDirective, decorators: [{
14
+ NgJvxSelectionTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxSelectionTemplateDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
15
+ NgJvxSelectionTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: NgJvxSelectionTemplateDirective, selector: "[ngJvxSelectionTemplate]", inputs: { ngJvxSelectionTemplateOf: "ngJvxSelectionTemplateOf" }, ngImport: i0 });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgJvxSelectionTemplateDirective, decorators: [{
17
17
  type: Directive,
18
18
  args: [{
19
19
  // tslint:disable-next-line:directive-selector