-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(grid): add grid row-selection templating #4998
- Loading branch information
1 parent
39b9431
commit 3c8c632
Showing
8 changed files
with
147 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
projects/igniteui-angular/src/lib/grids/igx-selection.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Directive, NgModule } from '@angular/core'; | ||
|
||
@Directive({ | ||
selector: '[igxRowSelector]' | ||
}) | ||
export class IgxRowSelectorDirective { | ||
} | ||
|
||
@Directive({ | ||
selector: '[igxHeadSelector]' | ||
}) | ||
export class IgxHeadSelectorDirective { | ||
} | ||
|
||
@NgModule({ | ||
declarations: [IgxRowSelectorDirective, IgxHeadSelectorDirective], | ||
exports: [IgxRowSelectorDirective, IgxHeadSelectorDirective] | ||
}) | ||
export class IgxSelectorsModule { | ||
} |
Oops, something went wrong.