igniteui-angular-data-grids 19.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2308) hide show
  1. package/License +27 -0
  2. package/README.md +22 -0
  3. package/bundles/igniteui-angular-data-grids.umd.js +108284 -0
  4. package/bundles/igniteui-angular-data-grids.umd.min.js +7 -0
  5. package/esm2015/igniteui-angular-data-grids.js +4 -0
  6. package/esm2015/lib/AccessibilityRow.js +105 -0
  7. package/esm2015/lib/ActivationManager.js +7 -0
  8. package/esm2015/lib/ApplyButtonClickEventArgs.js +16 -0
  9. package/esm2015/lib/BaseEditorView.js +205 -0
  10. package/esm2015/lib/BrowserExecutionContext.js +51 -0
  11. package/esm2015/lib/BrowserPixelConverter.js +20 -0
  12. package/esm2015/lib/BrowserTickProvider.js +64 -0
  13. package/esm2015/lib/CalculationParameters.js +34 -0
  14. package/esm2015/lib/CancelButtonClickEventArgs.js +16 -0
  15. package/esm2015/lib/CanvasCellPresenterBase.js +70 -0
  16. package/esm2015/lib/CanvasContentCellModelHelper.js +81 -0
  17. package/esm2015/lib/CanvasDateTimeCell.js +20 -0
  18. package/esm2015/lib/CanvasDateTimeCellPresenter.js +45 -0
  19. package/esm2015/lib/CanvasGridCellBase.js +764 -0
  20. package/esm2015/lib/CanvasImageCell.js +66 -0
  21. package/esm2015/lib/CanvasImageCellPresenter.js +90 -0
  22. package/esm2015/lib/CanvasNumericCell.js +22 -0
  23. package/esm2015/lib/CanvasNumericCellPresenter.js +45 -0
  24. package/esm2015/lib/CanvasPlaceholderView.js +62 -0
  25. package/esm2015/lib/CanvasRowSeparatorCell.js +20 -0
  26. package/esm2015/lib/CanvasRowSeparatorCellPresenter.js +23 -0
  27. package/esm2015/lib/CanvasSectionHeaderCell.js +25 -0
  28. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +51 -0
  29. package/esm2015/lib/CanvasSummaryCell.js +98 -0
  30. package/esm2015/lib/CanvasSummaryCellPresenter.js +42 -0
  31. package/esm2015/lib/CanvasTemplateCell.js +32 -0
  32. package/esm2015/lib/CanvasTemplateCellContainer.js +32 -0
  33. package/esm2015/lib/CanvasTemplateCellPresenter.js +38 -0
  34. package/esm2015/lib/CanvasTemplateHeaderCell.js +32 -0
  35. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +38 -0
  36. package/esm2015/lib/CanvasTextCell.js +25 -0
  37. package/esm2015/lib/CanvasTextCellPresenter.js +47 -0
  38. package/esm2015/lib/CanvasTextHeaderCell.js +57 -0
  39. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +69 -0
  40. package/esm2015/lib/CanvasVerticalSeparatorCell.js +20 -0
  41. package/esm2015/lib/CanvasVerticalSeparatorCellPresenter.js +23 -0
  42. package/esm2015/lib/CellContentHorizontalAlignment.js +37 -0
  43. package/esm2015/lib/CellContentVerticalAlignment.js +37 -0
  44. package/esm2015/lib/CellDataLoadedAnimationMode.js +29 -0
  45. package/esm2015/lib/CellEffect.js +7 -0
  46. package/esm2015/lib/CellKey.js +7 -0
  47. package/esm2015/lib/CellModel.js +7 -0
  48. package/esm2015/lib/CellModelExport.js +116 -0
  49. package/esm2015/lib/CellPath.js +232 -0
  50. package/esm2015/lib/CellPositionEffect.js +7 -0
  51. package/esm2015/lib/CellPresenterBase.js +100 -0
  52. package/esm2015/lib/CellPropertyAnimationType.js +65 -0
  53. package/esm2015/lib/CellRange.js +64 -0
  54. package/esm2015/lib/CellSelectionAnimationMode.js +29 -0
  55. package/esm2015/lib/CellStyleRequestedEventArgs.js +40 -0
  56. package/esm2015/lib/CheckboxList.js +7 -0
  57. package/esm2015/lib/CheckboxListBridge.js +281 -0
  58. package/esm2015/lib/CheckboxListExternal.js +11 -0
  59. package/esm2015/lib/CheckboxListExternalIndexType.js +11 -0
  60. package/esm2015/lib/CheckboxListExternalIndexTypeChangedEventArgs.js +21 -0
  61. package/esm2015/lib/CheckboxListExternalKeysClearedEventArgs.js +16 -0
  62. package/esm2015/lib/CheckboxListIndexType.js +16 -0
  63. package/esm2015/lib/CheckboxListIndexTypeChangedEventArgs.js +21 -0
  64. package/esm2015/lib/CheckboxListKeysClearedEventArgs.js +16 -0
  65. package/esm2015/lib/CheckboxListView.js +7 -0
  66. package/esm2015/lib/CheckboxListViewExternal.js +11 -0
  67. package/esm2015/lib/CheckboxListView_combined.js +1945 -0
  68. package/esm2015/lib/CheckedChangedEventArgs.js +22 -0
  69. package/esm2015/lib/CloneDataSourceFilterOperation.js +20 -0
  70. package/esm2015/lib/ColumnCellsEffect.js +7 -0
  71. package/esm2015/lib/ColumnChooser.js +7 -0
  72. package/esm2015/lib/ColumnChooserInfo.js +21 -0
  73. package/esm2015/lib/ColumnChooserView.js +7 -0
  74. package/esm2015/lib/ColumnChooserView_combined.js +375 -0
  75. package/esm2015/lib/ColumnComparisonConditionOperatorType.js +62 -0
  76. package/esm2015/lib/ColumnComparisonFilterCondition.js +7 -0
  77. package/esm2015/lib/ColumnController.js +7 -0
  78. package/esm2015/lib/ColumnCustomFilterCondition.js +7 -0
  79. package/esm2015/lib/ColumnEffect.js +7 -0
  80. package/esm2015/lib/ColumnExchanger.js +7 -0
  81. package/esm2015/lib/ColumnExchangersCollection.js +7 -0
  82. package/esm2015/lib/ColumnExchangingAnimationMode.js +61 -0
  83. package/esm2015/lib/ColumnFilterCondition.js +7 -0
  84. package/esm2015/lib/ColumnFilterConditionCollection.js +7 -0
  85. package/esm2015/lib/ColumnFilterConditionGroup.js +7 -0
  86. package/esm2015/lib/ColumnFilterCondition_combined.js +32433 -0
  87. package/esm2015/lib/ColumnGroupDescription.js +176 -0
  88. package/esm2015/lib/ColumnGroupDescriptionCollection.js +90 -0
  89. package/esm2015/lib/ColumnGrouping.js +7 -0
  90. package/esm2015/lib/ColumnGroupingView.js +7 -0
  91. package/esm2015/lib/ColumnGroupingView_combined.js +987 -0
  92. package/esm2015/lib/ColumnGroupingVisualModelExport.js +85 -0
  93. package/esm2015/lib/ColumnHiddenChangedEventArgs.js +7 -0
  94. package/esm2015/lib/ColumnHidingAnimationMode.js +61 -0
  95. package/esm2015/lib/ColumnInfo.js +7 -0
  96. package/esm2015/lib/ColumnMovingAnimationMode.js +29 -0
  97. package/esm2015/lib/ColumnMovingMode.js +16 -0
  98. package/esm2015/lib/ColumnMovingSeparator.js +7 -0
  99. package/esm2015/lib/ColumnOptionsIconAlignment.js +29 -0
  100. package/esm2015/lib/ColumnOptionsIconBehavior.js +33 -0
  101. package/esm2015/lib/ColumnOptionsToolbarManagerOpeningEventArgs.js +16 -0
  102. package/esm2015/lib/ColumnPinnedChangedEventArgs.js +7 -0
  103. package/esm2015/lib/ColumnPinning.js +7 -0
  104. package/esm2015/lib/ColumnPinningInfo.js +21 -0
  105. package/esm2015/lib/ColumnPinningView.js +7 -0
  106. package/esm2015/lib/ColumnPinningView_combined.js +356 -0
  107. package/esm2015/lib/ColumnPropertySetter.js +37 -0
  108. package/esm2015/lib/ColumnPropertySettersCollection.js +21 -0
  109. package/esm2015/lib/ColumnPropertyUpdatingAnimationMode.js +33 -0
  110. package/esm2015/lib/ColumnResizingAnimationMode.js +29 -0
  111. package/esm2015/lib/ColumnResizingMode.js +17 -0
  112. package/esm2015/lib/ColumnResizingSeparator.js +7 -0
  113. package/esm2015/lib/ColumnShowingAnimationMode.js +61 -0
  114. package/esm2015/lib/ColumnSortDescription.js +61 -0
  115. package/esm2015/lib/ColumnSortDescriptionCollection.js +90 -0
  116. package/esm2015/lib/ColumnSortDirection.js +29 -0
  117. package/esm2015/lib/ColumnStates.js +11 -0
  118. package/esm2015/lib/ColumnSummaryDescription.js +220 -0
  119. package/esm2015/lib/ColumnSummaryDescriptionCollection.js +96 -0
  120. package/esm2015/lib/ColumnWidth.js +100 -0
  121. package/esm2015/lib/ComboBoxColumn.js +7 -0
  122. package/esm2015/lib/ComboEditorView.js +260 -0
  123. package/esm2015/lib/ComboEditorView_ComboExternal.js +11 -0
  124. package/esm2015/lib/ComparisonOperatorSelector.js +7 -0
  125. package/esm2015/lib/ComparisonOperatorSelectorView.js +7 -0
  126. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +887 -0
  127. package/esm2015/lib/ContentCellModelHelper.js +129 -0
  128. package/esm2015/lib/CurrentRendererSettings.js +23 -0
  129. package/esm2015/lib/DataAdapter.js +7 -0
  130. package/esm2015/lib/DataBindingEventArgs.js +7 -0
  131. package/esm2015/lib/DataGrid.js +7 -0
  132. package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +187 -0
  133. package/esm2015/lib/DataGridCellEventArgs.js +7 -0
  134. package/esm2015/lib/DataGridCellLayoutPanel.js +550 -0
  135. package/esm2015/lib/DataGridColumn.js +7 -0
  136. package/esm2015/lib/DataGridColumnToolbarManager.js +7 -0
  137. package/esm2015/lib/DataGridDelayedExecutionManager.js +28 -0
  138. package/esm2015/lib/DataGridLocaleEn.js +67 -0
  139. package/esm2015/lib/DataGridPresenterManager.js +181 -0
  140. package/esm2015/lib/DataGridPropertySetter.js +23 -0
  141. package/esm2015/lib/DataGridScrollerKeyboardListener.js +67 -0
  142. package/esm2015/lib/DataGridSelectionMode.js +41 -0
  143. package/esm2015/lib/DataGridStylingDefaults.js +2 -0
  144. package/esm2015/lib/DataGridToolbar.js +7 -0
  145. package/esm2015/lib/DataGridToolbarView.js +7 -0
  146. package/esm2015/lib/DataGridToolbarView_combined.js +783 -0
  147. package/esm2015/lib/DataGridViewportManager.js +32 -0
  148. package/esm2015/lib/DataSourceNotificationBridge.js +7 -0
  149. package/esm2015/lib/DateEditorView.js +222 -0
  150. package/esm2015/lib/DateOperatorTypes.js +11 -0
  151. package/esm2015/lib/DateTimeCell.js +20 -0
  152. package/esm2015/lib/DateTimeCellModel.js +7 -0
  153. package/esm2015/lib/DateTimeCellModelExport.js +30 -0
  154. package/esm2015/lib/DateTimeCellPresenter.js +45 -0
  155. package/esm2015/lib/DateTimeColumn.js +7 -0
  156. package/esm2015/lib/DateTimeColumnValueFormatter.js +96 -0
  157. package/esm2015/lib/DateTimeFormats.js +41 -0
  158. package/esm2015/lib/DefaultCellActionManager.js +7 -0
  159. package/esm2015/lib/DefaultCellModelExportUpdater.js +7 -0
  160. package/esm2015/lib/DefaultGridInfoRequestor.js +7 -0
  161. package/esm2015/lib/DefaultPlatformPixelConverter.js +20 -0
  162. package/esm2015/lib/DefinitionBase.js +7 -0
  163. package/esm2015/lib/DefinitionPropertyUpdatedEventArgs.js +47 -0
  164. package/esm2015/lib/DragSelectEventArgs.js +54 -0
  165. package/esm2015/lib/DragType.js +11 -0
  166. package/esm2015/lib/Dragger.js +186 -0
  167. package/esm2015/lib/DraggerView.js +139 -0
  168. package/esm2015/lib/DropDownDataListItem.js +21 -0
  169. package/esm2015/lib/EditModeClickAction.js +29 -0
  170. package/esm2015/lib/EditModeType.js +33 -0
  171. package/esm2015/lib/EditRowDefinition.js +7 -0
  172. package/esm2015/lib/EditingManager.js +7 -0
  173. package/esm2015/lib/EditorCell.js +501 -0
  174. package/esm2015/lib/EditorCellModel.js +7 -0
  175. package/esm2015/lib/EditorCellModelExport.js +35 -0
  176. package/esm2015/lib/EditorCellPresenter.js +73 -0
  177. package/esm2015/lib/EditorDefinition.js +7 -0
  178. package/esm2015/lib/EditorRowCell.js +21 -0
  179. package/esm2015/lib/EditorRowCellModel.js +7 -0
  180. package/esm2015/lib/EditorRowCellPresenter.js +26 -0
  181. package/esm2015/lib/EditorType.js +37 -0
  182. package/esm2015/lib/EnterKeyBehaviorAfterEdit.js +37 -0
  183. package/esm2015/lib/EnterKeyBehaviors.js +41 -0
  184. package/esm2015/lib/FilterCell.js +544 -0
  185. package/esm2015/lib/FilterCellModel.js +7 -0
  186. package/esm2015/lib/FilterCellModelExport.js +48 -0
  187. package/esm2015/lib/FilterCellPresenter.js +62 -0
  188. package/esm2015/lib/FilterComparisonType.js +29 -0
  189. package/esm2015/lib/FilterDialogRenderCompletedEventArgs.js +16 -0
  190. package/esm2015/lib/FilterLogicalOperator.js +25 -0
  191. package/esm2015/lib/FilterOperand.js +7 -0
  192. package/esm2015/lib/FilterRowDefinition.js +7 -0
  193. package/esm2015/lib/FilterUIType.js +30 -0
  194. package/esm2015/lib/FixedCellPositions.js +11 -0
  195. package/esm2015/lib/FormatGroupTextEventArgs.js +23 -0
  196. package/esm2015/lib/FormatSummaryTextEventArgs.js +24 -0
  197. package/esm2015/lib/GotFocusEventArgs.js +16 -0
  198. package/esm2015/lib/GridActivationMode.js +25 -0
  199. package/esm2015/lib/GridActiveCellChangedEventArgs.js +33 -0
  200. package/esm2015/lib/GridAnimationManager.js +7 -0
  201. package/esm2015/lib/GridAnimationManagerAnimationCanceledEventArgs.js +20 -0
  202. package/esm2015/lib/GridAnimationManagerAnimationCompletedEventArgs.js +20 -0
  203. package/esm2015/lib/GridAnimationManagerAnimationCreatedEventArgs.js +20 -0
  204. package/esm2015/lib/GridAnimationPhaseSettings.js +117 -0
  205. package/esm2015/lib/GridAnimationSettings.js +126 -0
  206. package/esm2015/lib/GridCellBase.js +664 -0
  207. package/esm2015/lib/GridCellEditEndedEventArgs.js +7 -0
  208. package/esm2015/lib/GridCellEditStartedEventArgs.js +7 -0
  209. package/esm2015/lib/GridCellPosition.js +35 -0
  210. package/esm2015/lib/GridCellType.js +22 -0
  211. package/esm2015/lib/GridCellValueChangingEventArgs.js +7 -0
  212. package/esm2015/lib/GridColumnAnimationSettings.js +307 -0
  213. package/esm2015/lib/GridColumnButtonOptions.js +7 -0
  214. package/esm2015/lib/GridColumnButtonOptionsView.js +7 -0
  215. package/esm2015/lib/GridColumnButtonOptionsView_combined.js +183 -0
  216. package/esm2015/lib/GridColumnCollection.js +7 -0
  217. package/esm2015/lib/GridColumnFilterOptions.js +7 -0
  218. package/esm2015/lib/GridColumnFilterOptionsView.js +7 -0
  219. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +494 -0
  220. package/esm2015/lib/GridColumnGroupOptions.js +7 -0
  221. package/esm2015/lib/GridColumnGroupOptionsView.js +7 -0
  222. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +214 -0
  223. package/esm2015/lib/GridColumnHideOptions.js +7 -0
  224. package/esm2015/lib/GridColumnHideOptionsView.js +7 -0
  225. package/esm2015/lib/GridColumnHideOptionsView_combined.js +152 -0
  226. package/esm2015/lib/GridColumnMoveOptions.js +7 -0
  227. package/esm2015/lib/GridColumnMoveOptionsView.js +7 -0
  228. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +297 -0
  229. package/esm2015/lib/GridColumnOptions.js +7 -0
  230. package/esm2015/lib/GridColumnOptionsBase.js +7 -0
  231. package/esm2015/lib/GridColumnOptionsSectionBase.js +38 -0
  232. package/esm2015/lib/GridColumnOptionsSimpleSectionBase.js +57 -0
  233. package/esm2015/lib/GridColumnOptionsUtilities.js +7 -0
  234. package/esm2015/lib/GridColumnOptionsView.js +7 -0
  235. package/esm2015/lib/GridColumnOptionsViewBase.js +7 -0
  236. package/esm2015/lib/GridColumnOptionsViewBase_combined.js +597 -0
  237. package/esm2015/lib/GridColumnOptionsView_combined.js +835 -0
  238. package/esm2015/lib/GridColumnPinOptions.js +7 -0
  239. package/esm2015/lib/GridColumnPinOptionsView.js +7 -0
  240. package/esm2015/lib/GridColumnPinOptionsView_combined.js +282 -0
  241. package/esm2015/lib/GridColumnSortOptions.js +7 -0
  242. package/esm2015/lib/GridColumnSortOptionsView.js +7 -0
  243. package/esm2015/lib/GridColumnSortOptionsView_combined.js +277 -0
  244. package/esm2015/lib/GridColumnSpacer.js +68 -0
  245. package/esm2015/lib/GridColumnSpacerCollection.js +79 -0
  246. package/esm2015/lib/GridColumnSummaryOptions.js +7 -0
  247. package/esm2015/lib/GridColumnSummaryOptionsView.js +7 -0
  248. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +436 -0
  249. package/esm2015/lib/GridColumnWidthChangedEventArgs.js +7 -0
  250. package/esm2015/lib/GridColumnsAutoGeneratedEventArgs.js +7 -0
  251. package/esm2015/lib/GridColumnsChangedEventArgs.js +7 -0
  252. package/esm2015/lib/GridCompoundConditionalStyle.js +7 -0
  253. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +33 -0
  254. package/esm2015/lib/GridConditionalStyle.js +7 -0
  255. package/esm2015/lib/GridConditionalStyleBoundType.js +16 -0
  256. package/esm2015/lib/GridConditionalStyleCollection.js +7 -0
  257. package/esm2015/lib/GridConditionalStyleProperty.js +615 -0
  258. package/esm2015/lib/GridConditionalStylePropertyCollection.js +21 -0
  259. package/esm2015/lib/GridConditionalStylePropertyStylingType.js +18 -0
  260. package/esm2015/lib/GridCustomFilterRequestedEventArgs.js +7 -0
  261. package/esm2015/lib/GridDataCommittedEventArgs.js +23 -0
  262. package/esm2015/lib/GridDataCommittingEventArgs.js +23 -0
  263. package/esm2015/lib/GridEasingFunctionType.js +33 -0
  264. package/esm2015/lib/GridEffect.js +7 -0
  265. package/esm2015/lib/GridEffectGroup.js +7 -0
  266. package/esm2015/lib/GridEffectMainIntent.js +11 -0
  267. package/esm2015/lib/GridEffectManager.js +7 -0
  268. package/esm2015/lib/GridEffectSubIntent.js +11 -0
  269. package/esm2015/lib/GridExpansionIndicator.js +7 -0
  270. package/esm2015/lib/GridExpansionIndicatorView.js +7 -0
  271. package/esm2015/lib/GridExpansionIndicatorView_combined.js +317 -0
  272. package/esm2015/lib/GridExternalWrapper.js +152 -0
  273. package/esm2015/lib/GridFilterDialog.js +7 -0
  274. package/esm2015/lib/GridFilterDialogFilterChangeEventArgs.js +20 -0
  275. package/esm2015/lib/GridFilterDialogOpeningEventArgs.js +20 -0
  276. package/esm2015/lib/GridFilterDialogPanel.js +7 -0
  277. package/esm2015/lib/GridFilterDialogView.js +7 -0
  278. package/esm2015/lib/GridFilterDialogViewModel.js +7 -0
  279. package/esm2015/lib/GridFilterDialogViewModelGrouping.js +22 -0
  280. package/esm2015/lib/GridFilterDialogViewModelGroupingLevel.js +21 -0
  281. package/esm2015/lib/GridFilterDialogViewModelGroupingLevelCollection.js +21 -0
  282. package/esm2015/lib/GridFilterDialogViewModelRow.js +91 -0
  283. package/esm2015/lib/GridFilterDialogViewModelRowCollection.js +7 -0
  284. package/esm2015/lib/GridFilterDialogView_combined.js +1157 -0
  285. package/esm2015/lib/GridFilterExpressionsEventArgs.js +20 -0
  286. package/esm2015/lib/GridFilterOperandsCollection.js +7 -0
  287. package/esm2015/lib/GridGroupDescriptionsChangedEventArgs.js +26 -0
  288. package/esm2015/lib/GridLayer.js +7 -0
  289. package/esm2015/lib/GridLayerController.js +7 -0
  290. package/esm2015/lib/GridLayerExport.js +49 -0
  291. package/esm2015/lib/GridModuleHelper.js +24 -0
  292. package/esm2015/lib/GridRowEditEndedEventArgs.js +27 -0
  293. package/esm2015/lib/GridRowEditStartedEventArgs.js +27 -0
  294. package/esm2015/lib/GridSelectedCellRangesChangedEventArgs.js +47 -0
  295. package/esm2015/lib/GridSelectedCellRangesCollection.js +24 -0
  296. package/esm2015/lib/GridSelectedCellsChangedEventArgs.js +7 -0
  297. package/esm2015/lib/GridSelectedCellsCollection.js +7 -0
  298. package/esm2015/lib/GridSelectedItemsChangedEventArgs.js +40 -0
  299. package/esm2015/lib/GridSelectedItemsCollection.js +42 -0
  300. package/esm2015/lib/GridSelectedKeysChangedEventArgs.js +40 -0
  301. package/esm2015/lib/GridSelectedKeysCollection.js +160 -0
  302. package/esm2015/lib/GridSelectionBehavior.js +25 -0
  303. package/esm2015/lib/GridSelectionChangedEventArgs.js +16 -0
  304. package/esm2015/lib/GridSizeChangedEventArgs.js +21 -0
  305. package/esm2015/lib/GridSortDescriptionsChangedEventArgs.js +26 -0
  306. package/esm2015/lib/GridSortIndicator.js +7 -0
  307. package/esm2015/lib/GridSortIndicatorView.js +7 -0
  308. package/esm2015/lib/GridSortIndicatorView_combined.js +588 -0
  309. package/esm2015/lib/GridStyleRepository.js +467 -0
  310. package/esm2015/lib/GridSummaryDescriptionsChangedEventArgs.js +26 -0
  311. package/esm2015/lib/GridViewportChangedEventArgs.js +27 -0
  312. package/esm2015/lib/GroupData.js +22 -0
  313. package/esm2015/lib/GroupHeaderDisplayMode.js +25 -0
  314. package/esm2015/lib/GroupInfo.js +22 -0
  315. package/esm2015/lib/GroupSummaryDisplayMode.js +38 -0
  316. package/esm2015/lib/Header.js +7 -0
  317. package/esm2015/lib/HeaderClickAction.js +37 -0
  318. package/esm2015/lib/HeaderRowSeparator.js +7 -0
  319. package/esm2015/lib/HeaderSeparator.js +7 -0
  320. package/esm2015/lib/HorizontalPropertyEditorDataSource.js +24 -0
  321. package/esm2015/lib/HoverManager.js +7 -0
  322. package/esm2015/lib/ICellActionManager.js +7 -0
  323. package/esm2015/lib/ICellModelExportUpdater.js +11 -0
  324. package/esm2015/lib/ICellPresenter.js +7 -0
  325. package/esm2015/lib/ICellRenderingEngine.js +7 -0
  326. package/esm2015/lib/IColumnGrouping.js +11 -0
  327. package/esm2015/lib/IColumnGroupingVisualModelExport.js +11 -0
  328. package/esm2015/lib/IDataAdapter.js +7 -0
  329. package/esm2015/lib/IDataGridComponent.js +11 -0
  330. package/esm2015/lib/IDelayedExecutionManager.js +11 -0
  331. package/esm2015/lib/IDragger.js +7 -0
  332. package/esm2015/lib/IDraggerView.js +7 -0
  333. package/esm2015/lib/IDraggerView_combined.js +15 -0
  334. package/esm2015/lib/IEditorView.js +11 -0
  335. package/esm2015/lib/IExternalDefinitionBase.js +7 -0
  336. package/esm2015/lib/IExternalGrid.js +7 -0
  337. package/esm2015/lib/IExternalTemplateColumn.js +11 -0
  338. package/esm2015/lib/IExternalTemplateHeaderColumn.js +11 -0
  339. package/esm2015/lib/IExternalTemplateSectionHeader.js +11 -0
  340. package/esm2015/lib/IGridInfoRequestor.js +7 -0
  341. package/esm2015/lib/INativeCell.js +11 -0
  342. package/esm2015/lib/IPlatformPixelConverter.js +11 -0
  343. package/esm2015/lib/IPropertySetter.js +11 -0
  344. package/esm2015/lib/ISummaryChooserView.js +7 -0
  345. package/esm2015/lib/ISummaryChooserView_combined.js +448 -0
  346. package/esm2015/lib/IToolbarVisualModelExport.js +11 -0
  347. package/esm2015/lib/IViewportManager.js +11 -0
  348. package/esm2015/lib/ImageCell.js +119 -0
  349. package/esm2015/lib/ImageCellModel.js +7 -0
  350. package/esm2015/lib/ImageCellModelExport.js +28 -0
  351. package/esm2015/lib/ImageCellPresenter.js +91 -0
  352. package/esm2015/lib/ImageColumn.js +7 -0
  353. package/esm2015/lib/ImageResourceType.js +37 -0
  354. package/esm2015/lib/ImageStretchOptions.js +29 -0
  355. package/esm2015/lib/LayoutAction.js +49 -0
  356. package/esm2015/lib/LostFocusEventArgs.js +16 -0
  357. package/esm2015/lib/MergedCellEvaluationCriteria.js +29 -0
  358. package/esm2015/lib/MergedCellInfo.js +26 -0
  359. package/esm2015/lib/MergedCellMode.js +34 -0
  360. package/esm2015/lib/ModelStates.js +11 -0
  361. package/esm2015/lib/ModelTypes.js +11 -0
  362. package/esm2015/lib/MultiColumnComboBox.js +7 -0
  363. package/esm2015/lib/MultiColumnComboBoxDataSourceNotificationHandler.js +7 -0
  364. package/esm2015/lib/MultiColumnComboBoxSelectedItemChangeType.js +20 -0
  365. package/esm2015/lib/MultiColumnComboBoxTextChangedEventArgs.js +29 -0
  366. package/esm2015/lib/MultiColumnComboBoxUtilities.js +92 -0
  367. package/esm2015/lib/MultiColumnComboBoxValueChangedEventArgs.js +29 -0
  368. package/esm2015/lib/MultiColumnComboBoxView.js +7 -0
  369. package/esm2015/lib/MultiColumnComboBoxView_combined.js +2784 -0
  370. package/esm2015/lib/MultiColumnComboVisualModelExport.js +187 -0
  371. package/esm2015/lib/MultipleDataSourceNotifier.js +61 -0
  372. package/esm2015/lib/NativeUIComboFactory.js +47 -0
  373. package/esm2015/lib/NativeUIGridFactory.js +70 -0
  374. package/esm2015/lib/NumericCell.js +28 -0
  375. package/esm2015/lib/NumericCellFormatter.js +7 -0
  376. package/esm2015/lib/NumericCellModel.js +7 -0
  377. package/esm2015/lib/NumericCellModelExport.js +32 -0
  378. package/esm2015/lib/NumericCellPresenter.js +45 -0
  379. package/esm2015/lib/NumericColumn.js +7 -0
  380. package/esm2015/lib/NumericEditorView.js +31 -0
  381. package/esm2015/lib/OperatorModel.js +24 -0
  382. package/esm2015/lib/OperatorSelectorClosingEventArgs.js +16 -0
  383. package/esm2015/lib/OperatorSelectorOpeningEventArgs.js +16 -0
  384. package/esm2015/lib/OperatorSelectorValueChangedEventArgs.js +33 -0
  385. package/esm2015/lib/PageChangedEventArgs.js +33 -0
  386. package/esm2015/lib/PagedDataProvider.js +7 -0
  387. package/esm2015/lib/Pager.js +7 -0
  388. package/esm2015/lib/PagerDataSourceNotificationBridge.js +7 -0
  389. package/esm2015/lib/PagerGridDataSourceNotificationBridge.js +7 -0
  390. package/esm2015/lib/PagerView.js +7 -0
  391. package/esm2015/lib/PagerVisualModelExport.js +82 -0
  392. package/esm2015/lib/PinnedAreaSeparator.js +7 -0
  393. package/esm2015/lib/PinnedPositions.js +29 -0
  394. package/esm2015/lib/PinnedRowInfo.js +7 -0
  395. package/esm2015/lib/PlaceholderView.js +69 -0
  396. package/esm2015/lib/PrimaryKeyValue.js +87 -0
  397. package/esm2015/lib/PropertyEditor.js +7 -0
  398. package/esm2015/lib/PropertyEditorView.js +7 -0
  399. package/esm2015/lib/PropertyEditorView_combined.js +1652 -0
  400. package/esm2015/lib/PushRowResult.js +7 -0
  401. package/esm2015/lib/PushRowSettings.js +7 -0
  402. package/esm2015/lib/RecyclingManager.js +7 -0
  403. package/esm2015/lib/ResponsiveEngine.js +7 -0
  404. package/esm2015/lib/ResponsivePhase.js +7 -0
  405. package/esm2015/lib/ResponsivePhasesCollection.js +7 -0
  406. package/esm2015/lib/ResponsiveState.js +7 -0
  407. package/esm2015/lib/ResponsiveStateEnteredEventArgs.js +16 -0
  408. package/esm2015/lib/ResponsiveStateEnteringEventArgs.js +16 -0
  409. package/esm2015/lib/ResponsiveStateExitedEventArgs.js +16 -0
  410. package/esm2015/lib/ResponsiveStatesCollection.js +7 -0
  411. package/esm2015/lib/RowCellsEffect.js +7 -0
  412. package/esm2015/lib/RowEffect.js +7 -0
  413. package/esm2015/lib/RowHoverAnimationMode.js +29 -0
  414. package/esm2015/lib/RowPath.js +110 -0
  415. package/esm2015/lib/RowRange.js +38 -0
  416. package/esm2015/lib/RowSelectionAnimationMode.js +29 -0
  417. package/esm2015/lib/RowSeparator.js +7 -0
  418. package/esm2015/lib/RowSeparatorCell.js +20 -0
  419. package/esm2015/lib/RowSeparatorCellPresenter.js +23 -0
  420. package/esm2015/lib/RowSeparatorModel.js +7 -0
  421. package/esm2015/lib/RowSeparatorModelExport.js +23 -0
  422. package/esm2015/lib/SaveLayoutColumn.js +7 -0
  423. package/esm2015/lib/SaveLayoutFilterInfo.js +173 -0
  424. package/esm2015/lib/SaveLayoutGroupInfo.js +51 -0
  425. package/esm2015/lib/SaveLayoutSortInfo.js +54 -0
  426. package/esm2015/lib/SectionFooter.js +7 -0
  427. package/esm2015/lib/SectionHeader.js +7 -0
  428. package/esm2015/lib/SectionHeaderCell.js +48 -0
  429. package/esm2015/lib/SectionHeaderCellModel.js +7 -0
  430. package/esm2015/lib/SectionHeaderCellModelExport.js +62 -0
  431. package/esm2015/lib/SectionHeaderCellPresenter.js +51 -0
  432. package/esm2015/lib/SectionInfo.js +7 -0
  433. package/esm2015/lib/SelectAllCheckboxChangedEventArgs.js +20 -0
  434. package/esm2015/lib/SelectionManager.js +7 -0
  435. package/esm2015/lib/SortIndicatorRenderCompletedEventArgs.js +16 -0
  436. package/esm2015/lib/SortIndicatorStyle.js +32 -0
  437. package/esm2015/lib/SortManager.js +7 -0
  438. package/esm2015/lib/SortMode.js +37 -0
  439. package/esm2015/lib/SpacerEffect.js +7 -0
  440. package/esm2015/lib/SpatialEngine.js +7 -0
  441. package/esm2015/lib/StringOperatorTypes.js +11 -0
  442. package/esm2015/lib/SummaryCell.js +74 -0
  443. package/esm2015/lib/SummaryCellModel.js +7 -0
  444. package/esm2015/lib/SummaryCellModelExport.js +88 -0
  445. package/esm2015/lib/SummaryCellPresenter.js +51 -0
  446. package/esm2015/lib/SummaryChangedEventArgs.js +21 -0
  447. package/esm2015/lib/SummaryChooser.js +7 -0
  448. package/esm2015/lib/SummaryChooserItem.js +22 -0
  449. package/esm2015/lib/SummaryChooserView.js +7 -0
  450. package/esm2015/lib/SummaryData.js +24 -0
  451. package/esm2015/lib/SummaryRow.js +7 -0
  452. package/esm2015/lib/SummaryRowRoot.js +7 -0
  453. package/esm2015/lib/SummaryRowSection.js +7 -0
  454. package/esm2015/lib/SummaryScope.js +33 -0
  455. package/esm2015/lib/TemplateCell.js +55 -0
  456. package/esm2015/lib/TemplateCellContainer.js +33 -0
  457. package/esm2015/lib/TemplateCellModel.js +7 -0
  458. package/esm2015/lib/TemplateCellModelExport.js +27 -0
  459. package/esm2015/lib/TemplateCellPresenter.js +37 -0
  460. package/esm2015/lib/TemplateCellUpdatingEventArgs.js +7 -0
  461. package/esm2015/lib/TemplateColumn.js +7 -0
  462. package/esm2015/lib/TemplateHeader.js +48 -0
  463. package/esm2015/lib/TemplateHeaderCell.js +30 -0
  464. package/esm2015/lib/TemplateHeaderCellModel.js +61 -0
  465. package/esm2015/lib/TemplateHeaderCellModelExport.js +27 -0
  466. package/esm2015/lib/TemplateHeaderCellPresenter.js +38 -0
  467. package/esm2015/lib/TemplateHeaderCellUpdatingEventArgs.js +33 -0
  468. package/esm2015/lib/TemplateSectionHeader.js +39 -0
  469. package/esm2015/lib/TemplateSectionHeaderCellModel.js +17 -0
  470. package/esm2015/lib/TemplateSectionHeaderCellModelExport.js +23 -0
  471. package/esm2015/lib/TemplateSectionHeaderCellUpdatingEventArgs.js +33 -0
  472. package/esm2015/lib/TextCell.js +61 -0
  473. package/esm2015/lib/TextCellLineBreakMode.js +33 -0
  474. package/esm2015/lib/TextCellModel.js +7 -0
  475. package/esm2015/lib/TextCellModelExport.js +30 -0
  476. package/esm2015/lib/TextCellPresenter.js +47 -0
  477. package/esm2015/lib/TextColumn.js +7 -0
  478. package/esm2015/lib/TextEditorView.js +174 -0
  479. package/esm2015/lib/TextHeader.js +7 -0
  480. package/esm2015/lib/TextHeaderCell.js +300 -0
  481. package/esm2015/lib/TextHeaderCellModel.js +7 -0
  482. package/esm2015/lib/TextHeaderCellModelExport.js +23 -0
  483. package/esm2015/lib/TextHeaderCellPresenter.js +87 -0
  484. package/esm2015/lib/TextIconSetBuiltInTypes.js +18 -0
  485. package/esm2015/lib/TextIconSetConditionalStyle.js +101 -0
  486. package/esm2015/lib/TextVisualModelExport.js +44 -0
  487. package/esm2015/lib/ToolbarVisualModelExport.js +20 -0
  488. package/esm2015/lib/VerticalSeparatorCell.js +72 -0
  489. package/esm2015/lib/VerticalSeparatorCellModel.js +7 -0
  490. package/esm2015/lib/VerticalSeparatorCellPresenter.js +23 -0
  491. package/esm2015/lib/VisibilityEngine.js +7 -0
  492. package/esm2015/lib/VisualModel.js +7 -0
  493. package/esm2015/lib/VisualModelExport.js +231 -0
  494. package/esm2015/lib/igx-apply-button-click-event-args.js +27 -0
  495. package/esm2015/lib/igx-cancel-button-click-event-args.js +27 -0
  496. package/esm2015/lib/igx-cell-info.js +986 -0
  497. package/esm2015/lib/igx-cell-key-dynamic-module.js +34 -0
  498. package/esm2015/lib/igx-cell-key-module.js +26 -0
  499. package/esm2015/lib/igx-cell-key.js +84 -0
  500. package/esm2015/lib/igx-cell-range-dynamic-module.js +34 -0
  501. package/esm2015/lib/igx-cell-range-module.js +26 -0
  502. package/esm2015/lib/igx-cell-range.js +74 -0
  503. package/esm2015/lib/igx-cell-style-requested-event-args.js +57 -0
  504. package/esm2015/lib/igx-checkbox-list-component.js +904 -0
  505. package/esm2015/lib/igx-checkbox-list-dynamic-module.js +90 -0
  506. package/esm2015/lib/igx-checkbox-list-index-type-changed-event-args.js +41 -0
  507. package/esm2015/lib/igx-checkbox-list-keys-cleared-event-args.js +27 -0
  508. package/esm2015/lib/igx-checkbox-list-module.js +84 -0
  509. package/esm2015/lib/igx-checked-changed-event-args.js +50 -0
  510. package/esm2015/lib/igx-column-chooser-component.js +291 -0
  511. package/esm2015/lib/igx-column-chooser-dynamic-module.js +52 -0
  512. package/esm2015/lib/igx-column-chooser-module.js +46 -0
  513. package/esm2015/lib/igx-column-exchanger.js +47 -0
  514. package/esm2015/lib/igx-column-exchangers-collection.js +53 -0
  515. package/esm2015/lib/igx-column-group-description-collection.js +115 -0
  516. package/esm2015/lib/igx-column-group-description-dynamic-module.js +34 -0
  517. package/esm2015/lib/igx-column-group-description-module.js +26 -0
  518. package/esm2015/lib/igx-column-group-description.js +130 -0
  519. package/esm2015/lib/igx-column-grouping-component.js +335 -0
  520. package/esm2015/lib/igx-column-grouping-dynamic-module.js +38 -0
  521. package/esm2015/lib/igx-column-grouping-module.js +36 -0
  522. package/esm2015/lib/igx-column-hidden-changed-event-args.js +52 -0
  523. package/esm2015/lib/igx-column-moving-separator-component.js +73 -0
  524. package/esm2015/lib/igx-column-moving-separator-dynamic-module.js +34 -0
  525. package/esm2015/lib/igx-column-moving-separator-module.js +27 -0
  526. package/esm2015/lib/igx-column-pinned-changed-event-args.js +62 -0
  527. package/esm2015/lib/igx-column-pinning-component.js +290 -0
  528. package/esm2015/lib/igx-column-pinning-dynamic-module.js +45 -0
  529. package/esm2015/lib/igx-column-pinning-module.js +39 -0
  530. package/esm2015/lib/igx-column-property-setter.js +65 -0
  531. package/esm2015/lib/igx-column-property-setters-collection.js +53 -0
  532. package/esm2015/lib/igx-column-resizing-separator-component.js +62 -0
  533. package/esm2015/lib/igx-column-resizing-separator-dynamic-module.js +34 -0
  534. package/esm2015/lib/igx-column-resizing-separator-module.js +27 -0
  535. package/esm2015/lib/igx-column-sort-description-collection.js +115 -0
  536. package/esm2015/lib/igx-column-sort-description-dynamic-module.js +34 -0
  537. package/esm2015/lib/igx-column-sort-description-module.js +26 -0
  538. package/esm2015/lib/igx-column-sort-description.js +67 -0
  539. package/esm2015/lib/igx-column-summary-description-collection.js +112 -0
  540. package/esm2015/lib/igx-column-summary-description-dynamic-module.js +34 -0
  541. package/esm2015/lib/igx-column-summary-description-module.js +26 -0
  542. package/esm2015/lib/igx-column-summary-description.js +210 -0
  543. package/esm2015/lib/igx-column-width-dynamic-module.js +34 -0
  544. package/esm2015/lib/igx-column-width-module.js +26 -0
  545. package/esm2015/lib/igx-column-width.js +66 -0
  546. package/esm2015/lib/igx-combo-box-column-component.js +109 -0
  547. package/esm2015/lib/igx-combo-box-column-dynamic-module.js +34 -0
  548. package/esm2015/lib/igx-combo-box-column-module.js +27 -0
  549. package/esm2015/lib/igx-data-binding-event-args.js +98 -0
  550. package/esm2015/lib/igx-data-grid-all-columns-dynamic-module.js +107 -0
  551. package/esm2015/lib/igx-data-grid-all-columns-module.js +100 -0
  552. package/esm2015/lib/igx-data-grid-cell-event-args.js +113 -0
  553. package/esm2015/lib/igx-data-grid-column-component.js +871 -0
  554. package/esm2015/lib/igx-data-grid-comparison-operator-selector-component.js +457 -0
  555. package/esm2015/lib/igx-data-grid-component.js +4190 -0
  556. package/esm2015/lib/igx-data-grid-core-dynamic-module.js +178 -0
  557. package/esm2015/lib/igx-data-grid-core-module.js +172 -0
  558. package/esm2015/lib/igx-data-grid-dynamic-module.js +93 -0
  559. package/esm2015/lib/igx-data-grid-expansion-indicator-component.js +198 -0
  560. package/esm2015/lib/igx-data-grid-filter-dialog-component.js +332 -0
  561. package/esm2015/lib/igx-data-grid-locale-en-module.js +31 -0
  562. package/esm2015/lib/igx-data-grid-module.js +86 -0
  563. package/esm2015/lib/igx-data-grid-pager-component.js +274 -0
  564. package/esm2015/lib/igx-data-grid-pager-dynamic-module.js +42 -0
  565. package/esm2015/lib/igx-data-grid-pager-module.js +35 -0
  566. package/esm2015/lib/igx-data-grid-sort-indicator-component.js +231 -0
  567. package/esm2015/lib/igx-data-grid-toolbar-component.js +444 -0
  568. package/esm2015/lib/igx-data-grid-toolbar-dynamic-module.js +66 -0
  569. package/esm2015/lib/igx-data-grid-toolbar-module.js +60 -0
  570. package/esm2015/lib/igx-date-time-cell-info.js +86 -0
  571. package/esm2015/lib/igx-date-time-column-component.js +174 -0
  572. package/esm2015/lib/igx-date-time-column-dynamic-module.js +34 -0
  573. package/esm2015/lib/igx-date-time-column-module.js +27 -0
  574. package/esm2015/lib/igx-definition-base-component.js +838 -0
  575. package/esm2015/lib/igx-edit-row-definition-component.js +49 -0
  576. package/esm2015/lib/igx-edit-row-definition-dynamic-module.js +34 -0
  577. package/esm2015/lib/igx-edit-row-definition-module.js +27 -0
  578. package/esm2015/lib/igx-editor-cell-info.js +142 -0
  579. package/esm2015/lib/igx-editor-definition-component.js +49 -0
  580. package/esm2015/lib/igx-editor-definition-dynamic-module.js +34 -0
  581. package/esm2015/lib/igx-editor-definition-module.js +27 -0
  582. package/esm2015/lib/igx-editor-row-cell-info.js +19 -0
  583. package/esm2015/lib/igx-filter-cell-info.js +140 -0
  584. package/esm2015/lib/igx-filter-dialog-render-completed-event-args.js +27 -0
  585. package/esm2015/lib/igx-filter-operand-dynamic-module.js +34 -0
  586. package/esm2015/lib/igx-filter-operand-module.js +26 -0
  587. package/esm2015/lib/igx-filter-operand.js +124 -0
  588. package/esm2015/lib/igx-filter-row-definition-component.js +93 -0
  589. package/esm2015/lib/igx-filter-row-definition-dynamic-module.js +34 -0
  590. package/esm2015/lib/igx-filter-row-definition-module.js +27 -0
  591. package/esm2015/lib/igx-format-group-text-event-args.js +63 -0
  592. package/esm2015/lib/igx-format-summary-text-event-args.js +72 -0
  593. package/esm2015/lib/igx-got-focus-event-args.js +27 -0
  594. package/esm2015/lib/igx-grid-active-cell-changed-event-args.js +81 -0
  595. package/esm2015/lib/igx-grid-animation-phase-settings.js +112 -0
  596. package/esm2015/lib/igx-grid-animation-settings.js +47 -0
  597. package/esm2015/lib/igx-grid-cell-edit-ended-event-args.js +66 -0
  598. package/esm2015/lib/igx-grid-cell-edit-started-event-args.js +66 -0
  599. package/esm2015/lib/igx-grid-cell-position-dynamic-module.js +34 -0
  600. package/esm2015/lib/igx-grid-cell-position-module.js +26 -0
  601. package/esm2015/lib/igx-grid-cell-position.js +53 -0
  602. package/esm2015/lib/igx-grid-cell-value-changing-event-args.js +137 -0
  603. package/esm2015/lib/igx-grid-column-animation-settings.js +47 -0
  604. package/esm2015/lib/igx-grid-column-button-options-component.js +154 -0
  605. package/esm2015/lib/igx-grid-column-button-options-dynamic-module.js +38 -0
  606. package/esm2015/lib/igx-grid-column-button-options-module.js +36 -0
  607. package/esm2015/lib/igx-grid-column-collection.js +53 -0
  608. package/esm2015/lib/igx-grid-column-filter-options-component.js +183 -0
  609. package/esm2015/lib/igx-grid-column-filter-options-dynamic-module.js +45 -0
  610. package/esm2015/lib/igx-grid-column-filter-options-module.js +39 -0
  611. package/esm2015/lib/igx-grid-column-group-options-component.js +72 -0
  612. package/esm2015/lib/igx-grid-column-group-options-dynamic-module.js +38 -0
  613. package/esm2015/lib/igx-grid-column-group-options-module.js +36 -0
  614. package/esm2015/lib/igx-grid-column-hide-options-component.js +72 -0
  615. package/esm2015/lib/igx-grid-column-hide-options-dynamic-module.js +38 -0
  616. package/esm2015/lib/igx-grid-column-hide-options-module.js +36 -0
  617. package/esm2015/lib/igx-grid-column-move-options-component.js +88 -0
  618. package/esm2015/lib/igx-grid-column-move-options-dynamic-module.js +38 -0
  619. package/esm2015/lib/igx-grid-column-move-options-module.js +36 -0
  620. package/esm2015/lib/igx-grid-column-options-base-component.js +297 -0
  621. package/esm2015/lib/igx-grid-column-options-component.js +705 -0
  622. package/esm2015/lib/igx-grid-column-options-dynamic-module.js +94 -0
  623. package/esm2015/lib/igx-grid-column-options-module.js +88 -0
  624. package/esm2015/lib/igx-grid-column-options-section-base-component.js +31 -0
  625. package/esm2015/lib/igx-grid-column-options-simple-section-base-component.js +42 -0
  626. package/esm2015/lib/igx-grid-column-pin-options-component.js +88 -0
  627. package/esm2015/lib/igx-grid-column-pin-options-dynamic-module.js +38 -0
  628. package/esm2015/lib/igx-grid-column-pin-options-module.js +36 -0
  629. package/esm2015/lib/igx-grid-column-sort-options-component.js +97 -0
  630. package/esm2015/lib/igx-grid-column-sort-options-dynamic-module.js +38 -0
  631. package/esm2015/lib/igx-grid-column-sort-options-module.js +36 -0
  632. package/esm2015/lib/igx-grid-column-summary-options-component.js +101 -0
  633. package/esm2015/lib/igx-grid-column-summary-options-dynamic-module.js +52 -0
  634. package/esm2015/lib/igx-grid-column-summary-options-module.js +46 -0
  635. package/esm2015/lib/igx-grid-column-width-changed-event-args.js +102 -0
  636. package/esm2015/lib/igx-grid-columns-auto-generated-event-args.js +64 -0
  637. package/esm2015/lib/igx-grid-columns-changed-event-args.js +64 -0
  638. package/esm2015/lib/igx-grid-compound-conditional-style-component.js +71 -0
  639. package/esm2015/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +45 -0
  640. package/esm2015/lib/igx-grid-conditional-style-collection.js +53 -0
  641. package/esm2015/lib/igx-grid-conditional-style-component.js +327 -0
  642. package/esm2015/lib/igx-grid-conditional-style-dynamic-module.js +34 -0
  643. package/esm2015/lib/igx-grid-conditional-style-module.js +27 -0
  644. package/esm2015/lib/igx-grid-conditional-style-property-collection.js +53 -0
  645. package/esm2015/lib/igx-grid-conditional-style-property-component.js +378 -0
  646. package/esm2015/lib/igx-grid-conditional-style-property-dynamic-module.js +34 -0
  647. package/esm2015/lib/igx-grid-conditional-style-property-module.js +27 -0
  648. package/esm2015/lib/igx-grid-custom-filter-requested-event-args.js +98 -0
  649. package/esm2015/lib/igx-grid-data-committed-event-args.js +42 -0
  650. package/esm2015/lib/igx-grid-data-committing-event-args.js +42 -0
  651. package/esm2015/lib/igx-grid-filter-dialog-filter-change-event-args.js +33 -0
  652. package/esm2015/lib/igx-grid-filter-dialog-opening-event-args.js +45 -0
  653. package/esm2015/lib/igx-grid-filter-dialog-view-model-grouping-level-collection.js +53 -0
  654. package/esm2015/lib/igx-grid-filter-dialog-view-model-grouping-level.js +53 -0
  655. package/esm2015/lib/igx-grid-filter-dialog-view-model-grouping.js +54 -0
  656. package/esm2015/lib/igx-grid-filter-dialog-view-model-row-collection.js +53 -0
  657. package/esm2015/lib/igx-grid-filter-dialog-view-model-row.js +92 -0
  658. package/esm2015/lib/igx-grid-filter-dialog-view-model.js +145 -0
  659. package/esm2015/lib/igx-grid-filter-expressions-event-args.js +50 -0
  660. package/esm2015/lib/igx-grid-filter-operands-collection.js +53 -0
  661. package/esm2015/lib/igx-grid-group-descriptions-changed-event-args.js +53 -0
  662. package/esm2015/lib/igx-grid-row-edit-ended-event-args.js +45 -0
  663. package/esm2015/lib/igx-grid-row-edit-started-event-args.js +45 -0
  664. package/esm2015/lib/igx-grid-selected-cell-ranges-changed-event-args.js +166 -0
  665. package/esm2015/lib/igx-grid-selected-cell-ranges-collection.js +53 -0
  666. package/esm2015/lib/igx-grid-selected-cells-changed-event-args.js +133 -0
  667. package/esm2015/lib/igx-grid-selected-cells-collection.js +53 -0
  668. package/esm2015/lib/igx-grid-selected-items-changed-event-args.js +133 -0
  669. package/esm2015/lib/igx-grid-selected-items-collection.js +30 -0
  670. package/esm2015/lib/igx-grid-selected-keys-changed-event-args.js +133 -0
  671. package/esm2015/lib/igx-grid-selected-keys-collection.js +53 -0
  672. package/esm2015/lib/igx-grid-selection-changed-event-args.js +30 -0
  673. package/esm2015/lib/igx-grid-size-changed-event-args.js +48 -0
  674. package/esm2015/lib/igx-grid-sort-descriptions-changed-event-args.js +53 -0
  675. package/esm2015/lib/igx-grid-summary-descriptions-changed-event-args.js +53 -0
  676. package/esm2015/lib/igx-group-data.js +65 -0
  677. package/esm2015/lib/igx-header-component.js +126 -0
  678. package/esm2015/lib/igx-header-row-separator-component.js +49 -0
  679. package/esm2015/lib/igx-header-row-separator-dynamic-module.js +34 -0
  680. package/esm2015/lib/igx-header-row-separator-module.js +27 -0
  681. package/esm2015/lib/igx-header-separator-component.js +46 -0
  682. package/esm2015/lib/igx-header-separator-dynamic-module.js +34 -0
  683. package/esm2015/lib/igx-header-separator-module.js +27 -0
  684. package/esm2015/lib/igx-horizontal-property-editor-data-source.js +53 -0
  685. package/esm2015/lib/igx-image-cell-info.js +49 -0
  686. package/esm2015/lib/igx-image-column-component.js +108 -0
  687. package/esm2015/lib/igx-image-column-dynamic-module.js +34 -0
  688. package/esm2015/lib/igx-image-column-module.js +27 -0
  689. package/esm2015/lib/igx-lost-focus-event-args.js +27 -0
  690. package/esm2015/lib/igx-multi-column-combo-box-component.js +1470 -0
  691. package/esm2015/lib/igx-multi-column-combo-box-dynamic-module.js +80 -0
  692. package/esm2015/lib/igx-multi-column-combo-box-module.js +74 -0
  693. package/esm2015/lib/igx-multi-column-combo-box-text-changed-event-args.js +23 -0
  694. package/esm2015/lib/igx-multi-column-combo-box-value-changed-event-args.js +23 -0
  695. package/esm2015/lib/igx-numeric-cell-info.js +148 -0
  696. package/esm2015/lib/igx-numeric-column-component.js +228 -0
  697. package/esm2015/lib/igx-numeric-column-dynamic-module.js +34 -0
  698. package/esm2015/lib/igx-numeric-column-module.js +27 -0
  699. package/esm2015/lib/igx-operator-selector-closing-event-args.js +27 -0
  700. package/esm2015/lib/igx-operator-selector-opening-event-args.js +30 -0
  701. package/esm2015/lib/igx-operator-selector-value-changed-event-args.js +42 -0
  702. package/esm2015/lib/igx-page-changed-event-args.js +49 -0
  703. package/esm2015/lib/igx-pinned-area-separator-component.js +46 -0
  704. package/esm2015/lib/igx-pinned-area-separator-dynamic-module.js +34 -0
  705. package/esm2015/lib/igx-pinned-area-separator-module.js +27 -0
  706. package/esm2015/lib/igx-primary-key-value-dynamic-module.js +34 -0
  707. package/esm2015/lib/igx-primary-key-value-module.js +26 -0
  708. package/esm2015/lib/igx-primary-key-value.js +69 -0
  709. package/esm2015/lib/igx-property-editor-component.js +484 -0
  710. package/esm2015/lib/igx-property-editor-dynamic-module.js +115 -0
  711. package/esm2015/lib/igx-property-editor-module.js +109 -0
  712. package/esm2015/lib/igx-responsive-phase.js +139 -0
  713. package/esm2015/lib/igx-responsive-phases-collection.js +53 -0
  714. package/esm2015/lib/igx-responsive-state-entered-event-args.js +30 -0
  715. package/esm2015/lib/igx-responsive-state-entering-event-args.js +30 -0
  716. package/esm2015/lib/igx-responsive-state-exited-event-args.js +30 -0
  717. package/esm2015/lib/igx-responsive-state.js +200 -0
  718. package/esm2015/lib/igx-responsive-states-collection.js +53 -0
  719. package/esm2015/lib/igx-row-separator-component.js +49 -0
  720. package/esm2015/lib/igx-row-separator-dynamic-module.js +34 -0
  721. package/esm2015/lib/igx-row-separator-info.js +19 -0
  722. package/esm2015/lib/igx-row-separator-module.js +27 -0
  723. package/esm2015/lib/igx-section-footer-component.js +49 -0
  724. package/esm2015/lib/igx-section-footer-dynamic-module.js +34 -0
  725. package/esm2015/lib/igx-section-footer-module.js +27 -0
  726. package/esm2015/lib/igx-section-header-cell-info.js +48 -0
  727. package/esm2015/lib/igx-section-header-component.js +127 -0
  728. package/esm2015/lib/igx-section-header-dynamic-module.js +34 -0
  729. package/esm2015/lib/igx-section-header-module.js +27 -0
  730. package/esm2015/lib/igx-select-all-checkbox-changed-event-args.js +34 -0
  731. package/esm2015/lib/igx-sort-indicator-render-completed-event-args.js +27 -0
  732. package/esm2015/lib/igx-summary-cell-info.js +59 -0
  733. package/esm2015/lib/igx-summary-changed-event-args.js +49 -0
  734. package/esm2015/lib/igx-summary-chooser-dynamic-module.js +36 -0
  735. package/esm2015/lib/igx-summary-chooser-module.js +33 -0
  736. package/esm2015/lib/igx-summary-data.js +70 -0
  737. package/esm2015/lib/igx-summary-row-component.js +145 -0
  738. package/esm2015/lib/igx-summary-row-root-component.js +47 -0
  739. package/esm2015/lib/igx-summary-row-root-dynamic-module.js +34 -0
  740. package/esm2015/lib/igx-summary-row-root-module.js +27 -0
  741. package/esm2015/lib/igx-summary-row-section-component.js +47 -0
  742. package/esm2015/lib/igx-summary-row-section-dynamic-module.js +34 -0
  743. package/esm2015/lib/igx-summary-row-section-module.js +27 -0
  744. package/esm2015/lib/igx-template-cell-info.js +28 -0
  745. package/esm2015/lib/igx-template-cell-updating-event-args.js +111 -0
  746. package/esm2015/lib/igx-template-column-component.js +75 -0
  747. package/esm2015/lib/igx-template-column-dynamic-module.js +34 -0
  748. package/esm2015/lib/igx-template-column-module.js +27 -0
  749. package/esm2015/lib/igx-template-header-cell-info.js +29 -0
  750. package/esm2015/lib/igx-template-header-cell-updating-event-args.js +111 -0
  751. package/esm2015/lib/igx-template-header-component.js +75 -0
  752. package/esm2015/lib/igx-template-header-dynamic-module.js +34 -0
  753. package/esm2015/lib/igx-template-header-module.js +27 -0
  754. package/esm2015/lib/igx-template-section-header-cell-info.js +19 -0
  755. package/esm2015/lib/igx-template-section-header-cell-updating-event-args.js +86 -0
  756. package/esm2015/lib/igx-template-section-header-component.js +75 -0
  757. package/esm2015/lib/igx-template-section-header-dynamic-module.js +34 -0
  758. package/esm2015/lib/igx-template-section-header-module.js +27 -0
  759. package/esm2015/lib/igx-text-cell-info.js +28 -0
  760. package/esm2015/lib/igx-text-column-component.js +96 -0
  761. package/esm2015/lib/igx-text-column-dynamic-module.js +34 -0
  762. package/esm2015/lib/igx-text-column-module.js +27 -0
  763. package/esm2015/lib/igx-text-header-cell-info.js +65 -0
  764. package/esm2015/lib/igx-text-header-component.js +50 -0
  765. package/esm2015/lib/igx-text-header-dynamic-module.js +34 -0
  766. package/esm2015/lib/igx-text-header-module.js +27 -0
  767. package/esm2015/lib/igx-text-icon-set-conditional-style-component.js +74 -0
  768. package/esm2015/lib/igx-text-icon-set-conditional-style-dynamic-module.js +34 -0
  769. package/esm2015/lib/igx-text-icon-set-conditional-style-module.js +27 -0
  770. package/esm2015/lib/igx-vertical-separator-cell-info.js +19 -0
  771. package/esm2015/public_api.js +742 -0
  772. package/esm5/igniteui-angular-data-grids.js +4 -0
  773. package/esm5/lib/AccessibilityRow.js +115 -0
  774. package/esm5/lib/ActivationManager.js +7 -0
  775. package/esm5/lib/ApplyButtonClickEventArgs.js +20 -0
  776. package/esm5/lib/BaseEditorView.js +232 -0
  777. package/esm5/lib/BrowserExecutionContext.js +57 -0
  778. package/esm5/lib/BrowserPixelConverter.js +24 -0
  779. package/esm5/lib/BrowserTickProvider.js +87 -0
  780. package/esm5/lib/CalculationParameters.js +36 -0
  781. package/esm5/lib/CancelButtonClickEventArgs.js +20 -0
  782. package/esm5/lib/CanvasCellPresenterBase.js +80 -0
  783. package/esm5/lib/CanvasContentCellModelHelper.js +85 -0
  784. package/esm5/lib/CanvasDateTimeCell.js +21 -0
  785. package/esm5/lib/CanvasDateTimeCellPresenter.js +50 -0
  786. package/esm5/lib/CanvasGridCellBase.js +872 -0
  787. package/esm5/lib/CanvasImageCell.js +72 -0
  788. package/esm5/lib/CanvasImageCellPresenter.js +95 -0
  789. package/esm5/lib/CanvasNumericCell.js +24 -0
  790. package/esm5/lib/CanvasNumericCellPresenter.js +50 -0
  791. package/esm5/lib/CanvasPlaceholderView.js +80 -0
  792. package/esm5/lib/CanvasRowSeparatorCell.js +21 -0
  793. package/esm5/lib/CanvasRowSeparatorCellPresenter.js +28 -0
  794. package/esm5/lib/CanvasSectionHeaderCell.js +27 -0
  795. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +56 -0
  796. package/esm5/lib/CanvasSummaryCell.js +100 -0
  797. package/esm5/lib/CanvasSummaryCellPresenter.js +47 -0
  798. package/esm5/lib/CanvasTemplateCell.js +38 -0
  799. package/esm5/lib/CanvasTemplateCellContainer.js +42 -0
  800. package/esm5/lib/CanvasTemplateCellPresenter.js +44 -0
  801. package/esm5/lib/CanvasTemplateHeaderCell.js +38 -0
  802. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +44 -0
  803. package/esm5/lib/CanvasTextCell.js +27 -0
  804. package/esm5/lib/CanvasTextCellPresenter.js +52 -0
  805. package/esm5/lib/CanvasTextHeaderCell.js +63 -0
  806. package/esm5/lib/CanvasTextHeaderCellPresenter.js +75 -0
  807. package/esm5/lib/CanvasVerticalSeparatorCell.js +21 -0
  808. package/esm5/lib/CanvasVerticalSeparatorCellPresenter.js +28 -0
  809. package/esm5/lib/CellContentHorizontalAlignment.js +37 -0
  810. package/esm5/lib/CellContentVerticalAlignment.js +37 -0
  811. package/esm5/lib/CellDataLoadedAnimationMode.js +29 -0
  812. package/esm5/lib/CellEffect.js +7 -0
  813. package/esm5/lib/CellKey.js +7 -0
  814. package/esm5/lib/CellModel.js +7 -0
  815. package/esm5/lib/CellModelExport.js +122 -0
  816. package/esm5/lib/CellPath.js +319 -0
  817. package/esm5/lib/CellPositionEffect.js +7 -0
  818. package/esm5/lib/CellPresenterBase.js +110 -0
  819. package/esm5/lib/CellPropertyAnimationType.js +65 -0
  820. package/esm5/lib/CellRange.js +82 -0
  821. package/esm5/lib/CellSelectionAnimationMode.js +29 -0
  822. package/esm5/lib/CellStyleRequestedEventArgs.js +54 -0
  823. package/esm5/lib/CheckboxList.js +7 -0
  824. package/esm5/lib/CheckboxListBridge.js +283 -0
  825. package/esm5/lib/CheckboxListExternal.js +11 -0
  826. package/esm5/lib/CheckboxListExternalIndexType.js +11 -0
  827. package/esm5/lib/CheckboxListExternalIndexTypeChangedEventArgs.js +23 -0
  828. package/esm5/lib/CheckboxListExternalKeysClearedEventArgs.js +20 -0
  829. package/esm5/lib/CheckboxListIndexType.js +16 -0
  830. package/esm5/lib/CheckboxListIndexTypeChangedEventArgs.js +23 -0
  831. package/esm5/lib/CheckboxListKeysClearedEventArgs.js +20 -0
  832. package/esm5/lib/CheckboxListView.js +7 -0
  833. package/esm5/lib/CheckboxListViewExternal.js +11 -0
  834. package/esm5/lib/CheckboxListView_combined.js +2206 -0
  835. package/esm5/lib/CheckedChangedEventArgs.js +24 -0
  836. package/esm5/lib/CloneDataSourceFilterOperation.js +20 -0
  837. package/esm5/lib/ColumnCellsEffect.js +7 -0
  838. package/esm5/lib/ColumnChooser.js +7 -0
  839. package/esm5/lib/ColumnChooserInfo.js +23 -0
  840. package/esm5/lib/ColumnChooserView.js +7 -0
  841. package/esm5/lib/ColumnChooserView_combined.js +465 -0
  842. package/esm5/lib/ColumnComparisonConditionOperatorType.js +62 -0
  843. package/esm5/lib/ColumnComparisonFilterCondition.js +7 -0
  844. package/esm5/lib/ColumnController.js +7 -0
  845. package/esm5/lib/ColumnCustomFilterCondition.js +7 -0
  846. package/esm5/lib/ColumnEffect.js +7 -0
  847. package/esm5/lib/ColumnExchanger.js +7 -0
  848. package/esm5/lib/ColumnExchangersCollection.js +7 -0
  849. package/esm5/lib/ColumnExchangingAnimationMode.js +61 -0
  850. package/esm5/lib/ColumnFilterCondition.js +7 -0
  851. package/esm5/lib/ColumnFilterConditionCollection.js +7 -0
  852. package/esm5/lib/ColumnFilterConditionGroup.js +7 -0
  853. package/esm5/lib/ColumnFilterCondition_combined.js +36272 -0
  854. package/esm5/lib/ColumnGroupDescription.js +208 -0
  855. package/esm5/lib/ColumnGroupDescriptionCollection.js +104 -0
  856. package/esm5/lib/ColumnGrouping.js +7 -0
  857. package/esm5/lib/ColumnGroupingView.js +7 -0
  858. package/esm5/lib/ColumnGroupingView_combined.js +1069 -0
  859. package/esm5/lib/ColumnGroupingVisualModelExport.js +87 -0
  860. package/esm5/lib/ColumnHiddenChangedEventArgs.js +7 -0
  861. package/esm5/lib/ColumnHidingAnimationMode.js +61 -0
  862. package/esm5/lib/ColumnInfo.js +7 -0
  863. package/esm5/lib/ColumnMovingAnimationMode.js +29 -0
  864. package/esm5/lib/ColumnMovingMode.js +16 -0
  865. package/esm5/lib/ColumnMovingSeparator.js +7 -0
  866. package/esm5/lib/ColumnOptionsIconAlignment.js +29 -0
  867. package/esm5/lib/ColumnOptionsIconBehavior.js +33 -0
  868. package/esm5/lib/ColumnOptionsToolbarManagerOpeningEventArgs.js +20 -0
  869. package/esm5/lib/ColumnPinnedChangedEventArgs.js +7 -0
  870. package/esm5/lib/ColumnPinning.js +7 -0
  871. package/esm5/lib/ColumnPinningInfo.js +23 -0
  872. package/esm5/lib/ColumnPinningView.js +7 -0
  873. package/esm5/lib/ColumnPinningView_combined.js +412 -0
  874. package/esm5/lib/ColumnPropertySetter.js +43 -0
  875. package/esm5/lib/ColumnPropertySettersCollection.js +22 -0
  876. package/esm5/lib/ColumnPropertyUpdatingAnimationMode.js +33 -0
  877. package/esm5/lib/ColumnResizingAnimationMode.js +29 -0
  878. package/esm5/lib/ColumnResizingMode.js +17 -0
  879. package/esm5/lib/ColumnResizingSeparator.js +7 -0
  880. package/esm5/lib/ColumnShowingAnimationMode.js +61 -0
  881. package/esm5/lib/ColumnSortDescription.js +75 -0
  882. package/esm5/lib/ColumnSortDescriptionCollection.js +104 -0
  883. package/esm5/lib/ColumnSortDirection.js +29 -0
  884. package/esm5/lib/ColumnStates.js +11 -0
  885. package/esm5/lib/ColumnSummaryDescription.js +279 -0
  886. package/esm5/lib/ColumnSummaryDescriptionCollection.js +110 -0
  887. package/esm5/lib/ColumnWidth.js +110 -0
  888. package/esm5/lib/ComboBoxColumn.js +7 -0
  889. package/esm5/lib/ComboEditorView.js +274 -0
  890. package/esm5/lib/ComboEditorView_ComboExternal.js +11 -0
  891. package/esm5/lib/ComparisonOperatorSelector.js +7 -0
  892. package/esm5/lib/ComparisonOperatorSelectorView.js +7 -0
  893. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +1089 -0
  894. package/esm5/lib/ContentCellModelHelper.js +133 -0
  895. package/esm5/lib/CurrentRendererSettings.js +25 -0
  896. package/esm5/lib/DataAdapter.js +7 -0
  897. package/esm5/lib/DataBindingEventArgs.js +7 -0
  898. package/esm5/lib/DataGrid.js +7 -0
  899. package/esm5/lib/DataGridAccessibilityLayoutPanel.js +189 -0
  900. package/esm5/lib/DataGridCellEventArgs.js +7 -0
  901. package/esm5/lib/DataGridCellLayoutPanel.js +576 -0
  902. package/esm5/lib/DataGridColumn.js +7 -0
  903. package/esm5/lib/DataGridColumnToolbarManager.js +7 -0
  904. package/esm5/lib/DataGridDelayedExecutionManager.js +30 -0
  905. package/esm5/lib/DataGridLocaleEn.js +69 -0
  906. package/esm5/lib/DataGridPresenterManager.js +183 -0
  907. package/esm5/lib/DataGridPropertySetter.js +27 -0
  908. package/esm5/lib/DataGridScrollerKeyboardListener.js +69 -0
  909. package/esm5/lib/DataGridSelectionMode.js +41 -0
  910. package/esm5/lib/DataGridStylingDefaults.js +2 -0
  911. package/esm5/lib/DataGridToolbar.js +7 -0
  912. package/esm5/lib/DataGridToolbarView.js +7 -0
  913. package/esm5/lib/DataGridToolbarView_combined.js +846 -0
  914. package/esm5/lib/DataGridViewportManager.js +34 -0
  915. package/esm5/lib/DataSourceNotificationBridge.js +7 -0
  916. package/esm5/lib/DateEditorView.js +232 -0
  917. package/esm5/lib/DateOperatorTypes.js +11 -0
  918. package/esm5/lib/DateTimeCell.js +21 -0
  919. package/esm5/lib/DateTimeCellModel.js +7 -0
  920. package/esm5/lib/DateTimeCellModelExport.js +32 -0
  921. package/esm5/lib/DateTimeCellPresenter.js +50 -0
  922. package/esm5/lib/DateTimeColumn.js +7 -0
  923. package/esm5/lib/DateTimeColumnValueFormatter.js +98 -0
  924. package/esm5/lib/DateTimeFormats.js +41 -0
  925. package/esm5/lib/DefaultCellActionManager.js +7 -0
  926. package/esm5/lib/DefaultCellModelExportUpdater.js +7 -0
  927. package/esm5/lib/DefaultGridInfoRequestor.js +7 -0
  928. package/esm5/lib/DefaultPlatformPixelConverter.js +24 -0
  929. package/esm5/lib/DefinitionBase.js +7 -0
  930. package/esm5/lib/DefinitionPropertyUpdatedEventArgs.js +65 -0
  931. package/esm5/lib/DragSelectEventArgs.js +76 -0
  932. package/esm5/lib/DragType.js +11 -0
  933. package/esm5/lib/Dragger.js +217 -0
  934. package/esm5/lib/DraggerView.js +145 -0
  935. package/esm5/lib/DropDownDataListItem.js +23 -0
  936. package/esm5/lib/EditModeClickAction.js +29 -0
  937. package/esm5/lib/EditModeType.js +33 -0
  938. package/esm5/lib/EditRowDefinition.js +7 -0
  939. package/esm5/lib/EditingManager.js +7 -0
  940. package/esm5/lib/EditorCell.js +544 -0
  941. package/esm5/lib/EditorCellModel.js +7 -0
  942. package/esm5/lib/EditorCellModelExport.js +37 -0
  943. package/esm5/lib/EditorCellPresenter.js +78 -0
  944. package/esm5/lib/EditorDefinition.js +7 -0
  945. package/esm5/lib/EditorRowCell.js +23 -0
  946. package/esm5/lib/EditorRowCellModel.js +7 -0
  947. package/esm5/lib/EditorRowCellPresenter.js +31 -0
  948. package/esm5/lib/EditorType.js +37 -0
  949. package/esm5/lib/EnterKeyBehaviorAfterEdit.js +37 -0
  950. package/esm5/lib/EnterKeyBehaviors.js +41 -0
  951. package/esm5/lib/FilterCell.js +578 -0
  952. package/esm5/lib/FilterCellModel.js +7 -0
  953. package/esm5/lib/FilterCellModelExport.js +50 -0
  954. package/esm5/lib/FilterCellPresenter.js +67 -0
  955. package/esm5/lib/FilterComparisonType.js +29 -0
  956. package/esm5/lib/FilterDialogRenderCompletedEventArgs.js +20 -0
  957. package/esm5/lib/FilterLogicalOperator.js +25 -0
  958. package/esm5/lib/FilterOperand.js +7 -0
  959. package/esm5/lib/FilterRowDefinition.js +7 -0
  960. package/esm5/lib/FilterUIType.js +30 -0
  961. package/esm5/lib/FixedCellPositions.js +11 -0
  962. package/esm5/lib/FormatGroupTextEventArgs.js +25 -0
  963. package/esm5/lib/FormatSummaryTextEventArgs.js +26 -0
  964. package/esm5/lib/GotFocusEventArgs.js +20 -0
  965. package/esm5/lib/GridActivationMode.js +25 -0
  966. package/esm5/lib/GridActiveCellChangedEventArgs.js +43 -0
  967. package/esm5/lib/GridAnimationManager.js +7 -0
  968. package/esm5/lib/GridAnimationManagerAnimationCanceledEventArgs.js +22 -0
  969. package/esm5/lib/GridAnimationManagerAnimationCompletedEventArgs.js +22 -0
  970. package/esm5/lib/GridAnimationManagerAnimationCreatedEventArgs.js +22 -0
  971. package/esm5/lib/GridAnimationPhaseSettings.js +148 -0
  972. package/esm5/lib/GridAnimationSettings.js +144 -0
  973. package/esm5/lib/GridCellBase.js +731 -0
  974. package/esm5/lib/GridCellEditEndedEventArgs.js +7 -0
  975. package/esm5/lib/GridCellEditStartedEventArgs.js +7 -0
  976. package/esm5/lib/GridCellPosition.js +45 -0
  977. package/esm5/lib/GridCellType.js +22 -0
  978. package/esm5/lib/GridCellValueChangingEventArgs.js +7 -0
  979. package/esm5/lib/GridColumnAnimationSettings.js +357 -0
  980. package/esm5/lib/GridColumnButtonOptions.js +7 -0
  981. package/esm5/lib/GridColumnButtonOptionsView.js +7 -0
  982. package/esm5/lib/GridColumnButtonOptionsView_combined.js +203 -0
  983. package/esm5/lib/GridColumnCollection.js +7 -0
  984. package/esm5/lib/GridColumnFilterOptions.js +7 -0
  985. package/esm5/lib/GridColumnFilterOptionsView.js +7 -0
  986. package/esm5/lib/GridColumnFilterOptionsView_combined.js +560 -0
  987. package/esm5/lib/GridColumnGroupOptions.js +7 -0
  988. package/esm5/lib/GridColumnGroupOptionsView.js +7 -0
  989. package/esm5/lib/GridColumnGroupOptionsView_combined.js +234 -0
  990. package/esm5/lib/GridColumnHideOptions.js +7 -0
  991. package/esm5/lib/GridColumnHideOptionsView.js +7 -0
  992. package/esm5/lib/GridColumnHideOptionsView_combined.js +171 -0
  993. package/esm5/lib/GridColumnMoveOptions.js +7 -0
  994. package/esm5/lib/GridColumnMoveOptionsView.js +7 -0
  995. package/esm5/lib/GridColumnMoveOptionsView_combined.js +322 -0
  996. package/esm5/lib/GridColumnOptions.js +7 -0
  997. package/esm5/lib/GridColumnOptionsBase.js +7 -0
  998. package/esm5/lib/GridColumnOptionsSectionBase.js +40 -0
  999. package/esm5/lib/GridColumnOptionsSimpleSectionBase.js +67 -0
  1000. package/esm5/lib/GridColumnOptionsUtilities.js +7 -0
  1001. package/esm5/lib/GridColumnOptionsView.js +7 -0
  1002. package/esm5/lib/GridColumnOptionsViewBase.js +7 -0
  1003. package/esm5/lib/GridColumnOptionsViewBase_combined.js +741 -0
  1004. package/esm5/lib/GridColumnOptionsView_combined.js +1018 -0
  1005. package/esm5/lib/GridColumnPinOptions.js +7 -0
  1006. package/esm5/lib/GridColumnPinOptionsView.js +7 -0
  1007. package/esm5/lib/GridColumnPinOptionsView_combined.js +310 -0
  1008. package/esm5/lib/GridColumnSortOptions.js +7 -0
  1009. package/esm5/lib/GridColumnSortOptionsView.js +7 -0
  1010. package/esm5/lib/GridColumnSortOptionsView_combined.js +305 -0
  1011. package/esm5/lib/GridColumnSpacer.js +98 -0
  1012. package/esm5/lib/GridColumnSpacerCollection.js +80 -0
  1013. package/esm5/lib/GridColumnSummaryOptions.js +7 -0
  1014. package/esm5/lib/GridColumnSummaryOptionsView.js +7 -0
  1015. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +484 -0
  1016. package/esm5/lib/GridColumnWidthChangedEventArgs.js +7 -0
  1017. package/esm5/lib/GridColumnsAutoGeneratedEventArgs.js +7 -0
  1018. package/esm5/lib/GridColumnsChangedEventArgs.js +7 -0
  1019. package/esm5/lib/GridCompoundConditionalStyle.js +7 -0
  1020. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +43 -0
  1021. package/esm5/lib/GridConditionalStyle.js +7 -0
  1022. package/esm5/lib/GridConditionalStyleBoundType.js +16 -0
  1023. package/esm5/lib/GridConditionalStyleCollection.js +7 -0
  1024. package/esm5/lib/GridConditionalStyleProperty.js +761 -0
  1025. package/esm5/lib/GridConditionalStylePropertyCollection.js +22 -0
  1026. package/esm5/lib/GridConditionalStylePropertyStylingType.js +18 -0
  1027. package/esm5/lib/GridCustomFilterRequestedEventArgs.js +7 -0
  1028. package/esm5/lib/GridDataCommittedEventArgs.js +25 -0
  1029. package/esm5/lib/GridDataCommittingEventArgs.js +25 -0
  1030. package/esm5/lib/GridEasingFunctionType.js +33 -0
  1031. package/esm5/lib/GridEffect.js +7 -0
  1032. package/esm5/lib/GridEffectGroup.js +7 -0
  1033. package/esm5/lib/GridEffectMainIntent.js +11 -0
  1034. package/esm5/lib/GridEffectManager.js +7 -0
  1035. package/esm5/lib/GridEffectSubIntent.js +11 -0
  1036. package/esm5/lib/GridExpansionIndicator.js +7 -0
  1037. package/esm5/lib/GridExpansionIndicatorView.js +7 -0
  1038. package/esm5/lib/GridExpansionIndicatorView_combined.js +350 -0
  1039. package/esm5/lib/GridExternalWrapper.js +158 -0
  1040. package/esm5/lib/GridFilterDialog.js +7 -0
  1041. package/esm5/lib/GridFilterDialogFilterChangeEventArgs.js +22 -0
  1042. package/esm5/lib/GridFilterDialogOpeningEventArgs.js +22 -0
  1043. package/esm5/lib/GridFilterDialogPanel.js +7 -0
  1044. package/esm5/lib/GridFilterDialogView.js +7 -0
  1045. package/esm5/lib/GridFilterDialogViewModel.js +7 -0
  1046. package/esm5/lib/GridFilterDialogViewModelGrouping.js +24 -0
  1047. package/esm5/lib/GridFilterDialogViewModelGroupingLevel.js +22 -0
  1048. package/esm5/lib/GridFilterDialogViewModelGroupingLevelCollection.js +22 -0
  1049. package/esm5/lib/GridFilterDialogViewModelRow.js +117 -0
  1050. package/esm5/lib/GridFilterDialogViewModelRowCollection.js +7 -0
  1051. package/esm5/lib/GridFilterDialogView_combined.js +1228 -0
  1052. package/esm5/lib/GridFilterExpressionsEventArgs.js +22 -0
  1053. package/esm5/lib/GridFilterOperandsCollection.js +7 -0
  1054. package/esm5/lib/GridGroupDescriptionsChangedEventArgs.js +32 -0
  1055. package/esm5/lib/GridLayer.js +7 -0
  1056. package/esm5/lib/GridLayerController.js +7 -0
  1057. package/esm5/lib/GridLayerExport.js +55 -0
  1058. package/esm5/lib/GridModuleHelper.js +28 -0
  1059. package/esm5/lib/GridRowEditEndedEventArgs.js +33 -0
  1060. package/esm5/lib/GridRowEditStartedEventArgs.js +33 -0
  1061. package/esm5/lib/GridSelectedCellRangesChangedEventArgs.js +65 -0
  1062. package/esm5/lib/GridSelectedCellRangesCollection.js +29 -0
  1063. package/esm5/lib/GridSelectedCellsChangedEventArgs.js +7 -0
  1064. package/esm5/lib/GridSelectedCellsCollection.js +7 -0
  1065. package/esm5/lib/GridSelectedItemsChangedEventArgs.js +54 -0
  1066. package/esm5/lib/GridSelectedItemsCollection.js +48 -0
  1067. package/esm5/lib/GridSelectedKeysChangedEventArgs.js +54 -0
  1068. package/esm5/lib/GridSelectedKeysCollection.js +220 -0
  1069. package/esm5/lib/GridSelectionBehavior.js +25 -0
  1070. package/esm5/lib/GridSelectionChangedEventArgs.js +20 -0
  1071. package/esm5/lib/GridSizeChangedEventArgs.js +23 -0
  1072. package/esm5/lib/GridSortDescriptionsChangedEventArgs.js +32 -0
  1073. package/esm5/lib/GridSortIndicator.js +7 -0
  1074. package/esm5/lib/GridSortIndicatorView.js +7 -0
  1075. package/esm5/lib/GridSortIndicatorView_combined.js +634 -0
  1076. package/esm5/lib/GridStyleRepository.js +647 -0
  1077. package/esm5/lib/GridSummaryDescriptionsChangedEventArgs.js +32 -0
  1078. package/esm5/lib/GridViewportChangedEventArgs.js +29 -0
  1079. package/esm5/lib/GroupData.js +24 -0
  1080. package/esm5/lib/GroupHeaderDisplayMode.js +25 -0
  1081. package/esm5/lib/GroupInfo.js +24 -0
  1082. package/esm5/lib/GroupSummaryDisplayMode.js +38 -0
  1083. package/esm5/lib/Header.js +7 -0
  1084. package/esm5/lib/HeaderClickAction.js +37 -0
  1085. package/esm5/lib/HeaderRowSeparator.js +7 -0
  1086. package/esm5/lib/HeaderSeparator.js +7 -0
  1087. package/esm5/lib/HorizontalPropertyEditorDataSource.js +26 -0
  1088. package/esm5/lib/HoverManager.js +7 -0
  1089. package/esm5/lib/ICellActionManager.js +7 -0
  1090. package/esm5/lib/ICellModelExportUpdater.js +11 -0
  1091. package/esm5/lib/ICellPresenter.js +7 -0
  1092. package/esm5/lib/ICellRenderingEngine.js +7 -0
  1093. package/esm5/lib/IColumnGrouping.js +11 -0
  1094. package/esm5/lib/IColumnGroupingVisualModelExport.js +11 -0
  1095. package/esm5/lib/IDataAdapter.js +7 -0
  1096. package/esm5/lib/IDataGridComponent.js +11 -0
  1097. package/esm5/lib/IDelayedExecutionManager.js +11 -0
  1098. package/esm5/lib/IDragger.js +7 -0
  1099. package/esm5/lib/IDraggerView.js +7 -0
  1100. package/esm5/lib/IDraggerView_combined.js +15 -0
  1101. package/esm5/lib/IEditorView.js +11 -0
  1102. package/esm5/lib/IExternalDefinitionBase.js +7 -0
  1103. package/esm5/lib/IExternalGrid.js +7 -0
  1104. package/esm5/lib/IExternalTemplateColumn.js +11 -0
  1105. package/esm5/lib/IExternalTemplateHeaderColumn.js +11 -0
  1106. package/esm5/lib/IExternalTemplateSectionHeader.js +11 -0
  1107. package/esm5/lib/IGridInfoRequestor.js +7 -0
  1108. package/esm5/lib/INativeCell.js +11 -0
  1109. package/esm5/lib/IPlatformPixelConverter.js +11 -0
  1110. package/esm5/lib/IPropertySetter.js +11 -0
  1111. package/esm5/lib/ISummaryChooserView.js +7 -0
  1112. package/esm5/lib/ISummaryChooserView_combined.js +521 -0
  1113. package/esm5/lib/IToolbarVisualModelExport.js +11 -0
  1114. package/esm5/lib/IViewportManager.js +11 -0
  1115. package/esm5/lib/ImageCell.js +129 -0
  1116. package/esm5/lib/ImageCellModel.js +7 -0
  1117. package/esm5/lib/ImageCellModelExport.js +30 -0
  1118. package/esm5/lib/ImageCellPresenter.js +96 -0
  1119. package/esm5/lib/ImageColumn.js +7 -0
  1120. package/esm5/lib/ImageResourceType.js +37 -0
  1121. package/esm5/lib/ImageStretchOptions.js +29 -0
  1122. package/esm5/lib/LayoutAction.js +49 -0
  1123. package/esm5/lib/LostFocusEventArgs.js +20 -0
  1124. package/esm5/lib/MergedCellEvaluationCriteria.js +29 -0
  1125. package/esm5/lib/MergedCellInfo.js +28 -0
  1126. package/esm5/lib/MergedCellMode.js +34 -0
  1127. package/esm5/lib/ModelStates.js +11 -0
  1128. package/esm5/lib/ModelTypes.js +11 -0
  1129. package/esm5/lib/MultiColumnComboBox.js +7 -0
  1130. package/esm5/lib/MultiColumnComboBoxDataSourceNotificationHandler.js +7 -0
  1131. package/esm5/lib/MultiColumnComboBoxSelectedItemChangeType.js +20 -0
  1132. package/esm5/lib/MultiColumnComboBoxTextChangedEventArgs.js +39 -0
  1133. package/esm5/lib/MultiColumnComboBoxUtilities.js +99 -0
  1134. package/esm5/lib/MultiColumnComboBoxValueChangedEventArgs.js +39 -0
  1135. package/esm5/lib/MultiColumnComboBoxView.js +7 -0
  1136. package/esm5/lib/MultiColumnComboBoxView_combined.js +3184 -0
  1137. package/esm5/lib/MultiColumnComboVisualModelExport.js +209 -0
  1138. package/esm5/lib/MultipleDataSourceNotifier.js +71 -0
  1139. package/esm5/lib/NativeUIComboFactory.js +57 -0
  1140. package/esm5/lib/NativeUIGridFactory.js +80 -0
  1141. package/esm5/lib/NumericCell.js +30 -0
  1142. package/esm5/lib/NumericCellFormatter.js +7 -0
  1143. package/esm5/lib/NumericCellModel.js +7 -0
  1144. package/esm5/lib/NumericCellModelExport.js +34 -0
  1145. package/esm5/lib/NumericCellPresenter.js +50 -0
  1146. package/esm5/lib/NumericColumn.js +7 -0
  1147. package/esm5/lib/NumericEditorView.js +33 -0
  1148. package/esm5/lib/OperatorModel.js +26 -0
  1149. package/esm5/lib/OperatorSelectorClosingEventArgs.js +20 -0
  1150. package/esm5/lib/OperatorSelectorOpeningEventArgs.js +20 -0
  1151. package/esm5/lib/OperatorSelectorValueChangedEventArgs.js +43 -0
  1152. package/esm5/lib/PageChangedEventArgs.js +43 -0
  1153. package/esm5/lib/PagedDataProvider.js +7 -0
  1154. package/esm5/lib/Pager.js +7 -0
  1155. package/esm5/lib/PagerDataSourceNotificationBridge.js +7 -0
  1156. package/esm5/lib/PagerGridDataSourceNotificationBridge.js +7 -0
  1157. package/esm5/lib/PagerView.js +7 -0
  1158. package/esm5/lib/PagerVisualModelExport.js +84 -0
  1159. package/esm5/lib/PinnedAreaSeparator.js +7 -0
  1160. package/esm5/lib/PinnedPositions.js +29 -0
  1161. package/esm5/lib/PinnedRowInfo.js +7 -0
  1162. package/esm5/lib/PlaceholderView.js +87 -0
  1163. package/esm5/lib/PrimaryKeyValue.js +97 -0
  1164. package/esm5/lib/PropertyEditor.js +7 -0
  1165. package/esm5/lib/PropertyEditorView.js +7 -0
  1166. package/esm5/lib/PropertyEditorView_combined.js +1821 -0
  1167. package/esm5/lib/PushRowResult.js +7 -0
  1168. package/esm5/lib/PushRowSettings.js +7 -0
  1169. package/esm5/lib/RecyclingManager.js +7 -0
  1170. package/esm5/lib/ResponsiveEngine.js +7 -0
  1171. package/esm5/lib/ResponsivePhase.js +7 -0
  1172. package/esm5/lib/ResponsivePhasesCollection.js +7 -0
  1173. package/esm5/lib/ResponsiveState.js +7 -0
  1174. package/esm5/lib/ResponsiveStateEnteredEventArgs.js +20 -0
  1175. package/esm5/lib/ResponsiveStateEnteringEventArgs.js +20 -0
  1176. package/esm5/lib/ResponsiveStateExitedEventArgs.js +20 -0
  1177. package/esm5/lib/ResponsiveStatesCollection.js +7 -0
  1178. package/esm5/lib/RowCellsEffect.js +7 -0
  1179. package/esm5/lib/RowEffect.js +7 -0
  1180. package/esm5/lib/RowHoverAnimationMode.js +29 -0
  1181. package/esm5/lib/RowPath.js +148 -0
  1182. package/esm5/lib/RowRange.js +44 -0
  1183. package/esm5/lib/RowSelectionAnimationMode.js +29 -0
  1184. package/esm5/lib/RowSeparator.js +7 -0
  1185. package/esm5/lib/RowSeparatorCell.js +21 -0
  1186. package/esm5/lib/RowSeparatorCellPresenter.js +28 -0
  1187. package/esm5/lib/RowSeparatorModel.js +7 -0
  1188. package/esm5/lib/RowSeparatorModelExport.js +27 -0
  1189. package/esm5/lib/SaveLayoutColumn.js +7 -0
  1190. package/esm5/lib/SaveLayoutFilterInfo.js +175 -0
  1191. package/esm5/lib/SaveLayoutGroupInfo.js +53 -0
  1192. package/esm5/lib/SaveLayoutSortInfo.js +56 -0
  1193. package/esm5/lib/SectionFooter.js +7 -0
  1194. package/esm5/lib/SectionHeader.js +7 -0
  1195. package/esm5/lib/SectionHeaderCell.js +54 -0
  1196. package/esm5/lib/SectionHeaderCellModel.js +7 -0
  1197. package/esm5/lib/SectionHeaderCellModelExport.js +64 -0
  1198. package/esm5/lib/SectionHeaderCellPresenter.js +56 -0
  1199. package/esm5/lib/SectionInfo.js +7 -0
  1200. package/esm5/lib/SelectAllCheckboxChangedEventArgs.js +22 -0
  1201. package/esm5/lib/SelectionManager.js +7 -0
  1202. package/esm5/lib/SortIndicatorRenderCompletedEventArgs.js +20 -0
  1203. package/esm5/lib/SortIndicatorStyle.js +32 -0
  1204. package/esm5/lib/SortManager.js +7 -0
  1205. package/esm5/lib/SortMode.js +37 -0
  1206. package/esm5/lib/SpacerEffect.js +7 -0
  1207. package/esm5/lib/SpatialEngine.js +7 -0
  1208. package/esm5/lib/StringOperatorTypes.js +11 -0
  1209. package/esm5/lib/SummaryCell.js +84 -0
  1210. package/esm5/lib/SummaryCellModel.js +7 -0
  1211. package/esm5/lib/SummaryCellModelExport.js +90 -0
  1212. package/esm5/lib/SummaryCellPresenter.js +56 -0
  1213. package/esm5/lib/SummaryChangedEventArgs.js +23 -0
  1214. package/esm5/lib/SummaryChooser.js +7 -0
  1215. package/esm5/lib/SummaryChooserItem.js +24 -0
  1216. package/esm5/lib/SummaryChooserView.js +7 -0
  1217. package/esm5/lib/SummaryData.js +26 -0
  1218. package/esm5/lib/SummaryRow.js +7 -0
  1219. package/esm5/lib/SummaryRowRoot.js +7 -0
  1220. package/esm5/lib/SummaryRowSection.js +7 -0
  1221. package/esm5/lib/SummaryScope.js +33 -0
  1222. package/esm5/lib/TemplateCell.js +61 -0
  1223. package/esm5/lib/TemplateCellContainer.js +43 -0
  1224. package/esm5/lib/TemplateCellModel.js +7 -0
  1225. package/esm5/lib/TemplateCellModelExport.js +29 -0
  1226. package/esm5/lib/TemplateCellPresenter.js +43 -0
  1227. package/esm5/lib/TemplateCellUpdatingEventArgs.js +7 -0
  1228. package/esm5/lib/TemplateColumn.js +7 -0
  1229. package/esm5/lib/TemplateHeader.js +50 -0
  1230. package/esm5/lib/TemplateHeaderCell.js +36 -0
  1231. package/esm5/lib/TemplateHeaderCellModel.js +67 -0
  1232. package/esm5/lib/TemplateHeaderCellModelExport.js +29 -0
  1233. package/esm5/lib/TemplateHeaderCellPresenter.js +44 -0
  1234. package/esm5/lib/TemplateHeaderCellUpdatingEventArgs.js +43 -0
  1235. package/esm5/lib/TemplateSectionHeader.js +41 -0
  1236. package/esm5/lib/TemplateSectionHeaderCellModel.js +21 -0
  1237. package/esm5/lib/TemplateSectionHeaderCellModelExport.js +27 -0
  1238. package/esm5/lib/TemplateSectionHeaderCellUpdatingEventArgs.js +43 -0
  1239. package/esm5/lib/TextCell.js +67 -0
  1240. package/esm5/lib/TextCellLineBreakMode.js +33 -0
  1241. package/esm5/lib/TextCellModel.js +7 -0
  1242. package/esm5/lib/TextCellModelExport.js +32 -0
  1243. package/esm5/lib/TextCellPresenter.js +52 -0
  1244. package/esm5/lib/TextColumn.js +7 -0
  1245. package/esm5/lib/TextEditorView.js +177 -0
  1246. package/esm5/lib/TextHeader.js +7 -0
  1247. package/esm5/lib/TextHeaderCell.js +322 -0
  1248. package/esm5/lib/TextHeaderCellModel.js +7 -0
  1249. package/esm5/lib/TextHeaderCellModelExport.js +27 -0
  1250. package/esm5/lib/TextHeaderCellPresenter.js +92 -0
  1251. package/esm5/lib/TextIconSetBuiltInTypes.js +18 -0
  1252. package/esm5/lib/TextIconSetConditionalStyle.js +107 -0
  1253. package/esm5/lib/TextVisualModelExport.js +46 -0
  1254. package/esm5/lib/ToolbarVisualModelExport.js +24 -0
  1255. package/esm5/lib/VerticalSeparatorCell.js +74 -0
  1256. package/esm5/lib/VerticalSeparatorCellModel.js +7 -0
  1257. package/esm5/lib/VerticalSeparatorCellPresenter.js +28 -0
  1258. package/esm5/lib/VisibilityEngine.js +7 -0
  1259. package/esm5/lib/VisualModel.js +7 -0
  1260. package/esm5/lib/VisualModelExport.js +233 -0
  1261. package/esm5/lib/igx-apply-button-click-event-args.js +33 -0
  1262. package/esm5/lib/igx-cancel-button-click-event-args.js +33 -0
  1263. package/esm5/lib/igx-cell-info.js +1376 -0
  1264. package/esm5/lib/igx-cell-key-dynamic-module.js +33 -0
  1265. package/esm5/lib/igx-cell-key-module.js +27 -0
  1266. package/esm5/lib/igx-cell-key.js +106 -0
  1267. package/esm5/lib/igx-cell-range-dynamic-module.js +33 -0
  1268. package/esm5/lib/igx-cell-range-module.js +27 -0
  1269. package/esm5/lib/igx-cell-range.js +96 -0
  1270. package/esm5/lib/igx-cell-style-requested-event-args.js +75 -0
  1271. package/esm5/lib/igx-checkbox-list-component.js +1099 -0
  1272. package/esm5/lib/igx-checkbox-list-dynamic-module.js +89 -0
  1273. package/esm5/lib/igx-checkbox-list-index-type-changed-event-args.js +55 -0
  1274. package/esm5/lib/igx-checkbox-list-keys-cleared-event-args.js +33 -0
  1275. package/esm5/lib/igx-checkbox-list-module.js +83 -0
  1276. package/esm5/lib/igx-checked-changed-event-args.js +68 -0
  1277. package/esm5/lib/igx-column-chooser-component.js +329 -0
  1278. package/esm5/lib/igx-column-chooser-dynamic-module.js +51 -0
  1279. package/esm5/lib/igx-column-chooser-module.js +45 -0
  1280. package/esm5/lib/igx-column-exchanger.js +57 -0
  1281. package/esm5/lib/igx-column-exchangers-collection.js +58 -0
  1282. package/esm5/lib/igx-column-group-description-collection.js +146 -0
  1283. package/esm5/lib/igx-column-group-description-dynamic-module.js +33 -0
  1284. package/esm5/lib/igx-column-group-description-module.js +27 -0
  1285. package/esm5/lib/igx-column-group-description.js +168 -0
  1286. package/esm5/lib/igx-column-grouping-component.js +385 -0
  1287. package/esm5/lib/igx-column-grouping-dynamic-module.js +37 -0
  1288. package/esm5/lib/igx-column-grouping-module.js +35 -0
  1289. package/esm5/lib/igx-column-hidden-changed-event-args.js +66 -0
  1290. package/esm5/lib/igx-column-moving-separator-component.js +90 -0
  1291. package/esm5/lib/igx-column-moving-separator-dynamic-module.js +33 -0
  1292. package/esm5/lib/igx-column-moving-separator-module.js +28 -0
  1293. package/esm5/lib/igx-column-pinned-changed-event-args.js +76 -0
  1294. package/esm5/lib/igx-column-pinning-component.js +328 -0
  1295. package/esm5/lib/igx-column-pinning-dynamic-module.js +44 -0
  1296. package/esm5/lib/igx-column-pinning-module.js +38 -0
  1297. package/esm5/lib/igx-column-property-setter.js +83 -0
  1298. package/esm5/lib/igx-column-property-setters-collection.js +58 -0
  1299. package/esm5/lib/igx-column-resizing-separator-component.js +75 -0
  1300. package/esm5/lib/igx-column-resizing-separator-dynamic-module.js +33 -0
  1301. package/esm5/lib/igx-column-resizing-separator-module.js +28 -0
  1302. package/esm5/lib/igx-column-sort-description-collection.js +146 -0
  1303. package/esm5/lib/igx-column-sort-description-dynamic-module.js +33 -0
  1304. package/esm5/lib/igx-column-sort-description-module.js +27 -0
  1305. package/esm5/lib/igx-column-sort-description.js +81 -0
  1306. package/esm5/lib/igx-column-summary-description-collection.js +143 -0
  1307. package/esm5/lib/igx-column-summary-description-dynamic-module.js +33 -0
  1308. package/esm5/lib/igx-column-summary-description-module.js +27 -0
  1309. package/esm5/lib/igx-column-summary-description.js +270 -0
  1310. package/esm5/lib/igx-column-width-dynamic-module.js +33 -0
  1311. package/esm5/lib/igx-column-width-module.js +27 -0
  1312. package/esm5/lib/igx-column-width.js +84 -0
  1313. package/esm5/lib/igx-combo-box-column-component.js +134 -0
  1314. package/esm5/lib/igx-combo-box-column-dynamic-module.js +33 -0
  1315. package/esm5/lib/igx-combo-box-column-module.js +28 -0
  1316. package/esm5/lib/igx-data-binding-event-args.js +116 -0
  1317. package/esm5/lib/igx-data-grid-all-columns-dynamic-module.js +108 -0
  1318. package/esm5/lib/igx-data-grid-all-columns-module.js +101 -0
  1319. package/esm5/lib/igx-data-grid-cell-event-args.js +135 -0
  1320. package/esm5/lib/igx-data-grid-column-component.js +1106 -0
  1321. package/esm5/lib/igx-data-grid-comparison-operator-selector-component.js +680 -0
  1322. package/esm5/lib/igx-data-grid-component.js +5103 -0
  1323. package/esm5/lib/igx-data-grid-core-dynamic-module.js +177 -0
  1324. package/esm5/lib/igx-data-grid-core-module.js +171 -0
  1325. package/esm5/lib/igx-data-grid-dynamic-module.js +94 -0
  1326. package/esm5/lib/igx-data-grid-expansion-indicator-component.js +225 -0
  1327. package/esm5/lib/igx-data-grid-filter-dialog-component.js +391 -0
  1328. package/esm5/lib/igx-data-grid-locale-en-module.js +30 -0
  1329. package/esm5/lib/igx-data-grid-module.js +87 -0
  1330. package/esm5/lib/igx-data-grid-pager-component.js +314 -0
  1331. package/esm5/lib/igx-data-grid-pager-dynamic-module.js +41 -0
  1332. package/esm5/lib/igx-data-grid-pager-module.js +34 -0
  1333. package/esm5/lib/igx-data-grid-sort-indicator-component.js +267 -0
  1334. package/esm5/lib/igx-data-grid-toolbar-component.js +504 -0
  1335. package/esm5/lib/igx-data-grid-toolbar-dynamic-module.js +65 -0
  1336. package/esm5/lib/igx-data-grid-toolbar-module.js +59 -0
  1337. package/esm5/lib/igx-date-time-cell-info.js +118 -0
  1338. package/esm5/lib/igx-date-time-column-component.js +219 -0
  1339. package/esm5/lib/igx-date-time-column-dynamic-module.js +33 -0
  1340. package/esm5/lib/igx-date-time-column-module.js +28 -0
  1341. package/esm5/lib/igx-definition-base-component.js +1054 -0
  1342. package/esm5/lib/igx-edit-row-definition-component.js +54 -0
  1343. package/esm5/lib/igx-edit-row-definition-dynamic-module.js +33 -0
  1344. package/esm5/lib/igx-edit-row-definition-module.js +28 -0
  1345. package/esm5/lib/igx-editor-cell-info.js +202 -0
  1346. package/esm5/lib/igx-editor-definition-component.js +54 -0
  1347. package/esm5/lib/igx-editor-definition-dynamic-module.js +33 -0
  1348. package/esm5/lib/igx-editor-definition-module.js +28 -0
  1349. package/esm5/lib/igx-editor-row-cell-info.js +27 -0
  1350. package/esm5/lib/igx-filter-cell-info.js +197 -0
  1351. package/esm5/lib/igx-filter-dialog-render-completed-event-args.js +33 -0
  1352. package/esm5/lib/igx-filter-operand-dynamic-module.js +33 -0
  1353. package/esm5/lib/igx-filter-operand-module.js +27 -0
  1354. package/esm5/lib/igx-filter-operand.js +159 -0
  1355. package/esm5/lib/igx-filter-row-definition-component.js +114 -0
  1356. package/esm5/lib/igx-filter-row-definition-dynamic-module.js +33 -0
  1357. package/esm5/lib/igx-filter-row-definition-module.js +28 -0
  1358. package/esm5/lib/igx-format-group-text-event-args.js +85 -0
  1359. package/esm5/lib/igx-format-summary-text-event-args.js +98 -0
  1360. package/esm5/lib/igx-got-focus-event-args.js +33 -0
  1361. package/esm5/lib/igx-grid-active-cell-changed-event-args.js +95 -0
  1362. package/esm5/lib/igx-grid-animation-phase-settings.js +146 -0
  1363. package/esm5/lib/igx-grid-animation-settings.js +53 -0
  1364. package/esm5/lib/igx-grid-cell-edit-ended-event-args.js +84 -0
  1365. package/esm5/lib/igx-grid-cell-edit-started-event-args.js +84 -0
  1366. package/esm5/lib/igx-grid-cell-position-dynamic-module.js +33 -0
  1367. package/esm5/lib/igx-grid-cell-position-module.js +27 -0
  1368. package/esm5/lib/igx-grid-cell-position.js +67 -0
  1369. package/esm5/lib/igx-grid-cell-value-changing-event-args.js +167 -0
  1370. package/esm5/lib/igx-grid-column-animation-settings.js +53 -0
  1371. package/esm5/lib/igx-grid-column-button-options-component.js +164 -0
  1372. package/esm5/lib/igx-grid-column-button-options-dynamic-module.js +37 -0
  1373. package/esm5/lib/igx-grid-column-button-options-module.js +35 -0
  1374. package/esm5/lib/igx-grid-column-collection.js +58 -0
  1375. package/esm5/lib/igx-grid-column-filter-options-component.js +167 -0
  1376. package/esm5/lib/igx-grid-column-filter-options-dynamic-module.js +44 -0
  1377. package/esm5/lib/igx-grid-column-filter-options-module.js +38 -0
  1378. package/esm5/lib/igx-grid-column-group-options-component.js +74 -0
  1379. package/esm5/lib/igx-grid-column-group-options-dynamic-module.js +37 -0
  1380. package/esm5/lib/igx-grid-column-group-options-module.js +35 -0
  1381. package/esm5/lib/igx-grid-column-hide-options-component.js +74 -0
  1382. package/esm5/lib/igx-grid-column-hide-options-dynamic-module.js +37 -0
  1383. package/esm5/lib/igx-grid-column-hide-options-module.js +35 -0
  1384. package/esm5/lib/igx-grid-column-move-options-component.js +98 -0
  1385. package/esm5/lib/igx-grid-column-move-options-dynamic-module.js +37 -0
  1386. package/esm5/lib/igx-grid-column-move-options-module.js +35 -0
  1387. package/esm5/lib/igx-grid-column-options-base-component.js +352 -0
  1388. package/esm5/lib/igx-grid-column-options-component.js +723 -0
  1389. package/esm5/lib/igx-grid-column-options-dynamic-module.js +93 -0
  1390. package/esm5/lib/igx-grid-column-options-module.js +87 -0
  1391. package/esm5/lib/igx-grid-column-options-section-base-component.js +36 -0
  1392. package/esm5/lib/igx-grid-column-options-simple-section-base-component.js +55 -0
  1393. package/esm5/lib/igx-grid-column-pin-options-component.js +98 -0
  1394. package/esm5/lib/igx-grid-column-pin-options-dynamic-module.js +37 -0
  1395. package/esm5/lib/igx-grid-column-pin-options-module.js +35 -0
  1396. package/esm5/lib/igx-grid-column-sort-options-component.js +111 -0
  1397. package/esm5/lib/igx-grid-column-sort-options-dynamic-module.js +37 -0
  1398. package/esm5/lib/igx-grid-column-sort-options-module.js +35 -0
  1399. package/esm5/lib/igx-grid-column-summary-options-component.js +130 -0
  1400. package/esm5/lib/igx-grid-column-summary-options-dynamic-module.js +51 -0
  1401. package/esm5/lib/igx-grid-column-summary-options-module.js +45 -0
  1402. package/esm5/lib/igx-grid-column-width-changed-event-args.js +120 -0
  1403. package/esm5/lib/igx-grid-columns-auto-generated-event-args.js +74 -0
  1404. package/esm5/lib/igx-grid-columns-changed-event-args.js +74 -0
  1405. package/esm5/lib/igx-grid-compound-conditional-style-component.js +80 -0
  1406. package/esm5/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +59 -0
  1407. package/esm5/lib/igx-grid-conditional-style-collection.js +58 -0
  1408. package/esm5/lib/igx-grid-conditional-style-component.js +386 -0
  1409. package/esm5/lib/igx-grid-conditional-style-dynamic-module.js +33 -0
  1410. package/esm5/lib/igx-grid-conditional-style-module.js +28 -0
  1411. package/esm5/lib/igx-grid-conditional-style-property-collection.js +58 -0
  1412. package/esm5/lib/igx-grid-conditional-style-property-component.js +506 -0
  1413. package/esm5/lib/igx-grid-conditional-style-property-dynamic-module.js +33 -0
  1414. package/esm5/lib/igx-grid-conditional-style-property-module.js +28 -0
  1415. package/esm5/lib/igx-grid-custom-filter-requested-event-args.js +124 -0
  1416. package/esm5/lib/igx-grid-data-committed-event-args.js +56 -0
  1417. package/esm5/lib/igx-grid-data-committing-event-args.js +56 -0
  1418. package/esm5/lib/igx-grid-filter-dialog-filter-change-event-args.js +43 -0
  1419. package/esm5/lib/igx-grid-filter-dialog-opening-event-args.js +55 -0
  1420. package/esm5/lib/igx-grid-filter-dialog-view-model-grouping-level-collection.js +58 -0
  1421. package/esm5/lib/igx-grid-filter-dialog-view-model-grouping-level.js +58 -0
  1422. package/esm5/lib/igx-grid-filter-dialog-view-model-grouping.js +72 -0
  1423. package/esm5/lib/igx-grid-filter-dialog-view-model-row-collection.js +58 -0
  1424. package/esm5/lib/igx-grid-filter-dialog-view-model-row.js +122 -0
  1425. package/esm5/lib/igx-grid-filter-dialog-view-model.js +171 -0
  1426. package/esm5/lib/igx-grid-filter-expressions-event-args.js +60 -0
  1427. package/esm5/lib/igx-grid-filter-operands-collection.js +58 -0
  1428. package/esm5/lib/igx-grid-group-descriptions-changed-event-args.js +63 -0
  1429. package/esm5/lib/igx-grid-row-edit-ended-event-args.js +59 -0
  1430. package/esm5/lib/igx-grid-row-edit-started-event-args.js +59 -0
  1431. package/esm5/lib/igx-grid-selected-cell-ranges-changed-event-args.js +188 -0
  1432. package/esm5/lib/igx-grid-selected-cell-ranges-collection.js +58 -0
  1433. package/esm5/lib/igx-grid-selected-cells-changed-event-args.js +151 -0
  1434. package/esm5/lib/igx-grid-selected-cells-collection.js +58 -0
  1435. package/esm5/lib/igx-grid-selected-items-changed-event-args.js +151 -0
  1436. package/esm5/lib/igx-grid-selected-items-collection.js +35 -0
  1437. package/esm5/lib/igx-grid-selected-keys-changed-event-args.js +151 -0
  1438. package/esm5/lib/igx-grid-selected-keys-collection.js +58 -0
  1439. package/esm5/lib/igx-grid-selection-changed-event-args.js +36 -0
  1440. package/esm5/lib/igx-grid-size-changed-event-args.js +62 -0
  1441. package/esm5/lib/igx-grid-sort-descriptions-changed-event-args.js +63 -0
  1442. package/esm5/lib/igx-grid-summary-descriptions-changed-event-args.js +63 -0
  1443. package/esm5/lib/igx-group-data.js +83 -0
  1444. package/esm5/lib/igx-header-component.js +163 -0
  1445. package/esm5/lib/igx-header-row-separator-component.js +54 -0
  1446. package/esm5/lib/igx-header-row-separator-dynamic-module.js +33 -0
  1447. package/esm5/lib/igx-header-row-separator-module.js +28 -0
  1448. package/esm5/lib/igx-header-separator-component.js +51 -0
  1449. package/esm5/lib/igx-header-separator-dynamic-module.js +33 -0
  1450. package/esm5/lib/igx-header-separator-module.js +28 -0
  1451. package/esm5/lib/igx-horizontal-property-editor-data-source.js +58 -0
  1452. package/esm5/lib/igx-image-cell-info.js +69 -0
  1453. package/esm5/lib/igx-image-column-component.js +133 -0
  1454. package/esm5/lib/igx-image-column-dynamic-module.js +33 -0
  1455. package/esm5/lib/igx-image-column-module.js +28 -0
  1456. package/esm5/lib/igx-lost-focus-event-args.js +33 -0
  1457. package/esm5/lib/igx-multi-column-combo-box-component.js +1868 -0
  1458. package/esm5/lib/igx-multi-column-combo-box-dynamic-module.js +79 -0
  1459. package/esm5/lib/igx-multi-column-combo-box-module.js +73 -0
  1460. package/esm5/lib/igx-multi-column-combo-box-text-changed-event-args.js +37 -0
  1461. package/esm5/lib/igx-multi-column-combo-box-value-changed-event-args.js +37 -0
  1462. package/esm5/lib/igx-numeric-cell-info.js +208 -0
  1463. package/esm5/lib/igx-numeric-column-component.js +293 -0
  1464. package/esm5/lib/igx-numeric-column-dynamic-module.js +33 -0
  1465. package/esm5/lib/igx-numeric-column-module.js +28 -0
  1466. package/esm5/lib/igx-operator-selector-closing-event-args.js +33 -0
  1467. package/esm5/lib/igx-operator-selector-opening-event-args.js +36 -0
  1468. package/esm5/lib/igx-operator-selector-value-changed-event-args.js +56 -0
  1469. package/esm5/lib/igx-page-changed-event-args.js +63 -0
  1470. package/esm5/lib/igx-pinned-area-separator-component.js +51 -0
  1471. package/esm5/lib/igx-pinned-area-separator-dynamic-module.js +33 -0
  1472. package/esm5/lib/igx-pinned-area-separator-module.js +28 -0
  1473. package/esm5/lib/igx-primary-key-value-dynamic-module.js +33 -0
  1474. package/esm5/lib/igx-primary-key-value-module.js +27 -0
  1475. package/esm5/lib/igx-primary-key-value.js +89 -0
  1476. package/esm5/lib/igx-property-editor-component.js +556 -0
  1477. package/esm5/lib/igx-property-editor-dynamic-module.js +114 -0
  1478. package/esm5/lib/igx-property-editor-module.js +108 -0
  1479. package/esm5/lib/igx-responsive-phase.js +153 -0
  1480. package/esm5/lib/igx-responsive-phases-collection.js +58 -0
  1481. package/esm5/lib/igx-responsive-state-entered-event-args.js +36 -0
  1482. package/esm5/lib/igx-responsive-state-entering-event-args.js +36 -0
  1483. package/esm5/lib/igx-responsive-state-exited-event-args.js +36 -0
  1484. package/esm5/lib/igx-responsive-state.js +237 -0
  1485. package/esm5/lib/igx-responsive-states-collection.js +58 -0
  1486. package/esm5/lib/igx-row-separator-component.js +54 -0
  1487. package/esm5/lib/igx-row-separator-dynamic-module.js +33 -0
  1488. package/esm5/lib/igx-row-separator-info.js +27 -0
  1489. package/esm5/lib/igx-row-separator-module.js +28 -0
  1490. package/esm5/lib/igx-section-footer-component.js +54 -0
  1491. package/esm5/lib/igx-section-footer-dynamic-module.js +33 -0
  1492. package/esm5/lib/igx-section-footer-module.js +28 -0
  1493. package/esm5/lib/igx-section-header-cell-info.js +68 -0
  1494. package/esm5/lib/igx-section-header-component.js +164 -0
  1495. package/esm5/lib/igx-section-header-dynamic-module.js +33 -0
  1496. package/esm5/lib/igx-section-header-module.js +28 -0
  1497. package/esm5/lib/igx-select-all-checkbox-changed-event-args.js +44 -0
  1498. package/esm5/lib/igx-sort-indicator-render-completed-event-args.js +33 -0
  1499. package/esm5/lib/igx-summary-cell-info.js +83 -0
  1500. package/esm5/lib/igx-summary-changed-event-args.js +63 -0
  1501. package/esm5/lib/igx-summary-chooser-dynamic-module.js +35 -0
  1502. package/esm5/lib/igx-summary-chooser-module.js +32 -0
  1503. package/esm5/lib/igx-summary-data.js +96 -0
  1504. package/esm5/lib/igx-summary-row-component.js +186 -0
  1505. package/esm5/lib/igx-summary-row-root-component.js +52 -0
  1506. package/esm5/lib/igx-summary-row-root-dynamic-module.js +33 -0
  1507. package/esm5/lib/igx-summary-row-root-module.js +28 -0
  1508. package/esm5/lib/igx-summary-row-section-component.js +52 -0
  1509. package/esm5/lib/igx-summary-row-section-dynamic-module.js +33 -0
  1510. package/esm5/lib/igx-summary-row-section-module.js +28 -0
  1511. package/esm5/lib/igx-template-cell-info.js +40 -0
  1512. package/esm5/lib/igx-template-cell-updating-event-args.js +133 -0
  1513. package/esm5/lib/igx-template-column-component.js +86 -0
  1514. package/esm5/lib/igx-template-column-dynamic-module.js +33 -0
  1515. package/esm5/lib/igx-template-column-module.js +28 -0
  1516. package/esm5/lib/igx-template-header-cell-info.js +41 -0
  1517. package/esm5/lib/igx-template-header-cell-updating-event-args.js +133 -0
  1518. package/esm5/lib/igx-template-header-component.js +86 -0
  1519. package/esm5/lib/igx-template-header-dynamic-module.js +33 -0
  1520. package/esm5/lib/igx-template-header-module.js +28 -0
  1521. package/esm5/lib/igx-template-section-header-cell-info.js +27 -0
  1522. package/esm5/lib/igx-template-section-header-cell-updating-event-args.js +100 -0
  1523. package/esm5/lib/igx-template-section-header-component.js +86 -0
  1524. package/esm5/lib/igx-template-section-header-dynamic-module.js +33 -0
  1525. package/esm5/lib/igx-template-section-header-module.js +28 -0
  1526. package/esm5/lib/igx-text-cell-info.js +40 -0
  1527. package/esm5/lib/igx-text-column-component.js +117 -0
  1528. package/esm5/lib/igx-text-column-dynamic-module.js +33 -0
  1529. package/esm5/lib/igx-text-column-module.js +28 -0
  1530. package/esm5/lib/igx-text-header-cell-info.js +93 -0
  1531. package/esm5/lib/igx-text-header-component.js +55 -0
  1532. package/esm5/lib/igx-text-header-dynamic-module.js +33 -0
  1533. package/esm5/lib/igx-text-header-module.js +28 -0
  1534. package/esm5/lib/igx-text-icon-set-conditional-style-component.js +83 -0
  1535. package/esm5/lib/igx-text-icon-set-conditional-style-dynamic-module.js +33 -0
  1536. package/esm5/lib/igx-text-icon-set-conditional-style-module.js +28 -0
  1537. package/esm5/lib/igx-vertical-separator-cell-info.js +27 -0
  1538. package/esm5/public_api.js +742 -0
  1539. package/fesm2015/igniteui-angular-data-grids.js +94820 -0
  1540. package/fesm5/igniteui-angular-data-grids.js +107488 -0
  1541. package/igniteui-angular-data-grids.d.ts +5 -0
  1542. package/lib/AccessibilityRow.d.ts +22 -0
  1543. package/lib/ActivationManager.d.ts +1 -0
  1544. package/lib/ApplyButtonClickEventArgs.d.ts +7 -0
  1545. package/lib/BaseEditorView.d.ts +62 -0
  1546. package/lib/BrowserExecutionContext.d.ts +19 -0
  1547. package/lib/BrowserPixelConverter.d.ts +9 -0
  1548. package/lib/BrowserTickProvider.d.ts +21 -0
  1549. package/lib/CalculationParameters.d.ts +24 -0
  1550. package/lib/CancelButtonClickEventArgs.d.ts +7 -0
  1551. package/lib/CanvasCellPresenterBase.d.ts +18 -0
  1552. package/lib/CanvasContentCellModelHelper.d.ts +18 -0
  1553. package/lib/CanvasDateTimeCell.d.ts +10 -0
  1554. package/lib/CanvasDateTimeCellPresenter.d.ts +15 -0
  1555. package/lib/CanvasGridCellBase.d.ts +166 -0
  1556. package/lib/CanvasImageCell.d.ts +27 -0
  1557. package/lib/CanvasImageCellPresenter.d.ts +16 -0
  1558. package/lib/CanvasNumericCell.d.ts +10 -0
  1559. package/lib/CanvasNumericCellPresenter.d.ts +15 -0
  1560. package/lib/CanvasPlaceholderView.d.ts +25 -0
  1561. package/lib/CanvasRowSeparatorCell.d.ts +10 -0
  1562. package/lib/CanvasRowSeparatorCellPresenter.d.ts +12 -0
  1563. package/lib/CanvasSectionHeaderCell.d.ts +11 -0
  1564. package/lib/CanvasSectionHeaderCellPresenter.d.ts +14 -0
  1565. package/lib/CanvasSummaryCell.d.ts +30 -0
  1566. package/lib/CanvasSummaryCellPresenter.d.ts +14 -0
  1567. package/lib/CanvasTemplateCell.d.ts +15 -0
  1568. package/lib/CanvasTemplateCellContainer.d.ts +15 -0
  1569. package/lib/CanvasTemplateCellPresenter.d.ts +16 -0
  1570. package/lib/CanvasTemplateHeaderCell.d.ts +15 -0
  1571. package/lib/CanvasTemplateHeaderCellPresenter.d.ts +16 -0
  1572. package/lib/CanvasTextCell.d.ts +11 -0
  1573. package/lib/CanvasTextCellPresenter.d.ts +14 -0
  1574. package/lib/CanvasTextHeaderCell.d.ts +20 -0
  1575. package/lib/CanvasTextHeaderCellPresenter.d.ts +16 -0
  1576. package/lib/CanvasVerticalSeparatorCell.d.ts +10 -0
  1577. package/lib/CanvasVerticalSeparatorCellPresenter.d.ts +12 -0
  1578. package/lib/CellContentHorizontalAlignment.d.ts +30 -0
  1579. package/lib/CellContentVerticalAlignment.d.ts +30 -0
  1580. package/lib/CellDataLoadedAnimationMode.d.ts +22 -0
  1581. package/lib/CellEffect.d.ts +1 -0
  1582. package/lib/CellKey.d.ts +1 -0
  1583. package/lib/CellModel.d.ts +1 -0
  1584. package/lib/CellModelExport.d.ts +43 -0
  1585. package/lib/CellPath.d.ts +54 -0
  1586. package/lib/CellPositionEffect.d.ts +1 -0
  1587. package/lib/CellPresenterBase.d.ts +18 -0
  1588. package/lib/CellPropertyAnimationType.d.ts +58 -0
  1589. package/lib/CellRange.d.ts +23 -0
  1590. package/lib/CellSelectionAnimationMode.d.ts +22 -0
  1591. package/lib/CellStyleRequestedEventArgs.d.ts +16 -0
  1592. package/lib/CheckboxList.d.ts +1 -0
  1593. package/lib/CheckboxListBridge.d.ts +43 -0
  1594. package/lib/CheckboxListExternal.d.ts +42 -0
  1595. package/lib/CheckboxListExternalIndexType.d.ts +12 -0
  1596. package/lib/CheckboxListExternalIndexTypeChangedEventArgs.d.ts +10 -0
  1597. package/lib/CheckboxListExternalKeysClearedEventArgs.d.ts +7 -0
  1598. package/lib/CheckboxListIndexType.d.ts +9 -0
  1599. package/lib/CheckboxListIndexTypeChangedEventArgs.d.ts +10 -0
  1600. package/lib/CheckboxListKeysClearedEventArgs.d.ts +7 -0
  1601. package/lib/CheckboxListView.d.ts +1 -0
  1602. package/lib/CheckboxListViewExternal.d.ts +21 -0
  1603. package/lib/CheckboxListView_combined.d.ts +281 -0
  1604. package/lib/CheckedChangedEventArgs.d.ts +10 -0
  1605. package/lib/CloneDataSourceFilterOperation.d.ts +13 -0
  1606. package/lib/ColumnCellsEffect.d.ts +1 -0
  1607. package/lib/ColumnChooser.d.ts +1 -0
  1608. package/lib/ColumnChooserInfo.d.ts +10 -0
  1609. package/lib/ColumnChooserView.d.ts +1 -0
  1610. package/lib/ColumnChooserView_combined.d.ts +81 -0
  1611. package/lib/ColumnComparisonConditionOperatorType.d.ts +55 -0
  1612. package/lib/ColumnComparisonFilterCondition.d.ts +1 -0
  1613. package/lib/ColumnController.d.ts +1 -0
  1614. package/lib/ColumnCustomFilterCondition.d.ts +1 -0
  1615. package/lib/ColumnEffect.d.ts +1 -0
  1616. package/lib/ColumnExchanger.d.ts +1 -0
  1617. package/lib/ColumnExchangersCollection.d.ts +1 -0
  1618. package/lib/ColumnExchangingAnimationMode.d.ts +54 -0
  1619. package/lib/ColumnFilterCondition.d.ts +1 -0
  1620. package/lib/ColumnFilterConditionCollection.d.ts +1 -0
  1621. package/lib/ColumnFilterConditionGroup.d.ts +1 -0
  1622. package/lib/ColumnFilterCondition_combined.d.ts +5234 -0
  1623. package/lib/ColumnGroupDescription.d.ts +42 -0
  1624. package/lib/ColumnGroupDescriptionCollection.d.ts +29 -0
  1625. package/lib/ColumnGrouping.d.ts +1 -0
  1626. package/lib/ColumnGroupingView.d.ts +1 -0
  1627. package/lib/ColumnGroupingView_combined.d.ts +151 -0
  1628. package/lib/ColumnGroupingVisualModelExport.d.ts +29 -0
  1629. package/lib/ColumnHiddenChangedEventArgs.d.ts +1 -0
  1630. package/lib/ColumnHidingAnimationMode.d.ts +54 -0
  1631. package/lib/ColumnInfo.d.ts +1 -0
  1632. package/lib/ColumnMovingAnimationMode.d.ts +22 -0
  1633. package/lib/ColumnMovingMode.d.ts +9 -0
  1634. package/lib/ColumnMovingSeparator.d.ts +1 -0
  1635. package/lib/ColumnOptionsIconAlignment.d.ts +22 -0
  1636. package/lib/ColumnOptionsIconBehavior.d.ts +26 -0
  1637. package/lib/ColumnOptionsToolbarManagerOpeningEventArgs.d.ts +7 -0
  1638. package/lib/ColumnPinnedChangedEventArgs.d.ts +1 -0
  1639. package/lib/ColumnPinning.d.ts +1 -0
  1640. package/lib/ColumnPinningInfo.d.ts +10 -0
  1641. package/lib/ColumnPinningView.d.ts +1 -0
  1642. package/lib/ColumnPinningView_combined.d.ts +76 -0
  1643. package/lib/ColumnPropertySetter.d.ts +14 -0
  1644. package/lib/ColumnPropertySettersCollection.d.ts +10 -0
  1645. package/lib/ColumnPropertyUpdatingAnimationMode.d.ts +26 -0
  1646. package/lib/ColumnResizingAnimationMode.d.ts +22 -0
  1647. package/lib/ColumnResizingMode.d.ts +10 -0
  1648. package/lib/ColumnResizingSeparator.d.ts +1 -0
  1649. package/lib/ColumnShowingAnimationMode.d.ts +54 -0
  1650. package/lib/ColumnSortDescription.d.ts +20 -0
  1651. package/lib/ColumnSortDescriptionCollection.d.ts +29 -0
  1652. package/lib/ColumnSortDirection.d.ts +22 -0
  1653. package/lib/ColumnStates.d.ts +17 -0
  1654. package/lib/ColumnSummaryDescription.d.ts +68 -0
  1655. package/lib/ColumnSummaryDescriptionCollection.d.ts +29 -0
  1656. package/lib/ColumnWidth.d.ts +16 -0
  1657. package/lib/ComboBoxColumn.d.ts +1 -0
  1658. package/lib/ComboEditorView.d.ts +46 -0
  1659. package/lib/ComboEditorView_ComboExternal.d.ts +39 -0
  1660. package/lib/ComparisonOperatorSelector.d.ts +1 -0
  1661. package/lib/ComparisonOperatorSelectorView.d.ts +1 -0
  1662. package/lib/ComparisonOperatorSelectorView_combined.d.ts +200 -0
  1663. package/lib/ContentCellModelHelper.d.ts +20 -0
  1664. package/lib/CurrentRendererSettings.d.ts +12 -0
  1665. package/lib/DataAdapter.d.ts +1 -0
  1666. package/lib/DataBindingEventArgs.d.ts +1 -0
  1667. package/lib/DataGrid.d.ts +1 -0
  1668. package/lib/DataGridAccessibilityLayoutPanel.d.ts +32 -0
  1669. package/lib/DataGridCellEventArgs.d.ts +1 -0
  1670. package/lib/DataGridCellLayoutPanel.d.ts +75 -0
  1671. package/lib/DataGridColumn.d.ts +1 -0
  1672. package/lib/DataGridColumnToolbarManager.d.ts +1 -0
  1673. package/lib/DataGridDelayedExecutionManager.d.ts +13 -0
  1674. package/lib/DataGridLocaleEn.d.ts +60 -0
  1675. package/lib/DataGridPresenterManager.d.ts +15 -0
  1676. package/lib/DataGridPropertySetter.d.ts +9 -0
  1677. package/lib/DataGridScrollerKeyboardListener.d.ts +27 -0
  1678. package/lib/DataGridSelectionMode.d.ts +34 -0
  1679. package/lib/DataGridStylingDefaults.d.ts +1 -0
  1680. package/lib/DataGridToolbar.d.ts +1 -0
  1681. package/lib/DataGridToolbarView.d.ts +1 -0
  1682. package/lib/DataGridToolbarView_combined.d.ts +135 -0
  1683. package/lib/DataGridViewportManager.d.ts +11 -0
  1684. package/lib/DataSourceNotificationBridge.d.ts +1 -0
  1685. package/lib/DateEditorView.d.ts +44 -0
  1686. package/lib/DateOperatorTypes.d.ts +32 -0
  1687. package/lib/DateTimeCell.d.ts +10 -0
  1688. package/lib/DateTimeCellModel.d.ts +1 -0
  1689. package/lib/DateTimeCellModelExport.d.ts +14 -0
  1690. package/lib/DateTimeCellPresenter.d.ts +15 -0
  1691. package/lib/DateTimeColumn.d.ts +1 -0
  1692. package/lib/DateTimeColumnValueFormatter.d.ts +19 -0
  1693. package/lib/DateTimeFormats.d.ts +34 -0
  1694. package/lib/DefaultCellActionManager.d.ts +1 -0
  1695. package/lib/DefaultCellModelExportUpdater.d.ts +1 -0
  1696. package/lib/DefaultGridInfoRequestor.d.ts +1 -0
  1697. package/lib/DefaultPlatformPixelConverter.d.ts +9 -0
  1698. package/lib/DefinitionBase.d.ts +1 -0
  1699. package/lib/DefinitionPropertyUpdatedEventArgs.d.ts +20 -0
  1700. package/lib/DragSelectEventArgs.d.ts +22 -0
  1701. package/lib/DragType.d.ts +15 -0
  1702. package/lib/Dragger.d.ts +47 -0
  1703. package/lib/DraggerView.d.ts +34 -0
  1704. package/lib/DropDownDataListItem.d.ts +9 -0
  1705. package/lib/EditModeClickAction.d.ts +22 -0
  1706. package/lib/EditModeType.d.ts +26 -0
  1707. package/lib/EditRowDefinition.d.ts +1 -0
  1708. package/lib/EditingManager.d.ts +1 -0
  1709. package/lib/EditorCell.d.ts +92 -0
  1710. package/lib/EditorCellModel.d.ts +1 -0
  1711. package/lib/EditorCellModelExport.d.ts +16 -0
  1712. package/lib/EditorCellPresenter.d.ts +13 -0
  1713. package/lib/EditorDefinition.d.ts +1 -0
  1714. package/lib/EditorRowCell.d.ts +10 -0
  1715. package/lib/EditorRowCellModel.d.ts +1 -0
  1716. package/lib/EditorRowCellPresenter.d.ts +13 -0
  1717. package/lib/EditorType.d.ts +30 -0
  1718. package/lib/EnterKeyBehaviorAfterEdit.d.ts +30 -0
  1719. package/lib/EnterKeyBehaviors.d.ts +34 -0
  1720. package/lib/FilterCell.d.ts +80 -0
  1721. package/lib/FilterCellModel.d.ts +1 -0
  1722. package/lib/FilterCellModelExport.d.ts +23 -0
  1723. package/lib/FilterCellPresenter.d.ts +14 -0
  1724. package/lib/FilterComparisonType.d.ts +22 -0
  1725. package/lib/FilterDialogRenderCompletedEventArgs.d.ts +7 -0
  1726. package/lib/FilterLogicalOperator.d.ts +18 -0
  1727. package/lib/FilterOperand.d.ts +1 -0
  1728. package/lib/FilterRowDefinition.d.ts +1 -0
  1729. package/lib/FilterUIType.d.ts +23 -0
  1730. package/lib/FixedCellPositions.d.ts +15 -0
  1731. package/lib/FormatGroupTextEventArgs.d.ts +11 -0
  1732. package/lib/FormatSummaryTextEventArgs.d.ts +12 -0
  1733. package/lib/GotFocusEventArgs.d.ts +7 -0
  1734. package/lib/GridActivationMode.d.ts +18 -0
  1735. package/lib/GridActiveCellChangedEventArgs.d.ts +14 -0
  1736. package/lib/GridAnimationManager.d.ts +1 -0
  1737. package/lib/GridAnimationManagerAnimationCanceledEventArgs.d.ts +8 -0
  1738. package/lib/GridAnimationManagerAnimationCompletedEventArgs.d.ts +8 -0
  1739. package/lib/GridAnimationManagerAnimationCreatedEventArgs.d.ts +8 -0
  1740. package/lib/GridAnimationPhaseSettings.d.ts +33 -0
  1741. package/lib/GridAnimationSettings.d.ts +28 -0
  1742. package/lib/GridCellBase.d.ts +135 -0
  1743. package/lib/GridCellEditEndedEventArgs.d.ts +1 -0
  1744. package/lib/GridCellEditStartedEventArgs.d.ts +1 -0
  1745. package/lib/GridCellPosition.d.ts +14 -0
  1746. package/lib/GridCellType.d.ts +15 -0
  1747. package/lib/GridCellValueChangingEventArgs.d.ts +1 -0
  1748. package/lib/GridColumnAnimationSettings.d.ts +59 -0
  1749. package/lib/GridColumnButtonOptions.d.ts +1 -0
  1750. package/lib/GridColumnButtonOptionsView.d.ts +1 -0
  1751. package/lib/GridColumnButtonOptionsView_combined.d.ts +52 -0
  1752. package/lib/GridColumnCollection.d.ts +1 -0
  1753. package/lib/GridColumnFilterOptions.d.ts +1 -0
  1754. package/lib/GridColumnFilterOptionsView.d.ts +1 -0
  1755. package/lib/GridColumnFilterOptionsView_combined.d.ts +86 -0
  1756. package/lib/GridColumnGroupOptions.d.ts +1 -0
  1757. package/lib/GridColumnGroupOptionsView.d.ts +1 -0
  1758. package/lib/GridColumnGroupOptionsView_combined.d.ts +52 -0
  1759. package/lib/GridColumnHideOptions.d.ts +1 -0
  1760. package/lib/GridColumnHideOptionsView.d.ts +1 -0
  1761. package/lib/GridColumnHideOptionsView_combined.d.ts +38 -0
  1762. package/lib/GridColumnMoveOptions.d.ts +1 -0
  1763. package/lib/GridColumnMoveOptionsView.d.ts +1 -0
  1764. package/lib/GridColumnMoveOptionsView_combined.d.ts +61 -0
  1765. package/lib/GridColumnOptions.d.ts +1 -0
  1766. package/lib/GridColumnOptionsBase.d.ts +1 -0
  1767. package/lib/GridColumnOptionsSectionBase.d.ts +13 -0
  1768. package/lib/GridColumnOptionsSimpleSectionBase.d.ts +17 -0
  1769. package/lib/GridColumnOptionsUtilities.d.ts +1 -0
  1770. package/lib/GridColumnOptionsView.d.ts +1 -0
  1771. package/lib/GridColumnOptionsViewBase.d.ts +1 -0
  1772. package/lib/GridColumnOptionsViewBase_combined.d.ts +159 -0
  1773. package/lib/GridColumnOptionsView_combined.d.ts +182 -0
  1774. package/lib/GridColumnPinOptions.d.ts +1 -0
  1775. package/lib/GridColumnPinOptionsView.d.ts +1 -0
  1776. package/lib/GridColumnPinOptionsView_combined.d.ts +56 -0
  1777. package/lib/GridColumnSortOptions.d.ts +1 -0
  1778. package/lib/GridColumnSortOptionsView.d.ts +1 -0
  1779. package/lib/GridColumnSortOptionsView_combined.d.ts +53 -0
  1780. package/lib/GridColumnSpacer.d.ts +29 -0
  1781. package/lib/GridColumnSpacerCollection.d.ts +16 -0
  1782. package/lib/GridColumnSummaryOptions.d.ts +1 -0
  1783. package/lib/GridColumnSummaryOptionsView.d.ts +1 -0
  1784. package/lib/GridColumnSummaryOptionsView_combined.d.ts +72 -0
  1785. package/lib/GridColumnWidthChangedEventArgs.d.ts +1 -0
  1786. package/lib/GridColumnsAutoGeneratedEventArgs.d.ts +1 -0
  1787. package/lib/GridColumnsChangedEventArgs.d.ts +1 -0
  1788. package/lib/GridCompoundConditionalStyle.d.ts +1 -0
  1789. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +14 -0
  1790. package/lib/GridConditionalStyle.d.ts +1 -0
  1791. package/lib/GridConditionalStyleBoundType.d.ts +9 -0
  1792. package/lib/GridConditionalStyleCollection.d.ts +1 -0
  1793. package/lib/GridConditionalStyleProperty.d.ts +127 -0
  1794. package/lib/GridConditionalStylePropertyCollection.d.ts +10 -0
  1795. package/lib/GridConditionalStylePropertyStylingType.d.ts +11 -0
  1796. package/lib/GridCustomFilterRequestedEventArgs.d.ts +1 -0
  1797. package/lib/GridDataCommittedEventArgs.d.ts +11 -0
  1798. package/lib/GridDataCommittingEventArgs.d.ts +11 -0
  1799. package/lib/GridEasingFunctionType.d.ts +26 -0
  1800. package/lib/GridEffect.d.ts +1 -0
  1801. package/lib/GridEffectGroup.d.ts +1 -0
  1802. package/lib/GridEffectMainIntent.d.ts +20 -0
  1803. package/lib/GridEffectManager.d.ts +1 -0
  1804. package/lib/GridEffectSubIntent.d.ts +18 -0
  1805. package/lib/GridExpansionIndicator.d.ts +1 -0
  1806. package/lib/GridExpansionIndicatorView.d.ts +1 -0
  1807. package/lib/GridExpansionIndicatorView_combined.d.ts +72 -0
  1808. package/lib/GridExternalWrapper.d.ts +41 -0
  1809. package/lib/GridFilterDialog.d.ts +1 -0
  1810. package/lib/GridFilterDialogFilterChangeEventArgs.d.ts +9 -0
  1811. package/lib/GridFilterDialogOpeningEventArgs.d.ts +9 -0
  1812. package/lib/GridFilterDialogPanel.d.ts +1 -0
  1813. package/lib/GridFilterDialogView.d.ts +1 -0
  1814. package/lib/GridFilterDialogViewModel.d.ts +1 -0
  1815. package/lib/GridFilterDialogViewModelGrouping.d.ts +10 -0
  1816. package/lib/GridFilterDialogViewModelGroupingLevel.d.ts +10 -0
  1817. package/lib/GridFilterDialogViewModelGroupingLevelCollection.d.ts +10 -0
  1818. package/lib/GridFilterDialogViewModelRow.d.ts +28 -0
  1819. package/lib/GridFilterDialogViewModelRowCollection.d.ts +1 -0
  1820. package/lib/GridFilterDialogView_combined.d.ts +243 -0
  1821. package/lib/GridFilterExpressionsEventArgs.d.ts +9 -0
  1822. package/lib/GridFilterOperandsCollection.d.ts +1 -0
  1823. package/lib/GridGroupDescriptionsChangedEventArgs.d.ts +11 -0
  1824. package/lib/GridLayer.d.ts +1 -0
  1825. package/lib/GridLayerController.d.ts +1 -0
  1826. package/lib/GridLayerExport.d.ts +16 -0
  1827. package/lib/GridModuleHelper.d.ts +8 -0
  1828. package/lib/GridRowEditEndedEventArgs.d.ts +11 -0
  1829. package/lib/GridRowEditStartedEventArgs.d.ts +11 -0
  1830. package/lib/GridSelectedCellRangesChangedEventArgs.d.ts +20 -0
  1831. package/lib/GridSelectedCellRangesCollection.d.ts +11 -0
  1832. package/lib/GridSelectedCellsChangedEventArgs.d.ts +1 -0
  1833. package/lib/GridSelectedCellsCollection.d.ts +1 -0
  1834. package/lib/GridSelectedItemsChangedEventArgs.d.ts +17 -0
  1835. package/lib/GridSelectedItemsCollection.d.ts +14 -0
  1836. package/lib/GridSelectedKeysChangedEventArgs.d.ts +17 -0
  1837. package/lib/GridSelectedKeysCollection.d.ts +31 -0
  1838. package/lib/GridSelectionBehavior.d.ts +18 -0
  1839. package/lib/GridSelectionChangedEventArgs.d.ts +7 -0
  1840. package/lib/GridSizeChangedEventArgs.d.ts +9 -0
  1841. package/lib/GridSortDescriptionsChangedEventArgs.d.ts +11 -0
  1842. package/lib/GridSortIndicator.d.ts +1 -0
  1843. package/lib/GridSortIndicatorView.d.ts +1 -0
  1844. package/lib/GridSortIndicatorView_combined.d.ts +103 -0
  1845. package/lib/GridStyleRepository.d.ts +97 -0
  1846. package/lib/GridSummaryDescriptionsChangedEventArgs.d.ts +11 -0
  1847. package/lib/GridViewportChangedEventArgs.d.ts +15 -0
  1848. package/lib/GroupData.d.ts +10 -0
  1849. package/lib/GroupHeaderDisplayMode.d.ts +18 -0
  1850. package/lib/GroupInfo.d.ts +12 -0
  1851. package/lib/GroupSummaryDisplayMode.d.ts +31 -0
  1852. package/lib/Header.d.ts +1 -0
  1853. package/lib/HeaderClickAction.d.ts +30 -0
  1854. package/lib/HeaderRowSeparator.d.ts +1 -0
  1855. package/lib/HeaderSeparator.d.ts +1 -0
  1856. package/lib/HorizontalPropertyEditorDataSource.d.ts +10 -0
  1857. package/lib/HoverManager.d.ts +1 -0
  1858. package/lib/ICellActionManager.d.ts +1 -0
  1859. package/lib/ICellModelExportUpdater.d.ts +11 -0
  1860. package/lib/ICellPresenter.d.ts +1 -0
  1861. package/lib/ICellRenderingEngine.d.ts +1 -0
  1862. package/lib/IColumnGrouping.d.ts +12 -0
  1863. package/lib/IColumnGroupingVisualModelExport.d.ts +11 -0
  1864. package/lib/IDataAdapter.d.ts +1 -0
  1865. package/lib/IDataGridComponent.d.ts +12 -0
  1866. package/lib/IDelayedExecutionManager.d.ts +12 -0
  1867. package/lib/IDragger.d.ts +1 -0
  1868. package/lib/IDraggerView.d.ts +1 -0
  1869. package/lib/IDraggerView_combined.d.ts +50 -0
  1870. package/lib/IEditorView.d.ts +32 -0
  1871. package/lib/IExternalDefinitionBase.d.ts +1 -0
  1872. package/lib/IExternalGrid.d.ts +1 -0
  1873. package/lib/IExternalTemplateColumn.d.ts +12 -0
  1874. package/lib/IExternalTemplateHeaderColumn.d.ts +12 -0
  1875. package/lib/IExternalTemplateSectionHeader.d.ts +12 -0
  1876. package/lib/IGridInfoRequestor.d.ts +1 -0
  1877. package/lib/INativeCell.d.ts +17 -0
  1878. package/lib/IPlatformPixelConverter.d.ts +11 -0
  1879. package/lib/IPropertySetter.d.ts +11 -0
  1880. package/lib/ISummaryChooserView.d.ts +1 -0
  1881. package/lib/ISummaryChooserView_combined.d.ts +103 -0
  1882. package/lib/IToolbarVisualModelExport.d.ts +11 -0
  1883. package/lib/IViewportManager.d.ts +11 -0
  1884. package/lib/ImageCell.d.ts +34 -0
  1885. package/lib/ImageCellModel.d.ts +1 -0
  1886. package/lib/ImageCellModelExport.d.ts +12 -0
  1887. package/lib/ImageCellPresenter.d.ts +16 -0
  1888. package/lib/ImageColumn.d.ts +1 -0
  1889. package/lib/ImageResourceType.d.ts +30 -0
  1890. package/lib/ImageStretchOptions.d.ts +22 -0
  1891. package/lib/LayoutAction.d.ts +42 -0
  1892. package/lib/LostFocusEventArgs.d.ts +7 -0
  1893. package/lib/MergedCellEvaluationCriteria.d.ts +22 -0
  1894. package/lib/MergedCellInfo.d.ts +14 -0
  1895. package/lib/MergedCellMode.d.ts +27 -0
  1896. package/lib/ModelStates.d.ts +13 -0
  1897. package/lib/ModelTypes.d.ts +23 -0
  1898. package/lib/MultiColumnComboBox.d.ts +1 -0
  1899. package/lib/MultiColumnComboBoxDataSourceNotificationHandler.d.ts +1 -0
  1900. package/lib/MultiColumnComboBoxSelectedItemChangeType.d.ts +13 -0
  1901. package/lib/MultiColumnComboBoxTextChangedEventArgs.d.ts +12 -0
  1902. package/lib/MultiColumnComboBoxUtilities.d.ts +25 -0
  1903. package/lib/MultiColumnComboBoxValueChangedEventArgs.d.ts +12 -0
  1904. package/lib/MultiColumnComboBoxView.d.ts +1 -0
  1905. package/lib/MultiColumnComboBoxView_combined.d.ts +499 -0
  1906. package/lib/MultiColumnComboVisualModelExport.d.ts +70 -0
  1907. package/lib/MultipleDataSourceNotifier.d.ts +20 -0
  1908. package/lib/NativeUIComboFactory.d.ts +18 -0
  1909. package/lib/NativeUIGridFactory.d.ts +19 -0
  1910. package/lib/NumericCell.d.ts +11 -0
  1911. package/lib/NumericCellFormatter.d.ts +1 -0
  1912. package/lib/NumericCellModel.d.ts +1 -0
  1913. package/lib/NumericCellModelExport.d.ts +14 -0
  1914. package/lib/NumericCellPresenter.d.ts +15 -0
  1915. package/lib/NumericColumn.d.ts +1 -0
  1916. package/lib/NumericEditorView.d.ts +13 -0
  1917. package/lib/OperatorModel.d.ts +13 -0
  1918. package/lib/OperatorSelectorClosingEventArgs.d.ts +7 -0
  1919. package/lib/OperatorSelectorOpeningEventArgs.d.ts +7 -0
  1920. package/lib/OperatorSelectorValueChangedEventArgs.d.ts +14 -0
  1921. package/lib/PageChangedEventArgs.d.ts +13 -0
  1922. package/lib/PagedDataProvider.d.ts +1 -0
  1923. package/lib/Pager.d.ts +1 -0
  1924. package/lib/PagerDataSourceNotificationBridge.d.ts +1 -0
  1925. package/lib/PagerGridDataSourceNotificationBridge.d.ts +1 -0
  1926. package/lib/PagerView.d.ts +1 -0
  1927. package/lib/PagerVisualModelExport.d.ts +25 -0
  1928. package/lib/PinnedAreaSeparator.d.ts +1 -0
  1929. package/lib/PinnedPositions.d.ts +22 -0
  1930. package/lib/PinnedRowInfo.d.ts +1 -0
  1931. package/lib/PlaceholderView.d.ts +26 -0
  1932. package/lib/PrimaryKeyValue.d.ts +19 -0
  1933. package/lib/PropertyEditor.d.ts +1 -0
  1934. package/lib/PropertyEditorView.d.ts +1 -0
  1935. package/lib/PropertyEditorView_combined.d.ts +237 -0
  1936. package/lib/PushRowResult.d.ts +1 -0
  1937. package/lib/PushRowSettings.d.ts +1 -0
  1938. package/lib/RecyclingManager.d.ts +1 -0
  1939. package/lib/ResponsiveEngine.d.ts +1 -0
  1940. package/lib/ResponsivePhase.d.ts +1 -0
  1941. package/lib/ResponsivePhasesCollection.d.ts +1 -0
  1942. package/lib/ResponsiveState.d.ts +1 -0
  1943. package/lib/ResponsiveStateEnteredEventArgs.d.ts +7 -0
  1944. package/lib/ResponsiveStateEnteringEventArgs.d.ts +7 -0
  1945. package/lib/ResponsiveStateExitedEventArgs.d.ts +7 -0
  1946. package/lib/ResponsiveStatesCollection.d.ts +1 -0
  1947. package/lib/RowCellsEffect.d.ts +1 -0
  1948. package/lib/RowEffect.d.ts +1 -0
  1949. package/lib/RowHoverAnimationMode.d.ts +22 -0
  1950. package/lib/RowPath.d.ts +37 -0
  1951. package/lib/RowRange.d.ts +14 -0
  1952. package/lib/RowSelectionAnimationMode.d.ts +22 -0
  1953. package/lib/RowSeparator.d.ts +1 -0
  1954. package/lib/RowSeparatorCell.d.ts +10 -0
  1955. package/lib/RowSeparatorCellPresenter.d.ts +12 -0
  1956. package/lib/RowSeparatorModel.d.ts +1 -0
  1957. package/lib/RowSeparatorModelExport.d.ts +11 -0
  1958. package/lib/SaveLayoutColumn.d.ts +1 -0
  1959. package/lib/SaveLayoutFilterInfo.d.ts +25 -0
  1960. package/lib/SaveLayoutGroupInfo.d.ts +15 -0
  1961. package/lib/SaveLayoutSortInfo.d.ts +15 -0
  1962. package/lib/SectionFooter.d.ts +1 -0
  1963. package/lib/SectionHeader.d.ts +1 -0
  1964. package/lib/SectionHeaderCell.d.ts +14 -0
  1965. package/lib/SectionHeaderCellModel.d.ts +1 -0
  1966. package/lib/SectionHeaderCellModelExport.d.ts +21 -0
  1967. package/lib/SectionHeaderCellPresenter.d.ts +14 -0
  1968. package/lib/SectionInfo.d.ts +1 -0
  1969. package/lib/SelectAllCheckboxChangedEventArgs.d.ts +8 -0
  1970. package/lib/SelectionManager.d.ts +1 -0
  1971. package/lib/SortIndicatorRenderCompletedEventArgs.d.ts +7 -0
  1972. package/lib/SortIndicatorStyle.d.ts +25 -0
  1973. package/lib/SortManager.d.ts +1 -0
  1974. package/lib/SortMode.d.ts +30 -0
  1975. package/lib/SpacerEffect.d.ts +1 -0
  1976. package/lib/SpatialEngine.d.ts +1 -0
  1977. package/lib/StringOperatorTypes.d.ts +16 -0
  1978. package/lib/SummaryCell.d.ts +21 -0
  1979. package/lib/SummaryCellModel.d.ts +1 -0
  1980. package/lib/SummaryCellModelExport.d.ts +28 -0
  1981. package/lib/SummaryCellPresenter.d.ts +14 -0
  1982. package/lib/SummaryChangedEventArgs.d.ts +9 -0
  1983. package/lib/SummaryChooser.d.ts +1 -0
  1984. package/lib/SummaryChooserItem.d.ts +10 -0
  1985. package/lib/SummaryChooserView.d.ts +1 -0
  1986. package/lib/SummaryData.d.ts +13 -0
  1987. package/lib/SummaryRow.d.ts +1 -0
  1988. package/lib/SummaryRowRoot.d.ts +1 -0
  1989. package/lib/SummaryRowSection.d.ts +1 -0
  1990. package/lib/SummaryScope.d.ts +26 -0
  1991. package/lib/TemplateCell.d.ts +17 -0
  1992. package/lib/TemplateCellContainer.d.ts +15 -0
  1993. package/lib/TemplateCellModel.d.ts +1 -0
  1994. package/lib/TemplateCellModelExport.d.ts +12 -0
  1995. package/lib/TemplateCellPresenter.d.ts +16 -0
  1996. package/lib/TemplateCellUpdatingEventArgs.d.ts +1 -0
  1997. package/lib/TemplateColumn.d.ts +1 -0
  1998. package/lib/TemplateHeader.d.ts +19 -0
  1999. package/lib/TemplateHeaderCell.d.ts +14 -0
  2000. package/lib/TemplateHeaderCellModel.d.ts +17 -0
  2001. package/lib/TemplateHeaderCellModelExport.d.ts +12 -0
  2002. package/lib/TemplateHeaderCellPresenter.d.ts +16 -0
  2003. package/lib/TemplateHeaderCellUpdatingEventArgs.d.ts +14 -0
  2004. package/lib/TemplateSectionHeader.d.ts +17 -0
  2005. package/lib/TemplateSectionHeaderCellModel.d.ts +8 -0
  2006. package/lib/TemplateSectionHeaderCellModelExport.d.ts +11 -0
  2007. package/lib/TemplateSectionHeaderCellUpdatingEventArgs.d.ts +14 -0
  2008. package/lib/TextCell.d.ts +18 -0
  2009. package/lib/TextCellLineBreakMode.d.ts +26 -0
  2010. package/lib/TextCellModel.d.ts +1 -0
  2011. package/lib/TextCellModelExport.d.ts +13 -0
  2012. package/lib/TextCellPresenter.d.ts +14 -0
  2013. package/lib/TextColumn.d.ts +1 -0
  2014. package/lib/TextEditorView.d.ts +35 -0
  2015. package/lib/TextHeader.d.ts +1 -0
  2016. package/lib/TextHeaderCell.d.ts +54 -0
  2017. package/lib/TextHeaderCellModel.d.ts +1 -0
  2018. package/lib/TextHeaderCellModelExport.d.ts +11 -0
  2019. package/lib/TextHeaderCellPresenter.d.ts +15 -0
  2020. package/lib/TextIconSetBuiltInTypes.d.ts +11 -0
  2021. package/lib/TextIconSetConditionalStyle.d.ts +18 -0
  2022. package/lib/TextVisualModelExport.d.ts +16 -0
  2023. package/lib/ToolbarVisualModelExport.d.ts +9 -0
  2024. package/lib/VerticalSeparatorCell.d.ts +21 -0
  2025. package/lib/VerticalSeparatorCellModel.d.ts +1 -0
  2026. package/lib/VerticalSeparatorCellPresenter.d.ts +12 -0
  2027. package/lib/VisibilityEngine.d.ts +1 -0
  2028. package/lib/VisualModel.d.ts +1 -0
  2029. package/lib/VisualModelExport.d.ts +74 -0
  2030. package/lib/igx-apply-button-click-event-args.d.ts +12 -0
  2031. package/lib/igx-cancel-button-click-event-args.d.ts +12 -0
  2032. package/lib/igx-cell-info.d.ts +582 -0
  2033. package/lib/igx-cell-key-dynamic-module.d.ts +9 -0
  2034. package/lib/igx-cell-key-module.d.ts +7 -0
  2035. package/lib/igx-cell-key.d.ts +35 -0
  2036. package/lib/igx-cell-range-dynamic-module.d.ts +9 -0
  2037. package/lib/igx-cell-range-module.d.ts +7 -0
  2038. package/lib/igx-cell-range.d.ts +40 -0
  2039. package/lib/igx-cell-style-requested-event-args.d.ts +31 -0
  2040. package/lib/igx-checkbox-list-component.d.ts +344 -0
  2041. package/lib/igx-checkbox-list-dynamic-module.d.ts +15 -0
  2042. package/lib/igx-checkbox-list-index-type-changed-event-args.d.ts +19 -0
  2043. package/lib/igx-checkbox-list-keys-cleared-event-args.d.ts +12 -0
  2044. package/lib/igx-checkbox-list-module.d.ts +15 -0
  2045. package/lib/igx-checked-changed-event-args.d.ts +21 -0
  2046. package/lib/igx-column-chooser-component.d.ts +88 -0
  2047. package/lib/igx-column-chooser-dynamic-module.d.ts +11 -0
  2048. package/lib/igx-column-chooser-module.d.ts +11 -0
  2049. package/lib/igx-column-exchanger.d.ts +22 -0
  2050. package/lib/igx-column-exchangers-collection.d.ts +8 -0
  2051. package/lib/igx-column-group-description-collection.d.ts +30 -0
  2052. package/lib/igx-column-group-description-dynamic-module.d.ts +9 -0
  2053. package/lib/igx-column-group-description-module.d.ts +7 -0
  2054. package/lib/igx-column-group-description.d.ts +58 -0
  2055. package/lib/igx-column-grouping-component.d.ts +112 -0
  2056. package/lib/igx-column-grouping-dynamic-module.d.ts +9 -0
  2057. package/lib/igx-column-grouping-module.d.ts +9 -0
  2058. package/lib/igx-column-hidden-changed-event-args.d.ts +18 -0
  2059. package/lib/igx-column-moving-separator-component.d.ts +26 -0
  2060. package/lib/igx-column-moving-separator-dynamic-module.d.ts +9 -0
  2061. package/lib/igx-column-moving-separator-module.d.ts +8 -0
  2062. package/lib/igx-column-pinned-changed-event-args.d.ts +28 -0
  2063. package/lib/igx-column-pinning-component.d.ts +88 -0
  2064. package/lib/igx-column-pinning-dynamic-module.d.ts +10 -0
  2065. package/lib/igx-column-pinning-module.d.ts +10 -0
  2066. package/lib/igx-column-property-setter.d.ts +31 -0
  2067. package/lib/igx-column-property-setters-collection.d.ts +8 -0
  2068. package/lib/igx-column-resizing-separator-component.d.ts +20 -0
  2069. package/lib/igx-column-resizing-separator-dynamic-module.d.ts +9 -0
  2070. package/lib/igx-column-resizing-separator-module.d.ts +8 -0
  2071. package/lib/igx-column-sort-description-collection.d.ts +30 -0
  2072. package/lib/igx-column-sort-description-dynamic-module.d.ts +9 -0
  2073. package/lib/igx-column-sort-description-module.d.ts +7 -0
  2074. package/lib/igx-column-sort-description.d.ts +34 -0
  2075. package/lib/igx-column-summary-description-collection.d.ts +27 -0
  2076. package/lib/igx-column-summary-description-dynamic-module.d.ts +9 -0
  2077. package/lib/igx-column-summary-description-module.d.ts +7 -0
  2078. package/lib/igx-column-summary-description.d.ts +93 -0
  2079. package/lib/igx-column-width-dynamic-module.d.ts +9 -0
  2080. package/lib/igx-column-width-module.d.ts +7 -0
  2081. package/lib/igx-column-width.d.ts +34 -0
  2082. package/lib/igx-combo-box-column-component.d.ts +44 -0
  2083. package/lib/igx-combo-box-column-dynamic-module.d.ts +9 -0
  2084. package/lib/igx-combo-box-column-module.d.ts +8 -0
  2085. package/lib/igx-data-binding-event-args.d.ts +27 -0
  2086. package/lib/igx-data-grid-all-columns-dynamic-module.d.ts +19 -0
  2087. package/lib/igx-data-grid-all-columns-module.d.ts +18 -0
  2088. package/lib/igx-data-grid-cell-event-args.d.ts +36 -0
  2089. package/lib/igx-data-grid-column-component.d.ts +392 -0
  2090. package/lib/igx-data-grid-comparison-operator-selector-component.d.ts +143 -0
  2091. package/lib/igx-data-grid-component.d.ts +1594 -0
  2092. package/lib/igx-data-grid-core-dynamic-module.d.ts +27 -0
  2093. package/lib/igx-data-grid-core-module.d.ts +27 -0
  2094. package/lib/igx-data-grid-dynamic-module.d.ts +17 -0
  2095. package/lib/igx-data-grid-expansion-indicator-component.d.ts +64 -0
  2096. package/lib/igx-data-grid-filter-dialog-component.d.ts +102 -0
  2097. package/lib/igx-data-grid-locale-en-module.d.ts +8 -0
  2098. package/lib/igx-data-grid-module.d.ts +16 -0
  2099. package/lib/igx-data-grid-pager-component.d.ts +89 -0
  2100. package/lib/igx-data-grid-pager-dynamic-module.d.ts +10 -0
  2101. package/lib/igx-data-grid-pager-module.d.ts +10 -0
  2102. package/lib/igx-data-grid-sort-indicator-component.d.ts +71 -0
  2103. package/lib/igx-data-grid-toolbar-component.d.ts +146 -0
  2104. package/lib/igx-data-grid-toolbar-dynamic-module.d.ts +12 -0
  2105. package/lib/igx-data-grid-toolbar-module.d.ts +12 -0
  2106. package/lib/igx-date-time-cell-info.d.ts +45 -0
  2107. package/lib/igx-date-time-column-component.d.ts +71 -0
  2108. package/lib/igx-date-time-column-dynamic-module.d.ts +9 -0
  2109. package/lib/igx-date-time-column-module.d.ts +8 -0
  2110. package/lib/igx-definition-base-component.d.ts +343 -0
  2111. package/lib/igx-edit-row-definition-component.d.ts +17 -0
  2112. package/lib/igx-edit-row-definition-dynamic-module.d.ts +9 -0
  2113. package/lib/igx-edit-row-definition-module.d.ts +8 -0
  2114. package/lib/igx-editor-cell-info.d.ts +79 -0
  2115. package/lib/igx-editor-definition-component.d.ts +17 -0
  2116. package/lib/igx-editor-definition-dynamic-module.d.ts +9 -0
  2117. package/lib/igx-editor-definition-module.d.ts +8 -0
  2118. package/lib/igx-editor-row-cell-info.d.ts +13 -0
  2119. package/lib/igx-filter-cell-info.d.ts +61 -0
  2120. package/lib/igx-filter-dialog-render-completed-event-args.d.ts +12 -0
  2121. package/lib/igx-filter-operand-dynamic-module.d.ts +9 -0
  2122. package/lib/igx-filter-operand-module.d.ts +7 -0
  2123. package/lib/igx-filter-operand.d.ts +61 -0
  2124. package/lib/igx-filter-row-definition-component.d.ts +41 -0
  2125. package/lib/igx-filter-row-definition-dynamic-module.d.ts +9 -0
  2126. package/lib/igx-filter-row-definition-module.d.ts +8 -0
  2127. package/lib/igx-format-group-text-event-args.d.ts +32 -0
  2128. package/lib/igx-format-summary-text-event-args.d.ts +37 -0
  2129. package/lib/igx-got-focus-event-args.d.ts +12 -0
  2130. package/lib/igx-grid-active-cell-changed-event-args.d.ts +26 -0
  2131. package/lib/igx-grid-animation-phase-settings.d.ts +61 -0
  2132. package/lib/igx-grid-animation-settings.d.ts +18 -0
  2133. package/lib/igx-grid-cell-edit-ended-event-args.d.ts +29 -0
  2134. package/lib/igx-grid-cell-edit-started-event-args.d.ts +29 -0
  2135. package/lib/igx-grid-cell-position-dynamic-module.d.ts +9 -0
  2136. package/lib/igx-grid-cell-position-module.d.ts +7 -0
  2137. package/lib/igx-grid-cell-position.d.ts +24 -0
  2138. package/lib/igx-grid-cell-value-changing-event-args.d.ts +44 -0
  2139. package/lib/igx-grid-column-animation-settings.d.ts +18 -0
  2140. package/lib/igx-grid-column-button-options-component.d.ts +40 -0
  2141. package/lib/igx-grid-column-button-options-dynamic-module.d.ts +9 -0
  2142. package/lib/igx-grid-column-button-options-module.d.ts +9 -0
  2143. package/lib/igx-grid-column-collection.d.ts +8 -0
  2144. package/lib/igx-grid-column-filter-options-component.d.ts +47 -0
  2145. package/lib/igx-grid-column-filter-options-dynamic-module.d.ts +10 -0
  2146. package/lib/igx-grid-column-filter-options-module.d.ts +10 -0
  2147. package/lib/igx-grid-column-group-options-component.d.ts +21 -0
  2148. package/lib/igx-grid-column-group-options-dynamic-module.d.ts +9 -0
  2149. package/lib/igx-grid-column-group-options-module.d.ts +9 -0
  2150. package/lib/igx-grid-column-hide-options-component.d.ts +21 -0
  2151. package/lib/igx-grid-column-hide-options-dynamic-module.d.ts +9 -0
  2152. package/lib/igx-grid-column-hide-options-module.d.ts +9 -0
  2153. package/lib/igx-grid-column-move-options-component.d.ts +25 -0
  2154. package/lib/igx-grid-column-move-options-dynamic-module.d.ts +9 -0
  2155. package/lib/igx-grid-column-move-options-module.d.ts +9 -0
  2156. package/lib/igx-grid-column-options-base-component.d.ts +100 -0
  2157. package/lib/igx-grid-column-options-component.d.ts +197 -0
  2158. package/lib/igx-grid-column-options-dynamic-module.d.ts +17 -0
  2159. package/lib/igx-grid-column-options-module.d.ts +17 -0
  2160. package/lib/igx-grid-column-options-section-base-component.d.ts +14 -0
  2161. package/lib/igx-grid-column-options-simple-section-base-component.d.ts +17 -0
  2162. package/lib/igx-grid-column-pin-options-component.d.ts +25 -0
  2163. package/lib/igx-grid-column-pin-options-dynamic-module.d.ts +9 -0
  2164. package/lib/igx-grid-column-pin-options-module.d.ts +9 -0
  2165. package/lib/igx-grid-column-sort-options-component.d.ts +29 -0
  2166. package/lib/igx-grid-column-sort-options-dynamic-module.d.ts +9 -0
  2167. package/lib/igx-grid-column-sort-options-module.d.ts +9 -0
  2168. package/lib/igx-grid-column-summary-options-component.d.ts +41 -0
  2169. package/lib/igx-grid-column-summary-options-dynamic-module.d.ts +11 -0
  2170. package/lib/igx-grid-column-summary-options-module.d.ts +11 -0
  2171. package/lib/igx-grid-column-width-changed-event-args.d.ts +32 -0
  2172. package/lib/igx-grid-columns-auto-generated-event-args.d.ts +20 -0
  2173. package/lib/igx-grid-columns-changed-event-args.d.ts +20 -0
  2174. package/lib/igx-grid-compound-conditional-style-component.d.ts +20 -0
  2175. package/lib/igx-grid-condition-filter-string-errors-parsing-event-args.d.ts +22 -0
  2176. package/lib/igx-grid-conditional-style-collection.d.ts +8 -0
  2177. package/lib/igx-grid-conditional-style-component.d.ts +79 -0
  2178. package/lib/igx-grid-conditional-style-dynamic-module.d.ts +9 -0
  2179. package/lib/igx-grid-conditional-style-module.d.ts +8 -0
  2180. package/lib/igx-grid-conditional-style-property-collection.d.ts +8 -0
  2181. package/lib/igx-grid-conditional-style-property-component.d.ts +103 -0
  2182. package/lib/igx-grid-conditional-style-property-dynamic-module.d.ts +9 -0
  2183. package/lib/igx-grid-conditional-style-property-module.d.ts +8 -0
  2184. package/lib/igx-grid-custom-filter-requested-event-args.d.ts +40 -0
  2185. package/lib/igx-grid-data-committed-event-args.d.ts +27 -0
  2186. package/lib/igx-grid-data-committing-event-args.d.ts +27 -0
  2187. package/lib/igx-grid-filter-dialog-filter-change-event-args.d.ts +15 -0
  2188. package/lib/igx-grid-filter-dialog-opening-event-args.d.ts +15 -0
  2189. package/lib/igx-grid-filter-dialog-view-model-grouping-level-collection.d.ts +8 -0
  2190. package/lib/igx-grid-filter-dialog-view-model-grouping-level.d.ts +8 -0
  2191. package/lib/igx-grid-filter-dialog-view-model-grouping.d.ts +22 -0
  2192. package/lib/igx-grid-filter-dialog-view-model-row-collection.d.ts +8 -0
  2193. package/lib/igx-grid-filter-dialog-view-model-row.d.ts +31 -0
  2194. package/lib/igx-grid-filter-dialog-view-model.d.ts +39 -0
  2195. package/lib/igx-grid-filter-expressions-event-args.d.ts +15 -0
  2196. package/lib/igx-grid-filter-operands-collection.d.ts +8 -0
  2197. package/lib/igx-grid-group-descriptions-changed-event-args.d.ts +18 -0
  2198. package/lib/igx-grid-row-edit-ended-event-args.d.ts +23 -0
  2199. package/lib/igx-grid-row-edit-started-event-args.d.ts +23 -0
  2200. package/lib/igx-grid-selected-cell-ranges-changed-event-args.d.ts +44 -0
  2201. package/lib/igx-grid-selected-cell-ranges-collection.d.ts +8 -0
  2202. package/lib/igx-grid-selected-cells-changed-event-args.d.ts +37 -0
  2203. package/lib/igx-grid-selected-cells-collection.d.ts +8 -0
  2204. package/lib/igx-grid-selected-items-changed-event-args.d.ts +37 -0
  2205. package/lib/igx-grid-selected-items-collection.d.ts +6 -0
  2206. package/lib/igx-grid-selected-keys-changed-event-args.d.ts +37 -0
  2207. package/lib/igx-grid-selected-keys-collection.d.ts +8 -0
  2208. package/lib/igx-grid-selection-changed-event-args.d.ts +15 -0
  2209. package/lib/igx-grid-size-changed-event-args.d.ts +27 -0
  2210. package/lib/igx-grid-sort-descriptions-changed-event-args.d.ts +18 -0
  2211. package/lib/igx-grid-summary-descriptions-changed-event-args.d.ts +18 -0
  2212. package/lib/igx-group-data.d.ts +31 -0
  2213. package/lib/igx-header-component.d.ts +57 -0
  2214. package/lib/igx-header-row-separator-component.d.ts +17 -0
  2215. package/lib/igx-header-row-separator-dynamic-module.d.ts +9 -0
  2216. package/lib/igx-header-row-separator-module.d.ts +8 -0
  2217. package/lib/igx-header-separator-component.d.ts +14 -0
  2218. package/lib/igx-header-separator-dynamic-module.d.ts +9 -0
  2219. package/lib/igx-header-separator-module.d.ts +8 -0
  2220. package/lib/igx-horizontal-property-editor-data-source.d.ts +8 -0
  2221. package/lib/igx-image-cell-info.d.ts +32 -0
  2222. package/lib/igx-image-column-component.d.ts +46 -0
  2223. package/lib/igx-image-column-dynamic-module.d.ts +9 -0
  2224. package/lib/igx-image-column-module.d.ts +8 -0
  2225. package/lib/igx-lost-focus-event-args.d.ts +12 -0
  2226. package/lib/igx-multi-column-combo-box-component.d.ts +579 -0
  2227. package/lib/igx-multi-column-combo-box-dynamic-module.d.ts +15 -0
  2228. package/lib/igx-multi-column-combo-box-module.d.ts +15 -0
  2229. package/lib/igx-multi-column-combo-box-text-changed-event-args.d.ts +13 -0
  2230. package/lib/igx-multi-column-combo-box-value-changed-event-args.d.ts +13 -0
  2231. package/lib/igx-numeric-cell-info.d.ts +83 -0
  2232. package/lib/igx-numeric-column-component.d.ts +97 -0
  2233. package/lib/igx-numeric-column-dynamic-module.d.ts +9 -0
  2234. package/lib/igx-numeric-column-module.d.ts +8 -0
  2235. package/lib/igx-operator-selector-closing-event-args.d.ts +12 -0
  2236. package/lib/igx-operator-selector-opening-event-args.d.ts +15 -0
  2237. package/lib/igx-operator-selector-value-changed-event-args.d.ts +20 -0
  2238. package/lib/igx-page-changed-event-args.d.ts +24 -0
  2239. package/lib/igx-pinned-area-separator-component.d.ts +14 -0
  2240. package/lib/igx-pinned-area-separator-dynamic-module.d.ts +9 -0
  2241. package/lib/igx-pinned-area-separator-module.d.ts +8 -0
  2242. package/lib/igx-primary-key-value-dynamic-module.d.ts +9 -0
  2243. package/lib/igx-primary-key-value-module.d.ts +7 -0
  2244. package/lib/igx-primary-key-value.d.ts +31 -0
  2245. package/lib/igx-property-editor-component.d.ts +147 -0
  2246. package/lib/igx-property-editor-dynamic-module.d.ts +18 -0
  2247. package/lib/igx-property-editor-module.d.ts +18 -0
  2248. package/lib/igx-responsive-phase.d.ts +51 -0
  2249. package/lib/igx-responsive-phases-collection.d.ts +8 -0
  2250. package/lib/igx-responsive-state-entered-event-args.d.ts +15 -0
  2251. package/lib/igx-responsive-state-entering-event-args.d.ts +15 -0
  2252. package/lib/igx-responsive-state-exited-event-args.d.ts +15 -0
  2253. package/lib/igx-responsive-state.d.ts +81 -0
  2254. package/lib/igx-responsive-states-collection.d.ts +8 -0
  2255. package/lib/igx-row-separator-component.d.ts +17 -0
  2256. package/lib/igx-row-separator-dynamic-module.d.ts +9 -0
  2257. package/lib/igx-row-separator-info.d.ts +13 -0
  2258. package/lib/igx-row-separator-module.d.ts +8 -0
  2259. package/lib/igx-section-footer-component.d.ts +17 -0
  2260. package/lib/igx-section-footer-dynamic-module.d.ts +9 -0
  2261. package/lib/igx-section-footer-module.d.ts +8 -0
  2262. package/lib/igx-section-header-cell-info.d.ts +30 -0
  2263. package/lib/igx-section-header-component.d.ts +52 -0
  2264. package/lib/igx-section-header-dynamic-module.d.ts +9 -0
  2265. package/lib/igx-section-header-module.d.ts +8 -0
  2266. package/lib/igx-select-all-checkbox-changed-event-args.d.ts +15 -0
  2267. package/lib/igx-sort-indicator-render-completed-event-args.d.ts +12 -0
  2268. package/lib/igx-summary-cell-info.d.ts +30 -0
  2269. package/lib/igx-summary-changed-event-args.d.ts +26 -0
  2270. package/lib/igx-summary-chooser-dynamic-module.d.ts +9 -0
  2271. package/lib/igx-summary-chooser-module.d.ts +8 -0
  2272. package/lib/igx-summary-data.d.ts +28 -0
  2273. package/lib/igx-summary-row-component.d.ts +62 -0
  2274. package/lib/igx-summary-row-root-component.d.ts +14 -0
  2275. package/lib/igx-summary-row-root-dynamic-module.d.ts +9 -0
  2276. package/lib/igx-summary-row-root-module.d.ts +8 -0
  2277. package/lib/igx-summary-row-section-component.d.ts +14 -0
  2278. package/lib/igx-summary-row-section-dynamic-module.d.ts +9 -0
  2279. package/lib/igx-summary-row-section-module.d.ts +8 -0
  2280. package/lib/igx-template-cell-info.d.ts +18 -0
  2281. package/lib/igx-template-cell-updating-event-args.d.ts +26 -0
  2282. package/lib/igx-template-column-component.d.ts +27 -0
  2283. package/lib/igx-template-column-dynamic-module.d.ts +9 -0
  2284. package/lib/igx-template-column-module.d.ts +8 -0
  2285. package/lib/igx-template-header-cell-info.d.ts +19 -0
  2286. package/lib/igx-template-header-cell-updating-event-args.d.ts +26 -0
  2287. package/lib/igx-template-header-component.d.ts +27 -0
  2288. package/lib/igx-template-header-dynamic-module.d.ts +9 -0
  2289. package/lib/igx-template-header-module.d.ts +8 -0
  2290. package/lib/igx-template-section-header-cell-info.d.ts +13 -0
  2291. package/lib/igx-template-section-header-cell-updating-event-args.d.ts +21 -0
  2292. package/lib/igx-template-section-header-component.d.ts +27 -0
  2293. package/lib/igx-template-section-header-dynamic-module.d.ts +9 -0
  2294. package/lib/igx-template-section-header-module.d.ts +8 -0
  2295. package/lib/igx-text-cell-info.d.ts +18 -0
  2296. package/lib/igx-text-column-component.d.ts +39 -0
  2297. package/lib/igx-text-column-dynamic-module.d.ts +9 -0
  2298. package/lib/igx-text-column-module.d.ts +8 -0
  2299. package/lib/igx-text-header-cell-info.d.ts +42 -0
  2300. package/lib/igx-text-header-component.d.ts +17 -0
  2301. package/lib/igx-text-header-dynamic-module.d.ts +9 -0
  2302. package/lib/igx-text-header-module.d.ts +8 -0
  2303. package/lib/igx-text-icon-set-conditional-style-component.d.ts +20 -0
  2304. package/lib/igx-text-icon-set-conditional-style-dynamic-module.d.ts +9 -0
  2305. package/lib/igx-text-icon-set-conditional-style-module.d.ts +8 -0
  2306. package/lib/igx-vertical-separator-cell-info.d.ts +13 -0
  2307. package/package.json +45 -0
  2308. package/public_api.d.ts +742 -0
@@ -0,0 +1,4190 @@
1
+ import { Component, EventEmitter, Output, ViewContainerRef, ViewChild, Input, ChangeDetectionStrategy, ContentChildren } from '@angular/core';
2
+ import { IgxSectionHeaderComponent } from './igx-section-header-component';
3
+ import { IgxSummaryRowRootComponent } from './igx-summary-row-root-component';
4
+ import { IgxSummaryRowSectionComponent } from './igx-summary-row-section-component';
5
+ import { IgxColumnWidth } from './igx-column-width';
6
+ import { ColumnWidth as ColumnWidth_internal } from './ColumnWidth';
7
+ import { HeaderClickAction_$type } from './HeaderClickAction';
8
+ import { ColumnShowingAnimationMode_$type } from './ColumnShowingAnimationMode';
9
+ import { ColumnPropertyUpdatingAnimationMode, ColumnPropertyUpdatingAnimationMode_$type } from './ColumnPropertyUpdatingAnimationMode';
10
+ import { CellDataLoadedAnimationMode_$type } from './CellDataLoadedAnimationMode';
11
+ import { RowSelectionAnimationMode_$type } from './RowSelectionAnimationMode';
12
+ import { ColumnMovingAnimationMode_$type } from './ColumnMovingAnimationMode';
13
+ import { ColumnHidingAnimationMode_$type } from './ColumnHidingAnimationMode';
14
+ import { CellSelectionAnimationMode_$type } from './CellSelectionAnimationMode';
15
+ import { ColumnExchangingAnimationMode_$type } from './ColumnExchangingAnimationMode';
16
+ import { RowHoverAnimationMode_$type } from './RowHoverAnimationMode';
17
+ import { DataGridSelectionMode_$type } from './DataGridSelectionMode';
18
+ import { GridActivationMode_$type } from './GridActivationMode';
19
+ import { GridSelectionBehavior_$type } from './GridSelectionBehavior';
20
+ import { IgxDataGridCellEventArgs } from './igx-data-grid-cell-event-args';
21
+ import { IgxGridColumnsAutoGeneratedEventArgs } from './igx-grid-columns-auto-generated-event-args';
22
+ import { IgxGridSelectedItemsChangedEventArgs } from './igx-grid-selected-items-changed-event-args';
23
+ import { IgxGridSelectedKeysChangedEventArgs } from './igx-grid-selected-keys-changed-event-args';
24
+ import { IgxGridSelectedCellsChangedEventArgs } from './igx-grid-selected-cells-changed-event-args';
25
+ import { IgxGridSelectedCellRangesChangedEventArgs } from './igx-grid-selected-cell-ranges-changed-event-args';
26
+ import { IgxGridSortDescriptionsChangedEventArgs } from './igx-grid-sort-descriptions-changed-event-args';
27
+ import { IgxGridGroupDescriptionsChangedEventArgs } from './igx-grid-group-descriptions-changed-event-args';
28
+ import { IgxGridSummaryDescriptionsChangedEventArgs } from './igx-grid-summary-descriptions-changed-event-args';
29
+ import { DataGrid } from "./DataGrid";
30
+ import { ensureEnum, ensureBool, CollectionAdapter, initializePropertiesFromCss, NamePatcher, stringToBrush, brushToString, toSpinal } from "igniteui-angular-core";
31
+ import { Thickness } from "igniteui-angular-core";
32
+ import { AngularRenderer, AngularWrapper, PortalManager } from "igniteui-angular-core";
33
+ import { DataGridColumn } from './DataGridColumn';
34
+ import { IgxDataGridColumnComponent } from './igx-data-grid-column-component';
35
+ import { DataGridCellLayoutPanel } from './DataGridCellLayoutPanel';
36
+ import { Base } from "igniteui-angular-core";
37
+ import { GridExternalWrapper } from './GridExternalWrapper';
38
+ import { BrowserTickProvider } from './BrowserTickProvider';
39
+ import { BrowserPixelConverter } from './BrowserPixelConverter';
40
+ import { DataGridPresenterManager } from './DataGridPresenterManager';
41
+ import { DataGridViewportManager } from './DataGridViewportManager';
42
+ import { DataGridDelayedExecutionManager } from './DataGridDelayedExecutionManager';
43
+ import { DataGridPropertySetter } from './DataGridPropertySetter';
44
+ import { IgxGridColumnCollection } from './igx-grid-column-collection';
45
+ import { SyncableObservableCollection$1 } from "igniteui-angular-core";
46
+ import { NotifyCollectionChangedAction } from "igniteui-angular-core";
47
+ import { Scroller } from "igniteui-angular-core";
48
+ import { ScrollbarStyle_$type } from "igniteui-angular-core";
49
+ import { Dragger } from "./Dragger";
50
+ import { DataGridStylingDefaults } from './DataGridStylingDefaults';
51
+ import { delegateCombine } from "igniteui-angular-core";
52
+ import { FontInfo } from "igniteui-angular-core";
53
+ import { IgxColumnSortDescriptionCollection } from './igx-column-sort-description-collection';
54
+ import { IgxColumnGroupDescriptionCollection } from './igx-column-group-description-collection';
55
+ import { IgxFilterExpressionCollection } from "igniteui-angular-core";
56
+ import { IgxColumnSummaryDescriptionCollection } from './igx-column-summary-description-collection';
57
+ import { IgxGridSelectedItemsCollection } from "./igx-grid-selected-items-collection";
58
+ import { IgxGridSelectedKeysCollection } from "./igx-grid-selected-keys-collection";
59
+ import { IgxGridSelectedCellsCollection } from "./igx-grid-selected-cells-collection";
60
+ import { IgxGridSelectedCellRangesCollection } from "./igx-grid-selected-cell-ranges-collection";
61
+ import { GridSelectedItemsCollection as GridSelectedItemsCollection_internal } from "./GridSelectedItemsCollection";
62
+ import { GridSelectedKeysCollection as GridSelectedKeysCollection_internal } from "./GridSelectedKeysCollection";
63
+ import { GridSelectedCellsCollection as GridSelectedCellsCollection_internal } from "./GridSelectedCellsCollection";
64
+ import { GridSelectedCellRangesCollection as GridSelectedCellRangesCollection_internal } from "./GridSelectedCellRangesCollection";
65
+ import { PrimaryKeyValue } from "./PrimaryKeyValue";
66
+ import { CellKey } from "./CellKey";
67
+ import { CellRange } from "./CellRange";
68
+ import { IgxGridFilterExpressionsEventArgs } from './igx-grid-filter-expressions-event-args';
69
+ import { GridColumnCollection as GridColumnCollection_internal } from './GridColumnCollection';
70
+ import { ResponsiveStatesCollection as ResponsiveStatesCollection_internal } from './ResponsiveStatesCollection';
71
+ import { IgxResponsiveStatesCollection } from './igx-responsive-states-collection';
72
+ import { ResponsiveState } from './ResponsiveState';
73
+ import { IgxGridAnimationSettings } from './igx-grid-animation-settings';
74
+ import { IgxRowSeparatorComponent } from './igx-row-separator-component';
75
+ import { IgxHeaderRowSeparatorComponent } from './igx-header-row-separator-component';
76
+ import { IgxGridCellPosition } from "./igx-grid-cell-position";
77
+ import { IgxGridActiveCellChangedEventArgs } from "./igx-grid-active-cell-changed-event-args";
78
+ import { IgxColumnHiddenChangedEventArgs } from "./igx-column-hidden-changed-event-args";
79
+ import { DataGridScrollerKeyboardListener } from "./DataGridScrollerKeyboardListener";
80
+ import { IgxHeaderSeparatorComponent } from "./igx-header-separator-component";
81
+ import { IgxColumnResizingSeparatorComponent } from './igx-column-resizing-separator-component';
82
+ import { ColumnResizingMode_$type } from "./ColumnResizingMode";
83
+ import { ColumnResizingAnimationMode_$type } from "./ColumnResizingAnimationMode";
84
+ import { ColumnMovingMode_$type } from "./ColumnMovingMode";
85
+ import { IgxColumnMovingSeparatorComponent } from './igx-column-moving-separator-component';
86
+ import { SortIndicatorStyle_$type } from "./SortIndicatorStyle";
87
+ import { GroupHeaderDisplayMode_$type } from "./GroupHeaderDisplayMode";
88
+ import { SummaryScope_$type } from "./SummaryScope";
89
+ import { GroupSummaryDisplayMode_$type } from "./GroupSummaryDisplayMode";
90
+ import { IgxPinnedAreaSeparatorComponent } from "./igx-pinned-area-separator-component";
91
+ import { ColumnOptionsIconAlignment_$type } from "./ColumnOptionsIconAlignment";
92
+ import { ColumnOptionsIconBehavior_$type } from "./ColumnOptionsIconBehavior";
93
+ import { fromRect } from "igniteui-angular-core";
94
+ import { IgxColumnPinnedChangedEventArgs } from "./igx-column-pinned-changed-event-args";
95
+ import { ControlDisplayDensity_$type } from "igniteui-angular-core";
96
+ import { CornerRadius } from "igniteui-angular-core";
97
+ import { EditModeType_$type } from "./EditModeType";
98
+ import { EditModeClickAction_$type } from "./EditModeClickAction";
99
+ import { IgxGridCellValueChangingEventArgs } from "./igx-grid-cell-value-changing-event-args";
100
+ import { IgxGridDataCommittingEventArgs } from "./igx-grid-data-committing-event-args";
101
+ import { IgxGridDataCommittedEventArgs } from "./igx-grid-data-committed-event-args";
102
+ import { IgxGridSizeChangedEventArgs } from "./igx-grid-size-changed-event-args";
103
+ import { IgxGridColumnsChangedEventArgs } from './igx-grid-columns-changed-event-args';
104
+ import { IgxGridColumnWidthChangedEventArgs } from "./igx-grid-column-width-changed-event-args";
105
+ import { IgxGridCellEditStartedEventArgs } from "./igx-grid-cell-edit-started-event-args";
106
+ import { IgxGridCellEditEndedEventArgs } from "./igx-grid-cell-edit-ended-event-args";
107
+ import { IgxGridRowEditStartedEventArgs } from "./igx-grid-row-edit-started-event-args";
108
+ import { IgxGridRowEditEndedEventArgs } from "./igx-grid-row-edit-ended-event-args";
109
+ import { IgxGridSelectionChangedEventArgs } from "./igx-grid-selection-changed-event-args";
110
+ import { EnterKeyBehaviors_$type } from "./EnterKeyBehaviors";
111
+ import { EnterKeyBehaviorAfterEdit_$type } from "./EnterKeyBehaviorAfterEdit";
112
+ import { MergedCellMode_$type } from "./MergedCellMode";
113
+ import { MergedCellEvaluationCriteria_$type } from "./MergedCellEvaluationCriteria";
114
+ import { FilterUIType_$type } from "./FilterUIType";
115
+ import { FilterLogicalOperator_$type } from "./FilterLogicalOperator";
116
+ import { FilterComparisonType_$type } from "./FilterComparisonType";
117
+ import { IgxGridCustomFilterRequestedEventArgs } from "./igx-grid-custom-filter-requested-event-args";
118
+ import { ColumnGrouping } from "./ColumnGrouping";
119
+ import { CellContentVerticalAlignment_$type } from "./CellContentVerticalAlignment";
120
+ import { IgxDataSourceRootSummariesChangedEventArgs } from "igniteui-angular-core";
121
+ import * as i0 from "@angular/core";
122
+ let GridStylingDefaults = {};
123
+ export let IgxDataGridComponent = /*@__PURE__*/ (() => {
124
+ class IgxDataGridComponent {
125
+ constructor(_ngrenderer, _elRef, _ngZone, _componentFactoryResolver, _changeDetector, _injector) {
126
+ this._ngrenderer = _ngrenderer;
127
+ this._elRef = _elRef;
128
+ this._ngZone = _ngZone;
129
+ this._componentFactoryResolver = _componentFactoryResolver;
130
+ this._changeDetector = _changeDetector;
131
+ this._injector = _injector;
132
+ /**
133
+ * The columns actually present in the grid. Do not directly modify this array.
134
+ * This array's contents can be modified by causing Angular to reproject the child content.
135
+ * Or adding and removing columns from the manual columns collection on the columns property.
136
+ */
137
+ this.combinedColumns = [];
138
+ this._columns = null;
139
+ this._disableManualColumnSync = false;
140
+ this._columnsAdapter = null;
141
+ this._scroller = null;
142
+ this._dragger = null;
143
+ this._renderer = null;
144
+ this._grid = null;
145
+ this.containerResized = function () {
146
+ var width = this._container.clientWidth;
147
+ var height = this._container.clientHeight;
148
+ this._scroller.viewportWidth = width;
149
+ this._scroller.viewportHeight = height;
150
+ this._grid.dragger.viewportWidth = width;
151
+ this._grid.dragger.viewportHeight = height;
152
+ this._grid.onSizeChanged(width, height);
153
+ if (this._grid.model.actualVisibleRegion.isEmpty &&
154
+ width > 0 && height > 0) {
155
+ this._grid.setViewport(0, 0, width, height);
156
+ }
157
+ else {
158
+ this.onScroll();
159
+ }
160
+ };
161
+ this._dataSource = null;
162
+ this._insetLeft = 0;
163
+ this._insetTop = 0;
164
+ this._insetRight = 0;
165
+ this._insetBottom = 0;
166
+ this._isGroupByAreaVisible = false;
167
+ this._selectedItems = null;
168
+ this._selectedKeys = null;
169
+ this._selectedCells = null;
170
+ this._selectedCellRanges = null;
171
+ this._pinnedItems = null;
172
+ this._pinnedKeys = null;
173
+ this._responsiveStates = null;
174
+ this._actualColumns = null;
175
+ this.__p = null;
176
+ this._hasUserValues = new Set();
177
+ this._stylingContainer = null;
178
+ this._stylingParent = null;
179
+ this._inStyling = false;
180
+ this._filterExpressionsChanging = null;
181
+ this._filterExpressionsChanged = null;
182
+ this._cellPreviewPointerDown = null;
183
+ this._cellPreviewPointerUp = null;
184
+ this._cellPointerDown = null;
185
+ this._cellPointerUp = null;
186
+ this._cellClicked = null;
187
+ this._sortDescriptionsChanged = null;
188
+ this._groupDescriptionsChanged = null;
189
+ this._summaryDescriptionsChanged = null;
190
+ this._columnHiddenChanged = null;
191
+ this._columnPinnedChanged = null;
192
+ this._cellValueChanging = null;
193
+ this._dataCommitted = null;
194
+ this._dataCommitting = null;
195
+ this._rootSummariesChanged = null;
196
+ this._sizeChanged = null;
197
+ this._actualColumnsChanged = null;
198
+ this._columnsAutoGenerated = null;
199
+ this._selectedItemsChanged = null;
200
+ this._selectedKeysChanged = null;
201
+ this._selectedCellsChanged = null;
202
+ this._selectionChanged = null;
203
+ this._activeCellChanged = null;
204
+ this._selectedCellRangesChanged = null;
205
+ this._columnWidthChanged = null;
206
+ this._cellEditStarted = null;
207
+ this._cellEditEnded = null;
208
+ this._rowEditStarted = null;
209
+ this._rowEditEnded = null;
210
+ this._customFilterRequested = null;
211
+ this._actualPrimaryKeyChange = null;
212
+ this._zoneRunner = null;
213
+ if (this._styling) {
214
+ NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
215
+ }
216
+ let useCanvas = false;
217
+ this._zoneRunner = (act) => this._ngZone.run(act);
218
+ this._container = _ngrenderer.createElement("div");
219
+ _ngrenderer.appendChild(_elRef.element.nativeElement, this._container);
220
+ _ngrenderer.setStyle(this._container, "display", "block");
221
+ _ngrenderer.setStyle(this._container, "width", "100%");
222
+ _ngrenderer.setStyle(this._container, "height", "100%");
223
+ _ngrenderer.setStyle(this._container, "box-sizing", "border-box");
224
+ var root;
225
+ root = this._container;
226
+ if (this._container.nativeElement != null) {
227
+ root = this._container.nativeElement;
228
+ }
229
+ this._portalManager = new PortalManager("filterDialog", _componentFactoryResolver);
230
+ this._portalManager.detectChanges = () => {
231
+ this._changeDetector.detectChanges();
232
+ };
233
+ var ren = new AngularRenderer(root, this._ngrenderer, window.document, this._ngZone, true, DataGridStylingDefaults, this._portalManager);
234
+ this._renderer = ren;
235
+ this._implementation = new DataGrid();
236
+ var grid = this.i;
237
+ this._grid = grid;
238
+ this._grid.externalObject = this;
239
+ this._columnsAdapter = new CollectionAdapter([], this.i.columns, this.combinedColumns, (c) => c.i, (i) => {
240
+ i._provideRenderer(this._renderer);
241
+ if (this._elRef && this._elRef.element.nativeElement.parentElement) {
242
+ i._styling(this._elRef.element.nativeElement, this, this);
243
+ }
244
+ }, (i) => { i._provideRenderer(null); });
245
+ grid.externalGrid = new GridExternalWrapper(this);
246
+ grid.tickProvider = new BrowserTickProvider(ren);
247
+ grid.platformPixelConverter = new BrowserPixelConverter();
248
+ this._contentLayout = new DataGridCellLayoutPanel(ren, new DataGridPresenterManager(this._grid, useCanvas), window.devicePixelRatio);
249
+ grid.renderingEngine = this._contentLayout;
250
+ grid.viewportManager = new DataGridViewportManager(this);
251
+ grid.delayedExecutionManager = new DataGridDelayedExecutionManager(ren);
252
+ grid.propertySetter = new DataGridPropertySetter();
253
+ //grid.provideContainer(ren);
254
+ let scroller = new Scroller();
255
+ this._scroller = scroller;
256
+ scroller.scrollbarStyle = this.scrollbarStyle;
257
+ scroller.provideContainer(ren);
258
+ this._content = (this._contentLayout.element.getNativeElement());
259
+ scroller.keyboardListener = new DataGridScrollerKeyboardListener(grid);
260
+ scroller.provideContent(new AngularWrapper(this._content, this._ngrenderer, this._ngZone));
261
+ scroller.onScrolling = () => this.onScroll();
262
+ scroller.onScrollStart = () => this.onScrollStart();
263
+ scroller.onScrollStop = () => this.onScrollStop();
264
+ scroller.viewportWidth = this._container.clientWidth;
265
+ scroller.viewportHeight = this._container.clientHeight;
266
+ scroller.verticalTrackStartInset = this.actualHeaderHeight;
267
+ grid.dragger = new Dragger();
268
+ grid.dragger.provideContainer(ren);
269
+ grid.dragger.viewportWidth = this._container.clientWidth;
270
+ grid.dragger.viewportHeight = this._container.clientHeight;
271
+ if (this._isGroupByAreaVisible == true) {
272
+ var groupContainer = this._ngrenderer.createElement("div");
273
+ var groupAreaContainer = this._ngrenderer.createElement("div");
274
+ groupContainer.append(groupAreaContainer);
275
+ groupContainer.setStyleProperty("width", "100%");
276
+ var groupRenderer = this._renderer.getSubRenderer(groupContainer);
277
+ this._container.append(groupRenderer.rootWrapper.getNativeElement());
278
+ let columnGrouping = new ColumnGrouping();
279
+ columnGrouping.targetGrid = this._grid;
280
+ columnGrouping.provideContainer(groupRenderer);
281
+ this.i.columnGrouping = columnGrouping;
282
+ }
283
+ ren.addSizeWatcher(() => {
284
+ this.containerResized();
285
+ });
286
+ this.i.syncBorder();
287
+ // supports angular themes or custom properties set in CSS
288
+ //this._styling(_elRef.element.nativeElement, this);
289
+ }
290
+ _ensureColumnsAreManual() {
291
+ this._disableManualColumnSync = true;
292
+ this._columnsAdapter.shiftContentToManual(this.columns, (i) => i.isFromMarkup = false);
293
+ this._disableManualColumnSync = false;
294
+ }
295
+ /**
296
+ * A collection or manually added columns for the grid.
297
+ */
298
+ get columns() {
299
+ if (this._columns === null) {
300
+ let coll = new IgxGridColumnCollection();
301
+ let inner = coll._innerColl;
302
+ inner.addListener((sender, e) => {
303
+ if (this._disableManualColumnSync) {
304
+ return;
305
+ }
306
+ switch (e.action) {
307
+ case NotifyCollectionChangedAction.Add:
308
+ this._columnsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
309
+ break;
310
+ case NotifyCollectionChangedAction.Remove:
311
+ this._columnsAdapter.removeManualItemAt(e.oldStartingIndex);
312
+ break;
313
+ case NotifyCollectionChangedAction.Replace:
314
+ this._columnsAdapter.removeManualItemAt(e.oldStartingIndex);
315
+ this._columnsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
316
+ break;
317
+ case NotifyCollectionChangedAction.Reset:
318
+ this._columnsAdapter.clearManualItems();
319
+ break;
320
+ }
321
+ });
322
+ this._columns = coll;
323
+ }
324
+ return this._columns;
325
+ }
326
+ set height(value) {
327
+ this._height = value;
328
+ this._ngrenderer.setStyle(this._elRef.element.nativeElement, "height", value);
329
+ this.containerResized();
330
+ }
331
+ get height() {
332
+ return this._height;
333
+ }
334
+ set width(value) {
335
+ this._width = value;
336
+ this._ngrenderer.setStyle(this._elRef.element.nativeElement, "width", value);
337
+ this.containerResized();
338
+ }
339
+ get width() {
340
+ return this._width;
341
+ }
342
+ _setScrollbarStyle(style) {
343
+ if (this._scroller) {
344
+ this._scroller.scrollbarStyle = style;
345
+ }
346
+ }
347
+ _setScrollbarColor(color) {
348
+ if (this._scroller) {
349
+ this._scroller.scrollbarBrush = color;
350
+ }
351
+ }
352
+ createImplementation() {
353
+ //let test = Grid;
354
+ return new DataGrid();
355
+ }
356
+ ngOnInit() {
357
+ }
358
+ get i() {
359
+ return this._implementation;
360
+ }
361
+ onImplementationCreated() {
362
+ }
363
+ _focusScroller() {
364
+ this._scroller.focus();
365
+ }
366
+ _setDefaultCursor() {
367
+ if (this._elRef.element.nativeElement.style.cursor !== "") {
368
+ this._elRef.element.nativeElement.style.cursor = "";
369
+ }
370
+ }
371
+ _setResizeCursor() {
372
+ if (this._elRef.element.nativeElement.style.cursor !== "col-resize") {
373
+ this._elRef.element.nativeElement.style.cursor = "col-resize";
374
+ }
375
+ }
376
+ _setHandCursor() {
377
+ if (this._elRef.element.nativeElement.style.cursor !== "grabbing") {
378
+ this._elRef.element.nativeElement.style.cursor = "grabbing";
379
+ }
380
+ }
381
+ _setBorder(borderColor, borderLeft, borderTop, borderRight, borderBottom, radiusTopLeft, radiusTopRight, radiusBottomLeft, radiusBottomRight) {
382
+ if (this._elRef) {
383
+ if (borderLeft !== 0 || borderTop !== 0 || borderRight !== 0 || borderBottom !== 0) {
384
+ this._elRef.element.nativeElement.style.borderStyle = "solid";
385
+ this._elRef.element.nativeElement.style.borderColor = borderColor;
386
+ this._elRef.element.nativeElement.style.borderTopWidth = borderTop + "px";
387
+ this._elRef.element.nativeElement.style.borderRightWidth = borderRight + "px";
388
+ this._elRef.element.nativeElement.style.borderBottomWidth = borderBottom + "px";
389
+ this._elRef.element.nativeElement.style.borderLeftWidth = borderLeft + "px";
390
+ this._elRef.element.nativeElement.style.borderTopLeftRadius = radiusTopLeft + "px";
391
+ this._elRef.element.nativeElement.style.borderTopRightRadius = radiusTopRight + "px";
392
+ this._elRef.element.nativeElement.style.borderBottomLeftRadius = radiusBottomLeft + "px";
393
+ this._elRef.element.nativeElement.style.borderBottomRightRadius = radiusBottomRight + "px";
394
+ }
395
+ else {
396
+ this._elRef.element.nativeElement.style.borderStyle = "none";
397
+ }
398
+ }
399
+ }
400
+ _setScrollerVerticalTrackInset(inset) {
401
+ this._scroller.verticalTrackStartInset = inset;
402
+ }
403
+ _insertExternalColumnAtIndex(index, column) {
404
+ //let contentCount = this.contentColumns.length;
405
+ let contentCount = this._columnsAdapter.actualContent.length;
406
+ this.columns.insert(index - contentCount, column);
407
+ }
408
+ _removeExternalColumn(column) {
409
+ let ind = -1;
410
+ for (let i = 0; i < this.columns.count; i++) {
411
+ if (this.columns.item(i) === column) {
412
+ ind = i;
413
+ break;
414
+ }
415
+ }
416
+ if (ind >= 0) {
417
+ this.columns.removeAt(ind);
418
+ }
419
+ }
420
+ ngAfterContentInit() {
421
+ let prev = this._grid.columnPropertyUpdatingAnimationMode;
422
+ this._grid.columnPropertyUpdatingAnimationMode = ColumnPropertyUpdatingAnimationMode.None;
423
+ this._styling(this._elRef.element.nativeElement, this);
424
+ this._grid.columnPropertyUpdatingAnimationMode = prev;
425
+ this._columnsAdapter.updateQuery(this.contentColumns);
426
+ prev = this._grid.columnPropertyUpdatingAnimationMode;
427
+ this._grid.columnPropertyUpdatingAnimationMode = ColumnPropertyUpdatingAnimationMode.None;
428
+ for (let i = 0; i < this.actualColumns.count; i++) {
429
+ let c = this.actualColumns.item(i);
430
+ c._styling(this._elRef.element.nativeElement, this, this);
431
+ }
432
+ this._grid.columnPropertyUpdatingAnimationMode = prev;
433
+ this._grid.itemsSource = this._dataSource;
434
+ }
435
+ ngAfterViewInit() {
436
+ this._portalManager.dynamicContent = this._dynamicContent;
437
+ }
438
+ ngOnDestroy() {
439
+ if (this.i) {
440
+ if (this._scroller) {
441
+ this._scroller.onDetachedFromUI();
442
+ }
443
+ if (this._grid.dragger) {
444
+ this._grid.dragger.onDetachedFromUI();
445
+ }
446
+ if (this._grid.renderingEngine) {
447
+ this._grid.renderingEngine.detach();
448
+ }
449
+ }
450
+ }
451
+ get actualDataSource() {
452
+ return this.i.actualDataSource;
453
+ }
454
+ refreshContentSize() {
455
+ if (this._content != null) {
456
+ var width = this._grid.model.absoluteWidth;
457
+ var height = this._grid.model.absoluteHeight;
458
+ if (this._scroller != null) {
459
+ this._scroller.contentWidth = width;
460
+ this._scroller.contentHeight = height;
461
+ }
462
+ }
463
+ }
464
+ onScroll() {
465
+ let top = this._scroller.scrollTop;
466
+ let left = this._scroller.scrollLeft;
467
+ let width = this._scroller.viewportWidth;
468
+ let height = this._scroller.viewportHeight;
469
+ //console.log("top:" + top);
470
+ this._grid.setViewport(left, top, left + width, top + height);
471
+ }
472
+ onScrollStart() {
473
+ this._grid.notifyScrollStart();
474
+ }
475
+ onScrollStop() {
476
+ this._grid.notifyScrollStop();
477
+ }
478
+ scrollTo(x, y) {
479
+ this._scroller.scrollTo(x, y);
480
+ //let width = this._scroller.viewportWidth;
481
+ //let height = this._scroller.viewportHeight;
482
+ //this._grid.setViewport(x, y, x + width, y + height);
483
+ }
484
+ set dataSource(value) {
485
+ this._dataSource = value;
486
+ if (this._grid != null) {
487
+ this._grid.itemsSource = this._dataSource;
488
+ }
489
+ }
490
+ get dataSource() {
491
+ return this._dataSource;
492
+ }
493
+ forColumnsWithPropertyPath(propertyPath, callback) {
494
+ for (let i = 0; i < this.i.actualColumns.count; i++) {
495
+ let col = this.i.actualColumns.item(i).externalObject;
496
+ if (col.field == propertyPath) {
497
+ callback(col);
498
+ }
499
+ }
500
+ }
501
+ /**
502
+ * Gets or sets the default column width to use if a column as no local width.
503
+ * */
504
+ get defaultColumnWidth() {
505
+ let ext = this.i.defaultColumnWidth.externalObject;
506
+ if (!ext) {
507
+ ext = new IgxColumnWidth();
508
+ ext._implementation = this.i.defaultColumnWidth;
509
+ }
510
+ return ext;
511
+ }
512
+ set defaultColumnWidth(value) {
513
+ if (typeof value == "string") {
514
+ let int = ColumnWidth_internal.parse(value);
515
+ let ext = new IgxColumnWidth();
516
+ ext._implementation = int;
517
+ value = ext;
518
+ }
519
+ this.i.defaultColumnWidth = value.i;
520
+ }
521
+ /**
522
+ * Gets or sets the amount of left inset space to use around the grid content.
523
+ */
524
+ get insetLeft() {
525
+ return this._insetLeft;
526
+ }
527
+ set insetLeft(v) {
528
+ this._insetLeft = +v;
529
+ let inset = new Thickness(1, this._insetLeft, this._insetTop, this._insetRight, this._insetBottom);
530
+ this.i.inset = inset;
531
+ }
532
+ /**
533
+ * Gets or sets the amount of top inset space to use around the grid content.
534
+ */
535
+ get insetTop() {
536
+ return this._insetTop;
537
+ }
538
+ set insetTop(v) {
539
+ this._insetTop = +v;
540
+ let inset = new Thickness(1, this._insetLeft, this._insetTop, this._insetRight, this._insetBottom);
541
+ this.i.inset = inset;
542
+ }
543
+ /**
544
+ * Gets or sets the amount of right inset space to use around the grid content.
545
+ */
546
+ get insetRight() {
547
+ return this._insetLeft;
548
+ }
549
+ set insetRight(v) {
550
+ this._insetRight = +v;
551
+ let inset = new Thickness(1, this._insetLeft, this._insetTop, this._insetRight, this._insetBottom);
552
+ this.i.inset = inset;
553
+ }
554
+ /**
555
+ * Gets or sets the amount of bottom inset space to use around the grid content.
556
+ */
557
+ get insetBottom() {
558
+ return this._insetBottom;
559
+ }
560
+ set insetBottom(v) {
561
+ this._insetBottom = +v;
562
+ let inset = new Thickness(1, this._insetLeft, this._insetTop, this._insetRight, this._insetBottom);
563
+ this.i.inset = inset;
564
+ }
565
+ /**
566
+ * Gets or sets if the Column Grouping Area should be shown and enabled
567
+ */
568
+ get isGroupByAreaVisible() {
569
+ return this._isGroupByAreaVisible;
570
+ }
571
+ set isGroupByAreaVisible(value) {
572
+ this._isGroupByAreaVisible = ensureBool(value);
573
+ this.i.isGroupByAreaVisible = this._isGroupByAreaVisible;
574
+ }
575
+ /**
576
+ * Gets or sets the type of column resizing to use.
577
+ */
578
+ get columnResizingMode() {
579
+ return this.i.columnResizingMode;
580
+ }
581
+ set columnResizingMode(v) {
582
+ this.i.columnResizingMode = ensureEnum(ColumnResizingMode_$type, v);
583
+ }
584
+ /**
585
+ * Gets or sets the type column moving to use.
586
+ */
587
+ get columnMovingMode() {
588
+ return this.i.columnMovingMode;
589
+ }
590
+ set columnMovingMode(v) {
591
+ this.i.columnMovingMode = ensureEnum(ColumnMovingMode_$type, v);
592
+ }
593
+ /**
594
+ * Gets or sets whether the row will highlight when hovered.
595
+ */
596
+ get isRowHoverEnabled() {
597
+ return this.i.isRowHoverEnabled;
598
+ }
599
+ set isRowHoverEnabled(v) {
600
+ this.i.isRowHoverEnabled = ensureBool(v);
601
+ }
602
+ /**
603
+ * Gets or sets the background color for rows when hovered.
604
+ */
605
+ get rowHoverBackground() {
606
+ return brushToString(this.i.rowHoverBackground);
607
+ }
608
+ set rowHoverBackground(v) {
609
+ this.i.rowHoverBackground = stringToBrush(v);
610
+ }
611
+ /**
612
+ * Gets or sets the text color for rows when hovered.
613
+ */
614
+ get rowHoverTextColor() {
615
+ return brushToString(this.i.rowHoverTextColor);
616
+ }
617
+ set rowHoverTextColor(v) {
618
+ this.i.rowHoverTextColor = stringToBrush(v);
619
+ }
620
+ /**
621
+ * Gets or sets the border color for rows being edited.
622
+ */
623
+ get editRowBorder() {
624
+ return brushToString(this.i.editRowBorder);
625
+ }
626
+ set editRowBorder(v) {
627
+ this.i.editRowBorder = stringToBrush(v);
628
+ }
629
+ get editRowBorderWidthBottom() {
630
+ return this.i.editRowBorderWidth ? this.i.editRowBorderWidth.bottom : NaN;
631
+ }
632
+ set editRowBorderWidthBottom(v) {
633
+ this.ensureEditRowBorderWidth();
634
+ this.i.editRowBorderWidth.bottom = +v;
635
+ this.i.editRowBorderWidth = this.i.editRowBorderWidth;
636
+ }
637
+ get editRowBorderWidthLeft() {
638
+ return this.i.editRowBorderWidth ? this.i.editRowBorderWidth.left : NaN;
639
+ }
640
+ set editRowBorderWidthLeft(v) {
641
+ this.ensureEditRowBorderWidth();
642
+ this.i.editRowBorderWidth.left = +v;
643
+ this.i.editRowBorderWidth = this.i.editRowBorderWidth;
644
+ }
645
+ get editRowBorderWidthRight() {
646
+ return this.i.editRowBorderWidth ? this.i.editRowBorderWidth.right : NaN;
647
+ }
648
+ set editRowBorderWidthRight(v) {
649
+ this.ensureEditRowBorderWidth();
650
+ this.i.editRowBorderWidth.right = +v;
651
+ this.i.editRowBorderWidth = this.i.editRowBorderWidth;
652
+ }
653
+ get editRowBorderWidthTop() {
654
+ return this.i.editRowBorderWidth ? this.i.editRowBorderWidth.top : NaN;
655
+ }
656
+ set editRowBorderWidthTop(v) {
657
+ this.ensureEditRowBorderWidth();
658
+ this.i.editRowBorderWidth.top = +v;
659
+ this.i.editRowBorderWidth = this.i.editRowBorderWidth;
660
+ }
661
+ ensureEditRowBorderWidth() {
662
+ if (this.i.editRowBorderWidth) {
663
+ return;
664
+ }
665
+ this.i.editRowBorderWidth = new Thickness(2);
666
+ }
667
+ /**
668
+ * Gets or sets the header type used for sectioning off groups of rows.
669
+ */
670
+ get sectionHeader() {
671
+ const r = this.i.sectionHeader;
672
+ if (r == null) {
673
+ return null;
674
+ }
675
+ if (!r.externalObject) {
676
+ let e = IgxSectionHeaderComponent._createFromInternal(r);
677
+ if (e) {
678
+ e._implementation = r;
679
+ }
680
+ r.externalObject = e;
681
+ }
682
+ return r.externalObject;
683
+ }
684
+ set sectionHeader(v) {
685
+ if (v != null && this._stylingContainer && v._styling)
686
+ v._styling(this._stylingContainer, this, this);
687
+ v == null ? this.i.sectionHeader = null : this.i.sectionHeader = v.i;
688
+ }
689
+ /**
690
+ * Gets or sets the cell definition used for summary rows at the root level.
691
+ */
692
+ get summaryRowRoot() {
693
+ const r = this.i.summaryRowRoot;
694
+ if (r == null) {
695
+ return null;
696
+ }
697
+ if (!r.externalObject) {
698
+ let e = IgxSummaryRowRootComponent._createFromInternal(r);
699
+ if (e) {
700
+ e._implementation = r;
701
+ }
702
+ r.externalObject = e;
703
+ }
704
+ return r.externalObject;
705
+ }
706
+ set summaryRowRoot(v) {
707
+ if (v != null && this._stylingContainer && v._styling)
708
+ v._styling(this._stylingContainer, this, this);
709
+ v == null ? this.i.summaryRowRoot = null : this.i.summaryRowRoot = v.i;
710
+ }
711
+ /**
712
+ * Gets or sets the cell definition used for summary rows at the section level.
713
+ */
714
+ get summaryRowSection() {
715
+ const r = this.i.summaryRowSection;
716
+ if (r == null) {
717
+ return null;
718
+ }
719
+ if (!r.externalObject) {
720
+ let e = IgxSummaryRowSectionComponent._createFromInternal(r);
721
+ if (e) {
722
+ e._implementation = r;
723
+ }
724
+ r.externalObject = e;
725
+ }
726
+ return r.externalObject;
727
+ }
728
+ set summaryRowSection(v) {
729
+ if (v != null && this._stylingContainer && v._styling)
730
+ v._styling(this._stylingContainer, this, this);
731
+ v == null ? this.i.summaryRowSection = null : this.i.summaryRowSection = v.i;
732
+ }
733
+ /**
734
+ * Gets or sets the row seperator settings.
735
+ */
736
+ get rowSeparator() {
737
+ const r = this.i.rowSeparator;
738
+ if (r == null) {
739
+ return null;
740
+ }
741
+ if (!r.externalObject) {
742
+ let e = IgxRowSeparatorComponent._createFromInternal(r);
743
+ if (e) {
744
+ e._implementation = r;
745
+ }
746
+ r.externalObject = e;
747
+ }
748
+ return r.externalObject;
749
+ }
750
+ set rowSeparator(v) {
751
+ if (v != null && this._stylingContainer && v._styling)
752
+ v._styling(this._stylingContainer, this, this);
753
+ v == null ? this.i.rowSeparator = null : this.i.rowSeparator = v.i;
754
+ }
755
+ /**
756
+ * Gets or sets the header row seperator settings.
757
+ */
758
+ get headerRowSeparator() {
759
+ const r = this.i.headerRowSeparator;
760
+ if (r == null) {
761
+ return null;
762
+ }
763
+ if (!r.externalObject) {
764
+ let e = IgxHeaderRowSeparatorComponent._createFromInternal(r);
765
+ if (e) {
766
+ e._implementation = r;
767
+ }
768
+ r.externalObject = e;
769
+ }
770
+ return r.externalObject;
771
+ }
772
+ set headerRowSeparator(v) {
773
+ if (v != null && this._stylingContainer && v._styling)
774
+ v._styling(this._stylingContainer, this, this);
775
+ v == null ? this.i.headerRowSeparator = null : this.i.headerRowSeparator = v.i;
776
+ }
777
+ /**
778
+ * Gets or sets the header seperator settings.
779
+ */
780
+ get headerSeparator() {
781
+ const r = this.i.headerSeparator;
782
+ if (r == null) {
783
+ return null;
784
+ }
785
+ if (!r.externalObject) {
786
+ let e = IgxHeaderSeparatorComponent._createFromInternal(r);
787
+ if (e) {
788
+ e._implementation = r;
789
+ }
790
+ r.externalObject = e;
791
+ }
792
+ return r.externalObject;
793
+ }
794
+ set headerSeparator(v) {
795
+ if (v != null && this._stylingContainer && v._styling)
796
+ v._styling(this._stylingContainer, this, this);
797
+ v == null ? this.i.headerSeparator = null : this.i.headerSeparator = v.i;
798
+ }
799
+ /**
800
+ * Gets or sets the column resizing seperator settings.
801
+ */
802
+ get columnResizingSeparator() {
803
+ const r = this.i.columnResizingSeparator;
804
+ if (r == null) {
805
+ return null;
806
+ }
807
+ if (!r.externalObject) {
808
+ let e = IgxColumnResizingSeparatorComponent._createFromInternal(r);
809
+ if (e) {
810
+ e._implementation = r;
811
+ }
812
+ r.externalObject = e;
813
+ }
814
+ return r.externalObject;
815
+ }
816
+ set columnResizingSeparator(v) {
817
+ if (v != null && this._stylingContainer && v._styling)
818
+ v._styling(this._stylingContainer, this, this);
819
+ v == null ? this.i.columnResizingSeparator = null : this.i.columnResizingSeparator = v.i;
820
+ }
821
+ /**
822
+ * Gets or sets the column resizing seperator settings.
823
+ */
824
+ get columnMovingSeparator() {
825
+ const r = this.i.columnMovingSeparator;
826
+ if (r == null) {
827
+ return null;
828
+ }
829
+ if (!r.externalObject) {
830
+ let e = IgxColumnMovingSeparatorComponent._createFromInternal(r);
831
+ if (e) {
832
+ e._implementation = r;
833
+ }
834
+ r.externalObject = e;
835
+ }
836
+ return r.externalObject;
837
+ }
838
+ set columnMovingSeparator(v) {
839
+ if (v != null && this._stylingContainer && v._styling)
840
+ v._styling(this._stylingContainer, this, this);
841
+ v == null ? this.i.columnMovingSeparator = null : this.i.columnMovingSeparator = v.i;
842
+ }
843
+ /**
844
+ * Gets or sets the pinned area separator settings.
845
+ */
846
+ get pinnedAreaSeparator() {
847
+ const r = this.i.pinnedAreaSeparator;
848
+ if (r == null) {
849
+ return null;
850
+ }
851
+ if (!r.externalObject) {
852
+ let e = IgxPinnedAreaSeparatorComponent._createFromInternal(r);
853
+ if (e) {
854
+ e._implementation = r;
855
+ }
856
+ r.externalObject = e;
857
+ }
858
+ return r.externalObject;
859
+ }
860
+ set pinnedAreaSeparator(v) {
861
+ if (v != null && this._stylingContainer && v._styling)
862
+ v._styling(this._stylingContainer, this, this);
863
+ v == null ? this.i.pinnedAreaSeparator = null : this.i.pinnedAreaSeparator = v.i;
864
+ }
865
+ /**
866
+ * Gets or sets the desired properties the grid will automatically generate columns for.
867
+ */
868
+ get autoGenerateDesiredProperties() {
869
+ return this.i.autoGenerateDesiredProperties;
870
+ }
871
+ set autoGenerateDesiredProperties(v) {
872
+ if (v && !Array.isArray(v) && typeof (v) == "string") {
873
+ const re = /\s*(?:,|\s|$)\s*/gm;
874
+ v = v.split(re);
875
+ }
876
+ this.i.autoGenerateDesiredProperties = v;
877
+ }
878
+ /**
879
+ * Gets or sets the desired properties for the data source to load. If specified the data source may decide to constrain the properties it fetches to these properties and must make sure that at least those properties are loaded, rather than the default behavior for that data source.
880
+ */
881
+ get dataSourceDesiredProperties() {
882
+ return this.i.dataSourceDesiredProperties;
883
+ }
884
+ set dataSourceDesiredProperties(v) {
885
+ if (v && !Array.isArray(v) && typeof (v) == "string") {
886
+ const re = /\s*(?:,|\s|$)\s*/gm;
887
+ v = v.split(re);
888
+ }
889
+ this.i.dataSourceDesiredProperties = v;
890
+ }
891
+ /**
892
+ * Gets or sets the display density to use for the grid.
893
+ */
894
+ get density() {
895
+ return this.i.density;
896
+ }
897
+ set density(v) {
898
+ this.i.density = ensureEnum(ControlDisplayDensity_$type, v);
899
+ }
900
+ /**
901
+ * Gets the actual height for the rows in the grid.
902
+ */
903
+ get actualRowHeight() {
904
+ return this.i.actualRowHeight;
905
+ }
906
+ set actualRowHeight(v) {
907
+ this.i.actualRowHeight = +v;
908
+ }
909
+ /**
910
+ * Gets or sets the height to use for the rows in the grid. If not set the grid will
911
+ * use the default value for the set display density.
912
+ */
913
+ get rowHeight() {
914
+ return this.i.rowHeight;
915
+ }
916
+ set rowHeight(v) {
917
+ this.i.rowHeight = +v;
918
+ }
919
+ /**
920
+ * Gets or sets the default minimum width to use on all columns. Ignored if NaN.
921
+ */
922
+ get defaultColumnMinWidth() {
923
+ return this.i.defaultColumnMinWidth;
924
+ }
925
+ set defaultColumnMinWidth(v) {
926
+ this.i.defaultColumnMinWidth = +v;
927
+ }
928
+ /**
929
+ * Gets the height used for the header row.
930
+ */
931
+ get actualHeaderHeight() {
932
+ return this.i.actualHeaderHeight;
933
+ }
934
+ set actualHeaderHeight(v) {
935
+ this.i.actualHeaderHeight = +v;
936
+ }
937
+ /**
938
+ * Gets or sets the height to use for the header row.
939
+ */
940
+ get headerHeight() {
941
+ return this.i.headerHeight;
942
+ }
943
+ set headerHeight(v) {
944
+ this.i.headerHeight = +v;
945
+ }
946
+ /**
947
+ * Returns/sets the action to take when a column header is clicked.
948
+ */
949
+ get headerClickAction() {
950
+ return this.i.headerClickAction;
951
+ }
952
+ set headerClickAction(v) {
953
+ this.i.headerClickAction = ensureEnum(HeaderClickAction_$type, v);
954
+ }
955
+ /**
956
+ * Gets or sets the type of edit mode
957
+ */
958
+ get editMode() {
959
+ return this.i.editMode;
960
+ }
961
+ set editMode(v) {
962
+ this.i.editMode = ensureEnum(EditModeType_$type, v);
963
+ }
964
+ /**
965
+ * Gets or sets the type of click action required to enter edit mode.
966
+ */
967
+ get editModeClickAction() {
968
+ return this.i.editModeClickAction;
969
+ }
970
+ set editModeClickAction(v) {
971
+ this.i.editModeClickAction = ensureEnum(EditModeClickAction_$type, v);
972
+ }
973
+ /**
974
+ * Gets or sets whether edit mode will begin as soon as you start typing while a cell is active.
975
+ */
976
+ get editOnKeyPress() {
977
+ return this.i.editOnKeyPress;
978
+ }
979
+ set editOnKeyPress(v) {
980
+ this.i.editOnKeyPress = ensureBool(v);
981
+ }
982
+ /**
983
+ * Configures whether or not the grid will autogenerate columns when the data source is set.
984
+ */
985
+ get autoGenerateColumns() {
986
+ return this.i.autoGenerateColumns;
987
+ }
988
+ set autoGenerateColumns(v) {
989
+ this.i.autoGenerateColumns = ensureBool(v);
990
+ }
991
+ /**
992
+ * Sets or gets the height to use for the row separators.
993
+ */
994
+ get rowSeparatorHeight() {
995
+ return this.i.rowSeparatorHeight;
996
+ }
997
+ set rowSeparatorHeight(v) {
998
+ this.i.rowSeparatorHeight = +v;
999
+ }
1000
+ /**
1001
+ * Configures whether or not place holders are used for cells who do not have their data yet.
1002
+ */
1003
+ get isPlaceholderRenderingEnabled() {
1004
+ return this.i.isPlaceholderRenderingEnabled;
1005
+ }
1006
+ set isPlaceholderRenderingEnabled(v) {
1007
+ this.i.isPlaceholderRenderingEnabled = ensureBool(v);
1008
+ }
1009
+ /**
1010
+ * Sets or gets the Column Adding Animation mode to use.
1011
+ */
1012
+ get columnAddingAnimationMode() {
1013
+ return this.i.columnAddingAnimationMode;
1014
+ }
1015
+ set columnAddingAnimationMode(v) {
1016
+ this.i.columnAddingAnimationMode = ensureEnum(ColumnShowingAnimationMode_$type, v);
1017
+ }
1018
+ /**
1019
+ * Sets or gets the Column Property Updating Animation mode to use.
1020
+ */
1021
+ get columnPropertyUpdatingAnimationMode() {
1022
+ return this.i.columnPropertyUpdatingAnimationMode;
1023
+ }
1024
+ set columnPropertyUpdatingAnimationMode(v) {
1025
+ this.i.columnPropertyUpdatingAnimationMode = ensureEnum(ColumnPropertyUpdatingAnimationMode_$type, v);
1026
+ }
1027
+ /**
1028
+ * Sets or gets the cell data loaded animation mode to use.
1029
+ */
1030
+ get cellDataLoadedAnimationMode() {
1031
+ return this.i.cellDataLoadedAnimationMode;
1032
+ }
1033
+ set cellDataLoadedAnimationMode(v) {
1034
+ this.i.cellDataLoadedAnimationMode = ensureEnum(CellDataLoadedAnimationMode_$type, v);
1035
+ }
1036
+ /**
1037
+ * Sets or gets the row selection animation mode to use.
1038
+ */
1039
+ get rowSelectionAnimationMode() {
1040
+ return this.i.rowSelectionAnimationMode;
1041
+ }
1042
+ set rowSelectionAnimationMode(v) {
1043
+ this.i.rowSelectionAnimationMode = ensureEnum(RowSelectionAnimationMode_$type, v);
1044
+ }
1045
+ /**
1046
+ * Sets or gets the row hover animation mode to use.
1047
+ */
1048
+ get rowHoverAnimationMode() {
1049
+ return this.i.rowHoverAnimationMode;
1050
+ }
1051
+ set rowHoverAnimationMode(v) {
1052
+ this.i.rowHoverAnimationMode = ensureEnum(RowHoverAnimationMode_$type, v);
1053
+ }
1054
+ /**
1055
+ * Sets or gets the cell selection animation mode to use.
1056
+ */
1057
+ get cellSelectionAnimationMode() {
1058
+ return this.i.cellSelectionAnimationMode;
1059
+ }
1060
+ set cellSelectionAnimationMode(v) {
1061
+ this.i.cellSelectionAnimationMode = ensureEnum(CellSelectionAnimationMode_$type, v);
1062
+ }
1063
+ /**
1064
+ * Sets or gets the default animation settings for the grid.
1065
+ */
1066
+ get animationSettings() {
1067
+ const r = this.i.animationSettings;
1068
+ if (r == null) {
1069
+ return null;
1070
+ }
1071
+ if (!r.externalObject) {
1072
+ let e = new IgxGridAnimationSettings();
1073
+ if (r.$type) {
1074
+ e._implementation = r;
1075
+ }
1076
+ else {
1077
+ if (e.i.setNativeElement) {
1078
+ e.i.setNativeElement(r);
1079
+ }
1080
+ }
1081
+ r.externalObject = e;
1082
+ }
1083
+ return r.externalObject;
1084
+ }
1085
+ set animationSettings(v) {
1086
+ v == null ? this.i.animationSettings = null : this.i.animationSettings = v.i;
1087
+ }
1088
+ /**
1089
+ * Sets or gets the column resizing animation mode to use. Only applies when resizing in Deferred mode.
1090
+ */
1091
+ get columnResizingAnimationMode() {
1092
+ return this.i.columnResizingAnimationMode;
1093
+ }
1094
+ set columnResizingAnimationMode(v) {
1095
+ this.i.columnResizingAnimationMode = ensureEnum(ColumnResizingAnimationMode_$type, v);
1096
+ }
1097
+ /**
1098
+ * Sets or gets the column showing animation mode to use.
1099
+ */
1100
+ get columnShowingAnimationMode() {
1101
+ return this.i.columnShowingAnimationMode;
1102
+ }
1103
+ set columnShowingAnimationMode(v) {
1104
+ this.i.columnShowingAnimationMode = ensureEnum(ColumnShowingAnimationMode_$type, v);
1105
+ }
1106
+ /**
1107
+ * Sets or gets the column moving animation mode to use.
1108
+ */
1109
+ get columnMovingAnimationMode() {
1110
+ return this.i.columnMovingAnimationMode;
1111
+ }
1112
+ set columnMovingAnimationMode(v) {
1113
+ this.i.columnMovingAnimationMode = ensureEnum(ColumnMovingAnimationMode_$type, v);
1114
+ }
1115
+ /**
1116
+ * Sets or gets the column hiding animation mode to use.
1117
+ */
1118
+ get columnHidingAnimationMode() {
1119
+ return this.i.columnHidingAnimationMode;
1120
+ }
1121
+ set columnHidingAnimationMode(v) {
1122
+ this.i.columnHidingAnimationMode = ensureEnum(ColumnHidingAnimationMode_$type, v);
1123
+ }
1124
+ /**
1125
+ * Sets or gets the column exchanging animation mode to use.
1126
+ */
1127
+ get columnExchangingAnimationMode() {
1128
+ return this.i.columnExchangingAnimationMode;
1129
+ }
1130
+ set columnExchangingAnimationMode(v) {
1131
+ this.i.columnExchangingAnimationMode = ensureEnum(ColumnExchangingAnimationMode_$type, v);
1132
+ }
1133
+ /**
1134
+ * Sets or gets the grid selection mode.
1135
+ */
1136
+ get selectionMode() {
1137
+ return this.i.selectionMode;
1138
+ }
1139
+ set selectionMode(v) {
1140
+ this.i.selectionMode = ensureEnum(DataGridSelectionMode_$type, v);
1141
+ }
1142
+ /**
1143
+ * Sets or gets the grid selection mode.
1144
+ */
1145
+ get activationMode() {
1146
+ return this.i.activationMode;
1147
+ }
1148
+ set activationMode(v) {
1149
+ this.i.activationMode = ensureEnum(GridActivationMode_$type, v);
1150
+ }
1151
+ /**
1152
+ * Sets or gets how selection behaves in the grid.
1153
+ */
1154
+ get selectionBehavior() {
1155
+ return this.i.selectionBehavior;
1156
+ }
1157
+ set selectionBehavior(v) {
1158
+ this.i.selectionBehavior = ensureEnum(GridSelectionBehavior_$type, v);
1159
+ }
1160
+ /**
1161
+ * Gets or sets the ability to select rows or cells via mouse dragging. Currently only applies when SelectionMode is MultipleRow or RangeCell.
1162
+ */
1163
+ get mouseDragSelectionEnabled() {
1164
+ return this.i.mouseDragSelectionEnabled;
1165
+ }
1166
+ set mouseDragSelectionEnabled(v) {
1167
+ this.i.mouseDragSelectionEnabled = ensureBool(v);
1168
+ }
1169
+ /**
1170
+ * Gets which items are currently selected in the grid. Collection can be updated to programatically select items.
1171
+ */
1172
+ get selectedItems() {
1173
+ if (this._selectedItems === null) {
1174
+ let coll = new IgxGridSelectedItemsCollection();
1175
+ let innerColl = this.i.selectedItems;
1176
+ if (!innerColl) {
1177
+ innerColl = new GridSelectedItemsCollection_internal();
1178
+ }
1179
+ this._selectedItems = coll._fromInner(innerColl);
1180
+ }
1181
+ return this._selectedItems;
1182
+ }
1183
+ set selectedItems(v) {
1184
+ if (this._selectedItems !== null) {
1185
+ this._selectedItems._setSyncTarget(null);
1186
+ this._selectedItems = null;
1187
+ }
1188
+ let coll = new IgxGridSelectedItemsCollection();
1189
+ this._selectedItems = coll._fromOuter(v);
1190
+ let syncColl = new SyncableObservableCollection$1(Base.$type);
1191
+ let innerColl = this.i.selectedItems;
1192
+ if (!innerColl) {
1193
+ innerColl = new GridSelectedItemsCollection_internal();
1194
+ }
1195
+ syncColl._inner = innerColl;
1196
+ syncColl.clear();
1197
+ this._selectedItems._setSyncTarget(syncColl);
1198
+ }
1199
+ /**
1200
+ * Gets which primary key values are currently selected in the grid. Collection can be updated to programatically select items.
1201
+ */
1202
+ get selectedKeys() {
1203
+ if (this._selectedKeys === null) {
1204
+ let coll = new IgxGridSelectedKeysCollection();
1205
+ let innerColl = this.i.selectedKeys;
1206
+ if (!innerColl) {
1207
+ innerColl = new GridSelectedKeysCollection_internal();
1208
+ }
1209
+ this._selectedKeys = coll._fromInner(innerColl);
1210
+ }
1211
+ return this._selectedKeys;
1212
+ }
1213
+ set selectedKeys(v) {
1214
+ if (this._selectedKeys !== null) {
1215
+ this._selectedKeys._setSyncTarget(null);
1216
+ this._selectedKeys = null;
1217
+ }
1218
+ let coll = new IgxGridSelectedKeysCollection();
1219
+ this._selectedKeys = coll._fromOuter(v);
1220
+ let syncColl = new SyncableObservableCollection$1(PrimaryKeyValue.$type);
1221
+ let innerColl = this.i.selectedKeys;
1222
+ if (!innerColl) {
1223
+ innerColl = new GridSelectedKeysCollection_internal();
1224
+ }
1225
+ syncColl._inner = innerColl;
1226
+ syncColl.clear();
1227
+ this._selectedKeys._setSyncTarget(syncColl);
1228
+ }
1229
+ /**
1230
+ * Gets which cells are currently selected in the grid. Collection can be updated to programatically select cells.
1231
+ */
1232
+ get selectedCells() {
1233
+ if (this._selectedCells === null) {
1234
+ let coll = new IgxGridSelectedCellsCollection();
1235
+ let innerColl = this.i.selectedCells;
1236
+ if (!innerColl) {
1237
+ innerColl = new GridSelectedCellsCollection_internal();
1238
+ }
1239
+ this._selectedCells = coll._fromInner(innerColl);
1240
+ }
1241
+ return this._selectedCells;
1242
+ }
1243
+ set selectedCells(v) {
1244
+ if (this._selectedCells !== null) {
1245
+ this._selectedCells._setSyncTarget(null);
1246
+ this._selectedCells = null;
1247
+ }
1248
+ let coll = new IgxGridSelectedCellsCollection();
1249
+ this._selectedCells = coll._fromOuter(v);
1250
+ let syncColl = new SyncableObservableCollection$1(CellKey.$type);
1251
+ let innerColl = this.i.selectedCells;
1252
+ if (!innerColl) {
1253
+ innerColl = new GridSelectedCellsCollection_internal();
1254
+ }
1255
+ syncColl._inner = innerColl;
1256
+ syncColl.clear();
1257
+ this._selectedCells._setSyncTarget(syncColl);
1258
+ }
1259
+ /**
1260
+ * Gets which cell ranges are currently selected in the grid. Collection can be updated to programatically select cells.
1261
+ */
1262
+ get selectedCellRanges() {
1263
+ if (this._selectedCellRanges === null) {
1264
+ let coll = new IgxGridSelectedCellRangesCollection();
1265
+ let innerColl = this.i.selectedCellRanges;
1266
+ if (!innerColl) {
1267
+ innerColl = new GridSelectedCellRangesCollection_internal();
1268
+ }
1269
+ this._selectedCellRanges = coll._fromInner(innerColl);
1270
+ }
1271
+ return this._selectedCellRanges;
1272
+ }
1273
+ set selectedCellRanges(v) {
1274
+ if (this._selectedCellRanges !== null) {
1275
+ this._selectedCellRanges._setSyncTarget(null);
1276
+ this._selectedCellRanges = null;
1277
+ }
1278
+ let coll = new IgxGridSelectedCellRangesCollection();
1279
+ this._selectedCellRanges = coll._fromOuter(v);
1280
+ let syncColl = new SyncableObservableCollection$1(CellRange.$type);
1281
+ let innerColl = this.i.selectedCellRanges;
1282
+ if (!innerColl) {
1283
+ innerColl = new GridSelectedCellRangesCollection_internal();
1284
+ }
1285
+ syncColl._inner = innerColl;
1286
+ syncColl.clear();
1287
+ this._selectedCellRanges._setSyncTarget(syncColl);
1288
+ }
1289
+ /**
1290
+ * Gets which items are currently pinned in the grid. Collection can be updated to programatically pin items.
1291
+ */
1292
+ get pinnedItems() {
1293
+ if (this._pinnedItems === null) {
1294
+ let coll = new IgxGridSelectedItemsCollection();
1295
+ let innerColl = this.i.pinnedItems;
1296
+ if (!innerColl) {
1297
+ innerColl = new GridSelectedItemsCollection_internal();
1298
+ }
1299
+ this._pinnedItems = coll._fromInner(innerColl);
1300
+ }
1301
+ return this._pinnedItems;
1302
+ }
1303
+ set pinnedItems(v) {
1304
+ if (this._pinnedItems !== null) {
1305
+ this._pinnedItems._setSyncTarget(null);
1306
+ this._pinnedItems = null;
1307
+ }
1308
+ let coll = new IgxGridSelectedItemsCollection();
1309
+ this._pinnedItems = coll._fromOuter(v);
1310
+ let syncColl = new SyncableObservableCollection$1(Base.$type);
1311
+ let innerColl = this.i.pinnedItems;
1312
+ if (!innerColl) {
1313
+ innerColl = new GridSelectedItemsCollection_internal();
1314
+ }
1315
+ syncColl._inner = innerColl;
1316
+ syncColl.clear();
1317
+ this._pinnedItems._setSyncTarget(syncColl);
1318
+ }
1319
+ /**
1320
+ * Gets which primary keys are currently pinned in the grid. Collection can be updated to programatically pin items.
1321
+ */
1322
+ get pinnedKeys() {
1323
+ if (this._pinnedKeys === null) {
1324
+ let coll = new IgxGridSelectedKeysCollection();
1325
+ let innerColl = this.i.pinnedKeys;
1326
+ if (!innerColl) {
1327
+ innerColl = new GridSelectedKeysCollection_internal();
1328
+ }
1329
+ this._pinnedKeys = coll._fromInner(innerColl);
1330
+ }
1331
+ return this._pinnedKeys;
1332
+ }
1333
+ set pinnedKeys(v) {
1334
+ if (this._pinnedKeys !== null) {
1335
+ this._pinnedKeys._setSyncTarget(null);
1336
+ this._pinnedKeys = null;
1337
+ }
1338
+ let coll = new IgxGridSelectedKeysCollection();
1339
+ this._pinnedKeys = coll._fromOuter(v);
1340
+ let syncColl = new SyncableObservableCollection$1(PrimaryKeyValue.$type);
1341
+ let innerColl = this.i.pinnedKeys;
1342
+ if (!innerColl) {
1343
+ innerColl = new GridSelectedKeysCollection_internal();
1344
+ }
1345
+ syncColl._inner = innerColl;
1346
+ syncColl.clear();
1347
+ this._pinnedKeys._setSyncTarget(syncColl);
1348
+ }
1349
+ /**
1350
+ * Gets or sets whether to show the column options UI in the headers for columns.
1351
+ */
1352
+ get isColumnOptionsEnabled() {
1353
+ return this.i.isColumnOptionsEnabled;
1354
+ }
1355
+ set isColumnOptionsEnabled(v) {
1356
+ this.i.isColumnOptionsEnabled = ensureBool(v);
1357
+ }
1358
+ /**
1359
+ * Gets or sets if group rows will stick to the top of the grid.
1360
+ */
1361
+ get isGroupRowSticky() {
1362
+ return this.i.isGroupRowSticky;
1363
+ }
1364
+ set isGroupRowSticky(v) {
1365
+ this.i.isGroupRowSticky = ensureBool(v);
1366
+ }
1367
+ /**
1368
+ * Gets or sets if header separators are rendered.
1369
+ */
1370
+ get isHeaderSeparatorVisible() {
1371
+ return this.i.isHeaderSeparatorVisible;
1372
+ }
1373
+ set isHeaderSeparatorVisible(v) {
1374
+ this.i.isHeaderSeparatorVisible = ensureBool(v);
1375
+ }
1376
+ /**
1377
+ * Gets or sets the default background color to use for content cells when a row is in a selected state
1378
+ */
1379
+ get cellSelectedBackground() {
1380
+ return brushToString(this.i.cellSelectedBackground);
1381
+ }
1382
+ set cellSelectedBackground(v) {
1383
+ this.i.cellSelectedBackground = stringToBrush(v);
1384
+ }
1385
+ /**
1386
+ * Gets or sets the default background color to use for section header cells when a row is in a selected state
1387
+ */
1388
+ get sectionHeaderSelectedBackground() {
1389
+ return brushToString(this.i.sectionHeaderSelectedBackground);
1390
+ }
1391
+ set sectionHeaderSelectedBackground(v) {
1392
+ this.i.sectionHeaderSelectedBackground = stringToBrush(v);
1393
+ }
1394
+ /**
1395
+ * Gets or sets the default background color to use for summary cells at the root level.
1396
+ */
1397
+ get summaryRootBackground() {
1398
+ return brushToString(this.i.summaryRootBackground);
1399
+ }
1400
+ set summaryRootBackground(v) {
1401
+ this.i.summaryRootBackground = stringToBrush(v);
1402
+ }
1403
+ /**
1404
+ * Gets or sets the default background color to use for summary cells at the section level.
1405
+ */
1406
+ get summarySectionBackground() {
1407
+ return brushToString(this.i.summarySectionBackground);
1408
+ }
1409
+ set summarySectionBackground(v) {
1410
+ this.i.summarySectionBackground = stringToBrush(v);
1411
+ }
1412
+ /**
1413
+ * Gets or sets the default opacity to use for pinned rows
1414
+ */
1415
+ get pinnedRowOpacity() {
1416
+ return this.i.pinnedRowOpacity;
1417
+ }
1418
+ set pinnedRowOpacity(v) {
1419
+ this.i.pinnedRowOpacity = +v;
1420
+ }
1421
+ /**
1422
+ * Gets or sets the font to use for cells that have been edited.
1423
+ */
1424
+ get editTextStyle() {
1425
+ if (this.i.editTextStyle == null) {
1426
+ return null;
1427
+ }
1428
+ return this.i.editTextStyle.fontString;
1429
+ }
1430
+ set editTextStyle(v) {
1431
+ let fi = new FontInfo();
1432
+ fi.fontString = v;
1433
+ this.i.editTextStyle = fi;
1434
+ }
1435
+ /**
1436
+ * Gets or sets the default opacity for unsaved cell edits.
1437
+ */
1438
+ get editOpacity() {
1439
+ return this.i.editOpacity;
1440
+ }
1441
+ set editOpacity(v) {
1442
+ this.i.editOpacity = +v;
1443
+ }
1444
+ /**
1445
+ * Gets or sets the text color for unsaved deleted rows.
1446
+ */
1447
+ get deletedTextColor() {
1448
+ return brushToString(this.i.deletedTextColor);
1449
+ }
1450
+ set deletedTextColor(v) {
1451
+ this.i.deletedTextColor = stringToBrush(v);
1452
+ }
1453
+ /**
1454
+ * Gets or sets the default color to use for sticky rows
1455
+ */
1456
+ get stickyRowBackground() {
1457
+ return brushToString(this.i.stickyRowBackground);
1458
+ }
1459
+ set stickyRowBackground(v) {
1460
+ this.i.stickyRowBackground = stringToBrush(v);
1461
+ }
1462
+ /**
1463
+ * Gets or sets the default color to use for pinned rows
1464
+ */
1465
+ get pinnedRowBackground() {
1466
+ return brushToString(this.i.pinnedRowBackground);
1467
+ }
1468
+ set pinnedRowBackground(v) {
1469
+ this.i.pinnedRowBackground = stringToBrush(v);
1470
+ }
1471
+ /**
1472
+ * Gets or sets the default color to use for the last sticky row
1473
+ */
1474
+ get lastStickyRowBackground() {
1475
+ return brushToString(this.i.lastStickyRowBackground);
1476
+ }
1477
+ set lastStickyRowBackground(v) {
1478
+ this.i.lastStickyRowBackground = stringToBrush(v);
1479
+ }
1480
+ /**
1481
+ * Gets or sets the position of the active cell.
1482
+ */
1483
+ get activeCell() {
1484
+ const r = this.i.activeCell;
1485
+ if (r == null) {
1486
+ return null;
1487
+ }
1488
+ if (!r.externalObject) {
1489
+ let e = new IgxGridCellPosition();
1490
+ if (r.$type) {
1491
+ e._implementation = r;
1492
+ }
1493
+ else {
1494
+ if (e.i.setNativeElement) {
1495
+ e.i.setNativeElement(r);
1496
+ }
1497
+ }
1498
+ r.externalObject = e;
1499
+ }
1500
+ return r.externalObject;
1501
+ }
1502
+ set activeCell(v) {
1503
+ v == null ? this.i.activeCell = null : this.i.activeCell = v.i;
1504
+ }
1505
+ /**
1506
+ * Gets or sets the default background color to use for content cells
1507
+ */
1508
+ get cellBackground() {
1509
+ return brushToString(this.i.cellBackground);
1510
+ }
1511
+ set cellBackground(v) {
1512
+ this.i.cellBackground = stringToBrush(v);
1513
+ }
1514
+ /**
1515
+ * Gets or sets the default text color to use for content cells
1516
+ */
1517
+ get cellTextColor() {
1518
+ return brushToString(this.i.cellTextColor);
1519
+ }
1520
+ set cellTextColor(v) {
1521
+ this.i.cellTextColor = stringToBrush(v);
1522
+ }
1523
+ /**
1524
+ * Gets or sets the default text color to use for content cells
1525
+ */
1526
+ get headerSortIndicatorColor() {
1527
+ return brushToString(this.i.headerSortIndicatorColor);
1528
+ }
1529
+ set headerSortIndicatorColor(v) {
1530
+ this.i.headerSortIndicatorColor = stringToBrush(v);
1531
+ }
1532
+ /**
1533
+ * Gets or sets the default render style for sort indicators in header cells.
1534
+ */
1535
+ get headerSortIndicatorStyle() {
1536
+ return this.i.headerSortIndicatorStyle;
1537
+ }
1538
+ set headerSortIndicatorStyle(v) {
1539
+ this.i.headerSortIndicatorStyle = ensureEnum(SortIndicatorStyle_$type, v);
1540
+ }
1541
+ /**
1542
+ * Gets or sets the font to use for content cells
1543
+ */
1544
+ get cellTextStyle() {
1545
+ if (this.i.cellTextStyle == null) {
1546
+ return null;
1547
+ }
1548
+ return this.i.cellTextStyle.fontString;
1549
+ }
1550
+ set cellTextStyle(v) {
1551
+ let fi = new FontInfo();
1552
+ fi.fontString = v;
1553
+ this.i.cellTextStyle = fi;
1554
+ }
1555
+ /**
1556
+ * Gets or sets the default background color to use for section header cells
1557
+ */
1558
+ get sectionHeaderBackground() {
1559
+ return brushToString(this.i.sectionHeaderBackground);
1560
+ }
1561
+ set sectionHeaderBackground(v) {
1562
+ this.i.sectionHeaderBackground = stringToBrush(v);
1563
+ }
1564
+ /**
1565
+ * Gets or sets the default text color to use for section header cells
1566
+ */
1567
+ get sectionHeaderTextColor() {
1568
+ return brushToString(this.i.sectionHeaderTextColor);
1569
+ }
1570
+ set sectionHeaderTextColor(v) {
1571
+ this.i.sectionHeaderTextColor = stringToBrush(v);
1572
+ }
1573
+ /**
1574
+ * Gets or sets the font to use for section header cells
1575
+ */
1576
+ get sectionHeaderTextStyle() {
1577
+ if (this.i.sectionHeaderTextStyle == null) {
1578
+ return null;
1579
+ }
1580
+ return this.i.sectionHeaderTextStyle.fontString;
1581
+ }
1582
+ set sectionHeaderTextStyle(v) {
1583
+ let fi = new FontInfo();
1584
+ fi.fontString = v;
1585
+ this.i.sectionHeaderTextStyle = fi;
1586
+ }
1587
+ /**
1588
+ * Gets or sets the font to use for summary labels at the root level.
1589
+ */
1590
+ get summaryRootLabelTextStyle() {
1591
+ if (this.i.summaryRootLabelTextStyle == null) {
1592
+ return null;
1593
+ }
1594
+ return this.i.summaryRootLabelTextStyle.fontString;
1595
+ }
1596
+ set summaryRootLabelTextStyle(v) {
1597
+ let fi = new FontInfo();
1598
+ fi.fontString = v;
1599
+ this.i.summaryRootLabelTextStyle = fi;
1600
+ }
1601
+ /**
1602
+ * Gets or sets the font to use for summary labels at the section level.
1603
+ */
1604
+ get summarySectionLabelTextStyle() {
1605
+ if (this.i.summarySectionLabelTextStyle == null) {
1606
+ return null;
1607
+ }
1608
+ return this.i.summarySectionLabelTextStyle.fontString;
1609
+ }
1610
+ set summarySectionLabelTextStyle(v) {
1611
+ let fi = new FontInfo();
1612
+ fi.fontString = v;
1613
+ this.i.summarySectionLabelTextStyle = fi;
1614
+ }
1615
+ /**
1616
+ * Gets or sets the default text color to use for summary cells at the root level.
1617
+ */
1618
+ get summaryRootValueTextColor() {
1619
+ return brushToString(this.i.summaryRootValueTextColor);
1620
+ }
1621
+ set summaryRootValueTextColor(v) {
1622
+ this.i.summaryRootValueTextColor = stringToBrush(v);
1623
+ }
1624
+ /**
1625
+ * Gets or sets the font to use for summary values at the root level.
1626
+ */
1627
+ get summaryRootValueTextStyle() {
1628
+ if (this.i.summaryRootValueTextStyle == null) {
1629
+ return null;
1630
+ }
1631
+ return this.i.summaryRootValueTextStyle.fontString;
1632
+ }
1633
+ set summaryRootValueTextStyle(v) {
1634
+ let fi = new FontInfo();
1635
+ fi.fontString = v;
1636
+ this.i.summaryRootValueTextStyle = fi;
1637
+ }
1638
+ /**
1639
+ * Gets or sets the font to use for summary values at the section level.
1640
+ */
1641
+ get summarySectionValueTextStyle() {
1642
+ if (this.i.summarySectionValueTextStyle == null) {
1643
+ return null;
1644
+ }
1645
+ return this.i.summarySectionValueTextStyle.fontString;
1646
+ }
1647
+ set summarySectionValueTextStyle(v) {
1648
+ let fi = new FontInfo();
1649
+ fi.fontString = v;
1650
+ this.i.summarySectionValueTextStyle = fi;
1651
+ }
1652
+ /**
1653
+ * Gets or sets the default text color to use for summary cells at the section level.
1654
+ */
1655
+ get summarySectionValueTextColor() {
1656
+ return brushToString(this.i.summarySectionValueTextColor);
1657
+ }
1658
+ set summarySectionValueTextColor(v) {
1659
+ this.i.summarySectionValueTextColor = stringToBrush(v);
1660
+ }
1661
+ /**
1662
+ * Gets or sets the default text color to use for summary labels in summary cells at the root level.
1663
+ */
1664
+ get summaryRootLabelTextColor() {
1665
+ return brushToString(this.i.summaryRootLabelTextColor);
1666
+ }
1667
+ set summaryRootLabelTextColor(v) {
1668
+ this.i.summaryRootLabelTextColor = stringToBrush(v);
1669
+ }
1670
+ /**
1671
+ * Gets or sets the default text color to use for summary labels in summary cells at the section level.
1672
+ */
1673
+ get summarySectionLabelTextColor() {
1674
+ return brushToString(this.i.summarySectionLabelTextColor);
1675
+ }
1676
+ set summarySectionLabelTextColor(v) {
1677
+ this.i.summarySectionLabelTextColor = stringToBrush(v);
1678
+ }
1679
+ /**
1680
+ * Gets or sets the default background color to use for summary cells at the root level.
1681
+ */
1682
+ get summaryRootSelectedBackground() {
1683
+ return brushToString(this.i.summaryRootSelectedBackground);
1684
+ }
1685
+ set summaryRootSelectedBackground(v) {
1686
+ this.i.summaryRootSelectedBackground = stringToBrush(v);
1687
+ }
1688
+ /**
1689
+ * Gets or sets the default background color to use for summary cells at the section level.
1690
+ */
1691
+ get summarySectionSelectedBackground() {
1692
+ return brushToString(this.i.summarySectionSelectedBackground);
1693
+ }
1694
+ set summarySectionSelectedBackground(v) {
1695
+ this.i.summarySectionSelectedBackground = stringToBrush(v);
1696
+ }
1697
+ /**
1698
+ * Gets or sets the width of the pinned area separators.
1699
+ */
1700
+ get pinnedAreaSeparatorWidth() {
1701
+ return this.i.pinnedAreaSeparatorWidth;
1702
+ }
1703
+ set pinnedAreaSeparatorWidth(v) {
1704
+ this.i.pinnedAreaSeparatorWidth = +v;
1705
+ }
1706
+ /**
1707
+ * Gets or sets the width of the header separators.
1708
+ */
1709
+ get headerSeparatorWidth() {
1710
+ return this.i.headerSeparatorWidth;
1711
+ }
1712
+ set headerSeparatorWidth(v) {
1713
+ this.i.headerSeparatorWidth = +v;
1714
+ }
1715
+ /**
1716
+ * Gets or sets the default background color to use for header separators.
1717
+ */
1718
+ get headerSeparatorBackground() {
1719
+ return brushToString(this.i.headerSeparatorBackground);
1720
+ }
1721
+ set headerSeparatorBackground(v) {
1722
+ this.i.headerSeparatorBackground = stringToBrush(v);
1723
+ }
1724
+ /**
1725
+ * Gets or sets the default background color to use for header cells
1726
+ */
1727
+ get headerBackground() {
1728
+ return brushToString(this.i.headerBackground);
1729
+ }
1730
+ set headerBackground(v) {
1731
+ this.i.headerBackground = stringToBrush(v);
1732
+ }
1733
+ /**
1734
+ * Gets or sets the default text color to use for header cells
1735
+ */
1736
+ get headerTextColor() {
1737
+ return brushToString(this.i.headerTextColor);
1738
+ }
1739
+ set headerTextColor(v) {
1740
+ this.i.headerTextColor = stringToBrush(v);
1741
+ }
1742
+ /**
1743
+ * Gets or sets the font to use for header cells
1744
+ */
1745
+ get headerTextStyle() {
1746
+ if (this.i.headerTextStyle == null) {
1747
+ return null;
1748
+ }
1749
+ return this.i.headerTextStyle.fontString;
1750
+ }
1751
+ set headerTextStyle(v) {
1752
+ let fi = new FontInfo();
1753
+ fi.fontString = v;
1754
+ this.i.headerTextStyle = fi;
1755
+ }
1756
+ /**
1757
+ * Gets or sets the default background color to use for row separators
1758
+ */
1759
+ get rowSeparatorBackground() {
1760
+ return brushToString(this.i.rowSeparatorBackground);
1761
+ }
1762
+ set rowSeparatorBackground(v) {
1763
+ this.i.rowSeparatorBackground = stringToBrush(v);
1764
+ }
1765
+ get headerRowSeparatorBackground() {
1766
+ return brushToString(this.i.headerRowSeparatorBackground);
1767
+ }
1768
+ set headerRowSeparatorBackground(v) {
1769
+ this.i.headerRowSeparatorBackground = stringToBrush(v);
1770
+ }
1771
+ /**
1772
+ * Gets or sets the default sticky row background color to use for row separators
1773
+ */
1774
+ get rowSeparatorStickyRowBackground() {
1775
+ return brushToString(this.i.rowSeparatorStickyRowBackground);
1776
+ }
1777
+ set rowSeparatorStickyRowBackground(v) {
1778
+ this.i.rowSeparatorStickyRowBackground = stringToBrush(v);
1779
+ }
1780
+ /**
1781
+ * Gets or sets the default last sticky row background color to use for row separators
1782
+ */
1783
+ get rowSeparatorLastStickyRowBackground() {
1784
+ return brushToString(this.i.rowSeparatorLastStickyRowBackground);
1785
+ }
1786
+ set rowSeparatorLastStickyRowBackground(v) {
1787
+ this.i.rowSeparatorLastStickyRowBackground = stringToBrush(v);
1788
+ }
1789
+ /**
1790
+ * Gets or sets the pinned row background color to use for row separators
1791
+ */
1792
+ get rowSeparatorPinnedRowBackground() {
1793
+ return brushToString(this.i.rowSeparatorPinnedRowBackground);
1794
+ }
1795
+ set rowSeparatorPinnedRowBackground(v) {
1796
+ this.i.rowSeparatorPinnedRowBackground = stringToBrush(v);
1797
+ }
1798
+ /**
1799
+ * Sets or gets the width to use for the column resizing separator.
1800
+ */
1801
+ get columnResizingSeparatorWidth() {
1802
+ return this.i.columnResizingSeparatorWidth;
1803
+ }
1804
+ set columnResizingSeparatorWidth(v) {
1805
+ this.i.columnResizingSeparatorWidth = +v;
1806
+ }
1807
+ /**
1808
+ * Gets or sets the opacity of the column Resizing separator.
1809
+ */
1810
+ get columnResizingSeparatorOpacity() {
1811
+ return this.i.columnResizingSeparatorOpacity;
1812
+ }
1813
+ set columnResizingSeparatorOpacity(v) {
1814
+ this.i.columnResizingSeparatorOpacity = +v;
1815
+ }
1816
+ /**
1817
+ * Sets or gets the width to use for the column resizing separator.
1818
+ */
1819
+ get columnMovingSeparatorWidth() {
1820
+ return this.i.columnMovingSeparatorWidth;
1821
+ }
1822
+ set columnMovingSeparatorWidth(v) {
1823
+ this.i.columnMovingSeparatorWidth = +v;
1824
+ }
1825
+ /**
1826
+ * Gets or sets the opacity of the column moving separator.
1827
+ */
1828
+ get columnMovingSeparatorOpacity() {
1829
+ return this.i.columnMovingSeparatorOpacity;
1830
+ }
1831
+ set columnMovingSeparatorOpacity(v) {
1832
+ this.i.columnMovingSeparatorOpacity = +v;
1833
+ }
1834
+ /**
1835
+ * Gets or sets the default background color to use for column resizing separator.
1836
+ */
1837
+ get columnResizingSeparatorBackground() {
1838
+ return brushToString(this.i.columnResizingSeparatorBackground);
1839
+ }
1840
+ set columnResizingSeparatorBackground(v) {
1841
+ this.i.columnResizingSeparatorBackground = stringToBrush(v);
1842
+ }
1843
+ /**
1844
+ * Gets or sets the default background color to use for column moving separator.
1845
+ */
1846
+ get columnMovingSeparatorBackground() {
1847
+ return brushToString(this.i.columnMovingSeparatorBackground);
1848
+ }
1849
+ set columnMovingSeparatorBackground(v) {
1850
+ this.i.columnMovingSeparatorBackground = stringToBrush(v);
1851
+ }
1852
+ /**
1853
+ * Gets or sets if the section header content should be shifted into the normal column scrollable area when there are pinned columns
1854
+ */
1855
+ get shiftSectionContent() {
1856
+ return this.i.shiftSectionContent;
1857
+ }
1858
+ set shiftSectionContent(v) {
1859
+ this.i.shiftSectionContent = ensureBool(v);
1860
+ }
1861
+ /**
1862
+ * Gets or sets the column options icon alignment in header cells.
1863
+ */
1864
+ get columnOptionsIconAlignment() {
1865
+ return this.i.columnOptionsIconAlignment;
1866
+ }
1867
+ set columnOptionsIconAlignment(v) {
1868
+ this.i.columnOptionsIconAlignment = ensureEnum(ColumnOptionsIconAlignment_$type, v);
1869
+ }
1870
+ /**
1871
+ * Gets or sets the column options icon color in header cells.
1872
+ */
1873
+ get columnOptionsIconColor() {
1874
+ return brushToString(this.i.columnOptionsIconColor);
1875
+ }
1876
+ set columnOptionsIconColor(v) {
1877
+ this.i.columnOptionsIconColor = stringToBrush(v);
1878
+ }
1879
+ /**
1880
+ * Gets or sets how the column options icon will behave inside header cells.
1881
+ */
1882
+ get columnOptionsIconBehavior() {
1883
+ return this.i.columnOptionsIconBehavior;
1884
+ }
1885
+ set columnOptionsIconBehavior(v) {
1886
+ this.i.columnOptionsIconBehavior = ensureEnum(ColumnOptionsIconBehavior_$type, v);
1887
+ }
1888
+ /**
1889
+ * Gets or sets the border color around the grid.
1890
+ */
1891
+ get border() {
1892
+ return brushToString(this.i.border);
1893
+ }
1894
+ set border(v) {
1895
+ this.i.border = stringToBrush(v);
1896
+ }
1897
+ /**
1898
+ * Gets the actual border width.
1899
+ */
1900
+ get actualBorderWidth() {
1901
+ return this.i.actualBorderWidth;
1902
+ }
1903
+ set actualBorderWidth(v) {
1904
+ this.i.actualBorderWidth = v;
1905
+ }
1906
+ get borderWidthBottom() {
1907
+ return this.i.borderWidth ? this.i.borderWidth.bottom : NaN;
1908
+ }
1909
+ set borderWidthBottom(v) {
1910
+ this.ensureBorderWidth();
1911
+ this.i.borderWidth.bottom = +v;
1912
+ this.i.borderWidth = this.i.borderWidth;
1913
+ }
1914
+ get borderWidthLeft() {
1915
+ return this.i.borderWidth ? this.i.borderWidth.left : NaN;
1916
+ }
1917
+ set borderWidthLeft(v) {
1918
+ this.ensureBorderWidth();
1919
+ this.i.borderWidth.left = +v;
1920
+ this.i.borderWidth = this.i.borderWidth;
1921
+ }
1922
+ get borderWidthRight() {
1923
+ return this.i.borderWidth ? this.i.borderWidth.right : NaN;
1924
+ }
1925
+ set borderWidthRight(v) {
1926
+ this.ensureBorderWidth();
1927
+ this.i.borderWidth.right = +v;
1928
+ this.i.borderWidth = this.i.borderWidth;
1929
+ }
1930
+ get borderWidthTop() {
1931
+ return this.i.borderWidth ? this.i.borderWidth.top : NaN;
1932
+ }
1933
+ set borderWidthTop(v) {
1934
+ this.ensureBorderWidth();
1935
+ this.i.borderWidth.top = +v;
1936
+ this.i.borderWidth = this.i.borderWidth;
1937
+ }
1938
+ ensureBorderWidth() {
1939
+ if (this.i.borderWidth) {
1940
+ return;
1941
+ }
1942
+ this.i.borderWidth = new Thickness(2);
1943
+ }
1944
+ /**
1945
+ * Gets or sets if the grid should notify on programmatic selection changes as well as changes from the UI.
1946
+ */
1947
+ get notifyOnAllSelectionChanges() {
1948
+ return this.i.notifyOnAllSelectionChanges;
1949
+ }
1950
+ set notifyOnAllSelectionChanges(v) {
1951
+ this.i.notifyOnAllSelectionChanges = ensureBool(v);
1952
+ }
1953
+ get cornerRadiusBottomRight() {
1954
+ return this.i.cornerRadius ? this.i.cornerRadius.c : NaN;
1955
+ }
1956
+ set cornerRadiusBottomRight(v) {
1957
+ this.ensureCornerRadius();
1958
+ this.i.cornerRadius.c = +v;
1959
+ this.i.cornerRadius = this.i.cornerRadius;
1960
+ }
1961
+ get cornerRadiusBottomLeft() {
1962
+ return this.i.cornerRadius ? this.i.cornerRadius.b : NaN;
1963
+ }
1964
+ set cornerRadiusBottomLeft(v) {
1965
+ this.ensureCornerRadius();
1966
+ this.i.cornerRadius.b = +v;
1967
+ this.i.cornerRadius = this.i.cornerRadius;
1968
+ }
1969
+ get cornerRadiusTopLeft() {
1970
+ return this.i.cornerRadius ? this.i.cornerRadius.d : NaN;
1971
+ }
1972
+ set cornerRadiusTopLeft(v) {
1973
+ this.ensureCornerRadius();
1974
+ this.i.cornerRadius.d = +v;
1975
+ this.i.cornerRadius = this.i.cornerRadius;
1976
+ }
1977
+ get cornerRadiusTopRight() {
1978
+ return this.i.cornerRadius ? this.i.cornerRadius.e : NaN;
1979
+ }
1980
+ set cornerRadiusTopRight(v) {
1981
+ this.ensureCornerRadius();
1982
+ this.i.cornerRadius.e = +v;
1983
+ this.i.cornerRadius = this.i.cornerRadius;
1984
+ }
1985
+ ensureCornerRadius() {
1986
+ if (this.i.cornerRadius) {
1987
+ return;
1988
+ }
1989
+ this.i.cornerRadius = new CornerRadius(2);
1990
+ }
1991
+ get actualCornerRadiusBottomRight() {
1992
+ return this.i.actualCornerRadius ? this.i.actualCornerRadius.c : NaN;
1993
+ }
1994
+ set actualCornerRadiusBottomRight(v) {
1995
+ this.ensureActualCornerRadius();
1996
+ this.i.actualCornerRadius.c = +v;
1997
+ this.i.actualCornerRadius = this.i.actualCornerRadius;
1998
+ }
1999
+ get actualCornerRadiusBottomLeft() {
2000
+ return this.i.actualCornerRadius ? this.i.actualCornerRadius.b : NaN;
2001
+ }
2002
+ set actualCornerRadiusBottomLeft(v) {
2003
+ this.ensureActualCornerRadius();
2004
+ this.i.actualCornerRadius.b = +v;
2005
+ this.i.actualCornerRadius = this.i.actualCornerRadius;
2006
+ }
2007
+ get actualCornerRadiusTopLeft() {
2008
+ return this.i.actualCornerRadius ? this.i.actualCornerRadius.d : NaN;
2009
+ }
2010
+ set actualCornerRadiusTopLeft(v) {
2011
+ this.ensureActualCornerRadius();
2012
+ this.i.actualCornerRadius.d = +v;
2013
+ this.i.actualCornerRadius = this.i.actualCornerRadius;
2014
+ }
2015
+ get actualCornerRadiusTopRight() {
2016
+ return this.i.actualCornerRadius ? this.i.actualCornerRadius.e : NaN;
2017
+ }
2018
+ set actualCornerRadiusTopRight(v) {
2019
+ this.ensureActualCornerRadius();
2020
+ this.i.actualCornerRadius.e = +v;
2021
+ this.i.actualCornerRadius = this.i.actualCornerRadius;
2022
+ }
2023
+ ensureActualCornerRadius() {
2024
+ if (this.i.actualCornerRadius) {
2025
+ return;
2026
+ }
2027
+ this.i.actualCornerRadius = new CornerRadius(2);
2028
+ }
2029
+ /**
2030
+ * Gets or sets whether the active cell style will be applied to cells when made active.
2031
+ */
2032
+ get isActiveCellStyleEnabled() {
2033
+ return this.i.isActiveCellStyleEnabled;
2034
+ }
2035
+ set isActiveCellStyleEnabled(v) {
2036
+ this.i.isActiveCellStyleEnabled = ensureBool(v);
2037
+ }
2038
+ /**
2039
+ * A set of states that can be applied to the columns of the grid based on available space.
2040
+ */
2041
+ get responsiveStates() {
2042
+ if (this._responsiveStates === null) {
2043
+ let coll = new IgxResponsiveStatesCollection();
2044
+ let innerColl = this.i.responsiveStates;
2045
+ if (!innerColl) {
2046
+ innerColl = new ResponsiveStatesCollection_internal();
2047
+ }
2048
+ this._responsiveStates = coll._fromInner(innerColl);
2049
+ }
2050
+ return this._responsiveStates;
2051
+ }
2052
+ set responsiveStates(v) {
2053
+ if (this._responsiveStates !== null) {
2054
+ this._responsiveStates._setSyncTarget(null);
2055
+ this._responsiveStates = null;
2056
+ }
2057
+ let coll = new IgxResponsiveStatesCollection();
2058
+ this._responsiveStates = coll._fromOuter(v);
2059
+ let syncColl = new SyncableObservableCollection$1(ResponsiveState.$type);
2060
+ let innerColl = this.i.responsiveStates;
2061
+ if (!innerColl) {
2062
+ innerColl = new ResponsiveStatesCollection_internal();
2063
+ }
2064
+ syncColl._inner = innerColl;
2065
+ syncColl.clear();
2066
+ this._responsiveStates._setSyncTarget(syncColl);
2067
+ }
2068
+ /**
2069
+ * Gets the region of the grid that is visible.
2070
+ */
2071
+ get actualVisibleRegion() {
2072
+ return fromRect(this.i.actualVisibleRegion);
2073
+ }
2074
+ /**
2075
+ * Gets the current sort that is applied to the grid. Collection can be updated to modify the sort for the grid. Once sort descriptions are in this collection, the grid will no longer listen for changes on their properties.
2076
+ */
2077
+ get initialSortDescriptions() {
2078
+ const r = this.i.initialSortDescriptions;
2079
+ if (r == null) {
2080
+ return null;
2081
+ }
2082
+ if (!r.externalObject) {
2083
+ let e = new IgxColumnSortDescriptionCollection();
2084
+ if (r.$type) {
2085
+ e._implementation = r;
2086
+ }
2087
+ else {
2088
+ if (e.i.setNativeElement) {
2089
+ e.i.setNativeElement(r);
2090
+ }
2091
+ }
2092
+ r.externalObject = e;
2093
+ }
2094
+ return r.externalObject;
2095
+ }
2096
+ /**
2097
+ * Gets the current sort that is applied to the grid. Collection can be updated to modify the sort for the grid. Once sort descriptions are in this collection, the grid will no longer listen for changes on their properties.
2098
+ */
2099
+ get initialGroupDescriptions() {
2100
+ const r = this.i.initialGroupDescriptions;
2101
+ if (r == null) {
2102
+ return null;
2103
+ }
2104
+ if (!r.externalObject) {
2105
+ let e = new IgxColumnGroupDescriptionCollection();
2106
+ if (r.$type) {
2107
+ e._implementation = r;
2108
+ }
2109
+ else {
2110
+ if (e.i.setNativeElement) {
2111
+ e.i.setNativeElement(r);
2112
+ }
2113
+ }
2114
+ r.externalObject = e;
2115
+ }
2116
+ return r.externalObject;
2117
+ }
2118
+ /**
2119
+ * Gets the current summaries that are applied to the grid.
2120
+ */
2121
+ get initialSummaryDescriptions() {
2122
+ const r = this.i.initialSummaryDescriptions;
2123
+ if (r == null) {
2124
+ return null;
2125
+ }
2126
+ if (!r.externalObject) {
2127
+ let e = new IgxColumnSummaryDescriptionCollection();
2128
+ if (r.$type) {
2129
+ e._implementation = r;
2130
+ }
2131
+ else {
2132
+ if (e.i.setNativeElement) {
2133
+ e.i.setNativeElement(r);
2134
+ }
2135
+ }
2136
+ r.externalObject = e;
2137
+ }
2138
+ return r.externalObject;
2139
+ }
2140
+ get initialSorts() {
2141
+ return this.i.initialSorts;
2142
+ }
2143
+ set initialSorts(v) {
2144
+ this.i.initialSorts = v;
2145
+ }
2146
+ get initialGroups() {
2147
+ return this.i.initialGroups;
2148
+ }
2149
+ set initialGroups(v) {
2150
+ this.i.initialGroups = v;
2151
+ }
2152
+ get initialSummaries() {
2153
+ return this.i.initialSummaries;
2154
+ }
2155
+ set initialSummaries(v) {
2156
+ this.i.initialSummaries = v;
2157
+ }
2158
+ /**
2159
+ * Gets the current sort that is applied to the grid. Collection can be updated to modify the sort for the grid. Once sort descriptions are in this collection, the grid will no longer listen for changes on their properties.
2160
+ */
2161
+ get sortDescriptions() {
2162
+ const r = this.i.sortDescriptions;
2163
+ if (r == null) {
2164
+ return null;
2165
+ }
2166
+ if (!r.externalObject) {
2167
+ let e = new IgxColumnSortDescriptionCollection();
2168
+ if (r.$type) {
2169
+ e._implementation = r;
2170
+ }
2171
+ else {
2172
+ if (e.i.setNativeElement) {
2173
+ e.i.setNativeElement(r);
2174
+ }
2175
+ }
2176
+ r.externalObject = e;
2177
+ }
2178
+ return r.externalObject;
2179
+ }
2180
+ /**
2181
+ * Gets the current grouping that is applied to the grid. Collection can be updated to modify the grouping for the grid. Once grouping descriptions are in this collection, the grid will no longer listen for changes on their properties.
2182
+ */
2183
+ get groupDescriptions() {
2184
+ const r = this.i.groupDescriptions;
2185
+ if (r == null) {
2186
+ return null;
2187
+ }
2188
+ if (!r.externalObject) {
2189
+ let e = new IgxColumnGroupDescriptionCollection();
2190
+ if (r.$type) {
2191
+ e._implementation = r;
2192
+ }
2193
+ else {
2194
+ if (e.i.setNativeElement) {
2195
+ e.i.setNativeElement(r);
2196
+ }
2197
+ }
2198
+ r.externalObject = e;
2199
+ }
2200
+ return r.externalObject;
2201
+ }
2202
+ /**
2203
+ * Gets the current filter that is applied to the grid. Collection can be updated to modify the filter for the grid. Once filter expresisons are in this collection, the grid will no longer listen for changes on their properties.
2204
+ */
2205
+ get filterExpressions() {
2206
+ const r = this.i.filterExpressions;
2207
+ if (r == null) {
2208
+ return null;
2209
+ }
2210
+ if (!r.externalObject) {
2211
+ let e = new IgxFilterExpressionCollection();
2212
+ if (r.$type) {
2213
+ e._implementation = r;
2214
+ }
2215
+ else {
2216
+ if (e.i.setNativeElement) {
2217
+ e.i.setNativeElement(r);
2218
+ }
2219
+ }
2220
+ r.externalObject = e;
2221
+ }
2222
+ return r.externalObject;
2223
+ }
2224
+ /**
2225
+ * Gets the current summaries that are applied to the grid.
2226
+ */
2227
+ get summaryDescriptions() {
2228
+ const r = this.i.summaryDescriptions;
2229
+ if (r == null) {
2230
+ return null;
2231
+ }
2232
+ if (!r.externalObject) {
2233
+ let e = new IgxColumnSummaryDescriptionCollection();
2234
+ if (r.$type) {
2235
+ e._implementation = r;
2236
+ }
2237
+ else {
2238
+ if (e.i.setNativeElement) {
2239
+ e.i.setNativeElement(r);
2240
+ }
2241
+ }
2242
+ r.externalObject = e;
2243
+ }
2244
+ return r.externalObject;
2245
+ }
2246
+ /**
2247
+ * Gets or sets the scope which summaries are calculated for.
2248
+ */
2249
+ get summaryScope() {
2250
+ return this.i.summaryScope;
2251
+ }
2252
+ set summaryScope(v) {
2253
+ this.i.summaryScope = ensureEnum(SummaryScope_$type, v);
2254
+ }
2255
+ /**
2256
+ * Gets or sets whether group headers are collapsable.
2257
+ */
2258
+ get isGroupCollapsable() {
2259
+ return this.i.isGroupCollapsable;
2260
+ }
2261
+ set isGroupCollapsable(v) {
2262
+ this.i.isGroupCollapsable = ensureBool(v);
2263
+ }
2264
+ /**
2265
+ * Gets or sets how group headers are displayed when there are multiple groups defined in the grid.
2266
+ */
2267
+ get groupHeaderDisplayMode() {
2268
+ return this.i.groupHeaderDisplayMode;
2269
+ }
2270
+ set groupHeaderDisplayMode(v) {
2271
+ this.i.groupHeaderDisplayMode = ensureEnum(GroupHeaderDisplayMode_$type, v);
2272
+ }
2273
+ /**
2274
+ * Gets or sets whether groups are expanded or collapsed by default.
2275
+ */
2276
+ get isGroupExpandedDefault() {
2277
+ return this.i.isGroupExpandedDefault;
2278
+ }
2279
+ set isGroupExpandedDefault(v) {
2280
+ this.i.isGroupExpandedDefault = ensureBool(v);
2281
+ }
2282
+ /**
2283
+ * Gets or sets the display mode summaries will use inside groups.
2284
+ */
2285
+ get groupSummaryDisplayMode() {
2286
+ return this.i.groupSummaryDisplayMode;
2287
+ }
2288
+ set groupSummaryDisplayMode(v) {
2289
+ this.i.groupSummaryDisplayMode = ensureEnum(GroupSummaryDisplayMode_$type, v);
2290
+ }
2291
+ /**
2292
+ * Gets or sets whether to automatically accept edits or require explicit acceptance or rejections of edits
2293
+ * when handling the CellValueChanging or DataCommitting events.
2294
+ * When True, nothing is required on the part of the developer in order for edits to be accepted. In
2295
+ * order to validate and reject a user cell edit you must explicitly handle the CellValueChanging event
2296
+ * and call the RejectEdit method using the edit ID provided by the event. In order to reject a whole
2297
+ * commit you need to handle the DataComitting event and explicitly call the RejectCommit method using
2298
+ * the commit ID provided by the event.
2299
+ * When False, cell edits are not immediately accepted until you explicitly call the AcceptEdit method
2300
+ * using the edit ID provided by the CellValueChanging event. If you do not handle this event then edits
2301
+ * will be auto accepted.
2302
+ */
2303
+ get autoAcceptEdits() {
2304
+ return this.i.autoAcceptEdits;
2305
+ }
2306
+ set autoAcceptEdits(v) {
2307
+ this.i.autoAcceptEdits = ensureBool(v);
2308
+ }
2309
+ /**
2310
+ * Sets or gets the user provided primary key to assume for the data. Certain functionality of the grid requires a way to uniquely identify items in order to work correctly.
2311
+ * If a primary key cannot be inferred from the data source, you may need to provide one here.
2312
+ */
2313
+ get primaryKey() {
2314
+ return this.i.primaryKey;
2315
+ }
2316
+ set primaryKey(v) {
2317
+ if (v && !Array.isArray(v) && typeof (v) == "string") {
2318
+ const re = /\s*(?:,|\s|$)\s*/gm;
2319
+ v = v.split(re);
2320
+ }
2321
+ this.i.primaryKey = v;
2322
+ }
2323
+ /**
2324
+ * Gets either the inferred primary key from the data source, or the user provided primary key, if present. Represents the actual primary key that the grid will use in operations that require it.
2325
+ */
2326
+ get actualPrimaryKey() {
2327
+ return this.i.actualPrimaryKey;
2328
+ }
2329
+ set actualPrimaryKey(v) {
2330
+ if (v && !Array.isArray(v) && typeof (v) == "string") {
2331
+ const re = /\s*(?:,|\s|$)\s*/gm;
2332
+ v = v.split(re);
2333
+ }
2334
+ this.i.actualPrimaryKey = v;
2335
+ }
2336
+ get actualColumns() {
2337
+ if (this._actualColumns === null) {
2338
+ let coll = new IgxGridColumnCollection();
2339
+ let innerColl = this.i.actualColumns;
2340
+ if (!innerColl) {
2341
+ innerColl = new GridColumnCollection_internal();
2342
+ }
2343
+ this._actualColumns = coll._fromInner(innerColl);
2344
+ }
2345
+ return this._actualColumns;
2346
+ }
2347
+ set actualColumns(v) {
2348
+ if (this._actualColumns !== null) {
2349
+ this._actualColumns._setSyncTarget(null);
2350
+ this._actualColumns = null;
2351
+ }
2352
+ let coll = new IgxGridColumnCollection();
2353
+ this._actualColumns = coll._fromOuter(v);
2354
+ let syncColl = new SyncableObservableCollection$1(DataGridColumn.$type);
2355
+ let innerColl = this.i.actualColumns;
2356
+ if (!innerColl) {
2357
+ innerColl = new GridColumnCollection_internal();
2358
+ }
2359
+ syncColl._inner = innerColl;
2360
+ syncColl.clear();
2361
+ this._actualColumns._setSyncTarget(syncColl);
2362
+ }
2363
+ /**
2364
+ * Sets or gets whether the grid will react to sort changes.
2365
+ */
2366
+ get reactsToSortChanges() {
2367
+ return this.i.reactsToSortChanges;
2368
+ }
2369
+ set reactsToSortChanges(v) {
2370
+ this.i.reactsToSortChanges = ensureBool(v);
2371
+ }
2372
+ /**
2373
+ * Sets or gets whether the grid will react to group changes.
2374
+ */
2375
+ get reactsToGroupChanges() {
2376
+ return this.i.reactsToGroupChanges;
2377
+ }
2378
+ set reactsToGroupChanges(v) {
2379
+ this.i.reactsToGroupChanges = ensureBool(v);
2380
+ }
2381
+ /**
2382
+ * Sets or gets whether the grid will react to filter changes.
2383
+ */
2384
+ get reactsToFilterChanges() {
2385
+ return this.i.reactsToFilterChanges;
2386
+ }
2387
+ set reactsToFilterChanges(v) {
2388
+ this.i.reactsToFilterChanges = ensureBool(v);
2389
+ }
2390
+ /**
2391
+ * Gets whether an undo can be performed.
2392
+ */
2393
+ get canUndo() {
2394
+ return this.i.canUndo;
2395
+ }
2396
+ /**
2397
+ * Gets whether a redo can be performed.
2398
+ */
2399
+ get canRedo() {
2400
+ return this.i.canRedo;
2401
+ }
2402
+ /**
2403
+ * Gets whether a commit can be performed. False if there are any errors present
2404
+ * on any pending transactions.
2405
+ */
2406
+ get canCommit() {
2407
+ return this.i.canCommit;
2408
+ }
2409
+ /**
2410
+ * Gets or sets the behavior of the Enter key.
2411
+ */
2412
+ get enterBehavior() {
2413
+ return this.i.enterBehavior;
2414
+ }
2415
+ set enterBehavior(v) {
2416
+ this.i.enterBehavior = ensureEnum(EnterKeyBehaviors_$type, v);
2417
+ }
2418
+ /**
2419
+ * Gets or sets the behavior of the enter key when exiting edit mode.
2420
+ */
2421
+ get enterBehaviorAfterEdit() {
2422
+ return this.i.enterBehaviorAfterEdit;
2423
+ }
2424
+ set enterBehaviorAfterEdit(v) {
2425
+ this.i.enterBehaviorAfterEdit = ensureEnum(EnterKeyBehaviorAfterEdit_$type, v);
2426
+ }
2427
+ /**
2428
+ * Gets or sets whether to show the summaries option in the column options menu.
2429
+ */
2430
+ get isColumnOptionsSummariesEnabled() {
2431
+ return this.i.isColumnOptionsSummariesEnabled;
2432
+ }
2433
+ set isColumnOptionsSummariesEnabled(v) {
2434
+ this.i.isColumnOptionsSummariesEnabled = ensureBool(v);
2435
+ }
2436
+ /**
2437
+ * Gets or sets whether to show the grouping option in the column options menu.
2438
+ */
2439
+ get isColumnOptionsGroupingEnabled() {
2440
+ return this.i.isColumnOptionsGroupingEnabled;
2441
+ }
2442
+ set isColumnOptionsGroupingEnabled(v) {
2443
+ this.i.isColumnOptionsGroupingEnabled = ensureBool(v);
2444
+ }
2445
+ /**
2446
+ * Gets or sets if and how cell merging is performed for all fields.
2447
+ */
2448
+ get mergedCellMode() {
2449
+ return this.i.mergedCellMode;
2450
+ }
2451
+ set mergedCellMode(v) {
2452
+ this.i.mergedCellMode = ensureEnum(MergedCellMode_$type, v);
2453
+ }
2454
+ /**
2455
+ * Gets or sets how cells are evaluated for merging.
2456
+ */
2457
+ get mergedCellEvaluationCriteria() {
2458
+ return this.i.mergedCellEvaluationCriteria;
2459
+ }
2460
+ set mergedCellEvaluationCriteria(v) {
2461
+ this.i.mergedCellEvaluationCriteria = ensureEnum(MergedCellEvaluationCriteria_$type, v);
2462
+ }
2463
+ /**
2464
+ * Gets or sets the vertical alignment to use for the merged cell content.
2465
+ */
2466
+ get mergedCellVerticalAlignment() {
2467
+ return this.i.mergedCellVerticalAlignment;
2468
+ }
2469
+ set mergedCellVerticalAlignment(v) {
2470
+ this.i.mergedCellVerticalAlignment = ensureEnum(CellContentVerticalAlignment_$type, v);
2471
+ }
2472
+ /**
2473
+ * Gets or sets which filter UI type to use.
2474
+ */
2475
+ get filterUIType() {
2476
+ return this.i.filterUIType;
2477
+ }
2478
+ set filterUIType(v) {
2479
+ this.i.filterUIType = ensureEnum(FilterUIType_$type, v);
2480
+ }
2481
+ /**
2482
+ * Gets or sets how filters set through the filter UI are combined.
2483
+ */
2484
+ get filterLogicalOperator() {
2485
+ return this.i.filterLogicalOperator;
2486
+ }
2487
+ set filterLogicalOperator(v) {
2488
+ this.i.filterLogicalOperator = ensureEnum(FilterLogicalOperator_$type, v);
2489
+ }
2490
+ /**
2491
+ * Gets or sets whether UI filters are case sensitive or not.
2492
+ */
2493
+ get filterComparisonType() {
2494
+ return this.i.filterComparisonType;
2495
+ }
2496
+ set filterComparisonType(v) {
2497
+ this.i.filterComparisonType = ensureEnum(FilterComparisonType_$type, v);
2498
+ }
2499
+ get todayOverride() {
2500
+ return this.i.todayOverride;
2501
+ }
2502
+ set todayOverride(v) {
2503
+ this.i.todayOverride = v;
2504
+ }
2505
+ /**
2506
+ * Gets or sets whether selection is cleared when pressing the Escape key.
2507
+ */
2508
+ get clearSelectionOnEscape() {
2509
+ return this.i.clearSelectionOnEscape;
2510
+ }
2511
+ set clearSelectionOnEscape(v) {
2512
+ this.i.clearSelectionOnEscape = ensureBool(v);
2513
+ }
2514
+ /**
2515
+ * Gets or sets the size of each page when the pager is visible.
2516
+ */
2517
+ get pageSize() {
2518
+ return this.i.pageSize;
2519
+ }
2520
+ set pageSize(v) {
2521
+ this.i.pageSize = +v;
2522
+ }
2523
+ /**
2524
+ * Gets or sets whether to show the column chooser button in the toolbar.
2525
+ */
2526
+ get isToolbarColumnChooserVisible() {
2527
+ return this.i.isToolbarColumnChooserVisible;
2528
+ }
2529
+ set isToolbarColumnChooserVisible(v) {
2530
+ this.i.isToolbarColumnChooserVisible = ensureBool(v);
2531
+ }
2532
+ /**
2533
+ * Gets or sets whether to show the column pinning button in the toolbar.
2534
+ */
2535
+ get isToolbarColumnPinningVisible() {
2536
+ return this.i.isToolbarColumnPinningVisible;
2537
+ }
2538
+ set isToolbarColumnPinningVisible(v) {
2539
+ this.i.isToolbarColumnPinningVisible = ensureBool(v);
2540
+ }
2541
+ /**
2542
+ * Gets or sets the title text to use in the toolbar.
2543
+ */
2544
+ get toolbarTitle() {
2545
+ return this.i.toolbarTitle;
2546
+ }
2547
+ set toolbarTitle(v) {
2548
+ this.i.toolbarTitle = v;
2549
+ }
2550
+ /**
2551
+ * Gets or sets the column chooser button text to use in the toolbar.
2552
+ */
2553
+ get toolbarColumnChooserText() {
2554
+ return this.i.toolbarColumnChooserText;
2555
+ }
2556
+ set toolbarColumnChooserText(v) {
2557
+ this.i.toolbarColumnChooserText = v;
2558
+ }
2559
+ /**
2560
+ * Gets or sets the column chooser title text to use in the toolbar.
2561
+ */
2562
+ get toolbarColumnChooserTitle() {
2563
+ return this.i.toolbarColumnChooserTitle;
2564
+ }
2565
+ set toolbarColumnChooserTitle(v) {
2566
+ this.i.toolbarColumnChooserTitle = v;
2567
+ }
2568
+ /**
2569
+ * Gets or sets the column pinning button text to use in the toolbar.
2570
+ */
2571
+ get toolbarColumnPinningText() {
2572
+ return this.i.toolbarColumnPinningText;
2573
+ }
2574
+ set toolbarColumnPinningText(v) {
2575
+ this.i.toolbarColumnPinningText = v;
2576
+ }
2577
+ /**
2578
+ * Gets or sets the column pinning title text to use in the toolbar.
2579
+ */
2580
+ get toolbarColumnPinningTitle() {
2581
+ return this.i.toolbarColumnPinningTitle;
2582
+ }
2583
+ set toolbarColumnPinningTitle(v) {
2584
+ this.i.toolbarColumnPinningTitle = v;
2585
+ }
2586
+ /**
2587
+ * Gets or sets the style of scrollbar.
2588
+ */
2589
+ get scrollbarStyle() {
2590
+ return this.i.scrollbarStyle;
2591
+ }
2592
+ set scrollbarStyle(v) {
2593
+ this.i.scrollbarStyle = ensureEnum(ScrollbarStyle_$type, v);
2594
+ }
2595
+ /**
2596
+ * Gets or sets the scrollbar background color.
2597
+ */
2598
+ get scrollbarBackground() {
2599
+ return brushToString(this.i.scrollbarBackground);
2600
+ }
2601
+ set scrollbarBackground(v) {
2602
+ this.i.scrollbarBackground = stringToBrush(v);
2603
+ }
2604
+ get allowCopyOperation() {
2605
+ return this.i.allowCopyOperation;
2606
+ }
2607
+ set allowCopyOperation(v) {
2608
+ this.i.allowCopyOperation = ensureBool(v);
2609
+ }
2610
+ /**
2611
+ * Gets or sets whether to defer the SelectedItemsChanged and SelectedKeysChanged events till after the drag selection has completed.
2612
+ */
2613
+ get deferEventForRowDragSelection() {
2614
+ return this.i.deferEventForRowDragSelection;
2615
+ }
2616
+ set deferEventForRowDragSelection(v) {
2617
+ this.i.deferEventForRowDragSelection = ensureBool(v);
2618
+ }
2619
+ findByName(name) {
2620
+ if (this.findEphemera) {
2621
+ if (name && name.indexOf("@@e:") == 0) {
2622
+ return this.findEphemera(name);
2623
+ }
2624
+ }
2625
+ if (this.sectionHeader && this.sectionHeader.name && this.sectionHeader.name == name) {
2626
+ return this.sectionHeader;
2627
+ }
2628
+ if (this.summaryRowRoot && this.summaryRowRoot.name && this.summaryRowRoot.name == name) {
2629
+ return this.summaryRowRoot;
2630
+ }
2631
+ if (this.summaryRowSection && this.summaryRowSection.name && this.summaryRowSection.name == name) {
2632
+ return this.summaryRowSection;
2633
+ }
2634
+ if (this.rowSeparator && this.rowSeparator.name && this.rowSeparator.name == name) {
2635
+ return this.rowSeparator;
2636
+ }
2637
+ if (this.headerRowSeparator && this.headerRowSeparator.name && this.headerRowSeparator.name == name) {
2638
+ return this.headerRowSeparator;
2639
+ }
2640
+ if (this.headerSeparator && this.headerSeparator.name && this.headerSeparator.name == name) {
2641
+ return this.headerSeparator;
2642
+ }
2643
+ if (this.columnResizingSeparator && this.columnResizingSeparator.name && this.columnResizingSeparator.name == name) {
2644
+ return this.columnResizingSeparator;
2645
+ }
2646
+ if (this.columnMovingSeparator && this.columnMovingSeparator.name && this.columnMovingSeparator.name == name) {
2647
+ return this.columnMovingSeparator;
2648
+ }
2649
+ if (this.pinnedAreaSeparator && this.pinnedAreaSeparator.name && this.pinnedAreaSeparator.name == name) {
2650
+ return this.pinnedAreaSeparator;
2651
+ }
2652
+ if (this.animationSettings && this.animationSettings.name && this.animationSettings.name == name) {
2653
+ return this.animationSettings;
2654
+ }
2655
+ if (this.selectedKeys != null && this.selectedKeys.findByName && this.selectedKeys.findByName(name)) {
2656
+ return this.selectedKeys.findByName(name);
2657
+ }
2658
+ if (this.selectedCells != null && this.selectedCells.findByName && this.selectedCells.findByName(name)) {
2659
+ return this.selectedCells.findByName(name);
2660
+ }
2661
+ if (this.selectedCellRanges != null && this.selectedCellRanges.findByName && this.selectedCellRanges.findByName(name)) {
2662
+ return this.selectedCellRanges.findByName(name);
2663
+ }
2664
+ if (this.pinnedKeys != null && this.pinnedKeys.findByName && this.pinnedKeys.findByName(name)) {
2665
+ return this.pinnedKeys.findByName(name);
2666
+ }
2667
+ if (this.activeCell && this.activeCell.name && this.activeCell.name == name) {
2668
+ return this.activeCell;
2669
+ }
2670
+ if (this.responsiveStates != null && this.responsiveStates.findByName && this.responsiveStates.findByName(name)) {
2671
+ return this.responsiveStates.findByName(name);
2672
+ }
2673
+ if (this.initialSortDescriptions != null && this.initialSortDescriptions.findByName && this.initialSortDescriptions.findByName(name)) {
2674
+ return this.initialSortDescriptions.findByName(name);
2675
+ }
2676
+ if (this.initialGroupDescriptions != null && this.initialGroupDescriptions.findByName && this.initialGroupDescriptions.findByName(name)) {
2677
+ return this.initialGroupDescriptions.findByName(name);
2678
+ }
2679
+ if (this.initialSummaryDescriptions != null && this.initialSummaryDescriptions.findByName && this.initialSummaryDescriptions.findByName(name)) {
2680
+ return this.initialSummaryDescriptions.findByName(name);
2681
+ }
2682
+ if (this.sortDescriptions != null && this.sortDescriptions.findByName && this.sortDescriptions.findByName(name)) {
2683
+ return this.sortDescriptions.findByName(name);
2684
+ }
2685
+ if (this.groupDescriptions != null && this.groupDescriptions.findByName && this.groupDescriptions.findByName(name)) {
2686
+ return this.groupDescriptions.findByName(name);
2687
+ }
2688
+ if (this.filterExpressions != null && this.filterExpressions.findByName && this.filterExpressions.findByName(name)) {
2689
+ return this.filterExpressions.findByName(name);
2690
+ }
2691
+ if (this.summaryDescriptions != null && this.summaryDescriptions.findByName && this.summaryDescriptions.findByName(name)) {
2692
+ return this.summaryDescriptions.findByName(name);
2693
+ }
2694
+ if (this.actualColumns != null && this.actualColumns.findByName && this.actualColumns.findByName(name)) {
2695
+ return this.actualColumns.findByName(name);
2696
+ }
2697
+ if (this.columns != null && this.columns.findByName && this.columns.findByName(name)) {
2698
+ return this.columns.findByName(name);
2699
+ }
2700
+ return null;
2701
+ }
2702
+ get hasUserValues() {
2703
+ return this._hasUserValues;
2704
+ }
2705
+ __m(propertyName) {
2706
+ if (!this._inStyling) {
2707
+ this._hasUserValues.add(propertyName);
2708
+ }
2709
+ }
2710
+ _styling(container, component, parent) {
2711
+ if (this._inStyling) {
2712
+ return;
2713
+ }
2714
+ this._inStyling = true;
2715
+ this._stylingContainer = container;
2716
+ this._stylingParent = component;
2717
+ let genericPrefix = "";
2718
+ let typeName = this.i.$type.name;
2719
+ if (typeName.indexOf("Xam") === 0) {
2720
+ typeName = typeName.substring(3);
2721
+ }
2722
+ genericPrefix = toSpinal("DataGridComponent");
2723
+ let additionalPrefixes = [];
2724
+ let prefix = toSpinal(typeName);
2725
+ additionalPrefixes.push(prefix + "-");
2726
+ let b = this.i.$type.baseType;
2727
+ while (b && b.name != "Object" &&
2728
+ b.name != "Base" &&
2729
+ b.name != "Control" &&
2730
+ b.Name != "DependencyObject" &&
2731
+ b.Name != "FrameworkElement") {
2732
+ typeName = b.name;
2733
+ if (typeName.indexOf("Xam") === 0) {
2734
+ typeName = typeName.substring(3);
2735
+ }
2736
+ let basePrefix = toSpinal(typeName);
2737
+ additionalPrefixes.push(basePrefix + "-");
2738
+ b = b.baseType;
2739
+ }
2740
+ if (parent) {
2741
+ let parentTypeName = parent.i.$type.name;
2742
+ if (parentTypeName.indexOf("Xam") === 0) {
2743
+ parentTypeName = parentTypeName.substring(3);
2744
+ }
2745
+ let parentPrefix = toSpinal(parentTypeName);
2746
+ additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
2747
+ additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
2748
+ }
2749
+ initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
2750
+ if (this.sectionHeader && this.sectionHeader._styling) {
2751
+ this.sectionHeader._styling(container, component, this);
2752
+ }
2753
+ if (this.summaryRowRoot && this.summaryRowRoot._styling) {
2754
+ this.summaryRowRoot._styling(container, component, this);
2755
+ }
2756
+ if (this.summaryRowSection && this.summaryRowSection._styling) {
2757
+ this.summaryRowSection._styling(container, component, this);
2758
+ }
2759
+ if (this.rowSeparator && this.rowSeparator._styling) {
2760
+ this.rowSeparator._styling(container, component, this);
2761
+ }
2762
+ if (this.headerRowSeparator && this.headerRowSeparator._styling) {
2763
+ this.headerRowSeparator._styling(container, component, this);
2764
+ }
2765
+ if (this.headerSeparator && this.headerSeparator._styling) {
2766
+ this.headerSeparator._styling(container, component, this);
2767
+ }
2768
+ if (this.columnResizingSeparator && this.columnResizingSeparator._styling) {
2769
+ this.columnResizingSeparator._styling(container, component, this);
2770
+ }
2771
+ if (this.columnMovingSeparator && this.columnMovingSeparator._styling) {
2772
+ this.columnMovingSeparator._styling(container, component, this);
2773
+ }
2774
+ if (this.pinnedAreaSeparator && this.pinnedAreaSeparator._styling) {
2775
+ this.pinnedAreaSeparator._styling(container, component, this);
2776
+ }
2777
+ if (this._otherStyling) {
2778
+ this._otherStyling(container, component, parent);
2779
+ }
2780
+ this._inStyling = false;
2781
+ }
2782
+ /**
2783
+ * Forces a refresh of the grid content.
2784
+
2785
+ */
2786
+ refresh() {
2787
+ this.i.refresh();
2788
+ }
2789
+ /**
2790
+ * Makes sure pending work has completed if the grid need to be synchronously examined.
2791
+
2792
+ */
2793
+ flush() {
2794
+ this.i.flush();
2795
+ }
2796
+ notifyScrollStart() {
2797
+ this.i.notifyScrollStart();
2798
+ }
2799
+ notifyScrollStop() {
2800
+ this.i.notifyScrollStop();
2801
+ }
2802
+ exchangeColumn(newColumn, oldColumn) {
2803
+ this.i.exchangeColumn((newColumn == null ? null : newColumn.i), (oldColumn == null ? null : oldColumn.i));
2804
+ }
2805
+ pinColumn(column, position) {
2806
+ this.i.pinColumn((column == null ? null : column.i), (position == null ? null : position));
2807
+ }
2808
+ moveColumn(oldIndex, newIndex) {
2809
+ this.i.moveColumn(oldIndex, newIndex);
2810
+ }
2811
+ /**
2812
+ * Moves a column to the left, if possible.
2813
+
2814
+ * @param columnIndex * The index of the column to move.
2815
+ */
2816
+ moveColumnLeft(columnIndex) {
2817
+ this.i.moveColumnLeft(columnIndex);
2818
+ }
2819
+ /**
2820
+ * Moves a column to the right, if possible.
2821
+
2822
+ * @param columnIndex * The index of the column to move.
2823
+ */
2824
+ moveColumnRight(columnIndex) {
2825
+ this.i.moveColumnRight(columnIndex);
2826
+ }
2827
+ /**
2828
+ * Returns true if a column can be moved to the left of it's current position; otherwise false.
2829
+
2830
+ * @param columnIndex * The index of the column.
2831
+ */
2832
+ canMoveColumnLeft(columnIndex) {
2833
+ let iv = this.i.canMoveColumnLeft(columnIndex);
2834
+ return (iv);
2835
+ }
2836
+ /**
2837
+ * Returns true if a column can be moved to the right of it's current position; otherwise false.
2838
+
2839
+ * @param columnIndex * The index of the column.
2840
+ */
2841
+ canMoveColumnRight(columnIndex) {
2842
+ let iv = this.i.canMoveColumnRight(columnIndex);
2843
+ return (iv);
2844
+ }
2845
+ /**
2846
+ * Exports visual information about the current state of the grid.
2847
+
2848
+ */
2849
+ exportVisualModel() {
2850
+ let iv = this.i.exportVisualModel();
2851
+ return (iv);
2852
+ }
2853
+ /**
2854
+ * Returns a serialized copy of the exported visual model
2855
+
2856
+ */
2857
+ exportSerializedVisualModel() {
2858
+ let iv = this.i.exportSerializedVisualModel();
2859
+ return (iv);
2860
+ }
2861
+ /**
2862
+ * Scrolls the grid to given row, by index
2863
+
2864
+ * @param rowNumber * The row index to scroll to.
2865
+ */
2866
+ scrollToRowByIndex(rowNumber) {
2867
+ this.i.scrollToRowByIndex(rowNumber);
2868
+ }
2869
+ /**
2870
+ * Scrolls the grid so that a row is the last visible, by index.
2871
+
2872
+ * @param rowNumber * The row index to scroll to.
2873
+ */
2874
+ scrollToLastRowByIndex(rowNumber) {
2875
+ this.i.scrollToLastRowByIndex(rowNumber);
2876
+ }
2877
+ /**
2878
+ * Scrolls to an item, if found.
2879
+
2880
+ * @param item * The item to scroll to.
2881
+ */
2882
+ scrollToItem(item) {
2883
+ let iv = this.i.scrollToItem(item);
2884
+ return (iv);
2885
+ }
2886
+ scrollToPrimaryKey(key) {
2887
+ let iv = this.i.scrollToPrimaryKey(key);
2888
+ return (iv);
2889
+ }
2890
+ /**
2891
+ * Scrolls the grid to given column, by index
2892
+
2893
+ * @param columnNumber * The column number to scroll to.
2894
+ */
2895
+ scrollToColumnByIndex(columnNumber) {
2896
+ this.i.scrollToColumnByIndex(columnNumber);
2897
+ }
2898
+ /**
2899
+ * Gets the last visible index in the grid.
2900
+
2901
+ */
2902
+ getLastVisibleIndex() {
2903
+ let iv = this.i.getLastVisibleIndex();
2904
+ return (iv);
2905
+ }
2906
+ /**
2907
+ * Gets the first visible index in the grid.
2908
+
2909
+ */
2910
+ getFirstVisibleIndex() {
2911
+ let iv = this.i.getFirstVisibleIndex();
2912
+ return (iv);
2913
+ }
2914
+ /**
2915
+ * Invalidates the bound data for the rows currently visible.
2916
+
2917
+ */
2918
+ invalidateVisibleRows() {
2919
+ this.i.invalidateVisibleRows();
2920
+ }
2921
+ /**
2922
+ * Manually set the active responsive state of the grid.
2923
+
2924
+ * @param name
2925
+ */
2926
+ setActiveResponsiveState(name) {
2927
+ this.i.setActiveResponsiveState(name);
2928
+ }
2929
+ notifySetItem(index, oldItem, newItem) {
2930
+ this.i.notifySetItem(index, oldItem, newItem);
2931
+ }
2932
+ /**
2933
+ * Manually notifies the grid's data source that the data it has bound to has been cleared and needs to be re-examined.
2934
+ * This should not be called if the data that the grid is bound to is already observable.
2935
+
2936
+ */
2937
+ notifyClearItems() {
2938
+ this.i.notifyClearItems();
2939
+ }
2940
+ notifyInsertItem(index, newItem) {
2941
+ this.i.notifyInsertItem(index, newItem);
2942
+ }
2943
+ notifyRemoveItem(index, oldItem) {
2944
+ this.i.notifyRemoveItem(index, oldItem);
2945
+ }
2946
+ /**
2947
+ * Returns the data index of an item within the bound data source.
2948
+
2949
+ * @param item * The item from which to get the index.
2950
+ */
2951
+ dataIndexOfItem(item) {
2952
+ let iv = this.i.dataIndexOfItem(item);
2953
+ return (iv);
2954
+ }
2955
+ dataIndexOfPrimaryKey(key) {
2956
+ let iv = this.i.dataIndexOfPrimaryKey(key);
2957
+ return (iv);
2958
+ }
2959
+ /**
2960
+ * Resolves the value of a specific cell.
2961
+
2962
+ * @param cellKey * The cell to resolve.
2963
+ */
2964
+ resolveCellValue(cellKey) {
2965
+ let iv = this.i.resolveCellValue((cellKey == null ? null : cellKey.i));
2966
+ return (iv);
2967
+ }
2968
+ resolveCellValueFromPosition(row, column) {
2969
+ let iv = this.i.resolveCellValueFromPosition(row, column);
2970
+ return (iv);
2971
+ }
2972
+ /**
2973
+ * Gets the column that appears at the index specified. This is not the columns actual index in the
2974
+ * column's collection but the index for how it appears visually in the grid.
2975
+
2976
+ * @param index * The rendered index of the column.
2977
+ */
2978
+ getColumnAtRenderedIndex(index) {
2979
+ let iv = this.i.getColumnAtRenderedIndex(index);
2980
+ let ret = null;
2981
+ if (iv && iv.externalObject) {
2982
+ ret = iv.externalObject;
2983
+ }
2984
+ else {
2985
+ if (iv) {
2986
+ let e = IgxDataGridColumnComponent._createFromInternal(iv);
2987
+ e._implementation = iv;
2988
+ iv.externalObject = e;
2989
+ ret = e;
2990
+ }
2991
+ }
2992
+ return ret;
2993
+ }
2994
+ /**
2995
+ * Gets the summary results for root level.
2996
+
2997
+ */
2998
+ getRootSummaryResults() {
2999
+ let iv = this.i.getRootSummaryResults();
3000
+ return (iv);
3001
+ }
3002
+ /**
3003
+ * Gets the summary results for a specific section.
3004
+
3005
+ */
3006
+ getSectionSummaryResults(sectionIndex) {
3007
+ let iv = this.i.getSectionSummaryResults(sectionIndex);
3008
+ return (iv);
3009
+ }
3010
+ /**
3011
+ * Commits any edits that may exist in the datasource.
3012
+
3013
+ */
3014
+ commitEdits() {
3015
+ this.i.commitEdits();
3016
+ }
3017
+ /**
3018
+ * Cancels any edits that may exist in the datasource.
3019
+
3020
+ */
3021
+ cancelEdits() {
3022
+ this.i.cancelEdits();
3023
+ }
3024
+ /**
3025
+ * Accepts a specific commit to the datasource.
3026
+
3027
+ * @param commitID * The ID of the commit provided by the Committing event.
3028
+ */
3029
+ acceptCommit(commitID) {
3030
+ this.i.acceptCommit(commitID);
3031
+ }
3032
+ /**
3033
+ * Rejects a specific commit.
3034
+
3035
+ * @param commitID * The ID of the commit provided by the Committing event.
3036
+ */
3037
+ rejectCommit(commitID) {
3038
+ this.i.rejectCommit(commitID);
3039
+ }
3040
+ /**
3041
+ * Undo the last edit.
3042
+
3043
+ */
3044
+ undo() {
3045
+ this.i.undo();
3046
+ }
3047
+ /**
3048
+ * Redo the last edit.
3049
+
3050
+ */
3051
+ redo() {
3052
+ this.i.redo();
3053
+ }
3054
+ updatePropertyAtKey(key, propertyPath, value) {
3055
+ this.i.updatePropertyAtKey(key, propertyPath, value);
3056
+ }
3057
+ removeItemByKey(key) {
3058
+ this.i.removeItemByKey(key);
3059
+ }
3060
+ /**
3061
+ * Removes an item by its instance.
3062
+
3063
+ * @param item * The item instance to remove.
3064
+ */
3065
+ removeItem(item) {
3066
+ this.i.removeItem(item);
3067
+ }
3068
+ /**
3069
+ * Accept a pending edit turning it into a real edit.
3070
+
3071
+ * @param editID * The ID of the edit. Provided by the CellValueChanging event.
3072
+ */
3073
+ acceptEdit(editID) {
3074
+ this.i.acceptEdit(editID);
3075
+ }
3076
+ /**
3077
+ * Reject a pending edit.
3078
+
3079
+ * @param editID * The ID of the edit. Provided by the CellValueChanging event.
3080
+ */
3081
+ rejectEdit(editID) {
3082
+ this.i.rejectEdit(editID);
3083
+ }
3084
+ setEditError(editID, errorMessage) {
3085
+ this.i.setEditError(editID, errorMessage);
3086
+ }
3087
+ /**
3088
+ * Start edit mode on the active cell.
3089
+
3090
+ */
3091
+ startEditMode() {
3092
+ this.i.startEditMode();
3093
+ }
3094
+ endEditMode(commit) {
3095
+ this.i.endEditMode(commit);
3096
+ }
3097
+ /**
3098
+ * Selects all of the rows in the grid.
3099
+
3100
+ */
3101
+ selectAllRows() {
3102
+ this.i.selectAllRows();
3103
+ }
3104
+ /**
3105
+ * Deselects all currently selected rows.
3106
+
3107
+ */
3108
+ deselectAllRows() {
3109
+ this.i.deselectAllRows();
3110
+ }
3111
+ /**
3112
+ * Saves the layout chnages that have been made to the grid
3113
+
3114
+ */
3115
+ saveLayout() {
3116
+ let iv = this.i.saveLayout();
3117
+ return (iv);
3118
+ }
3119
+ /**
3120
+ * Loads the layout chnages that have been made to the grid
3121
+
3122
+ */
3123
+ loadLayout(json) {
3124
+ this.i.loadLayout(json);
3125
+ }
3126
+ get filterExpressionsChanging() {
3127
+ if (this._filterExpressionsChanging == null) {
3128
+ this._filterExpressionsChanging = new EventEmitter();
3129
+ this.i.filterExpressionsChanging = delegateCombine(this.i.filterExpressionsChanging, (o, e) => {
3130
+ let outerArgs = new IgxGridFilterExpressionsEventArgs();
3131
+ outerArgs._provideImplementation(e);
3132
+ if (this.beforeFilterExpressionsChanging) {
3133
+ this.beforeFilterExpressionsChanging(this, outerArgs);
3134
+ }
3135
+ this._filterExpressionsChanging.emit({
3136
+ sender: this,
3137
+ args: outerArgs
3138
+ });
3139
+ });
3140
+ }
3141
+ return this._filterExpressionsChanging;
3142
+ }
3143
+ get filterExpressionsChanged() {
3144
+ if (this._filterExpressionsChanged == null) {
3145
+ this._filterExpressionsChanged = new EventEmitter();
3146
+ this.i.filterExpressionsChanged = delegateCombine(this.i.filterExpressionsChanged, (o, e) => {
3147
+ let outerArgs = new IgxGridFilterExpressionsEventArgs();
3148
+ outerArgs._provideImplementation(e);
3149
+ if (this.beforeFilterExpressionsChanged) {
3150
+ this.beforeFilterExpressionsChanged(this, outerArgs);
3151
+ }
3152
+ this._filterExpressionsChanged.emit({
3153
+ sender: this,
3154
+ args: outerArgs
3155
+ });
3156
+ });
3157
+ }
3158
+ return this._filterExpressionsChanged;
3159
+ }
3160
+ /**
3161
+ * Previews that a pointer is down on a cell.
3162
+ */
3163
+ get cellPreviewPointerDown() {
3164
+ if (this._cellPreviewPointerDown == null) {
3165
+ this._cellPreviewPointerDown = new EventEmitter();
3166
+ this.i.cellPreviewPointerDown = delegateCombine(this.i.cellPreviewPointerDown, (o, e) => {
3167
+ let outerArgs = new IgxDataGridCellEventArgs();
3168
+ outerArgs._provideImplementation(e);
3169
+ if (this.beforeCellPreviewPointerDown) {
3170
+ this.beforeCellPreviewPointerDown(this, outerArgs);
3171
+ }
3172
+ this._cellPreviewPointerDown.emit({
3173
+ sender: this,
3174
+ args: outerArgs
3175
+ });
3176
+ });
3177
+ }
3178
+ return this._cellPreviewPointerDown;
3179
+ }
3180
+ /**
3181
+ * Previews that a pointer is up on a cell.
3182
+ */
3183
+ get cellPreviewPointerUp() {
3184
+ if (this._cellPreviewPointerUp == null) {
3185
+ this._cellPreviewPointerUp = new EventEmitter();
3186
+ this.i.cellPreviewPointerUp = delegateCombine(this.i.cellPreviewPointerUp, (o, e) => {
3187
+ let outerArgs = new IgxDataGridCellEventArgs();
3188
+ outerArgs._provideImplementation(e);
3189
+ if (this.beforeCellPreviewPointerUp) {
3190
+ this.beforeCellPreviewPointerUp(this, outerArgs);
3191
+ }
3192
+ this._cellPreviewPointerUp.emit({
3193
+ sender: this,
3194
+ args: outerArgs
3195
+ });
3196
+ });
3197
+ }
3198
+ return this._cellPreviewPointerUp;
3199
+ }
3200
+ /**
3201
+ * Indicates a pointer is down on a cell.
3202
+ */
3203
+ get cellPointerDown() {
3204
+ if (this._cellPointerDown == null) {
3205
+ this._cellPointerDown = new EventEmitter();
3206
+ this.i.cellPointerDown = delegateCombine(this.i.cellPointerDown, (o, e) => {
3207
+ let outerArgs = new IgxDataGridCellEventArgs();
3208
+ outerArgs._provideImplementation(e);
3209
+ if (this.beforeCellPointerDown) {
3210
+ this.beforeCellPointerDown(this, outerArgs);
3211
+ }
3212
+ this._cellPointerDown.emit({
3213
+ sender: this,
3214
+ args: outerArgs
3215
+ });
3216
+ });
3217
+ }
3218
+ return this._cellPointerDown;
3219
+ }
3220
+ /**
3221
+ * Indicates a pointer is up on a cell.
3222
+ */
3223
+ get cellPointerUp() {
3224
+ if (this._cellPointerUp == null) {
3225
+ this._cellPointerUp = new EventEmitter();
3226
+ this.i.cellPointerUp = delegateCombine(this.i.cellPointerUp, (o, e) => {
3227
+ let outerArgs = new IgxDataGridCellEventArgs();
3228
+ outerArgs._provideImplementation(e);
3229
+ if (this.beforeCellPointerUp) {
3230
+ this.beforeCellPointerUp(this, outerArgs);
3231
+ }
3232
+ this._cellPointerUp.emit({
3233
+ sender: this,
3234
+ args: outerArgs
3235
+ });
3236
+ });
3237
+ }
3238
+ return this._cellPointerUp;
3239
+ }
3240
+ /**
3241
+ * Called when a cell is clicked.
3242
+ */
3243
+ get cellClicked() {
3244
+ if (this._cellClicked == null) {
3245
+ this._cellClicked = new EventEmitter();
3246
+ this.i.cellClicked = delegateCombine(this.i.cellClicked, (o, e) => {
3247
+ let outerArgs = new IgxDataGridCellEventArgs();
3248
+ outerArgs._provideImplementation(e);
3249
+ if (this.beforeCellClicked) {
3250
+ this.beforeCellClicked(this, outerArgs);
3251
+ }
3252
+ this._cellClicked.emit({
3253
+ sender: this,
3254
+ args: outerArgs
3255
+ });
3256
+ });
3257
+ }
3258
+ return this._cellClicked;
3259
+ }
3260
+ /**
3261
+ * Called when sorting has changed.
3262
+ */
3263
+ get sortDescriptionsChanged() {
3264
+ if (this._sortDescriptionsChanged == null) {
3265
+ this._sortDescriptionsChanged = new EventEmitter();
3266
+ this.i.sortDescriptionsChanged = delegateCombine(this.i.sortDescriptionsChanged, (o, e) => {
3267
+ let outerArgs = new IgxGridSortDescriptionsChangedEventArgs();
3268
+ outerArgs._provideImplementation(e);
3269
+ if (this.beforeSortDescriptionsChanged) {
3270
+ this.beforeSortDescriptionsChanged(this, outerArgs);
3271
+ }
3272
+ this._sortDescriptionsChanged.emit({
3273
+ sender: this,
3274
+ args: outerArgs
3275
+ });
3276
+ });
3277
+ }
3278
+ return this._sortDescriptionsChanged;
3279
+ }
3280
+ /**
3281
+ * Called when grouping has changed.
3282
+ */
3283
+ get groupDescriptionsChanged() {
3284
+ if (this._groupDescriptionsChanged == null) {
3285
+ this._groupDescriptionsChanged = new EventEmitter();
3286
+ this.i.groupDescriptionsChanged = delegateCombine(this.i.groupDescriptionsChanged, (o, e) => {
3287
+ let outerArgs = new IgxGridGroupDescriptionsChangedEventArgs();
3288
+ outerArgs._provideImplementation(e);
3289
+ if (this.beforeGroupDescriptionsChanged) {
3290
+ this.beforeGroupDescriptionsChanged(this, outerArgs);
3291
+ }
3292
+ this._groupDescriptionsChanged.emit({
3293
+ sender: this,
3294
+ args: outerArgs
3295
+ });
3296
+ });
3297
+ }
3298
+ return this._groupDescriptionsChanged;
3299
+ }
3300
+ /**
3301
+ * Called when summaries have changed.
3302
+ */
3303
+ get summaryDescriptionsChanged() {
3304
+ if (this._summaryDescriptionsChanged == null) {
3305
+ this._summaryDescriptionsChanged = new EventEmitter();
3306
+ this.i.summaryDescriptionsChanged = delegateCombine(this.i.summaryDescriptionsChanged, (o, e) => {
3307
+ let outerArgs = new IgxGridSummaryDescriptionsChangedEventArgs();
3308
+ outerArgs._provideImplementation(e);
3309
+ if (this.beforeSummaryDescriptionsChanged) {
3310
+ this.beforeSummaryDescriptionsChanged(this, outerArgs);
3311
+ }
3312
+ this._summaryDescriptionsChanged.emit({
3313
+ sender: this,
3314
+ args: outerArgs
3315
+ });
3316
+ });
3317
+ }
3318
+ return this._summaryDescriptionsChanged;
3319
+ }
3320
+ /**
3321
+ * Called when a column is hidden or unhidden.
3322
+ */
3323
+ get columnHiddenChanged() {
3324
+ if (this._columnHiddenChanged == null) {
3325
+ this._columnHiddenChanged = new EventEmitter();
3326
+ this.i.columnHiddenChanged = delegateCombine(this.i.columnHiddenChanged, (o, e) => {
3327
+ let outerArgs = new IgxColumnHiddenChangedEventArgs();
3328
+ outerArgs._provideImplementation(e);
3329
+ if (this.beforeColumnHiddenChanged) {
3330
+ this.beforeColumnHiddenChanged(this, outerArgs);
3331
+ }
3332
+ this._columnHiddenChanged.emit({
3333
+ sender: this,
3334
+ args: outerArgs
3335
+ });
3336
+ });
3337
+ }
3338
+ return this._columnHiddenChanged;
3339
+ }
3340
+ /**
3341
+ * Called when a column is pinned or unpinned.
3342
+ */
3343
+ get columnPinnedChanged() {
3344
+ if (this._columnPinnedChanged == null) {
3345
+ this._columnPinnedChanged = new EventEmitter();
3346
+ this.i.columnPinnedChanged = delegateCombine(this.i.columnPinnedChanged, (o, e) => {
3347
+ let outerArgs = new IgxColumnPinnedChangedEventArgs();
3348
+ outerArgs._provideImplementation(e);
3349
+ if (this.beforeColumnPinnedChanged) {
3350
+ this.beforeColumnPinnedChanged(this, outerArgs);
3351
+ }
3352
+ this._columnPinnedChanged.emit({
3353
+ sender: this,
3354
+ args: outerArgs
3355
+ });
3356
+ });
3357
+ }
3358
+ return this._columnPinnedChanged;
3359
+ }
3360
+ /**
3361
+ * Called when a cell has been edited.
3362
+ */
3363
+ get cellValueChanging() {
3364
+ if (this._cellValueChanging == null) {
3365
+ this._cellValueChanging = new EventEmitter();
3366
+ this.i.cellValueChanging = delegateCombine(this.i.cellValueChanging, (o, e) => {
3367
+ let outerArgs = new IgxGridCellValueChangingEventArgs();
3368
+ outerArgs._provideImplementation(e);
3369
+ if (this.beforeCellValueChanging) {
3370
+ this.beforeCellValueChanging(this, outerArgs);
3371
+ }
3372
+ this._cellValueChanging.emit({
3373
+ sender: this,
3374
+ args: outerArgs
3375
+ });
3376
+ });
3377
+ }
3378
+ return this._cellValueChanging;
3379
+ }
3380
+ /**
3381
+ * Called when edits have been committed to the datasource.
3382
+ */
3383
+ get dataCommitted() {
3384
+ if (this._dataCommitted == null) {
3385
+ this._dataCommitted = new EventEmitter();
3386
+ this.i.dataCommitted = delegateCombine(this.i.dataCommitted, (o, e) => {
3387
+ let outerArgs = new IgxGridDataCommittedEventArgs();
3388
+ outerArgs._provideImplementation(e);
3389
+ if (this.beforeDataCommitted) {
3390
+ this.beforeDataCommitted(this, outerArgs);
3391
+ }
3392
+ this._dataCommitted.emit({
3393
+ sender: this,
3394
+ args: outerArgs
3395
+ });
3396
+ });
3397
+ }
3398
+ return this._dataCommitted;
3399
+ }
3400
+ /**
3401
+ * Called when edits are about to be committed to the datasource.
3402
+ */
3403
+ get dataCommitting() {
3404
+ if (this._dataCommitting == null) {
3405
+ this._dataCommitting = new EventEmitter();
3406
+ this.i.dataCommitting = delegateCombine(this.i.dataCommitting, (o, e) => {
3407
+ let outerArgs = new IgxGridDataCommittingEventArgs();
3408
+ outerArgs._provideImplementation(e);
3409
+ if (this.beforeDataCommitting) {
3410
+ this.beforeDataCommitting(this, outerArgs);
3411
+ }
3412
+ this._dataCommitting.emit({
3413
+ sender: this,
3414
+ args: outerArgs
3415
+ });
3416
+ });
3417
+ }
3418
+ return this._dataCommitting;
3419
+ }
3420
+ get rootSummariesChanged() {
3421
+ if (this._rootSummariesChanged == null) {
3422
+ this._rootSummariesChanged = new EventEmitter();
3423
+ this.i.rootSummariesChanged = delegateCombine(this.i.rootSummariesChanged, (o, e) => {
3424
+ this._runInZone(() => {
3425
+ let outerArgs = new IgxDataSourceRootSummariesChangedEventArgs();
3426
+ outerArgs._provideImplementation(e);
3427
+ if (this.beforeRootSummariesChanged) {
3428
+ this.beforeRootSummariesChanged(this, outerArgs);
3429
+ }
3430
+ this._rootSummariesChanged.emit({
3431
+ sender: this,
3432
+ args: outerArgs
3433
+ });
3434
+ });
3435
+ });
3436
+ }
3437
+ return this._rootSummariesChanged;
3438
+ }
3439
+ /**
3440
+ * Called when the grids size has changed.
3441
+ */
3442
+ get sizeChanged() {
3443
+ if (this._sizeChanged == null) {
3444
+ this._sizeChanged = new EventEmitter();
3445
+ this.i.sizeChanged = delegateCombine(this.i.sizeChanged, (o, e) => {
3446
+ this._runInZone(() => {
3447
+ let outerArgs = new IgxGridSizeChangedEventArgs();
3448
+ outerArgs._provideImplementation(e);
3449
+ if (this.beforeSizeChanged) {
3450
+ this.beforeSizeChanged(this, outerArgs);
3451
+ }
3452
+ this._sizeChanged.emit({
3453
+ sender: this,
3454
+ args: outerArgs
3455
+ });
3456
+ });
3457
+ });
3458
+ }
3459
+ return this._sizeChanged;
3460
+ }
3461
+ get actualColumnsChanged() {
3462
+ if (this._actualColumnsChanged == null) {
3463
+ this._actualColumnsChanged = new EventEmitter();
3464
+ this.i.actualColumnsChanged = delegateCombine(this.i.actualColumnsChanged, (o, e) => {
3465
+ let outerArgs = new IgxGridColumnsChangedEventArgs();
3466
+ outerArgs._provideImplementation(e);
3467
+ if (this.beforeActualColumnsChanged) {
3468
+ this.beforeActualColumnsChanged(this, outerArgs);
3469
+ }
3470
+ this._actualColumnsChanged.emit({
3471
+ sender: this,
3472
+ args: outerArgs
3473
+ });
3474
+ });
3475
+ }
3476
+ return this._actualColumnsChanged;
3477
+ }
3478
+ /**
3479
+ * Called when the columns are autogenerated.
3480
+ */
3481
+ get columnsAutoGenerated() {
3482
+ if (this._columnsAutoGenerated == null) {
3483
+ this._columnsAutoGenerated = new EventEmitter();
3484
+ this.i.columnsAutoGenerated = delegateCombine(this.i.columnsAutoGenerated, (o, e) => {
3485
+ let outerArgs = new IgxGridColumnsAutoGeneratedEventArgs();
3486
+ outerArgs._provideImplementation(e);
3487
+ if (this.beforeColumnsAutoGenerated) {
3488
+ this.beforeColumnsAutoGenerated(this, outerArgs);
3489
+ }
3490
+ this._columnsAutoGenerated.emit({
3491
+ sender: this,
3492
+ args: outerArgs
3493
+ });
3494
+ });
3495
+ }
3496
+ return this._columnsAutoGenerated;
3497
+ }
3498
+ /**
3499
+ * Called when the selected items change.
3500
+ */
3501
+ get selectedItemsChanged() {
3502
+ if (this._selectedItemsChanged == null) {
3503
+ this._selectedItemsChanged = new EventEmitter();
3504
+ this.i.selectedItemsChanged = delegateCombine(this.i.selectedItemsChanged, (o, e) => {
3505
+ let outerArgs = new IgxGridSelectedItemsChangedEventArgs();
3506
+ outerArgs._provideImplementation(e);
3507
+ if (this.beforeSelectedItemsChanged) {
3508
+ this.beforeSelectedItemsChanged(this, outerArgs);
3509
+ }
3510
+ this._selectedItemsChanged.emit({
3511
+ sender: this,
3512
+ args: outerArgs
3513
+ });
3514
+ });
3515
+ }
3516
+ return this._selectedItemsChanged;
3517
+ }
3518
+ /**
3519
+ * Called when the selected keys change.
3520
+ */
3521
+ get selectedKeysChanged() {
3522
+ if (this._selectedKeysChanged == null) {
3523
+ this._selectedKeysChanged = new EventEmitter();
3524
+ this.i.selectedKeysChanged = delegateCombine(this.i.selectedKeysChanged, (o, e) => {
3525
+ let outerArgs = new IgxGridSelectedKeysChangedEventArgs();
3526
+ outerArgs._provideImplementation(e);
3527
+ if (this.beforeSelectedKeysChanged) {
3528
+ this.beforeSelectedKeysChanged(this, outerArgs);
3529
+ }
3530
+ this._selectedKeysChanged.emit({
3531
+ sender: this,
3532
+ args: outerArgs
3533
+ });
3534
+ });
3535
+ }
3536
+ return this._selectedKeysChanged;
3537
+ }
3538
+ /**
3539
+ * Called when the selected cells change.
3540
+ */
3541
+ get selectedCellsChanged() {
3542
+ if (this._selectedCellsChanged == null) {
3543
+ this._selectedCellsChanged = new EventEmitter();
3544
+ this.i.selectedCellsChanged = delegateCombine(this.i.selectedCellsChanged, (o, e) => {
3545
+ let outerArgs = new IgxGridSelectedCellsChangedEventArgs();
3546
+ outerArgs._provideImplementation(e);
3547
+ if (this.beforeSelectedCellsChanged) {
3548
+ this.beforeSelectedCellsChanged(this, outerArgs);
3549
+ }
3550
+ this._selectedCellsChanged.emit({
3551
+ sender: this,
3552
+ args: outerArgs
3553
+ });
3554
+ });
3555
+ }
3556
+ return this._selectedCellsChanged;
3557
+ }
3558
+ /**
3559
+ * Called when an individual selection operation has been made.
3560
+ */
3561
+ get selectionChanged() {
3562
+ if (this._selectionChanged == null) {
3563
+ this._selectionChanged = new EventEmitter();
3564
+ this.i.selectionChanged = delegateCombine(this.i.selectionChanged, (o, e) => {
3565
+ let outerArgs = new IgxGridSelectionChangedEventArgs();
3566
+ outerArgs._provideImplementation(e);
3567
+ if (this.beforeSelectionChanged) {
3568
+ this.beforeSelectionChanged(this, outerArgs);
3569
+ }
3570
+ this._selectionChanged.emit({
3571
+ sender: this,
3572
+ args: outerArgs
3573
+ });
3574
+ });
3575
+ }
3576
+ return this._selectionChanged;
3577
+ }
3578
+ /**
3579
+ * Called when the active cell changes.
3580
+ */
3581
+ get activeCellChanged() {
3582
+ if (this._activeCellChanged == null) {
3583
+ this._activeCellChanged = new EventEmitter();
3584
+ this.i.activeCellChanged = delegateCombine(this.i.activeCellChanged, (o, e) => {
3585
+ let outerArgs = new IgxGridActiveCellChangedEventArgs();
3586
+ outerArgs._provideImplementation(e);
3587
+ if (this.beforeActiveCellChanged) {
3588
+ this.beforeActiveCellChanged(this, outerArgs);
3589
+ }
3590
+ this._activeCellChanged.emit({
3591
+ sender: this,
3592
+ args: outerArgs
3593
+ });
3594
+ });
3595
+ }
3596
+ return this._activeCellChanged;
3597
+ }
3598
+ /**
3599
+ * Called when the selected cell ranges changed.
3600
+ */
3601
+ get selectedCellRangesChanged() {
3602
+ if (this._selectedCellRangesChanged == null) {
3603
+ this._selectedCellRangesChanged = new EventEmitter();
3604
+ this.i.selectedCellRangesChanged = delegateCombine(this.i.selectedCellRangesChanged, (o, e) => {
3605
+ let outerArgs = new IgxGridSelectedCellRangesChangedEventArgs();
3606
+ outerArgs._provideImplementation(e);
3607
+ if (this.beforeSelectedCellRangesChanged) {
3608
+ this.beforeSelectedCellRangesChanged(this, outerArgs);
3609
+ }
3610
+ this._selectedCellRangesChanged.emit({
3611
+ sender: this,
3612
+ args: outerArgs
3613
+ });
3614
+ });
3615
+ }
3616
+ return this._selectedCellRangesChanged;
3617
+ }
3618
+ /**
3619
+ * Called when a column's Width property has changed.
3620
+ */
3621
+ get columnWidthChanged() {
3622
+ if (this._columnWidthChanged == null) {
3623
+ this._columnWidthChanged = new EventEmitter();
3624
+ this.i.columnWidthChanged = delegateCombine(this.i.columnWidthChanged, (o, e) => {
3625
+ let outerArgs = new IgxGridColumnWidthChangedEventArgs();
3626
+ outerArgs._provideImplementation(e);
3627
+ if (this.beforeColumnWidthChanged) {
3628
+ this.beforeColumnWidthChanged(this, outerArgs);
3629
+ }
3630
+ this._columnWidthChanged.emit({
3631
+ sender: this,
3632
+ args: outerArgs
3633
+ });
3634
+ });
3635
+ }
3636
+ return this._columnWidthChanged;
3637
+ }
3638
+ /**
3639
+ * Called when a cell has started editing.
3640
+ */
3641
+ get cellEditStarted() {
3642
+ if (this._cellEditStarted == null) {
3643
+ this._cellEditStarted = new EventEmitter();
3644
+ this.i.cellEditStarted = delegateCombine(this.i.cellEditStarted, (o, e) => {
3645
+ let outerArgs = new IgxGridCellEditStartedEventArgs();
3646
+ outerArgs._provideImplementation(e);
3647
+ if (this.beforeCellEditStarted) {
3648
+ this.beforeCellEditStarted(this, outerArgs);
3649
+ }
3650
+ this._cellEditStarted.emit({
3651
+ sender: this,
3652
+ args: outerArgs
3653
+ });
3654
+ });
3655
+ }
3656
+ return this._cellEditStarted;
3657
+ }
3658
+ /**
3659
+ * Called when a cell has finished editing.
3660
+ */
3661
+ get cellEditEnded() {
3662
+ if (this._cellEditEnded == null) {
3663
+ this._cellEditEnded = new EventEmitter();
3664
+ this.i.cellEditEnded = delegateCombine(this.i.cellEditEnded, (o, e) => {
3665
+ let outerArgs = new IgxGridCellEditEndedEventArgs();
3666
+ outerArgs._provideImplementation(e);
3667
+ if (this.beforeCellEditEnded) {
3668
+ this.beforeCellEditEnded(this, outerArgs);
3669
+ }
3670
+ this._cellEditEnded.emit({
3671
+ sender: this,
3672
+ args: outerArgs
3673
+ });
3674
+ });
3675
+ }
3676
+ return this._cellEditEnded;
3677
+ }
3678
+ /**
3679
+ * Called when a row has started editing.
3680
+ */
3681
+ get rowEditStarted() {
3682
+ if (this._rowEditStarted == null) {
3683
+ this._rowEditStarted = new EventEmitter();
3684
+ this.i.rowEditStarted = delegateCombine(this.i.rowEditStarted, (o, e) => {
3685
+ let outerArgs = new IgxGridRowEditStartedEventArgs();
3686
+ outerArgs._provideImplementation(e);
3687
+ if (this.beforeRowEditStarted) {
3688
+ this.beforeRowEditStarted(this, outerArgs);
3689
+ }
3690
+ this._rowEditStarted.emit({
3691
+ sender: this,
3692
+ args: outerArgs
3693
+ });
3694
+ });
3695
+ }
3696
+ return this._rowEditStarted;
3697
+ }
3698
+ /**
3699
+ * Called when a row has finished editing.
3700
+ */
3701
+ get rowEditEnded() {
3702
+ if (this._rowEditEnded == null) {
3703
+ this._rowEditEnded = new EventEmitter();
3704
+ this.i.rowEditEnded = delegateCombine(this.i.rowEditEnded, (o, e) => {
3705
+ let outerArgs = new IgxGridRowEditEndedEventArgs();
3706
+ outerArgs._provideImplementation(e);
3707
+ if (this.beforeRowEditEnded) {
3708
+ this.beforeRowEditEnded(this, outerArgs);
3709
+ }
3710
+ this._rowEditEnded.emit({
3711
+ sender: this,
3712
+ args: outerArgs
3713
+ });
3714
+ });
3715
+ }
3716
+ return this._rowEditEnded;
3717
+ }
3718
+ get customFilterRequested() {
3719
+ if (this._customFilterRequested == null) {
3720
+ this._customFilterRequested = new EventEmitter();
3721
+ this.i.customFilterRequested = delegateCombine(this.i.customFilterRequested, (o, e) => {
3722
+ let outerArgs = new IgxGridCustomFilterRequestedEventArgs();
3723
+ outerArgs._provideImplementation(e);
3724
+ if (this.beforeCustomFilterRequested) {
3725
+ this.beforeCustomFilterRequested(this, outerArgs);
3726
+ }
3727
+ this._customFilterRequested.emit({
3728
+ sender: this,
3729
+ args: outerArgs
3730
+ });
3731
+ });
3732
+ }
3733
+ return this._customFilterRequested;
3734
+ }
3735
+ get actualPrimaryKeyChange() {
3736
+ if (this._actualPrimaryKeyChange == null) {
3737
+ this._actualPrimaryKeyChange = new EventEmitter();
3738
+ this.i.propertyChanged = delegateCombine(this.i.propertyChanged, (o, e) => {
3739
+ this._runInZone(() => {
3740
+ let iv = e;
3741
+ let ext = this.actualPrimaryKey;
3742
+ if (this.beforeActualPrimaryKeyChange) {
3743
+ this.beforeActualPrimaryKeyChange(this, ext);
3744
+ }
3745
+ this._actualPrimaryKeyChange.emit(ext);
3746
+ });
3747
+ });
3748
+ }
3749
+ return this._actualPrimaryKeyChange;
3750
+ }
3751
+ _runInZone(act) {
3752
+ if (this._zoneRunner != null) {
3753
+ this._zoneRunner(act);
3754
+ }
3755
+ else {
3756
+ act();
3757
+ }
3758
+ }
3759
+ }
3760
+ IgxDataGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxDataGridComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.ComponentFactoryResolver }, { token: i0.ChangeDetectorRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3761
+ IgxDataGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxDataGridComponent, selector: "igx-data-grid", inputs: { height: "height", width: "width", dataSource: "dataSource", columnResizingMode: "columnResizingMode", columnMovingMode: "columnMovingMode", isRowHoverEnabled: "isRowHoverEnabled", rowHoverBackground: "rowHoverBackground", rowHoverTextColor: "rowHoverTextColor", editRowBorder: "editRowBorder", editRowBorderWidthBottom: "editRowBorderWidthBottom", editRowBorderWidthLeft: "editRowBorderWidthLeft", editRowBorderWidthRight: "editRowBorderWidthRight", editRowBorderWidthTop: "editRowBorderWidthTop", sectionHeader: "sectionHeader", summaryRowRoot: "summaryRowRoot", summaryRowSection: "summaryRowSection", rowSeparator: "rowSeparator", headerRowSeparator: "headerRowSeparator", headerSeparator: "headerSeparator", columnResizingSeparator: "columnResizingSeparator", columnMovingSeparator: "columnMovingSeparator", pinnedAreaSeparator: "pinnedAreaSeparator", autoGenerateDesiredProperties: "autoGenerateDesiredProperties", dataSourceDesiredProperties: "dataSourceDesiredProperties", density: "density", actualRowHeight: "actualRowHeight", rowHeight: "rowHeight", defaultColumnMinWidth: "defaultColumnMinWidth", actualHeaderHeight: "actualHeaderHeight", headerHeight: "headerHeight", headerClickAction: "headerClickAction", editMode: "editMode", editModeClickAction: "editModeClickAction", editOnKeyPress: "editOnKeyPress", autoGenerateColumns: "autoGenerateColumns", rowSeparatorHeight: "rowSeparatorHeight", isPlaceholderRenderingEnabled: "isPlaceholderRenderingEnabled", columnAddingAnimationMode: "columnAddingAnimationMode", columnPropertyUpdatingAnimationMode: "columnPropertyUpdatingAnimationMode", cellDataLoadedAnimationMode: "cellDataLoadedAnimationMode", rowSelectionAnimationMode: "rowSelectionAnimationMode", rowHoverAnimationMode: "rowHoverAnimationMode", cellSelectionAnimationMode: "cellSelectionAnimationMode", animationSettings: "animationSettings", columnResizingAnimationMode: "columnResizingAnimationMode", columnShowingAnimationMode: "columnShowingAnimationMode", columnMovingAnimationMode: "columnMovingAnimationMode", columnHidingAnimationMode: "columnHidingAnimationMode", columnExchangingAnimationMode: "columnExchangingAnimationMode", selectionMode: "selectionMode", activationMode: "activationMode", selectionBehavior: "selectionBehavior", mouseDragSelectionEnabled: "mouseDragSelectionEnabled", selectedItems: "selectedItems", selectedKeys: "selectedKeys", selectedCells: "selectedCells", selectedCellRanges: "selectedCellRanges", pinnedItems: "pinnedItems", pinnedKeys: "pinnedKeys", isColumnOptionsEnabled: "isColumnOptionsEnabled", isGroupRowSticky: "isGroupRowSticky", isHeaderSeparatorVisible: "isHeaderSeparatorVisible", cellSelectedBackground: "cellSelectedBackground", sectionHeaderSelectedBackground: "sectionHeaderSelectedBackground", summaryRootBackground: "summaryRootBackground", summarySectionBackground: "summarySectionBackground", pinnedRowOpacity: "pinnedRowOpacity", editTextStyle: "editTextStyle", editOpacity: "editOpacity", deletedTextColor: "deletedTextColor", stickyRowBackground: "stickyRowBackground", pinnedRowBackground: "pinnedRowBackground", lastStickyRowBackground: "lastStickyRowBackground", activeCell: "activeCell", cellBackground: "cellBackground", cellTextColor: "cellTextColor", headerSortIndicatorColor: "headerSortIndicatorColor", headerSortIndicatorStyle: "headerSortIndicatorStyle", cellTextStyle: "cellTextStyle", sectionHeaderBackground: "sectionHeaderBackground", sectionHeaderTextColor: "sectionHeaderTextColor", sectionHeaderTextStyle: "sectionHeaderTextStyle", summaryRootLabelTextStyle: "summaryRootLabelTextStyle", summarySectionLabelTextStyle: "summarySectionLabelTextStyle", summaryRootValueTextColor: "summaryRootValueTextColor", summaryRootValueTextStyle: "summaryRootValueTextStyle", summarySectionValueTextStyle: "summarySectionValueTextStyle", summarySectionValueTextColor: "summarySectionValueTextColor", summaryRootLabelTextColor: "summaryRootLabelTextColor", summarySectionLabelTextColor: "summarySectionLabelTextColor", summaryRootSelectedBackground: "summaryRootSelectedBackground", summarySectionSelectedBackground: "summarySectionSelectedBackground", pinnedAreaSeparatorWidth: "pinnedAreaSeparatorWidth", headerSeparatorWidth: "headerSeparatorWidth", headerSeparatorBackground: "headerSeparatorBackground", headerBackground: "headerBackground", headerTextColor: "headerTextColor", headerTextStyle: "headerTextStyle", rowSeparatorBackground: "rowSeparatorBackground", headerRowSeparatorBackground: "headerRowSeparatorBackground", rowSeparatorStickyRowBackground: "rowSeparatorStickyRowBackground", rowSeparatorLastStickyRowBackground: "rowSeparatorLastStickyRowBackground", rowSeparatorPinnedRowBackground: "rowSeparatorPinnedRowBackground", columnResizingSeparatorWidth: "columnResizingSeparatorWidth", columnResizingSeparatorOpacity: "columnResizingSeparatorOpacity", columnMovingSeparatorWidth: "columnMovingSeparatorWidth", columnMovingSeparatorOpacity: "columnMovingSeparatorOpacity", columnResizingSeparatorBackground: "columnResizingSeparatorBackground", columnMovingSeparatorBackground: "columnMovingSeparatorBackground", shiftSectionContent: "shiftSectionContent", columnOptionsIconAlignment: "columnOptionsIconAlignment", columnOptionsIconColor: "columnOptionsIconColor", columnOptionsIconBehavior: "columnOptionsIconBehavior", border: "border", actualBorderWidth: "actualBorderWidth", borderWidthBottom: "borderWidthBottom", borderWidthLeft: "borderWidthLeft", borderWidthRight: "borderWidthRight", borderWidthTop: "borderWidthTop", notifyOnAllSelectionChanges: "notifyOnAllSelectionChanges", cornerRadiusBottomRight: "cornerRadiusBottomRight", cornerRadiusBottomLeft: "cornerRadiusBottomLeft", cornerRadiusTopLeft: "cornerRadiusTopLeft", cornerRadiusTopRight: "cornerRadiusTopRight", actualCornerRadiusBottomRight: "actualCornerRadiusBottomRight", actualCornerRadiusBottomLeft: "actualCornerRadiusBottomLeft", actualCornerRadiusTopLeft: "actualCornerRadiusTopLeft", actualCornerRadiusTopRight: "actualCornerRadiusTopRight", isActiveCellStyleEnabled: "isActiveCellStyleEnabled", responsiveStates: "responsiveStates", initialSorts: "initialSorts", initialGroups: "initialGroups", initialSummaries: "initialSummaries", summaryScope: "summaryScope", isGroupCollapsable: "isGroupCollapsable", groupHeaderDisplayMode: "groupHeaderDisplayMode", isGroupExpandedDefault: "isGroupExpandedDefault", groupSummaryDisplayMode: "groupSummaryDisplayMode", autoAcceptEdits: "autoAcceptEdits", primaryKey: "primaryKey", actualPrimaryKey: "actualPrimaryKey", actualColumns: "actualColumns", reactsToSortChanges: "reactsToSortChanges", reactsToGroupChanges: "reactsToGroupChanges", reactsToFilterChanges: "reactsToFilterChanges", enterBehavior: "enterBehavior", enterBehaviorAfterEdit: "enterBehaviorAfterEdit", isColumnOptionsSummariesEnabled: "isColumnOptionsSummariesEnabled", isColumnOptionsGroupingEnabled: "isColumnOptionsGroupingEnabled", mergedCellMode: "mergedCellMode", mergedCellEvaluationCriteria: "mergedCellEvaluationCriteria", mergedCellVerticalAlignment: "mergedCellVerticalAlignment", filterUIType: "filterUIType", filterLogicalOperator: "filterLogicalOperator", filterComparisonType: "filterComparisonType", todayOverride: "todayOverride", clearSelectionOnEscape: "clearSelectionOnEscape", pageSize: "pageSize", isToolbarColumnChooserVisible: "isToolbarColumnChooserVisible", isToolbarColumnPinningVisible: "isToolbarColumnPinningVisible", toolbarTitle: "toolbarTitle", toolbarColumnChooserText: "toolbarColumnChooserText", toolbarColumnChooserTitle: "toolbarColumnChooserTitle", toolbarColumnPinningText: "toolbarColumnPinningText", toolbarColumnPinningTitle: "toolbarColumnPinningTitle", scrollbarStyle: "scrollbarStyle", scrollbarBackground: "scrollbarBackground", allowCopyOperation: "allowCopyOperation", deferEventForRowDragSelection: "deferEventForRowDragSelection" }, outputs: { filterExpressionsChanging: "filterExpressionsChanging", filterExpressionsChanged: "filterExpressionsChanged", cellPreviewPointerDown: "cellPreviewPointerDown", cellPreviewPointerUp: "cellPreviewPointerUp", cellPointerDown: "cellPointerDown", cellPointerUp: "cellPointerUp", cellClicked: "cellClicked", sortDescriptionsChanged: "sortDescriptionsChanged", groupDescriptionsChanged: "groupDescriptionsChanged", summaryDescriptionsChanged: "summaryDescriptionsChanged", columnHiddenChanged: "columnHiddenChanged", columnPinnedChanged: "columnPinnedChanged", cellValueChanging: "cellValueChanging", dataCommitted: "dataCommitted", dataCommitting: "dataCommitting", rootSummariesChanged: "rootSummariesChanged", sizeChanged: "sizeChanged", actualColumnsChanged: "actualColumnsChanged", columnsAutoGenerated: "columnsAutoGenerated", selectedItemsChanged: "selectedItemsChanged", selectedKeysChanged: "selectedKeysChanged", selectedCellsChanged: "selectedCellsChanged", selectionChanged: "selectionChanged", activeCellChanged: "activeCellChanged", selectedCellRangesChanged: "selectedCellRangesChanged", columnWidthChanged: "columnWidthChanged", cellEditStarted: "cellEditStarted", cellEditEnded: "cellEditEnded", rowEditStarted: "rowEditStarted", rowEditEnded: "rowEditEnded", customFilterRequested: "customFilterRequested", actualPrimaryKeyChange: "actualPrimaryKeyChange" }, host: { classAttribute: "ig-data-grid igx-data-grid" }, providers: [], queries: [{ propertyName: "contentColumns", predicate: IgxDataGridColumnComponent }], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: `
3762
+ <ng-container #dynamicContent></ng-container>
3763
+ `, isInline: true, styles: [":host {\n\t\tdisplay: block;\n box-sizing: border-box;\n overflow: hidden;\n\t}"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3764
+ return IgxDataGridComponent;
3765
+ })();
3766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxDataGridComponent, decorators: [{
3767
+ type: Component,
3768
+ args: [{
3769
+ selector: 'igx-data-grid',
3770
+ styles: [`:host {
3771
+ display: block;
3772
+ box-sizing: border-box;
3773
+ overflow: hidden;
3774
+ }`],
3775
+ template: `
3776
+ <ng-container #dynamicContent></ng-container>
3777
+ `,
3778
+ host: { 'class': 'ig-data-grid igx-data-grid' },
3779
+ providers: [],
3780
+ changeDetection: ChangeDetectionStrategy.OnPush
3781
+ }]
3782
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i0.ComponentFactoryResolver }, { type: i0.ChangeDetectorRef }, { type: i0.Injector }]; }, propDecorators: { contentColumns: [{
3783
+ type: ContentChildren,
3784
+ args: [IgxDataGridColumnComponent]
3785
+ }], _dynamicContent: [{
3786
+ type: ViewChild,
3787
+ args: ["dynamicContent", { read: ViewContainerRef, static: true }]
3788
+ }], height: [{
3789
+ type: Input
3790
+ }], width: [{
3791
+ type: Input
3792
+ }], dataSource: [{
3793
+ type: Input
3794
+ }], columnResizingMode: [{
3795
+ type: Input
3796
+ }], columnMovingMode: [{
3797
+ type: Input
3798
+ }], isRowHoverEnabled: [{
3799
+ type: Input
3800
+ }], rowHoverBackground: [{
3801
+ type: Input
3802
+ }], rowHoverTextColor: [{
3803
+ type: Input
3804
+ }], editRowBorder: [{
3805
+ type: Input
3806
+ }], editRowBorderWidthBottom: [{
3807
+ type: Input
3808
+ }], editRowBorderWidthLeft: [{
3809
+ type: Input
3810
+ }], editRowBorderWidthRight: [{
3811
+ type: Input
3812
+ }], editRowBorderWidthTop: [{
3813
+ type: Input
3814
+ }], sectionHeader: [{
3815
+ type: Input
3816
+ }], summaryRowRoot: [{
3817
+ type: Input
3818
+ }], summaryRowSection: [{
3819
+ type: Input
3820
+ }], rowSeparator: [{
3821
+ type: Input
3822
+ }], headerRowSeparator: [{
3823
+ type: Input
3824
+ }], headerSeparator: [{
3825
+ type: Input
3826
+ }], columnResizingSeparator: [{
3827
+ type: Input
3828
+ }], columnMovingSeparator: [{
3829
+ type: Input
3830
+ }], pinnedAreaSeparator: [{
3831
+ type: Input
3832
+ }], autoGenerateDesiredProperties: [{
3833
+ type: Input
3834
+ }], dataSourceDesiredProperties: [{
3835
+ type: Input
3836
+ }], density: [{
3837
+ type: Input
3838
+ }], actualRowHeight: [{
3839
+ type: Input
3840
+ }], rowHeight: [{
3841
+ type: Input
3842
+ }], defaultColumnMinWidth: [{
3843
+ type: Input
3844
+ }], actualHeaderHeight: [{
3845
+ type: Input
3846
+ }], headerHeight: [{
3847
+ type: Input
3848
+ }], headerClickAction: [{
3849
+ type: Input
3850
+ }], editMode: [{
3851
+ type: Input
3852
+ }], editModeClickAction: [{
3853
+ type: Input
3854
+ }], editOnKeyPress: [{
3855
+ type: Input
3856
+ }], autoGenerateColumns: [{
3857
+ type: Input
3858
+ }], rowSeparatorHeight: [{
3859
+ type: Input
3860
+ }], isPlaceholderRenderingEnabled: [{
3861
+ type: Input
3862
+ }], columnAddingAnimationMode: [{
3863
+ type: Input
3864
+ }], columnPropertyUpdatingAnimationMode: [{
3865
+ type: Input
3866
+ }], cellDataLoadedAnimationMode: [{
3867
+ type: Input
3868
+ }], rowSelectionAnimationMode: [{
3869
+ type: Input
3870
+ }], rowHoverAnimationMode: [{
3871
+ type: Input
3872
+ }], cellSelectionAnimationMode: [{
3873
+ type: Input
3874
+ }], animationSettings: [{
3875
+ type: Input
3876
+ }], columnResizingAnimationMode: [{
3877
+ type: Input
3878
+ }], columnShowingAnimationMode: [{
3879
+ type: Input
3880
+ }], columnMovingAnimationMode: [{
3881
+ type: Input
3882
+ }], columnHidingAnimationMode: [{
3883
+ type: Input
3884
+ }], columnExchangingAnimationMode: [{
3885
+ type: Input
3886
+ }], selectionMode: [{
3887
+ type: Input
3888
+ }], activationMode: [{
3889
+ type: Input
3890
+ }], selectionBehavior: [{
3891
+ type: Input
3892
+ }], mouseDragSelectionEnabled: [{
3893
+ type: Input
3894
+ }], selectedItems: [{
3895
+ type: Input
3896
+ }], selectedKeys: [{
3897
+ type: Input
3898
+ }], selectedCells: [{
3899
+ type: Input
3900
+ }], selectedCellRanges: [{
3901
+ type: Input
3902
+ }], pinnedItems: [{
3903
+ type: Input
3904
+ }], pinnedKeys: [{
3905
+ type: Input
3906
+ }], isColumnOptionsEnabled: [{
3907
+ type: Input
3908
+ }], isGroupRowSticky: [{
3909
+ type: Input
3910
+ }], isHeaderSeparatorVisible: [{
3911
+ type: Input
3912
+ }], cellSelectedBackground: [{
3913
+ type: Input
3914
+ }], sectionHeaderSelectedBackground: [{
3915
+ type: Input
3916
+ }], summaryRootBackground: [{
3917
+ type: Input
3918
+ }], summarySectionBackground: [{
3919
+ type: Input
3920
+ }], pinnedRowOpacity: [{
3921
+ type: Input
3922
+ }], editTextStyle: [{
3923
+ type: Input
3924
+ }], editOpacity: [{
3925
+ type: Input
3926
+ }], deletedTextColor: [{
3927
+ type: Input
3928
+ }], stickyRowBackground: [{
3929
+ type: Input
3930
+ }], pinnedRowBackground: [{
3931
+ type: Input
3932
+ }], lastStickyRowBackground: [{
3933
+ type: Input
3934
+ }], activeCell: [{
3935
+ type: Input
3936
+ }], cellBackground: [{
3937
+ type: Input
3938
+ }], cellTextColor: [{
3939
+ type: Input
3940
+ }], headerSortIndicatorColor: [{
3941
+ type: Input
3942
+ }], headerSortIndicatorStyle: [{
3943
+ type: Input
3944
+ }], cellTextStyle: [{
3945
+ type: Input
3946
+ }], sectionHeaderBackground: [{
3947
+ type: Input
3948
+ }], sectionHeaderTextColor: [{
3949
+ type: Input
3950
+ }], sectionHeaderTextStyle: [{
3951
+ type: Input
3952
+ }], summaryRootLabelTextStyle: [{
3953
+ type: Input
3954
+ }], summarySectionLabelTextStyle: [{
3955
+ type: Input
3956
+ }], summaryRootValueTextColor: [{
3957
+ type: Input
3958
+ }], summaryRootValueTextStyle: [{
3959
+ type: Input
3960
+ }], summarySectionValueTextStyle: [{
3961
+ type: Input
3962
+ }], summarySectionValueTextColor: [{
3963
+ type: Input
3964
+ }], summaryRootLabelTextColor: [{
3965
+ type: Input
3966
+ }], summarySectionLabelTextColor: [{
3967
+ type: Input
3968
+ }], summaryRootSelectedBackground: [{
3969
+ type: Input
3970
+ }], summarySectionSelectedBackground: [{
3971
+ type: Input
3972
+ }], pinnedAreaSeparatorWidth: [{
3973
+ type: Input
3974
+ }], headerSeparatorWidth: [{
3975
+ type: Input
3976
+ }], headerSeparatorBackground: [{
3977
+ type: Input
3978
+ }], headerBackground: [{
3979
+ type: Input
3980
+ }], headerTextColor: [{
3981
+ type: Input
3982
+ }], headerTextStyle: [{
3983
+ type: Input
3984
+ }], rowSeparatorBackground: [{
3985
+ type: Input
3986
+ }], headerRowSeparatorBackground: [{
3987
+ type: Input
3988
+ }], rowSeparatorStickyRowBackground: [{
3989
+ type: Input
3990
+ }], rowSeparatorLastStickyRowBackground: [{
3991
+ type: Input
3992
+ }], rowSeparatorPinnedRowBackground: [{
3993
+ type: Input
3994
+ }], columnResizingSeparatorWidth: [{
3995
+ type: Input
3996
+ }], columnResizingSeparatorOpacity: [{
3997
+ type: Input
3998
+ }], columnMovingSeparatorWidth: [{
3999
+ type: Input
4000
+ }], columnMovingSeparatorOpacity: [{
4001
+ type: Input
4002
+ }], columnResizingSeparatorBackground: [{
4003
+ type: Input
4004
+ }], columnMovingSeparatorBackground: [{
4005
+ type: Input
4006
+ }], shiftSectionContent: [{
4007
+ type: Input
4008
+ }], columnOptionsIconAlignment: [{
4009
+ type: Input
4010
+ }], columnOptionsIconColor: [{
4011
+ type: Input
4012
+ }], columnOptionsIconBehavior: [{
4013
+ type: Input
4014
+ }], border: [{
4015
+ type: Input
4016
+ }], actualBorderWidth: [{
4017
+ type: Input
4018
+ }], borderWidthBottom: [{
4019
+ type: Input
4020
+ }], borderWidthLeft: [{
4021
+ type: Input
4022
+ }], borderWidthRight: [{
4023
+ type: Input
4024
+ }], borderWidthTop: [{
4025
+ type: Input
4026
+ }], notifyOnAllSelectionChanges: [{
4027
+ type: Input
4028
+ }], cornerRadiusBottomRight: [{
4029
+ type: Input
4030
+ }], cornerRadiusBottomLeft: [{
4031
+ type: Input
4032
+ }], cornerRadiusTopLeft: [{
4033
+ type: Input
4034
+ }], cornerRadiusTopRight: [{
4035
+ type: Input
4036
+ }], actualCornerRadiusBottomRight: [{
4037
+ type: Input
4038
+ }], actualCornerRadiusBottomLeft: [{
4039
+ type: Input
4040
+ }], actualCornerRadiusTopLeft: [{
4041
+ type: Input
4042
+ }], actualCornerRadiusTopRight: [{
4043
+ type: Input
4044
+ }], isActiveCellStyleEnabled: [{
4045
+ type: Input
4046
+ }], responsiveStates: [{
4047
+ type: Input
4048
+ }], initialSorts: [{
4049
+ type: Input
4050
+ }], initialGroups: [{
4051
+ type: Input
4052
+ }], initialSummaries: [{
4053
+ type: Input
4054
+ }], summaryScope: [{
4055
+ type: Input
4056
+ }], isGroupCollapsable: [{
4057
+ type: Input
4058
+ }], groupHeaderDisplayMode: [{
4059
+ type: Input
4060
+ }], isGroupExpandedDefault: [{
4061
+ type: Input
4062
+ }], groupSummaryDisplayMode: [{
4063
+ type: Input
4064
+ }], autoAcceptEdits: [{
4065
+ type: Input
4066
+ }], primaryKey: [{
4067
+ type: Input
4068
+ }], actualPrimaryKey: [{
4069
+ type: Input
4070
+ }], actualColumns: [{
4071
+ type: Input
4072
+ }], reactsToSortChanges: [{
4073
+ type: Input
4074
+ }], reactsToGroupChanges: [{
4075
+ type: Input
4076
+ }], reactsToFilterChanges: [{
4077
+ type: Input
4078
+ }], enterBehavior: [{
4079
+ type: Input
4080
+ }], enterBehaviorAfterEdit: [{
4081
+ type: Input
4082
+ }], isColumnOptionsSummariesEnabled: [{
4083
+ type: Input
4084
+ }], isColumnOptionsGroupingEnabled: [{
4085
+ type: Input
4086
+ }], mergedCellMode: [{
4087
+ type: Input
4088
+ }], mergedCellEvaluationCriteria: [{
4089
+ type: Input
4090
+ }], mergedCellVerticalAlignment: [{
4091
+ type: Input
4092
+ }], filterUIType: [{
4093
+ type: Input
4094
+ }], filterLogicalOperator: [{
4095
+ type: Input
4096
+ }], filterComparisonType: [{
4097
+ type: Input
4098
+ }], todayOverride: [{
4099
+ type: Input
4100
+ }], clearSelectionOnEscape: [{
4101
+ type: Input
4102
+ }], pageSize: [{
4103
+ type: Input
4104
+ }], isToolbarColumnChooserVisible: [{
4105
+ type: Input
4106
+ }], isToolbarColumnPinningVisible: [{
4107
+ type: Input
4108
+ }], toolbarTitle: [{
4109
+ type: Input
4110
+ }], toolbarColumnChooserText: [{
4111
+ type: Input
4112
+ }], toolbarColumnChooserTitle: [{
4113
+ type: Input
4114
+ }], toolbarColumnPinningText: [{
4115
+ type: Input
4116
+ }], toolbarColumnPinningTitle: [{
4117
+ type: Input
4118
+ }], scrollbarStyle: [{
4119
+ type: Input
4120
+ }], scrollbarBackground: [{
4121
+ type: Input
4122
+ }], allowCopyOperation: [{
4123
+ type: Input
4124
+ }], deferEventForRowDragSelection: [{
4125
+ type: Input
4126
+ }], filterExpressionsChanging: [{
4127
+ type: Output
4128
+ }], filterExpressionsChanged: [{
4129
+ type: Output
4130
+ }], cellPreviewPointerDown: [{
4131
+ type: Output
4132
+ }], cellPreviewPointerUp: [{
4133
+ type: Output
4134
+ }], cellPointerDown: [{
4135
+ type: Output
4136
+ }], cellPointerUp: [{
4137
+ type: Output
4138
+ }], cellClicked: [{
4139
+ type: Output
4140
+ }], sortDescriptionsChanged: [{
4141
+ type: Output
4142
+ }], groupDescriptionsChanged: [{
4143
+ type: Output
4144
+ }], summaryDescriptionsChanged: [{
4145
+ type: Output
4146
+ }], columnHiddenChanged: [{
4147
+ type: Output
4148
+ }], columnPinnedChanged: [{
4149
+ type: Output
4150
+ }], cellValueChanging: [{
4151
+ type: Output
4152
+ }], dataCommitted: [{
4153
+ type: Output
4154
+ }], dataCommitting: [{
4155
+ type: Output
4156
+ }], rootSummariesChanged: [{
4157
+ type: Output
4158
+ }], sizeChanged: [{
4159
+ type: Output
4160
+ }], actualColumnsChanged: [{
4161
+ type: Output
4162
+ }], columnsAutoGenerated: [{
4163
+ type: Output
4164
+ }], selectedItemsChanged: [{
4165
+ type: Output
4166
+ }], selectedKeysChanged: [{
4167
+ type: Output
4168
+ }], selectedCellsChanged: [{
4169
+ type: Output
4170
+ }], selectionChanged: [{
4171
+ type: Output
4172
+ }], activeCellChanged: [{
4173
+ type: Output
4174
+ }], selectedCellRangesChanged: [{
4175
+ type: Output
4176
+ }], columnWidthChanged: [{
4177
+ type: Output
4178
+ }], cellEditStarted: [{
4179
+ type: Output
4180
+ }], cellEditEnded: [{
4181
+ type: Output
4182
+ }], rowEditStarted: [{
4183
+ type: Output
4184
+ }], rowEditEnded: [{
4185
+ type: Output
4186
+ }], customFilterRequested: [{
4187
+ type: Output
4188
+ }], actualPrimaryKeyChange: [{
4189
+ type: Output
4190
+ }] } });