igniteui-angular 22.0.0-rc.2 → 22.0.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.
- package/fesm2022/igniteui-angular-grids-core.mjs +10 -1
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/package.json +2 -2
- package/skills/igniteui-angular-grids/references/sizing.md +1 -0
- package/skills/igniteui-angular-grids/references/structure.md +1 -0
- package/skills/igniteui-angular-grids/references/types.md +2 -1
- package/types/igniteui-angular-grids-core.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "22.0.0
|
|
3
|
+
"version": "22.0.0",
|
|
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",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
"igxDevDependencies": {
|
|
107
|
-
"@igniteui/angular-schematics": "~22.0.
|
|
107
|
+
"@igniteui/angular-schematics": "~22.0.1540"
|
|
108
108
|
},
|
|
109
109
|
"ng-update": {
|
|
110
110
|
"migrations": "./migrations/migration-collection.json",
|
|
@@ -212,3 +212,4 @@ igx-grid {
|
|
|
212
212
|
- Use `null` for height only when the data set is small; row virtualization is disabled and large data will hurt performance.
|
|
213
213
|
- When using percentage height, the parent **must** have an explicit height for the percentage to resolve correctly. Without it, the grid falls back to 10 visible rows.
|
|
214
214
|
- A mix of fixed-width and auto-sized columns is valid — auto-sized columns fill the remaining space after fixed-width columns are laid out.
|
|
215
|
+
- **Omit `width` on generated columns.** No `width` = columns equally share available grid width. Pixel widths leave empty space when their sum is less than the grid width. Only set `width` when the user explicitly asks for it. If column widths are used, at least one column must not have a specified width so that it fills the remaining space in the grid.
|
|
@@ -263,6 +263,7 @@ Events: `(rowSelectionChanging)`, `(columnSelectionChanging)`, `(selected)` (cel
|
|
|
263
263
|
6. **Set `dataType` on every column** for correct filtering, sorting, editing, and summaries
|
|
264
264
|
7. **Use signals** for data binding — `[data]="myData()"` with `signal<T[]>([])`
|
|
265
265
|
8. **Virtualization is automatic** — don't wrap grids in virtual scroll containers
|
|
266
|
+
9. **Omit `width` on generated `<igx-column>` elements.** Columns without `width` equally share available grid width. Only set `width` when the user explicitly asks for fixed or percentage column sizing. If column widths are used, at least one column must not have a specified width so that it fills the remaining space in the grid.
|
|
266
267
|
|
|
267
268
|
## See Also
|
|
268
269
|
|
|
@@ -247,7 +247,7 @@ Columns use `<igx-grid-lite-column>` with these inputs:
|
|
|
247
247
|
| `field` | `string` | Data property key (required) |
|
|
248
248
|
| `dataType` | `'string' \| 'number' \| 'boolean' \| 'date'` | Column data type |
|
|
249
249
|
| `header` | `string` | Header text |
|
|
250
|
-
| `width` | `string` | CSS width (e.g
|
|
250
|
+
| `width` | `string` | CSS width — omit by default; columns auto-fill available grid space. Only set when a fixed or percentage width is explicitly needed (e.g. `'20%'`). |
|
|
251
251
|
| `hidden` | `boolean` | Hide the column |
|
|
252
252
|
| `resizable` | `boolean` | Allow column resizing |
|
|
253
253
|
| `sortable` | `boolean` | Enable sorting |
|
|
@@ -487,6 +487,7 @@ Provide a drag-and-drop UI for users to reshape the pivot interactively:
|
|
|
487
487
|
2. **Hierarchical Grid**: sorting/filtering/paging are independent per level; configure features on the `<igx-row-island>` blueprint
|
|
488
488
|
3. **Pivot Grid is read-only** — editing, paging, pinning, column moving, row dragging are all disabled; use `pivotConfiguration` for all data operations
|
|
489
489
|
4. **Grid Lite requires `CUSTOM_ELEMENTS_SCHEMA`** and `igniteui-grid-lite` npm package — it has no editing, selection, paging, or export
|
|
490
|
+
5. **Omit `width` on generated `<igx-grid-lite-column>` elements.** Columns without `width` equally share available grid width. Only set `width` when the user explicitly asks for it. If column widths are used, at least one column must not have a specified width so that it fills the remaining space in the grid.
|
|
490
491
|
|
|
491
492
|
## See Also
|
|
492
493
|
|
|
@@ -6155,6 +6155,7 @@ declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDestroy {
|
|
|
6155
6155
|
private onActionKeyDown;
|
|
6156
6156
|
private navigateItem;
|
|
6157
6157
|
private isIndexOutOfBounds;
|
|
6158
|
+
private isTreeGridWithGroupBy;
|
|
6158
6159
|
private isRemote;
|
|
6159
6160
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxExcelStyleSearchComponent, never>;
|
|
6160
6161
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxExcelStyleSearchComponent, "igx-excel-style-search", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|