@ni/nimble-angular 16.0.14 → 16.0.16
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/directives/table-column/text/nimble-table-column-text.directive.d.ts +3 -1
- package/esm2020/directives/table-column/text/nimble-table-column-text.directive.mjs +14 -3
- package/fesm2015/ni-nimble-angular.mjs +13 -2
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +13 -2
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -7284,6 +7284,14 @@ class NimbleTableColumnTextDirective {
|
|
|
7284
7284
|
this.renderer = renderer;
|
|
7285
7285
|
this.elementRef = elementRef;
|
|
7286
7286
|
}
|
|
7287
|
+
get columnId() {
|
|
7288
|
+
return this.elementRef.nativeElement.columnId;
|
|
7289
|
+
}
|
|
7290
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
7291
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
7292
|
+
set columnId(value) {
|
|
7293
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'columnId', value);
|
|
7294
|
+
}
|
|
7287
7295
|
get fieldName() {
|
|
7288
7296
|
return this.elementRef.nativeElement.fieldName;
|
|
7289
7297
|
}
|
|
@@ -7300,13 +7308,16 @@ class NimbleTableColumnTextDirective {
|
|
|
7300
7308
|
}
|
|
7301
7309
|
}
|
|
7302
7310
|
NimbleTableColumnTextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnTextDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7303
|
-
NimbleTableColumnTextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnTextDirective, selector: "nimble-table-column-text", inputs: { fieldName: ["field-name", "fieldName"] }, ngImport: i0 });
|
|
7311
|
+
NimbleTableColumnTextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnTextDirective, selector: "nimble-table-column-text", inputs: { columnId: ["column-id", "columnId"], fieldName: ["field-name", "fieldName"] }, ngImport: i0 });
|
|
7304
7312
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnTextDirective, decorators: [{
|
|
7305
7313
|
type: Directive,
|
|
7306
7314
|
args: [{
|
|
7307
7315
|
selector: 'nimble-table-column-text'
|
|
7308
7316
|
}]
|
|
7309
|
-
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: {
|
|
7317
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { columnId: [{
|
|
7318
|
+
type: Input,
|
|
7319
|
+
args: ['column-id']
|
|
7320
|
+
}], fieldName: [{
|
|
7310
7321
|
type: Input,
|
|
7311
7322
|
args: ['field-name']
|
|
7312
7323
|
}] } });
|