@ni/nimble-angular 20.0.10 → 20.1.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.
@@ -216,6 +216,7 @@ import { RadioGroup } from '@ni/nimble-components/dist/esm/radio-group';
216
216
  export { Orientation, radioGroupTag } from '@ni/nimble-components/dist/esm/radio-group';
217
217
  export { radioTag } from '@ni/nimble-components/dist/esm/radio';
218
218
  export { selectTag } from '@ni/nimble-components/dist/esm/select';
219
+ export { FilterMode } from '@ni/nimble-components/dist/esm/select/types';
219
220
  export { spinnerTag } from '@ni/nimble-components/dist/esm/spinner';
220
221
  export { switchTag } from '@ni/nimble-components/dist/esm/switch';
221
222
  export { tabTag } from '@ni/nimble-components/dist/esm/tab';
@@ -9261,6 +9262,12 @@ class NimbleSelectDirective {
9261
9262
  set appearance(value) {
9262
9263
  this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
9263
9264
  }
9265
+ get filterMode() {
9266
+ return this.elementRef.nativeElement.filterMode;
9267
+ }
9268
+ set filterMode(value) {
9269
+ this.renderer.setProperty(this.elementRef.nativeElement, 'filterMode', value);
9270
+ }
9264
9271
  get disabled() {
9265
9272
  return this.elementRef.nativeElement.disabled;
9266
9273
  }
@@ -9281,7 +9288,7 @@ class NimbleSelectDirective {
9281
9288
  }
9282
9289
  }
9283
9290
  NimbleSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleSelectDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
9284
- NimbleSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleSelectDirective, selector: "nimble-select", inputs: { appearance: "appearance", disabled: "disabled", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"] }, ngImport: i0 });
9291
+ NimbleSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleSelectDirective, selector: "nimble-select", inputs: { appearance: "appearance", filterMode: ["filter-mode", "filterMode"], disabled: "disabled", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"] }, ngImport: i0 });
9285
9292
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleSelectDirective, decorators: [{
9286
9293
  type: Directive,
9287
9294
  args: [{
@@ -9289,6 +9296,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9289
9296
  }]
9290
9297
  }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
9291
9298
  type: Input
9299
+ }], filterMode: [{
9300
+ type: Input,
9301
+ args: ['filter-mode']
9292
9302
  }], disabled: [{
9293
9303
  type: Input
9294
9304
  }], errorText: [{