@ni/nimble-angular 16.1.1 → 16.1.3
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/base/nimble-table-column-base.directive.d.ts +4 -1
- package/esm2020/directives/table-column/base/nimble-table-column-base.directive.mjs +14 -2
- package/fesm2015/ni-nimble-angular.mjs +12 -1
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +12 -1
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -7402,9 +7402,17 @@ class NimbleTableColumnBaseDirective {
|
|
|
7402
7402
|
set actionMenuLabel(value) {
|
|
7403
7403
|
this.renderer.setProperty(this.elementRef.nativeElement, 'actionMenuLabel', value);
|
|
7404
7404
|
}
|
|
7405
|
+
get columnHidden() {
|
|
7406
|
+
return this.elementRef.nativeElement.columnHidden;
|
|
7407
|
+
}
|
|
7408
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
7409
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
7410
|
+
set columnHidden(value) {
|
|
7411
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'columnHidden', toBooleanProperty(value));
|
|
7412
|
+
}
|
|
7405
7413
|
}
|
|
7406
7414
|
NimbleTableColumnBaseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnBaseDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7407
|
-
NimbleTableColumnBaseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnBaseDirective, inputs: { columnId: ["column-id", "columnId"], actionMenuSlot: ["action-menu-slot", "actionMenuSlot"], actionMenuLabel: ["action-menu-label", "actionMenuLabel"] }, ngImport: i0 });
|
|
7415
|
+
NimbleTableColumnBaseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnBaseDirective, inputs: { columnId: ["column-id", "columnId"], actionMenuSlot: ["action-menu-slot", "actionMenuSlot"], actionMenuLabel: ["action-menu-label", "actionMenuLabel"], columnHidden: ["column-hidden", "columnHidden"] }, ngImport: i0 });
|
|
7408
7416
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnBaseDirective, decorators: [{
|
|
7409
7417
|
type: Directive
|
|
7410
7418
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { columnId: [{
|
|
@@ -7416,6 +7424,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
7416
7424
|
}], actionMenuLabel: [{
|
|
7417
7425
|
type: Input,
|
|
7418
7426
|
args: ['action-menu-label']
|
|
7427
|
+
}], columnHidden: [{
|
|
7428
|
+
type: Input,
|
|
7429
|
+
args: ['column-hidden']
|
|
7419
7430
|
}] } });
|
|
7420
7431
|
|
|
7421
7432
|
/**
|