Skip to content

Commit a4a7385

Browse files
committed
chore(*): Remove additional input from README
1 parent 500839d commit a4a7385

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ All notable changes for each version of this project will be documented in this
2525
```
2626
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
2727
- **Breaking Change** - The following deprecated inputs have been removed
28-
- Inputs `showToolbar`, `toolbarTitle`, `columnHiding`, `columnHidingTitle`, `columnPinning`,
29-
`columnPinningTitle`, `pinnedColumnsText`.
28+
- Inputs `showToolbar`, `toolbarTitle`, `columnHiding`, `columnHidingTitle`, `hiddenColumnsText`,
29+
`columnPinning`, `columnPinningTitle`, `pinnedColumnsText`.
3030
Use `IgxGridToolbarComponent`, `IgxGridToolbarHidingComponent`, `IgxGridToolbarPinningComponent` instead.
3131
- `IgxColumnActionsComponent`
3232
- **Breaking Change** - The following input has been removed
33-
- Input `columns`. Use `igxGrid` input instead.
33+
- Input `columns`. Use `igxGrid` `columns` input instead.
3434
## 12.2.1
3535

3636
### New Features

projects/igniteui-angular/src/lib/grids/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ Below is the list of all inputs that the developers may set to configure the gri
196196
| `rowHeight` | number | Sets the row height. |
197197
| `columnWidth` | string | The default width of the `IgxGridComponent`'s columns. |
198198
|`primaryKey`| any | Property that sets the primary key of the `IgxGridComponent`. |
199-
|`toolbarTitle`| string | the toolbar's title. |
200199
|`exportExcel`| boolean | Returns whether the option for exporting to MS Excel is enabled or disabled. |
201200
|`exportCsv`| boolean | Returns whether the option for exporting to CSV is enabled or disabled.|
202201
|`exportText`| string | Returns the textual content for the main export button.|

projects/igniteui-angular/src/lib/grids/grid/grid-row-editing.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1511,6 +1511,7 @@ describe('IgxGrid - Row Editing #grid', () => {
15111511
});
15121512

15131513
it(`Hiding: Should show correct value when showing the column again`, waitForAsync(async () => {
1514+
fix.componentInstance.showToolbar = true;
15141515
fix.detectChanges();
15151516
await fix.whenStable();
15161517
fix.detectChanges();

projects/igniteui-angular/src/lib/grids/toolbar/grid-toolbar.component.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
</ng-template>
1313
<igx-grid-toolbar-actions *ngIf="!hasActions">
1414
<igx-grid-toolbar-advanced-filtering *ngIf="grid.allowAdvancedFiltering"></igx-grid-toolbar-advanced-filtering>
15-
<igx-grid-toolbar-hiding></igx-grid-toolbar-hiding>
16-
<igx-grid-toolbar-pinning></igx-grid-toolbar-pinning>
1715
<igx-grid-toolbar-exporter *ngIf="grid.exportExcel || grid.exportCsv" (exportStarted)="showProgress = true" (exportEnded)="showProgress = false">
1816
</igx-grid-toolbar-exporter>
1917
</igx-grid-toolbar-actions>

0 commit comments

Comments
 (0)