@ni/nimble-angular 16.5.9 → 16.5.11
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 +6 -2
- package/esm2020/directives/table-column/text/nimble-table-column-text.directive.mjs +25 -3
- package/fesm2015/ni-nimble-angular.mjs +23 -1
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +23 -1
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -7799,9 +7799,25 @@ class NimbleTableColumnTextDirective extends NimbleTableColumnBaseDirective {
|
|
|
7799
7799
|
set minPixelWidth(value) {
|
|
7800
7800
|
this.renderer.setProperty(this.elementRef.nativeElement, 'minPixelWidth', toNullableNumberProperty(value));
|
|
7801
7801
|
}
|
|
7802
|
+
get groupIndex() {
|
|
7803
|
+
return this.elementRef.nativeElement.groupIndex;
|
|
7804
|
+
}
|
|
7805
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
7806
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
7807
|
+
set groupIndex(value) {
|
|
7808
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'groupIndex', toNullableNumberProperty(value));
|
|
7809
|
+
}
|
|
7810
|
+
get groupingDisabled() {
|
|
7811
|
+
return this.elementRef.nativeElement.groupingDisabled;
|
|
7812
|
+
}
|
|
7813
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
7814
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
7815
|
+
set groupingDisabled(value) {
|
|
7816
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'groupingDisabled', toBooleanProperty(value));
|
|
7817
|
+
}
|
|
7802
7818
|
}
|
|
7803
7819
|
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 });
|
|
7804
|
-
NimbleTableColumnTextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnTextDirective, selector: "nimble-table-column-text", inputs: { fieldName: ["field-name", "fieldName"], fractionalWidth: ["fractional-width", "fractionalWidth"], minPixelWidth: ["min-pixel-width", "minPixelWidth"] }, usesInheritance: true, ngImport: i0 });
|
|
7820
|
+
NimbleTableColumnTextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnTextDirective, selector: "nimble-table-column-text", inputs: { fieldName: ["field-name", "fieldName"], fractionalWidth: ["fractional-width", "fractionalWidth"], minPixelWidth: ["min-pixel-width", "minPixelWidth"], groupIndex: ["group-index", "groupIndex"], groupingDisabled: ["grouping-disabled", "groupingDisabled"] }, usesInheritance: true, ngImport: i0 });
|
|
7805
7821
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnTextDirective, decorators: [{
|
|
7806
7822
|
type: Directive,
|
|
7807
7823
|
args: [{
|
|
@@ -7816,6 +7832,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
7816
7832
|
}], minPixelWidth: [{
|
|
7817
7833
|
type: Input,
|
|
7818
7834
|
args: ['min-pixel-width']
|
|
7835
|
+
}], groupIndex: [{
|
|
7836
|
+
type: Input,
|
|
7837
|
+
args: ['group-index']
|
|
7838
|
+
}], groupingDisabled: [{
|
|
7839
|
+
type: Input,
|
|
7840
|
+
args: ['grouping-disabled']
|
|
7819
7841
|
}] } });
|
|
7820
7842
|
|
|
7821
7843
|
class NimbleTableColumnTextModule {
|