-
Notifications
You must be signed in to change notification settings - Fork 159
fix(grid): strict string typing the grid paging mode #15706
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
@@ -708,47 +708,4 @@ export class CsvExportComponent { | |||
) | |||
).toEqual(expectedContent); | |||
}); | |||
|
|||
it('should update GridPagingMode enum from lowerCase to TitleCase', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assuming these don't work because the resolution is based on the TypeScript LS checking GridPagingMode
and verifying it's an igniteui-angular export, the member is based pure string match. Perhaps we have a class declaration or enum filter that fails the check for the new const. Might want to check, even though not really critical for this PR
projects/igniteui-angular/src/lib/grids/columns/column.component.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ChronosSF Also changelog, since it should be noted the input on the grid can now be set in markup directly as 'remote'
instead of importing in the enum (requires extra prop/code).
Otherwise, LGTM.
No description provided.