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,2206 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends, __values } from "tslib";
8
+ import { Base, runOn, delegateCombine, typeCast, fromEnum, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, delegateRemove, EnumUtil, enumGetBox } from "igniteui-angular-core";
9
+ import { DomWrapper_$type } from "igniteui-angular-core";
10
+ import { Dictionary$2 } from "igniteui-angular-core";
11
+ import { XCheckbox } from "igniteui-angular-inputs";
12
+ import { XLabel } from "igniteui-angular-inputs";
13
+ import { XIcon } from "igniteui-angular-inputs";
14
+ import { XPrefix } from "igniteui-angular-inputs";
15
+ import { XInputGroup } from "igniteui-angular-inputs";
16
+ import { XInput } from "igniteui-angular-inputs";
17
+ import { ControlDisplayDensity_$type } from "igniteui-angular-core";
18
+ import { FontInfo } from "igniteui-angular-core";
19
+ import { DataContext } from "igniteui-angular-core";
20
+ import { IDataLegendTarget_$type } from "igniteui-angular-core";
21
+ import { BrushUtil } from "igniteui-angular-core";
22
+ import { DeviceUtils } from "igniteui-angular-core";
23
+ import { Brush } from "igniteui-angular-core";
24
+ import { Color } from "igniteui-angular-core";
25
+ import { NativeUI } from "igniteui-angular-core";
26
+ import { PrimaryKeyValue } from "./PrimaryKeyValue";
27
+ import { Thickness } from "igniteui-angular-core";
28
+ import { CheckboxListIndexType_$type } from "./CheckboxListIndexType";
29
+ import { stringIsNullOrEmpty, stringIsNullOrWhiteSpace } from "igniteui-angular-core";
30
+ import { SRProvider } from "igniteui-angular-core";
31
+ import { GridSelectedKeysCollection } from "./GridSelectedKeysCollection";
32
+ import { InputGroupDisplayType_$type } from "igniteui-angular-inputs";
33
+ import { GridStyleRepository } from "./GridStyleRepository";
34
+ import { BaseControlTheme_$type } from "igniteui-angular-core";
35
+ import { ScrollbarStyle_$type } from "igniteui-angular-core";
36
+ import { FilterFactory } from "igniteui-angular-core";
37
+ import { CheckboxListKeysClearedEventArgs } from "./CheckboxListKeysClearedEventArgs";
38
+ import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
39
+ import { TemplateColumn } from "./TemplateColumn";
40
+ import { FastReflectionHelper } from "igniteui-angular-core";
41
+ import { DataSeriesPropertyType_$type } from "igniteui-angular-core";
42
+ import { SvgIconRegistry } from "igniteui-angular-core";
43
+ import { DataSourceSchemaPropertyType_$type } from "igniteui-angular-core";
44
+ import { CheckboxListIndexTypeChangedEventArgs } from "./CheckboxListIndexTypeChangedEventArgs";
45
+ import { ColumnWidth } from "./ColumnWidth";
46
+ import { DateTimeColumn } from "./DateTimeColumn";
47
+ import { NumericColumn } from "./NumericColumn";
48
+ import { TextColumn } from "./TextColumn";
49
+ import { ArgumentException } from "igniteui-angular-core";
50
+ import { Size } from "igniteui-angular-core";
51
+ import { ComponentSizeHelpers } from "igniteui-angular-core";
52
+ import { SelectAllCheckboxChangedEventArgs } from "./SelectAllCheckboxChangedEventArgs";
53
+ import { isPositiveInfinity } from "igniteui-angular-core";
54
+ /**
55
+ * @hidden
56
+ */
57
+ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
58
+ __extends(CheckboxListView, _super);
59
+ function CheckboxListView() {
60
+ var _this = _super.call(this) || this;
61
+ _this.e = new Dictionary$2(DomWrapper_$type, XCheckbox.$, 0);
62
+ _this.h = new Dictionary$2(DomWrapper_$type, XLabel.$, 0);
63
+ _this.g = new Dictionary$2(DomWrapper_$type, XLabel.$, 0);
64
+ _this.f = new Dictionary$2(DomWrapper_$type, XIcon.$, 0);
65
+ _this.m = null;
66
+ _this.a = null;
67
+ _this.l = null;
68
+ _this.k = null;
69
+ _this.c = null;
70
+ _this.b = null;
71
+ _this.i = null;
72
+ _this.d = false;
73
+ _this.j = null;
74
+ return _this;
75
+ }
76
+ CheckboxListView.prototype.q = function () {
77
+ };
78
+ CheckboxListView.prototype.p = function (a) {
79
+ if (a == null) {
80
+ this.i = null;
81
+ this.e.clear();
82
+ return;
83
+ }
84
+ this.i = a;
85
+ this.aa();
86
+ this.aj();
87
+ this.am();
88
+ this.x();
89
+ var b = Math.round(a.rootWrapper.width());
90
+ var c = Math.round(a.rootWrapper.height());
91
+ this.i.rootWrapper.setStyleProperty("position", "relative");
92
+ this.i.rootWrapper.setStyleProperty("padding-bottom", "4px");
93
+ this.al();
94
+ };
95
+ CheckboxListView.prototype.aa = function () {
96
+ if (this.i != null) {
97
+ this.ab(this.i);
98
+ }
99
+ };
100
+ CheckboxListView.prototype.ab = function (a) {
101
+ var b = a.rootWrapper.getChildAt(0);
102
+ this.k = b;
103
+ this.b.w = new XInputGroup();
104
+ var c = a.getSubRenderer(b);
105
+ this.b.w.provideContainer(c);
106
+ var d = c.getExternal(this.b.w, c.rootWrapper, c.getExternal(this.b, null, null));
107
+ this.b.w.d = this.b.y;
108
+ this.b.w.p = this.b.baseTheme;
109
+ this.b.w.t = this.b.density;
110
+ var e = a.createElement("div");
111
+ var f = a.getSubRenderer(e);
112
+ var g = new XPrefix();
113
+ g.provideContainer(f);
114
+ var h = f.getExternal(g, f.rootWrapper, f.getExternal(this.b, null, null));
115
+ var i = a.createElement("div");
116
+ var j = a.getSubRenderer(i);
117
+ this.c = new XIcon();
118
+ this.c.provideContainer(j);
119
+ this.c.fill = this.b.searchIconColor;
120
+ this.c.svgPath = CheckboxList.cl;
121
+ var k = f.getExternal(this.c, j.rootWrapper, j.getExternal(this.b, null, null));
122
+ g.appendContentChild(i);
123
+ this.b.w.appendContentChild(e);
124
+ this.b.w.inputs.add(g);
125
+ var l = a.createElement("div");
126
+ l.setRawStyleProperty("flex-grow", "1");
127
+ var m = a.getSubRenderer(l);
128
+ this.b.u = new XInput();
129
+ this.b.u.provideContainer(m);
130
+ this.b.u.b8 = "text";
131
+ var n = m.getExternal(this.b.u, m.rootWrapper, m.getExternal(this.b, null, null));
132
+ if (this.b.b4 != null) {
133
+ this.b.u.cg = this.b.b4;
134
+ }
135
+ this.b.w.appendContentChild(l);
136
+ this.b.w.inputs.add(this.b.u);
137
+ this.b.dl();
138
+ };
139
+ CheckboxListView.prototype.x = function () {
140
+ if (this.i != null) {
141
+ var a = this.i.rootWrapper.getChildAt(3);
142
+ a.setStyleProperty("width", "100%");
143
+ a.setStyleProperty("margin", "4px 0px 0px 0px");
144
+ if (!this.b.a3 && !this.b.showSelectAll) {
145
+ a.setStyleProperty("height", "100%");
146
+ }
147
+ else {
148
+ var b = this.b.a9();
149
+ a.setStyleProperty("height", "calc(100% - " + b + "px");
150
+ }
151
+ }
152
+ };
153
+ CheckboxListView.prototype.r = function (a, b, c) {
154
+ var d = null;
155
+ if (a.getChildCount() == 0) {
156
+ d = new XCheckbox();
157
+ var e = this.i.getSubRenderer(a);
158
+ d.provideContainer(e);
159
+ var f = this.i.getExternal(d, e.rootWrapper, this.i.getExternal(this.b, null, null));
160
+ this.e.addItem(a, d);
161
+ d.n = this.b.baseTheme;
162
+ d.y = true;
163
+ d.change = delegateCombine(d.change, runOn(this, this.n));
164
+ var g = this.i.createElement("div");
165
+ a.setStyleProperty("display", "flex");
166
+ a.setStyleProperty("height", "100%");
167
+ a.setStyleProperty("align-items", "center");
168
+ switch (this.b.density) {
169
+ case 1:
170
+ a.setStyleProperty("margin-top", "-4px");
171
+ break;
172
+ case 2:
173
+ a.setStyleProperty("margin-top", "-1px");
174
+ break;
175
+ case 4:
176
+ case 3:
177
+ a.setStyleProperty("margin-top", "1px");
178
+ break;
179
+ }
180
+ a.append(g);
181
+ }
182
+ else {
183
+ d = this.e.item(a);
184
+ }
185
+ if (d != null) {
186
+ var h = d.z;
187
+ try {
188
+ d.z = true;
189
+ d.ar = this.b.a7;
190
+ d.a4 = b;
191
+ if (c) {
192
+ if (this.b.indexType == 0) {
193
+ d.checked = false;
194
+ }
195
+ else {
196
+ d.checked = true;
197
+ }
198
+ }
199
+ else {
200
+ if (this.b.indexType == 0) {
201
+ d.checked = true;
202
+ }
203
+ else {
204
+ d.checked = false;
205
+ }
206
+ }
207
+ }
208
+ finally {
209
+ d.z = h;
210
+ }
211
+ d.dk = this.b.et;
212
+ d.dd = this.b.er;
213
+ d.dl = this.b.eu;
214
+ d.de = this.b.es;
215
+ d.dm = this.b.ev;
216
+ }
217
+ };
218
+ CheckboxListView.prototype.s = function (a, b, c, d, e, f, g, h, i, j, k) {
219
+ var _this = this;
220
+ var l = null;
221
+ var m = null;
222
+ var n = null;
223
+ var o = null;
224
+ if (a.getChildCount() == 0) {
225
+ o = new XIcon();
226
+ l = new XLabel();
227
+ m = new XLabel();
228
+ a.setStyleProperty("display", "flex");
229
+ a.setStyleProperty("align-items", "center");
230
+ a.setStyleProperty("height", "100%");
231
+ var p = this.i.createElement("div");
232
+ var q = this.i.getSubRenderer(p);
233
+ o.provideContainer(q);
234
+ o.ap = 24;
235
+ o.as = 24;
236
+ p.setStyleProperty("margin-right", "10px");
237
+ var r = this.i.createElement("div");
238
+ var s = this.i.getSubRenderer(r);
239
+ l.provideContainer(s);
240
+ var t = this.i.createElement("div");
241
+ var u = this.i.getSubRenderer(t);
242
+ m.provideContainer(u);
243
+ this.h.addItem(a, l);
244
+ this.g.addItem(a, m);
245
+ this.f.addItem(a, o);
246
+ n = new XIcon();
247
+ var v = this.i.createElement("div");
248
+ var w = this.i.getSubRenderer(v);
249
+ n.provideContainer(w);
250
+ v.setStyleProperty("height", "100%");
251
+ v.setStyleProperty("margin-left", "-4px");
252
+ n.al = 16;
253
+ n.at = 16;
254
+ n.ap = 16;
255
+ n.as = 16;
256
+ n.ar = 2;
257
+ n.svgPath = "<svg width=\"16\" height=\"16\" viewBox=\"0 2 24 24\" fill=\"none\" stroke=\"rgba(0, 0, 0, 255)\" xmlns=\"http://www.w3.org/2000/svg\">\r\n" + "<path d=\"M20 11.1205L16.2166 14.8795L12.4575 11.1205\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n" + "</svg>\r\n";
258
+ n.dp = BrushUtil.j(120, 0, 0, 0);
259
+ n.ao = DeviceUtils.g(1);
260
+ r.setStyleProperty("display", "flex");
261
+ r.setStyleProperty("height", "100%");
262
+ r.setStyleProperty("align-items", "center");
263
+ r.setStyleProperty("justify-content", "start");
264
+ r.setStyleProperty("flex", "auto");
265
+ t.setStyleProperty("display", "flex");
266
+ t.setStyleProperty("height", "100%");
267
+ t.setStyleProperty("align-items", "center");
268
+ t.setStyleProperty("justify-content", "center");
269
+ t.setStyleProperty("flex-direction", "column");
270
+ a.append(p);
271
+ a.append(r);
272
+ a.append(t);
273
+ a.append(v);
274
+ }
275
+ else {
276
+ l = this.h.item(a);
277
+ m = this.g.item(a);
278
+ o = this.f.item(a);
279
+ }
280
+ if (l != null) {
281
+ try {
282
+ o.svg = null;
283
+ o.cu = null;
284
+ o.az = null;
285
+ var x = e != null ? e : ((function () {
286
+ var $ret = new FontInfo();
287
+ $ret.f = g;
288
+ $ret.q = f;
289
+ return $ret;
290
+ })());
291
+ l.ak = true;
292
+ l.p = this.b.baseTheme;
293
+ l.y = x;
294
+ l.text = c;
295
+ l.l = 0;
296
+ var y = a.getChildAt(0);
297
+ var z = h != null || i != null || k != null;
298
+ var aa = false;
299
+ y.setStyleProperty("width", z ? "24px" : "0px");
300
+ if (i != null) {
301
+ aa = true;
302
+ o.cu = i;
303
+ var ab = ((function () {
304
+ var $ret = new DataContext();
305
+ $ret.series = _this;
306
+ $ret.item = null;
307
+ $ret.itemBrush = ((function () {
308
+ var $ret = new Brush();
309
+ $ret.color = Color.u(255, 0, 0, 0);
310
+ $ret.fill = "black";
311
+ return $ret;
312
+ })());
313
+ return $ret;
314
+ })());
315
+ o.az = ab;
316
+ }
317
+ else if (h != null) {
318
+ var ac = typeCast(IDataLegendTarget_$type, h);
319
+ var ad = ac.getDataLegendSeries();
320
+ if (ad != null) {
321
+ for (var ae = 0; ae < ad.length; ae++) {
322
+ var af = ad[ae];
323
+ var ag = af.getDataLegendSeriesTitle();
324
+ if (c == ag || c + " " + d == ag) {
325
+ aa = true;
326
+ o.cu = af.getDataLegendBadge();
327
+ o.az = af.getDataLegendBadgeContext();
328
+ break;
329
+ }
330
+ }
331
+ }
332
+ y.setStyleProperty("padding-bottom", "6px");
333
+ }
334
+ else if (k != null) {
335
+ aa = true;
336
+ o.aq = 0;
337
+ o.ar = 0;
338
+ o.al = 24;
339
+ o.at = 24;
340
+ o.ap = 24;
341
+ o.as = 24;
342
+ o.dh = BrushUtil.j(0, 255, 255, 255);
343
+ o.fill = BrushUtil.j(0, 255, 255, 255);
344
+ o.dp = BrushUtil.j(0, 255, 255, 255);
345
+ o.di = BrushUtil.j(0, 255, 255, 255);
346
+ o.svg = k;
347
+ }
348
+ if (!aa) {
349
+ o.view.af();
350
+ }
351
+ var ah = a.getChildAt(2);
352
+ var ai = a.getChildAt(3);
353
+ if (stringIsNullOrEmpty(d)) {
354
+ ah.setStyleProperty("display", "none");
355
+ ai.setStyleProperty("display", "none");
356
+ return;
357
+ }
358
+ else {
359
+ ah.setStyleProperty("display", "flex");
360
+ ai.setStyleProperty("display", "flex");
361
+ }
362
+ m.p = this.b.baseTheme;
363
+ x.f = x.f - 2;
364
+ m.ak = true;
365
+ m.y = x;
366
+ m.text = d;
367
+ m.dj = BrushUtil.j(180, 0, 0, 0);
368
+ m.l = 0;
369
+ }
370
+ finally {
371
+ }
372
+ }
373
+ };
374
+ CheckboxListView.prototype.ae = function () {
375
+ var e_1, _a;
376
+ if (this.e != null) {
377
+ try {
378
+ for (var _b = __values(fromEnum(this.e)), _c = _b.next(); !_c.done; _c = _b.next()) {
379
+ var a = _c.value;
380
+ var b = a.value;
381
+ b.n = this.b.baseTheme;
382
+ }
383
+ }
384
+ catch (e_1_1) {
385
+ e_1 = { error: e_1_1 };
386
+ }
387
+ finally {
388
+ try {
389
+ if (_c && !_c.done && (_a = _b.return))
390
+ _a.call(_b);
391
+ }
392
+ finally {
393
+ if (e_1)
394
+ throw e_1.error;
395
+ }
396
+ }
397
+ }
398
+ if (this.a != null) {
399
+ this.a.n = this.b.baseTheme;
400
+ }
401
+ };
402
+ CheckboxListView.prototype.ac = function () {
403
+ };
404
+ CheckboxListView.prototype.n = function (a, b) {
405
+ var c = a;
406
+ var d = parseInt(c.a4.toString());
407
+ var e = c.checked;
408
+ if (e == true) {
409
+ if (this.b.indexType == 0) {
410
+ this.b.d0(d);
411
+ }
412
+ else {
413
+ this.b.cz(d);
414
+ }
415
+ }
416
+ else {
417
+ if (this.b.indexType == 0) {
418
+ this.b.cz(d);
419
+ }
420
+ else {
421
+ this.b.d0(d);
422
+ }
423
+ }
424
+ this.b.di(d, e);
425
+ this.al(false);
426
+ };
427
+ CheckboxListView.prototype.o = function () {
428
+ };
429
+ CheckboxListView.prototype.y = function (a, b) {
430
+ var e_2, _a;
431
+ try {
432
+ for (var _b = __values(fromEnum(this.e)), _c = _b.next(); !_c.done; _c = _b.next()) {
433
+ var c = _c.value;
434
+ var d = c.value;
435
+ var e = parseInt(d.a4.toString());
436
+ if (e == a) {
437
+ d.checked = b;
438
+ this.b.di(e, b);
439
+ }
440
+ }
441
+ }
442
+ catch (e_2_1) {
443
+ e_2 = { error: e_2_1 };
444
+ }
445
+ finally {
446
+ try {
447
+ if (_c && !_c.done && (_a = _b.return))
448
+ _a.call(_b);
449
+ }
450
+ finally {
451
+ if (e_2)
452
+ throw e_2.error;
453
+ }
454
+ }
455
+ this.al();
456
+ };
457
+ CheckboxListView.prototype.z = function (a) {
458
+ var e_3, _a;
459
+ try {
460
+ for (var _b = __values(fromEnum(this.e)), _c = _b.next(); !_c.done; _c = _b.next()) {
461
+ var b = _c.value;
462
+ var c = b.value;
463
+ c.checked = a;
464
+ }
465
+ }
466
+ catch (e_3_1) {
467
+ e_3 = { error: e_3_1 };
468
+ }
469
+ finally {
470
+ try {
471
+ if (_c && !_c.done && (_a = _b.return))
472
+ _a.call(_b);
473
+ }
474
+ finally {
475
+ if (e_3)
476
+ throw e_3.error;
477
+ }
478
+ }
479
+ };
480
+ CheckboxListView.prototype.u = function (a) {
481
+ this.m = a;
482
+ if (null != this.m) {
483
+ this.m.setStyleProperty("margin", "5px 0px 4px 0px");
484
+ }
485
+ };
486
+ CheckboxListView.prototype.am = function () {
487
+ var a = this.i;
488
+ if (null == a || null == this.m) {
489
+ return;
490
+ }
491
+ var b = a.createElement("div");
492
+ var c = a.getSubRenderer(b);
493
+ this.a = new XCheckbox();
494
+ this.a.provideContainer(c);
495
+ var d = this.i.getExternal(this.a, c.rootWrapper, this.i.getExternal(this.b, null, null));
496
+ this.a.n = this.b.baseTheme;
497
+ this.l = a.createElement("label");
498
+ this.l.setRawText(this.b.cp);
499
+ this.l.setStyleProperty("font-size", "13px");
500
+ this.m.setStyleProperty("display", "flex");
501
+ this.m.setStyleProperty("flex-direction", "row");
502
+ this.m.setStyleProperty("font-family", "Verdana");
503
+ this.m.setStyleProperty("align-items", "center");
504
+ this.m.append(b);
505
+ this.m.append(this.l);
506
+ this.an();
507
+ this.ak();
508
+ var e = this.a;
509
+ e.change = delegateCombine(e.change, runOn(this, this.w));
510
+ this.a.y = true;
511
+ };
512
+ CheckboxListView.prototype.ak = function () {
513
+ if (null != this.l) {
514
+ this.l.setRawText(this.b.cp);
515
+ NativeUI.q(this.l, this.b.ep);
516
+ }
517
+ };
518
+ CheckboxListView.prototype.an = function () {
519
+ if (null != this.l) {
520
+ var a = this.b.showSelectAll ? "flex" : "none";
521
+ this.m.setStyleProperty("display", a);
522
+ }
523
+ };
524
+ CheckboxListView.prototype.aj = function () {
525
+ if (this.k != null) {
526
+ this.k.setStyleProperty("display", this.b.a3 ? "block" : "none");
527
+ }
528
+ if (this.j != null) {
529
+ this.j.setStyleProperty("display", this.b.a3 ? "block" : "none");
530
+ }
531
+ };
532
+ CheckboxListView.prototype.al = function (a) {
533
+ if (a === void 0) {
534
+ a = true;
535
+ }
536
+ if (this.a == null) {
537
+ return;
538
+ }
539
+ var b = this.d;
540
+ this.d = true;
541
+ var c = this.a.z;
542
+ this.a.z = a;
543
+ try {
544
+ if (this.b.a0) {
545
+ this.a.indeterminate = true;
546
+ return;
547
+ }
548
+ this.a.indeterminate = false;
549
+ if (this.b.indexType == 0) {
550
+ this.a.checked = this.b.keys.count == 0;
551
+ }
552
+ else {
553
+ this.a.checked = this.b.keys.count != 0;
554
+ }
555
+ }
556
+ finally {
557
+ this.a.z = c;
558
+ this.d = b;
559
+ }
560
+ };
561
+ CheckboxListView.prototype.w = function (a, b) {
562
+ if (this.d || b.isIndeterminate) {
563
+ return;
564
+ }
565
+ if (b.isChecked) {
566
+ this.b.d3();
567
+ this.b.dr(b.isChecked);
568
+ }
569
+ else {
570
+ this.b.c5();
571
+ this.b.dr(b.isChecked);
572
+ }
573
+ };
574
+ CheckboxListView.prototype.ai = function () {
575
+ var a = this.i;
576
+ if (null == a) {
577
+ return;
578
+ }
579
+ var b = a.rootWrapper;
580
+ if (null != b) {
581
+ NativeUI.q(b, this.b.e7);
582
+ NativeUI.m(b, this.b.backgroundColor);
583
+ }
584
+ };
585
+ CheckboxListView.prototype.ag = function () {
586
+ if (this.c != null) {
587
+ this.c.fill = this.b.searchIconColor;
588
+ }
589
+ };
590
+ CheckboxListView.prototype.ah = function () {
591
+ if (this.b.am != null) {
592
+ this.l.setStyleProperty("font", this.b.am.fontString);
593
+ }
594
+ else {
595
+ this.l.setStyleProperty("font-family", "Verdana");
596
+ this.l.setStyleProperty("font-size", 13 + "px");
597
+ }
598
+ };
599
+ CheckboxListView.prototype.ad = function () {
600
+ if (this.a == null) {
601
+ return;
602
+ }
603
+ this.a.dk = this.b.et;
604
+ this.a.dd = this.b.er;
605
+ this.a.dl = this.b.eu;
606
+ this.a.de = this.b.es;
607
+ this.a.dm = this.b.ev;
608
+ };
609
+ CheckboxListView.prototype.af = function (a) {
610
+ if (this.j != null) {
611
+ NativeUI.w(this.j, a);
612
+ }
613
+ };
614
+ CheckboxListView.prototype.t = function (a) {
615
+ this.j = a;
616
+ };
617
+ CheckboxListView.prototype.v = function () {
618
+ var e_4, _a;
619
+ try {
620
+ for (var _b = __values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
621
+ var a = _c.value;
622
+ a.value.cu = null;
623
+ a.value.az = null;
624
+ }
625
+ }
626
+ catch (e_4_1) {
627
+ e_4 = { error: e_4_1 };
628
+ }
629
+ finally {
630
+ try {
631
+ if (_c && !_c.done && (_a = _b.return))
632
+ _a.call(_b);
633
+ }
634
+ finally {
635
+ if (e_4)
636
+ throw e_4.error;
637
+ }
638
+ }
639
+ };
640
+ CheckboxListView.$t = markType(CheckboxListView, 'CheckboxListView');
641
+ return CheckboxListView;
642
+ }(Base));
643
+ export { CheckboxListView };
644
+ /**
645
+ * @hidden
646
+ */
647
+ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
648
+ __extends(CheckboxList, _super);
649
+ function CheckboxList() {
650
+ var _this = _super.call(this) || this;
651
+ _this._view = null;
652
+ _this.f = null;
653
+ _this.j = null;
654
+ _this.ai = null;
655
+ _this.ag = null;
656
+ _this.aj = null;
657
+ _this.ah = null;
658
+ _this.d = null;
659
+ _this.aq = false;
660
+ _this.c = null;
661
+ _this.t = null;
662
+ _this.v = null;
663
+ _this.ar = false;
664
+ _this.ao = null;
665
+ _this.g = new GridSelectedKeysCollection();
666
+ _this.a = null;
667
+ _this.propertyChanged = null;
668
+ _this.selectedKeyAdded = null;
669
+ _this.selectedKeyRemoved = null;
670
+ _this.checkedChanged = null;
671
+ _this.labelClicked = null;
672
+ _this.bg = null;
673
+ _this.bj = null;
674
+ _this.bf = null;
675
+ _this.bn = null;
676
+ _this.bl = null;
677
+ _this.bm = null;
678
+ _this.bk = null;
679
+ _this.x = 3;
680
+ _this.bb = -1;
681
+ _this.ak = null;
682
+ _this.k = 1;
683
+ _this.ac = 1;
684
+ _this.ae = 2;
685
+ _this.el = BrushUtil.j(255, 24, 29, 31);
686
+ _this.ej = null;
687
+ _this.at = true;
688
+ _this.em = null;
689
+ _this.ek = null;
690
+ _this.al = null;
691
+ _this.ee = null;
692
+ _this.ec = null;
693
+ _this.ef = null;
694
+ _this.ed = null;
695
+ _this.eg = null;
696
+ _this.a6 = NaN;
697
+ _this.aa = 0;
698
+ _this.ei = null;
699
+ _this.indexTypeChanged = null;
700
+ _this.as = false;
701
+ _this.co = null;
702
+ _this.en = null;
703
+ _this.ea = CheckboxList.ey;
704
+ _this.a4 = true;
705
+ _this.eb = CheckboxList.ew;
706
+ _this.eh = CheckboxList.ex;
707
+ _this.eo = CheckboxList.ey;
708
+ _this.keysCleared = null;
709
+ _this.selectAllCheckboxChanged = null;
710
+ _this.bd = -1;
711
+ _this.a2 = true;
712
+ _this.ay = true;
713
+ _this.au = false;
714
+ var a = _this.g;
715
+ a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.du));
716
+ _this.g.am(runOn(_this, _this.dt));
717
+ _this.d = new FilterFactory();
718
+ var b = new CheckboxListView();
719
+ b.b = _this;
720
+ _this.view = b;
721
+ _this.view.q();
722
+ return _this;
723
+ }
724
+ Object.defineProperty(CheckboxList.prototype, "view", {
725
+ get: function () {
726
+ return this._view;
727
+ },
728
+ set: function (a) {
729
+ this._view = a;
730
+ },
731
+ enumerable: false,
732
+ configurable: true
733
+ });
734
+ Object.defineProperty(CheckboxList.prototype, "w", {
735
+ get: function () {
736
+ return this.v;
737
+ },
738
+ set: function (a) {
739
+ this.v = a;
740
+ },
741
+ enumerable: false,
742
+ configurable: true
743
+ });
744
+ Object.defineProperty(CheckboxList.prototype, "u", {
745
+ get: function () {
746
+ return this.t;
747
+ },
748
+ set: function (a) {
749
+ this.t = a;
750
+ },
751
+ enumerable: false,
752
+ configurable: true
753
+ });
754
+ Object.defineProperty(CheckboxList.prototype, "e", {
755
+ get: function () {
756
+ if (this.f == null) {
757
+ return null;
758
+ }
759
+ return this.f.actualDataSource;
760
+ },
761
+ enumerable: false,
762
+ configurable: true
763
+ });
764
+ Object.defineProperty(CheckboxList.prototype, "ap", {
765
+ get: function () {
766
+ if (this.ao == null) {
767
+ this.ao = new SRProvider(this.view.i);
768
+ this.ao.cb("DataGrid");
769
+ }
770
+ return this.ao;
771
+ },
772
+ enumerable: false,
773
+ configurable: true
774
+ });
775
+ Object.defineProperty(CheckboxList.prototype, "keys", {
776
+ get: function () {
777
+ return this.g;
778
+ },
779
+ enumerable: false,
780
+ configurable: true
781
+ });
782
+ Object.defineProperty(CheckboxList.prototype, "primaryKey", {
783
+ get: function () {
784
+ return this.a;
785
+ },
786
+ set: function (a) {
787
+ var b = this.a;
788
+ this.a = a;
789
+ if (b != this.a) {
790
+ this.dp("PrimaryKey", b, this.a);
791
+ }
792
+ },
793
+ enumerable: false,
794
+ configurable: true
795
+ });
796
+ CheckboxList.prototype.clearSelectedKeys = function () {
797
+ this.keys.clear();
798
+ if (this.keysCleared != null) {
799
+ this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
800
+ }
801
+ };
802
+ CheckboxList.prototype.addSelectedKey = function (a, b) {
803
+ this.keys.add(new PrimaryKeyValue(a, b));
804
+ };
805
+ CheckboxList.prototype.insertSelectedKey = function (a, b, c) {
806
+ this.keys.insert(a, new PrimaryKeyValue(b, c));
807
+ };
808
+ CheckboxList.prototype.removeSelectedKeyAt = function (a) {
809
+ this.keys.removeAt(a);
810
+ };
811
+ CheckboxList.prototype.dt = function () {
812
+ this.db();
813
+ if (this.keysCleared != null) {
814
+ this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
815
+ }
816
+ };
817
+ CheckboxList.prototype.du = function (a, b) {
818
+ if (this.e == null || this.e.actualSchema == null || this.aq) {
819
+ return;
820
+ }
821
+ switch (b.action) {
822
+ case 0:
823
+ for (var c = 0; c < b.newItems.count; c++) {
824
+ this.dm(b.newItems.item(c));
825
+ }
826
+ break;
827
+ case 1:
828
+ for (var d = 0; d < b.oldItems.count; d++) {
829
+ this.dn(b.oldItems.item(d));
830
+ }
831
+ break;
832
+ case 2:
833
+ for (var e = 0; e < b.oldItems.count; e++) {
834
+ this.dn(b.oldItems.item(e));
835
+ }
836
+ for (var f = 0; f < b.newItems.count; f++) {
837
+ this.dm(b.newItems.item(f));
838
+ }
839
+ break;
840
+ case 4:
841
+ this.view.z(this.indexType == 0);
842
+ for (var g = 0; g < this.keys.ae.count; g++) {
843
+ this.dm(this.keys.ae._inner[g]);
844
+ }
845
+ break;
846
+ }
847
+ };
848
+ CheckboxList.prototype.dm = function (a) {
849
+ var _this = this;
850
+ var b = this.e.indexOfKey(a.value);
851
+ if (b >= 0) {
852
+ this.view.y(b, this.indexType == 1);
853
+ }
854
+ if (this.selectedKeyAdded == null) {
855
+ return;
856
+ }
857
+ this.selectedKeyAdded(this, ((function () {
858
+ var $ret = new CheckedChangedEventArgs();
859
+ $ret.c = b;
860
+ $ret.b = _this.indexType == 1;
861
+ $ret.a = a.value;
862
+ return $ret;
863
+ })()));
864
+ };
865
+ CheckboxList.prototype.dn = function (a) {
866
+ var _this = this;
867
+ var b = this.e.indexOfKey(a.value);
868
+ if (b >= 0) {
869
+ this.view.y(b, this.indexType == 0);
870
+ }
871
+ if (this.selectedKeyRemoved == null) {
872
+ return;
873
+ }
874
+ this.selectedKeyRemoved(this, ((function () {
875
+ var $ret = new CheckedChangedEventArgs();
876
+ $ret.c = b;
877
+ $ret.b = _this.indexType == 0;
878
+ $ret.a = a.value;
879
+ return $ret;
880
+ })()));
881
+ };
882
+ CheckboxList.prototype.di = function (a, b) {
883
+ if (this.checkedChanged != null && this.ar == false) {
884
+ var c_1 = null;
885
+ if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
886
+ c_1 = new Array(this.e.actualPrimaryKey.length);
887
+ for (var d = 0; d < this.e.actualPrimaryKey.length; d++) {
888
+ c_1[d] = this.e.getItemPropertyAtIndex(a, this.e.actualPrimaryKey[d]);
889
+ }
890
+ }
891
+ this.checkedChanged(this, ((function () {
892
+ var $ret = new CheckedChangedEventArgs();
893
+ $ret.c = a;
894
+ $ret.b = b;
895
+ $ret.a = c_1;
896
+ return $ret;
897
+ })()));
898
+ }
899
+ };
900
+ CheckboxList.prototype.notifySizeChanged = function () {
901
+ this.view.o();
902
+ };
903
+ CheckboxList.prototype.destroy = function () {
904
+ if (this.f != null) {
905
+ var a = this.f;
906
+ a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.c7));
907
+ var b = this.f;
908
+ b.sizeChanged = delegateRemove(b.sizeChanged, runOn(this, this.c8));
909
+ if (this.f.actualDataSource != null) {
910
+ var c = this.f.actualDataSource;
911
+ c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.dq));
912
+ }
913
+ }
914
+ if (this.t != null) {
915
+ var d = this.t;
916
+ d.change = delegateRemove(d.change, runOn(this, this.c9));
917
+ }
918
+ this.provideContainer(null, null, null);
919
+ if (this.j != null) {
920
+ var e = this.j;
921
+ e.cellUpdating = delegateRemove(e.cellUpdating, runOn(this, this.c3));
922
+ }
923
+ };
924
+ CheckboxList.prototype.provideContainer = function (a, b, c) {
925
+ this.f = b;
926
+ if (null != this.f) {
927
+ this.f.scrollbarStyle = 1;
928
+ var d = this.f;
929
+ d.sizeChanged = delegateCombine(d.sizeChanged, runOn(this, this.c8));
930
+ this.f.scrollbarBackground = this.e0;
931
+ this.f.headerHeight = 0;
932
+ this.f.rowSeparatorHeight = 0;
933
+ this.f.defaultColumnMinWidth = NaN;
934
+ this.f.autoGenerateColumns = false;
935
+ this.f.activationMode = 0;
936
+ this.f.editMode = 0;
937
+ var e = this.f;
938
+ e.cellClicked = delegateCombine(e.cellClicked, runOn(this, this.c7));
939
+ if (this.bg != null) {
940
+ this.f.itemsSource = this.bg;
941
+ this.c2();
942
+ this.ds();
943
+ }
944
+ if (this.bj != null) {
945
+ this.ds();
946
+ this.d6();
947
+ }
948
+ }
949
+ this.view.u(c);
950
+ if (this.av) {
951
+ this.d8();
952
+ }
953
+ this.view.p(a);
954
+ };
955
+ CheckboxList.prototype.c8 = function (a, b) {
956
+ this.f.scrollbarStyle = this.ab;
957
+ };
958
+ CheckboxList.prototype.provideSelectAllSection = function (a) {
959
+ this.view.u(a);
960
+ };
961
+ CheckboxList.prototype.c7 = function (a, b) {
962
+ if (!this.av && b.cellInfo.l.a5 == 0 || this.av && b.cellInfo.l.a5 == 1) {
963
+ return;
964
+ }
965
+ var c = b.cellInfo.l.x;
966
+ if (-1 == c) {
967
+ return;
968
+ }
969
+ var d = b.cellInfo.hn;
970
+ var e = this.i(d);
971
+ if (this.a1) {
972
+ if (this.keys.contains(e)) {
973
+ if (this.ai != null) {
974
+ this.ai.setPropertyValue(d, false);
975
+ }
976
+ this.keys.remove(e);
977
+ }
978
+ else {
979
+ if (this.ai != null) {
980
+ this.ai.setPropertyValue(d, true);
981
+ }
982
+ this.keys.add(e);
983
+ }
984
+ }
985
+ this.de(c, this.keys.contains(e));
986
+ };
987
+ CheckboxList.prototype.de = function (a, b) {
988
+ var c = null;
989
+ if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
990
+ c = new Array(this.e.actualPrimaryKey.length);
991
+ for (var d = 0; d < this.e.actualPrimaryKey.length; d++) {
992
+ c[d] = this.e.getItemPropertyAtIndex(a, this.e.actualPrimaryKey[d]);
993
+ }
994
+ }
995
+ if (this.labelClicked == null) {
996
+ return;
997
+ }
998
+ this.labelClicked(this, ((function () {
999
+ var $ret = new CheckedChangedEventArgs();
1000
+ $ret.c = a;
1001
+ $ret.b = b;
1002
+ $ret.a = c;
1003
+ return $ret;
1004
+ })()));
1005
+ };
1006
+ CheckboxList.prototype.c3 = function (a, b) {
1007
+ var c = b.cellInfo.l.x;
1008
+ if (-1 == c) {
1009
+ return;
1010
+ }
1011
+ var d = false;
1012
+ if (b.cellInfo.hn != null) {
1013
+ var e = this.i(b.cellInfo.hn);
1014
+ if (this.keys.contains(e)) {
1015
+ d = true;
1016
+ }
1017
+ }
1018
+ this.view.r(b.content.element, c, d);
1019
+ };
1020
+ CheckboxList.prototype.d7 = function (a, b) {
1021
+ var c = b.cellInfo.l.x;
1022
+ if (-1 == c) {
1023
+ return;
1024
+ }
1025
+ var d = null;
1026
+ var e = null;
1027
+ var f = null;
1028
+ var g = null;
1029
+ var h = null;
1030
+ if (b.cellInfo.hn != null) {
1031
+ d = this.ag.getPropertyValue(b.cellInfo.hn);
1032
+ if (this.aj != null) {
1033
+ e = this.aj.getPropertyValue(b.cellInfo.hn);
1034
+ }
1035
+ if (this.ah != null) {
1036
+ var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.ah.getPropertyValue(b.cellInfo.hn));
1037
+ if (i == 0) {
1038
+ h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "string-field");
1039
+ }
1040
+ else if (i == 2) {
1041
+ h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "numeric-field");
1042
+ }
1043
+ else if (i == 1) {
1044
+ h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "date-time-field");
1045
+ }
1046
+ }
1047
+ }
1048
+ this.view.s(b.content.element, c, d, e, this.ak, "Verdana", 13, this.bf, f, g, h);
1049
+ };
1050
+ CheckboxList.prototype.dj = function (a) {
1051
+ if (this.bj != null) {
1052
+ var b = this.d.property(this.bj).cast(enumGetBox(DataSourceSchemaPropertyType_$type, 0)).toLower();
1053
+ var c = b.contains(a);
1054
+ if (!this.f.filterExpressions.k.contains(this.c)) {
1055
+ this.c = c;
1056
+ this.f.filterExpressions.add(this.c);
1057
+ }
1058
+ else {
1059
+ var d = this.f.filterExpressions.k.indexOf(this.c);
1060
+ this.f.filterExpressions.k.item(d, this.c = c);
1061
+ }
1062
+ }
1063
+ };
1064
+ Object.defineProperty(CheckboxList.prototype, "itemsSource", {
1065
+ get: function () {
1066
+ return this.bg;
1067
+ },
1068
+ set: function (a) {
1069
+ var b = this.bg;
1070
+ this.bg = a;
1071
+ if (b != this.bg) {
1072
+ this.dp("ItemsSource", b, this.bg);
1073
+ }
1074
+ },
1075
+ enumerable: false,
1076
+ configurable: true
1077
+ });
1078
+ Object.defineProperty(CheckboxList.prototype, "dataMemberPath", {
1079
+ get: function () {
1080
+ return this.bj;
1081
+ },
1082
+ set: function (a) {
1083
+ var b = this.bj;
1084
+ this.bj = a;
1085
+ if (b != this.bj) {
1086
+ this.dp("DataMemberPath", b, this.bj);
1087
+ }
1088
+ },
1089
+ enumerable: false,
1090
+ configurable: true
1091
+ });
1092
+ Object.defineProperty(CheckboxList.prototype, "bh", {
1093
+ get: function () {
1094
+ return this.bf;
1095
+ },
1096
+ set: function (a) {
1097
+ var b = this.bf;
1098
+ this.bf = a;
1099
+ if (b != this.bf) {
1100
+ this.dp("DataLegendTarget", b, this.bf);
1101
+ }
1102
+ },
1103
+ enumerable: false,
1104
+ configurable: true
1105
+ });
1106
+ Object.defineProperty(CheckboxList.prototype, "cw", {
1107
+ get: function () {
1108
+ return this.bn;
1109
+ },
1110
+ set: function (a) {
1111
+ var b = this.bn;
1112
+ this.bn = a;
1113
+ if (b != this.bn) {
1114
+ this.dp("SubtitleMemberPath", b, this.bn);
1115
+ }
1116
+ },
1117
+ enumerable: false,
1118
+ configurable: true
1119
+ });
1120
+ Object.defineProperty(CheckboxList.prototype, "cb", {
1121
+ get: function () {
1122
+ return this.bl;
1123
+ },
1124
+ set: function (a) {
1125
+ var b = this.bl;
1126
+ this.bl = a;
1127
+ if (b != this.bl) {
1128
+ this.dp("PropertyTypeMemberPath", b, this.bl);
1129
+ }
1130
+ },
1131
+ enumerable: false,
1132
+ configurable: true
1133
+ });
1134
+ Object.defineProperty(CheckboxList.prototype, "selectedMemberPath", {
1135
+ get: function () {
1136
+ return this.bm;
1137
+ },
1138
+ set: function (a) {
1139
+ var b = this.bm;
1140
+ this.bm = a;
1141
+ if (b != this.bm) {
1142
+ this.dp("SelectedMemberPath", b, this.bm);
1143
+ }
1144
+ },
1145
+ enumerable: false,
1146
+ configurable: true
1147
+ });
1148
+ Object.defineProperty(CheckboxList.prototype, "b4", {
1149
+ get: function () {
1150
+ return this.bk;
1151
+ },
1152
+ set: function (a) {
1153
+ var b = this.bk;
1154
+ this.bk = a;
1155
+ if (b != this.bk) {
1156
+ this.dp("FilterPlaceholderText", b, this.bk);
1157
+ }
1158
+ },
1159
+ enumerable: false,
1160
+ configurable: true
1161
+ });
1162
+ Object.defineProperty(CheckboxList.prototype, "y", {
1163
+ get: function () {
1164
+ return this.x;
1165
+ },
1166
+ set: function (a) {
1167
+ var b = this.x;
1168
+ this.x = a;
1169
+ if (b != this.x) {
1170
+ this.dp("SearchInputType", enumGetBox(InputGroupDisplayType_$type, b), enumGetBox(InputGroupDisplayType_$type, this.x));
1171
+ }
1172
+ },
1173
+ enumerable: false,
1174
+ configurable: true
1175
+ });
1176
+ Object.defineProperty(CheckboxList.prototype, "be", {
1177
+ get: function () {
1178
+ return this.bb;
1179
+ },
1180
+ set: function (a) {
1181
+ var b = this.bb;
1182
+ this.bb = a;
1183
+ if (b != this.bb) {
1184
+ this.dp("RowHeight", b, this.bb);
1185
+ }
1186
+ },
1187
+ enumerable: false,
1188
+ configurable: true
1189
+ });
1190
+ Object.defineProperty(CheckboxList.prototype, "bc", {
1191
+ get: function () {
1192
+ if (this.f != null) {
1193
+ return this.f.actualRowHeight;
1194
+ }
1195
+ else if (this.bb != -1) {
1196
+ return this.bb;
1197
+ }
1198
+ else {
1199
+ switch (this.density) {
1200
+ case 4:
1201
+ case 3: return GridStyleRepository.q;
1202
+ case 0:
1203
+ case 2: return GridStyleRepository.r;
1204
+ case 1: return GridStyleRepository.p;
1205
+ }
1206
+ return GridStyleRepository.r;
1207
+ }
1208
+ },
1209
+ enumerable: false,
1210
+ configurable: true
1211
+ });
1212
+ Object.defineProperty(CheckboxList.prototype, "am", {
1213
+ get: function () {
1214
+ return this.ak;
1215
+ },
1216
+ set: function (a) {
1217
+ var b = this.ak;
1218
+ this.ak = a;
1219
+ if (b != this.ak) {
1220
+ this.dp("CellTextStyle", b, this.ak);
1221
+ }
1222
+ },
1223
+ enumerable: false,
1224
+ configurable: true
1225
+ });
1226
+ Object.defineProperty(CheckboxList.prototype, "indexType", {
1227
+ get: function () {
1228
+ return this.k;
1229
+ },
1230
+ set: function (a) {
1231
+ var b = this.k;
1232
+ this.k = a;
1233
+ if (b != this.k) {
1234
+ this.dp("IndexType", enumGetBox(CheckboxListIndexType_$type, b), enumGetBox(CheckboxListIndexType_$type, this.k));
1235
+ }
1236
+ },
1237
+ enumerable: false,
1238
+ configurable: true
1239
+ });
1240
+ Object.defineProperty(CheckboxList.prototype, "baseTheme", {
1241
+ get: function () {
1242
+ return this.ac;
1243
+ },
1244
+ set: function (a) {
1245
+ var b = this.ac;
1246
+ this.ac = a;
1247
+ if (b != this.ac) {
1248
+ this.dp("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.ac));
1249
+ }
1250
+ },
1251
+ enumerable: false,
1252
+ configurable: true
1253
+ });
1254
+ Object.defineProperty(CheckboxList.prototype, "density", {
1255
+ get: function () {
1256
+ return this.ae;
1257
+ },
1258
+ set: function (a) {
1259
+ var b = this.ae;
1260
+ this.ae = a;
1261
+ if (b != this.ae) {
1262
+ this.dp("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, this.ae));
1263
+ }
1264
+ },
1265
+ enumerable: false,
1266
+ configurable: true
1267
+ });
1268
+ Object.defineProperty(CheckboxList.prototype, "searchIconColor", {
1269
+ get: function () {
1270
+ return this.el;
1271
+ },
1272
+ set: function (a) {
1273
+ var b = this.el;
1274
+ this.el = a;
1275
+ if (b != this.el) {
1276
+ this.dp("SearchIconColor", b, this.el);
1277
+ }
1278
+ },
1279
+ enumerable: false,
1280
+ configurable: true
1281
+ });
1282
+ Object.defineProperty(CheckboxList.prototype, "e1", {
1283
+ get: function () {
1284
+ return this.ej;
1285
+ },
1286
+ set: function (a) {
1287
+ var b = this.ej;
1288
+ this.ej = a;
1289
+ if (b != this.ej) {
1290
+ this.dp("SearchBackgroundColor", b, this.ej);
1291
+ }
1292
+ },
1293
+ enumerable: false,
1294
+ configurable: true
1295
+ });
1296
+ Object.defineProperty(CheckboxList.prototype, "a1", {
1297
+ get: function () {
1298
+ return this.at;
1299
+ },
1300
+ set: function (a) {
1301
+ var b = this.at;
1302
+ this.at = a;
1303
+ if (b != this.at) {
1304
+ this.dp("LabelClickTriggersChange", b, this.at);
1305
+ }
1306
+ },
1307
+ enumerable: false,
1308
+ configurable: true
1309
+ });
1310
+ Object.defineProperty(CheckboxList.prototype, "searchTextColor", {
1311
+ get: function () {
1312
+ return this.em;
1313
+ },
1314
+ set: function (a) {
1315
+ var b = this.em;
1316
+ this.em = a;
1317
+ if (b != this.em) {
1318
+ this.dp("SearchTextColor", b, this.em);
1319
+ }
1320
+ },
1321
+ enumerable: false,
1322
+ configurable: true
1323
+ });
1324
+ Object.defineProperty(CheckboxList.prototype, "e2", {
1325
+ get: function () {
1326
+ return this.ek;
1327
+ },
1328
+ set: function (a) {
1329
+ var b = this.ek;
1330
+ this.ek = a;
1331
+ if (b != this.ek) {
1332
+ this.dp("SearchBorderColor", b, this.ek);
1333
+ }
1334
+ },
1335
+ enumerable: false,
1336
+ configurable: true
1337
+ });
1338
+ Object.defineProperty(CheckboxList.prototype, "an", {
1339
+ get: function () {
1340
+ return this.al;
1341
+ },
1342
+ set: function (a) {
1343
+ var b = this.al;
1344
+ this.al = a;
1345
+ if (b != this.al) {
1346
+ this.dp("SearchTextStyle", b, this.al);
1347
+ }
1348
+ },
1349
+ enumerable: false,
1350
+ configurable: true
1351
+ });
1352
+ Object.defineProperty(CheckboxList.prototype, "et", {
1353
+ get: function () {
1354
+ return this.ee;
1355
+ },
1356
+ set: function (a) {
1357
+ var b = this.ee;
1358
+ this.ee = a;
1359
+ if (b != this.ee) {
1360
+ this.dp("CheckboxTickColor", b, this.ee);
1361
+ }
1362
+ },
1363
+ enumerable: false,
1364
+ configurable: true
1365
+ });
1366
+ Object.defineProperty(CheckboxList.prototype, "er", {
1367
+ get: function () {
1368
+ return this.ec;
1369
+ },
1370
+ set: function (a) {
1371
+ var b = this.ec;
1372
+ this.ec = a;
1373
+ if (b != this.ec) {
1374
+ this.dp("CheckboxCheckedBackgroundColor", b, this.ec);
1375
+ }
1376
+ },
1377
+ enumerable: false,
1378
+ configurable: true
1379
+ });
1380
+ Object.defineProperty(CheckboxList.prototype, "eu", {
1381
+ get: function () {
1382
+ return this.ef;
1383
+ },
1384
+ set: function (a) {
1385
+ var b = this.ef;
1386
+ this.ef = a;
1387
+ if (b != this.ef) {
1388
+ this.dp("CheckboxUncheckedBackgroundColor", b, this.ef);
1389
+ }
1390
+ },
1391
+ enumerable: false,
1392
+ configurable: true
1393
+ });
1394
+ Object.defineProperty(CheckboxList.prototype, "es", {
1395
+ get: function () {
1396
+ return this.ed;
1397
+ },
1398
+ set: function (a) {
1399
+ var b = this.ed;
1400
+ this.ed = a;
1401
+ if (b != this.ed) {
1402
+ this.dp("CheckboxCheckedBorderColor", b, this.ed);
1403
+ }
1404
+ },
1405
+ enumerable: false,
1406
+ configurable: true
1407
+ });
1408
+ Object.defineProperty(CheckboxList.prototype, "ev", {
1409
+ get: function () {
1410
+ return this.eg;
1411
+ },
1412
+ set: function (a) {
1413
+ var b = this.eg;
1414
+ this.eg = a;
1415
+ if (b != this.eg) {
1416
+ this.dp("CheckboxUncheckedBorderColor", b, this.eg);
1417
+ }
1418
+ },
1419
+ enumerable: false,
1420
+ configurable: true
1421
+ });
1422
+ Object.defineProperty(CheckboxList.prototype, "a7", {
1423
+ get: function () {
1424
+ return this.a6;
1425
+ },
1426
+ set: function (a) {
1427
+ var b = this.a6;
1428
+ this.a6 = a;
1429
+ if (b != this.a6) {
1430
+ this.dp("CheckboxCornerRadius", b, this.a6);
1431
+ }
1432
+ },
1433
+ enumerable: false,
1434
+ configurable: true
1435
+ });
1436
+ Object.defineProperty(CheckboxList.prototype, "ab", {
1437
+ get: function () {
1438
+ return this.aa;
1439
+ },
1440
+ set: function (a) {
1441
+ var b = this.aa;
1442
+ this.aa = a;
1443
+ if (b != this.aa) {
1444
+ this.dp("ScrollbarStyle", enumGetBox(ScrollbarStyle_$type, b), enumGetBox(ScrollbarStyle_$type, this.aa));
1445
+ }
1446
+ },
1447
+ enumerable: false,
1448
+ configurable: true
1449
+ });
1450
+ Object.defineProperty(CheckboxList.prototype, "e0", {
1451
+ get: function () {
1452
+ return this.ei;
1453
+ },
1454
+ set: function (a) {
1455
+ var b = this.ei;
1456
+ this.ei = a;
1457
+ if (b != this.ei) {
1458
+ this.dp("ScrollbarBackground", b, this.ei);
1459
+ }
1460
+ },
1461
+ enumerable: false,
1462
+ configurable: true
1463
+ });
1464
+ CheckboxList.prototype.dp = function (a, b, c) {
1465
+ if (this.propertyChanged != null) {
1466
+ this.propertyChanged(this, new PropertyChangedEventArgs(a));
1467
+ }
1468
+ this.dv(a, b, c);
1469
+ };
1470
+ CheckboxList.prototype.dv = function (a, b, c) {
1471
+ switch (a) {
1472
+ case "IndexType":
1473
+ this.keys.clear();
1474
+ this.db();
1475
+ if (this.keysCleared != null) {
1476
+ this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
1477
+ }
1478
+ this.view.al();
1479
+ this.dk(b, c);
1480
+ break;
1481
+ case "ItemsSource":
1482
+ if (this.f != null) {
1483
+ this.indexType = 1;
1484
+ if (c != null) {
1485
+ this.f.groupDescriptions.n();
1486
+ this.f.sortDescriptions.n();
1487
+ this.f.filterExpressions.clear();
1488
+ this.f.summaryDescriptions.n();
1489
+ }
1490
+ if (this.f.actualDataSource != null) {
1491
+ var d = this.f.actualDataSource;
1492
+ d.schemaChanged = delegateRemove(d.schemaChanged, runOn(this, this.dq));
1493
+ }
1494
+ this.f.itemsSource = this.bg;
1495
+ this.c2();
1496
+ if (this.f.actualDataSource != null) {
1497
+ var e = this.f.actualDataSource;
1498
+ e.schemaChanged = delegateCombine(e.schemaChanged, runOn(this, this.dq));
1499
+ }
1500
+ this.ar = true;
1501
+ this.ds();
1502
+ this.ar = false;
1503
+ this.view.al();
1504
+ }
1505
+ break;
1506
+ case "DataMemberPath":
1507
+ case "SelectedMemberPath":
1508
+ case "SubtitleMemberPath":
1509
+ case "PropertyTypeMemberPath":
1510
+ if (this.f != null) {
1511
+ if (this.bj != null) {
1512
+ this.ds();
1513
+ this.d6();
1514
+ }
1515
+ }
1516
+ break;
1517
+ case "PrimaryKey":
1518
+ if (this.f != null) {
1519
+ this.f.primaryKey = this.primaryKey;
1520
+ }
1521
+ break;
1522
+ case "SelectAllCaptionTextColor":
1523
+ this.ep = null != this.e5 ? this.e5 : CheckboxList.ey;
1524
+ break;
1525
+ case "SelectAllCaption":
1526
+ case "ActualSelectAllCaptionTextColor":
1527
+ this.view.ak();
1528
+ break;
1529
+ case "showSelectAll":
1530
+ this.view.an();
1531
+ this.view.x();
1532
+ break;
1533
+ case "ShowFilter":
1534
+ this.view.aj();
1535
+ this.view.x();
1536
+ break;
1537
+ case "FilterPlaceholderText":
1538
+ if (this.t != null) {
1539
+ this.t.cg = this.b4;
1540
+ }
1541
+ break;
1542
+ case "SearchInputType":
1543
+ if (this.v != null) {
1544
+ this.v.d = this.y;
1545
+ }
1546
+ break;
1547
+ case "RowHeight":
1548
+ if (this.f != null) {
1549
+ this.f.rowHeight = this.be;
1550
+ }
1551
+ break;
1552
+ case "CellTextStyle":
1553
+ if (this.f != null) {
1554
+ this.f.cellTextStyle = this.am;
1555
+ }
1556
+ this.view.ah();
1557
+ break;
1558
+ case "BackgroundColor":
1559
+ case "TextColor":
1560
+ case "RowHoverBackgroundColor":
1561
+ var f = this.f;
1562
+ if (null != f) {
1563
+ f.cellTextColor = this.e7;
1564
+ f.cellBackground = this.backgroundColor;
1565
+ f.cellSelectedBackground = this.backgroundColor;
1566
+ f.rowHoverBackground = this.rowHoverBackgroundColor;
1567
+ }
1568
+ this.view.ai();
1569
+ break;
1570
+ case "BaseTheme":
1571
+ this.d5();
1572
+ break;
1573
+ case "Density":
1574
+ this.d4();
1575
+ break;
1576
+ case "IsRowHoverEnabled":
1577
+ if (this.f != null) {
1578
+ this.f.isRowHoverEnabled = this.az;
1579
+ }
1580
+ break;
1581
+ case "ScrollbarStyle":
1582
+ if (this.f != null) {
1583
+ this.f.scrollbarStyle = this.ab;
1584
+ }
1585
+ break;
1586
+ case "ScrollbarBackground":
1587
+ if (this.f != null) {
1588
+ this.f.scrollbarBackground = this.e0;
1589
+ }
1590
+ break;
1591
+ case "SearchIconColor":
1592
+ this.view.ag();
1593
+ break;
1594
+ case "SearchBackgroundColor":
1595
+ this.w.mc = this.e1;
1596
+ break;
1597
+ case "SearchBorderColor":
1598
+ this.w.md = this.e2;
1599
+ break;
1600
+ case "SearchTextColor":
1601
+ if (this.u != null) {
1602
+ this.u.d8 = this.searchTextColor;
1603
+ }
1604
+ break;
1605
+ case "SearchTextStyle":
1606
+ this.u.af = this.an;
1607
+ break;
1608
+ case "CheckboxTickColor":
1609
+ case "CheckboxCheckedBackgroundColor":
1610
+ case "CheckboxUncheckedBackgroundColor":
1611
+ case "CheckboxCheckedBorderColor":
1612
+ case "CheckboxUncheckedBorderColor":
1613
+ case "CheckboxCornerRadius":
1614
+ this.view.ad();
1615
+ if (this.f != null) {
1616
+ this.f.xq();
1617
+ }
1618
+ break;
1619
+ case "CheckboxAlignedRight":
1620
+ if (this.f != null) {
1621
+ this.d8();
1622
+ }
1623
+ break;
1624
+ case "DataLegendTarget":
1625
+ if (this.f != null) {
1626
+ this.f.xq();
1627
+ }
1628
+ break;
1629
+ }
1630
+ };
1631
+ CheckboxList.prototype.d8 = function () {
1632
+ if (this.f.actualColumns.count == 0) {
1633
+ return;
1634
+ }
1635
+ var a = this.f.actualColumns._inner[0];
1636
+ var b = this.f.actualColumns._inner[1];
1637
+ var c = this.f.actualColumns._inner[2];
1638
+ this.f.actualColumns.clear();
1639
+ if (this.av) {
1640
+ this.f.columns.add(b);
1641
+ this.f.columns.add(a);
1642
+ }
1643
+ else {
1644
+ this.f.columns.add(a);
1645
+ this.f.columns.add(b);
1646
+ }
1647
+ this.f.columns.add(c);
1648
+ };
1649
+ CheckboxList.prototype.dk = function (a, b) {
1650
+ if (this.indexTypeChanged != null) {
1651
+ this.indexTypeChanged(this, ((function () {
1652
+ var $ret = new CheckboxListIndexTypeChangedEventArgs();
1653
+ $ret.b = EnumUtil.getEnumValue(CheckboxListIndexType_$type, a);
1654
+ $ret.a = EnumUtil.getEnumValue(CheckboxListIndexType_$type, b);
1655
+ return $ret;
1656
+ })()));
1657
+ }
1658
+ };
1659
+ CheckboxList.prototype.d4 = function () {
1660
+ if (this.f != null) {
1661
+ this.f.density = this.density;
1662
+ }
1663
+ if (this.v != null) {
1664
+ this.v.t = this.density;
1665
+ }
1666
+ this.view.ac();
1667
+ };
1668
+ CheckboxList.prototype.d5 = function () {
1669
+ if (this.v != null) {
1670
+ this.v.p = this.baseTheme;
1671
+ }
1672
+ if (this.u != null) {
1673
+ this.u.d8 = this.searchTextColor;
1674
+ }
1675
+ if (this.f != null) {
1676
+ this.f.cellTextColor = this.e7;
1677
+ this.f.cellBackground = this.backgroundColor;
1678
+ this.f.cellSelectedBackground = this.backgroundColor;
1679
+ this.f.rowHoverBackground = this.rowHoverBackgroundColor;
1680
+ }
1681
+ this.view.ae();
1682
+ };
1683
+ CheckboxList.prototype.dq = function (a, b) {
1684
+ this.ar = true;
1685
+ this.c2();
1686
+ if (b.schema != null) {
1687
+ this.ds();
1688
+ for (var c = 0; c < this.keys.count; c++) {
1689
+ this.dm(this.keys._inner[c]);
1690
+ }
1691
+ this.view.al();
1692
+ }
1693
+ this.ar = false;
1694
+ };
1695
+ CheckboxList.prototype.ds = function () {
1696
+ if (this.ai == null && this.bm != null && this.bm != "") {
1697
+ this.ai = new FastReflectionHelper(false, this.bm);
1698
+ }
1699
+ if (this.ag == null && this.bj != null && this.bj != "") {
1700
+ this.ag = new FastReflectionHelper(false, this.bj);
1701
+ }
1702
+ if (this.aj == null && this.bn != null && this.bn != "") {
1703
+ this.aj = new FastReflectionHelper(false, this.bn);
1704
+ }
1705
+ if (this.ah == null && this.bl != null && this.bl != "") {
1706
+ this.ah = new FastReflectionHelper(false, this.bl);
1707
+ }
1708
+ if (this.ag != null) {
1709
+ this.ag.propertyName = this.bj;
1710
+ }
1711
+ if (this.aj != null) {
1712
+ this.aj.propertyName = this.bn;
1713
+ }
1714
+ if (this.ah != null) {
1715
+ this.ah.propertyName = this.bl;
1716
+ }
1717
+ if (this.bg != null && this.ai != null && this.f.actualDataSource.actualSchema != null) {
1718
+ this.ai.propertyName = this.bm;
1719
+ var a = this.f.actualDataSource.actualCount;
1720
+ for (var b = 0; b < a; b++) {
1721
+ var c = this.f.actualDataSource.getItemAtIndex(b);
1722
+ var d = this.i(c);
1723
+ var e = this.ai.getPropertyValue(c);
1724
+ if (e == true) {
1725
+ if (!this.keys.contains(d)) {
1726
+ this.keys.add(d);
1727
+ }
1728
+ }
1729
+ else if (this.keys.contains(d)) {
1730
+ this.keys.remove(d);
1731
+ }
1732
+ }
1733
+ }
1734
+ };
1735
+ CheckboxList.prototype.d6 = function () {
1736
+ this.f.actualColumns.clear();
1737
+ this.f.primaryKey = this.primaryKey;
1738
+ this.f.isGroupRowSticky = false;
1739
+ this.f.rowHeight = this.be;
1740
+ this.f.cellBackground = this.backgroundColor;
1741
+ this.f.cellSelectedBackground = this.backgroundColor;
1742
+ this.f.density = this.density;
1743
+ this.f.isRowHoverEnabled = this.az;
1744
+ this.f.borderWidth = new Thickness(0, 0);
1745
+ if (this.am != null) {
1746
+ this.f.cellTextStyle = this.am;
1747
+ }
1748
+ var a = new TemplateColumn();
1749
+ if (this.bm == null) {
1750
+ this.bm = "";
1751
+ }
1752
+ a.lo = this.bm;
1753
+ a.mf = "CheckboxColumn";
1754
+ var b = new ColumnWidth();
1755
+ b.c = false;
1756
+ b.f = 28;
1757
+ a.width = b;
1758
+ a.kk = 0;
1759
+ a.kl = 0;
1760
+ a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.c3));
1761
+ this.j = a;
1762
+ this.f.columns.add(a);
1763
+ var c = this.f.actualDataSource.resolveSchemaPropertyType(this.bj);
1764
+ if ((this.bn != null || this.bl != null) && (c == 0 || c == 11 || c == 2)) {
1765
+ var d = new TemplateColumn();
1766
+ d.lo = this.bj;
1767
+ d.mf = "DataColumn";
1768
+ d.kk = 0;
1769
+ d.g = 0;
1770
+ d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.d7));
1771
+ this.f.columns.add(d);
1772
+ }
1773
+ else {
1774
+ var e = void 0;
1775
+ switch (c) {
1776
+ case 8:
1777
+ case 9:
1778
+ e = new DateTimeColumn();
1779
+ break;
1780
+ case 1:
1781
+ case 3:
1782
+ case 4:
1783
+ case 5:
1784
+ case 6:
1785
+ case 7:
1786
+ case 10:
1787
+ e = new NumericColumn();
1788
+ break;
1789
+ case 2:
1790
+ case 11:
1791
+ case 0:
1792
+ default:
1793
+ e = new TextColumn();
1794
+ break;
1795
+ }
1796
+ e.lo = this.bj;
1797
+ e.mf = "DataColumn";
1798
+ e.kk = 0;
1799
+ e.g = 0;
1800
+ this.f.columns.add(e);
1801
+ }
1802
+ var f = new TemplateColumn();
1803
+ var g = new ColumnWidth();
1804
+ g.c = false;
1805
+ g.f = 10;
1806
+ f.lo = "PaddingColumn";
1807
+ f.mf = "PaddingColumn";
1808
+ f.kk = 0;
1809
+ f.width = g;
1810
+ this.f.columns.add(f);
1811
+ };
1812
+ CheckboxList.prototype.updateHrMargin = function (a) {
1813
+ this.view.af(a);
1814
+ };
1815
+ CheckboxList.prototype.provideHrElement = function (a) {
1816
+ this.view.t(a);
1817
+ };
1818
+ CheckboxList.prototype.dl = function () {
1819
+ var a = this.u;
1820
+ a.changing = delegateCombine(a.changing, runOn(this, this.c9));
1821
+ this.d5();
1822
+ };
1823
+ CheckboxList.prototype.c9 = function (a, b) {
1824
+ var c = b.value.toLowerCase();
1825
+ this.dj(c);
1826
+ };
1827
+ CheckboxList.prototype.i = function (a) {
1828
+ if (this.primaryKey == null) {
1829
+ return PrimaryKeyValue.createIdentityKey(a);
1830
+ }
1831
+ var b = new Array(this.primaryKey.length);
1832
+ var c = new Array(this.primaryKey.length);
1833
+ for (var d = 0; d < b.length; d++) {
1834
+ b[d] = this.primaryKey[d];
1835
+ c[d] = this.e.getItemProperty(a, b[d]);
1836
+ }
1837
+ return new PrimaryKeyValue(b, c);
1838
+ };
1839
+ CheckboxList.prototype.d0 = function (a) {
1840
+ this.aq = true;
1841
+ var b = this.e.getItemAtIndex(a);
1842
+ if (this.ai != null) {
1843
+ this.ai.setPropertyValue(b, false);
1844
+ }
1845
+ var c = this.i(b);
1846
+ this.keys.remove(c);
1847
+ this.aq = false;
1848
+ };
1849
+ CheckboxList.prototype.cz = function (a) {
1850
+ this.aq = true;
1851
+ var b = this.e.getItemAtIndex(a);
1852
+ if (this.ai != null) {
1853
+ this.ai.setPropertyValue(b, true);
1854
+ }
1855
+ var c = this.i(b);
1856
+ this.keys.add(c);
1857
+ this.aq = false;
1858
+ };
1859
+ CheckboxList.prototype.d3 = function () {
1860
+ this.indexType = 0;
1861
+ this.keys.clear();
1862
+ this.db();
1863
+ if (this.keysCleared != null) {
1864
+ this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
1865
+ }
1866
+ };
1867
+ CheckboxList.prototype.c5 = function () {
1868
+ this.indexType = 1;
1869
+ this.keys.clear();
1870
+ this.db();
1871
+ if (this.keysCleared != null) {
1872
+ this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
1873
+ }
1874
+ };
1875
+ CheckboxList.prototype.dg = function (a, b, c) {
1876
+ if (this.f != null) {
1877
+ this.f.notifySetItem(a, b, c);
1878
+ }
1879
+ };
1880
+ CheckboxList.prototype.dc = function () {
1881
+ if (this.f != null) {
1882
+ this.f.notifyClearItems();
1883
+ }
1884
+ };
1885
+ CheckboxList.prototype.db = function () {
1886
+ if (this.f != null) {
1887
+ this.f.invalidateVisibleRows();
1888
+ }
1889
+ };
1890
+ CheckboxList.prototype.dd = function (a, b) {
1891
+ if (this.f != null) {
1892
+ this.f.notifyInsertItem(a, b);
1893
+ }
1894
+ ;
1895
+ };
1896
+ CheckboxList.prototype.df = function (a, b) {
1897
+ if (this.f != null) {
1898
+ this.f.notifyRemoveItem(a, b);
1899
+ }
1900
+ ;
1901
+ };
1902
+ CheckboxList.prototype.refresh = function () {
1903
+ if (this.as) {
1904
+ return;
1905
+ }
1906
+ if (this.f != null) {
1907
+ this.as = true;
1908
+ this.view.v();
1909
+ this.f.refresh();
1910
+ this.as = false;
1911
+ }
1912
+ };
1913
+ CheckboxList.prototype.c0 = function (a) {
1914
+ var b = null;
1915
+ if (this.primaryKey == null || this.primaryKey.length == 0) {
1916
+ b = new PrimaryKeyValue(null, a);
1917
+ }
1918
+ else if (this.primaryKey.length == a.length) {
1919
+ b = new PrimaryKeyValue(this.primaryKey, a);
1920
+ }
1921
+ else {
1922
+ throw new ArgumentException(1, "value length must match PrimaryKey length");
1923
+ }
1924
+ if (b != null) {
1925
+ if (this.ai != null) {
1926
+ var c = this.e.indexOfKey(a);
1927
+ var d = this.e.getItemAtIndex(c);
1928
+ this.ai.setPropertyValue(d, true);
1929
+ }
1930
+ this.keys.add(b);
1931
+ }
1932
+ };
1933
+ CheckboxList.prototype.d1 = function (a) {
1934
+ var b = null;
1935
+ if (this.primaryKey == null || this.primaryKey.length == 0) {
1936
+ b = new PrimaryKeyValue(null, a);
1937
+ }
1938
+ else if (this.primaryKey.length == a.length) {
1939
+ b = new PrimaryKeyValue(this.primaryKey, a);
1940
+ }
1941
+ else {
1942
+ throw new ArgumentException(1, "value length must match PrimaryKey length");
1943
+ }
1944
+ if (this.keys.contains(b)) {
1945
+ if (this.ai != null) {
1946
+ var c = this.e.indexOfKey(a);
1947
+ var d = this.e.getItemAtIndex(c);
1948
+ this.ai.setPropertyValue(d, false);
1949
+ }
1950
+ this.keys.remove(b);
1951
+ }
1952
+ };
1953
+ CheckboxList.prototype.getDesiredSize = function (a) {
1954
+ var b = 248;
1955
+ var c = 0;
1956
+ var d = this.a9();
1957
+ var e = 5;
1958
+ if (this.f != null && this.f.actualDataSource != null && this.f.actualDataSource.actualCount > 0) {
1959
+ e = this.f.actualDataSource.actualCount;
1960
+ }
1961
+ var f = this.bc * e;
1962
+ var g = this.bc * (this.showSelectAll ? 4 : 5);
1963
+ var h = f > g ? g : f;
1964
+ var i = d + h;
1965
+ if (isPositiveInfinity(a.height)) {
1966
+ c = i;
1967
+ }
1968
+ else {
1969
+ if (a.height <= i) {
1970
+ c = i;
1971
+ }
1972
+ else {
1973
+ var j = a.height - i;
1974
+ c = d + j;
1975
+ }
1976
+ }
1977
+ return new Size(1, b, c);
1978
+ };
1979
+ CheckboxList.prototype.a9 = function () {
1980
+ var a = 0;
1981
+ a += ComponentSizeHelpers.d(this.density, this.baseTheme);
1982
+ a += ComponentSizeHelpers.c(this.density, this.baseTheme);
1983
+ a += (0.8 + 6);
1984
+ a += 4;
1985
+ if (this.showSelectAll) {
1986
+ a += this.bc;
1987
+ }
1988
+ a += 4;
1989
+ return a;
1990
+ };
1991
+ Object.defineProperty(CheckboxList.prototype, "cp", {
1992
+ get: function () {
1993
+ return this.co != null ? this.co : !stringIsNullOrWhiteSpace(this.ap.b1("Select_All")) ? this.ap.b1("Select_All") : "(Select All)";
1994
+ },
1995
+ set: function (a) {
1996
+ if (a == this.co) {
1997
+ return;
1998
+ }
1999
+ var b = this.co;
2000
+ this.co = a;
2001
+ this.dp("SelectAllCaption", b, this.co);
2002
+ },
2003
+ enumerable: false,
2004
+ configurable: true
2005
+ });
2006
+ Object.defineProperty(CheckboxList.prototype, "e5", {
2007
+ get: function () {
2008
+ return this.en;
2009
+ },
2010
+ set: function (a) {
2011
+ var b = this.en;
2012
+ this.en = a;
2013
+ if (b != this.en) {
2014
+ this.dp("SelectAllCaptionTextColor", b, a);
2015
+ }
2016
+ },
2017
+ enumerable: false,
2018
+ configurable: true
2019
+ });
2020
+ Object.defineProperty(CheckboxList.prototype, "ep", {
2021
+ get: function () {
2022
+ return this.ea;
2023
+ },
2024
+ set: function (a) {
2025
+ var b = this.ea;
2026
+ this.ea = a;
2027
+ if (b != this.ea) {
2028
+ this.dp("ActualSelectAllCaptionTextColor", b, a);
2029
+ }
2030
+ },
2031
+ enumerable: false,
2032
+ configurable: true
2033
+ });
2034
+ Object.defineProperty(CheckboxList.prototype, "a0", {
2035
+ get: function () {
2036
+ if (-1 == this.bd) {
2037
+ return false;
2038
+ }
2039
+ var a = this.keys.count;
2040
+ if (0 == a) {
2041
+ return false;
2042
+ }
2043
+ if (a == this.bd) {
2044
+ return false;
2045
+ }
2046
+ return true;
2047
+ },
2048
+ enumerable: false,
2049
+ configurable: true
2050
+ });
2051
+ Object.defineProperty(CheckboxList.prototype, "showSelectAll", {
2052
+ get: function () {
2053
+ return this.a4;
2054
+ },
2055
+ set: function (a) {
2056
+ if (a == this.a4) {
2057
+ return;
2058
+ }
2059
+ var b = this.a4;
2060
+ this.a4 = a;
2061
+ this.dp("showSelectAll", b, this.a4);
2062
+ },
2063
+ enumerable: false,
2064
+ configurable: true
2065
+ });
2066
+ Object.defineProperty(CheckboxList.prototype, "backgroundColor", {
2067
+ get: function () {
2068
+ return this.eb;
2069
+ },
2070
+ set: function (a) {
2071
+ var b = this.eb;
2072
+ this.eb = a;
2073
+ if (b != this.eb) {
2074
+ this.dp("BackgroundColor", b, a);
2075
+ }
2076
+ },
2077
+ enumerable: false,
2078
+ configurable: true
2079
+ });
2080
+ Object.defineProperty(CheckboxList.prototype, "rowHoverBackgroundColor", {
2081
+ get: function () {
2082
+ return this.eh;
2083
+ },
2084
+ set: function (a) {
2085
+ var b = this.eh;
2086
+ this.eh = a;
2087
+ if (b != this.eh) {
2088
+ this.dp("RowHoverBackgroundColor", b, a);
2089
+ }
2090
+ },
2091
+ enumerable: false,
2092
+ configurable: true
2093
+ });
2094
+ Object.defineProperty(CheckboxList.prototype, "e7", {
2095
+ get: function () {
2096
+ return this.eo;
2097
+ },
2098
+ set: function (a) {
2099
+ var b = this.eo;
2100
+ this.eo = a;
2101
+ if (b != this.eo) {
2102
+ this.dp("TextColor", b, a);
2103
+ }
2104
+ },
2105
+ enumerable: false,
2106
+ configurable: true
2107
+ });
2108
+ CheckboxList.prototype.dr = function (a) {
2109
+ if (this.selectAllCheckboxChanged != null) {
2110
+ this.selectAllCheckboxChanged(this, ((function () {
2111
+ var $ret = new SelectAllCheckboxChangedEventArgs();
2112
+ $ret.a = a;
2113
+ return $ret;
2114
+ })()));
2115
+ }
2116
+ };
2117
+ CheckboxList.prototype.ax = function () {
2118
+ if (-1 == this.bd) {
2119
+ return true;
2120
+ }
2121
+ var a = this.keys.count;
2122
+ switch (this.indexType) {
2123
+ case 0: return this.bd == a;
2124
+ case 1: return 0 == a;
2125
+ default: return false;
2126
+ }
2127
+ };
2128
+ CheckboxList.prototype.aw = function () {
2129
+ if (-1 == this.bd) {
2130
+ return false;
2131
+ }
2132
+ var a = this.keys.count;
2133
+ switch (this.indexType) {
2134
+ case 0: return 0 == a;
2135
+ case 1: return this.bd == a;
2136
+ default: return false;
2137
+ }
2138
+ };
2139
+ CheckboxList.prototype.c2 = function () {
2140
+ var a = this.f.actualDataSource;
2141
+ if (null != a) {
2142
+ if (null == a.actualSchema) {
2143
+ this.bd = -1;
2144
+ return;
2145
+ }
2146
+ var b = a.actualCount;
2147
+ this.bd = b;
2148
+ }
2149
+ else {
2150
+ this.bd = -1;
2151
+ }
2152
+ };
2153
+ Object.defineProperty(CheckboxList.prototype, "a3", {
2154
+ get: function () {
2155
+ return this.a2;
2156
+ },
2157
+ set: function (a) {
2158
+ if (a == this.a2) {
2159
+ return;
2160
+ }
2161
+ var b = this.a2;
2162
+ this.a2 = a;
2163
+ this.dp("ShowFilter", b, this.a2);
2164
+ },
2165
+ enumerable: false,
2166
+ configurable: true
2167
+ });
2168
+ Object.defineProperty(CheckboxList.prototype, "az", {
2169
+ get: function () {
2170
+ return this.ay;
2171
+ },
2172
+ set: function (a) {
2173
+ if (a == this.ay) {
2174
+ return;
2175
+ }
2176
+ var b = this.ay;
2177
+ this.ay = a;
2178
+ this.dp("IsRowHoverEnabled", b, this.ay);
2179
+ },
2180
+ enumerable: false,
2181
+ configurable: true
2182
+ });
2183
+ Object.defineProperty(CheckboxList.prototype, "av", {
2184
+ get: function () {
2185
+ return this.au;
2186
+ },
2187
+ set: function (a) {
2188
+ if (a == this.au) {
2189
+ return;
2190
+ }
2191
+ var b = this.au;
2192
+ this.au = a;
2193
+ this.dp("CheckboxAlignedRight", b, this.au);
2194
+ },
2195
+ enumerable: false,
2196
+ configurable: true
2197
+ });
2198
+ CheckboxList.$t = markType(CheckboxList, 'CheckboxList', Base.$, [INotifyPropertyChanged_$type]);
2199
+ CheckboxList.e6 = BrushUtil.j(255, 24, 29, 31);
2200
+ CheckboxList.cl = "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z";
2201
+ CheckboxList.ew = BrushUtil.j(255, 248, 248, 248);
2202
+ CheckboxList.ex = null;
2203
+ CheckboxList.ey = BrushUtil.j(255, 24, 29, 31);
2204
+ return CheckboxList;
2205
+ }(Base));
2206
+ export { CheckboxList };