@ni/nimble-angular 17.2.11 → 17.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.
@@ -8226,9 +8226,21 @@ class NimbleThemeProviderDirective {
8226
8226
  set theme(value) {
8227
8227
  this.renderer.setProperty(this.elementRef.nativeElement, 'theme', value);
8228
8228
  }
8229
+ get lang() {
8230
+ return this.elementRef.nativeElement.lang;
8231
+ }
8232
+ set lang(value) {
8233
+ this.renderer.setProperty(this.elementRef.nativeElement, 'lang', value);
8234
+ }
8235
+ get validity() {
8236
+ return this.elementRef.nativeElement.validity;
8237
+ }
8238
+ checkValidity() {
8239
+ return this.elementRef.nativeElement.checkValidity();
8240
+ }
8229
8241
  }
8230
8242
  NimbleThemeProviderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleThemeProviderDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
8231
- NimbleThemeProviderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: NimbleThemeProviderDirective, selector: "nimble-theme-provider", inputs: { theme: "theme" }, ngImport: i0 });
8243
+ NimbleThemeProviderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: NimbleThemeProviderDirective, selector: "nimble-theme-provider", inputs: { theme: "theme", lang: "lang" }, ngImport: i0 });
8232
8244
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleThemeProviderDirective, decorators: [{
8233
8245
  type: Directive,
8234
8246
  args: [{
@@ -8236,6 +8248,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
8236
8248
  }]
8237
8249
  }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { theme: [{
8238
8250
  type: Input
8251
+ }], lang: [{
8252
+ type: Input
8239
8253
  }] } });
8240
8254
 
8241
8255
  class NimbleThemeProviderModule {