igniteui-angular 16.0.25 → 16.0.27

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.
Files changed (26) hide show
  1. package/esm2022/lib/grids/columns/column-group.component.mjs +5 -1
  2. package/esm2022/lib/grids/columns/column.component.mjs +10 -2
  3. package/esm2022/lib/grids/common/grid.interface.mjs +1 -1
  4. package/esm2022/lib/grids/grid/grid-row.component.mjs +3 -3
  5. package/esm2022/lib/grids/grid-base.directive.mjs +3 -2
  6. package/esm2022/lib/grids/headers/grid-header-row.component.mjs +3 -3
  7. package/esm2022/lib/grids/headers/pipes.mjs +2 -3
  8. package/esm2022/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +18 -10
  9. package/esm2022/lib/grids/hierarchical-grid/hierarchical-row.component.mjs +3 -3
  10. package/esm2022/lib/grids/pivot-grid/pivot-header-row.component.mjs +3 -3
  11. package/esm2022/lib/grids/pivot-grid/pivot-row.component.mjs +3 -3
  12. package/esm2022/lib/grids/summaries/summary-row.component.mjs +3 -3
  13. package/esm2022/lib/grids/tree-grid/tree-grid-row.component.mjs +3 -3
  14. package/esm2022/lib/tree/public_api.mjs +5 -4
  15. package/esm2022/lib/tree/tree-node/tree-node.component.mjs +2 -2
  16. package/esm2022/lib/tree/tree.module.mjs +1 -1
  17. package/fesm2022/igniteui-angular.mjs +52 -31
  18. package/fesm2022/igniteui-angular.mjs.map +1 -1
  19. package/lib/grids/columns/column-group.component.d.ts +2 -0
  20. package/lib/grids/columns/column.component.d.ts +2 -0
  21. package/lib/grids/common/grid.interface.d.ts +5 -0
  22. package/lib/grids/grid-base.directive.d.ts +0 -1
  23. package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +3 -1
  24. package/lib/tree/public_api.d.ts +3 -3
  25. package/lib/tree/tree.module.d.ts +1 -1
  26. package/package.json +3 -5
@@ -196,6 +196,8 @@ export declare class IgxColumnGroupComponent extends IgxColumnComponent implemen
196
196
  */
197
197
  get width(): string;
198
198
  set width(val: string);
199
+ /** @hidden @internal **/
200
+ get resolvedWidth(): string;
199
201
  /**
200
202
  * @hidden
201
203
  */
@@ -663,6 +663,8 @@ export declare class IgxColumnComponent implements AfterContentInit, OnDestroy,
663
663
  */
664
664
  set minWidth(value: string);
665
665
  get minWidth(): string;
666
+ /** @hidden @internal **/
667
+ get resolvedWidth(): string;
666
668
  /**
667
669
  * Gets the column index.
668
670
  * ```typescript
@@ -136,6 +136,10 @@ export interface ColumnType extends FieldType {
136
136
  headerStyles: any;
137
137
  headerGroupClasses: any;
138
138
  headerGroupStyles: any;
139
+ /**
140
+ * Custom CSS styling, appplied to every column
141
+ * calcWidth, minWidthPx, maxWidthPx, minWidth, maxWidth, minWidthPercent, maxWidthPercent, resolvedWidth
142
+ */
139
143
  calcWidth: any;
140
144
  minWidthPx: number;
141
145
  maxWidthPx: number;
@@ -143,6 +147,7 @@ export interface ColumnType extends FieldType {
143
147
  maxWidth: string;
144
148
  minWidthPercent: number;
145
149
  maxWidthPercent: number;
150
+ resolvedWidth: string;
146
151
  header?: string;
147
152
  index: number;
148
153
  dataType: GridColumnDataType;
@@ -1,5 +1,4 @@
1
1
  import { AfterContentInit, AfterViewInit, ApplicationRef, ChangeDetectorRef, ComponentRef, DoCheck, ElementRef, EnvironmentInjector, EventEmitter, Injector, IterableDiffers, NgZone, OnDestroy, OnInit, QueryList, TemplateRef, ViewContainerRef } from '@angular/core';
2
- import 'igniteui-trial-watermark';
3
2
  import { Subject } from 'rxjs';
4
3
  import { PlatformUtil } from '../core/utils';
5
4
  import { FilteringLogic } from '../data-operations/filtering-expression.interface';
@@ -31,7 +31,8 @@ export declare class IgxChildGridRowComponent implements AfterViewInit, OnInit {
31
31
  * let selectedRowData = this.grid.selectedRows[0].data;
32
32
  * ```
33
33
  */
34
- data: any;
34
+ get data(): any;
35
+ set data(value: any);
35
36
  /**
36
37
  * The index of the row.
37
38
  *
@@ -81,6 +82,7 @@ export declare class IgxChildGridRowComponent implements AfterViewInit, OnInit {
81
82
  * ```
82
83
  */
83
84
  expanded: boolean;
85
+ private _data;
84
86
  constructor(gridAPI: IgxHierarchicalGridAPIService, element: ElementRef<HTMLElement>, cdr: ChangeDetectorRef);
85
87
  /**
86
88
  * @hidden
@@ -1,6 +1,6 @@
1
1
  import { IgxTreeNodeComponent, IgxTreeNodeLinkDirective } from './tree-node/tree-node.component';
2
- import { IgxTreeComponent } from './tree.component';
3
- export { IgxTreeComponent } from './tree.component';
2
+ import { IgxTreeComponent, IgxTreeExpandIndicatorDirective } from './tree.component';
3
+ export { IgxTreeComponent, IgxTreeExpandIndicatorDirective } from './tree.component';
4
4
  export * from './tree-node/tree-node.component';
5
5
  export { IgxTreeSearchResolver, ITreeNodeSelectionEvent, ITreeNodeEditingEvent, ITreeNodeEditedEvent, ITreeNodeTogglingEventArgs, ITreeNodeToggledEventArgs, IgxTreeSelectionType, IgxTree, IgxTreeNode } from './common';
6
- export declare const IGX_TREE_DIRECTIVES: readonly [typeof IgxTreeComponent, typeof IgxTreeNodeComponent, typeof IgxTreeNodeLinkDirective];
6
+ export declare const IGX_TREE_DIRECTIVES: readonly [typeof IgxTreeComponent, typeof IgxTreeNodeComponent, typeof IgxTreeNodeLinkDirective, typeof IgxTreeExpandIndicatorDirective];
@@ -7,6 +7,6 @@ import * as i2 from "./tree-node/tree-node.component";
7
7
  */
8
8
  export declare class IgxTreeModule {
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxTreeModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<IgxTreeModule, never, [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective], [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxTreeModule, never, [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective, typeof i1.IgxTreeExpandIndicatorDirective], [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective, typeof i1.IgxTreeExpandIndicatorDirective]>;
11
11
  static ɵinj: i0.ɵɵInjectorDeclaration<IgxTreeModule>;
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "16.0.25",
3
+ "version": "16.0.27",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -73,7 +73,7 @@
73
73
  "hammerjs": "^2.0.8",
74
74
  "fflate": "^0.7.3",
75
75
  "tslib": "^2.3.0",
76
- "igniteui-trial-watermark": "^1.0.3",
76
+ "igniteui-trial-watermark": "^3.0.2",
77
77
  "lodash-es": "^4.17.21",
78
78
  "uuid": "^9.0.0",
79
79
  "igniteui-theming": "^2.0.0",
@@ -92,9 +92,7 @@
92
92
  "migrations": "./migrations/migration-collection.json",
93
93
  "packageGroup": [
94
94
  "igniteui-angular",
95
- "@infragistics/igniteui-angular",
96
- "igniteui-angular-i18n",
97
- "@igniteui/angular-schematics"
95
+ "igniteui-angular-i18n"
98
96
  ]
99
97
  },
100
98
  "schematics": "./schematics/collection.json",