Add checkbox selection mode for tree table

pull/2157/head
Shubham Ranjan 2022-02-12 14:33:09 +05:30 committed by Tuğçe Küçükoğlu
parent 5cbd68d720
commit cc53fefbc9
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ type TreeTableSortModeType = 'single' | 'multiple' | undefined;
type TreeTableFilterMatchModeType = 'startsWith' | 'contains' | 'notContains' | 'endsWith' | 'equals' | 'notEquals' | 'in' | 'lt' | 'lte' | 'gt' | 'gte' | 'between' | 'dateIs' | 'dateIsNot' | 'dateBefore' | 'dateAfter' | undefined;
type TreeTableSelectionModeType = 'single' | 'multiple' | undefined;
type TreeTableSelectionModeType = 'single' | 'multiple' | 'checkbox' | undefined;
type TreeTableFilterModeType = 'lenient' | 'strict' | undefined;