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,3184 @@
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, Delegate_$type, runOn, delegateCombine, fromEnum, typeCast, Array_$type, delegateRemove, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox, String_$type } from "igniteui-angular-core";
9
+ import { Popup } from "igniteui-angular-core";
10
+ import { XSuffix } from "igniteui-angular-inputs";
11
+ import { XInputGroup } from "igniteui-angular-inputs";
12
+ import { XLabel } from "igniteui-angular-inputs";
13
+ import { XInput } from "igniteui-angular-inputs";
14
+ import { List$1 } from "igniteui-angular-core";
15
+ import { XIcon } from "igniteui-angular-inputs";
16
+ import { BrushUtil } from "igniteui-angular-core";
17
+ import { GridCellPosition } from "./GridCellPosition";
18
+ import { Rect } from "igniteui-angular-core";
19
+ import { GotFocusEventArgs } from "./GotFocusEventArgs";
20
+ import { LostFocusEventArgs } from "./LostFocusEventArgs";
21
+ import { FilterFactory } from "igniteui-angular-core";
22
+ import { ColumnComparisonFilterCondition } from "./ColumnComparisonFilterCondition";
23
+ import { NativeUI } from "igniteui-angular-core";
24
+ import { FontInfo } from "igniteui-angular-core";
25
+ import { MultiColumnComboBoxUtilities } from "./MultiColumnComboBoxUtilities";
26
+ import { ColumnWidth } from "./ColumnWidth";
27
+ import { SortMode_$type } from "./SortMode";
28
+ import { IDataSourceUpdateNotifier_$type } from "igniteui-angular-core";
29
+ import { MultipleDataSourceNotifier } from "./MultipleDataSourceNotifier";
30
+ import { TextHeaderCellModel } from "./TextHeaderCellModel";
31
+ import { CornerRadius } from "igniteui-angular-core";
32
+ import { stringEmpty, stringIsNullOrEmpty, stringIsNullOrWhiteSpace } from "igniteui-angular-core";
33
+ import { stringFormat } from "igniteui-angular-core";
34
+ import { SRProvider } from "igniteui-angular-core";
35
+ import { DeviceUtils } from "igniteui-angular-core";
36
+ import { BaseControlTheme_$type } from "igniteui-angular-core";
37
+ import { Thickness } from "igniteui-angular-core";
38
+ import { ControlDisplayDensity_$type } from "igniteui-angular-core";
39
+ import { StringComparer } from "igniteui-angular-core";
40
+ import { InputGroupDisplayType_$type } from "igniteui-angular-inputs";
41
+ import { ThemeResolver } from "igniteui-angular-inputs";
42
+ import { MultiColumnComboBoxTextChangedEventArgs } from "./MultiColumnComboBoxTextChangedEventArgs";
43
+ import { MultiColumnComboBoxValueChangedEventArgs } from "./MultiColumnComboBoxValueChangedEventArgs";
44
+ import { FastReflectionHelper } from "igniteui-angular-core";
45
+ import { MultiColumnComboVisualModelExport } from "./MultiColumnComboVisualModelExport";
46
+ import { AppearanceHelper } from "igniteui-angular-core";
47
+ import { FontUtil } from "igniteui-angular-core";
48
+ import { isNaN_ } from "igniteui-angular-core";
49
+ /**
50
+ * @hidden
51
+ */
52
+ var MultiColumnComboBoxView = /** @class */ /*@__PURE__*/ (function (_super) {
53
+ __extends(MultiColumnComboBoxView, _super);
54
+ function MultiColumnComboBoxView() {
55
+ var _this = _super !== null && _super.apply(this, arguments) || this;
56
+ _this.ac = null;
57
+ _this.ak = null;
58
+ _this.f = null;
59
+ _this.ai = null;
60
+ _this.k = null;
61
+ _this.ah = null;
62
+ _this.j = null;
63
+ _this.aj = null;
64
+ _this.l = null;
65
+ _this.h = null;
66
+ _this.ae = null;
67
+ _this.i = null;
68
+ _this.af = null;
69
+ _this.m = null;
70
+ _this.ag = null;
71
+ _this.d = null;
72
+ _this.aq = null;
73
+ _this.ab = new List$1(Delegate_$type, 0);
74
+ _this.au = null;
75
+ _this.aa = true;
76
+ _this.ap = 0;
77
+ _this.x = false;
78
+ _this.a = null;
79
+ _this.c = 0;
80
+ _this.w = false;
81
+ _this.s = false;
82
+ _this.r = false;
83
+ _this.p = false;
84
+ _this.an = null;
85
+ _this.am = null;
86
+ _this.v = false;
87
+ _this.ao = -1;
88
+ _this.z = false;
89
+ _this.t = false;
90
+ return _this;
91
+ }
92
+ Object.defineProperty(MultiColumnComboBoxView.prototype, "e", {
93
+ get: function () {
94
+ return this.d;
95
+ },
96
+ enumerable: false,
97
+ configurable: true
98
+ });
99
+ Object.defineProperty(MultiColumnComboBoxView.prototype, "y", {
100
+ get: function () {
101
+ return this.ap == 46;
102
+ },
103
+ enumerable: false,
104
+ configurable: true
105
+ });
106
+ Object.defineProperty(MultiColumnComboBoxView.prototype, "n", {
107
+ get: function () {
108
+ return this.m;
109
+ },
110
+ enumerable: false,
111
+ configurable: true
112
+ });
113
+ MultiColumnComboBoxView.prototype.bg = function (a) {
114
+ this.ak = a;
115
+ this.b2();
116
+ };
117
+ MultiColumnComboBoxView.prototype.bh = function (a) {
118
+ this.f = a;
119
+ };
120
+ MultiColumnComboBoxView.prototype.bq = function () {
121
+ };
122
+ MultiColumnComboBoxView.prototype.b2 = function () {
123
+ this.ag = this.ac.createElement("div");
124
+ this.cx();
125
+ this.a1();
126
+ this.a0();
127
+ this.ak.append(this.ai);
128
+ this.cm();
129
+ this.co();
130
+ document.addEventListener("click", runOn(this, this.a2), false);
131
+ window.addEventListener("resize", runOn(this, this.c3), false);
132
+ };
133
+ MultiColumnComboBoxView.prototype.aw = function (a) {
134
+ var b = this.g.p();
135
+ if (null == b) {
136
+ return;
137
+ }
138
+ this.p = false;
139
+ if (b.g1 != a) {
140
+ b.g1 = a;
141
+ this.p = true;
142
+ }
143
+ else {
144
+ this.a3();
145
+ }
146
+ };
147
+ MultiColumnComboBoxView.prototype.ay = function () {
148
+ var a = this.e;
149
+ a.activeCell = null;
150
+ };
151
+ MultiColumnComboBoxView.prototype.az = function () {
152
+ var a = this.n;
153
+ if (null != a) {
154
+ a.b6();
155
+ }
156
+ this.co();
157
+ var b = this.g.p();
158
+ if (null != b) {
159
+ var c = b.g1;
160
+ if (null != c) {
161
+ b.g1 = null;
162
+ }
163
+ }
164
+ };
165
+ MultiColumnComboBoxView.prototype.u = function (a) {
166
+ if (null == a) {
167
+ return false;
168
+ }
169
+ var b = this.ai.getNativeElement();
170
+ var c = this.ag.getNativeElement();
171
+ var d = this.am.getNativeElement();
172
+ return b.contains(a) || c.contains(a) || d.contains(a);
173
+ };
174
+ MultiColumnComboBoxView.prototype.a0 = function () {
175
+ var a = this.ad;
176
+ var b = this.g;
177
+ this.ai = a.createElement("div");
178
+ this.ai.setStyleProperty("display", "flex");
179
+ this.ai.setStyleProperty("height", "100%");
180
+ this.ai.setAttribute("tabIndex", "0");
181
+ this.ai.setAttribute("outline", "none !important");
182
+ this.ai.listen("focusin", runOn(this, this.bn));
183
+ this.ai.listen("focusout", runOn(this, this.bo));
184
+ var c = a.getSubRenderer(this.ai);
185
+ this.k = new XInputGroup();
186
+ this.k.provideContainer(c);
187
+ var d = c.getExternal(this.k, c.rootWrapper, c.getExternal(this.g, null, null));
188
+ this.k.d = this.g.ac;
189
+ this.aj = a.createElement("div");
190
+ var e = a.getSubRenderer(this.aj);
191
+ this.l = new XLabel();
192
+ this.l.provideContainer(e);
193
+ var f = e.getExternal(this.l, e.rootWrapper, e.getExternal(this.g, null, null));
194
+ if (this.f.actualLabelVisible) {
195
+ this.c0();
196
+ }
197
+ this.ah = a.createElement("div");
198
+ this.ah.addClass("ig-input");
199
+ this.ah.setRawStyleProperty("flex-grow", "1");
200
+ var g = a.getSubRenderer(this.ah);
201
+ this.j = new XInput();
202
+ this.j.provideContainer(g);
203
+ a.getExternal(this.j, a.rootWrapper, a.getExternal(b, null, null));
204
+ this.j.b8 = "text";
205
+ this.j.cq = b.text;
206
+ var h = this.j;
207
+ h.changing = delegateCombine(h.changing, runOn(this, this.bi));
208
+ var i = this.j;
209
+ i.compositionEnd = delegateCombine(i.compositionEnd, runOn(this, this.bj));
210
+ var j = this.j;
211
+ j.keyDown = delegateCombine(j.keyDown, runOn(this, this.bl));
212
+ var k = this.j;
213
+ k.gotFocus = delegateCombine(k.gotFocus, runOn(this, this.bk));
214
+ var l = this.j;
215
+ l.mouseDown = delegateCombine(l.mouseDown, runOn(this, this.bm));
216
+ this.k.appendContentChild(this.ah);
217
+ this.k.inputs.add(this.j);
218
+ this.a5(this.g.bg);
219
+ var m = a.createElement("div");
220
+ var n = a.getSubRenderer(m);
221
+ var o = new XSuffix();
222
+ o.provideContainer(n);
223
+ var p = n.getExternal(o, n.rootWrapper, n.getExternal(this.g, null, null));
224
+ this.ae = a.createElement("div");
225
+ this.h = new XIcon();
226
+ var q = a.getSubRenderer(this.ae);
227
+ this.h.provideContainer(q);
228
+ var r = q.getExternal(this.h, q.rootWrapper, q.getExternal(this.g, null, null));
229
+ this.h.svgPath = MultiColumnComboBoxView.ar;
230
+ this.ae.setStyleProperty("height", "16px");
231
+ this.ae.setStyleProperty("width", "16px");
232
+ o.appendContentChild(this.ae);
233
+ this.k.appendContentChild(m);
234
+ this.k.inputs.add(o);
235
+ this.cj();
236
+ var s = a.createElement("div");
237
+ var t = a.getSubRenderer(s);
238
+ var u = new XSuffix();
239
+ u.provideContainer(t);
240
+ var v = t.getExternal(u, t.rootWrapper, t.getExternal(this.g, null, null));
241
+ this.af = a.createElement("div");
242
+ this.i = new XIcon();
243
+ var w = a.getSubRenderer(this.af);
244
+ this.i.provideContainer(w);
245
+ var x = w.getExternal(this.i, w.rootWrapper, w.getExternal(this.g, null, null));
246
+ this.i.svgPath = MultiColumnComboBoxView.at;
247
+ u.appendContentChild(this.af);
248
+ this.k.appendContentChild(s);
249
+ this.k.inputs.add(u);
250
+ this.ae.listen("click", runOn(this, this.ax));
251
+ this.af.listen("click", runOn(this, this.a4));
252
+ this.cq();
253
+ };
254
+ MultiColumnComboBoxView.prototype.a1 = function () {
255
+ var a = this.ac.createElement("div");
256
+ var b = this.ac.getSubRenderer(a);
257
+ this.m = new Popup();
258
+ this.m.ar = this.f.bn;
259
+ this.m.ay = this.f.br;
260
+ this.m.c0 = BrushUtil.j(255, 255, 255, 255);
261
+ this.m.a9 = 150;
262
+ this.m.provideRenderer(b);
263
+ var c = b.getExternal(this.m, b.rootWrapper, b.getExternal(this.g, null, null));
264
+ this.am = this.ac.createElement("div");
265
+ this.am.setStyleProperty("padding", "4px");
266
+ this.am.setStyleProperty("white-space", "nowrap");
267
+ this.an = this.ac.createElement("div");
268
+ this.an.append(this.am);
269
+ this.an.append(this.ag);
270
+ this.m.appendPopupContent(this.an);
271
+ };
272
+ MultiColumnComboBoxView.prototype.bu = function (a, b) {
273
+ };
274
+ MultiColumnComboBoxView.prototype.bx = function (a, b, c) {
275
+ };
276
+ MultiColumnComboBoxView.prototype.bt = function () {
277
+ switch (this.c) {
278
+ case 2:
279
+ case 1:
280
+ if (null == this.a) {
281
+ this.c = 0;
282
+ }
283
+ break;
284
+ }
285
+ var a = null;
286
+ switch (this.c) {
287
+ case 2:
288
+ {
289
+ var b = this.a.actualCount;
290
+ if (b == 0) {
291
+ this.g.value = null;
292
+ }
293
+ else {
294
+ if (b > 1) {
295
+ }
296
+ a = this.a.getItemAtIndex(0);
297
+ var c = this.g.i();
298
+ var d = new List$1(Base.$, 0);
299
+ for (var f = 0; f < c.length; f++) {
300
+ var e = c[f];
301
+ var g = this.a.getItemProperty(a, e);
302
+ d.add1(g);
303
+ }
304
+ this.g.value = d.count == 1 ? d._inner[0] : d.toArray();
305
+ }
306
+ }
307
+ break;
308
+ case 1:
309
+ {
310
+ var h = this.a.actualCount;
311
+ if (h == 0) {
312
+ this.g.text = stringEmpty();
313
+ }
314
+ else {
315
+ if (h > 1) {
316
+ }
317
+ var i = this.g.e5();
318
+ a = this.a.getItemAtIndex(0);
319
+ var j = this.a.getItemProperty(a, i).toString();
320
+ this.g.text = j;
321
+ }
322
+ var k = this.b();
323
+ var l = k.indexOfItem(a);
324
+ this.ch(l);
325
+ }
326
+ break;
327
+ case 0:
328
+ default: return;
329
+ }
330
+ if (null != a) {
331
+ var m = this.b();
332
+ var n = m.indexOfItem(a);
333
+ this.ch(n);
334
+ }
335
+ else {
336
+ this.ch(-1);
337
+ }
338
+ if (this.a != null) {
339
+ this.a.updateNotifier = null;
340
+ this.a = null;
341
+ }
342
+ this.c = 0;
343
+ };
344
+ MultiColumnComboBoxView.prototype.bv = function (a, b) {
345
+ };
346
+ MultiColumnComboBoxView.prototype.bw = function (a, b) {
347
+ };
348
+ MultiColumnComboBoxView.prototype.b0 = function (a, b) {
349
+ var c = this.e;
350
+ if (null != c) {
351
+ var d = c.activeCell;
352
+ if (null != d) {
353
+ if (d.b >= a && d.b <= b) {
354
+ this.cf(d.b);
355
+ this.cy();
356
+ }
357
+ }
358
+ }
359
+ };
360
+ MultiColumnComboBoxView.prototype.b5 = function (a, b, c) {
361
+ };
362
+ MultiColumnComboBoxView.prototype.bs = function () {
363
+ this.b8();
364
+ if (this.w) {
365
+ var a = this.b();
366
+ var b = a.actualCount;
367
+ if (this.aa && b > 0) {
368
+ this.ca();
369
+ }
370
+ else {
371
+ this.cb();
372
+ }
373
+ }
374
+ else {
375
+ this.cw();
376
+ }
377
+ };
378
+ MultiColumnComboBoxView.prototype.b1 = function (a, b) {
379
+ };
380
+ MultiColumnComboBoxView.prototype.b3 = function (a, b) {
381
+ };
382
+ MultiColumnComboBoxView.prototype.o = function () {
383
+ var a = document.activeElement;
384
+ return this.u(a);
385
+ };
386
+ MultiColumnComboBoxView.prototype.a3 = function () {
387
+ this.c1();
388
+ this.bp();
389
+ var a = this.n;
390
+ if (a.ax) {
391
+ return;
392
+ }
393
+ var b = this.c4();
394
+ a.am = !this.w;
395
+ if (this.f.bo) {
396
+ a.cr(this.ac.rootWrapper.getNativeElement(), 1, 1);
397
+ }
398
+ else {
399
+ a.showRelativeToExclusionRect(b, 1, 1);
400
+ }
401
+ this.co();
402
+ };
403
+ MultiColumnComboBoxView.prototype.c4 = function () {
404
+ var a = this.ac.rootWrapper.getNativeElement();
405
+ var b = (a.getBoundingClientRect());
406
+ return new Rect(0, b.left + window.pageXOffset, b.top + window.pageYOffset, b.width, b.height);
407
+ };
408
+ MultiColumnComboBoxView.prototype.b = function () {
409
+ var a = this.e;
410
+ if (null != a) {
411
+ return a.actualDataSource;
412
+ }
413
+ return null;
414
+ };
415
+ MultiColumnComboBoxView.prototype.q = function (a) {
416
+ var b = this.d.selectedItems;
417
+ var c = b.count;
418
+ if (0 == c) {
419
+ a = null;
420
+ return {
421
+ ret: true,
422
+ p0: a
423
+ };
424
+ }
425
+ else if (1 == c) {
426
+ a = b._inner[0];
427
+ }
428
+ else {
429
+ a = b._inner[0];
430
+ }
431
+ return {
432
+ ret: null != a,
433
+ p0: a
434
+ };
435
+ };
436
+ MultiColumnComboBoxView.prototype.a8 = function (a) {
437
+ var b = null != a ? a.b : -1;
438
+ this.cf(b);
439
+ };
440
+ MultiColumnComboBoxView.prototype.bc = function () {
441
+ var _this = this;
442
+ if (this.v) {
443
+ return;
444
+ }
445
+ var a = this.g;
446
+ var b;
447
+ var c = ((function () { var d = _this.q(b); b = d.p0; return d.ret; })());
448
+ if (!c) {
449
+ return;
450
+ }
451
+ if (b == null) {
452
+ return;
453
+ }
454
+ a.gi(b);
455
+ };
456
+ MultiColumnComboBoxView.prototype.bp = function () {
457
+ this.n.b9();
458
+ };
459
+ MultiColumnComboBoxView.prototype.br = function () {
460
+ var a = this.n;
461
+ if (a.ax) {
462
+ this.az();
463
+ var b = this.j;
464
+ b.focus();
465
+ var c = b.cq;
466
+ var d = null != c ? b.cq.length : 0;
467
+ b.dr(d, d);
468
+ }
469
+ };
470
+ MultiColumnComboBoxView.prototype.by = function () {
471
+ this.k.an = true;
472
+ this.j.dp();
473
+ var a = new GotFocusEventArgs();
474
+ this.g.ge(a);
475
+ };
476
+ MultiColumnComboBoxView.prototype.bz = function () {
477
+ this.az();
478
+ this.k.j8();
479
+ var a = new LostFocusEventArgs();
480
+ this.g.gg(a);
481
+ };
482
+ MultiColumnComboBoxView.prototype.b4 = function (a) {
483
+ var e_1, _a;
484
+ if (a == null) {
485
+ this.ac = null;
486
+ try {
487
+ for (var _b = __values(fromEnum(this.ab)), _c = _b.next(); !_c.done; _c = _b.next()) {
488
+ var b = _c.value;
489
+ b();
490
+ }
491
+ }
492
+ catch (e_1_1) {
493
+ e_1 = { error: e_1_1 };
494
+ }
495
+ finally {
496
+ try {
497
+ if (_c && !_c.done && (_a = _b.return))
498
+ _a.call(_b);
499
+ }
500
+ finally {
501
+ if (e_1)
502
+ throw e_1.error;
503
+ }
504
+ }
505
+ this.ab.clear();
506
+ return;
507
+ }
508
+ this.ac = a;
509
+ var c = a.rootWrapper;
510
+ this.bg(c);
511
+ };
512
+ MultiColumnComboBoxView.prototype.b6 = function (a, b) {
513
+ var c = this.b();
514
+ if (null == c) {
515
+ return;
516
+ }
517
+ if (null != this.a) {
518
+ if (a != this.c) {
519
+ }
520
+ this.a.updateNotifier = null;
521
+ this.a = null;
522
+ }
523
+ this.c = a;
524
+ var d = new FilterFactory();
525
+ var e = null;
526
+ var f = null;
527
+ switch (a) {
528
+ case 2:
529
+ {
530
+ var g = this.g.e5();
531
+ if (stringIsNullOrEmpty(g)) {
532
+ return;
533
+ }
534
+ e = b.toString();
535
+ var h = d.property(g);
536
+ f = h.isEqualTo(e);
537
+ }
538
+ break;
539
+ case 1:
540
+ {
541
+ var i = this.g.i();
542
+ if (i == null || i.length < 1) {
543
+ return;
544
+ }
545
+ var j = typeCast(Array_$type, b) !== null ? b : [b];
546
+ if (i.length != j.length) {
547
+ return;
548
+ }
549
+ for (var k = 0; k < i.length; k++) {
550
+ var l = i[k];
551
+ e = j[k];
552
+ var m = d.property(l);
553
+ var n = m.isEqualTo(e);
554
+ if (null == f) {
555
+ f = n;
556
+ }
557
+ else {
558
+ f.and(n);
559
+ }
560
+ }
561
+ }
562
+ break;
563
+ case 0:
564
+ default: return;
565
+ }
566
+ this.a = c.clone();
567
+ this.a.filterExpressions.clear();
568
+ this.a.updateNotifier = new MultiColumnComboBoxDataSourceNotificationHandler(this, true);
569
+ this.a.filterExpressions.add(f);
570
+ if (!this.a.isVirtual) {
571
+ this.a.flushAutoRefresh();
572
+ }
573
+ };
574
+ MultiColumnComboBoxView.prototype.b7 = function () {
575
+ this.cu();
576
+ var a = this.f.text;
577
+ var b = this.au.length;
578
+ var c = !stringIsNullOrEmpty(a) ? a.length : 0;
579
+ if (this.x && !stringIsNullOrEmpty(this.au) && b > 0) {
580
+ b--;
581
+ }
582
+ this.j.dr(b, c);
583
+ };
584
+ MultiColumnComboBoxView.prototype.b8 = function () {
585
+ if (this.p) {
586
+ this.p = false;
587
+ this.a3();
588
+ }
589
+ };
590
+ MultiColumnComboBoxView.prototype.b9 = function (a) {
591
+ this.au = a;
592
+ this.aa = !this.y;
593
+ this.cc();
594
+ this.cj();
595
+ };
596
+ MultiColumnComboBoxView.prototype.ca = function () {
597
+ if (stringIsNullOrEmpty(this.au)) {
598
+ this.ay();
599
+ }
600
+ else {
601
+ this.ch(0);
602
+ }
603
+ this.b7();
604
+ this.w = false;
605
+ };
606
+ MultiColumnComboBoxView.prototype.cj = function () {
607
+ if (this.ae != null && this.j != null) {
608
+ if (this.g.bq == false) {
609
+ this.ae.setStyleProperty("display", "none");
610
+ }
611
+ else if ((this.g.value != null && this.g.value != "") || (this.j.cq != null && this.j.cq != "")) {
612
+ this.ae.show();
613
+ }
614
+ else {
615
+ this.ae.setStyleProperty("display", "none");
616
+ }
617
+ }
618
+ };
619
+ MultiColumnComboBoxView.prototype.a5 = function (a) {
620
+ if (this.j != null) {
621
+ this.j.disabled = !a;
622
+ }
623
+ };
624
+ MultiColumnComboBoxView.prototype.cb = function () {
625
+ var a = this.d;
626
+ a.selectedItemsChanged = delegateRemove(a.selectedItemsChanged, runOn(this, this.bd));
627
+ this.v = true;
628
+ try {
629
+ this.g.gq(this.au);
630
+ }
631
+ finally {
632
+ this.v = false;
633
+ var b = this.d;
634
+ b.selectedItemsChanged = delegateCombine(b.selectedItemsChanged, runOn(this, this.bd));
635
+ }
636
+ this.w = false;
637
+ };
638
+ MultiColumnComboBoxView.prototype.cc = function () {
639
+ var a = this.g.p();
640
+ if (null == a) {
641
+ return;
642
+ }
643
+ this.w = true;
644
+ if (stringIsNullOrEmpty(this.au)) {
645
+ if (null != a.g1) {
646
+ this.aw(null);
647
+ }
648
+ else {
649
+ this.cb();
650
+ }
651
+ }
652
+ else {
653
+ var b = new ColumnComparisonFilterCondition();
654
+ b.operator = 14;
655
+ b.value = this.au;
656
+ b.isCaseSensitive = false;
657
+ this.aw(b);
658
+ }
659
+ };
660
+ MultiColumnComboBoxView.prototype.cd = function () {
661
+ this.ap = 0;
662
+ this.x = false;
663
+ };
664
+ MultiColumnComboBoxView.prototype.cf = function (a) {
665
+ var b = this.b();
666
+ var c = b.isPlaceholderItem(a);
667
+ if (c) {
668
+ }
669
+ else {
670
+ var d = this.e;
671
+ if (a < 0) {
672
+ this.s = false;
673
+ d.selectedItems.clear();
674
+ if (!this.s) {
675
+ this.bc();
676
+ }
677
+ return;
678
+ }
679
+ d.selectedItemsChanged = delegateRemove(d.selectedItemsChanged, runOn(this, this.bd));
680
+ try {
681
+ d.selectedItems.clear();
682
+ }
683
+ finally {
684
+ d.selectedItemsChanged = delegateCombine(d.selectedItemsChanged, runOn(this, this.bd));
685
+ }
686
+ if (a >= 0) {
687
+ var e = b.getItemAtIndex(a);
688
+ this.s = false;
689
+ d.selectedItems.add1(e);
690
+ if (!this.s) {
691
+ this.bc();
692
+ }
693
+ }
694
+ }
695
+ };
696
+ MultiColumnComboBoxView.prototype.ch = function (a) {
697
+ var b = this.e;
698
+ if (-1 == a) {
699
+ b.activeCell = null;
700
+ return;
701
+ }
702
+ var c = b.activeCell;
703
+ var d = new GridCellPosition();
704
+ var e;
705
+ if (null != c) {
706
+ e = c.d;
707
+ }
708
+ else {
709
+ if (b.actualColumns.count == 0) {
710
+ this.ao = a;
711
+ return;
712
+ }
713
+ var f = this.g;
714
+ var g = this.g.p();
715
+ e = g.lt();
716
+ }
717
+ d.d = e;
718
+ d.b = a;
719
+ this.r = false;
720
+ b.activeCell = d;
721
+ if (!this.r) {
722
+ this.a8(b.activeCell);
723
+ }
724
+ this.cy();
725
+ };
726
+ MultiColumnComboBoxView.prototype.cl = function (a) {
727
+ this.b6(2, a);
728
+ };
729
+ MultiColumnComboBoxView.prototype.ck = function (a) {
730
+ this.b6(1, a);
731
+ };
732
+ MultiColumnComboBoxView.prototype.cm = function () {
733
+ var a = this.g;
734
+ if (null != this.k) {
735
+ this.k.t = a.density;
736
+ this.k.p = a.ah;
737
+ this.k.d = a.ac;
738
+ this.k.mc = a.hl;
739
+ this.k.md = a.hm;
740
+ this.k.c0 = a.cc;
741
+ this.k.oi = a.il;
742
+ this.k.ks = a.gw;
743
+ this.k.t = a.am;
744
+ this.k.no = a.hn;
745
+ this.k.eg = a.cd;
746
+ this.k.np = a.ho;
747
+ this.k.eh = a.ce;
748
+ this.k.ei = a.cf;
749
+ this.k.nq = a.hp;
750
+ this.k.ej = a.cg;
751
+ this.k.ek = a.ch;
752
+ this.k.n6 = a.hu;
753
+ this.k.e5 = a.ci;
754
+ this.k.n7 = a.hv;
755
+ this.k.e6 = a.cj;
756
+ this.k.e7 = a.ck;
757
+ this.k.e8 = a.cl;
758
+ }
759
+ if (null != this.j) {
760
+ this.j.d8 = a.ht;
761
+ this.j.af = a.ax;
762
+ this.j.cg = a.fn;
763
+ }
764
+ if (null != this.l) {
765
+ this.l.text = a.fb;
766
+ this.l.dj = a.hq;
767
+ this.l.y = a.av;
768
+ }
769
+ if (null != this.am) {
770
+ NativeUI.q(this.am, a.hs);
771
+ NativeUI.m(this.am, a.hr);
772
+ if (null != a.aw) {
773
+ this.am.setStyleProperty("font", a.aw.fontString);
774
+ }
775
+ this.am.setRawText(a.actualNoMatchesFoundLabel);
776
+ this.bp();
777
+ }
778
+ if (null != this.d) {
779
+ this.d.density = a.density;
780
+ var b = a.columnHeadersVisible;
781
+ this.d.headerHeight = b ? -1 : 0;
782
+ this.d.rowSeparatorHeight = a.rowSeparatorsVisible ? 1 : 0;
783
+ }
784
+ if (null != this.af) {
785
+ var c = a.dropDownButtonVisible;
786
+ MultiColumnComboBoxUtilities.c(this.af, c);
787
+ }
788
+ };
789
+ MultiColumnComboBoxView.prototype.cu = function () {
790
+ if (!this.v) {
791
+ if (null != this.j) {
792
+ var a = this.f.text;
793
+ this.j.cq = a;
794
+ }
795
+ }
796
+ };
797
+ MultiColumnComboBoxView.prototype.co = function () {
798
+ var a = this.n;
799
+ var b = null != a ? a.ax : false;
800
+ this.i.svgPath = b ? MultiColumnComboBoxView.as : MultiColumnComboBoxView.at;
801
+ };
802
+ MultiColumnComboBoxView.prototype.ct = function () {
803
+ var a = this.d.actualHeaderHeight + 3;
804
+ var b = this.d.actualRowHeight + this.d.rowSeparatorHeight;
805
+ var c = this.d.actualDataSource;
806
+ var d = null != c ? c.actualCount : 0;
807
+ if (d > 8) {
808
+ d = 8;
809
+ }
810
+ var e = d * b;
811
+ e += a;
812
+ var f = stringFormat("{0}px", e);
813
+ this.ag.setStyleProperty("height", f);
814
+ var g = 0;
815
+ var h = this.d.actualColumns.count;
816
+ var i = 100;
817
+ if (this.d.defaultColumnWidth != null) {
818
+ i = this.d.defaultColumnWidth.f;
819
+ }
820
+ g = h * i;
821
+ this.d.defaultColumnMinWidth = 0;
822
+ g += 2;
823
+ var j = stringFormat("{0}px", g);
824
+ this.ag.setStyleProperty("width", j);
825
+ if (null != this.am) {
826
+ var k = this.g;
827
+ var l = MultiColumnComboBoxUtilities.e(this.ad, k.actualNoMatchesFoundLabel, k.av);
828
+ var m = l.width;
829
+ var n = l.height;
830
+ var o = stringFormat("{0}px", m);
831
+ var p = stringFormat("{0}px", n);
832
+ this.am.setStyleProperty("width", o);
833
+ this.am.setStyleProperty("height", p);
834
+ }
835
+ };
836
+ MultiColumnComboBoxView.prototype.cv = function () {
837
+ if (this.w) {
838
+ return;
839
+ }
840
+ this.au = null;
841
+ var a = this.g.p();
842
+ if (null != a) {
843
+ var b = a.g1;
844
+ if (null != b) {
845
+ a.g1 = null;
846
+ }
847
+ else {
848
+ this.cw();
849
+ }
850
+ }
851
+ };
852
+ MultiColumnComboBoxView.prototype.cw = function () {
853
+ var a = this.g;
854
+ if (null != a.value) {
855
+ var b = this.g.value;
856
+ var c = typeCast(Array_$type, b) !== null ? b : [b];
857
+ var d = this.b();
858
+ var e = d.indexOfKey(c);
859
+ if (-1 != e) {
860
+ this.ch(e);
861
+ }
862
+ }
863
+ };
864
+ MultiColumnComboBoxView.prototype.cx = function () {
865
+ var _this = this;
866
+ if (null == this.d) {
867
+ this.ac.getPortal(this.ag, "DataGrid", function (a) {
868
+ _this.aq = a.componentRef;
869
+ _this.aq.height = '100%';
870
+ _this.aq.width = '100%';
871
+ _this.d = (_this.aq.i);
872
+ _this.cz();
873
+ _this.d.selectionMode = 1;
874
+ _this.d.selectionBehavior = 0;
875
+ _this.d.activationMode = 1;
876
+ _this.d.defaultColumnWidth = _this.f.defaultColumnWidth;
877
+ _this.cr();
878
+ _this.d.editMode = 0;
879
+ _this.d.isColumnOptionsEnabled = false;
880
+ _this.d.isActiveCellStyleEnabled = false;
881
+ _this.d.cornerRadius = new CornerRadius(0, 0);
882
+ _this.d.ix = false;
883
+ var b = _this.d;
884
+ b.activeCellChanged = delegateCombine(b.activeCellChanged, runOn(_this, _this.a7));
885
+ var c = _this.d;
886
+ c.selectedItemsChanged = delegateCombine(c.selectedItemsChanged, runOn(_this, _this.bd));
887
+ var d = _this.d;
888
+ d.cellClicked = delegateCombine(d.cellClicked, runOn(_this, _this.ba));
889
+ var e = _this.d;
890
+ e.sizeChanged = delegateCombine(e.sizeChanged, runOn(_this, _this.be));
891
+ var f = _this.d;
892
+ f.viewportChanged = delegateCombine(f.viewportChanged, runOn(_this, _this.bf));
893
+ var g = _this.d;
894
+ g.actualColumnsChanged = delegateCombine(g.actualColumnsChanged, runOn(_this, _this.a9));
895
+ var h = _this.d;
896
+ h.columnWidthChanged = delegateCombine(h.columnWidthChanged, runOn(_this, _this.bb));
897
+ _this.cm();
898
+ }, false);
899
+ }
900
+ };
901
+ MultiColumnComboBoxView.prototype.cn = function (a) {
902
+ if (this.d != null) {
903
+ this.d.defaultColumnWidth = a;
904
+ this.ct();
905
+ }
906
+ };
907
+ MultiColumnComboBoxView.prototype.cr = function () {
908
+ if (this.d != null) {
909
+ var a = 0;
910
+ switch (this.f.x) {
911
+ case 0:
912
+ a = 0;
913
+ break;
914
+ case 1:
915
+ a = 1;
916
+ break;
917
+ case 2:
918
+ a = 2;
919
+ break;
920
+ case 3:
921
+ a = 3;
922
+ break;
923
+ case 4:
924
+ a = 4;
925
+ break;
926
+ }
927
+ this.d.headerClickAction = a;
928
+ }
929
+ };
930
+ MultiColumnComboBoxView.prototype.cy = function () {
931
+ if (!this.t) {
932
+ return;
933
+ }
934
+ var a = this.d;
935
+ var b = a.activeCell;
936
+ if (null != b) {
937
+ var c = this.b();
938
+ if (null != c) {
939
+ var d = c.getItemAtIndex(b.b);
940
+ if (null == d) {
941
+ return;
942
+ }
943
+ a.scrollToItem(d);
944
+ }
945
+ }
946
+ else {
947
+ a.scrollToRowByIndex(0);
948
+ }
949
+ };
950
+ MultiColumnComboBoxView.prototype.cz = function () {
951
+ if (null != this.aq) {
952
+ var a = this.g;
953
+ var b = a.itemsSource;
954
+ this.d.selectedItems.clear();
955
+ if (this.d.actualDataSource != null) {
956
+ var c = this.d.actualDataSource;
957
+ c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.av));
958
+ }
959
+ this.aq.dataSource = b;
960
+ this.aq.autoGenerateDesiredProperties = a.g;
961
+ this.d.primaryKey = a.i();
962
+ this.ao = -1;
963
+ var d = this.b();
964
+ if (null != d) {
965
+ var e = d.updateNotifier;
966
+ var f = new MultiColumnComboBoxDataSourceNotificationHandler(this, false);
967
+ var g = new MultipleDataSourceNotifier(1, [e, f]);
968
+ d.updateNotifier = g;
969
+ d.propertiesRequested = a.f;
970
+ d.schemaChanged = delegateCombine(d.schemaChanged, runOn(this, this.av));
971
+ if (this.g.value != null) {
972
+ this.b6(1, this.g.value);
973
+ }
974
+ }
975
+ this.a = null;
976
+ if (this.n != null && this.n.ax) {
977
+ this.c1();
978
+ this.n.b9();
979
+ }
980
+ }
981
+ };
982
+ MultiColumnComboBoxView.prototype.av = function (a, b) {
983
+ if (this.ao != -1) {
984
+ this.ch(this.ao);
985
+ this.ao = -1;
986
+ }
987
+ };
988
+ MultiColumnComboBoxView.prototype.c0 = function () {
989
+ if (null != this.aj) {
990
+ var a = this.f.actualLabelVisible;
991
+ if (a) {
992
+ this.k.appendContentChild(this.aj);
993
+ this.k.inputs.add(this.l);
994
+ }
995
+ else {
996
+ this.k.j7(this.aj);
997
+ this.k.inputs.remove(this.l);
998
+ }
999
+ }
1000
+ };
1001
+ MultiColumnComboBoxView.prototype.cg = function (a) {
1002
+ if (this.j != null) {
1003
+ this.j.disabled = !a;
1004
+ }
1005
+ if (this.k != null) {
1006
+ this.k.disabled = !a;
1007
+ }
1008
+ };
1009
+ MultiColumnComboBoxView.prototype.c1 = function () {
1010
+ this.ct();
1011
+ if (!this.w) {
1012
+ this.z = false;
1013
+ }
1014
+ else {
1015
+ var a = this.b();
1016
+ this.z = a.actualCount == 0;
1017
+ }
1018
+ MultiColumnComboBoxUtilities.c(this.am, this.z);
1019
+ MultiColumnComboBoxUtilities.c(this.ag, !this.z);
1020
+ };
1021
+ MultiColumnComboBoxView.prototype.a6 = function (a) {
1022
+ if (this.j != null) {
1023
+ this.j.focus(a);
1024
+ }
1025
+ };
1026
+ MultiColumnComboBoxView.prototype.ce = function () {
1027
+ if (this.j != null) {
1028
+ this.j.dp();
1029
+ }
1030
+ };
1031
+ MultiColumnComboBoxView.prototype.ci = function (a) {
1032
+ if (this.j != null) {
1033
+ this.j.e = a;
1034
+ }
1035
+ };
1036
+ Object.defineProperty(MultiColumnComboBoxView.prototype, "al", {
1037
+ get: function () {
1038
+ return this.ak;
1039
+ },
1040
+ enumerable: false,
1041
+ configurable: true
1042
+ });
1043
+ Object.defineProperty(MultiColumnComboBoxView.prototype, "g", {
1044
+ get: function () {
1045
+ return this.f;
1046
+ },
1047
+ enumerable: false,
1048
+ configurable: true
1049
+ });
1050
+ Object.defineProperty(MultiColumnComboBoxView.prototype, "ad", {
1051
+ get: function () {
1052
+ return this.ac;
1053
+ },
1054
+ enumerable: false,
1055
+ configurable: true
1056
+ });
1057
+ MultiColumnComboBoxView.prototype.c2 = function () {
1058
+ if (null != this.al) {
1059
+ this.al.setStyleProperty("box-sizing", "border-box");
1060
+ }
1061
+ };
1062
+ MultiColumnComboBoxView.prototype.a2 = function (a) {
1063
+ var b = a.target;
1064
+ if (!this.o()) {
1065
+ this.bz();
1066
+ }
1067
+ };
1068
+ MultiColumnComboBoxView.prototype.ax = function (a) {
1069
+ this.d.selectedItems.clear();
1070
+ this.j.cq = "";
1071
+ this.g.text = "";
1072
+ this.g.value = null;
1073
+ };
1074
+ MultiColumnComboBoxView.prototype.a4 = function (a) {
1075
+ var b = this.n;
1076
+ if (b.ax) {
1077
+ this.az();
1078
+ }
1079
+ else {
1080
+ this.aw(null);
1081
+ }
1082
+ if (null != this.j) {
1083
+ this.j.focus();
1084
+ this.j.dp();
1085
+ }
1086
+ };
1087
+ MultiColumnComboBoxView.prototype.a7 = function (a, b) {
1088
+ var c = b.newActiveCell;
1089
+ this.a8(c);
1090
+ this.r = true;
1091
+ };
1092
+ MultiColumnComboBoxView.prototype.a9 = function (a, b) {
1093
+ this.cv();
1094
+ };
1095
+ MultiColumnComboBoxView.prototype.ba = function (a, b) {
1096
+ if (typeCast(TextHeaderCellModel.$, b.cellInfo) !== null) {
1097
+ return;
1098
+ }
1099
+ this.br();
1100
+ };
1101
+ MultiColumnComboBoxView.prototype.bb = function (a, b) {
1102
+ this.ct();
1103
+ this.bp();
1104
+ };
1105
+ MultiColumnComboBoxView.prototype.bd = function (a, b) {
1106
+ this.bc();
1107
+ this.s = true;
1108
+ this.cj();
1109
+ };
1110
+ MultiColumnComboBoxView.prototype.be = function (a, b) {
1111
+ this.t = b.b != 0 && b.a != 0;
1112
+ this.cy();
1113
+ };
1114
+ MultiColumnComboBoxView.prototype.bf = function (a, b) {
1115
+ this.cy();
1116
+ var c = this.d;
1117
+ c.viewportChanged = delegateRemove(c.viewportChanged, runOn(this, this.bf));
1118
+ };
1119
+ MultiColumnComboBoxView.prototype.bi = function (a, b) {
1120
+ if (b.isCompositionInProgress) {
1121
+ return;
1122
+ }
1123
+ this.f.gd(b);
1124
+ var c = b.value;
1125
+ this.b9(c);
1126
+ };
1127
+ MultiColumnComboBoxView.prototype.bj = function (a, b) {
1128
+ var c = this.j.cq;
1129
+ this.b9(c);
1130
+ };
1131
+ MultiColumnComboBoxView.prototype.bk = function (a, b) {
1132
+ this.cd();
1133
+ };
1134
+ MultiColumnComboBoxView.prototype.bl = function (a, b) {
1135
+ this.f.gf(b);
1136
+ if (b.defaultPrevented) {
1137
+ return;
1138
+ }
1139
+ var c = b.keyCode;
1140
+ this.ap = c;
1141
+ this.x = false;
1142
+ var d = b.modifiers;
1143
+ switch (c) {
1144
+ case 8:
1145
+ var e = this.j.selectionStart;
1146
+ if (0 == e) {
1147
+ break;
1148
+ }
1149
+ var f = this.j.cq;
1150
+ if (stringIsNullOrEmpty(f)) {
1151
+ break;
1152
+ }
1153
+ var g = f.length;
1154
+ var h = this.j.selectionEnd;
1155
+ var i = h - e;
1156
+ if (i > 0 && i < g && h == g) {
1157
+ this.x = true;
1158
+ }
1159
+ break;
1160
+ case 40:
1161
+ if (d == 1) {
1162
+ this.a3();
1163
+ this.cv();
1164
+ b.preventDefault();
1165
+ }
1166
+ else {
1167
+ var j = this.e;
1168
+ if (null == j) {
1169
+ return;
1170
+ }
1171
+ var k = this.e.activeCell;
1172
+ if (null != j.activeCell) {
1173
+ this.d.kk(false, false);
1174
+ b.preventDefault();
1175
+ }
1176
+ else {
1177
+ var l = this.b();
1178
+ if (null != l) {
1179
+ var m = l.actualCount;
1180
+ if (m > 0) {
1181
+ this.ch(0);
1182
+ b.preventDefault();
1183
+ }
1184
+ }
1185
+ }
1186
+ }
1187
+ break;
1188
+ case 38:
1189
+ if (d == 1) {
1190
+ this.az();
1191
+ b.preventDefault();
1192
+ }
1193
+ else {
1194
+ var n = this.e;
1195
+ if (null == n) {
1196
+ return;
1197
+ }
1198
+ var o = this.e.activeCell;
1199
+ if (null != n.activeCell) {
1200
+ this.d.kx(false, false);
1201
+ b.preventDefault();
1202
+ }
1203
+ else {
1204
+ var p = this.b();
1205
+ if (null != p) {
1206
+ var q = p.actualCount;
1207
+ if (q > 0) {
1208
+ this.ch(q - 1);
1209
+ b.preventDefault();
1210
+ }
1211
+ }
1212
+ }
1213
+ }
1214
+ break;
1215
+ case 13:
1216
+ if (this.n.ax) {
1217
+ b.stopPropagation();
1218
+ }
1219
+ this.br();
1220
+ break;
1221
+ case 27:
1222
+ this.az();
1223
+ break;
1224
+ }
1225
+ };
1226
+ MultiColumnComboBoxView.prototype.bm = function (a, b) {
1227
+ if (false == this.o()) {
1228
+ this.j.dp();
1229
+ b.handled = true;
1230
+ }
1231
+ };
1232
+ MultiColumnComboBoxView.prototype.bn = function (a) {
1233
+ this.j.focus();
1234
+ var b = (a.originalEvent.relatedTarget);
1235
+ if (!this.u(b)) {
1236
+ this.by();
1237
+ }
1238
+ };
1239
+ MultiColumnComboBoxView.prototype.bo = function (a) {
1240
+ var b = (a.originalEvent.relatedTarget);
1241
+ if (!this.u(b)) {
1242
+ this.bz();
1243
+ }
1244
+ };
1245
+ MultiColumnComboBoxView.prototype.c3 = function (a) {
1246
+ var b = this.n;
1247
+ if (null == b || false == b.ax) {
1248
+ return;
1249
+ }
1250
+ var c = this.c4();
1251
+ this.m.ca(c);
1252
+ };
1253
+ MultiColumnComboBoxView.prototype.cq = function () {
1254
+ if (this.g.disallowTabFocus) {
1255
+ if (this.ai != null) {
1256
+ this.ai.setAttribute("tabIndex", "-1");
1257
+ }
1258
+ if (this.j != null) {
1259
+ this.j.be = -1;
1260
+ }
1261
+ }
1262
+ else {
1263
+ if (this.ai != null) {
1264
+ this.ai.setAttribute("tabIndex", "0");
1265
+ }
1266
+ if (this.j != null) {
1267
+ this.j.cu();
1268
+ }
1269
+ }
1270
+ };
1271
+ MultiColumnComboBoxView.prototype.cp = function () {
1272
+ if (this.m != null) {
1273
+ this.m.ar = this.g.bn;
1274
+ }
1275
+ };
1276
+ MultiColumnComboBoxView.prototype.cs = function () {
1277
+ if (this.m != null) {
1278
+ this.m.ay = this.g.br;
1279
+ }
1280
+ };
1281
+ MultiColumnComboBoxView.$t = markType(MultiColumnComboBoxView, 'MultiColumnComboBoxView');
1282
+ MultiColumnComboBoxView.ar = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z";
1283
+ MultiColumnComboBoxView.at = "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z";
1284
+ MultiColumnComboBoxView.as = "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z";
1285
+ return MultiColumnComboBoxView;
1286
+ }(Base));
1287
+ export { MultiColumnComboBoxView };
1288
+ /**
1289
+ * @hidden
1290
+ */
1291
+ var MultiColumnComboBox = /** @class */ /*@__PURE__*/ (function (_super) {
1292
+ __extends(MultiColumnComboBox, _super);
1293
+ function MultiColumnComboBox() {
1294
+ var _this = _super.call(this) || this;
1295
+ _this.dd = null;
1296
+ _this.h1 = XInputGroup.m.ad(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "BackgroundColor");
1297
+ _this.h2 = XInputGroup.m.ad(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "BorderColor");
1298
+ _this.co = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "BorderWidth");
1299
+ _this.io = XInputGroup.m.ai(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "ContentPadding");
1300
+ _this.gy = XInputGroup.m.y(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "CornerRadius");
1301
+ _this.h3 = XInputGroup.m.ad(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderColor");
1302
+ _this.cp = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderWidth");
1303
+ _this.h4 = XInputGroup.m.ad(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineColor");
1304
+ _this.cq = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineOpacity");
1305
+ _this.cr = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
1306
+ _this.h5 = XInputGroup.m.ad(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineColor");
1307
+ _this.cs = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineOpacity");
1308
+ _this.ct = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
1309
+ _this.h6 = XInputGroup.m.ad(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineColor");
1310
+ _this.cu = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineOpacity");
1311
+ _this.h7 = XInputGroup.m.ad(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleColor");
1312
+ _this.cv = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
1313
+ _this.cw = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleWidth");
1314
+ _this.cx = XInputGroup.m.i(MultiColumnComboBox.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
1315
+ _this.a5 = null;
1316
+ _this.a0 = null;
1317
+ _this.v = null;
1318
+ _this.a8 = false;
1319
+ _this.bc = true;
1320
+ _this.c = null;
1321
+ _this.m = ColumnWidth.a;
1322
+ _this.ha = null;
1323
+ _this.gz = ThemeResolver.af(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BackgroundColor");
1324
+ _this.af = 0;
1325
+ _this.ae = 1;
1326
+ _this.hb = null;
1327
+ _this.g0 = ThemeResolver.af(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BorderColor");
1328
+ _this.b2 = NaN;
1329
+ _this.bs = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BorderWidth");
1330
+ _this.bh = true;
1331
+ _this.ik = new Thickness(1, NaN, NaN, NaN, NaN);
1332
+ _this.ij = ThemeResolver.ak(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "ContentPadding");
1333
+ _this.gv = new CornerRadius(1, NaN, NaN, NaN, NaN);
1334
+ _this.gu = ThemeResolver.aa(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "CornerRadius");
1335
+ _this.b = null;
1336
+ _this.al = 0;
1337
+ _this.ak = 0;
1338
+ _this.bk = true;
1339
+ _this.hc = null;
1340
+ _this.g1 = ThemeResolver.af(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderColor");
1341
+ _this.b3 = NaN;
1342
+ _this.bt = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderWidth");
1343
+ _this.hd = null;
1344
+ _this.g2 = ThemeResolver.af(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineColor");
1345
+ _this.b4 = NaN;
1346
+ _this.bu = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineOpacity");
1347
+ _this.b5 = NaN;
1348
+ _this.bv = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
1349
+ _this.he = null;
1350
+ _this.g3 = ThemeResolver.af(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineColor");
1351
+ _this.b6 = NaN;
1352
+ _this.bw = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineOpacity");
1353
+ _this.b7 = NaN;
1354
+ _this.bx = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
1355
+ _this.c7 = null;
1356
+ _this.fd = null;
1357
+ _this.hf = null;
1358
+ _this.g4 = MultiColumnComboBox.hy;
1359
+ _this.as = null;
1360
+ _this.ap = null;
1361
+ _this.be = false;
1362
+ _this.fg = null;
1363
+ _this.d1 = "No Matches Found";
1364
+ _this.hg = null;
1365
+ _this.g5 = MultiColumnComboBox.hz;
1366
+ _this.hh = null;
1367
+ _this.g6 = MultiColumnComboBox.h0;
1368
+ _this.at = null;
1369
+ _this.aq = null;
1370
+ _this.fo = "";
1371
+ _this.bb = true;
1372
+ _this.hi = MultiColumnComboBox.h8;
1373
+ _this.g7 = MultiColumnComboBox.h8;
1374
+ _this.au = null;
1375
+ _this.ar = null;
1376
+ _this.hj = null;
1377
+ _this.g8 = ThemeResolver.af(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineColor");
1378
+ _this.b8 = NaN;
1379
+ _this.by = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineOpacity");
1380
+ _this.hk = null;
1381
+ _this.g9 = ThemeResolver.af(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleColor");
1382
+ _this.b9 = NaN;
1383
+ _this.bz = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleOpacity");
1384
+ _this.ca = NaN;
1385
+ _this.b0 = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleWidth");
1386
+ _this.cb = NaN;
1387
+ _this.b1 = ThemeResolver.k(MultiColumnComboBox.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineWidth");
1388
+ _this.a7 = true;
1389
+ _this.w = 0;
1390
+ _this.dg = null;
1391
+ _this.df = null;
1392
+ _this.d = null;
1393
+ _this.a = null;
1394
+ _this.c8 = null;
1395
+ _this.aa = 0;
1396
+ _this.bm = false;
1397
+ _this.a9 = false;
1398
+ _this.ba = false;
1399
+ _this.bd = false;
1400
+ _this.gotFocus = null;
1401
+ _this.lostFocus = null;
1402
+ _this.textValueChanged = null;
1403
+ _this.selectedValueChanged = null;
1404
+ _this.keyDown = null;
1405
+ _this.change = null;
1406
+ _this.changing = null;
1407
+ _this.propertyChanged = null;
1408
+ _this.m = new ColumnWidth();
1409
+ _this.m.f = 100;
1410
+ var a = _this.u();
1411
+ _this.v = a;
1412
+ a.bh(_this);
1413
+ return _this;
1414
+ }
1415
+ Object.defineProperty(MultiColumnComboBox.prototype, "a6", {
1416
+ get: function () {
1417
+ if (this.a5 == null) {
1418
+ this.a5 = new SRProvider(this.v.ad);
1419
+ this.a5.cb("MultiColumnComboBox");
1420
+ }
1421
+ return this.a5;
1422
+ },
1423
+ enumerable: false,
1424
+ configurable: true
1425
+ });
1426
+ MultiColumnComboBox.prototype.u = function () {
1427
+ return new MultiColumnComboBoxView();
1428
+ };
1429
+ MultiColumnComboBox.prototype.gm = function (a, b, c) {
1430
+ switch (a) {
1431
+ case "BackgroundColor":
1432
+ this.hl = this.hw != null ? this.hw : this.h1;
1433
+ break;
1434
+ case "BorderColor":
1435
+ this.hm = this.hx != null ? this.hx : this.h2;
1436
+ break;
1437
+ case "BorderWidth":
1438
+ this.cc = !isNaN_(this.cm) ? this.cm : this.co;
1439
+ break;
1440
+ case "ContentPadding":
1441
+ this.il = XInputGroup.oh(this.im, this.io);
1442
+ break;
1443
+ case "CornerRadius":
1444
+ this.gw = XInputGroup.kr(this.gx, this.gy);
1445
+ break;
1446
+ case "FocusBorderColor":
1447
+ this.hn = this.h9 != null ? this.h9 : this.h3;
1448
+ break;
1449
+ case "FocusBorderWidth":
1450
+ this.cd = !isNaN_(this.cy) ? this.cy : this.cp;
1451
+ break;
1452
+ case "FocusUnderlineColor":
1453
+ this.ho = this.ia != null ? this.ia : this.h4;
1454
+ break;
1455
+ case "FocusUnderlineOpacity":
1456
+ this.ce = !isNaN_(this.cz) ? this.cz : this.cq;
1457
+ break;
1458
+ case "FocusUnderlineRippleOpacity":
1459
+ this.cf = !isNaN_(this.c0) ? this.c0 : this.cr;
1460
+ break;
1461
+ case "HoverUnderlineColor":
1462
+ this.hp = this.ib != null ? this.ib : this.h5;
1463
+ break;
1464
+ case "HoverUnderlineOpacity":
1465
+ this.cg = !isNaN_(this.c1) ? this.c1 : this.cs;
1466
+ break;
1467
+ case "HoverUnderlineWidth":
1468
+ this.ch = !isNaN_(this.c2) ? this.c2 : this.ct;
1469
+ break;
1470
+ case "ItemsSource":
1471
+ case "ValueField":
1472
+ case "DataSourceDesiredProperties":
1473
+ case "Fields":
1474
+ this.v.cz();
1475
+ break;
1476
+ case "DefaultColumnWidth":
1477
+ this.v.cn(this.defaultColumnWidth);
1478
+ break;
1479
+ case "LabelTextColor":
1480
+ this.hq = this.ic != null ? this.ic : MultiColumnComboBox.hy;
1481
+ break;
1482
+ case "LabelTextStyle":
1483
+ this.av = this.a2 != null ? this.a2 : MultiColumnComboBox.ay;
1484
+ break;
1485
+ case "NoMatchesFoundLabelTextColor":
1486
+ this.hs = this.ie != null ? this.ie : MultiColumnComboBox.h0;
1487
+ break;
1488
+ case "NoMatchesFoundLabelBackgroundColor":
1489
+ this.hr = this.id != null ? this.id : MultiColumnComboBox.hz;
1490
+ break;
1491
+ case "NoMatchesFoundLabelTextStyle":
1492
+ this.aw = this.a3 != null ? this.a3 : MultiColumnComboBox.az;
1493
+ break;
1494
+ case "UnderlineColor":
1495
+ this.hu = this.ih != null ? this.ih : this.h6;
1496
+ break;
1497
+ case "UnderlineOpacity":
1498
+ this.ci = !isNaN_(this.c3) ? this.c3 : this.cu;
1499
+ break;
1500
+ case "UnderlineRippleColor":
1501
+ this.hv = this.ii != null ? this.ii : this.h7;
1502
+ break;
1503
+ case "UnderlineRippleOpacity":
1504
+ this.cj = !isNaN_(this.c4) ? this.c4 : this.cv;
1505
+ break;
1506
+ case "UnderlineRippleWidth":
1507
+ this.ck = !isNaN_(this.c5) ? this.c5 : this.cw;
1508
+ break;
1509
+ case "UnderlineWidth":
1510
+ this.cl = !isNaN_(this.c6) ? this.c6 : this.cx;
1511
+ break;
1512
+ case "BaseTheme":
1513
+ this.ah = this.ai == 0 ? 1 : this.ai;
1514
+ break;
1515
+ case "Density":
1516
+ this.am = this.density == 0 ? 0 : this.density;
1517
+ break;
1518
+ case "TextColor":
1519
+ this.ht = this.ig != null ? this.ig : MultiColumnComboBox.h8;
1520
+ break;
1521
+ case "TextStyle":
1522
+ this.ax = this.a4 != null ? this.a4 : null;
1523
+ break;
1524
+ case "ActualDensity":
1525
+ case "ActualBaseTheme":
1526
+ case "ActualTextColor":
1527
+ case "ActualTextStyle":
1528
+ case "DisplayType":
1529
+ case "ActualBackgroundColor":
1530
+ case "ActualBorderColor":
1531
+ case "ActualBorderWidth":
1532
+ case "ActualContentPadding":
1533
+ case "ActualCornerRadius":
1534
+ case "ActualFocusBorderColor":
1535
+ case "ActualFocusBorderWidth":
1536
+ case "ActualFocusUnderlineColor":
1537
+ case "ActualFocusUnderlineOpacity":
1538
+ case "ActualFocusUnderlineRippleOpacity":
1539
+ case "ActualHoverUnderlineColor":
1540
+ case "ActualHoverUnderlineOpacity":
1541
+ case "ActualHoverUnderlineWidth":
1542
+ case "ActualLabelTextColor":
1543
+ case "ActualLabelTextStyle":
1544
+ case "ActualUnderlineColor":
1545
+ case "ActualUnderlineOpacity":
1546
+ case "ActualUnderlineRippleColor":
1547
+ case "ActualUnderlineRippleOpacity":
1548
+ case "ActualUnderlineRippleWidth":
1549
+ case "ActualUnderlineWidth":
1550
+ case "DropDownButtonVisible":
1551
+ case "ColumnHeadersVisible":
1552
+ case "RowSeparatorsVisible":
1553
+ case "ActualNoMatchesFoundLabel":
1554
+ case "ActualNoMatchesFoundLabelTextColor":
1555
+ case "ActualNoMatchesFoundLabelTextStyle":
1556
+ case MultiColumnComboBox.d3:
1557
+ this.v.cm();
1558
+ break;
1559
+ case "NoMatchesFoundLabel":
1560
+ this.actualNoMatchesFoundLabel = stringIsNullOrEmpty(this.fh) ? "No Matches Found" : this.fh;
1561
+ break;
1562
+ case "ActualLabelVisible":
1563
+ this.v.c0();
1564
+ break;
1565
+ case "Label":
1566
+ case "PlaceholderText":
1567
+ this.v.cm();
1568
+ this.actualLabelVisible = !stringIsNullOrEmpty(this.fd);
1569
+ break;
1570
+ case "Text":
1571
+ this.v.cu();
1572
+ var d = b != null ? b.toString() : null;
1573
+ var e = c != null ? c.toString() : null;
1574
+ this.gk(new MultiColumnComboBoxTextChangedEventArgs(d, e));
1575
+ this.gl(1, e);
1576
+ break;
1577
+ case "Value":
1578
+ this.gj(new MultiColumnComboBoxValueChangedEventArgs(b, c));
1579
+ this.gl(0, c);
1580
+ break;
1581
+ case "ShowClearButton":
1582
+ this.v.cj();
1583
+ break;
1584
+ case "AllowFilter":
1585
+ this.v.a5(this.bg);
1586
+ break;
1587
+ case "SortMode":
1588
+ this.v.cr();
1589
+ break;
1590
+ case "DisallowTabFocus":
1591
+ this.v.cq();
1592
+ break;
1593
+ case "IsFixed":
1594
+ this.v.cp();
1595
+ break;
1596
+ case "UseTopLayer":
1597
+ this.v.cs();
1598
+ break;
1599
+ }
1600
+ };
1601
+ MultiColumnComboBox.prototype.gt = function () {
1602
+ this.v.c2();
1603
+ };
1604
+ Object.defineProperty(MultiColumnComboBox.prototype, "a1", {
1605
+ get: function () {
1606
+ if (null == this.a0) {
1607
+ this.a0 = new FontInfo();
1608
+ this.a0.q = "Verdana";
1609
+ this.a0.f = DeviceUtils.f(16);
1610
+ }
1611
+ return this.a0;
1612
+ },
1613
+ enumerable: false,
1614
+ configurable: true
1615
+ });
1616
+ MultiColumnComboBox.prototype.focus = function (a) {
1617
+ this.v.a6(a);
1618
+ };
1619
+ MultiColumnComboBox.prototype.setName = function (a) {
1620
+ this.v.ci(a);
1621
+ };
1622
+ Object.defineProperty(MultiColumnComboBox.prototype, "disallowTabFocus", {
1623
+ get: function () {
1624
+ return this.a8;
1625
+ },
1626
+ set: function (a) {
1627
+ var b = this.a8;
1628
+ this.a8 = a;
1629
+ if (b != this.a8) {
1630
+ this.gh("DisallowTabFocus", b, this.a8);
1631
+ }
1632
+ },
1633
+ enumerable: false,
1634
+ configurable: true
1635
+ });
1636
+ Object.defineProperty(MultiColumnComboBox.prototype, "bq", {
1637
+ get: function () {
1638
+ return this.bc;
1639
+ },
1640
+ set: function (a) {
1641
+ var b = this.bc;
1642
+ this.bc = a;
1643
+ if (b != this.bc) {
1644
+ this.gh("ShowClearButton", b, this.bc);
1645
+ }
1646
+ },
1647
+ enumerable: false,
1648
+ configurable: true
1649
+ });
1650
+ Object.defineProperty(MultiColumnComboBox.prototype, "g", {
1651
+ get: function () {
1652
+ return this.c;
1653
+ },
1654
+ set: function (a) {
1655
+ var b = this.c;
1656
+ this.c = a;
1657
+ if (b != this.c) {
1658
+ this.gh("Fields", b, this.c);
1659
+ }
1660
+ },
1661
+ enumerable: false,
1662
+ configurable: true
1663
+ });
1664
+ Object.defineProperty(MultiColumnComboBox.prototype, "defaultColumnWidth", {
1665
+ get: function () {
1666
+ return this.m;
1667
+ },
1668
+ set: function (a) {
1669
+ var b = this.m;
1670
+ this.m = a;
1671
+ if (b != this.m) {
1672
+ this.gh("DefaultColumnWidth", b, this.m);
1673
+ }
1674
+ },
1675
+ enumerable: false,
1676
+ configurable: true
1677
+ });
1678
+ Object.defineProperty(MultiColumnComboBox.prototype, "hw", {
1679
+ get: function () {
1680
+ return this.ha;
1681
+ },
1682
+ set: function (a) {
1683
+ var b = this.ha;
1684
+ this.ha = a;
1685
+ if (b != this.ha) {
1686
+ this.gh("BackgroundColor", b, a);
1687
+ }
1688
+ },
1689
+ enumerable: false,
1690
+ configurable: true
1691
+ });
1692
+ Object.defineProperty(MultiColumnComboBox.prototype, "hl", {
1693
+ get: function () {
1694
+ return this.gz;
1695
+ },
1696
+ set: function (a) {
1697
+ var b = this.gz;
1698
+ this.gz = a;
1699
+ if (b != this.gz) {
1700
+ this.gh("ActualBackgroundColor", b, a);
1701
+ }
1702
+ },
1703
+ enumerable: false,
1704
+ configurable: true
1705
+ });
1706
+ Object.defineProperty(MultiColumnComboBox.prototype, "ai", {
1707
+ get: function () {
1708
+ return this.af;
1709
+ },
1710
+ set: function (a) {
1711
+ var b = this.af;
1712
+ this.af = a;
1713
+ if (b != this.af) {
1714
+ this.gh("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
1715
+ }
1716
+ },
1717
+ enumerable: false,
1718
+ configurable: true
1719
+ });
1720
+ Object.defineProperty(MultiColumnComboBox.prototype, "ah", {
1721
+ get: function () {
1722
+ return this.ae;
1723
+ },
1724
+ set: function (a) {
1725
+ var b = this.ae;
1726
+ this.ae = a;
1727
+ if (b != this.ae) {
1728
+ this.gh("ActualBaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
1729
+ }
1730
+ },
1731
+ enumerable: false,
1732
+ configurable: true
1733
+ });
1734
+ Object.defineProperty(MultiColumnComboBox.prototype, "hx", {
1735
+ get: function () {
1736
+ return this.hb;
1737
+ },
1738
+ set: function (a) {
1739
+ var b = this.hb;
1740
+ this.hb = a;
1741
+ if (b != this.hb) {
1742
+ this.gh("BorderColor", b, a);
1743
+ }
1744
+ },
1745
+ enumerable: false,
1746
+ configurable: true
1747
+ });
1748
+ Object.defineProperty(MultiColumnComboBox.prototype, "hm", {
1749
+ get: function () {
1750
+ return this.g0;
1751
+ },
1752
+ set: function (a) {
1753
+ var b = this.g0;
1754
+ this.g0 = a;
1755
+ if (b != this.g0) {
1756
+ this.gh("ActualBorderColor", b, a);
1757
+ }
1758
+ },
1759
+ enumerable: false,
1760
+ configurable: true
1761
+ });
1762
+ Object.defineProperty(MultiColumnComboBox.prototype, "cm", {
1763
+ get: function () {
1764
+ return this.b2;
1765
+ },
1766
+ set: function (a) {
1767
+ var b = this.b2;
1768
+ this.b2 = a;
1769
+ if (b != this.b2) {
1770
+ this.gh("BorderWidth", b, a);
1771
+ }
1772
+ },
1773
+ enumerable: false,
1774
+ configurable: true
1775
+ });
1776
+ Object.defineProperty(MultiColumnComboBox.prototype, "cc", {
1777
+ get: function () {
1778
+ return this.bs;
1779
+ },
1780
+ set: function (a) {
1781
+ var b = this.bs;
1782
+ this.bs = a;
1783
+ if (b != this.bs) {
1784
+ this.gh("ActualBorderWidth", b, a);
1785
+ }
1786
+ },
1787
+ enumerable: false,
1788
+ configurable: true
1789
+ });
1790
+ Object.defineProperty(MultiColumnComboBox.prototype, "columnHeadersVisible", {
1791
+ get: function () {
1792
+ return this.bh;
1793
+ },
1794
+ set: function (a) {
1795
+ var b = this.bh;
1796
+ this.bh = a;
1797
+ if (b != this.bh) {
1798
+ this.gh("ColumnHeadersVisible", b, a);
1799
+ }
1800
+ },
1801
+ enumerable: false,
1802
+ configurable: true
1803
+ });
1804
+ Object.defineProperty(MultiColumnComboBox.prototype, "im", {
1805
+ get: function () {
1806
+ return this.ik;
1807
+ },
1808
+ set: function (a) {
1809
+ var b = this.ik;
1810
+ this.ik = a;
1811
+ if (b != this.ik) {
1812
+ this.gh("ContentPadding", b, a);
1813
+ }
1814
+ },
1815
+ enumerable: false,
1816
+ configurable: true
1817
+ });
1818
+ Object.defineProperty(MultiColumnComboBox.prototype, "il", {
1819
+ get: function () {
1820
+ return this.ij;
1821
+ },
1822
+ set: function (a) {
1823
+ var b = this.ij;
1824
+ this.ij = a;
1825
+ if (b != this.ij) {
1826
+ this.gh("ActualContentPadding", b, a);
1827
+ }
1828
+ },
1829
+ enumerable: false,
1830
+ configurable: true
1831
+ });
1832
+ Object.defineProperty(MultiColumnComboBox.prototype, "gx", {
1833
+ get: function () {
1834
+ return this.gv;
1835
+ },
1836
+ set: function (a) {
1837
+ var b = this.gv;
1838
+ this.gv = a;
1839
+ if (b != this.gv) {
1840
+ this.gh("CornerRadius", b, a);
1841
+ }
1842
+ },
1843
+ enumerable: false,
1844
+ configurable: true
1845
+ });
1846
+ Object.defineProperty(MultiColumnComboBox.prototype, "gw", {
1847
+ get: function () {
1848
+ return this.gu;
1849
+ },
1850
+ set: function (a) {
1851
+ var b = this.gu;
1852
+ this.gu = a;
1853
+ if (b != this.gu) {
1854
+ this.gh("ActualCornerRadius", b, a);
1855
+ }
1856
+ },
1857
+ enumerable: false,
1858
+ configurable: true
1859
+ });
1860
+ Object.defineProperty(MultiColumnComboBox.prototype, "f", {
1861
+ get: function () {
1862
+ return this.b;
1863
+ },
1864
+ set: function (a) {
1865
+ var b = this.b;
1866
+ this.b = a;
1867
+ if (b != this.b) {
1868
+ this.gh("DataSourceDesiredProperties", b, this.b);
1869
+ }
1870
+ },
1871
+ enumerable: false,
1872
+ configurable: true
1873
+ });
1874
+ Object.defineProperty(MultiColumnComboBox.prototype, "density", {
1875
+ get: function () {
1876
+ return this.al;
1877
+ },
1878
+ set: function (a) {
1879
+ var b = this.al;
1880
+ this.al = a;
1881
+ if (b != this.al) {
1882
+ this.gh("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
1883
+ }
1884
+ },
1885
+ enumerable: false,
1886
+ configurable: true
1887
+ });
1888
+ Object.defineProperty(MultiColumnComboBox.prototype, "am", {
1889
+ get: function () {
1890
+ return this.ak;
1891
+ },
1892
+ set: function (a) {
1893
+ var b = this.ak;
1894
+ this.ak = a;
1895
+ if (b != this.ak) {
1896
+ this.gh("ActualDensity", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
1897
+ }
1898
+ },
1899
+ enumerable: false,
1900
+ configurable: true
1901
+ });
1902
+ Object.defineProperty(MultiColumnComboBox.prototype, "dropDownButtonVisible", {
1903
+ get: function () {
1904
+ return this.bk;
1905
+ },
1906
+ set: function (a) {
1907
+ var b = this.bk;
1908
+ this.bk = a;
1909
+ if (b != this.bk) {
1910
+ this.gh("DropDownButtonVisible", b, a);
1911
+ }
1912
+ },
1913
+ enumerable: false,
1914
+ configurable: true
1915
+ });
1916
+ Object.defineProperty(MultiColumnComboBox.prototype, "h9", {
1917
+ get: function () {
1918
+ return this.hc;
1919
+ },
1920
+ set: function (a) {
1921
+ var b = this.hc;
1922
+ this.hc = a;
1923
+ if (b != this.hc) {
1924
+ this.gh("FocusBorderColor", b, a);
1925
+ }
1926
+ },
1927
+ enumerable: false,
1928
+ configurable: true
1929
+ });
1930
+ Object.defineProperty(MultiColumnComboBox.prototype, "hn", {
1931
+ get: function () {
1932
+ return this.g1;
1933
+ },
1934
+ set: function (a) {
1935
+ var b = this.g1;
1936
+ this.g1 = a;
1937
+ if (b != this.g1) {
1938
+ this.gh("ActualFocusBorderColor", b, a);
1939
+ }
1940
+ },
1941
+ enumerable: false,
1942
+ configurable: true
1943
+ });
1944
+ Object.defineProperty(MultiColumnComboBox.prototype, "cy", {
1945
+ get: function () {
1946
+ return this.b3;
1947
+ },
1948
+ set: function (a) {
1949
+ var b = this.b3;
1950
+ this.b3 = a;
1951
+ if (b != this.b3) {
1952
+ this.gh("FocusBorderWidth", b, a);
1953
+ }
1954
+ },
1955
+ enumerable: false,
1956
+ configurable: true
1957
+ });
1958
+ Object.defineProperty(MultiColumnComboBox.prototype, "cd", {
1959
+ get: function () {
1960
+ return this.bt;
1961
+ },
1962
+ set: function (a) {
1963
+ var b = this.bt;
1964
+ this.bt = a;
1965
+ if (b != this.bt) {
1966
+ this.gh("ActualFocusBorderWidth", b, a);
1967
+ }
1968
+ },
1969
+ enumerable: false,
1970
+ configurable: true
1971
+ });
1972
+ Object.defineProperty(MultiColumnComboBox.prototype, "ia", {
1973
+ get: function () {
1974
+ return this.hd;
1975
+ },
1976
+ set: function (a) {
1977
+ var b = this.hd;
1978
+ this.hd = a;
1979
+ if (b != this.hd) {
1980
+ this.gh("FocusUnderlineColor", b, a);
1981
+ }
1982
+ },
1983
+ enumerable: false,
1984
+ configurable: true
1985
+ });
1986
+ Object.defineProperty(MultiColumnComboBox.prototype, "ho", {
1987
+ get: function () {
1988
+ return this.g2;
1989
+ },
1990
+ set: function (a) {
1991
+ var b = this.g2;
1992
+ this.hd = a;
1993
+ if (b != this.g2) {
1994
+ this.gh("ActualFocusUnderlineColor", b, a);
1995
+ }
1996
+ },
1997
+ enumerable: false,
1998
+ configurable: true
1999
+ });
2000
+ Object.defineProperty(MultiColumnComboBox.prototype, "cz", {
2001
+ get: function () {
2002
+ return this.b4;
2003
+ },
2004
+ set: function (a) {
2005
+ var b = this.b4;
2006
+ this.b4 = a;
2007
+ if (b != this.b4) {
2008
+ this.gh("FocusUnderlineOpacity", b, a);
2009
+ }
2010
+ },
2011
+ enumerable: false,
2012
+ configurable: true
2013
+ });
2014
+ Object.defineProperty(MultiColumnComboBox.prototype, "ce", {
2015
+ get: function () {
2016
+ return this.bu;
2017
+ },
2018
+ set: function (a) {
2019
+ var b = this.bu;
2020
+ this.bu = a;
2021
+ if (b != this.bu) {
2022
+ this.gh("ActualFocusUnderlineOpacity", b, a);
2023
+ }
2024
+ },
2025
+ enumerable: false,
2026
+ configurable: true
2027
+ });
2028
+ Object.defineProperty(MultiColumnComboBox.prototype, "c0", {
2029
+ get: function () {
2030
+ return this.b5;
2031
+ },
2032
+ set: function (a) {
2033
+ var b = this.b5;
2034
+ this.b5 = a;
2035
+ if (b != this.b5) {
2036
+ this.gh("FocusUnderlineRippleOpacity", b, a);
2037
+ }
2038
+ },
2039
+ enumerable: false,
2040
+ configurable: true
2041
+ });
2042
+ Object.defineProperty(MultiColumnComboBox.prototype, "cf", {
2043
+ get: function () {
2044
+ return this.bv;
2045
+ },
2046
+ set: function (a) {
2047
+ var b = this.bv;
2048
+ this.bv = a;
2049
+ if (b != this.bv) {
2050
+ this.gh("ActualFocusUnderlineRippleOpacity", b, a);
2051
+ }
2052
+ },
2053
+ enumerable: false,
2054
+ configurable: true
2055
+ });
2056
+ Object.defineProperty(MultiColumnComboBox.prototype, "ib", {
2057
+ get: function () {
2058
+ return this.he;
2059
+ },
2060
+ set: function (a) {
2061
+ var b = this.he;
2062
+ this.he = a;
2063
+ if (b != this.he) {
2064
+ this.gh("HoverUnderlineColor", b, a);
2065
+ }
2066
+ },
2067
+ enumerable: false,
2068
+ configurable: true
2069
+ });
2070
+ Object.defineProperty(MultiColumnComboBox.prototype, "hp", {
2071
+ get: function () {
2072
+ return this.g3;
2073
+ },
2074
+ set: function (a) {
2075
+ var b = this.g3;
2076
+ this.g3 = a;
2077
+ if (b != this.g3) {
2078
+ this.gh("ActualHoverUnderlineColor", b, a);
2079
+ }
2080
+ },
2081
+ enumerable: false,
2082
+ configurable: true
2083
+ });
2084
+ Object.defineProperty(MultiColumnComboBox.prototype, "c1", {
2085
+ get: function () {
2086
+ return this.b6;
2087
+ },
2088
+ set: function (a) {
2089
+ var b = this.b6;
2090
+ this.b6 = a;
2091
+ if (b != this.b6) {
2092
+ this.gh("HoverUnderlineOpacity", b, a);
2093
+ }
2094
+ },
2095
+ enumerable: false,
2096
+ configurable: true
2097
+ });
2098
+ Object.defineProperty(MultiColumnComboBox.prototype, "cg", {
2099
+ get: function () {
2100
+ return this.bw;
2101
+ },
2102
+ set: function (a) {
2103
+ var b = this.bw;
2104
+ this.bw = a;
2105
+ if (b != this.bw) {
2106
+ this.gh("ActualHoverUnderlineOpacity", b, a);
2107
+ }
2108
+ },
2109
+ enumerable: false,
2110
+ configurable: true
2111
+ });
2112
+ Object.defineProperty(MultiColumnComboBox.prototype, "c2", {
2113
+ get: function () {
2114
+ return this.b7;
2115
+ },
2116
+ set: function (a) {
2117
+ var b = this.b7;
2118
+ this.b7 = a;
2119
+ if (b != this.b7) {
2120
+ this.gh("HoverUnderlineWidth", b, a);
2121
+ }
2122
+ },
2123
+ enumerable: false,
2124
+ configurable: true
2125
+ });
2126
+ Object.defineProperty(MultiColumnComboBox.prototype, "ch", {
2127
+ get: function () {
2128
+ return this.bx;
2129
+ },
2130
+ set: function (a) {
2131
+ var b = this.bx;
2132
+ this.bx = a;
2133
+ if (b != this.bx) {
2134
+ this.gh("ActualHoverUnderlineWidth", b, a);
2135
+ }
2136
+ },
2137
+ enumerable: false,
2138
+ configurable: true
2139
+ });
2140
+ Object.defineProperty(MultiColumnComboBox.prototype, "itemsSource", {
2141
+ get: function () {
2142
+ return this.c7;
2143
+ },
2144
+ set: function (a) {
2145
+ var b = this.c7;
2146
+ this.c7 = a;
2147
+ if (b != this.c7) {
2148
+ this.gh("ItemsSource", b, this.c7);
2149
+ }
2150
+ },
2151
+ enumerable: false,
2152
+ configurable: true
2153
+ });
2154
+ Object.defineProperty(MultiColumnComboBox.prototype, "actualDataSource", {
2155
+ get: function () {
2156
+ return this.v.b();
2157
+ },
2158
+ enumerable: false,
2159
+ configurable: true
2160
+ });
2161
+ Object.defineProperty(MultiColumnComboBox.prototype, "fb", {
2162
+ get: function () {
2163
+ return this.fd;
2164
+ },
2165
+ set: function (a) {
2166
+ var b = this.fb;
2167
+ if (0 == StringComparer.b.compare(a, b)) {
2168
+ return;
2169
+ }
2170
+ this.fd = a;
2171
+ this.gh("Label", b, this.fd);
2172
+ },
2173
+ enumerable: false,
2174
+ configurable: true
2175
+ });
2176
+ Object.defineProperty(MultiColumnComboBox.prototype, "ic", {
2177
+ get: function () {
2178
+ return this.hf;
2179
+ },
2180
+ set: function (a) {
2181
+ var b = this.hf;
2182
+ this.hf = a;
2183
+ if (b != this.hf) {
2184
+ this.gh("LabelTextColor", b, a);
2185
+ }
2186
+ },
2187
+ enumerable: false,
2188
+ configurable: true
2189
+ });
2190
+ Object.defineProperty(MultiColumnComboBox.prototype, "hq", {
2191
+ get: function () {
2192
+ return this.g4;
2193
+ },
2194
+ set: function (a) {
2195
+ var b = this.g4;
2196
+ this.g4 = a;
2197
+ if (b != this.g4) {
2198
+ this.gh("ActualLabelTextColor", b, a);
2199
+ }
2200
+ },
2201
+ enumerable: false,
2202
+ configurable: true
2203
+ });
2204
+ Object.defineProperty(MultiColumnComboBox.prototype, "a2", {
2205
+ get: function () {
2206
+ return this.as;
2207
+ },
2208
+ set: function (a) {
2209
+ var b = this.as;
2210
+ this.as = a;
2211
+ if (b != this.as) {
2212
+ this.gh("LabelTextStyle", b, this.as);
2213
+ }
2214
+ },
2215
+ enumerable: false,
2216
+ configurable: true
2217
+ });
2218
+ Object.defineProperty(MultiColumnComboBox.prototype, "av", {
2219
+ get: function () {
2220
+ return this.ap;
2221
+ },
2222
+ set: function (a) {
2223
+ var b = this.ap;
2224
+ this.ap = a;
2225
+ if (this.ap != b) {
2226
+ this.gh("ActualLabelTextStyle", b, this.ap);
2227
+ }
2228
+ },
2229
+ enumerable: false,
2230
+ configurable: true
2231
+ });
2232
+ Object.defineProperty(MultiColumnComboBox.prototype, "actualLabelVisible", {
2233
+ get: function () {
2234
+ return this.be;
2235
+ },
2236
+ set: function (a) {
2237
+ var b = this.be;
2238
+ this.be = a;
2239
+ if (b != this.be) {
2240
+ this.gh("ActualLabelVisible", b, a);
2241
+ }
2242
+ },
2243
+ enumerable: false,
2244
+ configurable: true
2245
+ });
2246
+ Object.defineProperty(MultiColumnComboBox.prototype, "fh", {
2247
+ get: function () {
2248
+ return this.fg;
2249
+ },
2250
+ set: function (a) {
2251
+ var b = this.fg;
2252
+ if (0 == StringComparer.b.compare(a, b)) {
2253
+ return;
2254
+ }
2255
+ this.fg = a;
2256
+ this.gh("NoMatchesFoundLabel", b, this.fg);
2257
+ },
2258
+ enumerable: false,
2259
+ configurable: true
2260
+ });
2261
+ Object.defineProperty(MultiColumnComboBox.prototype, "actualNoMatchesFoundLabel", {
2262
+ get: function () {
2263
+ return this.d1;
2264
+ },
2265
+ set: function (a) {
2266
+ var b = this.d1;
2267
+ this.d1 = a;
2268
+ if (b != this.d1) {
2269
+ this.gh("ActualNoMatchesFoundLabel", b, a);
2270
+ }
2271
+ },
2272
+ enumerable: false,
2273
+ configurable: true
2274
+ });
2275
+ Object.defineProperty(MultiColumnComboBox.prototype, "id", {
2276
+ get: function () {
2277
+ return this.hg;
2278
+ },
2279
+ set: function (a) {
2280
+ var b = this.hg;
2281
+ this.hg = a;
2282
+ if (b != this.hg) {
2283
+ this.gh("NoMatchesFoundLabelBackgroundColor", b, a);
2284
+ }
2285
+ },
2286
+ enumerable: false,
2287
+ configurable: true
2288
+ });
2289
+ Object.defineProperty(MultiColumnComboBox.prototype, "hr", {
2290
+ get: function () {
2291
+ return this.g5;
2292
+ },
2293
+ set: function (a) {
2294
+ var b = this.g5;
2295
+ this.g5 = a;
2296
+ if (b != this.g5) {
2297
+ this.gh(MultiColumnComboBox.d3, b, a);
2298
+ }
2299
+ },
2300
+ enumerable: false,
2301
+ configurable: true
2302
+ });
2303
+ Object.defineProperty(MultiColumnComboBox.prototype, "ie", {
2304
+ get: function () {
2305
+ return this.hh;
2306
+ },
2307
+ set: function (a) {
2308
+ var b = this.hh;
2309
+ this.hh = a;
2310
+ if (b != this.hh) {
2311
+ this.gh("NoMatchesFoundLabelTextColor", b, a);
2312
+ }
2313
+ },
2314
+ enumerable: false,
2315
+ configurable: true
2316
+ });
2317
+ Object.defineProperty(MultiColumnComboBox.prototype, "hs", {
2318
+ get: function () {
2319
+ return this.g6;
2320
+ },
2321
+ set: function (a) {
2322
+ var b = this.g6;
2323
+ this.g6 = a;
2324
+ if (b != this.g6) {
2325
+ this.gh("ActualNoMatchesFoundLabelTextColor", b, a);
2326
+ }
2327
+ },
2328
+ enumerable: false,
2329
+ configurable: true
2330
+ });
2331
+ Object.defineProperty(MultiColumnComboBox.prototype, "a3", {
2332
+ get: function () {
2333
+ return this.at;
2334
+ },
2335
+ set: function (a) {
2336
+ var b = this.at;
2337
+ this.at = a;
2338
+ if (b != this.at) {
2339
+ this.gh("NoMatchesFoundLabelTextStyle", b, this.at);
2340
+ }
2341
+ },
2342
+ enumerable: false,
2343
+ configurable: true
2344
+ });
2345
+ Object.defineProperty(MultiColumnComboBox.prototype, "aw", {
2346
+ get: function () {
2347
+ return this.aq;
2348
+ },
2349
+ set: function (a) {
2350
+ var b = this.aq;
2351
+ this.aq = a;
2352
+ if (this.aq != b) {
2353
+ this.gh("ActualNoMatchesFoundLabelTextStyle", b, this.aq);
2354
+ }
2355
+ },
2356
+ enumerable: false,
2357
+ configurable: true
2358
+ });
2359
+ Object.defineProperty(MultiColumnComboBox.prototype, "fn", {
2360
+ get: function () {
2361
+ return this.fo;
2362
+ },
2363
+ set: function (a) {
2364
+ var b = this.fn;
2365
+ if (0 == StringComparer.b.compare(a, b)) {
2366
+ return;
2367
+ }
2368
+ this.fo = a;
2369
+ this.gh("PlaceholderText", b, this.fo);
2370
+ },
2371
+ enumerable: false,
2372
+ configurable: true
2373
+ });
2374
+ Object.defineProperty(MultiColumnComboBox.prototype, "rowSeparatorsVisible", {
2375
+ get: function () {
2376
+ return this.bb;
2377
+ },
2378
+ set: function (a) {
2379
+ var b = this.bb;
2380
+ this.bb = a;
2381
+ if (b != this.bb) {
2382
+ this.gh("RowSeparatorsVisible", b, a);
2383
+ }
2384
+ },
2385
+ enumerable: false,
2386
+ configurable: true
2387
+ });
2388
+ Object.defineProperty(MultiColumnComboBox.prototype, "ig", {
2389
+ get: function () {
2390
+ return this.hi;
2391
+ },
2392
+ set: function (a) {
2393
+ var b = this.hi;
2394
+ this.hi = a;
2395
+ if (b != this.hi) {
2396
+ this.gh("TextColor", b, a);
2397
+ }
2398
+ },
2399
+ enumerable: false,
2400
+ configurable: true
2401
+ });
2402
+ Object.defineProperty(MultiColumnComboBox.prototype, "ht", {
2403
+ get: function () {
2404
+ return this.g7;
2405
+ },
2406
+ set: function (a) {
2407
+ var b = this.g7;
2408
+ this.g7 = a;
2409
+ if (b != this.g7) {
2410
+ this.gh("ActualTextColor", b, a);
2411
+ }
2412
+ },
2413
+ enumerable: false,
2414
+ configurable: true
2415
+ });
2416
+ Object.defineProperty(MultiColumnComboBox.prototype, "a4", {
2417
+ get: function () {
2418
+ return this.au;
2419
+ },
2420
+ set: function (a) {
2421
+ var b = this.au;
2422
+ this.au = a;
2423
+ if (b != this.au) {
2424
+ this.gh("TextStyle", b, this.au);
2425
+ }
2426
+ },
2427
+ enumerable: false,
2428
+ configurable: true
2429
+ });
2430
+ Object.defineProperty(MultiColumnComboBox.prototype, "ax", {
2431
+ get: function () {
2432
+ return this.ar;
2433
+ },
2434
+ set: function (a) {
2435
+ var b = this.ar;
2436
+ this.ar = a;
2437
+ if (this.ar != b) {
2438
+ this.gh("ActualTextStyle", b, this.ar);
2439
+ }
2440
+ },
2441
+ enumerable: false,
2442
+ configurable: true
2443
+ });
2444
+ Object.defineProperty(MultiColumnComboBox.prototype, "ih", {
2445
+ get: function () {
2446
+ return this.hj;
2447
+ },
2448
+ set: function (a) {
2449
+ var b = this.hj;
2450
+ this.hj = a;
2451
+ if (b != this.hj) {
2452
+ this.gh("UnderlineColor", b, a);
2453
+ }
2454
+ },
2455
+ enumerable: false,
2456
+ configurable: true
2457
+ });
2458
+ Object.defineProperty(MultiColumnComboBox.prototype, "hu", {
2459
+ get: function () {
2460
+ return this.g8;
2461
+ },
2462
+ set: function (a) {
2463
+ var b = this.g8;
2464
+ this.g8 = a;
2465
+ if (b != this.g8) {
2466
+ this.gh("ActualUnderlineColor", b, a);
2467
+ }
2468
+ },
2469
+ enumerable: false,
2470
+ configurable: true
2471
+ });
2472
+ Object.defineProperty(MultiColumnComboBox.prototype, "c3", {
2473
+ get: function () {
2474
+ return this.b8;
2475
+ },
2476
+ set: function (a) {
2477
+ var b = this.b8;
2478
+ this.b8 = a;
2479
+ if (b != this.b8) {
2480
+ this.gh("UnderlineOpacity", b, a);
2481
+ }
2482
+ },
2483
+ enumerable: false,
2484
+ configurable: true
2485
+ });
2486
+ Object.defineProperty(MultiColumnComboBox.prototype, "ci", {
2487
+ get: function () {
2488
+ return this.by;
2489
+ },
2490
+ set: function (a) {
2491
+ var b = this.by;
2492
+ this.by = a;
2493
+ if (b != this.by) {
2494
+ this.gh("ActualUnderlineOpacity", b, a);
2495
+ }
2496
+ },
2497
+ enumerable: false,
2498
+ configurable: true
2499
+ });
2500
+ Object.defineProperty(MultiColumnComboBox.prototype, "ii", {
2501
+ get: function () {
2502
+ return this.hk;
2503
+ },
2504
+ set: function (a) {
2505
+ var b = this.hk;
2506
+ this.hk = a;
2507
+ if (b != this.hk) {
2508
+ this.gh("UnderlineRippleColor", b, a);
2509
+ }
2510
+ },
2511
+ enumerable: false,
2512
+ configurable: true
2513
+ });
2514
+ Object.defineProperty(MultiColumnComboBox.prototype, "hv", {
2515
+ get: function () {
2516
+ return this.g9;
2517
+ },
2518
+ set: function (a) {
2519
+ var b = this.g9;
2520
+ this.g9 = a;
2521
+ if (b != this.g9) {
2522
+ this.gh("ActualUnderlineRippleColor", b, a);
2523
+ }
2524
+ },
2525
+ enumerable: false,
2526
+ configurable: true
2527
+ });
2528
+ Object.defineProperty(MultiColumnComboBox.prototype, "c4", {
2529
+ get: function () {
2530
+ return this.b9;
2531
+ },
2532
+ set: function (a) {
2533
+ var b = this.b9;
2534
+ this.b9 = a;
2535
+ if (b != this.b9) {
2536
+ this.gh("UnderlineRippleOpacity", b, a);
2537
+ }
2538
+ },
2539
+ enumerable: false,
2540
+ configurable: true
2541
+ });
2542
+ Object.defineProperty(MultiColumnComboBox.prototype, "cj", {
2543
+ get: function () {
2544
+ return this.bz;
2545
+ },
2546
+ set: function (a) {
2547
+ var b = this.bz;
2548
+ this.bz = a;
2549
+ if (b != this.bz) {
2550
+ this.gh("ActualUnderlineRippleOpacity", b, a);
2551
+ }
2552
+ },
2553
+ enumerable: false,
2554
+ configurable: true
2555
+ });
2556
+ Object.defineProperty(MultiColumnComboBox.prototype, "c5", {
2557
+ get: function () {
2558
+ return this.ca;
2559
+ },
2560
+ set: function (a) {
2561
+ var b = this.ca;
2562
+ this.ca = a;
2563
+ if (b != this.ca) {
2564
+ this.gh("UnderlineRippleWidth", b, a);
2565
+ }
2566
+ },
2567
+ enumerable: false,
2568
+ configurable: true
2569
+ });
2570
+ Object.defineProperty(MultiColumnComboBox.prototype, "ck", {
2571
+ get: function () {
2572
+ return this.b0;
2573
+ },
2574
+ set: function (a) {
2575
+ var b = this.b0;
2576
+ this.b0 = a;
2577
+ if (b != this.b0) {
2578
+ this.gh("ActualUnderlineRippleWidth", b, a);
2579
+ }
2580
+ },
2581
+ enumerable: false,
2582
+ configurable: true
2583
+ });
2584
+ Object.defineProperty(MultiColumnComboBox.prototype, "c6", {
2585
+ get: function () {
2586
+ return this.cb;
2587
+ },
2588
+ set: function (a) {
2589
+ var b = this.cb;
2590
+ this.cb = a;
2591
+ if (b != this.cb) {
2592
+ this.gh("UnderlineWidth", b, a);
2593
+ }
2594
+ },
2595
+ enumerable: false,
2596
+ configurable: true
2597
+ });
2598
+ Object.defineProperty(MultiColumnComboBox.prototype, "cl", {
2599
+ get: function () {
2600
+ return this.b1;
2601
+ },
2602
+ set: function (a) {
2603
+ var b = this.b1;
2604
+ this.b1 = a;
2605
+ if (b != this.b1) {
2606
+ this.gh("ActualUnderlineWidth", b, a);
2607
+ }
2608
+ },
2609
+ enumerable: false,
2610
+ configurable: true
2611
+ });
2612
+ Object.defineProperty(MultiColumnComboBox.prototype, "bg", {
2613
+ get: function () {
2614
+ return this.a7;
2615
+ },
2616
+ set: function (a) {
2617
+ var b = this.a7;
2618
+ this.a7 = a;
2619
+ if (b != this.a7) {
2620
+ this.gh("AllowFilter", b, a);
2621
+ }
2622
+ },
2623
+ enumerable: false,
2624
+ configurable: true
2625
+ });
2626
+ Object.defineProperty(MultiColumnComboBox.prototype, "x", {
2627
+ get: function () {
2628
+ return this.w;
2629
+ },
2630
+ set: function (a) {
2631
+ var b = this.w;
2632
+ this.w = a;
2633
+ if (b != this.w) {
2634
+ this.gh("SortMode", enumGetBox(SortMode_$type, b), enumGetBox(SortMode_$type, this.w));
2635
+ }
2636
+ },
2637
+ enumerable: false,
2638
+ configurable: true
2639
+ });
2640
+ Object.defineProperty(MultiColumnComboBox.prototype, "fv", {
2641
+ get: function () {
2642
+ return this.dg;
2643
+ },
2644
+ set: function (a) {
2645
+ var b = this.dg;
2646
+ this.dg = a;
2647
+ if (b != this.dg) {
2648
+ this.gh("TextField", b, a);
2649
+ }
2650
+ },
2651
+ enumerable: false,
2652
+ configurable: true
2653
+ });
2654
+ Object.defineProperty(MultiColumnComboBox.prototype, "text", {
2655
+ get: function () {
2656
+ return this.df;
2657
+ },
2658
+ set: function (a) {
2659
+ var b = this.df;
2660
+ this.df = a;
2661
+ if (b != this.df) {
2662
+ this.gh("Text", b, a);
2663
+ }
2664
+ },
2665
+ enumerable: false,
2666
+ configurable: true
2667
+ });
2668
+ Object.defineProperty(MultiColumnComboBox.prototype, "j", {
2669
+ get: function () {
2670
+ return this.d;
2671
+ },
2672
+ set: function (a) {
2673
+ var b = this.d;
2674
+ this.d = a;
2675
+ if (b != this.d) {
2676
+ this.gh("ValueField", b, a);
2677
+ }
2678
+ },
2679
+ enumerable: false,
2680
+ configurable: true
2681
+ });
2682
+ Object.defineProperty(MultiColumnComboBox.prototype, "e", {
2683
+ get: function () {
2684
+ return this.a;
2685
+ },
2686
+ set: function (a) {
2687
+ var b = this.a;
2688
+ this.a = a;
2689
+ if (b != this.a) {
2690
+ this.gh("ActualValueField", b, a);
2691
+ }
2692
+ },
2693
+ enumerable: false,
2694
+ configurable: true
2695
+ });
2696
+ Object.defineProperty(MultiColumnComboBox.prototype, "value", {
2697
+ get: function () {
2698
+ return this.c8;
2699
+ },
2700
+ set: function (a) {
2701
+ var b = this.c8;
2702
+ this.c8 = a;
2703
+ if (b != this.c8) {
2704
+ this.gh("Value", b, a);
2705
+ }
2706
+ },
2707
+ enumerable: false,
2708
+ configurable: true
2709
+ });
2710
+ Object.defineProperty(MultiColumnComboBox.prototype, "ac", {
2711
+ get: function () {
2712
+ return this.aa;
2713
+ },
2714
+ set: function (a) {
2715
+ var b = this.aa;
2716
+ this.aa = a;
2717
+ if (b != this.aa) {
2718
+ this.gh("DisplayType", enumGetBox(InputGroupDisplayType_$type, b), enumGetBox(InputGroupDisplayType_$type, a));
2719
+ }
2720
+ },
2721
+ enumerable: false,
2722
+ configurable: true
2723
+ });
2724
+ MultiColumnComboBox.prototype.da = function (a, b) {
2725
+ var c = new FastReflectionHelper(false, b);
2726
+ return c.getPropertyValue(a);
2727
+ };
2728
+ MultiColumnComboBox.prototype.p = function () {
2729
+ var a = this.e5();
2730
+ return this.o(a);
2731
+ };
2732
+ MultiColumnComboBox.prototype.e5 = function () {
2733
+ return this.e4(this.fv);
2734
+ };
2735
+ MultiColumnComboBox.prototype.db = function (a) {
2736
+ var b = this.i();
2737
+ if (null == b || b.length == 0) {
2738
+ return null;
2739
+ }
2740
+ var c = new List$1(Base.$, 0);
2741
+ for (var e = 0; e < b.length; e++) {
2742
+ var d = b[e];
2743
+ var f = this.da(a, d);
2744
+ c.add1(f);
2745
+ }
2746
+ if (c.count == 1) {
2747
+ return c._inner[0];
2748
+ }
2749
+ return c.toArray();
2750
+ };
2751
+ MultiColumnComboBox.prototype.e3 = function (a) {
2752
+ var b = this.e5();
2753
+ var c;
2754
+ if (null != b) {
2755
+ var d = this.da(a, b);
2756
+ c = null != d ? d.toString() : null;
2757
+ }
2758
+ else {
2759
+ c = null;
2760
+ }
2761
+ return c;
2762
+ };
2763
+ MultiColumnComboBox.prototype.o = function (a) {
2764
+ var e_2, _a;
2765
+ var b = this.v.e;
2766
+ if (null == b) {
2767
+ return null;
2768
+ }
2769
+ var c = b.actualColumns;
2770
+ if (null == c || 0 == c.count) {
2771
+ return null;
2772
+ }
2773
+ if (stringIsNullOrEmpty(a)) {
2774
+ return c._inner[0];
2775
+ }
2776
+ try {
2777
+ for (var _b = __values(fromEnum(c)), _c = _b.next(); !_c.done; _c = _b.next()) {
2778
+ var d = _c.value;
2779
+ if (0 == StringComparer.b.compare(d.lo, a)) {
2780
+ return d;
2781
+ }
2782
+ }
2783
+ }
2784
+ catch (e_2_1) {
2785
+ e_2 = { error: e_2_1 };
2786
+ }
2787
+ finally {
2788
+ try {
2789
+ if (_c && !_c.done && (_a = _b.return))
2790
+ _a.call(_b);
2791
+ }
2792
+ finally {
2793
+ if (e_2)
2794
+ throw e_2.error;
2795
+ }
2796
+ }
2797
+ return null;
2798
+ };
2799
+ MultiColumnComboBox.prototype.e4 = function (a) {
2800
+ if (stringIsNullOrEmpty(a)) {
2801
+ var b = this.actualDataSource;
2802
+ if (null == b) {
2803
+ return null;
2804
+ }
2805
+ var c = b.actualSchema;
2806
+ if (null == c) {
2807
+ return null;
2808
+ }
2809
+ var d = c.propertyNames;
2810
+ if (0 == d.length) {
2811
+ return null;
2812
+ }
2813
+ return d[0];
2814
+ }
2815
+ return a;
2816
+ };
2817
+ MultiColumnComboBox.prototype.h = function (a) {
2818
+ var b = new List$1(String_$type, 0);
2819
+ if (null == a || a.length == 0) {
2820
+ var c = this.e4(null);
2821
+ if (stringIsNullOrEmpty(c)) {
2822
+ return null;
2823
+ }
2824
+ b.add(c);
2825
+ return b.toArray();
2826
+ }
2827
+ for (var e = 0; e < a.length; e++) {
2828
+ var d = a[e];
2829
+ var f = this.e4(d);
2830
+ if (null != f) {
2831
+ b.add(f);
2832
+ }
2833
+ }
2834
+ if (b.count > 0) {
2835
+ return b.toArray();
2836
+ }
2837
+ return null;
2838
+ };
2839
+ MultiColumnComboBox.prototype.i = function () {
2840
+ var a = this.j;
2841
+ return this.h(a);
2842
+ };
2843
+ MultiColumnComboBox.prototype.gi = function (a) {
2844
+ this.gl(2, a);
2845
+ };
2846
+ MultiColumnComboBox.prototype.gl = function (a, b) {
2847
+ if (this.bm) {
2848
+ return;
2849
+ }
2850
+ this.bm = true;
2851
+ try {
2852
+ switch (a) {
2853
+ case 2:
2854
+ {
2855
+ var c = b;
2856
+ var d = void 0;
2857
+ var e = void 0;
2858
+ if (null != c) {
2859
+ d = this.e3(c);
2860
+ e = this.db(c);
2861
+ }
2862
+ else {
2863
+ d = stringEmpty();
2864
+ e = null;
2865
+ }
2866
+ if (this.text != d) {
2867
+ this.text = d;
2868
+ }
2869
+ if (this.value != e) {
2870
+ this.value = e;
2871
+ }
2872
+ }
2873
+ break;
2874
+ case 1:
2875
+ this.v.cl(b.toString());
2876
+ break;
2877
+ case 0:
2878
+ this.v.ck(b);
2879
+ break;
2880
+ }
2881
+ }
2882
+ finally {
2883
+ this.bm = false;
2884
+ }
2885
+ this.v.cj();
2886
+ };
2887
+ MultiColumnComboBox.prototype.gq = function (a) {
2888
+ this.text = a;
2889
+ };
2890
+ MultiColumnComboBox.prototype.gs = function () {
2891
+ this.ax = (null == this.a4) ? this.a1 : this.a4;
2892
+ this.av = (null == this.a2) ? this.a1 : this.a2;
2893
+ };
2894
+ MultiColumnComboBox.prototype.gr = function () {
2895
+ };
2896
+ MultiColumnComboBox.prototype.closeUp = function () {
2897
+ this.v.az();
2898
+ };
2899
+ MultiColumnComboBox.prototype.destroy = function () {
2900
+ this.provideRenderer(null);
2901
+ };
2902
+ MultiColumnComboBox.prototype.dropDown = function () {
2903
+ this.v.a3();
2904
+ };
2905
+ MultiColumnComboBox.prototype.select = function () {
2906
+ this.v.ce();
2907
+ };
2908
+ MultiColumnComboBox.prototype.notifySizeChanged = function () {
2909
+ this.v.bq();
2910
+ };
2911
+ MultiColumnComboBox.prototype.provideRenderer = function (a) {
2912
+ this.v.b4(a);
2913
+ this.actualNoMatchesFoundLabel = !stringIsNullOrWhiteSpace(this.a6.b1("NoMatches")) ? this.a6.b1("NoMatches") : "No Matches Found";
2914
+ };
2915
+ MultiColumnComboBox.prototype.c9 = function () {
2916
+ return this.l();
2917
+ };
2918
+ MultiColumnComboBox.prototype.ew = function () {
2919
+ var a = this.l();
2920
+ return a.am();
2921
+ };
2922
+ MultiColumnComboBox.prototype.l = function () {
2923
+ var a = new MultiColumnComboVisualModelExport();
2924
+ a.a = AppearanceHelper.a(this.hl);
2925
+ a.j = this.ah;
2926
+ a.b = AppearanceHelper.a(this.hm);
2927
+ a.p = this.cc;
2928
+ a.columnHeadersVisible = this.columnHeadersVisible;
2929
+ a.au = this.il;
2930
+ a.at = this.gw;
2931
+ a.k = this.am;
2932
+ a.dropDownButtonVisible = this.dropDownButtonVisible;
2933
+ a.q = this.ce;
2934
+ a.aa = this.fb;
2935
+ a.c = AppearanceHelper.a(this.hq);
2936
+ a.actualLabelVisible = this.actualLabelVisible;
2937
+ a.actualNoMatchesFoundLabel = this.actualNoMatchesFoundLabel;
2938
+ a.d = AppearanceHelper.a(this.hr);
2939
+ a.e = AppearanceHelper.a(this.hs);
2940
+ a.al = this.fn;
2941
+ a.rowSeparatorsVisible = this.rowSeparatorsVisible;
2942
+ a.f = AppearanceHelper.a(this.ht);
2943
+ a.g = AppearanceHelper.a(this.hu);
2944
+ a.r = this.ci;
2945
+ a.h = AppearanceHelper.a(this.hv);
2946
+ a.s = this.cj;
2947
+ a.t = this.ck;
2948
+ a.u = this.cl;
2949
+ a.an = this.text;
2950
+ a.y = this.value;
2951
+ a.i = this.v.e.exportVisualModel();
2952
+ if (this.av != null) {
2953
+ var b = this.av;
2954
+ if (this.v != null && b.q == null) {
2955
+ var c = this.v.ad;
2956
+ var d = FontUtil.getFontInfoFromString(c, b.fontString);
2957
+ b.q = d.q;
2958
+ b.f = d.f;
2959
+ b.r = d.r;
2960
+ b.t = d.t;
2961
+ b.u = d.u;
2962
+ b.v = d.v;
2963
+ }
2964
+ if (b.q != null) {
2965
+ a.ab = b.q;
2966
+ }
2967
+ if (!isNaN_(b.f)) {
2968
+ a.v = b.f;
2969
+ }
2970
+ if (b.v != null) {
2971
+ a.af = b.v;
2972
+ }
2973
+ if (b.t != null) {
2974
+ a.ad = b.t;
2975
+ }
2976
+ if (b.r != null) {
2977
+ a.ac = b.t;
2978
+ }
2979
+ }
2980
+ if (this.aw != null) {
2981
+ var e = this.aw;
2982
+ if (this.v != null && e.q == null) {
2983
+ var f = this.v.ad;
2984
+ var g = FontUtil.getFontInfoFromString(f, e.fontString);
2985
+ e.q = g.q;
2986
+ e.f = g.f;
2987
+ e.r = g.r;
2988
+ e.t = g.t;
2989
+ e.u = g.u;
2990
+ e.v = g.v;
2991
+ }
2992
+ if (e.q != null) {
2993
+ a.ag = e.q;
2994
+ }
2995
+ if (!isNaN_(e.f)) {
2996
+ a.w = e.f;
2997
+ }
2998
+ if (e.v != null) {
2999
+ a.ak = e.v;
3000
+ }
3001
+ if (e.t != null) {
3002
+ a.ai = e.t;
3003
+ }
3004
+ if (e.r != null) {
3005
+ a.ah = e.t;
3006
+ }
3007
+ }
3008
+ if (this.ax != null) {
3009
+ var h = this.ax;
3010
+ if (this.v != null && h.q == null) {
3011
+ var i = this.v.ad;
3012
+ var j = FontUtil.getFontInfoFromString(i, h.fontString);
3013
+ h.q = j.q;
3014
+ h.f = j.f;
3015
+ h.r = j.r;
3016
+ h.t = j.t;
3017
+ h.u = j.u;
3018
+ h.v = j.v;
3019
+ }
3020
+ if (h.q != null) {
3021
+ a.ao = h.q;
3022
+ }
3023
+ if (!isNaN_(h.f)) {
3024
+ a.x = h.f;
3025
+ }
3026
+ if (h.v != null) {
3027
+ a.as = h.v;
3028
+ }
3029
+ if (h.t != null) {
3030
+ a.aq = h.t;
3031
+ }
3032
+ if (h.r != null) {
3033
+ a.ap = h.t;
3034
+ }
3035
+ }
3036
+ return a;
3037
+ };
3038
+ Object.defineProperty(MultiColumnComboBox.prototype, "bn", {
3039
+ get: function () {
3040
+ return this.a9;
3041
+ },
3042
+ set: function (a) {
3043
+ var b = this.a9;
3044
+ this.a9 = a;
3045
+ if (b != this.a9) {
3046
+ this.gh("IsFixed", b, this.a9);
3047
+ }
3048
+ },
3049
+ enumerable: false,
3050
+ configurable: true
3051
+ });
3052
+ Object.defineProperty(MultiColumnComboBox.prototype, "bo", {
3053
+ get: function () {
3054
+ return this.ba;
3055
+ },
3056
+ set: function (a) {
3057
+ var b = this.ba;
3058
+ this.ba = a;
3059
+ if (b != this.ba) {
3060
+ this.gh("OpenAsChild", b, this.ba);
3061
+ }
3062
+ },
3063
+ enumerable: false,
3064
+ configurable: true
3065
+ });
3066
+ Object.defineProperty(MultiColumnComboBox.prototype, "br", {
3067
+ get: function () {
3068
+ return this.bd;
3069
+ },
3070
+ set: function (a) {
3071
+ var b = this.bd;
3072
+ this.bd = a;
3073
+ if (b != this.bd) {
3074
+ this.gh("UseTopLayer", b, this.bd);
3075
+ }
3076
+ },
3077
+ enumerable: false,
3078
+ configurable: true
3079
+ });
3080
+ MultiColumnComboBox.prototype.ge = function (a) {
3081
+ if (null != this.gotFocus) {
3082
+ this.gotFocus(this, a);
3083
+ }
3084
+ };
3085
+ MultiColumnComboBox.prototype.gg = function (a) {
3086
+ if (null != this.lostFocus) {
3087
+ this.lostFocus(this, a);
3088
+ }
3089
+ };
3090
+ MultiColumnComboBox.prototype.gk = function (a) {
3091
+ if (null != this.textValueChanged) {
3092
+ this.textValueChanged(this, a);
3093
+ }
3094
+ };
3095
+ MultiColumnComboBox.prototype.gj = function (a) {
3096
+ if (null != this.selectedValueChanged) {
3097
+ this.selectedValueChanged(this, a);
3098
+ }
3099
+ };
3100
+ MultiColumnComboBox.prototype.gh = function (a, b, c) {
3101
+ if (this.propertyChanged != null) {
3102
+ this.propertyChanged(this, new PropertyChangedEventArgs(a));
3103
+ }
3104
+ this.gm(a, b, c);
3105
+ };
3106
+ MultiColumnComboBox.prototype.gf = function (a) {
3107
+ if (null != this.keyDown) {
3108
+ this.keyDown(this, a);
3109
+ }
3110
+ };
3111
+ MultiColumnComboBox.prototype.gd = function (a) {
3112
+ if (null != this.changing) {
3113
+ this.changing(this, a);
3114
+ }
3115
+ };
3116
+ MultiColumnComboBox.$t = markType(MultiColumnComboBox, 'MultiColumnComboBox', Base.$, [INotifyPropertyChanged_$type]);
3117
+ MultiColumnComboBox.ag = 1;
3118
+ MultiColumnComboBox.hy = ThemeResolver.ah(MultiColumnComboBox.ag, XLabel.de, XLabel.c7);
3119
+ MultiColumnComboBox.h0 = ThemeResolver.ah(MultiColumnComboBox.ag, XLabel.de, XLabel.c7);
3120
+ MultiColumnComboBox.hz = BrushUtil.j(255, 255, 255, 255);
3121
+ MultiColumnComboBox.ay = null;
3122
+ MultiColumnComboBox.d3 = "ActualNoMatchesFoundLabelBackgroundColor";
3123
+ MultiColumnComboBox.az = null;
3124
+ MultiColumnComboBox.h8 = BrushUtil.j(221, 0, 0, 0);
3125
+ return MultiColumnComboBox;
3126
+ }(Base));
3127
+ export { MultiColumnComboBox };
3128
+ /**
3129
+ * @hidden
3130
+ */
3131
+ var MultiColumnComboBoxDataSourceNotificationHandler = /** @class */ /*@__PURE__*/ (function (_super) {
3132
+ __extends(MultiColumnComboBoxDataSourceNotificationHandler, _super);
3133
+ function MultiColumnComboBoxDataSourceNotificationHandler(a, b) {
3134
+ var _this = _super.call(this) || this;
3135
+ _this.a = null;
3136
+ _this.b = false;
3137
+ _this.a = a;
3138
+ _this.b = b;
3139
+ return _this;
3140
+ }
3141
+ MultiColumnComboBoxDataSourceNotificationHandler.prototype.rangeActualized = function (a, b) {
3142
+ if (!this.b) {
3143
+ this.a.b0(a, b);
3144
+ }
3145
+ else {
3146
+ this.a.bu(a, b);
3147
+ }
3148
+ };
3149
+ MultiColumnComboBoxDataSourceNotificationHandler.prototype.notifySetItem = function (a, b, c) {
3150
+ if (!this.b) {
3151
+ this.a.b5(a, b, c);
3152
+ }
3153
+ else {
3154
+ this.a.bx(a, b, c);
3155
+ }
3156
+ };
3157
+ MultiColumnComboBoxDataSourceNotificationHandler.prototype.notifyClearItems = function () {
3158
+ if (!this.b) {
3159
+ this.a.bs();
3160
+ }
3161
+ else {
3162
+ this.a.bt();
3163
+ }
3164
+ };
3165
+ MultiColumnComboBoxDataSourceNotificationHandler.prototype.notifyInsertItem = function (a, b) {
3166
+ if (!this.b) {
3167
+ this.a.b1(a, b);
3168
+ }
3169
+ else {
3170
+ this.a.bv(a, b);
3171
+ }
3172
+ };
3173
+ MultiColumnComboBoxDataSourceNotificationHandler.prototype.notifyRemoveItem = function (a, b) {
3174
+ if (!this.b) {
3175
+ this.a.b3(a, b);
3176
+ }
3177
+ else {
3178
+ this.a.bw(a, b);
3179
+ }
3180
+ };
3181
+ MultiColumnComboBoxDataSourceNotificationHandler.$t = markType(MultiColumnComboBoxDataSourceNotificationHandler, 'MultiColumnComboBoxDataSourceNotificationHandler', Base.$, [IDataSourceUpdateNotifier_$type]);
3182
+ return MultiColumnComboBoxDataSourceNotificationHandler;
3183
+ }(Base));
3184
+ export { MultiColumnComboBoxDataSourceNotificationHandler };