@ag-grid-extension/angular
Advanced tools
Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "@ag-grid-extension/angular", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"peerDependencies": { | ||
@@ -5,0 +5,0 @@ "@angular/common": "^13.1.0", |
@@ -1,1 +0,1 @@ | ||
export * from './lib/directives/create-row'; | ||
export * from './lib/directives/creation-row'; |
@@ -5,15 +5,15 @@ # AgGridExtension | ||
### CreateRow | ||
### CreationRow | ||
Adds an empty create row at the bottom of the grid, for adding new rows. | ||
Adds an empty creation row at the bottom of the grid, for adding new rows. | ||
```ts | ||
// your.module.ts | ||
import { CreateRowModule } from '@ag-grid-extension/angular'; | ||
import { CreationRowModule } from '@ag-grid-extension/angular'; | ||
Input(): `idField` | ||
Output(): `createRowReady`, `rowAddedToGrid`, `rowCreated` | ||
Output(): `creationRowReady`, `rowAddedToGrid`, `rowCreated` | ||
@NgModule({ | ||
imports: [CreateRowModule], | ||
imports: [CreationRowModule], | ||
... | ||
@@ -25,3 +25,3 @@ }) | ||
// Optional outputs | ||
onCreateRowReady(event: CreationRowEvent){} | ||
onCreationRowReady(event: CreationRowEvent){} | ||
onRowAddedToGrid(event: CreationRowEvent){} | ||
@@ -34,5 +34,5 @@ onRowCreated(event: CreationRowEvent){} | ||
<ag-grid-angular | ||
createRow | ||
creationRow | ||
idField="id" | ||
(createRowReady)="onCreateRowReady($event)" | ||
(creationRowReady)="onCreationRowReady($event)" | ||
(rowAddedToGrid)="onRowAddedToGrid($event)" | ||
@@ -39,0 +39,0 @@ (rowCreated)="onRowCreated($event)" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
84053
22
671