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,7 @@
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
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("@angular/core"),require("igniteui-angular-core"),require("tslib"),require("igniteui-angular-inputs"),require("igniteui-angular-layouts"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","igniteui-angular-core","tslib","igniteui-angular-inputs","igniteui-angular-layouts","@angular/common"],e):e((t=t||self)["igniteui-angular-data-grids"]={},t.i0,t.igniteuiAngularCore,t.tslib,t.igniteuiAngularInputs,t.igniteuiAngularLayouts,t.common)}(this,(function(t,e,n,i,r,o,a){"use strict";var s=function(t){function e(e,n){var i=t.call(this)||this;return i.a=null,i.b=null,i.a=e,i.b=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"key",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this.b},set:function(t){this.b=t},enumerable:!1,configurable:!0}),e.createIdentityKey=function(t){return new e(null,[t])},e.prototype.equals=function(t){var e=t;if(null==e)return!1;if(null==e.b&&null==this.b)return!0;if(e.b.length!=this.b.length)return!1;if(null==this.a&&null==e.a&&1==this.b.length&&1==e.b.length){var n=this.b[0],i=e.b[0];return this.f(n,i)}for(var r=0;r<this.b.length;r++)if(!this.f(this.b[r],e.b[r]))return!1;return!0},e.prototype.f=function(t,e){return null==t&&null==e||(null!=t||null==e)&&n.Base.equalsStatic(t,e)},e.prototype.getHashCode=function(){if(null==this.b||0==this.b.length)return 0;var t=0;t=this.i(this.b[0]);for(var e=1;e<this.b.length;e++)t=17*t+this.i(this.b[e]);return t},e.prototype.i=function(t){return null==t?0:n.Base.getHashCodeStatic(t)},e.$t=n.markType(e,"PrimaryKeyValue"),e}(n.Base),l=function(t){return t[t.Selected=0]="Selected",t[t.DeSelected=1]="DeSelected",t}({}),u=n.markEnum("CheckboxListIndexType","Selected,0|DeSelected,1"),c=function(t){function e(){var e=t.call(this,s.$,0)||this;return e.ak=new n.List$1(n.Delegate_$type,0),e.ah=!1,e.af=!0,e.ai=new n.Dictionary$2(s.$,n.Number_$type,0),e.aj=new n.Dictionary$2(n.Number_$type,s.$,0),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),e.prototype.an=function(t){this.collectionChanged=n.delegateCombine(this.collectionChanged,t)},e.prototype.am=function(t){this.ak.add(t)},e.prototype.ao=function(t){this.ak.remove(t)},e.prototype.ap=function(t){this.collectionChanged=n.delegateRemove(this.collectionChanged,t)},Object.defineProperty(e.prototype,"ag",{get:function(){return this.af},set:function(t){this.af=t},enumerable:!1,configurable:!0}),e.prototype.n=function(e){t.prototype.n.call(this,e),this.ag&&(this.ai.addItem(e,this.count-1),this.aj.addItem(this.count-1,e))},e.prototype.o=function(e){var r,o,a=this.count;if(t.prototype.o.call(this,e),this.ag)try{for(var s=i.__values(n.fromEnum(e)),l=s.next();!l.done;l=s.next()){var u=l.value;this.ai.addItem(u,a),this.aj.addItem(a,u),a++}}catch(t){r={error:t}}finally{try{l&&!l.done&&(o=s.return)&&o.call(s)}finally{if(r)throw r.error}}},e.prototype.p=function(){var e,r,o,a,s=new n.List$1(n.Delegate_$type,0);try{for(var l=i.__values(n.fromEnum(this.ak)),u=l.next();!u.done;u=l.next()){var c=u.value;s.add(c)}}catch(t){e={error:t}}finally{try{u&&!u.done&&(r=l.return)&&r.call(l)}finally{if(e)throw e.error}}try{for(var h=i.__values(n.fromEnum(s)),p=h.next();!p.done;p=h.next()){(0,p.value)()}}catch(t){o={error:t}}finally{try{p&&!p.done&&(a=h.return)&&a.call(h)}finally{if(o)throw o.error}}t.prototype.p.call(this),this.ag&&(this.ai.clear(),this.aj.clear())},e.prototype.u=function(t){if(this.ag&&this.aj.containsKey(t)){var e=this.aj.item(t);this.ai.removeItem(e),this.aj.removeItem(t);for(var i=t+1;i<this.count;i++)if(this.aj.containsKey(i)){var r=this.aj.item(i);this.aj.removeItem(i),this.aj.addItem(i-1,r),this.ai.item(r,i-1)}}var o=this._inner[t];0==t?this._inner.shift():this._inner.splice(t,1),this.ad(new n.PropertyChangedEventArgs("Count")),this.ad(new n.PropertyChangedEventArgs("Item[]")),this.ah||this.ac(new n.NotifyCollectionChangedEventArgs(1,1,o,t))},e.prototype.v=function(e,n){if(t.prototype.v.call(this,e,n),this.ag)for(var i=e;i<e+n;i++)if(this.aj.containsKey(i)){var r=this.aj.item(i);this.ai.removeItem(r),this.aj.removeItem(i)}},e.prototype.x=function(e,n){if(t.prototype.x.call(this,e,n),this.ag&&this.aj.containsKey(e)){var i=this.aj.item(e);this.aj.item(e,n),this.ai.removeItem(i),this.ai.addItem(n,e)}},e.prototype.r=function(e,n){if(t.prototype.r.call(this,e,n),this.ag)for(var i=e;i<this.count;i++){var r=this._inner[i];this.ai.containsKey(r)?(this.ai.item(r,i),this.aj.removeItem(i),this.aj.addItem(i,r)):(this.ai.addItem(r,i),this.aj.addItem(i,r))}},e.prototype.al=function(t){return this.ag?this.ai.containsKey(t)?this.ai.item(t):-1:this.indexOf(t)},e.$t=n.markType(e,"GridSelectedKeysCollection",n.ObservableCollection$1.$.specialize(s.$)),e}(n.ObservableCollection$1),h=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),Object.defineProperty(e,"bo",{get:function(){if(null==e.at){e.at=((t=new n.Brush).fill="#babfc7",t)}var t;return e.at},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bq",{get:function(){if(null==e.av){e.av=((t=new n.Brush).fill="#dde2eb",t)}var t;return e.av},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bi",{get:function(){var t;return null==e.an&&(e.an=((t=new n.Brush).color=n.Color.u(255,224,224,224),t)),e.an},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a8",{get:function(){if(null==e.ad){e.ad=((t=new n.Brush).fill="#babfc7",t)}var t;return e.ad},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a6",{get:function(){if(null==e.ab){e.ab=((t=new n.Brush).fill="#babfc7",t)}var t;return e.ab},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bs",{get:function(){if(null==e.ax){e.ax=((t=new n.Brush).fill="#ff80ab",t)}var t;return e.ax},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bt",{get:function(){if(null==e.ay){e.ay=((t=new n.Brush).fill="#181d1f",t)}var t;return e.ay},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a0",{get:function(){if(null==e.v){e.v=((t=new n.Brush).fill="#3c90bd",t)}var t;return e.v},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a1",{get:function(){if(null==e.w){e.w=((t=new n.Brush).fill="#204f69",t)}var t;return e.w},enumerable:!1,configurable:!0}),Object.defineProperty(e,"az",{get:function(){if(null==e.u){e.u=((t=new n.Brush).fill="#2196f3",t)}var t;return e.u},enumerable:!1,configurable:!0}),Object.defineProperty(e,"n",{get:function(){return null==e.h&&(e.h=new n.FontInfo,e.h.f=n.DeviceUtils.f(13),e.h.q="Verdana"),e.h},enumerable:!1,configurable:!0}),Object.defineProperty(e,"i",{get:function(){return null==e.c&&(e.c=new n.FontInfo,e.c.f=n.DeviceUtils.f(13),e.c.q="Segoe UI Emoji"),e.c},enumerable:!1,configurable:!0}),Object.defineProperty(e,"m",{get:function(){return null==e.g&&(e.g=new n.FontInfo,e.g.f=n.DeviceUtils.f(13),e.g.t="italic",e.g.q="Verdana"),e.g},enumerable:!1,configurable:!0}),Object.defineProperty(e,"j",{get:function(){return null==e.d&&(e.d=new n.FontInfo,e.d.f=n.DeviceUtils.f(14),e.d.q="Verdana"),e.d},enumerable:!1,configurable:!0}),Object.defineProperty(e,"l",{get:function(){return null==e.e&&(e.e=new n.FontInfo,e.e.f=n.DeviceUtils.f(12),e.e.v="600",e.e.q="Verdana"),e.e},enumerable:!1,configurable:!0}),Object.defineProperty(e,"k",{get:function(){return null==e.f&&(e.f=new n.FontInfo,e.f.f=n.DeviceUtils.f(12),e.f.q="Verdana"),e.f},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bg",{get:function(){return null==e.al&&(e.al=new n.Brush,e.al.color=n.Color.u(255,210,234,253)),e.al},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a2",{get:function(){var t;return null==e.x&&(e.x=((t=new n.Brush).fill="White",t)),e.x},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a7",{get:function(){if(null==e.ac){e.ac=((t=new n.Brush).color=n.Color.u(255,232,244,254),t)}var t;return e.ac},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bn",{get:function(){if(null==e.as){e.as=((t=new n.Brush).fill="#F8F8F8",t)}var t;return e.as},enumerable:!1,configurable:!0}),Object.defineProperty(e,"br",{get:function(){if(null==e.aw){e.aw=((t=new n.Brush).fill="#181d1f",t)}var t;return e.aw},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bp",{get:function(){if(null==e.au){e.au=((t=new n.Brush).fill="#181d1f",t)}var t;return e.au},enumerable:!1,configurable:!0}),Object.defineProperty(e,"be",{get:function(){if(null==e.aj){e.aj=((t=new n.Brush).fill="#fafafa",t)}var t;return e.aj},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bd",{get:function(){var t;return null==e.ai&&(e.ai=((t=new n.Brush).fill="#f5f5dc",t)),e.ai},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bh",{get:function(){if(null==e.am){e.am=((t=new n.Brush).fill="#ffffff",t)}var t;return e.am},enumerable:!1,configurable:!0}),Object.defineProperty(e,"ba",{get:function(){if(null==e.af){e.af=((t=new n.Brush).fill="#ffffff",t)}var t;return e.af},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bc",{get:function(){if(null==e.ah){e.ah=((t=new n.Brush).fill="#f8f8f8",t)}var t;return e.ah},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bf",{get:function(){if(null==e.ak){e.ak=((t=new n.Brush).fill="#fafafa",t)}var t;return e.ak},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bj",{get:function(){if(null==e.ao){e.ao=((t=new n.Brush).fill="#0099FF",t)}var t;return e.ao},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bk",{get:function(){if(null==e.ap){e.ap=((t=new n.Brush).fill="#181d1f",t)}var t;return e.ap},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a4",{get:function(){if(null==e.z){e.z=((t=new n.Brush).fill="#2196f3",t)}var t;return e.z},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bb",{get:function(){if(null==e.ag){e.ag=((t=new n.Brush).fill="#2196f3",t)}var t;return e.ag},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a9",{get:function(){if(null==e.ae){e.ae=((t=new n.Brush).fill="#babfc7",t)}var t;return e.ae},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a5",{get:function(){if(null==e.aa){e.aa=((t=new n.Brush).fill="#181d1f",t)}var t;return e.aa},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a",{get:function(){return 2},enumerable:!1,configurable:!0}),Object.defineProperty(e,"b",{get:function(){return 3},enumerable:!1,configurable:!0}),Object.defineProperty(e,"q",{get:function(){return n.truncate(n.DeviceUtils.g(30))},enumerable:!1,configurable:!0}),Object.defineProperty(e,"r",{get:function(){return n.truncate(n.DeviceUtils.g(36))},enumerable:!1,configurable:!0}),Object.defineProperty(e,"p",{get:function(){return n.truncate(n.DeviceUtils.g(40))},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a3",{get:function(){if(null==e.y){e.y=((t=new n.Brush).fill="#babfc7",t)}var t;return e.y},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bv",{get:function(){return e.bu},enumerable:!1,configurable:!0}),Object.defineProperty(e,"t",{get:function(){return e.s},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bm",{get:function(){if(null==e.ar){e.ar=((t=new n.Brush).fill="#ff0000",t)}var t;return e.ar},enumerable:!1,configurable:!0}),Object.defineProperty(e,"bl",{get:function(){var t;return null==e.aq&&(e.aq=((t=new n.Brush).color=n.Color.u(0,0,0,0),t)),e.aq},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridStyleRepository"),e.at=null,e.av=null,e.an=null,e.ad=null,e.ab=null,e.ax=null,e.ay=null,e.v=null,e.w=null,e.u=null,e.h=null,e.c=null,e.g=null,e.o=.54,e.d=null,e.e=null,e.f=null,e.al=null,e.x=null,e.ac=null,e.as=null,e.aw=null,e.au=null,e.aj=null,e.ai=null,e.am=null,e.af=null,e.ah=null,e.ak=null,e.ao=null,e.ap=null,e.z=null,e.ag=null,e.ae=null,e.aa=null,e.y=null,e.bu=new n.Thickness(0,1),e.s=new n.CornerRadius(0,3),e.ar=null,e.aq=null,e}(n.Base),p=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"CheckboxListKeysClearedEventArgs"),e}(n.Base),d=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=0,e.b=!1,e.a=null,e}return i.__extends(e,t),e.$t=n.markType(e,"CheckedChangedEventArgs"),e}(n.Base),f=function(t){return t[t.Equals=0]="Equals",t[t.NotEquals=1]="NotEquals",t[t.LessThan=2]="LessThan",t[t.LessThanOrEqualTo=3]="LessThanOrEqualTo",t[t.GreaterThan=4]="GreaterThan",t[t.GreaterThanOrEqualTo=5]="GreaterThanOrEqualTo",t[t.Top=6]="Top",t[t.Bottom=7]="Bottom",t[t.TopPercentile=8]="TopPercentile",t[t.BottomPercentile=9]="BottomPercentile",t[t.True=10]="True",t[t.False=11]="False",t[t.Contains=12]="Contains",t[t.DoesNotContain=13]="DoesNotContain",t[t.StartsWith=14]="StartsWith",t[t.DoesNotStartWith=15]="DoesNotStartWith",t[t.EndsWith=16]="EndsWith",t[t.DoesNotEndWith=17]="DoesNotEndWith",t[t.Today=18]="Today",t[t.Tomorrow=19]="Tomorrow",t[t.Yesterday=20]="Yesterday",t[t.NextWeek=21]="NextWeek",t[t.ThisWeek=22]="ThisWeek",t[t.LastWeek=23]="LastWeek",t[t.NextMonth=24]="NextMonth",t[t.ThisMonth=25]="ThisMonth",t[t.LastMonth=26]="LastMonth",t[t.NextQuarter=27]="NextQuarter",t[t.ThisQuarter=28]="ThisQuarter",t[t.LastQuarter=29]="LastQuarter",t[t.NextYear=30]="NextYear",t[t.ThisYear=31]="ThisYear",t[t.LastYear=32]="LastYear",t[t.YearToDate=33]="YearToDate",t[t.Q1=34]="Q1",t[t.Q2=35]="Q2",t[t.Q3=36]="Q3",t[t.Q4=37]="Q4",t[t.Month=38]="Month",t[t.Year=39]="Year",t[t.Empty=40]="Empty",t[t.NotEmpty=41]="NotEmpty",t[t.IsNull=42]="IsNull",t[t.IsNotNull=43]="IsNotNull",t[t.Custom=44]="Custom",t}({}),m=n.markEnum("ColumnComparisonConditionOperatorType","Equals,0|NotEquals,1|LessThan,2|LessThanOrEqualTo,3|GreaterThan,4|GreaterThanOrEqualTo,5|Top,6|Bottom,7|TopPercentile,8|BottomPercentile,9|True,10|False,11|Contains,12|DoesNotContain,13|StartsWith,14|DoesNotStartWith,15|EndsWith,16|DoesNotEndWith,17|Today,18|Tomorrow,19|Yesterday,20|NextWeek,21|ThisWeek,22|LastWeek,23|NextMonth,24|ThisMonth,25|LastMonth,26|NextQuarter,27|ThisQuarter,28|LastQuarter,29|NextYear,30|ThisYear,31|LastYear,32|YearToDate,33|Q1,34|Q2,35|Q3,36|Q4,37|Month,38|Year,39|Empty,40|NotEmpty,41|IsNull,42|IsNotNull,43|Custom,44"),g=n.markEnum("FixedCellPositions","None,0|Left,1|Right,2|Top,3|Bottom,4"),y=function(t){function e(e,n){var i=t.call(this)||this;return i.n=0,i.m=0,i.a=0,i.c=0,i.l=-1,i.e=!1,i.k=-1,i.b=0,i.d=0,i.n=e,i.m=n,i.ad(),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"y",{get:function(){return this.n},set:function(t){this.n=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"x",{get:function(){return this.m},set:function(t){this.m=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){this.a=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.c},set:function(t){this.c=t,this.ad()},enumerable:!1,configurable:!0}),e.prototype.ad=function(){this.l=1e6*this.m},e.prototype.getHashCode=function(){return this.l},e.prototype.equals=function(t){var e=t;return this.a==e.a&&(this.n==e.n&&this.m==e.m)},e.prototype.toString=function(){return"F"+n.enumGetBox(g,this.a)+"."+this.n+"."+this.m},Object.defineProperty(e.prototype,"g",{get:function(){return(-100==this.m||-101==this.m)&&-100==this.n},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return-101==this.m},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return-200==this.m||-201==this.m},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.e},set:function(t){this.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o",{get:function(){return this.k},set:function(t){this.k=t},enumerable:!1,configurable:!0}),e.prototype.ab=function(){var t=new e(this.y,this.x);return t.b=this.b,t.i=this.i,t.o=this.o,t},e.$t=n.markType(e,"RowPath"),e}(n.Base),b=function(t){function e(){var e=t.call(this)||this;return e.a=0,e.c=null,e.___mustPassByValue=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridCellPosition"),e}(n.Base),v=function(t){return t[t.None=0]="None",t[t.Cell=1]="Cell",t[t.CellBatch=2]="CellBatch",t[t.Row=3]="Row",t}({}),C=n.markEnum("EditModeType","None,0|Cell,1|CellBatch,2|Row,3"),x=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.g=0,e.d=0,e.h=0,e.e=0,e.f=0,e.c=0,e.a=0,e.b=0,e}return i.__extends(e,t),e.$t=n.markType(e,"GridViewportChangedEventArgs"),e}(n.Base),_=new n.Type(null,"ICellModelExportUpdater"),w=n.markEnum("ModelStates","New,0|Recycled,1|Inview,2"),S=function(t){function e(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];var r=this;switch(e=null==e?0:e){case 0:var o=n[0],a=n[1],s=n[2],l=n[3],u=[a,s,l],c=u[0],h=u[1],p=u[2];(r=t.call(this,h,p)||this).a3=0,r.a4=0,r.ae=1,r.a2=-1,r.ax=!1,r.ah=!1,r.ag=!1,r.au=!1,r.ai=!1,r.a3=c,r.ad(),r.b=o,r.ad();break;case 1:o=n[0],a=n[1],s=n[2];(r=t.call(this,a,s)||this).a3=0,r.a4=0,r.ae=1,r.a2=-1,r.ax=!1,r.ah=!1,r.ag=!1,r.au=!1,r.ai=!1,r.a3=o,r.ad();break;case 2:o=n[0],a=n[1];(r=t.call(this,0,a)||this).a3=0,r.a4=0,r.ae=1,r.a2=-1,r.ax=!1,r.ah=!1,r.ag=!1,r.au=!1,r.ai=!1,r.a3=o,r.ad();break;case 3:o=n[0],a=n[1],s=n[2];(r=t.call(this,0,a)||this).a3=0,r.a4=0,r.ae=1,r.a2=-1,r.ax=!1,r.ah=!1,r.ag=!1,r.au=!1,r.ai=!1,r.a3=o,r.ae=s,r.ad()}return r}return i.__extends(e,t),Object.defineProperty(e.prototype,"a5",{get:function(){return this.a3},set:function(t){this.a3=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bb",{get:function(){return this.a4},set:function(t){this.a4=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"af",{get:function(){return this.ae},set:function(t){this.ae=t,this.ad()},enumerable:!1,configurable:!0}),e.prototype.ad=function(){t.prototype.ad.call(this),this.a2=1e8*this.a5+t.prototype.getHashCode.call(this)+this.af},e.prototype.getHashCode=function(){return this.a2},e.prototype.equals=function(e){if(!t.prototype.equals.call(this,e))return!1;var n=e;if(null==e)return!1;if(this.a3!=n.a3)return!1;if(!this.ay){if(this.az!=n.az)return!1;if(this.aw!=n.aw)return!1}return this.af==n.af},e.prototype.toString=function(){return this.a3+"."+t.prototype.toString.call(this)},e.prototype.ab=function(){var t=new e(0,this.b,this.a3,this.y,this.x);return t.bb=this.bb,t.az=this.az,t.aw=this.aw,t.i=this.i,t.o=this.o,t.d=this.d,t.au=this.au,t.ai=this.ai,t.ax=this.ax,t.af=this.af,t},Object.defineProperty(e.prototype,"ay",{get:function(){return-300==this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aj",{get:function(){return(this.a3>=0||-800==this.a3||-400==this.a3)&&this.x>=0&&this.x>=0},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a0",{get:function(){return-400==this.a3||-401==this.a3||-402==this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"an",{get:function(){return this.g&&!this.ay},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"av",{get:function(){return-102==this.x&&-400==this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aq",{get:function(){return(-103==this.x||-104==this.x)&&-500==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"as",{get:function(){return(-103==this.x||-104==this.x)&&-501==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ap",{get:function(){return-100==this.x&&-500==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ar",{get:function(){return-100==this.x&&-501==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"at",{get:function(){return-104==this.x},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"az",{get:function(){return this.ah},set:function(t){this.ah=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aw",{get:function(){return this.ag},set:function(t){this.ag=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a1",{get:function(){return this.az||this.aw},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ak",{get:function(){return 2==this.af},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"al",{get:function(){return 3==this.af},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ao",{get:function(){return 4==this.af},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"am",{get:function(){return 5==this.af},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CellPath",y.$),e}(y),P=n.markEnum("ModelTypes","ColumnHeader,0|Cell,1|SectionHeader,2|SectionFooter,3|RowSeparator,4|VerticalSeparator,5|ResizeSeparator,6|HeaderSeparator,7|MovingSeparator,8|Editor,9|EditRow,10|FilterCell,11|MergedCell,12"),O=function(t){return t[t.Left=0]="Left",t[t.Center=1]="Center",t[t.Right=2]="Right",t[t.Stretch=3]="Stretch",t[t.Auto=4]="Auto",t}({}),I=n.markEnum("CellContentHorizontalAlignment","Left,0|Center,1|Right,2|Stretch,3|Auto,4"),j=function(t){return t[t.Top=0]="Top",t[t.Center=1]="Center",t[t.Bottom=2]="Bottom",t[t.Stretch=3]="Stretch",t[t.Auto=4]="Auto",t}({}),k=n.markEnum("CellContentVerticalAlignment","Top,0|Center,1|Bottom,2|Stretch,3|Auto,4"),T=function(t){return t[t.Ellipsis=0]="Ellipsis",t[t.NoWrap=1]="NoWrap",t[t.WordWrap=2]="WordWrap",t[t.CharacterWrap=3]="CharacterWrap",t}({}),R=n.markEnum("TextCellLineBreakMode","Ellipsis,0|NoWrap,1|WordWrap,2|CharacterWrap,3"),D=function(t){return t[t.None=0]="None",t[t.Ascending=1]="Ascending",t[t.Descending=2]="Descending",t}({}),B=n.markEnum("ColumnSortDirection","None,0|Ascending,1|Descending,2"),M=function(t){return t[t.None=0]="None",t[t.Left=1]="Left",t[t.Right=2]="Right",t}({}),E=n.markEnum("PinnedPositions","None,0|Left,1|Right,2"),A=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.r=0,e.s=0,e.n=0,e.o=0,e.k=0,e.q=0,e.m=0,e.h=0,e.l=0,e.i=0,e.a=null,e.b=null,e.d=0,e.e=0,e.aa=null,e.c=null,e.w=null,e.x=null,e.y=null,e.j=0,e.u=null,e.v=null,e.p=0,e.f=0,e.t=0,e.g=!1,e.z=null,e}return i.__extends(e,t),e.prototype.ab=function(){var t=new n.StringBuilder(0);t.l("{ "),t.l('type : "'+this.ac+'", '),t.l("x : "+this.r+", "),t.l("y : "+this.s+", "),t.l("snappedX : "+this.n+", "),t.l("snappedY : "+this.o+", "),t.l("height : "+this.k+", "),t.l("width : "+this.q+", "),t.l('lineBreakMode: "'+this.z+'", '),t.l("selectedStatus : "+this.m+", "),t.l("activationStatus : "+this.h+", "),t.l("virtualizationPercentage : "+this.p+", "),t.l("backgroundBrushData : "+this.a.serialize()+", "),null!=this.b&&t.l("borderBrushData : "+this.b.serialize()+", "),t.l("opacity : "+this.l+", "),t.l("contentOpacity : "+this.i+", "),null!=this.d&&t.l("horizontalAlignment : "+this.d+", "),null!=this.e&&t.l("verticalAlignment : "+this.e+", "),t.l('renderValue : "'+this.aa+'", '),null!=this.c&&t.l("textColor : "+this.c.serialize()+", "),n.stringIsNullOrEmpty(this.w)||t.l('fontStyle : "'+this.w+'", '),n.stringIsNullOrEmpty(this.x)||t.l('fontVariant : "'+this.x+'", '),n.stringIsNullOrEmpty(this.y)||t.l('fontWeight : "'+this.y+'", '),n.stringIsNullOrEmpty(this.u)||t.l('fontFamily : "'+this.u+'", '),n.stringIsNullOrEmpty(this.v)||t.l('fontStretch : "'+this.v+'", '),n.isNaN_(this.j)||t.l("fontSize : "+this.j+", "),t.l("sortDirection : "+this.f+", "),t.l("indent : "+this.t+", "),t.l("isCollapsable : "+this.g.toString().toLowerCase()+", "),this.ad(t);var e=t.toString();return n.stringEndsWith(e,", ")&&(e=e.substr(0,e.length-2)),e+="} "},e.prototype.get_ac=function(){return"Cell"},Object.defineProperty(e.prototype,"ac",{get:function(){return this.get_ac()},enumerable:!1,configurable:!0}),e.prototype.ad=function(t){},e.$t=n.markType(e,"CellModelExport"),e}(n.Base),V=function(t){return t[t.List=0]="List",t[t.Cells=1]="Cells",t[t.RowTop=2]="RowTop",t[t.RowBottom=3]="RowBottom",t[t.None=4]="None",t}({}),N=n.markEnum("GroupSummaryDisplayMode","List,0|Cells,1|RowTop,2|RowBottom,3|None,4"),F=function(t){return t[t.DateShort=0]="DateShort",t[t.DateLong=1]="DateLong",t[t.TimeShort=2]="TimeShort",t[t.TimeLong=3]="TimeLong",t[t.DateTimeShort=4]="DateTimeShort",t[t.DateTimeLong=5]="DateTimeLong",t}({}),$=n.markEnum("DateTimeFormats","DateShort,0|DateLong,1|TimeShort,2|TimeLong,3|DateTimeShort,4|DateTimeLong,5"),z=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e.b=!1,e.f=null,e.e=null,e.c=null,e.d=null,e.g=null,e.h=null,e}return i.__extends(e,t),e.prototype.k=function(){this.b=!0},e.prototype.j=function(t){this.a=t,this.b=!1},e.prototype.i=function(t){if(+t==+n.dateMinValue())return"";if(Intl&&Intl.DateTimeFormat){var e=null;switch(this.a){case 4:null==this.f&&(this.f=new Intl.DateTimeFormat([],{month:"numeric",day:"numeric",year:"numeric",hour:"numeric",minute:"numeric",second:"numeric"})),e=this.f;break;case 5:null==this.e&&(this.e=new Intl.DateTimeFormat([],{weekday:"long",month:"long",day:"numeric",year:"numeric",hour:"numeric",minute:"numeric",second:"numeric"})),e=this.e;break;case 1:null==this.c&&(this.c=new Intl.DateTimeFormat([],{weekday:"long",month:"long",day:"numeric",year:"numeric"})),e=this.c;break;case 0:null==this.d&&(this.d=new Intl.DateTimeFormat([],{month:"numeric",day:"numeric",year:"numeric"})),e=this.d;break;case 3:null==this.g&&(this.g=new Intl.DateTimeFormat([],{hour:"numeric",minute:"numeric",second:"numeric"})),e=this.g;break;case 2:null==this.h&&(this.h=new Intl.DateTimeFormat([],{hour:"numeric",minute:"numeric"})),e=this.h}var i=t;return e.format(i)}i=t;switch(this.a){case 4:case 5:return i.toLocaleString();case 1:case 0:return i.toLocaleDateString();case 3:case 2:return i.toLocaleTimeString()}return t.toString()},e.$t=n.markType(e,"DateTimeColumnValueFormatter"),e}(n.Base),G=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=new Date,e.ag=0,e.ae=!1,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"DateTimeCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l("dateTimeFormat : "+this.ag+", ")},e.$t=n.markType(e,"DateTimeCellModelExport",A.$),e}(A),L=function(t){return t[t.Default=0]="Default",t[t.Text=1]="Text",t[t.Numeric=2]="Numeric",t[t.Date=3]="Date",t[t.Combo=4]="Combo",t}({}),q=n.markEnum("EditorType","Default,0|Text,1|Numeric,2|Date,3|Combo,4"),H=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=!1,e.ag=null,e.ae=0,e.ah=null,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"EditorCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l("isHidden: "+this.af.toString().toLowerCase()+", "),e.l("editValue: '"+this.ag+"', "),e.l("dataType: '"+n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.ae)+"', "),e.l("errorMessage: '"+this.ah+"', ")},e.$t=n.markType(e,"EditorCellModelExport",A.$),e}(A),W=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=0,e.ag=!1,e.ae=0,e.an=null,e.am=0,e.al=0,e.ak=0,e.aj=0,e.ai=0,e.ah=0,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"FilterCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l("dataType: '"+n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.af)+"', "),e.l("isEnabled: "+this.ag.toString().toLowerCase()+", "),e.l("filterValue: '"+this.an+"', "),e.l("operatorType: '"+n.enumGetBox(m,this.ae)+"', "),e.l("selectorTop: '"+this.am+"', "),e.l("selectorLeft: '"+this.al+"', "),e.l("editorTop: '"+this.ak+"', "),e.l("editorLeft: '"+this.aj+"', "),e.l("clearIconTop: '"+this.ai+"', "),e.l("clearIconLeft: '"+this.ah+"', ")},e.$t=n.markType(e,"FilterCellModelExport",A.$),e}(A),U=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.ai=null,e.ao=null,e.ae=null,e.af=null,e.al=null,e.am=null,e.an=null,e.ag=0,e.aj=null,e.ak=null,e.ar=null,e.as=null,e.at=null,e.ah=0,e.ap=null,e.aq=null,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"SummaryCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l('summaryLabel : "'+this.ai+'", '),e.l('summaryValue : "'+this.ao+'", '),null!=this.ae&&e.l("summaryLabelColor : "+this.ae.serialize()+", "),null!=this.af&&e.l("summaryValueColor : "+this.af.serialize()+", "),n.stringIsNullOrEmpty(this.al)||e.l('summaryLabelFontStyle : "'+this.al+'", '),n.stringIsNullOrEmpty(this.am)||e.l('summaryLabelFontVariant : "'+this.am+'", '),n.stringIsNullOrEmpty(this.an)||e.l('summaryLabelFontWeight : "'+this.an+'", '),n.isNaN_(this.ag)||e.l("summaryLabelFontSize : "+this.ag+", "),n.stringIsNullOrEmpty(this.aj)||e.l('summaryLabelFontFamily : "'+this.aj+'", '),n.stringIsNullOrEmpty(this.ak)||e.l('summaryLabelFontStretch : "'+this.ak+'", '),n.stringIsNullOrEmpty(this.ar)||e.l('summaryValueFontStyle : "'+this.ar+'", '),n.stringIsNullOrEmpty(this.as)||e.l('summaryValueFontVariant : "'+this.as+'", '),n.stringIsNullOrEmpty(this.at)||e.l('summaryValueFontWeight : "'+this.at+'", '),n.isNaN_(this.ah)||e.l("summaryValueFontSize : "+this.ah+", "),n.stringIsNullOrEmpty(this.ap)||e.l('summaryValueFontFamily : "'+this.ap+'", '),n.stringIsNullOrEmpty(this.aq)||e.l('summaryValueFontStretch : "'+this.aq+'", ')},e.$t=n.markType(e,"SummaryCellModelExport",A.$),e}(A),K=function(t){return t[t.Uniform=0]="Uniform",t[t.Fill=1]="Fill",t[t.None=2]="None",t}({}),X=n.markEnum("ImageStretchOptions","Uniform,0|Fill,1|None,2"),Z=function(t){return t[t.Unspecified=0]="Unspecified",t[t.LocalResource=1]="LocalResource",t[t.LocalAsset=2]="LocalAsset",t[t.EmbeddedResource=3]="EmbeddedResource",t[t.RemoteResource=4]="RemoteResource",t}({}),Y=n.markEnum("ImageResourceType","Unspecified,0|LocalResource,1|LocalAsset,2|EmbeddedResource,3|RemoteResource,4"),Q=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=null,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"ImageCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l('imagePath : "'+this.ae+'", ')},e.$t=n.markType(e,"ImageCellModelExport",A.$),e}(A),J=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=0,e.af=0,e.ag=0,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"NumericCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l("numericValue : "+this.ae+", "),e.l("maxDecimalPlaces : "+this.af+", "),e.l("minDecimalPlaces : "+this.ag+", ")},e.$t=n.markType(e,"NumericCellModelExport",A.$),e}(A),tt=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.get_ac=function(){return"RowSeparator"},e.prototype.ad=function(e){t.prototype.ad.call(this,e)},e.$t=n.markType(e,"RowSeparatorModelExport",A.$),e}(A),et=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.a=null,e.b=null,e}return i.__extends(e,t),e.$t=n.markType(e,"GroupData"),e}(n.Base),nt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.e=null,e.b=null,e.a=0,e.c=null,e.d=null,e}return i.__extends(e,t),e.$t=n.markType(e,"SummaryData"),e}(n.Base),it=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=null,e.ag=null,e.ae=null,e.al=null,e.ai=null,e.ak=null,e.aj=null,e.ah=null,e.am=null,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"SectionHeaderCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e);for(var i="groupNames : [ ",r="groupValues : [ ",o=0;o<this.af.length;o++)i+='"'+this.af[o]+'", ',r+='"'+this.ag[o]+'", ';var a="summaryNames : [ ",s="summaryValues : [ ",l="summaryOperands : [ ",u="summaryFormattedText : [ ";if(null!=this.ai)for(var c=0;c<this.ai.length;c++)a+='"'+this.ai[c]+'", ',s+='"'+this.ak[c]+'", ',l+='"'+n.enumGetBox(n.DataSourceSummaryOperand_$type,this.aj[c])+'", ',u+='"'+this.ah[c]+'", ';e.l(i+" ], "),e.l(r+" ], "),e.l('formattedText : "'+this.al+'", '),e.l(a+" ], "),e.l(s+" ], "),e.l(l+" ], "),e.l(u+" ], "),e.l('fullSummaryFormattedText : "'+this.am+'", ')},e.$t=n.markType(e,"SectionHeaderCellModelExport",A.$),e}(A),rt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=null,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"TemplateCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e)},e.$t=n.markType(e,"TemplateCellModelExport",A.$),e}(A),ot=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=null,e.ae=null,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"TextCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l('textValue : "'+this.af+'", '),e.l('formatString : "'+this.ae+'", ')},e.$t=n.markType(e,"TextCellModelExport",A.$),e}(A),at=function(t){return t[t.Default=0]="Default",t[t.FadingUpDownArrows=1]="FadingUpDownArrows",t[t.FadingSimpleUpDownArrows=2]="FadingSimpleUpDownArrows",t[t.Unset=3]="Unset",t}({}),st=n.markEnum("SortIndicatorStyle","Default,0|FadingUpDownArrows,1|FadingSimpleUpDownArrows,2|Unset,3"),lt=function(t){return t[t.Unset=0]="Unset",t[t.None=1]="None",t[t.Opposite=2]="Opposite",t}({}),ut=n.markEnum("ColumnOptionsIconAlignment","Unset,0|None,1|Opposite,2"),ct=function(t){return t[t.Unset=0]="Unset",t[t.AlwaysVisible=1]="AlwaysVisible",t[t.AppearOnHover=2]="AppearOnHover",t[t.AppearOnHoverAnimate=3]="AppearOnHoverAnimate",t}({}),ht=n.markEnum("ColumnOptionsIconBehavior","Unset,0|AlwaysVisible,1|AppearOnHover,2|AppearOnHoverAnimate,3"),pt=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.get_ac=function(){return"TextHeaderCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e)},e.$t=n.markType(e,"TextHeaderCellModelExport",ot.$),e}(ot),dt=function(t){return t[t.Both=0]="Both",t[t.Root=1]="Root",t[t.Groups=2]="Groups",t[t.None=3]="None",t}({}),ft=n.markEnum("SummaryScope","Both,0|Root,1|Groups,2|None,3"),mt=function(t){return t[t.Combined=0]="Combined",t[t.Split=1]="Split",t}({}),gt=n.markEnum("GroupHeaderDisplayMode","Combined,0|Split,1"),yt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._page=0,e._data=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"page",{get:function(){return this._page},set:function(t){this._page=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"data",{get:function(){return this._data},set:function(t){this._data=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"PageChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),bt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.b=null,e.a=null,e.d=null,e.e=null,e}return i.__extends(e,t),e.$t=n.markType(e,"FormatSummaryTextEventArgs"),e}(n.Base),vt=function(t){function e(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];var r=t.call(this)||this;switch(r.s=!1,r.g=0,r.ac=null,r.h=0,r.k=null,r.z=null,r.ab=null,r.ad=null,r.q=!0,r.b=null,r.aa=null,r.a=null,r.f=null,r.e=null,r.x=null,r.u=10,r.formatText=null,r.provideCalculator=null,r.m=null,e=null==e?0:e){case 0:break;case 1:var o=n[0];r.ah=o,r.i=4;break;case 2:o=n[0];var a=n[1];r.ah=o,r.i=a}return r}return i.__extends(e,t),Object.defineProperty(e.prototype,"ah",{get:function(){return this.ac},set:function(t){this.ac=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.h},set:function(t){switch(this.h=t,this.h){case 0:this.l=new n.MinSummaryCalculator;break;case 1:this.l=new n.MaxSummaryCalculator;break;case 2:this.l=new n.SumSummaryCalculator;break;case 3:this.l=new n.AverageSummaryCalculator;break;case 4:this.l=new n.CountSummaryCalculator}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.k},set:function(t){this.k=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ae",{get:function(){return this.z},set:function(t){this.z=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ag",{get:function(){return this.ab},set:function(t){this.ab=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ai",{get:function(){return this.ad},set:function(t){this.ad=t,this.aj()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"t",{get:function(){return this.q},set:function(t){this.q=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.b},set:function(t){this.b=t,this.aj()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"af",{get:function(){return this.aa},set:function(t){this.aa=t,this.aj()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.a},set:function(t){this.a=t,this.aj()},enumerable:!1,configurable:!0}),e.prototype.aj=function(){null!=this.ai?(this.f=new n.BindingFormatter,this.f.j=this.ai,this.f.d=this.d):this.f=null,null!=this.af?(this.e=new n.BindingFormatter,this.e.j=this.af,this.e.d=this.c):this.e=null},Object.defineProperty(e.prototype,"y",{get:function(){return this.x},set:function(t){this.x=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.u},set:function(t){this.u=t},enumerable:!1,configurable:!0}),e.prototype.equals=function(e){var n=e;return null==n?t.prototype.equals.call(this,e):n.ah==this.ah&&n.i==this.i},e.prototype.getHashCode=function(){return 17*n.Base.getHashCodeStatic(this.ah)+this.i},e.prototype.o=function(t,e,n){var i,r=this,o=((i=new bt).c=r.ah,i.b=r.ag,i.a=t,i.d=e,i.e=n,i);return null!=this.formatText&&this.formatText(this,o),o},Object.defineProperty(e.prototype,"n",{get:function(){return this.m},set:function(t){var e=this.m;if(null!=e&&(e.provideCalculator=n.delegateRemove(e.provideCalculator,n.runOn(this,this.ak))),this.m=t,null!=this.m){var i=this.m;i.provideCalculator=n.delegateCombine(i.provideCalculator,n.runOn(this,this.ak))}},enumerable:!1,configurable:!0}),e.prototype.ak=function(t,e){null!=this.provideCalculator&&(this.provideCalculator(this,e),this.l=e.a)},e.$t=n.markType(e,"ColumnSummaryDescription"),e}(n.Base),Ct=function(t){function e(){var e=t.call(this)||this;e.f=new n.SyncableObservableCollection$2(vt.$,n.SummaryDescription.$,0),e.a=null;var i=e.f;return i.compare=function(t,e){return t.ah==e.propertyName&&t.i==e.operand&&t.t==e.shouldDisplay&&t.l==e.calculator&&t.n==e},i.createFrom=function(t){var e=new vt(1,t.propertyName);return e.i=t.operand,e.t=t.shouldDisplay,e.l=t.calculator,e.n=t,e},i.createTo=function(t){var e=new n.SummaryDescription(1,t.ah);return e.operand=t.i,e.shouldDisplay=t.t,e.calculator=t.l,t.n=e,e},e}return i.__extends(e,t),Object.defineProperty(e.prototype,"i",{get:function(){return this.f.shouldDetachOnTargetChange},set:function(t){this.f.shouldDetachOnTargetChange=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){if(null==t)return this.f.syncTarget=null,void(this.a=null);this.a=t,this.f.syncTarget=this.a.g()},enumerable:!1,configurable:!0}),e.prototype.g=function(t){return this.f.add(t)},e.prototype.o=function(t,e){this.f.add1(t,e)},e.prototype.n=function(){this.f.clear()},e.prototype.get=function(t){return this.f.get(t)},e.prototype.k=function(t){return this.f.indexOf(t)},e.prototype.h=function(t){return this.f.remove1(t)},e.prototype.d=function(t){return this.f.remove(t)},e.prototype.set=function(t,e){return this.f.set(t,e)},e.prototype.size=function(){return this.f.size()},e.prototype.m=function(t){this.f.addListener(t)},e.prototype.p=function(t){this.f.removeListener(t)},Object.defineProperty(e.prototype,"j",{get:function(){return this.f.all},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"ColumnSummaryDescriptionCollection"),e}(n.Base),xt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e}return i.__extends(e,t),e.$t=n.markType(e,"GridFilterExpressionsEventArgs"),e}(n.Base),_t=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._sortDescriptions=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"sortDescriptions",{get:function(){return this._sortDescriptions},set:function(t){this._sortDescriptions=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridSortDescriptionsChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),wt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._groupDescriptions=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"groupDescriptions",{get:function(){return this._groupDescriptions},set:function(t){this._groupDescriptions=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridGroupDescriptionsChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),St=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._summaryDescriptions=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"summaryDescriptions",{get:function(){return this._summaryDescriptions},set:function(t){this._summaryDescriptions=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridSummaryDescriptionsChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Pt=function(t){function e(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];var r=t.call(this)||this;switch(r.a=null,e=null==e?0:e){case 0:break;case 1:var o=n[0];r.b.o(o)}return r}return i.__extends(e,t),Object.defineProperty(e.prototype,"b",{get:function(){return null==this.a&&(this.a=new n.List$1(n.IDataSourceUpdateNotifier_$type,0)),this.a},enumerable:!1,configurable:!0}),e.prototype.c=function(t){this.b.add(t)},e.prototype.d=function(t){for(var e=0;e<this.b.count;e++)t(this.b._inner[e])},e.prototype.notifyClearItems=function(){this.d((function(t){return t.notifyClearItems()}))},e.prototype.notifyInsertItem=function(t,e){this.d((function(n){return n.notifyInsertItem(t,e)}))},e.prototype.notifyRemoveItem=function(t,e){this.d((function(n){return n.notifyRemoveItem(t,e)}))},e.prototype.notifySetItem=function(t,e,n){this.d((function(i){return i.notifySetItem(t,e,n)}))},e.prototype.rangeActualized=function(t,e){this.d((function(n){return n.rangeActualized(t,e)}))},e.$t=n.markType(e,"MultipleDataSourceNotifier",n.Base.$,[n.IDataSourceUpdateNotifier_$type]),e}(n.Base),Ot=function(t){function e(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];var r=t.call(this)||this;switch(r.e=null,r.b=0,e=null==e?0:e){case 0:break;case 1:var o=n[0];r.f=o;break;case 2:o=n[0];var a=n[1];r.f=o,r.c=a}return r}return i.__extends(e,t),Object.defineProperty(e.prototype,"f",{get:function(){return this.e},set:function(t){this.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},set:function(t){this.b=t},enumerable:!1,configurable:!0}),e.prototype.equals=function(e){var n=e;return null==n?t.prototype.equals.call(this,e):n.f==this.f&&n.c==this.c},e.prototype.getHashCode=function(){return 17*n.Base.getHashCodeStatic(this.f)+this.c},e.$t=n.markType(e,"ColumnSortDescription"),e}(n.Base),It=function(t){function e(){var e=t.call(this)||this;e.f=new n.SyncableObservableCollection$2(Ot.$,n.SortDescription.$,0),e.a=null;var i=e.f;return i.compare=function(t,e){return t.f==e.propertyName},i.createFrom=function(t){return new Ot(2,t.propertyName,t.direction)},i.createTo=function(t){var e=t.c;return n.SortDescription.create(t.f,e)},e}return i.__extends(e,t),Object.defineProperty(e.prototype,"i",{get:function(){return this.f.shouldDetachOnTargetChange},set:function(t){this.f.shouldDetachOnTargetChange=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){if(null==t)return this.f.syncTarget=null,void(this.a=null);this.a=t,this.f.syncTarget=this.a.getInner()},enumerable:!1,configurable:!0}),e.prototype.g=function(t){return this.f.add(t)},e.prototype.o=function(t,e){this.f.add1(t,e)},e.prototype.n=function(){this.f.clear()},e.prototype.get=function(t){return this.f.get(t)},e.prototype.k=function(t){return this.f.indexOf(t)},e.prototype.h=function(t){return this.f.remove1(t)},e.prototype.d=function(t){return this.f.remove(t)},e.prototype.set=function(t,e){return this.f.set(t,e)},e.prototype.size=function(){return this.f.size()},e.prototype.m=function(t){this.f.addListener(t)},e.prototype.p=function(t){this.f.removeListener(t)},Object.defineProperty(e.prototype,"j",{get:function(){return this.f.all},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"ColumnSortDescriptionCollection"),e}(n.Base),jt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.d=null,e.a=null,e.c=null,e.b=null,e}return i.__extends(e,t),e.$t=n.markType(e,"FormatGroupTextEventArgs"),e}(n.Base),kt=function(t){function e(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];var r=this;switch(e=null==e?0:e){case 0:(r=t.call(this,0)||this).t=null,r.h=null,r.r=null,r.g=null,r.p=null,r.s=null,r.o=!1,r.m=0,r.l=null,r.k=null,r.formatText=null,r.o=!1,r.m=11;break;case 1:var o=n[0];(r=t.call(this,1,o)||this).t=null,r.h=null,r.r=null,r.g=null,r.p=null,r.s=null,r.o=!1,r.m=0,r.l=null,r.k=null,r.formatText=null,r.o=!1,r.m=11;break;case 2:o=n[0];var a=n[1];(r=t.call(this,2,o,a)||this).t=null,r.h=null,r.r=null,r.g=null,r.p=null,r.s=null,r.o=!1,r.m=0,r.l=null,r.k=null,r.formatText=null,r.o=!1,r.m=11;break;case 3:o=n[0],a=n[1];var s=n[2];(r=t.call(this,2,o,a)||this).t=null,r.h=null,r.r=null,r.g=null,r.p=null,r.s=null,r.o=!1,r.m=0,r.l=null,r.k=null,r.formatText=null,r.o=!1,r.m=11,r.v=s}return r}return i.__extends(e,t),Object.defineProperty(e.prototype,"x",{get:function(){return this.t},set:function(t){this.t=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){this.h=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"u",{get:function(){return this.r},set:function(t){this.r=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.g},set:function(t){this.g=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"q",{get:function(){return this.p},set:function(t){this.p=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.s},set:function(t){this.s=t},enumerable:!1,configurable:!0}),e.prototype.y=function(){null!=this.x?(this.l=new n.BindingFormatter,this.l.j=this.x,this.l.d=this.j):this.l=null,null!=this.u?(this.k=new n.BindingFormatter,this.k.j=this.u,this.k.d=this.i):this.k=null},e.prototype.w=function(t,e,n){var i,r=this,o=null;return null!=this.formatText&&((i=new jt).d=r.f,i.a=t,i.c=e,i.b=n,o=i,this.formatText(this,o)),null==o?n:o.b},e.$t=n.markType(e,"ColumnGroupDescription",Ot.$),e}(Ot),Tt=function(t){function e(){var e=t.call(this)||this;e.f=new n.SyncableObservableCollection$2(kt.$,n.SortDescription.$,0),e.a=null;var i=e.f;return i.compare=function(t,e){return t.f==e.propertyName},i.createFrom=function(t){return new kt(3,t.propertyName,t.direction,t.displayName)},i.createTo=function(t){var e=t.c;return n.SortDescription.create(t.f,e,t.v)},e}return i.__extends(e,t),Object.defineProperty(e.prototype,"i",{get:function(){return this.f.shouldDetachOnTargetChange},set:function(t){this.f.shouldDetachOnTargetChange=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){if(null==t)return this.f.syncTarget=null,void(this.a=null);this.a=t,this.f.syncTarget=this.a.getInner()},enumerable:!1,configurable:!0}),e.prototype.g=function(t){return this.f.add(t)},e.prototype.o=function(t,e){this.f.add1(t,e)},e.prototype.n=function(){this.f.clear()},e.prototype.get=function(t){return this.f.get(t)},e.prototype.k=function(t){return this.f.indexOf(t)},e.prototype.h=function(t){return this.f.remove1(t)},e.prototype.d=function(t){return this.f.remove(t)},e.prototype.set=function(t,e){return this.f.set(t,e)},e.prototype.size=function(){return this.f.size()},e.prototype.m=function(t){this.f.addListener(t)},e.prototype.p=function(t){this.f.removeListener(t)},Object.defineProperty(e.prototype,"j",{get:function(){return this.f.all},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"ColumnGroupDescriptionCollection"),e}(n.Base),Rt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=null,e.n=null,e.o=null,e.p=null,e.g=0,e.l=null,e.m=null,e.h=0,e.i=0,e.k=null,e.c=null,e.f=null,e.e=null,e.d=null,e}return i.__extends(e,t),e.prototype.j=function(){var t=new n.StringBuilder(0);return t.l("{"),null!=this.a&&t.l("actualBackgroundColor : "+this.a.serialize()+", "),null!=this.b&&t.l("actualBorderColor : "+this.b.serialize()+", "),n.stringIsNullOrEmpty(this.n)||t.l('textStyleFontStyle : "'+this.n+'", '),n.stringIsNullOrEmpty(this.o)||t.l('textStyleFontVariant : "'+this.o+'", '),n.stringIsNullOrEmpty(this.p)||t.l('textStyleFontWeight : "'+this.p+'", '),n.stringIsNullOrEmpty(this.l)||t.l('textStyleFontFamily : "'+this.l+'", '),n.stringIsNullOrEmpty(this.m)||t.l('textStyleFontStretch : "'+this.m+'", '),n.isNaN_(this.g)||t.l("textStyleFontSize : "+this.g+", "),t.l("text : '"+this.k+"', "),t.l("currentPage : "+this.h+", "),t.l("pageCount : "+this.i+", "),null!=this.c&&t.l("firstPageButton : "+this.c.serialize()+", "),null!=this.f&&t.l("previousPageButton : "+this.f.serialize()+", "),null!=this.e&&t.l("nextPageButton : "+this.e.serialize()+", "),null!=this.d&&t.l("lastPageButton : "+this.d.serialize()+", "),t.l("}"),t.toString()},e.$t=n.markType(e,"PagerVisualModelExport"),e}(n.Base),Dt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._propertyName=null,e._animationType=0,e._oldValue=null,e._newValue=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"propertyName",{get:function(){return this._propertyName},set:function(t){this._propertyName=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"animationType",{get:function(){return this._animationType},set:function(t){this._animationType=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oldValue",{get:function(){return this._oldValue},set:function(t){this._oldValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"newValue",{get:function(){return this._newValue},set:function(t){this._newValue=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"DefinitionPropertyUpdatedEventArgs",n.EventArgs.$),e}(n.EventArgs),Bt=function(t){return t[t.DoubleValue=0]="DoubleValue",t[t.NumberValue=1]="NumberValue",t[t.BrushValue=2]="BrushValue",t[t.FontValue=3]="FontValue",t[t.EnumValue=4]="EnumValue",t[t.BoolValue=5]="BoolValue",t[t.IntValue=6]="IntValue",t[t.DateValue=7]="DateValue",t[t.StringValue=8]="StringValue",t[t.ObjectValue=9]="ObjectValue",t[t.IgnoredValue=10]="IgnoredValue",t[t.None=11]="None",t}({}),Mt=n.markEnum("CellPropertyAnimationType","DoubleValue,0|NumberValue,1|BrushValue,2|FontValue,3|EnumValue,4|BoolValue,5|IntValue,6|DateValue,7|StringValue,8|ObjectValue,9|IgnoredValue,10|None,11"),Et=function(t){return t[t.Deferred=0]="Deferred",t[t.Immediate=1]="Immediate",t[t.None=2]="None",t}({}),At=n.markEnum("ColumnResizingMode","Deferred,0|Immediate,1|None,2"),Vt=function(t){return t[t.Deferred=0]="Deferred",t[t.None=1]="None",t}({}),Nt=n.markEnum("ColumnMovingMode","Deferred,0|None,1"),Ft=function(t){function e(){var e=t.call(this)||this;return e.g=null,e.c=!1,e.f=0,e.d=0,e.c=!0,e.f=1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"e",{get:function(){return this.d},set:function(t){this.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(e,"a",{get:function(){return(t=new e).c=!0,t.e=0,t.f=1,t;var t},enumerable:!1,configurable:!0}),e.parse=function(t){if(null==t)return new e;t=t.trim();var i=n.stringContains(t,"*");if(i||n.stringContains(t,"min=")||n.stringContains(t,"Min=")||n.stringContains(t,",")){var r=new e;r.c=i,t=n.stringReplace(t," ",""),t=n.stringReplace(t,"min=",","),t=n.stringReplace(t,"Min=",","),t=n.stringReplace(t,"*,,","*"),t=n.stringReplace(t,"*,","*");for(var o=(t=n.stringReplace(t,",,",",")).split("*"),a=new n.List$1(n.String_$type,0),s=0;s<o.length;s++)for(var l=o[s].split(","),u=0;u<l.length;u++)a.add(l[u]);var c,h,p=a._inner[0];if(null!=p&&(p=p.trim()),n.stringIsNullOrEmpty(p))c=1;else if(m=n.tryParseNumber(p,c),c=m.p1,!m.ret)return new e;if(r.f=c,a.count>1&&null!=a._inner[1])a._inner[1]=n.stringReplace(a._inner[1],">",""),function(){var t=n.tryParseNumber(a._inner[1],h);return h=t.p1,t.ret}()&&(r.e=h);return r}var d,f,m,g=new e;return g.c=!1,f=n.tryParseNumber(t,d),d=f.p1,f.ret?(g.f=d,g):new e},e.$t=n.markType(e,"ColumnWidth"),e}(n.Base),$t=function(t){return t[t.SortByOneColumnOnly=0]="SortByOneColumnOnly",t[t.SortByMultipleColumns=1]="SortByMultipleColumns",t[t.SortByOneColumnOnlyTriState=2]="SortByOneColumnOnlyTriState",t[t.SortByMultipleColumnsTriState=3]="SortByMultipleColumnsTriState",t[t.None=4]="None",t}({}),zt=n.markEnum("HeaderClickAction","SortByOneColumnOnly,0|SortByMultipleColumns,1|SortByOneColumnOnlyTriState,2|SortByMultipleColumnsTriState,3|None,4"),Gt=function(t){return t[t.None=0]="None",t[t.SingleClick=1]="SingleClick",t[t.DoubleClick=2]="DoubleClick",t}({}),Lt=n.markEnum("EditModeClickAction","None,0|SingleClick,1|DoubleClick,2"),qt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.SlideFromLeft=2]="SlideFromLeft",t[t.SlideFromRight=3]="SlideFromRight",t[t.SlideFromTop=4]="SlideFromTop",t[t.SlideFromBottom=5]="SlideFromBottom",t[t.FadeIn=6]="FadeIn",t[t.SlideFromLeftAndFadeIn=7]="SlideFromLeftAndFadeIn",t[t.SlideFromRightAndFadeIn=8]="SlideFromRightAndFadeIn",t[t.SlideFromTopAndFadeIn=9]="SlideFromTopAndFadeIn",t[t.SlideFromBottomAndFadeIn=10]="SlideFromBottomAndFadeIn",t}({}),Ht=n.markEnum("ColumnShowingAnimationMode","Auto,0|None,1|SlideFromLeft,2|SlideFromRight,3|SlideFromTop,4|SlideFromBottom,5|FadeIn,6|SlideFromLeftAndFadeIn,7|SlideFromRightAndFadeIn,8|SlideFromTopAndFadeIn,9|SlideFromBottomAndFadeIn,10"),Wt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.Interpolate=2]="Interpolate",t[t.InterpolateDeep=3]="InterpolateDeep",t}({}),Ut=n.markEnum("ColumnPropertyUpdatingAnimationMode","Auto,0|None,1|Interpolate,2|InterpolateDeep,3"),Kt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.CrossFade=2]="CrossFade",t}({}),Xt=n.markEnum("CellDataLoadedAnimationMode","Auto,0|None,1|CrossFade,2"),Zt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.ColorBlend=2]="ColorBlend",t}({}),Yt=n.markEnum("RowSelectionAnimationMode","Auto,0|None,1|ColorBlend,2"),Qt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.ColorBlend=2]="ColorBlend",t}({}),Jt=n.markEnum("RowHoverAnimationMode","Auto,0|None,1|ColorBlend,2"),te=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.ColorBlend=2]="ColorBlend",t}({}),ee=n.markEnum("CellSelectionAnimationMode","Auto,0|None,1|ColorBlend,2"),ne=function(t){return t[t.Linear=0]="Linear",t[t.CubicInOut=1]="CubicInOut",t[t.ExponentialInOut=2]="ExponentialInOut",t[t.CircleInOut=3]="CircleInOut",t}({}),ie=n.markEnum("GridEasingFunctionType","Linear,0|CubicInOut,1|ExponentialInOut,2|CircleInOut,3"),re=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.p=null,e.g=300,e.h=0,e.i=-1,e.j=-1,e.f=300,e.d=!1,e.b=1,e.propertyChanged=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"l",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.x("DurationMilliseconds",e,this.g)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.x("HoldInitialMilliseconds",e,this.h)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.x("PerItemDelayMilliseconds",e,this.i)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,e!=this.j&&this.x("SubItemDurationMilliseconds",e,this.j)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"k",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,e!=this.f&&this.x("DesiredSubItemDurationMilliseconds",e,this.f)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,e!=this.d&&this.x("ShouldItemsFinishSimultaneously",e,this.d)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.x("EasingFunctionType",n.enumGetBox(ie,e),n.enumGetBox(ie,this.b))},enumerable:!1,configurable:!0}),e.prototype.x=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.a=function(){var t,n=this;return(t=new e).l=n.l,t.c=n.c,t.m=n.m,t.n=n.n,t.e=n.e,t.o=n.o,t.k=n.k,t},e.$t=n.markType(e,"GridAnimationPhaseSettings",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),oe=function(t){function e(){var e=t.call(this)||this;return e.y=null,e.i=null,e.a=null,e.b=null,e.k=null,e.l=null,e.j=null,e.g=null,e.h=null,e.e=null,e.f=null,e.d=null,e.c=null,e.propertyChanged=null,e.a=new re,e.a.l=1e3,e.a.c=1,e.a.m=500,e.a.e=!1,e.k=e.a.a(),e.i=new re,e.i.l=1e3,e.i.c=1,e.i.e=!1,e.b=new re,e.b.c=1,e.b.l=300,e.l=e.b.a(),e.e=e.a.a(),e.e.m=0,e.f=new re,e.f.m=1200,e.f.l=300,e.f.c=1,e.g=new re,e.g.l=1e3,e.g.c=1,e.g.m=500,e.g.e=!1,e.h=new re,e.h.c=1,e.h.l=800,e.d=e.a.a(),e.d.m=0,e.c=new re,e.c.m=0,e.c.l=300,e.c.c=0,e.j=new re,e.j.c=1,e.j.l=200,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"u",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,this.av("ColumnPropertyUpdatingMainPhase",e,this.i)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,this.av("ColumnAddingMainPhase",e,this.a)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,this.av("ColumnAddingPrePhase",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,this.av("ColumnShowingMainPhase",e,this.k)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"x",{get:function(){return this.l},set:function(t){var e=this.l;this.l=t,this.av("ColumnShowingPrePhase",e,this.l)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,this.av("ColumnResizingMainPhase",e,this.j)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"s",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,this.av("ColumnMovingMainPhase",e,this.g)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"t",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,this.av("ColumnMovingPrePhase",e,this.h)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"q",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,this.av("ColumnHidingMainPhase",e,this.e)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"r",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,this.av("ColumnHidingPostPhase",e,this.f)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"p",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,this.av("ColumnExchangingMainPhase",e,this.d)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,this.av("ColumnExchangingCleanupPhase",e,this.c)},enumerable:!1,configurable:!0}),e.prototype.av=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.aw(t,e,i)},e.prototype.aw=function(t,e,i){switch(t){case"ColumnAddingMainPhase":if(null!=e){var r=e;r.propertyChanged=n.delegateRemove(r.propertyChanged,n.runOn(this,this.al))}if(null!=i){var o=i;o.propertyChanged=n.delegateCombine(o.propertyChanged,n.runOn(this,this.al))}break;case"ColumnAddingPrePhase":if(null!=e){var a=e;a.propertyChanged=n.delegateRemove(a.propertyChanged,n.runOn(this,this.am))}if(null!=i){var s=i;s.propertyChanged=n.delegateCombine(s.propertyChanged,n.runOn(this,this.am))}break;case"ColumnShowingMainPhase":if(null!=e){var l=e;l.propertyChanged=n.delegateRemove(l.propertyChanged,n.runOn(this,this.at))}if(null!=i){var u=i;u.propertyChanged=n.delegateCombine(u.propertyChanged,n.runOn(this,this.at))}break;case"ColumnShowingPrePhase":if(null!=e){var c=e;c.propertyChanged=n.delegateRemove(c.propertyChanged,n.runOn(this,this.au))}if(null!=i){var h=i;h.propertyChanged=n.delegateCombine(h.propertyChanged,n.runOn(this,this.au))}break;case"ColumnMovingMainPhase":if(null!=e){var p=e;p.propertyChanged=n.delegateRemove(p.propertyChanged,n.runOn(this,this.ar))}if(null!=i){var d=i;d.propertyChanged=n.delegateCombine(d.propertyChanged,n.runOn(this,this.ar))}break;case"ColumnMovingPrePhase":if(null!=e){var f=e;f.propertyChanged=n.delegateRemove(f.propertyChanged,n.runOn(this,this.as))}if(null!=i){var m=i;m.propertyChanged=n.delegateCombine(m.propertyChanged,n.runOn(this,this.as))}break;case"ColumnHidingMainPhase":if(null!=e){var g=e;g.propertyChanged=n.delegateRemove(g.propertyChanged,n.runOn(this,this.ap))}if(null!=i){var y=i;y.propertyChanged=n.delegateCombine(y.propertyChanged,n.runOn(this,this.ap))}break;case"ColumnHidingPostPhase":if(null!=e){var b=e;b.propertyChanged=n.delegateRemove(b.propertyChanged,n.runOn(this,this.aq))}if(null!=i){var v=i;v.propertyChanged=n.delegateCombine(v.propertyChanged,n.runOn(this,this.aq))}break;case"ColumnExchangingMainPhase":if(null!=e){var C=e;C.propertyChanged=n.delegateRemove(C.propertyChanged,n.runOn(this,this.ao))}if(null!=i){var x=i;x.propertyChanged=n.delegateCombine(x.propertyChanged,n.runOn(this,this.ao))}break;case"ColumnExchangingCleanupPhase":if(null!=e){var _=e;_.propertyChanged=n.delegateRemove(_.propertyChanged,n.runOn(this,this.an))}if(null!=i){var w=i;w.propertyChanged=n.delegateCombine(w.propertyChanged,n.runOn(this,this.an))}}},e.prototype.al=function(t,e){this.av("ColumnAddingMainPhase",this.m,this.m)},e.prototype.am=function(t,e){this.av("ColumnAddingPrePhase",this.n,this.n)},e.prototype.at=function(t,e){this.av("ColumnShowingMainPhase",this.w,this.w)},e.prototype.au=function(t,e){this.av("ColumnShowingPrePhase",this.x,this.x)},e.prototype.ar=function(t,e){this.av("ColumnMovingMainPhase",this.s,this.s)},e.prototype.as=function(t,e){this.av("ColumnMovingPrePhase",this.t,this.t)},e.prototype.ap=function(t,e){this.av("ColumnHidingMainPhase",this.q,this.q)},e.prototype.aq=function(t,e){this.av("ColumnHidingPostPhase",this.r,this.r)},e.prototype.ao=function(t,e){this.av("ColumnExchangingMainPhase",this.p,this.p)},e.prototype.an=function(t,e){this.av("ColumnExchangingCleanupPhase",this.o,this.o)},e.$t=n.markType(e,"GridColumnAnimationSettings",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),ae=function(t){function e(){var e=t.call(this)||this;return e.i=null,e.b=null,e.d=null,e.a=null,e.c=null,e.propertyChanged=null,e.b=new re,e.b.l=500,e.b.c=1,e.b.e=!1,e.d=new re,e.d.l=300,e.d.c=1,e.d.n=0,e.d.e=!0,e.a=new re,e.a.l=0,e.a.c=1,e.a.n=0,e.a.e=!0,e.c=new re,e.c.l=100,e.c.c=1,e.c.n=0,e.c.e=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"f",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,this.p("CellDataLoadedMainPhase",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,this.p("RowSelectionMainPhase",e,this.d)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,this.p("CellActivationMainPhase",e,this.a)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,this.p("RowHoverMainPhase",e,this.c)},enumerable:!1,configurable:!0}),e.prototype.p=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.q(t,e,i)},e.prototype.q=function(t,e,i){switch(t){case"CellDataLoadedMainPhase":if(null!=e){var r=e;r.propertyChanged=n.delegateRemove(r.propertyChanged,n.runOn(this,this.o))}if(null!=i){var o=i;o.propertyChanged=n.delegateCombine(o.propertyChanged,n.runOn(this,this.o))}break;case"RowSelectionMainPhase":if(null!=e){var a=e;a.propertyChanged=n.delegateRemove(a.propertyChanged,n.runOn(this,this.r))}if(null!=i){var s=i;s.propertyChanged=n.delegateCombine(s.propertyChanged,n.runOn(this,this.r))}break;case"CellActivationMainPhase":if(null!=e){var l=e;l.propertyChanged=n.delegateRemove(l.propertyChanged,n.runOn(this,this.n))}if(null!=i){var u=i;u.propertyChanged=n.delegateCombine(u.propertyChanged,n.runOn(this,this.n))}}},e.prototype.o=function(t,e){this.p("CellDataLoadedMainPhase",this.f,this.f)},e.prototype.r=function(t,e){this.p("RowSelectionMainPhase",this.h,this.h)},e.prototype.n=function(t,e){this.p("CellActivationMainPhase",this.e,this.e)},e.$t=n.markType(e,"GridAnimationSettings",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),se=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.Interpolate=2]="Interpolate",t}({}),le=n.markEnum("ColumnResizingAnimationMode","Auto,0|None,1|Interpolate,2"),ue=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.SlideOver=2]="SlideOver",t}({}),ce=n.markEnum("ColumnMovingAnimationMode","Auto,0|None,1|SlideOver,2"),he=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.SlideToLeft=2]="SlideToLeft",t[t.SlideToRight=3]="SlideToRight",t[t.SlideToTop=4]="SlideToTop",t[t.SlideToBottom=5]="SlideToBottom",t[t.FadeOut=6]="FadeOut",t[t.SlideToLeftAndFadeOut=7]="SlideToLeftAndFadeOut",t[t.SlideToRightAndFadeOut=8]="SlideToRightAndFadeOut",t[t.SlideToTopAndFadeOut=9]="SlideToTopAndFadeOut",t[t.SlideToBottomAndFadeOut=10]="SlideToBottomAndFadeOut",t}({}),pe=n.markEnum("ColumnHidingAnimationMode","Auto,0|None,1|SlideToLeft,2|SlideToRight,3|SlideToTop,4|SlideToBottom,5|FadeOut,6|SlideToLeftAndFadeOut,7|SlideToRightAndFadeOut,8|SlideToTopAndFadeOut,9|SlideToBottomAndFadeOut,10"),de=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.SlideToLeft=2]="SlideToLeft",t[t.SlideToRight=3]="SlideToRight",t[t.SlideToTop=4]="SlideToTop",t[t.SlideToBottom=5]="SlideToBottom",t[t.Crossfade=6]="Crossfade",t[t.SlideToLeftAndCrossfade=7]="SlideToLeftAndCrossfade",t[t.SlideToRightAndCrossfade=8]="SlideToRightAndCrossfade",t[t.SlideToTopAndCrossfade=9]="SlideToTopAndCrossfade",t[t.SlideToBottomAndCrossfade=10]="SlideToBottomAndCrossfade",t}({}),fe=n.markEnum("ColumnExchangingAnimationMode","Auto,0|None,1|SlideToLeft,2|SlideToRight,3|SlideToTop,4|SlideToBottom,5|Crossfade,6|SlideToLeftAndCrossfade,7|SlideToRightAndCrossfade,8|SlideToTopAndCrossfade,9|SlideToBottomAndCrossfade,10"),me=function(t){return t[t.None=0]="None",t[t.SingleRow=1]="SingleRow",t[t.MultipleRow=2]="MultipleRow",t[t.SingleCell=3]="SingleCell",t[t.MultipleCell=4]="MultipleCell",t[t.RangeCell=5]="RangeCell",t}({}),ge=n.markEnum("DataGridSelectionMode","None,0|SingleRow,1|MultipleRow,2|SingleCell,3|MultipleCell,4|RangeCell,5"),ye=function(t){return t[t.None=0]="None",t[t.Cell=1]="Cell",t}({}),be=n.markEnum("GridActivationMode","None,0|Cell,1"),ve=function(t){return t[t.Toggle=0]="Toggle",t[t.ModifierBased=1]="ModifierBased",t}({}),Ce=n.markEnum("GridSelectionBehavior","Toggle,0|ModifierBased,1"),xe=function(t){function e(){var e=t.call(this,n.Base.$,0)||this;return e.af=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),e.prototype.ag=function(t){this.collectionChanged=n.delegateCombine(this.collectionChanged,t)},e.prototype.u=function(t){var e=this._inner[t];0==t?this._inner.shift():this._inner.splice(t,1),this.ad(new n.PropertyChangedEventArgs("Count")),this.ad(new n.PropertyChangedEventArgs("Item[]")),this.af||this.ac(new n.NotifyCollectionChangedEventArgs(1,1,e,t))},e.$t=n.markType(e,"GridSelectedItemsCollection",n.ObservableCollection$1.$.specialize(n.Base.$)),e}(n.ObservableCollection$1),_e=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.g=-2147483648,e.e=-2147483648,e.h=-2147483648,e.f=-2147483648,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"k",{get:function(){return this.g},set:function(t){this.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.e},set:function(t){this.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.f},set:function(t){this.f=t},enumerable:!1,configurable:!0}),e.prototype.b=function(t,e){return this.d(t)&&this.c(e)},e.prototype.d=function(t){return t>=this.l&&t<=this.j},e.prototype.c=function(t){return t>=this.k&&t<=this.i},e.prototype.a=function(){var t=new e;return t.k=this.k,t.i=this.i,t.l=this.l,t.j=this.j,t},e.$t=n.markType(e,"CellRange"),e}(n.Base),we=function(t){function e(){return t.call(this,_e.$,0)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridSelectedCellRangesCollection",n.ObservableCollection$1.$.specialize(_e.$)),e}(n.ObservableCollection$1),Se=function(t){return t[t.None=0]="None",t[t.Edit=1]="Edit",t[t.MoveDown=2]="MoveDown",t[t.MoveRight=3]="MoveRight",t[t.MoveUp=4]="MoveUp",t[t.MoveLeft=5]="MoveLeft",t}({}),Pe=n.markEnum("EnterKeyBehaviors","None,0|Edit,1|MoveDown,2|MoveRight,3|MoveUp,4|MoveLeft,5"),Oe=function(t){return t[t.None=0]="None",t[t.MoveDown=1]="MoveDown",t[t.MoveRight=2]="MoveRight",t[t.MoveUp=3]="MoveUp",t[t.MoveLeft=4]="MoveLeft",t}({}),Ie=n.markEnum("EnterKeyBehaviorAfterEdit","None,0|MoveDown,1|MoveRight,2|MoveUp,3|MoveLeft,4"),je=function(t){return t[t.Default=0]="Default",t[t.Never=1]="Never",t[t.Always=2]="Always",t[t.OnlyWhenSorted=3]="OnlyWhenSorted",t}({}),ke=n.markEnum("MergedCellMode","Default,0|Never,1|Always,2|OnlyWhenSorted,3"),Te=function(t){return t[t.Default=0]="Default",t[t.RawValue=1]="RawValue",t[t.FormattedText=2]="FormattedText",t}({}),Re=n.markEnum("MergedCellEvaluationCriteria","Default,0|RawValue,1|FormattedText,2"),De=function(t){return t[t.ColumnOptions=0]="ColumnOptions",t[t.FilterRow=1]="FilterRow",t[t.None=2]="None",t}({}),Be=n.markEnum("FilterUIType","ColumnOptions,0|FilterRow,1|None,2"),Me=function(t){return t[t.And=0]="And",t[t.Or=1]="Or",t}({}),Ee=n.markEnum("FilterLogicalOperator","And,0|Or,1"),Ae=function(t){return t[t.Default=0]="Default",t[t.CaseInsensitive=1]="CaseInsensitive",t[t.CaseSensitive=2]="CaseSensitive",t}({}),Ve=n.markEnum("FilterComparisonType","Default,0|CaseInsensitive,1|CaseSensitive,2"),Ne=new n.Type(null,"IPlatformPixelConverter"),Fe=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.devicePixelsToPixel=function(t){return t},e.$t=n.markType(e,"DefaultPlatformPixelConverter",n.Base.$,[Ne]),e}(n.Base),$e=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentItems=null,e._addedItems=null,e._removedItems=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"currentItems",{get:function(){return this._currentItems},set:function(t){this._currentItems=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"addedItems",{get:function(){return this._addedItems},set:function(t){this._addedItems=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"removedItems",{get:function(){return this._removedItems},set:function(t){this._removedItems=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridSelectedItemsChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),ze=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentKeys=null,e._addedKeys=null,e._removedKeys=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"currentKeys",{get:function(){return this._currentKeys},set:function(t){this._currentKeys=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"addedKeys",{get:function(){return this._addedKeys},set:function(t){this._addedKeys=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"removedKeys",{get:function(){return this._removedKeys},set:function(t){this._removedKeys=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridSelectedKeysChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Ge=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentRanges=null,e._addedRanges=null,e._removedRanges=null,e._updatedRanges=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"currentRanges",{get:function(){return this._currentRanges},set:function(t){this._currentRanges=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"addedRanges",{get:function(){return this._addedRanges},set:function(t){this._addedRanges=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"removedRanges",{get:function(){return this._removedRanges},set:function(t){this._removedRanges=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"updatedRanges",{get:function(){return this._updatedRanges},set:function(t){this._updatedRanges=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridSelectedCellRangesChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Le=function(t){function e(e,n){var i=t.call(this)||this;return i.b=0,i.a=null,i.b=e,i.a=n,i}return i.__extends(e,t),e.$t=n.markType(e,"GridDataCommittedEventArgs"),e}(n.Base),qe=function(t){function e(e,n){var i=t.call(this)||this;return i.a=null,i.b=0,i.b=e,i.a=n,i}return i.__extends(e,t),e.$t=n.markType(e,"GridDataCommittingEventArgs"),e}(n.Base),He=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=0,e.a=0,e}return i.__extends(e,t),e.$t=n.markType(e,"GridSizeChangedEventArgs"),e}(n.Base),We=n.markEnum("ColumnStates","Detached,0|Showing,1|Hiding,2|Hidden,3|Swapping,4|Visible,5|Moving,6"),Ue=function(t){function e(e){var i=t.call(this)||this;return i.a=null,i.c=null,i.c=e,i.a=new n.List$1(A.$,0),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.e=function(t){this.a.add(t)},e.prototype.f=function(){this.a.clear()},e.prototype.d=function(){var t=new n.StringBuilder(0);t.u("{"),t.u('name: "'+this.c+'", cells: [');for(var e=0;e<this.a.count;e++)t.l(this.a._inner[e].ab()),e<this.a.count-1&&t.l(", ");return t.l("]"),t.l("}"),t.toString()},e.$t=n.markType(e,"GridLayerExport"),e}(n.Base),Ke=function(t){function e(){var e=t.call(this)||this;return e.ao=null,e.ar=0,e.aq=0,e.ax=0,e.aw=0,e.au=0,e.av=0,e.as=0,e.a0=0,e.a1=0,e.a2=0,e.az=0,e.ay=0,e.a3=0,e.ae=null,e.a=null,e.ah=null,e.b=null,e.t=null,e.r=null,e.u=null,e.i=null,e.c=null,e.l=null,e.g=null,e.h=null,e.ad=null,e.w=null,e.v=null,e.x=null,e.ag=null,e.af=null,e.p=null,e.o=null,e.aj=null,e.ai=null,e.k=null,e.j=null,e.e=null,e.d=null,e.n=null,e.m=null,e.ak=null,e.q=null,e.f=null,e.s=null,e.y=null,e.aa=null,e.ab=null,e.ac=null,e.z=null,e.am=null,e.al=null,e.an=null,e.at=0,e.ap=null,e.a4=0,e.ao=n.RectData.empty,e.ae=new Ue("SubContentLayer"),e.a=new Ue("ContentLayer"),e.ah=new Ue("SuperContentLayer"),e.b=new Ue("DecoratorLayer"),e.t=new Ue("PinnedRowsSubLayer"),e.r=new Ue("PinnedRowsLayer"),e.u=new Ue("PinnedRowsSuperLayer"),e.i=new Ue("FixedSubContentLayer"),e.c=new Ue("FixedContentLayer"),e.l=new Ue("FixedSuperContentLayer"),e.g=new Ue("FixedPinnedRowsLayer"),e.h=new Ue("FixedSeparatorLayer"),e.ad=new Ue("SectionLayer"),e.w=new Ue("PinnedSectionSubLayer"),e.v=new Ue("PinnedSectionLayer"),e.x=new Ue("PinnedSectionSuperLayer"),e.ag=new Ue("SubHeaderLayer"),e.af=new Ue("SubHeaderDecoratorLayer"),e.p=new Ue("HeaderLayer"),e.o=new Ue("HeaderDecoratorLayer"),e.aj=new Ue("SuperHeaderLayer"),e.ai=new Ue("SuperHeaderDecoratorLayer"),e.k=new Ue("FixedSubHeaderLayer"),e.j=new Ue("FixedSubHeaderDecoratorLayer"),e.e=new Ue("FixedHeaderLayer"),e.d=new Ue("FixedHeaderDecoratorLayer"),e.n=new Ue("FixedSuperHeaderLayer"),e.m=new Ue("FixedSuperHeaderDecoratorLayer"),e.ak=new Ue("VerticalSeparatorLayer"),e.q=new Ue("HiddenLayer"),e.f=new Ue("FixedMergedCellsLayer"),e.s=new Ue("PinnedRowsMergedCellsLayer"),e.y=new Ue("RowSeparatorContentLayer"),e.aa=new Ue("RowSeparatorPinnedSectionLayer"),e.ab=new Ue("RowSeparatorPinnedSectionSuperLayer"),e.ac=new Ue("RowSeparatorSectionLayer"),e.z=new Ue("RowSeparatorFixedPinnedRowsLayer"),e.at=1,e}return i.__extends(e,t),e.prototype.a7=function(){this.ap=new n.List$1(Ue.$,0),this.ap.add(this.ae),this.ap.add(this.a),this.ap.add(this.y),this.ap.add(this.ah),this.ap.add(this.b),this.ap.add(this.t),this.ap.add(this.r),this.ap.add(this.u),this.ap.add(this.i),this.ap.add(this.c),this.ap.add(this.l),this.ap.add(this.g),this.ap.add(this.z),this.ap.add(this.s),this.ap.add(this.f),this.ap.add(this.h),this.ap.add(this.ad),this.ap.add(this.ac),this.ap.add(this.w),this.ap.add(this.v),this.ap.add(this.aa),this.ap.add(this.x),this.ap.add(this.ab),this.ap.add(this.ag),this.ap.add(this.af),this.ap.add(this.p),this.ap.add(this.o),this.ap.add(this.aj),this.ap.add(this.ai),this.ap.add(this.k),this.ap.add(this.j),this.ap.add(this.e),this.ap.add(this.d),this.ap.add(this.n),this.ap.add(this.m),this.ap.add(this.ak)},e.prototype.a6=function(){this.ae.f(),this.a.f(),this.ah.f(),this.b.f(),this.t.f(),this.r.f(),this.u.f(),this.i.f(),this.c.f(),this.l.f(),this.g.f(),this.h.f(),this.ad.f(),this.w.f(),this.v.f(),this.x.f(),this.ag.f(),this.af.f(),this.p.f(),this.o.f(),this.aj.f(),this.ai.f(),this.k.f(),this.j.f(),this.e.f(),this.d.f(),this.n.f(),this.m.f(),this.ak.f(),this.s.f(),this.f.f(),this.y.f(),this.z.f(),this.ac.f(),this.aa.f(),this.ab.f()},e.prototype.a5=function(){var t=new n.StringBuilder(0);t.l("{"),t.l("top : "+this.a2+", "),t.l("left : "+this.az+", "),t.l("height : "+this.ay+", "),t.l("width : "+this.a3+", "),t.l("absoluteWidth : "+this.ar+", "),t.l("absoluteHeight : "+this.aq+", "),t.l("headerHeight : "+this.ax+", "),t.l("fixedRowHeight : "+this.aw+", "),t.l("fixedColumnWidthLeft : "+this.au+", "),t.l("fixedColumnWidthRight : "+this.av+", "),t.l("dipScalingRatio: "+this.at+", "),t.l("columnSpacing : "+this.as+", "),t.l("separatorLeft : "+this.a0+", "),t.l("separatorRight : "+this.a1+", ");for(var e=0;e<this.ap.count;e++){var i=this.ap._inner[e].c.charAt(0).toString().toLowerCase()+this.ap._inner[e].c.substr(1);t.l(i+": "+this.ap._inner[e].d()+", ")}if(null!=this.am){t.l("ColumnGroupingArea: "+this.am.serialize()+", ")}return null!=this.al&&t.l("pager : "+this.al.j()+", "),null!=this.an&&t.l("toolbar : "+this.an.serialize()+", "),t.l("actualVisibleRegion: { left: "+this.ao.left+", top: "+this.ao.top+", width: "+this.ao.width+", height: "+this.ao.height+"}"),t.l("}"),t.toString()},e.$t=n.markType(e,"VisualModelExport"),e}(n.Base),Xe=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._newActiveCell=null,e._oldActiveCell=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"newActiveCell",{get:function(){return this._newActiveCell},set:function(t){this._newActiveCell=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oldActiveCell",{get:function(){return this._oldActiveCell},set:function(t){this._oldActiveCell=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridActiveCellChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Ze=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"GridSelectionChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Ye=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e._item=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridRowEditStartedEventArgs"),e}(n.Base),Qe=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e._item=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridRowEditEndedEventArgs"),e}(n.Base),Je=function(t){function e(){var e=t.call(this)||this;return e.f=null,e.e=n.toNullable(n.ListSortDirection_$type,null),e.f=null,e.e=n.toNullable(n.ListSortDirection_$type,null),e}return i.__extends(e,t),e.prototype.g=function(t){var e=t;if(e.g("ColumnName")){var i=e.item("ColumnName");this.f=i.value.toString()}if(e.g("SortDirection")){var r=e.item("SortDirection");this.e=n.toNullable(n.ListSortDirection_$type,parseInt(r.value.toString()))}else this.e=n.toNullable(n.ListSortDirection_$type,null)},e.prototype.d=function(t){t.i("{"),t.h(),t.g(),t.i('"ColumnName": "'+this.f+'"'),n.nullableNotEquals(this.e,null)&&(t.i(","),t.h(),t.i(n.nullableConcat('"SortDirection": ',n.unwrapNullable(this.e)))),t.h(),t.e(),t.i("}")},e.$t=n.markType(e,"SaveLayoutSortInfo",n.JsonDictionaryItem.$),e}(n.JsonDictionaryItem),tn=function(t){function e(){var e=t.call(this)||this;return e.f=null,e.e=n.toNullable(n.ListSortDirection_$type,null),e.f=null,e.e=n.toNullable(n.ListSortDirection_$type,null),e}return i.__extends(e,t),e.prototype.g=function(t){var e=t;if(e.g("ColumnName")){var i=e.item("ColumnName");this.f=i.value.toString()}if(e.g("GroupSortDirection")){var r=e.item("GroupSortDirection");this.e=n.toNullable(n.ListSortDirection_$type,parseInt(r.value.toString()))}},e.prototype.d=function(t){t.i("{"),t.h(),t.g(),t.i('"ColumnName": "'+this.f+'"'),n.nullableNotEquals(this.e,null)&&(t.i(","),t.h(),t.i(n.nullableConcat('"GroupSortDirection" : ',n.unwrapNullable(this.e)))),t.h(),t.e(),t.i("}")},e.$t=n.markType(e,"SaveLayoutGroupInfo",n.JsonDictionaryItem.$),e}(n.JsonDictionaryItem),en=function(t){function e(){var e=t.call(this)||this;return e.o=null,e.n=n.toNullable(n.Number_$type,null),e.p=null,e.m=null,e.e=null,e.f=null,e.h=!1,e.i=!1,e.k=!1,e.l=!1,e.j=!1,e.g=!1,e.o=null,e.n=n.toNullable(n.Number_$type,null),e.p=null,e.e=null,e.f=null,e.h=!1,e.i=!1,e.k=!1,e.l=!1,e.j=!1,e.g=!1,e}return i.__extends(e,t),e.prototype.q=function(t){var i=t;if(i.g("ColumnName")){var r=i.item("ColumnName");this.o=r.value.toString()}if(i.g("Operator")){var o=i.item("Operator");this.n=n.toNullable(n.Number_$type,parseInt(o.value.toString()))}if(i.g("Value")){var a=i.item("Value");this.p=a.value.toString()}if(i.g("FilterArguments")){var s=i.item("FilterArguments"),l=s.items.length;l>0&&null==this.m&&(this.m=new n.List$1(e.$,0));for(var u=0;u<l;u++){var c=new e;c.q(s.items[u]),this.m.add(c)}}if(i.g("Left")){var h=i.item("Left");null==this.e&&(this.e=new e),this.e.q(h)}if(i.g("Right")){var p=i.item("Right");null==this.f&&(this.f=new e),this.f.q(p)}if(i.g("IsFunction")){var d=i.item("IsFunction");this.h=d.value}if(i.g("IsLiteral")){var f=i.item("IsLiteral");this.i=f.value}if(i.g("IsOperation")){var m=i.item("IsOperation");this.k=m.value}if(i.g("IsPropertyReference")){var g=i.item("IsPropertyReference");this.l=g.value}if(i.g("IsNull")){var y=i.item("IsNull");this.j=y.value}if(i.g("IsAutoGenerated")){var b=i.item("IsAutoGenerated");this.g=b.value}},e.prototype.d=function(t){if(t.i("{"),t.h(),t.g(),t.i('"ColumnName": "'+this.o+'"'),n.nullableNotEquals(this.n,null)&&(t.i(","),t.h(),t.i('"Operator": '+this.n.value)),null!=this.p&&(t.i(","),t.h(),t.i('"Value": "'+this.p+'"')),null!=this.m){t.i(","),t.h(),t.i('"FilterArguments": [');for(var e=0;e<this.m.count;e++)0!=e&&t.i(","),this.m._inner[e].d(t);t.i("]")}null!=this.e&&(t.i(","),t.h(),t.i('"Left": '),this.e.d(t)),null!=this.f&&(t.i(","),t.h(),t.i('"Right": '),this.f.d(t)),t.i(","),t.h(),t.i('"IsFunction": '+this.h),t.i(","),t.h(),t.i('"IsLiteral": '+this.i),t.i(","),t.h(),t.i('"IsOperation": '+this.k),t.i(","),t.h(),t.i('"IsPropertyReference": '+this.l),t.i(","),t.h(),t.i('"IsNull": '+this.j),t.i(","),t.h(),t.i('"IsAutoGenerated": '+this.g),t.h(),t.e(),t.i("}")},e.$t=n.markType(e,"SaveLayoutFilterInfo",n.JsonDictionaryItem.$),e}(n.JsonDictionaryItem),nn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e}return i.__extends(e,t),e.$t=n.markType(e,"GridAnimationManagerAnimationCreatedEventArgs"),e}(n.Base),rn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e}return i.__extends(e,t),e.$t=n.markType(e,"GridAnimationManagerAnimationCompletedEventArgs"),e}(n.Base),on=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e}return i.__extends(e,t),e.$t=n.markType(e,"GridAnimationManagerAnimationCanceledEventArgs"),e}(n.Base),an=function(t){function e(){var n=t.call(this)||this;return n.g=0,n.h=0,n.m=0,n.c=!1,n.l=0,n.b=!1,n.a=!1,n.m=e.k,e.k++,n}return i.__extends(e,t),Object.defineProperty(e.prototype,"i",{get:function(){return this.g},set:function(t){this.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o",{get:function(){return this.m},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n",{get:function(){return this.l},set:function(t){this.l=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.b},set:function(t){this.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridColumnSpacer"),e.k=0,e}(n.Base),sn=function(t){function e(){return t.call(this,an.$,0)||this}return i.__extends(e,t),e.prototype.ac=function(){for(var t=this.count,e=0,n=0;n<t;n++)e+=this._inner[n].i;return e},e.prototype.ag=function(){for(var t=this.count,e=0,n=0;n<t;n++)this._inner[n].f&&(e+=this._inner[n].i);return e},e.prototype.ae=function(){for(var t=this.count,e=0,n=0;n<t;n++)this._inner[n].f||(e+=this._inner[n].i);return e},e.prototype.ah=function(){for(var t=this.count,e=0,n=0;n<t;n++)this._inner[n].i>0&&(e+=this._inner[n].j);return e},e.prototype.ad=function(t){for(var e=this.count,n=0,i=0;i<e;i++)this._inner[i].d||this._inner[i].n==t||(n+=this._inner[i].i);return n},e.prototype.af=function(t){for(var e=this.count,n=0,i=0;i<e;i++)this._inner[i].d&&this._inner[i].n!=t&&(n+=this._inner[i].i);return n},e.$t=n.markType(e,"GridColumnSpacerCollection",n.List$1.$.specialize(an.$)),e}(n.List$1),ln=function(t){return t[t.DirectSet=0]="DirectSet",t[t.ScaledValue=1]="ScaledValue",t[t.ValueColorGradient=2]="ValueColorGradient",t[t.ValueSelector=3]="ValueSelector",t}({}),un=n.markEnum("GridConditionalStylePropertyStylingType","DirectSet,0|ScaledValue,1|ValueColorGradient,2|ValueSelector,3"),cn=function(t){return t[t.Value=0]="Value",t[t.Percent=1]="Percent",t}({}),hn=n.markEnum("GridConditionalStyleBoundType","Value,0|Percent,1"),pn=function(t){function e(){var e=t.call(this)||this;return e._propertyName=null,e._errors=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"propertyName",{get:function(){return this._propertyName},set:function(t){this._propertyName=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"errors",{get:function(){return this._errors},set:function(t){this._errors=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridConditionFilterStringErrorsParsingEventArgs"),e}(n.Base),dn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.ai=0,e.af=0,e.ae=0,e.bg=null,e.k=null,e.bd=null,e.g=null,e.m=null,e.bf=null,e.i=null,e.l=null,e.be=null,e.h=null,e.r=null,e.bh=null,e.j=null,e.a7=null,e.al=!0,e.a3=null,e.cm=null,e.cl=null,e.a5=null,e.a4=null,e.a6=null,e.ax=NaN,e.az=NaN,e.ay=NaN,e.at=n.dateMinValue(),e.au=n.dateMinValue(),e.e=null,e.b=null,e.a=null,e.an=!1,e.am=!1,e.filterStringErrorsParsing=null,e.n=null,e.p=null,e.o=null,e.q=null,e.propertyChanged=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"aj",{get:function(){return this.ai},set:function(t){var e=this.ai;this.ai=t,e!=t&&this.cj("StylingType",n.enumGetBox(un,e),n.enumGetBox(un,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ah",{get:function(){return this.af},set:function(t){var e=this.af;this.af=t,e!=t&&this.cj("MinimumType",n.enumGetBox(hn,e),n.enumGetBox(hn,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ag",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=t&&this.cj("MaximumType",n.enumGetBox(hn,e),n.enumGetBox(hn,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b9",{get:function(){return this.bg},set:function(t){var e=this.bg;this.bg=t,e!=t&&this.cj("PropertyName",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=t&&this.cj("InputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bo",{get:function(){return this.bd},set:function(t){var e=this.bd;this.bd=t,e!=t&&this.cj("InputValueExpressionString",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"s",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=t&&this.cj("ActualInputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"y",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,e!=t&&this.cj("MinimumInputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b5",{get:function(){return this.bf},set:function(t){var e=this.bf;this.bf=t,e!=t&&this.cj("MinimumInputValueExpressionString",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"u",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=t&&this.cj("ActualMinimumInputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"x",{get:function(){return this.l},set:function(t){var e=this.l;this.l=t,e!=t&&this.cj("MaximumInputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bz",{get:function(){return this.be},set:function(t){var e=this.be;this.be=t,e!=t&&this.cj("MaximumInputValueExpressionString",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"t",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=t&&this.cj("ActualMaximumInputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ad",{get:function(){return this.r},set:function(t){var e=this.r;this.r=t,e!=t&&this.cj("SumInputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ce",{get:function(){return this.bh},set:function(t){var e=this.bh;this.bh=t,e!=t&&this.cj("SumInputValueExpressionString",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,e!=t&&this.cj("ActualSumInputValueExpression",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bc",{get:function(){return this.a7},set:function(t){var e=this.a7;this.a7=t,this.a7!=e&&this.cj("Value",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"as",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,this.al!=e&&this.cj("ShouldSetValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a8",{get:function(){return this.a3},set:function(t){var e=this.a3;this.a3=t,this.a3!=e&&this.cj("InternalValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"co",{get:function(){return this.cm},set:function(t){var e=this.cm;this.cm=t,this.cm!=e&&this.cj("MinimumColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cn",{get:function(){return this.cl},set:function(t){var e=this.cl;this.cl=t,this.cl!=e&&this.cj("MaximumColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ba",{get:function(){return this.a5},set:function(t){var e=this.a5;this.a5=t,this.a5!=e&&this.cj("MinimumInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a9",{get:function(){return this.a4},set:function(t){var e=this.a4;this.a4=t,this.a4!=e&&this.cj("MaximumInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bb",{get:function(){return this.a6},set:function(t){var e=this.a6;this.a6=t,this.a6!=e&&this.cj("SumInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a0",{get:function(){return this.ax},set:function(t){var e=this.ax;this.ax=t,this.ax!=e&&this.cj("InternalMaximumNumericInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a2",{get:function(){return this.az},set:function(t){var e=this.az;this.az=t,this.az!=e&&this.cj("InternalSumNumericInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a1",{get:function(){return this.ay},set:function(t){var e=this.ay;this.ay=t,this.ay!=e&&this.cj("InternalMinimumNumericInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"av",{get:function(){return this.at},set:function(t){var e=this.at;this.at=t,+this.at!=+e&&this.cj("InternalMaximumDateInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aw",{get:function(){return this.au},set:function(t){var e=this.au;this.au=t,+this.au!=+e&&this.cj("InternalMinimumDateInputValue",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,this.e!=e&&this.cj("ColorCollection",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,this.b!=e&&this.cj("ValueCollection",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.a},set:function(t){var e=this.a;this.a=this.d,this.a!=e&&this.cj("InternalValueCollection",e,this.d)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ar",{get:function(){return this.ap||this.ao||this.aq},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ap",{get:function(){return 0!=this.aj&&(!(!n.isNaN_(this.a1)&&1!=this.ah)&&(+this.aw==+n.dateMinValue()&&!(null!=this.u&&(1!=this.ah||!n.isNaN_(this.a0)&&!n.isNaN_(this.a1)))))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ao",{get:function(){return 0!=this.aj&&(!(!n.isNaN_(this.a0)&&1!=this.ah)&&(+this.av==+n.dateMinValue()&&!(null!=this.t&&(1!=this.ah||!n.isNaN_(this.a0)&&!n.isNaN_(this.a1)))))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aq",{get:function(){return!1},enumerable:!1,configurable:!0}),e.prototype.cj=function(t,e,i){this.ck(t,e,i),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.ck=function(t,e,i){switch(t){case"Value":this.an=!0;break;case"ValueCollection":this.am=!0;break;case"MinimumInputValue":"number"==typeof i&&(this.a1=i),"number"==typeof i&&(this.a1=n.typeGetValue(i)),"number"==typeof i&&(this.a1=i),"number"==typeof i&&(this.a1=n.typeGetValue(i)),"number"==typeof i&&(this.a1=n.typeGetValue(i)),null!==n.typeCast(n.Date_$type,i)&&(this.aw=i);break;case"MaximumInputValue":"number"==typeof i&&(this.a0=i),"number"==typeof i&&(this.a0=n.typeGetValue(i)),"number"==typeof i&&(this.a0=i),"number"==typeof i&&(this.a0=n.typeGetValue(i)),"number"==typeof i&&(this.a0=n.typeGetValue(i)),null!==n.typeCast(n.Date_$type,i)&&(this.av=i);break;case"SumInputValue":"number"==typeof i&&(this.a2=i),"number"==typeof i&&(this.a2=n.typeGetValue(i)),"number"==typeof i&&(this.a2=i),"number"==typeof i&&(this.a2=n.typeGetValue(i)),"number"==typeof i&&(this.a2=n.typeGetValue(i));break;case"InputValueExpression":this.s=this.z();break;case"InputValueExpressionString":this.n=null,this.s=this.z();break;case"MinimumInputValueExpression":this.u=this.ab();break;case"MinimumInputValueExpressionString":this.p=null,this.u=this.ab();break;case"MaximumInputValueExpression":this.t=this.aa();break;case"MaximumInputValueExpressionString":this.o=null,this.t=this.aa();break;case"SumInputValueExpression":this.v=this.ac();break;case"SumInputValueExpressionString":this.q=null,this.v=this.ac()}},e.prototype.z=function(){if(null!=this.w)return this.w;if(null==this.n&&null!=this.bo){var t=n.FilterExpressionParsingHelper.getFilterExpression(this.bo);if(!n.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new pn).propertyName="InputValueExpressionString",e.errors=t.errors,e)),null;this.n=t.result}var e;return this.n},e.prototype.ab=function(){if(null!=this.y)return this.y;if(null==this.p&&null!=this.b5){var t=n.FilterExpressionParsingHelper.getFilterExpression(this.b5);if(!n.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new pn).propertyName="MinimumInputValueExpressionString",e.errors=t.errors,e)),null;this.p=t.result}var e;return this.p},e.prototype.aa=function(){if(null!=this.x)return this.x;if(null==this.o&&null!=this.bz){var t=n.FilterExpressionParsingHelper.getFilterExpression(this.bz);if(!n.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new pn).propertyName="MaximumInputValueExpressionString",e.errors=t.errors,e)),null;this.o=t.result}var e;return this.o},e.prototype.ac=function(){if(null!=this.ad)return this.ad;if(null==this.q&&null!=this.ce){var t=n.FilterExpressionParsingHelper.getFilterExpression(this.ce);if(!n.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new pn).propertyName="SumInputValueExpressionString",e.errors=t.errors,e)),null;this.q=t.result}var e;return this.q},e.$t=n.markType(e,"GridConditionalStyleProperty",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),fn=function(t){function e(){return t.call(this,dn.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"GridConditionalStylePropertyCollection",n.ObservableCollection$1.$.specialize(dn.$)),e}(n.ObservableCollection$1),mn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._styleKey=null,e._resolvedValue=null,e._rowNumber=0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"styleKey",{get:function(){return this._styleKey},set:function(t){this._styleKey=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"resolvedValue",{get:function(){return this._resolvedValue},set:function(t){this._resolvedValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowNumber",{get:function(){return this._rowNumber},set:function(t){this._rowNumber=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CellStyleRequestedEventArgs",n.EventArgs.$),e}(n.EventArgs),gn=function(t){return t[t.Sorted=0]="Sorted",t[t.Resized=1]="Resized",t[t.Hidden=2]="Hidden",t[t.Pinned=3]="Pinned",t[t.Moved=4]="Moved",t[t.Filtered=5]="Filtered",t[t.Grouped=6]="Grouped",t[t.Summed=7]="Summed",t}({}),yn=n.markEnum("LayoutAction","Sorted,0|Resized,1|Hidden,2|Pinned,3|Moved,4|Filtered,5|Grouped,6|Summed,7"),bn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.f=0,e.d=0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"e",{get:function(){return this.d-this.f+1},enumerable:!1,configurable:!0}),e.prototype.c=function(t){return t.f>=this.f&&t.f<=this.d||t.d>=this.f&&t.d<=this.d},e.prototype.b=function(t){return t>=this.f&&t<=this.d},e.a=function(t,e){for(var n=0;n<t.count;n++)if(t._inner[n].b(e))return t._inner[n];return null},e.$t=n.markType(e,"RowRange"),e}(n.Base),vn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=0,e.d=0,e.f=0,e.e=0,e.g=null,e.a=!1,e.b=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"MergedCellInfo"),e}(n.Base),Cn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.j=0,e.g=0,e.h=0,e.i=0,e.b=null,e.a=null,e.k=0,e.m=0,e.l=0,e.n=0,e.d=0,e.f=0,e.e=0,e.c=!1,e.o=null,e}return i.__extends(e,t),e.$t=n.markType(e,"CalculationParameters"),e}(n.Base),xn=function(t){function e(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];var r=t.call(this)||this;switch(r.a=null,r.c=null,r.d=null,r.b=null,e=null==e?0:e){case 0:break;case 1:var o=n[0],a=n[1],s=n[2];r.c=o,r.d=a,r.b=s}return r}return i.__extends(e,t),e.$t=n.markType(e,"ColumnPropertySetter"),e}(n.Base),_n=function(t){function e(){return t.call(this,xn.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"ColumnPropertySettersCollection",n.ObservableCollection$1.$.specialize(xn.$)),e}(n.ObservableCollection$1),wn=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"ResponsiveStateEnteringEventArgs",n.EventArgs.$),e}(n.EventArgs),Sn=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"ResponsiveStateEnteredEventArgs",n.EventArgs.$),e}(n.EventArgs),Pn=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"ResponsiveStateExitedEventArgs",n.EventArgs.$),e}(n.EventArgs),On=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=null,e}return i.__extends(e,t),e.prototype.isGroup=function(){return!1},e.prototype.resolveFilter=function(t,e){return null},e.$t=n.markType(e,"ColumnFilterCondition"),e}(n.Base),In=function(t){function e(){var e=t.call(this)||this;return e._operator=0,e._value=null,e._isCaseSensitive=!1,e.isCaseSensitive=!0,e}return i.__extends(e,t),e.getApplicableOperators=function(t){var e=new n.List$1(m,0);switch(t){case 11:case 2:break;case 10:case 6:case 5:case 1:case 3:case 8:e.add(4),e.add(5),e.add(2),e.add(3);break;case 0:e.add(14),e.add(15),e.add(16),e.add(17),e.add(12),e.add(13),e.add(4),e.add(5),e.add(2),e.add(3)}return e.add(0),e.add(1),e.add(43),e.add(42),e.toArray()},e.prototype.equals=function(t){if(null==t)return!1;if(null===n.typeCast(e.$,t))return!1;var i=t;return i.operator==this.operator&&(!!n.Base.equalsStatic(i.value,this.value)&&!!n.Base.equalsStatic(i.isCaseSensitive,this.isCaseSensitive))},Object.defineProperty(e.prototype,"operator",{get:function(){return this._operator},set:function(t){this._operator=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this._value},set:function(t){this._value=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isCaseSensitive",{get:function(){return this._isCaseSensitive},set:function(t){this._isCaseSensitive=t},enumerable:!1,configurable:!0}),e.prototype.resolveFilter=function(t,e){return this.h(t,e,this.operator)},e.prototype.h=function(t,i,r){switch(r){case 12:if(null==this.value)return null;var o=n.FilterFactory.instance.property(t),a=n.FilterFactory.instance.literal(this.value);return null==(o=e.g(i,o))?null:(this.isCaseSensitive||(o=o.toLower(),a=a.toLower()),o.contains(a));case 13:if(null==this.value)return null;var s=n.FilterFactory.instance.property(t),l=n.FilterFactory.instance.literal(this.value);return null==(s=e.g(i,s))?null:(this.isCaseSensitive||(s=s.toLower(),l=l.toLower()),s.contains(l).not());case 17:if(null==this.value)return null;var u=n.FilterFactory.instance.property(t),c=n.FilterFactory.instance.literal(this.value);return null==(u=e.g(i,u))?null:(this.isCaseSensitive||(u=u.toLower(),c=c.toLower()),u.endsWith(c).not());case 15:if(null==this.value)return null;var h=n.FilterFactory.instance.property(t),p=n.FilterFactory.instance.literal(this.value);return null==(h=e.g(i,h))?null:(this.isCaseSensitive||(h=h.toLower(),p=p.toLower()),h.startsWith(p).not());case 16:if(null==this.value)return null;var d=n.FilterFactory.instance.property(t),f=n.FilterFactory.instance.literal(this.value);return null==(d=e.g(i,d))?null:(this.isCaseSensitive||(d=d.toLower(),f=f.toLower()),d.endsWith(f));case 0:var m=n.FilterFactory.instance.property(t),g=n.FilterFactory.instance.literal(this.k(this.value,i));if(0!=i||this.isCaseSensitive){if(8==i)return m.day().isEqualTo(g.day()).and(m.month().isEqualTo(g.month())).and(m.year().isEqualTo(g.year()));if(2==i&&null!=this.value&&"string"==typeof this.value)switch(this.value.toString().toLowerCase()){case"true":g=n.FilterFactory.instance.literal(!0);break;case"false":g=n.FilterFactory.instance.literal(!1)}}else m=m.toLower(),g=g.toLower();return m.isEqualTo(g);case 4:var y=this.k(this.value,i),b=n.FilterFactory.instance.property(t),v=n.FilterFactory.instance.literal(y);if(0!=i||this.isCaseSensitive){if(8==i){var C=y;return b.year().isGreaterThan(C.getFullYear()).or(b.year().isEqualTo(C.getFullYear()).and(b.month().isGreaterThan(n.dateGetMonth(C)).or(b.month().isEqualTo(n.dateGetMonth(C)).and(b.day().isGreaterThan(C.getDate())))))}}else b=b.toLower(),v=v.toLower();return b.isGreaterThan(v);case 5:var x=this.k(this.value,i),_=n.FilterFactory.instance.property(t),w=n.FilterFactory.instance.literal(x);if(0!=i||this.isCaseSensitive){if(8==i){var S=x;return _.year().isGreaterThan(S.getFullYear()).or(_.year().isEqualTo(S.getFullYear()).and(_.month().isGreaterThan(n.dateGetMonth(S)).or(_.month().isEqualTo(n.dateGetMonth(S)).and(_.day().isGreaterThanOrEqualTo(S.getDate())))))}}else _=_.toLower(),w=w.toLower();return _.isGreaterThanOrEqualTo(w);case 2:var P=this.k(this.value,i),O=n.FilterFactory.instance.property(t),I=n.FilterFactory.instance.literal(P);if(0!=i||this.isCaseSensitive){if(8==i){var j=P;return O.year().isLessThan(j.getFullYear()).or(O.year().isEqualTo(j.getFullYear()).and(O.month().isLessThan(n.dateGetMonth(j)).or(O.month().isEqualTo(n.dateGetMonth(j)).and(O.day().isLessThan(j.getDate())))))}}else O=O.toLower(),I=I.toLower();return O.isLessThan(I);case 3:var k=this.k(this.value,i),T=n.FilterFactory.instance.property(t),R=n.FilterFactory.instance.literal(k);if(0!=i||this.isCaseSensitive){if(8==i){var D=k;return T.year().isLessThan(D.getFullYear()).or(T.year().isEqualTo(D.getFullYear()).and(T.month().isLessThan(n.dateGetMonth(D)).or(T.month().isEqualTo(n.dateGetMonth(D)).and(T.day().isLessThanOrEqualTo(D.getDate())))))}}else T=T.toLower(),R=R.toLower();return T.isLessThanOrEqualTo(R);case 1:var B=n.FilterFactory.instance.property(t),M=n.FilterFactory.instance.literal(this.k(this.value,i));if(0!=i||this.isCaseSensitive){if(8==i)return B.day().isNotEqualTo(M.day()).or(B.month().isNotEqualTo(M.month())).or(B.year().isNotEqualTo(M.year()))}else B=B.toLower(),M=M.toLower();return B.isNotEqualTo(M);case 14:if(null==this.value)return null;var E=n.FilterFactory.instance.property(t),A=n.FilterFactory.instance.literal(this.value);return null==(E=e.g(i,E))?null:(this.isCaseSensitive||(E=E.toLower(),A=A.toLower()),E.startsWith(A));case 43:var V=n.FilterFactory.instance.property(t),N=n.FilterFactory.instance.literal(null);return V.isNotEqualTo(N);case 42:var F=n.FilterFactory.instance.property(t),$=n.FilterFactory.instance.literal(null);return F.isEqualTo($);case 38:var z=n.FilterFactory.instance.property(t),G=0;if("string"==typeof this.value){var L=this.value;if(function(){var t=n.tryParseInt32_1(L,G);return G=t.p1,t.ret}()){var q=n.FilterFactory.instance.literal(G);return z.month().isEqualTo(q)}for(var H=null,W=n.CultureInfo.currentCulture.dateTimeFormat.monthNames,U=0;U<W.length;U++)if(n.stringStartsWith(W[U].toLowerCase(),L.toLowerCase())){var K=n.FilterFactory.instance.literal(U+1);H=null==H?z.month().isEqualTo(K):n.FilterFactory.instance.or(H,z.month().isEqualTo(K))}return H}var X=n.FilterFactory.instance.literal(this.value);return z.month().isEqualTo(X);case 39:var Z=this.value;if("string"==typeof Z){var Y=-1;Z=function(){var t=n.tryParseInt32_1(Z,Y);return Y=t.p1,t.ret}()?Y:-1}var Q=n.FilterFactory.instance.property(t),J=n.FilterFactory.instance.literal(Z);return Q.year().isEqualTo(J);case 10:var tt=n.FilterFactory.instance.property(t),et=n.FilterFactory.instance.literal(!0);return tt.isEqualTo(et);case 11:var nt=n.FilterFactory.instance.property(t),it=n.FilterFactory.instance.literal(!1);return nt.isEqualTo(it);case 40:var rt=n.FilterFactory.instance.property(t),ot=n.FilterFactory.instance.literal("");return rt.isEqualTo(ot);case 41:var at=n.FilterFactory.instance.property(t),st=n.FilterFactory.instance.literal("");return at.isNotEqualTo(st);case 18:return n.FilterFactory.instance.property(t).isToday();case 19:return n.FilterFactory.instance.property(t).isTomorrow();case 20:return n.FilterFactory.instance.property(t).isYesterday();case 22:return n.FilterFactory.instance.property(t).isThisWeek();case 21:return n.FilterFactory.instance.property(t).isNextWeek();case 23:return n.FilterFactory.instance.property(t).isLastWeek();case 25:return n.FilterFactory.instance.property(t).isThisMonth();case 24:return n.FilterFactory.instance.property(t).isNextMonth();case 26:return n.FilterFactory.instance.property(t).isLastMonth();case 31:return n.FilterFactory.instance.property(t).isThisYear();case 30:return n.FilterFactory.instance.property(t).isNextYear();case 32:return n.FilterFactory.instance.property(t).isLastYear();case 33:return n.FilterFactory.instance.property(t).isYearToDate();case 28:return n.FilterFactory.instance.property(t).isThisQuarter();case 27:return n.FilterFactory.instance.property(t).isNextQuarter();case 29:return n.FilterFactory.instance.property(t).isLastQuarter();case 34:return n.FilterFactory.instance.property(t).isQ1();case 35:return n.FilterFactory.instance.property(t).isQ2();case 36:return n.FilterFactory.instance.property(t).isQ3();case 37:return n.FilterFactory.instance.property(t).isQ4()}return null},e.g=function(t,e){switch(t){case 9:case 8:case 2:case 11:return null;case 10:case 6:case 5:case 1:case 3:case 4:case 7:return e.cast(n.enumGetBox(n.DataSourceSchemaPropertyType_$type,0))}return e},e.getOperandNumber=function(t){return 43==t||42==t?0:1},e.getOperandNumbers=function(t){for(var n=new Array(t.length),i=0;i<t.length;i++)n[i]=e.getOperandNumber(t[i]);return n},e.prototype.k=function(t,e){if(null==t)return null;switch(e){case 2:return!!t;case 10:return+t;case 8:return null!==n.typeCast(n.Date_$type,t)?t:"string"==typeof t?(r=n.dateTryParse(t,i),i=r.p1,r.ret?i:null):new Date(+t);var i;case 6:case 5:case 1:case 3:return+t;case 11:return t;case 4:case 7:return+t;case 0:return null!=t?t.toString():t}var r;return t},e.$t=n.markType(e,"ColumnComparisonFilterCondition",On.$),e}(On),jn=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._value=null,e._id=null,e._index=0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"value",{get:function(){return this._value},set:function(t){this._value=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this._id},set:function(t){this._id=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"index",{get:function(){return this._index},set:function(t){this._index=t},enumerable:!1,configurable:!0}),e.prototype.resolveFilter=function(t,e){var n=this.b.h4(this.id,this.index);return this.b.g4(n,this.value)},e.$t=n.markType(e,"ColumnCustomFilterCondition",On.$),e}(On),kn=function(t){function e(){return t.call(this,On.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"ColumnFilterConditionCollection",n.ObservableCollection$1.$.specialize(On.$)),e}(n.ObservableCollection$1),Tn=function(t){function e(){var e=t.call(this)||this;return e._usesOrOperator=!1,e.f=null,e.f=new kn,e.usesOrOperator=!1,e}return i.__extends(e,t),e.prototype.isGroup=function(){return!0},e.prototype.equals=function(t){if(null==t)return!1;if(null===n.typeCast(e.$,t))return!1;var i=t;if(i.count!=this.count)return!1;for(var r=0;r<this.count;r++)if(!n.Base.equalsStatic(this.item(r),i.item(r)))return!1;return!0},Object.defineProperty(e.prototype,"count",{get:function(){return this.f.count},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"usesOrOperator",{get:function(){return this._usesOrOperator},set:function(t){this._usesOrOperator=t},enumerable:!1,configurable:!0}),e.prototype.add=function(t){this.f.add(t)},e.prototype.remove=function(t){this.f.remove(t)},e.prototype.removeAt=function(t){this.f.removeAt(t)},e.prototype.item=function(t,e){return 2===arguments.length?(this.f._inner[t]=e,e):this.f._inner[t]},e.prototype.clear=function(){this.f.clear()},e.prototype.toArray=function(){for(var t=new Array(this.f.count),e=0;e<this.f.count;e++)t[e]=this.f._inner[e];return t},e.prototype.resolveFilter=function(t,e){if(0==this.f.count)return null;for(var i=this.f._inner[this.f.count-1].resolveFilter(t,e),r=this.f.count-2;r>=0;r--)i=this.usesOrOperator?n.FilterFactory.instance.or(this.f._inner[r].resolveFilter(t,e),i):n.FilterFactory.instance.and(this.f._inner[r].resolveFilter(t,e),i);return i},e.$t=n.markType(e,"ColumnFilterConditionGroup",On.$),e}(On),Rn=new n.Type(null,"IExternalGrid"),Dn=new n.Type(null,"ICellRenderingEngine"),Bn=new n.Type(null,"ICellPresenter"),Mn=new n.Type(null,"ICellActionManager"),En=function(t){function e(e,n){var i=t.call(this)||this;return i.b=null,i.a=null,i.c=!1,i.d=!1,i.b=e,i.a=n,i}return i.__extends(e,t),e.prototype.clickExpansionIndicator=function(){null!=this.b&&null!=this.a&&this.b.wv(this.a)},e.prototype.clickCell=function(t){null!=this.b&&null!=this.a&&this.b.vp(this.a,this.c,this.d,t)},e.prototype.dragStarted=function(){null!=this.b&&null!=this.b.ao&&(this.b.wt(this.b.ao,this.mousePosition.x,this.mousePosition.y,this.c),this.mouseUpCell(this.mousePosition.x,this.mousePosition.y))},e.prototype.previewPointerDownCell=function(){null!=this.b&&null!=this.a&&this.b.v0(this.a)},e.prototype.previewPointerUpCell=function(){null!=this.b&&null!=this.a&&this.b.v1(this.a)},e.prototype.pointerDownCell=function(){null!=this.b&&null!=this.a&&this.b.vy(this.a)},e.prototype.pointerUpCell=function(){null!=this.b&&null!=this.a&&this.b.vz(this.a)},e.prototype.previewMouseDownCell=function(t,e,n){null!=this.b&&null!=this.a&&this.b.w0(this.a,t,e,n)},e.prototype.previewMouseUpCell=function(t,e,n){null!=this.b&&null!=this.a&&this.b.w1(this.a,t,e,n)},e.prototype.mouseDownCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vw(this.a,t,e)},e.prototype.mouseUpCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vx(this.a,t,e)},e.prototype.mouseLeaveCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vv(this.a,t,e)},e.prototype.mouseEnterCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vu(this.a,t,e)},e.prototype.mouseIsOver=function(t,e){null!=this.b&&null!=this.a&&this.b.wz(this.a,t,e)},e.prototype.doubleClicked=function(t){null!=this.b&&null!=this.a&&this.b.vr(this.a,t)},e.prototype.getColumnFilterCondition=function(){return null==this.b?null:this.b.o(this.a)},e.prototype.getColumnPropertyType=function(){return null==this.b?11:this.b.q(this.a)},e.prototype.columnFilterChanging=function(t){null!=this.b&&this.b.ug(this.a,t)},e.prototype.columnFilterChanged=function(t){null!=this.b&&this.b.uf(this.a,t)},e.prototype.isCellDown=function(){return null!=this.b&&null!=this.b.ao&&null!=this.a&&this.b.ao.equals(this.a.l)},Object.defineProperty(e.prototype,"isLeaveActionDesired",{get:function(){return!!this.a.l.h||this.b.isRowHoverEnabled},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isEnterActionDesired",{get:function(){return this.b.isRowHoverEnabled},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isClickActionDesired",{get:function(){return this.b.ji},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isHoverActionDesired",{get:function(){return this.b.j2},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isPreviewPointerDownActionDesired",{get:function(){return this.b.j9},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isPreviewPointerUpActionDesired",{get:function(){return this.b.ka},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isPointerDownActionDesired",{get:function(){return this.b.j7},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isPointerUpActionDesired",{get:function(){return this.b.j8},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isControlPressed",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isShiftPressed",{get:function(){return this.d},set:function(t){this.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isDrag",{get:function(){return this.b.dragger.isDragActive},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isMouseDown",{get:function(){return null!=this.b.ao},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mousePosition",{get:function(){return this.b.abb},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isGridDragging",{get:function(){return null!=this.b&&null!=this.b.dragger&&this.b.dragger.isDragActive},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isEditRefocusDesired",{get:function(){return null!=this.b&&this.b.k9()},enumerable:!1,configurable:!0}),e.prototype.updateCellEditValue=function(t){var e=n.typeCast(Gn.$,this.a);null!=e&&(e.na=t);var i=this.b.cj;i.t=t,null!=this.b.model.bx&&null!=this.b.model.bw&&!i.k&&(i.r<this.b.model.bx.x||i.r>this.b.model.bw.x)&&this.b.t9(i.r,i.q,!1)},e.prototype.startEditMode=function(){if(this.b.editOnKeyPress){var t=this.b.cj;null!=this.b.model.bx&&null!=this.b.model.bw&&!t.k&&(t.r<this.b.model.bx.x||t.r>this.b.model.bw.x)&&this.b.t9(t.r,t.q,!1)}if(this.b.ju()&&!this.b.cj.j&&this.b.editOnKeyPress){var e=this.b.ad.s(),n=this.b.model.e(e,this.b.activeCell.b);this.b.lb(n)}},e.prototype.editorCellLostFocus=function(){null!=this.b&&this.b.wu(n.typeCast(Gn.$,this.a))},e.prototype.cancelEditMode=function(t){null!=this.b&&this.b.cj.j&&(this.b.ja(t),3==this.b.editMode&&this.b.uq(t))},e.prototype.disableKeyInput=function(){null!=this.b&&(this.b.j4=!1)},e.prototype.enableKeyInput=function(){null!=this.b&&(this.b.j4=!0)},e.prototype.passCellClone=function(t){null!=this.b&&null!=this.b.dragger&&(this.b.dragger.cloneCell=t)},e.prototype.applyFilter=function(t,e){if(null!=this.b){var n=this.b.cf(this.a.l);null!=n&&n.mv(t,e)}},e.prototype.applyCustomFilter=function(t,e,n){if(null!=this.b){var i=this.b.cf(this.a.l);null!=i&&i.mu(t,e,n)}},e.prototype.clearFilter=function(){if(null!=this.b){var t=this.b.cf(this.a.l);null!=t&&t.mw()}},e.prototype.shouldSkipFocusRetain=function(){return this.b.la()},e.$t=n.markType(e,"DefaultCellActionManager",n.Base.$,[Mn]),e}(n.Base),An=new n.Type(null,"IGridInfoRequestor"),Vn=function(t){function e(e,n){var i=t.call(this)||this;return i.b=null,i.a=null,i.b=e,i.a=n,i}return i.__extends(e,t),e.prototype.getColumn=function(){return null==this.b?null:this.b.cf(this.a.l)},e.prototype.getDensity=function(){return null==this.b?3:this.b.density},e.prototype.getTheme=function(){return null==this.b?0:1},e.prototype.setViewportChangedHandler=function(t){if(null!=this.b&&null!=t){var e=this.b;e.viewportChanged=n.delegateCombine(e.viewportChanged,t)}},e.prototype.removeViewportChangedHandler=function(t){if(null!=this.b&&null!=t){var e=this.b;e.viewportChanged=n.delegateRemove(e.viewportChanged,t)}},e.$t=n.markType(e,"DefaultGridInfoRequestor",n.Base.$,[An]),e}(n.Base),Nn=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),e.prototype.update=function(t,e){null!=this.a&&this.a.k7(t,e)},e.$t=n.markType(e,"DefaultCellModelExportUpdater",n.Base.$,[_]),e}(n.Base),Fn=function(t){function e(e){var n=t.call(this)||this;return n.c=null,n.m=null,n.n=null,n.d=null,n.g=null,n.f=null,n.e=null,n.c=e,n}return i.__extends(e,t),e.prototype.u=function(t){if(null!=t){this.m=t,this.m.rootWrapper.setRawStyleProperty("display","flex"),this.m.rootWrapper.setRawStyleProperty("flex-direction","row"),this.m.rootWrapper.setRawStyleProperty("justify-content","center"),this.m.rootWrapper.setRawStyleProperty("align-items","center"),this.m.rootWrapper.setRawStyleProperty("padding","5px 0px"),this.m.rootWrapper.setRawStyleProperty("height","40px"),this.m.rootWrapper.setRawStyleProperty("border-top","1px solid rgba(0, 0, 0, 0.26)"),this.d=this.h(this.m,ti.a1,!1),this.g=this.h(this.m,ti.bd,!0),this.n=this.m.createElement("span"),this.m.append(this.n),this.n.setRawStyleProperty("text-align","center"),this.f=this.h(this.m,ti.a7,!0),this.e=this.h(this.m,ti.a6,!1);var e=this.d;e.clicked=n.delegateCombine(e.clicked,n.runOn(this,this.q));var i=this.g;i.clicked=n.delegateCombine(i.clicked,n.runOn(this,this.t));var r=this.f;r.clicked=n.delegateCombine(r.clicked,n.runOn(this,this.s));var o=this.e;o.clicked=n.delegateCombine(o.clicked,n.runOn(this,this.r)),this.v()}else this.p()},e.prototype.h=function(t,e,n){var i=t.createElement("div");t.rootWrapper.append(i);var o=t.getSubRenderer(i),a=new r.XButton;a.provideContainer(o),a.e=4;var s=t.createElement("div"),l=t.getSubRenderer(s),u=new r.XIcon;return u.provideContainer(l),u.svgPath=e,a.appendButtonContent(s),n&&i.setRawStyleProperty("margin","0px 5px"),a},e.prototype.q=function(t,e){this.c.bk()},e.prototype.t=function(t,e){this.c.by()},e.prototype.s=function(t,e){this.c.bn()},e.prototype.r=function(t,e){this.c.bm()},e.prototype.v=function(){if(null!=this.m){if(this.m.rootWrapper.setRawStyleProperty("background",null!=this.c.ca?this.c.ca._fill:"white"),this.m.rootWrapper.setRawStyleProperty("border-top","1px solid "+(null!=this.c.border?this.c.border._fill:"rgba(0, 0, 0, 0.26)")),null!=this.n){this.c.ak;this.n.setRawText(n.stringFormat(this.c.a9,this.c.ak+1,this.c.an)),this.n.setRawStyleProperty("font",null!=this.c.s?this.c.s.fontString:"13px Verdana")}this.d.disabled=0==this.c.ak,this.g.disabled=0==this.c.ak,this.f.disabled=this.c.ak==this.c.an-1,this.e.disabled=this.c.ak==this.c.an-1}},e.prototype.p=function(){var t=this.d;t.clicked=n.delegateRemove(t.clicked,n.runOn(this,this.q));var e=this.g;e.clicked=n.delegateRemove(e.clicked,n.runOn(this,this.t));var i=this.f;i.clicked=n.delegateRemove(i.clicked,n.runOn(this,this.s));var r=this.e;r.clicked=n.delegateRemove(r.clicked,n.runOn(this,this.r))},e.prototype.a=function(){var t,e=window.getComputedStyle(this.m.rootWrapper.getNativeElement());return n.AppearanceHelper.a(((t=new n.Brush).fill=e.backgroundColor,t))},e.prototype.b=function(){var t,e=window.getComputedStyle(this.m.rootWrapper.getNativeElement());return n.AppearanceHelper.a(((t=new n.Brush).fill=e.borderTopColor,t))},e.prototype.o=function(){return null!=this.n?this.n.getNativeElement().innerText:null},e.prototype.i=function(){return this.d},e.prototype.l=function(){return this.g},e.prototype.k=function(){return this.f},e.prototype.j=function(){return this.e},e.$t=n.markType(e,"PagerView"),e}(n.Base),$n=function(t){function e(){var e=t.call(this)||this;return e.o=null,e.s=null,e.t=0,e.hq=null,e.k=null,e.ah=!1,e.fb=0,e.bj=!1,e.bo=!1,e.a3=!1,e.a1=!1,e.bh=!1,e.bp=!1,e.a5=!1,e.bi=!1,e.c=null,e.e=null,e.d=null,e.aj=!1,e.b1=NaN,e.lf=null,e.lg=null,e.c9=1,e.c8=2,e.md=n.Rect.empty,e.aq=!0,e.at=!1,e.au=!1,e.as=!1,e.ao=!1,e.dl=0,e.br=new n.Dictionary$2(n.String_$type,n.Boolean_$type,0),e.de=-1,e.a=null,e.ai=!1,e.aw=!1,e.bt=null,e.q=null,e.hj=null,e.cd=0,e.ce=0,e.dt=0,e.du=0,e.b3=1,e.b2=1,e.bz=1,e.b7=1,e.b0=1,e.b5=0,e.ca=0,e.b6=0,e.cb=0,e.dk=0,e.dv=0,e.av=!1,e.v=0,e.b9=0,e.by=0,e.b4=0,e.ar=!0,e.f=0,e.h=1,e.le=null,e.lh=null,e.lb=null,e.lc=null,e.la=null,e.lj=null,e.lp=null,e.ll=null,e.lm=null,e.lq=null,e.lr=null,e.lo=null,e.ln=null,e.lk=null,e.b8=.3,e.hi=null,e.hp="",e.ls=null,e.ld=null,e.li=null,e.ad=null,e.ab=null,e.z=0,e.cc=0,e.dq=0,e.ds=0,e.dr=0,e.dp=0,e.c5=0,e.c7=0,e.c6=0,e.c4=0,e.db=0,e.dd=0,e.dc=0,e.da=0,e.cx=1,e.cz=1,e.cy=1,e.cw=1,e.dh=2,e.dj=2,e.di=2,e.dg=2,e.c1=0,e.c3=0,e.c2=0,e.c0=0,e.m=0,e.an=!1,e.ak=!1,e.x=0,e.ac=null,e.am=!1,e.al=!1,e.ho=null,e.bf=!1,e.df=-1,e.ap=!1,e.hh=0,e.propertyChanged=null,e.bw=null,e.cellReconciling=null,e.u=0,e.fb=-1,e.k5(),e.lx=h.a2,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"p",{get:function(){return this.o},set:function(t){this.o=t},enumerable:!1,configurable:!0}),e.ft=function(t){if(null!=e.bu&&null!=e.bu||(e.bu=new n.Dictionary$2(n.String_$type,n.Number_$type,0)),e.bu.containsKey(t))return e.bu.item(t);var i=e.dn;return e.dn++,e.dm=i,e.bu.item(t,i),i},Object.defineProperty(e.prototype,"u",{get:function(){return this.t},set:function(t){var i=this.t;this.t=t,this.t!=i&&this.k0("State",e.g6,n.enumGetBox(w,i),n.enumGetBox(w,this.t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kc",{get:function(){return this.hq},set:function(t){var e=this.hq;this.hq=t,e!=t&&(this.bw=null)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.k},set:function(t){var i=this.k;this.k=t,this.k==i||n.Base.equalsStatic(this.k,i)||this.k0("Path",e.gs,i,this.k)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ax",{get:function(){return this.ah},set:function(t){var n=this.ah;this.ah=t,this.ah!=n&&this.k0("DoClone",e.fd,n,this.ah)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a0",{get:function(){return this.aj},set:function(t){var n=this.aj;this.aj=t,this.aj!=n&&this.k0("IsBarSupported",e.f2,n,this.aj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ci",{get:function(){return this.b1},set:function(t){var n=this.b1;this.b1=t,(this.b1!=n||this.ay)&&this.k0("BarProgress",e.ex,n,this.b1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ly",{get:function(){return this.lf},set:function(t){var n=this.lf;this.lf=t,this.lf!=n&&this.k0("BarBackground",e.et,n,this.lf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lz",{get:function(){return this.lg},set:function(t){var n=this.lg;this.lg=t,this.lg!=n&&this.k0("BarOutline",e.ew,n,this.lg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ey",{get:function(){return this.c9},set:function(t){var n=this.c9;this.c9=t,this.c9!=n&&this.k0("BarStrokeThickness",e.ez,n,this.c9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"eu",{get:function(){return this.c8},set:function(t){var n=this.c8;this.c8=t,this.c8!=n&&this.k0("BarCornerRadius",e.ev,n,this.c8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"me",{get:function(){return this.md},set:function(t){var i=this.md;this.md=t,n.Rect.l_op_Inequality(this.md,i)&&this.k0("ClipRect",e.e9,i,this.md)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bd",{get:function(){return this.aq},set:function(t){var n=this.aq;this.aq=t,n!=this.aq&&this.k0("IsHitTestVisible",e.f8,n,this.aq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bk",{get:function(){return this.at},set:function(t){var n=this.at;this.at=t,this.at!=n&&this.k0("IsRowPinned",e.ga,n,this.at)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bl",{get:function(){return this.au},set:function(t){var n=this.au;this.au=t,this.au!=n&&this.k0("IsRowSticky",e.gb,n,this.au)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bg",{get:function(){return this.as},set:function(t){var n=this.as;this.as=t,this.as!=n&&this.k0("IsLastStickyRow",e.f9,n,this.as)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bb",{get:function(){return this.ao},set:function(t){var n=this.ao;this.ao=t,this.ao!=n&&this.k0("IsFilterRow",e.f7,n,this.ao)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f0",{get:function(){return this.dl},set:function(t){var n=this.dl;this.dl=t,this.dl!=n&&this.k0("Indent",e.f1,n,this.dl)},enumerable:!1,configurable:!0}),e.prototype.a4=function(t){return!!this.br.containsKey(t)&&this.br.item(t)},e.prototype.a8=function(t){if(-1==this.de)return!1;var e=t/32|0,n=t%32;return 0!=(this.a[e]>>n&1)},e.prototype.a7=function(t){var n=e.bu.f(t);return null!=n?this.a8(n):!!this.a4(t)},e.prototype.ks=function(t){-1==this.de&&(this.de=n.truncate(Math.ceil(e.dm/32)),this.a=new Array(t));var i=t/32|0,r=t%32;this.a[i]=this.a[i]|1<<r},e.prototype.kp=function(){for(var t=0;t<this.de;t++)this.a[t]=0},e.prototype.kt=function(t){var n=e.bu.f(t);null==n?this.br.item(t,!0):this.ks(n)},Object.defineProperty(e.prototype,"ay",{get:function(){return this.ai},set:function(t){this.ai=t},enumerable:!1,configurable:!0}),e.prototype.k0=function(t,e,i,r){this.aw||(this.ay&&this.bq(t)&&(this.aw=!0,this.k8("underlying_"+t,r),this.k9(t,i),this.aw=!1),this.ks(e),this.k3(t,i,r),null!=this.p&&this.p.refresh(),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)))},e.prototype.bq=function(t){return null!=this.bw&&this.bw.contains(t)},e.prototype.k3=function(t,e,n){switch(t){case"State":this.bj=!0,this.bo=!0,this.a3=!0,this.bp=!0;break;case"LeftOffset":case"TopOffset":case"LeftPercentOffset":case"TopPercentOffset":case"X":case"Y":this.bj=!0;break;case"Width":case"Height":this.bo=!0;break;case"RowItem":this.k1();break;case"Background":case"SelectedBackground":case"SelectedStatus":case"HoverBackground":case"HoverStatus":case"IsLastStickyRow":case"StickyRowBackground":case"PinnedRowBackground":case"LastStickyRowBackground":case"FilterRowBackground":this.kv(),this.k2();break;case"IsRowSticky":case"IsRowPinned":case"PinnedRowOpacity":this.kv(),this.ky();break;case"Border":case"ActivationBorder":case"ErrorBorder":case"BorderLeftWidth":case"BorderTopWidth":case"BorderBottomWidth":case"BorderRightWidth":case"ActivationBorderLeftWidth":case"ActivationBorderTopWidth":case"ActivationBorderBottomWidth":case"ActivationBorderRightWidth":case"ActivationStatus":case"EditError":case"ErrorBorderLeftWidth":case"ErrorBorderTopWidth":case"ErrorBorderBottomWidth":case"ErrorBorderRightWidth":this.a1=!0,this.kw();break;case"PaddingLeft":case"PaddingTop":case"PaddingBottom":case"PaddingRight":this.kw();break;case"Opacity":this.kx();break;case"ContentOpacity":case"EditOpacity":this.ky();break;case"IsEdited":case"IsDeleted":this.k2(),this.ky(),this.kz(),this.a3=!0;break;case"TextColor":case"DeletedTextColor":case"HoverTextColor":this.k2();break;case"FontInfo":case"EditFontInfo":this.kz();break;case"Path":case"DoClone":break;default:this.a3=!0}},e.prototype.k1=function(){},e.prototype.kv=function(){var t=this.lx;this.bg&&null!=this.l7?t=this.l7:this.bl&&null!=this.mb?t=this.mb:this.bk&&null!=this.l8?t=this.l8:this.bb&&null!=this.l3&&(t=this.l3),null!=this.l5&&(t=this.l4(t,this.l5,this.cl)),this.lu=this.l4(t,this.l9,this.cq)},e.prototype.kw=function(){var t=!1;if(0!=this.cf&&null!=this.lt&&(t=!0),null!=this.it){var e=this.fk-this.e2,n=this.fp-this.e7,i=this.fn-this.e5,r=this.fi-this.e0;this.el=Math.max(0,this.gm-e),this.ep=Math.max(0,this.gq-n),this.en=Math.max(0,this.go-i),this.ej=Math.max(0,this.gk-r),this.d9=Math.max(0,this.e2+e),this.ee=Math.max(0,this.e7+n),this.ec=Math.max(0,this.e5+i),this.d7=Math.max(0,this.e0+r),this.lv=this.l2}else{if(!t||0!=this.e2&&0!=this.e7&&0!=this.e5&&0!=this.e0)this.el=this.gm,this.ep=this.gq,this.en=this.go,this.ej=this.gk,this.d9=this.e2,this.ee=this.e7,this.ec=this.e5,this.d7=this.e0;else{var o=this.dy-this.e2,a=this.d3-this.e7,s=this.d1-this.e5,l=this.dw-this.e0;this.el=Math.max(0,this.gm-o),this.ep=Math.max(0,this.gq-a),this.en=Math.max(0,this.go-s),this.ej=Math.max(0,this.gk-l),this.d9=Math.max(0,this.e2+o),this.ee=Math.max(0,this.e7+a),this.ec=Math.max(0,this.e5+s),this.d7=Math.max(0,this.e0+l)}var u=this.l0;this.lv=this.l4(u,this.lt,this.cf)}},e.prototype.kx=function(){this.ch=this.co},e.prototype.ky=function(){this.a9&&!this.a6?this.cg=this.ck:this.bk&&!this.bl?this.cg=this.cp:this.cg=this.cj},e.prototype.k2=function(){var t=this.mc;this.a6?t=this.l1:null!=this.l6&&(t=this.l4(t,this.l6,this.cl)),this.lw=t},e.prototype.kz=function(){this.a9||this.a6?this.ae=this.af:this.ae=this.ag},e.prototype.l4=function(t,e,i){return 0==i?t:1==i?e:n.BrushUtil.n(t,i,e,0)},e.prototype.k5=function(){this.k6()},e.prototype.k6=function(){this.kp(),null!=this.bt&&this.bt.clear(),this.cq=0,this.a3=!0,this.bj=!0,this.bo=!0,this.bh=!1},e.prototype.k8=function(t,e){null==this.bt&&(this.bt=new n.Dictionary$2(n.String_$type,n.Base.$,0));var i=null;if(this.bt.containsKey(t)&&(i=this.bt.item(t)),this.ay&&this.bq(t)&&!this.aw)return this.aw=!0,this.k8("underlying_"+t,e),this.k8(t,i),void(this.aw=!1);this.bt.item(t,e);var r=!1;if(null==i&&null!=e&&(r=!0),null!=i&&(n.Base.equalsStatic(i,e)||(r=!0)),r&&!this.aw){if(this.kt(t),this.a3=!0,this.az(t+"@@@handler")&&null!=this.hk(t+"@@@handler"))this.hk(t+"@@@handler")(e,this);else if(null!=this.p.cf(this.l)&&this.p.cf(this.l).ao(t+"@@@handler")){var o=this.p.cf(this.l).co(t+"@@@handler");this.k8(t+"@@@handler",o),o(e,this)}null!=this.p&&this.p.refresh()}},e.prototype.az=function(t){return null!=this.bt&&this.bt.containsKey(t)},e.prototype.k4=function(t){null!=this.bt&&this.bt.containsKey(t)&&this.bt.removeItem(t)},e.prototype.hk=function(t){return null==this.bt?null:this.bt.containsKey(t)?this.bt.item(t):null},Object.defineProperty(e.prototype,"r",{get:function(){return this.q},set:function(t){var e=this.q;this.q=t,this.q!=e&&(this.bh=!0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hn",{get:function(){return this.hj},set:function(t){var n=this.hj;this.hj=t,this.hj!=n&&this.k0("RowItem",e.gx,n,this.hj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cu",{get:function(){return this.cd},set:function(t){var n=this.cd;this.cd=t,this.cd!=n&&this.k0("X",e.hf,n,this.cd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cv",{get:function(){return this.ce},set:function(t){var n=this.ce;this.ce=t,this.ce!=n&&this.k0("Y",e.hg,n,this.ce)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g0",{get:function(){return this.dt},set:function(t){var n=this.dt;this.dt=t,this.dt!=n&&this.k0("SnappedX",e.g1,n,this.dt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g2",{get:function(){return this.du},set:function(t){var n=this.du;this.du=t,this.du!=n&&this.k0("SnappedY",e.g3,n,this.du)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ck",{get:function(){return this.b3},set:function(t){var n=this.b3;this.b3=t,this.b3!=n&&this.k0("EditOpacity",e.fh,n,this.b3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cj",{get:function(){return this.b2},set:function(t){var n=this.b2;this.b2=t,this.b2!=n&&this.k0("ContentOpacity",e.fa,n,this.b2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cg",{get:function(){return this.bz},set:function(t){var n=this.bz;this.bz=t,this.bz!=n&&this.k0("ActualContentOpacity",e.eg,n,this.bz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"co",{get:function(){return this.b7},set:function(t){var n=this.b7;this.b7=t,this.b7!=n&&this.k0("Opacity",e.gi,n,this.b7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ch",{get:function(){return this.b0},set:function(t){var n=this.b0;this.b0=t,this.b0!=n&&this.k0("ActualOpacity",e.ei,n,this.b0)},enumerable:!1,configurable:!0}),e.prototype.ku=function(){null!=this.cellReconciling&&this.cellReconciling(this)},Object.defineProperty(e.prototype,"cm",{get:function(){return this.b5},set:function(t){var n=this.b5;this.b5=t,this.b5!=n&&this.k0("LeftOffset",e.ge,n,this.b5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cr",{get:function(){return this.ca},set:function(t){var n=this.ca;this.ca=t,this.ca!=n&&this.k0("TopOffset",e.g9,n,this.ca)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cn",{get:function(){return this.b6},set:function(t){var n=this.b6;this.b6=t,this.b6!=n&&this.k0("LeftPercentOffset",e.gf,n,this.b6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cs",{get:function(){return this.cb},set:function(t){var n=this.cb;this.cb=t,this.cb!=n&&this.k0("TopPercentOffset",e.ha,n,this.cb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fu",{get:function(){return this.dk},set:function(t){var n=this.dk;this.dk=t,this.dk!=n&&this.k0("Height",e.fv,n,this.dk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hd",{get:function(){return this.dv},set:function(t){var n=this.dv;this.dv=t,this.dv!=n&&this.k0("Width",e.he,n,this.dv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bn",{get:function(){return this.av},set:function(t){var n=this.av;this.av=t,this.av!=n&&this.k0("IsSelected",e.gc,n,this.av)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.v},set:function(t){var i=this.v;this.v=t,this.v!=i&&this.k0("ModelType",e.gh,n.enumGetBox(P,i),n.enumGetBox(P,this.v))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cq",{get:function(){return this.b9},set:function(t){var n=this.b9;this.b9=t,this.b9!=n&&this.k0("SelectedStatus",e.gz,n,this.b9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cf",{get:function(){return this.by},set:function(t){var n=this.by;this.by=t,this.by!=n&&this.k0("ActivationStatus",e.d5,n,this.by)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cl",{get:function(){return this.b4},set:function(t){var n=this.b4;this.b4=t,this.b4!=n&&this.k0("HoverStatus",e.fy,n,this.b4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"be",{get:function(){return this.ar},set:function(t){this.ar=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.f},set:function(t){var i=this.f;this.f=t,this.f!=i&&this.k0("HorizontalAlignment",e.fw,n.enumGetBox(I,i),n.enumGetBox(I,this.f))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.h},set:function(t){var i=this.h;this.h=t,this.h!=i&&this.k0("VerticalAlignment",e.hb,n.enumGetBox(k,i),n.enumGetBox(I,this.f))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lx",{get:function(){return this.le},set:function(t){var n=this.le;this.le=t,this.le!=n&&this.k0("Background",e.es,n,this.le)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l0",{get:function(){return this.lh},set:function(t){var n=this.lh;this.lh=t,this.lh!=n&&this.k0("Border",e.e4,n,this.lh)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lu",{get:function(){return this.lb},set:function(t){var n=this.lb;this.lb=t,this.lb!=n&&this.k0("ActualBackground",e.d6,n,this.lb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lv",{get:function(){return this.lc},set:function(t){var n=this.lc;this.lc=t,this.lc!=n&&this.k0("ActualBorder",e.eb,n,this.lc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lt",{get:function(){return this.la},set:function(t){var n=this.la;this.la=t,this.la!=n&&this.k0("ActivationBorder",e.d0,n,this.la)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l2",{get:function(){return this.lj},set:function(t){var n=this.lj;this.lj=t,this.lj!=n&&this.k0("ErrorBorder",e.fm,n,this.lj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l9",{get:function(){return this.lp},set:function(t){var n=this.lp;this.lp=t,this.lp!=n&&this.k0("SelectedBackground",e.gy,n,this.lp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l5",{get:function(){return this.ll},set:function(t){var n=this.ll;this.ll=t,this.ll!=n&&this.k0("HoverBackground",e.fx,n,this.ll)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l6",{get:function(){return this.lm},set:function(t){var n=this.lm;this.lm=t,this.lm!=n&&this.k0("HoverTextColor",e.fz,n,this.lm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ma",{get:function(){return this.lq},set:function(t){var n=this.lq;this.lq=t,this.lq!=n&&this.k0("SortIndicatorColor",e.g5,n,this.lq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mb",{get:function(){return this.lr},set:function(t){var n=this.lr;this.lr=t,this.lr!=n&&this.k0("StickyRowBackground",e.g7,n,this.lr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l8",{get:function(){return this.lo},set:function(t){var n=this.lo;this.lo=t,this.lo!=n&&this.k0("PinnedRowBackground",e.gu,n,this.lo)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l7",{get:function(){return this.ln},set:function(t){var n=this.ln;this.ln=t,this.ln!=n&&this.k0("LastStickyRowBackground",e.gd,n,this.ln)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l3",{get:function(){return this.lk},set:function(t){var n=this.lk;this.lk=t,this.lk!=n&&this.k0("FilterRowBackground",e.fr,n,this.lk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cp",{get:function(){return this.b8},set:function(t){var n=this.b8;this.b8=t,this.b8!=n&&this.k0("PinnedRowOpacity",e.gv,n,this.b8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hm",{get:function(){return this.hi},set:function(t){var n=this.hi;this.hi=t,this.hi!=n&&this.k0("OriginalValue",e.gj,n,this.hi)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j1",{get:function(){return this.hp},set:function(t){var n=this.hp;this.hp=t,this.hp!=n&&this.k0("RenderValue",e.gw,n,this.hp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mc",{get:function(){return this.ls},set:function(t){var n=this.ls;this.ls=t,this.ls!=n&&this.k0("TextColor",e.g8,n,this.ls)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lw",{get:function(){return this.ld},set:function(t){var n=this.ld;this.ld=t,this.ld!=n&&this.k0("ActualTextColor",e.er,n,this.ld)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l1",{get:function(){return this.li},set:function(t){var n=this.li;this.li=t,this.li!=n&&this.k0("DeletedTextColor",e.fc,n,this.li)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ag",{get:function(){return this.ad},set:function(t){var n=this.ad;this.ad=t,this.ad!=n&&this.k0("FontInfo",e.fs,n,this.ad)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ae",{get:function(){return this.ab},set:function(t){var n=this.ab;this.ab=t,this.ab!=n&&this.k0("ActualFontInfo",e.eh,n,this.ab)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aa",{get:function(){return this.z},set:function(t){var i=this.z;this.z=t,this.z!=i&&this.k0("LineBreakMode",e.gg,n.enumGetBox(R,i),n.enumGetBox(R,this.z))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ct",{get:function(){return this.cc},set:function(t){var n=this.cc;this.cc=t,this.cc!=n&&this.k0("VirtualizationPercentage",e.hc,n,this.cc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gm",{get:function(){return this.dq},set:function(t){var n=this.dq;this.dq=t,this.dq!=n&&this.k0("PaddingLeft",e.gn,n,this.dq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gq",{get:function(){return this.ds},set:function(t){var n=this.ds;this.ds=t,this.ds!=n&&this.k0("PaddingTop",e.gr,n,this.ds)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"go",{get:function(){return this.dr},set:function(t){var n=this.dr;this.dr=t,this.dr!=n&&this.k0("PaddingRight",e.gp,n,this.dr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gk",{get:function(){return this.dp},set:function(t){var n=this.dp;this.dp=t,this.dp!=n&&this.k0("PaddingBottom",e.gl,n,this.dp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"el",{get:function(){return this.c5},set:function(t){var n=this.c5;this.c5=t,this.c5!=n&&this.k0("ActualPaddingLeft",e.em,n,this.c5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ep",{get:function(){return this.c7},set:function(t){var n=this.c7;this.c7=t,this.c7!=n&&this.k0("ActualPaddingTop",e.eq,n,this.c7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"en",{get:function(){return this.c6},set:function(t){var n=this.c6;this.c6=t,this.c6!=n&&this.k0("ActualPaddingRight",e.eo,n,this.c6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ej",{get:function(){return this.c4},set:function(t){var n=this.c4;this.c4=t,this.c4!=n&&this.k0("ActualPaddingBottom",e.ek,n,this.c4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e2",{get:function(){return this.db},set:function(t){var n=this.db;this.db=t,this.db!=n&&this.k0("BorderLeftWidth",e.e3,n,this.db)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e7",{get:function(){return this.dd},set:function(t){var n=this.dd;this.dd=t,this.dd!=n&&this.k0("BorderTopWidth",e.e8,n,this.dd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e5",{get:function(){return this.dc},set:function(t){var n=this.dc;this.dc=t,this.dc!=n&&this.k0("BorderRightWidth",e.e6,n,this.dc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e0",{get:function(){return this.da},set:function(t){var n=this.da;this.da=t,this.da!=n&&this.k0("BorderBottomWidth",e.e1,n,this.da)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dy",{get:function(){return this.cx},set:function(t){var n=this.cx;this.cx=t,this.cx!=n&&this.k0("ActivationBorderLeftWidth",e.dz,n,this.cx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d3",{get:function(){return this.cz},set:function(t){var n=this.cz;this.cz=t,this.cz!=n&&this.k0("ActivationBorderTopWidth",e.d4,n,this.cz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d1",{get:function(){return this.cy},set:function(t){var n=this.cy;this.cy=t,this.cy!=n&&this.k0("ActivationBorderRightWidth",e.d2,n,this.cy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dw",{get:function(){return this.cw},set:function(t){var n=this.cw;this.cw=t,this.cw!=n&&this.k0("ActivationBorderBottomWidth",e.dx,n,this.cw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fk",{get:function(){return this.dh},set:function(t){var n=this.dh;this.dh=t,this.dh!=n&&this.k0("ErrorBorderLeftWidth",e.fl,n,this.dh)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fp",{get:function(){return this.dj},set:function(t){var n=this.dj;this.dj=t,this.dj!=n&&this.k0("ErrorBorderTopWidth",e.fq,n,this.dj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fn",{get:function(){return this.di},set:function(t){var n=this.di;this.di=t,this.di!=n&&this.k0("ErrorBorderRightWidth",e.fo,n,this.di)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fi",{get:function(){return this.dg},set:function(t){var n=this.dg;this.dg=t,this.dg!=n&&this.k0("ErrorBorderBottomWidth",e.fj,n,this.dg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d9",{get:function(){return this.c1},set:function(t){var n=this.c1;this.c1=t,this.c1!=n&&this.k0("ActualBorderLeftWidth",e.ea,n,this.c1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ee",{get:function(){return this.c3},set:function(t){var n=this.c3;this.c3=t,this.c3!=n&&this.k0("ActualBorderTopWidth",e.ef,n,this.c3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ec",{get:function(){return this.c2},set:function(t){var n=this.c2;this.c2=t,this.c2!=n&&this.k0("ActualBorderRightWidth",e.ed,n,this.c2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d7",{get:function(){return this.c0},set:function(t){var n=this.c0;this.c0=t,this.c0!=n&&this.k0("ActualBorderBottomWidth",e.d8,n,this.c0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n",{get:function(){return this.m},set:function(t){var i=this.m;this.m=t,this.m!=i&&this.k0("SortDirection",e.g4,n.enumGetBox(B,i),n.enumGetBox(B,this.m))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ba",{get:function(){return this.an},set:function(t){var n=this.an;this.an=t,this.an!=n&&this.k0("IsExpanded",e.f6,n,this.an)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a2",{get:function(){return this.ak},set:function(t){var n=this.ak;this.ak=t,this.ak!=n&&this.k0("IsCollapsable",e.f3,n,this.ak)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"y",{get:function(){return this.x},set:function(t){var i=this.x;this.x=t,this.x!=i&&this.k0("Pinned",e.gt,n.enumGetBox(E,i),n.enumGetBox(E,this.x))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"af",{get:function(){return this.ac},set:function(t){var n=this.ac;this.ac=t,this.ac!=n&&this.k0("EditFontInfo",e.ff,n,this.ac)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a9",{get:function(){return this.am},set:function(t){var n=this.am;this.am=t,this.am!=n&&this.k0("IsEdited",e.f5,n,this.am)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a6",{get:function(){return this.al},set:function(t){var n=this.al;this.al=t,this.al!=n&&this.k0("IsDeleted",e.f4,n,this.al)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"it",{get:function(){return this.ho},set:function(t){var n=this.ho;this.ho=t,this.ho!=n&&this.k0("EditError",e.fe,n,this.ho)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fg",{get:function(){return this.df},set:function(t){this.df=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bc",{get:function(){return this.ap},set:function(t){this.ap=t},enumerable:!1,configurable:!0}),e.prototype.kn=function(){this.ko()},e.prototype.ko=function(){this.bj=!1,this.bo=!1,this.a3=!1,this.a1=!1,this.bh=!1,this.bp=!1,this.a5=!1,this.kp()},e.prototype.b=function(t){if(null==t&&(t=new A),t.r=this.cu,t.s=this.cv,t.n=this.g0,t.o=this.g2,t.k=this.fu,t.q=this.hd,t.m=this.cq,t.h=this.cf,t.z=n.EnumUtil.getName(R,this.aa),t.a=n.AppearanceHelper.a(this.lu),t.b=n.AppearanceHelper.a(this.lv),t.l=this.ch,t.i=this.cg,t.t=this.f0,t.g=this.a2,t.d=this.g,t.e=this.i,t.aa=this.j1,t.p=this.ct,t.f=this.n,t.c=n.AppearanceHelper.a(this.lw),null!=this.ae){var e=this.ae;if(null!=this.p&&null==e.q){var i=this.p.externalGrid.renderer,r=n.FontUtil.getFontInfoFromString(i,e.fontString);e.q=r.q,e.f=r.f,e.r=r.r,e.t=r.t,e.u=r.u,e.v=r.v}null!=e.q&&(t.u=e.q),n.isNaN_(e.f)||(t.j=e.f),null!=e.v&&(t.y=e.v),null!=e.t&&(t.w=e.t),null!=e.r&&(t.v=e.t)}return t},e.prototype.kr=function(){null==e.bv&&(e.bv=new n.Dictionary$2(n.String_$type,n.Delegate_$type,0),e.bv.addItem("X",(function(t,e){return t.cu=n.typeGetValue(e)})),e.bv.addItem("Y",(function(t,e){return t.cv=n.typeGetValue(e)})),e.bv.addItem("SnappedX",(function(t,e){return t.g0=n.typeGetValue(e)})),e.bv.addItem("SnappedY",(function(t,e){return t.g2=n.typeGetValue(e)})),e.bv.addItem("ContentOpacity",(function(t,e){return t.cj=e})),e.bv.addItem("Opacity",(function(t,e){return t.co=e})),e.bv.addItem("LeftOffset",(function(t,e){return t.cm=e})),e.bv.addItem("LeftPercentOffset",(function(t,e){return t.cn=e})),e.bv.addItem("TopOffset",(function(t,e){return t.cr=e})),e.bv.addItem("TopPercentOffset",(function(t,e){return t.cs=e})),e.bv.addItem("Height",(function(t,e){return t.fu=n.typeGetValue(e)})),e.bv.addItem("Width",(function(t,e){return t.hd=n.typeGetValue(e)})),e.bv.addItem("IsSelected",(function(t,e){return t.bn=e})),e.bv.addItem("ModelType",(function(t,e){return t.w=n.EnumUtil.getEnumValue(P,e)})),e.bv.addItem("SelectedStatus",(function(t,e){return t.cq=e})),e.bv.addItem("ActivationStatus",(function(t,e){return t.cf=e})),e.bv.addItem("HoverStatus",(function(t,e){return t.cl=e})),e.bv.addItem("HorizontalAlignment",(function(t,e){return t.g=n.EnumUtil.getEnumValue(I,e)})),e.bv.addItem("VerticalAlignment",(function(t,e){return t.i=n.EnumUtil.getEnumValue(k,e)})),e.bv.addItem("Background",(function(t,e){return t.lx=e})),e.bv.addItem("Border",(function(t,e){return t.l0=e})),e.bv.addItem("ActivationBorder",(function(t,e){return t.lt=e})),e.bv.addItem("SelectedBackground",(function(t,e){return t.l9=e})),e.bv.addItem("HoverBackground",(function(t,e){return t.l5=e})),e.bv.addItem("RenderValue",(function(t,e){return t.j1=e})),e.bv.addItem("OriginalValue",(function(t,e){return t.hm=e})),e.bv.addItem("TextColor",(function(t,e){return t.mc=e})),e.bv.addItem("SortIndicatorColor",(function(t,e){return t.ma=e})),e.bv.addItem("FontInfo",(function(t,e){return t.ag=e})),e.bv.addItem("LineBreakMode",(function(t,e){return t.aa=n.EnumUtil.getEnumValue(R,e)})),e.bv.addItem("VirtualizationPercentage",(function(t,e){return t.ct=e})),e.bv.addItem("PaddingLeft",(function(t,e){return t.gm=n.typeGetValue(e)})),e.bv.addItem("PaddingTop",(function(t,e){return t.gq=n.typeGetValue(e)})),e.bv.addItem("PaddingRight",(function(t,e){return t.go=n.typeGetValue(e)})),e.bv.addItem("PaddingBottom",(function(t,e){return t.gk=n.typeGetValue(e)})),e.bv.addItem("BorderLeftWidth",(function(t,e){return t.e2=n.typeGetValue(e)})),e.bv.addItem("BorderTopWidth",(function(t,e){return t.e7=n.typeGetValue(e)})),e.bv.addItem("BorderRightWidth",(function(t,e){return t.e5=n.typeGetValue(e)})),e.bv.addItem("BorderBottomWidth",(function(t,e){return t.e0=n.typeGetValue(e)})),e.bv.addItem("ActivationBorderLeftWidth",(function(t,e){return t.dy=n.typeGetValue(e)})),e.bv.addItem("ActivationBorderTopWidth",(function(t,e){return t.d3=n.typeGetValue(e)})),e.bv.addItem("ActivationBorderRightWidth",(function(t,e){return t.d1=n.typeGetValue(e)})),e.bv.addItem("ActivationBorderBottomWidth",(function(t,e){return t.dw=n.typeGetValue(e)})),e.bv.addItem("SortDirection",(function(t,e){return t.n=n.EnumUtil.getEnumValue(B,e)})),e.bv.addItem("PinnedRowBackground",(function(t,e){return t.l8=e})),e.bv.addItem("StickyRowBackground",(function(t,e){return t.mb=e})),e.bv.addItem("LastStickyRowBackground",(function(t,e){return t.l7=e})),e.bv.addItem("PinnedRowOpacity",(function(t,e){return t.cp=e})),e.bv.addItem("Pinned",(function(t,e){return t.y=n.EnumUtil.getEnumValue(E,e)})),e.bv.addItem("IsEdited",(function(t,e){return t.a9=e})),e.bv.addItem("IsDeleted",(function(t,e){return t.a6=e})),e.bv.addItem("DeletedTextColor",(function(t,e){return t.l1=e})),e.bv.addItem("EditOpacity",(function(t,e){return t.ck=e})),e.bv.addItem("EditFontInfo",(function(t,e){return t.af=e})),e.bv.addItem("ErrorBorder",(function(t,e){return t.l2=e})),e.bv.addItem("ErrorBorderLeftWidth",(function(t,e){return t.fk=n.typeGetValue(e)})),e.bv.addItem("ErrorBorderTopWidth",(function(t,e){return t.fp=n.typeGetValue(e)})),e.bv.addItem("ErrorBorderBottomWidth",(function(t,e){return t.fi=n.typeGetValue(e)})),e.bv.addItem("ErrorBorderRightWidth",(function(t,e){return t.fn=n.typeGetValue(e)})),e.bv.addItem("EditError",(function(t,e){return t.it=e})),e.bv.addItem("ClipRect",(function(t,e){return t.me=e})),e.bv.addItem("BarBackground",(function(t,e){return t.ly=e})),e.bv.addItem("BarOutline",(function(t,e){return t.lz=e})),e.bv.addItem("BarProgress",(function(t,e){return t.ci=e})),e.bv.addItem("BarStrokeThickness",(function(t,e){return t.ey=n.typeGetValue(e)})),e.bv.addItem("BarCornerRadius",(function(t,e){return t.eu=n.typeGetValue(e)})))},e.prototype.kq=function(){null==e.bs&&(e.bs=new n.Dictionary$2(n.String_$type,n.Delegate_$type,0),e.bs.addItem("X",(function(t){return t.cu})),e.bs.addItem("Y",(function(t){return t.cv})),e.bs.addItem("SnappedX",(function(t){return t.g0})),e.bs.addItem("SnappedY",(function(t){return t.g2})),e.bs.addItem("ContentOpacity",(function(t){return t.cj})),e.bs.addItem("Opacity",(function(t){return t.co})),e.bs.addItem("LeftOffset",(function(t){return t.cm})),e.bs.addItem("LeftPercentOffset",(function(t){return t.cn})),e.bs.addItem("TopOffset",(function(t){return t.cr})),e.bs.addItem("TopPercentOffset",(function(t){return t.cs})),e.bs.addItem("Height",(function(t){return t.fu})),e.bs.addItem("Width",(function(t){return t.hd})),e.bs.addItem("IsSelected",(function(t){return t.bn})),e.bs.addItem("ModelType",(function(t){return n.enumGetBox(P,t.w)})),e.bs.addItem("SelectedStatus",(function(t){return t.cq})),e.bs.addItem("ActivationStatus",(function(t){return t.cf})),e.bs.addItem("HorizontalAlignment",(function(t){return n.enumGetBox(I,t.g)})),e.bs.addItem("VerticalAlignment",(function(t){return n.enumGetBox(k,t.i)})),e.bs.addItem("Background",(function(t){return t.lx})),e.bs.addItem("Border",(function(t){return t.l0})),e.bs.addItem("ActivationBorder",(function(t){return t.lt})),e.bs.addItem("SelectedBackground",(function(t){return t.l9})),e.bs.addItem("HoverBackground",(function(t){return t.l5})),e.bs.addItem("RenderValue",(function(t){return t.j1})),e.bs.addItem("OriginalValue",(function(t){return t.hm})),e.bs.addItem("TextColor",(function(t){return t.mc})),e.bs.addItem("SortIndicatorColor",(function(t){return t.ma})),e.bs.addItem("FontInfo",(function(t){return t.ag})),e.bs.addItem("LineBreakMode",(function(t){return n.enumGetBox(R,t.aa)})),e.bs.addItem("VirtualizationPercentage",(function(t){return t.ct})),e.bs.addItem("PaddingLeft",(function(t){return t.gm})),e.bs.addItem("PaddingTop",(function(t){return t.gq})),e.bs.addItem("PaddingRight",(function(t){return t.go})),e.bs.addItem("PaddingBottom",(function(t){return t.gk})),e.bs.addItem("BorderLeftWidth",(function(t){return t.e2})),e.bs.addItem("BorderTopWidth",(function(t){return t.e7})),e.bs.addItem("BorderRightWidth",(function(t){return t.e5})),e.bs.addItem("BorderBottomWidth",(function(t){return t.e0})),e.bs.addItem("ActivationBorderLeftWidth",(function(t){return t.dy})),e.bs.addItem("ActivationBorderTopWidth",(function(t){return t.d3})),e.bs.addItem("ActivationBorderRightWidth",(function(t){return t.d1})),e.bs.addItem("ActivationBorderBottomWidth",(function(t){return t.dw})),e.bs.addItem("SortDirection",(function(t){return n.enumGetBox(B,t.n)})),e.bs.addItem("PinnedRowBackground",(function(t){return t.l8})),e.bs.addItem("StickyRowBackground",(function(t){return t.mb})),e.bs.addItem("LastStickyRowBackground",(function(t){return t.l7})),e.bs.addItem("PinnedRowOpacity",(function(t){return t.cp})),e.bs.addItem("Pinned",(function(t){return n.enumGetBox(E,t.y)})),e.bs.addItem("IsEdited",(function(t){return t.a9})),e.bs.addItem("IsDeleted",(function(t){return t.a6})),e.bs.addItem("DeletedTextColor",(function(t){return t.l1})),e.bs.addItem("EditOpacity",(function(t){return t.ck})),e.bs.addItem("EditFontInfo",(function(t){return t.af})),e.bs.addItem("ErrorBorder",(function(t){return t.l2})),e.bs.addItem("ErrorBorderLeftWidth",(function(t){return t.fk})),e.bs.addItem("ErrorBorderTopWidth",(function(t){return t.fp})),e.bs.addItem("ErrorBorderBottomWidth",(function(t){return t.fi})),e.bs.addItem("ErrorBorderRightWidth",(function(t){return t.fn})),e.bs.addItem("EditError",(function(t){return t.it})),e.bs.addItem("ClipRect",(function(t){return t.me})),e.bs.addItem("BarBackground",(function(t){return t.ly})),e.bs.addItem("BarOutline",(function(t){return t.lz})),e.bs.addItem("BarProgress",(function(t){return t.ci})),e.bs.addItem("BarStrokeThickness",(function(t){return t.ey})),e.bs.addItem("BarCornerRadius",(function(t){return t.eu})))},e.prototype.kl=function(t){switch(t){case"X":case"Y":case"SnappedX":case"SnappedY":case"ContentOpacity":case"Opacity":case"LeftOffset":case"LeftPercentOffset":case"TopOffset":case"TopPercentOffset":case"Height":case"Width":return n.Number_$type;case"IsSelected":return n.Boolean_$type;case"ModelType":case"SelectedStatus":case"ActivationStatus":case"HorizontalAlignment":case"VerticalAlignment":return n.Number_$type;case"Background":case"Border":case"ActivationBorder":case"SelectedBackground":case"HoverBackground":return n.Brush.$;case"RenderValue":return n.String_$type;case"OriginalValue":return n.Base.$;case"TextColor":case"SortIndicatorColor":return n.Brush.$;case"FontInfo":return n.FontInfo.$;case"LineBreakMode":case"VirtualizationPercentage":case"PaddingLeft":case"PaddingTop":case"PaddingRight":case"PaddingBottom":case"BorderLeftWidth":case"BorderTopWidth":case"BorderRightWidth":case"BorderBottomWidth":case"ActivationBorderLeftWidth":case"ActivationBorderTopWidth":case"ActivationBorderRightWidth":case"ActivationBorderBottomWidth":case"SortDirection":return n.Number_$type;case"PinnedRowBackground":case"StickyRowBackground":case"LastStickyRowBackground":return n.Brush.$;case"PinnedRowOpacity":return n.Number_$type;case"Pinned":case"IsEdited":case"IsDeleted":return n.Boolean_$type;case"DeletedTextColor":return n.Brush.$;case"EditOpacity":return n.Number_$type;case"EditFontInfo":return n.FontInfo.$;case"ErrorBorder":return n.Brush.$;case"ErrorBorderLeftWidth":case"ErrorBorderTopWidth":case"ErrorBorderBottomWidth":case"ErrorBorderRightWidth":return n.Number_$type;case"EditError":return n.String_$type;case"ClipRect":return n.Rect.$;case"BarBackground":case"BarOutline":return n.Brush.$;case"BarStrokeThickness":case"BarCornerRadius":return n.Number_$type}return n.Number_$type},e.prototype.k9=function(t,n){this.kr(),e.bv.containsKey(t)?e.bv.item(t)(this,n):this.k8(t,n)},e.prototype.hl=function(t){return this.kq(),e.bs.containsKey(t)?e.bs.item(t)(this):this.az(t)?this.hk(t):null},e.prototype.k7=function(t,e){},e.prototype.bm=function(t){return(1!=t||1==t&&1==this.o.groupSummaryDisplayMode)&&2!=t&&4!=t&&5!=t},e.prototype.i4=function(){return null!=this.hm?this.hm.toString():""},e.prototype.km=function(t){if(null!=t){if(1==t.count)return void(this.bw=t._inner[0].z());null==this.bw?this.bw=new n.HashSet$1(n.String_$type,0):this.bw.clear();for(var e=0;e<t.count;e++){t._inner[e].an(this.bw)}}else this.bw=null},e.$t=n.markType(e,"CellModel"),e.dn=0,e.dm=0,e.bu=null,e.g6=e.ft("State"),e.gs=e.ft("Path"),e.fd=e.ft("DoClone"),e.f2=e.ft("IsBarSupported"),e.ex=e.ft("BarProgress"),e.et=e.ft("BarBackground"),e.ew=e.ft("BarOutline"),e.ez=e.ft("BarStrokeThickness"),e.ev=e.ft("BarCornerRadius"),e.e9=e.ft("ClipRect"),e.f8=e.ft("IsHitTestVisible"),e.ga=e.ft("IsRowPinned"),e.gb=e.ft("IsRowSticky"),e.f9=e.ft("IsLastStickyRow"),e.f7=e.ft("IsFilterRow"),e.f1=e.ft("Indent"),e.gx=e.ft("RowItem"),e.hf=e.ft("X"),e.hg=e.ft("Y"),e.g1=e.ft("SnappedX"),e.g3=e.ft("SnappedY"),e.fh=e.ft("EditOpacity"),e.fa=e.ft("ContentOpacity"),e.eg=e.ft("ActualContentOpacity"),e.gi=e.ft("Opacity"),e.ei=e.ft("ActualOpacity"),e.ge=e.ft("LeftOffset"),e.g9=e.ft("TopOffset"),e.gf=e.ft("LeftPercentOffset"),e.ha=e.ft("TopPercentOffset"),e.fv=e.ft("Height"),e.he=e.ft("Width"),e.gc=e.ft("IsSelected"),e.gh=e.ft("ModelType"),e.gz=e.ft("SelectedStatus"),e.d5=e.ft("ActivationStatus"),e.fy=e.ft("HoverStatus"),e.fw=e.ft("HorizontalAlignment"),e.hb=e.ft("VerticalAlignment"),e.es=e.ft("Background"),e.e4=e.ft("Border"),e.d6=e.ft("ActualBackground"),e.eb=e.ft("ActualBorder"),e.d0=e.ft("ActivationBorder"),e.fm=e.ft("ErrorBorder"),e.gy=e.ft("SelectedBackground"),e.fx=e.ft("HoverBackground"),e.fz=e.ft("HoverTextColor"),e.g5=e.ft("SortIndicatorColor"),e.g7=e.ft("StickyRowBackground"),e.gu=e.ft("PinnedRowBackground"),e.gd=e.ft("LastStickyRowBackground"),e.fr=e.ft("FilterRowBackground"),e.gv=e.ft("PinnedRowOpacity"),e.gj=e.ft("OriginalValue"),e.gw=e.ft("RenderValue"),e.g8=e.ft("TextColor"),e.er=e.ft("ActualTextColor"),e.fc=e.ft("DeletedTextColor"),e.fs=e.ft("FontInfo"),e.eh=e.ft("ActualFontInfo"),e.gg=e.ft("LineBreakMode"),e.hc=e.ft("VirtualizationPercentage"),e.gn=e.ft("PaddingLeft"),e.gr=e.ft("PaddingTop"),e.gp=e.ft("PaddingRight"),e.gl=e.ft("PaddingBottom"),e.em=e.ft("ActualPaddingLeft"),e.eq=e.ft("ActualPaddingTop"),e.eo=e.ft("ActualPaddingRight"),e.ek=e.ft("ActualPaddingBottom"),e.e3=e.ft("BorderLeftWidth"),e.e8=e.ft("BorderTopWidth"),e.e6=e.ft("BorderRightWidth"),e.e1=e.ft("BorderBottomWidth"),e.dz=e.ft("ActivationBorderLeftWidth"),e.d4=e.ft("ActivationBorderTopWidth"),e.d2=e.ft("ActivationBorderRightWidth"),e.dx=e.ft("ActivationBorderBottomWidth"),e.fl=e.ft("ErrorBorderLeftWidth"),e.fq=e.ft("ErrorBorderTopWidth"),e.fo=e.ft("ErrorBorderRightWidth"),e.fj=e.ft("ErrorBorderBottomWidth"),e.ea=e.ft("ActualBorderLeftWidth"),e.ef=e.ft("ActualBorderTopWidth"),e.ed=e.ft("ActualBorderRightWidth"),e.d8=e.ft("ActualBorderBottomWidth"),e.g4=e.ft("SortDirection"),e.f6=e.ft("IsExpanded"),e.f3=e.ft("IsCollapsable"),e.gt=e.ft("Pinned"),e.ff=e.ft("EditFontInfo"),e.f5=e.ft("IsEdited"),e.f4=e.ft("IsDeleted"),e.fe=e.ft("EditError"),e.bv=null,e.bs=null,e}(n.Base),zn=function(t){function e(){var i=t.call(this)||this;return i.mo=new Date,i.m0=null,i.mf=null,i.mh=null,i.my=null,i._formatOverride=null,i.mk=0,i.mi=null,i.mm=!1,i.mp=n.dateMinValue(),i.ks(e.mr),i.bc=!0,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"mp",{get:function(){return this.mo},set:function(t){var n=this.mo;this.mo=t,+this.mo!=+n&&this.k0("DateTimeValue",e.mr,n,this.mo)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m6",{get:function(){return this.m0},set:function(t){var n=this.m0;this.m0=t,this.m0!=n&&this.k0("FormatStringOverride",e.mu,n,this.m0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mg",{get:function(){return this.mf},set:function(t){var n=this.mf;this.mf=t,this.mf!=n&&this.k0("FormatSpecifiers",e.mt,n,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mz",{get:function(){return this._formatOverride},set:function(t){var n=this._formatOverride;this._formatOverride=t,this._formatOverride!=n&&this.k0("FormatOverride",e.ms,n,this._formatOverride)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ml",{get:function(){return this.mk},set:function(t){var i=this.mk;this.mk=t,this.mk!=i&&this.k0("DateTimeFormat",e.mq,n.enumGetBox($,i),n.enumGetBox($,this.mk))},enumerable:!1,configurable:!0}),e.prototype.m3=function(t){if(null!=this.mh)return+t==+n.dateMinValue()?"":this.mh.i(t);if(null!=this._formatOverride){if(+t==+n.dateMinValue())return"";var e=t;return this._formatOverride.format(e)}this.mi.j(this.ml);var i=this.mi.i(t);return i==n.stringEmpty()&&null!=this.hm&&null===n.typeCast(n.Date_$type,this.hm)?this.hm.toString():i},e.prototype.i4=function(){return this.m3(this.mp)},Object.defineProperty(e.prototype,"mj",{get:function(){return this.mi},set:function(t){var n=this.mi;this.mi=t,this.mi!=n&&this.k0("Formatter",e.mv,n,this.mi)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mn",{get:function(){return this.mm},set:function(t){var n=this.mm;this.mm=t,this.mm!=n&&this.k0("IsOffsetValue",e.mw,n,this.mm)},enumerable:!1,configurable:!0}),e.prototype.k3=function(e,i,r){switch(e){case"FormatStringOverride":case"FormatSpecifiers":null!=this.m6?(this.mh=new n.BindingFormatter,this.mh.j=this.m6,this.mh.d=this.mg):this.mh=null}t.prototype.k3.call(this,e,i,r)},e.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"DateTimeFormat"==e&&(this.ml=n.EnumUtil.getEnumValue($,i)),"DateTimeValue"==e&&(this.mp=i),"IsOffsetValue"==e&&(this.mn=i),"FormatOverride"==e&&(this.mz=i)},e.prototype.kl=function(e){switch(e){case"DateTimeFormat":return n.String_$type;case"DateTimeValue":return n.Date_$type;case"IsOffsetValue":return n.Boolean_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"DateTimeFormat"==e?n.enumGetBox($,this.ml):"DateTimeValue"==e?this.mp:"IsOffsetValue"==e?this.mn:"FormatOverride"==e?this.mz:t.prototype.hl.call(this,e)},e.prototype.b=function(e){null==e&&(e=new G);var n=e=t.prototype.b.call(this,e);return n.af=this.mp,n.ag=this.ml,n.ae=this.mn,n},e.$t=n.markType(e,"DateTimeCellModel",$n.$),e.mr=$n.ft("DateTimeValue"),e.mu=$n.ft("FormatStringOverride"),e.mt=$n.ft("FormatSpecifiers"),e.ms=$n.ft("FormatOverride"),e.mq=$n.ft("DateTimeFormat"),e.mv=$n.ft("Formatter"),e.mw=$n.ft("IsOffsetValue"),e}($n),Gn=function(t){function e(){var e=t.call(this)||this;return e.mu=0,e.mt=0,e.mo=!0,e.mj=null,e.mh=0,e.nd=null,e.na=null,e.ml=0,e.m8=null,e.nc=null,e.mf=null,e.mn=!1,e.nb=null,e.mp=!1,e.kc="editorCell",e.w=9,e.me=new n.Rect(0,0,0,0,0),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mr",{get:function(){return n.Rect.l_op_Inequality(this.me,n.Rect.empty)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mk",{get:function(){return this.mj},set:function(t){var n=this.mj;this.mj=t,n!=this.mj&&this.k0("EditTarget",e.m1,n,this.mj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mi",{get:function(){return this.mh},set:function(t){var i=this.mh;this.mh=t,i!=this.mh&&this.k0("DataType",e.mv,n.enumGetBox(n.DataSourceSchemaPropertyType_$type,i),n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.mh))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nn",{get:function(){return this.nd},set:function(t){var n=this.nd;this.nd=t,n!=this.nd&&this.k0("ErrorMessage",e.m2,n,this.nd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mm",{get:function(){return this.ml},set:function(t){var i=this.ml;this.ml=t,i!=this.ml&&this.k0("EditorType",e.mz,n.enumGetBox(q,i),n.enumGetBox(q,this.ml))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m9",{get:function(){return this.m8},set:function(t){var n=this.m8;this.m8=t,n!=this.m8&&this.k0("EditorItemsSource",e.mx,n,this.m8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ni",{get:function(){return this.nc},set:function(t){var n=this.nc;this.nc=t,n!=this.nc&&this.k0("EditorTextField",e.my,n,this.nc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mg",{get:function(){return this.mf},set:function(t){var n=this.mf;this.mf=t,n!=this.mf&&this.k0("EditorValueField",e.m0,n,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mq",{get:function(){return this.mn},set:function(t){var n=this.mn;this.mn=t,this.k0("Focus",e.m3,n,this.mn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nf",{get:function(){return this.nb},set:function(t){var n=this.nb;this.nb=t,n!=this.nb&&this.k0("DateFormatString",e.mw,n,this.nb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ms",{get:function(){return this.mp},set:function(t){var n=this.mp;this.mp=t,this.mp!=n&&this.k0("ShowTodayButton",e.m5,n,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m7",{get:function(){return this.mu},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m6",{get:function(){return this.mt},enumerable:!1,configurable:!0}),e.prototype.k6=function(){},e.prototype.k3=function(e,n,i){if("SelectedStatus"!=e)switch(t.prototype.k3.call(this,e,n,i),e){case"IsHidden":this.bj=!0;break;case"EditTarget":this.ns(),this.a3=!0;break;case"OriginalValue":case"DataType":case"EditorItemsSource":this.a3=!0;break;case"ErrorMessage":this.ns(),this.a3=!0}else this.cq=0},e.prototype.kl=function(e){switch(e){case"DataType":return n.Number_$type;case"ErrorMessage":return n.String_$type;case"Focus":return n.Boolean_$type;case"EditTarget":return n.Base.$;case"DateFormatString":return n.String_$type;case"ShowTodayButton":return n.Boolean_$type;case"EditorItemsSource":return n.Base.$}return t.prototype.kl.call(this,e)},e.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"DataType"==e?this.mi=n.EnumUtil.getEnumValue(n.DataSourceSchemaPropertyType_$type,i):"ErrorMessage"==e?this.nn=i:"Focus"==e?this.mq=i:"EditTarget"==e?this.mk=i:"DateFormatString"==e?this.nf=i:"ShowTodayButton"==e?this.ms=i:"EditorItemsSource"==e&&(this.m9=i)},e.prototype.hl=function(e){switch(e){case"IsHidden":return this.mr;case"DataType":return n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.mi);case"ErrorMessage":return this.nn;case"Focus":return this.mq;case"DateFormatString":return this.nf;case"ShowTodayButton":return this.ms;case"EditorItemsSource":return this.m9}return t.prototype.hl.call(this,e)},e.prototype.b=function(e){null==e&&(e=new H);var n=t.prototype.b.call(this,e);return n.af=this.mr,n.ae=this.mi,n.ag=null!=this.na?this.na.toString():null,n.ah=this.nn,n},e.prototype.ns=function(){null!=this.mk&&(null!=this.nn?this.l0=h.bm:this.l0=this.mk.lt)},e.$t=n.markType(e,"EditorCellModel",$n.$),e.m4=$n.ft("IsHidden"),e.m1=$n.ft("EditTarget"),e.mv=$n.ft("DataType"),e.m2=$n.ft("ErrorMessage"),e.mz=$n.ft("EditorType"),e.mx=$n.ft("EditorItemsSource"),e.my=$n.ft("EditorTextField"),e.m0=$n.ft("EditorValueField"),e.m3=$n.ft("Focus"),e.mw=$n.ft("DateFormatString"),e.m5=$n.ft("ShowTodayButton"),e}($n),Ln=function(t){function e(){var e=t.call(this)||this;return e.mj=0,e.mh=null,e.ml=null,e.mn=null,e.mp=!0,e.mf=0,e.m2=null,e.mw=0,e.mv=0,e.mu=0,e.mt=0,e.ms=0,e.mr=0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mk",{get:function(){return this.mj},set:function(t){var i=this.mj;this.mj=t,i!=this.mj&&this.k0("DataType",e.mx,n.enumGetBox(n.DataSourceSchemaPropertyType_$type,i),n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.mj))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mi",{get:function(){return this.mh},set:function(t){var n=this.mh;this.mh=t,n!=this.mh&&this.k0("Filter",e.m0,n,this.mh)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mm",{get:function(){return this.ml},set:function(t){var n=this.ml;this.ml=t,n!=this.ml&&this.k0("FilterExpression",e.my,n,this.ml)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mo",{get:function(){return this.mn},set:function(t){var n=this.mn;this.mn=t,null!=this.mn&&this.k0("FilterOperands",e.mz,n,this.mn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mq",{get:function(){return this.mp},set:function(t){var n=this.mp;this.mp=t,n!=this.mp&&this.k0("IsFilteringEnabled",e.m1,n,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mg",{get:function(){return this.mf},set:function(t){this.mf=t},enumerable:!1,configurable:!0}),e.prototype.k9=function(e,i){"DataType"==e?this.mk=n.EnumUtil.getEnumValue(n.DataSourceSchemaPropertyType_$type,i):"Filter"==e?this.mi=i:"FilterExpression"==e?this.mm=i:"IsFilteringEnabled"==e&&(this.mq=i),t.prototype.k9.call(this,e,i)},e.prototype.kl=function(e){switch(e){case"DataType":return n.Number_$type;case"Filter":return n.String_$type;case"FilterExpression":return n.Base.$;case"IsFilteringEnabled":return n.Boolean_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"DataType"==e?n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.mk):"Filter"==e?this.mi:"FilterExpression"==e?this.mm:"IsFilteringEnabled"==e?this.mq:t.prototype.hl.call(this,e)},e.prototype.k7=function(t,e){"OperatorType"==t?this.mg=n.EnumUtil.getEnumValue(m,e):"FilterValue"==t?this.m2=e:"SelectorTop"==t?this.mw=e:"SelectorLeft"==t?this.mv=e:"EditorTop"==t?this.mu=e:"EditorLeft"==t?this.mt=e:"ClearIconTop"==t?this.ms=e:"ClearIconLeft"==t&&(this.mr=e)},e.prototype.b=function(e){null==e&&(e=new W);var n=t.prototype.b.call(this,e);return n.ag=this.mq,n.af=this.mk,n.ae=this.mg,n.an=this.m2,n.am=this.mw,n.al=this.mv,n.ak=this.mu,n.aj=this.mt,n.ai=this.ms,n.ah=this.mr,n},e.$t=n.markType(e,"FilterCellModel",$n.$),e.mx=$n.ft("DataType"),e.m0=$n.ft("Filter"),e.my=$n.ft("FilterExpression"),e.mz=$n.ft("FilterOperands"),e.m1=$n.ft("IsFilteringEnabled"),e}($n),qn=function(t){function e(){var e=t.call(this)||this;return e.bc=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"EditorRowCellModel",$n.$),e}($n),Hn=function(t){function e(){var e=t.call(this)||this;return e.ml=null,e.mm=null,e.mt=null,e.mf=null,e.bc=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mn",{get:function(){return this.ml},set:function(t){var n=this.ml;this.ml=t,this.ml!=n&&this.k0("ResolvedSummaryLabel",e.mh,n,this.ml)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mp",{get:function(){return this.mm},set:function(t){var n=this.mm;this.mm=t,this.mm!=n&&this.k0("ResolvedSummaryValue",e.mi,n,this.mm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mu",{get:function(){return this.mt},set:function(t){var n=this.mt;this.mt=t,this.mt!=n&&this.k0("SummaryLabelTextColor",e.mk,n,this.mt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mg",{get:function(){return this.mf},set:function(t){var n=this.mf;this.mf=t,this.mf!=n&&this.k0("SummaryLabelFontInfo",e.mj,n,this.mf)},enumerable:!1,configurable:!0}),e.prototype.b=function(e){null==e&&(e=new U);var i=e=t.prototype.b.call(this,e);if(i.ai=this.mn,i.ao=this.mp,i.ae=n.AppearanceHelper.a(this.mu),i.af=n.AppearanceHelper.a(this.mc),null!=this.mg){var r=this.mg;if(null!=this.p&&null==r.q){var o=this.p.externalGrid.renderer,a=n.FontUtil.getFontInfoFromString(o,r.fontString);r.q=a.q,r.f=a.f,r.r=a.r,r.t=a.t,r.u=a.u,r.v=a.v}null!=r.q&&(i.aj=r.q),n.isNaN_(r.f)||(i.ag=r.f),null!=r.v&&(i.an=r.v),null!=r.t&&(i.al=r.t),null!=r.r&&(i.ak=r.t)}if(null!=this.ag){var s=this.ag;if(null!=this.p&&null==s.q){var l=this.p.externalGrid.renderer,u=n.FontUtil.getFontInfoFromString(l,s.fontString);s.q=u.q,s.f=u.f,s.r=u.r,s.t=u.t,s.u=u.u,s.v=u.v}null!=s.q&&(i.ap=s.q),n.isNaN_(s.f)||(i.ah=s.f),null!=s.v&&(i.at=s.v),null!=s.t&&(i.ar=s.t),null!=s.r&&(i.aq=s.t)}return i},e.prototype.bm=function(t){return 4==t||5==t},e.$t=n.markType(e,"SummaryCellModel",$n.$),e.mh=$n.ft("ResolvedSummaryLabel"),e.mi=$n.ft("ResolvedSummaryValue"),e.mk=$n.ft("SummaryLabelTextColor"),e.mj=$n.ft("SummaryLabelFontInfo"),e}($n),Wn=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.$t=n.markType(e,"VerticalSeparatorCellModel",$n.$),e}($n),Un=function(t){function e(){var e=t.call(this)||this;return e.mm="",e.mh=0,e.mf=0,e.g=3,e.bc=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mn",{get:function(){return this.mm},set:function(t){var n=this.mm;this.mm=t,this.mm!=n&&this.k0("ImagePath",e.mj,n,this.mm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mi",{get:function(){return this.mh},set:function(t){var i=this.mh;this.mh=t,this.mh!=i&&this.k0("ImageStretchOption",e.ml,n.enumGetBox(X,i),n.enumGetBox(X,this.mh))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mg",{get:function(){return this.mf},set:function(t){var i=this.mf;this.mf=t,this.mf!=i&&this.k0("ImageResourceType",e.mk,n.enumGetBox(Y,i),n.enumGetBox(Y,this.mf))},enumerable:!1,configurable:!0}),e.prototype.b=function(e){null==e&&(e=new Q);var n=e=t.prototype.b.call(this,e);return n.ae=this.mn,n},e.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"ImageStretchOption"==e&&(this.mi=n.EnumUtil.getEnumValue(X,i)),"ImageResourceType"==e&&(this.mg=n.EnumUtil.getEnumValue(Y,i)),"ImagePath"==e&&(this.mn=i)},e.prototype.kl=function(e){switch(e){case"ImageStretchOption":case"ImageResourceType":return n.Number_$type;case"ImagePath":return n.String_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"ImageStretchOption"==e?n.enumGetBox(X,this.mi):"ImageResourceType"==e?n.enumGetBox(Y,this.mg):"ImagePath"==e?this.mn:t.prototype.hl.call(this,e)},e.$t=n.markType(e,"ImageCellModel",$n.$),e.mj=$n.ft("ImagePath"),e.ml=$n.ft("ImageStretchOption"),e.mk=$n.ft("ImageResourceType"),e}($n),Kn=function(t){function e(){var e=t.call(this)||this;return e.mn=NaN,e.mi=!1,e.nb=null,e.mf=null,e.mh=null,e.m9=null,e._formatOverride=null,e.nc=null,e.ne=null,e.nd=null,e.nf="",e.mp=5,e.mq=0,e.mr=-1,e.mj=!1,e.g=2,e.bc=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mo",{get:function(){return this.mn},set:function(t){var n=this.mn;this.mn=t,this.mn!=n&&this.k0("NumericValue",e.m4,n,this.mn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mk",{get:function(){return this.mi},set:function(t){var n=this.mi;this.mi=t,this.mi!=n&&this.k0("HasDecimalValue",e.mv,n,this.mi)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ni",{get:function(){return this.nb},set:function(t){var n=this.nb;this.nb=t,this.nb!=n&&this.k0("FormatStringOverride",e.mu,n,this.nb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mg",{get:function(){return this.mf},set:function(t){var n=this.mf;this.mf=t,this.mf!=n&&this.k0("FormatSpecifiers",e.mt,n,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"na",{get:function(){return this._formatOverride},set:function(t){var n=this._formatOverride;this._formatOverride=t,this._formatOverride!=n&&this.k0("FormatOverride",e.ms,n,this._formatOverride)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"no",{get:function(){return this.nc},set:function(t){var n=this.nc;this.nc=t,this.nc!=n&&this.k0("NegativePrefix",e.m2,n,this.nc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nt",{get:function(){return this.ne},set:function(t){var n=this.ne;this.ne=t,this.ne!=n&&this.k0("PositivePrefix",e.m5,n,this.ne)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nq",{get:function(){return this.nd},set:function(t){var n=this.nd;this.nd=t,this.nd!=n&&this.k0("NegativeSuffix",e.m3,n,this.nd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nv",{get:function(){return this.nf},set:function(t){var n=this.nf;this.nf=t,this.nf!=n&&this.k0("PositiveSuffix",e.m6,n,this.nf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mw",{get:function(){return this.mp},set:function(t){var n=this.mp;this.mp=t,this.mp!=n&&this.k0("MaxFractionDigits",e.mx,n,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"my",{get:function(){return this.mq},set:function(t){var n=this.mq;this.mq=t,this.mq!=n&&this.k0("MinFractionDigits",e.mz,n,this.mq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m0",{get:function(){return this.mr},set:function(t){var n=this.mr;this.mr=t,this.mr!=n&&this.k0("MinIntegerDigits",e.m1,n,this.mr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mm",{get:function(){return this.mj},set:function(t){var n=this.mj;this.mj=t,this.mj!=n&&this.k0("ShowGroupingSeparator",e.m7,n,this.mj)},enumerable:!1,configurable:!0}),e.prototype.ml=function(){return!!(this.a8(e.mz)||this.a8(e.mx)||this.a8(e.m1)||this.a8(e.m6)||this.a8(e.m3)||this.a8(e.m5)||this.a8(e.m2)||this.a8(e.ms)||this.a8(e.m7))},e.prototype.k3=function(e,i,r){switch(e){case"FormatStringOverride":case"FormatSpecifiers":null!=this.ni?(this.mh=new n.BindingFormatter,this.mh.j=this.ni,this.mh.d=this.mg):this.mh=null}t.prototype.k3.call(this,e,i,r)},e.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"NumericValue"==e&&(this.mo=i),"NegativePrefix"==e&&(this.no=i),"PositivePrefix"==e&&(this.nt=i),"NegativeSuffix"==e&&(this.nq=i),"PositiveSuffix"==e&&(this.nv=i),"MinFractionDigits"==e&&(this.my=n.typeGetValue(i)),"MaxFractionDigits"==e&&(this.mw=n.typeGetValue(i)),"MinIntegerDigits"==e&&(this.m0=n.typeGetValue(i)),"ShowGroupingSeparator"==e&&(this.mm=i),"FormatOverride"==e&&(this.na=i)},e.prototype.kl=function(e){switch(e){case"NumericValue":return n.Number_$type;case"NegativePrefix":case"PositivePrefix":return n.String_$type;case"MinFractionDigits":case"MaxFractionDigits":case"MinIntegerDigits":return n.Number_$type;case"ShowGroupingSeparator":return n.Boolean_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"NumericValue"==e?this.mo:"NegativePrefix"==e?this.no:"PositivePrefix"==e?this.nt:"NegativeSuffix"==e?this.no:"PositiveSuffix"==e?this.nv:"MinFractionDigits"==e?this.my:"MaxFractionDigits"==e?this.mw:"MinIntegerDigits"==e?this.m0:"ShowGroupingSeparator"==e?this.mm:"FormatOverride"==e?this.na:t.prototype.hl.call(this,e)},e.prototype.b=function(e){null==e&&(e=new J);var n=e=t.prototype.b.call(this,e);return n.ae=this.mo,n},e.prototype.i4=function(){return Yi.c(this)},e.$t=n.markType(e,"NumericCellModel",$n.$),e.m4=$n.ft("NumericValue"),e.mv=$n.ft("HasDecimalValue"),e.mu=$n.ft("FormatStringOverride"),e.mt=$n.ft("FormatSpecifiers"),e.ms=$n.ft("FormatOverride"),e.m2=$n.ft("NegativePrefix"),e.m5=$n.ft("PositivePrefix"),e.m3=$n.ft("NegativeSuffix"),e.m6=$n.ft("PositiveSuffix"),e.mx=$n.ft("MaxFractionDigits"),e.mz=$n.ft("MinFractionDigits"),e.m1=$n.ft("MinIntegerDigits"),e.m7=$n.ft("ShowGroupingSeparator"),e}($n),Xn=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.b=function(e){return null==e&&(e=new tt),e=t.prototype.b.call(this,e)},e.$t=n.markType(e,"RowSeparatorModel",$n.$),e}($n),Zn=function(t){function e(){var e=t.call(this)||this;return e.mf=null,e.mg=null,e.mr=null,e.mq=null,e.mj=4,e.bc=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mh",{get:function(){return this.mf},set:function(t){var n=this.mf;this.mf=t,this.mf!=n&&this.k0("Groups",e.ml,n,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mi",{get:function(){return this.mg},set:function(t){var n=this.mg;this.mg=t,this.mg!=n&&this.k0("Summaries",e.mo,n,this.mg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mv",{get:function(){return this.mr},set:function(t){var n=this.mr;this.mr=t,this.mr!=n&&this.k0("ResolvedText",e.mn,n,this.mr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mt",{get:function(){return this.mq},set:function(t){var n=this.mq;this.mq=t,this.mq!=n&&this.k0("ResolvedSummaryText",e.mm,n,this.mq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mk",{get:function(){return this.mj},set:function(t){var i=this.mj;this.mj=t,this.mj!=i&&this.k0("SummaryDisplayMode",e.mp,n.enumGetBox(N,i),n.enumGetBox(N,this.mj))},enumerable:!1,configurable:!0}),e.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"Groups"==e?this.mh=i:"SummaryDisplayMode"==e&&(this.mk=n.EnumUtil.getEnumValue(N,i))},e.prototype.kl=function(e){switch(e){case"Groups":return n.Base.$;case"IsCollapsable":return n.Boolean_$type;case"SummaryDisplayMode":return n.Number_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"Groups"==e?this.mh:"IsCollapsable"==e?this.a2:"SummaryDisplayMode"==e?n.enumGetBox(N,this.mk):t.prototype.hl.call(this,e)},e.prototype.b=function(e){null==e&&(e=new it);var n=e=t.prototype.b.call(this,e);n.af=new Array(this.mh.length),n.ag=new Array(this.mh.length),n.ae=new Array(this.mh.length),n.al=this.mv,n.ai=new Array(this.mi.length),n.ak=new Array(this.mi.length),n.aj=new Array(this.mi.length),n.ah=new Array(this.mi.length),n.am=this.mt;for(var i=0;i<this.mh.length;i++)n.af[i]=this.mh[i].c,n.ag[i]=this.mh[i].a,n.ae[i]=this.mh[i].b;for(var r=0;r<this.mi.length;r++)n.ai[r]=this.mi[r].e,n.ak[r]=this.mi[r].b,n.aj[r]=this.mi[r].a,n.ah[r]=this.mi[r].c;return n},e.prototype.bm=function(t){return 1==t},e.$t=n.markType(e,"SectionHeaderCellModel",$n.$),e.ml=$n.ft("Groups"),e.mo=$n.ft("Summaries"),e.mn=$n.ft("ResolvedText"),e.mm=$n.ft("ResolvedSummaryText"),e.mp=$n.ft("SummaryDisplayMode"),e}($n),Yn=function(t){function e(){var e=t.call(this)||this;return e.mg=null,e.bc=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mh",{get:function(){return this.mg},set:function(t){var n=this.mg;this.mg=t,this.mg!=n&&this.k0("Value",e.mf,n,this.mg)},enumerable:!1,configurable:!0}),e.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"Value"==e&&(this.mh=n)},e.prototype.kl=function(e){switch(e){case"Value":return n.Base.$}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"Value"==e?this.mh:t.prototype.hl.call(this,e)},e.prototype.b=function(e){null==e&&(e=new rt);var n=e=t.prototype.b.call(this,e);return n.ae=this.mh,n},e.$t=n.markType(e,"TemplateCellModel",$n.$),e.mf=$n.ft("Value"),e}($n),Qn=function(t){function e(){var e=t.call(this)||this;return e.mg="",e.bc=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mh",{get:function(){return this.mg},set:function(t){var n=this.mg;this.mg=t,this.mg!=n&&this.k0("TextValue",e.mf,n,this.mg)},enumerable:!1,configurable:!0}),e.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"TextValue"==e&&(this.mh=n)},e.prototype.kl=function(e){switch(e){case"TextValue":return n.String_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"TextValue"==e?this.mh:t.prototype.hl.call(this,e)},e.prototype.b=function(e){null==e&&(e=new ot);var n=e=t.prototype.b.call(this,e);return n.af=this.mh,n},e.prototype.i4=function(){return null!=this.mh?this.mh:null!=this.hm?this.hm.toString():""},e.$t=n.markType(e,"TextCellModel",$n.$),e.mf=$n.ft("TextValue"),e}($n),Jn=function(t){function e(){var e=t.call(this)||this;return e.mp=!1,e.mn=0,e.mj=0,e.m1=null,e.ml=0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mq",{get:function(){return this.mp},set:function(t){var n=this.mp;this.mp=t,this.mp!=n&&this.k0("IsColumnOptionsEnabled",e.mu,n,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mo",{get:function(){return this.mn},set:function(t){var i=this.mn;this.mn=t,this.mn!=i&&this.k0("SortIndicatorStyle",e.mv,n.enumGetBox(st,i),n.enumGetBox(st,this.mn))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mk",{get:function(){return this.mj},set:function(t){var i=this.mj;this.mj=t,this.mj!=i&&this.k0("ColumnOptionsIconAlignment",e.mr,n.enumGetBox(ut,i),n.enumGetBox(ut,this.mj))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m2",{get:function(){return this.m1},set:function(t){var n=this.m1;this.m1=t,this.m1!=n&&this.k0("ColumnOptionsIconColor",e.mt,n,this.m1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mm",{get:function(){return this.ml},set:function(t){var i=this.ml;this.ml=t,this.ml!=i&&this.k0("ColumnOptionsIconBehavior",e.ms,n.enumGetBox(ht,i),n.enumGetBox(ht,this.ml))},enumerable:!1,configurable:!0}),e.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"IsColumnOptionsEnabled"==e?this.mq=i:"SortIndicatorStyle"==e?this.mo=n.EnumUtil.getEnumValue(st,i):"ColumnOptionsIconAlignment"==e?this.mk=n.EnumUtil.getEnumValue(ut,i):"ColumnOptionsIconColor"==e?this.m2=i:"ColumnOptionsIconBehavior"==e&&(this.mm=n.EnumUtil.getEnumValue(ht,i))},e.prototype.kl=function(e){switch(e){case"IsColumnOptionsEnabled":return n.Boolean_$type;case"SortIndicatorStyle":case"ColumnOptionsIconAlignment":return n.Number_$type;case"SortIndicatorColor":case"ColumnOptionsIconColor":return n.Brush.$;case"ColumnOptionsIconBehavior":return n.Number_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"IsColumnOptionsEnabled"==e?this.mq:"SortIndicatorStyle"==e?n.enumGetBox(st,this.mo):"ColumnOptionsIconAlignment"==e?n.enumGetBox(ut,this.mk):"ColumnOptionsIconColor"==e?this.m2:"ColumnOptionsIconBehavior"==e?n.enumGetBox(ht,this.mm):t.prototype.hl.call(this,e)},e.prototype.b=function(e){return null==e&&(e=new pt),e=t.prototype.b.call(this,e)},e.$t=n.markType(e,"TextHeaderCellModel",Qn.$),e.mu=$n.ft("IsColumnOptionsEnabled"),e.mv=$n.ft("SortIndicatorStyle"),e.mr=$n.ft("ColumnOptionsIconAlignment"),e.mt=$n.ft("ColumnOptionsIconColor"),e.ms=$n.ft("ColumnOptionsIconBehavior"),e}(Qn),ti=function(t){function e(){var e=t.call(this)||this;return e.propertyChanged=null,e.n=null,e._executionContext=null,e.ac=null,e.d=null,e.t=null,e.au=null,e.g=null,e.b=null,e.ah=50,e.ag=0,e.ar=null,e.ad=0,e.r=null,e.b8=h.bn,e.b9=h.a3,e.k=4,e.o=0,e.i=0,e.ai=0,e.af=0,e.ae=0,e.aj=0,e.pageChanged=null,e.aa=!1,e.v=!1,e.w=!1,e.ab=!1,e.z=!1,e.y=!1,e.x=!1,e.f=new Ct,e.n=new Fn(e),e.r=h.n,e.ac=new n.ObservableCollection$1(n.Base.$,0),e.d=new n.PagedDataSource(new ii(e)),e.d.dataSource=e.ac,e}return i.__extends(e,t),e.prototype.bu=function(t,e,i){this.bz(t,e,i),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.bz=function(t,e,n){switch(t){case"ItemsSource":this.bt();break;case"PageCount":case"PageSize":case"CurrentPage":case"SortCount":case"GroupCount":case"FilterCount":this.b6(),this.b1(),null!=this.n&&this.n.v();break;case"SummaryScope":case"GroupSummaryDisplayMode":case"GroupHeaderDisplayMode":if(null!=this.actualDataSource)switch(this.actualDataSource.sectionHeaderDisplayMode=this.j,this.actualDataSource.summaryScope=this.p,this.l){case 1:case 0:case 4:this.actualDataSource.includeSummaryRowsInSection=!1;break;case 2:this.actualDataSource.includeSummaryRowsInSection=!0,this.actualDataSource.isSectionSummaryRowsAtBottom=!1;break;case 3:this.actualDataSource.includeSummaryRowsInSection=!0,this.actualDataSource.isSectionSummaryRowsAtBottom=!0}break;case"Background":case"Border":case"PagerText":case"TextStyle":null!=this.n&&this.n.v();break;case"TargetGrid":this.bx(e,n)}},e.prototype.br=function(t,e){switch(e.propertyName){case"ItemsSource":this.bq();break;case"SummaryScope":this.p=this.targetGrid.summaryScope;break;case"GroupSummaryDisplayMode":this.l=this.targetGrid.groupSummaryDisplayMode;break;case"GroupHeaderDisplayMode":this.j=this.targetGrid.groupHeaderDisplayMode;break;case"PageSize":this.ao=this.targetGrid.pageSize}},Object.defineProperty(e.prototype,"executionContext",{get:function(){return this._executionContext},set:function(t){this._executionContext=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"u",{get:function(){return null==this.t&&(this.t=new n.SRProvider(this.n.m),this.t.cb("DataGrid")),this.t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a9",{get:function(){if(null==this.au){var t=this.u.b1("Pager_Text");return n.stringIsNullOrWhiteSpace(t)?"{0} of {1}":t}return this.au},set:function(t){var e=this.au;this.au=t,e!=this.au&&this.bu("PagerText",e,this.au)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"targetGrid",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.bu("TargetGrid",e,this.g)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualDataSource",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,this.b!=e&&this.bu("ActualDataSource",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ao",{get:function(){return this.ah},set:function(t){var e=this.ah;this.ah=t,this.ah!=e&&this.bu("PageSize",e,this.ah)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"an",{get:function(){return this.ag},set:function(t){var e=this.ag;this.ag=t,this.ag!=e&&this.bu("PageCount",e,this.ag)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"itemsSource",{get:function(){return this.ar},set:function(t){var e=this.ar;this.ar=t,this.ar!=e&&this.bu("ItemsSource",e,this.ar)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ak",{get:function(){return this.ad},set:function(t){var e=this.ad;this.ad=t,this.ad!=e&&this.bu("CurrentPage",e,this.ad)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"s",{get:function(){return this.r},set:function(t){var e=this.r;this.r=t,e!=this.r&&this.bu("TextStyle",e,this.r)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ca",{get:function(){return this.b8},set:function(t){var e=this.b8;this.b8=t,this.b8!=e&&this.bu("Background",e,this.b8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"border",{get:function(){return this.b9},set:function(t){var e=this.b9;this.b9=t,e!=this.b9&&this.bu("Border",e,this.b9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.bu("GroupSummaryDisplayMode",n.enumGetBox(N,e),n.enumGetBox(N,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"p",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,e!=this.o&&this.bu("SummaryScope",n.enumGetBox(ft,e),n.enumGetBox(ft,this.o))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.bu("GroupHeaderDisplayMode",n.enumGetBox(gt,e),n.enumGetBox(gt,this.i))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ap",{get:function(){return this.ai},set:function(t){var e=this.ai;this.ai=t,e!=this.ai&&this.bu("SortCount",e,this.ai)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"am",{get:function(){return this.af},set:function(t){var e=this.af;this.af=t,e!=this.af&&this.bu("GroupCount",e,this.af)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"al",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=this.ae&&this.bu("FilterCount",e,this.ae)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aq",{get:function(){return this.aj},set:function(t){var e=this.aj;this.aj=t,e!=this.aj&&this.bu("SummaryCount",e,this.aj)},enumerable:!1,configurable:!0}),e.prototype.bo=function(t,e){var n;null!=this.pageChanged&&this.pageChanged(this,((n=new yt).page=t,n.data=e,n))},e.prototype.b2=function(){(this.aa||this.v||this.w||this.ab)&&this.b.flushAutoRefresh(),this.aa=!1,this.v=!1,this.w=!1,this.ab=!1},e.prototype.b1=function(){var t=this;if(null!=this.executionContext){if(this.z)return;this.z=!0,this.executionContext.enqueueAction((function(){t.bl(),t.z=!1}))}},e.prototype.bl=function(){if(null!=this.itemsSource){var t=this.ak*this.ao;this.b.isVirtual&&(this.b.firstVisibleIndexRequested=t,this.b.lastVisibleIndexRequested=t+this.ah,this.d.ef=!1),this.b2(),this.ac.clear();for(var e=t;e<t+this.ah&&!(e>this.b.actualCount-1);e++){var n=this.b.getItemAtIndex(e);this.ac.add1(n),null!=n&&(this.d.ef=!0)}for(var i=new Array(this.ac.count),r=0;r<this.ac.count;r++)i[r]=this.ac._inner[r];this.bo(this.ak,i),null!=this.targetGrid&&(this.targetGrid.actualDataSource.queueAutoRefresh(),this.targetGrid.actualDataSource.flushAutoRefresh(),this.b.isVirtual&&this.d.ef?this.targetGrid.wk(0,this.ao-1):this.targetGrid.notifyClearItems(),this.targetGrid.scrollToRowByIndex(0))}},e.prototype.bt=function(){if(null!=this.itemsSource){if(null!==n.typeCast(n.IDataSource_$type,this.itemsSource))this.b=this.itemsSource,this.b.isVirtual&&null!==n.typeCast(n.VirtualDataSource.$,this.b)&&(this.b.pageSizeRequested=this.ao);else{var t=new n.LocalDataSource;t.dataSource=this.itemsSource,this.b=t}this.b.shouldEmitSectionFooters=!1,this.b.shouldEmitSectionHeaders=!1,this.b.shouldEmitShiftedRows=!1,this.b.shouldEmitSummaryRows=!1,this.b.updateNotifier=new ei(this),this.b.summaryScope=this.p;var e=this.b;switch(e.schemaChanged=n.delegateCombine(e.schemaChanged,n.runOn(this,this.bj)),this.d.ee=this.b,this.l){case 1:case 0:case 4:this.b.includeSummaryRowsInSection=!1;break;case 2:this.b.includeSummaryRowsInSection=!0,this.b.isSectionSummaryRowsAtBottom=!1;break;case 3:this.b.includeSummaryRowsInSection=!0,this.b.isSectionSummaryRowsAtBottom=!0}this.ad=0,this.b7(),this.b6(),this.b1(),null!=this.n&&this.n.v()}},e.prototype.bj=function(t,e){this.b7(),this.b6()},e.prototype.b7=function(){null!=this.targetGrid.actualDataSource&&null!=this.actualDataSource.actualSchema&&this.d.setSchema(this.actualDataSource.actualSchema)},e.prototype.b6=function(){null!=this.b&&(this.b.isVirtual&&null!==n.typeCast(n.VirtualDataSource.$,this.b)&&(this.b.pageSizeRequested=this.ao),this.an=n.truncate(Math.ceil(this.b.actualCount/this.ah)),this.ak=Math.max(Math.min(this.ad,this.ag-1),0),this.ap=this.b.sortDescriptions.k.count,this.am=this.b.groupDescriptions.k.count,this.al=this.b.filterExpressions.k.count,this.aq=this.b.summaryDescriptions.k.count)},e.prototype.b5=function(){this.ag=n.truncate(Math.ceil(this.b.actualCount/this.ah)),this.ad=Math.max(Math.min(this.ad,this.ag-1),0),null!=this.n&&this.n.v()},e.prototype.bn=function(){this.ak=Math.min(this.ak+1,this.an-1)},e.prototype.by=function(){this.ak=Math.max(this.ak-1,0)},e.prototype.bk=function(){this.ak=0},e.prototype.bm=function(){this.ak=this.an-1},e.prototype.provideContainer=function(t){null!=this.n&&this.n.u(t)},e.prototype.bx=function(t,e){if(null!=t){var i=t;i.postPropertyChanged=n.delegateRemove(i.postPropertyChanged,n.runOn(this,this.br)),i.filterExpressionsChanged=n.delegateRemove(i.filterExpressionsChanged,n.runOn(this,this.bp)),i.sortDescriptionsChanged=n.delegateRemove(i.sortDescriptionsChanged,n.runOn(this,this.bv)),i.groupDescriptionsChanged=n.delegateRemove(i.groupDescriptionsChanged,n.runOn(this,this.bs)),i.summaryDescriptionsChanged=n.delegateRemove(i.summaryDescriptionsChanged,n.runOn(this,this.bw))}if(null!=e){var r=e;r.postPropertyChanged=n.delegateCombine(r.postPropertyChanged,n.runOn(this,this.br)),r.filterExpressionsChanged=n.delegateCombine(r.filterExpressionsChanged,n.runOn(this,this.bp)),r.sortDescriptionsChanged=n.delegateCombine(r.sortDescriptionsChanged,n.runOn(this,this.bv)),r.groupDescriptionsChanged=n.delegateCombine(r.groupDescriptionsChanged,n.runOn(this,this.bs)),r.summaryDescriptionsChanged=n.delegateCombine(r.summaryDescriptionsChanged,n.runOn(this,this.bw)),this.bq(),this.ao=this.targetGrid.pageSize,this.j=this.targetGrid.groupHeaderDisplayMode}},e.prototype.bq=function(){if(!this.y){var t=this.targetGrid.itemsSource;this.y=!0,this.targetGrid.itemsSource=this.d;var e=this.targetGrid.actualDataSource.updateNotifier,n=new Pt(1,[e,new ni(this,this.targetGrid)]);this.targetGrid.actualDataSource.updateNotifier=n,this.y=!1,this.itemsSource=t,null!=this.actualDataSource&&(this.actualDataSource.summaryScope=this.targetGrid.actualDataSource.summaryScope,this.actualDataSource.sectionHeaderDisplayMode=this.targetGrid.actualDataSource.sectionHeaderDisplayMode,this.actualDataSource.includeSummaryRowsInSection=this.targetGrid.actualDataSource.includeSummaryRowsInSection,this.actualDataSource.isSectionSummaryRowsAtBottom=this.targetGrid.actualDataSource.isSectionSummaryRowsAtBottom)}},e.prototype.bp=function(t,e){if(!this.x){this.actualDataSource.filterExpressions.clear();for(var n=0;n<e.a.k.count;n++){var i=e.a.k.item(n);this.actualDataSource.filterExpressions.add(i)}this.b4(!0)}},e.prototype.bv=function(t,e){this.actualDataSource.sortDescriptions.clear();for(var i=0;i<e.sortDescriptions.j.count;i++){var r=e.sortDescriptions.j.item(i);this.actualDataSource.sortDescriptions.add(n.SortDescription.create(r.f,r.c))}this.b4(!0)},e.prototype.bs=function(t,e){this.actualDataSource.groupDescriptions.clear();for(var i=0;i<e.groupDescriptions.j.count;i++){var r=e.groupDescriptions.j.item(i);this.actualDataSource.groupDescriptions.add(n.SortDescription.create(r.f,r.c))}this.b4(!0)},e.prototype.bw=function(t,e){this.f.n(),this.actualDataSource.summaryDescriptions.clear();for(var i=0;i<e.summaryDescriptions.j.count;i++){var r=e.summaryDescriptions.j.item(i);this.f.j.add(r);var o=new n.SummaryDescription(0);o.propertyName=r.ah,o.operand=r.i,o.calculator=r.l,o.shouldDisplay=r.t,this.actualDataSource.summaryDescriptions.add(o)}this.b4(!0)},e.prototype.b4=function(t){t&&this.actualDataSource.flushAutoRefresh(),this.b6()},e.prototype.b3=function(){if(null!=this.targetGrid){var t=this.targetGrid.actualDataSource.getRootSummaryResults(),e=this.actualDataSource.getRootSummaryResults();if(null!=e&&null!=t)for(var n=0;n<e.length;n++)t[n].value=e[n].value;if((2==this.targetGrid.summaryScope||0==this.targetGrid.summaryScope)&&this.targetGrid.groupDescriptions.j.count>0)for(var i=0,r=this.targetGrid.actualDataSource.getSectionSummaryResults(i);null!=r;){for(var o=null,a=0;a<r.length;a++)for(var s=0;s<r[a].length;s++)if(null!=r[a][s]){o=r[a][s].groupKey;break}if(null!=o){var l=this.a(this.actualDataSource,o);if(null!=l)for(var u=0;u<l.length;u++)for(var c=0;c<l[u].length;c++){var h=r[u][c],p=l[u][c];null==h?r[u][c]=p:h.value=p.value}}r=this.targetGrid.actualDataSource.getSectionSummaryResults(++i)}}},e.prototype.a=function(t,e){var i;i=1==this.j?new Array(this.am):new Array(1);for(var r=0;r<i.length;r++){i[r]=new Array(this.aq);for(var o=0;o<i[r].length;o++)i[r][o]=null}for(var a=0,s=t.getSectionSummaryResults(a);null!=s;){for(var l=0;l<s.length;l++)for(var u=0;u<s[l].length;u++)null!=s[l][u]&&(i[l][u]=s[l][u]);for(var c=null,h=0;h<s.length;h++)for(var p=0;p<s[h].length;p++)if(null!=s[h][p]){c=s[h][p].groupKey;break}if(null!=c){for(var d=!0,f=0;f<c.length;f++)if(!n.Base.equalsStatic(c[f],e[f])){d=!1;break}if(d)return i}s=t.getSectionSummaryResults(++a)}return null},e.prototype.as=function(){return this.e()},e.prototype.az=function(){return this.e().j()},e.prototype.e=function(){var t=new Rt;if(t.a=this.n.a(),t.b=this.n.b(),t.k=this.n.o(),t.h=this.ak,t.i=this.an,t.c=this.n.i().b(),t.f=this.n.l().b(),t.e=this.n.k().b(),t.d=this.n.j().b(),null!=this.s){var e=this.s;if(null!=this.n&&null==e.q){var i=this.n.m,r=n.FontUtil.getFontInfoFromString(i,e.fontString);e.q=r.q,e.f=r.f,e.r=r.r,e.t=r.t,e.u=r.u,e.v=r.v}null!=e.q&&(t.l=e.q),n.isNaN_(e.f)||(t.g=e.f),null!=e.v&&(t.p=e.v),null!=e.t&&(t.n=e.t),null!=e.r&&(t.m=e.t)}return t},e.$t=n.markType(e,"Pager",n.Base.$,[n.INotifyPropertyChanged_$type]),e.a1="M 10 12.54 L 18 19 v -2.11 L 12 12 L 18 7.11 V 5 L 10 11.46 v 1.08 z M 6 5 v 14 h 2 v -14 h -2 z",e.bd="M 8 12.54 L 16 19 v -2.11 L 10 12 L 16 7 V 5 L 8 11.46 v 1.08 z",e.a7="M 8 7.11 L 14 12 L 8 16.89 V 19 l 8 -6.46 v -1.08 L 8 5 v 2.11 z",e.a6="M 8 7.11 L 14 12 L 8 16.89 V 19 l 8 -6.46 v -1.08 L 8 5 v 2.11 z M 18 5 v 14 h 2 v -14 h -2 z",e}(n.Base),ei=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),e.prototype.notifyClearItems=function(){this.a.b5()},e.prototype.notifyInsertItem=function(t,e){},e.prototype.notifyRemoveItem=function(t,e){},e.prototype.notifySetItem=function(t,e,n){},e.prototype.rangeActualized=function(t,e){t<this.a.ak*this.a.ao||this.a.b1()},e.$t=n.markType(e,"PagerDataSourceNotificationBridge",n.Base.$,[n.IDataSourceUpdateNotifier_$type]),e}(n.Base),ni=function(t){function e(e,n){var i=t.call(this)||this;return i.b=null,i.a=null,i.b=e,i.a=n,i}return i.__extends(e,t),e.prototype.notifyClearItems=function(){this.a.summaryDescriptions.j.count>0&&(this.b.b3(),this.a.invalidateVisibleRows())},e.prototype.notifyInsertItem=function(t,e){},e.prototype.notifyRemoveItem=function(t,e){},e.prototype.notifySetItem=function(t,e,n){},e.prototype.rangeActualized=function(t,e){},e.$t=n.markType(e,"PagerGridDataSourceNotificationBridge",n.Base.$,[n.IDataSourceUpdateNotifier_$type]),e}(n.Base),ii=function(t){function e(e){var n=t.call(this)||this;return n.av=null,n.av=e,n}return i.__extends(e,t),e.prototype.getItemValue=function(e,n){return null==e?null:this.av.actualDataSource.isVirtual?this.av.actualDataSource.actualDataProvider.getItemValue(e,n):t.prototype.getItemValue.call(this,e,n)},e.$t=n.markType(e,"PagedDataProvider",n.DataSourceLocalDataProvider.$),e}(n.DataSourceLocalDataProvider),ri=function(t){function e(e,n){var i=t.call(this)||this;return i.b=null,i.a=null,i.b=e,i.a=n,i}return i.__extends(e,t),e.prototype.rangeActualized=function(t,e){this.b.wk(t,e),null!=this.a&&this.a.rangeActualized(t,e)},e.prototype.notifySetItem=function(t,e,n){this.b.xi(t,e,n),null!=this.a&&this.a.notifySetItem(t,e,n)},e.prototype.notifyClearItems=function(){this.b.v4(),null!=this.a&&this.a.notifyClearItems()},e.prototype.notifyInsertItem=function(t,e){this.b.ww(t,e),null!=this.a&&this.a.notifyInsertItem(t,e)},e.prototype.notifyRemoveItem=function(t,e){this.b.w3(t,e),null!=this.a&&this.a.notifyRemoveItem(t,e)},e.$t=n.markType(e,"DataSourceNotificationBridge",n.Base.$,[n.IDataSourceUpdateNotifier_$type]),e}(n.Base),oi=function(t){function e(e,i,r){var o=t.call(this)||this;return o.i=null,o.n=!1,o.c=null,o.a=null,o.v=new n.HashSet$1(n.String_$type,0),o.m=!1,o.k=null,o.l=null,o.n=i,o.i=e,o.l=r,o}return i.__extends(e,t),Object.defineProperty(e.prototype,"p",{get:function(){return this.n},set:function(t){var e=this.n;this.n=t,e!=this.n&&(this.m=!1),this.u()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,e!=this.c&&(this.m=!1),this.u()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){var e=this.a;if(this.a=t,e!=this.a){this.m=!1,this.v.clear();for(var n=0;n<this.a.length;n++)this.v.add_1(this.a[n])}this.u()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.i},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o",{get:function(){return this.m},set:function(t){this.m=t},enumerable:!1,configurable:!0}),e.prototype.u=function(){if(this.m)return!1;if(null==this.c)return!1;for(var t=new n.Dictionary$2(n.String_$type,n.Boolean_$type,0),e=0;e<this.i.count;e++){var i=this.i._inner[e];i.jh||t.item(i.lo,!0)}for(var r=!1,o=this.i.count-1;o>=0;o--)this.i._inner[o].jh&&this.k.removeExternalColumn(this.i._inner[o].externalObject);return this.n&&null!=this.c&&(r=this.q(t,this.c)),this.m=!0,r&&this.l(),r},e.prototype.q=function(t,e){for(var i=new ji,r=0;r<e.propertyNames.length;r++){var o=e.propertyNames[r];if(!t.containsKey(o)){if(null!=this.b&&!this.v.contains(o))continue;var a=this.e(o,e.propertyTypes[r]);i.add(a),t.item(o,!0)}}for(var s=new n.Dictionary$2(n.String_$type,n.Boolean_$type,0),l=0;l<i.count;l++)s.item(i._inner[l].lo,!0);for(var u=!1,c=this.i.count,h=0;h<i.count;h++)u=!0,this.k.insertExternalColumnAtIndex(c+h,i._inner[h].externalObject);return u},e.prototype.e=function(t,e){var i=null;switch(e){case 8:case 9:i=this.k.createDateTimeColumn(t);break;case 5:case 6:case 7:case 1:case 3:case 4:case 10:i=this.k.createNumericColumn(t);break;case 11:i=this.k.createTextColumn(t);break;case 0:case 2:i=this.k.createTextColumn(t)}return i.lo=t,i.jh=!0,i.mf=this.t(t)?i.lo:n.createGuid(),i},e.prototype.t=function(t){for(var e=0;e<this.i.count;e++)if(this.i._inner[e].mf==t)return!1;return!0},e.prototype.h=function(t){return t.a5<0||0==this.i.count||this.i.count<=t.a5?null:this.i._inner[t.a5]},e.prototype.f=function(t){for(var e=0;e<this.i.count;e++)if(this.i._inner[e].ko==t)return this.i._inner[e];return null},e.prototype.g=function(t){for(var e=0;e<this.i.count;e++)if(this.i._inner[e].lt()==t)return this.i._inner[e];return null},e.prototype.r=function(t){return!1},e.prototype.s=function(t){return!1},e.$t=n.markType(e,"ColumnController"),e}(n.Base),ai=function(t){function e(e,i){var r=t.call(this)||this;r.g=null,r.d=null,r.n=-1,r.e=null,r.a=null,r.c=null,r.r=0,r.q=0,r.u=null,r.j=!1,r.s=null,r.l=!1,r.t=null,r.k=!1,r.g=e,r.r=-1,r.q=-1,r.e=i;var o=r.e;return o.definitionPropertyUpdated=n.delegateCombine(o.definitionPropertyUpdated,n.runOn(r,r.y)),r}return i.__extends(e,t),Object.defineProperty(e.prototype,"o",{get:function(){return this.n},set:function(t){this.n=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"p",{get:function(){return null!=this.b?this.b.fg:-1},enumerable:!1,configurable:!0}),e.prototype.y=function(t,e){-1!=this.r&&-1!=this.q&&10!=e.animationType&&null!=this.c&&this.g.c5.r(this.g,this.c,e.propertyName,e.animationType,e.oldValue,e.newValue,9)},e.prototype.ad=function(t){null==t||t.l.a5<0||t.l.x<0||(this.r==t.l.x&&this.q==t.l.a5||this.ab(t),this.j&&null!=this.e.g3||(this.j=!0,this.e.g6=n.Rect.empty,t.bf=!0,this.o=t.l.x,this.s=t.hn))},e.prototype.ab=function(t){null==t||t.l.a5<0||t.l.x<0||(this.a=t,this.d=this.g.actualColumns._inner[t.l.a5],this.c=this.g.model.b9._inner[t.l.a5],this.r=t.l.x,this.q=t.l.a5,this.u=t.hm,this.k=t.bk,this.e.g6=this.j?n.Rect.empty:new n.Rect(0,0,0,0,0),this.e.textStyle=t.ag,this.e.gz=t,this.t=t.hm,this.g.aq=null)},e.prototype.v=function(){this.r=-1,this.q=-1,this.a=null,this.e.gz=null},e.prototype.i=function(t,e){if(this.j&&-1!=this.q&&-1!=this.r){var i=!0;t?i=this.g.lh(this.a,this.q,this.s,this.u,this.t):(-1!=this.p&&this.g.rejectEdit(this.p),this.e.g3=null),i&&null==this.e.g3&&(this.j=!1,null!=this.a&&(this.a.bf=!1),this.e.g6=new n.Rect(0,0,0,0,0))}return!this.j},e.prototype.w=function(){3==this.g.editMode&&(this.o=-1)},e.prototype.aa=function(t){this.e.g3=t},e.prototype.ac=function(t){this.a=t,null!=this.a&&(this.j?this.a.bf=!0:this.a.bf=!1)},e.prototype.x=function(){},e.prototype.z=function(){this.g.xv()},e.prototype.h=function(t,e){return 0!=t.il?this.g.e7.isRowPinned(e)?this.g.model.a0:this.g.model.a4:this.g.e7.isRowPinned(e)?this.g.model.bc:this.g.model.bp},e.prototype.f=function(t){if(null==t)return 1;if(0!=t.hz)return t.hz;switch(this.g.actualDataSource.resolveSchemaPropertyType(t.lo)){case 10:case 6:case 5:case 1:case 3:case 4:case 7:return 2;case 8:return 3;default:return 1}},e.prototype.m=function(t){return null!=t&&t.l.x==this.r&&t.l.a5==this.q},e.$t=n.markType(e,"EditingManager"),e}(n.Base),si=function(t){function e(){var e=t.call(this)||this;e.op=null,e._propertySetter=null,e.fc=null,e.fa=null,e.e4=null,e._pager=null,e._toolbar=null,e.columnExchangingAnimationCompleted=null,e.columnExchangingAnimationCanceled=null,e.columnShowingAnimationCompleted=null,e.columnShowingAnimationCanceled=null,e.filterExpressionsChanging=null,e.filterExpressionsChanged=null,e.columnMovingAnimationCompleted=null,e.columnMovingAnimationCanceled=null,e.columnHidingAnimationCompleted=null,e.columnHidingAnimationCanceled=null,e.cellPreviewPointerDown=null,e.cellPreviewPointerUp=null,e.cellPointerDown=null,e.cellPointerUp=null,e.cellClicked=null,e.m1=-1,e.br=0,e.bd=0,e.e1=null,e.h5=!0,e.zt=null,e.zu=null,e.zl=null,e.abh=new n.Thickness(0,1),e.abb=null,e.ar=null,e.ao=null,e.hu=!1,e.jc=!1,e.m5=-1,e.nd=-1,e.ib=!1,e.ia=!1,e.hj=!1,e.l7=0,e.me=0,e.mc=0,e.md=0,e.lt=new Date,e.l2=0,e.l3=0,e.l4=0,e.l5=0,e.as=null,e.nj=0,e.ni=0,e.ir=!1,e.m9=-1,e.nk=-1,e.fn=0,e.an=null,e.aj=null,e.ak=null,e.ly=-1,e.mb=0,e.l8=0,e.l9=0,e.lo=new n.List$1(n.Number_$type,0),e.lp=new n.List$1(n.Number_$type,0),e.ai=null,e.j3=!1,e.iu=!1,e.iw=!1,e.it=!1,e.c4=new vi,e._delayedExecutionManager=null,e.fo=null,e.e6=null,e.ax=null,e.d0=new xr,e.ga=new Or,e.dv=null,e.f4=null,e.ac=null,e.f8=null,e.cj=null,e.g8=null,e.f2=null,e.f0=new er,e.gc=null,e.ge=null,e.fx=null,e.ex=null,e.ez=null,e.bt=null,e.bf=null,e.fl=null,e.co=null,e.cp=null,e.cy=null,e.b=null,e.c=null,e.gi=new _r,e._viewportManager=null,e.lx=0,e.lw=0,e.go=2,e.mw=n.truncate(n.DeviceUtils.g(36)),e.na=-1,e.ca=Ft.a,e.l1=136,e.mv=n.truncate(n.DeviceUtils.g(36)),e.m2=-1,e.nf=n.truncate(n.DeviceUtils.g(0)),e.oq=null,e.ne=n.truncate(n.DeviceUtils.g(0)),e.nc=n.truncate(n.DeviceUtils.g(0)),e.m0=n.truncate(n.DeviceUtils.g(0)),e.ev=0,e.cm=1,e.ck=2,e.hk=!0,e.hg=!0,e.nb=n.truncate(n.DeviceUtils.g(1)),e.h4=!0,e.bv=1,e.bm=0,e.ag=0,e.fv=1,e.fs=1,e.av=1,e.dj=new oe,e.c6=new ae,e.bo=1,e.bw=1,e.ba=1,e.a7=1,e.az=1,e.abi=new n.Thickness(1,0,0,0,0),e.cg=5,e.c1=1,e.ek=1,e.h9=!0,e.ho=!1,e.ec=new xe,e.eh=new c,e.d8=new Pi,e.d5=new we,e.hn=!1,e.eb=new xe,e.eg=new c,e.hr=!0,e.hv=!1,e.h0=!0,e.h1=!0,e.zf=null,e.z1=null,e.z4=null,e.z8=null,e.ma=NaN,e.gr=null,e.l6=NaN,e.zk=null,e.z3=null,e.zs=null,e.zr=null,e.dg=null,e.df=null,e.ze=null,e.zg=null,e.zp=null,e.f6=0,e.gq=null,e.z0=null,e.z2=null,e.gt=null,e.gu=null,e.gw=null,e.z7=null,e.gv=null,e.gx=null,e.aab=null,e.z5=null,e.z9=null,e.z6=null,e.aaa=null,e.m8=n.truncate(n.DeviceUtils.g(2)),e.m3=n.truncate(n.DeviceUtils.g(1)),e.zo=null,e.zm=null,e.zq=null,e.gs=null,e.zv=null,e.zn=null,e.zy=null,e.zw=null,e.zx=null,e.mz=n.truncate(n.DeviceUtils.g(4)),e.l0=1,e.mx=n.truncate(n.DeviceUtils.g(2)),e.lz=1,e.zj=null,e.zh=null,e.il=!1,e.bh=0,e.zi=null,e.bj=0,e.zd=null,e.abg=h.bv,e.abe=h.bv,e.abf=new n.Thickness(0,NaN),e.id=!1,e.y8=h.t,e.y7=new n.CornerRadius(0,NaN),e.y6=h.t,e.hq=!0,e.g6=new Fe,e.e2=null,e.fq=null,e.gk=new Vr,e.b2=null,e.a2=null,e.t=null,e.b7=null,e.aa=null,e.ab=null,e.ip=!0,e.io=!0,e.iq=!0,e.im=!0,e.b1=null,e.a3=null,e.u=null,e.b6=null,e.o1=null,e.o0=null,e.o2=null,e.sortDescriptionsChanged=null,e.groupDescriptionsChanged=null,e.summaryDescriptionsChanged=null,e.columnHiddenChanged=null,e.columnPinnedChanged=null,e.cellValueChanging=null,e.dataCommitted=null,e.dataCommitting=null,e.is=!1,e.gg=0,e.hx=!1,e.hw=!0,e.hl=!1,e.er=0,e.hz=!1,e.hy=!0,e.hm=!1,e.et=4,e.hf=!0,e.propertyChanged=null,e.postPropertyChanged=null,e.calculateCompleted=null,e.ij=!1,e.y=null,e.w=null,e.d=null,e.a=null,e.hb=!0,e.rootSummariesChanged=null,e.lj=new n.Dictionary$2(n.String_$type,n.Base.$,0),e.sizeChanged=null,e.viewportChanged=null,e.m6=-1,e.m7=-1,e.le=!1,e.actualColumnsChanged=null,e.dl=new ji,e.ic=!1,e.lc=!1,e.ld=!1,e.ha=!1,e.ji=!1,e.j2=!1,e.lk=new n.List$1(n.Base.$,0),e.ll=new n.List$1(s.$,0),e.lm=new n.List$1(n.Base.$,0),e.ln=new n.List$1(s.$,0),e.hd=!1,e.hc=!1,e.iv=!1,e.ng=-1,e.nh=-1,e.ap=null,e.aq=null,e.columnsAutoGenerated=null,e.selectedItemsChanged=null,e.selectedKeysChanged=null,e.selectedCellsChanged=null,e.selectionChanged=null,e.ik=!1,e.activeCellChanged=null,e.selectedCellRangesChanged=null,e.at=null,e.li=new n.Dictionary$2(n.String_$type,n.Number_$type,0),e.hp=!1,e.ii=!0,e.ih=!0,e.ig=!0,e.columnWidthChanged=null,e.cellEditStarted=null,e.cellEditEnded=null,e.rowEditStarted=null,e.rowEditEnded=null,e.ie=!1,e.cs=1,e.cq=0,e.h2=!0,e.lf=!1,e.ht=!0,e.hs=!0,e.fi=0,e.fg=0,e.ae=4,e.cz=0,e.cw=0,e.cu=1,e.lu=n.dateMinValue(),e.hh=!0,e.customFilterRequested=null,e.my=0,e.h3=!1,e.m4=50,e.h8=!1,e.h6=!0,e.h7=!0,e.o7=null,e.o3=null,e.o4=null,e.o5=null,e.o6=null,e.gm=1,e.zz=null,e.he=!1,e.hi=!1,e.sectionHeader=new nr,e.rowSeparator=new ir,e.headerRowSeparator=new rr,e.headerSeparator=new Xi,e.columnResizingSeparator=new Ki,e.columnMovingSeparator=new Vi,e.pinnedAreaSeparator=new Ji,e.summaryRowRoot=new ar,e.summaryRowSection=new sr,e.co=new qi,e.cp=new Hi,e.cy=new Wi,e.cy.grid=e,e.abf=e.abg,e.y7=e.y8,e.zd=h.a3,e.ax=new oi(e.dl,e.autoGenerateColumns,n.runOn(e,e.vg));var i=e.ax.j;i.collectionChanged=n.delegateCombine(i.collectionChanged,n.runOn(e,e.t3)),e.e6=new Ai(e.ax),e.fq=new Br,e.fo=new kr(e),e.fo.g=e.fq,e.ji=e.k2(),e.j2=e.k3(),e.f5=new Bi(e,e.c5),e.ad=new Di(e,e.c5),e.ec.ag(n.runOn(e,e.yk)),e.eh.an(n.runOn(e,e.yl)),e.d8.an(n.runOn(e,e.yj));var r,o=e.d5;return o.collectionChanged=n.delegateCombine(o.collectionChanged,n.runOn(e,e.yi)),e.eb.ag(n.runOn(e,e.xn)),e.eg.an(n.runOn(e,e.xo)),e.b2=new It,e.a2=new Tt,e.b7=new Ct,e.b2.m(n.runOn(e,e.yr)),e.a2.m(n.runOn(e,e.uy)),e.b7.m(n.runOn(e,e.yt)),e.t=new n.FilterExpressionCollection,e.t.n(n.runOn(e,e.uv)),e.f9=new Mi(e),e.cj=new ai(e,e.co),e.e1=new Ti(e),e.an=new S(3,-400,-102,1),e.b1=((r=new It).i=!0,r),e.a3=function(){var t=new Tt;return t.i=!0,t}(),e.b6=function(){var t=new Ct;return t.i=!0,t}(),e.u=function(){var t=new n.FilterExpressionCollection;return t.shouldDetachOnTargetChange=!0,t}(),e.aa=new n.SortGroupParser,e.ab=new n.SummaryParser,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"externalObject",{get:function(){return this.op},set:function(t){this.op=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"propertySetter",{get:function(){return this._propertySetter},set:function(t){this._propertySetter=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"externalGrid",{get:function(){return this.fc},set:function(t){this.fc=t,null!=this.ay&&(this.ay.k=this.fc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dragger",{get:function(){return this.fa},set:function(t){if(null!=this.fa){var e=this.fa;e.onDrag=n.delegateRemove(e.onDrag,n.runOn(this,this.wn));var i=this.fa;i.onDragEnd=n.delegateCombine(i.onDragEnd,n.runOn(this,this.wp))}this.fa=t;var r=this.fa;r.onDrag=n.delegateCombine(r.onDrag,n.runOn(this,this.wn));var o=this.fa;o.onDragEnd=n.delegateCombine(o.onDragEnd,n.runOn(this,this.wp))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnGrouping",{get:function(){return this.e4},set:function(t){this.e4=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pager",{get:function(){return this._pager},set:function(t){this._pager=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"toolbar",{get:function(){return this._toolbar},set:function(t){this._toolbar=t},enumerable:!1,configurable:!0}),e.prototype.v6=function(t){null!=this.columnExchangingAnimationCompleted&&this.columnExchangingAnimationCompleted(t.externalObject,new n.EventArgs)},e.prototype.v5=function(t){null!=this.columnExchangingAnimationCanceled&&this.columnExchangingAnimationCanceled(t.externalObject,new n.EventArgs)},e.prototype.o=function(t){var e=this.cf(t.l);return null==e?null:e.g1},e.prototype.q=function(t){var e=this.cf(t.l);return null==e||null==this.actualDataSource?11:this.actualDataSource.resolveSchemaPropertyType(e.lo)},e.prototype.wg=function(t){null!=this.columnShowingAnimationCompleted&&this.columnShowingAnimationCompleted(t.externalObject,new n.EventArgs)},e.prototype.ug=function(t,e){var i,r=this,o=this.cf(t.l);null!=o&&(n.Base.equalsStatic(o.g1,e)||(o.g1=e,null!=this.filterExpressionsChanging&&this.filterExpressionsChanging(this,((i=new xt).a=r.filterExpressions,i))))},e.prototype.uf=function(t,e){var i=this.cf(t.l);null!=i&&(n.Base.equalsStatic(i.g1,e)||(i.g1=e))},e.prototype.wf=function(t){null!=this.columnShowingAnimationCanceled&&this.columnShowingAnimationCanceled(t.externalObject,new n.EventArgs)},e.prototype.wc=function(t){null!=this.columnMovingAnimationCompleted&&this.columnMovingAnimationCompleted(t.externalObject,new n.EventArgs)},e.prototype.wb=function(t){null!=this.columnMovingAnimationCanceled&&this.columnMovingAnimationCanceled(t.externalObject,new n.EventArgs)},e.prototype.v8=function(t){null!=this.columnHidingAnimationCompleted&&this.columnHidingAnimationCompleted(t.externalObject,new n.EventArgs)},e.prototype.v7=function(t){null!=this.columnHidingAnimationCanceled&&this.columnHidingAnimationCanceled(t.externalObject,new n.EventArgs)},e.prototype.v0=function(t){var e,n=this;null!=this.cellPreviewPointerDown&&this.cellPreviewPointerDown(t,((e=new hi).cellInfo=t,e.grid=n,e))},e.prototype.v1=function(t){var e,n=this;null!=this.cellPreviewPointerUp&&this.cellPreviewPointerUp(t,((e=new hi).cellInfo=t,e.grid=n,e))},e.prototype.vy=function(t){var e,n=this;null!=this.cellPointerDown&&this.cellPointerDown(t,((e=new hi).cellInfo=t,e.grid=n,e))},e.prototype.vz=function(t){var e,n=this;null!=this.cellPointerUp&&this.cellPointerUp(t,((e=new hi).cellInfo=t,e.grid=n,e))},e.prototype.w8=function(t,e){this.u4(t)},e.prototype.wv=function(t){2==t.w&&this.y0(t.l.x)},e.prototype.y0=function(t){if(this.cj.j){if(!this.ja(!0))return;3==this.editMode&&this.uq(!0)}var e=!this.actualDataSource.getIsRowExpandedAtIndex(t);this.actualDataSource.setIsRowExpandedAtIndex(t,e);var n=this.actualDataSource.getRowLevel(t);t<this.model.bx.x&&this.scrollToRowByIndex(t-n)},e.prototype.wu=function(t){null!=t&&3!=this.editMode&&this.ja(!0)},e.prototype.vr=function(t,e){var n,i=this;this.dragger.isDragActive&&this.dragger.cancel(),1!=t.w&&12!=t.w||this.ju()&&2==this.editModeClickAction&&0==e&&this.lb(t),null!=this.cellClicked&&this.cellClicked(t,((n=new hi).cellInfo=t,n.grid=i,n.button=e,n.isDoubleClick=!0,n))},e.prototype.vp=function(t,e,n,i){var r,o=this;if(1==t.w||12==t.w){if(this.cj.j&&t!=this.cj.b&&!this.ja(!0))return;if(t.l.x!=this.m1&&this.uq(!0),0==i&&this.ju()&&(1==this.editModeClickAction||3==this.editMode&&t.l.x==this.m1)&&this.lb(t),t.l.aj)this.ay.h(t.l).jl&&!this.cj.j&&this.editOnKeyPress&&this.cj.x()}else 2==t.w||3==t.w?(this.ja(!0),this.uq(!0)):11==t.w&&(this.activeCell=null);if(0==i){if(this.nh=-1,this.ng=-1,this.as=null,this.lo.clear(),this.lp.clear(),0==t.w&&4!=this.headerClickAction)this.f9.d(this.cf(t.l)),this.ay.h(t.l).m0("Sorted");if(this.ik=!1,5==this.selectionMode){if(t.l.aj&&!t.l.a0){var a=this.model.b9._inner[t.l.a5].n;if(1==this.selectionBehavior)if(e)this.xr(t.l.x,a);else if(n&&null!=this.at){var s=a,l=t.l.x;this.selectedCellRanges.remove(this.at),this.t5(Math.min(this.at.k,s),Math.max(this.at.k,s),Math.min(this.at.l,l),Math.max(this.at.l,l))}else this.xz(),this.t5(a,a,t.l.x,t.l.x);else 0==this.selectionBehavior&&this.xr(t.l.x,a)}}else this.f5.z(t,n,e,0==this.selectionBehavior);this.xh(),1==this.activationMode&&this.ad.aa(t)}null!=this.cellClicked&&this.cellClicked(t,((r=new hi).cellInfo=t,r.grid=o,r.button=i,r.isDoubleClick=!1,r))},e.prototype.xr=function(t,e){for(var n=!1,i=0;i<this.selectedCellRanges.count;i++){var r=this.selectedCellRanges._inner[i];if(r.k==e&&r.i==e&&r.l==t&&r.j==t){this.x0(this.selectedCellRanges._inner[i]),n=!0;break}}n||this.t5(e,e,t,t)},Object.defineProperty(e.prototype,"columnResizingMode",{get:function(){return this.br},set:function(t){var e=this.br;this.br=t,e!=this.br&&this.w2("ColumnResizingMode",n.enumGetBox(At,e),n.enumGetBox(At,this.br))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnMovingMode",{get:function(){return this.bd},set:function(t){var e=this.bd;this.bd=t,e!=this.bd&&this.w2("ColumnMovingMode",n.enumGetBox(Nt,e),n.enumGetBox(Nt,this.bd))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isRowHoverEnabled",{get:function(){return this.h5},set:function(t){var e=this.h5;this.h5=t,e!=this.h5&&this.w2("IsRowHoverEnabled",e,this.h5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowHoverBackground",{get:function(){return this.zt},set:function(t){var e=this.zt;this.zt=t,e!=this.zt&&this.w2("RowHoverBackground",e,this.zt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowHoverTextColor",{get:function(){return this.zu},set:function(t){var e=this.zu;this.zu=t,e!=this.zu&&this.w2("RowHoverTextColor",e,this.zu)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editRowBorder",{get:function(){return this.zl},set:function(t){var e=this.zl;this.zl=t,e!=this.zl&&this.w2("EditRowBorder",e,this.zl)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editRowBorderWidth",{get:function(){return this.abh},set:function(t){var e=this.abh;this.abh=t,e!=this.abh&&this.w2("EditRowBorderWidth",e,this.abh)},enumerable:!1,configurable:!0}),e.prototype.vw=function(t,e,i){if((this.ao=t.l.ab(),this.abb={$type:n.Point_$type,x:e,y:i},this.hu=t.bk&&t.bl,null!=this.dragger&&2!=this.columnResizingMode&&this.ao.h)&&this.ay.j._inner[t.l.a5].jp){var r=this.model.b9._inner[this.ao.a5];this.mb=r.k,this.l8=this.model.cz,this.l9=this.model.c0,this.mc=this.model.actualVisibleRegion.left,this.md=this.model.actualVisibleRegion.top;var o=this.dragger.view.transformPoint(e,i);this.og=n.truncate(o.x+this.mc)-n.intDivide(this.columnResizingSeparatorWidth,2),this.ly=-1,this.externalGrid.setResizeCursor(),this.dragger.dragStart(e,i,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,1,this.ao,!1),0==this.columnResizingMode&&this.refresh()}},e.prototype.vx=function(t,e,n){this.ao=null},e.prototype.vv=function(t,e,n){for(var i=0,r=0;r<this.model.b9.count;r++){i+=this.model.b9._inner[r].k}var o=this.dragger.view.transformPoint(e,n);(null==this.dragger||!this.dragger.isDragActive)&&o.x>=i&&this.externalGrid.setDefaultCursor(),this.isRowHoverEnabled&&this.e1.f(-1)},e.prototype.w0=function(t,e,n,i){},e.prototype.w1=function(t,e,n,i){},Object.defineProperty(e.prototype,"oe",{get:function(){return this.m5},set:function(t){this.m5=t,this.jc=!0},enumerable:!1,configurable:!0}),e.prototype.vu=function(t,e,n){if(this.isRowHoverEnabled){var i=!1,r=-1;t.l.aj||t.l.ay||t.l.ak?(i=!0,r=t.l.x,t.l.ak&&this.cj.j&&(r=this.cj.r)):(t.l.g||t.l.j)&&(i=!0),i&&(this.le?this.oe=r:this.e1.f(r))}},e.prototype.wz=function(t,e,n){null!=this.dragger&&this.dragger.isDragActive?1!=this.dragger.dragType&&2!=this.dragger.dragType&&this.externalGrid.setDefaultCursor():t.l.h&&2!=this.columnResizingMode?this.ay.j._inner[t.l.a5].jp&&this.externalGrid.setResizeCursor():this.externalGrid.setDefaultCursor()},e.prototype.ub=function(){-1!=this.nd&&(this.g8.teardownTicking(this.nd),this.nd=-1)},e.prototype.wt=function(t,e,n,i){if(this.mc=this.model.actualVisibleRegion.left,this.md=this.model.actualVisibleRegion.top,null!=this.dragger&&this.dragger.isDragActive||!t.g||t.h||t.ay||1==this.columnMovingMode)5==this.selectionMode&&this.mouseDragSelectionEnabled&&t.aj&&!t.a0?(i||this.xz(),this.nj=t.x,this.ni=this.model.b9._inner[t.a5].n,this.ir=this.hu,1==this.activationMode&&this.ad.z(t),this.dragger.dragStart(e,n,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,0,t,i)):2==this.selectionMode&&this.mouseDragSelectionEnabled&&(t.aj||t.ay&&!t.g)&&(i||(this.je=!0,this.selectedKeys.clear(),this.selectedItems.clear(),this.je=!1,this.t8(),this.f5.a2(),this.ur()),this.hj=i,this.nj=t.x,this.lo.clear(),this.lp.clear(),1==this.activationMode&&this.ad.z(t),this.deferEventForRowDragSelection&&this.t8(!0),this.dragger.dragStart(e,n,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,3,t,i));else{var r=this.cf(t);null!=r&&r.jn&&this.externalGrid.ensureColumnsAreManual(),this.externalGrid.setHandCursor(),this.model.e(t.a5,t.x).ax=!0,this.dragger.dragStart(e,n,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,2,t,i)}},e.prototype.wp=function(t,e){if(this.ub(),this.as=null,this.ak=null,this.m9=-1,this.ao=null,this.hj=!1,this.lo.clear(),this.lp.clear(),null!=this.dragger)if(1==this.dragger.dragType){if(this.externalGrid.setDefaultCursor(),0==this.columnResizingMode)if(-1!=this.ly){var n=this.model.b9._inner[this.dragger.cellPath.a5];this.c5.ah(this,this.columnAnimationSettings,n,this.ly),this.columns._inner[this.dragger.cellPath.a5].m0("Resized")}else this.renderingEngine.refresh(this.model,!1)}else if(2==this.dragger.dragType){if(this.externalGrid.setDefaultCursor(),0==this.columnMovingMode){if(this.l5>0){var i=!0;if(-1!=this.nk&&this.nk!=this.dragger.cellPath.a5||this.fn!=this.columns._inner[this.dragger.cellPath.a5].il)this.columns._inner[this.dragger.cellPath.a5].il!=this.fn?(this.ld=!0,this.moveColumn(this.dragger.cellPath.a5,this.nk),this.ld=!1,this.pinColumn(this.columns._inner[this.nk],this.fn),this.columns._inner[this.nk].m0("Pinned")):(this.moveColumn(this.dragger.cellPath.a5,this.nk),this.columns._inner[this.nk].m0("Moved")),i=!1;i&&this.refresh()}this.nk=-1}}else 3==this.dragger.dragType?(this.xh(),this.deferEventForRowDragSelection&&this.ur()):0==this.dragger.dragType&&this.xh()},e.prototype.wn=function(t,e){if(null!=this.dragger)switch(this.l2=e.startX,this.l3=e.startY,this.l4=e.currentX,this.l5=e.currentY,this.dragger.dragType){case 0:this.wr(!1);break;case 1:this.wq();break;case 2:this.wo(!1);break;case 3:this.ws(!1,this.hj)}},Object.defineProperty(e.prototype,"og",{get:function(){return this.m9},set:function(t){this.m9!=t&&(this.m9=t)},enumerable:!1,configurable:!0}),e.prototype.wo=function(t){var e=this;if(null!=this.dragger){var i=this.l4+this.model.actualVisibleRegion.x;if(t||!this.i1(i,NaN)){var r=this.dragger.cellPath.a5,o=this.og;this.fn=0;for(var a=0;a<this.model.b9.count;a++){var s=this.model.b9._inner[a];if(3!=s.a){var l=s.l;1==s.d&&(l=s.l+this.model.actualVisibleRegion.x);var u=l+s.k,c=l+n.intDivide(s.k,2);if(0==s.n&&i<l||i>l&&i<=c){o=l,a!=r&&(r=a<this.dragger.cellPath.a5?a:a-1),1!=s.d&&o<this.model.actualVisibleRegion.x+this.model.cz&&(o=this.model.actualVisibleRegion.x+this.model.cz),this.fn=s.d;break}if(i>c&&i<u||a==this.model.b9.count-1&&i>u){o=u-this.columnMovingSeparatorWidth,a!=r&&(r=a<this.dragger.cellPath.a5?a+1:a),this.fn=s.d;break}}}if(o!=this.og){var h=this.og;this.og=n.truncate(o),-1==h?(this.renderingEngine.invalidateVisibility((function(){return e.gj.t(e)})),this.renderingEngine.refresh(this.model,!0)):(null==this.aj&&(this.an.af=6,this.aj=this.d1.c(this.an,this.model)),this.aj.cu=this.og,this.renderingEngine.refresh(this.model,!1)),this.nk=r}}}},e.prototype.wq=function(){var t=this,e=this.ay.h(this.dragger.cellPath);null==this.ak&&(this.an.af=7,this.ak=this.d1.c(this.an,this.model));var i=this.l4+this.model.actualVisibleRegion.x-this.l2,r=n.isNaN_(e.j0)?0:e.j0;this.ly=Math.max(this.mb+i,Math.max(r,10));var o,a=20;if(1==e.il){a=Math.min(20,this.actualVisibleRegion.width-this.model.cz);var s=this.actualVisibleRegion.width-a-this.model.c0,l=this.l8+(this.ly-this.mb);l>s&&(this.ly=this.ly-(l-s))}else if(2==e.il){a=Math.min(20,this.actualVisibleRegion.width-this.model.c0);var u=this.actualVisibleRegion.width-a-this.model.cz,c=this.l9+(this.ly-this.mb);c>u&&(this.ly=this.ly-(c-u))}if(0==this.columnResizingMode)this.og=n.truncate(this.l2-this.mb+this.ly)-n.intDivide(this.columnResizingSeparatorWidth,2),null!=this.ak&&(this.ak.cu=this.og,this.renderingEngine.refresh(this.model,!1));else{var h=((o=new Ft).f=t.ly,o.c=!1,o);n.isNaN_(e.j0)||(h.e=e.j0),e.width=h}},e.prototype.wr=function(t){if(t||!this.i1(this.l4+this.model.actualVisibleRegion.x,this.l5+this.model.actualVisibleRegion.y)){var e=this.l4+this.model.actualVisibleRegion.x,n=this.abd(e,this.l3,this.l4,this.l5),i=this.au(n,this.nj,this.ni,this.ir);this.yh(i)}},e.prototype.yh=function(t){null==this.as?(this.as=t,this.t4(this.as)):this.y5(t)},e.prototype.ws=function(t,e){if(t||!this.i1(this.l4+this.model.actualVisibleRegion.x,this.l5+this.model.actualVisibleRegion.y)){var n=this.l4+this.model.actualVisibleRegion.x,i=this.abd(n,this.l3,this.l4,this.l5),r=this.au(i,this.nj,0,this.ir);this.ym(r.l,r.j)}},e.prototype.ym=function(t,e){for(var n=t;n<=e;n++)if(!this.lo.contains(n)&&!this.lp.contains(n)){var i=this.e7.getRowKey(this.i(),n);if(null!=i){if(this.f5.n(i)){this.lo.add(n);continue}this.lp.add(n),this.selectedKeys.add(i),this.f5.as(n)}}for(var r=0;r<this.lp.count;r++)if(this.lp._inner[r]<t||this.lp._inner[r]>e){var o=this.e7.getRowKey(this.i(),this.lp._inner[r]);if(null!=o){this.lp.removeAt(r),r--;var a=this.selectedKeys.indexOf(o),s=this.selectedItems._inner[a];this.selectedKeys.remove(o),this.ll.remove(o),this.ln.remove(o),this.lk.remove1(s),this.lm.remove1(s)}}},e.prototype.abd=function(t,e,i,r){return i+=this.model.actualVisibleRegion.x,r+=this.model.actualVisibleRegion.y,new n.Rect(0,Math.min(t,i),Math.min(e,r),Math.abs(i-t),Math.abs(r-e))},e.prototype.getHitCell=function(t,e){return null==this.gk?null:this.gk.f(t,e)},e.prototype.au=function(t,e,i,r){var o=this.model.at.q,a=this.model.a9.q,s=this.model.bd.q,l=this.model.av.q,u=new n.List$1($n.$,1,a);u.o(o),u.o(s),u.o(l);for(var c=e,h=i,p=this.l4+this.model.actualVisibleRegion.x,d=0;d<u.count;d++){var f=u._inner[d];if(f.l.aj&&!f.l.a0&&!f.l.ak&&!f.l.al&&!(p<this.model.actualVisibleRegion.x+this.model.cz&&1!=f.l.d||p>this.model.actualVisibleRegion.right-this.model.c0&&2!=f.l.d)){if(r){if(!f.bk||f.bk&&!f.bl)continue}else if(f.bk&&f.bl)continue;var m=new n.Rect(0,f.cu,f.cv,f.hd,f.fu);if(t.intersectsWith(m)){var g=this.model.b9._inner[f.l.a5].n,y=Math.abs(f.l.x-e),b=Math.abs(Math.max(0,g)-i),v=Math.abs(c-e),C=Math.abs(h-i);y>v&&(c=f.l.x),b>C&&!f.l.a0&&(h=g)}}}var x=new _e;return x.k=Math.min(i,h),x.i=Math.max(i,h),x.l=Math.min(e,c),x.j=Math.max(e,c),x},e.prototype.i1=function(t,e){var i=new n.Rect(0,this.model.actualVisibleRegion.x+20,this.model.actualVisibleRegion.y+20,Math.max(this.model.actualVisibleRegion.width-40,0),Math.max(this.model.actualVisibleRegion.height-40,0));if(!this.ir&&!n.isNaN_(e))if(e>i.bottom){var r=e-i.bottom;this.me=Math.min(5*r,1e3),this.ib=!0}else if(e<i.top){var o=i.top-e;this.me=-Math.min(5*o,1e3),this.ib=!0}else this.me=0,this.ib=!1;if(t>i.right){var a=t-i.right;this.l7=Math.min(5*a,1e3),this.ia=!0}else if(t<i.left){var s=i.left-t;this.l7=-Math.min(5*s,1e3),this.ia=!0}else this.l7=0,this.ia=!1;return(this.ib||this.ia)&&-1==this.nd&&(this.lt=n.dateNow(),this.nd=this.g8.setupTicking(n.runOn(this,this.uo)),this.g8.requestFrame(this.nd)),this.ib||this.ia||this.ub(),this.ia||this.ib},e.prototype.uo=function(){if(null!=this.dragger){var t=n.dateNow(),e=n.timeSpanTotalSeconds(+t-+this.lt);switch(this.lt=t,this.mc=Math.max(this.mc+this.l7*e,0),this.md=Math.max(this.md+this.me*e,0),this.model.absoluteWidth>0&&this.model.actualVisibleRegion.width>0&&this.mc+this.model.actualVisibleRegion.width>this.model.absoluteWidth&&(this.mc=Math.round(this.model.absoluteWidth-this.model.actualVisibleRegion.width)),this.model.absoluteHeight>0&&this.model.actualVisibleRegion.height>0&&this.md+this.model.actualVisibleRegion.height>this.model.absoluteHeight&&(this.md=Math.round(this.model.absoluteHeight-this.model.actualVisibleRegion.height)),this.viewportManager.moveViewportTo(n.truncate(this.mc),n.truncate(this.md)),this.dragger.dragType){case 0:this.wr(!0);break;case 1:this.wq();break;case 2:this.wo(!0);break;case 3:this.ws(!0,this.hj)}this.g8.requestFrame(this.nd)}},e.prototype.y5=function(t){t.k==this.as.k&&t.i==this.as.i&&t.l==this.as.l&&t.j==this.as.j||(this.as.k=t.k,this.as.i=t.i,this.as.l=t.l,this.as.j=t.j,this.ik=!0,this.iw=!0,this.f5.a0(),this.iw=!1,this.ve(this.as))},e.prototype.x7=function(t){null!=this.actualDataSource&&null!=this.actualDataSource.actualSchema&&(t.m=this.actualDataSource.resolveSchemaPropertyType(t.f),t.o=!0)},e.prototype.x8=function(t){null!=this.actualDataSource&&null!=this.actualDataSource.actualSchema&&(t.g=this.actualDataSource.resolveSchemaPropertyType(t.ah),t.s=!0)},e.prototype.yt=function(t,e){var n,i=this;switch(e.action){case 0:if(null!=e.newItems)for(var r=0;r<e.newItems.count;r++){var o=e.newItems.item(r);o.s||this.x8(o)}}null!=this.summaryDescriptionsChanged&&this.summaryDescriptionsChanged(this,((n=new St).summaryDescriptions=i.summaryDescriptions,n))},e.prototype.uy=function(t,e){var n,i=this;switch(e.action){case 0:if(null!=e.newItems)for(var r=0;r<e.newItems.count;r++){var o=e.newItems.item(r);o.o||this.x7(o)}}null!=this.groupDescriptionsChanged&&this.groupDescriptionsChanged(this,((n=new wt).groupDescriptions=i.groupDescriptions,n))},e.prototype.uv=function(t,e){var n,i=this;switch(e.action){case 1:case 4:for(var r=!1,o=0;o<this.filterExpressions.k.count;o++)if(this.filterExpressions.k.item(o).isAutoGenerated){r=!0;break}if(!r)for(var a=0;a<this.actualColumns.count;a++)this.actualColumns._inner[a].g1=null,this.actualColumns._inner[a].g3=null}null!=this.filterExpressionsChanged&&this.filterExpressionsChanged(this,((n=new xt).a=i.filterExpressions,n))},e.prototype.yr=function(t,e){var r,o,a,s=this;this.j3=!0;try{switch(e.action){case 0:if(null!=e.newItems)for(var l=0;l<e.newItems.count;l++){var u=e.newItems.item(l);this.yz(u.f,this.b5(u.c))}break;case 1:if(null!=e.oldItems)for(var c=0;c<e.oldItems.count;c++){var h=e.oldItems.item(c);this.yz(h.f,0)}break;case 2:if(null!=e.oldItems)for(var p=0;p<e.oldItems.count;p++){var d=e.oldItems.item(p);this.yz(d.f,0)}if(null!=e.newItems)for(var f=0;f<e.newItems.count;f++){var m=e.newItems.item(f);this.yz(m.f,this.b5(m.c))}break;case 4:try{for(var g=i.__values(n.fromEnum(this.columns)),y=g.next();!y.done;y=g.next()){y.value.hr=0}}catch(t){r={error:t}}finally{try{y&&!y.done&&(o=g.return)&&o.call(g)}finally{if(r)throw r.error}}}null!=this.sortDescriptionsChanged&&this.sortDescriptionsChanged(this,((a=new _t).sortDescriptions=s.sortDescriptions,a))}finally{this.j3=!1}},e.prototype.yz=function(t,e){for(var n=0;n<this.columns.count;n++)this.columns._inner[n].lo==t&&(this.columns._inner[n].hr=e)},e.prototype.b5=function(t){switch(t){case 0:return 1;case 1:return 2}return 0},e.prototype.yk=function(t,e){var r,o,a,s,l,u,c,h=this;if(this.ik=!0,!this.je&&null!=this.actualDataSource&&!this.iu){switch(this.iu=!0,e.action){case 0:if(null!=e.newItems)for(var p=0;p<e.newItems.count;p++){var d=this.e7.getItemKey(this.i(),e.newItems.item(p));this.selectedKeys.ae.insert(p+e.newStartingIndex,d)}break;case 1:if(null!=e.oldItems)for(var f=0;f<e.oldItems.count;f++)this.selectedKeys.ae.removeAt(e.oldStartingIndex);break;case 2:if(null!=e.oldItems)for(var m=0;m<e.oldItems.count;m++)this.selectedKeys.ae.removeAt(e.oldStartingIndex);if(null!=e.newItems)for(var g=0;g<e.newItems.count;g++){var y=this.e7.getItemKey(this.i(),e.newItems.item(g));this.selectedKeys.ae.insert(g+e.newStartingIndex,y)}break;case 4:this.selectedKeys.clear();try{for(var b=i.__values(n.fromEnum(this.selectedItems.ae)),v=b.next();!v.done;v=b.next()){var C=v.value,x=this.e7.getItemKey(this.i(),C);this.selectedKeys.add(x)}}catch(t){r={error:t}}finally{try{v&&!v.done&&(o=b.return)&&o.call(b)}finally{if(r)throw r.error}}}this.f5.a2(),this.iu=!1}if(this.notifyOnAllSelectionChanges&&null!=this.selectedItemsChanged){var _=null;if(null!=e.newItems&&e.newItems.count>0){_=new xe;try{for(var w=i.__values(n.fromEn(e.newItems)),S=w.next();!S.done;S=w.next()){var P=S.value;_.add1(P)}}catch(t){a={error:t}}finally{try{S&&!S.done&&(s=w.return)&&s.call(w)}finally{if(a)throw a.error}}}var O=null;if(null!=e.oldItems&&e.oldItems.count>0){O=new xe;try{for(var I=i.__values(n.fromEn(e.oldItems)),j=I.next();!j.done;j=I.next()){var k=j.value;O.add1(k)}}catch(t){l={error:t}}finally{try{j&&!j.done&&(u=I.return)&&u.call(I)}finally{if(l)throw l.error}}}this.selectedItemsChanged(this,((c=new $e).addedItems=_,c.removedItems=O,c.currentItems=h.selectedItems,c))}},e.prototype.yl=function(t,e){var r,o,a,s,l,u,h,p=this;if(!this.je&&null!=this.actualDataSource&&!this.iu){switch(this.iu=!0,e.action){case 0:if(null!=e.newItems)for(var d=0;d<e.newItems.count;d++){var f=this.e7.getItemForKey(e.newItems.item(d));this.selectedItems.ae.insert1(d+e.newStartingIndex,f)}break;case 1:if(null!=e.oldItems)for(var m=0;m<e.oldItems.count;m++)this.selectedItems.ae.removeAt(e.oldStartingIndex);break;case 2:if(null!=e.oldItems)for(var g=0;g<e.oldItems.count;g++)this.selectedItems.ae.removeAt(e.oldStartingIndex);if(null!=e.newItems)for(var y=0;y<e.newItems.count;y++){var b=this.e7.getItemForKey(e.newItems.item(y));this.selectedItems.ae.insert1(y+e.newStartingIndex,b)}break;case 4:this.selectedItems.clear();try{for(var v=i.__values(n.fromEnum(this.selectedKeys.ae)),C=v.next();!C.done;C=v.next()){var x=C.value,_=this.e7.getItemForKey(x);this.selectedItems.add1(_)}}catch(t){r={error:t}}finally{try{C&&!C.done&&(o=v.return)&&o.call(v)}finally{if(r)throw r.error}}}this.f5.a2(),this.iu=!1}if(this.notifyOnAllSelectionChanges&&null!=this.selectedKeysChanged){var w=null;if(null!=e.newItems&&e.newItems.count>0){(w=new c).ag=!1;try{for(var S=i.__values(n.fromEn(e.newItems)),P=S.next();!P.done;P=S.next()){var O=P.value;w.add(O)}}catch(t){a={error:t}}finally{try{P&&!P.done&&(s=S.return)&&s.call(S)}finally{if(a)throw a.error}}}var I=null;if(null!=e.oldItems&&e.oldItems.count>0){(I=new c).ag=!1;try{for(var j=i.__values(n.fromEn(e.oldItems)),k=j.next();!k.done;k=j.next()){var T=k.value;I.add(T)}}catch(t){l={error:t}}finally{try{k&&!k.done&&(u=j.return)&&u.call(j)}finally{if(l)throw l.error}}}this.selectedKeysChanged(this,((h=new ze).addedKeys=w,h.removedKeys=I,h.currentKeys=p.selectedKeys,h))}},e.prototype.yj=function(t,e){var r,o,a,s,l,u=this;switch(this.ik=!0,e.action){case 0:case 2:for(var c=0;c<e.newItems.count;c++)n.typeCast(Si.$,e.newItems.item(c)).d=this}if(this.je||(this.iw=!0,this.f5.a1(),this.iw=!1),this.notifyOnAllSelectionChanges){var h=null;if(null!=e.newItems&&e.newItems.count>0){h=new Pi;try{for(var p=i.__values(n.fromEn(e.newItems)),d=p.next();!d.done;d=p.next()){var f=d.value;h.add(f)}}catch(t){r={error:t}}finally{try{d&&!d.done&&(o=p.return)&&o.call(p)}finally{if(r)throw r.error}}}var m=null;if(null!=e.oldItems&&e.oldItems.count>0){m=new Pi;try{for(var g=i.__values(n.fromEn(e.oldItems)),y=g.next();!y.done;y=g.next()){var b=y.value;m.add(b)}}catch(t){a={error:t}}finally{try{y&&!y.done&&(s=g.return)&&s.call(g)}finally{if(a)throw a.error}}}null!=this.selectedCellsChanged&&this.selectedCellsChanged(this,((l=new ci).addedCells=h,l.removedCells=m,l.currentCells=u.selectedCells,l))}},e.prototype.yi=function(t,e){var n,i=this;this.ik=!0,this.iw=!0,this.f5.a0(),this.iw=!1,this.notifyOnAllSelectionChanges&&null!=this.selectedCellRangesChanged&&this.selectedCellRangesChanged(this,((n=new Ge).currentRanges=i.selectedCellRanges,n))},e.prototype.xn=function(t,e){var r,o;if(!this.jd&&null!=this.actualDataSource&&!this.it){switch(this.it=!0,e.action){case 0:if(null!=e.newItems)for(var a=0;a<e.newItems.count;a++){var s=this.e7.getItemKey(this.i(),e.newItems.item(a));this.pinnedKeys.ae.insert(a+e.newStartingIndex,s),this.e7.pinRow(s)}break;case 1:if(null!=e.oldItems)for(var l=0;l<e.oldItems.count;l++)this.e7.unpinRow(this.pinnedKeys.ae._inner[e.oldStartingIndex]),this.pinnedKeys.ae.removeAt(e.oldStartingIndex);break;case 2:if(null!=e.oldItems)for(var u=0;u<e.oldItems.count;u++)this.e7.unpinRow(this.pinnedKeys.ae._inner[e.oldStartingIndex]),this.pinnedKeys.ae.removeAt(e.oldStartingIndex);if(null!=e.newItems)for(var c=0;c<e.newItems.count;c++){var h=this.e7.getItemKey(this.i(),e.newItems.item(c));this.pinnedKeys.ae.insert(c+e.newStartingIndex,h),this.e7.pinRow(h)}break;case 4:this.pinnedKeys.clear(),this.e7.clearPinnedRows();try{for(var p=i.__values(n.fromEnum(this.pinnedItems.ae)),d=p.next();!d.done;d=p.next()){var f=d.value,m=this.e7.getItemKey(this.i(),f);this.pinnedKeys.add(m),this.e7.pinRow(m)}}catch(t){r={error:t}}finally{try{d&&!d.done&&(o=p.return)&&o.call(p)}finally{if(r)throw r.error}}}this.it=!1}},e.prototype.xo=function(t,e){var r,o;if(!this.jd&&null!=this.actualDataSource&&!this.it){switch(this.it=!0,e.action){case 0:if(null!=e.newItems)for(var a=0;a<e.newItems.count;a++){var s=this.e7.getItemForKey(e.newItems.item(a));this.pinnedItems.ae.insert1(a+e.newStartingIndex,s),this.e7.pinRow(e.newItems.item(a))}break;case 1:if(null!=e.oldItems)for(var l=0;l<e.oldItems.count;l++)this.e7.unpinRow(e.oldItems.item(l)),this.pinnedItems.ae.removeAt(e.oldStartingIndex);break;case 2:if(null!=e.oldItems)for(var u=0;u<e.oldItems.count;u++)this.e7.unpinRow(e.oldItems.item(u)),this.pinnedItems.ae.removeAt(e.oldStartingIndex);if(null!=e.newItems)for(var c=0;c<e.newItems.count;c++){var h=this.e7.getItemForKey(e.newItems.item(c));this.e7.indexOfKey(e.newItems.item(c));this.pinnedItems.ae.insert1(c+e.newStartingIndex,h),this.e7.pinRow(e.newItems.item(c))}break;case 4:this.pinnedItems.clear(),this.e7.clearPinnedRows();try{for(var p=i.__values(n.fromEnum(this.pinnedKeys.ae)),d=p.next();!d.done;d=p.next()){var f=d.value,m=this.e7.getItemForKey(f);this.pinnedItems.add1(m),this.e7.pinRow(f)}}catch(t){r={error:t}}finally{try{d&&!d.done&&(o=p.return)&&o.call(p)}finally{if(r)throw r.error}}}this.it=!1}},Object.defineProperty(e.prototype,"c5",{get:function(){return this.c4},set:function(t){this.c4=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"delayedExecutionManager",{get:function(){return this._delayedExecutionManager},set:function(t){this._delayedExecutionManager=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fp",{get:function(){return this.fo},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e7",{get:function(){return this.e6},set:function(t){this.e6=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ay",{get:function(){return this.ax},set:function(t){this.ax=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d1",{get:function(){return this.d0},set:function(t){this.d0=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gb",{get:function(){return this.ga},set:function(t){this.ga=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dw",{get:function(){return this.dv},set:function(t){this.dv=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f5",{get:function(){return this.f4},set:function(t){this.f4=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ad",{get:function(){return this.ac},set:function(t){this.ac=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f9",{get:function(){return this.f8},set:function(t){this.f8=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"tickProvider",{get:function(){return this.g8},set:function(t){this.g8=t,this.dv=new Cr(this.g8,this)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sectionHeader",{get:function(){return this.f2},set:function(t){var e=this.f2;this.f2=t,null==this.f2&&(this.f2=new nr),this.f2.grid=this,e!=this.f2&&this.w2("SectionHeader",e,this.f2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f1",{get:function(){return this.f0},set:function(t){this.f0=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRowRoot",{get:function(){return this.gc},set:function(t){var e=this.gc;this.gc=t,null==this.gc&&(this.gc=new ar),this.gc.grid=this,e!=this.gc&&this.w2("SummaryRowRoot",e,this.gc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRowSection",{get:function(){return this.ge},set:function(t){var e=this.ge;this.ge=t,null==this.ge&&(this.ge=new sr),this.ge.grid=this,e!=this.ge&&this.w2("SummaryRowSection",e,this.ge)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparator",{get:function(){return this.fx},set:function(t){var e=this.fx;this.fx=t,e!=this.fx&&this.w2("RowSeparator",e,this.fx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerRowSeparator",{get:function(){return this.ex},set:function(t){var e=this.ex;this.ex=t,e!=this.ex&&this.w2("HeaderRowSeparator",e,this.ex)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerSeparator",{get:function(){return this.ez},set:function(t){var e=this.ez;this.ez=t,e!=this.ez&&this.w2("HeaderSeparator",e,this.ez)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnResizingSeparator",{get:function(){return this.bt},set:function(t){var e=this.bt;this.bt=t,e!=this.bt&&this.w2("ColumnResizingSeparator",e,this.bt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnMovingSeparator",{get:function(){return this.bf},set:function(t){var e=this.bf;this.bf=t,e!=this.bf&&this.w2("ColumnMovingSeparator",e,this.bf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pinnedAreaSeparator",{get:function(){return this.fl},set:function(t){var e=this.fl;this.fl=t,e!=this.fl&&this.w2("PinnedAreaSeparator",e,this.fl)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"autoGenerateDesiredProperties",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.w2("AutoGenerateDesiredColumns",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dataSourceDesiredProperties",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,e!=this.c&&this.w2("DataSourceDesiredProperties",e,this.c)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gj",{get:function(){return this.gi},set:function(t){this.gi=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"viewportManager",{get:function(){return this._viewportManager},set:function(t){this._viewportManager=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mg",{get:function(){return this.lx},set:function(t){this.lx=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mf",{get:function(){return this.lw},set:function(t){this.lw=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"density",{get:function(){return this.go},set:function(t){var e=this.go;this.go=t,e!=this.go&&this.w2("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.go))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualRowHeight",{get:function(){return this.mw},set:function(t){var e=this.mw;this.mw=t,e!=this.mw&&this.w2("ActualRowHeight",e,this.mw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowHeight",{get:function(){return this.na},set:function(t){var e=this.na;this.na=t,e!=this.na&&this.w2("RowHeight",e,this.na)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"defaultColumnWidth",{get:function(){return this.ca},set:function(t){var e=this.ca;this.ca=t,e!=this.ca&&this.w2("DefaultColumnWidth",e,this.ca)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"defaultColumnMinWidth",{get:function(){return this.l1},set:function(t){var e=this.l1;this.l1=t,e!=this.l1&&this.w2("DefaultColumnMinWidth",e,this.l1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualHeaderHeight",{get:function(){return this.mv},set:function(t){var e=this.mv;this.mv=t,e!=this.mv&&this.w2("ActualHeaderHeight",e,this.mv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerHeight",{get:function(){return this.m2},set:function(t){var e=this.m2;this.m2=t,e!=this.m2&&this.w2("HeaderHeight",e,this.m2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sectionHeaderHeight",{get:function(){return this.nf},set:function(t){var e=this.nf;this.nf=t,e!=this.nf&&this.w2("SectionHeaderHeight",e,this.nf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"itemsSource",{get:function(){return this.oq},set:function(t){var e=this.oq;this.oq=t,e!=this.oq&&this.w2("ItemsSource",e,this.oq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sectionFooterHeight",{get:function(){return this.ne},set:function(t){var e=this.ne;this.ne=t,e!=this.ne&&this.w2("SectionFooterHeight",e,this.ne)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSpacingHeight",{get:function(){return this.nc},set:function(t){var e=this.nc;this.nc=t,e!=this.nc&&this.w2("RowSpacingHeight",e,this.nc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnSpacingWidth",{get:function(){return this.m0},set:function(t){var e=this.m0;this.m0=t,e!=this.m0&&this.w2("ColumnSpacingWidth",e,this.m0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerClickAction",{get:function(){return this.ev},set:function(t){var e=this.ev;this.ev=t,e!=this.ev&&(this.w2("HeaderClickAction",n.enumGetBox(zt,e),n.enumGetBox(zt,this.ev)),0!=this.ev&&2!=this.ev||1!=e&&3!=e||this.f9.h())},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editMode",{get:function(){return this.cm},set:function(t){var e=this.cm;this.cm=t,e!=this.cm&&this.w2("EditMode",n.enumGetBox(C,e),n.enumGetBox(C,this.cm))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editModeClickAction",{get:function(){return this.ck},set:function(t){var e=this.ck;this.ck=t,e!=this.ck&&this.w2("EditModeClickAction",n.enumGetBox(Lt,e),n.enumGetBox(Lt,this.ck))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editOnKeyPress",{get:function(){return this.hk},set:function(t){var e=this.hk;this.hk=t,e!=this.hk&&this.w2("EditOnKeyPress",e,this.hk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"autoGenerateColumns",{get:function(){return this.hg},set:function(t){var e=this.hg;this.hg=t,e!=this.hg&&this.w2("AutoGenerateColumns",e,this.hg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparatorHeight",{get:function(){return this.nb},set:function(t){var e=this.nb;this.nb=t,e!=this.nb&&this.w2("RowSeparatorHeight",e,this.nb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isPlaceholderRenderingEnabled",{get:function(){return this.h4},set:function(t){var e=this.h4;this.h4=t,e!=this.h4&&this.w2("IsPlaceholderRenderingEnabled",e,this.h4)},enumerable:!1,configurable:!0}),e.prototype.jj=function(t){return 1!=this.bz(t)&&this.jk},e.prototype.bz=function(t){return 0==this.bv?t.hp():this.bv},Object.defineProperty(e.prototype,"columnAddingAnimationMode",{get:function(){return this.bv},set:function(t){var e=this.bv;this.bv=t,this.w2("ColumnAddingAnimationMode",n.enumGetBox(Ht,e),n.enumGetBox(Ht,this.bv))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jr",{get:function(){return 1!=this.bm&&this.jk},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnPropertyUpdatingAnimationMode",{get:function(){return this.bm},set:function(t){var e=this.bm;this.bm=t,this.w2("ColumnPropertyUpdatingAnimationMode",n.enumGetBox(Ut,e),n.enumGetBox(Ut,this.bm))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jk",{get:function(){return this.renderingEngine.initialRefreshFinished},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jg",{get:function(){return 1!=this.ag},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellDataLoadedAnimationMode",{get:function(){return this.ag},set:function(t){var e=this.ag;this.ag=t,this.w2("CellDataLoadedAnimationMode",n.enumGetBox(Xt,e),n.enumGetBox(Xt,this.ag))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kd",{get:function(){return 1!=this.fv},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSelectionAnimationMode",{get:function(){return this.fv},set:function(t){var e=this.fv;this.fv=t,this.w2("RowSelectionAnimationMode",n.enumGetBox(Yt,e),n.enumGetBox(Yt,this.fv))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kb",{get:function(){return 1!=this.fs},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowHoverAnimationMode",{get:function(){return this.fs},set:function(t){var e=this.fs;this.fs=t,e!=this.fs&&this.w2("RowHoverAnimationMode",n.enumGetBox(Jt,e),n.enumGetBox(Jt,this.fs))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jh",{get:function(){return 1!=this.av},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellSelectionAnimationMode",{get:function(){return this.av},set:function(t){var e=this.av;this.av=t,this.w2("CellSelectionAnimationMode",n.enumGetBox(ee,e),n.enumGetBox(ee,this.av))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnAnimationSettings",{get:function(){return this.dj},set:function(t){var e=this.dj;this.dj=t,e!=this.dj&&this.w2("ColumnAnimationSettings",e,this.dj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"animationSettings",{get:function(){return this.c6},set:function(t){var e=this.c6;this.c6=t,e!=this.c6&&this.w2("AnimationSettings",e,this.c6)},enumerable:!1,configurable:!0}),e.prototype.js=function(t){return 1!=this.bq(t)&&this.jk},e.prototype.bq=function(t){return 0==this.bo?t.ho():this.bo},Object.defineProperty(e.prototype,"columnResizingAnimationMode",{get:function(){return this.bo},set:function(t){var e=this.bo;this.bo=t,this.w2("ColumnResizingAnimationMode",n.enumGetBox(le,e),n.enumGetBox(le,this.bo))},enumerable:!1,configurable:!0}),e.prototype.jt=function(t){return 1!=this.b0(t)&&this.jk},e.prototype.b0=function(t){return 0==this.bw?t.hp():this.bw},Object.defineProperty(e.prototype,"columnShowingAnimationMode",{get:function(){return this.bw},set:function(t){var e=this.bw;this.bw=t,this.w2("ColumnShowingAnimationMode",n.enumGetBox(Ht,e),n.enumGetBox(Ht,this.bw))},enumerable:!1,configurable:!0}),e.prototype.jn=function(t){return 1!=this.bc(t)&&this.jk&&!this.ld},e.prototype.bc=function(t){return 0==this.ba?2:this.ba},Object.defineProperty(e.prototype,"columnMovingAnimationMode",{get:function(){return this.ba},set:function(t){var e=this.ba;this.ba=t,this.w2("ColumnMovingAnimationMode",n.enumGetBox(ce,e),n.enumGetBox(ce,this.ba))},enumerable:!1,configurable:!0}),e.prototype.jm=function(t){return 1!=this.a9(t)&&this.jk},e.prototype.a9=function(t){return 0==this.a7?t.hf():this.a7},Object.defineProperty(e.prototype,"columnHidingAnimationMode",{get:function(){return this.a7},set:function(t){var e=this.a7;this.a7=t,this.w2("ColumnHidingAnimationMode",n.enumGetBox(pe,e),n.enumGetBox(pe,this.a7))},enumerable:!1,configurable:!0}),e.prototype.jl=function(t){return 1!=this.a1(t)&&this.jk},e.prototype.a1=function(t){return 0==this.az?t.he():this.az},Object.defineProperty(e.prototype,"columnExchangingAnimationMode",{get:function(){return this.az},set:function(t){var e=this.az;this.az=t,this.w2("ColumnExchangingAnimationMode",n.enumGetBox(fe,e),n.enumGetBox(fe,this.az))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"inset",{get:function(){return this.abi},set:function(t){var e=this.abi;this.abi=t,e!=this.abi&&this.w2("Inset",e,this.abi)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectionMode",{get:function(){return this.cg},set:function(t){var e=this.cg;this.cg=t,e!=this.cg&&this.w2("SelectionMode",n.enumGetBox(ge,e),n.enumGetBox(ge,this.cg))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"activationMode",{get:function(){return this.c1},set:function(t){var e=this.c1;this.c1=t,e!=this.c1&&this.w2("ActivationMode",n.enumGetBox(be,e),n.enumGetBox(be,this.c1))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectionBehavior",{get:function(){return this.ek},set:function(t){var e=this.ek;this.ek=t,e!=this.ek&&this.w2("SelectionBehavior",n.enumGetBox(Ce,e),n.enumGetBox(Ce,this.ek))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mouseDragSelectionEnabled",{get:function(){return this.h9},set:function(t){this.h9=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"je",{get:function(){return this.ho},set:function(t){this.ho=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectedItems",{get:function(){return this.ec},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectedKeys",{get:function(){return this.eh},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectedCells",{get:function(){return this.d8},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectedCellRanges",{get:function(){return this.d5},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jd",{get:function(){return this.hn},set:function(t){this.hn=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pinnedItems",{get:function(){return this.eb},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pinnedKeys",{get:function(){return this.eg},enumerable:!1,configurable:!0}),e.prototype.yv=function(t,e){var r,o,a,s,l,u;if(null!=this.actualDataSource)if(t.ae.count>0&&0==e.ae.count){var c=this.i();try{for(var h=i.__values(n.fromEnum(t.ae)),p=h.next();!p.done;p=h.next()){var d=p.value,f=this.e7.getItemKey(c,d);e.ae.add(f)}}catch(t){r={error:t}}finally{try{p&&!p.done&&(o=h.return)&&o.call(h)}finally{if(r)throw r.error}}}else if(0==t.ae.count&&e.ae.count>0)try{for(var m=i.__values(n.fromEnum(e.ae)),g=m.next();!g.done;g=m.next()){var y=g.value,b=this.e7.getItemForKey(y);t.ae.add1(b)}}catch(t){a={error:t}}finally{try{g&&!g.done&&(s=m.return)&&s.call(m)}finally{if(a)throw a.error}}else{t.ae.clear();try{for(var v=i.__values(n.fromEnum(e.ae)),C=v.next();!C.done;C=v.next()){var x=C.value,_=this.e7.getItemForKey(x);t.ae.add1(_)}}catch(t){l={error:t}}finally{try{C&&!C.done&&(u=v.return)&&u.call(v)}finally{if(l)throw l.error}}}},Object.defineProperty(e.prototype,"isColumnOptionsEnabled",{get:function(){return this.hr},set:function(t){var e=this.hr;this.hr=t,e!=this.hr&&this.w2("IsColumnOptionsEnabled",e,this.hr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isGroupByAreaVisible",{get:function(){return this.hv},set:function(t){var e=this.hv;this.hv=t,e!=this.hv&&this.w2("IsGroupByAreaVisible",e,this.hv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isGroupRowSticky",{get:function(){return this.h0},set:function(t){var e=this.h0;this.h0=t,e!=this.h0&&this.w2("IsGroupRowSticky",e,this.h0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isHeaderSeparatorVisible",{get:function(){return this.h1},set:function(t){var e=this.h1;this.h1=t,e!=this.h1&&this.w2("IsHeaderSeparatorVisible",e,this.h1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellSelectedBackground",{get:function(){return this.zf},set:function(t){var e=this.zf;this.zf=t,e!=this.zf&&this.w2("CellSelectedBackground",e,this.zf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sectionHeaderSelectedBackground",{get:function(){return this.z1},set:function(t){var e=this.z1;this.z1=t,e!=this.z1&&this.w2("SectionHeaderSelectedBackground",e,this.z1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRootBackground",{get:function(){return this.z4},set:function(t){var e=this.z4;this.z4=t,e!=this.z4&&this.w2("SummaryRootBackground",e,this.z4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summarySectionBackground",{get:function(){return this.z8},set:function(t){var e=this.z8;this.z8=t,e!=this.z8&&this.w2("SummarySectionBackground",e,this.z8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pinnedRowOpacity",{get:function(){return this.ma},set:function(t){var e=this.ma;this.ma=t,e!=this.ma&&this.w2("PinnedRowOpacity",e,this.ma)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editTextStyle",{get:function(){return this.gr},set:function(t){var e=this.gr;this.gr=t,e!=this.gr&&this.w2("EditTextStyle",e,this.gr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editOpacity",{get:function(){return this.l6},set:function(t){var e=this.l6;this.l6=t,e!=this.l6&&this.w2("EditOpacity",e,this.l6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"deletedTextColor",{get:function(){return this.zk},set:function(t){var e=this.zk;this.zk=t,e!=this.zk&&this.w2("DeletedTextColor",e,this.zk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"stickyRowBackground",{get:function(){return this.z3},set:function(t){var e=this.z3;this.z3=t,e!=this.z3&&this.w2("StickyRowBackground",e,this.z3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pinnedRowBackground",{get:function(){return this.zs},set:function(t){var e=this.zs;this.zs=t,e!=this.zs&&this.w2("PinnedRowBackground",e,this.zs)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lastStickyRowBackground",{get:function(){return this.zr},set:function(t){var e=this.zr;this.zr=t,e!=this.zr&&this.w2("LastStickyRowBackground",e,this.zr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"activeCell",{get:function(){return this.df},set:function(t){var e=this.df;this.df=t,e!=this.df&&this.w2("ActiveCell",e,this.df)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellBackground",{get:function(){return this.ze},set:function(t){var e=this.ze;this.ze=t,e!=this.ze&&this.w2("CellBackground",e,this.ze)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellTextColor",{get:function(){return this.zg},set:function(t){var e=this.zg;this.zg=t,e!=this.zg&&this.w2("CellTextColor",e,this.zg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerSortIndicatorColor",{get:function(){return this.zp},set:function(t){var e=this.zp;this.zp=t,e!=this.zp&&this.w2("HeaderSortIndicatorColor",e,this.zp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerSortIndicatorStyle",{get:function(){return this.f6},set:function(t){var e=this.f6;this.f6=t,e!=this.f6&&this.w2("HeaderSortIndicatorStyle",n.enumGetBox(st,e),n.enumGetBox(st,this.f6))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellTextStyle",{get:function(){return this.gq},set:function(t){var e=this.gq;this.gq=t,e!=this.gq&&this.w2("CellTextStyle",e,this.gq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sectionHeaderBackground",{get:function(){return this.z0},set:function(t){var e=this.z0;this.z0=t,e!=this.z0&&this.w2("SectionHeaderBackground",e,this.z0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sectionHeaderTextColor",{get:function(){return this.z2},set:function(t){var e=this.z2;this.z2=t,e!=this.z2&&this.w2("SectionHeaderTextColor",e,this.z2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sectionHeaderTextStyle",{get:function(){return this.gt},set:function(t){var e=this.gt;this.gt=t,e!=this.gt&&this.w2("SectionHeaderTextStyle",e,this.gt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRootLabelTextStyle",{get:function(){return this.gu},set:function(t){var e=this.gu;this.gu=t,e!=this.gu&&this.w2("SummaryRootLabelTextStyle",e,this.gu)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summarySectionLabelTextStyle",{get:function(){return this.gw},set:function(t){var e=this.gw;this.gw=t,e!=this.gw&&this.w2("SummarySectionLabelTextStyle",e,this.gw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRootValueTextColor",{get:function(){return this.z7},set:function(t){var e=this.z7;this.z7=t,e!=this.z7&&this.w2("SummaryRootValueTextColor",e,this.z7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRootValueTextStyle",{get:function(){return this.gv},set:function(t){var e=this.gv;this.gv=t,e!=this.gv&&this.w2("SummaryRootValueTextStyle",e,this.gv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summarySectionValueTextStyle",{get:function(){return this.gx},set:function(t){var e=this.gx;this.gx=t,e!=this.gx&&this.w2("SummarySectionValueTextStyle",e,this.gx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summarySectionValueTextColor",{get:function(){return this.aab},set:function(t){var e=this.aab;this.aab=t,e!=this.aab&&this.w2("SummarySectionValueTextColor",e,this.aab)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRootLabelTextColor",{get:function(){return this.z5},set:function(t){var e=this.z5;this.z5=t,e!=this.z5&&this.w2("SummaryRootLabelTextColor",e,this.z5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summarySectionLabelTextColor",{get:function(){return this.z9},set:function(t){var e=this.z9;this.z9=t,e!=this.z9&&this.w2("SummarySectionLabelTextColor",e,this.z9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryRootSelectedBackground",{get:function(){return this.z6},set:function(t){var e=this.z6;this.z6=t,e!=this.z6&&this.w2("SummaryRootSelectedBackground",e,this.z6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summarySectionSelectedBackground",{get:function(){return this.aaa},set:function(t){var e=this.aaa;this.aaa=t,e!=this.aaa&&this.w2("SummarySectionSelectedBackground",e,this.aaa)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pinnedAreaSeparatorWidth",{get:function(){return this.m8},set:function(t){var e=this.m8;this.m8=t,e!=this.m8&&this.w2("PinnedAreaSeparatorWidth",e,this.m8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerSeparatorWidth",{get:function(){return this.m3},set:function(t){var e=this.m3;this.m3=t,e!=this.m3&&this.w2("HeaderSeparatorWidth",e,this.m3)},enumerable:!1,configurable:!0}),e.prototype.nn=function(t){var e=Math.max(3-t,0);return e%2==1&&(e+=1),n.intDivide(e,2)},Object.defineProperty(e.prototype,"headerSeparatorBackground",{get:function(){return this.zo},set:function(t){var e=this.zo;this.zo=t,e!=this.zo&&this.w2("HeaderSeparatorBackground",e,this.zo)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerBackground",{get:function(){return this.zm},set:function(t){var e=this.zm;this.zm=t,e!=this.zm&&this.w2("HeaderBackground",e,this.zm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerTextColor",{get:function(){return this.zq},set:function(t){var e=this.zq;this.zq=t,e!=this.zq&&this.w2("HeaderTextColor",e,this.zq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerTextStyle",{get:function(){return this.gs},set:function(t){var e=this.gs;this.gs=t,e!=this.gs&&this.w2("HeaderTextStyle",e,this.gs)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparatorBackground",{get:function(){return this.zv},set:function(t){var e=this.zv;this.zv=t,e!=this.zv&&this.w2("RowSeparatorBackground",e,this.zv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"headerRowSeparatorBackground",{get:function(){return this.zn},set:function(t){var e=this.zn;this.zn=t,e!=this.zn&&this.w2("HeaderRowSeparatorBackground",e,this.zn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparatorStickyRowBackground",{get:function(){return this.zy},set:function(t){var e=this.zy;this.zy=t,e!=this.zy&&this.w2("RowSeparatorStickyRowBackground",e,this.zy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparatorLastStickyRowBackground",{get:function(){return this.zw},set:function(t){var e=this.zw;this.zw=t,e!=this.zw&&this.w2("RowSeparatorLastStickyRowBackground",e,this.zw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparatorPinnedRowBackground",{get:function(){return this.zx},set:function(t){var e=this.zx;this.zx=t,e!=this.zx&&this.w2("RowSeparatorPinnedRowBackground",e,this.zx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnResizingSeparatorWidth",{get:function(){return this.mz},set:function(t){var e=this.mz;this.mz=t,e!=this.mz&&this.w2("ColumnResizingSeparatorWidth",e,this.mz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnResizingSeparatorOpacity",{get:function(){return this.l0},set:function(t){var e=this.l0;this.l0=t,e!=this.l0&&this.w2("ColumnResizingSeparatorOpacity",e,this.l0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnMovingSeparatorWidth",{get:function(){return this.mx},set:function(t){var e=this.mx;this.mx=t,e!=this.mx&&this.w2("ColumnMovingSeparatorWidth",e,this.mx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnMovingSeparatorOpacity",{get:function(){return this.lz},set:function(t){var e=this.lz;this.lz=t,e!=this.lz&&this.w2("ColumnMovingSeparatorOpacity",e,this.lz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnResizingSeparatorBackground",{get:function(){return this.zj},set:function(t){var e=this.zj;this.zj=t,e!=this.zj&&this.w2("ColumnResizingSeparatorBackground",e,this.zj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnMovingSeparatorBackground",{get:function(){return this.zh},set:function(t){var e=this.zh;this.zh=t,e!=this.zh&&this.w2("ColumnMovingSeparatorBackground",e,this.zh)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"shiftSectionContent",{get:function(){return this.il},set:function(t){var e=this.il;this.il=t,e!=this.il&&this.w2("ShiftSectionContent",e,this.il)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnOptionsIconAlignment",{get:function(){return this.bh},set:function(t){var e=this.bh;this.bh=t,e!=this.bh&&this.w2("ColumnOptionsIconAlignment",n.enumGetBox(ut,e),n.enumGetBox(ut,this.bh))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnOptionsIconColor",{get:function(){return this.zi},set:function(t){var e=this.zi;this.zi=t,e!=this.zi&&this.w2("ColumnOptionsIconColor",e,this.zi)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnOptionsIconBehavior",{get:function(){return this.bj},set:function(t){var e=this.bj;this.bj=t,e!=this.bj&&this.w2("ColumnOptionsIconBehavior",n.enumGetBox(ht,e),n.enumGetBox(ht,this.bj))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"border",{get:function(){return this.zd},set:function(t){var e=this.zd;this.zd=t,e!=this.zd&&this.w2("Border",e,this.zd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"abm",{get:function(){return this.abg},set:function(t){var e=this.abg;this.abg=t,e!=this.abg&&this.w2("DefaultBorderWidth",e,this.abg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualBorderWidth",{get:function(){return this.abe},set:function(t){var e=this.abe;this.abe=t,e!=this.abe&&this.w2("ActualBorderWidth",e,this.abe)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"borderWidth",{get:function(){return this.abf},set:function(t){var e=this.abf;this.abf=t,e!=this.abf&&this.w2("BorderWidth",e,this.abf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"notifyOnAllSelectionChanges",{get:function(){return this.id},set:function(t){var e=this.id;this.id=t,e!=this.id&&this.w2("NotifyOnAllSelectionChanges",e,this.id)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"zc",{get:function(){return this.y8},set:function(t){var e=this.y8;this.y8=t,e!=this.y8&&this.w2("DefaultCornerRadius",e,this.y8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cornerRadius",{get:function(){return this.y7},set:function(t){var e=this.y7;this.y7=t,e!=this.y7&&this.w2("CornerRadius",e,this.y7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualCornerRadius",{get:function(){return this.y6},set:function(t){var e=this.y6;this.y6=t,e!=this.y6&&this.w2("ActualCornerRadius",e,this.y6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isActiveCellStyleEnabled",{get:function(){return this.hq},set:function(t){var e=this.hq;this.hq=t,this.hq!=e&&this.w2("IsActiveCellStyleEnabled",e,this.hq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"platformPixelConverter",{get:function(){return this.g6},set:function(t){this.g6=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"renderingEngine",{get:function(){return this.e2},set:function(t){this.e2=t,this.w4(this.e2)},enumerable:!1,configurable:!0}),e.prototype.w4=function(t){null!=t&&t.refresh(this.model,!1)},Object.defineProperty(e.prototype,"responsiveStates",{get:function(){return this.fq},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"model",{get:function(){return this.gk},set:function(t){this.gk=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualVisibleRegion",{get:function(){return new n.Rect(0,this.gk.cm,this.gk.cr,this.gk.cs,this.gk.ch)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"initialSortDescriptions",{get:function(){return this.b1},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"initialGroupDescriptions",{get:function(){return this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"initialSummaryDescriptions",{get:function(){return this.b6},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"initialSorts",{get:function(){return this.o1},set:function(t){var e=this,n=this.o1;this.o1=t,n!=t&&(this.b1.n(),this.aa.b(this.o1,(function(t,n,i){return e.b1.j.add(new Ot(2,t,n))})))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"initialGroups",{get:function(){return this.o0},set:function(t){var e=this,n=this.o0;this.o0=t,n!=t&&(this.a3.n(),this.aa.b(this.o0,(function(t,n,i){return e.a3.j.add(((r=new kt(2,t,n)).v=i,r));var r})))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"initialSummaries",{get:function(){return this.o2},set:function(t){var e=this,n=this.o2;this.o2=t,n!=t&&(this.b6.j.clear(),this.ab.a(this.o2,(function(t,n,i){return e.b6.j.add(new vt(2,t,n))})))},enumerable:!1,configurable:!0}),e.prototype.u3=function(t,e){this.b6.j.clear();for(var i=e.split(","),r=0;r<i.length;r++){var o=i[r].trim().split("(");if(2!=o.length)throw new n.ArgumentException(1,"Invalid syntax provided for initial summaries");var a=4;switch(o[0].toLowerCase()){case"avg":a=3;break;case"sum":a=2;break;case"min":a=0;break;case"max":a=1;break;case"count":a=4}o[1]=n.stringReplace(o[1],")",""),this.b6.j.add(new vt(2,o[1],a))}},e.prototype.jb=function(t,e){if(null==t||null==e)return!1;if(t.length!=e.length)return!1;for(var n=0;n<t.length;n++)if(t[n]!=e[n])return!1;return!0},Object.defineProperty(e.prototype,"sortDescriptions",{get:function(){return this.b2},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"groupDescriptions",{get:function(){return this.a2},enumerable:!1,configurable:!0}),e.prototype.wd=function(t,e){var n;null!=this.columnPinnedChanged&&this.columnPinnedChanged(this,((n=new di).a=t,n.b=e,n))},Object.defineProperty(e.prototype,"filterExpressions",{get:function(){return this.t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryDescriptions",{get:function(){return this.b7},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryScope",{get:function(){return this.gg},set:function(t){var e=this.gg;this.gg=t,this.is=!0,e!=this.gg&&this.w2("SummaryScope",n.enumGetBox(ft,e),n.enumGetBox(ft,this.gg))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isGroupCollapsable",{get:function(){return this.hw},set:function(t){var e=this.hw;this.hw=t,this.hx=!0,e!=this.hw&&this.w2("IsGroupCollapsable",e,this.hw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"groupHeaderDisplayMode",{get:function(){return this.er},set:function(t){var e=this.er;this.er=t,this.hl=!0,e!=this.er&&this.w2("GroupHeaderDisplayMode",n.enumGetBox(gt,e),n.enumGetBox(gt,this.er))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isGroupExpandedDefault",{get:function(){return this.hy},set:function(t){var e=this.hy;this.hy=t,this.hz=!0,e!=this.hy&&this.w2("IsGroupExpandedDefault",e,this.hy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"groupSummaryDisplayMode",{get:function(){return this.et},set:function(t){var e=this.et;this.et=t,this.hm=!0,e!=this.et&&this.w2("GroupSummaryDisplayMode",n.enumGetBox(N,e),n.enumGetBox(N,this.et))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"autoAcceptEdits",{get:function(){return this.hf},set:function(t){this.hf=t},enumerable:!1,configurable:!0}),e.prototype.w2=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.xp(t,e,i),null!=this.postPropertyChanged&&this.postPropertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.x6=function(){},e.prototype.xu=function(){var t=this;if(0!=this.lx){var e=this.model.absoluteWidth,i=this.model.absoluteHeight;this.k1=!0,this.gb.r(this,this.model,n.truncate(this.mg)),e==this.model.absoluteWidth&&i==this.model.absoluteHeight||this.externalGrid.onContentSizeChanged(),this.k1=!1,this.gj.ah(),this.renderingEngine.invalidateVisibility((function(){return t.gj.t(t)})),this.renderingEngine.refresh(this.model,!1)}},e.prototype.xv=function(){var t=this;this.hp?this.ux():(this.renderingEngine.invalidateVisibility((function(){return t.gj.t(t)})),this.renderingEngine.refresh(this.model,!0))},e.prototype.vm=function(){null!=this.calculateCompleted&&this.calculateCompleted(this,null)},e.prototype.ux=function(){this.hp&&(this.hp=!1,this.xu(),this.invalidateVisibleRows())},Object.defineProperty(e.prototype,"k1",{get:function(){return this.ij},set:function(t){this.ij=t},enumerable:!1,configurable:!0}),e.prototype.refresh=function(){var t=this;this.ij||(this.renderingEngine.invalidateVisibility((function(){return t.gj.t(t)})),this.renderingEngine.refresh(this.model,!1))},e.prototype.flush=function(){null!=this.actualDataSource&&this.actualDataSource.flushAutoRefresh(),this.dw.an(!0),this.renderingEngine.refresh(this.model,!0)},Object.defineProperty(e.prototype,"actualDataSource",{get:function(){return this.w},set:function(t){var e=this.w;this.w=t,this.w!=e&&this.w2("ActualDataSource",e,this.w)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"primaryKey",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,this.d!=e&&this.w2("PrimaryKey",e,this.d)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualPrimaryKey",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,this.a!=e&&this.w2("ActualPrimaryKey",e,this.a)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ix",{get:function(){return this.hb},set:function(t){this.hb=t},enumerable:!1,configurable:!0}),e.prototype.xp=function(t,e,i){var r=this;if("ItemsSource"==t){if(null!=this.w){var o=this.w;o.schemaChanged=n.delegateRemove(o.schemaChanged,n.runOn(this,this.um));var a=this.w;if(a.rootSummariesChanged=n.delegateRemove(a.rootSummariesChanged,n.runOn(this,this.ul)),null!=this.y){var s=this.y;s.dataCommitted=n.delegateRemove(s.dataCommitted,n.runOn(this,this.uk))}this.w.updateNotifier=null,this.sortDescriptions.b=null,this.groupDescriptions.b=null,this.filterExpressions.syncTarget=null,this.summaryDescriptions.b=null,this.actualPrimaryKey=this.m()}if(null!==n.typeCast(n.IDataSource_$type,this.itemsSource))this.actualDataSource=this.itemsSource;else{var l=this.externalGrid.createLocalDataSource(this.itemsSource);this.actualDataSource=l}if(null!=this.w){this.y=n.typeCast(n.IEditableDataSource_$type,this.actualDataSource);var u=this.w;u.schemaChanged=n.delegateCombine(u.schemaChanged,n.runOn(this,this.um));var c=this.w;if(c.rootSummariesChanged=n.delegateCombine(c.rootSummariesChanged,n.runOn(this,this.ul)),null!=this.y){var h=this.y;h.dataCommitted=n.delegateCombine(h.dataCommitted,n.runOn(this,this.uk))}this.w.updateNotifier=new ri(this,this.w.updateNotifier),this.w.isVirtual&&(this.model.b3=this.isPlaceholderRenderingEnabled),this.reactsToSortChanges&&(this.sortDescriptions.b=this.w.sortDescriptions,this.ip&&(0==this.sortDescriptions.j.count&&(this.b1.b=this.w.sortDescriptions),this.ip=!1)),this.reactsToGroupChanges&&(this.groupDescriptions.b=this.w.groupDescriptions,this.io&&(0==this.groupDescriptions.j.count&&(this.a3.b=this.w.groupDescriptions),this.io=!1)),this.reactsToFilterChanges&&(this.filterExpressions.syncTarget=this.w.filterExpressions,this.im&&(0==this.filterExpressions.k.count&&(this.u.syncTarget=this.w.filterExpressions),this.im=!1)),this.summaryDescriptions.b=this.w.summaryDescriptions,this.iq&&(0==this.summaryDescriptions.j.count&&(this.b6.b=this.w.summaryDescriptions),this.iq=!1),this.w.propertiesRequested=this.n(),null!=this.primaryKey&&(this.actualDataSource.primaryKey=this.primaryKey),this.actualPrimaryKey=this.m(),null!=this.w.actualSchema&&(null!=this.renderingEngine&&this.xq(),this.delayedExecutionManager.executeIn((function(){return r.wl()}),0),this.e6.setDataSource(this.w)),this.je=!0,this.jd=!0,this.iu=!0,this.it=!0,this.yv(this.selectedItems,this.selectedKeys),this.yv(this.pinnedItems,this.pinnedKeys),this.f5.a2(),this.je=!1,this.jd=!1,this.iu=!1,this.it=!1;for(var p=0;p<this.pinnedKeys.ae.count;++p)this.e7.pinRow(this.pinnedKeys.ae._inner[p]);if(this.hx&&(this.actualDataSource.isSectionCollapsable=this.isGroupCollapsable),this.hl&&(this.actualDataSource.sectionHeaderDisplayMode=this.groupHeaderDisplayMode),this.is&&(this.actualDataSource.summaryScope=this.summaryScope),this.hz&&(this.actualDataSource.isSectionExpandedDefault=this.isGroupExpandedDefault),this.hm)switch(this.groupSummaryDisplayMode){case 1:case 0:case 4:this.actualDataSource.includeSummaryRowsInSection=!1;break;case 2:this.actualDataSource.includeSummaryRowsInSection=!0,this.actualDataSource.isSectionSummaryRowsAtBottom=!1;break;case 3:this.actualDataSource.includeSummaryRowsInSection=!0,this.actualDataSource.isSectionSummaryRowsAtBottom=!0}this.yx()}}if("AutoGenerateColumns"==t&&(this.ay.p=this.autoGenerateColumns),"AutoGenerateDesiredColumns"==t&&(this.ay.b=this.autoGenerateDesiredProperties),"IsPlaceholderRenderingEnabled"==t&&null!=this.w&&this.w.isVirtual&&(this.model.b3=this.isPlaceholderRenderingEnabled),"ColumnResizingMode"==t&&(this.j2=this.k3()),"ActivationMode"==t&&(this.ji=this.k2()),"SelectionMode"==t)switch(this.ji=this.k2(),this.selectionMode){case 1:if(this.selectedCellRanges.count>0&&this.selectedCellRanges.clear(),this.selectedCells.count>0&&this.selectedCells.clear(),this.selectedKeys.count>1){var d=this.selectedKeys._inner[this.selectedKeys.count-1];this.selectedKeys.clear(),this.selectedKeys.add(d)}break;case 2:this.selectedCellRanges.count>0&&this.selectedCellRanges.clear(),this.selectedCells.count>0&&this.selectedCells.clear();break;case 3:if(this.selectedKeys.count>0&&this.selectedKeys.clear(),this.selectedCellRanges.count>0&&this.selectedCellRanges.clear(),this.selectedCells.count>1){var f=this.selectedCells._inner[this.selectedCells.count-1];this.selectedCells.clear(),this.selectedCells.add(f)}break;case 4:this.selectedKeys.count>0&&this.selectedKeys.clear(),this.selectedCellRanges.count>0&&this.selectedCellRanges.clear();break;case 5:this.selectedCells.count>0&&this.selectedCells.clear(),this.selectedKeys.count>0&&this.selectedKeys.clear();break;case 0:this.selectedKeys.count>0&&this.selectedKeys.clear(),this.selectedCells.count>0&&this.selectedCells.clear(),this.selectedCellRanges.count>0&&this.selectedCellRanges.clear()}if("ColumnMovingSeparator"==t){var m=e,g=i;null!=m&&(m.definitionPropertyUpdated=n.delegateRemove(m.definitionPropertyUpdated,n.runOn(this,this.ui)),m.grid=null),null!=g&&(g.definitionPropertyUpdated=n.delegateCombine(g.definitionPropertyUpdated,n.runOn(this,this.ui)),g.grid=this)}if("RowSeparator"==t){var y=e,v=i;null!=y&&(y.definitionPropertyUpdated=n.delegateRemove(y.definitionPropertyUpdated,n.runOn(this,this.ya)),y.grid=null),null!=v&&(v.definitionPropertyUpdated=n.delegateCombine(v.definitionPropertyUpdated,n.runOn(this,this.ya)),v.grid=this),this.k4()&&(y.f5.equals(v.f5)||this.c5.s(this,null,"Background",2,y.f5,v.f5,!1,!0,!1,!1),y.ga.equals(v.ga)||this.c5.s(this,null,"LastStickyRowBackground",2,y.ga,v.ga,!1,!0,!1,!1),y.gc.equals(v.gc)||this.c5.s(this,null,"StickyRowBackground",2,y.gc,v.gc,!1,!0,!1,!1),y.gb.equals(v.gb)||this.c5.s(this,null,"PinnedRowBackground",2,y.gb,v.gb,!1,!0,!1,!1))}if("HeaderRowSeparator"==t){var C=e,x=i;null!=C&&(C.definitionPropertyUpdated=n.delegateRemove(C.definitionPropertyUpdated,n.runOn(this,this.uz)),C.grid=null),null!=x&&(x.definitionPropertyUpdated=n.delegateCombine(x.definitionPropertyUpdated,n.runOn(this,this.uz)),x.grid=this)}if("HeaderSeparator"==t){var _=e,w=i;null!=_&&(_.definitionPropertyUpdated=n.delegateRemove(_.definitionPropertyUpdated,n.runOn(this,this.u0)),_.grid=null),null!=w&&(w.definitionPropertyUpdated=n.delegateCombine(w.definitionPropertyUpdated,n.runOn(this,this.u0)),w.grid=this)}if("ColumnResizingSeparator"==t){var S=i;null!=e&&(e.grid=null),null!=S&&(S.grid=this)}if("ColumnMovingSeparator"==t){var P=i;null!=e&&(e.grid=null),null!=P&&(P.grid=this)}if("DataSourceDesiredProperties"==t&&null!=this.w&&(this.w.propertiesRequested=this.dataSourceDesiredProperties),"PrimaryKey"==t&&(null!=this.actualDataSource&&null!=this.primaryKey&&(this.actualDataSource.primaryKey=i),this.actualPrimaryKey=this.m()),"ActualRowHeight"!=t&&"ActualHeaderHeight"!=t&&"RowSeparatorHeight"!=t&&"IsGroupRowSticky"!=t&&"IsHeaderSeparatorVisible"!=t&&"ShiftSectionContent"!=t&&"PinnedAreaSeparatorWidth"!=t&&"MergedCellMode"!=t&&"MergedCellEvaluationCriteria"!=t||(this.j2=this.k3(),this.k4()&&this.xu()),"DefaultColumnWidth"!=t&&"DefaultColumnMinWidth"!=t&&"Inset"!=t&&"HeaderSeparatorWidth"!=t||null!=this.model&&null!=this.model.b9&&this.model.b9.count>0&&this.xu(),"SectionHeader"==t){if(null!=e){var O=n.typeCast(nr.$,e);O.sectionHeaderPropertyUpdating=n.delegateRemove(O.sectionHeaderPropertyUpdating,n.runOn(this,this.xb)),O.grid=null}if(null!=this.sectionHeader){var I=this.sectionHeader;I.sectionHeaderPropertyUpdating=n.delegateCombine(I.sectionHeaderPropertyUpdating,n.runOn(this,this.xb)),this.sectionHeader.grid=this}this.model.b5=!0,this.xu()}if("PinnedAreaSeparator"==t){if(null!=e)n.typeCast(Ji.$,e).grid=null;null!=this.pinnedAreaSeparator&&(this.pinnedAreaSeparator.grid=this),this.xu()}("ActiveCell"==t&&(this.dg=n.typeCast(b.$,e),this.iv=!0,null!=this.activeCell&&this.activeCell.b>=0?this.ad.ab(this.activeCell.b,this.activeCell.d,!0):this.ad.ad(),this.iv=!1),"ReactsToSortChanges"==t)&&(i?null!=this.w&&(this.sortDescriptions.b=this.w.sortDescriptions):this.sortDescriptions.b=null);"ReactsToGroupChanges"==t&&(i?null!=this.w&&(this.groupDescriptions.b=this.w.groupDescriptions):this.groupDescriptions.b=null);"ReactsToFilterChanges"==t&&(i?null!=this.w&&(this.filterExpressions.syncTarget=this.w.filterExpressions):this.filterExpressions.syncTarget=null);if("IsGroupCollapsable"==t&&null!=this.actualDataSource&&(this.actualDataSource.isSectionCollapsable=i),"GroupHeaderDisplayMode"==t&&null!=this.actualDataSource&&(this.actualDataSource.sectionHeaderDisplayMode=n.EnumUtil.getEnumValue(n.DataSourceSectionHeaderDisplayMode_$type,i)),"SummaryScope"==t&&null!=this.actualDataSource&&(this.actualDataSource.summaryScope=n.EnumUtil.getEnumValue(n.DataSourceSummaryScope_$type,i)),"IsGroupExpandedDefault"==t&&null!=this.actualDataSource&&(this.actualDataSource.isSectionExpandedDefault=i),"GroupSummaryDisplayMode"==t){if(this.sectionHeader.g0=this.groupSummaryDisplayMode,this.model.b5=!0,null!=this.actualDataSource)switch(this.groupSummaryDisplayMode){case 1:case 0:case 4:this.actualDataSource.includeSummaryRowsInSection=!1;break;case 2:this.actualDataSource.includeSummaryRowsInSection=!0,this.actualDataSource.isSectionSummaryRowsAtBottom=!1;break;case 3:this.actualDataSource.includeSummaryRowsInSection=!0,this.actualDataSource.isSectionSummaryRowsAtBottom=!0}this.xu()}if("Density"!=t&&"RowHeight"!=t||this.wm(),"HeaderHeight"==t){this.wm();var j=this.jw()?this.actualRowHeight+this.rowSeparatorHeight:0;this.externalGrid.setScrollerVerticalTrackInset(this.actualHeaderHeight+this.rowSeparatorHeight+j)}if("DefaultBorderWidth"!=t&&"BorderWidth"!=t||(this.actualBorderWidth=this.abl(this.borderWidth,this.abm)),"DefaultCornerRadius"!=t&&"CornerRadius"!=t||(this.actualCornerRadius=this.za(this.cornerRadius,this.zc)),"Border"!=t&&"ActualCornerRadius"!=t&&"ActualBorderWidth"!=t||this.externalGrid.setBorder(this.border,this.actualBorderWidth.left,this.actualBorderWidth.top,this.actualBorderWidth.right,this.actualBorderWidth.bottom,this.actualCornerRadius.d,this.actualCornerRadius.e,this.actualCornerRadius.b,this.actualCornerRadius.c),"EditMode"==t&&this.yx(),"FilterUIType"==t){this.xu();var k=this.jw()?this.actualRowHeight+this.rowSeparatorHeight:0;this.externalGrid.setScrollerVerticalTrackInset(this.actualHeaderHeight+this.rowSeparatorHeight+k)}"ScrollbarStyle"==t&&this.externalGrid.setScrollbarStyle(this.scrollbarStyle),"ScrollbarBackground"==t&&this.externalGrid.setScrollbarColor(this.scrollbarBackground)},e.prototype.yx=function(){null!=this.y&&(2==this.editMode||3==this.editMode?this.y.isBatchingEnabled=!0:this.y.isBatchingEnabled=!1)},e.prototype.za=function(t,e){return new n.CornerRadius(1,n.isNaN_(t.d)?e.d:t.d,n.isNaN_(t.e)?e.e:t.e,n.isNaN_(t.c)?e.c:t.c,n.isNaN_(t.b)?e.b:t.b)},e.prototype.abl=function(t,e){return new n.Thickness(1,n.isNaN_(t.left)?e.left:t.left,n.isNaN_(t.top)?e.top:t.top,n.isNaN_(t.right)?e.right:t.right,n.isNaN_(t.bottom)?e.bottom:t.bottom)},e.prototype.syncBorder=function(){null!=this.externalGrid&&this.externalGrid.setBorder(this.border,this.actualBorderWidth.left,this.actualBorderWidth.top,this.actualBorderWidth.right,this.actualBorderWidth.bottom,this.actualCornerRadius.d,this.actualCornerRadius.e,this.actualCornerRadius.b,this.actualCornerRadius.c)},e.prototype.wm=function(){if(-1==this.rowHeight)switch(this.density){case 0:case 2:this.actualRowHeight=h.r;break;case 4:case 3:this.actualRowHeight=h.q;break;case 1:this.actualRowHeight=h.p}else this.actualRowHeight=this.rowHeight;if(-1==this.headerHeight)switch(this.density){case 0:case 2:this.actualHeaderHeight=h.r;break;case 4:case 3:this.actualHeaderHeight=h.q;break;case 1:this.actualHeaderHeight=h.p}else this.actualHeaderHeight=this.headerHeight},e.prototype.m=function(){return null!=this.primaryKey?this.primaryKey:null!=this.actualDataSource?this.actualDataSource.actualPrimaryKey:null},e.prototype.n=function(){return!this.autoGenerateColumns&&null==this.dataSourceDesiredProperties&&null==this.w.propertiesRequested&&this.columns.count>0?this.h():null!=this.dataSourceDesiredProperties?this.dataSourceDesiredProperties:this.w.propertiesRequested},e.prototype.h=function(){for(var t=new Array(this.columns.count),e=0;e<this.columns.count;e++)t[e]=this.columns._inner[e].lo;return t},e.prototype.ui=function(t,e){10!=e.animationType&&(null!=e.propertyName&&n.stringStartsWith(e.propertyName,"Actual")&&(e.propertyName=e.propertyName.substr(6)),this.c5.r(this,null,e.propertyName,e.animationType,e.oldValue,e.newValue,8))},e.prototype.ya=function(t,e){this.yb(e.propertyName,e.animationType,e.oldValue,e.newValue,!1)},e.prototype.uz=function(t,e){this.yb(e.propertyName,e.animationType,e.oldValue,e.newValue,!0)},e.prototype.u0=function(t,e){this.u1(e.propertyName,e.animationType,e.oldValue,e.newValue)},e.prototype.yb=function(t,e,i,r,o){10!=e&&(null!=t&&n.stringStartsWith(t,"Actual")&&(t=t.substr(6)),this.c5.s(this,null,t,e,i,r,o,!0,!1,!1))},e.prototype.u1=function(t,e,i,r){if(10!=e){null!=t&&n.stringStartsWith(t,"Actual")&&(t=t.substr(6));for(var o=0;o<this.model.b9.count;o++){var a=this.model.b9._inner[o];this.c5.s(this,a,t,e,i,r,!0,!1,!1,!0)}}},e.prototype.um=function(t,e){this.wl()},e.prototype.ul=function(t,e){this.w5()},e.prototype.qz=function(t){var e="";return null!=t.propertyName?e+=t.propertyName:e+="unidentified",e+="@@@",e+=n.EnumUtil.getName(n.DataSourceSummaryOperand_$type,t.operand)},e.prototype.w5=function(){this.ut(),this.summaryDescriptions.j.count>0&&null!=this.rootSummariesChanged&&this.rootSummariesChanged(this,new n.DataSourceRootSummariesChangedEventArgs)},e.prototype.ut=function(){if(null!=this.actualDataSource){var t=this.actualDataSource.getRootSummaryResults();if(null!=t)for(var e=0;e<t.length;e++){var i=t[e];"number"==typeof i.value?this.lj.item(this.qz(i),n.typeGetValue(i.value)):"number"==typeof i.value?this.lj.item(this.qz(i),i.value):"number"==typeof i.value||"number"==typeof i.value?this.lj.item(this.qz(i),n.typeGetValue(i.value)):this.lj.item(this.qz(i),i.value)}}},e.prototype.uk=function(t,e){null!=this.dataCommitted&&this.dataCommitted(this,new Le(e.commitID,e.changes))},e.prototype.wl=function(){this.e6.setDataSource(this.w),this.ay.d=this.w.actualSchema,this.yy(),this.ut();for(var t=0;t<this.groupDescriptions.j.count;t++)this.x7(this.groupDescriptions.j.item(t));for(var e=0;e<this.summaryDescriptions.j.count;e++)this.x8(this.summaryDescriptions.j.item(e));this.hp?this.ux():(this.xu(),this.invalidateVisibleRows())},e.prototype.vg=function(){var t,e;if(null!=this.columnsAutoGenerated){var r=new li;r.columns=this.actualColumns,this.columnsAutoGenerated(this,r)}try{for(var o=i.__values(n.fromEnum(this.actualColumns)),a=o.next();!a.done;a=o.next()){a.value.jq=!1}}catch(e){t={error:e}}finally{try{a&&!a.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}},e.prototype.onSizeChanged=function(t,e){var n;this.mg=t,this.mf=e,this.fo.y(t,e),this.xu(),null!=this.sizeChanged&&this.sizeChanged(this,((n=new He).b=t,n.a=e,n))},e.prototype.notifyScrollStart=function(){this.le=!0},e.prototype.notifyScrollStop=function(){this.le=!1,this.jc&&(this.e1.f(this.oe),this.jc=!1)},e.prototype.setViewport=function(t,e,i,r){this.m6=-1,this.m7=-1;var o,a=new n.Rect(0,t,e,i-t,r-e);if(a.x!=this.model.actualVisibleRegion.x||a.y!=this.model.actualVisibleRegion.y||a.width!=this.model.actualVisibleRegion.width||a.height!=this.model.actualVisibleRegion.height){var s=this.model.actualVisibleRegion;this.model.actualVisibleRegion=a,this.xv(),null!=this.viewportChanged&&this.viewportChanged(this,((o=new x).g=a.x,o.d=s.x,o.h=a.y,o.e=s.y,o.f=a.width,o.c=s.width,o.a=a.height,o.b=s.height,o))}},Object.defineProperty(e.prototype,"actualColumns",{get:function(){return this.ax.j},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columns",{get:function(){return this.dl},enumerable:!1,configurable:!0}),e.prototype.wy=function(t,e,n){var i=this.ci(t.l);t.ay=!0,i.el(t,this,e,n),t.ay=!1,i.en(t,this,e,n)},e.prototype.wx=function(t,e,i,r){var o=this.ci(t.l);if(!n.Base.equalsStatic(r,t.kc)){t.kc=r;var a=o.ba(r);null!=a&&t.km(a),t.ay=!0,o.el(t,this,e,i),t.ay=!1}o.en(t,this,e,i)},e.prototype.cf=function(t){return this.ay.h(t)},e.prototype.hideThenRemoveColumn=function(t){t.jg=!0,t.jo=!0},e.prototype.exchangeColumn=function(t,e){var i=this.columns.indexOf(e);if(-1!=i){if(null!=t&&t.jn||null!=e&&e.jn)throw new n.InvalidOperationException(1,"Cannot exchange a column created from markup");if(this.columns.contains(t)){if(!t.jo)return;this.externalGrid.removeExternalColumn(t.externalObject)}var r=this.columnExchangingAnimationMode;0==r&&(r=t.he());var o=!1;if(2!=r&&7!=r||(o=!0),t.ht=3,o?this.externalGrid.insertExternalColumnAtIndex(i+1,t.externalObject):this.externalGrid.insertExternalColumnAtIndex(i,t.externalObject),e.il=t.il,this.jl(t)||(t.jo=!1,t.ht=5,this.externalGrid.removeExternalColumn(e.externalObject),this.v6(t)),this.xu(),this.jl(t)){var a=this.model.h(e.ko).a;e.ht=2,t.ht=1,this.c5.aj(this,this.columnAnimationSettings,this.model.h(e.ko),this.model.h(t.ko),a)}}},e.prototype.t3=function(t,e){var n=this;if(this.f5.aa(),this.ad.ag(),this.f5.a1(),this.cj.j&&(this.ja(!1),3==this.editMode&&this.uq(!1)),!this.lc){switch(e.action){case 0:if(null!=e.newItems)for(var i=0;i<e.newItems.count;i++)this.v9(i+e.newStartingIndex,e.newItems.item(i));break;case 1:if(null!=e.oldItems)for(var r=0;r<e.oldItems.count;r++)this.we(e.oldStartingIndex,e.oldItems.item(r));break;case 2:if(null!=e.oldItems)for(var o=0;o<e.oldItems.count;o++)this.we(e.oldStartingIndex,e.oldItems.item(o));if(null!=e.newItems)for(var a=0;a<e.newItems.count;a++)this.v9(a+e.newStartingIndex,e.newItems.item(a));break;case 4:this.wh()}this.xu(),this.ic||(this.ic=!0,this.delayedExecutionManager.executeIn((function(){var t;n.ic=!1,null!=n.actualColumnsChanged&&n.actualColumnsChanged(n,((t=new ui).columns=n.actualColumns,t))}),0))}},e.prototype.wh=function(){this.gb.w(this.d1,this.model)},e.prototype.we=function(t,e){e.grid=null,e.propertyChanged=n.delegateRemove(e.propertyChanged,n.runOn(this,this.ud)),e.columnCellsPropertyUpdating=n.delegateRemove(e.columnCellsPropertyUpdating,n.runOn(this,this.ue)),e.columnHeaderCellsPropertyUpdating=n.delegateRemove(e.columnHeaderCellsPropertyUpdating,n.runOn(this,this.uh)),this.gb.v(this.d1,t,e,this.model),this.xu(),e.ht=0,this.f5.ag(t,e)},e.prototype.v9=function(t,e){if(e.grid=this,e.propertyChanged=n.delegateCombine(e.propertyChanged,n.runOn(this,this.ud)),e.columnCellsPropertyUpdating=n.delegateCombine(e.columnCellsPropertyUpdating,n.runOn(this,this.ue)),e.columnHeaderCellsPropertyUpdating=n.delegateCombine(e.columnHeaderCellsPropertyUpdating,n.runOn(this,this.uh)),this.gb.t(t,e,this.model),e.jo&&(e.ht=3),this.jj(e)&&!e.jo&&3!=e.ht){var i=e.ht;e.ht=1,this.xu(),this.c5.ar(this,this.columnAnimationSettings,this.model.h(e.ko),!0,i)}else this.xu();for(var r=0;r<this.sortDescriptions.j.count;r++)if(e.lo==this.sortDescriptions.j.item(r).f){e.hr=this.b5(this.sortDescriptions.j.item(r).c);break}this.f5.ae(t,e)},e.prototype.ue=function(t,e,i,r,o){if("Pinned"!=e&&"IsHidden"!=e||this.cj.j&&(this.ja(!1),3==this.editMode&&this.uq(!1)),"Width"==e||"MinWidth"==e||"Pinned"==e)return this.xu(),this.uc(),"Width"==e&&this.wi(t,r,o),void("Pinned"==e&&this.wd(t,t.il));if(10!=i){var a=this.model.h(t.ko);null!=a&&(null!=e&&n.stringStartsWith(e,"Actual")&&(e=e.substr(6)),"HeaderText"!=e?"ColumnOptionsIconAlignment"!=e&&"ColumnOptionsIconColor"!=e&&"ColumnOptionsIconBehavior"!=e&&"IsColumnOptionsEnabled"!=e?("FormatString"==e&&(null===n.typeCast(Qi.$,t)&&null===n.typeCast(Fi.$,t)||(e="FormatStringOverride")),"EditorItemsSourceInternal"==e&&(e=n.stringReplace("EditorItemsSourceInternal","Internal","")),"Filter"!=e?"MergedCellVerticalAlignment"!=e?"MergedCellPaddingLeft"!=e&&"MergedCellPaddingRight"!=e&&"MergedCellPaddingTop"!=e&&"MergedCellPaddingBottom"!=e?("SortDirection"==e&&0==this.j3&&(this.f9.f(t,t.hr),t.m0("Sorted")),n.stringStartsWith(e,"transition@@@")?this.c5.r(this,a,e,i,r,o,1):this.c5.s(this,a,e,i,r,o,!1,!1,!1,!1)):this.c5.r(this,a,n.stringRemove(e,0,10),i,r,o,12):this.c5.r(this,a,"VerticalAlignment",i,r,o,12):this.c5.r(this,a,e,i,r,o,11)):this.uh(t,e,i,r,o):this.uh(t,"TextValue",i,r,o))}},e.prototype.xb=function(t,e,i,r,o){10!=i&&(null!=e&&n.stringStartsWith(e,"Actual")&&(e=e.substr(6)),this.c5.s(this,null,e,i,r,o,!1,!1,!0,!1))},e.prototype.uh=function(t,e,i,r,o){if(10!=i){var a=this.model.h(t.ko);null!=a&&(null!=e&&n.stringStartsWith(e,"Actual")&&(e=e.substr(6)),this.c5.s(this,a,e,i,r,o,!0,!1,!1,!1))}},e.prototype.pinColumn=function(t,e){var i=e;if(null==i&&(e=0),"number"==typeof i){var r=n.typeGetValue(i);null==n.EnumUtil.getName(E,r)&&(e=0),e=r}else e=n.typeGetValue(n.EnumUtil.parse(E,i,!0));var o=this.columns.indexOf(t);if(-1!=o&&t.il!=e){this.ja(!1),t.kh=this.gb.k(o,this,this.model),t.ki=this.model.b9._inner[o].n,t.ik=t.il,t.il=e,this.gb.s(this.model);var a=t.ht;this.jn(t)&&(t.ht=6,this.c5.al(this,this.columnAnimationSettings,this.model.h(t.ko),a))}},e.prototype.moveColumn=function(t,e){var i=this;this.externalGrid.ensureColumnsAreManual();var r,o=this.columns._inner[t];if(e=Math.min(this.columns.count-1,Math.max(0,e)),this.lc=!0,null!=o&&o.jn)throw new n.InvalidOperationException(1,"Can't move a column that was created from markup");if(e>t){if(this.columns._inner[e-1].jn)throw new n.InvalidOperationException(1,"Can't move a column to before columns created from markup")}else if(this.columns._inner[e].jn)throw new n.InvalidOperationException(1,"Can't move a column to before columns created from markup");this.externalGrid.removeExternalColumn(o.externalObject),this.externalGrid.insertExternalColumnAtIndex(e,o.externalObject),this.lc=!1,this.ja(!1),this.wa(t,e,o),null!=this.actualColumnsChanged&&this.actualColumnsChanged(this,((r=new ui).columns=i.actualColumns,r))},e.prototype.moveColumnLeft=function(t){this.ki(t,!0,!0)},e.prototype.moveColumnRight=function(t){this.ki(t,!1,!0)},e.prototype.canMoveColumnLeft=function(t){return this.ki(t,!0,!1)},e.prototype.canMoveColumnRight=function(t){return this.ki(t,!1,!1)},e.prototype.ki=function(t,e,n){var i=this.actualColumns,r=i.count-1,o=i._inner[t],a=o.il,s=-1,l=t;do{if((l+=e?-1:1)<0||l>r)break;var u=i._inner[l];u.jo||u.il!=a||(s=l)}while(-1==s);if(-1!=s)return n&&this.moveColumn(t,s),!0;switch(o.il){case 0:var c=this.cd(e);if(null==c)return!1;n&&(s=i.indexOf(c),this.moveColumn(t,s+(e?1:-1)),o.il=c.il);break;case 1:if(e)return!1;if(n){var h=this.cc(!0);null==h?this.pinColumn(i._inner[t],0):(s=i.indexOf(h),this.moveColumn(t,s-1),o.il=0)}break;case 2:if(!e)return!1;if(n){var p=this.cc(!1);null==p?this.pinColumn(i._inner[t],0):(s=i.indexOf(p),this.moveColumn(t,s+1),o.il=0)}}return!0},e.prototype.cd=function(t){for(var e=t?1:2,n=this.actualColumns,i=this.model.cg,r=i.count-1,o=t?0:r,a=i._inner[o],s=n._inner[a],l=null;s.il==e&&(l=s,!((o+=t?1:-1)<0||o>r));)a=i._inner[o],s=n._inner[a];return l},e.prototype.cc=function(t){for(var e=this.actualColumns,n=this.model.cg,i=n.count-1,r=t?0:i,o=n._inner[r],a=e._inner[o];0!=a.il&&!((r+=t?1:-1)<0||r>i);)o=n._inner[r],a=e._inner[o];return 0==a.il?a:null},e.prototype.wa=function(t,e,n){n.kh=this.gb.k(t,this,this.model),n.kg=t,n.ki=this.model.b9._inner[t].n;var i=n.ht;this.gb.u(this.d1,this.model,t,e,n.ko),this.jn(n)||3==i||(n.ht=5),this.xu(),this.jn(n)&&(n.ht=6,this.c5.al(this,this.columnAnimationSettings,this.model.h(n.ko),i)),this.f5.af(t,e,n)},e.prototype.ud=function(t,e){var n,i=t;switch(e.propertyName){case"Filter":case"FilterExpression":this.yy();break;case"IsHidden":if(i.jo)if(this.jm(i)){var r=i.ht;i.ht=2,this.xu(),this.c5.ak(this,this.columnAnimationSettings,this.model.h(i.ko),!1,r)}else i.ht=3,i.jd&&(this.externalGrid.ensureColumnsAreManual(),this.externalGrid.removeExternalColumn(i.externalObject)),this.xu();else if(this.jt(i)){var o=i.ht;i.ht=1,this.xu(),this.c5.ar(this,this.columnAnimationSettings,this.model.h(i.ko),!1,o)}else i.ht=5,this.c5.ai(this,this.model.h(i.ko)),this.dw.ab(),this.xu();null!=this.columnHiddenChanged&&this.columnHiddenChanged(this,((n=new pi).a=i,n.b=i.jo,n));break;case"MergedCellMode":this.k4()&&this.xu()}},e.prototype.yy=function(){if(null!=this.actualDataSource){var t=this.z(null);if(null!=t){t.markAutoGenerated();var e=!1;if(null!=this.filterExpressions)for(var n=0;n<this.filterExpressions.k.count;n++)if(this.filterExpressions.k.item(n).isAutoGenerated){this.filterExpressions.k.item(n,t),e=!0;break}e||this.filterExpressions.add(t)}else for(var i=this.filterExpressions.k.count-1;i>=0;i--)this.filterExpressions.k.item(i).isAutoGenerated&&this.filterExpressions.removeAt(i)}},e.prototype.ci=function(t){var e=this.e6.getRowType(t.x);if(0==e||3==e){if(t.ay)return t.g?this.headerRowSeparator:this.rowSeparator;if(t.av&&null!=this.dragger){if(1==this.dragger.dragType)return this.columnResizingSeparator;if(2==this.dragger.dragType)return this.columnMovingSeparator}if(t.aq||t.as||t.ap||t.ar)return this.pinnedAreaSeparator;if(t.ak)return this.co;if(t.al)return this.cp;if(t.am)return this.cy;var i=this.cf(t);return t.g?t.h?this.headerSeparator:i.header:i}if(t.ay)return t.g?this.headerRowSeparator:this.rowSeparator;switch(e){case 1:return 1!=this.groupSummaryDisplayMode?this.sectionHeader:this.cf(t);case 2:return this.f1;case 4:return this.summaryRowRoot;case 5:return this.summaryRowSection;default:throw new n.NotSupportedException(0)}},e.prototype.q0=function(t,e,n,i){return this.ci(t).d1(t,e,n,i)},e.prototype.al=function(t,e){var n=this.ci(t).m(t,e);return n.p=this,n},e.prototype.exportVisualModel=function(){return null!=this.columnGrouping&&(this.model.bu=this.columnGrouping.exportVisualModel()),null!=this.pager&&(this.model.b=this.pager.e()),null!=this.toolbar&&(this.model.bv=this.toolbar.exportVisualModel()),this.model.c()},e.prototype.exportSerializedVisualModel=function(){return this.exportVisualModel().a5()},e.prototype.fu=function(t){return this.e7.getRowPathForRow(t)},e.prototype.scrollToRowByIndex=function(t){var e,r;if(!this.model.actualVisibleRegion.isEmpty){var o=n.truncate(this.model.actualVisibleRegion.left);-1!=this.m6&&(o=this.m6);var a=0,s=0;t<0&&(t=0),t>=this.e7.getRowCount()&&(t=this.e7.getRowCount()-1);var l=0;try{for(var u=i.__values(n.fromEnum(this.model.ce)),c=u.next();!c.done;c=u.next()){var h=c.value;if(s+h.m>t){l=n.truncate(Math.floor(t-s));var p=h.e(l);a=h.f(l),a+=n.truncate(Math.round(p*(t-s-l)))}else s+=h.m}}catch(t){e={error:t}}finally{try{c&&!c.done&&(r=u.return)&&r.call(u)}finally{if(e)throw e.error}}for(var d=this.gj.n(this,this.model,new n.Rect(0,o,a,this.model.cs,this.model.ch)),f=-1,m=-1,g=!1,y=0;y<d.count;y++){if(d._inner[y].m==l){f=y,m=d._inner[y].n;break}if(d._inner[y].m>l){f=y-1;break}switch(d._inner[y].a){case 3:case 5:g=!0;break;case 1:g=!1}}-1==f&&(f=d.count-1);for(var b=0,v=f;v>=0;v--)g?d._inner[v].n>=m&&(3!=d._inner[v].a&&5!=d._inner[v].a&&(m=d._inner[v].n,g=!1),b+=d._inner[v].k+this.rowSeparatorHeight+this.rowSpacingHeight):d._inner[v].n>m&&(3!=d._inner[v].a&&(m=d._inner[v].n),b+=d._inner[v].k+this.rowSeparatorHeight+this.rowSpacingHeight);a-=n.truncate(b),a=Math.max(a,0),this.model.absoluteHeight>0&&this.model.actualVisibleRegion.height>0&&a+this.model.actualVisibleRegion.height>this.model.absoluteHeight&&(a=n.truncate(Math.round(this.model.absoluteHeight-this.model.actualVisibleRegion.height))),a<0&&(a=0),this.m7=a,this.m6=o,this.viewportManager.moveViewportTo(o,a)}},e.prototype.scrollToLastRowByIndex=function(t){var e,r,o=n.truncate(this.model.actualVisibleRegion.left);-1!=this.m6&&(o=this.m6);var a=0,s=0;t<0&&(t=0),t>=this.e7.getRowCount()&&(t=this.e7.getRowCount()-1);var l=0;try{for(var u=i.__values(n.fromEnum(this.model.ce)),c=u.next();!c.done;c=u.next()){var h=c.value;if(s+h.m>t){var p=n.truncate(Math.floor(t-s)),d=h.e(p);l=d,a=h.i+h.f(p),a+=n.truncate(Math.round(d*(t-s-p)))}else s+=h.m}}catch(t){e={error:t}}finally{try{c&&!c.done&&(r=u.return)&&r.call(u)}finally{if(e)throw e.error}}a-=this.model.c3,a=Math.max(a,0),this.model.absoluteHeight>0&&this.model.actualVisibleRegion.height>0&&(a-=n.truncate(Math.round(this.model.actualVisibleRegion.height-this.model.df-(l+this.model.c3)))),this.model.absoluteHeight>0&&this.model.actualVisibleRegion.height>0&&a+this.model.actualVisibleRegion.height>this.model.absoluteHeight&&(a=n.truncate(Math.round(this.model.absoluteHeight-this.model.actualVisibleRegion.height))),a<0&&(a=0),this.m7=a,this.m6=o,this.viewportManager.moveViewportTo(o,a)},e.prototype.scrollToItem=function(t){var e=this.dataIndexOfItem(t);return-1!=e&&(this.scrollToRowByIndex(e),!0)},e.prototype.scrollToPrimaryKey=function(t){var e=this.dataIndexOfPrimaryKey(t);return-1!=e&&(this.scrollToRowByIndex(e),!0)},e.prototype.scrollToColumnByIndex=function(t){var e=n.truncate(t);if(e<0&&(e=0,t=0),t>this.model.b9.count&&(e=this.model.b9.count-1,t=this.model.b9.count-1),0==this.columns._inner[e].il){var i=this.gb.k(e,this,this.model),r=n.truncate(this.model.actualVisibleRegion.top);-1!=this.m7&&(r=this.m7);var o=i+n.truncate(this.model.b9._inner[e].k*(t-e));o-=this.model.cz,this.model.absoluteWidth>0&&this.model.actualVisibleRegion.width>0&&o+this.model.actualVisibleRegion.width>this.model.absoluteWidth&&(o=n.truncate(Math.round(this.model.absoluteWidth-this.model.actualVisibleRegion.width))),o<0&&(o=0),this.m7=r,this.m6=o,this.viewportManager.moveViewportTo(o,r)}},e.prototype.yd=function(t){var e=n.truncate(t);e<0&&(e=0,t=0),t>this.model.b9.count&&(e=this.model.b9.count-1,t=this.model.b9.count-1);this.columns._inner[e];var i=this.gb.k(e,this,this.model),r=n.truncate(this.model.actualVisibleRegion.top);-1!=this.m7&&(r=this.m7);var o=i+n.truncate(this.model.b9._inner[e].k*(t-e)),a=this.model.actualVisibleRegion.width-this.model.c0;this.model.absoluteWidth>0&&a>0&&(o-=n.truncate(Math.round(a-this.model.b9._inner[e].k))),this.model.absoluteWidth>0&&this.model.actualVisibleRegion.width>0&&o+this.model.actualVisibleRegion.width>this.model.absoluteWidth&&(o=n.truncate(Math.round(this.model.absoluteWidth-this.model.actualVisibleRegion.width))),o<0&&(o=0),this.m7=r,this.m6=o,this.viewportManager.moveViewportTo(o,r)},e.prototype.k8=function(t){return this.jj(t)},e.prototype.wk=function(t,e){if(1==this.activationMode&&null!=this.activeCell&&this.activeCell.b>=t&&this.activeCell.b<=e&&null!=this.activeCellChanged){var n=new Xe;n.newActiveCell=this.activeCell,n.oldActiveCell=this.activeCell,this.activeCellChanged(this,n)}var i=this.getFirstVisibleIndex(),r=this.getLastVisibleIndex();e<i||t>r||(t<i&&(t=i),e>r&&(e=r),this.k4()&&(this.c5.z(this,t,e,!1),this.e7.getRowCount()!=this.model.c5()?this.xu():this.xv(),this.uc()))},e.prototype.uc=function(){if(!this.model.actualVisibleRegion.isEmpty){if(this.model.actualVisibleRegion.bottom>this.model.absoluteHeight||this.model.actualVisibleRegion.top>this.model.absoluteHeight){var t=this.e7.getRowCount()-1;t<0&&(t=0),this.scrollToRowByIndex(t)}if(this.model.actualVisibleRegion.right>this.model.absoluteWidth||this.model.actualVisibleRegion.left>this.model.absoluteWidth){var e=this.ay.j.count-1;e<0&&(e=0),this.yd(e)}}},e.prototype.nv=function(t){return this.gb.i(this.model,t.l)},e.prototype.k4=function(){return null!=this.model.bw&&null!=this.model.bx&&this.model.bx.x>=0&&this.model.bw.x>=0},e.prototype.getLastVisibleIndex=function(){return this.gb.i(this.model,this.model.bw)},e.prototype.getFirstVisibleIndex=function(){return this.gb.i(this.model,this.model.bx)},e.prototype.nx=function(){var t=this.gb.b(this.model.actualVisibleRegion.top+this.model.c6+this.model.c7+this.model.dg,this.model);return this.gb.i(this.model,t)},e.prototype.n2=function(){var t=this.gb.b(this.model.actualVisibleRegion.bottom-this.model.df,this.model);return this.gb.i(this.model,t)},e.prototype.xk=function(){var t=this.getFirstVisibleIndex(),e=this.getLastVisibleIndex();this.e7.firstVisibleIndexRequested=t,this.e7.lastVisibleIndexRequested=e},Object.defineProperty(e.prototype,"j9",{get:function(){return null!=this.cellPreviewPointerDown},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ka",{get:function(){return null!=this.cellPreviewPointerUp},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j7",{get:function(){return null!=this.cellPointerDown},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j8",{get:function(){return null!=this.cellPointerUp},enumerable:!1,configurable:!0}),e.prototype.k2=function(){return 0!=this.selectionMode||null!=this.cellClicked||0!=this.activationMode||2!=this.columnResizingMode||1!=this.columnMovingMode},e.prototype.k3=function(){return 2!=this.columnResizingMode&&this.isHeaderSeparatorVisible||1!=this.columnMovingMode},e.prototype.t8=function(t){void 0===t&&(t=!1),this.lk.clear(),this.ll.clear(),this.lm.clear(),this.ln.clear(),this.hc=!0,this.hd=t},e.prototype.ur=function(){this.hc&&(this.je=!0,this.y3(this.lk,this.ll,this.lm,this.ln),this.je=!1),this.hc=!1},e.prototype.w9=function(t,e){if(null==t){var n=this.selectedKeys.ae.indexOf(e);n>-1&&this.selectedItems.ae.count>0&&(t=this.selectedItems.ae._inner[n])}null!=t&&(this.je=!0,this.hc?(this.lk.add1(t),this.ll.add(e),this.hd&&this.t7(t,e,!1)):this.t7(t,e,!0),this.je=!1)},e.prototype.xa=function(t,e){if(null==t){var n=this.selectedKeys.ae.indexOf(e);n>-1&&this.selectedItems.ae.count>0&&(t=this.selectedItems.ae._inner[n])}null!=t&&(this.je=!0,this.hc?(this.lm.add1(t),this.ln.add(e),this.hd&&this.x4(t,e,!1)):this.x4(t,e,!0),this.je=!1)},e.prototype.xg=function(t,e,n){this.je=!0,this.y2(t,e,n),this.je=!1},e.prototype.vn=function(t,e,n){if(!this.iv){var i=new b;i.d=n,i.b=t,this.activeCell=i}if(null!=this.activeCellChanged){var r=new Xe;r.newActiveCell=this.activeCell,r.oldActiveCell=this.dg,this.activeCellChanged(this,r)}this.vo()},e.prototype.vq=function(t,e){if(null!=e){var n=this.activeCell;if(!this.iv){var i=new b;i.d=e,i.b=t,this.activeCell=i}if(null!=this.activeCellChanged){var r=new Xe;r.newActiveCell=this.activeCell,r.oldActiveCell=n,this.activeCellChanged(this,r)}this.vo()}},e.prototype.vo=function(){if(this.ju()&&this.editOnKeyPress)if(null!=this.activeCell){var t=this.ay.g(this.activeCell.d);if(null!=t){var e=this.activeCell.b,n=this.actualColumns.indexOf(t);if(t.jl){var i=this.model.e(n,e);null!=i?this.cj.ab(i):this.aq=new S(3,n,e,1)}else this.cj.v()}else this.cj.v()}else this.cj.v()},e.prototype.kk=function(t,e){if(this.cj.j)return!1;if(0==this.activationMode||null==this.activeCell)return!1;var n=this.df.b,i=this.df.d;if(n>this.e7.getRowCount()-1)return!1;var r=n+1;if(e&&(r=this.e7.getRowCount()-1),r>this.e7.getRowCount()-1&&(r=this.e7.getRowCount()-1),r==n)return!1;var o=Math.min(this.ad.s(),this.actualColumns.count-1);o=this.nu(o);var a,s=this.actualColumns._inner[o];if(i!=s.lt()&&(i=s.lt()),1!=this.groupSummaryDisplayMode){var l=this.e7.getRowType(r);1!=l&&2!=l||(i=null)}if(this.activeCell=((a=new b).b=r,a.d=i,a),this.model.b9.count>0&&this.t9(r,this.model.b9._inner[o].n,!1),this.ik=!1,2==this.selectionMode&&t){-1==this.nh&&(this.nh=n);var u=Math.min(this.nh,r),c=Math.max(this.nh,r);this.ym(u,c)}else if(5==this.selectionMode&&t){-1==this.nh&&(this.nh=n),-1==this.ng&&(this.ng=this.model.b9._inner[o].n);var h=new _e;h.l=Math.min(this.nh,r),h.k=Math.min(this.ng,this.model.b9._inner[o].n),h.j=Math.max(this.nh,r),h.i=Math.max(this.ng,this.model.b9._inner[o].n),this.yh(h)}else this.nh=-1,this.ng=-1,this.as=null,this.lo.clear(),this.lp.clear();return this.xh(),!0},e.prototype.kl=function(t,e){if(this.cj.j)return!0;if(0==this.activationMode||null==this.activeCell)return!1;var n=this.ad.s(),i=(this.actualColumns._inner[n],this.n1(!0)),r=this.actualColumns._inner[i],o=this.df.b,a=this.df.d;if(e){if(o>=this.e7.getRowCount()-1&&a==r.lt())return!1;o=this.e7.getRowCount()-1}else if(a==r.lt())return!1;a=r.lt();var s,l=this.e7.getRowType(o);return 1!=l&&2!=l||(a=null),this.activeCell=((s=new b).b=o,s.d=a,s),this.t9(o,this.model.b9._inner[i].n,!1),!0},e.prototype.n1=function(t){void 0===t&&(t=!1);var e=this.actualColumns.count-1,n=this.gb.j(e,this.model);if(t)for(;e>0&&(this.actualColumns._inner[n].jo||1==this.actualColumns._inner[n].il);)e--,n=this.gb.j(e,this.model);else for(;e>0&&(this.actualColumns._inner[n].jo||0!=this.actualColumns._inner[n].il);)e--,n=this.gb.j(e,this.model);return n},e.prototype.nw=function(t){void 0===t&&(t=!1);var e=0,n=this.gb.j(e,this.model);if(t)for(;e<this.actualColumns.count-1&&(this.actualColumns._inner[n].jo||2==this.actualColumns._inner[n].il);)e++,n=this.gb.j(e,this.model);else for(;e<this.actualColumns.count-1&&(this.actualColumns._inner[n].jo||0!=this.actualColumns._inner[n].il);)e++,n=this.gb.j(e,this.model);return n},e.prototype.n6=function(t,e){void 0===e&&(e=!0);var n=Math.max(0,t-1);if(e||(n=this.gb.j(n,this.model)),this.actualColumns._inner[n].jo){for(var i=n,r=this.model.b9._inner[n].n;r>0&&this.actualColumns._inner[i].jo;)r--,i=this.gb.j(r,this.model);if(this.actualColumns._inner[i].jo){for(i=n,r=this.model.b9._inner[n].n;r<this.actualColumns.count-1&&this.actualColumns._inner[i].jo;)r++,i=this.gb.j(r,this.model);this.actualColumns._inner[i].jo||(n=i)}else n=i}return n},e.prototype.n5=function(t,e){void 0===e&&(e=!0);var n=Math.min(this.actualColumns.count-1,t+1);return e||(n=this.gb.j(n,this.model)),this.nu(n)},e.prototype.nu=function(t){if(t=Math.min(t,this.actualColumns.count-1),this.actualColumns._inner[t].jo){for(var e=t,n=this.model.b9._inner[e].n;n<this.actualColumns.count-1&&this.actualColumns._inner[e].jo;)n++,e=this.gb.j(n,this.model);if(this.actualColumns._inner[e].jo){for(e=t,n=this.model.b9._inner[e].n;n>0&&this.actualColumns._inner[e].jo;)n--,e=this.gb.j(n,this.model);this.actualColumns._inner[e].jo||(t=e)}else t=e}return t},e.prototype.t9=function(t,e,n,i){void 0===i&&(i=!1),(e=Math.max(0,Math.min(e,this.model.b9.count-1)))<=this.ny()?(e=this.gb.j(e,this.model),0==this.model.b9._inner[e].d&&this.scrollToColumnByIndex(e)):e>=this.n3()&&(e=this.gb.j(e,this.model),0==this.model.b9._inner[e].d&&this.yd(e)),i||(t<=this.nx()?this.scrollToRowByIndex(t):t>=this.n2()&&(n?this.scrollToRowByIndex(t):this.scrollToLastRowByIndex(t)))},e.prototype.kp=function(t,e){if(this.cj.j)return!0;if(0==this.activationMode||null==this.activeCell)return!1;var n,i=this.ad.s(),r=(this.actualColumns._inner[i],this.nw(!0)),o=this.actualColumns._inner[r],a=this.df.b,s=this.df.d;if(e){if(a<=0&&s==o.lt())return!1;a=0}else if(s==o.lt())return!1;if(s=o.lt(),1!=this.groupSummaryDisplayMode){var l=this.e7.getRowType(a);1!=l&&2!=l||(s=null)}return this.activeCell=((n=new b).b=a,n.d=s,n),this.t9(a,this.model.b9._inner[r].n,!1),!0},e.prototype.kr=function(t,e){if(this.cj.j)return!1;if(0==this.activationMode||null==this.activeCell)return!1;if(e)return this.kp(!1,!1);var n=this.ad.s(),i=this.model.b9._inner[n].n,r=this.df.b,o=this.df.d;if(null==o)return!1;var a,s=this.n6(i,!1),l=this.model.b9._inner[s].n,u=this.actualColumns._inner[s];if(o==u.lt())return!1;if(o=u.lt(),this.activeCell=((a=new b).b=r,a.d=o,a),this.model.b9.count>0&&0==u.il&&this.t9(r,this.model.b9._inner[s].n,!1),5==this.selectionMode&&t){-1==this.nh&&(this.nh=r),-1==this.ng&&(this.ng=i);var c=new _e;c.l=Math.min(this.nh,r),c.k=Math.min(this.ng,l),c.j=Math.max(this.nh,r),c.i=Math.max(this.ng,l),this.ik=!1,this.yh(c),this.xh()}else this.ng=-1,this.as=null;return!0},e.prototype.ks=function(t,e){if(0==this.activationMode||null==this.activeCell)return!1;var n,i=this.df.d,r=this.ad.s(),o=(this.getFirstVisibleIndex(),this.getLastVisibleIndex()),a=Math.min(o+1,this.e7.getRowCount()-1);if(!this.cj.j){var s=this.e7.getRowType(a);1==s||2==s?i=null:null==i&&(i=this.ad.v),this.activeCell=((n=new b).b=a,n.d=i,n)}return this.t9(a,this.model.b9._inner[r].n,!0),!0},e.prototype.kt=function(t,e){if(0==this.activationMode||null==this.activeCell)return!1;var n,i=this.df.d,r=this.ad.s(),o=this.getFirstVisibleIndex(),a=this.getLastVisibleIndex()-o,s=Math.max(o-a-1,0);if(!this.cj.j){var l=this.e7.getRowType(s);1==l||2==l?i=null:null==i&&(i=this.ad.v),this.activeCell=((n=new b).b=s,n.d=i,n)}return this.t9(s,this.model.b9._inner[r].n,!1),!0},e.prototype.ku=function(t,e){if(this.cj.j)return!1;if(0==this.activationMode||null==this.activeCell)return!1;if(e)return this.kl(!1,!1);var n=this.ad.s(),i=this.model.b9._inner[n].n,r=this.df.b,o=this.df.d;if(null==o)return!1;var a,s=this.n5(i,!1),l=this.model.b9._inner[s].n,u=this.actualColumns._inner[s];if(o==u.lt())return!1;if(o=u.lt(),this.activeCell=((a=new b).b=r,a.d=o,a),this.model.b9.count>0&&0==u.il&&this.t9(r,this.model.b9._inner[s].n,!1),5==this.selectionMode&&t){-1==this.nh&&(this.nh=r),-1==this.ng&&(this.ng=i);var c=new _e;c.l=Math.min(this.nh,r),c.k=Math.min(this.ng,l),c.j=Math.max(this.nh,r),c.i=Math.max(this.ng,l),this.ik=!1,this.yh(c),this.xh()}else this.ng=-1,this.as=null;return!0},e.prototype.kw=function(t,e){if(0==this.activationMode||null==this.activeCell)return!1;var n=this.ad.s(),i=this.model.b9._inner[n].n,r=this.df.b,o=this.df.d,a=r,s=o,l=n,u=0;a>=0&&a<this.e7.getRowCount()&&(u=this.e7.getRowType(a));var c,h=1!=this.groupSummaryDisplayMode&&1==u,p=1!=u&&2!=u&&4!=u&&5!=u;this.actualColumns._inner[n],this.actualColumns._inner[n];if(t){var d=void 0,f=null;do{if(d=this.n6(i,!1),f=this.actualColumns._inner[d],s==f.lt()||h){if(!(a>0))return!1;a--,h=1==(u=this.e7.getRowType(a)),p=1!=u&&2!=u&&4!=u&&5!=u,d=1!=this.groupSummaryDisplayMode&&1==u?this.nw(!0):this.n1(!0),f=this.actualColumns._inner[d]}i=this.model.b9._inner[d].n,s=f.lt()}while(this.cj.j&&a>=0&&(!p||!f.jl));if(1!=this.groupSummaryDisplayMode&&(1==u||2==u)){var m=this.n1(),g=this.actualColumns._inner[m];this.ad.ab(r,g.lt(),!1),s=null}l=d,f}else{var y=void 0,v=null;do{if(y=this.n5(i,!1),v=this.actualColumns._inner[y],s==v.lt()||h){if(!(a<this.e7.getRowCount()-1))return!1;y=this.nw(!0),v=this.actualColumns._inner[y],a++,h=1==(u=this.e7.getRowType(a)),p=1!=u&&2!=u&&4!=u&&5!=u}i=this.model.b9._inner[y].n,s=v.lt()}while(this.cj.j&&a<this.e7.getRowCount()&&(!p||!v.jl));if(1!=this.groupSummaryDisplayMode&&(1==u||2==u)){var C=this.nw(),x=this.actualColumns._inner[C];this.ad.ab(r,x.lt(),!1),s=null}l=y,v}return!this.cj.j||o==s&&r==a?(this.activeCell=function(){var t=new b;return t.b=a,t.d=s,t}(),this.t9(a,this.model.b9._inner[l].n,!1)):(this.ja(!0),this.cj.j||(this.activeCell=((c=new b).b=a,c.d=s,c),this.t9(a,this.model.b9._inner[l].n,!1),this.lg())),!0},e.prototype.xl=function(){},e.prototype.kx=function(t,e){if(this.cj.j)return!1;if(0==this.activationMode||null==this.activeCell)return!1;var n=this.df.b,i=this.df.d;if(n<0)return!1;var r=n-1;if(e&&(r=0),r<0&&(r=0),r==n)return!1;var o=Math.min(this.ad.s(),this.actualColumns.count-1);o=this.nu(o);var a,s=this.actualColumns._inner[o];if(i!=s.lt()&&(i=s.lt()),1!=this.groupSummaryDisplayMode){var l=this.e7.getRowType(r);1!=l&&2!=l||(i=null)}if(this.activeCell=((a=new b).b=r,a.d=i,a),this.model.b9.count>0&&this.t9(r,this.model.b9._inner[o].n,!1),this.ik=!1,2==this.selectionMode&&t){-1==this.nh&&(this.nh=n);var u=Math.min(this.nh,r),c=Math.max(this.nh,r);this.ym(u,c)}else if(5==this.selectionMode&&t){-1==this.nh&&(this.nh=n),-1==this.ng&&(this.ng=this.model.b9._inner[o].n);var h=new _e;h.l=Math.min(this.nh,r),h.k=Math.min(this.ng,this.model.b9._inner[o].n),h.j=Math.max(this.nh,r),h.i=Math.max(this.ng,this.model.b9._inner[o].n),this.yh(h)}else this.nh=-1,this.ng=-1,this.as=null,this.lo.clear(),this.lp.clear();return this.xh(),!0},e.prototype.km=function(t,e){if(this.cj.j){if(this.ja(!0))switch(3==this.editMode&&this.uq(!0),this.enterBehaviorAfterEdit){case 1:this.kk(!1,!1);break;case 4:this.kw(!0,!1);break;case 2:this.kw(!1,!1);break;case 3:this.kx(!1,!1)}}else if(0!=this.activationMode&&null!=this.activeCell){var n=this.e7.getRowType(this.activeCell.b);if(1==n)this.y0(this.activeCell.b);else if(!this.ju()||1!=this.enterBehavior||0!=n&&3!=n)switch(this.enterBehavior){case 2:this.kk(!1,!1);break;case 5:this.kw(!0,!1);break;case 3:this.kw(!1,!1);break;case 4:this.kx(!1,!1)}else{var i=this.ad.s(),r=this.actualColumns._inner[i];if(null!=r&&r.jl){var o=this.model.e(i,this.activeCell.b);return this.lb(o)}}}return!1},e.prototype.kn=function(){if(!this.cj.j&&this.clearSelectionOnEscape){if(this.je=!0,1==this.selectionMode||2==this.selectionMode)this.deselectAllRows(),this.lo.clear(),this.lp.clear(),this.nh=-1,this.ng=-1;else if(3==this.selectionMode||4==this.selectionMode){if(this.selectedCells.am.count>0){var t=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!0,this.selectedCells.clear(),this.notifyOnAllSelectionChanges=t,this.f5.a1()}}else if(5==this.selectionMode){if(this.selectedCellRanges.count>0){var e=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!0,this.selectedCellRanges.clear(),this.notifyOnAllSelectionChanges=e,this.f5.a0()}this.as=null,this.nh=-1,this.ng=-1}this.je=!1}return this.ju()&&(-1!=this.cj.p&&this.y.rejectPendingTransaction(this.cj.p),this.ja(!1),3==this.editMode&&this.uq(!1)),!1},e.prototype.ko=function(){return this.lg()},e.prototype.kv=function(t,e){if(this.cj.j)return!1;if(1==this.activationMode&&null!=this.activeCell&&(1==this.selectionMode||2==this.selectionMode)){var n=null,i=this.e7.getRowType(this.activeCell.b);if(0==i||5==i||4==i||3==i){var r=this.ay.g(this.activeCell.d),o=this.model.h(r.ko);n=this.model.e(o.n,this.activeCell.b)}else 1!=i&&2!=i||(n=this.model.e(-400,this.activeCell.b));null!=n&&this.f5.z(n,t,e,!0)}return!1},e.prototype.lg=function(){if(this.cj.j)return this.ja(!0),!0;if(0!=this.activationMode&&null!=this.activeCell){var t=this.e7.getRowType(this.activeCell.b);if(this.ju()&&(0==t||3==t)){var e=this.ad.s(),n=this.actualColumns._inner[e];if(null!=n&&n.jl){var i=this.model.e(e,this.activeCell.b);return null==i?this.ap=new S(3,e,this.activeCell.b,1):this.lb(i),!0}}}return!1},e.prototype.lb=function(t){if(!this.ju()||null==t||t.l.a5<0||t.l.x<0||t.l.a1||t.ct>0)return!1;this.ap=null,this.cj.i(!0,!1);var e=!1;if(3==this.editMode&&t.l.x!=this.cj.o&&(this.uq(!0),e=!0),!this.cf(t.l).jl)return!1;if(this.cj.ad(t),0==t.y){var n=this.model.b9._inner[t.l.a5].n;this.t9(t.l.x,n,!1,t.bk)}this.m1=t.l.x;var i=this.actualColumns._inner[this.cj.q],r=this.cj.o,o=this.cj.s;return e&&this.w7(r,o),this.vt(i,r,o),!0},e.prototype.ja=function(t,e){if(void 0===e&&(e=!0),this.cj.j){var n=this.actualColumns._inner[this.cj.q],i=this.cj.o,r=this.cj.s;return!!this.cj.i(t,e)&&(this.vs(n,i,r),this.editOnKeyPress||this.externalGrid.focusScroller(),!0)}return!0},e.prototype.uq=function(t){if(3==this.editMode&&-1!=this.m1){this.m1=-1;var e=this.cj.o,n=this.cj.s;this.cj.w(),this.w6(e,n),t?this.autoAcceptEdits&&(this.canCommit?this.commitEdits():this.cancelEdits()):this.cancelEdits()}},e.prototype.v2=function(t,e){if(this.je=!0,!this.iw)this.selectedCells.af(t,this.ay.f(e).lt());if(null!=this.selectedCellsChanged){var n=new ci;n.addedCells=new Pi,n.addedCells.add(this.selectedCells.ai(t,e)),n.removedCells=new Pi,n.currentCells=this.selectedCells,this.selectedCellsChanged(this,n)}this.je=!1},e.prototype.v3=function(t,e){this.je=!0;var n=this.selectedCells.ai(t,e);if(null!=n&&(this.iw||this.selectedCells.remove(n),null!=this.selectedCellsChanged)){var i=new ci;i.addedCells=new Pi,i.removedCells=new Pi,i.removedCells.add(n),i.currentCells=this.selectedCells,this.selectedCellsChanged(this,i)}this.je=!1},e.prototype.xh=function(){this.ik&&null!=this.selectionChanged&&(this.selectionChanged(this,new Ze),this.ik=!1)},e.prototype.y3=function(t,e,n,i){if(0!=t.count||0!=e.count||0!=n.count||0!=i.count){var r=this.notifyOnAllSelectionChanges;if(this.notifyOnAllSelectionChanges=!1,!this.iu&&!this.hd&&(t.count>0&&(this.selectedItems.o(t),this.selectedKeys.o(e),this.ik=!0),n.count>0)){this.selectedKeys.ah=!0,this.selectedItems.af=!0;for(var o=n.count-1;o>=0;o--){var a=this.selectedKeys.al(i._inner[o]);a>=0&&(this.selectedItems.removeAt(a),this.selectedKeys.removeAt(a))}this.selectedItems.af=!1,this.selectedKeys.ah=!1,this.ik=!0}this.notifyOnAllSelectionChanges=r,this.xc(n,t),this.xf(i,e)}},e.prototype.t6=function(t,e){var n=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1,this.iu||(this.selectedItems.o(t),this.selectedKeys.o(e),this.ik=!0),this.notifyOnAllSelectionChanges=n,this.xc(null,t),this.xf(null,e)},e.prototype.t7=function(t,e,n){var i=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1,this.iu||(this.selectedItems.add1(t),this.selectedKeys.add(e)),this.notifyOnAllSelectionChanges=i,n&&(this.xd(null,t),this.xe(null,e))},e.prototype.y2=function(t,e,n){var i=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1;this.selectedItems.ae._inner[t];this.iu||(this.selectedItems.ae._inner[t]=e),this.notifyOnAllSelectionChanges=i,this.xd(e,e)},e.prototype.x3=function(t,e){var n=this.notifyOnAllSelectionChanges;if(this.notifyOnAllSelectionChanges=!1,!this.iu)for(var i=0;i<t.count;i++)this.selectedItems.remove1(t._inner[i]),this.selectedKeys.remove(e._inner[i]);this.notifyOnAllSelectionChanges=n,this.xc(t,null),this.xf(e,null)},e.prototype.x4=function(t,e,n){var i=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1,this.iu||(this.selectedItems.remove1(t),this.selectedKeys.remove(e)),this.notifyOnAllSelectionChanges=i,n&&(this.xd(t,null),this.xe(e,null))},e.prototype.xd=function(t,e){if(!this.lf&&null!=this.selectedItemsChanged){var n=new $e;if(n.currentItems=this.selectedItems,null!=t){var i=new xe;i.add1(t),n.removedItems=i}if(null!=e){var r=new xe;r.add1(e),n.addedItems=r}this.selectedItemsChanged(this,n)}},e.prototype.xe=function(t,e){if(!this.lf&&null!=this.selectedKeysChanged){var n=new ze;n.currentKeys=this.selectedKeys,null!=t&&(n.removedKeys=new c,n.removedKeys.ag=!1,n.removedKeys.add(t)),null!=e&&(n.addedKeys=new c,n.addedKeys.ag=!1,n.addedKeys.add(e)),this.selectedKeysChanged(this,n)}},e.prototype.xc=function(t,e){if(!this.lf&&null!=this.selectedItemsChanged){var n=new $e;n.currentItems=this.selectedItems,null!=t&&(n.removedItems=new xe,n.removedItems.o(t)),null!=e&&(n.addedItems=new xe,n.addedItems.o(e)),this.selectedItemsChanged(this,n)}},e.prototype.xf=function(t,e){if(!this.lf&&null!=this.selectedKeysChanged){var n=new ze;n.currentKeys=this.selectedKeys,null!=t&&(n.removedKeys=new c,n.removedKeys.ag=!1,n.removedKeys.o(t)),null!=e&&(n.addedKeys=new c,n.addedKeys.ag=!1,n.addedKeys.o(e)),this.selectedKeysChanged(this,n)}},e.prototype.t5=function(t,e,n,i){var r=new _e;r.k=t,r.i=e,r.l=n,r.j=i,this.t4(r)},e.prototype.t4=function(t){if(this.selectedCellRanges.add(t),this.at=t,null!=this.selectedCellRangesChanged){var e=new Ge;e.addedRanges=((n=new we).add(t),n),e.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,e)}var n},e.prototype.x0=function(t){if(this.selectedCellRanges.contains(t)&&(this.selectedCellRanges.remove(t),null!=this.selectedCellRangesChanged)){var e=new Ge;e.removedRanges=((n=new we).add(t),n),e.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,e)}var n},e.prototype.xz=function(){if(this.selectedCellRanges.count>0){for(var t=new we,e=0;e<this.selectedCellRanges.count;e++)t.add(this.selectedCellRanges._inner[e]);if(this.selectedCellRanges.clear(),null!=this.selectedCellRangesChanged){var n=new Ge;n.removedRanges=t,n.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,n)}}},e.prototype.ve=function(t){if(this.selectedCellRanges.contains(t)&&null!=this.selectedCellRangesChanged){var e=new Ge;e.updatedRanges=((n=new we).add(t),n),e.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,e)}var n},e.prototype.xi=function(t,e,n){this.u4(t),e!=n&&(this.f5.aj(t),this.ad.ak(t))},e.prototype.u4=function(t){this.c5.am(this,t,t)},e.prototype.v4=function(){this.cj.j&&(this.ja(!1),this.m1=-1),this.f5.ad(),this.w5(),this.xu(),this.invalidateVisibleRows()},e.prototype.x9=function(t,e){for(var n=this.lq(t,e),i=0;i<n.count;i++){var r=n._inner[i];this.xy(r)}},e.prototype.x5=function(t,e){for(var n=this.lq(t,e),i=0;i<n.count;i++){var r=n._inner[i];this.us(r)}},e.prototype.lq=function(t,e){var i,r=new n.List$1(vt.$,0);return t.q()&&r.add(((i=new vt(0)).ah=e.lo,i.i=0,i.t=!1,i)),t.p()&&r.add(function(){var t=new vt(0);return t.ah=e.lo,t.i=1,t.t=!1,t}()),t.r()&&r.add(function(){var t=new vt(0);return t.ah=e.lo,t.i=2,t.t=!1,t}()),r},e.prototype.us=function(t){var e=t.ah+"@@@"+n.EnumUtil.getName(n.DataSourceSummaryOperand_$type,t.i);this.li.containsKey(e)||this.li.item(e,0),this.li.item(e,this.li.item(e)+1);for(var i=0;i<this.summaryDescriptions.j.count;i++)if(this.jv(this.summaryDescriptions.j.item(i),t))return;this.summaryDescriptions.g(t)},e.prototype.jv=function(t,e){return t.ah==e.ah&&t.i==e.i&&t.t==e.t},e.prototype.xy=function(t){var e=t.ah+"@@@"+n.EnumUtil.getName(n.DataSourceSummaryOperand_$type,t.i);this.li.containsKey(e)||this.li.item(e,0),this.li.item(e,this.li.item(e)+1);for(var i=!1,r=null,o=0;o<this.summaryDescriptions.j.count;o++)this.jv(this.summaryDescriptions.j.item(o),t)&&(i=!0,r=this.summaryDescriptions.j.item(o));i&&0==this.li.item(e)&&(this.summaryDescriptions.h(r),this.li.removeItem(e))},e.prototype.invalidateVisibleRows=function(){if(this.k4()){var t=this.getFirstVisibleIndex(),e=this.getLastVisibleIndex();this.u5(t,e)}},e.prototype.oy=function(t){if(null!=this.actualDataSource){var e="";if(null!=t.lo&&(e=t.lo+"@@@Min"),this.lj.containsKey(e))return this.lj.item(e)}return null},e.prototype.ox=function(t){if(null!=this.actualDataSource){var e="";if(null!=t.lo&&(e=t.lo+"@@@Max"),this.lj.containsKey(e))return this.lj.item(e)}return null},e.prototype.oz=function(t){if(null!=this.actualDataSource){var e="";if(null!=t.lo&&(e=t.lo+"@@@Sum"),this.lj.containsKey(e))return this.lj.item(e)}return null},e.prototype.u5=function(t,e){var n=this.getFirstVisibleIndex(),i=this.getLastVisibleIndex();e<n||t>i||(t<n&&(t=n),e>i&&(e=i),this.c5.z(this,t,e,!0),this.model.b5=!0,this.xv())},e.prototype.ny=function(){return this.gb.o(this.model.actualVisibleRegion.left+this.model.cz,this,this.model)},e.prototype.n3=function(){return this.gb.o(this.model.actualVisibleRegion.right-this.model.c0,this,this.model)},e.prototype.u6=function(t,e){var n=this.gb.i(this.model,t),i=this.gb.i(this.model,e);this.u5(n,i)},e.prototype.xq=function(){var t=this;this.hp||(this.hp=!0,this.gj.ah(),null!=this.renderingEngine&&(this.renderingEngine.invalidateVisibility((function(){return t.gj.t(t)})),this.renderingEngine.refresh(this.model,!1)))},e.prototype.ww=function(t,e){var n=this.e7.getRowPathForRow(t);this.dw.ae(n),this.f5.ah(this.gb.i(this.model,n)),this.ad.ai(this.gb.i(this.model,n)),this.xq()},e.prototype.w3=function(t,e){var n=this.e7.getRowPathForRow(t);if(this.dw.af(n),this.f5.ai(this.gb.i(this.model,n),e),this.ad.aj(this.gb.i(this.model,n)),1==this.selectionMode||2==this.selectionMode)if(null!=this.actualPrimaryKey)for(var i=this.e7.getItemKey(this.actualPrimaryKey,e),r=0;r<this.selectedKeys.count;r++)this.selectedKeys._inner[r].equals(i)&&(this.selectedKeys.removeAt(r),r--);else for(var o=0;o<this.selectedItems.count;o++)this.selectedItems._inner[o]==e&&(this.selectedItems.removeAt(o),o--);else if(3==this.selectionMode||4==this.selectionMode)for(var a=this.e7.getItemKey(this.actualPrimaryKey,e),s=0;s<this.selectedCells.count;s++)this.selectedCells._inner[s].primaryKey.equals(a)&&(this.selectedCells.removeAt(s),s--);this.xq()},e.prototype.setActiveResponsiveState=function(t){for(var e=0;e<this.fo.g.count;e++)this.fo.g._inner[e].n==t&&this.yo(this.fo.g._inner[e])},e.prototype.yo=function(t){this.fo.x(t)},e.prototype.notifySetItem=function(t,e,n){null!=this.w&&this.w.notifySetItem(t,e,n)},e.prototype.notifyClearItems=function(){null!=this.w&&this.w.notifyClearItems()},e.prototype.notifyInsertItem=function(t,e){null!=this.w&&this.w.notifyInsertItem(t,e)},e.prototype.notifyRemoveItem=function(t,e){null!=this.w&&this.w.notifyRemoveItem(t,e)},e.prototype.dataIndexOfItem=function(t){return null==this.w?-1:this.w.indexOfItem(t)},e.prototype.dataIndexOfPrimaryKey=function(t){return null==this.w?-1:this.w.indexOfKey(t)},e.prototype.i=function(){return null!=this.actualDataSource?this.actualDataSource.actualPrimaryKey:this.actualPrimaryKey},e.prototype.resolveCellValue=function(t){var e=null!=t.b?t.b:this.ay.g(t.j),n=null;return null!=t.h?n=t.h:null!=t.primaryKey&&(n=null==this.i()&&null==t.primaryKey.key&&1==t.primaryKey.value.length?t.primaryKey.value[0]:this.e7.getItemForKey(t.primaryKey)),null!=e&&null!=n?this.actualDataSource.getItemProperty(n,e.lo):null},e.prototype.resolveCellValueFromPosition=function(t,e){if(e<0||e>this.ay.j.count)return null;if(t<0||t>this.e7.getRowCount()-1)return null;var n=this.actualDataSource.getItemAtIndex(t);if(null==n)return null;var i=this.e7.getRowType(t);if(0!=i&&3!=i)return null;var r=this.gb.j(e,this.model),o=this.ay.j._inner[r];return this.actualDataSource.getItemProperty(n,o.lo)},e.prototype.getColumnAtRenderedIndex=function(t){var e=this.gb.j(t,this.model);return e>=0&&e<this.ay.j.count?this.ay.j._inner[e]:null},e.prototype.getRootSummaryResults=function(){return null!=this.actualDataSource?this.actualDataSource.getRootSummaryResults():null},e.prototype.getSectionSummaryResults=function(t){return null!=this.actualDataSource?this.actualDataSource.getSectionSummaryResults(t):null},Object.defineProperty(e.prototype,"reactsToSortChanges",{get:function(){return this.ii},set:function(t){var e=this.ii;this.ii=t,e!=this.ii&&this.w2("ReactsToSortChanges",e,this.ii)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"reactsToGroupChanges",{get:function(){return this.ih},set:function(t){var e=this.ih;this.ih=t,e!=this.ih&&this.w2("ReactsToGroupChanges",e,this.ih)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"reactsToFilterChanges",{get:function(){return this.ig},set:function(t){var e=this.ig;this.ig=t,e!=this.ig&&this.w2("ReactsToFilterChanges",e,this.ig)},enumerable:!1,configurable:!0}),e.prototype.z=function(t){for(var e=null,i=0;i<this.ay.j.count;i++){var r=this.ay.j._inner[i];if(r!=t&&(null!=r.g1||null!=r.g3)){var o=this.actualDataSource.resolveSchemaPropertyType(r.lo),a=null!=r.g3?r.g3:r.g1.resolveFilter(r.lo,o);if(null!=e)switch(this.filterLogicalOperator){case 1:e=n.FilterFactory.instance.or(e,a);break;case 0:e=n.FilterFactory.instance.and(e,a)}else e=a}}return e},e.prototype.lh=function(t,e,i,r,o){if(null!=this.actualDataSource&&e>=0&&e<this.actualColumns.count){var a=this.actualColumns._inner[e],s=this.actualDataSource.resolveSchemaPropertyType(a.lo),l=null;try{l=this.or(s,o)}catch(t){return this.cj.aa(t.message),!1}if(null==l&&null!=r||null!=l&&null==r||!n.Base.equalsStatic(l,r)){-1!=this.cj.p&&this.y.rejectPendingTransaction(this.cj.p),this.cj.aa(null);var u=this.e7.getItemKey(this.actualPrimaryKey,i),c=this.y.updatePropertyAtKey(u.value,a.lo,l,!0);if(this.ie=!0,null!=this.cellValueChanging){var h=((f=new fi).c=c,f.cellInfo=t,f.b=a,f.item=i,f.f=r,f.e=l,f);this.cellValueChanging(this,h);var p=this.y.getTransactionErrorByID(c);if(null!=p)return this.cj.aa(p),null!=t&&(t.fg=c),!1;this.y.isPendingTransaction(c)&&this.autoAcceptEdits&&(this.acceptEdit(c),this.y4(a,u,l))}else this.acceptEdit(c),this.y4(a,u,l);this.ie=!1}else if(-1!=this.cj.p){var d=this.y.getTransactionErrorByID(this.cj.p);if(null!=d)return this.cj.aa(d),!1}}var f;return!0},e.prototype.y4=function(t,e,n){if(null!=this.actualPrimaryKey){for(var i=!1,r=-1,o=0;o<this.actualPrimaryKey.length;o++)if(t.lo==this.actualPrimaryKey[o]){i=!0,r=o;break}if(i)if(1==this.selectionMode||2==this.selectionMode){var a=this.selectedKeys.ae.indexOf(e);if(a>-1){e.value[r]=n,this.selectedKeys.ae.item(a,e);var s=this.iu;this.iu=!0,this.f5.a2(),this.iu=s}}else if(3==this.selectionMode||4==this.selectionMode){for(var l=-1,u=0;u<this.selectedCells.am.count;u++)if(this.selectedCells._inner[u].primaryKey.equals(e)){l=u;break}if(l>-1){e.value[r]=n,this.selectedCells._inner[l].primaryKey=e;var c=this.iu;this.iu=!0,this.f5.a1(),this.iu=c}}}},e.prototype.or=function(t,e){if(null==e)return null;switch(t){case 2:return n.Convert.toBoolean(e);case 10:return n.Convert.toByte1(e);case 8:return n.Convert.toDateTime(e);case 6:return n.Convert.toDecimal2(e);case 5:return n.Convert.toDouble3(e);case 1:return n.Convert.toInt321(e);case 3:return n.Convert.toInt64(e);case 11:return e;case 0:return e.toString()}return e},e.prototype.wi=function(t,e,n){if(null!=this.columnWidthChanged){var i=((r=new gi).c=t,r.b=e,r.a=n,r);this.columnWidthChanged(t.externalObject,i)}var r},e.prototype.vt=function(t,e,n){var i;null!=this.cellEditStarted&&this.cellEditStarted(this,((i=new yi).a=t,i.b=e,i.item=n,i))},e.prototype.vs=function(t,e,n){var i;null!=this.cellEditEnded&&this.cellEditEnded(this,((i=new bi).a=t,i.b=e,i.item=n,i))},e.prototype.w7=function(t,e){var n;null!=this.rowEditStarted&&this.rowEditStarted(this,((n=new Ye).a=t,n.item=e,n))},e.prototype.w6=function(t,e){var n;null!=this.rowEditEnded&&this.rowEditEnded(this,((n=new Qe).a=t,n.item=e,n))},e.prototype.ju=function(){return null!=this.y&&!this.y.isReadOnly&&0!=this.editMode},Object.defineProperty(e.prototype,"canUndo",{get:function(){return null!=this.y&&this.y.canUndo},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"canRedo",{get:function(){return null!=this.y&&this.y.canRedo},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"canCommit",{get:function(){return null!=this.y&&this.y.canCommit},enumerable:!1,configurable:!0}),e.prototype.commitEdits=function(){if(this.ju()&&this.canCommit){this.cj.j&&-1!=this.cj.p&&this.ja(!1);var t=this.y.commitEdits(!0);if(-1!=t){var e=this.y.getAggregatedChanges(t);if(null!=this.dataCommitting){var n=new qe(t,e);this.dataCommitting(this,n),this.y.isPendingCommit(t)&&this.autoAcceptEdits&&this.acceptCommit(t)}else this.acceptCommit(t)}}},e.prototype.cancelEdits=function(){this.ju()&&this.y.cancelEdits()},e.prototype.acceptCommit=function(t){this.ju()&&this.y.acceptPendingCommit(t)},e.prototype.rejectCommit=function(t){this.ju()&&this.y.rejectPendingCommit(t)},e.prototype.undo=function(){this.ju()&&this.y.undo()},e.prototype.redo=function(){this.ju()&&this.y.redo()},e.prototype.updatePropertyAtKey=function(t,e,n){this.ju()&&(this.y.updatePropertyAtKey(t,e,n,!1),2!=this.editMode&&this.commitEdits())},e.prototype.removeItemByKey=function(t){this.ju()&&(this.y.removeItemByKey(t),2!=this.editMode&&this.commitEdits())},e.prototype.removeItem=function(t){this.ju()&&(this.y.removeItem(t),2!=this.editMode&&this.commitEdits())},e.prototype.acceptEdit=function(t){this.ju()&&(this.y.acceptPendingTransaction(t),this.y.isBatchingEnabled||this.commitEdits())},e.prototype.rejectEdit=function(t){this.ju()&&this.y.rejectPendingTransaction(t)},e.prototype.setEditError=function(t,e){this.ju()&&this.y.setTransactionError(t,e)},e.prototype.startEditMode=function(){if(1==this.activationMode&&null!=this.activeCell){var t=this.ay.g(this.activeCell.d);if(t.jl){var e=this.model.h(t.ko),n=this.model.e(e.n,this.activeCell.b);null!=n&&this.lb(n)&&this.cj.x()}}},e.prototype.endEditMode=function(t){this.ja(t)},Object.defineProperty(e.prototype,"enterBehavior",{get:function(){return this.cs},set:function(t){var e=this.cs;this.cs=t,e!=this.cs&&this.w2("EnterBehavior",n.enumGetBox(Pe,e),n.enumGetBox(Pe,this.cs))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"enterBehaviorAfterEdit",{get:function(){return this.cq},set:function(t){var e=this.cq;this.cq=t,e!=this.cq&&this.w2("EnterBehaviorAfterEdit",n.enumGetBox(Ie,e),n.enumGetBox(Ie,this.cq))},enumerable:!1,configurable:!0}),e.prototype.selectAllRows=function(){2==this.selectionMode&&this.f5.al()},e.prototype.deselectAllRows=function(){if((1==this.selectionMode||2==this.selectionMode)&&this.selectedItems.ae.count>0){for(var t=new n.List$1(n.Base.$,0),e=new n.List$1(s.$,0),i=0;i<this.selectedItems.ae.count;i++)t.add1(this.selectedItems.ae._inner[i]),e.add(this.selectedKeys.ae._inner[i]);this.je=!0,this.selectedItems.clear(),this.selectedKeys.clear(),this.lf=!0,this.f5.a2(),this.lf=!1,this.je=!1,this.xc(t,null),this.xf(e,null),this.f5.as(-1)}},Object.defineProperty(e.prototype,"j4",{get:function(){return this.h2},set:function(t){this.h2=t},enumerable:!1,configurable:!0}),e.prototype.kq=function(t,e,n){if(this.j4)switch(t){case 30:if(n)return this.selectAllRows(),!0;break;case 32:var i=!1;if(this.allowCopyOperation&&!this.cj.j&&n){if(null!=this.activeCell){var r=this.ay.g(this.activeCell.d),o=this.activeCell.b,a=this.actualColumns.indexOf(r),s=this.model.e(a,o);if(null!=s)this.externalGrid.setClipboardText(s.j1);else{var l=this.resolveCellValueFromPosition(o,a),u=r.dz(this,l,null);null!=u&&this.externalGrid.setClipboardText(u)}}i=!0}return i}return!1},e.prototype.k9=function(){if(!this.editOnKeyPress)return!1;var t=this.ad.s(),e=this.actualColumns._inner[t];return null===n.typeCast(lr.$,e)&&(!(null!=this.ao&&this.ao.a5>=0&&this.ao.a5<this.actualColumns.count&&(e=this.actualColumns._inner[this.ao.a5],null!==n.typeCast(lr.$,e)))&&this.editOnKeyPress)},Object.defineProperty(e.prototype,"isColumnOptionsSummariesEnabled",{get:function(){return this.ht},set:function(t){var e=this.ht;this.ht=t,e!=this.ht&&this.w2("IsColumnOptionsSummariesEnabled",e,this.ht)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isColumnOptionsGroupingEnabled",{get:function(){return this.hs},set:function(t){var e=this.hs;this.hs=t,e!=this.hs&&this.w2("IsColumnOptionsGroupingEnabled",e,this.hs)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mergedCellMode",{get:function(){return this.fi},set:function(t){var e=this.fi;this.fi=t,e!=this.fi&&this.w2("MergedCellMode",n.enumGetBox(ke,e),n.enumGetBox(ke,this.fi))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mergedCellEvaluationCriteria",{get:function(){return this.fg},set:function(t){var e=this.fg;this.fg=t,e!=this.fg&&this.w2("MergedCellEvaluationCriteria",n.enumGetBox(Re,e),n.enumGetBox(Re,this.fg))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mergedCellVerticalAlignment",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,this.ae!=e&&this.w2("MergedCellVerticalAlignment",n.enumGetBox(k,e),n.enumGetBox(k,this.ae))},enumerable:!1,configurable:!0}),e.prototype.saveLayout=function(){var t,e=new n.JsonDictionaryObject,i=new n.JsonDictionaryArray,r=new n.JsonDictionaryArray,o=new n.JsonDictionaryArray,a=new n.JsonDictionaryArray;e.item("version",((t=new n.JsonDictionaryValue).e=2,t.value="1.0",t)),e.item("columns",i),e.item("sortedColumns",r),e.item("groupedColumns",o),e.item("filterColumns",a);for(var s=new n.List$1(tr.$,0),l=0;l<this.actualColumns.count;l++){var u=this.actualColumns._inner[l],c=new tr;c.o=u.lo,c.e=u.width,c.i=n.toNullable(n.Boolean_$type,u.jo),c.j=n.toNullable(E,u.il);var h="",p="";l>0&&(h=this.actualColumns._inner[l-1].lo),l<this.actualColumns.count-1&&(p=this.actualColumns._inner[l+1].lo),c.m=h,c.n=p;var d=this.summaryDescriptions.j.count;c.k=n.toNullable(n.Boolean_$type,!1);for(var f=0;f<d;f++)u.lo==this.summaryDescriptions.j.item(f).ah&&(null==c.g&&(c.g=new n.List$1(n.DataSourceSummaryOperand_$type,0)),c.g.add(this.summaryDescriptions.j.item(f).i),c.k=n.toNullable(n.Boolean_$type,!0));if(null!=u.g1){if(null==c.f&&(c.f=new n.List$1(On.$,0)),u.g1.isGroup()){var m=u.g1;c.l=n.toNullable(n.Boolean_$type,m.usesOrOperator);for(var g=m.count,y=0;y<g;y++)c.f.add(m.item(y))}else{var b=u.g1;c.f.add(b)}c.h=n.toNullable(n.Boolean_$type,!0)}else c.h=n.toNullable(n.Boolean_$type,!1);s.add(c)}for(var v=new n.List$1(Je.$,0),C=this.sortDescriptions.j.count,x=0;x<C;x++){var _=new Je;_.f=this.sortDescriptions.j.item(x).f,_.e=n.toNullable(n.ListSortDirection_$type,this.sortDescriptions.j.item(x).c),v.add(_)}for(var w=new n.List$1(tn.$,0),S=this.groupDescriptions.j.count,P=0;P<S;P++){var O=new tn;O.f=this.groupDescriptions.j.item(P).f,O.e=n.toNullable(n.ListSortDirection_$type,this.groupDescriptions.j.item(P).c),w.add(O)}for(var I=new n.List$1(en.$,0),j=this.filterExpressions.k.count,k=0;k<j;k++){var T=this.filterExpressions.k.item(k),R=this.fz(T);I.add(R)}return i.items=s.toArray(),r.items=v.toArray(),o.items=w.toArray(),a.items=I.toArray(),e.b()},e.prototype.fz=function(t){var e=new en;if(t.isFunction){e.h=!0;var i=t;e.n=n.toNullable(n.Number_$type,i.functionType),null==e.m&&(e.m=new n.List$1(en.$,0)),e.m=this.lr(i.functionArguments)}else if(t.isOperation){e.k=!0;var r=t;e.n=n.toNullable(n.Number_$type,r.operator),null!=r.propertyName&&(e.o=r.propertyName),null!=r.value&&(e.p=r.value.toString()),null!=r.left&&(e.e=this.fz(r.left)),null!=r.right&&(e.f=this.fz(r.right))}else if(t.isLiteral){e.i=!0;var o=t;null!=o.literalValue&&(e.p=o.literalValue.toString())}else if(t.isPropertyReference){e.l=!0;var a=t;null!=a.propertyReference&&(e.o=a.propertyReference)}return e.g=t.isAutoGenerated,e},e.prototype.lr=function(t){for(var e=new n.List$1(en.$,0),i=t.k.count,r=0;r<i;r++){var o=new en,a=t.k.item(r);if(a.isPropertyReference)null!=a.propertyReference&&(o.o=a.propertyReference),o.l=!0;else if(a.isLiteral)null!=a.literalValue&&(o.p=a.literalValue.toString()),o.i=!0;else if(a.isFunction){var s=a;o.n=n.toNullable(n.Number_$type,s.functionType),o.m=this.lr(s.functionArguments),o.h=!0}o.g=a.isAutoGenerated,e.add(o)}return e},e.prototype.loadLayout=function(t){if("string"==typeof t){var e=(new n.JsonDictionaryParser).parse(t);if(null!==n.typeCast(n.JsonDictionaryObject.$,e)){var i=e;if(i.g("columns")){var r=n.typeCast(n.JsonDictionaryArray.$,i.item("columns"));if(null!=r){this.summaryDescriptions.n(),this.filterExpressions.clear();for(var o=this.actualColumns.count,a=r.items.length,s=0;s<a;s++){var l=new tr;l.p(r.items[s]);for(var u=null,c=-1,h=-1,p=-1,d=0;d<o;d++)l.o==this.actualColumns._inner[d].lo&&(u=this.actualColumns._inner[d],p=d),null!=l.m&&l.m==this.actualColumns._inner[d].lo&&(c=d),null!=l.n&&l.n==this.actualColumns._inner[d].lo&&(h=d);if(null!=u){if(null!=l.e){var f=new Ft;f.f=l.e.f,f.e=l.e.e,f.c=l.e.c,u.width=f}if(n.nullableNotEquals(l.i,null)&&(u.jo=l.i.value),n.nullableNotEquals(l.j,null)&&(u.il=l.j.value),null==l.m&&null==l.n||-1!=p&&(-1!=c?p-1!=c&&this.moveColumn(p,c+1):-1!=h&&p+1!=h&&this.moveColumn(p,h-1)),n.nullableNotEquals(l.k,null)){for(var m=0;m<this.summaryDescriptions.j.count;m++){this.summaryDescriptions.j.item(m).ah==u.lo&&(this.summaryDescriptions.j.removeAt(m),m--)}if(l.k.value&&null!=l.g)for(var g=l.g.count,y=0;y<g;y++){var b=new vt(1,u.lo);switch(l.g._inner[y]){case 3:b.i=3;break;case 4:b.i=4;break;case 1:b.i=1;break;case 0:b.i=0;break;case 2:b.i=2}this.summaryDescriptions.j.add(b)}}if(n.nullableNotEquals(l.h,null)&&null!=l.f){var v=l.f.count;if(1==v){var C=l.f._inner[0];u.g1=C}else if(v>1){for(var x=new Tn,_=0;_<v;_++)x.add(l.f._inner[_]);x.usesOrOperator=l.l.value,u.g1=x}}}}}}if(this.sortDescriptions.n(),i.g("sortedColumns")){var w=n.typeCast(n.JsonDictionaryArray.$,i.item("sortedColumns"));if(null!=w)for(var S=0;S<w.items.length;S++){var P=new Je;P.g(w.items[S]);var O=new Ot(0);O.f=P.f,O.c=P.e.value,this.sortDescriptions.g(O)}}if(this.groupDescriptions.n(),i.g("groupedColumns")){var I=n.typeCast(n.JsonDictionaryArray.$,i.item("groupedColumns"));if(null!=I)for(var j=0;j<I.items.length;j++){var k=new tn;k.g(I.items[j]);for(var T=!1,R=this.actualDataSource.actualSchema.propertyNames.length,D=0;D<R;D++)if(this.actualDataSource.actualSchema.propertyNames[D]==k.f){T=!0;break}if(1==T){var B=new kt(0);B.f=k.f,B.c=k.e.value,this.groupDescriptions.g(B)}}}if(i.g("filterColumns")){var M=n.typeCast(n.JsonDictionaryArray.$,i.item("filterColumns"));if(null!=M)for(var E=0;E<M.items.length;E++){var A=new en;A.q(M.items[E]);var V=this.r(A);V.isAutoGenerated||this.filterExpressions.add(V)}}}}},e.prototype.r=function(t){if(t.h){var e=0;n.nullableNotEquals(t.n,null)&&(e=t.n.value);var i=new n.FunctionFilterExpression(e,null),r=t.m.count;i.functionArguments.clear();for(var o=0;o<r;o++){var a=this.s(t.m._inner[o]);i.functionArguments.add(a)}return t.g&&i.markAutoGenerated(),i}if(t.k){var s=new n.OperationFilterExpression(null,1,null);return n.nullableNotEquals(t.n,null)&&(s.operator=t.n.value),n.nullableNotEquals(t.n,null)&&(s.propertyName=t.o),n.nullableNotEquals(t.n,null)&&(s.value=t.p),null!=t.e&&(s.left=this.r(t.e)),null!=t.f&&(s.right=this.r(t.f)),t.g&&s.markAutoGenerated(),s}if(t.i){var l=new n.LiteralFilterExpression(null,!1);return null!=t.p&&(l.literalValue=t.p),t.g&&l.markAutoGenerated(),l}if(t.l){var u=new n.PropertyReferenceFilterExpression(null);return null!=t.o&&(u.propertyReference=t.o),t.g&&u.markAutoGenerated(),u}return null},e.prototype.s=function(t){if(t.l){var e=new n.PropertyReferenceFilterExpression(null);return e.propertyReference=t.o,t.g&&e.markAutoGenerated(),e}if(t.i){var i=new n.LiteralFilterExpression(null,!1);return i.literalValue=t.p,t.g&&i.markAutoGenerated(),i}if(t.h){var r=0;n.nullableNotEquals(t.n,null)&&(r=t.n.value);var o=new n.FunctionFilterExpression(r,null),a=t.m.count;o.functionArguments.clear();for(var s=0;s<a;s++){var l=this.s(t.m._inner[s]);o.functionArguments.add(l)}return t.g&&o.markAutoGenerated(),o}return null},e.prototype.n0=function(t){var e=t.a5;return e>=0&&0==this.model.b9._inner[e].n||t.a0?this.e7.getRowIndent(t.x):0},Object.defineProperty(e.prototype,"filterUIType",{get:function(){return this.cz},set:function(t){var e=this.cz;this.cz=t,e!=this.cz&&this.w2("FilterUIType",n.enumGetBox(Be,e),n.enumGetBox(Be,this.cz))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"filterLogicalOperator",{get:function(){return this.cw},set:function(t){var e=this.cw;this.cw=t,e!=this.cw&&this.w2("FilterLogicalOperator",n.enumGetBox(Ee,e),n.enumGetBox(Ee,this.cw))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"filterComparisonType",{get:function(){return this.cu},set:function(t){var e=this.cu;this.cu=t,e!=this.cu&&this.w2("FilterComparisonType",n.enumGetBox(Ve,e),n.enumGetBox(Ve,this.cu))},enumerable:!1,configurable:!0}),e.prototype.jw=function(){return 1==this.filterUIType},Object.defineProperty(e.prototype,"todayOverride",{get:function(){return this.lu},set:function(t){this.lu=t,n.FilterFactory.instance.todayOverride=this.lu},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"clearSelectionOnEscape",{get:function(){return this.hh},set:function(t){var e=this.hh;this.hh=t,e!=this.hh&&this.w2("ClearSelectionOnEscape",e,this.hh)},enumerable:!1,configurable:!0}),e.prototype.wj=function(t,e,n){var i;null!=this.customFilterRequested&&this.customFilterRequested(this,((i=new mi).c=t,i.d=e,i.e=n,i))},e.prototype.la=function(){return this.my>0},e.prototype.va=function(){this.my++},e.prototype.u9=function(){this.my--,this.my<0&&(this.my=0)},Object.defineProperty(e.prototype,"isPagerVisible",{get:function(){return this.h3},set:function(t){var e=this.h3;this.h3=t,e!=this.h3&&this.w2("IsPagerVisible",e,this.h3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pageSize",{get:function(){return this.m4},set:function(t){var e=this.m4;this.m4=t,e!=this.m4&&this.w2("PageSize",e,this.m4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isToolbarVisible",{get:function(){return this.h8},set:function(t){var e=this.h8;this.h8=t,e!=this.h8&&this.w2("IsToolbarVisible",e,this.h8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isToolbarColumnChooserVisible",{get:function(){return this.h6},set:function(t){var e=this.h6;this.h6=t,e!=this.h6&&this.w2("IsToolbarColumnChooserVisible",e,this.h6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isToolbarColumnPinningVisible",{get:function(){return this.h7},set:function(t){var e=this.h7;this.h7=t,e!=this.h7&&this.w2("IsToolbarColumnPinningVisible",e,this.h7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"toolbarTitle",{get:function(){return this.o7},set:function(t){var e=this.o7;this.o7=t,e!=this.o7&&this.w2("ToolbarTitle",e,this.o7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"toolbarColumnChooserText",{get:function(){return this.o3},set:function(t){var e=this.o3;this.o3=t,e!=this.o3&&this.w2("ToolbarColumnChooserText",e,this.o3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"toolbarColumnChooserTitle",{get:function(){return this.o4},set:function(t){var e=this.o4;this.o4=t,e!=this.o4&&this.w2("ToolbarColumnChooserTitle",e,this.o4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"toolbarColumnPinningText",{get:function(){return this.o5},set:function(t){var e=this.o5;this.o5=t,e!=this.o5&&this.w2("ToolbarColumnPinningText",e,this.o5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"toolbarColumnPinningTitle",{get:function(){return this.o6},set:function(t){var e=this.o6;this.o6=t,e!=this.o6&&this.w2("ToolbarColumnPinningTitle",e,this.o6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"scrollbarStyle",{get:function(){return this.gm},set:function(t){var e=this.gm;this.gm=t,e!=this.gm&&this.w2("ScrollbarStyle",n.enumGetBox(n.ScrollbarStyle_$type,e),n.enumGetBox(n.ScrollbarStyle_$type,this.gm))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"scrollbarBackground",{get:function(){return this.zz},set:function(t){var e=this.zz;this.zz=t,e!=this.zz&&this.w2("ScrollbarBackground",e,this.zz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"allowCopyOperation",{get:function(){return this.he},set:function(t){this.he=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"deferEventForRowDragSelection",{get:function(){return this.hi},set:function(t){this.hi=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"DataGrid",n.Base.$,[n.INotifyPropertyChanged_$type]),e.isActiveCellStyleEnabledPropertyName="IsActiveCellStyleEnabled",e}(n.Base),li=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._columns=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"columns",{get:function(){return this._columns},set:function(t){this._columns=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridColumnsAutoGeneratedEventArgs",n.EventArgs.$),e}(n.EventArgs),ui=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._columns=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"columns",{get:function(){return this._columns},set:function(t){this._columns=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridColumnsChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),ci=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentCells=null,e._addedCells=null,e._removedCells=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"currentCells",{get:function(){return this._currentCells},set:function(t){this._currentCells=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"addedCells",{get:function(){return this._addedCells},set:function(t){this._addedCells=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"removedCells",{get:function(){return this._removedCells},set:function(t){this._removedCells=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridSelectedCellsChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),hi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._grid=null,e._button=0,e._isDoubleClick=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"grid",{get:function(){return this._grid},set:function(t){this._grid=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"button",{get:function(){return this._button},set:function(t){this._button=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isDoubleClick",{get:function(){return this._isDoubleClick},set:function(t){this._isDoubleClick=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"DataGridCellEventArgs",n.EventArgs.$),e}(n.EventArgs),pi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"ColumnHiddenChangedEventArgs"),e}(n.Base),di=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=0,e}return i.__extends(e,t),e.$t=n.markType(e,"ColumnPinnedChangedEventArgs"),e}(n.Base),fi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=0,e._cellInfo=null,e.b=null,e._item=null,e.f=null,e.e=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridCellValueChangingEventArgs"),e}(n.Base),mi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.d=null,e.e=null,e.b=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"a",{get:function(){return n.FilterFactory.instance},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridCustomFilterRequestedEventArgs"),e}(n.Base),gi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.b=null,e.a=null,e}return i.__extends(e,t),e.$t=n.markType(e,"GridColumnWidthChangedEventArgs"),e}(n.Base),yi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=0,e._item=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridCellEditStartedEventArgs"),e}(n.Base),bi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=0,e._item=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridCellEditEndedEventArgs"),e}(n.Base),vi=function(t){function e(){var e=t.call(this)||this;return e.l=new n.List$1(n.Number_$type,0),e.i=!1,e.animationCreated=null,e.animationCompleted=null,e.animationCanceled=null,e.g=new oe,e.f=new ae,e.k=new n.Dictionary$2(n.Number_$type,n.List$1.$.specialize(n.Delegate_$type),0),e.e=null,e.d=null,e.e=new re,e.e.l=0,e.e.e=!0,e.e.n=0,e.d=new re,e.d.l=0,e.d.e=!0,e.d.n=0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"h",{get:function(){return this.g},enumerable:!1,configurable:!0}),e.prototype.p=function(){var t=e.o;return e.o++,t},e.prototype.as=function(){this.i=!0,this.l=new n.List$1(n.Number_$type,0)},e.prototype.m=function(){return this.i=!1,this.l},e.prototype.x=function(t){var e;this.i&&this.l.add(t),null!=this.animationCreated&&this.animationCreated(this,((e=new nn).a=t,e))},e.prototype.v=function(t){var e;this.i&&this.l.remove(t),null!=this.animationCanceled&&this.animationCanceled(this,((e=new on).a=t,e))},e.prototype.w=function(t){var e;this.i&&this.l.remove(t),null!=this.animationCompleted&&this.animationCompleted(this,((e=new rn).a=t,e))},e.prototype.ar=function(t,e,i,r,o){var a=this;if(null!=i){var s,l,u=this.p();this.x(u);var c=t.ay.f(i.o);if(null!=c){var h=new ki(1);h.effectsFinished=n.delegateCombine(h.effectsFinished,(function(e,n){c.ht=5,i.a=5,t.model.b2=!1,t.xu(),t.wg(c),a.w(u)})),h.effectsCanceled=n.delegateCombine(h.effectsCanceled,(function(e,n){t.model.b2=!1,t.wf(c),a.v(u)})),r?(s=null!=c.h6&&null!=c.h6.n?c.h6.n:null!=e&&null!=e.n?e.n:this.g.n,l=null!=c.h6&&null!=c.h6.m?c.h6.m:null!=e&&null!=e.m?e.m:this.g.m):(s=null!=c.h6&&null!=c.h6.x?c.h6.x:null!=e&&null!=e.x?e.x:this.g.x,l=null!=c.h6&&null!=c.h6.w?c.h6.w:null!=e&&null!=e.w?e.w:this.g.w);var p=t.columnAddingAnimationMode;if(r||(p=t.columnShowingAnimationMode),0==p&&(p=c.hp()),3==o||0==o)switch(p){case 2:case 4:case 5:case 7:case 9:case 10:case 6:i.h=-1;break;case 3:case 8:i.h=1}t.model.b2=!0;var d=new dr;d.bx(s),d.al=!0,d.bq=0,d.x=function(t,e,n,i,r){var o=n,a=e;i.h=a+(o-a)*t},d.o=function(t,e){return i.h},h.g(d),t.dw.u(i,d);var f=new mr;f.t=1,f.bx(l),f.al=!0,f.bq=0,f.x=function(e,r,o,a,s){var l=o,u=r,c=a;switch(p){case 6:case 2:case 3:case 7:case 8:c.cn=u+(l-u)*e;break;case 4:case 5:case 9:case 10:c.cr=u+(l-u)*e}if(4==c.l.af){var h=t.gj.p(i,t),d=i.k;c.me=new n.Rect(0,h-c.cu,0,d,c.fu)}},f.o=function(e,n){var i=e,r=i.cn;if(4!=p&&5!=p&&9!=p&&10!=p||(r=i.cr),0==o||3==o)switch(p){case 6:r=0,i.cn=r,i.cs=r,i.cm=0,i.cr=0;break;case 2:case 7:r=-1,i.cn=r,i.cm=0,i.cs=0,i.cr=0;break;case 3:case 8:r=1,i.cn=r,i.cm=0,i.cs=0,i.cr=0;break;case 4:case 9:r=-1*(t.mf+t.model.c3),i.cr=r,i.cm=0,i.cn=0,i.cs=0;break;case 5:case 10:r=1*(t.mf+t.model.c3),i.cr=r,i.cm=0,i.cn=0,i.cs=0}return r},t.model.b4()&&(f.g=new S(0,0,i.m,t.model.bx.y,t.model.bx.x),f.e=new S(0,0,i.m,t.model.bw.y,t.model.bw.x)),h.g(f),4!=p&&9!=p||(f.ao=!0),t.dw.t(i,f);var m=new mr;m.t=2,m.bx(l),m.al=!0,m.bq=1,m.x=function(t,e,n,i,r){var o=e+(n-e)*t;o<0&&(o=0),i.cj=o},m.o=function(t,e){var n=t;if(0==o||3==o)switch(p){case 10:case 7:case 8:case 9:n.cj=-1;break;case 6:n.cj=0}return n.cj},t.model.b4()&&(m.g=new S(0,0,i.m,t.model.bx.y,t.model.bx.x),m.e=new S(0,0,i.m,t.model.bw.y,t.model.bw.x)),h.g(m),4!=p&&9!=p||(m.ao=!0),t.dw.t(i,m)}}},e.prototype.aj=function(t,e,i,r,o){var a=this;if(null!=i&&null!=r){var s,l,u=this.p();this.x(u),i.a=2,r.a=1;var c=t.ay.f(r.o),h=t.ay.f(i.o);if(null!=c&&null!=h){s=null!=c.h6&&null!=c.h6.o?c.h6.o:null!=h.h6&&null!=h.h6.o?h.h6.o:null!=e&&null!=e.x?e.o:this.g.o,l=null!=c.h6&&null!=c.h6.p?c.h6.p:null!=h.h6&&null!=h.h6.p?h.h6.p:null!=e&&null!=e.p?e.p:this.g.p;var p=t.columnExchangingAnimationMode;0==p&&(p=c.he());var d=!1;2!=p&&7!=p||(d=!0),r.h=d?1:-1,this.k.containsKey(i.o)?(this.k.addItem(r.o,new n.List$1(n.Delegate_$type,0)),this.k.item(i.o).add((function(){i=t.model.h(i.o),r=t.model.h(r.o),null!=i&&null!=r&&(h.ht=2,i.a=2,c.ht=1,r.a=1,a.y(t,i,r,s,l,c,h,p,d,u))}))):(this.k.addItem(r.o,new n.List$1(n.Delegate_$type,0)),this.y(t,i,r,s,l,c,h,p,d,u))}}},e.prototype.y=function(t,e,i,r,o,a,s,l,u,c){var h=this;if(null!=e&&null!=i){var p=new ki(1);p.effectsFinished=n.delegateCombine(p.effectsFinished,(function(o,l){var p=t.model.h(e.o),d=t.model.h(i.o),f=new ki(1);f.effectsFinished=n.delegateCombine(f.effectsFinished,(function(n,r){if(s.ht=3,e.a=3,t.columns.remove(s),a.ht=5,i.a=5,t.model.b2=!1,t.xu(),h.k.containsKey(i.o)){var o=h.k.item(i.o);if(0==o.count)h.k.removeItem(i.o);else{var l=o._inner[0];o.removeAt(0),l()}}t.v6(a),h.w(c)})),f.effectsCanceled=n.delegateCombine(f.effectsCanceled,(function(e,n){t.model.b2=!1,t.v5(a),h.v(c)})),h.u(t,p,d,r,s,u,f),h.t(t,p,d,r,a,s,u,f)})),p.effectsCanceled=n.delegateCombine(p.effectsCanceled,(function(o,l){t.v5(a);var c=new ki(1);c.effectsFinished=n.delegateCombine(c.effectsFinished,(function(n,i){s.ht=3,e.a=3,t.columns.remove(s),t.model.b2=!1,t.xu()})),c.effectsCanceled=n.delegateCombine(c.effectsCanceled,(function(e,n){return t.model.b2=!1}));var p=t.model.h(e.o),d=t.model.h(i.o);h.u(t,p,d,r,s,u,c)}));var d=new mr;d.t=1,d.bx(o),d.al=!0,p.g(d),0!=i.d&&(t.model.b2=!0),d.bq=u?-1-e.h:1+e.h;var f=!1;switch(l){case 4:case 9:d.bq=-1*(t.mf+t.model.c3),f=!0;break;case 5:case 10:d.bq=1*(t.mf+t.model.c3),f=!0}f&&(d.bi=0),d.x=function(i,r,o,a,s){var u=o,c=r,h=a;switch(l){case 2:case 3:case 7:case 8:h.cn=c+(u-c)*i;break;case 4:case 5:case 9:case 10:h.cr=c+(u-c)*i}if(4==h.l.af){var p=t.gj.p(e,t),d=e.k;h.me=new n.Rect(0,p-h.cu,0,d,h.fu)}},d.o=function(t,e){var n=t,i=n.cn;switch(4!=l&&5!=l&&9!=l&&10!=l||(i=n.cr),6==l&&(i=0),l){case 2:case 7:case 6:n.cn=i,n.cm=0,n.cs=0,n.cr=0;break;case 3:case 8:n.cn=i,n.cm=0,n.cs=0,n.cr=0;break;case 4:case 9:i=n.cr,n.cr=i,n.cm=0,n.cn=0,n.cs=0;break;case 5:case 10:i=n.cr,n.cr=i,n.cm=0,n.cn=0,n.cs=0}return i},t.model.b4()&&(d.g=new S(0,0,e.m,t.model.bx.y,t.model.bx.x),d.e=new S(0,0,e.m,t.model.bw.y,t.model.bw.x)),d.onFinished=n.delegateCombine(d.onFinished,(function(t){})),4!=l&&9!=l||(d.ao=!0),t.dw.t(e,d);var m=new mr;m.t=1,m.bx(o),m.al=!0,p.g(m),m.bq=u?-1:1,f&&(m.bq=0),f&&(m.bi=0),m.x=function(i,r,o,a,s){var u=o,c=r,h=a;switch(l){case 2:case 3:case 7:case 8:h.cn=c+(u-c)*i;break;case 4:case 5:case 9:case 10:h.cr=c+(u-c)*i}if(4==h.l.af){var p=t.gj.p(e,t),d=e.k;h.me=new n.Rect(0,p-h.cu,0,d,h.fu)}},m.o=function(e,n){var i=e,r=i.cn;switch(4!=l&&5!=l&&9!=l&&10!=l||(r=i.cr),r=6==l?m.bq:0,l){case 2:case 7:case 6:i.cn=r,i.cm=0,i.cs=0,i.cr=0;break;case 3:case 8:i.cn=r,i.cm=0,i.cs=0,i.cr=0;break;case 4:case 9:r=1*(t.mf+t.model.c3),i.cr=r,i.cm=0,i.cn=1,i.cs=0;break;case 5:case 10:r=-1*(t.mf+t.model.c3),i.cr=r,i.cm=0,i.cn=1,i.cs=0}return r},t.model.b4()&&(m.g=new S(0,0,i.m,t.model.bx.y,t.model.bx.x),m.e=new S(0,0,i.m,t.model.bw.y,t.model.bw.x)),5!=l&&10!=l||(m.ao=!0),t.dw.t(i,m);var g=new mr;g.t=2,g.bx(o),g.al=!0,g.bq=0,p.g(g),6!=l&&10!=l&&7!=l&&9!=l&&(g.bq=1),g.x=function(t,e,n,i,r){var o=n,a=e;i.co=a+(o-a)*t},g.o=function(t,e){return t.co},t.model.b4()&&(g.g=new S(0,0,e.m,t.model.bx.y,t.model.bx.x),g.e=new S(0,0,e.m,t.model.bw.y,t.model.bw.x)),g.onFinished=n.delegateCombine(g.onFinished,(function(t){})),5!=l&&10!=l||(g.ao=!0),t.dw.t(e,g);var y=new mr;y.t=2,y.bx(o),y.al=!0,y.bq=1,p.g(y),y.x=function(t,e,n,i,r){var o=n,a=e;i.co=a+(o-a)*t},y.o=function(t,e){var n=t,i=n.co;return 6!=l&&10!=l&&8!=l&&7!=l&&9!=l||(i=0),n.co=i,i},t.model.b4()&&(y.g=new S(0,0,i.m,t.model.bx.y,t.model.bx.x),y.e=new S(0,0,i.m,t.model.bw.y,t.model.bw.x)),5!=l&&10!=l||(y.ao=!0),t.dw.t(i,y)}},e.prototype.u=function(t,e,n,i,r,o,a){var s=this;if(null!=e){var l=new dr;l.bx(i),l.al=!0,a.g(l),l.bq=o?-1:1,l.x=function(t,e,n,i,r){var o=n,a=e;i.h=a+(o-a)*t},l.o=function(t,i){return s.j(e,n)?(e.h=l.bq,l.bq):e.h},t.dw.u(e,l)}},e.prototype.t=function(t,e,n,i,r,o,a,s){var l=this;if(null!=n){var u=new dr;u.bx(i),u.al=!0,u.bq=0,s.g(u),u.x=function(t,e,n,i,r){var o=n,a=e;i.h=a+(o-a)*t},u.o=function(t,i){return l.j(e,n)?(n.h=u.bq,n.h):n.h},t.dw.u(n,u);var c=new mr;c.bx(i),c.al=!0,c.bq=0,s.g(c),c.x=function(t,e,n,i,r){var o=n,a=e;i.cn=a+(o-a)*t},c.o=function(t,i){var r=t;return l.j(e,n)?(r.cn=c.bq,r.cn):r.cn},t.dw.t(n,c)}},e.prototype.j=function(t,e){return null==t||(null==e||(null==t.b&&null==e.b||(!(null!=t.b||!e.b.c||1!=e.b.f)||(!(!t.b.c||1!=t.b.f||null!=e.b)||(!(!t.b.c||!e.b.c||t.b.f!=e.b.f)||!t.b.c&&!e.b.c&&t.b.f==e.b.f)))))},e.prototype.ah=function(t,e,i,r){var o=this;if(null!=i){var a=t.ay.f(i.o);if(null!=a){var s,l=this.p();this.x(l),s=null!=a.h6&&null!=a.h6.v?a.h6.v:null!=e&&null!=e.v?e.v:this.g.v;var u=new dr;u.bx(s),u.al=!0,u.bq=r,u.onFinished=n.delegateCombine(u.onFinished,(function(t){return o.w(l)})),u.onCanceled=n.delegateCombine(u.onCanceled,(function(t,e){return o.v(l)})),u.x=function(t,e,i,r,o){var s,l=e+(i-e)*t,u=((s=new Ft).f=l,s.c=!1,s);n.isNaN_(a.j0)||(u.e=a.j0),a.width=u},u.o=function(t,e){return i.k},t.js(a)||(u.ba=0),t.dw.u(i,u)}}},e.prototype.al=function(t,i,r,o){var a=this;if(null!=r){var s,l,u=this.p();this.x(u);var c=t.ay.f(r.o);if(null!=c){s=null!=c.h6&&null!=c.h6.t?c.h6.t:null!=i&&null!=i.t?i.t:this.g.t,l=null!=c.h6&&null!=c.h6.s?c.h6.s:null!=i&&null!=i.w?i.s:this.g.s;var h=t.columnMovingAnimationMode,p=new ki(1);p.effectsFinished=n.delegateCombine(p.effectsFinished,(function(e,n){for(var i=t.model.h(r.o),o=t.model.cb(i),s=0;s<o.count;s++)t.model.dk(o._inner[s]);c.ht=5,t.xu(),t.wc(c),a.w(u)})),p.effectsCanceled=n.delegateCombine(p.effectsCanceled,(function(e,n){t.wb(c),a.v(u)})),0==h&&(h=2);var d=0,f=r.h;r.h=0,d=t.gb.k(r.m,t,t.model),r.h=f;var m=t.gb.j(c.ki,t.model),g=!1;r.n<c.ki&&(g=!0);6!=o&&t.model.i(m,r,r.k+t.model.cv-r.f(t.model),null==r.b||r.b.c,g);for(var y=t.model.cb(r),b=0;b<y.count;b++)y._inner[b].e=!0;var v=r.m,C=null,x=t.model.cf;if(x._inner[v].count>0)for(var _=0;_<x._inner[v].count;_++)if(x._inner[v]._inner[_].n==r.o){C=x._inner[v]._inner[_];break}null!=C?C.e=!1:t.model.i(v,r,0,null==r.b||r.b.c,!g).e=!1;var w=c.kh,P=e.at(t.model,r,c,d,w),O=(d=P.p3)-(w=P.p4),I=-1*O;r.h=I/r.k,r.a=6;var j=new dr;j.bx(s),j.al=!0,j.bq=0;r.k;var k=!1,T=0,R=(r.m,t.gb.k(r.m,t,t.model)),D=this.n(t,r,r.m);R=this.q(t,r,R,t.model.cb(r),D),p.g(j),j.x=function(n,i,o,s,l){var u=o,h=i,p=s;if(p.h=h+(u-h)*n,p.k>0){var d=t.gb.l(p.m,l,!0);w=c.kh;var f=e.at(t.model,r,c,d,w);if((d=f.p3)-(w=f.p4)!=O){var m=d-w,g=T+(O-m)/p.k,y=g/(1-n);j.by(y,l,p.o),p.h=g,T=g,O=m,p.h=y+(u-y)*n}if(!k)for(var b=t.model.ca(p),v=0;v<b.count;v++){b._inner[v].cn+=T-p.h}T=p.h,p.m;var C=t.model.cb(p);D=a.n(t,p,p.m),R=a.q(t,p,R,C,D)}},j.o=function(t,e){return T=r.h,r.h},t.dw.u(r,j);var B=new mr;B.ar=!0,B.bx(l),B.al=!0,B.bq=0,p.g(B),B.x=function(t,e,n,i,r){if(t>0&&(k=!0),k){var o=e+(n-e)*t;i.cn=o}},B.o=function(t,e){return t.cn},t.model.b4()&&(B.g=new S(0,0,r.m,t.model.bx.y,t.model.bx.x),B.e=new S(0,0,r.m,t.model.bw.y,t.model.bw.x)),t.dw.t(r,B)}}},e.at=function(t,e,i,r,o){if(t.cm>t.cj&&(1==e.d?(o+=n.truncate(t.cj),r+=n.truncate(t.cm)):0==e.d&&1==i.ik&&(o+=n.truncate(t.cm),r+=n.truncate(t.cj))),t.cp<t.absoluteWidth-t.ck){var a=t.absoluteWidth-t.ck-t.cp;2==e.d?r-=n.truncate(a):0==e.d&&2==i.ik&&(o-=n.truncate(a))}return{p3:r,p4:o}},e.prototype.q=function(t,e,n,i,r){if(r>0){for(var o=0,a=0;a<i.count;a++)i._inner[a].e||r>i._inner[a].i&&(o=Math.abs(i._inner[a].i-r),i._inner[a].i=r);for(var s=0,l=0;l<i.count;l++)i._inner[l].e&&(s+=i._inner[l].i);var u=s-o;u<0&&(u=0);var c=1;c=0==s?0:u/s;for(var h=0;h<i.count;h++)i._inner[h].e&&(i._inner[h].i=i._inner[h].i*c)}return 0==e.o&&(n=t.gb.k(e.m,t,t.model)),n},e.prototype.n=function(t,e,n){var i=t.gb.l(n,t.model,!0),r=(e.k,t.gb.l(e.m,t.model,!1));return i>r?Math.max(0,r+e.k-i):Math.max(0,i+e.k-r)},e.prototype.ak=function(t,e,i,r,o){var a=this;if(null!=i){var s,l,u=this.p();this.x(u);var c=t.ay.f(i.o);if(null!=c){s=null!=c.h6&&null!=c.h6.q?c.h6.q:null!=e&&null!=e.q?e.q:this.g.q,l=null!=c.h6&&null!=c.h6.r?c.h6.r:null!=e&&null!=e.r?e.r:this.g.r;var h=t.columnHidingAnimationMode,p=new ki(1);p.effectsFinished=n.delegateCombine(p.effectsFinished,(function(e,n){c.ht=3,i.a=3,c.jd&&(t.externalGrid.ensureColumnsAreManual(),t.externalGrid.removeExternalColumn(c.externalObject)),t.model.b2=!1,t.xu(),t.v8(c),a.w(u)})),p.effectsCanceled=n.delegateCombine(p.effectsCanceled,(function(e,n){t.model.b2=!1,t.v7(c),a.v(u)})),0==h&&(h=c.hf());var d=0;switch(h){case 2:case 7:d=-1;break;case 3:case 8:d=1;break;case 4:case 9:d=-1*(t.mf+t.model.c3);break;case 5:case 10:d=1*(t.mf+t.model.c3)}t.model.b2=!0;var f=new mr;f.bx(s),f.t=1,f.al=!0,f.bq=d,p.g(f),f.x=function(e,r,o,a,s){var l=o,u=r,c=a;switch(h){case 2:case 3:case 7:case 8:c.cn=u+(l-u)*e;break;case 4:case 5:case 9:case 10:c.cr=u+(l-u)*e}if(4==c.l.af){var p=t.gj.p(i,t),d=i.k;c.me=new n.Rect(0,p-c.cu,0,d,c.fu)}},f.o=function(t,e){var n=t,i=n.cn;return 4!=h&&5!=h||(i=n.cr),i},t.model.b4()&&(f.g=new S(0,0,i.m,t.model.bx.y,t.model.bx.x),f.e=new S(0,0,i.m,t.model.bw.y,t.model.bw.x)),5!=h&&10!=h||(f.ao=!0),t.dw.t(i,f);var m=0;switch(h){case 2:case 4:case 5:case 7:case 9:case 10:case 6:m=-1;break;case 3:case 8:m=1}var g=new dr;g.bx(l),g.al=!0,g.bq=m,p.g(g),g.x=function(t,e,n,i,r){var o=n,a=e;i.h=a+(o-a)*t},g.o=function(t,e){return i.h},t.dw.u(i,g);var y=new mr;y.t=2,y.bx(s),y.al=!0,y.bq=6==h||10==h||7==h||8==h||9==h?0:1,y.x=function(t,e,n,i,r){var o=e+(n-e)*t;o<0&&(o=0),i.cj=o},y.o=function(t,e){var n=t;if(0==o||3==o)switch(h){case 10:case 7:case 8:case 9:case 6:n.cj=1}return n.cj},t.model.b4()&&(y.g=new S(0,0,i.m,t.model.bx.y,t.model.bx.x),y.e=new S(0,0,i.m,t.model.bw.y,t.model.bw.x)),p.g(y),5!=h&&10!=h||(y.ao=!0),t.dw.t(i,y)}}},e.prototype.r=function(t,e,i,r,o,a,s){var l=this;if(t.model.b4()||1==t.filterUIType||11==s){var u=this.p();this.x(u);var c=this.g.u;null!=t.columnAnimationSettings&&null!=t.columnAnimationSettings.u&&(c=t.columnAnimationSettings.u);var h=t.columnPropertyUpdatingAnimationMode,p=new mr;p.bx(c),p.t=8,p.as=!0,0==s&&(p.v=5),7==s&&(p.v=6),8==s&&(p.v=7),p.bs=i,p.al=!0,p.bq=a,p.onFinished=n.delegateCombine(p.onFinished,(function(t){return l.w(u)})),p.onCanceled=n.delegateCombine(p.onCanceled,(function(t,e){return l.v(u)})),0==h&&(h=2),11==r&&(p.x=function(t,e,n,r,o){var a=r;a.w==s&&a.k9(i,n)}),5!=r&&4!=r&&9!=r&&8!=r&&(3==h||7!=r&&1!=r&&3!=r)||(p.x=function(t,e,n,r,o){var a=r;a.w==s&&(t>.5?a.k9(i,n):a.k9(i,e))}),3==h&&1==r&&(p.x=function(t,e,n,r,o){var a=r;if(a.w==s){null==e&&(e=0);var l=e+(n-e)*t;a.k9(i,l)}}),0==r&&(p.x=function(t,e,n,r,o){var a=r;if(a.w==s){null==e&&(e=0);var l=e+(n-e)*t;a.k9(i,l)}}),2==r&&(p.x=function(t,e,r,o,a){var l=o;if(l.w==s){null==e&&(e=n.BrushUtil.j(0,0,0,0));var u=e,c=r,h=n.BrushUtil.n(u,t,c,0);l.k9(i,h)}}),3==r&&(p.x=function(e,r,o,a,l){var u=a;if(u.w==s){var c=r,h=o;null!=c&&c.w(t.externalGrid.renderer),null!=h&&h.w(t.externalGrid.renderer);var p=new n.FontInfo;n.FontUtil.interpolateFont(p,e,c,h),u.k9(i,p)}}),6==r&&(p.x=function(t,e,r,o,a){var l=o;if(l.w==s){null==e&&(e=0);var u=n.typeGetValue(e),c=n.typeGetValue(r),h=n.truncate(Math.round(u+(c-u)*t));l.k9(i,h)}}),p.o=function(t,e){return t.hl(i)},t.model.b4()&&(4==s?(p.g=new S(0,0,-300,t.model.bx.y,t.model.bx.x),p.e=new S(0,0,-300,t.model.bw.y,t.model.bw.x)):2==s||8==s||6==s?(p.g=new S(0,0,-400,t.model.bx.y,t.model.bx.x),p.e=new S(0,0,-400,t.model.bw.y,t.model.bw.x)):(p.g=new S(0,0,e.m,t.model.bx.y,t.model.bx.x),p.e=new S(0,0,e.m,t.model.bw.y,t.model.bw.x))),t.jr&&11!=r||(p.ba=0),4==s?t.dw.x(p):2==s||8==s||6==s?t.dw.y(p):t.dw.t(e,p)}},e.prototype.s=function(t,e,i,r,o,a,s,l,u,c){var h=this;if(t.model.b4()){var p=this.p();this.x(p);var d=this.g.u;null!=t.columnAnimationSettings&&null!=t.columnAnimationSettings.u&&(d=t.columnAnimationSettings.u);var f=t.columnPropertyUpdatingAnimationMode,m=new mr;m.bx(d),m.t=8,m.as=!0,s&&(m.v=5),c&&(m.v=6),m.bs=i,m.al=!0,m.bq=a,m.onFinished=n.delegateCombine(m.onFinished,(function(t){return h.w(p)})),m.onCanceled=n.delegateCombine(m.onCanceled,(function(t,e){return h.v(p)})),0==f&&(f=2),11==r&&(m.x=function(t,e,n,r,o){var a=r;s==a.l.g&&(l&&!a.l.ay||!l&&a.l.ay||c&&!a.l.h||!c&&a.l.h||a.k9(i,n))}),5!=r&&4!=r&&9!=r&&8!=r&&(3==f||7!=r&&1!=r&&3!=r)||(m.x=function(t,e,n,r,o){var a=r;s==a.l.g&&(l&&!a.l.ay||!l&&a.l.ay||c&&!a.l.h||!c&&a.l.h||(t>.5?a.k9(i,n):a.k9(i,e)))}),3==f&&1==r&&(m.x=function(t,e,n,r,o){var a=r;if(s==a.l.g&&!(l&&!a.l.ay||!l&&a.l.ay||c&&!a.l.h||!c&&a.l.h)){null==e&&(e=0);var u=e+(n-e)*t;a.k9(i,u)}}),0==r&&(m.x=function(t,e,n,r,o){var a=r;if(s==a.l.g&&!(l&&!a.l.ay||!l&&a.l.ay||c&&!a.l.h||!c&&a.l.h)){null==e&&(e=0);var u=e+(n-e)*t;a.k9(i,u)}}),2==r&&(m.x=function(t,e,r,o,a){var u=o;if(s==u.l.g&&!(l&&!u.l.ay||!l&&u.l.ay||c&&!u.l.h||!c&&u.l.h)){null==e&&(e=n.BrushUtil.j(0,0,0,0));var h=e,p=r,d=n.BrushUtil.n(h,t,p,0);u.k9(i,d)}}),3==r&&(m.x=function(e,r,o,a,u){var h=a;if(s==h.l.g&&!(l&&!h.l.ay||!l&&h.l.ay||c&&!h.l.h||!c&&h.l.h)){var p=r,d=o;null!=p&&p.w(t.externalGrid.renderer),null!=d&&d.w(t.externalGrid.renderer);var f=new n.FontInfo;n.FontUtil.interpolateFont(f,e,p,d),h.k9(i,f)}}),6==r&&(m.x=function(t,e,r,o,a){var u=o;if(s==u.l.g&&!(l&&!u.l.ay||!l&&u.l.ay||c&&!u.l.h||!c&&u.l.h)){null==e&&(e=0);var h=n.typeGetValue(e),p=n.typeGetValue(r),d=n.truncate(Math.round(h+(p-h)*t));u.k9(i,d)}}),m.o=function(t,e){return t.hl(i)},t.model.b4()&&(l?(m.g=new S(0,0,-300,t.model.bx.y,t.model.bx.x),m.e=new S(0,0,-300,t.model.bw.y,t.model.bw.x)):u?(m.g=new S(0,0,-400,t.model.bx.y,t.model.bx.x),m.e=new S(0,0,-400,t.model.bw.y,t.model.bw.x)):(m.g=new S(0,0,e.m,t.model.bx.y,t.model.bx.x),m.e=new S(0,0,e.m,t.model.bw.y,t.model.bw.x))),t.jr&&11!=r||(m.ba=0),l?t.dw.x(m):u?t.dw.y(m):t.dw.t(e,m)}},e.prototype.am=function(t,e,i){var r=this,o=this.p();this.x(o);var a=this.e,s=(t.model,new ki(1));s.effectsCanceled=n.delegateCombine(s.effectsCanceled,(function(t,e){return r.v(o)})),s.effectsFinished=n.delegateCombine(s.effectsFinished,(function(t,e){return r.w(o)}));for(var l=e;l<=i;l++){var u=new vr;s.g(u),u.t=7,u.bx(a),u.al=!0,u.bq=1,u.x=function(t,e,n,i,r){},u.o=function(e,n){var i=e;if(i.l.aj){var r=t.e7.getDataRow(i.l);if(i.fb=r,-1==r)return i.j1;var o=t.e7.getRowType(r);if(i.bm(o)){var a=t.e7.resolveValueForPath(t,i.l),s=t.q0(i.l,t,a,r);t.wx(i,a,t.e7.resolveRow(r),s)}}return i.j1};var c=t.fu(l);t.model.b4()&&(u.g=new S(0,0,t.model.c8,c.y,c.x),u.e=new S(0,0,t.model.db,c.y,c.x)),t.kd||(u.ba=0),t.dw.v(c,u)}},e.prototype.ai=function(t,e){var i=this;if(null!=e){var r=this.p();this.x(r);var o=this.d,a=(t.model,new ki(1));if(a.effectsFinished=n.delegateCombine(a.effectsFinished,(function(t,e){return i.w(r)})),a.effectsCanceled=n.delegateCombine(a.effectsCanceled,(function(t,e){return i.v(r)})),null!=t.ay.f(e.o)){var s=new dr;a.g(s),s.bx(o),s.al=!0,s.bq=1,s.x=function(t,e,n,i,r){},s.o=function(e,n){var i=e;return i.g=0,i.h=0,i.j=0,t.xu(),i.g},t.dw.u(e,s);var l=new mr;a.g(l),l.t=1,l.bx(o),l.al=!0,l.bq=1,l.x=function(t,e,n,i,r){},l.o=function(t,e){var n=t;return n.cm=0,n.cn=0,n.cr=0,n.cs=0,n.cj=1,n.cm},t.dw.t(e,l)}}},e.prototype.z=function(t,e,i,r){var o=this,a=this.p();this.x(a);var s=this.f.f;null!=t.animationSettings&&null!=t.animationSettings.f&&(s=t.animationSettings.f);var l=t.cellDataLoadedAnimationMode,u=t.model,c=new ki(1);c.effectsFinished=n.delegateCombine(c.effectsFinished,(function(t,e){return o.w(a)})),c.effectsCanceled=n.delegateCombine(c.effectsCanceled,(function(t,e){return o.v(a)}));for(var h=0;h<u.b9.count;h++){var p=u.b9._inner[h];if(null!=t.ay.f(p.o)){var d=new mr;c.g(d),d.t=3,d.bx(s),d.al=!0,d.bq=0,0==l&&(l=2),d.x=function(e,n,i,r,o){var a=r,s=n,l=i;if(a.l.aj){t.cf(a.l);t.e7.isPlaceholderValue(a.l)&&(e=0)}a.ct=s+(l-s)*e},d.o=function(e,n){var i=e;if(i.l.aj){var r=t.e7.getDataRow(i.l);if(i.fb=r,-1==r)return i.ct;var o=t.e7.resolveValueForPath(t,i.l),a=!1;if(null==o&&t.e7.isPlaceholderValue(i.l)&&(a=!0),i.bm(t.e7.getRowType(i.l.x))){var s=t.q0(i.l,t,o,r);t.wx(i,o,t.e7.resolveRow(r),s)}a&&(i.ct=1)}else if(i.l.am){var l=t.q0(i.l,t,null,-1);t.wx(i,null,null,l)}return i.ct},t.model.b4()&&(d.g=new S(0,0,p.m,t.model.bx.y,t.model.bx.x),d.e=new S(0,0,p.m,t.model.bw.y,t.model.bw.x)),t.jg&&!r||(d.ba=0),t.dw.t(p,d)}}},e.prototype.ag=function(t,e,i,r,o){var a=this,s=this.p();this.x(s);var l=this.f.f;null!=t.animationSettings&&null!=t.animationSettings.f&&(l=t.animationSettings.f);var u=t.cellDataLoadedAnimationMode,c=t.model;if(!(r<0||r>=c.b9.count)){var h=c.b9._inner[r];if(null!=t.ay.f(h.o)){var p=new mr;p.onFinished=n.delegateCombine(p.onFinished,(function(t){return a.w(s)})),p.onCanceled=n.delegateCombine(p.onCanceled,(function(t,e){return a.v(s)})),p.t=3,p.bx(l),p.al=!0,p.bq=0,0==u&&(u=2),p.x=function(e,n,i,r,o){var a=r,s=n,l=i;if(a.l.aj){t.cf(a.l);t.e7.isPlaceholderValue(a.l)&&(e=0)}a.ct=s+(l-s)*e},p.o=function(e,n){var i=e;if(i.l.aj){var r=t.e7.getDataRow(i.l);if(i.fb=r,-1==r)return i.ct;var o=t.e7.resolveValueForPath(t,i.l),a=!1;if(null==o&&t.e7.isPlaceholderValue(i.l)&&(a=!0),i.bm(t.e7.getRowType(i.l.x))){var s=t.q0(i.l,t,o,r);t.wx(i,o,t.e7.resolveRow(r),s)}a&&(i.ct=1)}else if(i.l.am){var l=t.q0(i.l,t,null,-1);t.wx(i,null,null,l)}return i.ct},t.model.b4()&&(p.g=new S(0,0,h.m,t.model.bx.y,t.model.bx.x),p.e=new S(0,0,h.m,t.model.bw.y,t.model.bw.x)),t.jg&&!o||(p.ba=0),t.dw.t(h,p)}}},e.prototype.ao=function(t,e){var i=this,r=this.p();this.x(r);var o=this.f.h;null!=t.columnAnimationSettings&&null!=t.animationSettings.h&&(o=t.animationSettings.h);var a=t.rowSelectionAnimationMode,s=(t.model,new vr);s.onFinished=n.delegateCombine(s.onFinished,(function(t){return i.w(r)})),s.onCanceled=n.delegateCombine(s.onCanceled,(function(t,e){return i.v(r)})),s.t=5,s.bx(o),s.al=!0,s.bq=1,0==a&&(a=2),s.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cq=a+(s-a)*t:o.cq=0},s.o=function(t,e){return t.cq};var l=t.fu(e);t.model.b4()&&(s.g=new S(0,0,t.model.c8,l.y,l.x),s.g.d=t.model.b9._inner[t.model.c8].d,s.e=new S(0,0,t.model.db,l.y,l.x),s.e.d=t.model.b9._inner[t.model.db].d),t.kd&&!t.dragger.isDragActive||(s.ba=0),t.dw.v(l,s)},e.prototype.aq=function(t,e){var i=this,r=this.p();this.x(r);var o=this.f.h;null!=t.columnAnimationSettings&&null!=t.animationSettings.h&&(o=t.animationSettings.h);var a=t.rowSelectionAnimationMode,s=(t.model,new vr);s.onFinished=n.delegateCombine(s.onFinished,(function(t){return i.w(r)})),s.onCanceled=n.delegateCombine(s.onCanceled,(function(t,e){return i.v(r)})),s.t=5,s.bx(o),s.al=!0,s.bq=0,0==a&&(a=2),s.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cq=a+(s-a)*t:o.cq=0},s.o=function(t,e){return t.cq};var l=t.fu(e);t.model.b4()&&(s.g=new S(0,0,t.model.c8,l.y,l.x),s.g.d=t.model.b9._inner[t.model.c8].d,s.e=new S(0,0,t.model.db,l.y,l.x),s.e.d=t.model.b9._inner[t.model.db].d),t.kd&&!t.dragger.isDragActive||(s.ba=0),t.dw.v(l,s)},e.prototype.ae=function(t,e,i,r){var o=this,a=this.p();this.x(a);var s=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(s=t.animationSettings.h);t.model;var l=new gr;l.onFinished=n.delegateCombine(l.onFinished,(function(t){return o.w(a)})),l.onCanceled=n.delegateCombine(l.onCanceled,(function(t,e){return o.v(a)})),l.t=5,l.bx(s),l.al=!0,l.bq=1,l.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cq=a+(s-a)*t:o.cq=0},l.o=function(t,e){return t.cq};var u=new S(1,i,0,e);t.model.b4()&&(l.g=new S(0,0,t.model.c8,u.y,u.x),l.e=new S(0,0,t.model.db,u.y,u.x)),t.jh&&!t.dragger.isDragActive||(l.ba=0),t.dw.r(u,l,r)},e.prototype.aa=function(t,e,i,r){var o=this,a=this.p();this.x(a);var s=this.f.e;null!=t.animationSettings&&null!=t.animationSettings.e&&(s=t.animationSettings.e);t.model;var l=new gr;l.onFinished=n.delegateCombine(l.onFinished,(function(t){return o.w(a)})),l.onCanceled=n.delegateCombine(l.onCanceled,(function(t,e){return o.v(a)})),l.t=9,l.bx(s),l.al=!0,l.bq=1,l.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cf=a+(s-a)*t:o.cf=0},l.o=function(t,e){return t.cf};var u=new S(1,i,0,e);t.model.b4()&&(l.g=new S(0,0,i,u.y,u.x),l.e=new S(0,0,i,u.y,u.x)),t.dw.r(u,l,r)},e.prototype.af=function(t,e,i,r){var o=this,a=this.p();this.x(a);var s=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(s=t.animationSettings.h);t.model;var l=new gr;l.onFinished=n.delegateCombine(l.onFinished,(function(t){return o.w(a)})),l.onCanceled=n.delegateCombine(l.onCanceled,(function(t,e){return o.v(a)})),l.t=5,l.bx(s),l.al=!0,l.bq=0,l.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cq=a+(s-a)*t:o.cq=0},l.o=function(t,e){return t.cq};var u=new S(1,i,0,e);t.model.b4()&&(l.g=new S(0,0,t.model.c8,u.y,u.x),l.e=new S(0,0,t.model.db,u.y,u.x)),t.jh&&!t.dragger.isDragActive||(l.ba=0),t.dw.r(u,l,r)},e.prototype.ab=function(t,e,i,r){var o=this,a=this.p();this.x(a);var s=this.f.e;null!=t.animationSettings&&null!=t.animationSettings.e&&(s=t.animationSettings.e);t.model;var l=new gr;l.onFinished=n.delegateCombine(l.onFinished,(function(t){return o.w(a)})),l.onCanceled=n.delegateCombine(l.onCanceled,(function(t,e){return o.v(a)})),l.t=9,l.bx(s),l.al=!0,l.bq=0,l.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cf=a+(s-a)*t:o.cf=0},l.o=function(t,e){return t.cf};var u=new S(1,i,0,e);t.model.b4()&&(l.g=new S(0,0,i,u.y,u.x),l.e=new S(0,0,i,u.y,u.x)),t.dw.r(u,l,r)},e.prototype.ac=function(t,e,i){var r=this,o=this.p();this.x(o);var a=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(a=t.animationSettings.h);t.model;var s=new yr;s.onFinished=n.delegateCombine(s.onFinished,(function(t){return r.w(o)})),s.onCanceled=n.delegateCombine(s.onCanceled,(function(t,e){return r.v(o)})),s.t=5,s.bx(a),s.al=!0,s.bq=1,s.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cq=a+(s-a)*t:o.cq=0},s.o=function(t,e){return t.cq};var l=new S(1,i,0,e);t.model.b4()&&(s.g=new S(0,0,t.model.c8,l.y,l.x),s.e=new S(0,0,t.model.db,l.y,l.x)),t.jh&&!t.dragger.isDragActive||(s.ba=0),t.dw.s(l,s)},e.prototype.ad=function(t,e,i){var r=this,o=this.p();this.x(o);var a=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(a=t.animationSettings.h);t.model;var s=new yr;s.onFinished=n.delegateCombine(s.onFinished,(function(t){return r.w(o)})),s.onCanceled=n.delegateCombine(s.onCanceled,(function(t,e){return r.v(o)})),s.t=5,s.bx(a),s.al=!0,s.bq=0,s.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cq=a+(s-a)*t:o.cq=0},s.o=function(t,e){return t.cq};var l=new S(1,i,0,e);t.model.b4()&&(s.g=new S(0,0,t.model.c8,l.y,l.x),s.e=new S(0,0,t.model.db,l.y,l.x)),t.jh&&!t.dragger.isDragActive||(s.ba=0),t.dw.s(l,s)},e.prototype.an=function(t,e){var i=this,r=this.p();this.x(r);var o=this.f.g;null!=t.columnAnimationSettings&&null!=t.animationSettings.g&&(o=t.animationSettings.g);var a=new vr;a.onFinished=n.delegateCombine(a.onFinished,(function(t){return i.w(r)})),a.onCanceled=n.delegateCombine(a.onCanceled,(function(t,e){return i.v(r)})),a.t=6,a.bx(o),a.al=!0,a.bq=1,a.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj&&o.be?o.cl=a+(s-a)*t:o.cl=0},a.o=function(t,e){return t.cl};var s=t.fu(e);t.model.b4()&&(a.g=new S(0,0,t.model.c8,s.y,s.x),a.g.d=t.model.b9._inner[t.model.c8].d,a.e=new S(0,0,t.model.db,s.y,s.x),a.e.d=t.model.b9._inner[t.model.db].d),t.kb||(a.ba=0),t.dw.v(s,a)},e.prototype.ap=function(t,e){var i=this,r=this.p();this.x(r);var o=this.f.g;null!=t.columnAnimationSettings&&null!=t.animationSettings.g&&(o=t.animationSettings.g);var a=new vr;a.onFinished=n.delegateCombine(a.onFinished,(function(t){return i.w(r)})),a.onCanceled=n.delegateCombine(a.onCanceled,(function(t,e){return i.v(r)})),a.t=6,a.bx(o),a.al=!0,a.bq=0,a.x=function(t,e,n,i,r){var o=i,a=e,s=n;o.l.aj?o.cl=a+(s-a)*t:o.cl=0},a.o=function(t,e){return t.cl};var s=t.fu(e);t.model.b4()&&(a.g=new S(0,0,t.model.c8,s.y,s.x),a.g.d=t.model.b9._inner[t.model.c8].d,a.e=new S(0,0,t.model.db,s.y,s.x),a.e.d=t.model.b9._inner[t.model.db].d),t.kb||(a.ba=0),t.dw.v(s,a)},e.$t=n.markType(e,"GridAnimationManager"),e.o=0,e}(n.Base),Ci=function(t){function e(){var e=t.call(this)||this;e.g=null,e.ac=null,e.n=!1,e.h=new fn,e.y=null,e.aa=null,e.propertyChanged=null,e.propertyUpdated=null,e.o=!0,e.ab=null,e.b=null,e.d=null,e.l=!1,e.k=!1,e.m=!1,e.filterStringErrorsParsing=null,e.c=null,e.ak=n.Guid.newGuid().toString();var i=e.h;return i.collectionChanged=n.delegateCombine(i.collectionChanged,n.runOn(e,e.am)),e}return i.__extends(e,t),e.prototype.get_s=function(){return!1},Object.defineProperty(e.prototype,"s",{get:function(){return this.get_s()},enumerable:!1,configurable:!0}),e.prototype.am=function(t,e){var r,o;if(null!=e.newItems)try{for(var a=i.__values(n.fromEn(e.newItems)),s=a.next();!s.done;s=a.next()){s.value;this.g}}catch(t){r={error:t}}finally{try{s&&!s.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}this.o=!0},Object.defineProperty(e.prototype,"ak",{get:function(){return this.ac},set:function(t){var e=this.ac;this.ac=t,e!=t&&this.ao("StyleKey",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.n},set:function(t){var e=this.n;this.n=t,e!=t&&this.ao("IsTransitionInEnabled",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"properties",{get:function(){return this.h},enumerable:!1,configurable:!0}),e.prototype.an=function(t){if(this.z(),null!=this.aa)for(var e=0;e<this.aa.count;e++)t.add_1(this.aa._inner[e])},e.prototype.z=function(){if(this.o){if(this.o=!1,this.y=null,this.aa=null,this.w&&(null==this.y&&(this.y=new n.HashSet$1(n.String_$type,0),this.aa=new n.List$1(n.String_$type,0)),this.y.add_1("transition@@@"+this.ak),this.aa.add("transition@@@"+this.ak)),this.properties.count>0){null==this.y&&(this.y=new n.HashSet$1(n.String_$type,0),this.aa=new n.List$1(n.String_$type,0));for(var t=0;t<this.properties.count;t++)null!=this.properties._inner[t].b9&&(this.y.add_1(this.properties._inner[t].b9),this.aa.add(this.properties._inner[t].b9))}return this.y}return this.y},Object.defineProperty(e.prototype,"ae",{get:function(){return this.ab},set:function(t){var e=this.ab;this.ab=t,e!=this.ab&&this.ao("ConditionString",e,this.ab)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.ao("Condition",e,this.b)},enumerable:!1,configurable:!0}),e.prototype.x=function(){if(this.p()||this.q()||this.r())return!0;for(var t=0;t<this.properties.count;t++)if(this.properties._inner[t].ar)return!0;return!1},Object.defineProperty(e.prototype,"u",{get:function(){return this.l},set:function(t){var e=this.l;this.l=t,e!=t&&this.ao("IsFieldMinimumNeeded",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"t",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=t&&this.ao("IsFieldMaximumNeeded",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,e!=t&&this.ao("IsFieldSumNeeded",e,t)},enumerable:!1,configurable:!0}),e.prototype.q=function(){if(this.u)return!0;for(var t=0;t<this.properties.count;t++)if(this.properties._inner[t].ap)return!0;return!1},e.prototype.p=function(){if(this.t)return!0;for(var t=0;t<this.properties.count;t++)if(this.properties._inner[t].ao)return!0;return!1},e.prototype.r=function(){if(this.v)return!0;for(var t=0;t<this.properties.count;t++)if(this.properties._inner[t].aq)return!0;return!1},e.prototype.ao=function(t,e,i){this.ap(t,e,i),null!=this.propertyUpdated&&this.propertyUpdated(this,new n.PropertyUpdatedEventArgs(t,e,i)),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.ap=function(t,e,n){switch(t){case"ConditionString":case"Condition":this.d=this.f();break;case"IsTransitionInEnabled":this.o=!0}},e.prototype.f=function(){if(null!=this.e)return this.e;if(null==this.c&&null!=this.ae){var t=n.FilterExpressionParsingHelper.getFilterExpression(this.ae);if(!n.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new pn).propertyName="ConditionString",e.errors=t.errors,e)),null;this.c=t.result}var e;return this.c},e.$t=n.markType(e,"GridConditionalStyle",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),xi=function(t){function e(){return t.call(this,Ci.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"GridConditionalStyleCollection",n.ObservableCollection$1.$.specialize(Ci.$)),e}(n.ObservableCollection$1),_i=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.g=null,e.e=null,e.f=null,e.d=!1,e.b=0,e.filterRequested=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"a",{get:function(){return n.FilterFactory.instance},enumerable:!1,configurable:!0}),e.prototype.h=function(t){null!=this.filterRequested&&this.filterRequested(this,t)},e.$t=n.markType(e,"FilterOperand"),e}(n.Base),wi=function(t){function e(){return t.call(this,_i.$,0)||this}return i.__extends(e,t),e.prototype.af=function(t){this.collectionChanged=n.delegateCombine(this.collectionChanged,t)},e.prototype.ag=function(t){this.collectionChanged=n.delegateRemove(this.collectionChanged,t)},Object.defineProperty(e.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridFilterOperandsCollection",n.ObservableCollection$1.$.specialize(_i.$)),e}(n.ObservableCollection$1),Si=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.e=null,e.g=null,e.i=null,e.a=null,e.c=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"primaryKey",{get:function(){return null==this.e&&null!=this.g&&null!=this.d&&(this.e=this.d.e7.getItemKey(this.d.i(),this.g)),this.e},set:function(t){this.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return null==this.g&&null!=this.e&&null!=this.d&&(this.g=this.d.e7.getItemForKey(this.primaryKey)),this.g},set:function(t){this.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.i},set:function(t){this.i=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return null!=this.a&&this.a.grid==this.d||null==this.d||(this.a=this.d.ay.g(this.j)),this.a},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CellKey"),e}(n.Base),Pi=function(t){function e(){return t.call(this,Si.$,0)||this}return i.__extends(e,t),e.prototype.an=function(t){this.collectionChanged=n.delegateCombine(this.collectionChanged,t)},e.prototype.ao=function(t){this.collectionChanged=n.delegateRemove(this.collectionChanged,t)},Object.defineProperty(e.prototype,"am",{get:function(){return this},enumerable:!1,configurable:!0}),e.prototype.ai=function(t,e){for(var n=0;n<this.count;n++)if(null!=this._inner[n].primaryKey&&this._inner[n].primaryKey.equals(t)&&null!=this._inner[n].b&&this._inner[n].b.ko==e)return this._inner[n];return null},e.prototype.aj=function(t,e){for(var n=0;n<this.count;n++)if(this._inner[n].primaryKey.equals(t)&&this._inner[n].j==e)return this._inner[n];return null},e.prototype.ak=function(t,e){for(var n=0;n<this.count;n++)if(this._inner[n].h==t&&this._inner[n].j==e)return this._inner[n];return null},e.prototype.ae=function(t,e){return this.af(t,e.lt())},e.prototype.af=function(t,e){if(null!=this.aj(t,e))return null;var n=new Si;return n.primaryKey=t,n.j=e,this.add(n),n},e.prototype.ag=function(t,e){return this.ah(t,e.lt())},e.prototype.ah=function(t,e){if(null!=this.ak(t,e))return null;var n=new Si;return n.h=t,n.j=e,this.add(n),n},e.prototype.al=function(t,e){var n=this.ai(t,e);return null!=n&&this.remove(n),n},e.$t=n.markType(e,"GridSelectedCellsCollection",n.ObservableCollection$1.$.specialize(Si.$)),e}(n.ObservableCollection$1),Oi=function(t){function e(){var e=t.call(this)||this;e.a3=new n.HashSet$1(Ci.$,0),e.ay=new n.Dictionary$2(n.String_$type,n.List$1.$.specialize(Ci.$),0),e.a2=new n.HashSet$1(Ci.$,0),e.az=new n.Dictionary$2(Ci.$,n.List$1.$.specialize(n.Number_$type),0),e.ax=new n.Dictionary$2(n.Number_$type,Ci.$,0),e.cl=null,e.x=null,e.fu=null,e.v=new xi,e.fx=null,e.fj=null,e.fy=null,e.fo=null,e.bw=n.truncate(n.DeviceUtils.g(0)),e.by=n.truncate(n.DeviceUtils.g(0)),e.bx=n.truncate(n.DeviceUtils.g(0)),e.bv=n.truncate(n.DeviceUtils.g(0)),e.bo=n.truncate(n.DeviceUtils.g(1)),e.bq=n.truncate(n.DeviceUtils.g(1)),e.bp=n.truncate(n.DeviceUtils.g(1)),e.bn=n.truncate(n.DeviceUtils.g(1)),e.b0=n.truncate(n.DeviceUtils.g(2)),e.b2=n.truncate(n.DeviceUtils.g(2)),e.b1=n.truncate(n.DeviceUtils.g(2)),e.bz=n.truncate(n.DeviceUtils.g(2)),e.t=null,e.fl=null,e.fk=null,e.fp=null,e.f1=null,e.fs=null,e.f0=null,e.fr=null,e.fz=null,e.fq=null,e.bd=1,e.d=4,e.i=4,e.c=0,e.h=1,e.aa=0,e.z=0,e.f2=null,e.ft=null,e.an=!1,e.fv=null,e.fm=null,e.fw=null,e.fn=null,e.bu=-1,e.bs=1,e.bt=-1,e.br=2,e.be=NaN,e.bc=0,e.ag=null,e.af=null,e.a6=new n.List$1(n.String_$type,0),e.a7=new n.List$1(Ci.$,0),e.al=!1,e.a=null,e.dataBinding=null,e.dataBound=null,e.propertyChanged=null,e.ak=!1,e.a1=new n.HashSet$1(n.String_$type,0),e.a5=new n.List$1(n.String_$type,0),e.a0=new n.Dictionary$2(n.String_$type,Mt,0),e.definitionPropertyUpdated=null,e.ad=null,e.am=!1,e.cellStyleKeyRequested=null,e.f5=e.gk(),e.gc=e.gq(),e.gb=e.go(),e.ga=e.gn(),e.bf=e.bi(),e.gd=e.gr(),e.ah=e.aj(),e.f9=h.bm;var i=e.conditionalStyles;return i.collectionChanged=n.delegateCombine(i.collectionChanged,n.runOn(e,e.ef)),e}return i.__extends(e,t),e.prototype.ef=function(t,e){if(this.am=this.conditionalStyles.count>0,null!=e.oldItems)for(var n=0;n<e.oldItems.count;n++)this.ep(e.oldItems.item(n));if(null!=e.newItems)for(var i=0;i<e.newItems.count;i++){var r=e.newItems.item(i);this.em(r)}if(null!=this.grid&&this.grid.invalidateVisibleRows(),null!=e.newItems)for(var o=0;o<e.newItems.count;o++){var a=e.newItems.item(o);a.x()&&this.at(a)?this.ez(a):this.eg(a,!1)}},e.prototype.ez=function(t){this.a3.add_1(t),this.e0(t)},e.prototype.e0=function(t){},e.prototype.ct=function(){return null},e.prototype.cs=function(){return null},e.prototype.cr=function(){return null},e.prototype.eh=function(t,e){if(0!=this.a3.count){this.fb();for(var n=!1,i=0;i<this.conditionalStyles.count;i++){var r=this.conditionalStyles._inner[i];this.a3.contains(r)&&(this.at(r)||(n=!0,this.a3.remove(r),this.eg(r,!1)))}n&&this.grid.xq()}},e.prototype.fb=function(){null!=this.cs()&&(null==this.a&&(this.a=new n.FilterExpressionEnvironment),this.a.setVariableValue("columnMinimum",this.cs())),null!=this.cr()&&(null==this.a&&(this.a=new n.FilterExpressionEnvironment),this.a.setVariableValue("columnMaximum",this.cr()))},e.prototype.ep=function(t){if(null!=t.ak&&(this.ao("transition@@@"+t.ak)&&this.ew("transition@@@"+t.ak),this.ao("transition@@@"+t.ak+"@@@handler")&&this.ew("transition@@@"+t.ak+"@@@handler"),this.ay.containsKey(t.ak)&&(this.ay.removeItem(t.ak),this.ex(t.ak)),t.s))for(var e=t.aq(),n=0;n<e.count;n++)this.ep(e._inner[n])},e.prototype.ex=function(t){var e,r,o,a,s=new n.List$1(n.String_$type,0);try{for(var l=i.__values(n.fromEnum(this.ay.keys)),u=l.next();!u.done;u=l.next()){var c=u.value;if(n.stringContains(c,"@@@"))for(var h=this.bb(c),p=0;p<h.count;p++)n.Base.equalsStatic(h._inner[p],t)&&s.add(c)}}catch(t){e={error:t}}finally{try{u&&!u.done&&(r=l.return)&&r.call(l)}finally{if(e)throw e.error}}try{for(var d=i.__values(n.fromEnum(s)),f=d.next();!f.done;f=d.next()){var m=f.value;this.ay.removeItem(m)}}catch(t){o={error:t}}finally{try{f&&!f.done&&(a=d.return)&&a.call(d)}finally{if(o)throw o.error}}},e.prototype.em=function(t){if(t.propertyUpdated=n.delegateCombine(t.propertyUpdated,n.runOn(this,this.ei)),null!=t.ak&&(this.ay.item(t.ak,((r=new n.List$1(Ci.$,0)).add(t),r)),t.s))for(var e=t.aq(),i=0;i<e.count;i++)this.em(e._inner[i]);var r},e.prototype.eg=function(t,e){var n=this;if(t.w){var i=this.grid.columnPropertyUpdatingAnimationMode,r=!1;this.ao("transition@@@"+t.ak+"@@@handler")||this.e1("transition@@@"+t.ak+"@@@handler",10,(function(e,i){var r=t;n.ee(r,i,i.hm,i.hn)}));var o=NaN;this.ao("transition@@@"+t.ak)&&(o=this.co("transition@@@"+t.ak));var a=0;e&&(a=1),this.ao("transition@@@"+t.ak)&&(e||1!=o)||this.e1("transition@@@"+t.ak,0,a),null!=this.grid&&1==this.grid.columnPropertyUpdatingAnimationMode&&(r=!0,this.grid.columnPropertyUpdatingAnimationMode=2);var s=1;e&&(s=0),this.e1("transition@@@"+t.ak,0,s),r&&(this.grid.columnPropertyUpdatingAnimationMode=i)}},e.prototype.e3=function(t){var e,r;if(t.x()&&this.at(t))this.conditionalStyles.remove(t);else{if(this.a2.add_1(t),null!=this.grid&&t.w){var o=this.grid.c5;o.animationCompleted=n.delegateCombine(o.animationCompleted,n.runOn(this,this.ed));var a=this.grid.c5;a.animationCanceled=n.delegateCombine(a.animationCanceled,n.runOn(this,this.ec)),this.grid.c5.as()}if(this.eg(t,!0),null!=this.grid&&t.w){var s=this.grid.c5.m(),l=new n.List$1(n.Number_$type,0);try{for(var u=i.__values(n.fromEnum(s)),c=u.next();!c.done;c=u.next()){var h=c.value;l.add(h),this.ax.item(h,t)}}catch(t){e={error:t}}finally{try{c&&!c.done&&(r=u.return)&&r.call(u)}finally{if(e)throw e.error}}this.az.item(t,l)}}},e.prototype.ec=function(t,e){this.ek(e.a)},e.prototype.ek=function(t){if(this.ax.containsKey(t)){var e=this.ax.item(t);if(this.ax.removeItem(t),this.az.containsKey(e)){var i=this.az.item(e);if(i.remove(t),0==i.count&&(this.az.removeItem(e),this.conditionalStyles.remove(e),null!=this.grid&&0==this.ax.count)){var r=this.grid.c5;r.animationCanceled=n.delegateRemove(r.animationCanceled,n.runOn(this,this.ec));var o=this.grid.c5;o.animationCompleted=n.delegateRemove(o.animationCompleted,n.runOn(this,this.ed))}}else this.conditionalStyles.remove(e)}},e.prototype.ed=function(t,e){this.ek(e.a)},e.prototype.e2=function(t){var e,r;if(this.a2.contains(t)){if(this.az.containsKey(t)){var o=this.az.item(t);try{for(var a=i.__values(n.fromEnum(o)),s=a.next();!s.done;s=a.next()){var l=s.value;this.ax.containsKey(l)&&this.ax.removeItem(l)}}catch(t){e={error:t}}finally{try{s&&!s.done&&(r=a.return)&&r.call(a)}finally{if(e)throw e.error}}if(this.az.removeItem(t),null!=this.grid&&0==this.ax.count){var u=this.grid.c5;u.animationCanceled=n.delegateRemove(u.animationCanceled,n.runOn(this,this.ec));var c=this.grid.c5;c.animationCompleted=n.delegateRemove(c.animationCompleted,n.runOn(this,this.ed))}}this.a2.remove(t)}t.x()&&this.at(t)?this.ez(t):this.eg(t,!1)},e.prototype.as=function(t){return this.a2.contains(t)},e.prototype.ei=function(t,e){switch(e.propertyName){case"StyleKey":null!=e.oldValue&&this.ay.containsKey(e.oldValue)&&(this.ay.removeItem(e.oldValue),this.ex(e.oldValue)),null!=e.newValue&&this.ay.item(e.newValue,((i=new n.List$1(Ci.$,0)).add(t),i))}var i},Object.defineProperty(e.prototype,"externalObject",{get:function(){return this.cl},set:function(t){var e=this.cl;this.cl=t,this.x=n.typeCast($i,this.cl),this.cl!=e&&this.et("ExternalObject",10,e,this.cl)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ge",{get:function(){return this.fu},set:function(t){var e=this.fu;this.fu=t,this.fu!=e&&this.et("Background",10,e,this.fu)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"conditionalStyles",{get:function(){return this.v},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gh",{get:function(){return this.fx},set:function(t){var e=this.fx;this.fx=t,this.fx!=e&&this.et("Border",10,e,this.fx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f3",{get:function(){return this.fj},set:function(t){var e=this.fj;this.fj=t,this.fj!=e&&this.et("ActivationBorder",10,e,this.fj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gi",{get:function(){return this.fy},set:function(t){var e=this.fy;this.fy=t,this.fy!=e&&this.et("ErrorBorder",10,e,this.fy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f8",{get:function(){return this.fo},set:function(t){var e=this.fo;this.fo=t,this.fo!=e&&this.et("ActualBorder",2,e,this.fo)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cc",{get:function(){return this.bw},set:function(t){var e=this.bw;this.bw=t,this.bw!=e&&this.et("BorderLeftWidth",6,e,this.bw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ce",{get:function(){return this.by},set:function(t){var e=this.by;this.by=t,this.by!=e&&this.et("BorderTopWidth",6,e,this.by)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cd",{get:function(){return this.bx},set:function(t){var e=this.bx;this.bx=t,this.bx!=e&&this.et("BorderRightWidth",6,e,this.bx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cb",{get:function(){return this.bv},set:function(t){var e=this.bv;this.bv=t,this.bv!=e&&this.et("BorderBottomWidth",6,e,this.bv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b4",{get:function(){return this.bo},set:function(t){var e=this.bo;this.bo=t,this.bo!=e&&this.et("ActivationBorderLeftWidth",6,e,this.bo)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b6",{get:function(){return this.bq},set:function(t){var e=this.bq;this.bq=t,this.bq!=e&&this.et("ActivationBorderTopWidth",6,e,this.bq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b5",{get:function(){return this.bp},set:function(t){var e=this.bp;this.bp=t,this.bp!=e&&this.et("ActivationBorderRightWidth",6,e,this.bp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b3",{get:function(){return this.bn},set:function(t){var e=this.bn;this.bn=t,this.bn!=e&&this.et("ActivationBorderBottomWidth",6,e,this.bn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cg",{get:function(){return this.b0},set:function(t){var e=this.b0;this.b0=t,this.b0!=e&&this.et("ErrorBorderLeftWidth",6,e,this.b0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ci",{get:function(){return this.b2},set:function(t){var e=this.b2;this.b2=t,this.b2!=e&&this.et("ErrorBorderTopWidth",6,e,this.b2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ch",{get:function(){return this.b1},set:function(t){var e=this.b1;this.b1=t,this.b1!=e&&this.et("ErrorBorderRightWidth",6,e,this.b1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cf",{get:function(){return this.bz},set:function(t){var e=this.bz;this.bz=t,this.bz!=e&&this.et("ErrorBorderBottomWidth",6,e,this.bz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"grid",{get:function(){return this.t},set:function(t){var e=this.t;this.t=t,this.er(e,t)},enumerable:!1,configurable:!0}),e.prototype.er=function(t,e){if(null!=t){if(t.propertyChanged=n.delegateRemove(t.propertyChanged,n.runOn(this,this.es)),null!=t&&0==this.ax.count){var i=t.c5;i.animationCanceled=n.delegateRemove(i.animationCanceled,n.runOn(this,this.ec));var r=t.c5;r.animationCompleted=n.delegateRemove(r.animationCompleted,n.runOn(this,this.ed)),this.ax.clear(),this.az.clear(),this.a2.clear()}t.rootSummariesChanged=n.delegateRemove(t.rootSummariesChanged,n.runOn(this,this.eh))}if(null!=e&&(e.propertyChanged=n.delegateCombine(e.propertyChanged,n.runOn(this,this.es)),e.rootSummariesChanged=n.delegateCombine(e.rootSummariesChanged,n.runOn(this,this.eh)),this.am))for(var o=0;o<this.conditionalStyles.count;o++)this.conditionalStyles._inner[o].x()&&this.at(this.conditionalStyles._inner[o])&&this.ez(this.conditionalStyles._inner[o]);this.e4(),this.eq(t,e)},e.prototype.eq=function(t,e){},e.prototype.es=function(t,e){switch(e.propertyName){case"IsActiveCellStyleEnabled":this.e4()}},Object.defineProperty(e.prototype,"f5",{get:function(){return this.fl},set:function(t){var e=this.fl;this.fl=t,this.fl!=e&&this.et("ActualBackground",2,e,this.fl)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f4",{get:function(){return this.fk},set:function(t){var e=this.fk;this.fk=t,this.fk!=e&&this.et("ActualActivationBorder",2,e,this.fk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f9",{get:function(){return this.fp},set:function(t){var e=this.fp;this.fp=t,this.fp!=e&&this.et("ActualErrorBorder",2,e,this.fp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gw",{get:function(){return this.f1},set:function(t){var e=this.f1;this.f1=t,this.f1!=e&&this.et("PinnedBackground",10,e,this.f1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gc",{get:function(){return this.fs},set:function(t){var e=this.fs;this.fs=t,this.fs!=e&&this.et("ActualStickyRowBackground",2,e,this.fs)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gv",{get:function(){return this.f0},set:function(t){var e=this.f0;this.f0=t,this.f0!=e&&this.et("PinnedRowBackground",10,e,this.f0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gb",{get:function(){return this.fr},set:function(t){var e=this.fr;this.fr=t,this.fr!=e&&this.et("ActualPinnedRowBackground",2,e,this.fr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gu",{get:function(){return this.fz},set:function(t){var e=this.fz;this.fz=t,this.fz!=e&&this.et("LastStickyRowBackground",10,e,this.fz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ga",{get:function(){return this.fq},set:function(t){var e=this.fq;this.fq=t,this.fq!=e&&this.et("ActualLastStickyRowBackground",2,e,this.fq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bh",{get:function(){return this.bd},set:function(t){var e=this.bd;this.bd=t,this.bd!=e&&this.et("ContentOpacity",0,e,this.bd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,this.d!=e&&this.et("HorizontalAlignment",10,n.enumGetBox(I,e),n.enumGetBox(I,this.d))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,this.i!=e&&this.et("VerticalAlignment",10,n.enumGetBox(k,e),n.enumGetBox(k,this.i))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,this.c!=e&&this.et("ActualHorizontalAlignment",4,n.enumGetBox(I,e),n.enumGetBox(I,this.c))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,this.h!=e&&this.et("VerticalAlignment",4,n.enumGetBox(k,e),n.enumGetBox(k,this.h))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ac",{get:function(){return this.aa},set:function(t){var e=this.aa;this.aa=t,this.aa!=e&&this.et("LineBreakMode",10,n.enumGetBox(R,e),n.enumGetBox(R,this.aa))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ab",{get:function(){return this.z},set:function(t){var e=this.z;this.z=t,this.z!=e&&this.et("ActualLineBreakMode",4,n.enumGetBox(R,e),n.enumGetBox(R,this.z))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gx",{get:function(){return this.f2},set:function(t){var e=this.f2;this.f2=t,this.f2!=e&&this.et("TextColor",10,e,this.f2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gd",{get:function(){return this.ft},set:function(t){var e=this.ft;this.ft=t,this.ft!=e&&this.et("ActualTextColor",2,e,this.ft)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ar",{get:function(){return this.an},set:function(t){var e=this.an;this.an=t,this.an!=e&&this.et("IsBarSupported",10,e,this.an)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gf",{get:function(){return this.fv},set:function(t){var e=this.fv;this.fv=t,this.fv!=e&&this.et("BarBackground",10,e,this.fv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f6",{get:function(){return this.fm},set:function(t){var e=this.fm;this.fm=t,this.fm!=e&&this.et("ActualBarBackground",2,e,this.fm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gg",{get:function(){return this.fw},set:function(t){var e=this.fw;this.fw=t,this.fw!=e&&this.et("BarOutline",10,e,this.fw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f7",{get:function(){return this.fn},set:function(t){var e=this.fn;this.fn=t,this.fn!=e&&this.et("ActualBarOutline",2,e,this.fn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ca",{get:function(){return this.bu},set:function(t){var e=this.bu;this.bu=t,this.bu!=e&&this.et("BarStrokeThickness",10,e,this.bu)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b8",{get:function(){return this.bs},set:function(t){var e=this.bs;this.bs=t,this.bs!=e&&this.et("ActualBarStrokeThickness",6,e,this.bs)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b9",{get:function(){return this.bt},set:function(t){var e=this.bt;this.bt=t,this.bt!=e&&this.et("BarCornerRadius",10,e,this.bt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b7",{get:function(){return this.br},set:function(t){var e=this.br;this.br=t,this.br!=e&&this.et("ActualBarCornerRadius",6,e,this.br)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bm",{get:function(){return this.be},set:function(t){var e=this.be;this.be=t,this.be!=e&&this.et("PinnedRowOpacity",10,e,this.be)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bf",{get:function(){return this.bc},set:function(t){var e=this.bc;this.bc=t,this.bc!=e&&this.et("ActualPinnedRowOpacity",0,e,this.bc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"textStyle",{get:function(){return this.ag},set:function(t){var e=this.ag;this.ag=t,this.ag!=e&&this.et("FontInfo",10,e,this.ag)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ah",{get:function(){return this.af},set:function(t){var e=this.af;this.af=t,this.af!=e&&this.et("ActualFontInfo",3,e,this.af)},enumerable:!1,configurable:!0}),e.prototype.m=function(t,e){var n=this.n(t);n.kc=e;var i=this.ba(e);return null!=i&&n.km(i),n},e.prototype.ba=function(t){if(this.am){return this.a9(t)}return null},e.prototype.bb=function(t){this.a6.clear();for(var e=!0;n.stringContains(t,"@@@");){var i=t.indexOf("@@@"),r=t.substr(i+3),o=t.substr(0,i);e?e=!1:this.a6.add(o),t=r}return this.a6.add(t),this.a6},e.prototype.a9=function(t){var e=this,i=null;if(function(){var n=e.ay.tryGetValue(t,i);return i=n.p1,n.ret}())return i;if(n.stringContains(t,"@@@")){var r=this.bb(t);i=new n.List$1(Ci.$,0);for(var o=null,a=function(t){var n=r._inner[t];if(function(){var t=e.ay.tryGetValue(n,o);return o=t.p1,t.ret}())for(var a=0;a<o.count;a++)i.add(o._inner[a])},s=0;s<r.count;s++)a(s);this.ay.item(t,i)}return i},e.prototype.eu=function(t,e,n,i){for(var r=0;r<t.count;r++){var o=t._inner[r];if(null!=o.ak&&this.aw(o,e,n,i)&&(this.a7.add(o),o.s)){var a=o.aq();this.eu(a,e,n,i)}}},e.prototype.d1=function(t,e,n,i){var r=this.d2(t,e,n);if(this.am&&null!=e.actualDataSource){this.a7.clear();var o=e.e7.resolveRow(i);if(this.eu(this.conditionalStyles,e,n,o),this.a7.count>0)for(var a=0;a<this.a7.count;a++){var s=this.a7._inner[a];r=null!=r?r+"@@@"+s.ak:s.ak}}if(null==this.cellStyleKeyRequested)return r;var l=new mn;return l.resolvedValue=n,l.rowNumber=i,l.styleKey=r,this.cellStyleKeyRequested(this,l),l.styleKey},e.prototype.aw=function(t,e,n,i){if(null==t.d)return!0;if(null==e.actualDataSource)return!1;var r=i;return null!=e.actualDataSource.resolvedDataProvider&&!!t.d.matchWithEnvironment(r,e.actualDataSource.resolvedDataProvider,e.actualDataSource.actualSchema,this.b(t,n))},e.prototype.el=function(t,e,n,i){t.bi=e.model.b3,t.g=this.e,t.i=this.j,t.cm=0,t.cr=0,t.cn=0,t.cs=0,t.cj=1,t.ct=0,t.co=1,t.cj=this.bh,t.mc=this.gd,t.lx=this.f5,t.lt=this.f4,t.dy=this.b4,t.d3=this.b6,t.d1=this.b5,t.dw=this.b3,t.l2=this.f9,t.fk=this.cg,t.fp=this.ci,t.fn=this.ch,t.fi=this.cf,this.aq?(t.a0=!0,t.ly=this.f6,t.lz=this.f7,t.eu=this.b7,t.ey=this.b8):t.a0=!1,t.ci=0,this.ak?(t.l0=this.f8,t.e2=this.cc,t.e5=this.cd,t.e7=this.ce,t.e0=this.cb):null!=t.l0&&(t.l0=null,t.e2=0,t.e7=0,t.e5=0,t.e0=0),null!=this.grid&&null!=this.ah&&this.ah.w(this.grid.externalGrid.renderer),t.ag=this.ah,t.aa=this.ab,t.mb=this.gc,t.l8=this.gb,t.l7=this.ga,t.cp=this.bf,t.l3=h.a8,null==t.c&&(t.c=new En(e,t)),null==t.e&&(t.e=new Vn(e,t)),null==t.d&&(t.d=new Nn(t))},e.prototype.en=function(t,e,n,i){if(null!=this.dataBinding){var r=this.p(t,e,n,i);this.dataBinding(this,r),n=r.resolvedValue,i=r.rowObject}if(t.ay=!0,this.eo(t,e,n,i),t.ay=!1,this.am)for(var o=0;o<this.conditionalStyles.count;o++){var a=this.conditionalStyles._inner[o];a.x()&&this.at(a)||this.aw(a,e,n,i)&&this.ee(a,t,n,i)}null!=this.dataBound&&this.dataBound(this,this.p(t,e,n,i))},e.prototype.at=function(t){return!0},e.prototype.ee=function(t,e,i,r){if(!this.al&&null!=t){this.al=!0;for(var o=0;o<t.properties.count;o++){var a=t.properties._inner[o];if(a.as){if(a.an){a.an=!1;var s=e.kl(a.b9);a.a8=n.PlatformAPIHelper.n(s,a.bc)}if(a.am)if(a.am=!1,null!=a.d){for(var l=new n.List$1(n.Base.$,0),u=e.kl(a.b9),c=0;c<a.d.length;c++){var h=n.PlatformAPIHelper.n(u,a.d[o]);l.add1(h)}a.c=l.toArray()}else a.c=null;var p=1;switch(t.w&&e.az("transition@@@"+t.ak)&&(null==e.hk("transition@@@"+t.ak)?e.az("underlying_transition@@@"+t.ak)?(p=e.hk("underlying_transition@@@"+t.ak),e.k8("transition@@@"+t.ak,p)):p=0:p=e.hk("transition@@@"+t.ak)),a.aj){case 0:if(t.w&&1!=p){var d=e.hk("underlying_"+a.b9),f=this.cn(p,a,e,d,a.a8);e.k9(a.b9,f)}else e.k9(a.b9,a.a8);break;case 1:var m=this.bj(t,a,i,r),g=this.bl(t,a,i),y=this.bk(t,a,i);if(n.isNaN_(m)||n.isNaN_(g)||n.isNaN_(y))break;var b=(m-g)/(y-g);if(b<0&&(b=0),b>1&&(b=1),!n.isNaN_(b))if(t.w&&1!=p){var v=e.hk("underlying_"+a.b9),C=this.cn(p,a,e,v,b);e.k9(a.b9,C)}else e.k9(a.b9,b);break;case 2:var x=this.bj(t,a,i,r),_=this.bl(t,a,i),w=this.bk(t,a,i),S=null;if(n.isNaN_(x)||n.isNaN_(_)||n.isNaN_(w))break;if(null!=(S=null!=a.f?this.gs(a,x,_,w,a.f):this.gt(a,x,_,w,a.co,a.cn)))if(t.w&&1!=p){var P=e.hk("underlying_"+a.b9),O=this.cn(p,a,e,P,S);e.k9(a.b9,O)}else e.k9(a.b9,S);break;case 3:var I=this.bj(t,a,i,r),j=this.bl(t,a,i),k=this.bk(t,a,i);if(n.isNaN_(I)||n.isNaN_(j)||n.isNaN_(k))break;if(null!=a.f){var T=this.cp(a,I,j,k,a.f);if(t.w&&1!=p){var R=e.hk("underlying_"+a.b9),D=this.cn(p,a,e,R,T);e.k9(a.b9,D)}else e.k9(a.b9,T)}if(null!=a.c){var B=this.cq(a,I,j,k,a.c);if(t.w&&1!=p){var M=e.hk("underlying_"+a.b9),E=this.cn(p,a,e,M,B);e.k9(a.b9,E)}else e.k9(a.b9,B)}}}}if(this.al=!1,t.s){var A=t.aq();if(null!=A)for(var V=0;V<A.count;V++){var N=A._inner[V];this.aw(N,this.grid,i,r)&&this.ee(N,e,i,r)}}}},e.prototype.cn=function(t,e,i,r,o){var a=i.kl(e.b9);if(a==n.Brush.$){var s=r,l=o;return n.BrushUtil.n(s,t,l,0)}if(a==n.Number_$type){return r+t*o-r}if(a==n.Number_$type){var u=n.typeGetValue(r),c=n.typeGetValue(o);return n.truncate(Math.round(u+t*c-u))}return t<.5?r:o},e.prototype.cp=function(t,e,i,r,o){var a=(e-i)/(r-i);if(a<0&&(a=0),a>1&&(a=1),n.isNaN_(a))return null;var s=o.count*a,l=n.truncate(Math.round(s));return l<0&&(l=0),l>o.count-1&&(l=o.count-1),o.item(l)},e.prototype.cq=function(t,e,i,r,o){var a=(e-i)/(r-i);if(a<0&&(a=0),a>1&&(a=1),n.isNaN_(a))return null;var s=o.length*a,l=n.truncate(Math.round(s));return l<0&&(l=0),l>o.length-1&&(l=o.length-1),o[l]},e.prototype.gt=function(t,e,i,r,o,a){var s=(e-i)/(r-i);return s<0&&(s=0),s>1&&(s=1),n.isNaN_(s)?null:n.BrushUtil.n(o,s,a,0)},e.prototype.gs=function(t,e,i,r,o){var a=(e-i)/(r-i);if(a<0&&(a=0),a>1&&(a=1),n.isNaN_(a))return null;var s=o.count*a;return n.BrushCollectionUtil.d(o,s)},e.prototype.bk=function(t,e,i){if(!n.isNaN_(e.a0)){if(1==e.ag){var r=this.cs(),o=this.cr();return null==r||null==o?NaN:r+e.a0/100*(o-r)}return e.a0}if(null!=e.t){var a=e.t.evaluateWithEnvironment(i,this.grid.actualDataSource.resolvedDataProvider,this.grid.actualDataSource.actualSchema,this.b(t,i));if(1==e.ag){var s=null,l=null;if(s=n.isNaN_(e.a1)?this.cs():e.a1,l=n.isNaN_(e.a0)?this.cr():e.a0,null==s||null==l)return NaN;a=s+a/100*(l-s)}return a}var u=this.cr();return null!=u?u:NaN},e.prototype.bl=function(t,e,i){if(!n.isNaN_(e.a1)){if(1==e.ah){var r=this.cs(),o=this.cr();return null==r||null==o?NaN:r+e.a1/100*(o-r)}return e.a1}if(null!=e.u){var a=e.u.evaluateWithEnvironment(i,this.grid.actualDataSource.resolvedDataProvider,this.grid.actualDataSource.actualSchema,this.b(t,i));if(1==e.ah){var s=null,l=null;if(s=n.isNaN_(e.a1)?this.cs():e.a1,l=n.isNaN_(e.a0)?this.cr():e.a0,null==s||null==l)return NaN;a=s+a/100*(l-s)}return a}var u=this.cs();return null!=u?u:NaN},e.prototype.bg=function(t){return null!==n.typeCast(n.Date_$type,t)?t.getTime():null==t?0:t},e.prototype.b=function(t,e){if(t.q()&&t.p()&&null!=this.a){var n=this.bg(this.cs()),i=this.bg(this.cr()),r=(this.bg(e)-n)/(i-n);this.a.setVariableValue("columnValuePercentage",r)}return this.a},e.prototype.bj=function(t,e,n,i){if(null==e.s)return this.bg(n);var r=e.s.evaluateWithEnvironment(i,this.grid.actualDataSource.resolvedDataProvider,this.grid.actualDataSource.actualSchema,this.b(t,n));return this.bg(r)},e.prototype.p=function(t,e,n,i){var r=new zi;return r.cellInfo=t,r.resolvedValue=n,r.rowObject=i,r},e.prototype.eo=function(t,e,n,i){if(t.hn=i,!t.l.g&&this.ap())for(var r=this.ae,o=r.o,a=o.count,s=r.p,l=r.q,u=0;u<a;u++)s._inner[u]||t.k8(o._inner[u],l._inner[u])},e.prototype.dz=function(t,e,n){return null!=e?e.toString():""},e.prototype.ey=function(){for(var t=0;t<this.a5.count;t++)this.av(this.a5._inner[t])||this.au(this.a5._inner[t])},e.prototype.au=function(t){if(this.ao(t)){var e=11;return this.a0.containsKey(t)&&(e=this.a0.item(t)),this.ev(t,e,this.co(t),this.co(t)),!0}return!1},e.prototype.av=function(t){if(n.stringStartsWith(t,"Actual"))return!1;switch(t){case"Background":return this.et("ActualBackground",2,this.f5,this.f5),!0;case"ContentOpacity":return this.et("ContentOpacity",0,this.bh,this.bh),!0;case"FontInfo":return this.et("ActualFontInfo",3,this.ah,this.ah),!0;case"HorizontalAlignment":return this.et("ActualHorizontalAlignment",4,n.enumGetBox(I,this.e),n.enumGetBox(I,this.e)),!0;case"TextColor":return this.et("ActualTextColor",2,this.gd,this.gd),!0;case"VerticalAlignment":return this.et("VerticalAlignment",4,n.enumGetBox(k,this.j),n.enumGetBox(k,this.j)),!0;case"Border":return this.et("ActualBorder",2,this.f8,this.f8),!0;case"ActivationBorder":return this.et("ActualActivationBorder",2,this.f4,this.f4),!0;case"BorderLeftWidth":return this.et("BorderLeftWidth",0,this.cc,this.cc),!0;case"BorderTopWidth":return this.et("BorderTopWidth",0,this.ce,this.ce),!0;case"BorderRightWidth":return this.et("BorderRightWidth",0,this.cd,this.cd),!0;case"BorderBottomWidth":return this.et("BorderBottomWidth",0,this.cb,this.cb),!0;case"ActivationBorderLeftWidth":return this.et("ActivationBorderLeftWidth",0,this.b4,this.b4),!0;case"ActivationBorderTopWidth":return this.et("ActivationBorderTopWidth",0,this.b6,this.b6),!0;case"ActivationBorderRightWidth":return this.et("ActivationBorderRightWidth",0,this.b5,this.b5),!0;case"ActivationBorderBottomWidth":return this.et("ActivationBorderBottomWidth",0,this.b3,this.b3),!0}return!1},e.prototype.et=function(t,e,i,r){var o;null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.ev(t,e,i,r),null!=this.definitionPropertyUpdated&&this.definitionPropertyUpdated(this,((o=new Dt).propertyName=t,o.animationType=e,o.newValue=r,o.oldValue=i,o))},e.prototype.e5=function(){null!=this.ge?this.f5=this.ge:this.f5=this.gk()},e.prototype.fh=function(){null!=this.gx?this.gd=this.gx:this.gd=this.gr()},e.prototype.e6=function(){null!=this.gf?this.f6=this.gf:this.f6=this.gl()},e.prototype.e8=function(){null!=this.gf?this.f6=this.gf:this.f6=this.gm()},e.prototype.e9=function(){-1!=this.ca?this.b8=this.ca:this.b8=this.ck()},e.prototype.e7=function(){-1!=this.b9?this.b7=this.b9:this.b7=this.cj()},e.prototype.fi=function(){this.ah=this.textStyle},e.prototype.ff=function(){n.isNaN_(this.bm)?this.bf=this.bi():this.bf=this.bm},e.prototype.fe=function(){null!=this.gv?this.gb=this.gv:this.gb=this.go()},e.prototype.fg=function(){null!=this.gw?this.gc=this.gw:this.gc=this.gq()},e.prototype.fd=function(){null!=this.gu?this.ga=this.gu:this.ga=this.gn()},e.prototype.ev=function(t,e,n,i){switch(this.ej(t,e),t){case"BarBackground":this.e6();break;case"BarOutline":this.e8();break;case"BarStrokeThickness":this.e9();break;case"BarCornerRadius":this.e7();break;case"TextColor":this.fh();break;case"Background":this.e5();break;case"PinnedBackground":this.fg();break;case"PinnedRowBackground":this.fe();break;case"LastStickyRowBackground":this.fd();break;case"PinnedRowOpacity":this.ff();break;case"VerticalAlignment":4==this.l?this.j=this.k():this.j=this.l;break;case"HorizontalAlignment":4==this.g?this.e=this.f():this.e=this.g;break;case"LineBreakMode":this.ab=this.ac;break;case"FontInfo":this.fi();break;case"Border":case"BorderLeftWidth":case"BorderTopWidth":case"BorderRightWidth":case"BorderBottomWidth":this.fa();break;case"ActivationBorder":this.e4();break;case"ErrorBorder":this.fc()}},e.prototype.fa=function(){0==this.cc&&0==this.ce&&0==this.cd&&0==this.cb||(null!=this.gh?(this.ak=!0,this.f8=this.gh):null!=this.f8&&(this.ak=!0))},e.prototype.e4=function(){null!=this.grid&&this.grid.isActiveCellStyleEnabled?null==this.f3?this.f4=this.gj():this.f4=this.f3:this.f3=null},e.prototype.fc=function(){null!=this.gi?this.f9=this.gi:this.f9=h.bm},Object.defineProperty(e.prototype,"a4",{get:function(){return this.a1},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a8",{get:function(){return this.a5},enumerable:!1,configurable:!0}),e.prototype.ej=function(t,e){this.a1.contains(t)||(this.a1.add_1(t),this.a5.add(t),this.a0.addItem(t,e))},e.prototype.f=function(){return 4!=this.g?this.g:0},e.prototype.k=function(){return 4!=this.l?this.l:1},e.prototype.gr=function(){return h.bt},e.prototype.gl=function(){return h.a0},e.prototype.gm=function(){return h.a1},e.prototype.ck=function(){return n.truncate(Math.round(n.DeviceUtils.g(1)))},e.prototype.cj=function(){return n.truncate(Math.round(n.DeviceUtils.g(2)))},e.prototype.gj=function(){return h.az},e.prototype.aj=function(){return h.n},e.prototype.gk=function(){return h.a2},e.prototype.gq=function(){return null},e.prototype.go=function(){return null},e.prototype.gn=function(){return null},e.prototype.gp=function(){return h.bg},e.prototype.bi=function(){return.3},e.prototype.e1=function(t,e,i){null==this.ad&&(this.ad=new n.FastIterationDictionary$2(n.String_$type,n.Base.$,0));var r=null;this.ad.d(t)&&(r=this.ad.item(t)),this.ad.item(t,i);var o=!1;null==r&&null!=i&&(o=!0),null!=r&&(n.Base.equalsStatic(r,i)||(o=!0)),o&&this.et(t,e,r,i)},e.prototype.ap=function(){return null!=this.ad&&this.ad.r>0},Object.defineProperty(e.prototype,"ae",{get:function(){return this.ad},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aq",{get:function(){return this.conditionalStyles.count>0},enumerable:!1,configurable:!0}),e.prototype.ao=function(t){return null!=this.ad&&this.ad.d(t)},e.prototype.ew=function(t){null!=this.ad&&this.ad.d(t)&&this.ad.f(t)},e.prototype.co=function(t){return null==this.ad?null:this.ad.d(t)?this.ad.item(t):null},e.prototype.d0=function(t,e,i){var r=n.stringEmpty();switch(e){case 10:if(null!=i){var o=i,a=n.typeGetValue(t);r=o.format(a)}else r=n.typeGetValue(t).toString();break;case 8:if(null!=i){a=t;r=(o=i).format(a)}else r=t.toString();break;case 5:if(null!=i){a=t;r=(o=i).format(a)}else r=t.toString();break;case 1:if(null!=i){o=i,a=n.typeGetValue(t);r=o.format(a)}else r=n.typeGetValue(t).toString();break;case 3:if(null!=i){o=i,a=n.typeGetValue(t);r=o.format(a)}else r=n.typeGetValue(t).toString();break;case 4:if(null!=i){o=i,a=n.typeGetValue(t);r=o.format(a)}else r=n.typeGetValue(t).toString();break;case 7:if(null!=i){a=t;r=(o=i).format(a)}else r=t.toString();break;case 6:if(null!=i){a=t;r=(o=i).format(a)}else r=t.toString();break;case 0:case 2:case 11:r=t.toString()}return r},e.prototype.y=function(t,e){var i=null!=e&&null!=e.value?e.value.toString():n.stringEmpty(),r=t.g;4==t.i&&(r=1);var o=e.value;if(null!=o)switch(r){case 10:if(null!=t.y){var a=t.y,s=n.typeGetValue(o);i=a.format(s)}else i=n.typeGetValue(o).toString();break;case 8:if(null!=t.y){a=t.y,s=o;i=a.format(s)}else i=o.toString();break;case 5:if(null!=t.y){a=t.y,s=o;i=a.format(s)}else{var l=o,u=t.w;i=parseFloat(l.toFixed(u)).toString()}break;case 1:if(null!=t.y){a=t.y,s=n.typeGetValue(o);i=a.format(s)}else i=n.typeGetValue(o).toString();break;case 3:if(null!=t.y){a=t.y,s=n.typeGetValue(o);i=a.format(s)}else i=n.typeGetValue(o).toString();break;case 4:if(null!=t.y){a=t.y,s=n.typeGetValue(o);i=a.format(s)}else i=n.typeGetValue(o).toString();break;case 7:if(null!=t.y){a=t.y,s=o;i=a.format(s)}else{l=o,u=t.w;i=parseFloat(l.toFixed(u)).toString()}break;case 6:if(null!=t.y){a=t.y,s=o;i=a.format(s)}else{l=o,u=t.w;i=parseFloat(l.toFixed(u)).toString()}break;case 0:case 2:case 11:i=o.toString()}var c=null!=t.ae?t.ae:null!=t.l?t.l.displayName:n.stringEmpty();null!=t.f&&null!=o&&(i=t.f.i(o));var h=n.stringIsNullOrWhiteSpace(t.ag)?t.ah:t.ag,p=h+" "+c+" = "+i;null!=t.e&&null!=o&&(p=t.e.i(o));var d,f=t.o(e,i,p);return p=f.e,i=f.d,(d=new nt).e=h,d.b=o,d.a=t.i,d.c=f.e,d.d=f.d,d},e.$t=n.markType(e,"DefinitionBase",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),Ii=function(t){function e(){var i=t.call(this)||this;i.ko=0,i.hs=0,i.j9=n.truncate(n.DeviceUtils.g(12)),i.kb=n.truncate(n.DeviceUtils.g(1)),i.ka=n.truncate(n.DeviceUtils.g(12)),i.j8=n.truncate(n.DeviceUtils.g(1)),i.kw=n.stringEmpty(),i.j6=0,i.j5=0,i.j7=0,i.ii=0,i.ku=null,i.kv=null,i.ks=null,i.nq=null,i.nl=null,i.no=null,i.nj=null,i.np=null,i.nk=null,i.h5=null,i.hu=null,i.jx=NaN,i.i5=!1,i.iz=!1,i.i8=!1,i.g0=null,i.g2=null,i.h9=null,i.i4=!0,i.i7=!0,i.i6=!1,i.i9=!1,i.hq=0,i.ij=0,i.iy=!1,i.hg=0,i.hh=0,i.nh=null,i.nm=null,i.hl=0,i.hk=0,i.iu=!0,i.i0=!0,i.iw=!0,i.i2=!0,i.iv=!0,i.i1=!0,i.i3=!0,i.nn=null,i.ni=null,i.jw=NaN,i.jv=0,i.ir=null,i.iq=null,i.hy=0,i.kp=null,i.kt=null,i.gy=null,i.ie=0,i.ib=0,i.g7=4,i.g6=1,i.j2=n.truncate(n.DeviceUtils.g(12)),i.j4=n.truncate(n.DeviceUtils.g(10)),i.j3=n.truncate(n.DeviceUtils.g(12)),i.j1=n.truncate(n.DeviceUtils.g(10)),i.h0=0,i.h7=null,i.columnCellsPropertyUpdating=null,i.columnHeaderCellsPropertyUpdating=null,i.io=null,i.ix=!1,i.ju=null,i.hw=null,i._commandCompleted=null,i._invalidateActions=null,i.jt=null,i.ix=!0,i.header=new hr,i.ix=!1,i.e=i.f(),i.j=i.k(),i.nv=i.nz(),i.nt=i.ny(),i.ko=e.kn++,i.h7=new wi;var r=i.h7;return r.collectionChanged=n.delegateCombine(r.collectionChanged,n.runOn(i,i.mt)),i}return i.__extends(e,t),e.prototype.e0=function(e){t.prototype.e0.call(this,e),null!=this.grid&&this.grid.x5(e,this)},e.prototype.cr=function(){return null==this.grid?null:this.grid.ox(this)},e.prototype.cs=function(){return null==this.grid?null:this.grid.oy(this)},e.prototype.ct=function(){return null==this.grid?null:this.grid.oz(this)},e.prototype.at=function(t){if(null==this.grid)return!0;if(t.q()&&null==this.grid.oy(this))return!0;if(t.p()&&null==this.grid.ox(this))return!0;if(t.r()&&null==this.grid.oz(this))return!0;return!1},e.prototype.nz=function(){return h.bg},e.prototype.ny=function(){return h.a7},Object.defineProperty(e.prototype,"ht",{get:function(){return this.hs},set:function(t){var e=this.hs;this.hs=t,this.hs!=e&&this.et("State",10,n.enumGetBox(We,e),n.enumGetBox(We,this.hs))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kk",{get:function(){return this.j9},set:function(t){var e=this.j9;this.j9=t,this.j9!=e&&this.et("PaddingLeft",6,e,this.j9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"km",{get:function(){return this.kb},set:function(t){var e=this.kb;this.kb=t,this.kb!=e&&this.et("PaddingTop",6,e,this.kb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kl",{get:function(){return this.ka},set:function(t){var e=this.ka;this.ka=t,this.ka!=e&&this.et("PaddingRight",6,e,this.ka)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kj",{get:function(){return this.j8},set:function(t){var e=this.j8;this.j8=t,this.j8!=e&&this.et("PaddingBottom",6,e,this.j8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"mf",{get:function(){return this.kw},set:function(t){var e=this.kw;this.kw=t,this.kw!=e&&this.et("Name",10,e,this.kw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kh",{get:function(){return this.j6},set:function(t){this.j6=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kg",{get:function(){return this.j5},set:function(t){this.j5=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ki",{get:function(){return this.j7},set:function(t){this.j7=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ik",{get:function(){return this.ii},set:function(t){this.ii=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lo",{get:function(){return this.ku},set:function(t){this.ku=t,null==this.lv&&(this.k3=this.lo)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lv",{get:function(){return this.kv},set:function(t){var e=this.kv;this.kv=t,this.kv!=e&&this.et("HeaderText",8,e,this.kv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"k3",{get:function(){return this.ks},set:function(t){var e=this.ks;this.ks=t,this.ks!=e&&this.et("ActualHeaderText",8,e,this.ks)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n2",{get:function(){return this.nq},set:function(t){var e=this.nq;this.nq=t,this.nq!=e&&this.et("SelectedBackground",10,e,this.nq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nv",{get:function(){return this.nl},set:function(t){var e=this.nl;this.nl=t,this.nl!=e&&this.et("ActualSelectedBackground",2,e,this.nl)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n0",{get:function(){return this.no},set:function(t){var e=this.no;this.no=t,this.no!=e&&this.et("RowHoverBackground",10,e,this.no)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nt",{get:function(){return this.nj},set:function(t){var e=this.nj;this.nj=t,this.nj!=e&&this.et("ActualHoverBackground",2,e,this.nj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n1",{get:function(){return this.np},set:function(t){var e=this.np;this.np=t,this.np!=e&&this.et("RowHoverTextColor",10,e,this.np)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nu",{get:function(){return this.nk},set:function(t){var e=this.nk;this.nk=t,this.nk!=e&&this.et("ActualRowHoverTextColor",2,e,this.nk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h6",{get:function(){return this.h5},set:function(t){var e=this.h5;this.h5=t,this.h5!=e&&this.et("AnimationSettings",10,e,"AnimationSettings")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"width",{get:function(){return this.hu},set:function(t){var e=this.hu;this.hu=t,this.hu!=e&&this.et("Width",10,e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j0",{get:function(){return this.jx},set:function(t){var e=this.jx;this.jx=t,this.jx!=e&&this.et("MinWidth",10,e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jn",{get:function(){return this.i5},set:function(t){var e=this.i5;this.i5=t,this.i5!=e&&this.et("IsFromMarkup",10,e,this.i5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jh",{get:function(){return this.iz},set:function(t){var e=this.iz;t&&(this.jq=!0),this.iz=t,this.iz!=e&&this.et("IsAutoGenerated",10,e,this.iz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jq",{get:function(){return this.i8},set:function(t){var e=t;this.i8=e,this.___mustPassByValue=!0},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g1",{get:function(){return this.g0},set:function(t){var e=this.g0;this.g0=t,null!=e&&(e.b=null),null!=this.g0&&(this.g0.b=this),this.g0!=e&&(1==this.grid.filterUIType?this.et("Filter",11,e,this.g0):this.et("Filter",10,e,this.g0))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g3",{get:function(){return this.g2},set:function(t){var e=this.g2;this.g2=t,this.g2!=e&&(1==this.grid.filterUIType?this.et("FilterExpression",11,e,this.g2):this.et("FilterExpression",10,e,this.g2))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"header",{get:function(){return this.h9},set:function(t){var e=this.h9;this.h9=t,this.h9!=e&&this.et("Header",10,e,this.h9),this.h9.grid=this.grid},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jm",{get:function(){return this.i4},set:function(t){var e=this.i4;this.i4=t,this.i4!=e&&this.et("IsFilteringEnabled",10,e,this.i4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jp",{get:function(){return this.i7},set:function(t){var e=this.i7;this.i7=t,this.i7!=e&&this.et("IsResizingEnabled",10,e,this.i7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jo",{get:function(){return this.i6},set:function(t){var e=this.i6;this.i6=t,this.i6!=e&&this.et("IsHidden",10,e,this.i6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"js",{get:function(){return this.i9},set:function(t){var e=this.i9;this.i9=t,this.i9!=e&&this.et("ShouldRemoveWhenHidden",10,e,this.i9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hr",{get:function(){return this.hq},set:function(t){var e=this.hq;this.hq=t,this.hq!=e&&this.et("SortDirection",11,n.enumGetBox(B,e),n.enumGetBox(B,this.hq))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"il",{get:function(){return this.ij},set:function(t){var e=this.ij;this.ij=t,this.ij!=e&&this.et("Pinned",11,n.enumGetBox(E,e),n.enumGetBox(E,this.ij))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jg",{get:function(){return this.iy},set:function(t){var e=this.iy;this.iy=t,this.iy!=e&&this.et("InternalShouldRemoveWhenHidden",10,e,this.iy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jd",{get:function(){return!!this.iy||this.i9},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hi",{get:function(){return this.hg},set:function(t){var e=this.hg;this.hg=t,this.hg!=e&&this.et("ActualColumnOptionsIconAlignment",4,n.enumGetBox(ut,e),n.enumGetBox(ut,this.hg))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hj",{get:function(){return this.hh},set:function(t){var e=this.hh;this.hh=t,this.hh!=e&&this.et("ColumnOptionsIconAlignment",10,n.enumGetBox(ut,e),n.enumGetBox(ut,this.hh))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nr",{get:function(){return this.nh},set:function(t){var e=this.nh;this.nh=t,this.nh!=e&&this.et("ActualColumnOptionsIconColor",2,e,this.nh)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nw",{get:function(){return this.nm},set:function(t){var e=this.nm;this.nm=t,this.nm!=e&&this.et("ColumnOptionsIconColor",10,e,this.nm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hn",{get:function(){return this.hl},set:function(t){var e=this.hl;this.hl=t,this.hl!=e&&this.et("ColumnOptionsIconBehavior",10,n.enumGetBox(ht,e),n.enumGetBox(ht,this.hl))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hm",{get:function(){return this.hk},set:function(t){var e=this.hk;this.hk=t,this.hk!=e&&this.et("ActualColumnOptionsIconBehavior",4,n.enumGetBox(ht,e),n.enumGetBox(ht,this.hk))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ja",{get:function(){return this.iu},set:function(t){var e=this.iu;this.iu=t,this.iu!=e&&this.et("ActualIsColumnOptionsEnabled",5,e,this.iu)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ji",{get:function(){return this.i0},set:function(t){var e=this.i0;this.i0=t,this.i0!=e&&this.et("IsColumnOptionsEnabled",10,e,this.i0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jc",{get:function(){return this.iw},set:function(t){var e=this.iw;this.iw=t,this.iw!=e&&this.et("ActualIsColumnOptionsSummariesEnabled",5,e,this.iw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jk",{get:function(){return this.i2},set:function(t){var e=this.i2;this.i2=t,e!=this.i2&&this.et("IsColumnOptionsSummariesEnabled",10,e,this.i2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jb",{get:function(){return this.iv},set:function(t){var e=this.iv;this.iv=t,this.iv!=e&&this.et("ActualIsColumnOptionsGroupingEnabled",5,e,this.iv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jj",{get:function(){return this.i1},set:function(t){var e=this.i1;this.i1=t,e!=this.i1&&this.et("IsColumnOptionsGroupingEnabled",10,e,this.i1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jl",{get:function(){return this.i3},set:function(t){var e=this.i3;this.i3=t,this.i3!=e&&this.et("IsEditable",10,e,this.i3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nx",{get:function(){return this.nn},set:function(t){var e=this.nn;this.nn=t,this.nn!=e&&this.et("DeletedTextColor",10,e,this.nn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ns",{get:function(){return this.ni},set:function(t){var e=this.ni;this.ni=t,this.ni!=e&&this.et("ActualDeletedTextColor",2,e,this.ni)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jz",{get:function(){return this.jw},set:function(t){var e=this.jw;this.jw=t,this.jw!=e&&this.et("EditOpacity",10,e,this.jw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jy",{get:function(){return this.jv},set:function(t){var e=this.jv;this.jv=t,this.jv!=e&&this.et("ActualEditOpacity",0,e,this.jv)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"textEditStyle",{get:function(){return this.ir},set:function(t){var e=this.ir;this.ir=t,this.ir!=e&&this.et("EditFontInfo",10,e,this.ir)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"is",{get:function(){return this.iq},set:function(t){var e=this.iq;this.iq=t,this.iq!=e&&this.et("ActualEditFontInfo",3,e,this.iq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hz",{get:function(){return this.hy},set:function(t){var e=this.hy;this.hy=t,e!=this.hy&&this.et("EditorTypeInternal",4,n.enumGetBox(q,e),n.enumGetBox(q,this.hy))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kq",{get:function(){return this.kp},set:function(t){var e=this.kp;this.kp=t,e!=this.kp&&this.et("EditorItemsSourceInternal",9,e,this.kp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lk",{get:function(){return this.kt},set:function(t){var e=this.kt;this.kt=t,e!=this.kt&&this.et("EditorTextFieldInternal",8,e,this.kt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gz",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,e!=this.gy&&this.et("EditorValueFieldInternal",8,e,this.gy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ih",{get:function(){return this.ie},set:function(t){var e=this.ie;this.ie=t,e!=this.ie&&this.et("MergedCellMode",11,n.enumGetBox(ke,e),n.enumGetBox(ke,this.ie))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this.ib},set:function(t){var e=this.ib;this.ib=t,e!=this.ib&&this.et("MergedCellEvaluationCriteria",11,n.enumGetBox(Re,e),n.enumGetBox(Re,this.ib))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ha",{get:function(){return this.g7},set:function(t){var e=this.g7;this.g7=t,this.g7!=e&&this.et("MergedCellVerticalAlignment",4,n.enumGetBox(k,e),n.enumGetBox(k,this.g7))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g8",{get:function(){return this.g6},set:function(t){var e=this.g6;this.g6=t,this.g6!=e&&this.et("ActualMergedCellVerticalAlignment",4,n.enumGetBox(k,e),n.enumGetBox(k,this.g6))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kd",{get:function(){return this.j2},set:function(t){var e=this.j2;this.j2=t,this.j2!=e&&this.et("MergedCellPaddingLeft",6,e,this.j2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kf",{get:function(){return this.j4},set:function(t){var e=this.j4;this.j4=t,this.j4!=e&&this.et("MergedCellPaddingTop",6,e,this.j4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ke",{get:function(){return this.j3},set:function(t){var e=this.j3;this.j3=t,this.j3!=e&&this.et("MergedCellPaddingRight",6,e,this.j3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"kc",{get:function(){return this.j1},set:function(t){var e=this.j1;this.j1=t,this.j1!=e&&this.et("MergedCellPaddingBottom",6,e,this.j1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h1",{get:function(){return this.h0},set:function(t){var e=this.h0;this.h0=t,e!=this.h0&&this.et("FilterComparisonType",11,n.enumGetBox(Ve,e),n.enumGetBox(Ve,this.h0))},enumerable:!1,configurable:!0}),e.prototype.h3=function(t){return 0==t?1:t},e.prototype.h2=function(){return 0==this.h1?this.h3(this.grid.filterComparisonType):this.h1},Object.defineProperty(e.prototype,"h8",{get:function(){return this.h7},enumerable:!1,configurable:!0}),e.prototype.mt=function(t,e){this.et("FilterOperands",11,null,this.h7)},e.prototype.ig=function(){return null==this.grid?this.ih:0==this.ih?this.grid.mergedCellMode:this.ih},e.prototype.ic=function(){return null==this.grid?this.id:0==this.id?this.grid.mergedCellEvaluationCriteria:this.id},e.prototype.jr=function(){var t=this.ig();return 3==t&&0!=this.hr||2==t},e.prototype.go=function(){return h.ba},e.prototype.gq=function(){return h.bh},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r),e.hm=i,e.a9=n.e7.isEditedValue(r,this.lo),e.a6=n.e7.isDeletedRow(r),e.fg=n.e7.getPendingEditID(r,this.lo),e.it=n.e7.getError(e.fg),n.cj.b==e&&(n.cj.u=e.hm),n.f5.p(e)?e.cq=1:e.cq=0,n.ad.m(e)?e.cf=1:e.cf=0,n.e1.c(e.l.x)?e.cl=1:e.cl=0,e.bd=4!=e.l.af},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r),e.l9=this.nv,e.l5=this.nt,e.l6=this.nu,e.gm=this.kk,e.gq=this.km,e.go=this.kl,e.gk=this.kj,null!=this.grid&&null!=this.is&&this.is.w(this.grid.externalGrid.renderer),e.af=this.is,e.ck=this.jy,e.l1=this.ns,4==e.l.af?(e.be=!1,e.i=this.g8,e.gm=this.kd,e.gq=this.kf,e.go=this.ke,e.gk=this.kc):e.be=!0},e.prototype.ev=function(e,i,r,o){switch(t.prototype.ev.call(this,e,i,r,o),e){case"Header":var a=r,s=o;null!=a&&(a.definitionPropertyUpdated=n.delegateRemove(a.definitionPropertyUpdated,n.runOn(this,this.mz))),null!=s&&(s.definitionPropertyUpdated=n.delegateCombine(s.definitionPropertyUpdated,n.runOn(this,this.mz)),4==s.g&&(s.e=this.g5()),4==s.l&&(s.j=this.hb()),this.ix||s.ey());break;case"HeaderText":this.k3=o;break;case"SelectedBackground":this.ng();break;case"ActualHorizontalAlignment":null!=this.header&&4==this.header.g&&(this.header.e=this.g5());break;case"VerticalAlignment":null!=this.header&&4==this.header.l&&(this.header.j=this.hb());break;case"SortDirection":this.nd(this,"SortDirection",11,r,o);break;case"ActualLastStickyRowBackground":null!=r&&null==this.ga&&(o=this.gc);break;case"ColumnOptionsIconAlignment":this.m4();break;case"ColumnOptionsIconColor":this.m8();break;case"ColumnOptionsIconBehavior":this.m7();break;case"IsColumnOptionsEnabled":this.m5();break;case"IsColumnOptionsSummariesEnabled":this.m9();break;case"IsColumnOptionsGroupingEnabled":this.m6();break;case"DeletedTextColor":this.na();break;case"EditOpacity":this.nc();break;case"EditFontInfo":this.nb();break;case"RowHoverBackground":this.ne();break;case"RowHoverTextColor":this.nf();break;case"MergedCellVerticalAlignment":this.g8=this.g9()}this.m3(e,i,r,o)},e.prototype.hb=function(){return this.j},e.prototype.g5=function(){return this.e},e.prototype.g9=function(){return 4!=this.ha?this.ha:null!=this.grid&&4!=this.grid.mergedCellVerticalAlignment?this.grid.mergedCellVerticalAlignment:1},e.prototype.nd=function(t,e,n,i,r){null!=this.columnHeaderCellsPropertyUpdating&&this.columnHeaderCellsPropertyUpdating(this,e,n,i,r)},e.prototype.mz=function(t,e){this.nd(this,e.propertyName,e.animationType,e.oldValue,e.newValue)},e.prototype.eq=function(t,e){null!=this.hx&&this.hx.bu(t,e),null!=this.header&&(this.header.grid=e),this.ng(),this.ng(),this.e5(),this.fh(),this.e6(),this.e7(),this.e8(),this.e9(),this.fi(),this.fg(),this.fd(),this.fe(),this.ff(),this.nc(),this.nb(),this.na(),this.m4(),this.m8(),this.m7(),this.m5(),this.m9(),this.m6(),this.ne(),this.nf(),this.g8=this.g9()},e.prototype.es=function(t,e){switch(e.propertyName){case"CellSelectedBackground":this.ng();break;case"CellBackground":this.e5();break;case"CellTextColor":this.fh();break;case"CellTextStyle":this.fi();break;case"StickyRowBackground":this.fg();break;case"LastStickyRowBackground":this.fd();break;case"PinnedRowBackground":this.fe();break;case"PinnedRowOpacity":this.ff();break;case"ColumnOptionsIconAlignment":this.m4();break;case"ColumnOptionsIconColor":this.m8();break;case"ColumnOptionsIconBehavior":this.m7();break;case"IsColumnOptionsEnabled":this.m5();break;case"IsColumnOptionsSummariesEnabled":this.m9();break;case"IsColumnOptionsGroupingEnabled":this.m6();break;case"DeletedTextColor":this.na();break;case"EditOpacity":this.nc();break;case"EditTextStyle":this.nb();break;case"RowHoverBackground":this.ne();break;case"RowHoverTextColor":this.nf();break;case"MergedCellVerticalAlignment":this.g8=this.g9()}},e.prototype.ne=function(){if(null==this.n0){if(null!=this.grid&&null!=this.grid.rowHoverBackground)return void(this.nt=this.grid.rowHoverBackground);this.nt=this.ny()}else this.nt=this.n0},e.prototype.nf=function(){if(null==this.n1){if(null!=this.grid&&null!=this.grid.rowHoverTextColor)return void(this.nu=this.grid.rowHoverTextColor);this.nu=null}else this.nu=this.n1},e.prototype.ng=function(){if(null==this.n2){if(null!=this.grid&&null!=this.grid.cellSelectedBackground)return void(this.nv=this.grid.cellSelectedBackground);this.nv=this.nz()}else this.nv=this.n2},e.prototype.e5=function(){null==this.ge?null!=this.grid&&null!=this.grid.cellBackground?this.f5=this.grid.cellBackground:this.f5=this.gk():this.f5=this.ge},e.prototype.fh=function(){if(null==this.gx){if(null!=this.grid&&null!=this.grid.cellTextColor)return void(this.gd=this.grid.cellTextColor);this.gd=this.gr()}else this.gd=this.gx},e.prototype.fi=function(){if(null==this.textStyle){if(null!=this.grid&&null!=this.grid.cellTextStyle)return void(this.ah=this.grid.cellTextStyle);this.ah=this.aj()}else this.ah=this.textStyle},e.prototype.ff=function(){if(n.isNaN_(this.bm)){if(null!=this.grid&&!n.isNaN_(this.grid.pinnedRowOpacity))return void(this.bf=this.grid.pinnedRowOpacity);this.bf=this.bi()}else this.bf=this.bm},e.prototype.na=function(){if(null==this.nx){if(null!=this.grid&&null!=this.grid.deletedTextColor)return void(this.ns=this.grid.deletedTextColor);this.ns=h.bs}else this.ns=this.nx},e.prototype.nc=function(){if(n.isNaN_(this.jz)){if(null!=this.grid&&!n.isNaN_(this.grid.editOpacity))return void(this.jy=this.grid.editOpacity);this.jy=h.o}else this.jy=this.jz},e.prototype.nb=function(){if(null==this.textEditStyle){if(null!=this.grid&&null!=this.grid.editTextStyle)return void(this.is=this.grid.editTextStyle);this.is=h.m}else this.is=this.textEditStyle},e.prototype.fe=function(){if(null==this.gv){if(null!=this.grid&&null!=this.grid.pinnedRowBackground)return void(this.gb=this.grid.pinnedRowBackground);this.gb=this.go()}else this.gb=this.gv},e.prototype.fg=function(){if(null==this.gw){if(null!=this.grid&&null!=this.grid.stickyRowBackground)return void(this.gc=this.grid.stickyRowBackground);this.gc=this.gq()}else this.gc=this.gw},e.prototype.fd=function(){if(null==this.gu){if(null!=this.grid&&null!=this.grid.lastStickyRowBackground)return void(this.ga=this.grid.lastStickyRowBackground);this.ga=this.gn()}else this.ga=this.gu},e.prototype.m4=function(){if(0==this.hj){if(null!=this.grid&&0!=this.grid.columnOptionsIconAlignment)return void(this.hi=this.grid.columnOptionsIconAlignment);this.hi=h.a}else this.hi=this.hj},e.prototype.m8=function(){if(null==this.nw){if(null!=this.grid&&null!=this.grid.columnOptionsIconColor)return void(this.nr=this.grid.columnOptionsIconColor);this.nr=h.a5}else this.nr=this.nw},e.prototype.m7=function(){if(0==this.hn){if(null!=this.grid&&0!=this.grid.columnOptionsIconBehavior)return void(this.hm=this.grid.columnOptionsIconBehavior);this.hm=h.b}else this.hm=this.hn},e.prototype.m5=function(){null!=this.grid?this.ja=this.grid.isColumnOptionsEnabled&&this.ji:this.ja=!0},e.prototype.m9=function(){null!=this.grid?this.jc=this.grid.isColumnOptionsSummariesEnabled&&this.jk:this.jc=!1},e.prototype.m6=function(){null!=this.grid?this.jb=this.grid.isColumnOptionsGroupingEnabled&&this.jj:this.jb=!1},e.prototype.m3=function(t,e,n,i){null!=this.columnCellsPropertyUpdating&&this.columnCellsPropertyUpdating(this,t,e,n,i)},e.prototype.hf=function(){return 0==this.e?3:2},e.prototype.hp=function(){return 0==this.e?3:2},e.prototype.he=function(){return 2},e.prototype.ho=function(){return 2},e.prototype.lt=function(){return null!=this.mf&&""!=this.mf?this.mf:this.lo},e.prototype.m2=function(t,e,i){null==this.io&&(this.io=new n.FastIterationDictionary$2(n.String_$type,n.Base.$,0));var r=null;this.io.d(t)&&(r=this.io.item(t)),this.io.item(t,i);var o=!1;null==r&&null!=i&&(o=!0),null!=r&&(n.Base.equalsStatic(r,i)||(o=!0)),o&&this.nd(this,t,e,r,i)},e.prototype.jf=function(){return null!=this.io&&this.io.r>0},Object.defineProperty(e.prototype,"ip",{get:function(){return this.io},enumerable:!1,configurable:!0}),e.prototype.je=function(t){return null!=this.io&&this.io.d(t)},e.prototype.m1=function(t){null!=this.io&&this.io.d(t)&&this.io.f(t)},e.prototype.kr=function(t){return null==this.io?null:this.io.d(t)?this.io.item(t):null},e.prototype.m0=function(t){switch(null==this.ju&&(this.ju=new n.List$1(yn,0)),t){case"Resized":this.ju.contains(1)||this.ju.add(1);break;case"Pinned":this.ju.contains(3)||this.ju.add(3);break;case"Moved":this.ju.contains(4)||this.ju.add(4);break;case"Sorted":this.ju.contains(0)||this.ju.add(0);break;case"Hidden":this.ju.contains(2)||this.ju.add(2);break;case"Filtered":this.ju.contains(5)||this.ju.add(5);break;case"Grouped":this.ju.contains(6)||this.ju.add(6);break;case"Summed":this.ju.contains(7)||this.ju.add(7)}},e.prototype.mv=function(t,e){var n=new In;n.operator=t,n.value=e,n.isCaseSensitive=2==this.h2(),this.g1=n,this.g3=null},e.prototype.mu=function(t,e,n){if(null!=this.grid&&this.h8.count>0){var i=this.h4(t,e);if(null!=i){this.grid.wj(this,i,n);var r=this.g4(i,n);null!=r&&(this.g3=r,this.g1=((o=new jn).value=n,o.id=t,o.index=e,o))}}var o},e.prototype.g4=function(t,e){var n=this;if(null==t)return null;var i,r=((i=new mi).c=n,i.e=e,i.d=t,i);return t.h(r),r.b},e.prototype.h4=function(t,e){if(null!=t)for(var n=0;n<this.h8.count;n++)if(this.h8._inner[n].g==t)return this.h8._inner[n];return e>=0&&e<this.h8.count?this.h8._inner[e]:null},e.prototype.mw=function(){this.g1=null,this.g3=null},Object.defineProperty(e.prototype,"hx",{get:function(){return null==this.hw&&(this.hw=new Li(this)),this.hw},enumerable:!1,configurable:!0}),e.prototype.getDesiredToolbarActions=function(){return this.hx.a()},e.prototype.addCommandAvailabilityListener=function(t){this.hx.a3(t)},e.prototype.removeCommandAvailabilityListener=function(t){this.hx.bw(t)},e.prototype.addCommandStateChangedListener=function(t){this.hx.a4(t)},e.prototype.removeCommandStateChangedListener=function(t){this.hx.bx(t)},e.prototype.onToolCommandExecuting=function(t){return this.hx.g(t)},Object.defineProperty(e.prototype,"commandCompleted",{get:function(){return this._commandCompleted},set:function(t){this._commandCompleted=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"invalidateActions",{get:function(){return this._invalidateActions},set:function(t){this._invalidateActions=t},enumerable:!1,configurable:!0}),e.prototype.im=function(){var t,e;if(null==this.jt)return null;try{for(var r=i.__values(n.fromEnum(this.jt)),o=r.next();!o.done;o=r.next()){return o.value}}catch(e){t={error:e}}finally{try{o&&!o.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}return null},e.prototype.my=function(t){var e,r;if(null!=this.jt)try{for(var o=i.__values(n.fromEnum(this.jt)),a=o.next();!a.done;a=o.next()){t(a.value)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(r=o.return)&&r.call(o)}finally{if(e)throw e.error}}},e.prototype.provideContextAccessor=function(t){null==this.jt&&(this.jt=new n.HashSet$1(n.IToolbarContextAccessor_$type,0)),this.jt.add_1(t)},e.prototype.dismissContextAccessor=function(t){null!=this.jt&&this.jt.remove(t)},e.prototype.mx=function(){null!=this.hx&&this.hx.bv()},e.$t=n.markType(e,"DataGridColumn",Oi.$,[n.IToolbarTarget_$type]),e.kn=0,e}(Oi),ji=function(t){function e(){return t.call(this,Ii.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"GridColumnCollection",n.ObservableCollection$1.$.specialize(Ii.$)),e}(n.ObservableCollection$1),ki=function(t){function e(e){for(var i=[],r=1;r<arguments.length;r++)i[r-1]=arguments[r];var o=t.call(this)||this;switch(o.c=null,o.f=0,o.a=!1,o.b=!1,o.effectsFinished=null,o.effectsCanceled=null,e=null==e?0:e){case 0:var a=i[0];o.a=a,o.c=new n.List$1(pr.$,0),o.b=!1;break;case 1:var s=(a=[!0])[0];o.a=s,o.c=new n.List$1(pr.$,0),o.b=!1}return o}return i.__extends(e,t),e.prototype.k=function(){this.b=!1;for(var t=0;t<this.c.count;t++){var e=this.c._inner[t];e.onFinished=n.delegateRemove(e.onFinished,n.runOn(this,this.i));var i=this.c._inner[t];i.onCanceled=n.delegateRemove(i.onCanceled,n.runOn(this,this.h))}this.f=0,this.c.clear()},e.prototype.g=function(t){this.c.add(t),t.onFinished=n.delegateCombine(t.onFinished,n.runOn(this,this.i)),t.onCanceled=n.delegateCombine(t.onCanceled,n.runOn(this,this.h))},e.prototype.h=function(t,e){this.b=!0,this.f++,this.f==this.c.count&&this.j()},e.prototype.i=function(t){this.f++,this.f==this.c.count&&this.j()},e.prototype.j=function(){this.b?null!=this.effectsCanceled&&this.effectsCanceled(this,new n.EventArgs):null!=this.effectsFinished&&this.effectsFinished(this,new n.EventArgs),this.a&&this.k()},e.$t=n.markType(e,"GridEffectGroup"),e}(n.Base),Ti=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.b=!1,n.d=-1,n.e=-1,n.a=e,n}return i.__extends(e,t),e.prototype.f=function(t){var e=this;this.d=t,this.b||(this.a.delayedExecutionManager.executeIn((function(){e.d!=e.e&&(e.e>-1&&e.a.c5.ap(e.a,e.e),e.d>-1&&e.a.c5.an(e.a,e.d),e.e=e.d),e.b=!1}),0),this.b=!0)},e.prototype.c=function(t){return this.e==t},e.$t=n.markType(e,"HoverManager"),e}(n.Base),Ri=function(t){function e(){var e=t.call(this)||this;return e.b=null,e.b=new n.Dictionary$2(n.String_$type,n.Stack$1.$.specialize($n.$),0),e}return i.__extends(e,t),e.prototype.a=function(t){if(!this.b.containsKey(t))return this.b.addItem(t,new n.Stack$1($n.$)),null;var e=this.b.item(t);if(e.f>0){var i=e.e();return 2==i.u&&(i.u=1),i}return null},e.prototype.c=function(t){t.u=1,this.b.containsKey(t.kc)||this.b.addItem(t.kc,new n.Stack$1($n.$)),this.b.item(t.kc).h(t)},e.$t=n.markType(e,"RecyclingManager"),e}(n.Base),Di=function(t){function e(e,i){var r=t.call(this)||this;return r.a=null,r.b=null,r.c=new n.FastIterationDictionary$2(n.Number_$type,n.Number_$type,0),r.e=new n.FastIterationDictionary$2(n.Number_$type,n.Number_$type,0),r.d=new n.FastIterationDictionary$2(n.Number_$type,n.String_$type,0),r.f=new n.FastIterationDictionary$2(n.String_$type,n.Number_$type,0),r.k=!1,r.l=!1,r.q=-1,r.t=-1,r.p=-1,r.r=-1,r.u=null,r.a=e,r.b=i,r}return i.__extends(e,t),Object.defineProperty(e.prototype,"v",{get:function(){return-1!=this.t?this.w(this.t):null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.k&&(this.ac(),this.k=!1),this.c},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.k&&(this.ac(),this.k=!1),this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return this.k&&(this.ac(),this.k=!1),this.d},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.k&&(this.ac(),this.k=!1),this.f},enumerable:!1,configurable:!0}),e.prototype.al=function(t){t.l.aj&&(this.m(t)?this.af(t):this.aa(t))},e.prototype.m=function(t){var e=!1,i=this.a.e7.getDataRow(t.l);if(-1==i)return!1;if(this.q<0)return!1;if(i!=this.q)return!1;if(null!==n.typeCast(Zn.$,t))return!0;if(this.i.d(t.l.a5)){var r=this.i.item(t.l.a5);r>=0&&(e=this.n(i,r))}return e},e.prototype.n=function(t,e){return this.q==t&&e==this.t},e.prototype.o=function(){return 1==this.a.activationMode},e.prototype.ad=function(){this.q>=0&&this.t>=0&&this.ae(this.q,this.t,!0)},e.prototype.af=function(t){var e=this.a.e7.getDataRow(t.l);if(-1!=e&&this.i.d(t.l.a5)){var n=this.i.item(t.l.a5);this.n(e,n)&&this.ae(e,n,!0)}},e.prototype.aa=function(t){this.z(t.l)},e.prototype.z=function(t){if(t.aj&&this.o()){this.q>=0&&null!=this.t&&this.ae(this.q,this.t,!1);var e=this.a.e7.getDataRow(t);if(-1!=e&&(-400==t.a5&&this.q!=e&&this.y(e,0),this.i.d(t.a5))){var n=this.i.item(t.a5);this.n(e,n)||this.x(e,n,!0)}}},e.prototype.ab=function(t,e,n){this.r=-1,this.u=null;var i=this.t;if(null==e){if(1!=this.a.groupSummaryDisplayMode){var r=this.a.e7.getRowType(t);this.a.e7.isRowSpanning(r)&&-1==this.t&&(i=this.i.item(0))}}else this.j.d(e)&&(i=this.j.item(e));-1!=i?this.q>=0&&this.t>=0?t==this.q&&i==this.t||(this.ae(this.q,this.t,!1),this.x(t,i,n)):-1==this.q&&-1==this.t&&this.x(t,i,n):(this.r=t,this.u=e)},e.prototype.y=function(t,e){if(this.i.d(e)){var n=this.i.item(e);if(t!=this.q||n!=this.t){if(this.q=t,this.t=n,this.p=e,t>=0&&e>=0){if(t>=0&&t<this.a.e7.getRowCount()&&1!=this.a.groupSummaryDisplayMode){var i=this.a.e7.getRowType(t);this.a.e7.isRowSpanning(i)&&(e=-400,n=-400)}this.b.aa(this.a,t,e,n)}this.a.vn(t,e,this.w(n))}}},e.prototype.x=function(t,e,n){if(this.g.d(e)){var i=this.g.item(e);if(t!=this.q||e!=this.t){if(this.q=t,this.t=e,this.p=i,t>=0&&i>=0){if(t>=0&&t<this.a.e7.getRowCount()&&1!=this.a.groupSummaryDisplayMode){var r=this.a.e7.getRowType(t);this.a.e7.isRowSpanning(r)&&(i=-400,e=-400)}this.b.aa(this.a,t,i,e)}n&&this.a.vn(t,i,this.w(e))}}},e.prototype.ae=function(t,e,n){if(this.n(t,e)){if(this.t=-1,this.q=-1,this.p=-1,t>=0&&this.g.d(e)){var i=this.g.item(e);if(i>=0){if(t>=0&&t<this.a.e7.getRowCount()&&1!=this.a.groupSummaryDisplayMode){var r=this.a.e7.getRowType(t);this.a.e7.isRowSpanning(r)&&(i=-400,e=-400)}this.b.ab(this.a,t,i,e)}}n&&this.a.vq(t,this.w(e))}},e.prototype.ah=function(){this.q=-1,this.t=-1,this.p=-1},e.prototype.ai=function(t){},e.prototype.aj=function(t){},e.prototype.w=function(t){return this.h.d(t)?this.h.item(t):null},e.prototype.ak=function(t){},e.prototype.ag=function(){if(this.k=!0,-1!=this.r&&null!=this.u){var t=this.r,e=this.u;this.r=-1,this.u=null,this.ab(t,e,!0)}},e.prototype.ac=function(){this.c.u(),this.e.u(),this.d.u(),this.f.u();for(var t=0;t<this.a.actualColumns.count;t++)this.c.s(this.a.actualColumns._inner[t].ko,t),this.e.s(t,this.a.actualColumns._inner[t].ko),this.d.s(this.a.actualColumns._inner[t].ko,this.a.actualColumns._inner[t].lt()),this.f.s(this.a.actualColumns._inner[t].lt(),this.a.actualColumns._inner[t].ko)},e.prototype.s=function(){return this.g.d(this.t)?this.g.item(this.t):-1!=this.p?this.p:0},e.$t=n.markType(e,"ActivationManager"),e}(n.Base),Bi=function(t){function e(e,i){var r=t.call(this)||this;return r.a=null,r.b=null,r.g=new n.FastIterationDictionary$2(s.$,n.Number_$type,0),r.f=new n.FastIterationDictionary$2(s.$,n.FastIterationDictionary$2.$.specialize(n.Number_$type,n.Number_$type),0),r.d=new n.FastIterationDictionary$2(n.Number_$type,n.Number_$type,0),r.e=new n.FastIterationDictionary$2(n.Number_$type,n.Number_$type,0),r.j=!1,r.t=new n.List$1(_e.$,0),r.s=new n.List$1(_e.$,0),r.k=!1,r.u=-1,r.c=null,r.a=e,r.b=i,r}return i.__extends(e,t),Object.defineProperty(e.prototype,"h",{get:function(){return this.j&&(this.y(),this.j=!1),this.d},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.j&&(this.y(),this.j=!1),this.e},enumerable:!1,configurable:!0}),e.prototype.au=function(t){t.l.aj&&(this.p(t)?this.ax(t):this.ap(t))},e.prototype.at=function(t){t.l.aj&&(this.k=!0,this.ap(t),this.k=!1)},e.prototype.p=function(t){var e=this.a.e7.getDataRow(t.l);if(-1==e)return!1;if(this.a.e7.isPlaceholderItem(e))return!1;var i=this.a.e7.getRowKey(this.a.i(),e);if(null==i)return!1;var r=this.g.d(i);if(r){if(-1==this.g.item(i))this.g.item(i,e);else if(this.g.item(i)!=e)return!1;var o=this.a.selectedKeys.al(i);if(o>=0&&null==this.a.selectedItems.ae._inner[o]){var a=this.a.e7.resolveValueForRow(t.l);this.a.xg(o,a,i)}}if(!r&&this.i.d(t.l.a5)){var s=this.i.item(t.l.a5);s>=0&&(r=this.l(i,s))&&-1==this.f.item(i).item(s)&&this.f.item(i).item(s,e)}if(!r&&t.l.a5>=0)for(var l=this.a.model.b9._inner[t.l.a5],u=0;u<this.s.count;u++)if(this.s._inner[u].b(t.l.x,l.n)){r=!0;break}if(!r&&this.a.e7.isRowPinned(e)){var c=n.typeCast(n.DataSourceSpecialRow.$,i.value[0]);if(null!=c){var h=this.a.e7.getItemKey(this.a.i(),c.targetRow);if(!(r=this.g.d(h))&&this.i.d(t.l.a5)){var p=this.i.item(t.l.a5);p>=0&&(r=this.l(h,p))}}}return r},e.prototype.n=function(t){return this.g.d(t)},e.prototype.l=function(t,e){return this.f.d(t)&&this.f.item(t).d(e)},e.prototype.o=function(){return 1==this.a.selectionMode||2==this.a.selectionMode},e.prototype.m=function(){return 3==this.a.selectionMode||4==this.a.selectionMode},e.prototype.ax=function(t){var e=this.a.e7.getDataRow(t.l);if(-1!=e&&!this.a.e7.isPlaceholderItem(e)){var n=this.a.e7.getRowKey(this.a.i(),e);if(this.n(n)&&this.ay(n,e,!1),this.i.d(t.l.a5)){var i=this.i.item(t.l.a5);this.l(n,i)&&this.av(n,e,i)}}},e.prototype.ap=function(t){if(0!=this.a.selectionMode){var e=!1,i=null,r=null,o=this.a.e7.getDataRow(t.l);if(o>-1&&!this.a.e7.isPlaceholderItem(o)&&null!=(i=this.a.e7.getRowKey(this.a.i(),o))&&3==this.a.e7.getRowType(o)){var a=n.typeCast(n.DataSourceSpecialRow.$,i.value[0]);r=this.a.e7.getItemKey(this.a.i(),a.targetRow)}if(1==this.a.selectionMode||this.k){for(var l=this.g.o,u=this.g.p,c=new n.List$1(s.$,0),h=new n.List$1(n.Number_$type,0),p=0;p<l.count;p++)u._inner[p]||(l._inner[p].equals(i)||null!=r&&l._inner[p].equals(r)?e=!0:(c.add(l._inner[p]),h.add(this.g.q._inner[p])));this.a.t8(),this.g.g=!0;for(var d=0;d<c.count;d++)this.ay(c._inner[d],h._inner[d],!1);this.g.g=!1,this.a.ur()}if(3==this.a.selectionMode||this.k){for(var f=this.f.o,m=this.f.p,g=new n.List$1(s.$,0),y=new n.List$1(n.Number_$type,0),b=new n.List$1(n.Number_$type,0),v=0;v<f.count;v++)if(!m._inner[v])for(var C=f._inner[v],x=this.f.item(C).o,_=this.f.item(C).q,w=this.f.item(C).p,S=0;S<x.count;S++)if(!w._inner[S]){var P=x._inner[S],O=_._inner[S];this.i.d(t.l.a5)&&this.i.item(t.l.a5)==P&&t.l.x==O||(g.add(C),y.add(P),b.add(O))}for(var I=0;I<g.count;I++)this.av(g._inner[I],b._inner[I],y._inner[I])}null==i||e||(this.o()?this.aq(i,o,!1):this.m()&&this.ao(i,o,t.l.a5))}},e.prototype.aq=function(t,e,i){var r=!0,o=!1;if(!i&&3==this.a.e7.getRowType(e)){var a=n.typeCast(n.DataSourceSpecialRow.$,t.value[0]);if(null!=a.targetRow){var s=this.a.e7.getItemKey(this.a.i(),a.targetRow),l=this.a.e7.indexOfVisibleItemByKey(this.a.i(),s,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.ar(s,l,a.targetRow,!0)}o=!0,r=!1}var u=null;if(!o&&(u=this.a.e7.resolveValueForDataRow(e),this.a.pinnedKeys.contains(t))){var c=this.v(t);if(c>=0){var h=this.a.e7.getRowKey(this.a.i(),c);this.n(h)||this.ar(h,c,null,!1)}}this.ar(t,e,u,r)},e.prototype.ar=function(t,e,i,r){if(!this.g.d(t)&&(this.g.s(t,e),null!=this.a.model.bx&&null!=this.a.model.bw)){var o=e>=this.a.model.bx.x&&e<=this.a.model.bw.x;(null==i||this.a.isGroupRowSticky&&null!==n.typeCast(n.DataSourceSpecialRow.$,i))&&(o=!0),o&&this.b.ao(this.a,e)}r&&this.a.w9(i,t)},e.prototype.az=function(t,e,i,r){if(this.g.d(t)&&(this.g.f(t),null!=this.a.model.bx&&null!=this.a.model.bw)){var o=e>=this.a.model.bx.x&&e<=this.a.model.bw.x;if((null==i||this.a.isGroupRowSticky&&null!==n.typeCast(n.DataSourceSpecialRow.$,i))&&(o=!0),o){var a=this.a.e7.getRowKey(this.a.i(),e);null!=a&&a.equals(t)&&e>=0&&this.b.aq(this.a,e)}}r&&this.a.xa(i,t)},e.prototype.ay=function(t,e,i){var r=!0,o=!1;if(!i&&3==this.a.e7.getRowType(e)){var a=n.typeCast(n.DataSourceSpecialRow.$,t.value[0]);if(null!=a.targetRow){var s=this.a.e7.getItemKey(this.a.i(),a.targetRow),l=this.a.e7.indexOfVisibleItemByKey(this.a.i(),s,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.az(s,l,a.targetRow,!0)}o=!0,r=!1}var u=null;if(!o&&(u=this.a.e7.resolveValueForDataRow(e),this.a.pinnedKeys.contains(t))){var c=this.v(t);if(c>=0){var h=this.a.e7.getRowKey(this.a.i(),c);this.n(h)&&this.az(h,c,null,!1)}}this.az(t,e,u,r)},e.prototype.ao=function(t,e,i){if(this.i.d(i)){var r=this.i.item(i),o=!0;if(3==this.a.e7.getRowType(e)){var a=n.typeCast(n.DataSourceSpecialRow.$,t.value[0]);if(null!=a.targetRow){var s=this.a.e7.getItemKey(this.a.i(),a.targetRow),l=this.a.e7.indexOfVisibleItemByKey(this.a.i(),s,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.am(s,r,i,l,!0)}o=!1}else if(this.a.pinnedKeys.contains(t)){var u=this.v(t);if(u>=0){var c=this.a.e7.getRowKey(this.a.i(),u);this.l(c,r)||this.am(c,r,i,u,!1)}}this.am(t,r,i,e,o)}},e.prototype.an=function(t,e,i){if(this.h.d(i)){var r=this.h.item(i);if(this.f.d(t))this.f.item(t).d(i)||(this.f.item(t).s(i,e),e>=0&&this.b.ae(this.a,e,r,i),this.a.v2(t,i));else{var o=new n.FastIterationDictionary$2(n.Number_$type,n.Number_$type,0);o.s(i,e),this.f.s(t,o),e>=0&&r>=0&&this.b.ae(this.a,e,r,i),this.a.v2(t,i)}}},e.prototype.am=function(t,e,i,r,o){if(this.f.d(t))this.f.item(t).d(e)||(this.f.item(t).s(e,r),r>=0&&this.b.ae(this.a,r,i,e),o&&this.a.v2(t,e));else if(e>=0){var a=new n.FastIterationDictionary$2(n.Number_$type,n.Number_$type,0);a.s(e,r),this.f.s(t,a),r>=0&&this.b.ae(this.a,r,i,e),o&&this.a.v2(t,e)}},e.prototype.aw=function(t,e,n,i){if(this.l(t,n)){if(this.f.item(t).f(n),0==this.f.item(t).r&&this.f.f(t),e>=0){var r=this.a.e7.getRowKey(this.a.i(),e);if(null!=r&&r.equals(t)&&e>=0&&this.h.d(n)){var o=this.h.item(n);o>=0&&this.b.af(this.a,e,o,n)}}i&&this.a.v3(t,n)}},e.prototype.av=function(t,e,i){var r=!0;if(3==this.a.e7.getRowType(e)){var o=n.typeCast(n.DataSourceSpecialRow.$,t.value[0]);if(null!=o.targetRow){var a=this.a.e7.getItemKey(this.a.i(),o.targetRow),s=this.a.e7.indexOfVisibleItemByKey(this.a.i(),a,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.aw(a,s,i,!0)}r=!1}else if(this.a.pinnedKeys.contains(t)){var l=this.v(t);if(l>=0){var u=this.a.e7.getRowKey(this.a.i(),l);this.l(u,i)&&this.aw(u,l,i,!1)}}this.aw(t,e,i,r)},e.prototype.v=function(t){var e=-1,i=this.a.e7.getStickyRows();if(null!=i)for(var r=0;r<i.length;r++){var o=n.typeCast(n.DataSourceSpecialRow.$,this.a.actualDataSource.getItemAtIndex(i[r]));if(null!=o&&3==o.rowType){var a=this.a.e7.getItemKey(this.a.i(),o.targetRow);if(null!=a&&a.equals(t)){e=i[r];break}}}return e},e.prototype.a2=function(){for(var t=this.r(),e=new n.Dictionary$2(s.$,n.Number_$type,0),i=0;i<t.count;i++){var r=t.item(i),o=-1;if(this.g.d(r)&&(o=this.g.item(r)),-1==o&&(o=this.a.e7.indexOfVisibleItemByKey(this.a.i(),r,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex())),this.a.pinnedKeys.contains(r)){var a=this.v(r);if(a>=0){var l=this.a.e7.getRowKey(this.a.i(),a);e.containsKey(l)||e.addItem(l,a),this.n(l)||this.aq(l,a,!0)}}e.containsKey(r)||e.addItem(r,o),this.n(r)||this.aq(r,o,!0)}for(var u=this.g.o,c=this.g.p,h=new n.List$1(s.$,0),p=new n.List$1(n.Number_$type,0),d=0;d<u.count;d++)if(!c._inner[d]){var f=u._inner[d];e.containsKey(f)||(h.add(f),p.add(this.g.q._inner[d]))}for(var m=0;m<p.count;m++)this.ay(h._inner[m],p._inner[m],!1);for(var g=0;g<this.a.selectedItems.ae.count;g++){var y=this.a.e7.getItemKey(this.a.i(),this.a.selectedItems.ae._inner[g]);if(null!=y&&!e.containsKey(y)){var b=-1;this.g.d(y)&&(b=this.g.item(y)),-1==b&&(b=this.a.e7.fastGetItemIndexForKey(this.a.i(),y,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex())),this.ay(y,b,!1)}}},e.prototype.a1=function(){for(var t=this.a.selectedCells.am,e=new n.Dictionary$2(s.$,n.IList$1_$type.specialize(n.Number_$type),0),i=function(i){var o=t.item(i).primaryKey;if(null==o)return"continue";if(null==t.item(i).b)return"continue";var a,s=t.item(i).b.ko,l=-1;if(r.l(o,s)&&(l=r.f.item(o).item(s)),-1==l){var u=r.a.getFirstVisibleIndex(),c=r.a.getLastVisibleIndex();-1!=u&&-1!=c&&(l=r.a.e7.indexOfVisibleItemByKey(r.a.i(),o,u,c))}if(r.a.pinnedKeys.contains(o)){var h=r.v(o);if(h>=0){var p=r.a.e7.getRowKey(r.a.i(),h);e.containsKey(p)?e.item(p).contains(s)||e.item(p).add(s):e.addItem(p,((a=new n.List$1(n.Number_$type,0)).add(s),a)),r.l(p,s)||r.an(p,h,s)}}e.containsKey(o)?e.item(o).contains(s)||e.item(o).add(s):e.addItem(o,function(){var t=new n.List$1(n.Number_$type,0);return t.add(s),t}()),r.l(o,s)||r.an(o,l,s)},r=this,o=0;o<t.count;o++)i(o);for(var a=this.f.o,l=this.f.p,u=new n.List$1(s.$,0),c=new n.List$1(n.Number_$type,0),h=new n.List$1(n.Number_$type,0),p=0;p<a.count;p++)if(!l._inner[p])for(var d=a._inner[p],f=0;f<this.f.item(d).o.count;f++)if(!this.f.item(d).p._inner[f]){var m=this.f.item(d).o._inner[f],g=this.f.item(d).q._inner[f];e.containsKey(d)&&e.item(d).contains(m)||(u.add(d),c.add(m),h.add(g))}for(var y=0;y<u.count;y++)this.av(u._inner[y],h._inner[y],c._inner[y])},e.prototype.a0=function(){var t=this.a.selectedCellRanges.ae;this.t.clear(),this.t=this.s,this.s=new n.List$1(_e.$,0);for(var e=0;e<t.count;e++)this.s.add(t.item(e).a());var i=this.a.e7.getStickyRows();if(null!=i)for(var r=0;r<i.length;r++){if(3==this.a.e7.getRowType(i[r]))for(var o=0;o<this.a.model.cg.count;o++){var a=this.a.model.cg._inner[o],s=this.a.model.b9._inner[a].n;this.x(i[r],s)}}for(var l=this.a.getFirstVisibleIndex(),u=this.a.getLastVisibleIndex(),c=l;c<=u;c++)for(var h=0;h<this.a.model.cg.count;h++){var p=this.a.model.cg._inner[h],d=this.a.model.b9._inner[p].n;this.x(c,d)}},e.prototype.x=function(t,e){for(var n=!1,i=!1,r=0;r<this.t.count;r++){this.t._inner[r].b(t,e)&&(n=!0)}for(var o=0;o<this.s.count;o++){this.s._inner[o].b(t,e)&&(i=!0)}if(n&&!i){var a=this.a.gb.j(e,this.a.model);this.a.c5.ad(this.a,t,a)}else if(!n&&i){var s=this.a.gb.j(e,this.a.model);this.a.c5.ac(this.a,t,s)}},e.prototype.r=function(){return this.a.selectedKeys.ae},e.prototype.ad=function(){this.ac(),this.ab()},e.prototype.ah=function(t){for(var e=0;e<this.g.o.count;e++)if(!this.g.p._inner[e]){var n=this.g.o._inner[e],i=this.g.q._inner[e];i>=t&&this.g.item(n,i+1)}for(var r=0;r<this.f.o.count;r++)if(!this.f.p._inner[r])for(var o=this.f.o._inner[r],a=this.f.q._inner[r],s=0;s<a.o.count;s++)if(!this.f.item(o).p._inner[s]){var l=a.o._inner[s],u=this.f.item(o).item(l);u>=t&&this.f.item(o).item(l,u+1)}},e.prototype.ak=function(t,e,n){if(this.a.pinnedKeys.contains(t)){var i=this.v(t);if(i>=0){var r=this.a.e7.getRowKey(this.a.i(),i);this.n(r)&&this.az(r,i,null,!1)}}this.az(t,e,n,!0)},e.prototype.ai=function(t,e){for(var i=new n.List$1(s.$,0),r=new n.List$1(n.Number_$type,0),o=0;o<this.g.o.count;o++)if(!this.g.p._inner[o]){var a=this.g.o._inner[o],l=this.g.q._inner[o];l==t&&(i.add(a),r.add(l)),l>t&&this.g.item(a,l-1)}for(var u=0;u<i.count;u++)this.ak(i._inner[u],r._inner[u],e);for(var c=0;c<this.f.o.count;c++)if(!this.f.p._inner[c])for(var h=this.f.o._inner[c],p=this.f.q._inner[c],d=0;d<p.o.count;d++)if(!this.f.item(h).p._inner[d]){var f=p.o._inner[d],m=this.f.item(h).item(f);m==t&&this.f.item(h).item(f,-1),m>t&&this.f.item(h).item(f,m-1)}},e.prototype.ag=function(t,e){for(var i=this.a.getFirstVisibleIndex(),r=this.a.getLastVisibleIndex(),o=new n.List$1(n.Number_$type,0),a=0;a<this.s.count;a++){var s=this.s._inner[a];s.l>r||s.j<i||(t<s.k&&this.w(o,s.k-1),t<=s.i&&this.w(o,s.i))}for(var l=0;l<o.count;l++)o._inner[l]>=0&&o._inner[l]<=this.a.actualColumns.count&&this.a.c5.ag(this.a,i,r,o._inner[l],!0)},e.prototype.ae=function(t,e){for(var i=this.a.getFirstVisibleIndex(),r=this.a.getLastVisibleIndex(),o=new n.List$1(n.Number_$type,0),a=0;a<this.s.count;a++){var s=this.s._inner[a];s.l>r||s.j<i||(t<s.k&&this.w(o,s.k),t<=s.i&&this.w(o,s.i+1))}for(var l=0;l<o.count;l++)o._inner[l]>=0&&o._inner[l]<=this.a.actualColumns.count&&this.a.c5.ag(this.a,i,r,o._inner[l],!0)},e.prototype.af=function(t,e,i){for(var r=this.a.getFirstVisibleIndex(),o=this.a.getLastVisibleIndex(),a=new n.List$1(n.Number_$type,0),s=0;s<this.s.count;s++){var l=this.s._inner[s];l.l>o||l.j<r||(l.c(t)&&!l.c(e)?(this.w(a,e),e>l.i?this.w(a,l.i):e<l.k&&this.w(a,l.k)):!l.c(t)&&l.c(e)?(this.w(a,e),t>l.i?this.w(a,l.i+1):t<l.k&&this.w(a,l.k-1)):l.c(t)||l.c(e)||(t<l.k&&e>l.i&&(this.w(a,l.k-1),this.w(a,l.i)),t>l.i&&e<l.k&&(this.w(a,l.k),this.w(a,l.i+1))))}for(var u=0;u<a.count;u++)this.a.c5.ag(this.a,r,o,a._inner[u],!0)},e.prototype.w=function(t,e){e<0||e>=this.a.actualColumns.count||t.contains(e)||t.add(e)},e.prototype.aj=function(t){for(var e=new n.List$1(s.$,0),i=new n.List$1(n.Number_$type,0),r=0;r<this.g.o.count;r++)if(!this.g.p._inner[r]){var o=this.g.o._inner[r],a=this.g.q._inner[r];a==t&&(e.add(o),i.add(a))}for(var l=0;l<e.count;l++)this.ay(e._inner[l],i._inner[l],!0)},e.prototype.aa=function(){this.j=!0},e.prototype.y=function(){this.d.u(),this.e.u();for(var t=0;t<this.a.actualColumns.count;t++)this.d.s(this.a.actualColumns._inner[t].ko,t),this.e.s(t,this.a.actualColumns._inner[t].ko)},e.prototype.ac=function(){for(var t=new n.List$1(n.Number_$type,0),e=new n.HashSet$1(n.Number_$type,0),i=0;i<this.g.o.count;i++)if(!this.g.p._inner[i]){var r=this.g.o._inner[i];t.add(this.g.item(r));var o=this.a.e7.indexOfVisibleItemByKey(this.a.i(),r,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());e.add_1(o),this.g.item(r,-1)}for(var a=0;a<t.count;a++)e.contains(t._inner[a])||this.a.c5.aq(this.a,t._inner[a])},e.prototype.ab=function(){for(var t=new n.FastIterationDictionary$2(s.$,n.Number_$type,0),e=new n.FastIterationDictionary$2(s.$,n.Number_$type,0),i=new n.List$1(n.Number_$type,0),r=0;r<this.f.q.count;r++)for(var o=this.f.o._inner[r],a=this.a.e7.indexOfVisibleItemByKey(this.a.i(),o,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex()),l=this.f.q._inner[r],u=0;u<l.q.count;u++){var c=l.o._inner[u];t.d(o)||(t.s(o,this.f.item(o).item(c)),e.s(o,a)),i.add(c),this.f.item(o).item(c,-1)}for(var h=0;h<t.q.count;h++){var p=t.o._inner[h],d=t.q._inner[h];e.q._inner[h];if(d>-1&&d<this.a.e7.getRowCount()){var f=this.a.actualDataSource.getItemAtIndex(d),m=n.typeCast(n.DataSourceSpecialRow.$,f);if(null!=m&&3==m.rowType)if(this.a.e7.getItemKey(this.a.i(),m.targetRow).equals(p))continue}e.q.contains(d)||this.a.c5.af(this.a,d,this.d.item(i._inner[h]),i._inner[h])}},e.prototype.q=function(t){return 2==this.a.selectionMode||5==this.a.selectionMode},e.prototype.as=function(t){this.u=t},e.prototype.z=function(t,e,n,i){var r,o=this;if(void 0===i&&(i=!1),t.l.aj)if((e=!!this.q(this.a.selectionMode)&&e)&&-1!=this.u){var a=((r=new bn).f=Math.min(o.u,t.l.x),r.d=Math.max(o.u,t.l.x),r);if(this.a.t8(),null!=this.c)for(var s=this.c.f;s<=this.c.d;s++)if(!a.b(s)){var l=this.a.e7.getRowKey(this.a.i(),s);null!=l&&this.g.d(l)&&this.ay(l,s,!1)}for(var u=a.f;u<=a.d;u++){var c=this.a.e7.getRowKey(this.a.i(),u);null==c||this.g.d(c)||this.aq(c,u,!1)}this.a.ur(),this.c=a}else n||i?this.au(t):this.at(t),this.c=null,this.p(t)?this.u=t.l.x:this.u=-1},e.prototype.al=function(){if(null!=this.a.actualDataSource){this.a.t8();for(var t=this.a.e7.getRowCount(),e=0;e<t;e++){var i=this.a.actualDataSource.getItemAtIndex(e);if(null===n.typeCast(n.DataSourceSpecialRow.$,i)){var r=this.a.e7.getRowKey(this.a.i(),e);null==r||this.g.d(r)||this.aq(r,e,!1)}}this.a.ur()}},e.$t=n.markType(e,"SelectionManager"),e}(n.Base),Mi=function(t){function e(e){var n=t.call(this)||this;return n.c=null,n.e=!1,n.c=e,n}return i.__extends(e,t),e.prototype.d=function(t){if(null==t)return!1;var e=t.lo,n=this.c.sortDescriptions,i=this.a(e,n),r=null==i?0:0==i.c?1:2,o=3==this.c.headerClickAction||2==this.c.headerClickAction,a=this.b(r,o);return this.f(t,a),!0},e.prototype.f=function(t,e){if(null==t)return!1;var n=t.lo,i=this.c.sortDescriptions,r=this.a(n,i);return this.g(n,e,r)},e.prototype.g=function(t,e,n){if(this.e)return!1;this.e=!0;try{var i=this.c.sortDescriptions,r=i.k(n),o=1==this.c.headerClickAction||3==this.c.headerClickAction;switch(null!=n&&i.h(n),0==o&&i.n(),e){case 0:break;case 2:case 1:var a=new Ot(2,t,1==e?0:1);o&&r>=0?i.j.insert(r,a):i.g(a)}return!0}finally{this.e=!1}},e.prototype.h=function(){var t=this.c.sortDescriptions,e=t.j.count;if(e>1)for(var n=e-1;n>0;n--)t.j.removeAt(n)},e.prototype.a=function(t,e){if(null==e||e.j.count<1)return null;for(var n=0;n<e.j.count;n++){var i=e.j.item(n);if(i.f==t)return i}return null},e.prototype.b=function(t,e){if(e)switch(t){case 0:return 1;case 1:return 2;case 2:return 0}else switch(t){case 0:case 2:return 1;default:return 2}return 0},e.$t=n.markType(e,"SortManager"),e}(n.Base),Ei=new n.Type(null,"IDataAdapter"),Ai=function(t){function e(e){var i=t.call(this)||this;return i.a=null,i.h=new n.Dictionary$2(n.Base.$,n.Number_$type,0),i.i=new n.List$1(s.$,0),i.g=null,i.b=null,i.d=null,i.propertyChanged=null,i.j=0,i.k=0,i.g=e,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,this.b!=e&&this.n("DataSource",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,this.d!=e&&this.n("EditableDataSource",e,this.d)},enumerable:!1,configurable:!0}),e.prototype.setDataSource=function(t){this.c=t,this.e=n.typeCast(n.IEditableDataSource_$type,this.c)},e.prototype.getItemForKey=function(t){var e=this.indexOfKey(t);return-1==e?null!=t.value&&1==t.value.length?t.value[0]:null:this.c.getItemAtIndex(e)},e.prototype.getItemKey=function(t,e){var n=null!=e&&void 0!==e.$$isSpecialRow;if(null==t)return null==e?null:s.createIdentityKey(e);if(n){var i=e;if(this.c.isSectionContentVisible||!this.c.isSectionHeaderNormalRow||1!=i.rowType)return s.createIdentityKey(e);if(1==i.rowType)for(var r=i.getSectionKeys(),o=0;o<r.length;o++)for(var a=0;a<t.length;a++)if(t[a]!=r[o])return s.createIdentityKey(e)}for(var l=new Array(t.length),u=0;u<t.length;u++)l[u]=this.c.getItemProperty(e,t[u]);return new s(t,l)},e.prototype.getRowKey=function(t,e){if(null==this.c)return null;if(e<0||e>this.c.actualCount-1)return null;var n=this.c.getItemAtIndex(e);return null==n?null:this.getItemKey(t,n)},e.prototype.n=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.o(t,e,i)},e.prototype.o=function(t,e,i){switch(t){case"DataSource":if(this.a=null,this.h.clear(),null!=this.c){null==this.a&&(this.a=new Array(1),this.a[0]=new n.DefaultSectionInformation(0,this.b.actualCount,null,null,null));for(var r=0;r<this.a.length;r++)null!=this.a[r].groupKeyValues&&this.h.addItem(this.a[r].groupKeyValues,r);for(var o=0;o<this.i.count;o++)this.b.pinRow(this.i._inner[o].value);this.i.clear()}}},e.prototype.getRowCount=function(){return this.l(0)},e.prototype.m=function(t,e){return null==this.b?-1:null!=this.b.actualPrimaryKey&&this.b.isKeyIndexLookupSupported?this.indexOfKey(t):this.b.isItemIndexLookupSupported?this.b.indexOfItem(e):-1},e.prototype.indexOfKey=function(t){return null==this.b?-1:null!=this.b.actualPrimaryKey&&this.b.isKeyIndexLookupSupported?this.b.indexOfKey(t.value):-1},e.prototype.fastGetItemIndexForKey=function(t,e,n,i){var r=this.indexOfVisibleItemByKey(t,e,n,i);return r>=0?r:this.indexOfKey(e)},e.prototype.indexOfVisibleItemByKey=function(t,e,i,r){if(null==this.b||i<0)return-1;for(var o=i;o<=r&&!(o>this.b.actualCount-1);o++){var a=this.b.getItemAtIndex(o);if(null!=a){var s=this.getItemKey(t,a);if(null!=s){if(null!=s.value&&1==s.value.length&&null!=s.value[0]&&n.getInstanceType(s.value[0])==n.DataSourceSpecialRow.$&&null!=e.value&&1==e.value.length&&null!=e.value[0]&&n.getInstanceType(e.value[0])==n.DataSourceSpecialRow.$){var l=n.typeCast(n.DataSourceSpecialRow.$,s.value[0]),u=n.typeCast(n.DataSourceSpecialRow.$,e.value[0]);if(l.rowType==u.rowType&&3==l.rowType&&l.targetRow==u.targetRow)return o}if(s.equals(e))return o}}}return-1},e.prototype.l=function(t){return null==this.b?0:this.b.actualCount},e.prototype.getSectionCount=function(){return null==this.a?0:this.a.length},e.prototype.f=function(t){return t},e.prototype.getDataRow=function(t){if(null==t)return-1;if(t=this.f(t),!(null==this.a||this.a.length<1)){var e=this.a[t.y].startIndex+t.x;return e<0||e>=this.b.actualCount?-1:e}return this.b.actualCount>t.x?t.x:-1},e.prototype.resolveValue=function(t,e){return t<0||t>this.b.actualCount-1?null:null!=e&&1==e.length&&"."==e.charAt(0)?this.b.getItemAtIndex(t):this.b.getItemPropertyAtIndex(t,e)},e.prototype.resolveValueForPath=function(t,e){var n=null;if(-400==e.a5){var i=this.b.getRowType(e.x);n=this.b.getMainValuePath(i)}else{n=t.cf(e).lo}return this.resolveValue(e.x,n)},e.prototype.resolveRow=function(t){return t<0||t>this.b.actualCount-1?null:this.b.getItemAtIndex(t)},e.prototype.resolveValueForDataRow=function(t){return t<0||t>this.b.actualCount-1?null:this.b.getItemAtIndex(t)},e.prototype.resolveValueForRow=function(t){if(null==(t=this.f(t)))return null;var e=this.getDataRow(t);return e<0||e>this.b.actualCount-1?null:this.b.getItemAtIndex(e)},e.prototype.getSectionForRow=function(t){if(null==this.a||this.a.length<2)return 0;for(var e=0;e<this.a.length;e++)if(!(e<this.a.length-1&&t>this.a[e+1].startIndex))return e;return this.a.length-1},e.prototype.getRowPathForRow=function(t){var e=this.getSectionForRow(t);return new y(e,t-this.a[e].startIndex)},Object.defineProperty(e.prototype,"firstVisibleIndexRequested",{get:function(){return this.j=0},set:function(t){this.j=t,null!=this.b&&(this.b.firstVisibleIndexRequested=this.j)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lastVisibleIndexRequested",{get:function(){return this.k=0},set:function(t){this.k=t,null!=this.b&&(this.b.lastVisibleIndexRequested=this.k)},enumerable:!1,configurable:!0}),e.prototype.isPlaceholderValue=function(t){if(null==this.b)return!1;var e=this.getDataRow(t);return!(e<0||e>this.b.actualCount-1)&&this.b.isPlaceholderItem(e)},e.prototype.isPlaceholderItem=function(t){return null!=this.b&&this.b.isPlaceholderItem(t)},e.prototype.getRowType=function(t){return null==this.b||t<0||t>=this.getRowCount()?0:this.b.getRowType(t)},e.prototype.getStickyRows=function(){return null==this.b?null:this.b.getStickyRows()},e.prototype.getStickyRowsInRange=function(t,e){return null==this.b?null:this.b.getStickyRowsInRange(t,e)},e.prototype.getStickRowPriority=function(t){return null==this.b?-1:this.b.getStickyRowPriority(t)},e.prototype.isExclusivelySticky=function(t){return null!=this.b&&this.b.isExclusivelySticky(t)},e.prototype.isRowSpanning=function(t){return null!=this.b&&this.b.isRowSpanning(t)},e.prototype.pinRow=function(t){null!=this.b?this.b.pinRow(t.value):this.i.add(t)},e.prototype.unpinRow=function(t){if(null!=this.b)this.b.unpinRow(t.value);else for(var e=0;e<this.i.count;e++)if(this.i._inner[e].equals(t)){this.i.remove(this.i._inner[e]);break}},e.prototype.clearPinnedRows=function(){null!=this.b&&this.b.clearPinnedRows()},e.prototype.isRowPinned=function(t){return null!=this.b&&this.b.isRowPinned(t)},e.prototype.getRowIndent=function(t){return null==this.b?0:this.b.getRowLevel(t)},e.prototype.getRootSummaryRowCount=function(){return null==this.b?0:this.b.getRootSummaryRowCount()},e.prototype.isEditedValue=function(t,e){if(null==this.e||null==t)return!1;var n=this.getItemKey(this.b.actualPrimaryKey,t);return this.e.hasEdit(n.value,e)||this.e.hasAdd(n.value)},e.prototype.isDeletedRow=function(t){if(null==this.e||null==t)return!1;var e=this.getItemKey(this.b.actualPrimaryKey,t);return this.e.hasDelete(e.value)},e.prototype.getPendingEditID=function(t,e){if(null==this.e||null==t)return-1;var n=this.getItemKey(this.b.actualPrimaryKey,t);return this.e.getTransactionID(n.value,e)},e.prototype.getError=function(t){return null==this.e||-1==t?null:this.e.getTransactionErrorByID(t)},e.$t=n.markType(e,"DataAdapter",n.Base.$,[n.INotifyPropertyChanged_$type,Ei]),e}(n.Base),Vi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.g2=n.truncate(n.DeviceUtils.g(2)),e.gy=1,e.gz=NaN,e}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"columnMovingSeparator"},e.prototype.n=function(t){return new Wn},e.prototype.gk=function(){return h.a4},Object.defineProperty(e.prototype,"g3",{get:function(){return this.g2},set:function(t){var e=this.g2;this.g2=t,this.g2!=e&&this.et("SeparatorWidth",6,e,this.g2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g0",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,this.gy!=e&&this.et("Opacity",0,e,this.gy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g1",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("Opacity",10,e,this.gz)},enumerable:!1,configurable:!0}),e.prototype.eq=function(t,e){this.e5(),this.g7()},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.columnMovingSeparatorBackground)return void(this.f5=this.grid.columnMovingSeparatorBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.g7=function(){n.isNaN_(this.g1)?null==this.grid||n.isNaN_(this.grid.columnMovingSeparatorOpacity)?this.g0=1:this.g0=this.grid.columnMovingSeparatorOpacity:this.g0=this.g1},e.prototype.es=function(t,e){switch(e.propertyName){case"ColumnMovingSeparatorBackground":this.e5();break;case"ColumnMovingSeparatorOpacity":this.g7()}},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r),e.co=this.g0},e.$t=n.markType(e,"ColumnMovingSeparator",Oi.$),e}(Oi),Ni=function(t){function e(){var e=t.call(this)||this;return e.n4=null,e.hz=4,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n5",{get:function(){return this.n4},set:function(t){var e=this.n4;this.n4=t,this.n4!=e&&this.et("ActualDataSource",10,e,this.n4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n6",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oa",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ob",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n3",{get:function(){return this.gz},set:function(t){this.gz=t},enumerable:!1,configurable:!0}),e.prototype.n=function(t){return new Qn},e.prototype.d2=function(t,e,n){return"combobox"},e.prototype.eq=function(e,n){t.prototype.eq.call(this,e,n),null==this.n5&&null!=this.n6&&null!=n&&(this.n5=n.externalGrid.createLocalDataSource(this.n6))},e.prototype.dz=function(t,e,n){return this.n9(e)},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r),e.mh=this.dz(n,i,r)},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r)},e.prototype.ev=function(e,i,r,o){switch(t.prototype.ev.call(this,e,i,r,o),e){case"EditorItemsSourceInternal":null!==n.typeCast(n.IDataSource_$type,this.n6)?this.n5=this.n6:null!=this.grid&&(this.n5=this.grid.externalGrid.createLocalDataSource(this.n6));break;case"ActualDataSource":if(null!=r){var a=r;a.schemaChanged=n.delegateRemove(a.schemaChanged,n.runOn(this,this.oc))}if(null!=this.n5){var s=this.n5;s.schemaChanged=n.delegateCombine(s.schemaChanged,n.runOn(this,this.oc))}this.od();break;case"EditorTextFieldInternal":case"EditorValueFieldInternal":this.od()}},e.prototype.oc=function(t,e){this.od()},e.prototype.od=function(){if(null!=this.n5)if(null!=this.ob)this.n5.primaryKey=this.gz;else if(null!=this.oa)this.n5.primaryKey=[this.oa];else{var t=this.n5.actualSchema;null!=t&&t.propertyNames.length>0&&(this.n5.primaryKey=[t.propertyNames[0]])}},e.prototype.n8=function(t){return"string"==typeof t?t:null},e.prototype.n9=function(t){var e=null;if(null!=this.n5&&null!=this.oa){var i=this.n5.indexOfKey(null!==n.typeCast(n.Array_$type,t)?t:[t]);if(i>-1){var r=this.n5.getItemPropertyAtIndex(i,this.oa);null!=r&&(e=this.n8(r))}}return null==e&&null!=t&&(e=this.n8(t)),e},e.$t=n.markType(e,"ComboBoxColumn",Ii.$),e}(Ii),Fi=function(t){function e(){var e=t.call(this)||this;return e.n6=new z,e.n7=0,e.oh=null,e.og=null,e.n3=null,e.od=null,e.oa=!1,e.n5=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n8",{get:function(){return this.n7},set:function(t){var e=this.n7;this.n7=t,this.n7!=e&&this.et("DateTimeFormat",4,n.enumGetBox($,e),n.enumGetBox($,this.n7))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oq",{get:function(){return this.oh},set:function(t){var e=this.oh;this.oh=t,this.oh!=e&&this.et("FormatString",8,e,this.oh)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oj",{get:function(){return this.og},set:function(t){var e=this.og;this.og=t,this.og!=e&&this.et("EditorFormatString",8,e,this.og)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n4",{get:function(){return this.n3},set:function(t){var e=this.n3;this.n3=t,this.n3!=e&&this.et("FormatSpecifiers",9,e,this.n3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"of",{get:function(){return this.od},set:function(t){var e=this.od;this.od=t,this.od!=e&&this.et("FormatOverride",9,e,this.od)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ob",{get:function(){return this.oa},set:function(t){var e=this.oa;this.oa=t,e!=this.oa&&this.et("ShowTodayButton",5,e,this.oa)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n9",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oe",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ol",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"om",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),e.prototype.ev=function(e,i,r,o){switch(t.prototype.ev.call(this,e,i,r,o),e){case"DateTimeFormat":this.n6.k();break;case"FormatString":case"FormatSpecifiers":null!=this.oq?(this.n5=new n.BindingFormatter,this.n5.j=this.oq,this.n5.d=this.n4):this.n5=null}},e.prototype.n=function(t){return new zn},e.prototype.d2=function(t,e,n){return 4==t.af?"datetime_mergedCell":"datetime"},e.prototype.dz=function(t,e,n){return this.on(e)},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r);var o=e;o.mp=this.oc(i),o.mj=this.n6,this.n6.j(o.ml)},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r);var o=e;o.ml=this.n8,o.m6=this.oq,o.mg=this.n4,o.mz=this.of},e.prototype.oc=function(t){return null==t?n.dateMinValue():null!==n.typeCast(n.Date_$type,t)?t:n.dateMinValue()},e.prototype.on=function(t){var e=null!==n.typeCast(n.Date_$type,t)?t:n.dateMinValue();if(null!=this.n5)return+e==+n.dateMinValue()?"":this.n5.i(e);if(null!=this.od){if(+e==+n.dateMinValue())return"";var i=e;return this.od.format(i)}this.n6.j(this.n8);var r=this.n6.i(e);return r==n.stringEmpty()&&null!=t&&null===n.typeCast(n.Date_$type,t)?t.toString():r},e.$t=n.markType(e,"DateTimeColumn",Ii.$),e}(Ii),$i=new n.Type(null,"IExternalDefinitionBase"),zi=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._resolvedValue=null,e._rowObject=null,e._cellInfo=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"resolvedValue",{get:function(){return this._resolvedValue},set:function(t){this._resolvedValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowObject",{get:function(){return this._rowObject},set:function(t){this._rowObject=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"DataBindingEventArgs",n.EventArgs.$),e}(n.EventArgs),Gi=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.get_s=function(){return!0},e.prototype.aq=function(){return null},e.prototype.p=function(){var e=this.aq();if(null!=e)for(var n=0;n<e.count;n++)if(e._inner[n].p())return!0;return t.prototype.p.call(this)},e.prototype.q=function(){var e=this.aq();if(null!=e)for(var n=0;n<e.count;n++)if(e._inner[n].q())return!0;return t.prototype.q.call(this)},e.prototype.r=function(){var e=this.aq();if(null!=e)for(var n=0;n<e.count;n++)if(e._inner[n].r())return!0;return t.prototype.r.call(this)},e.$t=n.markType(e,"GridCompoundConditionalStyle",Ci.$),e}(Ci),Li=function(t){function e(e){var i=t.call(this)||this;i.f=null,i.j=!1,i.q=new n.List$1(n.ICommandAvailabilityListener_$type,0),i.r=new n.List$1(n.ICommandStateChangedListener_$type,0),i.h=null,i.f=e;var r=i.f;if(r.propertyChanged=n.delegateCombine(r.propertyChanged,n.runOn(i,i.a2)),!i.j){i.j=!0,i.f.grid.sortDescriptions.m(n.runOn(i,i.bz)),i.f.grid.groupDescriptions.m(n.runOn(i,i.br)),i.f.grid.summaryDescriptions.m(n.runOn(i,i.b0));var o=i.f.grid;o.actualColumnsChanged=n.delegateCombine(o.actualColumnsChanged,n.runOn(i,i.bp));var a=i.f.grid;a.columnPinnedChanged=n.delegateCombine(a.columnPinnedChanged,n.runOn(i,i.bq))}return i}return i.__extends(e,t),e.prototype.bz=function(t,e){this.bj()},e.prototype.b0=function(t,e){this.bl()},e.prototype.bq=function(t,e){this.bg()},e.prototype.bp=function(t,e){this.bg()},e.prototype.br=function(t,e){this.bc(),this.bj()},e.prototype.a2=function(t,e){switch(e.propertyName){case"Pinned":this.bh(),this.bg();break;case"SortDirection":this.bj();break;case"IsHidden":this.bn();break;case"ActualHeaderText":this.a9();break;case"ActualIsColumnOptionsSummariesEnabled":this.bl()}},e.prototype.a9=function(){var t=this;this.f.my((function(e){return e.setContextValue("GridColumnOptionsColumnName",3,t.f.k3)}))},e.prototype.bj=function(){var t=this;this.f.my((function(e){e.setContextValue("GridColumnOptionsSortAscending",5,1==t.e),e.setContextValue("GridColumnOptionsSortDescending",5,2==t.e)}))},e.prototype.bg=function(){var t=this;this.f.my((function(e){e.setContextValue("GridColumnOptionsMoveLeftSelected",5,!1),e.setContextValue("GridColumnOptionsMoveRightSelected",5,!1),e.setContextValue("GridColumnOptionsMoveLeftDisabled",5,!t.m(t.f)),e.setContextValue("GridColumnOptionsMoveRightDisabled",5,!t.n(t.f))}))},e.prototype.l=function(t){var e=this.f;if(null==e)return!1;var n=e.grid;if(null==n)return!1;var i=n.actualColumns.indexOf(e);return!(i<0)&&(t?this.f.grid.canMoveColumnLeft(i):this.f.grid.canMoveColumnRight(i))},e.prototype.n=function(t){return this.l(!1)},e.prototype.m=function(t){return this.l(!0)},e.prototype.bh=function(){var t=this;this.f.my((function(e){e.setContextValue("GridColumnOptionsPinnedLeft",5,1==t.f.il),e.setContextValue("GridColumnOptionsPinnedRight",5,2==t.f.il),e.setContextValue("GridColumnOptionsPinnedLeftIcon",3,1==t.f.il?"UnpinLeft":"PinLeft"),e.setContextValue("GridColumnOptionsPinnedRightIcon",3,2==t.f.il?"UnpinRight":"PinRight")}))},e.prototype.bc=function(){for(var t=!1,e=this.f.grid,n=0;n<e.groupDescriptions.j.count;n++){if(e.groupDescriptions.j.item(n).f==this.f.lo){t=!0;break}}this.f.my((function(e){return e.setContextValue("GridColumnOptionsGroupedIcon",3,t?"Ungroup":"Group")}))},e.prototype.bn=function(){var t;t=!this.f.jo,this.f.my((function(e){return e.setContextValue("GridColumnOptionsVisibilityIcon",3,t?"Hide":"Show")}))},e.prototype.a3=function(t){this.q.add(t)},e.prototype.a4=function(t){this.r.add(t)},Object.defineProperty(e.prototype,"i",{get:function(){return null==this.h&&(this.h=new n.SRProvider(this.f.grid.externalGrid.renderer),this.h.cb("DataGrid")),this.h},enumerable:!1,configurable:!0}),e.prototype.am=function(t,e){var i=this.i.b1(t);return n.stringIsNullOrEmpty(i)?e:i},e.prototype.a=function(){e.k||(e.k=!0,n.SvgIconRegistry.instance.addSvgPathString("XGrid","DotDotDot",e.ak),n.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowUpward",e.z),n.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowDownward",e.x),n.SvgIconRegistry.instance.addSvgPathString("XGrid","PinLeft",e.at),n.SvgIconRegistry.instance.addSvgPathString("XGrid","PinRight",e.au),n.SvgIconRegistry.instance.addSvgPathString("XGrid","UnpinLeft",e.ay),n.SvgIconRegistry.instance.addSvgPathString("XGrid","UnpinRight",e.az),n.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowForward",e.y),n.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowBackward",e.w),n.SvgIconRegistry.instance.addSvgPathString("XGrid","Group",e.ap),n.SvgIconRegistry.instance.addSvgPathString("XGrid","Ungroup",e.ax),n.SvgIconRegistry.instance.addSvgPathString("XGrid","Show",e.a1),n.SvgIconRegistry.instance.addSvgPathString("XGrid","Hide",e.a0),n.SvgIconRegistry.instance.addSvgPathString("XGrid","ClearFilter",e.ab));new o.ToolActionCollection;var t=new n.ToolActionIconMenuInfo;t.name="DataGridColumnOptions",t.iconCollectionName="XGrid",t.iconName="DotDotDot",t.iconViewBoxWidth=24,t.iconViewBoxHeight=24,t.paddingBottom=0,t.paddingTop=0,t.paddingRight=0,t.paddingLeft=0,t.showArrowIcon=!1,t.density=4,t.subPanelRowHeight=32;var i,r=new n.ToolActionGroupHeaderInfo;r.name="DataGridColumnHeader",r.height=46,r.contextBindings=[(i=new n.ToolContextBindingInfo,i.contextKey="GridColumnOptionsColumnName",i.propertyName="Title",i)];var a=new n.List$1(n.ToolActionInfo.$,0),s=new n.ToolActionIconButtonInfo;s.name="DataGridColumnGroup",s.iconCollectionName="XGrid",s.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsGroupedIcon",t.propertyName="IconName",t}()];var l=new n.ToolActionIconButtonInfo;l.name="DataGridColumnHide",l.iconCollectionName="XGrid",l.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsVisibilityIcon",t.propertyName="IconName",t}()],a.add(s),a.add(l),r.actions=a.toArray(),r.density=3;var u=new n.ToolActionButtonPairInfo;u.title=this.am("Column_Sort","Sort"),u.leftTitle=this.am("Column_Sort_Ascending","Asc"),u.name="DataGridColumnSort",u.leftIconCollectionName="XGrid",u.leftIconName="ArrowUpward",u.leftCommandArgument="Ascending",u.rightIconCollectionName="XGrid",u.rightIconName="ArrowDownward",u.rightTitle=this.am("Column_Sort_Descending","Desc"),u.rightCommandArgument="Descending",u.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortAscending",t.propertyName="LeftIsSelected",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortDescending",t.propertyName="RightIsSelected",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortAscendingDisabled",t.propertyName="LeftIsDisabled",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortDescendingDisabled",t.propertyName="RightIsDisabled",t}()],u.density=3;var c=new n.ToolActionButtonPairInfo;c.name="DataGridColumnMove",c.isToggleDisabled=!0,c.title=this.am("Column_Move","Move"),c.leftTitle=this.am("Column_Move_Left","Left"),c.leftCommandArgument="MoveLeft",c.leftIconCollectionName="XGrid",c.leftIconName="ArrowBackward",c.rightIconCollectionName="XGrid",c.rightCommandArgument="MoveRight",c.rightIconName="ArrowForward",c.rightTitle=this.am("Column_Move_Right","Right"),c.density=3,c.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveLeftSelected",t.propertyName="LeftIsSelected",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveRightSelected",t.propertyName="RightIsSelected",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveLeftDisabled",t.propertyName="LeftIsDisabled",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveRightDisabled",t.propertyName="RightIsDisabled",t}()];var h=new n.ToolActionButtonPairInfo;h.name="DataGridColumnPin",h.title=this.am("Column_Pin","Pin"),h.leftTitle=this.am("Column_Pin_Left","Left"),h.leftIconCollectionName="XGrid",h.leftCommandArgument="PinLeft",h.rightIconCollectionName="XGrid",h.rightCommandArgument="PinRight",h.rightTitle=this.am("Column_Pin_Right","Right"),h.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsPinnedLeft",t.propertyName="LeftIsSelected",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsPinnedRight",t.propertyName="RightIsSelected",t}(),function(){var t=new n.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsPinnedLeftIcon",t.propertyName="LeftIconName",t}(),function(){var t=new n.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsPinnedRightIcon",t.propertyName="RightIconName",t}()],h.density=3;var p=new n.ToolActionLabelInfo;p.name="DataGridColumnSummaries",p.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesTitle",t.propertyName="Title",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesVisible",t.propertyName="Visibility",t}()];var d=new n.ToolActionCheckboxInfo;d.name="DataGridColumnAverageSummary",d.title=this.am("Column_Options_Summary_Average","Average"),d.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesAverageChecked",t.propertyName="IsChecked",t}()];var f=new n.ToolActionCheckboxInfo;f.name="DataGridColumnMinimumSummary",f.title=this.am("Column_Options_Summary_Minimum","Minimum"),f.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesMinimumChecked",t.propertyName="IsChecked",t}()];var m=new n.ToolActionCheckboxInfo;m.name="DataGridColumnMaximumSummary",m.title=this.am("Column_Options_Summary_Maximum","Maximum"),m.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesMaximumChecked",t.propertyName="IsChecked",t}()];var g=new n.ToolActionCheckboxInfo;g.name="DataGridColumnCountSummary",g.title=this.am("Column_Options_Summary_Count","Count"),g.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesCountChecked",t.propertyName="IsChecked",t}()];var y=new n.ToolActionCheckboxInfo;y.title=this.am("Column_Options_Summary_Sum","Sum"),y.name="DataGridColumnSumSummary",y.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesSumChecked",t.propertyName="IsChecked",t}()];var b=new n.ToolActionGroupHeaderInfo;b.name="DataGridColumnSummariesHeader",b.title=this.am("Column_Options_Summaries","Summaries");var v=new n.List$1(n.ToolActionInfo.$,0);v.add(b),v.add(d),v.add(f),v.add(m),v.add(g),v.add(y),p.actions=v.toArray();var C=new n.ToolActionCheckboxListInfo;C.name="DataGridColumnFilter",C.contextBindings=[function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterIndexType",t.propertyName="IndexType",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterItemsSource",t.propertyName="ItemsSource",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterSelectedKeys",t.propertyName="SelectedKeys",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterPrimaryKey",t.propertyName="PrimaryKey",t}(),function(){var t=new n.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterDataMemberPath",t.propertyName="DataMemberPath",t}()],C.showSelectAll=!0;var x=new n.ToolActionLabelInfo;x.title=this.am("Clear_Column_Filter","Clear Filter"),x.iconName="ClearFilter",x.iconCollectionName="XGrid",x.name="DataGridClearFilter";var _=new n.List$1(n.ToolActionInfo.$,0);_.add(r),_.add(u),_.add(c),_.add(h),_.add(p),_.add(x),_.add(C);var w=new n.ToolActionSubPanelInfo;w.name="DataGridColumnApplyOrCancel";var S=new n.ToolActionButtonInfo;S.name="DataGridColumnApply",S.title=this.am("Apply","Apply"),S.paddingLeft=20,S.paddingRight=40,S.closeOnExecute=!0;var P=new n.ToolActionButtonInfo;P.name="DataGridColumnCancel",P.title=this.am("Cancel","Cancel"),P.closeOnExecute=!0,w.actions=[S,P],w.height=42,w.subPanelRowHeight=42,_.add(w),t.actions=_.toArray(),t.name="DataGridColumnOptions",t.tooltipDelay=500;var O=[t];return this.a9(),this.bj(),this.bg(),this.bh(),this.bc(),this.bn(),this.bl(),O},e.prototype.bk=function(){var t=this;this.f.my((function(e){return e.setContextValue("GridColumnOptionsSummariesTitle",3,t.al())}))},e.prototype.bl=function(){var t=this;if(null!=this.f&&null!=this.f.grid){this.f.my((function(e){return e.setContextValue("GridColumnOptionsSummariesTitle",3,t.an())}));var e=!1,n=!1,i=!1,r=!1,o=!1;if(null!=this.f&&null!=this.f.grid)for(var a=this.f.grid,s=0;s<a.summaryDescriptions.j.count;s++){var l=a.summaryDescriptions.j.item(s);if(l.ah==this.f.lo&&l.t)switch(l.i){case 3:e=!0;break;case 0:n=!0;break;case 1:i=!0;break;case 2:o=!0;break;case 4:r=!0}}this.f.my((function(a){a.setContextValue("GridColumnOptionsSummariesVisible",6,t.b6()),a.setContextValue("GridColumnOptionsSummariesAverageChecked",5,e),a.setContextValue("GridColumnOptionsSummariesMinimumChecked",5,n),a.setContextValue("GridColumnOptionsSummariesMaximumChecked",5,i),a.setContextValue("GridColumnOptionsSummariesSumChecked",5,o),a.setContextValue("GridColumnOptionsSummariesCountChecked",5,r)}))}},e.prototype.b6=function(){return this.f.jc&&3!=this.f.grid.summaryScope?0:1},e.prototype.an=function(){return this.am("Column_Options_Summaries","Summaries")+" ("+this.v()+")"},e.prototype.al=function(){return this.am("Column_Options_Summaries","Summaries")+" ("+this.u()+")"},e.prototype.u=function(){var t=0,e=this.f.im();null!=e&&(e.getContextValue("GridColumnOptionsSummariesAverageChecked",5)&&t++,e.getContextValue("GridColumnOptionsSummariesMinimumChecked",5)&&t++,e.getContextValue("GridColumnOptionsSummariesMaximumChecked",5)&&t++,e.getContextValue("GridColumnOptionsSummariesSumChecked",5)&&t++,e.getContextValue("GridColumnOptionsSummariesCountChecked",5)&&t++);return t},e.prototype.v=function(){if(null==this.f)return 0;for(var t=this.f.grid,e=0,n=0;n<t.summaryDescriptions.j.count;n++){var i=t.summaryDescriptions.j.item(n);i.ah==this.f.lo&&i.t&&e++}return e},e.prototype.ba=function(){var t=this.f,e=this.f.grid,i=null!=t?t.lo:null,r=null,o=null;if(null!=e&&(e.isPagerVisible&&null!=e.pager&&null!=e.pager.actualDataSource?(r=e.pager.actualDataSource,o=e.pager.actualDataSource.clone()):(r=e.actualDataSource,o=e.actualDataSource.clone())),null!=o){this.b5(r,o),o.summaryDescriptions.clear(),o.sortDescriptions.clear(),o.groupDescriptions.clear();var a=new n.SortDescription;a.propertyName=i,a.direction=0,o.groupDescriptions.add(a);for(var s=e.z(t),l=o.filterExpressions,u=l.k.count-1;u>=0;u--){if(l.k.item(u).isAutoGenerated){null!=s?l.k.item(u,s):o.filterExpressions.removeAt(u);break}}o.flushAutoRefresh(),this.f.my((function(t){t.setContextValue("GridColumnOptionsFilterItemsSource",7,o),t.setContextValue("GridColumnOptionsFilterDataMemberPath",3,i),t.setContextValue("GridColumnOptionsFilterPrimaryKey",7,[i])})),o.shouldEmitSectionHeaders=!0,o.isSectionHeaderNormalRow=!0,o.isSectionExpandedDefault=!1,o.isSectionCollapsable=!0,o.isSectionContentVisible=!1,this.b4()}},e.prototype.b5=function(t,e){},e.prototype.b4=function(){for(var t,e,r=this.f,a=null!=r?r.lo:null,s=!0,l=n.toNullable(m,null),u=this.s(),c=u.count-1;c>=0;c--){var h=u._inner[c];switch(h.operator){case 0:case 1:break;default:u.removeAt(c);continue}if(n.nullableEquals(l,null))l=n.toNullable(m,h.operator);else if(l.value!=h.operator){s=!1;break}}if(0!=u.count&&s){switch(l.value){case 0:this.f.my((function(t){return t.setContextValue("GridColumnOptionsFilterIndexType",6,1)}));break;case 1:this.f.my((function(t){return t.setContextValue("GridColumnOptionsFilterIndexType",6,0)}))}var p=new o.LayoutSelectedKeysCollection;try{for(var d=i.__values(n.fromEnum(u)),f=d.next();!f.done;f=d.next()){var g=f.value;p.add(new o.LayoutPrimaryKeyValue(0,[a],[g.value]))}}catch(e){t={error:e}}finally{try{f&&!f.done&&(e=d.return)&&e.call(d)}finally{if(t)throw t.error}}this.f.my((function(t){return t.setContextValue("GridColumnOptionsFilterSelectedKeys",7,p)})),this.b3()}else this.f.my((function(t){t.setContextValue("GridColumnOptionsFilterIndexType",6,0),t.setContextValue("GridColumnOptionsFilterSelectedKeys",7,new o.LayoutSelectedKeysCollection)}))},e.prototype.b3=function(){},e.prototype.o=function(){var t=this.f;return null!=t&&null!=t.g1},e.prototype.s=function(){var t=new n.List$1(In.$,0),i=this.f;if(null==i)return t;null!=i.g1&&(t=e.bo(i.g1,t).p1);return t},e.bo=function(t,i){var r=n.typeCast(Tn.$,t);if(null!=r)for(var o=0;o<r.count;o++){var a=r.item(o);i=e.bo(a,i).p1}else null!=t&&null!==n.typeCast(In.$,t)&&i.add(t);return{p1:i}},e.prototype.p=function(){if(null==this.f)return!1;if(null!=this.f.grid&&0!=this.f.grid.filterUIType)return!1;if(!this.f.jm)return!1;if(null==this.f.grid||null==this.f.grid.actualDataSource||!this.f.grid.actualDataSource.isGroupingSupported||!this.f.grid.actualDataSource.isFilteringSupported)return!1;if(this.f.grid.isPagerVisible&&null!=this.f.grid.pager){var t=this.f.grid.pager.actualDataSource;if(null==t||!t.isGroupingSupported||!t.isFilteringSupported)return!1}return!0},e.prototype.g=function(t){switch(t.commandId){case"DataGridClearFilter":this.a7();break;case"DataGridColumnApply":this.a5(),this.a6();break;case"DataGridColumnCancel":this.b4(),this.a8();break;case"DataGridColumnGroup":this.b1();break;case"DataGridColumnHide":this.b2();break;case"DataGridColumnSort":for(var e=null,n=null,i=t.argumentsList,r=0;r<i.length;r++){var o=i[r];"Ascending"==o.argumentName&&(e=o),"Descending"==o.argumentName&&(n=o)}var a=!1,s=!1;null!=e&&(a=e.value),null!=n&&(s=n.value),this.e=a||s?a?1:2:0;break;case"DataGridColumnMove":for(var l=null,u=null,c=t.argumentsList,h=0;h<c.length;h++){var p=c[h];"MoveLeft"==p.argumentName&&(l=p),"MoveRight"==p.argumentName&&(u=p)}null!=l&&l.value&&this.bs(),null!=u&&u.value&&this.bt();break;case"DataGridColumnPin":for(var d=null,f=null,m=t.argumentsList,g=0;g<m.length;g++){var y=m[g];"PinLeft"==y.argumentName&&(d=y),"PinRight"==y.argumentName&&(f=y)}null!=d&&this.bf(d.value),null!=f&&this.bi(f.value);break;case"DataGridColumnFilter":this.bl();break;case"DataGridColumnAverageSummary":case"DataGridColumnCountSummary":case"DataGridColumnMaximumSummary":case"DataGridColumnMinimumSummary":case"DataGridColumnSumSummary":this.bk()}return 0},e.prototype.bb=function(t,e,n){this.a5()},e.prototype.a7=function(){this.f.g1=null,this.b4()},e.prototype.a8=function(){null!=this.f&&this.bl()},e.b=function(t,e){var n=new In;return n.operator=t,n.value=e,n},e.prototype.a6=function(){var t=this.f.im();if(null!=t){var e=t.getContextValue("GridColumnOptionsSummariesAverageChecked",5),i=t.getContextValue("GridColumnOptionsSummariesMinimumChecked",5),r=t.getContextValue("GridColumnOptionsSummariesMaximumChecked",5),o=t.getContextValue("GridColumnOptionsSummariesSumChecked",5),a=t.getContextValue("GridColumnOptionsSummariesCountChecked",5),s=new n.HashSet$1(n.DataSourceSummaryOperand_$type,0);e&&s.add_1(3),i&&s.add_1(0),r&&s.add_1(1),o&&s.add_1(2),a&&s.add_1(4),this.by(s),e&&this.bm(e,3),a&&this.bm(a,4),r&&this.bm(r,1),i&&this.bm(i,0),o&&this.bm(o,2)}},e.prototype.a5=function(){var t,r,a=this.f.im();if(null!=a){var s=a.getContextValue("GridColumnOptionsFilterSelectedKeys",7),l=n.EnumUtil.getEnumValue(o.ToolActionCheckboxListIndexType_$type,a.getContextValue("GridColumnOptionsFilterIndexType",6));if(0!=s.count){var u,c;0==l?(c=!1,u=1):(c=!0,u=0);for(var h=new n.List$1(In.$,0),p=s,d=0;d<p.count;d++){var f=p._inner[d].value[0],m=e.b(u,f);h.add(m)}if(1==h.count)this.f.g1=h._inner[0];else{var g=new Tn;g.usesOrOperator=c;try{for(var y=i.__values(n.fromEnum(h)),b=y.next();!b.done;b=y.next()){var v=b.value;g.add(v)}}catch(e){t={error:e}}finally{try{b&&!b.done&&(r=y.return)&&r.call(y)}finally{if(t)throw t.error}}this.f.g1=g}this.f.m0("Filtered")}else this.a7()}},e.prototype.b2=function(){this.f.jo=!this.f.jo},e.prototype.b1=function(){var t=new kt(0);1==this.e&&(t.c=0),2==this.e&&(t.c=1),t.f=this.f.lo;for(var e=this.f.grid,n=!1,i=0;i<e.groupDescriptions.j.count;i++){if(e.groupDescriptions.j.item(i).f==this.f.lo){e.groupDescriptions.d(i),n=!0;break}}n||e.groupDescriptions.g(t),this.bj()},e.prototype.by=function(t){for(var e=this.f.grid,n=e.summaryDescriptions.j.count-1;n>=0;n--){var i=e.summaryDescriptions.j.item(n);i.ah==this.f.lo&&!t.contains(i.i)&&i.t&&e.summaryDescriptions.d(n)}},e.prototype.bm=function(t,e){var n=new vt(1,this.f.lo);n.i=e;for(var i=this.f.grid,r=0;r<i.summaryDescriptions.j.count;r++){var o=i.summaryDescriptions.j.item(r);if(o.ah==this.f.lo&&o.i==n.i&&o.t==n.t){if(t)return;i.summaryDescriptions.d(r)}}t&&i.summaryDescriptions.g(n)},e.prototype.bf=function(t){t?this.f.il=1:1==this.f.il&&(this.f.il=0)},e.prototype.bi=function(t){t?this.f.il=2:2==this.f.il&&(this.f.il=0)},e.prototype.bt=function(){var t=this.f.grid.actualColumns.indexOf(this.f);t>=0&&this.f.grid.canMoveColumnRight(t)&&this.f.grid.moveColumnRight(t)},e.prototype.bs=function(){var t=this.f.grid.actualColumns.indexOf(this.f);t>=0&&this.f.grid.canMoveColumnLeft(t)&&this.f.grid.moveColumnLeft(t)},e.prototype.bw=function(t){this.q.remove(t)},e.prototype.bx=function(t){this.r.remove(t)},e.c=function(t,e){if(null!=t){var i=t.grid;if(null!=i)for(var r=t.lo,o=i.groupDescriptions.j,a=0;a<o.count;a++){var s=o.item(a),l=s.f;if(0==n.StringComparer.b.compare(r,l))return{ret:s,p1:a}}}return{ret:null,p1:-1}},e.d=function(t){switch(t){case 0:return 1;case 1:return 2;default:return 1}},e.t=function(t){switch(t){case 1:return 0;case 2:return 1;case 0:default:return 0}},Object.defineProperty(e.prototype,"e",{get:function(){var t=this.f;if(null!=t){var n,i=function(){var i=e.c(t,n);return n=i.p1,i.ret}();return null!=i?e.d(i.c):t.hr}return 0},set:function(t){var n=this.f;if(null!=n){var i,r=function(){var t=e.c(n,i);return i=t.p1,t.ret}();if(null!=r){var o=n.grid;if(null!=o){var a=0!=t?e.t(t):0;r.c=a,o.groupDescriptions.d(i),o.groupDescriptions.o(i,r)}return}n.hr=t}},enumerable:!1,configurable:!0}),e.prototype.be=function(t){t?this.e=2:2==this.e&&(this.e=0)},e.prototype.bd=function(t){t?this.e=1:1==this.e&&(this.e=0)},e.prototype.bu=function(t,e){null!=t&&this.j&&(this.j=!1,t.groupDescriptions.p(n.runOn(this,this.br)),t.sortDescriptions.p(n.runOn(this,this.bz)),t.summaryDescriptions.p(n.runOn(this,this.b0)),t.actualColumnsChanged=n.delegateRemove(t.actualColumnsChanged,n.runOn(this,this.bp)),t.columnPinnedChanged=n.delegateRemove(t.columnPinnedChanged,n.runOn(this,this.bq))),null==e||this.j||(this.j=!0,e.groupDescriptions.m(n.runOn(this,this.br)),e.sortDescriptions.m(n.runOn(this,this.bz)),e.summaryDescriptions.m(n.runOn(this,this.b0)),e.actualColumnsChanged=n.delegateCombine(e.actualColumnsChanged,n.runOn(this,this.bp)),e.columnPinnedChanged=n.delegateCombine(e.columnPinnedChanged,n.runOn(this,this.bq)))},e.prototype.bv=function(){this.bg(),this.ba()},e.$t=n.markType(e,"DataGridColumnToolbarManager"),e.k=!1,e.z="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",e.x="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",e.at="M13.2,3.8l7.1,7.1l-2.8-0.1l-3.4,3.4l0.1,4.2l-3.5-3.5l-5.4,5.4l-1.4,0l0-1.4l5.4-5.4L5.7,9.8l4.2,0.1l3.4-3.4L13.2,3.8z",e.au="M10.8,3.8l-7.1,7.1l2.8-0.1l3.4,3.4l-0.1,4.2l3.5-3.5l5.4,5.4l1.4,0l0-1.4l-5.4-5.4l3.5-3.5l-4.2,0.1l-3.4-3.4L10.8,3.8z",e.ay="M3,3.4l19,17.1l-1.3,1.2L12.1,14l-4.9,4.9l-1.4-0.1l-0.1-1.4l4.8-4.8l-8.9-8L3,3.4z M14.9,2.3l7.5,7.5l-2.8-0.1L16.1,13 l0,0.3l-5.4-4.8l0.9,0L15,5.1L14.9,2.3z",e.az="M21,3.4L2,20.5l1.3,1.2l8.5-7.7l4.9,4.9l1.4-0.1l0.1-1.4l-4.8-4.8l8.9-8L21,3.4z M9.1,2.3L1.7,9.8l2.8-0.1L7.9,13l0,0.3 l5.4-4.8l-0.9,0L9,5.1L9.1,2.3z",e.w="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",e.y="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",e.ak="M12 14c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 14 12 14 z M12 8c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 8 12 8z M12 16 c1.1 0 2 0.9 2 2s -0.9 2 -2 2 s-2 -0.9 -2 -2 S10.9 16 12 16z",e.ap="M9,19v-2h11v2H9z M9,15v-2h11v2H9z M9,11V9h11v2H9z M7,7V5h13v2H7z M4,5h2v2H4V5z",e.ax="M16.8,18.3H9.6v-2h5.2l-2-2H9.6v-2h1.2L3.4,4.9l1.4-1.4l15.6,15.6L19,20.5L16.8,18.3z M20.6,14.3h-2.2l-2-2h4.2V14.3 L20.6,14.3z M20.6,10.3h-6.2l-2-2h8.2L20.6,10.3L20.6,10.3L20.6,10.3z M20.6,6.3H10.4l-2-2h12.2L20.6,6.3L20.6,6.3L20.6,6.3z",e.a1="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",e.a0="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z",e.ab="M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z",e}(n.Base),qi=function(t){function e(){var e=t.call(this)||this;return e.g5=n.Rect.empty,e.g0=null,e.gy=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"g6",{get:function(){return this.g5},set:function(t){var e=this.g5;this.g5=t,n.Rect.l_op_Inequality(e,this.g5)&&this.et("ClipRect",11,e,this.g5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g3",{get:function(){return this.g0},set:function(t){var e=this.g0;this.g0=t,e!=this.g0&&this.et("ErrorMessage",11,e,this.g0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gz",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,e!=this.gy&&this.et("EditTarget",11,e,this.gy)},enumerable:!1,configurable:!0}),e.prototype.n=function(t){return new Gn},e.prototype.d2=function(t,e,n){return"editorCell"},e.prototype.eq=function(t,e){},e.prototype.es=function(t,e){e.propertyName},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r);var o=e;o.ag=this.textStyle,o.gm=this.gz.el,o.gq=this.gz.ep,o.go=this.gz.en,o.gk=this.gz.ej,o.cf=1,o.lt=this.gz.lt,o.dy=this.gz.dy+1,o.d3=this.gz.d3+1,o.d1=this.gz.d1+1,o.dw=this.gz.dw+1},e.prototype.eo=function(e,i,r,o){t.prototype.eo.call(this,e,i,r,o);var a=e;a.hm=r,a.na=r,a.me=this.g6,a.mk=this.gz,a.nn=null!=this.gz?this.gz.it:null;var s=i.actualColumns._inner[e.l.a5];if(null!=s){var l=i.e7.getPendingEditID(o,s.lo);a.it=i.e7.getError(l),a.mm=i.cj.f(s),a.m9=s.kq,a.ni=s.lk,a.mg=s.gz,a.mi=i.actualDataSource.resolveSchemaPropertyType(s.lo),null!==n.typeCast(Fi.$,s)&&(a.nf=n.typeCast(Fi.$,s).oj,a.ms=n.typeCast(Fi.$,s).ob)}},e.$t=n.markType(e,"EditorDefinition",Oi.$),e}(Oi),Hi=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.n=function(t){return new qn},e.prototype.d2=function(t,e,n){return"editorRowCell"},e.prototype.eq=function(t,e){},e.prototype.es=function(t,e){e.propertyName},e.prototype.el=function(e,i,r,o){t.prototype.el.call(this,e,i,r,o);var a=e;a.lx=h.bl,null!=i.editRowBorder?a.l0=i.editRowBorder:a.l0=h.az,a.e2=n.truncate(i.editRowBorderWidth.left),a.e7=n.truncate(i.editRowBorderWidth.top),a.e5=n.truncate(i.editRowBorderWidth.right),a.e0=n.truncate(i.editRowBorderWidth.bottom)},e.$t=n.markType(e,"EditRowDefinition",Oi.$),e}(Oi),Wi=function(t){function e(){var e=t.call(this)||this;return e.gz=n.truncate(n.DeviceUtils.g(12)),e.g1=n.truncate(n.DeviceUtils.g(1)),e.g0=n.truncate(n.DeviceUtils.g(12)),e.gy=n.truncate(n.DeviceUtils.g(1)),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"g3",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("PaddingLeft",6,e,this.gz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g5",{get:function(){return this.g1},set:function(t){var e=this.g1;this.g1=t,this.g1!=e&&this.et("PaddingTop",6,e,this.g1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g4",{get:function(){return this.g0},set:function(t){var e=this.g0;this.g0=t,this.g0!=e&&this.et("PaddingRight",6,e,this.g0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g2",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,this.gy!=e&&this.et("PaddingBottom",6,e,this.gy)},enumerable:!1,configurable:!0}),e.prototype.n=function(t){return new Ln},e.prototype.d2=function(t,e,n){return"filterRowCell"},e.prototype.eq=function(t,e){},e.prototype.es=function(t,e){switch(e.propertyName){case"CellTextColor":this.fh();break;case"CellBackground":this.e5()}},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r),e.gm=this.g3,e.gq=this.g5,e.go=this.g4,e.gk=this.g2;var o=e,a=n.cf(e.l);o.mq=a.jm},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r);var o=e;if(null!=n.actualDataSource){var a=n.cf(e.l);o.mo=a.h8,o.mk=n.actualDataSource.resolveSchemaPropertyType(a.lo),o.mi=a.g1}},e.prototype.fh=function(){if(null==this.gx){if(null!=this.grid&&null!=this.grid.cellTextColor)return void(this.gd=this.grid.cellTextColor);this.gd=this.gr()}else this.gd=this.gx},e.prototype.e5=function(){null==this.ge?null!=this.grid&&null!=this.grid.cellBackground?this.f5=this.grid.cellBackground:this.f5=this.gk():this.f5=this.ge},e.$t=n.markType(e,"FilterRowDefinition",Oi.$),e}(Oi),Ui=function(t){function e(){var e=t.call(this)||this;return e.hl=null,e.hk=null,e.gz=3,e.gy=3,e.g3=n.truncate(n.DeviceUtils.g(12)),e.g5=n.truncate(n.DeviceUtils.g(0)),e.g4=n.truncate(n.DeviceUtils.g(12)),e.g2=n.truncate(n.DeviceUtils.g(0)),e.hm=e.hn(),e}return i.__extends(e,t),e.prototype.gr=function(){return h.bp},e.prototype.gk=function(){return h.bn},e.prototype.hn=function(){return h.br},e.prototype.aj=function(){return h.j},e.prototype.eq=function(t,e){this.e5(),this.fh(),this.fi(),this.hi(),this.hj()},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.headerBackground)return void(this.f5=this.grid.headerBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.fh=function(){if(null==this.gx){if(null!=this.grid&&null!=this.grid.headerTextColor)return void(this.gd=this.grid.headerTextColor);this.gd=this.gr()}else this.gd=this.gx},e.prototype.fi=function(){if(null==this.textStyle){if(null!=this.grid&&null!=this.grid.headerTextStyle)return void(this.ah=this.grid.headerTextStyle);this.ah=this.aj()}else this.ah=this.textStyle},e.prototype.hi=function(){if(null==this.ho){if(null!=this.grid&&null!=this.grid.headerSortIndicatorColor)return void(this.hm=this.grid.headerSortIndicatorColor);this.hm=this.hn()}else this.hm=this.ho},e.prototype.hj=function(){if(3==this.g1){if(null!=this.grid)return void(this.g0=this.grid.headerSortIndicatorStyle);this.g0=0}else this.g0=this.g1},e.prototype.es=function(t,e){switch(e.propertyName){case"HeaderBackground":this.e5();break;case"HeaderTextColor":this.fh();break;case"HeaderTextStyle":this.fi();break;case"HeaderSortIndicatorColor":this.hi();break;case"HeaderSortIndicatorStyle":this.hj()}},Object.defineProperty(e.prototype,"ho",{get:function(){return this.hl},set:function(t){var e=this.hl;this.hl=t,this.hl!=e&&this.et("SortIndicatorColor",10,e,this.hl)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hm",{get:function(){return this.hk},set:function(t){var e=this.hk;this.hk=t,this.hk!=e&&this.et("ActualSortIndicatorColor",2,e,this.hk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g1",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("SortIndicatorStyle",11,n.enumGetBox(st,e),n.enumGetBox(st,this.gz))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g0",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,this.gy!=e&&this.et("ActualSortIndicatorStyle",11,n.enumGetBox(st,e),n.enumGetBox(st,this.gy))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g7",{get:function(){return this.g3},set:function(t){var e=this.g3;this.g3=t,this.g3!=e&&this.et("PaddingLeft",6,e,this.g3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g9",{get:function(){return this.g5},set:function(t){var e=this.g5;this.g5=t,this.g5!=e&&this.et("PaddingTop",6,e,this.g5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g8",{get:function(){return this.g4},set:function(t){var e=this.g4;this.g4=t,this.g4!=e&&this.et("PaddingRight",6,e,this.g4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g6",{get:function(){return this.g2},set:function(t){var e=this.g2;this.g2=t,this.g2!=e&&this.et("PaddingBottom",6,e,this.g2)},enumerable:!1,configurable:!0}),e.prototype.av=function(e){if(t.prototype.av.call(this,e))return!0;if(n.stringStartsWith(e,"Actual"))return!1;switch(e){case"PaddingBottom":return this.et("PaddingBottom",0,this.g6,this.g6),!0;case"PaddingLeft":return this.et("PaddingLeft",0,this.g7,this.g7),!0;case"PaddingRight":return this.et("PaddingRight",0,this.g8,this.g8),!0;case"PaddingTop":return this.et("PaddingTop",0,this.g9,this.g9),!0;case"SortIndicatorColor":return this.et("ActualSortIndicatorColor",2,this.hm,this.hm),!0}return!1},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r),e.gm=this.g7,e.gq=this.g9,e.go=this.g8,e.gk=this.g6,e.ma=this.hm},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r);var o=n.cf(e.l);if(null!=o&&e.l.g&&o.jf())for(var a=o.ip,s=a.o,l=s.count,u=a.p,c=a.q,h=0;h<l;h++)u._inner[h]||e.k8(s._inner[h],c._inner[h])},e.$t=n.markType(e,"Header",Oi.$),e}(Oi),Ki=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.gy=1,e.gz=NaN,e}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"columnResizingSeparator"},e.prototype.n=function(t){return new Wn},e.prototype.gk=function(){return h.bb},Object.defineProperty(e.prototype,"g0",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,this.gy!=e&&this.et("Opacity",0,e,this.gy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g1",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("Opacity",10,e,this.gz)},enumerable:!1,configurable:!0}),e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.columnResizingSeparatorBackground)return void(this.f5=this.grid.columnResizingSeparatorBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.g5=function(){n.isNaN_(this.g1)?null==this.grid||n.isNaN_(this.grid.columnResizingSeparatorOpacity)?this.g0=1:this.g0=this.grid.columnResizingSeparatorOpacity:this.g0=this.g1},e.prototype.g4=function(t,e){switch(e.propertyName){case"ColumnResizingSeparatorBackground":this.e5();break;case"ColumnResizingSeparatorOpacity":this.g5()}},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r),e.co=this.g0},e.$t=n.markType(e,"ColumnResizingSeparator",Oi.$),e}(Oi),Xi=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"headerSeparator"},e.prototype.n=function(t){return new Wn},e.prototype.gk=function(){return h.bo},e.prototype.gy=function(){return n.truncate(n.DeviceUtils.g(1))},e.prototype.eq=function(t,e){this.e5(),this.gz()},e.prototype.es=function(t,e){switch(e.propertyName){case"HeaderSeparatorBackground":this.e5()}},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.headerSeparatorBackground)return void(this.f5=this.grid.headerSeparatorBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.gz=function(){if(null!=this.grid){this.f8=((e=new n.Brush).color=n.Color.u(0,0,0,0),e);var t=this.grid.nn(this.grid.headerSeparatorWidth);this.cc=t,this.cd=t}var e},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r)},e.$t=n.markType(e,"HeaderSeparator",Oi.$),e}(Oi),Zi=function(t){function e(){var e=t.call(this)||this;return e.n6=0,e.n4=0,e.n7=0,e.j=e.k(),e.e=e.f(),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n7",{get:function(){return this.n6},set:function(t){var e=this.n6;this.n6=t,this.n6!=e&&this.et("ImageStretchOption",4,n.enumGetBox(X,e),n.enumGetBox(X,this.n6))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n5",{get:function(){return this.n4},set:function(t){var e=this.n4;this.n4=t,this.n4!=e&&this.et("ImageResourceType",11,n.enumGetBox(Y,e),n.enumGetBox(Y,this.n4))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n3",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n8",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n9",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oa",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),e.prototype.k=function(){return 4!=this.l?this.l:3},e.prototype.g5=function(){return 3==this.e?1:t.prototype.g5.call(this)},e.prototype.hb=function(){return 3==this.j?1:t.prototype.hb.call(this)},e.prototype.f=function(){return 4!=this.g?this.g:3},e.prototype.n=function(t){return new Un},e.prototype.d2=function(t,e,n){return"image"},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r);var o=e;null!=i&&(o.j1=i.toString(),o.mi=this.n7,o.mg=this.n5,o.mn=this.ob(i))},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r)},e.prototype.ob=function(t){return null==t?"":"string"==typeof t?t:t.toString()},e.$t=n.markType(e,"ImageColumn",Ii.$),e}(Ii),Yi=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.e=function(){if(null!=e.a)return e.a;for(var t="",n=1.1.toLocaleString(),i=!1,r=0;r<n.length;r++)"1"==n.charAt(r)&&(i=!i),"1"!=n.charAt(r)&&i&&(t+=n.charAt(r));return e.a=t,e.a},e.b=function(t,i,r,o,a,s,l,u,c,h){if(null!=t)return t.i(h);var p=h,d=10,f=0;if(n.isNaN_(h))return"";var m=0;m=h>=0?h-Math.floor(h):Math.abs(h-Math.ceil(h));var g=0;g=h>=0?h-m:h+m;var y=Math.abs(g),b=m.toString();b=0==m?"":b.substr(2);var v=Math.round(y).toString();if((f=r)<0&&(f=0),(d=i)<0&&(d=10),f>d&&(d=f),b.length>d){var C=Math.round(m*Math.pow(10,d))/Math.pow(10,d);b=C.toString(),1==C?(h>=0?(g+=1,y+=1):(g-=1,y+=1),b="",v=Math.round(y).toString()):b=0==C?"":b.substr(2)}v.length;var x=Math.max(0,o-v.length),_=Math.max(0,r-b.length),w=!1;"1"==v.charAt(0)&&(w=!0);for(var S=0;S<x;S++){var P="0";a&&(P=w?"9":"1"),v=P+v}for(var O=0;O<_;O++)b+="0";if(0==d&&(b=""),a&&v.length>0){var I=parseInt(v).toLocaleString(),j="1";w&&(j="9");for(var k=!0,T="",R=0;R<I.length;R++)I.charAt(R)==j&&k?T+="0":(T+=I.charAt(R),n.isDigit(I.charAt(R))&&I.charAt(R)!=j&&(k=!1));v=T}g<0&&(v="-"+v);var D=v;return b.length>0&&(D+=e.e()+b),p>=0?(n.stringIsNullOrEmpty(s)||(D=s+D),n.stringIsNullOrEmpty(l)||(D+=l)):(n.stringIsNullOrEmpty(u)||(D=u+D),n.stringIsNullOrEmpty(c)||(D+=c)),D},e.c=function(t){return e.b(t.mh,t.mw,t.my,t.m0,t.mm,t.nt,t.nv,t.no,t.nq,t.mo)},e.d=function(t,n){return e.b(t.n5,t.od,t.oe,t.of,t.n8,t.o2,t.o4,t.oy,t.o0,n)},e.$t=n.markType(e,"NumericCellFormatter"),e.a=null,e}(n.Base),Qi=function(t){function e(){var e=t.call(this)||this;return e.ok=null,e.om=null,e.ol=null,e.on="",e.oa=10,e.ob=0,e.oc=-1,e.n7=!1,e.oj=null,e.n3=null,e.og=null,e.n5=null,e.e=e.f(),e}return i.__extends(e,t),e.prototype.f=function(){return 4!=this.g?this.g:2},Object.defineProperty(e.prototype,"oy",{get:function(){return this.ok},set:function(t){var e=this.ok;this.ok=t,this.ok!=e&&this.et("NegativePrefix",8,e,this.ok)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o2",{get:function(){return this.om},set:function(t){var e=this.om;this.om=t,this.om!=e&&this.et("PositivePrefix",8,e,this.om)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o0",{get:function(){return this.ol},set:function(t){var e=this.ol;this.ol=t,this.ol!=e&&this.et("NegativeSuffix",8,e,this.ol)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o4",{get:function(){return this.on},set:function(t){var e=this.on;this.on=t,this.on!=e&&this.et("PositiveSuffix",8,e,this.on)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"od",{get:function(){return this.oa},set:function(t){var e=this.oa;this.oa=t,this.oa!=e&&this.et("MaxFractionDigits",6,e,this.oa)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oe",{get:function(){return this.ob},set:function(t){var e=this.ob;this.ob=t,this.ob!=e&&this.et("MinFractionDigits",6,e,this.ob)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"of",{get:function(){return this.oc},set:function(t){var e=this.oc;this.oc=t,this.oc!=e&&this.et("MinIntegerDigits",6,e,this.oc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n8",{get:function(){return this.n7},set:function(t){var e=this.n7;this.n7=t,this.n7!=e&&this.et("ShowGroupingSeparator",5,e,this.n7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ot",{get:function(){return this.oj},set:function(t){var e=this.oj;this.oj=t,this.oj!=e&&this.et("FormatString",8,e,this.oj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n4",{get:function(){return this.n3},set:function(t){var e=this.n3;this.n3=t,this.n3!=e&&this.et("FormatSpecifiers",9,e,this.n3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oi",{get:function(){return this.og},set:function(t){var e=this.og;this.og=t,this.og!=e&&this.et("FormatOverride",9,e,this.og)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n6",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oh",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"oo",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"op",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),e.prototype.ev=function(e,i,r,o){switch(t.prototype.ev.call(this,e,i,r,o),e){case"FormatString":case"FormatSpecifiers":null!=this.ot?(this.n5=new n.BindingFormatter,this.n5.j=this.ot,this.n5.d=this.n4):this.n5=null}},e.prototype.n=function(t){return new Kn},e.prototype.d2=function(t,e,n){return 4==t.af?"numeric_mergedCell":"numeric"},e.prototype.dz=function(t,e,n){return this.oq(e)},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r);var o=e;o.mk=!1,o.mo=this.n9(i)},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r);var o=e;o.my=this.oe,o.mw=this.od,o.m0=this.of,o.nt=this.o2,o.no=this.oy,o.nv=this.o4,o.nq=this.o0,o.ni=this.ot,o.mg=this.n4,o.na=this.oi,o.mm=this.n8},e.prototype.n9=function(t){if(null==t)return NaN;if("number"==typeof t)return n.typeGetValue(t);if("number"==typeof t)return t;if("number"==typeof t)return t;if("number"==typeof t)return n.typeGetValue(t);var e,i;if("string"==typeof t&&(i=n.tryParseNumber(t,e),e=i.p1,i.ret))return e;return"number"==typeof t||"number"==typeof t||"number"==typeof t||"number"==typeof t||"number"==typeof t?n.typeGetValue(t):NaN},e.prototype.oq=function(t){var e;if(!1,e=this.n9(t),null!=this.oi){var n=e;return this.oi.format(n)}return Yi.d(this,e)},e.$t=n.markType(e,"NumericColumn",Ii.$),e}(Ii),Ji=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"pinnedAreaSeparator"},e.prototype.n=function(t){return(e=new Wn).bd=!1,e;var e},e.prototype.gk=function(){return h.a9},e.prototype.eq=function(t,e){this.e5()},e.prototype.e5=function(){null==this.ge?this.f5=this.gk():this.f5=this.ge},e.prototype.es=function(t,e){},e.$t=n.markType(e,"PinnedAreaSeparator",Oi.$),e}(Oi),tr=function(t){function e(){var e=t.call(this)||this;return e.o=null,e.e=null,e.i=n.toNullable(n.Boolean_$type,null),e.j=n.toNullable(E,null),e.m=null,e.n=null,e.k=n.toNullable(n.Boolean_$type,null),e.g=null,e.h=n.toNullable(n.Boolean_$type,null),e.l=n.toNullable(n.Boolean_$type,null),e.f=null,e.o=null,e.e=null,e.i=n.toNullable(n.Boolean_$type,null),e.j=n.toNullable(E,null),e.m=null,e.n=null,e.k=n.toNullable(n.Boolean_$type,null),e.g=null,e.h=n.toNullable(n.Boolean_$type,null),e.l=n.toNullable(n.Boolean_$type,null),e.f=null,e}return i.__extends(e,t),e.prototype.p=function(t){var e=t;if(e.g("ColumnName")){var i=e.item("ColumnName");this.o=i.value.toString()}if(e.g("Width")){var r=e.item("Width");this.e=new Ft,this.e.f=r.value;var o=e.item("MinWidth");this.e.e=o.value;var a=e.item("IsStarSized");this.e.c=a.value}else this.e=null;if(e.g("IsHidden")){var s=e.item("IsHidden");this.i=n.toNullable(n.Boolean_$type,s.value)}else this.i=n.toNullable(n.Boolean_$type,null);if(e.g("Pinned")){var l=e.item("Pinned");this.j=n.toNullable(E,parseInt(l.value.toString()))}else this.j=n.toNullable(E,null);if(e.g("ColToLeft")){var u=e.item("ColToLeft");this.m=u.value.toString()}if(e.g("ColToRight")){var c=e.item("ColToRight");this.n=c.value.toString()}if(e.g("Summed")){var h=e.item("Summed");if(this.k=n.toNullable(n.Boolean_$type,h.value),e.g("SummaryOperands")){var p=e.item("SummaryOperands"),d=p.items.length;d>0&&null==this.g&&(this.g=new n.List$1(n.DataSourceSummaryOperand_$type,0));for(var f=0;f<d;f++)switch(p.items[f].value.toString()){case"Average":this.g.add(3);break;case"Count":this.g.add(4);break;case"Max":this.g.add(1);break;case"Min":this.g.add(0);break;case"Sum":this.g.add(2)}}}if(e.g("Filtered")){var m=e.item("Filtered");if(this.h=n.toNullable(n.Boolean_$type,m.value),e.g("UsesOrOperator")){var g=e.item("UsesOrOperator");this.l=n.toNullable(n.Boolean_$type,g.value)}if(e.g("FilterConditions")){var y=e.item("FilterConditions"),b=y.items.length;if(b>0){null==this.f&&(this.f=new n.List$1(On.$,0));for(var v=0;v<b;v++){var C=y.items[v];if(C.g("ID")){var x=C.item("ID"),_=C.item("Index"),w=C.item("ValueType"),S=C.item("Value"),P=new jn;if(P.id=x.value.toString(),P.index=parseInt(_.value.toString()),null!=w)switch(w.value.toString()){case"String":P.value=S.value.toString();break;case"Number":P.value=parseFloat(S.value.toString());break;case"Date":P.value=n.dateParse(S.value.toString())}else P.value=null;this.f.add(P)}else{var O=C.item("IsCaseSensitive"),I=C.item("Operator"),j=C.item("ValueType"),k=C.item("Value"),T=new In;switch(T.isCaseSensitive=O.value,I.value.toString()){case"Equals":T.operator=0;break;case"NotEquals":T.operator=1;break;case"LessThan":T.operator=2;break;case"LessThanOrEqualTo":T.operator=3;break;case"GreaterThan":T.operator=4;break;case"GreaterThanOrEqualTo":T.operator=5;break;case"Top":T.operator=6;break;case"Bottom":T.operator=7;break;case"TopPercentile":T.operator=8;break;case"BottomPercentile":T.operator=9;break;case"True":T.operator=10;break;case"False":T.operator=11;break;case"Contains":T.operator=12;break;case"DoesNotContain":T.operator=13;break;case"StartsWith":T.operator=14;break;case"DoesNotStartWith":T.operator=15;break;case"EndsWith":T.operator=16;break;case"DoesNotEndWith":T.operator=17;break;case"Today":T.operator=18;break;case"Tomorrow":T.operator=19;break;case"Yesterday":T.operator=20;break;case"NextWeek":T.operator=21;break;case"ThisWeek":T.operator=22;break;case"LastWeek":T.operator=23;break;case"NextMonth":T.operator=24;break;case"ThisMonth":T.operator=25;break;case"LastMonth":T.operator=26;break;case"NextQuater":T.operator=27;break;case"ThisQuater":T.operator=28;break;case"LastQuater":T.operator=29;break;case"NextYear":T.operator=30;break;case"ThisYear":T.operator=31;break;case"LastYear":T.operator=32;break;case"YearToDate":T.operator=33;break;case"Q1":T.operator=34;break;case"Q2":T.operator=35;break;case"Q3":T.operator=36;break;case"Q4":T.operator=37;break;case"Month":T.operator=38;break;case"Year":T.operator=39;break;case"Empty":T.operator=40;break;case"NotEmpty":T.operator=41;break;case"IsNull":T.operator=42;break;case"IsNotNull":T.operator=43;break;case"Custom":T.operator=44}if(null!=j)switch(j.value.toString()){case"String":T.value=k.value.toString();break;case"Number":T.value=parseFloat(k.value.toString());break;case"Date":T.value=n.dateParse(k.value.toString())}else T.value=null;this.f.add(T)}}}}}},e.prototype.d=function(t){if(t.i("{"),t.h(),t.g(),t.i('"ColumnName": "'+this.o+'"'),null!=this.e&&(t.i(","),t.h(),t.i('"Width": '+this.e.f),t.i(","),t.h(),t.i('"MinWidth": '+this.e.e),t.i(","),t.h(),t.i('"IsStarSized": '+this.e.c)),n.nullableNotEquals(this.i,null)&&(t.i(","),t.h(),t.i(n.nullableConcat('"IsHidden": ',n.unwrapNullable(this.i)))),n.nullableNotEquals(this.j,null)&&(t.i(","),t.h(),t.i(n.nullableConcat('"Pinned": ',n.unwrapNullable(this.j)))),null!=this.m&&(t.i(","),t.h(),t.i('"ColToLeft": "'+this.m+'"')),null!=this.n&&(t.i(","),t.h(),t.i('"ColToRight": "'+this.n+'"')),n.nullableNotEquals(this.k,null)&&(t.i(","),t.h(),t.i(n.nullableConcat('"Summed" : ',n.unwrapNullable(this.k))),null!=this.g)){t.i(","),t.h(),t.i('"SummaryOperands" : '),t.i("[");for(var e=this.g.count,i=0;i<e;i++)0!=i&&t.i(","),t.i('"'+n.EnumUtil.getName(n.DataSourceSummaryOperand_$type,this.g._inner[i])+'"');t.i("]")}if(n.nullableNotEquals(this.h,null)&&(t.i(","),t.h(),t.i(n.nullableConcat('"Filtered": ',n.unwrapNullable(this.h))),n.nullableNotEquals(this.l,null)&&(t.i(","),t.h(),t.i(n.nullableConcat('"UsesOrOperator": ',n.unwrapNullable(this.l)))),null!=this.f)){t.i(","),t.h(),t.i('"FilterConditions": '),t.i("["),t.h(),t.g();for(var r=this.f.count,o=0;o<r;o++){if(0!=o&&(t.i(","),t.h()),t.i("{"),null!==n.typeCast(jn.$,this.f._inner[o])){var a=this.f._inner[o];t.i('"ID": "'+a.id+'", '),t.i('"Index": '+a.index+", "),null!=a.value&&t.i('"ValueType": "'+n.getInstanceType(a.value).typeName+'", '),t.i('"Value": "'+a.value+'"')}else{var s=this.f._inner[o];t.i('"IsCaseSensitive": '+s.isCaseSensitive+", "),t.i('"Operator": "'+n.enumGetBox(m,s.operator)+'", '),null!=s.value&&t.i('"ValueType": "'+n.getInstanceType(s.value).typeName+'", '),t.i('"Value": "'+s.value+'"')}t.i("}")}t.e(),t.h(),t.i("]")}t.h(),t.e(),t.i("}")},e.$t=n.markType(e,"SaveLayoutColumn",n.JsonDictionaryItem.$),e}(n.JsonDictionaryItem),er=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.n=function(t){return new Qn},e.prototype.d2=function(t,e,n){return"sectionFooter"},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r)},e.prototype.el=function(e,n,i,r){this.f5=h.bd,t.prototype.el.call(this,e,n,i,r)},e.$t=n.markType(e,"SectionFooter",Oi.$),e}(Oi),nr=function(t){function e(){var e=t.call(this)||this;return e.hq=null,e.hp=null,e.g6=n.truncate(n.DeviceUtils.g(12)),e.g8=n.truncate(n.DeviceUtils.g(1)),e.g7=n.truncate(n.DeviceUtils.g(1)),e.g5=n.truncate(n.DeviceUtils.g(1)),e.g2=!1,e.gz=4,e.sectionHeaderPropertyUpdating=null,e.g4=null,e.hr=e.gp(),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"hs",{get:function(){return this.hq},set:function(t){var e=this.hq;this.hq=t,this.hq!=e&&this.et("SelectedBackground",10,e,this.hq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hr",{get:function(){return this.hp},set:function(t){var e=this.hp;this.hp=t,this.hp!=e&&this.et("ActualSelectedBackground",2,e,this.hp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ha",{get:function(){return this.g6},set:function(t){var e=this.g6;this.g6=t,this.g6!=e&&this.et("PaddingLeft",6,e,this.g6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hc",{get:function(){return this.g8},set:function(t){var e=this.g8;this.g8=t,this.g8!=e&&this.et("PaddingTop",6,e,this.g8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hb",{get:function(){return this.g7},set:function(t){var e=this.g7;this.g7=t,this.g7!=e&&this.et("PaddingRight",6,e,this.g7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g9",{get:function(){return this.g5},set:function(t){var e=this.g5;this.g5=t,this.g5!=e&&this.et("PaddingBottom",6,e,this.g5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g3",{get:function(){return this.g2},set:function(t){var e=this.g2;this.g2=t,this.g2!=e&&this.et("IsCollapsable",5,e,this.g2)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g0",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("SummaryDisplayMode",4,n.enumGetBox(N,e),n.enumGetBox(N,this.gz))},enumerable:!1,configurable:!0}),e.prototype.d2=function(t,e,n){return"sectionHeader"},e.prototype.n=function(t){return new Zn},e.prototype.gk=function(){return h.be},e.prototype.eo=function(e,i,r,o){t.prototype.eo.call(this,e,i,r,o);var a=new n.List$1(et.$,0),s=new n.List$1(nt.$,0),l=n.stringEmpty(),u=n.stringEmpty(),c=n.typeCast(n.FastIterationDictionary$2.$.specialize(n.String_$type,n.Base.$),r);if(null!=c){i.actualDataSource.actualSchema;for(var h=0,p=0;p<c.o.count;p++){for(var d=c.o._inner[p],f=c.q._inner[p],m=null,g=0;g<i.groupDescriptions.j.count;g++)if(i.groupDescriptions.j.item(g).f==d){m=i.groupDescriptions.j.item(g);break}m.o||i.x7(m),h>0&&(l+=", ");for(var y=null,b=0;b<i.actualColumns.count;b++)if(i.actualColumns._inner[b].lo==d){y=i.actualColumns._inner[b];break}a.add(this.gy(null!=y&&null!=y.lv?y.lv:d,f,m,m.m)),l+=a._inner[h].b,h++}if(0==this.g0&&i.summaryDescriptions.j.count>0){var v=n.typeCast(n.DataSourceSpecialRow.$,o);if(null!=v&&null!=v.summaryResults)for(var C=0;C<v.summaryResults.length;C++)if(null!=v.summaryResults[C]){var x=v.summaryResults[C].summaryIndex,_=i.summaryDescriptions.j.item(x);C>0&&(u+=", "),s.add(this.y(_,v.summaryResults[C])),u+=s._inner[C].c}}}var w=n.typeCast(Zn.$,e);null!=w&&(w.mh=a.toArray(),w.mi=s.toArray(),w.mv=l,w.mt=u,w.mk=this.g0,i.f5.p(w)?w.cq=1:w.cq=0,i.ad.m(w)?w.cf=1:w.cf=0,w.a2=this.g3,w.ba=i.actualDataSource.getIsRowExpandedAtIndex(e.l.x),w.f0=i.e7.getRowIndent(e.l.x))},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r),e.l9=this.hr,e.gm=this.ha,e.gq=this.hc,e.go=this.hb,e.gk=this.g9},e.prototype.eq=function(t,e){this.ho(),this.e5(),this.fh(),this.fi(),this.hn(),null!=t&&(t.actualColumnsChanged=n.delegateRemove(t.actualColumnsChanged,n.runOn(this,this.hm))),null!=e&&(e.actualColumnsChanged=n.delegateCombine(e.actualColumnsChanged,n.runOn(this,this.hm)))},e.prototype.hm=function(t,e){this.g4=null,this.hl()},e.prototype.hl=function(){if(null==this.g4){this.g4=new n.Dictionary$2(n.String_$type,Ni.$,0);for(var t=0;t<this.grid.columns.count;t++){var e=n.typeCast(Ni.$,this.grid.columns._inner[t]);null==e||this.g4.containsKey(e.lo)||this.g4.addItem(e.lo,e)}}},e.prototype.es=function(t,e){switch(e.propertyName){case"SectionHeaderSelectedBackground":this.ho();break;case"SectionHeaderBackground":this.e5();break;case"SectionHeaderTextColor":this.fh();break;case"SectionHeaderTextStyle":this.fi();break;case"IsGroupCollapsable":this.hn()}},e.prototype.ho=function(){null==this.hs?null!=this.grid&&null!=this.grid.sectionHeaderSelectedBackground?this.hr=this.grid.sectionHeaderSelectedBackground:this.hr=this.gp():this.hr=this.hs},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.sectionHeaderBackground)return void(this.f5=this.grid.sectionHeaderBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.fh=function(){if(null==this.gx){if(null!=this.grid&&null!=this.grid.sectionHeaderTextColor)return void(this.gd=this.grid.sectionHeaderTextColor);this.gd=this.gr()}else this.gd=this.gx},e.prototype.fi=function(){if(null==this.textStyle){if(null!=this.grid&&null!=this.grid.sectionHeaderTextStyle)return void(this.ah=this.grid.sectionHeaderTextStyle);this.ah=this.aj()}else this.ah=this.textStyle},e.prototype.hn=function(){null!=this.grid&&(this.g3=this.grid.isGroupCollapsable)},e.prototype.ev=function(e,n,i,r){switch(t.prototype.ev.call(this,e,n,i,r),e){case"SelectedBackground":this.ho()}null!=this.sectionHeaderPropertyUpdating&&this.sectionHeaderPropertyUpdating(this,e,n,i,r)},e.prototype.gy=function(t,e,i,r){var o,a=null!=e?e.toString():n.stringEmpty(),s=t+": "+a,l=n.stringEmpty();if(null!=i){if(null==i.v?l=t+": ":i.v!=n.stringEmpty()&&(l=i.v+": "),null!=e){switch(r){case 10:if(null!=i.q){var u=i.q,c=n.typeGetValue(e);a=u.format(c)}else a=n.typeGetValue(e).toString();break;case 8:if(null!=i.q){u=i.q,c=e;a=u.format(c)}else{a=e.toLocaleDateString()+" "+e.toLocaleTimeString()}break;case 5:if(null!=i.q){u=i.q,c=e;a=u.format(c)}else a=e.toString();break;case 1:if(null!=i.q){u=i.q,c=n.typeGetValue(e);a=u.format(c)}else a=n.typeGetValue(e).toString();break;case 3:if(null!=i.q){u=i.q,c=n.typeGetValue(e);a=u.format(c)}else a=n.typeGetValue(e).toString();break;case 4:if(null!=i.q){u=i.q,c=n.typeGetValue(e);a=u.format(c)}else a=n.typeGetValue(e).toString();break;case 7:if(null!=i.q){u=i.q,c=e;a=u.format(c)}else a=e.toString();break;case 0:case 6:case 2:case 11:a=e.toString()}if(this.hl(),this.g4.containsKey(i.f)){var h=this.g4.item(i.f).n9(e);null!=h&&(a=h)}}null!=i.l&&(a=i.l.i(e)),s=l+a,null!=i.k&&(s=i.k.i(e)),s=i.w(e,a,s)}return(o=new et).c=t,o.a=e,o.b=s,o},e.$t=n.markType(e,"SectionHeader",Oi.$),e}(Oi),ir=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"rowSeparator"},e.prototype.eq=function(t,e){this.e5()},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.rowSeparatorBackground)return void(this.f5=this.grid.rowSeparatorBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.fe=function(){if(null==this.gv){if(null!=this.grid&&null!=this.grid.rowSeparatorPinnedRowBackground)return void(this.gb=this.grid.rowSeparatorPinnedRowBackground);this.gb=this.go()}else this.gb=this.gv},e.prototype.fg=function(){if(null==this.gw){if(null!=this.grid&&null!=this.grid.rowSeparatorStickyRowBackground)return void(this.gc=this.grid.rowSeparatorStickyRowBackground);this.gc=this.gq()}else this.gc=this.gw},e.prototype.fd=function(){if(null==this.gu){if(null!=this.grid&&null!=this.grid.rowSeparatorLastStickyRowBackground)return void(this.ga=this.grid.rowSeparatorLastStickyRowBackground);this.ga=this.gn()}else this.ga=this.gu},e.prototype.es=function(t,e){switch(e.propertyName){case"RowSeparatorBackground":this.e5();break;case"RowSeparatorLastStickyRowBackground":this.fd();break;case"RowSeparatorPinnedRowBackground":this.fe();break;case"RowSeparatorStickyRowBackground":this.fg()}},e.prototype.n=function(t){return new Xn},e.prototype.gk=function(){return h.bq},e.prototype.gq=function(){return h.bi},e.prototype.gn=function(){return h.a8},e.prototype.go=function(){return this.gk()},e.prototype.bi=function(){return 1},e.$t=n.markType(e,"RowSeparator",Oi.$),e}(Oi),rr=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"headerRowSeparator"},e.prototype.n=function(t){return new Xn},e.prototype.gk=function(){return h.a6},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.headerRowSeparatorBackground)return void(this.f5=this.grid.headerRowSeparatorBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.eq=function(t,e){this.e5()},e.prototype.es=function(t,e){switch(e.propertyName){case"HeaderRowSeparatorBackground":this.e5()}},e.$t=n.markType(e,"HeaderRowSeparator",Oi.$),e}(Oi),or=function(t){function e(){var e=t.call(this)||this;return e.hq=null,e.ho=null,e.hr=null,e.hp=null,e.gz=null,e.gy=null,e.g4=n.truncate(n.DeviceUtils.g(12)),e.g6=n.truncate(n.DeviceUtils.g(1)),e.g5=n.truncate(n.DeviceUtils.g(12)),e.g3=n.truncate(n.DeviceUtils.g(1)),e.hs=e.gp(),e.g0=e.g1(),e.ht=e.hu(),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"hv",{get:function(){return this.hq},set:function(t){var e=this.hq;this.hq=t,this.hq!=e&&this.et("SelectedBackground",10,e,this.hq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hs",{get:function(){return this.ho},set:function(t){var e=this.ho;this.ho=t,this.ho!=e&&this.et("ActualSelectedBackground",2,e,this.ho)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hw",{get:function(){return this.hr},set:function(t){var e=this.hr;this.hr=t,this.hr!=e&&this.et("SummaryLabelTextColor",10,e,this.hr)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ht",{get:function(){return this.hp},set:function(t){var e=this.hp;this.hp=t,this.hp!=e&&this.et("ActualSummaryLabelTextColor",2,e,this.hp)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryNameTextStyle",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("SummaryNameFontInfo",10,e,this.gz)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g0",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,this.gy!=e&&this.et("ActualSummaryLabelFontInfo",3,e,this.gy)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g8",{get:function(){return this.g4},set:function(t){var e=this.g4;this.g4=t,this.g4!=e&&this.et("PaddingLeft",6,e,this.g4)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ha",{get:function(){return this.g6},set:function(t){var e=this.g6;this.g6=t,this.g6!=e&&this.et("PaddingTop",6,e,this.g6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g9",{get:function(){return this.g5},set:function(t){var e=this.g5;this.g5=t,this.g5!=e&&this.et("PaddingRight",6,e,this.g5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g7",{get:function(){return this.g3},set:function(t){var e=this.g3;this.g3=t,this.g3!=e&&this.et("PaddingBottom",6,e,this.g3)},enumerable:!1,configurable:!0}),e.prototype.d2=function(t,e,n){return"summary"},e.prototype.n=function(t){return new Hn},e.prototype.eo=function(e,i,r,o){t.prototype.eo.call(this,e,i,r,o);var a=n.typeCast(n.DataSourceSpecialRow.$,o),s=n.stringEmpty(),l=n.stringEmpty(),u=i.cf(e.l);if(null!=u){var c=a.getSummaryResults(u.lo);if(c.length>0&&i.summaryDescriptions.j.count>0){var h=i.summaryDescriptions.j.item(c[0].summaryIndex);if(null!=h.l){var p=this.y(h,c[0]);s=null!=h.ae?h.ae:h.l.displayName,l=p.d}}}var d=n.typeCast(Hn.$,e);null!=d&&(d.mn=s,d.mp=l,d.f0=i.n0(d.l),i.f5.p(d)?d.cq=1:d.cq=0,i.ad.m(d)?d.cf=1:d.cf=0)},e.prototype.el=function(e,i,r,o){t.prototype.el.call(this,e,i,r,o);var a=n.typeCast(Hn.$,e);a.l9=this.hs,a.lx=this.f5,a.mu=this.ht,a.mg=this.g0,a.gm=this.g8,a.gq=this.ha,a.go=this.g9,a.gk=this.g7},e.prototype.eq=function(t,e){this.hl(),this.hm(),this.e5(),this.fh(),this.fi(),this.hn()},e.prototype.hu=function(){return h.bj},e.prototype.gr=function(){return h.bk},e.prototype.es=function(t,e){switch(e.propertyName){case"SummaryRootSelectedBackground":case"SummarySectionSelectedBackground":this.hl();break;case"SummaryRootBackground":case"SummarySectionBackground":this.e5();break;case"SummaryRootValueTextColor":case"SummarySectionValueTextColor":this.fh();break;case"SummaryRootLabelTextColor":case"SummarySectionLabelTextColor":this.hm();break;case"SummaryRootLabelTextStyle":case"SummarySectionLabelTextStyle":this.hn();break;case"SummaryRootValueTextStyle":case"SummarySectionValueTextStyle":this.fi()}},e.prototype.hl=function(){null==this.hv?this.hs=this.gp():this.hs=this.hv},e.prototype.hm=function(){},e.prototype.fi=function(){},e.prototype.hn=function(){},e.prototype.ev=function(e,n,i,r){switch(t.prototype.ev.call(this,e,n,i,r),e){case"SelectedBackground":this.hl();break;case"SummaryLabelTextColor":this.hm();break;case"SummaryNameFontInfo":this.hn()}},e.prototype.aj=function(){return h.l},e.prototype.g1=function(){return h.k},e.$t=n.markType(e,"SummaryRow",Oi.$),e}(Oi),ar=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"summaryRowRoot"},e.prototype.gk=function(){return h.bc},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.summaryRootBackground)return void(this.f5=this.grid.summaryRootBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.hl=function(){null==this.hv?null!=this.grid&&null!=this.grid.summaryRootSelectedBackground?this.hs=this.grid.summaryRootSelectedBackground:this.hs=this.gp():this.hs=this.hv},e.prototype.hm=function(){null==this.hw?null!=this.grid&&null!=this.grid.summaryRootLabelTextColor?this.ht=this.grid.summaryRootLabelTextColor:this.ht=this.hu():this.ht=this.hw},e.prototype.fh=function(){null==this.gx?null!=this.grid&&null!=this.grid.summaryRootValueTextColor?this.gd=this.grid.summaryRootValueTextColor:this.gd=this.gr():this.gd=this.gx},e.prototype.hn=function(){null==this.summaryNameTextStyle?null!=this.grid&&null!=this.grid.summaryRootLabelTextStyle?this.g0=this.grid.summaryRootLabelTextStyle:this.g0=this.g1():this.g0=this.summaryNameTextStyle},e.$t=n.markType(e,"SummaryRowRoot",or.$),e}(or),sr=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"summaryRowSection"},e.prototype.gk=function(){return h.bf},e.prototype.e5=function(){if(null==this.ge){if(null!=this.grid&&null!=this.grid.summarySectionBackground)return void(this.f5=this.grid.summarySectionBackground);this.f5=this.gk()}else this.f5=this.ge},e.prototype.hl=function(){null==this.hv?null!=this.grid&&null!=this.grid.summarySectionSelectedBackground?this.hs=this.grid.summarySectionSelectedBackground:this.hs=this.gp():this.hs=this.hv},e.prototype.hm=function(){null==this.hw?null!=this.grid&&null!=this.grid.summarySectionLabelTextColor?this.ht=this.grid.summarySectionLabelTextColor:this.ht=this.hu():this.ht=this.hw},e.prototype.fh=function(){null==this.gx?null!=this.grid&&null!=this.grid.summarySectionValueTextColor?this.gd=this.grid.summarySectionValueTextColor:this.gd=this.gr():this.gd=this.gx},e.prototype.hn=function(){null==this.summaryNameTextStyle?null!=this.grid&&null!=this.grid.summarySectionLabelTextStyle?this.g0=this.grid.summarySectionLabelTextStyle:this.g0=this.g1():this.g0=this.summaryNameTextStyle},e.$t=n.markType(e,"SummaryRowSection",or.$),e}(or),lr=function(t){function e(){var e=t.call(this)||this;return e.cellUpdating=null,e.jl=!1,e}return i.__extends(e,t),e.prototype.n=function(t){return new Yn},e.prototype.d2=function(t,e,n){var i=4==t.af?"template_mergedCell-":"template-";return i+=this.ko},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r),e.mh=i},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r)},e.prototype.n4=function(t,e){var n;null!=this.cellUpdating&&this.cellUpdating(this,((n=new ur).cellInfo=t,n.content=e,n))},e.prototype.ev=function(e,n,i,r){switch(e){case"IsEditable":this.jl=!1}t.prototype.ev.call(this,e,n,i,r)},e.$t=n.markType(e,"TemplateColumn",Ii.$),e}(Ii),ur=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._content=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"content",{get:function(){return this._content},set:function(t){this._content=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"TemplateCellUpdatingEventArgs",n.EventArgs.$),e}(n.EventArgs),cr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.n5=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n9",{get:function(){return this.n5},set:function(t){var e=this.n5;this.n5=t,this.n5!=e&&this.et("FormatString",8,e,this.n5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n3",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n4",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n6",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n7",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),e.prototype.n=function(t){return new Qn},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r),e.mh=this.dz(n,i,r)},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r)},e.prototype.dz=function(t,e,n){return null!=e?this.n8(e):null},e.prototype.n8=function(t){return"string"==typeof t?t:null},e.prototype.d2=function(t,e,n){return 4==t.af?"text_mergedCell":"text"},e.$t=n.markType(e,"TextColumn",Ii.$),e}(Ii),hr=function(t){function e(){var e=t.call(this)||this;return e.e=0,e.j=1,e}return i.__extends(e,t),e.prototype.n=function(t){return new Jn},e.prototype.d2=function(t,e,n){return"textHeader"},e.prototype.el=function(e,n,i,r){t.prototype.el.call(this,e,n,i,r);var o=e,a=n.cf(e.l);o.mk=a.hi,o.m2=a.nr,o.mm=a.hm},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r);var o=e,a=n.cf(e.l);o.mh=a.k3,o.j1=o.mh,o.n=a.hr,o.mq=a.ja,o.mo=this.g0},e.$t=n.markType(e,"TextHeader",Ui.$),e}(Ui),pr=function(t){function e(){var e=t.call(this)||this;return e.s=0,e.u=0,e.br="",e.af=!1,e.ac=!1,e.onFinished=null,e.onCanceled=null,e.a3=0,e.a1=0,e.h=null,e.a7=-1,e.a8=-1,e.a2=300,e.j=null,e.a4=0,e.c=null,e.a=null,e.a6=-1,e.ad=!1,e.ab=!1,e.bk=-1,e.bm=null,e.bn=null,e.w=null,e.p=null,e.aa=!1,e.n=null,e.ae=!1,e.ay=null,e.az=1,e.a5=-1,e.b=null,e.ax=new n.Dictionary$2(S.$,n.Number_$type,0),e}return i.__extends(e,t),e.prototype.bu=function(){null!=this.onFinished&&this.onFinished(this)},e.prototype.bt=function(t){null!=this.onCanceled&&this.onCanceled(this,t)},Object.defineProperty(e.prototype,"t",{get:function(){return this.s},set:function(t){this.s=t},enumerable:!1,configurable:!0}),e.prototype.am=function(t){return null!=t&&(t.s==this.s&&(!this.af||t.u==this.u&&t.br==this.br))},Object.defineProperty(e.prototype,"v",{get:function(){return this.u},set:function(t){this.u=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bs",{get:function(){return this.br},set:function(t){this.br=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"as",{get:function(){return this.af},set:function(t){this.af=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ap",{get:function(){return this.ac},set:function(t){this.ac=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ba",{get:function(){return this.a3},set:function(t){this.a3=t,this.a1=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bi",{get:function(){return this.a7},set:function(t){this.a7=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bj",{get:function(){return this.a8},set:function(t){this.a8=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a9",{get:function(){return this.a2},set:function(t){this.a2=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"k",{get:function(){return this.j},set:function(t){this.j=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bg",{get:function(){return this.a4},set:function(t){this.a4=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bh",{get:function(){return this.a6},set:function(t){this.a6=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aq",{get:function(){return this.ad},set:function(t){this.ad=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ao",{get:function(){return this.ab},set:function(t){this.ab=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bl",{get:function(){return this.bk},set:function(t){this.bk=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bo",{get:function(){return this.bm},set:function(t){this.bm=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bq",{get:function(){return this.bn},set:function(t){this.bn=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"x",{get:function(){return this.w},set:function(t){this.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"q",{get:function(){return this.p},set:function(t){this.p=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"al",{get:function(){return this.aa},set:function(t){this.aa=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"o",{get:function(){return this.n},set:function(t){this.n=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ar",{get:function(){return this.ae},set:function(t){this.ae=t},enumerable:!1,configurable:!0}),e.prototype.bx=function(t){this.ba=t.l,this.bg=t.m,this.bi=t.n,this.bj=t.o,this.aq=t.e,this.q=this.r(t.c)},e.prototype.r=function(t){switch(t){case 0:return null;case 1:return n.EasingFunctions.cubicEase;case 3:return n.EasingFunctions.circleEase;case 2:return n.EasingFunctions.exponentialEase}return null},e.prototype.au=function(t,e,n,i){if(this.ar&&this.an(i))return!1;var r=this.a0(i),o=1;this.a3>0&&(o=r/this.a3);var a=!1;if(null==this.w)return!0;o>=1&&(o=1,a=!0),null!=this.p&&(o=this.p(o));var s=this.bp(this.bm,e,t,t.o);return this.w(o,s,this.bn,t,e),a},e.prototype.av=function(t,e,n,i){if(this.ar&&this.an(i))return!1;var r=this.a0(i),o=1;this.a3>0&&(o=r/this.a3);var a=!1;if(null==this.w)return!0;o>=1&&(o=1,a=!0),null!=this.p&&(o=this.p(o));var s=this.bp(this.bm,e,t,t);return this.w(o,s,this.bn,t,e),a},e.prototype.a0=function(t){var e=t-this.bk;return this.a4>0&&(e<this.a4?e=0:e-=this.a4),e},e.prototype.an=function(t){var e=t-this.bk;return this.a4>0&&e<this.a4},e.prototype.bz=function(t,e,i,r){this.bb(e,t);if(null!=this.f){var o=this.bb(e,this.f)/this.a6;if(o>5&&(o=5),o!=this.az){var a=o/this.az;this.az=o;var s=n.truncate(Math.round(this.a1*a));if(s<=0){1}this.a1=s}}},e.prototype.at=function(t,e,n,i){var r=!1;if(this.bz(t.l,e,n,i),this.ar&&this.an(i))return!1;var o=this.a0(i),a=this.bf(e,n,t.l,i),s=this.bc(e,n,t.l,i);if(s<300){1}var l=o-a;l<0&&(l=0);var u=1;s>0&&(u=l/s),u>=1&&(u=1,r=!0),null!=this.p&&(u=this.p(u));var c=this.bp(this.bm,e,t,t.l);return this.w(u,c,this.bn,t,e),r},e.prototype.by=function(t,e,i){null==this.ay&&(this.ay=new n.Dictionary$2(n.Base.$,n.Base.$,0)),this.ay.item(i,t)},e.prototype.bp=function(t,e,i,r){if(this.al){if(null==this.ay&&(this.ay=new n.Dictionary$2(n.Base.$,n.Base.$,0)),this.ay.containsKey(r))return this.ay.item(r);var o=this.o(i,e);return this.ay.item(r,o),o}return this.bm},e.prototype.aw=function(t,e,n,i){if(this.ar&&this.an(i))return!1;var r=this.a0(i),o=1;this.a3>0&&(o=r/this.a3);var a=!1;return null==this.w||(o>=1&&(o=1,a=!0),null!=this.p&&(o=this.p(o)),this.w(o,this.bm,this.bn,t,e),a)},e.prototype.ag=function(t,e){return!1},e.prototype.ah=function(t,e){return!1},e.prototype.ai=function(t,e){return!1},e.prototype.aj=function(t,e){return!1},e.prototype.bv=function(t){},e.prototype.bw=function(t){},Object.defineProperty(e.prototype,"f",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.bf=function(t,e,i,r){if(null==i)return 0;var o=this.bb(t,i),a=this.bd(t,e,i,r),s=this.a3;this.ad&&(s=n.truncate(a/this.a6*s));var l=this.a7;-1==l&&(l=n.truncate(s/a),s-n.truncate(a*l)<this.a2&&(l=n.truncate((s-this.a2)/a)),l<0&&(l=0));var u=l*o;null!=this.h&&(u=this.h(this.c,this.a6,i));var c=this.a1;return u<-1*c&&(u=-1*c),u>c&&(u=c-this.a2),this.ad&&this.a0(r)>u&&null!=i&&!this.ax.containsKey(i)&&this.ax.addItem(i,a),u},e.prototype.bd=function(t,e,n,i){return null!=this.f&&this.ad?this.ax.containsKey(n)?this.ax.item(n):this.bb(t,this.f):this.a6},e.prototype.bb=function(t,e){if(null==e)return 0;var n=this.be(t,e);-1==this.a6&&(this.a6=this.be(t,this.a)+1),this.ab&&(n=this.a6-1-n);var i=n;return i>this.a6&&i>this.a5&&(this.a5=i,this.b=e),i},e.prototype.be=function(t,e){return 0},e.prototype.bc=function(t,e,i,r){var o=this.a1;if(null!=this.j)-1==this.a6&&(this.a6=this.be(t,this.a)+1),o=this.j(this.c,this.a6,i);else if(-1==this.a8)if(this.ad){var a=this.bd(t,e,i,r);o=this.a3,o=n.truncate(a/this.a6*o),o-=this.bf(t,e,i,r)}else o=this.ab?this.a3-this.bf(t,e,this.d(t),r):this.a3-this.bf(t,e,this.a,r);else o=this.a8;return o},e.prototype.d=function(t){return this.c},e.prototype.y=function(t,e){return e.y==t.y&&e.x<=t.x&&((t=t.ab()).x+=1),t},e.prototype.z=function(t,e){return e.y==t.y&&e.x<t.x&&((t=t.ab()).x-=1),t},e.prototype.ak=function(t,e,n){return this.a0(n)>=this.a1},e.$t=n.markType(e,"GridEffect"),e}(n.Base),dr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=0,e}return i.__extends(e,t),e.prototype.ah=function(t,e){return this.b0==t.o},e.$t=n.markType(e,"ColumnEffect",pr.$),e}(pr),fr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=0,e}return i.__extends(e,t),e.prototype.aj=function(t,e){return t.o==this.b0},e.$t=n.markType(e,"SpacerEffect",pr.$),e}(pr),mr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b2=0,e.b1=0,e.b0=0,e}return i.__extends(e,t),e.prototype.ag=function(t,e){if(-300==this.b2&&t.ay)return!0;if(-400==this.b2&&-400==t.a5)return!0;if(this.b1>=0){if(this.b1==t.a5&&this.b0==t.b)return!0}else{var n=e.h(this.b2);if(null==n)return!1;if(t.a5==n.m&&n.c==t.b)return!0}return!1},e.prototype.d=function(t){if(t.c3>0){var e=this.g;return new S(0,e.b,e.a5,-100,-100)}if(t.c2>0){var n=this.g;return new S(0,n.b,n.a5,-100,-105)}return this.g},e.prototype.be=function(t,e){var n=this.g,i=this.e,r=e;if(null==r)return 0;if(r.g)return 0;if(r.am)return 0;var o=0;if(t.c3>0&&o++,t.c2>0&&o++,null==n)return 0;if(r.a1&&r.i)return null==i?0:i.x-n.x+o-r.o;if(r.y==n.y)return r.x-n.x+o;var a=o,s=n.y;if(r.y>n.y)for(;s<=r.y;)s==n.y?(a+=t.ce._inner[s].m-1-n.x,t.ce._inner[s].d>0&&a++):s==r.y?(t.ce._inner[s].g>0&&a++,a+=r.x+1):(t.ce._inner[s].g>0&&a++,a+=t.ce._inner[s].m,t.ce._inner[s].d>0&&a++),s++;else if(r.y<n.y)for(;s>=r.y;)s==n.y?(a-=n.x,t.ce._inner[s].d>0&&a++):s==r.y?(t.ce._inner[s].d>0&&a--,a-=t.ce._inner[s].m-r.x):(t.ce._inner[s].g>0&&a--,a-=t.ce._inner[s].m,t.ce._inner[s].d>0&&a--),s--;return a},e.$t=n.markType(e,"ColumnCellsEffect",pr.$),e}(pr),gr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b4=0,e.b3=0,e.b1=0,e.b0=null,e.b2=!1,e}return i.__extends(e,t),e.prototype.ag=function(t,e){if(this.b0.x==t.x){if(-400==this.b4&&-400==t.a5)return!0;if(this.b3>=0){if(this.b3==t.a5&&this.b1==t.b)return!0}else{var n=e.h(this.b4);if(null==n)return!1;if(t.a5==n.m&&n.c==t.b)return!0}}return!1},e.prototype.bv=function(t){this.b0=this.y(this.b0,t)},e.prototype.bw=function(t){this.b0=this.z(this.b0,t)},e.$t=n.markType(e,"CellEffect",pr.$),e}(pr),yr=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.ag=function(t,e){return this.b0.equals(t)},e.prototype.bv=function(t){this.b0=this.y(this.b0,t)},e.prototype.bw=function(t){this.b0=this.z(this.b0,t)},e.$t=n.markType(e,"CellPositionEffect",gr.$),e}(gr),br=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=null,e}return i.__extends(e,t),e.prototype.ai=function(t,e){return!!this.b0.equals(t)},e.prototype.bv=function(t){this.b0=this.y(this.b0,t)},e.prototype.bw=function(t){this.b0=this.z(this.b0,t)},e.$t=n.markType(e,"RowEffect",pr.$),e}(pr),vr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=null,e}return i.__extends(e,t),e.prototype.ag=function(t,e){return this.b0.y==t.y&&this.b0.x==t.x&&this.b0.b==t.b},e.prototype.bv=function(t){this.b0=this.y(this.b0,t)},e.prototype.bw=function(t){this.b0=this.z(this.b0,t)},e.prototype.be=function(t,e){if(null==this.g||e.a0)return 0;if(e.ay)return this.be(t,this.e);if(e.a5>t.b9.count-1)return 0;var n=t.b9._inner[this.g.a5].n,i=t.b9._inner[e.a5].n;return 0==e.d?i=t.b9._inner[e.a5].n-t.c9:2==e.d&&(i=t.b9._inner[e.a5].n-(t.c9+t.dc)),i-n},e.$t=n.markType(e,"RowCellsEffect",pr.$),e}(pr),Cr=function(t){function e(e,i){var r=t.call(this)||this;return r.b=null,r.k=new n.List$1(dr.$,0),r.j=new n.List$1(mr.$,0),r.m=new n.List$1(br.$,0),r.l=new n.List$1(vr.$,0),r.i=new n.List$1(gr.$,0),r.n=new n.List$1(fr.$,0),r.q=-30,r.o=-1,r.a=null,r.b=e,r.a=i,r}return i.__extends(e,t),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.ae=function(t){for(var e=0;e<this.l.count;e++)this.l._inner[e].bv(t);for(var n=0;n<this.m.count;n++)this.m._inner[n].bv(t);for(var i=0;i<this.i.count;i++)this.i._inner[i].bv(t)},e.prototype.af=function(t){for(var e=this.l.count-1;e>=0;e--)t.equals(this.l._inner[e].b0)?this.aj(this.l._inner[e].b0,!1,this.l._inner[e]):this.l._inner[e].bw(t);for(var n=this.m.count-1;n>=0;n--)t.equals(this.m._inner[n].b0)?this.ak(this.m._inner[n].b0,!1,this.m._inner[n]):this.m._inner[n].bw(t);for(var i=this.i.count-1;i>=0;i--)t.equals(this.i._inner[i].b0)?this.ag(this.i._inner[i].b0,!1,this.i._inner[i]):this.i._inner[i].bw(t)},e.prototype.ad=function(){var t=this,e=this.k.count>0;if(this.a.k1=!0,this.an(!1),e){var i=this.a.model.absoluteWidth;this.a.gb.q(this.a,this.a.model,n.truncate(this.a.mg)),this.d(),i!=this.a.model.absoluteWidth&&this.a.externalGrid.onContentSizeChanged()}this.a.k1=!1,null!=this.a.renderingEngine&&(this.a.renderingEngine.invalidateVisibility((function(){return t.a.gj.t(t.a)})),this.a.renderingEngine.refresh(this.a.model,!0))},e.prototype.d=function(){var t=this.k.count>0,e=this.p(),n=this.a.model,i=this.a.d1;return this.f(e,n,i),t},e.prototype.ac=function(){var t=this.p(),e=this.a.model,n=this.a.d1;this.g(t,e,n)},e.prototype.ab=function(){var t=this.p(),e=this.a.model,n=this.a.d1;this.e(t,e,n)},e.prototype.an=function(t){var e=this.p();if(e-this.q<15&&!t)this.b.requestFrame(this.o);else{var n=this.a.model,i=this.a.d1,r=!0;this.f(e,n,i)||(r=!1),this.h(e,n,i)||(r=!1),this.g(e,n,i)||(r=!1),this.e(e,n,i)||(r=!1),r&&0==this.k.count&&0==this.j.count&&0==this.i.count&&0==this.m.count&&0==this.l.count&&0==this.n.count?this.am():this.b.requestFrame(this.o)}},e.prototype.p=function(){return n.dateNow().getTime()},e.prototype.am=function(){this.b.teardownTicking(this.o),this.o=-1},e.prototype.aa=function(){-1==this.o&&(this.o=this.b.setupTicking(n.runOn(this,this.ad)),this.b.requestFrame(this.o))},e.prototype.u=function(t,e){e.b0=t.o,e.bl=this.p(),this.ai(t.o,!0,e),this.k.add(e),this.aa()},e.prototype.ai=function(t,e,n){for(var i=this.k.count-1;i>=0;i--)this.k._inner[i].b0==t&&this.k._inner[i].am(n)&&(e&&this.k._inner[i].bt(n),this.k.removeAt(i))},e.prototype.z=function(t,e){e.b0=t.o,e.bl=this.p(),this.al(t,!0,e),this.n.add(e),this.aa()},e.prototype.al=function(t,e,n){for(var i=this.n.count-1;i>=0;i--)this.n._inner[i].b0==t.o&&this.n._inner[i].am(n)&&(e&&this.n._inner[i].bt(n),this.n.removeAt(i))},e.prototype.t=function(t,e){e.b2=t.o,e.bl=this.p(),this.ah(t.o,!0,e),this.j.add(e),this.aa()},e.prototype.x=function(t){t.b2=-300,t.bl=this.p(),this.ah(-300,!0,t),this.j.add(t),this.aa()},e.prototype.y=function(t){t.b2=-400,t.bl=this.p(),this.ah(-400,!0,t),this.j.add(t),this.aa()},e.prototype.ah=function(t,e,n){for(var i=this.j.count-1;i>=0;i--)this.j._inner[i].b2==t&&this.j._inner[i].am(n)&&(e&&this.j._inner[i].bt(n),this.j.removeAt(i))},e.prototype.w=function(t,e){e.b0=t,e.bl=this.p(),this.ak(t,!0,e),this.m.add(e),this.aa()},e.prototype.ak=function(t,e,n){for(var i=this.m.count-1;i>=0;i--)this.m._inner[i].b0.equals(t)&&this.m._inner[i].am(n)&&(e&&this.m._inner[i].bt(n),this.m.removeAt(i))},e.prototype.v=function(t,e){e.b0=t,e.bl=this.p(),this.aj(t,!0,e),this.l.add(e),this.aa()},e.prototype.aj=function(t,e,n){for(var i=this.l.count-1;i>=0;i--)this.l._inner[i].b0.equals(t)&&this.l._inner[i].am(n)&&(e&&this.l._inner[i].bt(n),this.l.removeAt(i))},e.prototype.r=function(t,e,n){e.b4=n,e.b0=t,e.bl=this.p(),e.b2=!0,this.ag(t,!0,e),this.i.add(e),this.aa()},e.prototype.s=function(t,e){e.b0=t,e.bl=this.p(),e.b2=!1,this.ag(t,!0,e),this.i.add(e),this.aa()},e.prototype.ag=function(t,e,n){for(var i=this.i.count-1;i>=0;i--)this.i._inner[i].b0.equals(t)&&this.i._inner[i].am(n)&&(e&&this.i._inner[i].bt(n),this.i.removeAt(i))},e.prototype.f=function(t,e,i){for(var r,o,a=!0,s=new n.List$1(dr.$,0),l=0;l<this.k.count;l++)null==e.h(this.k._inner[l].b0)&&this.ai(this.k._inner[l].b0,!1,this.k._inner[l]);for(var u=0;u<e.b9.count;u++){r=e.b9._inner[u];for(var c=0;c<this.k.count;c++)(o=this.k._inner[c]).ah(r,e)&&(o.au(r,e,i,t)?s.add(o):a=!1)}for(var h=0;h<s.count;h++)this.ai(s._inner[h].b0,!1,s._inner[h]),s._inner[h].bu();return a},e.prototype.h=function(t,e,i){for(var r=!0,o=e.cf,a=new n.List$1(an.$,0),s=new n.List$1(fr.$,0),l=0;l<o.count;l++)for(var u=o._inner[l],c=0;c<u.count;c++)for(var h=u._inner[c],p=0;p<this.n.count;p++)this.n._inner[p].aj(h,e)&&(this.n._inner[p].av(h,e,i,t)?(a.add(h),s.add(this.n._inner[p])):r=!1);for(var d=0;d<a.count;d++)this.al(a._inner[d],!1,s._inner[d]),s._inner[d].bu();return r},e.prototype.g=function(t,e,n){for(var i,r=!0,o=new S(1,0,0,0),a=0;a<this.m.count;a++)i=this.m._inner[a],o.b=i.b0.b,o.x=i.b0.x,o.y=i.b0.y,i.aw(e.ce._inner[o.y],e,n,t)||(r=!1);return r},e.prototype.e=function(t,e,i){var r=!0;if(0==this.j.count&&0==this.l.count&&0==this.i.count)return!0;for(var o=0;o<this.j.count;o++){this.j._inner[o].b1=-1;var a=e.h(this.j._inner[o].b2);null!=a&&(this.j._inner[o].b1=a.m,this.j._inner[o].b0=a.c),this.j._inner[o].ap=!0}for(var s=0;s<this.l.count;s++)this.l._inner[s].ap=!0;for(var l=0;l<this.i.count;l++){if(this.i._inner[l].b3=-1,this.i._inner[l].b2){var u=e.h(this.i._inner[l].b4);null!=u&&(this.i._inner[l].b3=u.m,this.i._inner[l].b1=u.c)}this.i._inner[l].ap=!0}for(var c=0;c<e.cc.count;c++)for(var h=e.cc._inner[c],p=0;p<h.o.count;p++)if(!h.p._inner[p]){for(var d=h.o._inner[p],f=0;f<this.j.count;f++){var m=this.j._inner[f];m.ag(d,e)&&(m.at(h.q._inner[p],e,i,t)||(m.ap=!1))}for(var g=0;g<this.l.count;g++){var y=this.l._inner[g];y.ag(d,e)&&(y.at(h.q._inner[p],e,i,t)||(y.ap=!1))}for(var b=0;b<this.i.count;b++){var v=this.i._inner[b];v.ag(d,e)&&(v.at(h.q._inner[p],e,i,t)||(v.ap=!1))}}for(var C=new n.List$1(mr.$,0),x=0;x<this.j.count;x++)this.j._inner[x].ak(e,i,t)&&this.j._inner[x].ap?C.add(this.j._inner[x]):r=!1;for(var _=new n.List$1(vr.$,0),w=0;w<this.l.count;w++)this.l._inner[w].ak(e,i,t)&&this.l._inner[w].ap?_.add(this.l._inner[w]):r=!1;for(var S=new n.List$1(gr.$,0),P=0;P<this.i.count;P++)this.i._inner[P].ak(e,i,t)&&this.i._inner[P].ap?S.add(this.i._inner[P]):r=!1;for(var O=0;O<C.count;O++)this.ah(C._inner[O].b2,!1,C._inner[O]),C._inner[O].bu();for(var I=0;I<_.count;I++)this.aj(_._inner[I].b0,!1,_._inner[I]),_._inner[I].bu();for(var j=0;j<S.count;j++)this.ag(S._inner[j].b0,!1,S._inner[j]),S._inner[j].bu();return r},e.$t=n.markType(e,"GridEffectManager"),e}(n.Base),xr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.e=new Ri,e}return i.__extends(e,t),e.prototype.a=function(t,e){for(var n=e.cc,i=n.count,r=0;r<i;r++){var o=n._inner[r].b(t);if(null!=o)return o}return null},e.prototype.b=function(t,e,n,i,r,o,a,s){var l=this.a(t,n);if(null==l){var u=null,c=null,h=!1,p=-1;t.aj&&(p=e.e7.getDataRow(t),null==(c=e.e7.resolveValueForPath(e,t))&&e.e7.isPlaceholderValue(t)&&(h=!0));var d=e.q0(t,e,c,p);null==(u=this.e.a(d))?u=e.al(t,d):u.k5();var f=t;null!=u.l&&(f=u.l),n.bz.d(f)&&(n.bz.item(f).remove(u),0==n.bz.item(f).count&&n.bz.f(f)),i.s(t,u),u.r=i,u.l=t,u.w=r,u.fb=p,u.bk=o,u.bl=a,u.bg=s,u.bb=t.am&&t.ay,u.y=t.d,u.bf=e.cj.j&&e.cj.m(u);var m=!1,g=!1,y=u.l.a5;if(y>=0&&0==n.b9._inner[y].n||t.a0)1==e.e7.getRowType(u.l.x)&&e.isGroupCollapsable&&(e.shiftSectionContent?(-401==t.a5||-400==t.a5&&0==n.cz)&&(m=e.isGroupCollapsable,g=e.actualDataSource.getIsRowExpandedAtIndex(u.l.x)):(m=e.isGroupCollapsable,g=e.actualDataSource.getIsRowExpandedAtIndex(u.l.x)));return u.a2=m,u.ba=g,u.f0=e.n0(u.l),e.wy(u,c,e.e7.resolveRow(p)),h&&(u.ct=1),u}this.g(t,n,i),l.w=r;var b=l.l.bb;l.l=t,l.bk=o,l.bl=a,l.bg=s,l.y=t.d,l.bf=e.cj.j&&e.cj.m(l),t.bb!=b&&t.x>=0&&t.a5>=0&&(l.bn=e.f5.p(l),l.cq=l.bn?1:0,l.cl=e.e1.c(t.x)?1:0);var v=!1,C=!1,x=l.l.a5;return(x>=0&&0==n.b9._inner[x].n||t.a0)&&1==e.e7.getRowType(l.l.x)&&e.isGroupCollapsable&&(e.shiftSectionContent?(-401==t.a5||-400==t.a5&&0==n.cz)&&(v=e.isGroupCollapsable,C=e.actualDataSource.getIsRowExpandedAtIndex(l.l.x)):(v=e.isGroupCollapsable,C=e.actualDataSource.getIsRowExpandedAtIndex(l.l.x))),l.a2=v,l.ba=C,l.f0=e.n0(l.l),l},e.prototype.d=function(t,e){for(var n=0;n<e.cc.count;n++)if(e.cc._inner[n].d(t))return e.cc._inner[n];return null},e.prototype.g=function(t,e,n){var i=this.d(t,e);if(null!=i&&i!=n){var r=i.item(t);i.f(t),n.s(t,r),r.r=n}},e.prototype.f=function(t,e,i){if(null==i&&(i=this.d(t,e)),null!=i){var r=i.item(t);i.f(t);var o=null;if(e.bz.d(t)){if(1==(o=e.bz.item(t)).count){var a=t.ab();e.bz.f(t),e.bz.s(a,o)}}else o=new n.List$1($n.$,0),e.bz.s(t,o);o.add(r)}},e.prototype.i=function(t,e){var n=this.d(t,e);if(null!=n){var i=this.c(t,e);this.f(t,e,n),this.e.c(i)}},e.prototype.j=function(t,e,n){if(null!=e){var i=e.item(t);this.f(t,n,e),this.e.c(i)}},e.prototype.c=function(t,e){for(var n=0;n<e.cc.count;n++)if(e.cc._inner[n].d(t))return e.cc._inner[n].item(t);return null},e.prototype.h=function(t,e,i,r,o,a){t.l.h?t.cu=i+t.cm+t.cn*e.b9._inner[t.l.a5].k:t.cu=i+t.cm+t.cn*t.hd,t.cv=r+t.cr+t.cs*t.fu,t.g0=n.truncate(Math.round(t.cu)),t.g2=n.truncate(Math.round(t.cv)),t.hd=n.truncate(o),t.fu=n.truncate(a)},e.$t=n.markType(e,"GridLayerController"),e}(n.Base),_r=function(t){function e(){var e=t.call(this)||this;return e.o=0,e.f=!1,e.d=null,e.c=null,e.k=new n.Dictionary$2(n.Number_$type,wr.$,0),e.e=new n.FastIterationDictionary$2(n.Number_$type,n.List$1.$.specialize(vn.$),0),e.l=new n.List$1(n.Number_$type,0),e.i=!1,e.q=0,e.g=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"r",{get:function(){return this.q},set:function(t){this.q=t},enumerable:!1,configurable:!0}),e.prototype.ah=function(){this.g=!0},e.prototype.t=function(t){var e=!1;this.g&&(this.g=!1,e=!0),this.u(t,t.model,t.gb,e),t.vm()},e.prototype.u=function(t,e,n,i){t.ux();var r=e.actualVisibleRegion;if(!r.isEmpty&&0!=r.width&&0!=r.height&&0!=e.b9.count&&null!=t.e7){for(var o=this.a(t,e,n,r),a=0;a<e.cg.count;a++){var s=e.cg._inner[a],l=n.k(s,t,e);e.b9._inner[s].l=l}e.da=0,e.dg=0,e.cq=0,e.bx=o.b,e.bw=o.a,e.c8=o.k,e.db=o.m,e.c9=o.l,e.dc=o.n,t.xk(),this.d=o.b,this.c=o.a;var u=t.d1;t.k1=!0,this.ag(t,e,o,u),0!=e.cg.count&&(this.x(t,e,o,u),this.w(t,e,o),o.j+=e.c1,-1!=this.c.x&&(this.e.u(),this.l.clear(),this.m(t,e,e.actualVisibleRegion,o,!1),this.z(t,e,o,u),this.v(t,e,e.actualVisibleRegion,o),this.af(t,e,o,u),this.y(t,e,e.actualVisibleRegion,o),t.dw.ab(),t.k1=!1))}},e.prototype.a=function(t,e,i,r){var o;if((o=new Cn).j=r.top,o.g=r.bottom,o.h=r.left,o.i=r.right,this.r>0){var a=this.r*t.actualRowHeight;o.j=Math.max(o.j-a,0),o.g=Math.min(o.g+a,e.absoluteHeight),o.h=Math.max(o.h-a,0),o.i=Math.min(o.i+a,e.absoluteWidth)}o.o=t.inset,o.d=Math.max(o.h,t.inset.left),o.f=Math.min(o.i,e.absoluteWidth-t.inset.right),o.e=o.f-o.d,o.b=i.b(o.j+e.c6+e.c7+e.c2,e),o.a=i.b(o.g,e),o.k=0,o.m=0,e.cg.clear();for(var s=e.cz+n.truncate(t.inset.left),l=s,u=0,c=0,h=e.c0,p=0;p<e.b9.count;p++){var d=e.b9._inner[p],f=e.cf._inner[p],m=0==e.b9._inner[p].d;m&&(s+=n.truncate(Math.round(f.ad(-1))),6!=d.a&&(s+=d.k+t.model.cv-n.truncate(Math.round(d.f(e))))),3!=d.a&&(1==e.b9._inner[p].d?(e.cg.insert(u,p),u++):2==e.b9._inner[p].d?(e.cg.insert(e.cg.count,p),c++,6==d.a&&(h-=d.k)):s>=o.d+e.cz&&l<=o.f-h||2==e.b9._inner[p].a||1==e.b9._inner[p].a||6==e.b9._inner[p].a?e.cg.insert(e.cg.count-c,p):s<o.d+e.cz?o.l++:l>o.f-e.c0&&o.n++,m&&(l=s,s+=n.truncate(Math.round(f.af(-1)))))}return e.cg.count>0&&(o.k=e.cg._inner[0],o.m=e.cg._inner[e.cg.count-1]),o},e.prototype.ag=function(t,e,i,r){var o=this.d.y,a=this.c.y,s=this.d.x,l=this.c.x,u=0,c=0,h=0,p=!1,d=!1,f=!1,m=!1,g=!1,y=!1,b=0==t.actualHeaderHeight||null==t.itemsSource,v=0==t.rowSeparatorHeight,C=null,x=t.e7.getStickyRows();if(null!=x)for(var _=0;_<x.length;_++)null==C&&(C=new n.HashSet$1(n.Number_$type,0)),C.add_1(x[_]);for(var w=0;w<e.cc.count;w++){var S=e.cc._inner[w];S.g=!0;for(var P=0;P<S.o.count;P++)if(!S.p._inner[P]){var O=S.o._inner[P];if(d=!1,p=!1,u=O.y,c=O.x,h=O.a5,d=O.ay||O.j||O.a0||O.aq||O.as||O.ap||O.ar,g=O.av||O.aq||O.as,m=O.g,y=O.am,f=null!=C&&C.contains(c),0!=O.d,0==e.cg.count&&(p=!0),O.am)if(0==e.c2||null==t.actualDataSource||null==t.actualDataSource.actualSchema||0==t.actualDataSource.actualSchema.propertyNames.length)p=!0;else if(!d){t.cf(O).jm||(p=!0)}if(O.ak||O.al);if((2!=O.af||(c==t.cj.r&&h==t.cj.q||(p=!0),null==t.aq||t.aq.x==c&&t.aq.a5==h||(p=!0),null==t.ap||t.ap.x==c&&t.ap.a5==h||(p=!0),p))&&(3!=O.af||(t.cj.j||(p=!0),c!=t.cj.r&&(p=!0),null!=t.aq&&t.aq.x!=c&&(p=!0),null!=t.ap&&t.ap.x!=c&&(p=!0),p))){if(O.ay&&v&&(p=!0),O.g&&b&&(p=!0),!O.av||null!=t.dragger&&t.dragger.isDragActive||(p=!0),(O.aq||O.ap)&&0==e.cz&&(p=!0),(O.as||O.ar)&&0==e.c0&&(p=!0),O.at&&0==e.cq&&(p=!0),(d||e.cg.contains(h))&&(m||y||!(u<o||u>a))?f||g||O.aq||O.as||O.ap||O.ar||(u==o&&c<s&&(p=!0),u==a&&c>l&&(p=!0)):p=!0,t.shiftSectionContent||-401!=O.a5&&-402!=O.a5||(p=!0),!p){var I=t.e7.getRowType(c),j=t.e7.isRowSpanning(I)&&1!=t.groupSummaryDisplayMode;O.ay||O.av||O.aq||O.as||O.ap||O.ar?(4==I&&!O.ax||4!=I&&O.ax)&&(p=!0):!e.b5||1!=I&&2!=I?(j&&!d||d&&!j||O.az&&5!=I||O.aw&&4!=I||!O.az&&5==I||!O.aw&&4==I)&&(p=!0):p=!0}p&&(t.d1.j(O,S,e),t.cj.b==S.q._inner[P]&&t.cj.ac(null))}}S.g=!1}e.b5=!1},e.prototype.af=function(t,e,n,i){for(var r=this.d.x,o=this.c.x,a=e.ce._inner[0],s=a.k()-a.o,l=0;l<e.cc.count;l++){var u=e.cc._inner[l];if(this.h(u,e)){u.g=!0;for(var c=0;c<u.o.count;c++)if(!u.p._inner[c]){var h=u.o._inner[c],p=u.q._inner[c],d=!1;if(4==h.af){for(var f=!1,m=0;m<this.e.q.count;m++){if(this.e.o._inner[m]==h.a5){for(var g=this.e.q._inner[m],y=0;y<g.count;y++)if(g._inner[y].f==h.x){if(f=!0,null!=t.activeCell&&t.activeCell.b>=g._inner[y].f&&t.activeCell.b<=g._inner[y].e){d=!0;break}if(g._inner[y].f==g._inner[y].e){d=!0;break}if(p.fu<=s){d=!0;break}}f||(d=!0)}if(d)break}f?(e.cg.contains(h.a5)||(d=!0),p.bk||(h.x<r||h.x>o)&&(d=!0)):d=!0}d&&t.d1.j(h,u,e)}}}},e.prototype.ae=function(t,e,n){for(var i=n.b,r=n.a.y,o=new S(1,0,0,0),a=i.y;a<=r;a++)this.ab(a,t,e,n,o)},e.prototype.ab=function(t,e,n,i,r){var o=i.b,a=i.a,s=n.ce,l=e.d1,u=a.y,c=i.d,h=(i.f,i.e),p=s._inner[t],d=t==u?a.x:p.m-1;-201==d&&(d=p.m-1);var f=0;if(o.y==t&&(f=-200==o.x?0:o.x),-201==f){var m=new S(1,0,t,-200);return this.at(m,n,c,p.i+p.l()-p.d,h,t,!1,e),r.y=t,r.x=-201,void(r.a5=0)}p.g>0&&this.ad(t,e,n,i,r,o,p,f),p.d>0&&this.ac(t,e,n,i,r,l,u,p),r.y=t},e.prototype.n=function(t,e,n){var i=this.a(t,e,t.gb,n);return this.m(t,e,n,i,!0)},e.prototype.m=function(t,e,i,r,o){var a=r.a,s=r.b,l=(r.a.y,r.b.y,new S(1,0,0,0)),u=e.ce._inner[0],c=t.e7.getStickyRowsInRange(s.x,a.x),h=-1,p=-1,d=-1,f=-1,m=!1,g=(t.rowSeparatorHeight,3==t.groupSummaryDisplayMode),y=this.k;y.clear(),this.o=0;var b=new n.List$1(wr.$,0);if(e.df=0,null!=c&&(t.groupDescriptions.j.count>0&&t.isGroupRowSticky||0==t.groupDescriptions.j.count)){for(var v=i.top+e.c3+e.c2,C=(i.bottom,function(n){var r=c[n],o=t.e7.getRowType(r),a=r*u.k()+u.i,s=new wr;if(s.b=e,s.a=o,s.k=u.e(r),s.i=u.j(r),s.n=t.e7.getStickRowPriority(r),s.m=r,s.l=a,s.e=n==c.length-1||c[n+1]!=r+1,s.f=5==o&&n==c.length-1,y.addItem(r,s),0==n)return 4!=s.a?s.l<=v?(s.l+=v-s.l,f=n):s.j>i.bottom&&(s.l+=i.bottom-s.j,m=!0):(s.l+=i.bottom-s.j,s.h=!0,m=!0,e.cq++),"continue";var l=c[n-1],h=(t.e7.getStickRowPriority(l),t.e7.getStickRowPriority(r),y.item(l)),p=t.e7.isExclusivelySticky(r),d=n-1==f;h.f=5!=o&&5==h.a||5==o&&n==c.length-1;var b,C=((b=new Sr).a=c,b.d=y,b.c=!0,b.b=p,b);if(4!=s.a){if(s.l<=h.j&&d){f=n;var _=x.b(n-1,n,n,C);_.b||(s.l=_.a.j)}if(2==s.a){var w=t.e7.getRootSummaryRowCount(),S=i.bottom-w*u.k();if(s.j>S){s.l-=s.j-S,s.h=!0,m=!0,C.c=!1;var P=x.b(n-1,n,n,C);P.b||(s.l=P.a.j)}}else if(g&&5==s.a){var O=t.e7.getRootSummaryRowCount(),I=i.bottom-O*u.k();if(s.j>I){s.l-=s.j-I,s.h=!0,m=!0,C.c=!1;var j=x.b(n-1,n,n,C);j.b||(s.l=j.a.j)}}}4==o&&(s.l+=i.bottom-s.j,s.h=!0,e.cq++,m=!0,x.am(t,n-1,n,4,c,y))}),x=this,_=0;_<c.length;_++)C(_);for(var w=0;w<c.length;w++)for(var P=w+1;P<c.length;P++){var O=y.item(c[w]),I=y.item(c[P]);if(!(I.l<O.j))break;I.g=!0,I.d=Math.round(I.j)<=Math.round(O.j)}for(var j=0;j<=f;j++){var k=c[j],T=y.item(k).l,R=y.item(k).j,D=y.item(k).k,B=y.item(k).g,M=y.item(k).d;h=k,this.o=Math.max(this.o,R);var E=!1,A=!1,V=!1;3==y.item(k).a&&(E=!0,A=!0),3==y.item(k).a&&y.item(k).e&&(V=!0),b.add(y.item(k)),o||this.aa(t,e,r,l,t.d1,k,T,D,!0,E,A,V,B,M)}if(m)for(var N=0,F=0;F<c.length;F++){var $=c[F];if(y.item($).h){-1==d&&(d=$);var z=y.item($).l,G=(y.item($).j,y.item($).k),L=y.item($).g,q=y.item($).d;p=$;var H=3==y.item($).a&&y.item($).e,W=3==y.item($).a;o||(l.i=!0,l.o=e.da-1-N,this.aa(t,e,r,l,t.d1,$,z,G,!0,W,W,H,L,q),l.i=!1,l.o=-1),N++}}}for(var U=Math.max(h+1,s.x);U<=a.x;U++)if(!(-1!=d&&-1!=p&&U>=d&&U<=p)){var K=u.f(U);K+=u.i;var X=u.e(U),Z=!1,Y=!1,Q=!1,J=t.e7.getRowType(U);3==J&&(Q=!0,Y=!0),0==J&&t.e7.isRowPinned(U)&&(Y=!0),3==J&&y.containsKey(U)&&y.item(U).e&&(Z=!0),o||this.aa(t,e,r,l,t.d1,U,K,X,!1,Y,Q,Z,!1,!1)}return b},e.prototype.am=function(t,e,n,i,r,o){if(!(e<0)){var a=r[e],s=r[n];o.item(a).a==i&&o.item(a).j>o.item(s).l&&(o.item(a).l-=o.item(a).j-o.item(s).l,o.item(a).h=!0,this.am(t,e-1,e,i,r,o))}},e.prototype.b=function(t,e,n,i){var r,o=this,a=i.a[t],s=i.a[e],l=i.a[n],u=i.d,c=u.item(a).n,h=u.item(s).n,p=u.item(l).n;if(12==s);if(i.e++,u.item(s).l<u.item(a).j){if(h>c||h==c&&i.b){for(var d=u.item(s).l-u.item(a).j,f=this.j(d,t,n,i),m=null;f&&t>0;)t-=1,m=this.b(t,n,n,i),f=m.b;return null==m&&((r=new Pr).b=f,r.a=u.item(i.a[t]),m=r),m}if(h==c&&!i.b)return function(){var t=new Pr;return t.b=!1,t.a=u.item(a),t}();if(h<c){if(p>=c){if(u.item(l).l<u.item(a).j){var g=u.item(l).l-u.item(a).j;return function(){var e=new Pr;return e.b=o.j(g,t,n,i),e.a=u.item(a),e}()}return function(){var t=new Pr;return t.b=!0,t.a=u.item(a),t}()}return function(){var t=new Pr;return t.b=!1,t.a=u.item(a),t}()}}return function(){var t=new Pr;return t.b=!0,t.a=u.item(a),t}()},e.prototype.j=function(t,e,n,i){var r=i.a[e];if(i.d.item(r).l+=t,i.d.item(r).h=!i.c,e>0){var o=this.b(e-1,e,n,i);if(!(i.b&&i.c||o.b)){var a=i.a[e-1];return i.d.item(r).l=i.d.item(a).j,!1}}return!0},e.prototype.aa=function(t,e,i,r,o,a,s,l,u,c,h,p,d,f){r.x=a,r.d=0,r.au=d,r.ai=f;var m=e.b9,g=i.d,y=i.f,b=i.e,v=t.rowSeparatorHeight,C=t.e7.getRowType(a);r.aw=4==C,r.az=5==C;var x=!1;if(0!=C&&(x=t.e7.isRowSpanning(C)&&1!=t.groupSummaryDisplayMode),x){var _=t.shiftSectionContent?e.cz:0,w=t.shiftSectionContent?e.c0:0,S=g,P=b;_>0&&(r.a5=-401,P=e.cz,this.an(S,P,s,l,r.ab(),e,g,y,t,u,c,h,p,C)),r.a5=-400,S=g+_,P=b-_-w,this.an(S,P,s,l,r.ab(),e,g,y,t,u,c,h,p,C),w>0&&(r.a5=-402,S=y-e.c0,P=e.c0,this.an(S,P,s,l,r.ab(),e,g,y,t,u,c,h,p,C))}else for(var O=0;O<e.cg.count;O++){var I=e.cg._inner[O],j=m._inner[I];r.a5=j.m,r.bb=j.n,r.d=j.d;var k=r.ab();this.an(i.o.left+j.l,j.k,s,l,k,e,g,y,t,u,c,h,p,C)}var T=4!=C&&2!=C&&(5!=C||3!=t.groupSummaryDisplayMode);T&&u&&(e.dg=n.truncate(Math.round(s+l+t.rowSpacingHeight-i.j)));var R=4==C||5==C&&3==t.groupSummaryDisplayMode;R&&u&&s<i.g&&(e.df+=n.truncate(l)+t.rowSpacingHeight),v>0&&(T&&u&&(e.dg=n.truncate(Math.round(s+l+t.rowSpacingHeight+v-i.j))),R&&u&&s<i.g&&(e.df+=v),r.d=0,r.a5=-300,r.ax=4==C,this.av(i,r.ab(),e,g,b,s+l+t.rowSpacingHeight,v,t,u,c,h,p,C))},e.prototype.ac=function(t,e,n,i,r,o,a,s){var l=i.d,u=(i.f,i.e);r.y=t,r.x=-201,r.a5=0;var c=new S(1,r.a5,r.y,r.x),h=s.i+s.l()-s.d,p=h;t==a?((p=i.g-s.d)<s.i+s.g&&(p=s.i+s.g),this.au(c,n,l,Math.min(h,p),u,t,!1,!0,e)):this.at(c,n,l,Math.min(h,p),u,t,!1,e)},e.prototype.ad=function(t,e,n,i,r,o,a,s){var l=i.d,u=(i.f,i.e);r.y=t,r.x=-200,r.a5=0;var c=new S(1,r.a5,r.y,r.x);if(t==o.y)if(s==a.m-1){var h=a.j(s),p=a.f(s)+a.i+h-a.g;this.au(c,n,l,Math.min(p,i.j),u,t,!0,!0,e)}else this.au(c,n,l,Math.max(a.i,i.j-e.inset.top),u,t,!0,!0,e);else this.at(c,n,l,a.i,u,t,!0,e)},e.prototype.x=function(t,e,n,i){var r=e.b9,o=t.inset.top;if(null!=t.itemsSource){if(e.c3>0){var a=Math.max(n.j,o);e.b1=this.i,this.i&&(a=o);for(var s=0;s<e.cg.count;s++){var l=e.cg._inner[s],u=r._inner[l],c=new S(1,u.m,-100,-100);if(c.d=u.d,this.ar(c,e,a,n.d,n.f,t),t.isHeaderSeparatorVisible){var h=new S(1,u.m,-100,-101);h.d=u.d;var p=t.nn(t.headerSeparatorWidth),d=t.headerSeparatorWidth+2*p,f=n.o.left+e.b9._inner[c.a5].l+e.b9._inner[c.a5].k-t.headerSeparatorWidth-p;this.aw(h,e,a,f,d,e.c6,n.d,n.f,t)}}if(e.c7>0){var m=new S(1,-300,-100,-100);this.av(n,m,e,n.d,n.e,0,e.c7,t,!1,!1,!1,!1,0)}}if(0==t.columnResizingMode&&null!=t.dragger&&t.dragger.isDragActive&&1==t.dragger.dragType){var g=new S(3,-400,-102,7);this.aw(g,e,Math.max(n.j,o),t.og,t.columnResizingSeparatorWidth,e.ch,n.h,n.i,t)}if(1!=t.columnMovingMode&&null!=t.dragger&&t.dragger.isDragActive&&2==t.dragger.dragType){var y=new S(3,-400,-102,6);this.aw(y,e,n.j,t.og,t.columnMovingSeparatorWidth,e.ch,n.h,n.i,t)}}},e.prototype.z=function(t,e,n,i){if(e.cx>-1?e.cn=n.d+t.gb.k(e.cx,t,e)-t.pinnedAreaSeparatorWidth:e.cn=e.cz,e.cy>-1){var r=e.b9._inner[e.cy].l-t.pinnedAreaSeparatorWidth;n.i>=e.absoluteWidth?e.co=r+t.inset.left:e.co=r-(e.absoluteWidth-n.i-t.inset.left-t.inset.right)}var o=Math.max(n.j-e.c3-e.c2,t.inset.top),a=n.j,s=e.c3+e.c2,l=e.cq*(t.actualRowHeight+t.rowSeparatorHeight+t.rowSpacingHeight),u=n.g-l,c=Math.min(e.absoluteHeight-l,n.g-l),h=Math.max(0,c-a),p=new S(1,0,0,0);e.cz>0&&(p.a5=-500,e.c3>0&&(p.x=-100,this.aw(p.ab(),e,o,e.cn,t.pinnedAreaSeparatorWidth,s,n.d,n.i,t)),p.x=-103,this.aw(p.ab(),e,a,e.cn,t.pinnedAreaSeparatorWidth,h,n.d,n.i,t),e.cq>0&&(p.x=-104,this.aw(p.ab(),e,u,e.cn,t.pinnedAreaSeparatorWidth,l,n.d,n.i,t))),e.c0>0&&(p.a5=-501,e.c3>0&&(p.x=-100,this.aw(p.ab(),e,o,e.co,t.pinnedAreaSeparatorWidth,s,n.d,n.i,t)),p.x=-103,this.aw(p.ab(),e,a,e.co,t.pinnedAreaSeparatorWidth,h,n.d,n.i,t),e.cq>0&&(p.x=-104,this.aw(p.ab(),e,u,e.co,t.pinnedAreaSeparatorWidth,l,n.d,n.i,t)))},e.prototype.p=function(t,e){var n=Math.max(e.actualVisibleRegion.left,e.inset.left),i=Math.min(e.actualVisibleRegion.right,e.model.absoluteWidth-e.inset.right),r=e.inset.left+t.l;return 1==t.d?r=n+t.l:2==t.d&&(r=i>=e.model.absoluteWidth?t.l+e.inset.left:t.l-(e.model.absoluteWidth-i-e.inset.left-e.inset.right)),r},e.prototype.v=function(t,e,n,i){var r=t.cj;if(-1!=r.r&&-1!=r.q){if(r.q>t.actualColumns.count-1)return void r.v();var o=t.actualColumns._inner[r.q],a=r.r,s=e.h(o.ko),l=new S(1,s.m,0,a);l.bb=s.n,l.af=2;var u=this.k.containsKey(a)?this.k.item(a).l:e.ce._inner[0].f(a)+e.ce._inner[0].i,c=this.p(s,t),h=s.k,p=e.ce._inner[0].e(a);if(this.ap(t,o,l,e,u,c,h,p),3==t.editMode&&t.cj.j){var d=l.ab();d.af=3,d.x=a,d.a5=-400,c=e.cj,h=e.absoluteWidth,this.ao(t,e,d,u,c,h,p)}}},e.prototype.ap=function(t,e,n,i,r,o,a,s){var l=t.cj.h(e,n.x);this.aj(t,i,n,l,9,o,r,a,s)},e.prototype.ao=function(t,e,n,i,r,o,a){var s=e.a0;this.aj(t,e,n,s,10,r,i,o,a)},e.prototype.y=function(t,e,n,i){this.f=!0;var r=e.ce._inner[0],o=r.k(),a=o-r.o,s=(i.d,i.f,i.j+(this.o>0?Math.abs(this.o-i.j):0)),l=new S(1,0,0,0);l.af=4;for(var u=0;u<this.e.q.count;u++)for(var c=this.e.q._inner[u],h=0;h<c.count;h++){var p=c._inner[h];if(p.e!=p.f){var d=p.b?i.j:s,f=e.b9._inner[p.d],m=l.ab();m.x=p.f,m.a5=p.d,m.bb=f.n,m.d=f.d;var g=p.c,y=this.p(f,t),b=f.k,v=o*(p.e-p.f+1)-r.o;g<d&&(p.b||(v-=d-g),g=d),g+v>i.g&&(p.b||(v-=g+v-i.g));var C=Math.max(v,a);C!=a&&this.as(t,i,f.d,m,g,y,b,C,p.b)}}this.f=!1},e.prototype.as=function(t,e,n,i,r,o,a,s,l){var u=t.model,c=null;c=0!=n?l?u.ay:u.a4:l?u.ba:u.bp,this.ak(t,u,i,c,12,o,r,a,s,l,l,!1)},e.prototype.h=function(t,e){return!0},e.prototype.w=function(t,e,n){if(e.c2>0&&null!=t.actualDataSource&&null!=t.actualDataSource.actualSchema&&t.actualDataSource.actualSchema.propertyNames.length>0){var i=e.b9,r=Math.max(n.j,n.o.top);r+=e.c3;for(var o=new S(1,-1,-100,-1),a=0;a<e.cg.count;a++){var s=e.cg._inner[a],l=i._inner[s],u=o.ab();u.x=-105,u.a5=l.m,u.af=5,u.d=l.d,this.aq(u,e,r,n.d,n.f,t)}if(t.rowSeparatorHeight>0){var c=r+e.cw,h=o.ab();h.x=-105,h.a5=-300,h.af=5,this.av(n,h,e,n.d,n.e,c,t.rowSeparatorHeight,t,!1,!1,!1,!1,0)}}},e.prototype.aq=function(t,e,n,i,r,o){var a=0==t.d?e.a8:e.ax;1!=e.b9._inner[t.a5].a&&2!=e.b9._inner[t.a5].a&&3!=e.b9._inner[t.a5].a||(a=0==t.d?e.bo:e.a3),6==e.b9._inner[t.a5].a&&(a=0==t.d&&0==o.columns._inner[t.a5].ik?e.br:e.a6);var s=e.b9._inner[t.a5].l+o.inset.left,l=e.b9._inner[t.a5].k;if(1==t.d)s=i+e.b9._inner[t.a5].l;else if(2==t.d){var u=e.b9._inner[t.a5].l;s=r>=e.absoluteWidth?u+o.inset.left:u-(e.absoluteWidth-r-o.inset.left-o.inset.right)}this.aj(o,e,t,a,11,s,n,l,e.cw)},e.prototype.aj=function(t,e,n,i,r,o,a,s,l){this.ak(t,e,n,i,r,o,a,s,l,!1,!1,!1)},e.prototype.ak=function(t,e,n,i,r,o,a,s,l,u,c,h){var p=t.d1.b(n,t,e,i,r,u,c,h);t.d1.h(p,e,o,a,s,l),this.al(t,p),this.ai(t,p),t.cj.j?null!=t.cj.b||t.cj.r!=p.l.x||t.cj.q!=p.l.a5||p.l.ak||t.cj.ac(p):(null!=t.aq&&t.aq.equals(p.l)&&t.cj.ab(p),null!=t.ap&&t.ap.equals(p.l)&&t.lb(p))},e.prototype.al=function(t,e){if(4==e.l.af){var i=t.model.b9._inner[e.l.a5];1!=i.a&&3!=i.a&&2!=i.a&&(e.me=n.Rect.empty)}},e.prototype.s=function(t,e){var n=null;switch(e){case 0:case 1:n=t.hm;break;case 2:n=t.i4()}return n},e.prototype.ai=function(t,e){var i=this;if(!this.f&&e.l.aj&&!e.l.ak&&!e.l.al){var r,o=!1;if(1==e.cq){if(!this.l.contains(e.l.x)){this.l.add(e.l.x);for(var a=0;a<e.l.a5;a++)if(this.e.d(a)){var s=this.e.item(a),l=s._inner[s.count-1];l.e==e.l.x&&(l.f==l.e?l.a=!0:(l.e--,s.add((r=void 0,(r=new vn).d=e.l.a5,r.f=e.l.x,r.e=e.l.x,r.a=!0,r))))}}o=!0}var u=t.cj.j&&e.l.x==t.cj.r||null!=t.activeCell&&t.activeCell.b==e.l.x||e.l.a0||e.l.a1||o||this.l.contains(e.l.x),c=e.bk&&e.bl;if(u&&e.l.a0)for(var h=this.e.q,p=function(t){h._inner[t].add(function(){var n=new vn;return n.d=i.e.o._inner[t],n.f=e.l.x,n.e=e.l.x,n.a=!0,n}())},d=0;d<h.count;d++)p(d);else{var f=t.actualColumns._inner[e.l.a5];if(f.jr()){var m=f.ic();this.e.d(e.l.a5)||this.e.s(e.l.a5,new n.List$1(vn.$,0));var g=this.e.item(e.l.a5);if(0==g.count)g.add(function(){var t=new vn;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.g=i.s(e,m),t.b=c,t.a=u,t.c=e.cv,t}());else if(u)g.add(function(){var t=new vn;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.a=!0,t}());else{var y=g._inner[g.count-1];if(y.a)g.add(function(){var t=new vn;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.g=i.s(e,m),t.b=c,t.c=e.cv,t}());else{var b=this.s(e,m);c==y.b&&(null==y.g&&null==b||null!=y.g&&n.Base.equalsStatic(y.g,b))?y.e=e.l.x:g.add(function(){var t=new vn;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.g=i.s(e,m),t.b=c,t.c=e.cv,t}())}}}}}},e.prototype.an=function(t,e,n,i,r,o,a,s,l,u,c,h,p,d){var f=o.at,m=r.d,g=0!=r.d,y=(l.gb,1);if(1==d&&(y=2),2==d&&(y=3),-400==r.a5||-401==r.a5||-402==r.a5?1!=d&&2!=d||(f=r.ai?o.at:u&&!r.au?o.bd:o.bl):1==o.b9._inner[r.a5].a||2==o.b9._inner[r.a5].a||3==o.b9._inner[r.a5].a?f=u?4!=d?o.bb:o.bo:g?o.a1:o.bm:6==o.b9._inner[r.a5].a?(g=0!=r.d||0!=l.columns._inner[r.a5].ik,f=u?4!=d?o.bc:o.br:g?o.a4:o.bp):f=u?4!=d?g?o.az:o.a9:g?o.ax:o.a8:g?o.av:o.at,1==m)t=a+o.b9._inner[r.a5].l;else if(2==m){var b=o.b9._inner[r.a5].l;t=s>=o.absoluteWidth?b+l.inset.left:b-(o.absoluteWidth-s-l.inset.left-l.inset.right)}this.ak(l,o,r,f,y,t,n,e,i,c,h,p)},e.prototype.ar=function(t,e,n,i,r,o){var a=0==t.d?e.a8:e.ax;1!=e.b9._inner[t.a5].a&&2!=e.b9._inner[t.a5].a&&3!=e.b9._inner[t.a5].a||(a=0==t.d?e.bo:e.a3),6==e.b9._inner[t.a5].a&&(a=0==t.d&&0==o.columns._inner[t.a5].ik?e.br:e.a6);var s=e.b9._inner[t.a5].l+o.inset.left,l=e.b9._inner[t.a5].k;if(1==t.d)s=i+e.b9._inner[t.a5].l;else if(2==t.d){var u=e.b9._inner[t.a5].l;s=r>=e.absoluteWidth?u+o.inset.left:u-(e.absoluteWidth-r-o.inset.left-o.inset.right)}this.aj(o,e,t,a,0,s,n,l,e.c6)},e.prototype.aw=function(t,e,n,i,r,o,a,s,l){var u=e.bs,c=5;t.h&&(c=7,u=0==t.d?e.a7:e.aw,1!=e.b9._inner[t.a5].a&&2!=e.b9._inner[t.a5].a&&3!=e.b9._inner[t.a5].a||(u=0==t.d?e.bn:e.a2),6==e.b9._inner[t.a5].a&&(u=0==t.d&&0==l.columns._inner[t.a5].ik?e.bq:e.a5),1==t.d?i+=a-l.inset.left:2==t.d&&s<e.absoluteWidth&&(i-=e.absoluteWidth-s-l.inset.right)),l.shiftSectionContent||(t.aq||t.as)&&-104!=t.x&&(u=e.a0),6==t.af?c=8:7==t.af&&(c=6),this.aj(l,e,t,u,c,i,n,r,o)},e.prototype.at=function(t,e,n,i,r,o,a,s){this.au(t,e,n,i,r,o,a,!1,s)},e.prototype.au=function(t,e,n,i,r,o,a,s,l){var u=a?e.ce._inner[o].g:e.ce._inner[o].d,c=3,h=e.bl;a&&(c=2),s&&(h=e.bl),this.aj(l,e,t,h,c,n,i,r,u)},e.prototype.av=function(t,e,n,i,r,o,a,s,l,u,c,h,p){var d=0,f=n.bg;if(l?f=1==p||2==p?e.au?n.bk:n.bi:4==p?n.bj:n.bh:1!=p&&2!=p||(f=n.bk),e.g){var m=s.inset.top;d=Math.max(t.j,m)+n.c6,this.i&&(d=t.o.top+n.c6),f=n.a7}else e.am?(d=o,f=n.a7):d=o;this.ak(s,n,e,f,4,i,d,r,a,u,c,h)},e.$t=n.markType(e,"VisibilityEngine"),e}(n.Base),wr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.m=0,e.o=null,e.l=0,e.k=0,e.i=0,e.e=!1,e.c=!1,e.a=0,e.f=!1,e.n=0,e.g=!1,e.d=!1,e.b=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"j",{get:function(){return this.l+this.i},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,this.c!=e&&null!=this.b&&(this.b.da=Math.min(0,this.c?this.b.da+1:this.b.da-1))},enumerable:!1,configurable:!0}),e.prototype.toString=function(){return n.EnumUtil.getName(n.DataSourceRowType_$type,this.a)+"("+this.n+") "+this.j},e.$t=n.markType(e,"PinnedRowInfo"),e}(n.Base),Sr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.d=null,e.b=!1,e.c=!1,e.e=0,e}return i.__extends(e,t),e.$t=n.markType(e,"PushRowSettings"),e}(n.Base),Pr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=!1,e.a=null,e}return i.__extends(e,t),e.$t=n.markType(e,"PushRowResult"),e}(n.Base),Or=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.f=new n.List$1(Er.$,0),e.c=new n.Dictionary$2(n.Number_$type,Er.$,0),e.d=new n.List$1(n.Number_$type,0),e.e=new n.List$1(n.Number_$type,0),e.a=new sn,e}return i.__extends(e,t),e.prototype.r=function(t,e,i){e.absoluteHeight=0,e.absoluteWidth=0,e.absoluteHeight=n.truncate(t.inset.top),e.c1=n.truncate(t.inset.top),e.ce.clear(),this.c.clear();for(var r=0;r<t.model.b9.count;r++)this.c.addItem(t.model.b9._inner[r].o,t.model.b9._inner[r]);if(e.dm(),e.cz=0,e.c0=0,e.cx=-1,e.cy=-1,t.model.cv=t.columnSpacingWidth,null!=t.e7){var o=t.e7.getSectionCount();o=Math.max(1,o),t.model.c7=t.actualHeaderHeight>0?t.rowSeparatorHeight:0,t.model.c3=t.actualHeaderHeight+t.model.c7,t.model.c6=t.actualHeaderHeight,t.model.c2=t.jw()?t.actualRowHeight+t.rowSeparatorHeight:0,t.model.cw=t.jw()?t.actualRowHeight:0,t.model.absoluteHeight+=t.model.c3+t.model.c2,t.model.c1+=t.model.c3+t.model.c2,t.model.cj=t.inset.left,t.model.ck=t.inset.right,t.model.cl=t.inset.top,t.model.ci=t.inset.bottom;for(var a=0;a<o;a++){var s=new Ar;s.h=a,s.i=e.absoluteHeight,s.m=t.e7.getRowCount(),s.g=t.sectionHeaderHeight,s.d=t.sectionFooterHeight,s.o=t.rowSeparatorHeight,s.p=t.rowSpacingHeight,s.n=t.actualRowHeight,s.q=s.m*s.n,t.model.absoluteHeight+=s.l(),t.model.ce.add(s)}var l=t.defaultColumnWidth,u=0,c=t.defaultColumnWidth,h=t.defaultColumnMinWidth;for(this.f.clear(),this.d.clear(),this.e.clear(),u=0;u<t.actualColumns.count;u++){var p=new Er;this.c.containsKey(t.actualColumns._inner[u].ko)&&(p=this.c.item(t.actualColumns._inner[u].ko)),p.m=u;var d=t.actualColumns._inner[u];p.p=d.lo,p.o=d.ko,3==d.ht&&(p.h=-1),5==d.ht&&(p.h=0),p.a=d.ht;var f=null;l=d.width,null==f&&(f=null==l?c:l);var m=0;null!=d.width||n.isNaN_(h)||(m=h),!n.isNaN_(f.e)&&f.e>0&&(m=Math.max(m,f.e)),n.isNaN_(d.j0)||(m=d.j0),p.b=f,p.i=m,p.d=d.il,p.n=u,1==p.d&&this.d.add(u),2==p.d&&this.e.add(u),2!=d.ht&&3!=d.ht&&(0==d.il&&-1==e.cx&&(e.cx=u),-1==e.cy&&2==d.il&&(e.cy=u)),t.model.dj(p)}this.s(e),this.c.clear(),t.model.cz=0,t.model.c0=0,this.q(t,e,i),t.dw.ac(),t.model.absoluteHeight+=n.truncate(t.inset.bottom)}},e.prototype.s=function(t){if(this.d.count>0||this.e.count>0){null==t.cd?t.cd=new n.List$1(Er.$,0):t.cd.clear();for(var e=0;e<t.b9.count;e++)t.b9._inner[e].n=this.m(t.b9._inner[e].d,e,t);for(var i=0;i<t.b9.count;i++)for(var r=0;r<t.b9.count;r++)if(t.b9._inner[r].n==t.cd.count){t.cd.add(t.b9._inner[r]);break}}},e.prototype.q=function(t,r,o){var a,s;r.absoluteWidth=0,r.c4=0,r.cz=0,r.c0=0;var l=t.model.cv,u=t.model.cv,c=0,h=new n.List$1(Er.$,0);r.cf;try{for(var p=i.__values(n.fromEnum(r.b9)),d=p.next();!d.done;d=p.next()){var f=d.value;f.b.c?(c+=f.b.f*this.g(f),h.add(f)):(f.k=n.truncate(Math.max(n.DeviceUtils.g(f.b.f),f.i)),3!=f.a&&(6==f.a?u+=f.k+t.model.cv:u+=f.k+t.model.cv-n.truncate(Math.round(f.f(r))),r.c4+=f.k+t.model.cv,1==f.d&&(r.cz+=f.k+r.cv-n.truncate(Math.round(f.f(r)))),2==f.d&&(r.c0+=f.k+r.cv-n.truncate(Math.round(f.f(r))))),6==f.a?l+=f.k+t.model.cv:l+=f.k+t.model.cv-n.truncate(Math.round(f.f(r))))}}catch(t){a={error:t}}finally{try{d&&!d.done&&(s=p.return)&&s.call(p)}finally{if(a)throw a.error}}if(r.cz=Math.max(0,r.cz-r.cv),c>0){u=e.p(t,r,o,l,u,c,h)}t.model.absoluteWidth=u,t.model.absoluteWidth+=n.truncate(t.inset.left+t.inset.right),t.model.c4+=n.truncate(t.inset.left+t.inset.right)},e.prototype.g=function(t){return 6==t.a?1:3==t.a?0:1-Math.max(0,Math.min(1,Math.abs(t.h)))},e.p=function(t,e,r,o,a,s,l){var u,c,h,p;r-=o,r-=n.truncate(t.inset.left+t.inset.right),r-=l.count*t.model.cv;var d=0,f=(r-=t.model.dd+t.model.de)/s;f<0&&(f=0),r<0&&(r=0);for(var m=!1,g=new n.HashSet$1(Er.$,0);s>0&&!m;){m=!0;try{for(var y=(u=void 0,i.__values(n.fromEnum(l))),b=y.next();!b.done;b=y.next()){var v=b.value;if(!g.contains(v)&&v.i>f*v.b.f)if(m=!1,3!=v.a&&s--,g.add_1(v),v.k=n.truncate(v.i),6!=v.a)if(3!=v.a&&(a+=v.k+t.model.cv-n.truncate(Math.round(v.f(e))),e.c4+=v.k+t.model.cv),6==v.a){var C=v.k+t.model.cv;o+=C,r-=C}else{var x=v.k+t.model.cv-n.truncate(Math.round(v.f(e)));o+=x,r-=x}else a+=v.k,e.c4+=v.k+t.model.cv}}catch(t){u={error:t}}finally{try{b&&!b.done&&(c=y.return)&&c.call(y)}finally{if(u)throw u.error}}f=r/s}r<0&&(r=0);var _=0;try{for(var w=i.__values(n.fromEnum(l)),S=w.next();!S.done;S=w.next()){var P=S.value;if(g.contains(P))3!=P.a&&(1==P.d&&(t.model.cz+=P.k+t.model.cv),2==P.d&&(t.model.c0+=P.k+t.model.cv));else{var O=Math.max(P.i,f*P.b.f),I=_+O;_+=O,Math.round(I)>=I?P.k=n.truncate(Math.ceil(O)):P.k=n.truncate(Math.floor(O)),a+=t.model.cv,o+=t.model.cv,d+=t.model.cv,_+=t.model.cv,e.c4+=t.model.cv,3!=P.a&&(6==P.a?a+=P.k:a+=P.k-n.truncate(Math.round(P.f(e))),1==P.d&&(t.model.cz+=P.k+t.model.cv),2==P.d&&(t.model.c0+=P.k+t.model.cv),e.c4+=P.k),6==P.a?(o+=P.k,d+=P.k):(o+=P.k-n.truncate(Math.round(P.f(e))),d+=P.k-n.truncate(Math.round(P.f(e))))}}}catch(t){h={error:t}}finally{try{S&&!S.done&&(p=w.return)&&p.call(w)}finally{if(h)throw h.error}}if(t.model.cz=Math.max(0,t.model.cz-t.model.cv),d<r){var j=r-d-t.model.cv;l._inner[l.count-1].k+=j,a+=j,o+=j,e.c4+=j}if(d>r){var k=r-d-t.model.cv;l._inner[l.count-1].k+=k,a+=k,o+=k,e.c4+=k}return a},e.prototype.k=function(t,e,n){return this.l(t,n,!1)},e.prototype.l=function(t,e,i){var r=0;return 1==e.b9._inner[t].d&&(r+=this.h(t,e.b9._inner[t].o,1,e)),0==e.b9._inner[t].d&&(r+=this.h(e.b9.count,e.b9._inner[t].o,1,e),r+=this.h(t,e.b9._inner[t].o,0,e)),2==e.b9._inner[t].d&&(r+=this.h(e.b9.count,e.b9._inner[t].o,1,e),r+=this.h(e.b9.count,e.b9._inner[t].o,0,e),r+=this.h(t,e.b9._inner[t].o,2,e)),r+=n.truncate(Math.round(e.cf._inner[t].ad(e.b9._inner[t].o))),i||(r=n.truncate(r+Math.round(e.b9._inner[t].e(e)))),r},e.prototype.h=function(t,e,i,r){for(var o=0,a=0;a<t;a++)r.b9._inner[a].d==i&&(o+=n.truncate(Math.round(r.cf._inner[a].ad(e))),6!=r.b9._inner[a].a&&(o+=r.b9._inner[a].k+r.cv-n.truncate(Math.round(r.b9._inner[a].f(r)))),o+=n.truncate(Math.round(r.cf._inner[a].af(e))));return o},e.prototype.m=function(t,e,n){var i=e;if(0==t){for(var r=0,o=0;o<e;o++)0==n.b9._inner[o].d&&r++;i=this.d.count+r}if(1==t){for(var a=0,s=0;s<this.d.count;s++)this.d._inner[s]<e&&a++;i=a}if(2==t){for(var l=0,u=0;u<this.e.count;u++)this.e._inner[u]>e&&l++;i=n.b9.count-1-l}return i},e.prototype.j=function(t,e){for(var n=0;n<e.b9.count;n++)if(e.b9._inner[n].n==t)return n;return-1},e.prototype.n=function(t,e,i){for(var r=i.b9._inner[t].o,o=n.truncate(e.inset.left)+i.cz+i.cv,a=i.cf,s=i.b9,l=0;l<t;l++)0==s._inner[l].d&&(o+=n.truncate(Math.round(a._inner[l].ad(r))),6!=s._inner[l].a&&(o+=s._inner[l].k+e.model.cv-n.truncate(Math.round(s._inner[l].f(i)))),o+=n.truncate(Math.round(a._inner[l].af(r))));return o+=n.truncate(Math.round(a._inner[t].ad(r)))},e.prototype.o=function(t,e,i){var r=0,o=0;o+=n.truncate(e.inset.left);for(var a=i.cf,s=(this.d.count>0||this.e.count>0)&&null!=i.cd?i.cd:i.b9,l=s.count,u=0;u<l;u++){var c=s._inner[u];if(o+=n.truncate(Math.round(a._inner[r].ad(-1))),6!=c.a&&(o+=c.k+e.model.cv-n.truncate(Math.round(c.f(i)))),t<=o)return r;o+=n.truncate(Math.round(a._inner[r].af(-1))),r++}var h=i.b9.count-1;return r>h&&(r=h),r},e.prototype.b=function(t,e){for(var n=e.ce.count,i=0;i<n;i++){var r=e.ce._inner[i],o=r.i;if(t<=o+r.l())return t<o&&(t=o),r.a(t)}return new y(e.ce.count-1,e.ce._inner[e.ce.count-1].m-1)},e.prototype.v=function(t,e,n,i){this.ab(t,e,i,!1);for(var r=e+1;r<i.b9.count;r++)this.aa(r,i,!1,e)},e.prototype.t=function(t,e,n){for(var i=n.b9.count-1;i>=t;i--)this.aa(i,n,!0,t)},e.prototype.x=function(t,e){for(var i=0;i<e.cc.count;i++){for(var r=new n.List$1($n.$,0),o=e.cc._inner[i],a=0;a<o.o.count;a++)if(!o.p._inner[a]){var s=o.o._inner[a];(s.y>t.y||s.y==t.y&&s.x>=t.x)&&r.add(o.q._inner[a])}o.g=!0;for(var l=0;l<r.count;l++){var u=r._inner[l];o.f(u.l),u.l.x=u.l.x+1}for(var c=0;c<r.count;c++){var h=r._inner[c];o.s(h.l,h)}o.g=!1}},e.prototype.y=function(t,e,i){for(var r=0;r<i.cc.count;r++){for(var o=new n.List$1($n.$,0),a=i.cc._inner[r],s=new n.List$1(S.$,0),l=0;l<a.o.count;l++)if(!a.p._inner[l]){var u=a.o._inner[l];(u.y>e.y||u.y==e.y&&u.x>e.x)&&o.add(a.q._inner[l]),u.y==e.y&&u.x==e.x&&s.add(u)}a.g=!0;for(var c=0;c<s.count;c++){var h=s._inner[c];t.j(h,a,i)}for(var p=0;p<o.count;p++){var d=o._inner[p];a.f(d.l),d.l.x=d.l.x-1}for(var f=0;f<o.count;f++){var m=o._inner[f];a.s(m.l,m)}a.g=!1}},e.prototype.aa=function(t,e,i,r){for(var o=0;o<e.cc.count;o++){for(var a=new n.List$1($n.$,0),s=e.cc._inner[o],l=0;l<s.o.count;l++)if(!s.p._inner[l]){var u=s.o._inner[l];u.a5==t&&(u.aj||u.an||u.am)&&a.add(s.q._inner[l])}s.g=!0;for(var c=0;c<a.count;c++){var h=a._inner[c];s.f(h.l),h.l.a5=i?h.l.a5+1:h.l.a5-1,s.s(h.l,h)}s.g=!1}var p=e.cf;if(i){t==p.count-1&&p.add(new sn);for(var d=p._inner[t].count-1;d>=0;d--)(t!=r||p._inner[t]._inner[d].d)&&(p._inner[t+1].add(p._inner[t]._inner[d]),p._inner[t].removeAt(d))}else for(var f=p._inner[t].count-1;f>=0;f--)p._inner[t-1].add(p._inner[t]._inner[f]),p._inner[t].removeAt(f)},e.prototype.ab=function(t,e,i,r){for(var o=0;o<i.cc.count;o++){for(var a=new n.List$1($n.$,0),s=i.cc._inner[o],l=0;l<s.o.count;l++)if(!s.p._inner[l]){var u=s.o._inner[l];u.a5==e&&(u.aj||u.an||u.am)&&a.add(s.q._inner[l])}s.g=!0;for(var c=0;c<a.count;c++){var h=a._inner[c];r?(s.f(h.l),h.l.a5=-800,s.s(h.l,h)):t.j(h.l,s,i)}s.g=!1}var p=i.cf;if(e<p.count)for(var d=p._inner[e].count-1;d>=0;d--)this.a.add(p._inner[e]._inner[d]),p._inner[e].removeAt(d)},e.prototype.z=function(t,e){for(var i=0;i<e.cc.count;i++){for(var r=new n.List$1($n.$,0),o=e.cc._inner[i],a=0;a<o.o.count;a++)if(!o.p._inner[a]){var s=o.o._inner[a];-800==s.a5&&(s.aj||s.an||s.am)&&r.add(o.q._inner[a])}o.g=!0;for(var l=0;l<r.count;l++){var u=r._inner[l];o.f(u.l),u.l.a5=t,o.s(u.l,u)}o.g=!1}},e.prototype.w=function(t,e){for(var n=0;n<e.b9.count;n++)this.ab(t,n,e,!1)},e.prototype.u=function(t,e,n,i,r){this.ab(t,n,e,!0);for(var o=n+1;o<e.b9.count;o++)this.aa(o,e,!1,n);for(var a=e.b9.count-1;a>=i;a--)this.aa(a,e,!0,i);this.z(i,e);for(var s=e.cf,l=this.a.count-1;l>=0;l--)s._inner[n].add(this.a._inner[l]),this.a.removeAt(l)},e.prototype.i=function(t,e){if(null==e)return 0;for(var n=0,i=0;i<e.y;i++)n+=t.ce._inner[i].m;return n+=e.x},e.$t=n.markType(e,"SpatialEngine"),e}(n.Base),Ir=function(t){function e(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];var r=t.call(this)||this;switch(r.c=null,r.a=null,r.b=0,e=null==e?0:e){case 0:break;case 1:var o=n[0],a=n[1];r.a=o,r.b=a}return r}return i.__extends(e,t),e.$t=n.markType(e,"ColumnExchanger"),e}(n.Base),jr=function(t){function e(){return t.call(this,Ir.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"ColumnExchangersCollection",n.ObservableCollection$1.$.specialize(Ir.$)),e}(n.ObservableCollection$1),kr=function(t){function e(e){var i=t.call(this)||this;return i.c=null,i.l=500,i.m=200,i.k=n.dateMinValue(),i.h=!1,i.i=!1,i.j=null,i.a=null,i.f=null,i.b=null,i.d=null,i.a=e,i.g=new Br,i.j=new n.List$1(n.Number_$type,0),i.h=!0,i.d=null,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"g",{get:function(){return this.f},set:function(t){this.f=t},enumerable:!1,configurable:!0}),e.prototype.x=function(t){this.b!=t&&(this.d=t,this.h||this.w())},e.prototype.y=function(t,e){this.k=n.dateNow(),this.h?(this.q(),this.h=!1):this.w()},e.prototype.w=function(){var t=this;if(!this.i){var e=this.n();this.i=!0,this.a.delayedExecutionManager.executeIn((function(){t.i&&(t.i=!1,t.n()<1?t.q():t.w())}),e)}},e.prototype.q=function(){if(null==this.b){var t=null;this.g.count>0&&(t=this.e(this.a.mg)),t!=this.c&&(null!=this.c&&null!=t&&(this.c.q(),this.c=null),null!=t&&(null!=this.d&&(this.d=null),this.b=t,this.c=t,this.c.l=0,this.c.p(),this.t(this.c),this.c.o()))}},e.prototype.t=function(t){var e=this;if(t.c.count==t.l)return this.b=null,void(this.e(this.a.mg)!=this.c&&this.w());this.h?(this.u(t),this.c.l=this.c.l+1,this.t(t)):this.a.delayedExecutionManager.executeIn((function(){var i=e.a.c5;i.animationCompleted=n.delegateCombine(i.animationCompleted,n.runOn(e,e.p));var r=e.a.c5;r.animationCanceled=n.delegateCombine(r.animationCanceled,n.runOn(e,e.o)),e.a.c5.as(),e.u(t),e.j=e.a.c5.m(),0==e.j.count&&e.r(-1)}),t.c._inner[0].i)},e.prototype.u=function(t){var e=t.c._inner[t.l];this.v(e.e),this.s(e.b)},e.prototype.o=function(t,e){this.r(e.a)},e.prototype.p=function(t,e){this.r(e.a)},e.prototype.r=function(t){if(this.j.contains(t)&&this.j.remove(t),0==this.j.count){var e=this.a.c5;e.animationCompleted=n.delegateRemove(e.animationCompleted,n.runOn(this,this.p));var i=this.a.c5;i.animationCanceled=n.delegateRemove(i.animationCanceled,n.runOn(this,this.o)),this.c.l=this.c.l+1,this.t(this.c)}},e.prototype.v=function(t){for(var e=0;e<t.count;e++){for(var n=t._inner[e],i=null,r=0;r<this.a.actualColumns.count;r++)if(this.a.actualColumns._inner[r].mf==n.c){i=this.a.actualColumns._inner[r];break}if(null==i)for(var o=0;o<this.a.actualColumns.count;o++)if(this.a.actualColumns._inner[o].lo==n.c){i=this.a.actualColumns._inner[o];break}if(null!=i){var a=i.externalObject;this.a.propertySetter.setProperty(a,n.d,n.b)}}},e.prototype.s=function(t){for(var e=0;e<t.count;e++){var n=t._inner[e];if(null!=n.a&&!(n.b>=this.a.actualColumns.count)){var i=this.a.actualColumns._inner[n.b];this.a.exchangeColumn(n.a,i)}}},e.prototype.e=function(t){if(null!=this.d)return this.d;for(var e=0;e<this.g.count;e++){var n=this.g._inner[e];if(t>=n.k&&t<=n.j&&!n.i)return n}return null},e.prototype.n=function(){var t=n.timeSpanFromMilliseconds(this.m);n.timeSpanFromMilliseconds(this.l);+this.k!=+n.dateMinValue()&&(t=+n.dateNow()-+this.k);var e=n.truncate(n.timeSpanTotalMilliseconds(t)),i=this.m-e;return i<1&&(i=0),i},e.$t=n.markType(e,"ResponsiveEngine"),e}(n.Base),Tr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.j=null,e.k=null,e.i=0,e.d=new _n,e.a=new jr,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"e",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.g=function(t){return this.e.add(t),this},e.prototype.c=function(){var t=new xn(0);return this.e.add(t),t},e.prototype.f=function(t){return this.b.add(t),this},e.prototype.h=function(){var t=new Ir(0);return this.b.add(t),this},e.$t=n.markType(e,"ResponsivePhase"),e}(n.Base),Rr=function(t){function e(){return t.call(this,Tr.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"ResponsivePhasesCollection",n.ObservableCollection$1.$.specialize(Tr.$)),e}(n.ObservableCollection$1),Dr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.m=null,e.n=null,e.k=0,e.j=0,e.stateEntering=null,e.stateEntered=null,e.stateExited=null,e.h=!1,e.l=0,e.b=new Rr,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"i",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.d=function(t){return this.c.add(t),this},e.prototype.a=function(){var t=new Tr;return this.c.add(t),t},e.prototype.p=function(){null!=this.stateEntering&&this.stateEntering(this,new wn)},e.prototype.o=function(){null!=this.stateEntered&&this.stateEntered(this,new Sn)},e.prototype.q=function(){null!=this.stateExited&&this.stateExited(this,new Pn)},e.$t=n.markType(e,"ResponsiveState"),e}(n.Base),Br=function(t){function e(){return t.call(this,Dr.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"ResponsiveStatesCollection",n.ObservableCollection$1.$.specialize(Dr.$)),e}(n.ObservableCollection$1),Mr=function(t){function e(e){var n=t.call(this,S.$,$n.$,0)||this;return n.v=null,n.v=e,n}return i.__extends(e,t),e.$t=n.markType(e,"GridLayer",n.FastIterationDictionary$2.$.specialize(S.$,$n.$)),e}(n.FastIterationDictionary$2),Er=function(t){function e(){var e=t.call(this)||this;return e.m=0,e.n=0,e.b=null,e.i=0,e.k=0,e.l=0,e.p=null,e.o=0,e.c=0,e.g=0,e.j=0,e.h=0,e.a=0,e.d=0,e.g=0,e.h=0,e.j=0,e.i=0,e}return i.__extends(e,t),e.prototype.e=function(t){var e=this.h;return 6!=this.a&&(e>0&&e<1&&(e=0),e>=1&&(e-=1)),this.g+e*(this.k+t.cv)},e.prototype.f=function(t){var e=Math.abs(this.g+this.h*(this.k+t.cv));return e<-1*(this.k+t.cv)&&(e=-1*(this.k+t.cv)),e>this.k+t.cv&&(e=this.k+t.cv),e},e.$t=n.markType(e,"ColumnInfo"),e}(n.Base),Ar=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.h=0,e.m=0,e.q=0,e.o=0,e.g=0,e.d=0,e.n=0,e.p=0,e.i=0,e.b=null,e.c=null,e}return i.__extends(e,t),e.prototype.l=function(){return this.q+this.g+this.d+(this.o+this.p)*this.m},e.prototype.e=function(t){return-200==t?this.g:-201==t?this.d:null==this.b?this.n:this.b._inner[t]},e.prototype.f=function(t){return null==this.c?-200==t?0:-201==t?this.l()-this.g:t*this.k()+this.g:-200==t?0:-201==t?this.l()-this.d:this.c._inner[t]},e.prototype.k=function(){return this.n+this.p+this.o},e.prototype.j=function(t){return null==this.c?this.n+this.p+this.o:this.b._inner[t]+this.o+this.p},e.prototype.a=function(t){if((t-=this.i)<this.g)return new y(this.h,-200);if(t>this.l()-this.d)return new y(this.h,-201);if(t-=this.g,null==this.b){var e=this.k(),i=n.truncate(t/e);return i>=this.m&&(i=this.m-1),new y(this.h,i)}for(var r=0;r<this.m;r++){var o=this.c._inner[r],a=this.j(r);if(t>=o&&t<=o+a)return new y(this.h,r)}return null},e.$t=n.markType(e,"SectionInfo"),e}(n.Base),Vr=function(t){function e(){var e=t.call(this)||this;return e._actualVisibleRegion=null,e._absoluteWidth=0,e._absoluteHeight=0,e.c3=0,e.c6=0,e.c7=0,e.c1=0,e.cz=0,e.c0=0,e.cv=0,e.dd=0,e.de=0,e.cn=0,e.co=0,e.cx=0,e.cy=0,e.c4=0,e.da=0,e.cq=0,e.cj=0,e.ck=0,e.cl=0,e.ci=0,e.c2=0,e.cw=0,e.am=null,e.r=null,e.j=null,e.ag=null,e.l=null,e.ap=null,e.u=null,e.o=null,e.aa=null,e.q=null,e.k=null,e.ao=null,e.t=null,e.s=null,e.an=null,e.y=null,e.x=null,e.m=null,e.ar=null,e.w=null,e.v=null,e.aq=null,e.n=null,e.z=null,e.p=null,e.ah=null,e.ab=null,e.ac=null,e.ad=null,e.ai=null,e.ae=null,e.af=null,e.aj=null,e.al=null,e.ak=null,e.as=null,e.bt=null,e.b=null,e.bv=null,e.d=null,e.by=null,e.ce=null,e.b9=null,e.cd=null,e.b3=!1,e.b5=!1,e.b2=!1,e.b8=new n.List$1(sn.$,0),e.b6=null,e.bx=null,e.bw=null,e.di=-1,e.g=null,e.b7=null,e.cg=null,e.c8=0,e.db=0,e.c9=0,e.dc=0,e.b1=!1,e.dg=0,e.dh=0,e.df=0,e.actualVisibleRegion=n.Rect.empty,e.am=new Mr("SubContentLayer"),e.j=new Mr("ContentLayer"),e.ag=new Mr("RowSeparatorContentLayer"),e.ap=new Mr("SuperContentLayer"),e.k=new Mr("DecoratorLayer"),e.z=new Mr("PinnedRowsLayer"),e.ab=new Mr("PinnedRowsSubLayer"),e.ac=new Mr("PinnedRowsSuperLayer"),e.ad=new Mr("PinnedSectionLayer"),e.ai=new Mr("RowSeparatorPinnedSectionLayer"),e.ae=new Mr("PinnedSectionSubLayer"),e.af=new Mr("PinnedSectionSuperLayer"),e.aj=new Mr("RowSeparatorPinnedSectionSuperLayer"),e.al=new Mr("SectionLayer"),e.ak=new Mr("RowSeparatorSectionLayer"),e.ao=new Mr("SubHeaderLayer"),e.y=new Mr("HeaderLayer"),e.x=new Mr("HeaderDecoratorLayer"),e.ar=new Mr("SuperHeaderLayer"),e.as=new Mr("VerticalSeparatorLayer"),e.an=new Mr("SubHeaderDecoratorLayer"),e.aq=new Mr("SuperHeaderDecoratorLayer"),e.l=new Mr("FixedContentLayer"),e.n=new Mr("FixedHeaderLayer"),e.p=new Mr("FixedPinnedRowsLayer"),e.ah=new Mr("RowSeparatorFixedPinnedRowsLayer"),e.q=new Mr("FixedSeparatorLayer"),e.r=new Mr("FixedSubContentLayer"),e.t=new Mr("FixedSubHeaderLayer"),e.u=new Mr("FixedSuperContentLayer"),e.w=new Mr("FixedSuperHeaderLayer"),e.s=new Mr("FixedSubHeaderDecoratorLayer"),e.w=new Mr("FixedSuperHeaderLayer"),e.v=new Mr("FixedSuperHeaderDecoratorLayer"),e.m=new Mr("FixedHeaderDecoratorLayer"),e.o=new Mr("FixedMergedCellsLayer"),e.aa=new Mr("PinnedRowsMergedCellsLayer"),e.by=new n.FastIterationDictionary$2(S.$,n.List$1.$.specialize($n.$),0),e.dn(),e.ce=new n.List$1(Ar.$,0),e.b9=new n.List$1(Er.$,0),e.b6=new n.Dictionary$2(n.Number_$type,n.Number_$type,0),e.cg=new n.List$1(n.Number_$type,0),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"actualVisibleRegion",{get:function(){return this._actualVisibleRegion},set:function(t){this._actualVisibleRegion=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"absoluteWidth",{get:function(){return this._absoluteWidth},set:function(t){this._absoluteWidth=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"absoluteHeight",{get:function(){return this._absoluteHeight},set:function(t){this._absoluteHeight=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cr",{get:function(){return n.truncate(this.actualVisibleRegion.top)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cm",{get:function(){return n.truncate(this.actualVisibleRegion.left)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cp",{get:function(){return n.truncate(this.actualVisibleRegion.right)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ch",{get:function(){return n.truncate(this.actualVisibleRegion.height)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cs",{get:function(){return n.truncate(this.actualVisibleRegion.width)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bm",{get:function(){return this.am},set:function(t){this.am=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a1",{get:function(){return this.r},set:function(t){this.r=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"at",{get:function(){return this.j},set:function(t){this.j=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bg",{get:function(){return this.ag},set:function(t){this.ag=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"av",{get:function(){return this.l},set:function(t){this.l=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bp",{get:function(){return this.ap},set:function(t){this.ap=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a4",{get:function(){return this.u},set:function(t){this.u=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ay",{get:function(){return this.o},set:function(t){this.o=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ba",{get:function(){return this.aa},set:function(t){this.aa=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a0",{get:function(){return this.q},set:function(t){this.q=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"au",{get:function(){return this.k},set:function(t){this.k=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bo",{get:function(){return this.ao},set:function(t){this.ao=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a3",{get:function(){return this.t},set:function(t){this.t=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a2",{get:function(){return this.s},set:function(t){this.s=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bn",{get:function(){return this.an},set:function(t){this.an=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a8",{get:function(){return this.y},set:function(t){this.y=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a7",{get:function(){return this.x},set:function(t){this.x=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aw",{get:function(){return this.m},set:function(t){this.m=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"br",{get:function(){return this.ar},set:function(t){this.ar=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a6",{get:function(){return this.w},set:function(t){this.w=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a5",{get:function(){return this.v},set:function(t){this.v=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bq",{get:function(){return this.aq},set:function(t){this.aq=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ax",{get:function(){return this.n},set:function(t){this.n=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a9",{get:function(){return this.z},set:function(t){this.z=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"az",{get:function(){return this.p},set:function(t){this.p=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bh",{get:function(){return this.ah},set:function(t){this.ah=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bb",{get:function(){return this.ab},set:function(t){this.ab=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bc",{get:function(){return this.ac},set:function(t){this.ac=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bd",{get:function(){return this.ad},set:function(t){this.ad=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bi",{get:function(){return this.ai},set:function(t){this.ai=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"be",{get:function(){return this.ae},set:function(t){this.ae=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bf",{get:function(){return this.af},set:function(t){this.af=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bj",{get:function(){return this.aj},set:function(t){this.aj=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bl",{get:function(){return this.al},set:function(t){this.al=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bk",{get:function(){return this.ak},set:function(t){this.ak=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bs",{get:function(){return this.as},set:function(t){this.as=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bu",{get:function(){return this.bt},set:function(t){this.bt=t},enumerable:!1,configurable:!0}),e.prototype.f=function(t,e){t+=this.actualVisibleRegion.left,e+=this.actualVisibleRegion.top;for(var n=this.cc,i=n.count,r=i-1;r>=0&&n._inner[r]!=this.at;r--)for(var o=n._inner[r].q,a=n._inner[r].q.count,s=n._inner[r].p,l=0;l<a;l++)if(!s._inner[l]){var u=o._inner[l];if(t>=u.cu&&t<=u.cu+u.hd&&e>=u.cv&&e<=u.cv+u.fu)return this.d=u,u}if(null!=this.d){var c=this.d;if(t>=c.cu&&t<=c.cu+c.hd&&e>=c.cv&&e<=c.cv+c.fu)return this.d=c,c}for(var h=(i=(n=this.cc).count)-1;h>=0;h--)for(var p=n._inner[h].q,d=n._inner[h].q.count,f=n._inner[h].p,m=0;m<d;m++)if(!f._inner[m]){var g=p._inner[m];if(t>=g.cu&&t<=g.cu+g.hd&&e>=g.cv&&e<=g.cv+g.fu)return this.d=g,g}return null},Object.defineProperty(e.prototype,"bz",{get:function(){return this.by},set:function(t){this.by=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cf",{get:function(){for(;this.b8.count<this.b9.count;)this.b8.add(new sn);return this.b8},set:function(t){this.b8=t},enumerable:!1,configurable:!0}),e.prototype.b4=function(){return null!=this.bx&&null!=this.bw&&this.bx.x>=0&&this.bw.x>=0},e.prototype.h=function(t){if(t==this.di)return this.g;var e=null;return this.b6.containsKey(t)&&(e=this.b9._inner[this.b6.item(t)]),this.di=t,this.g=e,e},e.prototype.dj=function(t){this.b9.add(t),this.b6.addItem(t.o,this.b9.count-1)},e.prototype.dn=function(){this.b7=new n.List$1(Mr.$,0),this.b7.add(this.bm),this.b7.add(this.at),this.b7.add(this.bg),this.b7.add(this.bp),this.b7.add(this.au),this.b7.add(this.bb),this.b7.add(this.a9),this.b7.add(this.bc),this.b7.add(this.a1),this.b7.add(this.av),this.b7.add(this.a4),this.b7.add(this.az),this.b7.add(this.bh),this.b7.add(this.ba),this.b7.add(this.ay),this.b7.add(this.a0),this.b7.add(this.bl),this.b7.add(this.bk),this.b7.add(this.be),this.b7.add(this.bd),this.b7.add(this.bi),this.b7.add(this.bf),this.b7.add(this.bj),this.b7.add(this.bo),this.b7.add(this.bn),this.b7.add(this.a8),this.b7.add(this.a7),this.b7.add(this.br),this.b7.add(this.bq),this.b7.add(this.a3),this.b7.add(this.a2),this.b7.add(this.ax),this.b7.add(this.aw),this.b7.add(this.a6),this.b7.add(this.a5),this.b7.add(this.bs)},Object.defineProperty(e.prototype,"cc",{get:function(){return this.b7},enumerable:!1,configurable:!0}),e.prototype.b0=function(){for(var t=0;t<this.b7.count;t++)for(var e=0;e<this.b7._inner[t].o.count;e++){if(!this.b7._inner[t].p._inner[e])if(this.b7._inner[t].o._inner[e]!=this.b7._inner[t].q._inner[e].l)return!1}return!0},e.prototype.dm=function(){this.g=null,this.di=-1,this.b9.clear(),this.b6.clear()},e.prototype.dl=function(){this.dm(),this.ce.clear(),this.bm.u(),this.at.u(),this.bp.u(),this.au.u(),this.bb.u(),this.a9.u(),this.bc.u(),this.a1.u(),this.av.u(),this.a4.u(),this.az.u(),this.a0.u(),this.bl.u(),this.be.u(),this.bd.u(),this.bf.u(),this.bo.u(),this.bn.u(),this.a8.u(),this.a7.u(),this.br.u(),this.bq.u(),this.a3.u(),this.a2.u(),this.ax.u(),this.aw.u(),this.a6.u(),this.a5.u(),this.bs.u()},e.prototype.c=function(){var t=new Ke;return t.ao=new n.RectData(this.actualVisibleRegion.x,this.actualVisibleRegion.y,this.actualVisibleRegion.width,this.actualVisibleRegion.height),t.ar=this.absoluteWidth,t.aq=this.absoluteHeight,t.a4=this.c6,t.ax=this.c3,t.aw=this.c1,t.au=this.cz,t.av=this.c0,t.as=this.cv,t.a0=this.dd,t.a1=this.de,t.a2=this.cr,t.az=this.cm,t.ay=this.ch,t.a3=this.cs,t.ae=this.a(this.bm),t.a=this.a(this.at),t.ah=this.a(this.bp),t.b=this.a(this.au),t.t=this.a(this.bb),t.r=this.a(this.a9),t.u=this.a(this.bc),t.i=this.a(this.a1),t.c=this.a(this.av),t.l=this.a(this.a4),t.g=this.a(this.az),t.h=this.a(this.a0),t.ad=this.a(this.bl),t.w=this.a(this.be),t.v=this.a(this.bd),t.x=this.a(this.bf),t.ag=this.a(this.bo),t.af=this.a(this.bn),t.p=this.a(this.a8),t.o=this.a(this.a7),t.aj=this.a(this.br),t.ai=this.a(this.bq),t.k=this.a(this.a3),t.j=this.a(this.a2),t.e=this.a(this.ax),t.d=this.a(this.aw),t.n=this.a(this.a6),t.m=this.a(this.a5),t.ak=this.a(this.bs),t.s=this.a(this.ba),t.f=this.a(this.ay),t.y=this.a(this.bg),t.z=this.a(this.bh),t.ac=this.a(this.bk),t.aa=this.a(this.bi),t.ab=this.a(this.bj),t.a7(),t.al=this.b,t.an=this.bv,t},e.prototype.a=function(t){var e,r,o=new Ue(t.v),a=t==this.a8;try{for(var s=i.__values(n.fromEnum(t.n)),l=s.next();!l.done;l=s.next()){var u=l.value.b(null);this.b1&&a&&(u.s+=this.cr),o.e(u)}}catch(t){e={error:t}}finally{try{l&&!l.done&&(r=s.return)&&r.call(s)}finally{if(e)throw e.error}}return o},e.prototype.i=function(t,e,n,i,r){var o=new an;return o.i=n,o.j=n,o.f=i,o.n=e.o,o.d=r,this.cf._inner[t].add(o),o},e.prototype.dk=function(t){for(var e=this.cf,n=0;n<e.count;n++)for(var i=e._inner[n],r=i.count-1;r>=0;r--)i._inner[r].o==t.o&&i.removeAt(r)},e.prototype.cb=function(t){for(var e=new n.List$1(an.$,0),i=this.cf,r=0;r<i.count;r++)for(var o=i._inner[r],a=o.count-1;a>=0;a--)o._inner[a].n==t.o&&e.add(o._inner[a]);return e},e.prototype.ca=function(t){for(var e=new n.List$1($n.$,0),i=0;i<this.cc.count;i++){new n.List$1($n.$,0);for(var r=this.cc._inner[i],o=0;o<r.o.count;o++)if(!r.p._inner[o]){var a=r.q._inner[o];a.l.a5==t.m&&a.l.b==t.c&&e.add(a)}}return e},e.prototype.e=function(t,e,n){void 0===n&&(n=1);for(var i=0;i<this.cc.count;i++)for(var r=this.cc._inner[i],o=0;o<r.o.count;o++)if(!r.p._inner[o]){var a=r.q._inner[o];if(a.l.a5==t&&a.l.x==e&&a.l.af==n)return a}return null},e.prototype.c5=function(){for(var t=0,e=0;e<this.ce.count;e++)t+=this.ce._inner[e].m;return t},e.$t=n.markType(e,"VisualModel"),e}(n.Base),Nr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=0,e.a=0,e}return i.__extends(e,t),e.$t=n.markType(e,"CheckboxListIndexTypeChangedEventArgs"),e}(n.Base),Fr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"SelectAllCheckboxChangedEventArgs"),e}(n.Base),$r=function(t){function e(){var e=t.call(this)||this;return e.e=new n.Dictionary$2(n.DomWrapper_$type,r.XCheckbox.$,0),e.h=new n.Dictionary$2(n.DomWrapper_$type,r.XLabel.$,0),e.g=new n.Dictionary$2(n.DomWrapper_$type,r.XLabel.$,0),e.f=new n.Dictionary$2(n.DomWrapper_$type,r.XIcon.$,0),e.m=null,e.a=null,e.l=null,e.k=null,e.c=null,e.b=null,e.i=null,e.d=!1,e.j=null,e}return i.__extends(e,t),e.prototype.q=function(){},e.prototype.p=function(t){if(null==t)return this.i=null,void this.e.clear();this.i=t,this.aa(),this.aj(),this.am(),this.x();Math.round(t.rootWrapper.width()),Math.round(t.rootWrapper.height());this.i.rootWrapper.setStyleProperty("position","relative"),this.i.rootWrapper.setStyleProperty("padding-bottom","4px"),this.al()},e.prototype.aa=function(){null!=this.i&&this.ab(this.i)},e.prototype.ab=function(t){var e=t.rootWrapper.getChildAt(0);this.k=e,this.b.w=new r.XInputGroup;var n=t.getSubRenderer(e);this.b.w.provideContainer(n);n.getExternal(this.b.w,n.rootWrapper,n.getExternal(this.b,null,null));this.b.w.d=this.b.y,this.b.w.p=this.b.baseTheme,this.b.w.t=this.b.density;var i=t.createElement("div"),o=t.getSubRenderer(i),a=new r.XPrefix;a.provideContainer(o);o.getExternal(a,o.rootWrapper,o.getExternal(this.b,null,null));var s=t.createElement("div"),l=t.getSubRenderer(s);this.c=new r.XIcon,this.c.provideContainer(l),this.c.fill=this.b.searchIconColor,this.c.svgPath=zr.cl;o.getExternal(this.c,l.rootWrapper,l.getExternal(this.b,null,null));a.appendContentChild(s),this.b.w.appendContentChild(i),this.b.w.inputs.add(a);var u=t.createElement("div");u.setRawStyleProperty("flex-grow","1");var c=t.getSubRenderer(u);this.b.u=new r.XInput,this.b.u.provideContainer(c),this.b.u.b8="text";c.getExternal(this.b.u,c.rootWrapper,c.getExternal(this.b,null,null));null!=this.b.b4&&(this.b.u.cg=this.b.b4),this.b.w.appendContentChild(u),this.b.w.inputs.add(this.b.u),this.b.dl()},e.prototype.x=function(){if(null!=this.i){var t=this.i.rootWrapper.getChildAt(3);if(t.setStyleProperty("width","100%"),t.setStyleProperty("margin","4px 0px 0px 0px"),this.b.a3||this.b.showSelectAll){var e=this.b.a9();t.setStyleProperty("height","calc(100% - "+e+"px")}else t.setStyleProperty("height","100%")}},e.prototype.r=function(t,e,i){var o=null;if(0==t.getChildCount()){o=new r.XCheckbox;var a=this.i.getSubRenderer(t);o.provideContainer(a);this.i.getExternal(o,a.rootWrapper,this.i.getExternal(this.b,null,null));this.e.addItem(t,o),o.n=this.b.baseTheme,o.y=!0,o.change=n.delegateCombine(o.change,n.runOn(this,this.n));var s=this.i.createElement("div");switch(t.setStyleProperty("display","flex"),t.setStyleProperty("height","100%"),t.setStyleProperty("align-items","center"),this.b.density){case 1:t.setStyleProperty("margin-top","-4px");break;case 2:t.setStyleProperty("margin-top","-1px");break;case 4:case 3:t.setStyleProperty("margin-top","1px")}t.append(s)}else o=this.e.item(t);if(null!=o){var l=o.z;try{o.z=!0,o.ar=this.b.a7,o.a4=e,i?0==this.b.indexType?o.checked=!1:o.checked=!0:0==this.b.indexType?o.checked=!0:o.checked=!1}finally{o.z=l}o.dk=this.b.et,o.dd=this.b.er,o.dl=this.b.eu,o.de=this.b.es,o.dm=this.b.ev}},e.prototype.s=function(t,e,i,o,a,s,l,u,c,h,p){var d,f=this,m=null,g=null,y=null,b=null;if(0==t.getChildCount()){b=new r.XIcon,m=new r.XLabel,g=new r.XLabel,t.setStyleProperty("display","flex"),t.setStyleProperty("align-items","center"),t.setStyleProperty("height","100%");var v=this.i.createElement("div"),C=this.i.getSubRenderer(v);b.provideContainer(C),b.ap=24,b.as=24,v.setStyleProperty("margin-right","10px");var x=this.i.createElement("div"),_=this.i.getSubRenderer(x);m.provideContainer(_);var w=this.i.createElement("div"),S=this.i.getSubRenderer(w);g.provideContainer(S),this.h.addItem(t,m),this.g.addItem(t,g),this.f.addItem(t,b),y=new r.XIcon;var P=this.i.createElement("div"),O=this.i.getSubRenderer(P);y.provideContainer(O),P.setStyleProperty("height","100%"),P.setStyleProperty("margin-left","-4px"),y.al=16,y.at=16,y.ap=16,y.as=16,y.ar=2,y.svgPath='<svg width="16" height="16" viewBox="0 2 24 24" fill="none" stroke="rgba(0, 0, 0, 255)" xmlns="http://www.w3.org/2000/svg">\r\n<path d="M20 11.1205L16.2166 14.8795L12.4575 11.1205" stroke-linecap="round" stroke-linejoin="round"/>\r\n</svg>\r\n',y.dp=n.BrushUtil.j(120,0,0,0),y.ao=n.DeviceUtils.g(1),x.setStyleProperty("display","flex"),x.setStyleProperty("height","100%"),x.setStyleProperty("align-items","center"),x.setStyleProperty("justify-content","start"),x.setStyleProperty("flex","auto"),w.setStyleProperty("display","flex"),w.setStyleProperty("height","100%"),w.setStyleProperty("align-items","center"),w.setStyleProperty("justify-content","center"),w.setStyleProperty("flex-direction","column"),t.append(v),t.append(x),t.append(w),t.append(P)}else m=this.h.item(t),g=this.g.item(t),b=this.f.item(t);if(null!=m)try{b.svg=null,b.cu=null,b.az=null;var I=null!=a?a:((d=new n.FontInfo).f=l,d.q=s,d);m.ak=!0,m.p=this.b.baseTheme,m.y=I,m.text=i,m.l=0;var j=t.getChildAt(0),k=null!=u||null!=c||null!=p,T=!1;if(j.setStyleProperty("width",k?"24px":"0px"),null!=c){T=!0,b.cu=c;var R=function(){var t=new n.DataContext;return t.series=f,t.item=null,t.itemBrush=function(){var t=new n.Brush;return t.color=n.Color.u(255,0,0,0),t.fill="black",t}(),t}();b.az=R}else if(null!=u){var D=n.typeCast(n.IDataLegendTarget_$type,u).getDataLegendSeries();if(null!=D)for(var B=0;B<D.length;B++){var M=D[B],E=M.getDataLegendSeriesTitle();if(i==E||i+" "+o==E){T=!0,b.cu=M.getDataLegendBadge(),b.az=M.getDataLegendBadgeContext();break}}j.setStyleProperty("padding-bottom","6px")}else null!=p&&(T=!0,b.aq=0,b.ar=0,b.al=24,b.at=24,b.ap=24,b.as=24,b.dh=n.BrushUtil.j(0,255,255,255),b.fill=n.BrushUtil.j(0,255,255,255),b.dp=n.BrushUtil.j(0,255,255,255),b.di=n.BrushUtil.j(0,255,255,255),b.svg=p);T||b.view.af();var A=t.getChildAt(2),V=t.getChildAt(3);if(n.stringIsNullOrEmpty(o))return A.setStyleProperty("display","none"),void V.setStyleProperty("display","none");A.setStyleProperty("display","flex"),V.setStyleProperty("display","flex"),g.p=this.b.baseTheme,I.f=I.f-2,g.ak=!0,g.y=I,g.text=o,g.dj=n.BrushUtil.j(180,0,0,0),g.l=0}finally{}},e.prototype.ae=function(){var t,e;if(null!=this.e)try{for(var r=i.__values(n.fromEnum(this.e)),o=r.next();!o.done;o=r.next()){o.value.value.n=this.b.baseTheme}}catch(e){t={error:e}}finally{try{o&&!o.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}null!=this.a&&(this.a.n=this.b.baseTheme)},e.prototype.ac=function(){},e.prototype.n=function(t,e){var n=t,i=parseInt(n.a4.toString()),r=n.checked;1==r?0==this.b.indexType?this.b.d0(i):this.b.cz(i):0==this.b.indexType?this.b.cz(i):this.b.d0(i),this.b.di(i,r),this.al(!1)},e.prototype.o=function(){},e.prototype.y=function(t,e){var r,o;try{for(var a=i.__values(n.fromEnum(this.e)),s=a.next();!s.done;s=a.next()){var l=s.value.value,u=parseInt(l.a4.toString());u==t&&(l.checked=e,this.b.di(u,e))}}catch(t){r={error:t}}finally{try{s&&!s.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}this.al()},e.prototype.z=function(t){var e,r;try{for(var o=i.__values(n.fromEnum(this.e)),a=o.next();!a.done;a=o.next()){a.value.value.checked=t}}catch(t){e={error:t}}finally{try{a&&!a.done&&(r=o.return)&&r.call(o)}finally{if(e)throw e.error}}},e.prototype.u=function(t){this.m=t,null!=this.m&&this.m.setStyleProperty("margin","5px 0px 4px 0px")},e.prototype.am=function(){var t=this.i;if(null!=t&&null!=this.m){var e=t.createElement("div"),i=t.getSubRenderer(e);this.a=new r.XCheckbox,this.a.provideContainer(i);this.i.getExternal(this.a,i.rootWrapper,this.i.getExternal(this.b,null,null));this.a.n=this.b.baseTheme,this.l=t.createElement("label"),this.l.setRawText(this.b.cp),this.l.setStyleProperty("font-size","13px"),this.m.setStyleProperty("display","flex"),this.m.setStyleProperty("flex-direction","row"),this.m.setStyleProperty("font-family","Verdana"),this.m.setStyleProperty("align-items","center"),this.m.append(e),this.m.append(this.l),this.an(),this.ak();var o=this.a;o.change=n.delegateCombine(o.change,n.runOn(this,this.w)),this.a.y=!0}},e.prototype.ak=function(){null!=this.l&&(this.l.setRawText(this.b.cp),n.NativeUI.q(this.l,this.b.ep))},e.prototype.an=function(){if(null!=this.l){var t=this.b.showSelectAll?"flex":"none";this.m.setStyleProperty("display",t)}},e.prototype.aj=function(){null!=this.k&&this.k.setStyleProperty("display",this.b.a3?"block":"none"),null!=this.j&&this.j.setStyleProperty("display",this.b.a3?"block":"none")},e.prototype.al=function(t){if(void 0===t&&(t=!0),null!=this.a){var e=this.d;this.d=!0;var n=this.a.z;this.a.z=t;try{if(this.b.a0)return void(this.a.indeterminate=!0);this.a.indeterminate=!1,0==this.b.indexType?this.a.checked=0==this.b.keys.count:this.a.checked=0!=this.b.keys.count}finally{this.a.z=n,this.d=e}}},e.prototype.w=function(t,e){this.d||e.isIndeterminate||(e.isChecked?(this.b.d3(),this.b.dr(e.isChecked)):(this.b.c5(),this.b.dr(e.isChecked)))},e.prototype.ai=function(){var t=this.i;if(null!=t){var e=t.rootWrapper;null!=e&&(n.NativeUI.q(e,this.b.e7),n.NativeUI.m(e,this.b.backgroundColor))}},e.prototype.ag=function(){null!=this.c&&(this.c.fill=this.b.searchIconColor)},e.prototype.ah=function(){null!=this.b.am?this.l.setStyleProperty("font",this.b.am.fontString):(this.l.setStyleProperty("font-family","Verdana"),this.l.setStyleProperty("font-size","13px"))},e.prototype.ad=function(){null!=this.a&&(this.a.dk=this.b.et,this.a.dd=this.b.er,this.a.dl=this.b.eu,this.a.de=this.b.es,this.a.dm=this.b.ev)},e.prototype.af=function(t){null!=this.j&&n.NativeUI.w(this.j,t)},e.prototype.t=function(t){this.j=t},e.prototype.v=function(){var t,e;try{for(var r=i.__values(n.fromEnum(this.f)),o=r.next();!o.done;o=r.next()){var a=o.value;a.value.cu=null,a.value.az=null}}catch(e){t={error:e}}finally{try{o&&!o.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},e.$t=n.markType(e,"CheckboxListView"),e}(n.Base),zr=function(t){function e(){var i=t.call(this)||this;i._view=null,i.f=null,i.j=null,i.ai=null,i.ag=null,i.aj=null,i.ah=null,i.d=null,i.aq=!1,i.c=null,i.t=null,i.v=null,i.ar=!1,i.ao=null,i.g=new c,i.a=null,i.propertyChanged=null,i.selectedKeyAdded=null,i.selectedKeyRemoved=null,i.checkedChanged=null,i.labelClicked=null,i.bg=null,i.bj=null,i.bf=null,i.bn=null,i.bl=null,i.bm=null,i.bk=null,i.x=3,i.bb=-1,i.ak=null,i.k=1,i.ac=1,i.ae=2,i.el=n.BrushUtil.j(255,24,29,31),i.ej=null,i.at=!0,i.em=null,i.ek=null,i.al=null,i.ee=null,i.ec=null,i.ef=null,i.ed=null,i.eg=null,i.a6=NaN,i.aa=0,i.ei=null,i.indexTypeChanged=null,i.as=!1,i.co=null,i.en=null,i.ea=e.ey,i.a4=!0,i.eb=e.ew,i.eh=e.ex,i.eo=e.ey,i.keysCleared=null,i.selectAllCheckboxChanged=null,i.bd=-1,i.a2=!0,i.ay=!0,i.au=!1;var r=i.g;r.collectionChanged=n.delegateCombine(r.collectionChanged,n.runOn(i,i.du)),i.g.am(n.runOn(i,i.dt)),i.d=new n.FilterFactory;var o=new $r;return o.b=i,i.view=o,i.view.q(),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"view",{get:function(){return this._view},set:function(t){this._view=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.v},set:function(t){this.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"u",{get:function(){return this.t},set:function(t){this.t=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return null==this.f?null:this.f.actualDataSource},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ap",{get:function(){return null==this.ao&&(this.ao=new n.SRProvider(this.view.i),this.ao.cb("DataGrid")),this.ao},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"keys",{get:function(){return this.g},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"primaryKey",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,e!=this.a&&this.dp("PrimaryKey",e,this.a)},enumerable:!1,configurable:!0}),e.prototype.clearSelectedKeys=function(){this.keys.clear(),null!=this.keysCleared&&this.keysCleared(this,new p)},e.prototype.addSelectedKey=function(t,e){this.keys.add(new s(t,e))},e.prototype.insertSelectedKey=function(t,e,n){this.keys.insert(t,new s(e,n))},e.prototype.removeSelectedKeyAt=function(t){this.keys.removeAt(t)},e.prototype.dt=function(){this.db(),null!=this.keysCleared&&this.keysCleared(this,new p)},e.prototype.du=function(t,e){if(null!=this.e&&null!=this.e.actualSchema&&!this.aq)switch(e.action){case 0:for(var n=0;n<e.newItems.count;n++)this.dm(e.newItems.item(n));break;case 1:for(var i=0;i<e.oldItems.count;i++)this.dn(e.oldItems.item(i));break;case 2:for(var r=0;r<e.oldItems.count;r++)this.dn(e.oldItems.item(r));for(var o=0;o<e.newItems.count;o++)this.dm(e.newItems.item(o));break;case 4:this.view.z(0==this.indexType);for(var a=0;a<this.keys.ae.count;a++)this.dm(this.keys.ae._inner[a])}},e.prototype.dm=function(t){var e,n=this,i=this.e.indexOfKey(t.value);(i>=0&&this.view.y(i,1==this.indexType),null!=this.selectedKeyAdded)&&this.selectedKeyAdded(this,((e=new d).c=i,e.b=1==n.indexType,e.a=t.value,e))},e.prototype.dn=function(t){var e,n=this,i=this.e.indexOfKey(t.value);(i>=0&&this.view.y(i,0==this.indexType),null!=this.selectedKeyRemoved)&&this.selectedKeyRemoved(this,((e=new d).c=i,e.b=0==n.indexType,e.a=t.value,e))},e.prototype.di=function(t,e){if(null!=this.checkedChanged&&0==this.ar){var n=null;if(null!=this.e.actualPrimaryKey&&this.e.actualPrimaryKey.length>0){n=new Array(this.e.actualPrimaryKey.length);for(var i=0;i<this.e.actualPrimaryKey.length;i++)n[i]=this.e.getItemPropertyAtIndex(t,this.e.actualPrimaryKey[i])}this.checkedChanged(this,((r=new d).c=t,r.b=e,r.a=n,r))}var r},e.prototype.notifySizeChanged=function(){this.view.o()},e.prototype.destroy=function(){if(null!=this.f){var t=this.f;t.cellClicked=n.delegateRemove(t.cellClicked,n.runOn(this,this.c7));var e=this.f;if(e.sizeChanged=n.delegateRemove(e.sizeChanged,n.runOn(this,this.c8)),null!=this.f.actualDataSource){var i=this.f.actualDataSource;i.schemaChanged=n.delegateRemove(i.schemaChanged,n.runOn(this,this.dq))}}if(null!=this.t){var r=this.t;r.change=n.delegateRemove(r.change,n.runOn(this,this.c9))}if(this.provideContainer(null,null,null),null!=this.j){var o=this.j;o.cellUpdating=n.delegateRemove(o.cellUpdating,n.runOn(this,this.c3))}},e.prototype.provideContainer=function(t,e,i){if(this.f=e,null!=this.f){this.f.scrollbarStyle=1;var r=this.f;r.sizeChanged=n.delegateCombine(r.sizeChanged,n.runOn(this,this.c8)),this.f.scrollbarBackground=this.e0,this.f.headerHeight=0,this.f.rowSeparatorHeight=0,this.f.defaultColumnMinWidth=NaN,this.f.autoGenerateColumns=!1,this.f.activationMode=0,this.f.editMode=0;var o=this.f;o.cellClicked=n.delegateCombine(o.cellClicked,n.runOn(this,this.c7)),null!=this.bg&&(this.f.itemsSource=this.bg,this.c2(),this.ds()),null!=this.bj&&(this.ds(),this.d6())}this.view.u(i),this.av&&this.d8(),this.view.p(t)},e.prototype.c8=function(t,e){this.f.scrollbarStyle=this.ab},e.prototype.provideSelectAllSection=function(t){this.view.u(t)},e.prototype.c7=function(t,e){if(!(!this.av&&0==e.cellInfo.l.a5||this.av&&1==e.cellInfo.l.a5)){var n=e.cellInfo.l.x;if(-1!=n){var i=e.cellInfo.hn,r=this.i(i);this.a1&&(this.keys.contains(r)?(null!=this.ai&&this.ai.setPropertyValue(i,!1),this.keys.remove(r)):(null!=this.ai&&this.ai.setPropertyValue(i,!0),this.keys.add(r))),this.de(n,this.keys.contains(r))}}},e.prototype.de=function(t,e){var n,i=null;if(null!=this.e.actualPrimaryKey&&this.e.actualPrimaryKey.length>0){i=new Array(this.e.actualPrimaryKey.length);for(var r=0;r<this.e.actualPrimaryKey.length;r++)i[r]=this.e.getItemPropertyAtIndex(t,this.e.actualPrimaryKey[r])}null!=this.labelClicked&&this.labelClicked(this,((n=new d).c=t,n.b=e,n.a=i,n))},e.prototype.c3=function(t,e){var n=e.cellInfo.l.x;if(-1!=n){var i=!1;if(null!=e.cellInfo.hn){var r=this.i(e.cellInfo.hn);this.keys.contains(r)&&(i=!0)}this.view.r(e.content.element,n,i)}},e.prototype.d7=function(t,e){var i=e.cellInfo.l.x;if(-1!=i){var r=null,o=null,a=null;if(null!=e.cellInfo.hn&&(r=this.ag.getPropertyValue(e.cellInfo.hn),null!=this.aj&&(o=this.aj.getPropertyValue(e.cellInfo.hn)),null!=this.ah)){var s=n.EnumUtil.getEnumValue(n.DataSeriesPropertyType_$type,this.ah.getPropertyValue(e.cellInfo.hn));0==s?a=n.SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons","string-field"):2==s?a=n.SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons","numeric-field"):1==s&&(a=n.SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons","date-time-field"))}this.view.s(e.content.element,i,r,o,this.ak,"Verdana",13,this.bf,null,null,a)}},e.prototype.dj=function(t){if(null!=this.bj){var e=this.d.property(this.bj).cast(n.enumGetBox(n.DataSourceSchemaPropertyType_$type,0)).toLower().contains(t);if(this.f.filterExpressions.k.contains(this.c)){var i=this.f.filterExpressions.k.indexOf(this.c);this.f.filterExpressions.k.item(i,this.c=e)}else this.c=e,this.f.filterExpressions.add(this.c)}},Object.defineProperty(e.prototype,"itemsSource",{get:function(){return this.bg},set:function(t){var e=this.bg;this.bg=t,e!=this.bg&&this.dp("ItemsSource",e,this.bg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dataMemberPath",{get:function(){return this.bj},set:function(t){var e=this.bj;this.bj=t,e!=this.bj&&this.dp("DataMemberPath",e,this.bj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bh",{get:function(){return this.bf},set:function(t){var e=this.bf;this.bf=t,e!=this.bf&&this.dp("DataLegendTarget",e,this.bf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cw",{get:function(){return this.bn},set:function(t){var e=this.bn;this.bn=t,e!=this.bn&&this.dp("SubtitleMemberPath",e,this.bn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cb",{get:function(){return this.bl},set:function(t){var e=this.bl;this.bl=t,e!=this.bl&&this.dp("PropertyTypeMemberPath",e,this.bl)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectedMemberPath",{get:function(){return this.bm},set:function(t){var e=this.bm;this.bm=t,e!=this.bm&&this.dp("SelectedMemberPath",e,this.bm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b4",{get:function(){return this.bk},set:function(t){var e=this.bk;this.bk=t,e!=this.bk&&this.dp("FilterPlaceholderText",e,this.bk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"y",{get:function(){return this.x},set:function(t){var e=this.x;this.x=t,e!=this.x&&this.dp("SearchInputType",n.enumGetBox(r.InputGroupDisplayType_$type,e),n.enumGetBox(r.InputGroupDisplayType_$type,this.x))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"be",{get:function(){return this.bb},set:function(t){var e=this.bb;this.bb=t,e!=this.bb&&this.dp("RowHeight",e,this.bb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bc",{get:function(){if(null!=this.f)return this.f.actualRowHeight;if(-1!=this.bb)return this.bb;switch(this.density){case 4:case 3:return h.q;case 0:case 2:return h.r;case 1:return h.p}return h.r},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"am",{get:function(){return this.ak},set:function(t){var e=this.ak;this.ak=t,e!=this.ak&&this.dp("CellTextStyle",e,this.ak)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"indexType",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.dp("IndexType",n.enumGetBox(u,e),n.enumGetBox(u,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"baseTheme",{get:function(){return this.ac},set:function(t){var e=this.ac;this.ac=t,e!=this.ac&&this.dp("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,this.ac))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"density",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=this.ae&&this.dp("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.ae))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"searchIconColor",{get:function(){return this.el},set:function(t){var e=this.el;this.el=t,e!=this.el&&this.dp("SearchIconColor",e,this.el)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e1",{get:function(){return this.ej},set:function(t){var e=this.ej;this.ej=t,e!=this.ej&&this.dp("SearchBackgroundColor",e,this.ej)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a1",{get:function(){return this.at},set:function(t){var e=this.at;this.at=t,e!=this.at&&this.dp("LabelClickTriggersChange",e,this.at)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"searchTextColor",{get:function(){return this.em},set:function(t){var e=this.em;this.em=t,e!=this.em&&this.dp("SearchTextColor",e,this.em)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e2",{get:function(){return this.ek},set:function(t){var e=this.ek;this.ek=t,e!=this.ek&&this.dp("SearchBorderColor",e,this.ek)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"an",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,e!=this.al&&this.dp("SearchTextStyle",e,this.al)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"et",{get:function(){return this.ee},set:function(t){var e=this.ee;this.ee=t,e!=this.ee&&this.dp("CheckboxTickColor",e,this.ee)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"er",{get:function(){return this.ec},set:function(t){var e=this.ec;this.ec=t,e!=this.ec&&this.dp("CheckboxCheckedBackgroundColor",e,this.ec)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"eu",{get:function(){return this.ef},set:function(t){var e=this.ef;this.ef=t,e!=this.ef&&this.dp("CheckboxUncheckedBackgroundColor",e,this.ef)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"es",{get:function(){return this.ed},set:function(t){var e=this.ed;this.ed=t,e!=this.ed&&this.dp("CheckboxCheckedBorderColor",e,this.ed)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ev",{get:function(){return this.eg},set:function(t){var e=this.eg;this.eg=t,e!=this.eg&&this.dp("CheckboxUncheckedBorderColor",e,this.eg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a7",{get:function(){return this.a6},set:function(t){var e=this.a6;this.a6=t,e!=this.a6&&this.dp("CheckboxCornerRadius",e,this.a6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ab",{get:function(){return this.aa},set:function(t){var e=this.aa;this.aa=t,e!=this.aa&&this.dp("ScrollbarStyle",n.enumGetBox(n.ScrollbarStyle_$type,e),n.enumGetBox(n.ScrollbarStyle_$type,this.aa))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e0",{get:function(){return this.ei},set:function(t){var e=this.ei;this.ei=t,e!=this.ei&&this.dp("ScrollbarBackground",e,this.ei)},enumerable:!1,configurable:!0}),e.prototype.dp=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.dv(t,e,i)},e.prototype.dv=function(t,i,r){switch(t){case"IndexType":this.keys.clear(),this.db(),null!=this.keysCleared&&this.keysCleared(this,new p),this.view.al(),this.dk(i,r);break;case"ItemsSource":if(null!=this.f){if(this.indexType=1,null!=r&&(this.f.groupDescriptions.n(),this.f.sortDescriptions.n(),this.f.filterExpressions.clear(),this.f.summaryDescriptions.n()),null!=this.f.actualDataSource){var o=this.f.actualDataSource;o.schemaChanged=n.delegateRemove(o.schemaChanged,n.runOn(this,this.dq))}if(this.f.itemsSource=this.bg,this.c2(),null!=this.f.actualDataSource){var a=this.f.actualDataSource;a.schemaChanged=n.delegateCombine(a.schemaChanged,n.runOn(this,this.dq))}this.ar=!0,this.ds(),this.ar=!1,this.view.al()}break;case"DataMemberPath":case"SelectedMemberPath":case"SubtitleMemberPath":case"PropertyTypeMemberPath":null!=this.f&&null!=this.bj&&(this.ds(),this.d6());break;case"PrimaryKey":null!=this.f&&(this.f.primaryKey=this.primaryKey);break;case"SelectAllCaptionTextColor":this.ep=null!=this.e5?this.e5:e.ey;break;case"SelectAllCaption":case"ActualSelectAllCaptionTextColor":this.view.ak();break;case"showSelectAll":this.view.an(),this.view.x();break;case"ShowFilter":this.view.aj(),this.view.x();break;case"FilterPlaceholderText":null!=this.t&&(this.t.cg=this.b4);break;case"SearchInputType":null!=this.v&&(this.v.d=this.y);break;case"RowHeight":null!=this.f&&(this.f.rowHeight=this.be);break;case"CellTextStyle":null!=this.f&&(this.f.cellTextStyle=this.am),this.view.ah();break;case"BackgroundColor":case"TextColor":case"RowHoverBackgroundColor":var s=this.f;null!=s&&(s.cellTextColor=this.e7,s.cellBackground=this.backgroundColor,s.cellSelectedBackground=this.backgroundColor,s.rowHoverBackground=this.rowHoverBackgroundColor),this.view.ai();break;case"BaseTheme":this.d5();break;case"Density":this.d4();break;case"IsRowHoverEnabled":null!=this.f&&(this.f.isRowHoverEnabled=this.az);break;case"ScrollbarStyle":null!=this.f&&(this.f.scrollbarStyle=this.ab);break;case"ScrollbarBackground":null!=this.f&&(this.f.scrollbarBackground=this.e0);break;case"SearchIconColor":this.view.ag();break;case"SearchBackgroundColor":this.w.mc=this.e1;break;case"SearchBorderColor":this.w.md=this.e2;break;case"SearchTextColor":null!=this.u&&(this.u.d8=this.searchTextColor);break;case"SearchTextStyle":this.u.af=this.an;break;case"CheckboxTickColor":case"CheckboxCheckedBackgroundColor":case"CheckboxUncheckedBackgroundColor":case"CheckboxCheckedBorderColor":case"CheckboxUncheckedBorderColor":case"CheckboxCornerRadius":this.view.ad(),null!=this.f&&this.f.xq();break;case"CheckboxAlignedRight":null!=this.f&&this.d8();break;case"DataLegendTarget":null!=this.f&&this.f.xq()}},e.prototype.d8=function(){if(0!=this.f.actualColumns.count){var t=this.f.actualColumns._inner[0],e=this.f.actualColumns._inner[1],n=this.f.actualColumns._inner[2];this.f.actualColumns.clear(),this.av?(this.f.columns.add(e),this.f.columns.add(t)):(this.f.columns.add(t),this.f.columns.add(e)),this.f.columns.add(n)}},e.prototype.dk=function(t,e){var i;null!=this.indexTypeChanged&&this.indexTypeChanged(this,((i=new Nr).b=n.EnumUtil.getEnumValue(u,t),i.a=n.EnumUtil.getEnumValue(u,e),i))},e.prototype.d4=function(){null!=this.f&&(this.f.density=this.density),null!=this.v&&(this.v.t=this.density),this.view.ac()},e.prototype.d5=function(){null!=this.v&&(this.v.p=this.baseTheme),null!=this.u&&(this.u.d8=this.searchTextColor),null!=this.f&&(this.f.cellTextColor=this.e7,this.f.cellBackground=this.backgroundColor,this.f.cellSelectedBackground=this.backgroundColor,this.f.rowHoverBackground=this.rowHoverBackgroundColor),this.view.ae()},e.prototype.dq=function(t,e){if(this.ar=!0,this.c2(),null!=e.schema){this.ds();for(var n=0;n<this.keys.count;n++)this.dm(this.keys._inner[n]);this.view.al()}this.ar=!1},e.prototype.ds=function(){if(null==this.ai&&null!=this.bm&&""!=this.bm&&(this.ai=new n.FastReflectionHelper(!1,this.bm)),null==this.ag&&null!=this.bj&&""!=this.bj&&(this.ag=new n.FastReflectionHelper(!1,this.bj)),null==this.aj&&null!=this.bn&&""!=this.bn&&(this.aj=new n.FastReflectionHelper(!1,this.bn)),null==this.ah&&null!=this.bl&&""!=this.bl&&(this.ah=new n.FastReflectionHelper(!1,this.bl)),null!=this.ag&&(this.ag.propertyName=this.bj),null!=this.aj&&(this.aj.propertyName=this.bn),null!=this.ah&&(this.ah.propertyName=this.bl),null!=this.bg&&null!=this.ai&&null!=this.f.actualDataSource.actualSchema){this.ai.propertyName=this.bm;for(var t=this.f.actualDataSource.actualCount,e=0;e<t;e++){var i=this.f.actualDataSource.getItemAtIndex(e),r=this.i(i);1==this.ai.getPropertyValue(i)?this.keys.contains(r)||this.keys.add(r):this.keys.contains(r)&&this.keys.remove(r)}}},e.prototype.d6=function(){this.f.actualColumns.clear(),this.f.primaryKey=this.primaryKey,this.f.isGroupRowSticky=!1,this.f.rowHeight=this.be,this.f.cellBackground=this.backgroundColor,this.f.cellSelectedBackground=this.backgroundColor,this.f.density=this.density,this.f.isRowHoverEnabled=this.az,this.f.borderWidth=new n.Thickness(0,0),null!=this.am&&(this.f.cellTextStyle=this.am);var t=new lr;null==this.bm&&(this.bm=""),t.lo=this.bm,t.mf="CheckboxColumn";var e=new Ft;e.c=!1,e.f=28,t.width=e,t.kk=0,t.kl=0,t.cellUpdating=n.delegateCombine(t.cellUpdating,n.runOn(this,this.c3)),this.j=t,this.f.columns.add(t);var i=this.f.actualDataSource.resolveSchemaPropertyType(this.bj);if(null==this.bn&&null==this.bl||0!=i&&11!=i&&2!=i){var r=void 0;switch(i){case 8:case 9:r=new Fi;break;case 1:case 3:case 4:case 5:case 6:case 7:case 10:r=new Qi;break;case 2:case 11:case 0:default:r=new cr}r.lo=this.bj,r.mf="DataColumn",r.kk=0,r.g=0,this.f.columns.add(r)}else{var o=new lr;o.lo=this.bj,o.mf="DataColumn",o.kk=0,o.g=0,o.cellUpdating=n.delegateCombine(o.cellUpdating,n.runOn(this,this.d7)),this.f.columns.add(o)}var a=new lr,s=new Ft;s.c=!1,s.f=10,a.lo="PaddingColumn",a.mf="PaddingColumn",a.kk=0,a.width=s,this.f.columns.add(a)},e.prototype.updateHrMargin=function(t){this.view.af(t)},e.prototype.provideHrElement=function(t){this.view.t(t)},e.prototype.dl=function(){var t=this.u;t.changing=n.delegateCombine(t.changing,n.runOn(this,this.c9)),this.d5()},e.prototype.c9=function(t,e){var n=e.value.toLowerCase();this.dj(n)},e.prototype.i=function(t){if(null==this.primaryKey)return s.createIdentityKey(t);for(var e=new Array(this.primaryKey.length),n=new Array(this.primaryKey.length),i=0;i<e.length;i++)e[i]=this.primaryKey[i],n[i]=this.e.getItemProperty(t,e[i]);return new s(e,n)},e.prototype.d0=function(t){this.aq=!0;var e=this.e.getItemAtIndex(t);null!=this.ai&&this.ai.setPropertyValue(e,!1);var n=this.i(e);this.keys.remove(n),this.aq=!1},e.prototype.cz=function(t){this.aq=!0;var e=this.e.getItemAtIndex(t);null!=this.ai&&this.ai.setPropertyValue(e,!0);var n=this.i(e);this.keys.add(n),this.aq=!1},e.prototype.d3=function(){this.indexType=0,this.keys.clear(),this.db(),null!=this.keysCleared&&this.keysCleared(this,new p)},e.prototype.c5=function(){this.indexType=1,this.keys.clear(),this.db(),null!=this.keysCleared&&this.keysCleared(this,new p)},e.prototype.dg=function(t,e,n){null!=this.f&&this.f.notifySetItem(t,e,n)},e.prototype.dc=function(){null!=this.f&&this.f.notifyClearItems()},e.prototype.db=function(){null!=this.f&&this.f.invalidateVisibleRows()},e.prototype.dd=function(t,e){null!=this.f&&this.f.notifyInsertItem(t,e)},e.prototype.df=function(t,e){null!=this.f&&this.f.notifyRemoveItem(t,e)},e.prototype.refresh=function(){this.as||null!=this.f&&(this.as=!0,this.view.v(),this.f.refresh(),this.as=!1)},e.prototype.c0=function(t){var e=null;if(null==this.primaryKey||0==this.primaryKey.length)e=new s(null,t);else{if(this.primaryKey.length!=t.length)throw new n.ArgumentException(1,"value length must match PrimaryKey length");e=new s(this.primaryKey,t)}if(null!=e){if(null!=this.ai){var i=this.e.indexOfKey(t),r=this.e.getItemAtIndex(i);this.ai.setPropertyValue(r,!0)}this.keys.add(e)}},e.prototype.d1=function(t){var e=null;if(null==this.primaryKey||0==this.primaryKey.length)e=new s(null,t);else{if(this.primaryKey.length!=t.length)throw new n.ArgumentException(1,"value length must match PrimaryKey length");e=new s(this.primaryKey,t)}if(this.keys.contains(e)){if(null!=this.ai){var i=this.e.indexOfKey(t),r=this.e.getItemAtIndex(i);this.ai.setPropertyValue(r,!1)}this.keys.remove(e)}},e.prototype.getDesiredSize=function(t){var e=0,i=this.a9(),r=5;null!=this.f&&null!=this.f.actualDataSource&&this.f.actualDataSource.actualCount>0&&(r=this.f.actualDataSource.actualCount);var o=this.bc*r,a=this.bc*(this.showSelectAll?4:5),s=i+(o>a?a:o);n.isPositiveInfinity(t.height)?e=s:e=t.height<=s?s:i+(t.height-s);return new n.Size(1,248,e)},e.prototype.a9=function(){var t=0;return t+=n.ComponentSizeHelpers.d(this.density,this.baseTheme),t+=n.ComponentSizeHelpers.c(this.density,this.baseTheme),t+=6.8,t+=4,this.showSelectAll&&(t+=this.bc),t+=4},Object.defineProperty(e.prototype,"cp",{get:function(){return null!=this.co?this.co:n.stringIsNullOrWhiteSpace(this.ap.b1("Select_All"))?"(Select All)":this.ap.b1("Select_All")},set:function(t){if(t!=this.co){var e=this.co;this.co=t,this.dp("SelectAllCaption",e,this.co)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e5",{get:function(){return this.en},set:function(t){var e=this.en;this.en=t,e!=this.en&&this.dp("SelectAllCaptionTextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ep",{get:function(){return this.ea},set:function(t){var e=this.ea;this.ea=t,e!=this.ea&&this.dp("ActualSelectAllCaptionTextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a0",{get:function(){if(-1==this.bd)return!1;var t=this.keys.count;return 0!=t&&t!=this.bd},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"showSelectAll",{get:function(){return this.a4},set:function(t){if(t!=this.a4){var e=this.a4;this.a4=t,this.dp("showSelectAll",e,this.a4)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"backgroundColor",{get:function(){return this.eb},set:function(t){var e=this.eb;this.eb=t,e!=this.eb&&this.dp("BackgroundColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowHoverBackgroundColor",{get:function(){return this.eh},set:function(t){var e=this.eh;this.eh=t,e!=this.eh&&this.dp("RowHoverBackgroundColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e7",{get:function(){return this.eo},set:function(t){var e=this.eo;this.eo=t,e!=this.eo&&this.dp("TextColor",e,t)},enumerable:!1,configurable:!0}),e.prototype.dr=function(t){var e;null!=this.selectAllCheckboxChanged&&this.selectAllCheckboxChanged(this,((e=new Fr).a=t,e))},e.prototype.ax=function(){if(-1==this.bd)return!0;var t=this.keys.count;switch(this.indexType){case 0:return this.bd==t;case 1:return 0==t;default:return!1}},e.prototype.aw=function(){if(-1==this.bd)return!1;var t=this.keys.count;switch(this.indexType){case 0:return 0==t;case 1:return this.bd==t;default:return!1}},e.prototype.c2=function(){var t=this.f.actualDataSource;if(null!=t){if(null==t.actualSchema)return void(this.bd=-1);var e=t.actualCount;this.bd=e}else this.bd=-1},Object.defineProperty(e.prototype,"a3",{get:function(){return this.a2},set:function(t){if(t!=this.a2){var e=this.a2;this.a2=t,this.dp("ShowFilter",e,this.a2)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"az",{get:function(){return this.ay},set:function(t){if(t!=this.ay){var e=this.ay;this.ay=t,this.dp("IsRowHoverEnabled",e,this.ay)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"av",{get:function(){return this.au},set:function(t){if(t!=this.au){var e=this.au;this.au=t,this.dp("CheckboxAlignedRight",e,this.au)}},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CheckboxList",n.Base.$,[n.INotifyPropertyChanged_$type]),e.e6=n.BrushUtil.j(255,24,29,31),e.cl="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z",e.ew=n.BrushUtil.j(255,248,248,248),e.ex=null,e.ey=n.BrushUtil.j(255,24,29,31),e}(n.Base),Gr=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new d},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"index",{get:function(){return this.i.c},set:function(t){this.i.c=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isChecked",{get:function(){return this.i.b},set:function(t){this.i.b=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"primaryKey",{get:function(){return this.i.a},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.a=t},enumerable:!1,configurable:!0}),t}(),Lr=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Fr},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"isChecked",{get:function(){return this.i.a},set:function(t){this.i.a=n.ensureBool(t)},enumerable:!1,configurable:!0}),t}(),qr=function(){function t(){this._onChanged=[],this._changed=!1,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return null},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t.prototype.onImplementationCreated=function(){},t.prototype.addOnChangedListener=function(t){0==this._onChanged.length&&(this.i.propertyChanged=n.delegateCombine(this.i.propertyChanged,n.runOn(this,this._implementation_propertyChanged)),this.i.cellReconciling=n.delegateCombine(this.i.cellReconciling,n.runOn(this,this._implementation_cellReconciling))),this._onChanged.push(t)},t.prototype.removeOnChangedListener=function(t){var e=this._onChanged.indexOf(t);e<0||(this._onChanged.splice(e,1),0==this._onChanged.length&&(this.i.propertyChanged=n.delegateRemove(this.i.propertyChanged,n.runOn(this,this._implementation_propertyChanged)),this.i.cellReconciling=n.delegateRemove(this.i.cellReconciling,n.runOn(this,this._implementation_cellReconciling))))},t.prototype._implementation_propertyChanged=function(t,e){this._changed=!0},t.prototype._implementation_cellReconciling=function(t){if(this._changed&&null!==this._onChanged&&this._onChanged.length>0){this._changed=!1;for(var e=0;e<this._onChanged.length;e++)this._onChanged[e]()}this._changed=!1},Object.defineProperty(t.prototype,"resolvedTextAlign",{get:function(){switch(this.horizontalAlignment){case O.Center:return"center";case O.Left:return"left";case O.Right:return"right";case O.Stretch:return"center"}return"left"},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"resolvedContentOpacity",{get:function(){var t=Math.min(1,Math.max(0,this.virtualizationPercentage));return this.contentOpacity*(1-t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"styleKey",{get:function(){return this.i.kc},set:function(t){this.i.kc=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataRow",{get:function(){return this.i.fb},set:function(t){this.i.fb=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isPositionDirty",{get:function(){return this.i.bj},set:function(t){this.i.bj=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isSizeDirty",{get:function(){return this.i.bo},set:function(t){this.i.bo=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isContentDirty",{get:function(){return this.i.a3},set:function(t){this.i.a3=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isBorderDirty",{get:function(){return this.i.a1},set:function(t){this.i.a1=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isLayerDirty",{get:function(){return this.i.bh},set:function(t){this.i.bh=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isStateDirty",{get:function(){return this.i.bp},set:function(t){this.i.bp=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isDataDirty",{get:function(){return this.i.a5},set:function(t){this.i.a5=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isPlaceholdContentNeeded",{get:function(){return this.i.bi},set:function(t){this.i.bi=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actionManager",{get:function(){return this.i.c},set:function(t){this.i.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isHitTestVisible",{get:function(){return this.i.bd},set:function(t){this.i.bd=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isRowPinned",{get:function(){return this.i.bk},set:function(t){this.i.bk=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isRowSticky",{get:function(){return this.i.bl},set:function(t){this.i.bl=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isLastStickyRow",{get:function(){return this.i.bg},set:function(t){this.i.bg=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isFilterRow",{get:function(){return this.i.bb},set:function(t){this.i.bb=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"indent",{get:function(){return this.i.f0},set:function(t){this.i.f0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowItem",{get:function(){return this.i.hn},set:function(t){this.i.hn=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"x",{get:function(){return this.i.cu},set:function(t){this.i.cu=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"y",{get:function(){return this.i.cv},set:function(t){this.i.cv=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"snappedX",{get:function(){return this.i.g0},set:function(t){this.i.g0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"snappedY",{get:function(){return this.i.g2},set:function(t){this.i.g2=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editOpacity",{get:function(){return this.i.ck},set:function(t){this.i.ck=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"contentOpacity",{get:function(){return this.i.cj},set:function(t){this.i.cj=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualContentOpacity",{get:function(){return this.i.cg},set:function(t){this.i.cg=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"opacity",{get:function(){return this.i.co},set:function(t){this.i.co=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualOpacity",{get:function(){return this.i.ch},set:function(t){this.i.ch=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this.i.fu},set:function(t){this.i.fu=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this.i.hd},set:function(t){this.i.hd=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isSelected",{get:function(){return this.i.bn},set:function(t){this.i.bn=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedStatus",{get:function(){return this.i.cq},set:function(t){this.i.cq=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationStatus",{get:function(){return this.i.cf},set:function(t){this.i.cf=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverStatus",{get:function(){return this.i.cl},set:function(t){this.i.cl=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isHoverable",{get:function(){return this.i.be},set:function(t){this.i.be=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"horizontalAlignment",{get:function(){return this.i.g},set:function(t){this.i.g=n.ensureEnum(I,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"verticalAlignment",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureEnum(k,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"background",{get:function(){return n.brushToString(this.i.lx)},set:function(t){this.i.lx=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"border",{get:function(){return n.brushToString(this.i.l0)},set:function(t){this.i.l0=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBackground",{get:function(){return n.brushToString(this.i.lu)},set:function(t){this.i.lu=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorder",{get:function(){return n.brushToString(this.i.lv)},set:function(t){this.i.lv=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorder",{get:function(){return n.brushToString(this.i.lt)},set:function(t){this.i.lt=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorder",{get:function(){return n.brushToString(this.i.l2)},set:function(t){this.i.l2=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedBackground",{get:function(){return n.brushToString(this.i.l9)},set:function(t){this.i.l9=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverBackground",{get:function(){return n.brushToString(this.i.l5)},set:function(t){this.i.l5=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverTextColor",{get:function(){return n.brushToString(this.i.l6)},set:function(t){this.i.l6=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortIndicatorColor",{get:function(){return n.brushToString(this.i.ma)},set:function(t){this.i.ma=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stickyRowBackground",{get:function(){return n.brushToString(this.i.mb)},set:function(t){this.i.mb=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedRowBackground",{get:function(){return n.brushToString(this.i.l8)},set:function(t){this.i.l8=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastStickyRowBackground",{get:function(){return n.brushToString(this.i.l7)},set:function(t){this.i.l7=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterRowBackground",{get:function(){return n.brushToString(this.i.l3)},set:function(t){this.i.l3=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedRowOpacity",{get:function(){return this.i.cp},set:function(t){this.i.cp=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"originalValue",{get:function(){return this.i.hm},set:function(t){this.i.hm=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"renderValue",{get:function(){return this.i.j1},set:function(t){this.i.j1=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.mc)},set:function(t){this.i.mc=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualTextColor",{get:function(){return n.brushToString(this.i.lw)},set:function(t){this.i.lw=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"deletedTextColor",{get:function(){return n.brushToString(this.i.l1)},set:function(t){this.i.l1=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"font",{get:function(){return null==this.i.ag?null:this.i.ag.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.ag=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualFont",{get:function(){return null==this.i.ae?null:this.i.ae.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.ae=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lineBreakMode",{get:function(){return this.i.aa},set:function(t){this.i.aa=n.ensureEnum(R,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"virtualizationPercentage",{get:function(){return this.i.ct},set:function(t){this.i.ct=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"paddingLeft",{get:function(){return this.i.gm},set:function(t){this.i.gm=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"paddingTop",{get:function(){return this.i.gq},set:function(t){this.i.gq=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"paddingRight",{get:function(){return this.i.go},set:function(t){this.i.go=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"paddingBottom",{get:function(){return this.i.gk},set:function(t){this.i.gk=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPaddingLeft",{get:function(){return this.i.el},set:function(t){this.i.el=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPaddingTop",{get:function(){return this.i.ep},set:function(t){this.i.ep=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPaddingRight",{get:function(){return this.i.en},set:function(t){this.i.en=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPaddingBottom",{get:function(){return this.i.ej},set:function(t){this.i.ej=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderLeftWidth",{get:function(){return this.i.e2},set:function(t){this.i.e2=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderTopWidth",{get:function(){return this.i.e7},set:function(t){this.i.e7=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderRightWidth",{get:function(){return this.i.e5},set:function(t){this.i.e5=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderBottomWidth",{get:function(){return this.i.e0},set:function(t){this.i.e0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderLeftWidth",{get:function(){return this.i.dy},set:function(t){this.i.dy=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderTopWidth",{get:function(){return this.i.d3},set:function(t){this.i.d3=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderRightWidth",{get:function(){return this.i.d1},set:function(t){this.i.d1=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderBottomWidth",{get:function(){return this.i.dw},set:function(t){this.i.dw=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderLeftWidth",{get:function(){return this.i.fk},set:function(t){this.i.fk=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderTopWidth",{get:function(){return this.i.fp},set:function(t){this.i.fp=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderRightWidth",{get:function(){return this.i.fn},set:function(t){this.i.fn=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderBottomWidth",{get:function(){return this.i.fi},set:function(t){this.i.fi=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorderLeftWidth",{get:function(){return this.i.d9},set:function(t){this.i.d9=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorderTopWidth",{get:function(){return this.i.ee},set:function(t){this.i.ee=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorderRightWidth",{get:function(){return this.i.ec},set:function(t){this.i.ec=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorderBottomWidth",{get:function(){return this.i.d7},set:function(t){this.i.d7=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortDirection",{get:function(){return this.i.n},set:function(t){this.i.n=n.ensureEnum(B,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isExpanded",{get:function(){return this.i.ba},set:function(t){this.i.ba=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isCollapsable",{get:function(){return this.i.a2},set:function(t){this.i.a2=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinned",{get:function(){return this.i.y},set:function(t){this.i.y=n.ensureEnum(E,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editFont",{get:function(){return null==this.i.af?null:this.i.af.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.af=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isEdited",{get:function(){return this.i.a9},set:function(t){this.i.a9=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isDeleted",{get:function(){return this.i.a6},set:function(t){this.i.a6=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editError",{get:function(){return this.i.it},set:function(t){this.i.it=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isInEditMode",{get:function(){return this.i.bf},set:function(t){this.i.bf=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editID",{get:function(){return this.i.fg},set:function(t){this.i.fg=+t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.isCustomFieldDirty=function(t){return this.i.a4(t)},t.prototype.isDirtyById=function(t){return this.i.a8(t)},t.prototype.isDirty=function(t){return this.i.a7(t)},t.prototype.setNamedValue=function(t,e){this.i.k8(t,e)},t.prototype.hasNamedValue=function(t){return this.i.az(t)},t.prototype.removeNamedValue=function(t){this.i.k4(t)},t.prototype.getNamedValue=function(t){return this.i.hk(t)},t}(),Hr=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new zn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dateTimeValue",{get:function(){return this.i.mp},set:function(t){this.i.mp=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"formatStringOverride",{get:function(){return this.i.m6},set:function(t){this.i.m6=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"formatSpecifiers",{get:function(){return this.i.mg},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.mg=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"formatOverride",{get:function(){return this.i.mz},set:function(t){this.i.mz=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dateTimeFormat",{get:function(){return this.i.ml},set:function(t){this.i.ml=n.ensureEnum($,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isOffsetValue",{get:function(){return this.i.mn},set:function(t){this.i.mn=n.ensureBool(t)},enumerable:!1,configurable:!0}),e.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(null!=this.formatSpecifiers&&n.arrayFindByName(this.formatSpecifiers,e)?n.arrayFindByName(this.formatSpecifiers,e):null)},e}(qr),Wr=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Un},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"imagePath",{get:function(){return this.i.mn},set:function(t){this.i.mn=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"imageStretchOption",{get:function(){return this.i.mi},set:function(t){this.i.mi=n.ensureEnum(X,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"imageResourceType",{get:function(){return this.i.mg},set:function(t){this.i.mg=n.ensureEnum(Y,t)},enumerable:!1,configurable:!0}),e}(qr),Ur=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Kn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"numericValue",{get:function(){return this.i.mo},set:function(t){this.i.mo=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hasDecimalValue",{get:function(){return this.i.mk},set:function(t){this.i.mk=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"formatStringOverride",{get:function(){return this.i.ni},set:function(t){this.i.ni=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"formatSpecifiers",{get:function(){return this.i.mg},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.mg=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"formatOverride",{get:function(){return this.i.na},set:function(t){this.i.na=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"negativePrefix",{get:function(){return this.i.no},set:function(t){this.i.no=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"positivePrefix",{get:function(){return this.i.nt},set:function(t){this.i.nt=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"negativeSuffix",{get:function(){return this.i.nq},set:function(t){this.i.nq=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"positiveSuffix",{get:function(){return this.i.nv},set:function(t){this.i.nv=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"maxFractionDigits",{get:function(){return this.i.mw},set:function(t){this.i.mw=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"minFractionDigits",{get:function(){return this.i.my},set:function(t){this.i.my=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"minIntegerDigits",{get:function(){return this.i.m0},set:function(t){this.i.m0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"showGroupingSeparator",{get:function(){return this.i.mm},set:function(t){this.i.mm=n.ensureBool(t)},enumerable:!1,configurable:!0}),e.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(null!=this.formatSpecifiers&&n.arrayFindByName(this.formatSpecifiers,e)?n.arrayFindByName(this.formatSpecifiers,e):null)},e}(qr),Kr=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Xn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),e}(qr),Xr=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Zn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"resolvedText",{get:function(){return this.i.mv},set:function(t){this.i.mv=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"resolvedSummaryText",{get:function(){return this.i.mt},set:function(t){this.i.mt=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryDisplayMode",{get:function(){return this.i.mk},set:function(t){this.i.mk=n.ensureEnum(N,t)},enumerable:!1,configurable:!0}),e}(qr),Zr=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Yn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this.i.mh},set:function(t){this.i.mh=t},enumerable:!1,configurable:!0}),e}(qr),Yr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=null,e}return i.__extends(e,t),e.prototype.get_ac=function(){return"TemplateHeaderCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e)},e.$t=n.markType(e,"TemplateHeaderCellModelExport",A.$),e}(A),Qr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.mj=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"mk",{get:function(){return this.mj},set:function(t){var n=this.mj;this.mj=t,this.mj!=n&&this.k0("IsFilterUIVisible",e.ml,n,this.mj)},enumerable:!1,configurable:!0}),e.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"IsFilterUIVisible"==e&&(this.mk=n)},e.prototype.kl=function(e){switch(e){case"IsFilterUIVisible":return n.Boolean_$type}return t.prototype.kl.call(this,e)},e.prototype.hl=function(e){return"IsFilterUIVisible"==e?this.mk:t.prototype.hl.call(this,e)},e.prototype.b=function(e){null==e&&(e=new Yr);var n=e=t.prototype.b.call(this,e);return n.ae=this.mh,n},e.$t=n.markType(e,"TemplateHeaderCellModel",Yn.$),e.ml=$n.ft("IsFilterUIVisible"),e}(Yn),Jr=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Qr},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isFilterUIVisible",{get:function(){return this.i.mk},set:function(t){this.i.mk=n.ensureBool(t)},enumerable:!1,configurable:!0}),e}(Zr),to=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"TemplateSectionHeaderCellModel",Zn.$),e}(Zn),eo=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new to},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),e}(Xr),no=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Qn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"textValue",{get:function(){return this.i.mh},set:function(t){this.i.mh=t},enumerable:!1,configurable:!0}),e}(qr),io=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Jn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isColumnOptionsEnabled",{get:function(){return this.i.mq},set:function(t){this.i.mq=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sortIndicatorStyle",{get:function(){return this.i.mo},set:function(t){this.i.mo=n.ensureEnum(st,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnOptionsIconAlignment",{get:function(){return this.i.mk},set:function(t){this.i.mk=n.ensureEnum(ut,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnOptionsIconColor",{get:function(){return n.brushToString(this.i.m2)},set:function(t){this.i.m2=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnOptionsIconBehavior",{get:function(){return this.i.mm},set:function(t){this.i.mm=n.ensureEnum(ht,t)},enumerable:!1,configurable:!0}),e}(no),ro=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new zi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"cellInfo",{get:function(){if(null==this.i.cellInfo)return null;if(!this.i.cellInfo.externalObject){var t=null;switch(this.i.cellInfo.$type.name){case"DateTimeCellModel":t=new Hr;break;case"ImageCellModel":t=new Wr;break;case"NumericCellModel":t=new Ur;break;case"RowSeparatorModel":t=new Kr;break;case"SectionHeaderCellModel":t=new Xr;break;case"TemplateCellModel":t=new Zr;break;case"TemplateHeaderCellModel":t=new Jr;break;case"TemplateSectionHeaderCellModel":t=new eo;break;case"TextCellModel":t=new no;break;case"TextHeaderCellModel":t=new io}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"resolvedValue",{get:function(){return this.i.resolvedValue},set:function(t){this.i.resolvedValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowObject",{get:function(){return this.i.rowObject},set:function(t){this.i.rowObject=t},enumerable:!1,configurable:!0}),t}(),oo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new mn},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"styleKey",{get:function(){return this.i.styleKey},set:function(t){this.i.styleKey=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"resolvedValue",{get:function(){return this.i.resolvedValue},set:function(t){this.i.resolvedValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowNumber",{get:function(){return this.i.rowNumber},set:function(t){this.i.rowNumber=+t},enumerable:!1,configurable:!0}),t}(),ao=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new pn},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"propertyName",{get:function(){return this.i.propertyName},set:function(t){this.i.propertyName=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errors",{get:function(){return this.i.errors},set:function(t){this.i.errors=t},enumerable:!1,configurable:!0}),t}(),so=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._filterStringErrorsParsing=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new dn},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},Object.defineProperty(t.prototype,"stylingType",{get:function(){return this.i.aj},set:function(t){this.i.aj=n.ensureEnum(un,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"minimumType",{get:function(){return this.i.ah},set:function(t){this.i.ah=n.ensureEnum(hn,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maximumType",{get:function(){return this.i.ag},set:function(t){this.i.ag=n.ensureEnum(hn,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propertyName",{get:function(){return this.i.b9},set:function(t){this.i.b9=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"inputValueExpression",{get:function(){return this.i.w},set:function(t){this.i.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"inputValueExpressionString",{get:function(){return this.i.bo},set:function(t){this.i.bo=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualInputValueExpression",{get:function(){return this.i.s},set:function(t){this.i.s=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"minimumInputValueExpression",{get:function(){return this.i.y},set:function(t){this.i.y=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"minimumInputValueExpressionString",{get:function(){return this.i.b5},set:function(t){this.i.b5=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualMinimumInputValueExpression",{get:function(){return this.i.u},set:function(t){this.i.u=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maximumInputValueExpression",{get:function(){return this.i.x},set:function(t){this.i.x=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maximumInputValueExpressionString",{get:function(){return this.i.bz},set:function(t){this.i.bz=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualMaximumInputValueExpression",{get:function(){return this.i.t},set:function(t){this.i.t=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sumInputValueExpression",{get:function(){return this.i.ad},set:function(t){this.i.ad=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sumInputValueExpressionString",{get:function(){return this.i.ce},set:function(t){this.i.ce=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualSumInputValueExpression",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this.i.bc},set:function(t){this.i.bc=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"shouldSetValue",{get:function(){return this.i.as},set:function(t){this.i.as=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"minimumColor",{get:function(){return n.brushToString(this.i.co)},set:function(t){this.i.co=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maximumColor",{get:function(){return n.brushToString(this.i.cn)},set:function(t){this.i.cn=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"minimumInputValue",{get:function(){return this.i.ba},set:function(t){this.i.ba=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maximumInputValue",{get:function(){return this.i.a9},set:function(t){this.i.a9=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sumInputValue",{get:function(){return this.i.bb},set:function(t){this.i.bb=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"colorCollection",{get:function(){return n.fromBrushCollection(this.i.f)},set:function(t){this.i.f=n.toBrushCollection(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"valueCollection",{get:function(){return this.i.d},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"requiresGlobalValues",{get:function(){return this.i.ar},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"needsGlobalMinimum",{get:function(){return this.i.ap},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"needsGlobalMaximum",{get:function(){return this.i.ao},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"needsGlobalSum",{get:function(){return this.i.aq},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("GridConditionalStylePropertyComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},Object.defineProperty(t.prototype,"filterStringErrorsParsing",{get:function(){var t=this;return null==this._filterStringErrorsParsing&&(this._filterStringErrorsParsing=new e.EventEmitter,this.i.filterStringErrorsParsing=n.delegateCombine(this.i.filterStringErrorsParsing,(function(e,n){t._runInZone((function(){var e=new ao;e._provideImplementation(n),t.beforeFilterStringErrorsParsing&&t.beforeFilterStringErrorsParsing(t,e),t._filterStringErrorsParsing.emit({sender:t,args:e})}))}))),this._filterStringErrorsParsing},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-grid-conditional-style-property",inputs:{stylingType:"stylingType",minimumType:"minimumType",maximumType:"maximumType",propertyName:"propertyName",inputValueExpression:"inputValueExpression",inputValueExpressionString:"inputValueExpressionString",actualInputValueExpression:"actualInputValueExpression",minimumInputValueExpression:"minimumInputValueExpression",minimumInputValueExpressionString:"minimumInputValueExpressionString",actualMinimumInputValueExpression:"actualMinimumInputValueExpression",maximumInputValueExpression:"maximumInputValueExpression",maximumInputValueExpressionString:"maximumInputValueExpressionString",actualMaximumInputValueExpression:"actualMaximumInputValueExpression",sumInputValueExpression:"sumInputValueExpression",sumInputValueExpressionString:"sumInputValueExpressionString",actualSumInputValueExpression:"actualSumInputValueExpression",value:"value",shouldSetValue:"shouldSetValue",minimumColor:"minimumColor",maximumColor:"maximumColor",minimumInputValue:"minimumInputValue",maximumInputValue:"maximumInputValue",sumInputValue:"sumInputValue",colorCollection:"colorCollection",valueCollection:"valueCollection"},outputs:{filterStringErrorsParsing:"filterStringErrorsParsing"},providers:[],ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:so,decorators:[{type:e.Component,args:[{selector:"igx-grid-conditional-style-property",template:"",providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{stylingType:[{type:e.Input}],minimumType:[{type:e.Input}],maximumType:[{type:e.Input}],propertyName:[{type:e.Input}],inputValueExpression:[{type:e.Input}],inputValueExpressionString:[{type:e.Input}],actualInputValueExpression:[{type:e.Input}],minimumInputValueExpression:[{type:e.Input}],minimumInputValueExpressionString:[{type:e.Input}],actualMinimumInputValueExpression:[{type:e.Input}],maximumInputValueExpression:[{type:e.Input}],maximumInputValueExpressionString:[{type:e.Input}],actualMaximumInputValueExpression:[{type:e.Input}],sumInputValueExpression:[{type:e.Input}],sumInputValueExpressionString:[{type:e.Input}],actualSumInputValueExpression:[{type:e.Input}],value:[{type:e.Input}],shouldSetValue:[{type:e.Input}],minimumColor:[{type:e.Input}],maximumColor:[{type:e.Input}],minimumInputValue:[{type:e.Input}],maximumInputValue:[{type:e.Input}],sumInputValue:[{type:e.Input}],colorCollection:[{type:e.Input}],valueCollection:[{type:e.Input}],filterStringErrorsParsing:[{type:e.Output}]}});var lo=function(t){function e(e){var i=t.call(this)||this;if(so.$type||(so.$type=n.markType(so,"IgxGridConditionalStylePropertyComponent")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){so.$type||(so.$type=n.markType(so,"IgxGridConditionalStylePropertyComponent"));var t=new n.SyncableObservableCollection$2(so.$type,dn.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new so)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),uo=function(){function t(){this._properties=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._propertyUpdated=null,this._filterStringErrorsParsing=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ci},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},t.prototype._initializeAdapters=function(){var t=this;this._propertiesAdapter=new n.CollectionAdapter([],this.i.properties,this.actualProperties,(function(t){return t.i}),(function(e){t._initializeElement&&t._initializeElement(e)}),(function(e){t._destroyElement&&t._destroyElement(e)}))},t.prototype._updateAdapters=function(){null!=this._propertiesAdapter&&this._propertiesAdapter.updateQuery(this.contentProperties)},t.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1;var t=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,t||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(t.prototype,"isCompound",{get:function(){return this.i.s},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"styleKey",{get:function(){return this.i.ak},set:function(t){this.i.ak=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isTransitionInEnabled",{get:function(){return this.i.w},set:function(t){this.i.w=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualProperties",{get:function(){return this._actualProperties||(this._actualProperties=[]),this._actualProperties},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"properties",{get:function(){var t=this;if(null===this._properties){var e=new lo,i=e._innerColl;this._properties=e,i.addListener((function(e,i){switch(i.action){case n.NotifyCollectionChangedAction.Add:t._propertiesAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Remove:t._propertiesAdapter.removeManualItemAt(i.oldStartingIndex);break;case n.NotifyCollectionChangedAction.Replace:t._propertiesAdapter.removeManualItemAt(i.oldStartingIndex),t._propertiesAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Reset:t._propertiesAdapter.clearManualItems()}}))}return this._properties},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"conditionString",{get:function(){return this.i.ae},set:function(t){this.i.ae=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"condition",{get:function(){return this.i.e},set:function(t){this.i.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isFieldMinimumNeeded",{get:function(){return this.i.u},set:function(t){this.i.u=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isFieldMaximumNeeded",{get:function(){return this.i.t},set:function(t){this.i.t=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isFieldSumNeeded",{get:function(){return this.i.v},set:function(t){this.i.v=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null!=this.properties&&this.properties.findByName&&this.properties.findByName(t)?this.properties.findByName(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("GridConditionalStyleComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.requiresGlobalValues=function(){return this.i.x()},t.prototype.actualNeedsFieldMinimum=function(){return this.i.q()},t.prototype.actualNeedsFieldMaximum=function(){return this.i.p()},t.prototype.actualNeedsFieldSum=function(){return this.i.r()},Object.defineProperty(t.prototype,"propertyUpdated",{get:function(){var t=this;return null==this._propertyUpdated&&(this._propertyUpdated=new e.EventEmitter,this.i.propertyUpdated=n.delegateCombine(this.i.propertyUpdated,(function(e,i){t._runInZone((function(){var e=new n.IgxPropertyUpdatedEventArgs;e._provideImplementation(i),t.beforePropertyUpdated&&t.beforePropertyUpdated(t,e),t._propertyUpdated.emit({sender:t,args:e})}))}))),this._propertyUpdated},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterStringErrorsParsing",{get:function(){var t=this;return null==this._filterStringErrorsParsing&&(this._filterStringErrorsParsing=new e.EventEmitter,this.i.filterStringErrorsParsing=n.delegateCombine(this.i.filterStringErrorsParsing,(function(e,n){t._runInZone((function(){var e=new ao;e._provideImplementation(n),t.beforeFilterStringErrorsParsing&&t.beforeFilterStringErrorsParsing(t,e),t._filterStringErrorsParsing.emit({sender:t,args:e})}))}))),this._filterStringErrorsParsing},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-grid-conditional-style",inputs:{styleKey:"styleKey",isTransitionInEnabled:"isTransitionInEnabled",conditionString:"conditionString",condition:"condition",isFieldMinimumNeeded:"isFieldMinimumNeeded",isFieldMaximumNeeded:"isFieldMaximumNeeded",isFieldSumNeeded:"isFieldSumNeeded"},outputs:{propertyUpdated:"propertyUpdated",filterStringErrorsParsing:"filterStringErrorsParsing"},providers:[],queries:[{propertyName:"contentProperties",predicate:so}],ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:uo,decorators:[{type:e.Component,args:[{selector:"igx-grid-conditional-style",template:"",providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{styleKey:[{type:e.Input}],isTransitionInEnabled:[{type:e.Input}],contentProperties:[{type:e.ContentChildren,args:[so]}],conditionString:[{type:e.Input}],condition:[{type:e.Input}],isFieldMinimumNeeded:[{type:e.Input}],isFieldMaximumNeeded:[{type:e.Input}],isFieldSumNeeded:[{type:e.Input}],propertyUpdated:[{type:e.Output}],filterStringErrorsParsing:[{type:e.Output}]}});var co=function(t){function e(e){var i=t.call(this)||this;if(uo.$type||(uo.$type=n.markType(uo,"IgxGridConditionalStyleComponent")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){uo.$type||(uo.$type=n.markType(uo,"IgxGridConditionalStyleComponent"));var t=new n.SyncableObservableCollection$2(uo.$type,Ci.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new uo)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),ho=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._renderer=null,this._conditionalStyles=null,this._dataBinding=null,this._dataBound=null,this._cellStyleKeyRequested=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return null},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.ngOnInit=function(){},t.prototype.onImplementationCreated=function(){},t.prototype._initializeAdapters=function(){var t=this;this._conditionalStylesAdapter=new n.CollectionAdapter([],this.i.conditionalStyles,this.actualConditionalStyles,(function(t){return t.i}),(function(e){t._initializeElement&&t._initializeElement(e)}),(function(e){t._destroyElement&&t._destroyElement(e)}))},t.prototype._updateAdapters=function(){null!=this._conditionalStylesAdapter&&this._conditionalStylesAdapter.updateQuery(this.contentConditionalStyles)},t.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1;var t=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,t||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(this._stylingContainer=t,this._stylingParent=e,!this._inStyling){this._inStyling=!0;var r,o=e._grid;o&&(r=o.columnPropertyUpdatingAnimationMode,o.columnPropertyUpdatingAnimationMode=Wt.None);var a="",s=this.i.$type.name,l=s.toLowerCase();a=l.indexOf("column")>=0?"column":l.indexOf("sectionheader")>=0?"section-header":l.indexOf("sectionfooter")>=0?"section-footer":l.indexOf("rowseparator")>=0?"row-separator":l.indexOf("summaryrowroot")>=0?"summary-row-root":l.indexOf("summaryrowsection")>=0?"summary-row-section":l.indexOf("headerseparator")>=0?"header-separator":"header";var u=[],c=n.toSpinal(s);if(u.push(c+"-"),i){var h=i.i.$type.name;"Grid"==h&&(h="DataGrid");var p=n.toSpinal(h);u.push(p+"-"+a+"-"),u.push(p+"-"+c+"-")}n.initializePropertiesFromCss(t,this,a+"-",this.hasUserValues,!1,u),o&&(o.columnPropertyUpdatingAnimationMode=r),this._inStyling=!1}},t.prototype._provideRenderer=function(t){this._renderer=t,this._zoneRunner=function(e){return t._ngZone.run(e)}},Object.defineProperty(t.prototype,"background",{get:function(){return n.brushToString(this.i.ge)},set:function(t){this.i.ge=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualConditionalStyles",{get:function(){return this._actualConditionalStyles||(this._actualConditionalStyles=[]),this._actualConditionalStyles},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"conditionalStyles",{get:function(){var t=this;if(null===this._conditionalStyles){var e=new co,i=e._innerColl;this._conditionalStyles=e,i.addListener((function(e,i){switch(i.action){case n.NotifyCollectionChangedAction.Add:t._conditionalStylesAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Remove:t._conditionalStylesAdapter.removeManualItemAt(i.oldStartingIndex);break;case n.NotifyCollectionChangedAction.Replace:t._conditionalStylesAdapter.removeManualItemAt(i.oldStartingIndex),t._conditionalStylesAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Reset:t._conditionalStylesAdapter.clearManualItems()}}))}return this._conditionalStyles},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"border",{get:function(){return n.brushToString(this.i.gh)},set:function(t){this.i.gh=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorder",{get:function(){return n.brushToString(this.i.f3)},set:function(t){this.i.f3=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorder",{get:function(){return n.brushToString(this.i.gi)},set:function(t){this.i.gi=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorder",{get:function(){return n.brushToString(this.i.f8)},set:function(t){this.i.f8=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderLeftWidth",{get:function(){return this.i.cc},set:function(t){this.i.cc=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderTopWidth",{get:function(){return this.i.ce},set:function(t){this.i.ce=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderRightWidth",{get:function(){return this.i.cd},set:function(t){this.i.cd=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderBottomWidth",{get:function(){return this.i.cb},set:function(t){this.i.cb=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderLeftWidth",{get:function(){return this.i.b4},set:function(t){this.i.b4=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderTopWidth",{get:function(){return this.i.b6},set:function(t){this.i.b6=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderRightWidth",{get:function(){return this.i.b5},set:function(t){this.i.b5=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorderBottomWidth",{get:function(){return this.i.b3},set:function(t){this.i.b3=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderLeftWidth",{get:function(){return this.i.cg},set:function(t){this.i.cg=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderTopWidth",{get:function(){return this.i.ci},set:function(t){this.i.ci=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderRightWidth",{get:function(){return this.i.ch},set:function(t){this.i.ch=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorderBottomWidth",{get:function(){return this.i.cf},set:function(t){this.i.cf=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBackground",{get:function(){return n.brushToString(this.i.f5)},set:function(t){this.i.f5=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualActivationBorder",{get:function(){return n.brushToString(this.i.f4)},set:function(t){this.i.f4=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualErrorBorder",{get:function(){return n.brushToString(this.i.f9)},set:function(t){this.i.f9=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stickyRowBackground",{get:function(){return n.brushToString(this.i.gw)},set:function(t){this.i.gw=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualStickyRowBackground",{get:function(){return n.brushToString(this.i.gc)},set:function(t){this.i.gc=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedRowBackground",{get:function(){return n.brushToString(this.i.gv)},set:function(t){this.i.gv=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPinnedRowBackground",{get:function(){return n.brushToString(this.i.gb)},set:function(t){this.i.gb=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastStickyRowBackground",{get:function(){return n.brushToString(this.i.gu)},set:function(t){this.i.gu=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualLastStickyRowBackground",{get:function(){return n.brushToString(this.i.ga)},set:function(t){this.i.ga=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"contentOpacity",{get:function(){return this.i.bh},set:function(t){this.i.bh=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"horizontalAlignment",{get:function(){return this.i.g},set:function(t){this.i.g=n.ensureEnum(I,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"verticalAlignment",{get:function(){return this.i.l},set:function(t){this.i.l=n.ensureEnum(k,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lineBreakMode",{get:function(){return this.i.ac},set:function(t){this.i.ac=n.ensureEnum(R,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualLineBreakMode",{get:function(){return this.i.ab},set:function(t){this.i.ab=n.ensureEnum(R,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.gx)},set:function(t){this.i.gx=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualTextColor",{get:function(){return n.brushToString(this.i.gd)},set:function(t){this.i.gd=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isBarSupported",{get:function(){return this.i.ar},set:function(t){this.i.ar=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"barBackground",{get:function(){return n.brushToString(this.i.gf)},set:function(t){this.i.gf=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBarBackground",{get:function(){return n.brushToString(this.i.f6)},set:function(t){this.i.f6=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"barOutline",{get:function(){return n.brushToString(this.i.gg)},set:function(t){this.i.gg=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBarOutline",{get:function(){return n.brushToString(this.i.f7)},set:function(t){this.i.f7=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"barStrokeThickness",{get:function(){return this.i.ca},set:function(t){this.i.ca=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBarStrokeThickness",{get:function(){return this.i.b8},set:function(t){this.i.b8=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"barCornerRadius",{get:function(){return this.i.b9},set:function(t){this.i.b9=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBarCornerRadius",{get:function(){return this.i.b7},set:function(t){this.i.b7=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedRowOpacity",{get:function(){return this.i.bm},set:function(t){this.i.bm=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPinnedRowOpacity",{get:function(){return this.i.bf},set:function(t){this.i.bf=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textStyle",{get:function(){return null==this.i.textStyle?null:this.i.textStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.textStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isBarRequired",{get:function(){return this.i.aq},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null!=this.conditionalStyles&&this.conditionalStyles.findByName&&this.conditionalStyles.findByName(t)?this.conditionalStyles.findByName(t):null},t.prototype.transitionStyleOut=function(t){this.i.e3(null==t?null:t.i)},t.prototype.transitionStyleIn=function(t){this.i.e2(null==t?null:t.i)},t.prototype.isStyleTransitioningOut=function(t){return this.i.as(null==t?null:t.i)},t.prototype.setNamedValue=function(t,e,n){this.i.e1(t,null==e?null:e,n)},t.prototype.hasNamedValues=function(){return this.i.ap()},t.prototype.hasNamedValue=function(t){return this.i.ao(t)},t.prototype.removeNamedValue=function(t){this.i.ew(t)},t.prototype.getNamedValue=function(t){return this.i.co(t)},Object.defineProperty(t.prototype,"dataBinding",{get:function(){var t=this;return null==this._dataBinding&&(this._dataBinding=new e.EventEmitter,this.i.dataBinding=n.delegateCombine(this.i.dataBinding,(function(e,n){var i=new ro;i._provideImplementation(n),t.beforeDataBinding&&t.beforeDataBinding(t,i),t._dataBinding.emit({sender:t,args:i})}))),this._dataBinding},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataBound",{get:function(){var t=this;return null==this._dataBound&&(this._dataBound=new e.EventEmitter,this.i.dataBound=n.delegateCombine(this.i.dataBound,(function(e,n){var i=new ro;i._provideImplementation(n),t.beforeDataBound&&t.beforeDataBound(t,i),t._dataBound.emit({sender:t,args:i})}))),this._dataBound},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellStyleKeyRequested",{get:function(){var t=this;return null==this._cellStyleKeyRequested&&(this._cellStyleKeyRequested=new e.EventEmitter,this.i.cellStyleKeyRequested=n.delegateCombine(this.i.cellStyleKeyRequested,(function(e,n){var i=new oo;i._provideImplementation(n),t.beforeCellStyleKeyRequested&&t.beforeCellStyleKeyRequested(t,i),t._cellStyleKeyRequested.emit({sender:t,args:i})}))),this._cellStyleKeyRequested},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"ng-component",inputs:{background:"background",border:"border",activationBorder:"activationBorder",errorBorder:"errorBorder",actualBorder:"actualBorder",borderLeftWidth:"borderLeftWidth",borderTopWidth:"borderTopWidth",borderRightWidth:"borderRightWidth",borderBottomWidth:"borderBottomWidth",activationBorderLeftWidth:"activationBorderLeftWidth",activationBorderTopWidth:"activationBorderTopWidth",activationBorderRightWidth:"activationBorderRightWidth",activationBorderBottomWidth:"activationBorderBottomWidth",errorBorderLeftWidth:"errorBorderLeftWidth",errorBorderTopWidth:"errorBorderTopWidth",errorBorderRightWidth:"errorBorderRightWidth",errorBorderBottomWidth:"errorBorderBottomWidth",actualBackground:"actualBackground",actualActivationBorder:"actualActivationBorder",actualErrorBorder:"actualErrorBorder",stickyRowBackground:"stickyRowBackground",actualStickyRowBackground:"actualStickyRowBackground",pinnedRowBackground:"pinnedRowBackground",actualPinnedRowBackground:"actualPinnedRowBackground",lastStickyRowBackground:"lastStickyRowBackground",actualLastStickyRowBackground:"actualLastStickyRowBackground",contentOpacity:"contentOpacity",horizontalAlignment:"horizontalAlignment",verticalAlignment:"verticalAlignment",lineBreakMode:"lineBreakMode",actualLineBreakMode:"actualLineBreakMode",textColor:"textColor",actualTextColor:"actualTextColor",isBarSupported:"isBarSupported",barBackground:"barBackground",actualBarBackground:"actualBarBackground",barOutline:"barOutline",actualBarOutline:"actualBarOutline",barStrokeThickness:"barStrokeThickness",actualBarStrokeThickness:"actualBarStrokeThickness",barCornerRadius:"barCornerRadius",actualBarCornerRadius:"actualBarCornerRadius",pinnedRowOpacity:"pinnedRowOpacity",actualPinnedRowOpacity:"actualPinnedRowOpacity",textStyle:"textStyle"},outputs:{dataBinding:"dataBinding",dataBound:"dataBound",cellStyleKeyRequested:"cellStyleKeyRequested"},queries:[{propertyName:"contentConditionalStyles",predicate:uo}],ngImport:e,template:"",isInline:!0}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ho,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]},propDecorators:{background:[{type:e.Input}],contentConditionalStyles:[{type:e.ContentChildren,args:[uo]}],border:[{type:e.Input}],activationBorder:[{type:e.Input}],errorBorder:[{type:e.Input}],actualBorder:[{type:e.Input}],borderLeftWidth:[{type:e.Input}],borderTopWidth:[{type:e.Input}],borderRightWidth:[{type:e.Input}],borderBottomWidth:[{type:e.Input}],activationBorderLeftWidth:[{type:e.Input}],activationBorderTopWidth:[{type:e.Input}],activationBorderRightWidth:[{type:e.Input}],activationBorderBottomWidth:[{type:e.Input}],errorBorderLeftWidth:[{type:e.Input}],errorBorderTopWidth:[{type:e.Input}],errorBorderRightWidth:[{type:e.Input}],errorBorderBottomWidth:[{type:e.Input}],actualBackground:[{type:e.Input}],actualActivationBorder:[{type:e.Input}],actualErrorBorder:[{type:e.Input}],stickyRowBackground:[{type:e.Input}],actualStickyRowBackground:[{type:e.Input}],pinnedRowBackground:[{type:e.Input}],actualPinnedRowBackground:[{type:e.Input}],lastStickyRowBackground:[{type:e.Input}],actualLastStickyRowBackground:[{type:e.Input}],contentOpacity:[{type:e.Input}],horizontalAlignment:[{type:e.Input}],verticalAlignment:[{type:e.Input}],lineBreakMode:[{type:e.Input}],actualLineBreakMode:[{type:e.Input}],textColor:[{type:e.Input}],actualTextColor:[{type:e.Input}],isBarSupported:[{type:e.Input}],barBackground:[{type:e.Input}],actualBarBackground:[{type:e.Input}],barOutline:[{type:e.Input}],actualBarOutline:[{type:e.Input}],barStrokeThickness:[{type:e.Input}],actualBarStrokeThickness:[{type:e.Input}],barCornerRadius:[{type:e.Input}],actualBarCornerRadius:[{type:e.Input}],pinnedRowOpacity:[{type:e.Input}],actualPinnedRowOpacity:[{type:e.Input}],textStyle:[{type:e.Input}],dataBinding:[{type:e.Output}],dataBound:[{type:e.Output}],cellStyleKeyRequested:[{type:e.Output}]}});var po=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),r.prototype.createImplementation=function(){return new nr},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"selectedBackground",{get:function(){return n.brushToString(this.i.hs)},set:function(t){this.i.hs=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSelectedBackground",{get:function(){return n.brushToString(this.i.hr)},set:function(t){this.i.hr=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingLeft",{get:function(){return this.i.ha},set:function(t){this.i.ha=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingTop",{get:function(){return this.i.hc},set:function(t){this.i.hc=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingRight",{get:function(){return this.i.hb},set:function(t){this.i.hb=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingBottom",{get:function(){return this.i.g9},set:function(t){this.i.g9=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isCollapsable",{get:function(){return this.i.g3},set:function(t){this.i.g3=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryDisplayMode",{get:function(){return this.i.g0},set:function(t){this.i.g0=n.ensureEnum(N,t)},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-section-header",inputs:{selectedBackground:"selectedBackground",actualSelectedBackground:"actualSelectedBackground",paddingLeft:"paddingLeft",paddingTop:"paddingTop",paddingRight:"paddingRight",paddingBottom:"paddingBottom",isCollapsable:"isCollapsable",summaryDisplayMode:"summaryDisplayMode"},providers:[{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:po,decorators:[{type:e.Component,args:[{selector:"igx-section-header",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return po}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{selectedBackground:[{type:e.Input}],actualSelectedBackground:[{type:e.Input}],paddingLeft:[{type:e.Input}],paddingTop:[{type:e.Input}],paddingRight:[{type:e.Input}],paddingBottom:[{type:e.Input}],isCollapsable:[{type:e.Input}],summaryDisplayMode:[{type:e.Input}]}});var fo=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"selectedBackground",{get:function(){return n.brushToString(this.i.hv)},set:function(t){this.i.hv=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSelectedBackground",{get:function(){return n.brushToString(this.i.hs)},set:function(t){this.i.hs=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryLabelTextColor",{get:function(){return n.brushToString(this.i.hw)},set:function(t){this.i.hw=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSummaryLabelTextColor",{get:function(){return n.brushToString(this.i.ht)},set:function(t){this.i.ht=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryNameTextStyle",{get:function(){return null==this.i.summaryNameTextStyle?null:this.i.summaryNameTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.summaryNameTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingLeft",{get:function(){return this.i.g8},set:function(t){this.i.g8=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingTop",{get:function(){return this.i.ha},set:function(t){this.i.ha=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingRight",{get:function(){return this.i.g9},set:function(t){this.i.g9=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingBottom",{get:function(){return this.i.g7},set:function(t){this.i.g7=+t},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"ng-component",inputs:{selectedBackground:"selectedBackground",actualSelectedBackground:"actualSelectedBackground",summaryLabelTextColor:"summaryLabelTextColor",actualSummaryLabelTextColor:"actualSummaryLabelTextColor",summaryNameTextStyle:"summaryNameTextStyle",paddingLeft:"paddingLeft",paddingTop:"paddingTop",paddingRight:"paddingRight",paddingBottom:"paddingBottom"},usesInheritance:!0,ngImport:e,template:"",isInline:!0}),r}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:fo,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]},propDecorators:{selectedBackground:[{type:e.Input}],actualSelectedBackground:[{type:e.Input}],summaryLabelTextColor:[{type:e.Input}],actualSummaryLabelTextColor:[{type:e.Input}],summaryNameTextStyle:[{type:e.Input}],paddingLeft:[{type:e.Input}],paddingTop:[{type:e.Input}],paddingRight:[{type:e.Input}],paddingBottom:[{type:e.Input}]}});var mo=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new ar},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-summary-row-root",providers:[{provide:fo,useExisting:e.forwardRef((function(){return n}))},{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(fo);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:mo,decorators:[{type:e.Component,args:[{selector:"igx-summary-row-root",template:"",providers:[{provide:fo,useExisting:e.forwardRef((function(){return mo}))},{provide:ho,useExisting:e.forwardRef((function(){return mo}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var go=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new sr},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-summary-row-section",providers:[{provide:fo,useExisting:e.forwardRef((function(){return n}))},{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(fo);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:go,decorators:[{type:e.Component,args:[{selector:"igx-summary-row-section",template:"",providers:[{provide:fo,useExisting:e.forwardRef((function(){return go}))},{provide:ho,useExisting:e.forwardRef((function(){return go}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var yo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ft},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"isStarSized",{get:function(){return this.i.c},set:function(t){this.i.c=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this.i.f},set:function(t){this.i.f=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"minimumWidth",{get:function(){return this.i.e},set:function(t){this.i.e=+t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),bo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new hi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"cellInfo",{get:function(){if(null==this.i.cellInfo)return null;if(!this.i.cellInfo.externalObject){var t=null;switch(this.i.cellInfo.$type.name){case"DateTimeCellModel":t=new Hr;break;case"ImageCellModel":t=new Wr;break;case"NumericCellModel":t=new Ur;break;case"RowSeparatorModel":t=new Kr;break;case"SectionHeaderCellModel":t=new Xr;break;case"TemplateCellModel":t=new Zr;break;case"TemplateHeaderCellModel":t=new Jr;break;case"TemplateSectionHeaderCellModel":t=new eo;break;case"TextCellModel":t=new no;break;case"TextHeaderCellModel":t=new io}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"grid",{get:function(){var t=this.i.grid;return null==t?null:t.externalObject},set:function(t){this.i.grid=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"button",{get:function(){return this.i.button},set:function(t){this.i.button=n.ensureEnum(n.MouseButton_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isDoubleClick",{get:function(){return this.i.isDoubleClick},set:function(t){this.i.isDoubleClick=n.ensureBool(t)},enumerable:!1,configurable:!0}),t}(),vo=function(){function t(){this._zoneRunner=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new oe},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t}(),Co=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"sortIndicatorColor",{get:function(){return n.brushToString(this.i.ho)},set:function(t){this.i.ho=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSortIndicatorColor",{get:function(){return n.brushToString(this.i.hm)},set:function(t){this.i.hm=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortIndicatorStyle",{get:function(){return this.i.g1},set:function(t){this.i.g1=n.ensureEnum(st,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSortIndicatorStyle",{get:function(){return this.i.g0},set:function(t){this.i.g0=n.ensureEnum(st,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingLeft",{get:function(){return this.i.g7},set:function(t){this.i.g7=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingTop",{get:function(){return this.i.g9},set:function(t){this.i.g9=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingRight",{get:function(){return this.i.g8},set:function(t){this.i.g8=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingBottom",{get:function(){return this.i.g6},set:function(t){this.i.g6=+t},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"ng-component",inputs:{sortIndicatorColor:"sortIndicatorColor",actualSortIndicatorColor:"actualSortIndicatorColor",sortIndicatorStyle:"sortIndicatorStyle",actualSortIndicatorStyle:"actualSortIndicatorStyle",paddingLeft:"paddingLeft",paddingTop:"paddingTop",paddingRight:"paddingRight",paddingBottom:"paddingBottom"},usesInheritance:!0,ngImport:e,template:"",isInline:!0}),r}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Co,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]},propDecorators:{sortIndicatorColor:[{type:e.Input}],actualSortIndicatorColor:[{type:e.Input}],sortIndicatorStyle:[{type:e.Input}],actualSortIndicatorStyle:[{type:e.Input}],paddingLeft:[{type:e.Input}],paddingTop:[{type:e.Input}],paddingRight:[{type:e.Input}],paddingBottom:[{type:e.Input}]}});var xo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new mi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.c;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.c=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filter",{get:function(){var t=this.i.d;if(null==t)return null;if(!t.externalObject){var e=new _o;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.d=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this.i.e},set:function(t){this.i.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"expression",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterFactory",{get:function(){return this.i.a},enumerable:!1,configurable:!0}),t}(),_o=function(){function t(){this._filterRequested=null,this._zoneRunner=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new _i},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"filterFactory",{get:function(){return this.i.a},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"iD",{get:function(){return this.i.g},set:function(t){this.i.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"displayName",{get:function(){return this.i.e},set:function(t){this.i.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"icon",{get:function(){return this.i.f},set:function(t){this.i.f=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isInputRequired",{get:function(){return this.i.d},set:function(t){this.i.d=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editorType",{get:function(){return this.i.b},set:function(t){this.i.b=n.ensureEnum(q,t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"filterRequested",{get:function(){var t=this;return null==this._filterRequested&&(this._filterRequested=new e.EventEmitter,this.i.filterRequested=n.delegateCombine(this.i.filterRequested,(function(e,n){var i=new xo;i._provideImplementation(n),t.beforeFilterRequested&&t.beforeFilterRequested(t,i),t._filterRequested.emit({sender:t,args:i})}))),this._filterRequested},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t}(),wo=function(t){function e(e){var i=t.call(this)||this;if(_o.$type||(_o.$type=n.markType(_o,"IgxFilterOperand")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){_o.$type||(_o.$type=n.markType(_o,"IgxFilterOperand"));var t=new n.SyncableObservableCollection$2(_o.$type,_i.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new _o)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),So=function(t){function r(){var e=t.call(this)||this;return e._filterOperands=null,e._actualHeaderTextChange=null,e}return i.__extends(r,t),Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"paddingLeft",{get:function(){return this.i.kk},set:function(t){this.i.kk=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingTop",{get:function(){return this.i.km},set:function(t){this.i.km=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingRight",{get:function(){return this.i.kl},set:function(t){this.i.kl=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingBottom",{get:function(){return this.i.kj},set:function(t){this.i.kj=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"name",{get:function(){return this.i.mf},set:function(t){this.i.mf=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"field",{get:function(){return this.i.lo},set:function(t){this.i.lo=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"headerText",{get:function(){return this.i.lv},set:function(t){this.i.lv=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualHeaderText",{get:function(){return this.i.k3},set:function(t){this.i.k3=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"selectedBackground",{get:function(){return n.brushToString(this.i.n2)},set:function(t){this.i.n2=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSelectedBackground",{get:function(){return n.brushToString(this.i.nv)},set:function(t){this.i.nv=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"rowHoverBackground",{get:function(){return n.brushToString(this.i.n0)},set:function(t){this.i.n0=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualHoverBackground",{get:function(){return n.brushToString(this.i.nt)},set:function(t){this.i.nt=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"rowHoverTextColor",{get:function(){return n.brushToString(this.i.n1)},set:function(t){this.i.n1=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualRowHoverTextColor",{get:function(){return n.brushToString(this.i.nu)},set:function(t){this.i.nu=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"animationSettings",{get:function(){var t=this.i.h6;if(null==t)return null;if(!t.externalObject){var e=new vo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.h6=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"width",{get:function(){var t=this.i.width;if(null==t)return null;if(!t.externalObject){var e=new yo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){if("string"==typeof t){var e=Ft.parse(t),n=new yo;n._implementation=e,t=n}this.i.width=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"minWidth",{get:function(){return this.i.j0},set:function(t){this.i.j0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isFromMarkup",{get:function(){return this.i.jn},set:function(t){this.i.jn=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isAutoGenerated",{get:function(){return this.i.jh},set:function(t){this.i.jh=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filter",{get:function(){return this.i.g1},set:function(t){this.i.g1=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterExpression",{get:function(){return this.i.g3},set:function(t){this.i.g3=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"header",{get:function(){var t=this.i.header;if(null==t)return null;if(!t.externalObject){var e=Co._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.header=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isFilteringEnabled",{get:function(){return this.i.jm},set:function(t){this.i.jm=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isResizingEnabled",{get:function(){return this.i.jp},set:function(t){this.i.jp=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isHidden",{get:function(){return this.i.jo},set:function(t){this.i.jo=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"shouldRemoveWhenHidden",{get:function(){return this.i.js},set:function(t){this.i.js=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortDirection",{get:function(){return this.i.hr},set:function(t){this.i.hr=n.ensureEnum(B,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinned",{get:function(){return this.i.il},set:function(t){this.i.il=n.ensureEnum(E,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualColumnOptionsIconAlignment",{get:function(){return this.i.hi},set:function(t){this.i.hi=n.ensureEnum(ut,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"columnOptionsIconAlignment",{get:function(){return this.i.hj},set:function(t){this.i.hj=n.ensureEnum(ut,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualColumnOptionsIconColor",{get:function(){return n.brushToString(this.i.nr)},set:function(t){this.i.nr=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"columnOptionsIconColor",{get:function(){return n.brushToString(this.i.nw)},set:function(t){this.i.nw=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"columnOptionsIconBehavior",{get:function(){return this.i.hn},set:function(t){this.i.hn=n.ensureEnum(ht,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualColumnOptionsIconBehavior",{get:function(){return this.i.hm},set:function(t){this.i.hm=n.ensureEnum(ht,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualIsColumnOptionsEnabled",{get:function(){return this.i.ja},set:function(t){this.i.ja=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isColumnOptionsEnabled",{get:function(){return this.i.ji},set:function(t){this.i.ji=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualIsColumnOptionsSummariesEnabled",{get:function(){return this.i.jc},set:function(t){this.i.jc=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isColumnOptionsSummariesEnabled",{get:function(){return this.i.jk},set:function(t){this.i.jk=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualIsColumnOptionsGroupingEnabled",{get:function(){return this.i.jb},set:function(t){this.i.jb=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isColumnOptionsGroupingEnabled",{get:function(){return this.i.jj},set:function(t){this.i.jj=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isEditable",{get:function(){return this.i.jl},set:function(t){this.i.jl=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"deletedTextColor",{get:function(){return n.brushToString(this.i.nx)},set:function(t){this.i.nx=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualDeletedTextColor",{get:function(){return n.brushToString(this.i.ns)},set:function(t){this.i.ns=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editOpacity",{get:function(){return this.i.jz},set:function(t){this.i.jz=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualEditOpacity",{get:function(){return this.i.jy},set:function(t){this.i.jy=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textEditStyle",{get:function(){return null==this.i.textEditStyle?null:this.i.textEditStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.textEditStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualEditFontInfo",{get:function(){return null==this.i.is?null:this.i.is.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.is=e},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"mergedCellMode",{get:function(){return this.i.ih},set:function(t){this.i.ih=n.ensureEnum(ke,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"mergedCellEvaluationCriteria",{get:function(){return this.i.id},set:function(t){this.i.id=n.ensureEnum(Re,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"mergedCellVerticalAlignment",{get:function(){return this.i.ha},set:function(t){this.i.ha=n.ensureEnum(k,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"mergedCellPaddingLeft",{get:function(){return this.i.kd},set:function(t){this.i.kd=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"mergedCellPaddingTop",{get:function(){return this.i.kf},set:function(t){this.i.kf=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"mergedCellPaddingRight",{get:function(){return this.i.ke},set:function(t){this.i.ke=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"mergedCellPaddingBottom",{get:function(){return this.i.kc},set:function(t){this.i.kc=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterComparisonType",{get:function(){return this.i.h1},set:function(t){this.i.h1=n.ensureEnum(Ve,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterOperands",{get:function(){if(null===this._filterOperands){var t=new wo,e=this.i.h8;e||(e=new wi),this._filterOperands=t._fromInner(e)}return this._filterOperands},set:function(t){null!==this._filterOperands&&(this._filterOperands._setSyncTarget(null),this._filterOperands=null);var e=new wo;this._filterOperands=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(_i.$type),r=this.i.h8;r||(r=new wi),i._inner=r,i.clear(),this._filterOperands._setSyncTarget(i)},enumerable:!1,configurable:!0}),r.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(this.animationSettings&&this.animationSettings.name&&this.animationSettings.name==e?this.animationSettings:this.width&&this.width.name&&this.width.name==e?this.width:this.header&&this.header.name&&this.header.name==e?this.header:null!=this.filterOperands&&this.filterOperands.findByName&&this.filterOperands.findByName(e)?this.filterOperands.findByName(e):null)},r.prototype._styling=function(e,n,i){t.prototype._styling.call(this,e,n,i),this._inStyling=!0,this.header&&this.header._styling&&this.header._styling(e,n,this),this._inStyling=!1},r.prototype.getUniqueKey=function(){return this.i.lt()},r.prototype.setNamedHeaderValue=function(t,e,n){this.i.m2(t,null==e?null:e,n)},r.prototype.hasNamedHeaderValues=function(){return this.i.jf()},r.prototype.hasNamedHeaderValue=function(t){return this.i.je(t)},r.prototype.removeNamedHeaderValue=function(t){this.i.m1(t)},r.prototype.getNamedHeaderValue=function(t){return this.i.kr(t)},r.prototype.applyCustomFilter=function(t,e,n){this.i.mu(t,e,n)},r.prototype.getDesiredToolbarActions=function(){return this.i.getDesiredToolbarActions()},r.prototype.addCommandAvailabilityListener=function(t){this.i.addCommandAvailabilityListener(t)},r.prototype.removeCommandAvailabilityListener=function(t){this.i.removeCommandAvailabilityListener(t)},r.prototype.addCommandStateChangedListener=function(t){this.i.addCommandStateChangedListener(t)},r.prototype.removeCommandStateChangedListener=function(t){this.i.removeCommandStateChangedListener(t)},Object.defineProperty(r.prototype,"actualHeaderTextChange",{get:function(){var t=this;return null==this._actualHeaderTextChange&&(this._actualHeaderTextChange=new e.EventEmitter,this.i.propertyChanged=n.delegateCombine(this.i.propertyChanged,(function(e,n){t._runInZone((function(){var e=t.actualHeaderText;t.beforeActualHeaderTextChange&&t.beforeActualHeaderTextChange(t,e),t._actualHeaderTextChange.emit(e)}))}))),this._actualHeaderTextChange},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"ng-component",inputs:{paddingLeft:"paddingLeft",paddingTop:"paddingTop",paddingRight:"paddingRight",paddingBottom:"paddingBottom",name:"name",field:"field",headerText:"headerText",actualHeaderText:"actualHeaderText",selectedBackground:"selectedBackground",actualSelectedBackground:"actualSelectedBackground",rowHoverBackground:"rowHoverBackground",actualHoverBackground:"actualHoverBackground",rowHoverTextColor:"rowHoverTextColor",actualRowHoverTextColor:"actualRowHoverTextColor",animationSettings:"animationSettings",width:"width",minWidth:"minWidth",isFromMarkup:"isFromMarkup",isAutoGenerated:"isAutoGenerated",filter:"filter",filterExpression:"filterExpression",header:"header",isFilteringEnabled:"isFilteringEnabled",isResizingEnabled:"isResizingEnabled",isHidden:"isHidden",shouldRemoveWhenHidden:"shouldRemoveWhenHidden",sortDirection:"sortDirection",pinned:"pinned",actualColumnOptionsIconAlignment:"actualColumnOptionsIconAlignment",columnOptionsIconAlignment:"columnOptionsIconAlignment",actualColumnOptionsIconColor:"actualColumnOptionsIconColor",columnOptionsIconColor:"columnOptionsIconColor",columnOptionsIconBehavior:"columnOptionsIconBehavior",actualColumnOptionsIconBehavior:"actualColumnOptionsIconBehavior",actualIsColumnOptionsEnabled:"actualIsColumnOptionsEnabled",isColumnOptionsEnabled:"isColumnOptionsEnabled",actualIsColumnOptionsSummariesEnabled:"actualIsColumnOptionsSummariesEnabled",isColumnOptionsSummariesEnabled:"isColumnOptionsSummariesEnabled",actualIsColumnOptionsGroupingEnabled:"actualIsColumnOptionsGroupingEnabled",isColumnOptionsGroupingEnabled:"isColumnOptionsGroupingEnabled",isEditable:"isEditable",deletedTextColor:"deletedTextColor",actualDeletedTextColor:"actualDeletedTextColor",editOpacity:"editOpacity",actualEditOpacity:"actualEditOpacity",textEditStyle:"textEditStyle",actualEditFontInfo:"actualEditFontInfo",mergedCellMode:"mergedCellMode",mergedCellEvaluationCriteria:"mergedCellEvaluationCriteria",mergedCellVerticalAlignment:"mergedCellVerticalAlignment",mergedCellPaddingLeft:"mergedCellPaddingLeft",mergedCellPaddingTop:"mergedCellPaddingTop",mergedCellPaddingRight:"mergedCellPaddingRight",mergedCellPaddingBottom:"mergedCellPaddingBottom",filterComparisonType:"filterComparisonType",filterOperands:"filterOperands"},outputs:{actualHeaderTextChange:"actualHeaderTextChange"},usesInheritance:!0,ngImport:e,template:"",isInline:!0}),r}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:So,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]},propDecorators:{paddingLeft:[{type:e.Input}],paddingTop:[{type:e.Input}],paddingRight:[{type:e.Input}],paddingBottom:[{type:e.Input}],name:[{type:e.Input}],field:[{type:e.Input}],headerText:[{type:e.Input}],actualHeaderText:[{type:e.Input}],selectedBackground:[{type:e.Input}],actualSelectedBackground:[{type:e.Input}],rowHoverBackground:[{type:e.Input}],actualHoverBackground:[{type:e.Input}],rowHoverTextColor:[{type:e.Input}],actualRowHoverTextColor:[{type:e.Input}],animationSettings:[{type:e.Input}],width:[{type:e.Input}],minWidth:[{type:e.Input}],isFromMarkup:[{type:e.Input}],isAutoGenerated:[{type:e.Input}],filter:[{type:e.Input}],filterExpression:[{type:e.Input}],header:[{type:e.Input}],isFilteringEnabled:[{type:e.Input}],isResizingEnabled:[{type:e.Input}],isHidden:[{type:e.Input}],shouldRemoveWhenHidden:[{type:e.Input}],sortDirection:[{type:e.Input}],pinned:[{type:e.Input}],actualColumnOptionsIconAlignment:[{type:e.Input}],columnOptionsIconAlignment:[{type:e.Input}],actualColumnOptionsIconColor:[{type:e.Input}],columnOptionsIconColor:[{type:e.Input}],columnOptionsIconBehavior:[{type:e.Input}],actualColumnOptionsIconBehavior:[{type:e.Input}],actualIsColumnOptionsEnabled:[{type:e.Input}],isColumnOptionsEnabled:[{type:e.Input}],actualIsColumnOptionsSummariesEnabled:[{type:e.Input}],isColumnOptionsSummariesEnabled:[{type:e.Input}],actualIsColumnOptionsGroupingEnabled:[{type:e.Input}],isColumnOptionsGroupingEnabled:[{type:e.Input}],isEditable:[{type:e.Input}],deletedTextColor:[{type:e.Input}],actualDeletedTextColor:[{type:e.Input}],editOpacity:[{type:e.Input}],actualEditOpacity:[{type:e.Input}],textEditStyle:[{type:e.Input}],actualEditFontInfo:[{type:e.Input}],mergedCellMode:[{type:e.Input}],mergedCellEvaluationCriteria:[{type:e.Input}],mergedCellVerticalAlignment:[{type:e.Input}],mergedCellPaddingLeft:[{type:e.Input}],mergedCellPaddingTop:[{type:e.Input}],mergedCellPaddingRight:[{type:e.Input}],mergedCellPaddingBottom:[{type:e.Input}],filterComparisonType:[{type:e.Input}],filterOperands:[{type:e.Input}],actualHeaderTextChange:[{type:e.Output}]}});var Po=function(t){function e(e){var i=t.call(this)||this;if(So.$type||(So.$type=n.markType(So,"IgxDataGridColumnComponent")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){So.$type||(So.$type=n.markType(So,"IgxDataGridColumnComponent"));var t=new n.SyncableObservableCollection$2(So.$type,Ii.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=So._createFromInternal(t))&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Oo=function(){function t(){this._columns=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new li},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"columns",{get:function(){if(null===this._columns){var t=new Po,e=this.i.columns;e||(e=new ji),this._columns=t._fromInner(e),this.i.columns=e}return this._columns},set:function(t){null!==this._columns&&(this._columns._setSyncTarget(null),this._columns=null);var e=new Po;this._columns=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Ii.$type),r=this.i.columns;r||(r=new ji),i._inner=r,i.clear(),this._columns._setSyncTarget(i),this.i.columns=r},enumerable:!1,configurable:!0}),t}(),Io=function(t){function e(e){var n=t.call(this)||this;if(e)for(var i=0;i<e.length;i++)n.add(e[i]);return n}return i.__extends(e,t),e.prototype._createInnerColl=function(){var t=new n.SyncableObservableCollection$2(n.Base.$type,n.Base.$type,0);return t.compare=function(t,e){var n=t;return n.equals?n.equals(e):n===e},t.createTo=function(t){return t},t.createFrom=function(t){return t},t},e}(n.IgCollection),jo=function(){function t(){this._currentItems=null,this._addedItems=null,this._removedItems=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new $e},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"currentItems",{get:function(){if(null===this._currentItems){var t=new Io,e=this.i.currentItems;e||(e=new xe),this._currentItems=t._fromInner(e),this.i.currentItems=e}return this._currentItems},set:function(t){null!==this._currentItems&&(this._currentItems._setSyncTarget(null),this._currentItems=null);var e=new Io;this._currentItems=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(n.Base.$type),r=this.i.currentItems;r||(r=new xe),i._inner=r,i.clear(),this._currentItems._setSyncTarget(i),this.i.currentItems=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedItems",{get:function(){if(null===this._addedItems){var t=new Io,e=this.i.addedItems;e||(e=new xe),this._addedItems=t._fromInner(e),this.i.addedItems=e}return this._addedItems},set:function(t){null!==this._addedItems&&(this._addedItems._setSyncTarget(null),this._addedItems=null);var e=new Io;this._addedItems=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(n.Base.$type),r=this.i.addedItems;r||(r=new xe),i._inner=r,i.clear(),this._addedItems._setSyncTarget(i),this.i.addedItems=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedItems",{get:function(){if(null===this._removedItems){var t=new Io,e=this.i.removedItems;e||(e=new xe),this._removedItems=t._fromInner(e),this.i.removedItems=e}return this._removedItems},set:function(t){null!==this._removedItems&&(this._removedItems._setSyncTarget(null),this._removedItems=null);var e=new Io;this._removedItems=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(n.Base.$type),r=this.i.removedItems;r||(r=new xe),i._inner=r,i.clear(),this._removedItems._setSyncTarget(i),this.i.removedItems=r},enumerable:!1,configurable:!0}),t}(),ko=function(){function t(t,e){void 0===t&&(t=null),void 0===e&&(e=null),this._implementation=new s(t,e),this._implementation.externalObject=this}return Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t.createIdentityKey=function(e){var n=s.createIdentityKey(e),i=new t(null,null);return i._provideImplementation(n),i},Object.defineProperty(t.prototype,"key",{get:function(){return this.i.key},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.key=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this.i.value},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.value=t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.equals=function(t){return this.i.equals(t)},t}(),To=function(t){function e(e){var i=t.call(this)||this;if(ko.$type||(ko.$type=n.markType(ko,"IgxPrimaryKeyValue")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){ko.$type||(ko.$type=n.markType(ko,"IgxPrimaryKeyValue"));var t=new n.SyncableObservableCollection$2(ko.$type,s.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new ko)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Ro=function(){function t(){this._currentKeys=null,this._addedKeys=null,this._removedKeys=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ze},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"currentKeys",{get:function(){if(null===this._currentKeys){var t=new To,e=this.i.currentKeys;e||(e=new c),this._currentKeys=t._fromInner(e),this.i.currentKeys=e}return this._currentKeys},set:function(t){null!==this._currentKeys&&(this._currentKeys._setSyncTarget(null),this._currentKeys=null);var e=new To;this._currentKeys=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(s.$type),r=this.i.currentKeys;r||(r=new c),i._inner=r,i.clear(),this._currentKeys._setSyncTarget(i),this.i.currentKeys=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedKeys",{get:function(){if(null===this._addedKeys){var t=new To,e=this.i.addedKeys;e||(e=new c),this._addedKeys=t._fromInner(e),this.i.addedKeys=e}return this._addedKeys},set:function(t){null!==this._addedKeys&&(this._addedKeys._setSyncTarget(null),this._addedKeys=null);var e=new To;this._addedKeys=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(s.$type),r=this.i.addedKeys;r||(r=new c),i._inner=r,i.clear(),this._addedKeys._setSyncTarget(i),this.i.addedKeys=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedKeys",{get:function(){if(null===this._removedKeys){var t=new To,e=this.i.removedKeys;e||(e=new c),this._removedKeys=t._fromInner(e),this.i.removedKeys=e}return this._removedKeys},set:function(t){null!==this._removedKeys&&(this._removedKeys._setSyncTarget(null),this._removedKeys=null);var e=new To;this._removedKeys=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(s.$type),r=this.i.removedKeys;r||(r=new c),i._inner=r,i.clear(),this._removedKeys._setSyncTarget(i),this.i.removedKeys=r},enumerable:!1,configurable:!0}),t}(),Do=function(){function t(){this._implementation=new Si,this._implementation.externalObject=this}return Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"primaryKey",{get:function(){return null==this.i.primaryKey?null:(this._primaryKey||(this._primaryKey=new ko(this.i.primaryKey.key,this.i.primaryKey.value)),this._primaryKey)},set:function(t){this.i.primaryKey=t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowItem",{get:function(){return this.i.h},set:function(t){this.i.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnUniqueKey",{get:function(){return this.i.j},set:function(t){this.i.j=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"resolvedColumn",{get:function(){var t=this.i.b;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):this.primaryKey&&this.primaryKey.name&&this.primaryKey.name==t?this.primaryKey:null},t}(),Bo=function(t){function e(e){var i=t.call(this)||this;if(Do.$type||(Do.$type=n.markType(Do,"IgxCellKey")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){Do.$type||(Do.$type=n.markType(Do,"IgxCellKey"));var t=new n.SyncableObservableCollection$2(Do.$type,Si.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Do)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Mo=function(){function t(){this._currentCells=null,this._addedCells=null,this._removedCells=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ci},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"currentCells",{get:function(){if(null===this._currentCells){var t=new Bo,e=this.i.currentCells;e||(e=new Pi),this._currentCells=t._fromInner(e),this.i.currentCells=e}return this._currentCells},set:function(t){null!==this._currentCells&&(this._currentCells._setSyncTarget(null),this._currentCells=null);var e=new Bo;this._currentCells=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Si.$type),r=this.i.currentCells;r||(r=new Pi),i._inner=r,i.clear(),this._currentCells._setSyncTarget(i),this.i.currentCells=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedCells",{get:function(){if(null===this._addedCells){var t=new Bo,e=this.i.addedCells;e||(e=new Pi),this._addedCells=t._fromInner(e),this.i.addedCells=e}return this._addedCells},set:function(t){null!==this._addedCells&&(this._addedCells._setSyncTarget(null),this._addedCells=null);var e=new Bo;this._addedCells=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Si.$type),r=this.i.addedCells;r||(r=new Pi),i._inner=r,i.clear(),this._addedCells._setSyncTarget(i),this.i.addedCells=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedCells",{get:function(){if(null===this._removedCells){var t=new Bo,e=this.i.removedCells;e||(e=new Pi),this._removedCells=t._fromInner(e),this.i.removedCells=e}return this._removedCells},set:function(t){null!==this._removedCells&&(this._removedCells._setSyncTarget(null),this._removedCells=null);var e=new Bo;this._removedCells=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Si.$type),r=this.i.removedCells;r||(r=new Pi),i._inner=r,i.clear(),this._removedCells._setSyncTarget(i),this.i.removedCells=r},enumerable:!1,configurable:!0}),t}(),Eo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new _e},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"startColumn",{get:function(){return this.i.k},set:function(t){this.i.k=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"endColumn",{get:function(){return this.i.i},set:function(t){this.i.i=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"startRow",{get:function(){return this.i.l},set:function(t){this.i.l=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"endRow",{get:function(){return this.i.j},set:function(t){this.i.j=+t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),Ao=function(t){function e(e){var i=t.call(this)||this;if(Eo.$type||(Eo.$type=n.markType(Eo,"IgxCellRange")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){Eo.$type||(Eo.$type=n.markType(Eo,"IgxCellRange"));var t=new n.SyncableObservableCollection$2(Eo.$type,_e.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Eo)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Vo=function(){function t(){this._currentRanges=null,this._addedRanges=null,this._removedRanges=null,this._updatedRanges=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ge},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"currentRanges",{get:function(){if(null===this._currentRanges){var t=new Ao,e=this.i.currentRanges;e||(e=new we),this._currentRanges=t._fromInner(e),this.i.currentRanges=e}return this._currentRanges},set:function(t){null!==this._currentRanges&&(this._currentRanges._setSyncTarget(null),this._currentRanges=null);var e=new Ao;this._currentRanges=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(_e.$type),r=this.i.currentRanges;r||(r=new we),i._inner=r,i.clear(),this._currentRanges._setSyncTarget(i),this.i.currentRanges=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedRanges",{get:function(){if(null===this._addedRanges){var t=new Ao,e=this.i.addedRanges;e||(e=new we),this._addedRanges=t._fromInner(e),this.i.addedRanges=e}return this._addedRanges},set:function(t){null!==this._addedRanges&&(this._addedRanges._setSyncTarget(null),this._addedRanges=null);var e=new Ao;this._addedRanges=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(_e.$type),r=this.i.addedRanges;r||(r=new we),i._inner=r,i.clear(),this._addedRanges._setSyncTarget(i),this.i.addedRanges=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedRanges",{get:function(){if(null===this._removedRanges){var t=new Ao,e=this.i.removedRanges;e||(e=new we),this._removedRanges=t._fromInner(e),this.i.removedRanges=e}return this._removedRanges},set:function(t){null!==this._removedRanges&&(this._removedRanges._setSyncTarget(null),this._removedRanges=null);var e=new Ao;this._removedRanges=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(_e.$type),r=this.i.removedRanges;r||(r=new we),i._inner=r,i.clear(),this._removedRanges._setSyncTarget(i),this.i.removedRanges=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"updatedRanges",{get:function(){if(null===this._updatedRanges){var t=new Ao,e=this.i.updatedRanges;e||(e=new we),this._updatedRanges=t._fromInner(e),this.i.updatedRanges=e}return this._updatedRanges},set:function(t){null!==this._updatedRanges&&(this._updatedRanges._setSyncTarget(null),this._updatedRanges=null);var e=new Ao;this._updatedRanges=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(_e.$type),r=this.i.updatedRanges;r||(r=new we),i._inner=r,i.clear(),this._updatedRanges._setSyncTarget(i),this.i.updatedRanges=r},enumerable:!1,configurable:!0}),t}(),No=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ot(0)},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"field",{get:function(){return this.i.f},set:function(t){this.i.f=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortDirection",{get:function(){return this.i.c},set:function(t){this.i.c=n.ensureEnum(n.ListSortDirection_$type,t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.equals=function(t){return this.i.equals(t)},t}(),Fo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new It},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t.prototype.item=function(t,e){var n=null,i=null;return null!=(n=void 0!==e?this.i.set(t,null==e?null:e.i):this.i.get(t))&&((i=n.externalObject)||((i=new No)._implementation=n,n.externalObject=i)),i},Object.defineProperty(t.prototype,"count",{get:function(){return this.i.size()},enumerable:!1,configurable:!0}),t.prototype.toArray=function(){for(var t=[],e=0;e<this.count;e++)t[e]=this.item(e);return t},t.prototype[Symbol.iterator]=function(){var t,e;return i.__generator(this,(function(n){switch(n.label){case 0:t=0,n.label=1;case 1:return t<this.count?((e=this.item(t)).externalObject&&(e=e.externalObject),[4,e]):[3,4];case 2:n.sent(),n.label=3;case 3:return t++,[3,1];case 4:return[2]}}))},Object.defineProperty(t.prototype,"shouldDetachOnTargetChange",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.add=function(t){return this.i.g(null==t?null:t.i)},t.prototype.insert=function(t,e){this.i.o(t,null==e?null:e.i)},t.prototype.clear=function(){this.i.n()},t.prototype.indexOf=function(t){return this.i.k(null==t?null:t.i)},t.prototype.remove=function(t){return this.i.h(null==t?null:t.i)},t.prototype.removeAt=function(t){var e=this.i.d(t),n=null;if(e&&e.externalObject)n=e.externalObject;else if(e){var i=new No;i._implementation=e,e.externalObject=i,n=i}return n},t}(),$o=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new _t},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"sortDescriptions",{get:function(){var t=this.i.sortDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Fo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.sortDescriptions=null==t?null:t.i},enumerable:!1,configurable:!0}),t}(),zo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new jt},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"groupName",{get:function(){return this.i.d},set:function(t){this.i.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupValue",{get:function(){return this.i.a},set:function(t){this.i.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formattedValue",{get:function(){return this.i.c},set:function(t){this.i.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formattedText",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),t}(),Go=function(t){function r(){var e=t.call(this)||this;return e._formatText=null,e._zoneRunner=null,e}return i.__extends(r,t),r.prototype.createImplementation=function(){return new kt(0)},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"valueFormat",{get:function(){return this.i.x},set:function(t){this.i.x=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"valueFormatSpecifiers",{get:function(){return this.i.j},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.j=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"displayFormat",{get:function(){return this.i.u},set:function(t){this.i.u=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"displayFormatSpecifiers",{get:function(){return this.i.i},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.i=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"formatOverride",{get:function(){return this.i.q},set:function(t){this.i.q=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"displayName",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),r.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(null!=this.valueFormatSpecifiers&&n.arrayFindByName(this.valueFormatSpecifiers,e)?n.arrayFindByName(this.valueFormatSpecifiers,e):null!=this.displayFormatSpecifiers&&n.arrayFindByName(this.displayFormatSpecifiers,e)?n.arrayFindByName(this.displayFormatSpecifiers,e):null)},Object.defineProperty(r.prototype,"formatText",{get:function(){var t=this;return null==this._formatText&&(this._formatText=new e.EventEmitter,this.i.formatText=n.delegateCombine(this.i.formatText,(function(e,n){t._runInZone((function(){var e=new zo;e._provideImplementation(n),t.beforeFormatText&&t.beforeFormatText(t,e),t._formatText.emit({sender:t,args:e})}))}))),this._formatText},enumerable:!1,configurable:!0}),r.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},r}(No),Lo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new Tt},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t.prototype.item=function(t,e){var n=null,i=null;return null!=(n=void 0!==e?this.i.set(t,null==e?null:e.i):this.i.get(t))&&((i=n.externalObject)||((i=new Go)._implementation=n,n.externalObject=i)),i},Object.defineProperty(t.prototype,"count",{get:function(){return this.i.size()},enumerable:!1,configurable:!0}),t.prototype.toArray=function(){for(var t=[],e=0;e<this.count;e++)t[e]=this.item(e);return t},t.prototype[Symbol.iterator]=function(){var t,e;return i.__generator(this,(function(n){switch(n.label){case 0:t=0,n.label=1;case 1:return t<this.count?((e=this.item(t)).externalObject&&(e=e.externalObject),[4,e]):[3,4];case 2:n.sent(),n.label=3;case 3:return t++,[3,1];case 4:return[2]}}))},Object.defineProperty(t.prototype,"shouldDetachOnTargetChange",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.add=function(t){return this.i.g(null==t?null:t.i)},t.prototype.insert=function(t,e){this.i.o(t,null==e?null:e.i)},t.prototype.clear=function(){this.i.n()},t.prototype.indexOf=function(t){return this.i.k(null==t?null:t.i)},t.prototype.remove=function(t){return this.i.h(null==t?null:t.i)},t.prototype.removeAt=function(t){var e=this.i.d(t),n=null;if(e&&e.externalObject)n=e.externalObject;else if(e){var i=new Go;i._implementation=e,e.externalObject=i,n=i}return n},t}(),qo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new wt},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"groupDescriptions",{get:function(){var t=this.i.groupDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Lo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.groupDescriptions=null==t?null:t.i},enumerable:!1,configurable:!0}),t}(),Ho=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new bt},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"field",{get:function(){return this.i.c},set:function(t){this.i.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"displayName",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryResult",{get:function(){return this.i.a},set:function(t){this.i.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formattedResult",{get:function(){return this.i.d},set:function(t){this.i.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formattedText",{get:function(){return this.i.e},set:function(t){this.i.e=t},enumerable:!1,configurable:!0}),t}(),Wo=function(){function t(){this._formatText=null,this._provideCalculator=null,this._zoneRunner=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new vt(0)},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"field",{get:function(){return this.i.ah},set:function(t){this.i.ah=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operand",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureEnum(n.DataSourceSummaryOperand_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"calculatorDisplayName",{get:function(){return this.i.ae},set:function(t){this.i.ae=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"displayName",{get:function(){return this.i.ag},set:function(t){this.i.ag=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"valueFormat",{get:function(){return this.i.ai},set:function(t){this.i.ai=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"shouldDisplay",{get:function(){return this.i.t},set:function(t){this.i.t=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"valueFormatSpecifiers",{get:function(){return this.i.d},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"displayFormat",{get:function(){return this.i.af},set:function(t){this.i.af=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"displayFormatSpecifiers",{get:function(){return this.i.c},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formatOverride",{get:function(){return this.i.y},set:function(t){this.i.y=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maxFractionDigits",{get:function(){return this.i.w},set:function(t){this.i.w=+t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null!=this.valueFormatSpecifiers&&n.arrayFindByName(this.valueFormatSpecifiers,t)?n.arrayFindByName(this.valueFormatSpecifiers,t):null!=this.displayFormatSpecifiers&&n.arrayFindByName(this.displayFormatSpecifiers,t)?n.arrayFindByName(this.displayFormatSpecifiers,t):null},t.prototype.equals=function(t){return this.i.equals(t)},Object.defineProperty(t.prototype,"formatText",{get:function(){var t=this;return null==this._formatText&&(this._formatText=new e.EventEmitter,this.i.formatText=n.delegateCombine(this.i.formatText,(function(e,n){t._runInZone((function(){var e=new Ho;e._provideImplementation(n),t.beforeFormatText&&t.beforeFormatText(t,e),t._formatText.emit({sender:t,args:e})}))}))),this._formatText},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"provideCalculator",{get:function(){var t=this;return null==this._provideCalculator&&(this._provideCalculator=new e.EventEmitter,this.i.provideCalculator=n.delegateCombine(this.i.provideCalculator,(function(e,i){t._runInZone((function(){var e=new n.IgxProvideCalculatorEventArgs;e._provideImplementation(i),t.beforeProvideCalculator&&t.beforeProvideCalculator(t,e),t._provideCalculator.emit({sender:t,args:e})}))}))),this._provideCalculator},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t}(),Uo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new Ct},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t.prototype.item=function(t,e){var n=null,i=null;return null!=(n=void 0!==e?this.i.set(t,null==e?null:e.i):this.i.get(t))&&((i=n.externalObject)||((i=new Wo)._implementation=n,n.externalObject=i)),i},Object.defineProperty(t.prototype,"count",{get:function(){return this.i.size()},enumerable:!1,configurable:!0}),t.prototype.toArray=function(){for(var t=[],e=0;e<this.count;e++)t[e]=this.item(e);return t},t.prototype[Symbol.iterator]=function(){var t,e;return i.__generator(this,(function(n){switch(n.label){case 0:t=0,n.label=1;case 1:return t<this.count?((e=this.item(t)).externalObject&&(e=e.externalObject),[4,e]):[3,4];case 2:n.sent(),n.label=3;case 3:return t++,[3,1];case 4:return[2]}}))},Object.defineProperty(t.prototype,"shouldDetachOnTargetChange",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.add=function(t){return this.i.g(null==t?null:t.i)},t.prototype.insert=function(t,e){this.i.o(t,null==e?null:e.i)},t.prototype.clear=function(){this.i.n()},t.prototype.indexOf=function(t){return this.i.k(null==t?null:t.i)},t.prototype.remove=function(t){return this.i.h(null==t?null:t.i)},t.prototype.removeAt=function(t){var e=this.i.d(t),n=null;if(e&&e.externalObject)n=e.externalObject;else if(e){var i=new Wo;i._implementation=e,e.externalObject=i,n=i}return n},t}(),Ko=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new St},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"summaryDescriptions",{get:function(){var t=this.i.summaryDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Uo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.summaryDescriptions=null==t?null:t.i},enumerable:!1,configurable:!0}),t}(),Xo=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.c=0,e.d=0,e.b=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"CurrentRendererSettings"),e}(n.Base),Zo=function(t){function e(e,n,i){var r=t.call(this)||this;return r.f=null,r.l=!1,r.r=null,r._element=null,r.e=null,r.j=!1,r._rootElement=null,r.n=!1,r.h=null,r.m=!1,r._requestAnimationFrame=null,r.v=0,r.p=-1,r.o=-1,r.k=!1,r.q=0,r.c=null,r.a=null,r.d=null,r.b=null,r.q=i,r.r=e,r.requestAnimationFrame=r.r.getRequestAnimationFrame(),r.element=r.r.createElement("div"),r.element.setRawStyleProperty("position","relative"),r.element.setRawStyleProperty("box-sizing","border-box"),r.refresh(r.f,!1),r.e=n,r.j=!1,r}return i.__extends(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this._element},set:function(t){this._element=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"s",{get:function(){return this.r},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.f},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rootElement",{get:function(){return this._rootElement},set:function(t){this._rootElement=t},enumerable:!1,configurable:!0}),e.prototype.refresh=function(t,e){this.f=t,this.as(e)},e.prototype.viewportChanged=function(){this.as(!0)},e.prototype.invalidateVisibility=function(t){this.h=t,this.n=!0},Object.defineProperty(e.prototype,"initialRefreshFinished",{get:function(){return this.j},enumerable:!1,configurable:!0}),e.prototype.ag=function(t,e,n,i){this.as(!0)},e.prototype.ar=function(t){var e=this.e.b(this.r,t);if(e.isCanvasBased)e.nativeCell.ah=!1;else{var n=e.nativeCell.ah;n.setRawStyleProperty("top","-1000px"),n.setRawStyleProperty("left","-1000px"),0!=t.l.d&&n.setRawStyleProperty("clip","auto"),e.nativeCell.isRemoved=!0,this.aj(t,n)}},e.prototype.as=function(t){if(t)return this.l=!0,void this.z();this.m||this.l||(this.l=!0,this.ac(n.runOn(this,this.z)))},Object.defineProperty(e.prototype,"requestAnimationFrame",{get:function(){return this._requestAnimationFrame},set:function(t){this._requestAnimationFrame=t},enumerable:!1,configurable:!0}),e.prototype.ac=function(t){this.requestAnimationFrame(t)},e.prototype.z=function(){if(this.l&&(this.l=!1,this.n&&(this.n=!1,this.h()),null!=this.f&&!n.Rect.l_op_Equality(this.f.actualVisibleRegion,null)&&!this.f.actualVisibleRegion.isEmpty)){this.j=!0,this.p!=this.f.absoluteWidth&&this.element.setRawStyleProperty("width",this.f.absoluteWidth+"px"),this.o!=this.f.absoluteHeight&&this.element.setRawStyleProperty("height",this.f.absoluteHeight+"px"),this.p=this.f.absoluteWidth,this.o=this.f.absoluteHeight;for(var t=this.f.actualVisibleRegion.top,e=this.f.actualVisibleRegion.left,i=this.f.cc,r=i.count,o=this.f.bz,a=this.f.bz.o,s=a.count,l=this.f.bz.p,u=0;u<s;u++)if(!l._inner[u])for(var c=o.item(a._inner[u]),h=0;h<c.count;h++){var p=c._inner[h];this.ar(p)}o.u();for(var d=!1,f=this.v,m=!0,g=!1,y=0;y<r;y++)for(var b=i._inner[y].q,v=i._inner[y].q.count,C=i._inner[y].p,x=0;x<v;x++)if(!C._inner[x]){var _=b._inner[x];this.e.b(this.r,_).isCanvasBased?g=!0:m=!1,_.bh&&(d=!0),1==_.u&&_.hh!=f&&(d=!0)}g&&this.ab(),d&&(0x8000000000000000==this.v?this.v=0:this.v++,f=this.v);var w=0,S=new Xo,P=this.q;this.m=!0;for(var O=0;O<r;O++)for(var I=i._inner[O].q,j=i._inner[O].q.count,k=i._inner[O].p,T=0;T<j;T++)if(!k._inner[T]){var R=I._inner[T],D=this.e.b(this.r,R);if(D.isCanvasBased){var B=S.a;this.aw(S,O,R,this.f,w,d,m),S.a!=B&&d&&w++}var M=D.isCanvasBased,E=null;if(M||(E=D.nativeCell.ah,0==R.u&&(this.element.append(E),D.nativeCell.isRemoved=!1,this.ah(R,E))),1==R.u){if(M)R.s.nativeCell.ah=!0;D.nativeCell.isRemoved=!1}R.u=2;var A=R.g0+n.intDivide(R.hd,2),V=R.g2+n.intDivide(R.fu,2);this.f.actualVisibleRegion.width,this.f.actualVisibleRegion.height;if(R.bj&&(M||E.setRawPosition(R.cu,R.cv)),M||(0!=R.l.d?this.f.b2?E.setRawStyleProperty("clip",this.w(R.l.d,R.cu,R.cv)):E.setRawStyleProperty("clip","auto"):R.l.ao?E.setRawStyleProperty("clip",this.y(R)):n.Rect.l_op_Inequality(R.me,n.Rect.empty)?E.setRawStyleProperty("clip",this.x(R.me)):E.setRawStyleProperty("clip","auto")),R.ku(),M)R.s.nativeCell.co(P);if(R.s.modelUpdated(R),M&&S.b){var N=S.a;N.aa(),0!=R.l.d&&this.f.b2&&N.af(this.ax(R.l.d)),R.s.nativeCell.b6(N,S.c,S.d,R.cu,R.cv,P),N.z()}R.kn(),d&&(R.hh=f,M||E.setRawStyleProperty("z-index",w.toString()),w++),this.ai(R,E)}this.m=!1,null!=S.a&&1!=this.q&&S.a.z(),this.an()}},e.prototype.an=function(){},e.prototype.ab=function(){if(!this.k){this.k=!0;var t=this.r.rootWrapper,e=window.navigator.msPointerEnabled&&void 0!==window.MSGesture,i=void 0!==window.PointerEvent;window.TouchEvent;e||i?(t.listen("pointerdown",n.runOn(this,this.ao)),t.listen("pointerup",n.runOn(this,this.aq)),t.listen("pointermove",n.runOn(this,this.ap))):(t.listen("mousedown",n.runOn(this,this.ad)),t.listen("mouseup",n.runOn(this,this.af)),t.listen("mousemove",n.runOn(this,this.ae)),t.listen("touchstart",n.runOn(this,this.at)),t.listen("touchend",n.runOn(this,this.av)),t.listen("touchmove",n.runOn(this,this.au))),t.listen("dblclick",n.runOn(this,this.aa))}},e.prototype.ad=function(t){this.am(t,!1)},e.prototype.af=function(t){this.ak(t,!1)},e.prototype.ae=function(t){this.al(t,!1)},e.prototype.aa=function(t){if(null!=this.f){var e=this.r.rootWrapper.getOffset(),n=this.f.f(t.pageX-e.left,t.pageY-e.top);null!=n&&null!=n.s&&n.s.isCanvasBased&&null!=n.s.nativeCell&&n.s.nativeCell.onDoubleClick(t)}},e.prototype.ao=function(t){"touch"==t.originalEvent.pointerType?this.at(t):this.ad(t)},e.prototype.ap=function(t){"touch"==t.originalEvent.pointerType?this.au(t):this.ae(t)},e.prototype.aq=function(t){"touch"==t.originalEvent.pointerType?this.av(t):this.af(t)},e.prototype.at=function(t){this.am(t,!0)},e.prototype.am=function(t,e){if(null!=this.f){var n=this.r.rootWrapper.getOffset(),i=this.f.f(t.pageX-n.left,t.pageY-n.top);null!=i&&null!=i.s&&i.s.isCanvasBased&&null!=i.s.nativeCell&&i.s.nativeCell.onContactStarted(t,e)}},e.prototype.au=function(t){this.al(t,!0)},e.prototype.al=function(t,e){if(null!=this.f){var n=this.r.rootWrapper.getOffset(),i=this.f.f(t.pageX-n.left,t.pageY-n.top);null!=i&&null!=i.s&&i.s.isCanvasBased&&null!=i.s.nativeCell&&i.s.nativeCell.onContactMoved(t,e)}},e.prototype.av=function(t){this.ak(t,!0)},e.prototype.ak=function(t,e){if(null!=this.f){var n=this.r.rootWrapper.getOffset(),i=this.f.f(t.pageX-n.left,t.pageY-n.top);null!=i&&null!=i.s&&i.s.isCanvasBased&&null!=i.s.nativeCell&&i.s.nativeCell.onContactCompleted(t,e)}},e.prototype.aw=function(t,e,i,r,o,a,s){if(s&&(e=0),null==this.c){this.c=new Array(r.cc.count),this.a=new Array(r.cc.count),this.d=new Array(r.cc.count),this.b=new Array(r.cc.count);for(var l=0;l<r.cc.count;l++)this.c[l]=null,this.a[l]=null,this.d[l]=-1,this.b[l]=-1}if(null==this.c[e]){var u=this.r.createElement("canvas");this.a[e]=u,u.setRawStyleProperty("position","absolute"),u.setRawStyleProperty("z-index",o.toString()),this.element.append(u);var c=this.r.get2DCanvasContext(u),h=((p=new n.CanvasViewRenderer).h$d=c,p);this.c[e]=new n.RenderingContext(h,c)}var p;if(t.a!=this.c[e]){t.a=this.c[e],t.b=!0,t.c=r.actualVisibleRegion.left,t.d=r.actualVisibleRegion.top;var d=r.actualVisibleRegion.width*this.q,f=r.actualVisibleRegion.height*this.q;d==this.d[e]&&f==this.b[e]||(this.a[e].setRawSize(r.actualVisibleRegion.width,r.actualVisibleRegion.height),this.a[e].setAttribute("width",d+"px"),this.a[e].setAttribute("height",f+"px"),this.d[e]=d,this.b[e]=f),a&&this.a[e].setRawStyleProperty("z-index",o.toString()),t.a.l(0,0,r.actualVisibleRegion.width,r.actualVisibleRegion.height),this.a[e].setRawPosition(t.c,t.d)}},e.prototype.ax=function(t){var e=this.f.cr,i=this.f.cm+this.f.cj,r=this.f.cz,o=this.f.ch;return 2==t&&(i=Math.min(this.f.c4,this.f.cp)-this.f.c0-this.f.ck,r=this.f.c0),new n.Rect(0,i,e,r,o)},e.prototype.w=function(t,e,n){if(0!=t){var i=this.ax(t),r=i.x-e,o=i.y-n;return"rect("+o+"px,"+(r+i.width)+"px,"+(o+i.height)+"px,"+r+"px)"}return"auto"},e.prototype.x=function(t){return n.stringFormat1("rect({0}px, {1}px, {2}px, {3}px)",t.top,t.right,t.bottom,t.left)},e.prototype.y=function(t){var e=t.cu<this.g.cn?this.g.cn-t.cu:0,i=-1==this.g.cy?t.hd:t.cu+t.hd>this.g.co?t.hd-(t.cu+t.hd-this.g.co):t.hd,r=t.fu;return this.x(new n.Rect(0,e,0,i,r))},e.prototype.ah=function(t,e){},e.prototype.aj=function(t,e){},e.prototype.ai=function(t,e){},e.prototype.detach=function(){if(null!=this.f)for(var t=0;t<this.f.cc.count;t++)for(var e=this.f.cc._inner[t].q,n=0;n<e.count;n++){var i=e._inner[n];null!=i.s&&null!=i.s.nativeCell&&i.s.nativeCell.detach()}},e.prototype.attach=function(){},e.$t=n.markType(e,"DataGridCellLayoutPanel",n.Base.$,[Dn]),e}(n.Base),Yo=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),Object.defineProperty(e.prototype,"renderer",{get:function(){return this.a._renderer},enumerable:!1,configurable:!0}),e.prototype.onContentSizeChanged=function(){this.a.refreshContentSize()},e.prototype.createLocalDataSource=function(t){var e=new n.LocalDataSource;return e.dataSource=t,e},e.prototype.createTextColumn=function(t){if(n.TypeRegistrar.isRegistered("IgxTextColumnComponent")){var e=n.TypeRegistrar.create("IgxTextColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},e.prototype.createNumericColumn=function(t){if(n.TypeRegistrar.isRegistered("IgxNumericColumnComponent")){var e=n.TypeRegistrar.create("IgxNumericColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},e.prototype.createDateTimeColumn=function(t){if(n.TypeRegistrar.isRegistered("IgxDateTimeColumnComponent")){var e=n.TypeRegistrar.create("IgxDateTimeColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},e.prototype.createImageColumn=function(t){if(n.TypeRegistrar.isRegistered("IgxImageColumnComponent")){var e=n.TypeRegistrar.create("IgxImageColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},e.prototype.createTemplateColumn=function(t){if(n.TypeRegistrar.isRegistered("IgxTemplateColumnComponent")){var e=n.TypeRegistrar.create("IgxTemplateColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},e.prototype.createComboBoxColumn=function(t){if(n.TypeRegistrar.isRegistered("IgxComboBoxColumnComponent")){var e=n.TypeRegistrar.create("IgxComboBoxColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},e.prototype.focusScroller=function(){this.a._focusScroller()},e.prototype.insertExternalColumnAtIndex=function(t,e){this.a._insertExternalColumnAtIndex(t,e)},e.prototype.removeExternalColumn=function(t){this.a._removeExternalColumn(t)},e.prototype.setDefaultCursor=function(){this.a._setDefaultCursor()},e.prototype.setResizeCursor=function(){this.a._setResizeCursor()},e.prototype.setHandCursor=function(){this.a._setHandCursor()},e.prototype.setBorder=function(t,e,n,i,r,o,a,s,l){var u=this.a,c=t._fill,h=e,p=n,d=i,f=r,m=o,g=a,y=s,b=l;u._setBorder(c,h,p,d,f,m,g,y,b)},e.prototype.setScrollerVerticalTrackInset=function(t){this.a._setScrollerVerticalTrackInset(t)},e.prototype.setScrollbarStyle=function(t){this.a._setScrollbarStyle(t)},e.prototype.setScrollbarColor=function(t){this.a._setScrollbarColor(t)},e.prototype.setClipboardText=function(t){var e=window.navigator.clipboard;null!=e&&e.writeText(t)},e.prototype.ensureColumnsAreManual=function(){this.a._ensureColumnsAreManual()},e.$t=n.markType(e,"GridExternalWrapper",n.Base.$,[Rn]),e}(n.Base),Qo=function(t){function e(e){var i=t.call(this)||this;return i.e=0,i.c=null,i._requestAnimationFrame=null,i.d=new n.List$1(n.Delegate_$type,0),i.b=!1,i.requestAnimationFrame=e.getRequestAnimationFrame(),i.c=new n.Dictionary$2(n.Number_$type,n.Delegate_$type,0),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"requestAnimationFrame",{get:function(){return this._requestAnimationFrame},set:function(t){this._requestAnimationFrame=t},enumerable:!1,configurable:!0}),e.prototype.f=function(){var t,e;this.b=!1,this.d.clear();try{for(var r=i.__values(n.fromEnum(this.c.values)),o=r.next();!o.done;o=r.next()){var a=o.value;this.d.add(a)}}catch(e){t={error:e}}finally{try{o&&!o.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}for(var s=0;s<this.d.count;s++)this.d._inner[s]();this.d.clear()},e.prototype.setupTicking=function(t){var e=this.e;return this.e++,this.c.item(e,t),e},e.prototype.requestFrame=function(t){this.b||(this.b=!0,this.requestAnimationFrame(n.runOn(this,this.f)))},e.prototype.teardownTicking=function(t){this.c.containsKey(t)&&this.c.removeItem(t)},e.$t=n.markType(e,"BrowserTickProvider",n.Base.$,[n.ITickProvider_$type]),e}(n.Base),Jo=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.devicePixelsToPixel=function(t){return t},e.$t=n.markType(e,"BrowserPixelConverter",n.Base.$,[Ne]),e}(n.Base),ta=new n.Type(null,"INativeCell"),ea=function(t){function e(){var e=t.call(this)||this;return e.f=null,e.j=new n.Color,e.g=1,e.a=!0,e.c=0,e.b=0,e.k=new n.Color,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"l",{get:function(){return this.j},set:function(t){this.j=t,this.i()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return this.g},set:function(t){this.a=!0,this.g=t,this.i()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.c},set:function(t){this.c=t,this.i()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.b},set:function(t){this.b=t,this.i()},enumerable:!1,configurable:!0}),e.prototype.i=function(){this.e,this.d;this.k=n.Color.u(n.truncate(this.j.l*this.g),this.j.o,this.j.n,this.j.m)},e.$t=n.markType(e,"CanvasPlaceholderView"),e}(n.Base),na=function(t){function e(e){var i,r=t.call(this)||this;return r.b=null,r.v=!0,r.r=!0,r.n=null,r.bp=null,r.t=!1,r.b3=null,r.o=!1,r.at=1,r.ax=5,r.az=5,r.ay=5,r.aw=5,r.c1=null,r.al=0,r.an=0,r.am=0,r.ak=0,r.c9=new n.Rectangle,r.c5=new n.Line,r.c8=new n.Line,r.c6=new n.Line,r.c4=new n.Line,r.c7=new n.Line,r.a3=0,r.a5=0,r.a6=0,r.a7=0,r.br=null,r.m=null,r.ap=0,r.ao=0,r.ar=0,r.aq=0,r.x=!0,r.y=!0,r.a4=NaN,r.c0=new n.TextBlock,r.c3=n.Color.u(255,0,0,0),r.w=!0,r.av=0,r.a8=0,r.c2=n.Color.u(255,255,255,255),r.p=!1,r.a=null,r.d=0,r.f=0,r.b2=1,r.u=!1,r.a2=0,r.a1=0,r.i=((i=new n.FontInfo).q="Verdana",i.f=12,i),r.s=!0,r.bu=-1,r.b0=0,r.b1=0,r.q=!1,r.bs=0,r.c=0,r.au=NaN,r.h=null,r.bw=-1,r.as=NaN,r.g=1,r.a0=1,r.bp=e,r}return i.__extends(e,t),Object.defineProperty(e.prototype,"ad",{get:function(){return this.r},set:function(t){this.r=t},enumerable:!1,configurable:!0}),e.prototype.cp=function(t){this.n=t},e.prototype.ca=function(){this.r=!0,null!=this.n&&this.n()},Object.defineProperty(e.prototype,"isCanvasBased",{get:function(){return!0},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bq",{get:function(){return this.bp},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isRemoved",{get:function(){return this.t},set:function(t){this.t=t},enumerable:!1,configurable:!0}),e.prototype.cr=function(t){this.b3=t,this.r=!0,this.v=!0},Object.defineProperty(e.prototype,"templateContext",{get:function(){return this.m.h()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"z",{get:function(){return this.o},set:function(t){this.o=t},enumerable:!1,configurable:!0}),e.prototype.get_af=function(){return!1},Object.defineProperty(e.prototype,"af",{get:function(){return this.get_af()},enumerable:!1,configurable:!0}),e.prototype.ch=function(t,e,n,i,r){this.r=!0,this.c1=t,this.al=e,this.an=n,this.am=i,this.ak=r,this.v=!0},e.prototype.ci=function(t){this.r=!0,this.at=t,this.c0._opacity=this.at},Object.defineProperty(e.prototype,"bf",{get:function(){return this.ax},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bh",{get:function(){return this.az},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bg",{get:function(){return this.ay},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"be",{get:function(){return this.aw},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ba",{get:function(){return this.al},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bc",{get:function(){return this.an},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bb",{get:function(){return this.am},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a9",{get:function(){return this.ak},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bj",{get:function(){return this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bl",{get:function(){return this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bm",{get:function(){return this.a7},enumerable:!1,configurable:!0}),e.prototype.get_ag=function(){return!1},Object.defineProperty(e.prototype,"ag",{get:function(){return this.get_ag()},enumerable:!1,configurable:!0}),e.prototype.b6=function(t,e,n,i,r,o){var a=!0,s=!0,l=!1;this.ag&&(a=!1,s=!1,l=!1),this.b7(t,e,n,i,r,o,a,s,l)},Object.defineProperty(e.prototype,"resized",{get:function(){return this.x},enumerable:!1,configurable:!0}),e.prototype.ensureCorrectSize=function(){return this.x=this.aa(this.a0),this.x},e.prototype.b7=function(t,e,n,i,r,o,a,s,l){if(this.w){1!=this.b2&&t.ae(this.b2);var u=this.m;if(this.y||(u=t),this.a0=o,l||(this.b8(),this.ensureCorrectSize()),this.ad||this.x||l||!this.y){if(this.ad=!1,(this.s||this.x||null!=this.i&&this.i.j!=this.bu)&&(this.s=!1,this.bu=this.i.j,u.ad(this.i)),1!=o&&(u.aa(),u.ab(o,o)),!this.y){u.aa();var c=Math.round(i-e),h=Math.round(r-n);u.ag(c,h)}a&&this.cb(u),s&&this.cc(u),this.y||u.z(),1!=o&&u.z()}if(!l&&this.y){var p=Math.round((i-e)*o),d=Math.round((r-n)*o);this.ap==this.ar&&this.ao==this.aq?t.n(this.bx(),1,p,d,this.ap,this.ao):t.o(this.bx(),1,0,0,this.ap,this.ao,p,d,this.ap,this.ao)}1!=this.b2&&t.ae(1)}},e.prototype.bx=function(){return this.br.getNativeElement()},e.prototype.cb=function(t){this.p||t.l(0,0,this.ar,this.aq),this.c9.n=0,this.c9.o=0,this.c9.width=this.a8,this.c9.height=this.av,t.w(this.c9),null!=this.c1&&(this.al>0&&(this.c5.ap=0,this.c5.an=this.al/2,this.c5.aq=this.av,this.c5.ao=this.al/2,this.c5._stroke=this.c1,this.c5.ad=this.al,t.s(this.c5)),this.am>0&&(this.c6.ap=0,this.c6.an=Math.max(0,this.a8-this.am/2),this.c6.aq=this.av,this.c6.ao=Math.max(0,this.a8-this.am/2),this.c6._stroke=this.c1,this.c6.ad=this.am,t.s(this.c6)),this.an>0&&(this.c8.ap=this.an/2,this.c8.an=this.al,this.c8.aq=this.an/2,this.c8.ao=Math.max(0,this.a8-this.am/2),this.c8._stroke=this.c1,this.c8.ad=this.an,t.s(this.c8)),this.ak>0&&(this.c4.ap=Math.max(0,this.av-this.ak/2),this.c4.an=this.al,this.c4.aq=Math.max(0,this.av-this.ak/2),this.c4.ao=Math.max(0,this.a8-this.am/2),this.c4._stroke=this.c1,this.c4.ad=this.ak,t.s(this.c4)))},e.prototype.co=function(t){this.a0=t},e.prototype.renderStandardContent=function(){this.b7(this.m,0,0,0,0,this.a0,!1,!0,!0)},e.prototype.renderStandardBackground=function(){this.b7(this.m,0,0,0,0,this.a0,!0,!1,!0)},e.prototype.cc=function(t){this.v&&(this.cz(t),this.v=!1),null!=this.c0.al&&(this.c0.n=this.a3,this.c0.o=this.a6,t.x(this.c0),this.u&&(this.c7.ad=1,this.c7.an=this.a3,this.c7.ap=this.a7-2,this.c7.ao=this.a3+(this.a5-this.a3),this.c7.aq=this.a7-2,this.c7._stroke=this.c0.ao,this.m.s(this.c7)))},e.prototype.b8=function(){if(null==this.br&&this.y){this.br=this.bp.createElement("canvas");var t=this.bp.get2DCanvasContext(this.br),e=((i=new n.CanvasViewRenderer).h$d=t,i);this.m=new n.RenderingContext(e,t),this.v=!0}var i},e.prototype.aa=function(t){var e=Math.round(this.a8*t),n=Math.round(this.av*t);this.ap=e,this.ao=n;var i=this.bi(e),r=this.bi(n);return(i!=this.ar||r!=this.aq)&&(this.br.setAttribute("width",i+"px"),this.br.setAttribute("height",r+"px"),this.ar=i,this.aq=r,this.ap=e,this.ao=n,!0)},e.prototype.bi=function(t){return t},e.prototype.cn=function(t,e,n,i){this.r=!0,this.ax=t,this.az=e,this.ay=n,this.aw=i,this.v=!0},Object.defineProperty(e.prototype,"bk",{get:function(){return this.a4},set:function(t){this.a4=t},enumerable:!1,configurable:!0}),e.prototype.cs=function(t){var e,i=this;this.r=!0,this.c3=t,this.c0.ao=((e=new n.Brush).color=i.c3,e)},e.prototype.get_ae=function(){return!1},Object.defineProperty(e.prototype,"ae",{get:function(){return this.get_ae()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ah",{get:function(){return this.w},set:function(t){this.r=!0,this.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bd",{get:function(){return this.av},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bo",{get:function(){return this.a8},enumerable:!1,configurable:!0}),e.prototype.ck=function(t){this.r=!0,this.av=t,this.c9.height=this.av},e.prototype.cu=function(t){this.r=!0,this.a8=t,this.c9.width=this.a8,this.v=!0},e.prototype.b5=function(){this.af&&(this.o=!0,this.a=new ea,this.d=0,this.f=1,this.a.l=n.Color.u(120,120,120,120),this.a.h=0)},e.prototype.cg=function(t){var e,i=this;this.r=!0,this.c2=t,this.p=255==this.c2.l,this.c9._fill=((e=new n.Brush).color=i.c2,e)},e.prototype.cm=function(t){this.r=!0,this.b2=t},e.prototype.cq=function(t){this.u=t,this.r=!0},e.prototype.l=function(){return null!=n.TestRandomness.instance.testRandomnessSource?n.TestRandomness.instance.testRandomnessSource:new n.DefaultRandomnessSource(1,e.bz)},e.prototype.k=function(){return this.l().getGenerator("PlaceholderWidths")},e.prototype.cy=function(t){this.af&&(this.r=!0,this.a.h=.20000000298023224*t)},e.prototype.b9=function(t,e,i,r){if(null!=this.a){var o=this.a2,a=this.a1;1==this.f?e=n.truncate(e+r/2-a/2):2==this.f&&(e=n.truncate(e+r-a)),1==this.d?t=n.truncate(t+i/2-o/2):2==this.d&&(t=n.truncate(t+i-o))}},e.prototype.cj=function(t){this.i=t,this.s=!0,this.r=!0,this.v=!0},e.prototype.cx=function(t){if(this.af){this.r=!0;var i=n.DeviceUtils.f(12);null==t.ag||n.isNaN_(t.ag.f)||(i=t.ag.f),this.a1!=i&&(this.a1=i);var r=.2*t.hd,o=.6*t.fu;if(!(this.a2>=r&&this.a2<=o)){null==e.j&&(e.j=this.k());var a=e.j.nextDouble()*(o-r)+r;this.a2!=a&&(this.a2=a)}}},e.prototype.cv=function(t,e){this.af&&(this.r=!0,this.d=t,this.f=e)},e.prototype.cw=function(t){this.af&&(this.r=!0)},e.prototype.cf=function(t){this.b=t},Object.defineProperty(e.prototype,"e",{get:function(){return this.c},enumerable:!1,configurable:!0}),e.prototype.cl=function(t){this.c=t,this.r=!0,this.v=!0},e.prototype.cz=function(t){if(null!=this.b3&&null!=t){var e;(this.s||null!=this.i&&this.i.j!=this.bu)&&(this.s=!1,this.bu=this.i.j,t.ad(this.i)),this.h==this.i&&this.bw==this.i.j||(this.h=this.i,this.bw=this.i.j,this.au=n.FontUtil.getCurrentFontHeight(this.bp,this.i)),e=this.au;var i=0,r=0,o=this.a8,a=this.av;o-=this.al+this.ax+this.am+this.ay,a-=this.an+this.az+this.ak+this.aw,o=Math.max(o,0),a=Math.max(a,0);var s=o;!n.isNaN_(this.a4)&&this.a4<o&&(s=this.a4);var l=this.bn(this.c0,this.b3,s,t);switch(this.c){case 0:i=this.ax+this.al;break;case 3:case 1:i=this.ax+this.al+(o/2-l/2);break;case 2:i=Math.max(0,this.a8-(this.ay+this.am))-l}switch(this.g){case 0:r=this.az+this.an;break;case 3:case 1:r=this.az+this.an+(a/2-e/2);break;case 2:r=Math.max(0,this.av-(this.aw+this.ak))-e}this.a3=i,this.a5=this.a3+l,this.a6=r,this.a7=this.a6+e/2,this.r=!0}},e.prototype.bn=function(t,e,i,r){var o=e,a=o.length,s="…";if(n.isNaN_(this.as)&&(this.as=r.g(s)),i<=this.as)return t.al=s,this.as;var l=r.g(o);if(l<=i)return t.al=e,l;var u=i/l,c=n.truncate(Math.ceil(a*u)),h=o.substr(0,c)+s,p=r.g(h);for(p>i?a=c:(c+=1,h=o.substr(0,c)+s,(p=r.g(h))>i&&(a=c));l>i&&a>0;)a--,o=o.substr(0,a)+s,l=r.g(o);return t.al=o,l},e.prototype.ct=function(t){this.g=t,this.r=!0,this.v=!0},e.prototype.aj=function(t){return t.isClickActionDesired},e.prototype.onContactStarted=function(t,e){null!=this.b&&this.aj(this.b)&&(this.b0=t.pageX,this.b1=t.pageY,this.b.mouseDownCell(this.b0,this.b1))},e.prototype.onContactMoved=function(t,i){if(null!=this.b&&this.aj(this.b)){var r=t.pageX,o=t.pageY;this.b.isMouseDown&&(i?n.PointUtil.equals(this.b.mousePosition,null)||Math.abs(r-this.b.mousePosition.x)>e.bv||Math.abs(o-this.b.mousePosition.y)>e.bv?this.b.mouseUpCell(r,o):t.stopPropagation():n.PointUtil.equals(this.b.mousePosition,null)?this.b.mouseUpCell(r,o):(Math.abs(r-this.b.mousePosition.x)>e.bt||Math.abs(o-this.b.mousePosition.y)>e.bt)&&(this.b.isControlPressed=t.ctrlKey,this.b.dragStarted()))}},e.prototype.onContactCompleted=function(t,i){if(null!=this.b&&this.aj(this.b)){var r=t.pageX,o=t.pageY;if((n.PointUtil.equals(this.b.mousePosition,null)||Math.abs(r-this.b.mousePosition.x)>e.bv||Math.abs(o-this.b.mousePosition.y)>e.bv||this.b.isDrag)&&this.b.mouseUpCell(r,o),this.b.isCellDown()){switch(this.b.isControlPressed=t.ctrlKey,this.b.isShiftPressed=t.shiftKey,t.which){case 1:this.b.clickCell(0);break;case 2:this.b.clickCell(1);break;case 3:this.b.clickCell(2);break;default:this.b.clickCell(3)}this.b.mouseUpCell(t.pageX,t.pageY)}}},e.prototype.onDoubleClick=function(t){switch(t.which){case 1:this.b.doubleClicked(0);break;case 2:this.b.doubleClicked(1);break;case 3:this.b.doubleClicked(2);break;default:this.b.doubleClicked(3)}},e.prototype.detach=function(){},e.$t=n.markType(e,"CanvasGridCellBase",n.Base.$,[ta]),e.j=null,e.bz=new n.Random(0),e.bv=10,e.bt=3,e}(n.Base),ia=function(t){function e(e){var n=t.call(this,e)||this;return n.cl(0),n.ct(1),n}return i.__extends(e,t),e.prototype.get_af=function(){return!0},e.$t=n.markType(e,"CanvasTextCell",na.$),e}(na),ra=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),e.prototype.modelUpdated=function(t){this.b(t)},e.prototype.b=function(t){this.a.cf(t.c),(t.a8($n.em)||t.a8($n.eq)||t.a8($n.eo)||t.a8($n.ek))&&this.a.cn(t.el,t.ep,t.en,t.ej),t.a1&&this.a.ch(t.lv,t.d9,t.ee,t.ec,t.d7),t.bo&&(this.a.ck(t.fu),this.a.cu(t.hd)),t.a3&&(t.bi&&!this.a.z&&this.a.b5(),t.a8($n.d6)&&this.a.cg(t.lu.color),t.a8($n.ei)&&this.a.cm(t.ch)),t.bo&&t.bi&&this.a.cx(t)},e.prototype.c=function(t,e,i){return 0==i?t.color:1==i?e.color:n.BrushUtil.n(t,i,e,0).color},Object.defineProperty(e.prototype,"nativeCell",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isCanvasBased",{get:function(){return!0},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CanvasCellPresenterBase",n.Base.$,[Bn]),e}(n.Base),oa=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.e=function(t){return null==t?e.d:t.color},e.a=function(t,n,i){if(n.a3){if(n.a8($n.fa)||n.a8($n.eg)||n.a8($n.hc)||n.a7("IsRowPinned")||n.a7("IsRowSticky")||n.a7("PinnedRowOpacity")){var r=Math.min(1,Math.max(0,n.ct)),o=n.cg*(1-r);i.ci(o),n.bi&&i.cy(n.cg*r)}if(n.a8($n.er)&&(e.c(i,n.lw),n.bi&&i.cw(n.lw)),n.a8($n.gg),n.a8($n.fw)||n.a8($n.hb)){var a=n.g,s=n.i;i.cl(a),i.ct(s),n.bi&&i.cv(a,s)}n.a7("ActualFontInfo")&&e.b(t,i,n.ag),(n.a7("IsEdited")||n.a7("IsDeleted"))&&((n.a9||n.a6)&&n.a6?i.cq(!0):i.cq(!1))}},e.b=function(t,e,i){null==i&&(i=n.FontUtil.getDefaultFont(t)),e.cj(i)},e.c=function(t,n){var i=e.e(n);t.cs(i)},e.$t=n.markType(e,"CanvasContentCellModelHelper"),e.d=n.Color.u(0,0,0,0),e}(n.Base),aa=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(Qn.mf)||e.a8($n.gj))&&(null!=n.mh?n.j1=n.mh:null==n.hm?n.j1="":n.j1=n.hm.toString(),this.d.cr(n.j1)),oa.a(this.a.bq,n,this.a))},e.$t=n.markType(e,"CanvasTextCellPresenter",ra.$),e}(ra),sa=function(t){function e(e){var n=t.call(this,e)||this;return n.cl(2),n.ct(1),n}return i.__extends(e,t),e.$t=n.markType(e,"CanvasNumericCell",ia.$),e}(ia),la=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(Kn.m4)||n.ml())&&(n.j1=this.e(n),this.d.cr(n.j1)),oa.a(this.a.bq,n,this.a))},e.prototype.e=function(t){if(null!=t.na){var e=t.mo;return t.na.format(e)}return Yi.c(t)},e.$t=n.markType(e,"CanvasNumericCellPresenter",ra.$),e}(ra),ua=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),e.$t=n.markType(e,"CanvasDateTimeCell",ia.$),e}(ia),ca=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(zn.mr)||e.a8(zn.ms)||e.a8(zn.mq))&&(this.e(n),this.d.cr(n.j1)),oa.a(this.a.bq,n,this.a))},e.prototype.e=function(t){t.j1=t.m3(t.mp),t.j1==n.stringEmpty()&&null===n.typeCast(n.Date_$type,t.hm)&&(t.j1=t.hm.toString())},e.$t=n.markType(e,"CanvasDateTimeCellPresenter",ra.$),e}(ra),ha=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"SortIndicatorRenderCompletedEventArgs",n.EventArgs.$),e}(n.EventArgs),pa=function(t){function e(e){var i=t.call(this)||this;return i.a=null,i.d=new n.List$1(n.Path.$,0),i.i=0,i.h=0,i.b=0,i.m=null,i.c=null,i.l=null,i.f=0,i.e=0,i.g=1,i.k=0,i.j=0,i.a=e,i}return i.__extends(e,t),e.prototype.t=function(){if(null!=this.m&&null!=this.c){if(this.i!=this.k||this.h!=this.j||this.b!=this.a.f){switch(this.d.clear(),this.a.f){case 0:this.n();break;case 1:this.o();break;case 2:this.p()}this.i=this.k,this.h=this.j,this.b=this.a.f}switch(this.a.f){case 0:this.v();break;case 1:this.w();break;case 2:this.x()}var t=Math.round(this.k*this.g),e=Math.round(this.j*this.g);this.f==t&&this.e==e||(this.m.setAttribute("width",t.toString()),this.m.setAttribute("height",e.toString()),this.m.setStyleProperty("width",this.k.toString()+"px"),this.m.setStyleProperty("height",this.j.toString()+"px"),this.m.setStyleProperty("top","0px"),this.m.setStyleProperty("left","0px"),this.f=n.truncate(Math.round(t)),this.e=n.truncate(Math.round(e))),this.c.d&&1!=this.g&&(this.c.aa(),this.c.ab(this.g,this.g)),this.c.l(0,0,this.k,this.j),this.c.aa(),this.c.ab(this.a.v(),this.a.v());for(var i=0;i<this.d.count;i++){this.c.k(this.d._inner[i].j);var r=this.y();null!=this.a.a0&&(r=this.a.a0),this.d._inner[i]._stroke=r,this.c.t(this.d._inner[i])}this.c.z(),this.c.d&&1!=this.g&&this.c.z(),this.a.at()}},e.prototype.u=function(){this.t()},e.prototype.n=function(){this.a.an(this.k,this.j,this.d)},e.prototype.v=function(){var t=this;if(1==this.d.count){this.d._inner[0]._opacity=this.a.r;var e,i={$type:n.Point_$type,x:this.k/2,y:this.j/2},r=new n.TransformGroup;r.j.add(((e=new n.TranslateTransform).j=-i.x,e.k=-i.y,e)),r.j.add(function(){var e=new n.RotateTransform;return e.j=t.a.q,e}()),r.j.add(function(){var t=new n.TranslateTransform;return t.j=i.x,t.k=i.y,t}()),this.d._inner[0].j=r}},e.prototype.o=function(){this.a.ao(this.k,this.j,this.d)},e.prototype.w=function(){4==this.d.count&&(this.d._inner[0]._opacity=this.a.r,this.d._inner[1]._opacity=this.a.r,this.d._inner[2]._opacity=this.a.x,this.d._inner[3]._opacity=this.a.x)},e.prototype.p=function(){this.a.ap(this.k,this.j,this.d)},e.prototype.x=function(){this.d._inner[0]._opacity=this.a.r,this.d._inner[1]._opacity=this.a.x},e.prototype.r=function(t){if(null==t)return this.m=null,this.l=null,void(this.c=null);this.g=n.isNaN_(this.a.w)?this.a.p:this.a.w;var e=t;this.l=e,this.a.j.u(this.l),this.a.i.u(this.l),this.l.rootWrapper.addClass("ui-radialgauge-container");var i=this.g,r=Math.round(e.rootWrapper.width()),o=Math.round(e.rootWrapper.height()),a=r*i,s=o*i;this.l.rootWrapper.setStyleProperty("position","relative");var l=this.l.createElement("canvas");l.setStyleProperty("position","absolute"),this.l.append(l),this.f=n.truncate(Math.round(a)),this.e=n.truncate(Math.round(s)),l.setAttribute("width",a.toString()),l.setAttribute("height",s.toString()),l.setStyleProperty("width",r.toString()+"px"),l.setStyleProperty("height",o.toString()+"px"),this.k=r,this.j=o,this.m=l;var u=this.l.get2DCanvasContext(this.m);this.c=new n.RenderingContext(new n.CanvasViewRenderer,u),n.isNaN_(this.a.w)&&(this.a.p=window.devicePixelRatio,this.g=this.a.p),this.t()},e.prototype.s=function(t,e){n.isNaN_(this.a.w)&&(this.a.p=window.devicePixelRatio,this.g=this.a.p),this.k=t,this.j=e,this.t()},e.prototype.q=function(){n.isNaN_(this.a.w)&&(this.a.p=window.devicePixelRatio,this.g!=this.a.p&&(this.g=this.a.p,this.t()))},e.prototype.y=function(){return h.br},e.$t=n.markType(e,"GridSortIndicatorView"),e}(n.Base),da=function(t){function e(){var e=t.call(this)||this;e.ab=null,e.a=0,e.az=null,e.k=!0,e.propertyChanged=null,e.g=null,e.h=null,e.o=NaN,e.m=1,e.e=0,e.n=0,e.q=0,e.x=0,e.t=0,e.s=0,e.z=0,e.y=0,e.u=0,e.aa=0,e.c=null,e.renderCompleted=null,e.r=0,e.x=.5,e.q=180,e.c=new pa(e),e.g=new n.DoubleAnimator(0,1,400),e.h=new n.DoubleAnimator(0,1,400),e.g.b=n.EasingFunctions.cubicEase,e.h.b=n.EasingFunctions.cubicEase;var i=e.g;i.propertyChanged=n.delegateCombine(i.propertyChanged,n.runOn(e,e.al));var r=e.h;return r.propertyChanged=n.delegateCombine(r.propertyChanged,n.runOn(e,e.am)),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"ac",{get:function(){return this.ab},set:function(t){this.ab=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,e!=this.a&&this.as("SortDirection",n.enumGetBox(B,e),n.enumGetBox(B,this.a))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a0",{get:function(){return this.az},set:function(t){var e=this.az;this.az=t,e!=this.az&&this.as("IconColor",e,this.az)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.as("IsAnimationEnabled",e,this.k)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.g},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,this.as("PixelScalingRatio",e,this.o)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"p",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,this.as("ActualPixelScalingRatio",e,this.m)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.as("SortIndicatorStyle",n.enumGetBox(st,e),n.enumGetBox(st,this.e))},enumerable:!1,configurable:!0}),e.prototype.as=function(t,e,i){this.aw(t,e,i),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},Object.defineProperty(e.prototype,"r",{get:function(){return this.n},set:function(t){var e=this.n;this.n=t,e!=t&&this.as("CurrentOpacity",e,t)},enumerable:!1,configurable:!0}),e.prototype.aw=function(t,e,i){switch(t){case"PixelScalingRatio":this.p=this.w;break;case"ActualPixelScalingRatio":case"IconColor":this.c.u();break;case"SortIndicatorStyle":switch(this.f){case 0:this.au(this.b,!1);break;case 1:case 2:this.av(this.b,!1)}break;case"SortDirection":switch(this.f){case 0:this.au(n.EnumUtil.getEnumValue(B,i),this.l);break;case 1:case 2:this.av(n.EnumUtil.getEnumValue(B,i),this.l)}}},e.prototype.am=function(t,e){switch(this.f){case 0:this.r=this.t+this.h.o*(this.z-this.t);break;case 1:case 2:this.r=this.t+this.h.o*(this.z-this.t),this.x=this.u+this.h.o*(this.aa-this.u)}this.c.u()},e.prototype.al=function(t,e){this.q=this.s+this.g.o*(this.y-this.s),this.c.u()},e.prototype.au=function(t,e){this.t=this.r,this.s=this.q,(this.l||this.g.f()||this.h.f())&&(this.g.w(),this.h.w()),0==t?(this.z=0,this.y=180):(this.z=1,this.y=1==t?180:0),e?(this.g.v(),this.h.v()):(this.q=this.y,this.r=this.z,this.c.u())},e.prototype.av=function(t,e){switch(this.t=this.r,this.u=this.x,(this.l||this.h.f())&&this.h.w(),t){case 0:this.z=.4,this.aa=.4;break;case 1:this.z=1,this.aa=.2;break;case 2:this.z=.2,this.aa=1}e?this.h.v():(this.r=this.z,this.x=this.aa,this.c.u())},e.prototype.v=function(){switch(this.f){case 0:return 1;case 1:return.71;case 2:return 1}return 1},e.prototype.ax=function(t){this.c.r(t)},e.prototype.ay=function(t){this.j.u(t),this.i.u(t)},e.prototype.ad=function(){return this.c.m.getNativeElement()},e.prototype.ar=function(t,e){this.c.s(t,e)},e.prototype.aq=function(){this.c.q()},e.prototype.an=function(t,e,i){var r=Math.min(t,e),o={$type:n.Point_$type,x:t/2,y:e/2},a=.5*r,s=a/2,l=a/2.5,u=new n.PathFigure;u._startPoint={$type:n.Point_$type,x:o.x,y:o.y-s};var c=new n.LineSegment(1);c.c={$type:n.Point_$type,x:o.x,y:o.y+s},u._segments.add(c);var h=new n.PathFigure;h._startPoint={$type:n.Point_$type,x:o.x-l,y:o.y};var p=new n.LineSegment(1);p.c={$type:n.Point_$type,x:o.x,y:o.y+s};var d=new n.LineSegment(1);d.c={$type:n.Point_$type,x:o.x+l,y:o.y},h._segments.add(p),h._segments.add(d);var f=new n.PathGeometry;f.c.add(u),f.c.add(h);var m=new n.Path;m.an=f,m._stroke=this.c.y(),m.ad=1.5,m.am=2,i.add(m)},e.prototype.ao=function(t,e,i){var r,o=this,a=n.Geometry.a("M3.792172, 7.800278 L7.983785, 3.635676 L12.148387, 7.800278L12.148387, 7.800278"),s=n.Geometry.a("M7.97027972,4.10930186 L7.97027972,13.8116223 L7.97027972,4.10930186 Z"),l=n.Geometry.a("M11.851613, 16.199722 L16.043224, 20.364325 L20.207829, 16.199722"),u=n.Geometry.a("M16.043224,10.1883777 L16.043224,19.8906981 L16.043224,10.1883777 Z");i.add(((r=new n.Path).an=a,r.am=2,r.stroke=o.c.y(),r.ad=2,r)),i.add(function(){var t=new n.Path;return t.an=s,t.am=2,t.stroke=o.c.y(),t.ad=2,t}()),i.add(function(){var t=new n.Path;return t.an=l,t.am=2,t.stroke=o.c.y(),t.ad=2,t}()),i.add(function(){var t=new n.Path;return t.an=u,t.am=2,t.stroke=o.c.y(),t.ad=2,t}())},e.prototype.ap=function(t,e,i){var r,o=this,a=(n.Point_$type,t/2),s=e/2,l={$type:n.Point_$type,x:a-3.5,y:s-1.5},u={$type:n.Point_$type,x:a-3.5,y:s+1.5},c=n.Geometry.a("M"+l.x.toString()+", "+l.y.toString()+" l 3.5,-3.5 3.5,3.5"),h=n.Geometry.a("M"+u.x.toString()+", "+u.y.toString()+" l 3.5,3.5 3.5,-3.5");i.add(((r=new n.Path).an=c,r.am=2,r.stroke=o.c.y(),r.ad=2,r)),i.add(function(){var t=new n.Path;return t.an=h,t.am=2,t.stroke=o.c.y(),t.ad=2,t}())},e.prototype.at=function(){null!=this.renderCompleted&&this.renderCompleted(this,new ha)},e.$t=n.markType(e,"GridSortIndicator",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),fa=function(t){function e(e){var i=t.call(this,e)||this;i.da=null,i.dd=null,i.dc=null,i.cl(0),i.ct(1),i.da=new da;var r=e.createElement("div");r.setRawStyleProperty("display","inline-block"),r.setRawStyleProperty("width","16px"),r.setRawStyleProperty("height","16px"),i.dd=r;var o=e.getSubRenderer(i.dd);i.da.ax(o),i.da.w=window.devicePixelRatio;var a=i.da;return a.renderCompleted=n.delegateCombine(a.renderCompleted,(function(t,e){return i.ca()})),i.da.ar(16,16),i.dc=i.da.ad(),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"db",{get:function(){return this.da},enumerable:!1,configurable:!0}),e.prototype.de=function(t){this.db.b=t,this.ca()},e.prototype.cc=function(e){t.prototype.cc.call(this,e);var n=this.bl+5;2==this.e&&(n=this.bj-21),e.n(this.dc,1,n,this.bm-8,16,16)},e.prototype.get_ae=function(){return!0},e.$t=n.markType(e,"CanvasTextHeaderCell",na.$),e}(na),ma=function(t){function e(e){var n=t.call(this,e)||this;return n.e=null,n}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.f=function(){null!=this.e&&this.e()},e.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;if(e.a3){if(e.a8(Qn.mf)&&(i.j1=i.mh,this.d.cr(i.j1)),e.a8($n.g4)){if(e.bp&&(this.d.db.l=!1),null==this.e){var r=e.p;this.e=function(){return r.refresh()}}this.d.de(e.n),this.d.cp(n.runOn(this,this.f)),e.bp&&(this.d.db.l=!0)}e.a8($n.g5)&&(e.bp&&(this.d.db.l=!1),this.d.db.a0=e.ma,e.bp&&(this.d.db.l=!0)),e.a7("SortIndicatorStyle")&&(this.d.db.f=i.mo),oa.a(this.a.bq,i,this.a)}},e.$t=n.markType(e,"CanvasTextHeaderCellPresenter",ra.$),e}(ra),ga=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),e.$t=n.markType(e,"CanvasRowSeparatorCell",na.$),e}(na),ya=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CanvasRowSeparatorCellPresenter",ra.$),e}(ra),ba=function(t){function e(e){var n=t.call(this,e)||this;return n.da=1,n.db=3,n.df=null,n.dc=1,n.de=null,n.de=e.createElement("img"),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"dd",{get:function(){return this.dc},set:function(t){this.dc=t},enumerable:!1,configurable:!0}),e.prototype.di=function(t,e){this.dg(),this.de.setRawStyleProperty("opacity","0"),null!=t&&0!=t.length?n.Base.equalsStatic(t,this.df)||this.dl(t,e):this.dh(this.de)},e.prototype.dh=function(t){t.setAttribute("src","")},e.prototype.dl=function(t,e){this.df=t,this.de.setAttribute("src",t)},e.prototype.dg=function(){this.dh(this.de),this.df=""},e.prototype.dj=function(t){this.ad=!0,this.da=t},e.prototype.dk=function(t){this.ad=!0,this.db=t},e.prototype.get_af=function(){return!0},e.$t=n.markType(e,"CanvasImageCell",na.$),e}(na),va=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;if(e.a3){if(e.a8($n.fa)||e.a8($n.hc)){var i=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-i);this.d.dd=r}(n.a8(Un.mj)||n.a8(Un.mk))&&this.e(n.mn,n.mg),(n.a8(Un.ml)||n.a8(Un.fw)||n.a8(Un.hb))&&this.f(n.mi,n.g,n.i),n.a8(Un.g6)&&(1==e.u?this.d.dg():2==e.u&&this.e(n.mn,n.mg))}},e.prototype.f=function(t,e,n){},e.prototype.e=function(t,e){var i=t.toLowerCase();if(0==e&&(e=4),(n.stringStartsWith(i,"http")||4==e)&&this.d.di(t,4),n.stringStartsWith(i,"asset")||2==e){var r=t;n.stringStartsWith(i,"asset")&&(r=t.substr(8)),this.d.di(r,2)}if(n.stringStartsWith(i,"drawable")||1==e){var o=t;n.stringStartsWith(i,"drawable")&&(o=t.substr(11)),this.d.di(o,1)}if(n.stringStartsWith(i,"nativeresource")||1==e){var a=t;n.stringStartsWith(i,"nativeresource")&&(a=t.substr(17)),this.d.di(a,1)}if(n.stringStartsWith(i,"embeddedresource")||3==e){var s=t;n.stringStartsWith(i,"embeddedresource")&&(s=t.substr(19)),this.d.di(s,3)}},e.$t=n.markType(e,"CanvasImageCellPresenter",ra.$),e}(ra),Ca=function(t){function e(e){var n=t.call(this)||this;return n.d=null,n.c=null,n._opacity=0,n.c=e,n}return i.__extends(e,t),Object.defineProperty(e.prototype,"isCanvasBased",{get:function(){return!0},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"opacity",{get:function(){return this._opacity},set:function(t){this._opacity=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CanvasTemplateCellContainer"),e}(n.Base),xa=function(t){function e(e){var n=t.call(this,e)||this;return n.da=null,n.da=new Ca(e),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"db",{get:function(){return this.da},enumerable:!1,configurable:!0}),e.prototype.get_af=function(){return!0},e.prototype.dc=function(){this.b8()},e.$t=n.markType(e,"CanvasTemplateCell",na.$),e}(na),_a=function(t){function e(e,n){var i=t.call(this,e)||this;return i.e=null,i.e=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=this.e.actualColumns._inner[e.l.a5];if(e.a8($n.fa)||e.a8($n.hc)){var i=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-i);this.d.db.opacity=r}this.d.dc(),n.n4(e,this.d)},e.$t=n.markType(e,"CanvasTemplateCellPresenter",ra.$),e}(ra),wa=function(t){function e(e){var n=t.call(this,e)||this;return n.da=null,n.da=new Ca(e),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"db",{get:function(){return this.da},enumerable:!1,configurable:!0}),e.prototype.get_ae=function(){return!0},e.prototype.dc=function(){this.b8()},e.$t=n.markType(e,"CanvasTemplateHeaderCell",na.$),e}(na),Sa=function(t){function e(e,n){var i=t.call(this,e)||this;return i.e=null,i.e=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=this.e.actualColumns._inner[e.l.a5].header;if(e.a8($n.fa)||e.a8($n.hc)){var i=Math.min(1,Math.max(0,e.ct));e.cj}var r=e;this.d.dc(),n.hq(r,this.d)},e.$t=n.markType(e,"CanvasTemplateHeaderCellPresenter",ra.$),e}(ra),Pa=function(t){function e(e){var n=t.call(this,e)||this;return n.cl(0),n.ct(1),n}return i.__extends(e,t),e.prototype.get_af=function(){return!0},e.$t=n.markType(e,"CanvasSectionHeaderCell",na.$),e}(na),Oa=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(Zn.ml)||e.a8(Zn.mn))&&(null==n.mh||0==n.mh.length&&null==n.mv?null==n.hm?n.j1="":n.j1=n.hm.toString():null!=n.mt&&0==n.mk?n.j1=n.mv+"    "+n.mt:n.j1=n.mv,this.d.cr(n.j1)),oa.a(this.a.bq,n,this.a))},e.$t=n.markType(e,"CanvasSectionHeaderCellPresenter",ra.$),e}(ra),Ia=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),e.$t=n.markType(e,"CanvasVerticalSeparatorCell",na.$),e}(na),ja=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CanvasVerticalSeparatorCellPresenter",ra.$),e}(ra),ka=function(t){function e(e){var i=t.call(this,e)||this;return i.di=null,i.dn=new n.TextBlock,i.de=0,i.df=0,i.dd=0,i.da=null,i.dh=0,i.db=!1,i.dc=!0,i.dg=0,i.cl(2),i}return i.__extends(e,t),e.prototype.cu=function(e){t.prototype.cu.call(this,e),this.bk=n.intDivide(e,2),this.dc=!0},e.prototype.dl=function(t){this.da=t,this.db=!0,this.ad=!0,this.dc=!0},e.prototype.dj=function(t){this.di=t,this.dn.al=this.di,this.ad=!0,this.dc=!0},e.prototype.dk=function(t){var e;this.ad=!0,this.dn.ao=((e=new n.Brush).color=t,e)},e.prototype.dm=function(t){if(null!=this.dn.al&&null!=t){(this.db||null!=this.da&&this.da.j!=this.dh)&&(this.db=!1,this.dh=this.da.j,t.ad(this.da),this.dd=n.FontUtil.getCurrentFontHeight(this.bq,this.da));var e=this.bo,i=this.bd;e-=this.ba+this.bf+this.bb+this.bg,i-=this.bc+this.bh+this.a9+this.be,e=Math.max(e,0),i=Math.max(i,0),this.dg=this.bn(this.dn,this.di,e/2,t),this.de=this.bf+this.ba,this.df=this.bh+this.bc+(i/2-this.dd/2)}},e.prototype.cc=function(e){null!=this.dn.al&&(this.dc&&(this.dm(e),this.dc=!1),this.dn.n=this.de,this.dn.o=this.df,e.x(this.dn)),t.prototype.cc.call(this,e)},e.prototype.get_af=function(){return!1},e.$t=n.markType(e,"CanvasSummaryCell",na.$),e}(na),Ta=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;if(e.a3){if((e.a7("ResolvedSummaryLabel")||e.a7("ResolvedSummaryValue"))&&(this.d.dj(n.mn),this.d.cr(n.mp)),e.a7("SummaryLabelTextColor")){var i=oa.e(n.mu);this.d.dk(i)}e.a7("FontInfo")&&this.d.dl(n.ag),oa.a(this.a.bq,n,this.a)}},e.$t=n.markType(e,"CanvasSummaryCellPresenter",ra.$),e}(ra),Ra=function(t){function e(e){var i=t.call(this)||this;return i.k=null,i.f=1,i.e=0,i.d=0,i.c=new n.List$1(n.Path.$,0),i.m=null,i.b=null,i.l=null,i.j=0,i.g=0,i.i=0,i.h=0,i.a=null,i.a=e,i}return i.__extends(e,t),e.prototype.o=function(t){if(null==t)return this.m=null,this.l=null,this.b=null,void(null!=this.k&&(window.removeEventListener("resize",this.k,!1),this.k=null));this.f=n.isNaN_(this.a.m)?this.a.j:this.a.m;var e=t;this.l=e,this.a.c.u(this.l),this.l.rootWrapper.addClass("ui-expansion-indicator-container");var i=this.f,r=Math.round(e.rootWrapper.width()),o=Math.round(e.rootWrapper.height()),a=r*i,s=o*i,l=this.l.createElement("canvas");l.setStyleProperty("position","absolute"),this.l.append(l),this.e=n.truncate(Math.round(a)),this.d=n.truncate(Math.round(s)),l.setAttribute("width",a.toString()),l.setAttribute("height",s.toString()),l.setStyleProperty("width",r.toString()+"px"),l.setStyleProperty("height",o.toString()+"px"),this.j=r,this.g=o,this.m=l;var u=this.l.get2DCanvasContext(this.m);this.b=new n.RenderingContext(new n.CanvasViewRenderer,u),n.isNaN_(this.a.m)&&(this.a.j=window.devicePixelRatio,this.f=this.a.j),this.q()},e.prototype.p=function(t,e){this.j=t,this.g=e,this.q()},e.prototype.s=function(){return null!=this.a.ae?this.a.ae:((t=new n.Brush).color=n.Color.u(138,0,0,0),t);var t},e.prototype.r=function(){this.q()},e.prototype.n=function(){this.c.clear(),this.a.x(this.j,this.g,this.c)},e.prototype.q=function(){var t=this;if(null!=this.m&&null!=this.b){if(this.i==this.j&&this.h==this.g||(this.n(),this.i=this.j,this.h=this.g),this.c.count>0){var e={$type:n.Point_$type,x:this.j/2,y:this.g/2},i=new n.TransformGroup;i.j.add(((r=new n.TranslateTransform).j=-e.x,r.k=-e.y,r)),i.j.add(function(){var e=new n.RotateTransform;return e.j=t.a.k,e}()),i.j.add(function(){var t=new n.TranslateTransform;return t.j=e.x,t.k=e.y,t}()),this.c._inner[0].j=i}var r,o=Math.round(this.j*this.f),a=Math.round(this.g*this.f);this.e==o&&this.d==a||(this.m.setAttribute("width",o.toString()),this.m.setAttribute("height",a.toString()),this.m.setStyleProperty("width",this.j.toString()+"px"),this.m.setStyleProperty("height",this.g.toString()+"px"),this.m.setStyleProperty("top","0px"),this.m.setStyleProperty("left","0px"),this.e=n.truncate(Math.round(o)),this.d=n.truncate(Math.round(a))),this.b.d&&1!=this.f&&(this.b.aa(),this.b.ab(this.f,this.f)),this.b.l(0,0,this.j,this.g),this.b.aa();for(var s=0;s<this.c.count;s++){this.b.k(this.c._inner[s].j);var l=this.s();null!=this.a.ae&&(l=this.a.ae),this.c._inner[s]._stroke=l,this.b.t(this.c._inner[s])}this.b.z(),this.b.d&&1!=this.f&&this.b.z()}},e.$t=n.markType(e,"GridExpansionIndicatorView"),e}(n.Base),Da=function(t){function e(){var e=t.call(this)||this;e.a=null,e.o=null,e.e=!1,e.ad=null,e.d=!1,e.propertyChanged=null,e.b=null,e.i=NaN,e.h=1,e.k=0,e.l=0,e.n=0,e.k=0,e.a=new Ra(e),e.b=new n.DoubleAnimator(0,1,400),e.b.b=n.EasingFunctions.cubicEase;var i=e.b;return i.propertyChanged=n.delegateCombine(i.propertyChanged,n.runOn(e,e.w)),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"p",{get:function(){return this.o},set:function(t){this.o=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.z("IsExpanded",e,this.e)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ae",{get:function(){return this.ad},set:function(t){var e=this.ad;this.ad=t,e!=this.ad&&this.z("IconColor",e,this.ad)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,e!=this.d&&this.z("IsAnimationEnabled",e,this.d)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,this.z("PixelScalingRatio",e,this.i)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,this.z("ActualPixelScalingRatio",e,this.h)},enumerable:!1,configurable:!0}),e.prototype.z=function(t,e,i){this.aa(t,e,i),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.aa=function(t,e,n){switch(t){case"PixelScalingRatio":this.j=this.m;break;case"ActualPixelScalingRatio":case"IconColor":this.a.r();break;case"IsExpanded":(this.f||this.b.f())&&this.b.w(),this.l=this.k,this.n=this.g?90:0,this.f?this.b.v():(this.k=this.n,this.a.r())}},e.prototype.w=function(t,e){this.k=this.l+this.b.o*(this.n-this.l),this.a.r()},e.prototype.x=function(t,e,i){var r,o=this,a=n.Geometry.a("M 10.18 6.343 l 5.64 5.675 -5.64 5.639");i.add(((r=new n.Path).an=a,r.am=2,r.stroke=o.a.s(),r.ad=2,r))},e.prototype.ab=function(t){this.a.o(t)},e.prototype.ac=function(t){this.c.u(t)},e.prototype.q=function(){return this.a.m.getNativeElement()},e.prototype.y=function(t,e){this.a.p(t,e)},e.$t=n.markType(e,"GridExpansionIndicator",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),Ba=function(t){function e(e){var i=t.call(this)||this;return i.f=null,i.k=new n.Color,i.h=1,i.a=!0,i.c=0,i.b=0,i.g=null,i.f=e,i.g=i.f.createElement("div"),i.g.setRawStyleProperty("position","absolute"),i.g.setRawStyleProperty("pointer-events","none"),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"l",{get:function(){return this.k},set:function(t){this.k=t,this.j()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.h},set:function(t){this.a=!0,this.h=t,this.j()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.c},set:function(t){this.c=t,this.j()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.b},set:function(t){this.b=t,this.j()},enumerable:!1,configurable:!0}),e.prototype.j=function(){var t=this.e,e=this.d,i=n.Color.u(n.truncate(this.k.l*this.h),this.k.o,this.k.n,this.k.m);this.g.setRawStyleProperty("background-color",i.colorString),this.g.setRawStyleProperty("width",t+"px"),this.g.setRawStyleProperty("height",e+"px")},e.$t=n.markType(e,"PlaceholderView"),e}(n.Base),Ma=function(t){function e(e){var i=t.call(this)||this;i.a=null,i.e=null,i.c=null,i.ad=null,i.af=null,i.s=!1,i.ag=null,i.i=null,i.as=0,i.ap=24,i.ar=0,i.aq=0,i.av=0,i.p=!1,i.q=!1,i.r=!0,i.n=!1,i.ax=0,i.az=0,i.ay=0,i.aw=0,i.ak=0,i.am=0,i.al=0,i.aj=0,i.cj=null,i.at=0,i.a2=0,i.au=0,i.j=null,i.g=0,i.h=0,i.ac=0,i.ab=0,i.t=!1,i.a8=0,i.a9=0,i.ai=0,i.a1=-1,i.an=0,i.o=!1,i.ad=e,i.af=i.ad.createElement("div"),i.af.setAttribute("tabindex","-1"),i.af.setRawStyleProperty("position","absolute"),i.af.setRawStyleProperty("overflow","hidden"),i.af.setRawStyleProperty("box-sizing","border-box"),i.af.setRawStyleProperty("outline","none");var r=window.navigator.msPointerEnabled&&void 0!==window.MSGesture,o=void 0!==window.PointerEvent;window.TouchEvent;return r||o?(i.af.listen("pointerdown",n.runOn(i,i.bt)),i.af.listen("pointerup",n.runOn(i,i.bx)),i.af.listen("pointermove",n.runOn(i,i.bw)),i.af.listen("pointerleave",n.runOn(i,i.bv)),i.af.listen("pointerenter",n.runOn(i,i.bu))):(i.af.listen("mousedown",n.runOn(i,i.bj)),i.af.listen("mouseup",n.runOn(i,i.bn)),i.af.listen("mousemove",n.runOn(i,i.bm)),i.af.listen("mouseleave",n.runOn(i,i.bl)),i.af.listen("touchstart",n.runOn(i,i.cb)),i.af.listen("touchend",n.runOn(i,i.cd)),i.af.listen("touchmove",n.runOn(i,i.cc))),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.c},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ae",{get:function(){return this.ad},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ah",{get:function(){return this.af},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isRemoved",{get:function(){return this.s},set:function(t){var e=this.s;this.s=t,e!=this.s&&this.bs("IsRemoved",e,this.s)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a5",{get:function(){return this.as},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a3",{get:function(){return this.aq},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a4",{get:function(){return this.ar},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a6",{get:function(){return this.av},set:function(t){var e=this.av;this.av=t,e!=this.av&&this.bs("Indent",e,this.av)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.p},set:function(t){var e=this.p;this.p=t,e!=this.p&&this.bs("IsCollapsable",e,this.p)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.q},set:function(t){var e=this.q;this.q=t,e!=this.q&&this.bs("IsExpanded",e,this.q)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"y",{get:function(){return this.r},set:function(t){var e=this.r;this.r=t,e!=this.r&&this.bs("IsHitTestVisible",e,this.r)},enumerable:!1,configurable:!0}),e.prototype.bi=function(){if(this.ar=10,this.aq=24*this.a6,this.as=24,null==this.ag&&(this.ag=this.ad.createElement("div"),this.ag.setRawStyleProperty("display","inline-block"),this.ag.setRawStyleProperty("vertical-align","middle"),this.ag.setRawStyleProperty("width",this.as+"px"),this.ag.setRawStyleProperty("height",this.as+"px"),this.ag.setRawStyleProperty("cursor","pointer"),this.ag.setRawStyleProperty("position","absolute"),this.ag.setRawXPosition(this.ax+this.aq),this.ag.setRawYPosition(n.intDivide(this.at,2)-n.intDivide(this.ap,2))),null==this.i){var t=this.ad.getSubRenderer(this.ag);this.i=new Da,this.i.ab(t),this.i.y(24,24)}null==this.ag.parent()&&this.af.append(this.ag)},e.prototype.by=function(){this.as=0,this.ar=0,null!=this.ag&&null!=this.ag.parent()&&this.ag.remove()},Object.defineProperty(e.prototype,"u",{get:function(){return this.n},set:function(t){this.n=t},enumerable:!1,configurable:!0}),e.prototype.get_z=function(){return!1},Object.defineProperty(e.prototype,"z",{get:function(){return this.get_z()},enumerable:!1,configurable:!0}),e.prototype.b7=function(t,e,n,i){this.ax=t,this.az=e,this.ay=n,this.aw=i,this.af.setRawStyleProperty("padding-left",t.toString()+"px"),this.af.setRawStyleProperty("padding-top",e.toString()+"px"),this.af.setRawStyleProperty("padding-right",n.toString()+"px"),this.af.setRawStyleProperty("padding-bottom",i.toString()+"px")},e.prototype.b1=function(t,e,n,i,r){this.ak=e,this.am=n,this.al=i,this.aj=r,this.cj=t,null==t?this.af.setRawStyleProperty("border",""):(this.af.setRawStyleProperty("border-color",t._fill),this.af.setRawStyleProperty("border-left-width",e.toString()+"px"),this.af.setRawStyleProperty("border-top-width",n.toString()+"px"),this.af.setRawStyleProperty("border-right-width",i.toString()+"px"),this.af.setRawStyleProperty("border-bottom-width",r.toString()+"px"),this.af.setRawStyleProperty("border-style","solid"))},e.prototype.get_x=function(){return!1},Object.defineProperty(e.prototype,"x",{get:function(){return this.get_x()},enumerable:!1,configurable:!0}),e.prototype.b3=function(t,e){if(this.at!=t||this.au!=e){var i=this.at;this.at=t,this.au=e;var r=Math.max(0,this.at-this.au);this.af.setRawStyleProperty("height",t.toString()+"px"),this.af.setRawStyleProperty("line-height",r.toString()+"px"),null!=this.ag&&this.ag.setRawYPosition(n.intDivide(this.at,2)-n.intDivide(this.as,2)),this.ca(this.a2,this.at,this.a2,i)}},e.prototype.b9=function(t,e){if(this.a2!=t){var n=this.a2;this.a2=t,this.af.setRawStyleProperty("width",t.toString()+"px"),this.ca(this.a2,this.at,n,this.at)}},e.prototype.ca=function(t,e,n,i){},e.prototype.bg=function(){this.z&&(this.n=!0,this.j=new Ba(this.ad),this.g=0,this.h=1,this.j.l=n.Color.u(120,120,120,120),this.j.i=0,this.af.append(this.j.g))},e.prototype.b0=function(t){this.af.setRawStyleProperty("background-color",t.colorString)},e.prototype.b6=function(t){this.af.setRawStyleProperty("opacity",t.toString())},e.prototype.m=function(){return null!=n.TestRandomness.instance.testRandomnessSource?n.TestRandomness.instance.testRandomnessSource:new n.DefaultRandomnessSource(1,e.a7)},e.prototype.l=function(){return this.m().getGenerator("PlaceholderWidths")},e.prototype.ci=function(t){this.z&&(this.j.i=.20000000298023224*t)},e.prototype.cg=function(t,e,i,r){if(null!=this.j){var o=this.ac,a=this.ab;1==this.h?e=n.truncate(e+r/2-a/2):2==this.h&&(e=n.truncate(e+r-a)),1==this.g?t=n.truncate(t+i/2-o/2):2==this.g&&(t=n.truncate(t+i-o)),this.j.g.setRawXPosition(t),this.j.g.setRawYPosition(e)}},e.prototype.bq=function(t,e,n){},e.prototype.ch=function(t){if(this.z){var i=n.DeviceUtils.f(12);null==t.ag||n.isNaN_(t.ag.f)||(i=t.ag.f),this.ab!=i&&(this.ab=i,this.j.d=i);var r=.2*t.hd,o=.6*t.fu;if(!(this.ac>=r&&this.ac<=o)||this.t){this.t=!1,null==e.k&&(e.k=this.l());var a=e.k.nextDouble()*(o-r)+r;this.ac!=a&&(this.ac=a,this.j.e=a),this.cg(this.ax+this.aq+this.as,this.az,this.a2-(this.ax+this.ay),this.at-(this.az+this.aw))}}},e.prototype.ce=function(t,e){this.z&&(this.g=t,this.h=e,this.t=!0)},e.prototype.cf=function(t){this.z&&null!=t&&(this.j.l=t.color)},e.prototype.bz=function(t){this.a=t},e.prototype.b5=function(t){this.e=t},e.prototype.b2=function(t){this.c=t},e.prototype.b4=function(t,e){switch(e){case 0:this.ah.setRawStyleProperty("text-align","left");break;case 1:this.ah.setRawStyleProperty("text-align","center");break;case 2:this.ah.setRawStyleProperty("text-align","right");break;case 3:this.ah.setRawStyleProperty("text-align","center")}},e.prototype.b8=function(t,e){switch(e){case 0:t.setRawStyleProperty("vertical-align","top");break;case 1:t.setRawStyleProperty("vertical-align","center");break;case 2:t.setRawStyleProperty("vertical-align","bottom");break;case 3:t.setRawStyleProperty("vertical-align","center")}},e.prototype.aa=function(t){return t.isClickActionDesired},e.prototype.bj=function(t){this.onContactStarted(t,!1)},e.prototype.bn=function(t){this.onContactCompleted(t,!1)},e.prototype.bm=function(t){this.onContactMoved(t,!1)},e.prototype.bl=function(t){this.bp(t,!1)},e.prototype.bk=function(t){this.bo(t,!1)},e.prototype.bt=function(t){"touch"==t.originalEvent.pointerType?this.cb(t):this.bj(t)},e.prototype.bw=function(t){"touch"==t.originalEvent.pointerType?this.cc(t):this.bm(t)},e.prototype.bx=function(t){"touch"==t.originalEvent.pointerType?this.cd(t):this.bn(t)},e.prototype.bv=function(t){"touch"!=t.originalEvent.pointerType&&this.bl(t)},e.prototype.bu=function(t){"touch"!=t.originalEvent.pointerType&&this.bk(t)},e.prototype.cb=function(t){this.onContactStarted(t,!0)},e.prototype.cc=function(t){this.onContactMoved(t,!0)},e.prototype.cd=function(t){this.onContactCompleted(t,!0)},e.prototype.onContactStarted=function(t,e){var n=!1;if(this.v){var i=this.i.q();n=t.originalEvent.srcElement===i||t.originalEvent.target===i}this.o=!1,n?this.o=!0:null!=this.a&&this.aa(this.a)&&(this.a8=t.pageX,this.a9=t.pageY,this.a1!=t.which&&(this.an=0),this.a1=t.which,this.a.mouseDownCell(this.a8,this.a9))},e.prototype.onContactMoved=function(t,i){if(null!=this.a){var r=t.pageX,o=t.pageY;this.aa(this.a)&&this.a.isMouseDown&&(i?n.PointUtil.equals(this.a.mousePosition,null)||Math.abs(r-this.a.mousePosition.x)>e.a0||Math.abs(o-this.a.mousePosition.y)>e.a0?this.a.mouseUpCell(r,o):t.stopPropagation():n.PointUtil.equals(this.a.mousePosition,null)?this.a.mouseUpCell(r,o):1==this.a1&&(Math.abs(r-this.a.mousePosition.x)>e.ao||Math.abs(o-this.a.mousePosition.y)>e.ao)&&(this.a.isControlPressed=t.ctrlKey,this.a.dragStarted())),this.a.isHoverActionDesired&&this.a.mouseIsOver(r,o)}},e.prototype.onContactCompleted=function(t,i){var r=this;this.an++,window.setTimeout((function(){return r.an=0}),250);var o=!1;if(this.v){var a=this.i.q();o=t.originalEvent.srcElement===a||t.originalEvent.target===a}if(this.o&&o)this.b.clickExpansionIndicator();else if(null!=this.a&&this.aa(this.a)){var s=t.pageX,l=t.pageY;if((n.PointUtil.equals(this.a.mousePosition,null)||Math.abs(s-this.a.mousePosition.x)>e.a0||Math.abs(l-this.a.mousePosition.y)>e.a0||this.a.isDrag)&&this.a.mouseUpCell(s,l),this.a.isCellDown()){if(this.a.isControlPressed=t.ctrlKey,this.a.isShiftPressed=t.shiftKey,this.an>1)switch(this.a1){case 1:this.a.doubleClicked(0);break;case 2:this.a.doubleClicked(1);break;case 3:this.a.doubleClicked(2);break;default:this.a.doubleClicked(3)}else switch(t.which){case 1:this.a.clickCell(0);break;case 2:this.a.clickCell(1);break;case 3:this.a.clickCell(2);break;default:this.a.clickCell(3)}this.a.mouseUpCell(t.pageX,t.pageY)}}this.o=!1},e.prototype.bp=function(t,e){if(null!=this.a&&(this.aa(this.a)&&this.a.isMouseDown&&!e&&n.PointUtil.notEquals(this.a.mousePosition,null)&&(this.a.isControlPressed=t.ctrlKey,this.a.dragStarted()),this.a.isLeaveActionDesired)){var i=t.pageX,r=t.pageY;this.a.mouseLeaveCell(i,r)}},e.prototype.bo=function(t,e){if(null!=this.a&&this.a.isEnterActionDesired){var n=t.pageX,i=t.pageY;this.a.mouseEnterCell(n,i)}},e.prototype.onDoubleClick=function(t){},e.prototype.bs=function(t,e,i){switch(t){case"Indent":this.aq=24*this.a6,this.ar=this.a6>0?10:0,null!=this.ag&&(this.ag.setRawXPosition(this.ax+this.aq),this.ag.setRawYPosition(n.intDivide(this.at,2)-n.intDivide(this.ap,2)));break;case"IsCollapsable":this.v?this.bi():this.by();break;case"IsExpanded":null!=this.i&&(this.i.g=this.w);break;case"IsHitTestVisible":this.ah.setRawStyleProperty("pointer-events",this.y?"auto":"none")}},e.prototype.br=function(){},e.prototype.bh=function(){this.af.focus(!0)},e.prototype.bf=function(){if(null!=this.a){var t=this.af.clone();this.a.passCellClone(t)}},e.prototype.detach=function(){},e.$t=n.markType(e,"GridCellBase",n.Base.$,[ta]),e.k=null,e.a7=new n.Random(0),e.a0=10,e.ao=3,e}(n.Base),Ea=new n.Type(null,"IEditorView"),Aa=function(t){function e(e,n){var i=t.call(this)||this;return i.d=!1,i.j=null,i.e=!0,i.c=!0,i.f=!0,i.b=null,i.i=null,i._container=null,i.g=!1,i.y=null,i.valueProvided=null,i.userTyping=null,i.lostFocus=null,i.gotFocus=null,i.a=null,i.i=e,i.a=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"container",{get:function(){return this._container},set:function(t){this._container=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,this.v("Value",e,this.j)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isEnabled",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.v("IsEnabled",e,this.e)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"focusOnValueChanged",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"showClearButton",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,e!=this.f&&this.v("ShowClearButton",e,this.f)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"textColor",{get:function(){return this.y},set:function(t){var e=this.y;this.y=t,e!=this.y&&this.v("TextColor",e,this.y)},enumerable:!1,configurable:!0}),e.prototype.r=function(t,e){null!=this.valueProvided&&this.valueProvided(this,t,e)},e.prototype.q=function(){null!=this.userTyping&&this.userTyping(this)},e.prototype.p=function(){null!=this.lostFocus&&this.lostFocus(this)},e.prototype.o=function(){null!=this.gotFocus&&this.gotFocus(this)},e.prototype.h=function(){return null!=this.a&&this.a.shouldSkipFocusRetain()},e.prototype.setFont=function(t){},e.prototype.attachEvents=function(){},e.prototype.detachEvents=function(){},e.prototype.onTargetChanged=function(){},e.prototype.onEditEnded=function(){this.g=!1},e.prototype.onEditStarted=function(){this.g=!0},e.prototype.cleanUp=function(){this.j=null,this.g=!1},e.prototype.focus=function(){var t=this;this.d||(null==this.b&&(this.b=this.i.getRequestAnimationFrame()),this.b((function(){t.t(),t.d=!1})),this.d=!0)},e.prototype.t=function(){},e.prototype.getEditorValue=function(){return null},e.prototype.setEditorValue=function(t){},e.prototype.v=function(t,e,n){switch(t){case"Value":this.x();break;case"IsEnabled":this.s();break;case"TextColor":this.w()}},e.prototype.x=function(){},e.prototype.s=function(){},e.prototype.w=function(){},e.prototype.onInputKeyDown=function(t,e){if(this.g){switch(e.keyCode){case 37:case 39:case 38:case 40:case 32:e.stopPropagation()}}else{if(!this.isEnabled)return void e.preventDefault();switch(e.keyCode){case 37:case 39:case 38:case 40:case 32:e.preventDefault();break;case 67:e.ctrl&&e.preventDefault()}}},e.$t=n.markType(e,"BaseEditorView",n.Base.$,[Ea]),e}(n.Base),Va=function(t){function e(e,n,i){var o=t.call(this,e,i)||this;o.ab=null,o.aa=null,o.z=null;var a=e.createElement("div");a.setRawStyleProperty("display","flex"),a.setRawStyleProperty("width","100%"),a.setRawStyleProperty("margin-top","-10px"),a.setRawStyleProperty("height","38px"),o.container=a;var s=e.getSubRenderer(a);o.aa=new r.XInputGroup,o.aa.provideContainer(s),o.aa.d=0,o.aa.p=n,o.aa.t=3,o.aa.disabled=!o.isEnabled;s.getExternal(o.aa,s.rootWrapper,null);var l=e.createElement("div");l.setRawStyleProperty("width","100%");var u=e.getSubRenderer(l);o.z=new r.XInput,o.z.provideContainer(u),o.z.b8="text",o.z.disabled=!o.isEnabled,o.z.d8=o.textColor;s.getExternal(o.z,u.rootWrapper,null);return o.aa.appendContentChild(l),o.aa.inputs.add(o.z),o}return i.__extends(e,t),e.prototype.setFont=function(t){null!=this.z&&(this.z.af=t)},e.prototype.attachEvents=function(){if(null!=this.z){var t=this.z;t.changing=n.delegateCombine(t.changing,n.runOn(this,this.ad));var e=this.z;e.keyDown=n.delegateCombine(e.keyDown,n.runOn(this,this.onInputKeyDown));var i=this.z;i.compositionEnd=n.delegateCombine(i.compositionEnd,n.runOn(this,this.ac));var r=this.z;r.gotFocus=n.delegateCombine(r.gotFocus,n.runOn(this,this.ae));var o=this.z;o.lostFocus=n.delegateCombine(o.lostFocus,n.runOn(this,this.af))}},e.prototype.detachEvents=function(){if(null!=this.z){var t=this.z;t.changing=n.delegateRemove(t.changing,n.runOn(this,this.ad));var e=this.z;e.keyDown=n.delegateRemove(e.keyDown,n.runOn(this,this.onInputKeyDown));var i=this.z;i.compositionEnd=n.delegateRemove(i.compositionEnd,n.runOn(this,this.ac));var r=this.z;r.gotFocus=n.delegateRemove(r.gotFocus,n.runOn(this,this.ae));var o=this.z;o.lostFocus=n.delegateRemove(o.lostFocus,n.runOn(this,this.af))}},e.prototype.onTargetChanged=function(){this.ab=null,null!=this.z&&this.focus()},e.prototype.onEditStarted=function(){t.prototype.onEditStarted.call(this),this.a.isEditRefocusDesired||this.focus()},e.prototype.onEditEnded=function(){if(t.prototype.onEditEnded.call(this),this.a.isEditRefocusDesired){var e=this.i.rootWrapper.getNativeElement();(e==document.activeElement||e.contains(document.activeElement))&&(this.z.ct(),this.focus())}},e.prototype.t=function(){var t=this;null!=this.z&&(this.z.focus(!0),"date"!=this.z.b8&&window.setTimeout((function(){return t.z.dp()}),0))},e.prototype.x=function(){null!=this.z&&(null!=this.value?(this.ab=null,this.z.cq=null,this.z.cq=this.value.toString(),this.focusOnValueChanged&&!this.h()&&this.t()):this.z.cq=null)},e.prototype.s=function(){null!=this.aa&&(this.aa.disabled=!this.isEnabled),null!=this.z&&(this.z.disabled=!this.isEnabled)},e.prototype.w=function(){t.prototype.w.call(this),null!=this.z&&(this.z.d8=this.textColor)},e.prototype.ad=function(t,e){this.q(),e.isCompositionInProgress||(null==this.ab||this.ab==e.value?this.r(e.value,!1):this.ab=null)},e.prototype.ac=function(t,e){this.ab=e.value,this.r(this.z.cq,!1)},e.prototype.af=function(t,e){this.p()},e.prototype.ae=function(t,e){this.o()},e.prototype.getEditorValue=function(){return null!=this.z?this.z.cq:null},e.prototype.setEditorValue=function(t){null!=this.z&&(this.z.cq=t)},e.$t=n.markType(e,"TextEditorView",Aa.$),e}(Aa),Na=function(t){function e(e,n,i){var r=t.call(this,e,n,i)||this;return r.z.b8="number",r}return i.__extends(e,t),e.prototype.getEditorValue=function(){if(null==this.z||null==this.z.cq)return null;var t=NaN;return t=n.tryParseNumber(this.z.cq,t).p1},e.$t=n.markType(e,"NumericEditorView",Va.$),e}(Va),Fa=function(t){function e(e,n,i){var o=t.call(this,e,i)||this;o.ae=null,o.z=null,o.aa=null,o.ac=!1,o.ab=!1;var a=e.createElement("div");a.setRawStyleProperty("width","100%"),a.setRawStyleProperty("margin-top","-10px"),a.setRawStyleProperty("height","38px"),o.container=a;var s=e.getSubRenderer(a),l=e.createElement("div");s.append(l);var u=e.createElement("div");s.append(u),o.z=new r.XDatePicker,o.z.ay=!1,o.z.provideContainer(s),o.z.w=n,o.z.y=3,o.z.a0=o.showClearButton,o.z.a1=o.ad,o.z.dy=o.textColor,o.z.bf=-1;s.getExternal(o.z,s.rootWrapper,null);return null!=o.aa&&(o.z.ad=o.aa),o.attachEvents(),o}return i.__extends(e,t),Object.defineProperty(e.prototype,"af",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=this.ae&&this.v("FormatString",e,this.ae)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ad",{get:function(){return this.ab},set:function(t){var e=this.ab;this.ab=t,e!=this.ab&&this.v("ShowTodayButton",e,this.ab)},enumerable:!1,configurable:!0}),e.prototype.setFont=function(t){this.aa=t,null!=this.z&&null!=this.aa&&(this.z.ad=this.aa)},e.prototype.attachEvents=function(){if(null!=this.z){var t=this.z;t.selectedValueChanged=n.delegateCombine(t.selectedValueChanged,n.runOn(this,this.onDatePickerValueChanged));var e=this.z;e.gotFocus=n.delegateCombine(e.gotFocus,n.runOn(this,this.onDatePickerGotFocus));var i=this.z;i.lostFocus=n.delegateCombine(i.lostFocus,n.runOn(this,this.onDatePickerLostFocus));var r=this.z;r.keyDown=n.delegateCombine(r.keyDown,n.runOn(this,this.onInputKeyDown));var o=this.z;o.changing=n.delegateCombine(o.changing,n.runOn(this,this.onInputChanging))}},e.prototype.detachEvents=function(){if(null!=this.z){var t=this.z;t.selectedValueChanged=n.delegateRemove(t.selectedValueChanged,n.runOn(this,this.onDatePickerValueChanged));var e=this.z;e.gotFocus=n.delegateRemove(e.gotFocus,n.runOn(this,this.onDatePickerGotFocus));var i=this.z;i.lostFocus=n.delegateRemove(i.lostFocus,n.runOn(this,this.onDatePickerLostFocus));var r=this.z;r.keyDown=n.delegateRemove(r.keyDown,n.runOn(this,this.onInputKeyDown));var o=this.z;o.changing=n.delegateRemove(o.changing,n.runOn(this,this.onInputChanging))}},e.prototype.onTargetChanged=function(){null!=this.z&&(this.ac=!0,this.focus(),this.ac=!1)},e.prototype.onEditStarted=function(){t.prototype.onEditStarted.call(this),this.a.isEditRefocusDesired||this.focus()},e.prototype.onEditEnded=function(){if(t.prototype.onEditEnded.call(this),this.a.isEditRefocusDesired){var e=this.i.rootWrapper.getNativeElement();(e==document.activeElement||e.contains(document.activeElement))&&this.focus()}},e.prototype.t=function(){null!=this.z&&(this.z.focus(!0),this.z.dg())},e.prototype.ah=function(){null!=this.z&&this.z.cr()},e.prototype.v=function(e,n,i){switch(t.prototype.v.call(this,e,n,i),e){case"FormatString":this.al();break;case"ShowClearButton":null!=this.z&&(this.z.a0=this.showClearButton);break;case"ShowTodayButton":null!=this.z&&(this.z.a1=this.ad)}},e.prototype.al=function(){this.z.bz=this.af},e.prototype.x=function(){this.ac=!0,null!=this.z&&(null==this.value?this.z.value=n.dateMinValue():this.z.value=this.value,this.focusOnValueChanged&&!this.h()&&this.t()),this.ac=!1},e.prototype.s=function(){null!=this.z&&(this.z.av=!this.isEnabled)},e.prototype.w=function(){t.prototype.w.call(this),null!=this.z&&(this.z.dy=this.textColor)},e.prototype.onDatePickerValueChanged=function(t,e){this.an()},e.prototype.an=function(){this.ac||(+this.z.value!=+n.dateMinValue()?this.r(this.z.value,!1):+this.z.value==+n.dateMinValue()?this.r(null,!1):this.r(this.value,!1))},e.prototype.onInputChanging=function(t,e){this.q()},e.prototype.onDatePickerLostFocus=function(t,e){this.p()},e.prototype.onDatePickerGotFocus=function(t,e){this.o()},e.prototype.getEditorValue=function(){return null!=this.z?this.z.value:null},e.prototype.setEditorValue=function(t){null!=this.z&&(this.z.value=null!=t?t:n.dateMinValue())},e.$t=n.markType(e,"DateEditorView",Aa.$),e}(Aa),$a=function(t){function e(e,n,i){var r=t.call(this,e,i)||this;r.ac=null,r.ab=null,r.af=null,r.ad=!1,r.ag=null,r.ai=null,r.z=null,r.ae=!1;var o=e.createElement("div");return o.setRawStyleProperty("margin-top","-10px"),o.setRawStyleProperty("height","38px"),o.setRawStyleProperty("width","100%"),r.container=o,e.getPortal(o,"MultiColumnComboBox",(function(t){r.ab=t.componentRef,r.af=r.ab.i,r.ab.height="100%",r.ab.density=3,r.ab.baseTheme=n,r.ab.labelVisible=!1,r.ab.columnHeadersVisible=!1,r.ab.rowSeparatorsVisible=!1,r.af.disallowTabFocus=!0,r.aq(),r.x(),null!=r.ac&&(r.ab.textStyle=r.ac.fontString),r.attachEvents(),r.ad&&(r.onEditStarted(),window.setTimeout((function(){return r.ab.select()}),0),r.ad=!1)}),!1),r}return i.__extends(e,t),Object.defineProperty(e.prototype,"ah",{get:function(){return this.ag},set:function(t){var e=this.ag;this.ag=t,e!=this.ag&&this.v("DataSource",e,this.ag)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ak",{get:function(){return this.ai},set:function(t){var e=this.ai;this.ai=t,e!=this.ai&&this.v("TextField",e,this.ai)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aa",{get:function(){return this.z},set:function(t){var e=this.z;this.z=t,e!=this.z&&this.v("ValueField",e,this.z)},enumerable:!1,configurable:!0}),e.prototype.setFont=function(t){this.ac=t,null!=this.ab&&null!=this.ac&&(this.ab.textStyle=this.ac.fontString)},e.prototype.attachEvents=function(){if(null!=this.ab){var t=this.ab;t.selectedValueChanged=n.delegateCombine(t.selectedValueChanged,n.runOn(this,this.onComboValueChanged));var e=this.ab;e.textValueChanged=n.delegateCombine(e.textValueChanged,n.runOn(this,this.onComboTextChanged));var i=this.ab;i.gotFocus=n.delegateCombine(i.gotFocus,n.runOn(this,this.onComboGotFocus));var r=this.ab;r.lostFocus=n.delegateCombine(r.lostFocus,n.runOn(this,this.onComboLostFocus));var o=this.ab;o.keyDown=n.delegateCombine(o.keyDown,n.runOn(this,this.onInputKeyDown));var a=this.ab;a.changing=n.delegateCombine(a.changing,n.runOn(this,this.onInputChanging))}},e.prototype.detachEvents=function(){if(null!=this.ab){var t=this.ab;t.selectedValueChanged=n.delegateRemove(t.selectedValueChanged,n.runOn(this,this.onComboValueChanged));var e=this.ab;e.textValueChanged=n.delegateRemove(e.textValueChanged,n.runOn(this,this.onComboTextChanged));var i=this.ab;i.gotFocus=n.delegateRemove(i.gotFocus,n.runOn(this,this.onComboGotFocus));var r=this.ab;r.lostFocus=n.delegateRemove(r.lostFocus,n.runOn(this,this.onComboLostFocus));var o=this.ab;o.keyDown=n.delegateRemove(o.keyDown,n.runOn(this,this.onInputKeyDown));var a=this.ab;a.changing=n.delegateRemove(a.changing,n.runOn(this,this.onInputChanging))}},e.prototype.onTargetChanged=function(){null!=this.ab&&(this.ae=!0,null==this.ab.value&&""!=this.ab.text&&(this.ab.text=""),this.focus(),this.ae=!1)},e.prototype.onEditStarted=function(){if(null!=this.ab){t.prototype.onEditStarted.call(this);var e=this.container.getNativeElement();this.ab.defaultColumnWidth=(e.clientWidth-2).toString(),this.a.isEditRefocusDesired||this.focus()}else this.ad=!0},e.prototype.onEditEnded=function(){if(t.prototype.onEditEnded.call(this),this.a.isEditRefocusDesired){var e=this.i.rootWrapper.getNativeElement();(e==document.activeElement||e.contains(document.activeElement))&&this.focus()}this.ad=!1},e.prototype.t=function(){null!=this.ab&&(this.af.focus(!0),this.ab.select())},e.prototype.an=function(){null!=this.ab&&this.ab.closeUp()},e.prototype.v=function(e,n,i){switch(t.prototype.v.call(this,e,n,i),e){case"DataSource":case"TextField":case"ValueField":this.aq()}},e.prototype.x=function(){this.ae=!0,null!=this.ab&&(null==this.value&&(this.ab.text=" "),this.ab.value=this.value,this.focusOnValueChanged&&!this.h()&&this.t()),this.ae=!1},e.prototype.aq=function(){if(null!=this.ab){if(this.detachEvents(),this.ab.dataSource=this.ah,this.ab.textField=this.ak,this.ab.valueField=this.aa,null!=this.ak)this.ab.fields=[this.ak];else if(null!=this.aa&&this.aa.length>0)this.ab.fields=[this.aa[0]];else{var t=n.typeCast(n.IDataSource_$type,this.ah);if(null!=t&&null!=t.actualSchema)this.ab.fields=[t.actualSchema.propertyNames[0]];else if(Array.isArray(this.ah))if(this.ah.length>0){var e=Object.keys(this.ah[0]);e.length>0&&(this.ab.fields=[e[0]])}}this.attachEvents()}},e.prototype.w=function(){t.prototype.w.call(this),null!=this.ab&&(this.ab.textColor=this.textColor._fill)},e.prototype.onComboValueChanged=function(t,e){this.au()},e.prototype.onComboTextChanged=function(t,e){this.au()},e.prototype.au=function(){this.ae||(null!=this.ab.value?this.r(this.ab.value,!1):null==this.ab.value&&n.stringIsNullOrWhiteSpace(this.ab.text)?this.r(null,!1):this.r(this.value,!1))},e.prototype.onInputChanging=function(t,e){this.q()},e.prototype.onComboLostFocus=function(t){this.p()},e.prototype.onComboGotFocus=function(t){this.o()},e.$t=n.markType(e,"ComboEditorView",Aa.$),e}(Aa),za=function(t){function e(e){var i=t.call(this,e)||this;return i.cs=null,i.cz=null,i.cy=null,i.cp=null,i.co=null,i.df=null,i.dg=null,i.dh=null,i.c0=null,i.c3=!1,i.c7=!1,i.c4=!1,i.cm=0,i.dj=null,i.c1=null,i.cq=1,i.di=null,i.dm=null,i.ck=null,i.c5=!0,i.dn=null,i.c6=!1,i.c9=!1,i.da=!1,i.c8=!1,i.ah.setAttribute("tabindex","-1"),i.ah.setStyleProperty("outline","none"),i.ah.setStyleProperty("display","flex"),i.ah.setStyleProperty("align-items","center"),i.ah.listen("focusout",n.runOn(i,i.ee)),i.ah.listen("focusin",n.runOn(i,i.ec)),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"cn",{get:function(){return this.cm},set:function(t){var e=this.cm;this.cm=t,e!=this.cm&&this.bs("DataType",n.enumGetBox(n.DataSourceSchemaPropertyType_$type,e),n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.cm))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dl",{get:function(){return this.dj},set:function(t){var e=this.dj;this.dj=t,this.bs("Value",e,this.dj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c2",{get:function(){return this.c1},set:function(t){var e=this.c1;this.c1=t,e!=this.c1&&this.bs("FontInfo",e,this.c1)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cr",{get:function(){return this.cq},set:function(t){var e=this.cq;this.cq=t,e!=this.cq&&this.bs("EditorType",n.enumGetBox(q,e),n.enumGetBox(q,this.cq))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dk",{get:function(){return this.di},set:function(t){var e=this.di;this.di=t,e!=this.di&&this.bs("ComboItemsSource",e,this.di)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dq",{get:function(){return this.dm},set:function(t){var e=this.dm;this.dm=t,e!=this.dm&&this.bs("ComboTextField",e,this.dm)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cl",{get:function(){return this.ck},set:function(t){var e=this.ck;this.ck=t,e!=this.ck&&this.bs("ComboValueField",e,this.ck)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dd",{get:function(){return this.c5},set:function(t){var e=this.c5;this.c5=t,e!=this.c5&&this.bs("IsHidden",e,this.c5)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"du",{get:function(){return this.dn},set:function(t){var e=this.dn;this.dn=t,e!=this.dn&&this.bs("DateFormatString",e,this.dn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"de",{get:function(){return this.c6},set:function(t){var e=this.c6;this.c6=t,e!=this.c6&&this.bs("ShowTodayButton",e,this.c6)},enumerable:!1,configurable:!0}),e.prototype.cx=function(t){if(null==this.df){this.df=this.ae.createElement("div");var e=this.ae.getSubRenderer(this.df);this.c0=new n.Popup,this.c0.provideRenderer(e),this.dh=this.ae.createElement("div"),this.dh.setStyleProperty("background-color","rgba(0,0,0,0.7)"),this.dh.setStyleProperty("color","#fff"),this.dh.setStyleProperty("padding","5px"),this.dh.setStyleProperty("outline","none"),this.dh.setAttribute("tabindex","-1"),this.dg=this.ae.createElement("div"),this.dg.setStyleProperty("white-space","pre"),null!=this.c2&&this.dg.setStyleProperty("font",this.c2.fontString),this.dh.append(this.dg),this.c0.appendPopupContent(this.dh)}var i=null;switch(t){case 1:i=this.cw();break;case 2:i=this.cv();break;case 3:i=this.cu();break;case 4:i=this.ct()}return i},e.prototype.cw=function(){return null!=this.cz?(this.d6(),this.eb(),this.cz):(this.cz=new Va(this.ae,this.f.getTheme(),this.b),this.cz.setFont(this.c2),this.cz)},e.prototype.cv=function(){return null!=this.cy?(this.d6(),this.eb(),this.cy):(this.cy=new Na(this.ae,this.f.getTheme(),this.b),this.cy.setFont(this.c2),this.cy)},e.prototype.cu=function(){return null!=this.cp?(this.d6(),this.eb(),this.cp):(this.cp=new Fa(this.ae,this.f.getTheme(),this.b),this.cp.setFont(this.c2),this.cp)},e.prototype.ct=function(){return null!=this.co?(this.d5(),this.d6(),this.eb(),this.co):(this.co=new $a(this.ae,this.f.getTheme(),this.b),this.co.setFont(this.c2),this.co.ah=this.dk,this.co.ak=this.dq,this.co.aa=this.cl,this.co)},e.prototype.ed=function(t,e){e.g==e.d&&e.h==e.e||(null!=this.co&&this.co.an(),null!=this.cp&&this.cp.ah(),this.d3())},e.prototype.d1=function(){if(!this.c4&&null!=this.cs){this.cs.attachEvents();var t=this.cs;t.valueProvided=n.delegateCombine(t.valueProvided,n.runOn(this,this.ej));var e=this.cs;e.lostFocus=n.delegateCombine(e.lostFocus,n.runOn(this,this.d9));var i=this.cs;i.gotFocus=n.delegateCombine(i.gotFocus,n.runOn(this,this.d8));var r=this.cs;r.userTyping=n.delegateCombine(r.userTyping,n.runOn(this,this.eh)),this.c4=!0}},e.prototype.d2=function(){if(this.c4&&null!=this.cs){this.cs.detachEvents();var t=this.cs;t.valueProvided=n.delegateRemove(t.valueProvided,n.runOn(this,this.ej));var e=this.cs;e.lostFocus=n.delegateRemove(e.lostFocus,n.runOn(this,this.d9));var i=this.cs;i.gotFocus=n.delegateRemove(i.gotFocus,n.runOn(this,this.d8));var r=this.cs;r.userTyping=n.delegateRemove(r.userTyping,n.runOn(this,this.eh)),this.c4=!1}},e.prototype.eg=function(t){this.c9=!1,this.da=!1,this.c8=!1,t||(this.da=!0,this.cs.onTargetChanged())},e.prototype.ei=function(){null!=this.cs&&(this.cs.value=this.dl)},e.prototype.d6=function(){},e.prototype.ea=function(){this.c3=!0,this.d2(),this.ah.removeChildren(),null!=this.cs&&this.cs.cleanUp(),this.cs=this.cx(this.cr),this.ah.append(this.cs.container),this.d1(),null!=this.cs&&(this.cs.isEnabled=!this.isRemoved,this.dd||this.cs.onEditStarted()),this.c3=!1},e.prototype.d5=function(){null!=this.co&&(this.co.ah=this.dk,this.co.ak=this.dq,this.co.aa=this.cl)},e.prototype.eb=function(){null!=this.c2&&(null!=this.cz&&this.cz.setFont(this.c2),null!=this.cy&&this.cy.setFont(this.c2),null!=this.cp&&this.cp.setFont(this.c2),null!=this.co&&this.co.setFont(this.c2),this.dg.setStyleProperty("font",this.c2.fontString))},e.prototype.d4=function(){this.c7=!1,null!=this.cs&&(this.dd?(this.cs.onEditEnded(),this.cs.value=null,this.cs.value=this.dl):this.cs.onEditStarted())},e.prototype.d7=function(){null!=this.cs&&this.cp==this.cs&&(this.cp.af=this.du)},e.prototype.ef=function(){null!=this.cs&&this.cp==this.cs&&(this.cp.ad=this.de)},e.prototype.ek=function(t,e,i,r,o){n.stringIsNullOrWhiteSpace(t)||(this.dg.setRawText(t),this.c0.b9(),this.el())},e.prototype.el=function(){var t=this.ah.getNativeElement().getBoundingClientRect(),e=new n.Rect(4);e.left=t.left+window.pageXOffset,e.top=t.top+window.pageYOffset,e.right=t.right+window.pageXOffset,e.bottom=t.bottom+window.pageYOffset,this.c0.showRelativeToExclusionRect(e,1,0)},e.prototype.d3=function(){this.c0.ax&&this.c0.b6()},e.prototype.br=function(){null==this.cs&&(this.ea(),this.f.setViewportChangedHandler(n.runOn(this,this.ed)))},e.prototype.bh=function(){null!=this.cs&&this.cs.focus()},e.prototype.bs=function(e,n,i){switch(t.prototype.bs.call(this,e,n,i),e){case"EditorType":this.ea();break;case"ComboItemsSource":case"ComboTextField":case"ComboValueField":this.d5();break;case"DataType":this.d6();break;case"Value":this.ei();break;case"FontInfo":this.eb();break;case"IsHidden":this.d4();break;case"DateFormatString":this.d7();break;case"ShowTodayButton":this.ef();break;case"IsRemoved":null!=this.cs&&(this.cs.isEnabled=!this.isRemoved,this.isRemoved||this.cs.onTargetChanged())}},e.prototype.ej=function(t,e,n){t==this.cs&&(n||this.b.updateCellEditValue(e))},e.prototype.eh=function(t){t==this.cs&&this.b.startEditMode()},e.prototype.dc=function(t){return!(null==t||null==this.c0||!this.c0.ax)&&this.dh.getNativeElement().contains(t)},e.prototype.db=function(t){return null!=t&&this.ah.getNativeElement().contains(t)},e.prototype.ee=function(t){var e=this;if(!this.c3){var n=t.originalEvent.relatedTarget;!this.c8||this.db(n)||this.dc(n)||(this.b.editorCellLostFocus(),this.d3()),this.ae.rootWrapper.getNativeElement().contains(n)&&window.setTimeout((function(){var t=document.activeElement.nodeName;"INPUT"!=t&&"SELECT"!=t&&"TEXTAREA"!=t&&"BUTTON"!=t&&"OPTION"!=t&&e.b.isEditRefocusDesired&&null!=e.cs&&e.cs.focus()}),0)}},e.prototype.ec=function(t){this.c9&&!this.c0.ax&&this.el()},e.prototype.d9=function(t){this.c8=!0},e.prototype.d8=function(t){this.c8=!1},e.prototype.onContactStarted=function(t,e){t.stopPropagation()},e.prototype.onContactCompleted=function(t,e){t.stopPropagation()},e.prototype.onDoubleClick=function(t){t.stopPropagation()},e.$t=n.markType(e,"EditorCell",Ma.$),e}(Ma),Ga=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),e.prototype.modelUpdated=function(t){this.b(t)},e.prototype.b=function(t){this.a.bz(t.c),this.a.b5(t.e),this.a.b2(t.d),this.a.br(),t.a8($n.f8)&&(this.a.y=t.bd),(t.a8($n.em)||t.a8($n.eq)||t.a8($n.eo)||t.a8($n.ek))&&this.a.b7(t.el,t.ep,t.en,t.ej),t.a1&&(this.a.b1(t.lv,t.d9,t.ee,t.ec,t.d7),t.a8($n.d5)&&!t.bf&&t.p.ix&&t.bc&&1==t.cf&&this.a.bh()),t.bo&&(this.a.b3(t.fu,t.ep+t.ej+t.ee+t.d7),this.a.b9(t.hd,t.el+t.en+t.d9+t.ec)),t.a3&&(t.bi&&!this.a.u&&this.a.bg(),t.a8($n.d6)&&this.a.b0(t.lu.color),t.a8($n.ei)&&this.a.b6(t.ch),t.a7("IsCollapsable")&&(this.a.v=t.a2,this.a.a6=t.f0,this.a.w=t.ba,this.a.b9(t.hd,t.el+t.en+t.d9+t.ec)),t.a7("Indent")&&(this.a.a6=t.f0,this.a.b9(t.hd,t.el+t.en+t.d9+t.ec)),t.a7("IsExpanded")&&(this.a.w=t.ba)),t.bo&&t.bi&&this.a.ch(t),t.a7("DoClone")&&t.ax&&(t.ax=!1,this.a.bf())},e.prototype.c=function(t,e,i){return 0==i?t.color:1==i?e.color:n.BrushUtil.n(t,i,e,0).color},Object.defineProperty(e.prototype,"nativeCell",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isCanvasBased",{get:function(){return!1},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"CellPresenterBase",n.Base.$,[Bn]),e}(n.Base),La=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;i.a3&&((i.a8(Gn.mz)||i.a8(Gn.mx)||i.a8(Gn.my)||i.a8(Gn.m0))&&(this.d.cr=i.mm,this.d.dk=i.m9,this.d.dq=i.ni,this.d.cl=i.mg),i.a8(Gn.mv)&&(this.d.cn=i.mi),i.a8(Gn.gj)&&(this.d.dl=i.hm),i.a8(Gn.m1)&&this.d.eg(null==i.mk),i.a8($n.fs)&&(this.d.c2=i.ag),i.a8(Gn.m2)&&(n.stringIsNullOrWhiteSpace(i.nn)?(this.d.c9=!1,this.d.d3()):(this.d.c9=!0,this.d.ek(i.nn,i.cu,i.cv,i.hd,i.fu))),i.a8(Gn.e9)&&(this.d.dd=!n.Rect.l_op_Equality(i.me,n.Rect.empty)),i.a8(Gn.mw)&&(this.d.du=i.nf),i.a8(Gn.m5)&&(this.d.de=i.ms)),i.a8(Gn.m3)&&this.d.bh()},e.$t=n.markType(e,"EditorCellPresenter",Ga.$),e}(Ga),qa=function(t){function e(e){var n=t.call(this,e)||this;return n.ah.setRawStyleProperty("pointer-events","none"),n}return i.__extends(e,t),e.$t=n.markType(e,"EditorRowCell",Ma.$),e}(Ma),Ha=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e)},e.$t=n.markType(e,"EditorRowCellPresenter",Ga.$),e}(Ga),Wa=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"OperatorSelectorOpeningEventArgs",n.EventArgs.$),e}(n.EventArgs),Ua=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.Icon=null,e.DisplayText=null,e.a=0,e.c=null,e.b=0,e}return i.__extends(e,t),e.$t=n.markType(e,"OperatorModel"),e}(n.Base),Ka=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._oldValue=0,e._newValue=0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"oldValue",{get:function(){return this._oldValue},set:function(t){this._oldValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"newValue",{get:function(){return this._newValue},set:function(t){this._newValue=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"OperatorSelectorValueChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Xa=function(t){function e(e){var i=t.call(this)||this;return i.i=null,i.d=null,i.c=null,i.h=null,i.f=null,i.m=null,i.b=null,i.j=0,i.e=new n.Dictionary$2(n.String_$type,r.XIcon.$,0),i.k=0,i.l=0,i.g=null,i.a=null,i.a=e,i.l=240,i}return i.__extends(e,t),e.prototype.u=function(t){var e=this;if(null!=t){var i=this.a;i.opening=n.delegateCombine(i.opening,n.runOn(this,this.s));var o=this.a;o.opened=n.delegateCombine(o.opened,n.runOn(this,this.r));var a=this.a;a.closing=n.delegateCombine(a.closing,n.runOn(this,this.n)),this.g=t,this.d=new n.Popup,this.d.provideRenderer(this.g),this.i=this.g.createElement("div"),this.i.addClass("ig-comparison-operator-selector"),this.i.setStyleProperty("width",this.l+"px"),this.d.appendPopupContent(this.i),this.h=this.g.createElement("div"),this.f=this.g.getSubRenderer(this.h),this.c=new r.XIcon,this.c.provideContainer(this.f),this.h.setStyleProperty("cursor","pointer"),this.g.append(this.h),this.h.listen("mousedown",n.runOn(this,this.q)),this.g.getPortal(this.i,"DataGrid",(function(t){e.m=t.componentRef,e.m.height="100%",e.m.scrollbarStyle="Default",e.b=e.m.i,e.a.eb(e.d,e.c,e.b)}),!1)}else{var s=this.a;s.opening=n.delegateRemove(s.opening,n.runOn(this,this.s));var l=this.a;l.opened=n.delegateRemove(l.opened,n.runOn(this,this.r));var u=this.a;u.closing=n.delegateRemove(u.closing,n.runOn(this,this.n))}},e.prototype.w=function(){var t=this.h.getNativeElement().getBoundingClientRect(),e=new n.Rect(4);e.left=t.left+window.pageXOffset,e.top=t.top+window.pageYOffset,e.right=t.right+window.pageXOffset,e.bottom=t.bottom+window.pageYOffset;this.g.rootWrapper.width();var i=this.g.rootWrapper.getNativeElement().getBoundingClientRect(),r=i.left,o=(i.right,!0),a=r-(window.innerWidth-this.l-10);if(a>0&&(o=!1),o)e.left=this.g.rootWrapper.getOffset().left;else{var s=this.g.rootWrapper.getOffset().left-a;e.left=s}return e},e.prototype.t=function(t,e){var n=t,i=null;if(0==n.element.getChildCount()){n.element.setStyleProperty("display","inline-block"),n.element.setStyleProperty("vertical-align","middle");var o=this.g.createElement("div"),a=this.j.toString();o.setAttribute("id",a);var s=this.g.getSubRenderer(o);(i=new r.XIcon).provideContainer(s),o.setStyleProperty("width","24px"),o.setStyleProperty("height","24px"),n.element.append(o),this.e.addItem(a,i),this.j++}else{var l=n.element.getChildAt(0).getNativeElement().id;this.e.containsKey(l)&&(i=this.e.item(l))}i.svgPath=e.Icon,i.fill=this.a.eq},e.prototype.q=function(t){this.a.em()},e.prototype.s=function(t,e){this.i.setStyleProperty("height",n.stringFormat("{0}px",this.a.y())),this.d.b9(),document.addEventListener("keydown",n.runOn(this,this.onDocumentKeyDown),!1),document.addEventListener("mousedown",n.runOn(this,this.onDocumentMouseDown),!1)},e.prototype.r=function(t,e){void 0!==this.m.notifyDOMInsertion&&this.m.notifyDOMInsertion()},e.prototype.n=function(t,e){document.removeEventListener("keydown",this.onDocumentKeyDown,!1),document.removeEventListener("mousedown",this.onDocumentMouseDown,!1)},e.prototype.onDocumentKeyDown=function(t){var e=t;8==n.BaseDOMEventProxy.c0(e)&&this.a.d8()},e.prototype.onDocumentMouseDown=function(t){var e=t.srcElement,n=this.g.rootWrapper.getNativeElement(),i=this.i.getNativeElement();n.contains(e)||i.contains(e)||this.a.d8()},e.prototype.v=function(t){this.m.dataSource=t},e.$t=n.markType(e,"ComparisonOperatorSelectorView"),e}(n.Base),Za=function(t){function e(){var e=t.call(this)||this;return e.propertyChanged=null,e.r=null,e.e=null,e.q=null,e.p=null,e.o=null,e.f=null,e.n=null,e.v=null,e.u=null,e.g=null,e.t=!1,e.a=0,e.ae=null,e.x=0,e.c=0,e.w=250,e.eo=null,e.en=null,e.valueChanged=null,e.opening=null,e.opened=null,e.closing=null,e.e=new Xa(e),e.u=new n.List$1(Ua.$,0),e}return i.__extends(e,t),e.prototype.eg=function(t,e,i){this.ei(t,e,i),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.ei=function(t,e,i){switch(t){case"Value":this.eh(n.EnumUtil.getEnumValue(m,e),n.EnumUtil.getEnumValue(m,i));break;case"DataType":this.d4();break;case"TextColor":case"Background":this.ed()}},Object.defineProperty(e.prototype,"s",{get:function(){return null==this.r&&(this.r=new n.SRProvider(this.e.g),this.r.cb("DataGrid")),this.r},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.g},set:function(t){this.g=t,null!=this.g&&(44==this.g.a&&(this.ae=this.g.c,this.x=this.g.b),this.t||(this.b=this.g.a))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,e==this.a&&44!=this.a||this.eg("Value",n.enumGetBox(m,e),n.enumGetBox(m,this.a))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,e!=this.c&&this.eg("DataType",n.enumGetBox(n.DataSourceSchemaPropertyType_$type,e),n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.c))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"z",{get:function(){return this.w},set:function(t){this.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"eq",{get:function(){return this.eo},set:function(t){var e=this.eo;this.eo=t,e!=this.eo&&this.eg("TextColor",e,this.eo)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ep",{get:function(){return this.en},set:function(t){var e=this.en;this.en=t,e!=this.en&&this.eg("Background",e,this.en)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dd",{get:function(){var t=this.s.b1("ComparisonOperator_True");return n.stringIsNullOrWhiteSpace(t)?"True":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ck",{get:function(){var t=this.s.b1("ComparisonOperator_False");return n.stringIsNullOrWhiteSpace(t)?"False":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cj",{get:function(){var t=this.s.b1("ComparisonOperator_Equals");return n.stringIsNullOrWhiteSpace(t)?"Equals":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cz",{get:function(){var t=this.s.b1("ComparisonOperator_NotEquals");return n.stringIsNullOrWhiteSpace(t)?"Not equals":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cr",{get:function(){var t=this.s.b1("ComparisonOperator_LessThan");return n.stringIsNullOrWhiteSpace(t)?"Less than":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cs",{get:function(){var t=this.s.b1("ComparisonOperator_LessThanOrEqualTo");return n.stringIsNullOrWhiteSpace(t)?"Less than or equal to":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cl",{get:function(){var t=this.s.b1("ComparisonOperator_GreaterThan");return n.stringIsNullOrWhiteSpace(t)?"Greater than":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cm",{get:function(){var t=this.s.b1("ComparisonOperator_GreaterThanOrEqualTo");return n.stringIsNullOrWhiteSpace(t)?"Greater than or equal to":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"db",{get:function(){var t=this.s.b1("ComparisonOperator_Top");return n.stringIsNullOrWhiteSpace(t)?"Top":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cb",{get:function(){var t=this.s.b1("ComparisonOperator_Bottom");return n.stringIsNullOrWhiteSpace(t)?"Bottom":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dc",{get:function(){var t=this.s.b1("ComparisonOperator_TopPercentile");return n.stringIsNullOrWhiteSpace(t)?"Top percentile":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cc",{get:function(){var t=this.s.b1("ComparisonOperator_BottomPercentile");return n.stringIsNullOrWhiteSpace(t)?"Bottom percentile":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c9",{get:function(){var t=this.s.b1("ComparisonOperator_Today");return n.stringIsNullOrWhiteSpace(t)?"Today":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"da",{get:function(){var t=this.s.b1("ComparisonOperator_Tomorrow");return n.stringIsNullOrWhiteSpace(t)?"Tomorrow":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dg",{get:function(){var t=this.s.b1("ComparisonOperator_Yesterday");return n.stringIsNullOrWhiteSpace(t)?"Yesterday":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c7",{get:function(){var t=this.s.b1("ComparisonOperator_ThisWeek");return n.stringIsNullOrWhiteSpace(t)?"This week":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cw",{get:function(){var t=this.s.b1("ComparisonOperator_NextWeek");return n.stringIsNullOrWhiteSpace(t)?"Next week":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cp",{get:function(){var t=this.s.b1("ComparisonOperator_LastWeek");return n.stringIsNullOrWhiteSpace(t)?"Last week":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c5",{get:function(){var t=this.s.b1("ComparisonOperator_ThisMonth");return n.stringIsNullOrWhiteSpace(t)?"This month":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cu",{get:function(){var t=this.s.b1("ComparisonOperator_NextMonth");return n.stringIsNullOrWhiteSpace(t)?"Next month":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cn",{get:function(){var t=this.s.b1("ComparisonOperator_LastMonth");return n.stringIsNullOrWhiteSpace(t)?"Last month":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c6",{get:function(){var t=this.s.b1("ComparisonOperator_ThisQuarter");return n.stringIsNullOrWhiteSpace(t)?"This quarter":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cv",{get:function(){var t=this.s.b1("ComparisonOperator_NextQuarter");return n.stringIsNullOrWhiteSpace(t)?"Next quarter":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"co",{get:function(){var t=this.s.b1("ComparisonOperator_LastQuarter");return n.stringIsNullOrWhiteSpace(t)?"Last quarter":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c8",{get:function(){var t=this.s.b1("ComparisonOperator_ThisYear");return n.stringIsNullOrWhiteSpace(t)?"This year":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cx",{get:function(){var t=this.s.b1("ComparisonOperator_NextYear");return n.stringIsNullOrWhiteSpace(t)?"Next year":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cq",{get:function(){var t=this.s.b1("ComparisonOperator_LastYear");return n.stringIsNullOrWhiteSpace(t)?"Last year":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"df",{get:function(){var t=this.s.b1("ComparisonOperator_YearToDate");return n.stringIsNullOrWhiteSpace(t)?"Year to date":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c0",{get:function(){var t=this.s.b1("ComparisonOperator_Q1");return n.stringIsNullOrWhiteSpace(t)?"Quarter 1":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c1",{get:function(){var t=this.s.b1("ComparisonOperator_Q2");return n.stringIsNullOrWhiteSpace(t)?"Quarter 2":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c2",{get:function(){var t=this.s.b1("ComparisonOperator_Q3");return n.stringIsNullOrWhiteSpace(t)?"Quarter 3":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c3",{get:function(){var t=this.s.b1("ComparisonOperator_Q4");return n.stringIsNullOrWhiteSpace(t)?"Quarter 4":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ct",{get:function(){var t=this.s.b1("ComparisonOperator_Month");return n.stringIsNullOrWhiteSpace(t)?"Month":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"de",{get:function(){var t=this.s.b1("ComparisonOperator_Year");return n.stringIsNullOrWhiteSpace(t)?"Year":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c4",{get:function(){var t=this.s.b1("ComparisonOperator_StartsWith");return n.stringIsNullOrWhiteSpace(t)?"Starts with":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cg",{get:function(){var t=this.s.b1("ComparisonOperator_DoesNotStartWith");return n.stringIsNullOrWhiteSpace(t)?"Does not start with":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ci",{get:function(){var t=this.s.b1("ComparisonOperator_EndsWith");return n.stringIsNullOrWhiteSpace(t)?"Ends with":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cf",{get:function(){var t=this.s.b1("ComparisonOperator_DoesNotEndWith");return n.stringIsNullOrWhiteSpace(t)?"Does not end with":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cd",{get:function(){var t=this.s.b1("ComparisonOperator_Contains");return n.stringIsNullOrWhiteSpace(t)?"Contains":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ce",{get:function(){var t=this.s.b1("ComparisonOperator_DoesNotContain");return n.stringIsNullOrWhiteSpace(t)?"Does not contain":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ch",{get:function(){var t=this.s.b1("ComparisonOperator_Empty");return n.stringIsNullOrWhiteSpace(t)?"Empty":t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cy",{get:function(){var t=this.s.b1("ComparisonOperator_NotEmpty");return n.stringIsNullOrWhiteSpace(t)?"Not empty":t},enumerable:!1,configurable:!0}),e.prototype.ej=function(t){if(null==t){if(null!=this.o){var e=this.o;e.clicked=n.delegateRemove(e.clicked,n.runOn(this,this.ec))}if(null!=this.f){this.f.selectedItems.clear();var i=this.f;i.cellClicked=n.delegateRemove(i.cellClicked,n.runOn(this,this.d9))}if(null!=this.n){var r=this.n;r.cellUpdating=n.delegateRemove(r.cellUpdating,n.runOn(this,this.el))}}this.e.u(t)},e.prototype.ea=function(){if(this.ej(null),null!=this.f){var t=this.f;t.cellClicked=n.delegateRemove(t.cellClicked,n.runOn(this,this.d9))}this.v.clear()},e.prototype.eb=function(t,e,i){this.q=t,this.p=e,this.p.svgPath=this.bv(this.b),this.p.fill=this.eq,this.f=i,this.f.autoGenerateColumns=!1,this.f.selectionMode=1,this.f.activationMode=0,this.f.selectionMode=0,this.f.editMode=0,this.f.headerHeight=0,this.f.rowSeparatorHeight=0,this.f.density=3,this.f.clearSelectionOnEscape=!1,this.f.cornerRadius=new n.CornerRadius(0,0),this.f.borderWidth=new n.Thickness(0,0);var r,o=this.f;o.cellClicked=n.delegateCombine(o.cellClicked,n.runOn(this,this.d9)),this.n=new lr,this.n.width=((r=new Ft).f=32,r.c=!1,r),this.n.kk=this.n.kl=4,this.n.km=this.n.kj=0,this.n.lo="Icon";var a=this.n;a.cellUpdating=n.delegateCombine(a.cellUpdating,n.runOn(this,this.el)),this.f.columns.add(this.n);var s=new cr;s.lo="DisplayText",s.kk=0,s.g=0,this.f.columns.add(s),this.d4()},e.prototype.eh=function(t,e){var n,i=this;this.t=!0;for(var r=0;r<this.v.count;r++)this.v._inner[r].a==e&&44!=this.v._inner[r].a&&(this.i=this.v._inner[r]);this.t=!1,this.p.svgPath=this.i.Icon,null!=this.valueChanged&&this.valueChanged(this,((n=new Ka).oldValue=t,n.newValue=i.b,n))},e.prototype.ed=function(){null!=this.p&&(this.p.fill=this.eq),null!=this.f&&(this.f.cellTextColor=this.eq,this.f.cellBackground=this.ep)},e.prototype.ef=function(){null!=this.opening&&this.opening(this,new Wa)},e.prototype.ee=function(){null!=this.opened&&this.opened(this,new Wa)},e.prototype.bv=function(t){switch(t){case 7:return e.ab;case 9:return e.ac;case 12:return e.ad;case 13:return e.bn;case 17:return e.bo;case 15:return e.bp;case 40:return e.bq;case 16:return e.br;case 0:return"M5 13.5h14v2H5zm0-5h14v2H5z";case 11:return e.bt;case 4:return e.bw;case 5:return e.bx;case 26:return e.by;case 29:return e.bz;case 23:return e.b0;case 32:return e.b1;case 2:return e.b2;case 3:return e.b3;case 38:return e.b4;case 24:return e.b5;case 27:return e.b6;case 21:return e.b7;case 30:return e.b8;case 41:return e.b9;case 1:return e.ca;case 34:return e.dh;case 35:return e.di;case 36:return e.dj;case 37:return e.dk;case 14:return e.dl;case 25:return e.dn;case 28:return e.dp;case 22:return e.dq;case 31:return e.dr;case 18:return e.ds;case 19:return e.dt;case 6:return e.du;case 8:return e.dv;case 10:return e.dw;case 39:return e.dy;case 33:return e.dz;case 20:return e.d0;default:return""}},e.prototype.bu=function(t){switch(t){case 7:return this.cb;case 9:return this.cc;case 12:return this.cd;case 13:return this.ce;case 17:return this.cf;case 15:return this.cg;case 40:return this.ch;case 16:return this.ci;case 0:return this.cj;case 11:return this.ck;case 4:return this.cl;case 5:return this.cm;case 26:return this.cn;case 29:return this.co;case 23:return this.cp;case 32:return this.cq;case 2:return this.cr;case 3:return this.cs;case 38:return this.ct;case 24:return this.cu;case 27:return this.cv;case 21:return this.cw;case 30:return this.cx;case 41:return this.cy;case 1:return this.cz;case 34:return this.c0;case 35:return this.c1;case 36:return this.c2;case 37:return this.c3;case 14:return this.c4;case 25:return this.c5;case 28:return this.c6;case 22:return this.c7;case 31:return this.c8;case 18:return this.c9;case 19:return this.da;case 6:return this.db;case 8:return this.dc;case 10:return this.dd;case 39:return this.de;case 33:return this.df;case 20:return this.dg;default:return""}},e.prototype.d4=function(){switch(this.v=new n.List$1(Ua.$,0),this.d){case 2:this.d2(this.v);break;case 10:case 6:case 5:case 1:case 3:case 4:case 7:this.d5(this.v);break;case 8:this.d3(this.v);break;case 0:this.d6(this.v)}this.v.o(this.u),null!=this.f&&(this.e.v(this.v),this.v.count>0&&(this.i=this.v._inner[0]),this.e.k=Math.min(this.v.count*this.f.actualRowHeight+2,this.z))},e.prototype.h=function(t){var e,n=this;return(e=new Ua).a=t,e.DisplayText=n.bu(t),e.Icon=n.bv(t),e},e.prototype.d2=function(t){t.add(this.h(0)),t.add(this.h(10)),t.add(this.h(11))},e.prototype.d5=function(t){t.add(this.h(0)),t.add(this.h(1)),t.add(this.h(2)),t.add(this.h(3)),t.add(this.h(4)),t.add(this.h(5))},e.prototype.d3=function(t){t.add(this.h(0)),t.add(this.h(1)),t.add(this.h(2)),t.add(this.h(3)),t.add(this.h(4)),t.add(this.h(5)),t.add(this.h(38)),t.add(this.h(39)),t.add(this.h(18)),t.add(this.h(20)),t.add(this.h(19)),t.add(this.h(22)),t.add(this.h(23)),t.add(this.h(21)),t.add(this.h(25)),t.add(this.h(26)),t.add(this.h(24)),t.add(this.h(28)),t.add(this.h(29)),t.add(this.h(27)),t.add(this.h(31)),t.add(this.h(32)),t.add(this.h(30)),t.add(this.h(33)),t.add(this.h(34)),t.add(this.h(35)),t.add(this.h(36)),t.add(this.h(37))},e.prototype.d6=function(t){t.add(this.h(0)),t.add(this.h(1)),t.add(this.h(14)),t.add(this.h(15)),t.add(this.h(16)),t.add(this.h(17)),t.add(this.h(12)),t.add(this.h(13)),t.add(this.h(40)),t.add(this.h(41))},e.prototype.y=function(){return null!=this.f?Math.min(8,null!=this.f.actualDataSource?this.f.actualDataSource.actualCount:0)*(this.f.actualRowHeight+this.f.rowSeparatorHeight)+this.f.actualHeaderHeight+2:0},e.prototype.em=function(){null!=this.q&&(this.q.ax?this.q.b6():(this.ef(),this.q.showRelativeToExclusionRect(this.e.w(),1,0),this.ee()))},e.prototype.d8=function(){null!=this.q&&this.q.b6()},e.prototype.d1=function(t,n,i,r){var o,a=((o=new Ua).DisplayText=t,o.Icon=null!=n?n:e.af,o.a=44,o.c=i,o.b=r,o);this.u.add(a),null!=this.v&&this.v.add(a),null!=this.f&&null!=this.f.actualDataSource&&this.f.actualDataSource.notifyInsertItem(this.v.count,a)},e.prototype.d7=function(){if(null!=this.v){for(var t=0;t<this.v.count;t++)44==this.v._inner[t].a&&(this.v.removeAt(t),t--);this.u.clear()}},e.prototype.ek=function(t,e){if(null!=t)for(var n=0;n<this.u.count;n++)this.u._inner[n].c==t&&(this.i=this.u._inner[n]);else e>=0&&e<this.u.count&&(this.i=this.u._inner[e])},e.prototype.ec=function(t,e){this.em()},e.prototype.d9=function(t,e){var n=e.cellInfo.fb;this.i=this.f.actualDataSource.getItemAtIndex(n),this.d8()},e.prototype.el=function(t,e){this.e.t(e.content,e.cellInfo.hn)},e.$t=n.markType(e,"ComparisonOperatorSelector",n.Base.$,[n.INotifyPropertyChanged_$type]),e.dw="M 8 5 A 7 7 0 1 0 15 12 A 7 7 0 0 0 8 5 z M 18 7 A 5 5 0 0 0 15 8.0605469 A 7.48 7.48 0 0 1 15.490234 9.0605469 A 3.89 3.89 0 1 1 15.490234 14.880859 A 8.08 8.08 0 0 1 15 15.880859 A 5 5 0 1 0 18 7 z M 11.179688 8.8203125 L 12.310547 9.9394531 L 7.0703125 15.179688 L 3.6894531 11.810547 L 4.8203125 10.689453 L 7.0703125 12.939453 L 11.179688 8.8203125 z M 16.560547 9.7792969 L 15.779297 10.560547 L 17.210938 12 L 15.779297 13.439453 L 16.560547 14.220703 L 18 12.789062 L 19.439453 14.220703 L 20.220703 13.439453 L 18.789062 12 L 20.220703 10.560547 L 19.439453 9.7792969 L 18 11.210938 L 16.560547 9.7792969 z ",e.bt="M 8 5 A 7 7 0 1 0 15 12 A 7 7 0 0 0 8 5 z M 18 7 A 5 5 0 0 0 15 8.0605469 A 7.48 7.48 0 0 1 15.490234 9.0605469 A 3.89 3.89 0 1 1 15.490234 14.880859 A 8.08 8.08 0 0 1 15 15.880859 A 5 5 0 1 0 18 7 z M 5.2109375 7.6894531 L 8 10.480469 L 10.789062 7.6894531 L 12.310547 9.2109375 L 9.5195312 12 L 12.310547 14.789062 L 10.789062 16.310547 L 8 13.519531 L 5.2109375 16.310547 L 3.6894531 14.789062 L 6.4804688 12 L 3.6894531 9.2109375 L 5.2109375 7.6894531 z M 19.650391 10.150391 L 17.519531 12.269531 L 16.349609 11.119141 L 15.970703 11.490234 L 15.560547 11.900391 L 15.980469 12.320312 L 17 13.339844 L 17.519531 13.849609 L 20.429688 10.929688 L 19.650391 10.150391 z ",e.ca="M17.37 4.71l-1.74-1-2.76 4.79H5v2h6.71l-1.73 3H5v2h3.82l-2.19 3.79 1.74 1 2.76-4.79H19v-2h-6.71l1.73-3H19v-2h-3.82l2.19-3.79z",e.ad="m 3,3 v 18 h 18 v -18 z m 1.9999697,1.9999697 h 14.0000603 v 14.0000603 h -14.0000603 z m 7.2332153,2.9162292 a 3.34,3.34 0 0 0 -0.113159,0.00385 3.54,3.54 0 0 0 -2.2999882,0.7199704 1.93,1.93 0 0 0 -0.8200378,1.6499637 h 1.710023 a 0.93,0.93 0 0 1 0.289947,-0.7099915 1.5,1.5 0 0 1 1.000031,-0.2899476 1.45,1.45 0 0 1 1.00003,0.3500062 1.3,1.3 0 0 1 0.369965,0.9999389 v 0.690033 l -1.369995,-0.03003 a 4.39,4.39 0 0 0 -2.5400401,0.629974 2.07,2.07 0 0 0 -0.8999634,1.78006 2.29,2.29 0 0 0 0.6600038,1.73996 2.63,2.63 0 0 0 1.8900147,0.629974 2.39,2.39 0 0 0 1.320008,-0.369965 3.05,3.05 0 0 0 0.999939,-0.929992 3.72,3.72 0 0 0 0.08002,0.570007 c 0,0.19 0.100034,0.379987 0.160033,0.579986 h 1.789947 a 4.51,4.51 0 0 1 -0.20993,-0.880004 5.5700002,5.5700002 0 0 1 -0.07004,-0.929993 v -3.499969 a 2.44,2.44 0 0 0 -0.839996,-2.0000615 3.34,3.34 0 0 0 -2.106812,-0.7037658 z m -0.315032,4.4605411 a 1.76,1.76 0 0 1 0.08185,0.0033 h 1.400024 v 1.169953 a 1.61,1.61 0 0 1 -0.709992,0.77005 2.27,2.27 0 0 1 -1.210051,0.339935 1.18,1.18 0 0 1 -0.839996,-0.269989 0.92000002,0.92000002 0 0 1 -0.300019,-0.719971 1.16,1.16 0 0 1 0.440003,-0.900055 1.76,1.76 0 0 1 1.138184,-0.393218 z",e.bn="M21 19.74V3H4.26L2.89 1.63 1.63 2.92 3 4.29V21h16.73l1.37 1.37 1.27-1.26zM5 19V6.28l5.28 5.27a3.19 3.19 0 00-.81.38 2.07 2.07 0 00-.9 1.78 2.29 2.29 0 00.66 1.74 2.63 2.63 0 001.89.63 2.39 2.39 0 001.32-.37 3.05 3.05 0 001-.93 3.72 3.72 0 00.08.57c0 .19.1.38.16.58h1L17.73 19zm5.79-6.23a1.31 1.31 0 01.45-.25l1.37 1.36.28.29a1.57 1.57 0 01-.19.15 2.27 2.27 0 01-1.21.34 1.18 1.18 0 01-.84-.27.92.92 0 01-.3-.72 1.16 1.16 0 01.44-.9zm2.6-1.47h-.83l-1.62-1.62.08-.1a1.5 1.5 0 011-.29 1.45 1.45 0 011 .35 1.3 1.3 0 01.37 1zM19 17.74l-3.85-3.85v-3.27a2.44 2.44 0 00-.84-2 3.34 3.34 0 00-2.22-.7 3.64 3.64 0 00-2.24.67L6.26 5H19z",e.dl="M5.9 7.5l-3.9 9h1.7l.7-1.8h4.1l.7 1.8H11l-3.9-9H5.9zM5 13.2l1.5-4.1L8 13.2H5zm7 1.3h2v2h-2v-2zm8 0h2v2h-2v-2zm-4 0h2v2h-2v-2z",e.bp="M3.707,21.707,2.293,20.293l18-18,1.414,1.414ZM6,11H8.757l2-2H6ZM4,3H16.757l2-2H4A2,2,0,0,0,2,3V17.757l2-2ZM6,7h6.757l2-2H6ZM20,21H7.243l-2,2H20a2,2,0,0,0,2-2V6.243l-2,2Z",e.br="M3 14.5h2v2H3zm8 0h2v2h-2zm-4 0h2v2H7zm13.8.3v-3A2.1 2.1 0 0020 10a3 3 0 00-2-.6 3 3 0 00-2 .6 1.7 1.7 0 00-.7 1.5h1.5a.8.8 0 01.3-.7 1.3 1.3 0 01.9-.3 1.3 1.3 0 01.9.4 1.1 1.1 0 01.3.8v.6H18a3.8 3.8 0 00-2.2.6 1.8 1.8 0 00-.8 1.5 2 2 0 00.6 1.6 2.3 2.3 0 001.6.6 2.1 2.1 0 001.2-.4 2.8 2.8 0 00.8-.8 4.3 4.3 0 00.1.5l.1.5H21a4.1 4.1 0 01-.2-.7 5.4 5.4 0 010-1zm-1.6-.5a1.5 1.5 0 01-.6.7 2 2 0 01-1 .2 1.1 1.1 0 01-.8-.2.8.8 0 01-.2-.6 1 1 0 01.3-.8 1.5 1.5 0 011.1-.3h1.2z",e.bo="M20.293,2.293l1.414,1.414-18,18L2.293,20.293ZM18,13H15.243l-2,2H18Zm2,8H7.243l-2,2H20a2,2,0,0,0,2-2V6.242l-2,2Zm-2-4H11.243l-2,2H18ZM4,3H16.757l2-2H4A2,2,0,0,0,2,3V17.757l2-2Z",e.bw="M6 7.11L15.09 12 6 16.89V19l12-6.46v-1.08L6 5v2.11z",e.bx="M5.99 19h12.02v2H5.99zM18 9.47L6 3v2.11L15.09 10 6 14.9v2.11l12-6.47V9.47z",e.b2="M6 12.54L18 19v-2.11L8.91 12 18 7.11V5L6 11.46v1.08z",e.b3="M5.99 19h12.02v2H5.99zM18 14.9L8.91 10 18 5.11V3L6 9.47v1.07l12 6.47V14.9z",e.bq="M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z",e.b9="M5 9h2v2H5zm4 8h2v2H9zm4 0h2v2h-2zm4-8h2v2h-2zm0-4h2v2h-2zM5 17h2v2H5zm8-12h2v2h-2zm-8 8h2v2H5zm14 2v-2h-2v.47L18.53 15H19zm-8-8V5H9v.46L10.54 7H11zM2.76 1.76L1.5 3.06 20.97 22.5l1.26-1.26-8.89-8.89L2.76 1.76z",e.ds="m 6,1.9999695 v 2.000061 h -1.0000303 a 2,2 0 0 0 -1.9999697,1.9999695 v 13.99997 a 2,2 0 0 0 1.9999697,2.00006 h 14.0000613 a 2,2 0 0 0 1.99997,-2.00006 v -13.99997 a 2,2 0 0 0 -1.99997,-1.9999695 h -1.00003 v -2.000061 h -1.99997 v 2.000061 h -8.0000613 v -2.000061 z m -1.0000303,7.0000305 h 14.0000613 v 10.99997 h -14.0000613 z m 10.4700623,1.99997 -4.880035,4.880035 -2.1199957,-2.119995 -1.0599975,1.059998 3.1799932,3.179992 5.940033,-5.940033 z",e.dt="m 6,1.9999695 v 2.000061 h -1.0000303 c -1.1000002,0 -1.9999697,0.8999693 -1.9999697,1.9999695 v 13.99997 c 0,1.099999 0.8999695,2.00006 1.9999697,2.00006 h 14.0000603 c 1.1,0 1.999969,-0.900061 1.999969,-2.00006 v -13.99997 c 0,-1.1000002 -0.899969,-1.9999695 -1.999969,-1.9999695 h -1.000031 v -2.000061 h -1.999969 v 2.000061 h -8.0000603 v -2.000061 z m -1.0000303,7.0000305 h 14.0000603 v 10.99997 h -14.0000603 z m 8.2999883,1.99997 v 2.600005 h -6.0999763 v 1.800019 h 6.0999763 v 2.600006 l 3.50006,-3.49997 z",e.d0="M 6,1.9999688 V 4.0000237 H 4.9999697 A 2,1.9999939 0 0 0 3,5.9999872 V 19.999914 a 2,1.9999939 0 0 0 1.9999697,2.000055 H 19.00003 A 2,1.9999939 0 0 0 21,19.999914 V 5.9999872 A 2,1.9999939 0 0 0 19.00003,4.0000237 H 18 V 1.9999688 H 16.00003 V 4.0000237 H 7.9999697 V 1.9999688 Z M 4.9999697,8.9999779 H 19.00003 V 19.999914 H 4.9999697 Z m 5.6800223,1.9999641 -3.4899895,3.50005 3.4899895,3.499959 v -2.619957 h 6.130005 v -1.750025 h -6.130005 z",e.dn="m 6,1.0000305 v 1.9999695 h -1.0000303 a 2,2 0 0 0 -1.9999697,1.9999697 v 15.0000003 a 2,2 0 0 0 1.9999697,2.00006 h 7.0000313 v -2.00006 h -7.0000313 v -12.0000003 h 14.0000613 v 4.0000303 h 1.99997 v -7.0000303 a 2,2 0 0 0 -1.99997,-1.9999697 h -1.00003 v -1.9999695 h -1.99997 v 1.9999695 h -8.0000613 v -1.9999695 z m 0,7.9999695 v 1.99997 h 1.9999697 v -1.99997 z m 4.99997,0 v 1.99997 h 2.000061 v -1.99997 z m 5.000061,0 v 1.99997 h 1.99997 v -1.99997 z m -10.000031,4.00003 v 1.99997 h 1.9999697 v -1.99997 z m 4.99997,0 v 1.99997 h 2.000061 v -1.99997 z m 7.039581,1.025208 a 4.5,4.5 0 1 0 4.960419,4.474732 4.47,4.47 0 0 0 -1.999969,-3.73993 4.5,4.5 0 0 0 -2.96045,-0.734802 z m 1.960419,2.804718 0.709991,0.710083 -2.649993,2.629944 -1.749939,-1.76001 0.689941,-0.709991 1.050018,1.00003 z m -13.99997,0.170014 v 2.00006 h 1.9999697 v -2.00006 z m 4.99997,0 v 2.00006 h 2.000061 v -2.00006 z",e.b5="m 4.9999689,1.0000305 v 1.9999695 h -0.9999391 a 2,2 0 0 0 -2.000061,1.9999697 v 15.0000003 a 2,2 0 0 0 2.000061,2.00006 h 6.9999382 v -2.00006 h -6.9999382 v -12.0000003 h 13.9999692 v 4.0000303 h 1.999969 v -7.0000303 a 2,2 0 0 0 -1.999969,-1.9999697 h -1.000031 v -1.9999695 h -1.999969 v 1.9999695 h -7.9999694 v -1.9999695 z m 0,7.9999695 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 4.999969,0 v 1.99997 h 1.999969 v -1.99997 z m -10.0000301,4.00003 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 7.039489,1.025208 a 4.5,4.5 0 1 0 4.96051,4.474732 4.47,4.47 0 0 0 -2.000061,-3.73993 4.5,4.5 0 0 0 -2.960449,-0.734802 z m 0.96048,1.474732 3,3 -3,3 v -1.99997 h -4.000031 v -1.99997 h 4.000031 z m -13.0000301,1.5 v 2.00006 h 2.0000607 v -2.00006 z m 5.0000611,0 v 2.00006 h 1.999969 v -2.00006 z",e.by="m 4.9999689,1.0000305 v 1.9999695 h -0.9999391 a 2,2 0 0 0 -2.000061,1.9999697 v 15.0000003 a 2,2 0 0 0 2.000061,2.00006 h 6.9999382 v -2.00006 h -6.9999382 v -12.0000003 h 13.9999692 v 4.0000303 h 1.999969 v -7.0000303 a 2,2 0 0 0 -1.999969,-1.9999697 h -1.000031 v -1.9999695 h -1.999969 v 1.9999695 h -7.9999694 v -1.9999695 z m 0,7.9999695 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 4.999969,0 v 1.99997 h 1.999969 v -1.99997 z m -10.0000301,4.00003 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 7.499999,0.99994 a 4.48,4.48 0 1 0 4.5,4.5 4.47,4.47 0 0 0 -4.5,-4.5 z m -0.500061,1.5 v 2.00006 h 4.000031 v 1.99997 h -4.000031 v 1.99997 l -3,-3 z m -11.9999991,1.5 v 2.00006 h 2.0000607 v -2.00006 z m 5.0000611,0 v 2.00006 h 1.999969 v -2.00006 z",e.dr="m 4.0000313,1.0000305 v 1.9999695 h -1.0000305 a 2,2 0 0 0 -1.9999695,1.9999697 v 12.0000003 a 2,2 0 0 0 1.9999695,2.00006 h 13.9999702 a 2,2 0 0 0 2.000061,-2.00006 v -12.0000003 a 2,2 0 0 0 -2.000061,-1.9999697 h -0.999939 v -1.9999695 h -2.000061 v 1.9999695 h -7.9999702 v -1.9999695 z m -1.0000305,5.9999998 h 13.9999702 v 9.9999397 h -13.9999702 z m 9.9200142,2.0799867 -4.0699777,4.069977 -1.7700806,-1.769989 -0.8799131,0.889984 2.6499937,2.649994 4.9499827,-4.959961 z m 8.079986,0.920013 v 10.99997 h -13.9999699 v 1.99997 h 13.9999699 a 2,2 0 0 0 1.99997,-1.99997 v -10.99997 z",e.b8="m 4.0000313,1.0000305 v 1.9999695 h -1.0000305 a 2,2 0 0 0 -1.9999695,1.9999697 v 12.0000003 a 2,2 0 0 0 1.9999695,2.00006 h 13.9999702 a 2,2 0 0 0 2.000061,-2.00006 v -12.0000003 a 2,2 0 0 0 -2.000061,-1.9999697 h -0.999939 v -1.9999695 h -2.000061 v 1.9999695 h -7.9999702 v -1.9999695 z m -1.0000305,5.9999998 h 13.9999702 v 9.9999397 h -13.9999702 z m 8.1299742,1.9999697 v 2.25 h -5.25 v 1.5 h 5.25 v 2.25 l 3,-3 z m 9.870026,1.00003 v 10.99997 h -13.9999699 v 1.99997 h 13.9999699 a 2,2 0 0 0 1.99997,-1.99997 v -10.99997 z",e.b1="m 4.0000313,1.0000305 v 1.9999695 h -1.0000305 a 2,2 0 0 0 -1.9999695,1.9999697 v 12.0000003 a 2,2 0 0 0 1.9999695,2.00006 h 13.9999702 a 2,2 0 0 0 2.000061,-2.00006 v -12.0000003 a 2,2 0 0 0 -2.000061,-1.9999697 h -0.999939 v -1.9999695 h -2.000061 v 1.9999695 h -7.9999702 v -1.9999695 z m -1.0000305,5.9999998 h 13.9999702 v 9.9999397 h -13.9999702 z m 5.869995,1.9999697 -2.9900208,3 2.9900208,3 v -2.25 h 5.2599792 v -1.5 h -5.2599792 z m 12.1300052,1.00003 v 10.99997 h -13.9999699 v 1.99997 h 13.9999699 a 2,2 0 0 0 1.99997,-1.99997 v -10.99997 z",e.dp="M12,7V17H22A10,10,0,0,0,12,7Zm-2,5L6,16V13H2V11H6V8Z",e.b6="M4,9.253A8.03,8.03,0,0,1,9.747,15H4V9.253M2,7V17H12A10,10,0,0,0,2,7ZM18,8v3H14v2h4v3l4-4Z",e.bz="M12,7V17H22A10,10,0,0,0,12,7ZM2,12l4,4V13h4V11H6V8Z",e.dq="M22,4V20a2,2,0,0,1-2,2H15V20h5V4H4V20H9v2H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H20A2,2,0,0,1,22,4ZM18,6H6V9H18ZM8,15h3v7h2V15h3l-4-4Z",e.b7="M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM18,9H6V6H18Zm0,5-4,4V15H6V13h8V10Z",e.b0="M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20Zm-2-2H6V15H18ZM10,6V9h8v2H10v3L6,10Z",e.dz="M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM5,10H6.127L7.2,11.58,8.258,10H9.379l-1.7,2.465V14H6.677V12.442Zm5.044.74V10h3.745v.74h-1.37V14H11.414V10.74ZM16.926,10a2.667,2.667,0,0,1,.823.123,1.86,1.86,0,0,1,.659.37,1.679,1.679,0,0,1,.435.616,2.205,2.205,0,0,1,.157.868,2.456,2.456,0,0,1-.128.807,1.7,1.7,0,0,1-.387.639,1.828,1.828,0,0,1-.647.423,2.453,2.453,0,0,1-.912.154H14.954V10Zm-.07,3.26a1.46,1.46,0,0,0,.422-.061.951.951,0,0,0,.365-.205,1.007,1.007,0,0,0,.256-.372,1.453,1.453,0,0,0,.1-.56,2.054,2.054,0,0,0-.067-.547,1.046,1.046,0,0,0-.221-.417.973.973,0,0,0-.407-.266,1.818,1.818,0,0,0-.624-.092h-.717v2.52Z",e.dh="M8.5,22a6.5,6.5,0,0,1,0-13h.65v5.85H15v.65A6.508,6.508,0,0,1,8.5,22ZM7.85,10.34a5.2,5.2,0,1,0,5.81,5.81H7.85ZM11,2V13H22A11,11,0,0,0,11,2Zm5,8H15V6h1Z",e.di="M2,8.5a6.5,6.5,0,0,1,13,0v.65H9.15V15H8.5A6.508,6.508,0,0,1,2,8.5Zm11.66-.65a5.2,5.2,0,1,0-5.81,5.81V7.85ZM11,11V22A11,11,0,0,0,22,11Zm4,6H14V13h1Zm2,0H16V13h1Z",e.dj="M15.5,2a6.5,6.5,0,0,1,0,13h-.65V9.15H9V8.5A6.508,6.508,0,0,1,15.5,2Zm.65,11.66a5.2,5.2,0,1,0-5.81-5.81h5.81ZM2,11A11,11,0,0,0,13,22V11Zm5,6H6V13H7Zm2,0H8V13H9Zm2,0H10V13h1Z",e.dk="M22,15.5a6.5,6.5,0,0,1-13,0v-.65h5.85V9h.65A6.508,6.508,0,0,1,22,15.5Zm-11.66.65a5.2,5.2,0,1,0,5.81-5.81v5.81ZM2,13H13V2A11,11,0,0,0,2,13Zm5-2H6V7H7Zm3,0L8,7H9l1,2,1-2h1Z",e.b4="M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM11,9H9V7h2Zm4,0H13V7h2ZM7,13H5V11H7Zm4,0H9V11h2Zm4,0H13V11h2Zm4,0H17V11h2ZM7,17H5V15H7Zm4,0H9V15h2Zm4,0H13V15h2Zm4-8H17V7h2Z",e.dy="M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM7.7,11.634a1.151,1.151,0,0,0,.317-.063.618.618,0,0,0,.243-.152.367.367,0,0,0,.1-.264.429.429,0,0,0-.2-.379.79.79,0,0,0-.452-.132.689.689,0,0,0-.533.2A.668.668,0,0,0,7,11.331H6.112a1.428,1.428,0,0,1,.127-.542,1.246,1.246,0,0,1,.321-.42,1.465,1.465,0,0,1,.5-.273A2.022,2.022,0,0,1,7.7,10a2.258,2.258,0,0,1,.55.069,1.7,1.7,0,0,1,.5.206,1.21,1.21,0,0,1,.357.336.784.784,0,0,1,.137.456.8.8,0,0,1-.16.495.815.815,0,0,1-.482.292v.011a1.04,1.04,0,0,1,.6.308.813.813,0,0,1,.216.567,1.041,1.041,0,0,1-.14.539,1.238,1.238,0,0,1-.377.4,1.785,1.785,0,0,1-.544.242A2.605,2.605,0,0,1,7,13.906a1.542,1.542,0,0,1-.54-.272,1.207,1.207,0,0,1-.344-.438A1.322,1.322,0,0,1,6,12.6h.885a.931.931,0,0,0,.058.294.7.7,0,0,0,.151.243.727.727,0,0,0,.246.162.925.925,0,0,0,.35.06.86.86,0,0,0,.531-.162.524.524,0,0,0,.216-.443.5.5,0,0,0-.1-.335.59.59,0,0,0-.259-.168,1.281,1.281,0,0,0-.344-.061c-.125-.005-.244-.008-.357-.008v-.55A2.453,2.453,0,0,0,7.7,11.634Zm4.814-.9a.591.591,0,0,0-.406-.143.684.684,0,0,0-.416.123.949.949,0,0,0-.265.3,1.42,1.42,0,0,0-.144.382,1.989,1.989,0,0,0-.052.363l.012.011a1.072,1.072,0,0,1,.446-.329,1.685,1.685,0,0,1,1.166.008,1.449,1.449,0,0,1,.478.288,1.1,1.1,0,0,1,.269.4,1.306,1.306,0,0,1,.085.457,1.338,1.338,0,0,1-.115.552,1.3,1.3,0,0,1-.327.446,1.549,1.549,0,0,1-.508.3,1.915,1.915,0,0,1-.655.107,1.877,1.877,0,0,1-.858-.174,1.491,1.491,0,0,1-.544-.453,1.7,1.7,0,0,1-.281-.636,3.3,3.3,0,0,1-.079-.724,2.713,2.713,0,0,1,.1-.715,1.924,1.924,0,0,1,.315-.646,1.65,1.65,0,0,1,.556-.471A1.752,1.752,0,0,1,12.118,10a2.055,2.055,0,0,1,.55.071,1.517,1.517,0,0,1,.453.207,1.116,1.116,0,0,1,.32.333,1.177,1.177,0,0,1,.164.456h-.884A.638.638,0,0,0,12.511,10.732Zm-.782,1.257a.627.627,0,0,0-.233.157.664.664,0,0,0-.138.228.821.821,0,0,0-.045.272.732.732,0,0,0,.049.262.7.7,0,0,0,.144.231.706.706,0,0,0,.232.162.783.783,0,0,0,.315.06.692.692,0,0,0,.3-.06.72.72,0,0,0,.219-.16.67.67,0,0,0,.138-.225.773.773,0,0,0,.046-.259.828.828,0,0,0-.043-.266.683.683,0,0,0-.128-.232.624.624,0,0,0-.219-.165.726.726,0,0,0-.311-.063A.836.836,0,0,0,11.729,11.989Zm4.129-1.268-.183.875.013.01a1.2,1.2,0,0,1,.406-.228,1.783,1.783,0,0,1,1.094.036,1.326,1.326,0,0,1,.442.28,1.186,1.186,0,0,1,.275.416,1.355,1.355,0,0,1,.095.509,1.159,1.159,0,0,1-.137.553,1.456,1.456,0,0,1-.371.443,1.694,1.694,0,0,1-.54.288,1.983,1.983,0,0,1-.655.1,2.7,2.7,0,0,1-.638-.074,1.725,1.725,0,0,1-.541-.229,1.226,1.226,0,0,1-.377-.382,1.054,1.054,0,0,1-.147-.531h.93a.607.607,0,0,0,.236.421.922.922,0,0,0,.848.093.773.773,0,0,0,.249-.165.706.706,0,0,0,.157-.237.718.718,0,0,0,.056-.277.754.754,0,0,0-.052-.281.64.64,0,0,0-.158-.231.738.738,0,0,0-.248-.154.932.932,0,0,0-.334-.055.957.957,0,0,0-.406.074.91.91,0,0,0-.3.234h-.838l.452-2.129h2.561v.644Z",e.du="m 8.015625,15 c 0,0 0,0 0,0 8,0 8,0 8,0 -4,-6 -4,-6 -4,-6 z",e.ab="m 8.015625,9 c 0,0 0,0 0,0 8,0 8,0 8,0 -4,6 -4,6 -4,6 z",e.dv="m 10.085911,4.8515625 c -0.514323,0 -0.9227906,0.16686 -1.2255249,0.5005187 -0.3027344,0.3336592 -0.4541016,0.7902023 -0.4541016,1.3696289 0,0.5305992 0.1431986,0.9545592 0.429657,1.2719423 0.2864583,0.3173827 0.6706034,0.4760743 1.1523742,0.4760743 0.4980473,0 0.9008793,-0.1684571 1.2084963,-0.5053711 0.307617,-0.3369141 0.461426,-0.7852885 0.461426,-1.3451846 0,-0.5598956 -0.137564,-0.9944658 -0.412629,-1.3037109 -0.275065,-0.3092446 -0.661651,-0.4638976 -1.159698,-0.4638976 z m 3.88678,0.1073913 -4.4873659,7.0508432 h 0.6982729 l 4.492218,-7.0508432 z m -3.916077,0.4297485 c 0.296224,0 0.529846,0.1098634 0.700745,0.3295899 0.170898,0.2197265 0.256347,0.5264999 0.256347,0.9203798 0,0.4036458 -0.08629,0.7194318 -0.258819,0.9472959 -0.172526,0.2278645 -0.411784,0.3417666 -0.717774,0.3417666 -0.3027341,0 -0.5419919,-0.1098633 -0.7177731,-0.3295899 -0.1757812,-0.2197265 -0.2636718,-0.5264995 -0.2636718,-0.9203798 0,-0.4003908 0.089488,-0.7153322 0.2685242,-0.9448242 0.1790362,-0.2294922 0.423177,-0.3442383 0.7324217,-0.3442383 z m 4.199249,3.0517275 c -0.507812,0 -0.914683,0.168457 -1.220672,0.5053711 -0.30599,0.336914 -0.459046,0.7950544 -0.459046,1.3744811 0,0.527344 0.14329,0.950551 0.429749,1.269562 0.286458,0.31901 0.670511,0.478546 1.152283,0.478546 0.498047,0 0.900879,-0.168457 1.208496,-0.505371 0.307617,-0.336914 0.461426,-0.783692 0.461426,-1.340332 0,-0.5631505 -0.138317,-1.0010075 -0.415009,-1.3135072 -0.276693,-0.3125002 -0.662435,-0.46875 -1.157227,-0.46875 z m -0.0293,0.5517881 c 0.296223,0 0.529754,0.107422 0.700653,0.3222656 0.170898,0.2148441 0.256347,0.5207728 0.256347,0.9179075 0,0.400391 -0.0862,0.715332 -0.258728,0.944825 -0.172526,0.229492 -0.411784,0.344238 -0.717773,0.344238 -0.302735,0 -0.541992,-0.109863 -0.717774,-0.32959 -0.175781,-0.219726 -0.263672,-0.523213 -0.263672,-0.910584 0,-0.4036449 0.08864,-0.7194305 0.266053,-0.9472955 0.177408,-0.2278646 0.422393,-0.3417666 0.734894,-0.3417666 z m -2.210907,4.1797491 -4.000031,5.999999 h 7.99997 z",e.ac="m 8.015625,4.0546875 4.000031,6.0000005 3.999939,-6.0000005 z m 2.070282,8.6795655 c -0.514323,0 -0.9227906,0.16686 -1.2255249,0.500519 -0.3027344,0.333659 -0.4541016,0.790202 -0.4541016,1.369629 0,0.530599 0.1431986,0.954559 0.429657,1.271942 0.2864583,0.317382 0.6706034,0.476073 1.1523742,0.476073 0.4980473,0 0.9008793,-0.168457 1.2084963,-0.50537 0.307617,-0.336914 0.461426,-0.785288 0.461426,-1.345184 0,-0.559896 -0.137564,-0.994466 -0.412629,-1.303711 -0.275065,-0.309245 -0.661651,-0.463898 -1.159698,-0.463898 z m 3.88678,0.107483 -4.4873659,7.05075 h 0.6982729 l 4.492218,-7.05075 z m -3.916077,0.429657 c 0.296224,0 0.529846,0.109863 0.700745,0.32959 0.170898,0.219726 0.256347,0.5265 0.256347,0.92038 0,0.403646 -0.08629,0.719432 -0.258819,0.947296 -0.172526,0.227865 -0.411784,0.341766 -0.717774,0.341766 -0.3027341,0 -0.5419919,-0.109864 -0.7177731,-0.32959 -0.1757812,-0.219726 -0.2636718,-0.526499 -0.2636718,-0.920379 0,-0.400392 0.089488,-0.715333 0.2685242,-0.944825 0.1790362,-0.229492 0.423177,-0.344238 0.7324217,-0.344238 z m 4.199249,3.051726 c -0.507812,0 -0.914683,0.168458 -1.220672,0.505372 -0.30599,0.336914 -0.459046,0.795146 -0.459046,1.374572 0,0.527344 0.14329,0.950459 0.429749,1.269472 0.286458,0.319009 0.670511,0.478545 1.152283,0.478545 0.498047,0 0.900879,-0.168457 1.208496,-0.505371 0.307617,-0.336914 0.461426,-0.783692 0.461426,-1.340332 0,-0.563151 -0.138317,-1.001006 -0.415009,-1.313508 -0.276693,-0.312499 -0.662435,-0.46875 -1.157227,-0.46875 z m -0.0293,0.551789 c 0.296223,0 0.529754,0.107422 0.700653,0.322267 0.170898,0.214842 0.256347,0.520863 0.256347,0.917998 0,0.400392 -0.0862,0.715332 -0.258728,0.944825 -0.172526,0.229492 -0.411784,0.344238 -0.717773,0.344238 -0.302735,0 -0.541992,-0.109863 -0.717774,-0.32959 -0.175781,-0.219727 -0.263672,-0.523305 -0.263672,-0.910674 0,-0.403647 0.08864,-0.719431 0.266053,-0.947297 0.177408,-0.227865 0.422393,-0.341766 0.734894,-0.341767 z",e.af="M12.138 21H8.2a1.171 1.171 0 01-1.152-1.188v-5.937L2.123 4.719A1.187 1.187 0 013.153 3h14.694a1.187 1.187 0 011.03 1.719l-3.763 7a2.2 2.2 0 00-.437.642h-.3a2.206 2.206 0 00-1.922 1.11l-.9 1.553-.058.109a2.246 2.246 0 00.212 2.366 2.185 2.185 0 00-.168 2.462zm9.775-2.319a.21.21 0 01.056.281l-.9 1.564a.226.226 0 01-.27.1l-1.113-.449a3.415 3.415 0 01-.754.438l-.18 1.193a.221.221 0 01-.225.191h-1.8a.228.228 0 01-.225-.191l-.169-1.193a3.233 3.233 0 01-.765-.438l-1.114.449a.236.236 0 01-.281-.1l-.9-1.564a.213.213 0 01.056-.281l.945-.742a5.864 5.864 0 01-.022-.439 2.709 2.709 0 01.045-.439l-.956-.742a.224.224 0 01-.057-.293l.9-1.552a.222.222 0 01.27-.1l1.125.45a3.581 3.581 0 01.754-.438l.169-1.193a.228.228 0 01.225-.193h1.8a.23.23 0 01.225.191l.169 1.193a3.348 3.348 0 01.753.438l1.125-.45a.217.217 0 01.27.1l.9 1.552a.225.225 0 01-.056.293l-.956.742A1.8 1.8 0 0121 17.5c0 .146-.011.293-.023.439zM19.236 17.5a1.609 1.609 0 10-1.609 1.609 1.609 1.609 0 001.609-1.609z",e}(n.Base),Ya=function(t){function e(e){var n=t.call(this,e)||this;return n.c7=null,n.c9=null,n.c5=null,n.c6=null,n.c8=null,n.cy=null,n.cx=null,n.cn=null,n.co=null,n.cz=null,n.cv=null,n.c2=!0,n.cp=0,n.c3=!0,n.ct=null,n.c0=null,n.da=null,n.ck=null,n.d9=null,n.c7=e.createElement("div"),n.c7.setStyleProperty("display","flex"),n.c7.setStyleProperty("flex-direction","row"),n.c7.setStyleProperty("align-items","center"),n.c7.setStyleProperty("height","100%"),n.ah.append(n.c7),n.c9=e.createElement("div"),n.c5=e.getSubRenderer(n.c9),n.co=new Za,n.co.ej(n.c5),n.c9.setStyleProperty("width","24px"),n.c9.setStyleProperty("height","24px"),n.c7.append(n.c9),n.c6=e.createElement("div"),n.c6.setStyleProperty("display","flex"),n.c6.setStyleProperty("flex","1"),n.c6.setStyleProperty("margin","0 4px"),n.c7.append(n.c6),n.c8=e.createElement("div"),n.c8.setStyleProperty("transform","scale(0.75)"),n.cz=new r.XIcon,n.cz.provideContainer(e.getSubRenderer(n.c8)),n.c7.append(n.c8),n.ds(),n}return i.__extends(e,t),e.prototype.cw=function(t){switch(this.cq){case 0:case 1:return null==this.cy&&(this.cy=new Va(this.ae,this.f.getTheme(),this.b)),this.cy;case 2:return null==this.cx&&(this.cx=new Na(this.ae,this.f.getTheme(),this.b)),this.cx;case 3:return null==this.cn&&(this.cn=new Fa(this.ae,this.f.getTheme(),this.b)),this.cn;default:return null}},e.prototype.d4=function(){this.c6.removeChildren()},e.prototype.dq=function(){this.c6.append(this.cv.container)},e.prototype.dx=function(){0==this.ah.getChildCount()&&this.ah.append(this.c7)},e.prototype.dv=function(){this.ah.getChildCount()>0&&this.ah.removeChildren()},e.prototype.bs=function(e,n,i){t.prototype.bs.call(this,e,n,i),this.d3(e,n,i)},e.prototype.br=function(){this.d1()},e.prototype.d5=function(t,e,n,i){if(null!=this.d){var r=this.c9.getNativeElement();this.d.update("SelectorTop",r.offsetTop),this.d.update("SelectorLeft",r.offsetLeft);var o=this.c6.getNativeElement();this.d.update("EditorTop",o.offsetTop),this.d.update("EditorLeft",o.offsetLeft);var a=this.c8.getNativeElement();this.d.update("ClearIconTop",a.offsetTop),this.d.update("ClearIconLeft",a.offsetLeft)}},e.prototype.ds=function(){var t=this.co;t.valueChanged=n.delegateCombine(t.valueChanged,n.runOn(this,this.d2)),this.cz.svgPath=e.dc,this.d7(!1);var i=this.cz;i.clicked=n.delegateCombine(i.clicked,n.runOn(this,this.dr))},e.prototype.d1=function(){null==this.cv&&this.dw()},e.prototype.cr=function(){var t=1;switch(this.cm){case 11:case 2:case 0:t=1;break;case 8:t=3;break;case 10:case 6:case 5:case 1:case 3:case 4:case 7:t=2}switch(this.co.b){case 6:case 8:case 7:case 9:t=2;break;case 38:t=1;break;case 39:t=2}if(44==this.co.b&&(null!=this.cu&&this.cu.count>0))switch(this.cu._inner[this.co.x].b){case 0:case 1:t=1;break;case 2:t=2;break;case 3:t=3}return t},e.prototype.d7=function(t){null!=this.cz&&(this.cz.disabled=!t,this.cz.an=t?1:.3)},e.prototype.dl=function(t){this.c2&&(44==this.co.b?null!=this.cu&&this.cu.count>0&&this.b.applyCustomFilter(this.co.ae,this.co.x,t):this.b.applyFilter(this.co.b,t))},e.prototype.dm=function(){this.c2&&null!=this.b&&this.b.clearFilter()},e.prototype.d3=function(t,e,n){switch(t){case"DataType":this.du();break;case"EditorType":this.dw();break;case"FontInfo":this.d0();break;case"Filter":this.dy();break;case"FilterOperands":this.dt();break;case"FilterValue":this.dz();break;case"IsEditorEnabled":this.cv.isEnabled=this.c4;break;case"TextColor":this.co.eq=this.ea,this.cz.fill=this.ea,this.cv.textColor=this.ea}},e.prototype.dy=function(){if(this.c2=!1,null!=this.cv)if(null!=this.cl)if(null!==n.typeCast(In.$,this.cl)){var t=n.typeCast(In.$,this.cl);this.co.b=t.operator;var e=this.cv.getEditorValue();null!=e&&n.Base.equalsStatic(e,t.value)||(this.cv.value=t.value,this.db=t.value)}else if(null!==n.typeCast(jn.$,this.cl)){var i=n.typeCast(jn.$,this.cl);this.co.ek(i.id,i.index);var r=this.cv.getEditorValue();null!=r&&n.Base.equalsStatic(r,i.value)||(this.cv.value=i.value,this.db=i.value)}else null===n.typeCast(jn.$,this.cl)&&(this.db=null,this.cv.value=this.db,this.cv.setEditorValue(this.db));else this.db=null,this.cv.value=this.db,this.cv.setEditorValue(this.db),this.c4||(this.co.b=0);this.c2=!0},e.prototype.dt=function(){this.co.d7();for(var t=0;t<this.cu.count;t++)this.co.d1(this.cu._inner[t].e,this.cu._inner[t].f,this.cu._inner[t].g,t)},e.prototype.du=function(){11==this.cm&&(this.c4=!1),this.cq=this.cr()},e.prototype.dz=function(){this.d7(null!=this.db),null==this.db||n.Base.equalsStatic(this.db,"")?this.dm():this.dl(this.db),null!=this.d&&this.d.update("FilterValue",this.db)},e.prototype.dw=function(){if(null!=this.cv){this.cv.detachEvents();var t=this.cv;t.valueProvided=n.delegateRemove(t.valueProvided,n.runOn(this,this.d6))}if(this.d4(),this.cv=this.cw(this.cq),this.cv.onEditStarted(),null!=this.cv){this.cv.attachEvents(),this.cv.setFont(this.c1),this.cv.isEnabled=this.c4,this.cv.focusOnValueChanged=!1,this.cv.showClearButton=!1;var e=this.cv;e.valueProvided=n.delegateCombine(e.valueProvided,n.runOn(this,this.d6)),this.dq()}this.dr(null,null)},e.prototype.d0=function(){null!=this.c1&&null!=this.cv&&this.cv.setFont(this.c1)},e.prototype.d2=function(t,e){switch(this.cq=this.cr(),e.newValue){case 40:case 11:case 43:case 42:case 26:case 29:case 23:case 32:case 24:case 27:case 21:case 30:case 25:case 28:case 22:case 31:case 41:case 34:case 35:case 36:case 37:case 18:case 19:case 10:case 33:case 20:this.c4=!1;break;default:this.c4=!0}if(11==this.cm&&(this.c4=!1),44==e.newValue&&null!=this.cu&&this.cu.count>0){var i=this.cu._inner[this.co.x];this.c4=i.d}this.c4?null==this.db||n.Base.equalsStatic(this.db,"")?(this.dm(),this.d7(!1)):this.dl(this.db):(this.dl(null),this.d7(!0)),null!=this.d&&this.d.update("OperatorType",n.enumGetBox(m,this.co.b))},e.prototype.dr=function(t,e){null!=e&&(this.c4||(this.co.b=0,this.dm())),this.db=null,null!=this.cv&&(this.cv.setEditorValue(null),this.cv.value=null)},e.prototype.d6=function(t,e,i){var r,o;2==this.cq&&("string"==typeof e&&(o=n.tryParseNumber(e,r),r=o.p1,o.ret&&(e=r)));this.db=e},e.prototype.d8=function(t,e,n,i){this.d5(t,e,n,i)},e.prototype.cs=function(t,e){if(null!=t)for(var n=0;n<this.cu.count;n++)if(this.cu._inner[n].g==t)return this.cu._inner[n];return e>=0&&e<this.cu.count?this.cu._inner[e]:null},e.prototype.dp=function(){this.dx()},e.prototype.dn=function(){this.dv()},Object.defineProperty(e.prototype,"cm",{get:function(){return this.co.d},set:function(t){var e=this.co.d;this.co.d=t,e!=t&&this.bs("DataType",n.enumGetBox(n.DataSourceSchemaPropertyType_$type,e),n.enumGetBox(n.DataSourceSchemaPropertyType_$type,this.co.d))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cq",{get:function(){return this.cp},set:function(t){var e=this.cp;this.cp=t,e!=t&&this.bs("EditorType",n.enumGetBox(q,e),n.enumGetBox(q,this.cp))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c4",{get:function(){return this.c3},set:function(t){var e=this.c3;this.c3=t,e!=this.c3&&this.bs("IsEditorEnabled",e,this.c3)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cu",{get:function(){return this.ct},set:function(t){var e=this.ct;this.ct=t,null!=this.ct&&this.bs("FilterOperands",e,this.ct)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c1",{get:function(){return this.c0},set:function(t){var e=this.c0;this.c0=t,e!=this.c0&&this.bs("FontInfo",e,this.c0)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"db",{get:function(){return this.da},set:function(t){var e=this.da;this.da=t,e!=this.da&&this.bs("FilterValue",e,this.da)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cl",{get:function(){return this.ck},set:function(t){var e=this.ck;this.ck=t,e!=t&&this.bs("Filter",e,this.ck)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ea",{get:function(){return this.d9},set:function(t){var e=this.d9;this.d9=t,e!=this.d9&&this.bs("TextColor",e,this.d9)},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"FilterCell",Ma.$),e.dc="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",e}(Ma),Qa=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),e.prototype.b=function(e){t.prototype.b.call(this,e),this.e(e)},Object.defineProperty(e.prototype,"d",{get:function(){return this.nativeCell},enumerable:!1,configurable:!0}),e.prototype.e=function(t){var e=t;t.a3&&(e.a8(Ln.mx)&&(this.d.cm=e.mk),e.a8($n.fs)&&(this.d.c1=e.ag),e.a8(Ln.m0)&&(this.d.cl=e.mi),e.a8(Ln.mz)&&(this.d.cu=e.mo),e.a8(Ln.m1)&&(e.mq?this.d.dp():this.d.dn()),e.a8(Ln.er)&&(this.d.ea=e.lw)),(t.bj||t.bo)&&(e.a8(Ln.hf)||e.a8(Ln.hg)||e.a8(Ln.he)||e.a8(Ln.fv))&&this.d.d8(e.cu,e.cv,e.hd,e.fu)},e.$t=n.markType(e,"FilterCellPresenter",Ga.$),e}(Ga),Ja=function(t){function e(e){var n=t.call(this,e)||this;return n.ck=null,n.cn=-1,n.cm=-1,n.ck=e.createElement("span"),n.ah.setRawStyleProperty("text-align","left"),n.ck.setRawStyleProperty("display","inline-block"),n.ck.setRawStyleProperty("line-height","normal"),n.ck.setRawStyleProperty("vertical-align","middle"),n.ck.setRawStyleProperty("overflow","hidden"),n.ck.setRawStyleProperty("white-space","nowrap"),n.ck.setRawStyleProperty("text-overflow","ellipsis"),n.ah.setRawStyleProperty("vertical-align","middle"),n.ah.append(n.ck),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),e.prototype.b9=function(e,n){t.prototype.b9.call(this,e,n);var i=Math.max(0,e-n-(this.a3+this.a5+this.a4));this.cn!=i&&(this.cn=i,this.ck.setRawStyleProperty("max-width",i.toString()+"px"))},e.prototype.b3=function(e,n){t.prototype.b3.call(this,e,n);var i=Math.max(0,e-n);this.cm!=i&&(this.cm=i,this.ck.setRawStyleProperty("max-height",i.toString()+"px"))},e.prototype.get_z=function(){return!0},e.prototype.bs=function(e,n,i){t.prototype.bs.call(this,e,n,i),"Indent"!=e&&"IsCollapsable"!=e||this.ck.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},e.$t=n.markType(e,"TextCell",Ma.$),e}(Ma),ts=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.g=function(t){return null==t?e.f:t.color},e.c=function(t,e,n){switch(n){case 0:t.setRawStyleProperty("text-align","left");break;case 1:t.setRawStyleProperty("text-align","center");break;case 2:t.setRawStyleProperty("text-align","right");break;case 3:t.setRawStyleProperty("text-align","center")}},e.e=function(t,e,n){switch(n){case 0:e.setRawStyleProperty("vertical-align","top");break;case 1:e.setRawStyleProperty("vertical-align","center");break;case 2:e.setRawStyleProperty("vertical-align","bottom");break;case 3:e.setRawStyleProperty("vertical-align","center")}},e.a=function(t,n,i,r,o){if(n.a3){if(n.a8($n.fa)||n.a8($n.eg)||n.a8($n.hc)||n.a7("IsRowPinned")||n.a7("IsRowSticky")||n.a7("PinnedRowOpacity")){var a=Math.min(1,Math.max(0,n.ct)),s=n.cg*(1-a);r.setRawStyleProperty("opacity",s.toString()),n.bi&&o.ci(n.cg*a)}if(n.a8($n.er)&&(e.d(r,n.lw),n.bi&&o.cf(n.lw)),n.a8($n.gg))switch(n.aa){case 0:r.setRawStyleProperty("white-space","nowrap"),r.setRawStyleProperty("text-overflow","ellipsis");break;case 3:case 2:r.setRawStyleProperty("white-space","pre-wrap"),r.setRawStyleProperty("text-overflow","ellipsis");break;case 1:r.setRawStyleProperty("white-space","nowrap"),r.setRawStyleProperty("text-overflow","clip")}if(n.a8($n.fw)||n.a8($n.hb)){var l=n.g,u=n.i;e.c(i,r,l),o.bq(i,r,l),e.e(i,r,u),n.bi&&o.ce(l,u)}n.a7("ActualFontInfo")&&e.b(t,r,n.ae),(n.a7("IsEdited")||n.a7("IsDeleted"))&&((n.a9||n.a6)&&n.a6?r.setRawStyleProperty("text-decoration","line-through"):r.setRawStyleProperty("text-decoration","none"))}},e.b=function(t,e,i){null==i&&(i=n.FontUtil.getDefaultFont(t)),e.setRawStyleProperty("font",i.fontString)},e.d=function(t,n){var i=e.g(n);t.setRawStyleProperty("color",i.colorString)},e.$t=n.markType(e,"ContentCellModelHelper"),e.f=n.Color.u(0,0,0,0),e}(n.Base),es=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(Qn.mf)||e.a8($n.gj))&&(null!=n.mh?n.j1=n.mh:null==n.hm?n.j1="":n.j1=n.hm.toString(),this.d.cl.setRawText(n.j1)),ts.a(this.a.ae,n,this.a.ah,this.d.cl,this.a))},e.$t=n.markType(e,"TextCellPresenter",Ga.$),e}(Ga),ns=function(t){function e(e){var n=t.call(this,e)||this;return n.b4(n.cl,2),n.b8(n.cl,1),n}return i.__extends(e,t),e.prototype.bs=function(e,n,i){t.prototype.bs.call(this,e,n,i),"Indent"!=e&&"IsCollapsable"!=e||this.cl.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},e.$t=n.markType(e,"NumericCell",Ja.$),e}(Ja),is=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(Kn.m4)||n.ml())&&(n.j1=this.e(n),this.d.cl.setRawText(n.j1)),ts.a(this.a.ae,n,this.a.ah,this.d.cl,this.a))},e.prototype.e=function(t){if(null!=t.na){var e=t.mo;return t.na.format(e)}return Yi.c(t)},e.$t=n.markType(e,"NumericCellPresenter",Ga.$),e}(Ga),rs=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),e.$t=n.markType(e,"DateTimeCell",Ja.$),e}(Ja),os=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(zn.mr)||e.a8(zn.ms)||e.a8(zn.mq)||e.a8(zn.gj))&&(this.e(n),this.d.cl.setRawText(n.j1)),ts.a(this.a.ae,n,this.a.ah,this.d.cl,this.a))},e.prototype.e=function(t){t.j1=t.m3(t.mp),t.j1==n.stringEmpty()&&null!=t.hm&&null===n.typeCast(n.Date_$type,t.hm)&&(t.j1=t.hm.toString())},e.$t=n.markType(e,"DateTimeCellPresenter",Ga.$),e}(Ga),as=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e}return i.__extends(e,t),e.$t=n.markType(e,"GridFilterDialogOpeningEventArgs"),e}(n.Base),ss=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e}return i.__extends(e,t),e.$t=n.markType(e,"GridFilterDialogFilterChangeEventArgs"),e}(n.Base),ls=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.b=null,e.k=null,e.a=null,e.g=null,e.h=null,e.propertyChanged=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"f",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,e!=this.c&&this.m("OperatorTypes")},enumerable:!1,configurable:!0}),e.prototype.m=function(t){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},Object.defineProperty(e.prototype,"e",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.m("Operators")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.m("CurrentOperator")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,e!=this.a&&this.m("OperandNumber")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.m("Operand1")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.m("Operand2")},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridFilterDialogViewModelRow",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),us=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=0,e.b=0,e.a=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"GridFilterDialogViewModelGrouping"),e}(n.Base),cs=function(t){function e(){return t.call(this,us.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"GridFilterDialogViewModelGroupingLevel",n.ObservableCollection$1.$.specialize(us.$)),e}(n.ObservableCollection$1),hs=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"FilterDialogRenderCompletedEventArgs",n.EventArgs.$),e}(n.EventArgs),ps=function(t){function e(){return t.call(this,cs.$,0)||this}return i.__extends(e,t),e.$t=n.markType(e,"GridFilterDialogViewModelGroupingLevelCollection",n.ObservableCollection$1.$.specialize(cs.$)),e}(n.ObservableCollection$1),ds=function(t){function e(e){var i=t.call(this)||this;return i.b=null,i.q=null,i.aa=new n.Path,i.j=0,i.i=0,i.d=null,i.m=null,i.n=null,i.o=null,i.g=0,i.f=0,i.h=1,i.l=0,i.k=0,i.e=!1,i.c=null,i.b=e,i}return i.__extends(e,t),e.prototype.y=function(){this.x(),this.b.bk()},e.prototype.t=function(){this.b.bc(this.l,this.k,this.aa)},e.prototype.s=function(){null==n.KeyFrameAnimationFactory.h&&(n.KeyFrameAnimationFactory.h=this.m)},e.prototype.a=function(t){return new n.AnimationKeyFrameEffect(0,this.m.rootWrapper,0,null,t)},e.prototype.v=function(t,e,i){if(null==t)return this.m=null,this.n=null,void(this.d=null);this.h=n.isNaN_(this.b.aj)?this.b.ai:this.b.aj;var r=t;this.m=r,this.n=i,this.o=e,this.m.rootWrapper.addClass("ig-filter-icon"),this.m.rootWrapper.setStyleProperty("cursor","pointer"),this.q=this.m.rootWrapper;var o=this.h,a=Math.round(r.rootWrapper.width()),s=Math.round(r.rootWrapper.height());this.b.ak,this.b.ak;this.x(),this.l=a,this.k=s,n.isNaN_(this.b.aj)&&(this.b.ai=window.devicePixelRatio,this.h=this.b.ai),this.y()},e.prototype.r=function(t){var e=t;this.m.append(e.an)},e.prototype.p=function(){return this.m},e.prototype.x=function(){if(this.b.k==this.b.l)return this.m.rootWrapper.setStyleProperty("position","relative"),this.m.rootWrapper.setStyleProperty("left","0px"),void this.m.rootWrapper.setStyleProperty("top","0px");this.m.rootWrapper.setStyleProperty("position","absolute"),2==this.b.l?(this.m.rootWrapper.setStyleProperty("left","unset"),this.m.rootWrapper.setStyleProperty("right",this.b.ao+"px")):this.m.rootWrapper.setStyleProperty("left",this.b.an+"px");var t=n.intDivide(this.o.height(),2)-this.k/2;this.m.rootWrapper.setStyleProperty("top",t+"px")},e.prototype.z=function(){this.y()},e.prototype.w=function(t,e){n.isNaN_(this.b.aj)&&(this.b.ai=window.devicePixelRatio,this.h=this.b.ai),this.l=t,this.k=e,this.y()},e.prototype.u=function(){if(n.isNaN_(this.b.aj)&&(this.b.ai=window.devicePixelRatio,this.h!=this.b.ai))return this.h=this.b.ai,void this.y();this.x()},e.$t=n.markType(e,"GridFilterDialogView"),e}(n.Base),fs=function(t){function e(e,i,r,o){var a=t.call(this)||this;a.b=null,a.k=null,a.d=null,a.j=264,a.i=0,a.a=null,a.h=null,a.f=null,a.e=null,a.g=null,a.b=e;var s=r.createElement("div"),l=r.getSubRenderer(s);s.setStyleProperty("position","absolute"),s.setStyleProperty("width",a.j+"px"),s.setStyleProperty("top","0px"),s.setStyleProperty("left","0px"),s.setStyleProperty("display","none"),s.setStyleProperty("z-index","10000"),s.setStyleProperty("background-color","#fff"),s.setStyleProperty("border-radius","3px"),s.setStyleProperty("overflow","auto");var u=n.ElevationHelper.e(12,a.b.bv,a.b.bu,a.b.bt);return s.setStyleProperty("boxShadow",u),s.listen("mousedown",n.runOn(a,a.o)),a.onDocumentKeyDown=a.onDocumentKeyDown.bind(a),a.onDocumentMouseClick=a.onDocumentMouseClick.bind(a),a.h=i,a.f=l,a.g=s,a.e=o,a}return i.__extends(e,t),e.prototype.o=function(t){t.stopPropagation()},e.prototype.onDocumentKeyDown=function(t){n.BaseDOMEventProxy.c0(t)},e.prototype.onDocumentMouseClick=function(t){},e.prototype.onFilterApplyClick=function(){},e.prototype.onFilterCancelClick=function(){},e.prototype.t=function(t){var i=this;this.n(),this.g.setStyleProperty("display","block"),this.f.appendToBody(this.g),null==this.k&&this.e.getPortal(this.g,"GridColumnOptions",(function(r){i.d=r;var o=r.componentRef,a=t,s=t.grid.density,l=e.c(s,!0),u=e.c(s,!0);i.k=o.i;var c=i.k;c.column=a,c.density=s,c.buttonDensity=l,c.summaryListDensity=u,c.filterListDensity=u,c.applyButtonClick=n.delegateCombine(c.applyButtonClick,n.runOn(i,i.onFilterApplyClick)),c.cancelButtonClick=n.delegateCombine(c.cancelButtonClick,n.runOn(i,i.onFilterCancelClick)),i.j=i.g.width(),i.i=i.g.height(),i.n()}),!1),document.addEventListener("keydown",this.onDocumentKeyDown,!1),document.addEventListener("mousedown",this.onDocumentMouseClick,!1)},e.prototype.n=function(){var t=this.h.width(),e=this.h.height(),n=this.h.getNativeElement().getBoundingClientRect(),i=n.left,r=n.top,o=window.innerWidth,a=window.innerHeight,s=0,l=0,u=!0;i>o-this.j-10&&(u=!1,s=-(this.j-t)),r>a-this.i-10&&(l=a-this.i-10-r-e,u?s+=t+10:s-=t+10),this.g.setStyleProperty("left",this.h.getOffset().left+s+"px"),this.g.setStyleProperty("top",this.h.getOffset().top+this.h.outerHeight()+l+"px")},e.prototype.l=function(){document.removeEventListener("keydown",this.onDocumentKeyDown,!1),document.removeEventListener("mousedown",this.onDocumentMouseClick,!1);var t=this.k;t.applyButtonClick=n.delegateRemove(t.applyButtonClick,n.runOn(this,this.onFilterApplyClick)),t.cancelButtonClick=n.delegateRemove(t.cancelButtonClick,n.runOn(this,this.onFilterCancelClick)),t.column=null,this.g.setStyleProperty("display","none"),this.g.remove()},e.prototype.m=function(){this.f.destroy(),this.g.unlistenAll(),this.k=null,this.g=null,null!=this.d&&this.d.destroy()},e.c=function(t,e){switch(t){case 1:return e?2:1;case 2:return e?3:1;case 3:return e?4:2;case 4:return e?4:3;case 0:default:return t}},e.$t=n.markType(e,"GridFilterDialogPanel"),e}(n.Base),ms=function(t){function e(){var e=t.call(this)||this;return e.ar=null,e.z=!0,e.propertyChanged=null,e.ag=NaN,e.af=1,e.j=2,e.i=0,e.al=0,e.am=0,e.bs=null,e.ah=n.DeviceUtils.g(24),e.bv=null,e.bu=null,e.bt=null,e.w=null,e.y=!1,e.m=null,e.x=!1,e.v=null,e.f=null,e.dialogOpening=null,e.filterChanging=null,e.filterChanged=null,e.s=null,e._commandCompleted=null,e._invalidateActions=null,e.renderCompleted=null,e.s=new ds(e),e.bv=n.BrushUtil.j(66,0,0,0),e.bu=n.BrushUtil.j(30,0,0,0),e.bt=n.BrushUtil.j(20,0,0,0),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"as",{get:function(){return this.ar},set:function(t){this.ar=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ab",{get:function(){return this.z},set:function(t){var e=this.z;this.z=t,e!=this.z&&this.bj("IsAnimationEnabled",e,this.z)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aj",{get:function(){return this.ag},set:function(t){var e=this.ag;this.ag=t,this.bj("PixelScalingRatio",e,this.ag)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ai",{get:function(){return this.af},set:function(t){var e=this.af;this.af=t,this.bj("ActualPixelScalingRatio",e,this.af)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,e!=this.j&&this.bj("IconHorizontalAlignment",n.enumGetBox(I,e),n.enumGetBox(I,this.j))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"k",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.bj("HeaderTextALignment",n.enumGetBox(I,e),n.enumGetBox(I,this.i))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"an",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,e!=this.al&&this.bj("CellPaddingLeft",e,this.al)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ao",{get:function(){return this.am},set:function(t){var e=this.am;this.am=t,e!=this.am&&this.bj("CellPaddingRight",e,this.am)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bw",{get:function(){return this.bs},set:function(t){var e=this.bs;this.bs=t,e!=this.bs&&this.bj("IconColor",e,this.bs)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ak",{get:function(){return this.ah},set:function(t){var e=this.ah;this.ah=t,e!=this.ah&&this.bj("ViewSize",e,this.ah)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ac",{get:function(){return this.v.bx},enumerable:!1,configurable:!0}),e.prototype.bj=function(t,e,i){this.bm(t,e,i),null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t))},e.prototype.bm=function(t,e,n){switch(t){case"PixelScalingRatio":this.ai=this.aj;break;case"ActualPixelScalingRatio":this.s.z();break;case"IconHorizontalAlignment":case"IconColor":case"HeaderTextALignment":case"CellPaddingLeft":case"CellPaddingRight":case"ViewSize":this.s.z()}},e.prototype.bn=function(t,e,n){this.s.v(t,e,n),this.bg()},Object.defineProperty(e.prototype,"n",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,this.m!=e&&this.bf(e,this.m)},enumerable:!1,configurable:!0}),e.prototype.bf=function(t,e){this.x=!0},e.prototype.bg=function(){var t=this;n.NativeUIComponent.au(this.s.p(),18,(function(e){var i=e;t.v=i,t.v.b0=16,t.v.b4=n.BrushUtil.j(0,0,0,0),t.v.bq=n.runOn(t,t.a6),t.v.by=!1,t.s.r(t.v),t.v.c=1,t.v.b1=t}))},e.prototype.a6=function(t,e){if(this.x&&(this.x=!1,this.v.b1=this.n),null!=this.n&&(null!=this.n.grid&&this.n.grid.va(),this.n.mx()),null!=this.dialogOpening){var n=new as;this.dialogOpening(this,n)}},e.prototype.a8=function(t,e){e.propertyName},e.prototype.bh=function(){},e.prototype.bi=function(t,e){t.onModified=n.delegateRemove(t.onModified,n.runOn(this,this.bl)),e?this.bp():this.bo(t,!0),this.f=null},e.prototype.a9=function(){if(this.s.s(),null==this.w){var t=new n.AnimationKeyFrameEffectTiming;t.g=200,t.b=0,this.w=n.KeyFrameAnimationFactory.f.c(this.s.a(t).m(new n.AnimationKeyFrameProperty(1,0)).m(new n.AnimationKeyFrameProperty(1,1)))}},e.prototype.bq=function(){var t,e=this;null!=this.filterChanged&&this.filterChanged(this,((t=new ss).a=e.f,t))},e.prototype.bp=function(){var t;null!=this.filterChanged&&this.filterChanged(this,((t=new ss).a=null,t))},e.prototype.bo=function(t,e){var n,i=this.e(t);e?null!=this.filterChanged&&this.filterChanged(this,((n=new ss).a=i,n)):null!=this.filterChanging&&this.filterChanging(this,function(){var t=new ss;return t.a=i,t}())},e.prototype.e=function(t){var e=new Tn;e.usesOrOperator=t.k;for(var i=new n.Stack$1(Tn.$),r=0,o=e,a=0;a<t.f.count;a++){for(var s=this.h(r,i,t,a);null!=s;)o.add(s),o=s,r++,s=this.h(r,i,t,a);for(s=this.g(r,i,t,a);null!=s;)o=s,r--,s=this.g(r,i,t,a);null==o&&(o=e),this.ae(t,t.f._inner[a])||o.add(this.d(t.f._inner[a]))}return 0==e.count?null:e},e.prototype.ae=function(t,e){for(var i=0,r=0;r<e.e.length;r++)if(e.e[r]==e.l){i=r;break}return e.d[i]>0&&null==e.i||!!(0!=t.a&&e.d[i]>0&&"string"==typeof e.i&&n.stringIsNullOrEmpty(e.i))},e.prototype.g=function(t,e,n,i){return t>this.aq(n,i)?(e.e(),e.d()):null},e.prototype.aq=function(t,e){var n=t.c(e);return null==n?0:t.e.indexOf(n)},e.prototype.h=function(t,e,n,i){if(t<this.aq(n,i)){var r=n.b(i),o=new Tn;return o.usesOrOperator=r.a,e.h(o),o}return null},e.prototype.d=function(t){var e=new In;return e.operator=this.c(t.l),e.value=t.i,e},e.prototype.c=function(t){return n.EnumUtil.getEnumValue(m,n.EnumUtil.parse(m,t,!0))},e.prototype.bl=function(t){this.bo(t,!1)},e.prototype.t=function(t,n){var i=new gs;if(null!=t)this.a7(i,t,n);else{var r=new ls;r.f=n,r.e=e.a(n),r.d=e.b(n),r.l=e.az(n[0]),i.f.add(r)}return i},e.prototype.a7=function(t,e,n){if(e.isGroup())for(var i=e,r=0;r<i.count;r++){var o=i.item(r);this.a7(t,o,n)}else t.f.add(this.u(e,n))},e.prototype.u=function(t,n){var i=new ls;return i.l=e.az(t.operator),i.f=n,i.e=e.a(n),i.i=e.at(e.ap(t.operator),t.operator,t),i.j=e.au(e.ap(t.operator),t.operator,t),i.d=e.b(n),i},e.ap=function(t){return In.getOperandNumber(t)},e.at=function(t,e,n){return 0==t?"":null!=n.value?n.value.toString():""},e.au=function(t,e,n){return""},e.b=function(t){return In.getOperandNumbers(t)},e.a=function(t){for(var e=new Array(t.length),i=0;i<t.length;i++)e[i]=n.EnumUtil.getName(m,t[i]);return e},e.az=function(t){return n.EnumUtil.getName(m,t)},e.prototype.be=function(t,e){this.s.w(t,e)},e.prototype.bd=function(){this.s.u()},e.prototype.bc=function(t,e,i){var r=n.Geometry.a("M12 14c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 14 12 14 z M12 8c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 8 12 8z M12 16 c1.1 0 2 0.9 2 2s -0.9 2 -2 2 s-2 -0.9 -2 -2 S10.9 16 12 16z");i.an=r,i._fill=null==this.bw?h.a5:this.bw},e.prototype.br=function(){var t=this;this.y=!1,1!=n.NativeUI.g(this.s.q)&&(this.ab?(this.a9(),this.w.playbackRate<0?this.w.reverse():this.w.play(),this.w.finished.f((function(e){return t.w.commitStyles()}))):n.NativeUI.y(this.s.q,1))},e.prototype.bb=function(){var t=this;this.y=!0,this.ac||(this.ab?(this.a9(),this.w.playbackRate<0?this.w.play():this.w.reverse(),this.w.finished.f((function(e){return t.w.commitStyles()}))):n.NativeUI.y(this.s.q,0),this.y=!1)},Object.defineProperty(e.prototype,"commandCompleted",{get:function(){return this._commandCompleted},set:function(t){this._commandCompleted=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"invalidateActions",{get:function(){return this._invalidateActions},set:function(t){this._invalidateActions=t},enumerable:!1,configurable:!0}),e.prototype.bk=function(){null!=this.renderCompleted&&this.renderCompleted(this,new hs)},e.prototype.ba=function(){null!=this.v&&null!=this.n&&this.v.b1!=this.n&&(this.v.b1=this.n)},e.prototype.getDesiredToolbarActions=function(){e.aa||(e.aa=!0,n.SvgIconRegistry.instance.addSvgPathString("XGrid","DotDotDot",e.ay));var t=new n.ToolActionIconMenuInfo;return t.name="DataGridColumnOptionsPlaceholder",t.iconCollectionName="XGrid",t.iconName="DotDotDot",t.iconViewBoxWidth=24,t.iconViewBoxHeight=24,t.paddingBottom=0,t.paddingTop=0,t.paddingRight=0,t.paddingLeft=0,t.showArrowIcon=!1,t.density=4,t.name="DataGridColumnOptions",t.tooltipDelay=500,[t]},e.prototype.addCommandAvailabilityListener=function(t){},e.prototype.removeCommandAvailabilityListener=function(t){},e.prototype.addCommandStateChangedListener=function(t){},e.prototype.removeCommandStateChangedListener=function(t){},e.prototype.onToolCommandExecuting=function(t){return 0},e.prototype.provideContextAccessor=function(t){},e.prototype.dismissContextAccessor=function(t){},e.prototype.ad=function(t){var e=t.originalEvent.srcElement,n=t.originalEvent.target;return!(!this.s.m.rootWrapper.getNativeElement().contains(e)&&!this.s.m.rootWrapper.getNativeElement().contains(n))},e.$t=n.markType(e,"GridFilterDialog",n.Base.$,[n.INotifyPropertyChanged_$type,n.IToolbarTarget_$type]),e.aa=!1,e.ay="M12 14c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 14 12 14 z M12 8c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 8 12 8z M12 16 c1.1 0 2 0.9 2 2s -0.9 2 -2 2 s-2 -0.9 -2 -2 S10.9 16 12 16z",e}(n.Base),gs=function(t){function e(){var e=t.call(this)||this;e.a=0,e.e=null,e.k=!1,e.m=0,e.f=null,e.onModified=null,e.k=!1,e.f=new ys,e.f.ae=e,e.e=new ps,e.f.ag=n.runOn(e,e.u);var i=e.f;return i.collectionChanged=n.delegateCombine(i.collectionChanged,n.runOn(e,e.t)),e}return i.__extends(e,t),e.prototype.n=function(){var t=new ls,e=In.getApplicableOperators(this.a);t.f=e,t.e=ms.a(e),t.d=ms.b(e),t.l=ms.az(e[0]),this.f.add(t)},e.prototype.u=function(t){null!=this.onModified&&this.onModified(this)},e.prototype.t=function(t,e){switch(e.action){case 0:if(null!=e.newItems)for(var n=0;n<e.newItems.count;n++){var i=e.newItems.item(n);this.q(n+e.newStartingIndex,i)}break;case 1:if(null!=e.oldItems)for(var r=0;r<e.oldItems.count;r++)this.r(e.oldStartingIndex);break;case 2:if(null!=e.oldItems)for(var o=0;o<e.oldItems.count;o++)this.r(e.oldStartingIndex);if(null!=e.newItems)for(var a=0;a<e.newItems.count;a++){e.newItems.item(a);this.q(a+e.newStartingIndex,e.newItems.item(a))}break;case 4:this.s()}null!=this.onModified&&this.onModified(this)},e.prototype.r=function(t){var e=this.c(t);if(null!=e){var n=this.b(t);if(null!=n){this.w(n,t);for(var i=e.indexOf(n)+1;i<e.count;i++)this.v(e._inner[i],-1)}}},e.prototype.w=function(t,e){t.b--},e.prototype.s=function(){this.e.clear()},e.prototype.q=function(t,e){var n=this.c(t);if(null!=n){var i=this.b(t);if(null!=i){this.p(i,t);for(var r=n.indexOf(i)+1;r<n.count;r++)this.v(n._inner[r],1)}}},e.prototype.v=function(t,e){t.c+=e,t.b-=e},e.prototype.p=function(t,e){t.b++},e.prototype.b=function(t){for(var e=this.e.count-1;e>=0;e--)for(var n=0;n<this.e._inner[e].count;n--)if(this.e._inner[e]._inner[n].c<=t&&this.e._inner[e]._inner[n].b>=t)return this.e._inner[e]._inner[n];return null},e.prototype.c=function(t){for(var e=this.e.count-1;e>=0;e--)for(var n=0;n<this.e._inner[e].count;n--)if(this.e._inner[e]._inner[n].c<=t&&this.e._inner[e]._inner[n].b>=t)return this.e._inner[e];return null},e.prototype.h=function(t,e){var n=this.d(t,e);return!this.i(n,t,e)||this.e.count<this.m},e.prototype.i=function(t,e,n){if(null==t)return!1;for(var i=0;i<t.count;i++)if(this.j(t._inner[i],e,n))return!0;return!1},e.prototype.j=function(t,e,n){return!(n>t.c||e>t.b)},e.prototype.d=function(t,e){if(0==this.e.count)return null;for(var n=0;n<this.e.count;n++)if(!this.i(this.e._inner[n],t,e))return this.e._inner[n];return this.e._inner[this.e.count-1]},e.prototype.aa=function(t,e){for(var n=0;n<this.e.count;n++)for(var i=0;i<this.e._inner[n].count;i++)if(this.e._inner[n]._inner[i].c==t&&this.e._inner[n]._inner[i].b==e){this.e._inner[n].removeAt(i);break}this.x(),null!=this.onModified&&this.onModified(this)},e.prototype.x=function(){for(var t=this.e.count-1;t>=0;t--){for(var e=new n.List$1(us.$,0),i=0;i<this.e._inner[t].count;i++){var r=this.e._inner[t]._inner[i];t>0&&(this.i(this.e._inner[t-1],r.c,r.b)||e.add(r))}for(var o=0;o<e.count;o++)this.e._inner[t].remove(e._inner[o]),this.e._inner[t-1].add(e._inner[o]);0==this.e._inner[t].count&&this.e.removeAt(t)}this.y()},e.prototype.y=function(){for(var t=this.e.count-1;t>=0;t--){for(var e=new n.List$1(us.$,0),i=0;i<this.e._inner[t].count;i++)e.add(this.e._inner[t]._inner[i]);e.aa((function(t,e){return n.Base.compareSimple(t.c,e.c)})),this.e._inner[t].clear();for(var r=0;r<this.e._inner[t].count;r++)this.e._inner[t].add(e._inner[r])}},e.prototype.l=function(t,e){for(var n=0;n<this.e.count;n++)for(var i=0;i<this.e._inner[n].count;i++)if(this.e._inner[n]._inner[i].c==t&&this.e._inner[n]._inner[i].b==e)return!0;return!1},e.prototype.z=function(t,e){for(var n=0;n<this.e.count;n++)for(var i=0;i<this.e._inner[n].count;i++)this.e._inner[n]._inner[i].c==t&&this.e._inner[n]._inner[i].b==e&&(this.e._inner[n]._inner[i].a=!this.e._inner[n]._inner[i].a);null!=this.onModified&&this.onModified(this)},e.prototype.o=function(t,e,n){if(this.h(t,e)){var i,r=this.d(t,e),o=r;this.i(r,t,e)&&(this.e.add(new cs),o=this.d(t,e)),o.add(((i=new us).c=t,i.b=e,i.a=n,i)),this.y(),null!=this.onModified&&this.onModified(this)}},e.$t=n.markType(e,"GridFilterDialogViewModel"),e}(n.Base),ys=function(t){function e(){var e=t.call(this,ls.$,0)||this;return e.ae=null,e.af=null,e.collectionChanged=n.delegateCombine(e.collectionChanged,n.runOn(e,e.ah)),e}return i.__extends(e,t),e.prototype.ah=function(t,e){if(null!=e.oldItems)for(var i=0;i<e.oldItems.count;i++){var r=e.oldItems.item(i);r.propertyChanged=n.delegateRemove(r.propertyChanged,n.runOn(this,this.ai))}if(null!=e.newItems)for(var o=0;o<e.newItems.count;o++){var a=e.newItems.item(o);a.propertyChanged=n.delegateCombine(a.propertyChanged,n.runOn(this,this.ai))}},e.prototype.ai=function(t,e){null!=this.af&&this.af(this.ae)},Object.defineProperty(e.prototype,"ag",{get:function(){return this.af},set:function(t){this.af=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridFilterDialogViewModelRowCollection",n.ObservableCollection$1.$.specialize(ls.$)),e}(n.ObservableCollection$1),bs=function(t){function e(e){var i=t.call(this,e)||this;i.cv=null,i.cr=null,i.cp=null,i.cl=0,i.ck=0,i.cn=3,i.cx=null,i.c0=-1,i.cz=-1,i.ct=!1,i.cw=null,i.cu=!1,i.cv=e.createElement("span"),i.ah.setRawStyleProperty("text-align","left"),i.ah.setRawStyleProperty("vertical-align","middle"),i.cv.setRawStyleProperty("display","inline-block"),i.cv.setRawStyleProperty("line-height","normal"),i.cv.setRawStyleProperty("vertical-align","middle"),i.cv.setRawStyleProperty("overflow","hidden"),i.cv.setRawStyleProperty("white-space","nowrap"),i.cv.setRawStyleProperty("text-overflow","ellipsis"),i.ah.append(i.cv);var r=e.createElement("div");r.setAttribute("aria-hidden","true"),r.setRawStyleProperty("display","none"),r.setRawStyleProperty("vertical-align","middle"),r.setRawStyleProperty("width","18px"),r.setRawStyleProperty("height","18px"),i.cw=r;var o=e.getSubRenderer(r);i.cp=new ms,i.cp.bn(o,i.ah,e),i.ah.append(r),i.cp.be(18,18),i.cp.ak=24;var a=i.cp.ab;i.cp.ab=!1,i.cp.bb(),i.cp.ab=a;(r=e.createElement("div")).setAttribute("aria-hidden","true"),r.setRawStyleProperty("display","inline-block"),r.setRawStyleProperty("vertical-align","middle"),r.setRawStyleProperty("width","0px"),r.setRawStyleProperty("height","18px"),r.setRawStyleProperty("margin","0 0 0 5px"),i.cx=r,o=e.getSubRenderer(r),i.cr=new da,i.cr.l=!1,i.cr.ax(o),i.ah.append(r),i.cr.ar(18,18);var s=i.cr;s.propertyChanged=n.delegateCombine(s.propertyChanged,n.runOn(i,i.c3));var l=i.cp;l.dialogOpening=n.delegateCombine(l.dialogOpening,n.runOn(i,i.c4));var u=i.cp;u.filterChanging=n.delegateCombine(u.filterChanging,n.runOn(i,i.c6));var c=i.cp;return c.filterChanged=n.delegateCombine(c.filterChanged,n.runOn(i,i.c5)),i.ah.listen("mouseenter",n.runOn(i,i.da)),i.ah.listen("mouseleave",n.runOn(i,i.c9)),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"cy",{get:function(){return this.cv},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cs",{get:function(){return this.cr},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cq",{get:function(){return this.cp},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"co",{get:function(){return this.cn},set:function(t){var e=this.cn;this.cn=t,this.bs("ColumnOptionsIconBehavior",n.enumGetBox(ht,e),n.enumGetBox(ht,this.cn))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cm",{get:function(){return this.cl},set:function(t){var e=this.cl;this.cl=t,this.bs("ColumnOptionsIconAlignment",n.enumGetBox(ut,e),n.enumGetBox(ut,this.cl))},enumerable:!1,configurable:!0}),e.prototype.aa=function(t){return!0},e.prototype.b9=function(e,n){t.prototype.b9.call(this,e,n),e-=21,this.cu&&(e-=15);var i=Math.max(0,e-n);i!=this.c0&&(this.c0=i,this.cv.setRawStyleProperty("max-width",i.toString()+"px"))},e.prototype.b3=function(e,n){t.prototype.b3.call(this,e,n);var i=Math.max(0,e-n);this.cz!=i&&(this.cz=i,this.cv.setRawStyleProperty("max-height",i.toString()+"px"))},e.prototype.ca=function(t,e,n,i){this.cp.bd()},e.prototype.c3=function(t,e){switch(e.propertyName){case"CurrentOpacity":this.cs.r>0?(this.cx.setRawStyleProperty("width","18px"),2==this.ck?this.cx.setRawStyleProperty("margin","0 5px 0 0"):this.cx.setRawStyleProperty("margin","0 0 0 5px")):(this.cx.setRawStyleProperty("width","0px"),this.cx.setRawStyleProperty("margin","0"))}},e.prototype.da=function(t){if(!this.b.isGridDragging)switch(this.cp.ba(),this.co){case 2:case 3:this.cp.br()}},e.prototype.c9=function(t){switch(this.co){case 2:case 3:this.cp.bb()}},e.prototype.c5=function(t,e){this.b.columnFilterChanged(e.a)},e.prototype.c6=function(t,e){this.b.columnFilterChanging(e.a)},e.prototype.c4=function(t,e){null!=this.b&&(e.a=this.f.getColumn(),this.b.cancelEditMode(!1))},e.prototype.bq=function(e,n,i){t.prototype.bq.call(this,e,n,i),this.ck=i,this.cp.k=i,2==i?(this.ah.removeChild(this.cx),this.ah.removeChild(this.cw),this.cv.before(this.cw),this.cw.before(this.cx),1==this.cm?(this.cw.setRawStyleProperty("margin","0 5px 0 0"),this.cp.l=this.ck):(this.cw.setRawStyleProperty("margin","0"),this.cp.l=0)):(this.ah.removeChild(this.cx),this.ah.removeChild(this.cv),this.cw.before(this.cv),this.cw.before(this.cx),1==this.cm?(this.cw.setRawStyleProperty("margin","0 0 0 5px"),this.cp.l=this.ck):(this.cw.setRawStyleProperty("margin","0"),this.cp.l=2))},e.prototype.b7=function(e,n,i,r){t.prototype.b7.call(this,e,n,i,r),this.cp.an=e,this.cp.ao=i},e.prototype.c8=function(){2==this.cm||0==this.cm?2==this.ck?this.cp.l=0:this.cp.l=2:(this.cp.l=this.ck,2==this.ck?this.cw.setRawStyleProperty("margin","0 5px 0 0"):this.cw.setRawStyleProperty("margin","0 0 0 5px"))},e.prototype.c7=function(){switch(this.co){case 1:this.cp.ab=!1,this.cp.br();break;case 2:this.cp.ab=!1;break;case 3:this.cp.ab=!0}},e.prototype.bs=function(e,n,i){switch(t.prototype.bs.call(this,e,n,i),e){case"ColumnOptionsIconAlignment":this.c8();break;case"ColumnOptionsIconBehavior":this.c7()}},e.prototype.onContactStarted=function(e,n){2!=e.button&&(this.cp.ad(e)?this.ct=!0:t.prototype.onContactStarted.call(this,e,n))},e.prototype.onContactCompleted=function(e,n){this.ct||t.prototype.onContactCompleted.call(this,e,n),this.ct=!1},e.prototype.detach=function(){t.prototype.detach.call(this),this.cp},e.prototype.get_x=function(){return!0},e.$t=n.markType(e,"TextHeaderCell",Ma.$),e}(Ma),vs=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;if(e.a3){if(e.a8(Qn.mf)&&(n.j1=n.mh,this.d.cy.setRawText(n.j1)),e.a8($n.g4)){var i=this.d.cs.l;e.bp&&(this.d.cs.l=!1),this.d.cs.b=e.n,e.bp&&(this.d.cs.l=i)}if(e.a8($n.g5)){var r=this.d.cs.l;e.bp&&(this.d.cs.l=!1),this.d.cs.a0=e.ma,e.bp&&(this.d.cs.l=r)}if(e.a7("IsColumnOptionsEnabled")){var o=n.mq;o&&(o=this.e()),this.d.cu=o,this.d.cw.setRawStyleProperty("display",o?"inline-block":"none"),this.a.b9(e.hd,e.gm+e.go+e.e2+e.e5)}if(e.a7("SortIndicatorStyle")&&(this.d.cs.f=n.mo),e.a7("ColumnOptionsIconAlignment")&&(this.d.cm=n.mk),e.a7("ColumnOptionsIconBehavior")&&(this.d.co=n.mm),e.a7("ColumnOptionsIconColor")&&(this.d.cq.bw=n.m2),e.a7("Path")||null!=this.d.cq.n&&null==this.d.cq.n.grid){var a=e.e.getColumn();a!=this.d.cq.n&&(this.d.cq.n=a)}ts.a(this.a.ae,n,this.a.ah,this.d.cy,this.a)}},e.prototype.e=function(){return n.TypeRegistrar.isRegistered("IgxGridColumnOptionsComponent")},e.$t=n.markType(e,"TextHeaderCellPresenter",Ga.$),e}(Ga),Cs=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),e.$t=n.markType(e,"RowSeparatorCell",Ma.$),e}(Ma),xs=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"RowSeparatorCellPresenter",Ga.$),e}(Ga),_s=function(t){function e(e){var i=t.call(this,e)||this;return i.cq=null,i.ck=1,i.cl=3,i.cs=null,i.cm=!1,i.cn=1,i.cp=null,i.cq=e.createElement("img"),i.cq.listen("load",n.runOn(i,i.cv)),i.cp=e.createElement("div"),i.cp.setRawStyleProperty("background-size","contain"),i.cp.setRawStyleProperty("background-repeat","no-repeat"),i.cp.setRawStyleProperty("background-position","center"),i.cp.setRawStyleProperty("width","100%"),i.cp.setRawStyleProperty("height","100%"),i.ah.setRawStyleProperty("text-align","left"),i.ah.setRawStyleProperty("vertical-align","middle"),i.ah.append(i.cp),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"cr",{get:function(){return this.cq},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"co",{get:function(){return this.cn},set:function(t){this.cn=t},enumerable:!1,configurable:!0}),e.prototype.cv=function(t){this.cm=!1,n.stringIsNullOrEmpty(this.cs)||(this.cp.setRawStyleProperty("opacity","1"),this.cp.setRawStyleProperty("background-image","url("+this.cs+")"))},e.prototype.cw=function(t,e){if(t!=this.cs)if(this.ct(),this.cp.setRawStyleProperty("opacity","0"),null!=t&&0!=t.length){if(!n.Base.equalsStatic(t,this.cs)){this.c0(t,e);var i=this.cq.getNativeElement();null!=i&&i.complete&&(this.cm=!1,this.cq.setRawStyleProperty("opacity","1"),this.cp.setRawStyleProperty("background-image","url("+this.cs+")"))}}else this.cu(this.cq)},e.prototype.cu=function(t){t.setAttribute("src",""),this.cp.setRawStyleProperty("background-image","")},e.prototype.cz=function(t){switch(t){case 1:this.cp.setRawStyleProperty("background-size","100% 100%");break;case 2:this.cp.setRawStyleProperty("background-size","auto");break;case 0:this.cp.setRawStyleProperty("background-size","contain")}},e.prototype.c0=function(t,e){this.cm=!0,this.cs=t,this.cr.setAttribute("src",t)},e.prototype.ct=function(){this.cm&&(this.cu(this.cq),this.cs="")},e.prototype.cx=function(t){this.ck=t},e.prototype.cy=function(t){this.cl=t},e.prototype.get_z=function(){return!0},e.prototype.bs=function(e,n,i){t.prototype.bs.call(this,e,n,i),"Indent"!=e&&"IsCollapsable"!=e||this.cp.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},e.$t=n.markType(e,"ImageCell",Ma.$),e}(Ma),ws=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;if(e.a3){if(e.a8($n.fa)||e.a8($n.hc)){var i=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-i);this.d.co=r}(n.a8(Un.mj)||n.a8(Un.mk))&&this.e(n.mn,n.mg),(n.a8(Un.ml)||n.a8(Un.fw)||n.a8(Un.hb))&&this.f(n.mi,n.g,n.i),n.a8(Un.g6)&&(1==e.u?this.d.ct():2==e.u&&this.e(n.mn,n.mg))}},e.prototype.f=function(t,e,n){this.d.cz(t)},e.prototype.e=function(t,e){var i=t.toLowerCase();if(0==e&&(e=4),(n.stringStartsWith(i,"http")||4==e)&&this.d.cw(t,4),n.stringStartsWith(i,"asset")||2==e){var r=t;n.stringStartsWith(i,"asset")&&(r=t.substr(8)),this.d.cw(r,2)}if(n.stringStartsWith(i,"drawable")||1==e){var o=t;n.stringStartsWith(i,"drawable")&&(o=t.substr(11)),this.d.cw(o,1)}if(n.stringStartsWith(i,"nativeresource")||1==e){var a=t;n.stringStartsWith(i,"nativeresource")&&(a=t.substr(17)),this.d.cw(a,1)}if(n.stringStartsWith(i,"embeddedresource")||3==e){var s=t;n.stringStartsWith(i,"embeddedresource")&&(s=t.substr(19)),this.d.cw(s,3)}},e.$t=n.markType(e,"ImageCellPresenter",Ga.$),e}(Ga),Ss=function(t){function e(e){var n=t.call(this)||this;return n.d=null,n._element=null,n.b=null,n.b=e,n.element=e.createElement("div"),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"element",{get:function(){return this._element},set:function(t){this._element=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isCanvasBased",{get:function(){return!1},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"TemplateCellContainer"),e}(n.Base),Ps=function(t){function e(e){var i=t.call(this,e)||this;return i.ck=null,i.ck=new Ss(e),i.ck.element.setRawStyleProperty("box-sizing","border-box"),i.ah.append(i.ck.element),i.ah.listen("keydown",n.runOn(i,i.cm)),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),e.prototype.get_z=function(){return!0},e.prototype.bs=function(e,n,i){t.prototype.bs.call(this,e,n,i),"Indent"!=e&&"IsCollapsable"!=e||this.ck.element.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},e.prototype.bh=function(){this.ck.element.getNativeElement().contains(document.activeElement)||t.prototype.bh.call(this)},e.prototype.cm=function(t){if(this.ck.element.getNativeElement().contains(document.activeElement)&&"INPUT"==document.activeElement.nodeName){var e=n.BaseDOMEventProxy.c0(t);14!=e&&16!=e||t.stopPropagation()}},e.$t=n.markType(e,"TemplateCell",Ma.$),e}(Ma),Os=function(t){function e(e,n){var i=t.call(this,e)||this;return i.d=null,i.d=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"e",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=this.d.actualColumns._inner[e.l.a5];if(e.a8($n.fa)||e.a8($n.hc)){var i=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-i);this.e.cl.element.setRawStyleProperty("opacity",r.toString())}n.n4(e,this.e.cl)},e.$t=n.markType(e,"TemplateCellPresenter",Ga.$),e}(Ga),Is=function(t){function e(e){var n=t.call(this,e)||this;return n.ck=null,n.ck=new Ss(e),n.ah.append(n.ck.element),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),e.prototype.get_x=function(){return!0},e.$t=n.markType(e,"TemplateHeaderCell",Ma.$),e}(Ma),js=function(t){function e(e,n){var i=t.call(this,e)||this;return i.d=null,i.d=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"e",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=this.d.actualColumns._inner[e.l.a5].header;if(e.a8($n.fa)||e.a8($n.hc)){var i=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-i);this.e.cl.element.setRawStyleProperty("opacity",r.toString())}var o=e;n.hq(o,this.e.cl)},e.$t=n.markType(e,"TemplateHeaderCellPresenter",Ga.$),e}(Ga),ks=function(t){function e(e){var n=t.call(this,e)||this;return n.ck=null,n.ck=e.createElement("span"),n.ah.setRawStyleProperty("text-align","left"),n.ah.setRawStyleProperty("vertical-align","middle"),n.ah.setRawStyleProperty("overflow","hidden"),n.ah.setRawStyleProperty("white-space","nowrap"),n.ah.setRawStyleProperty("text-overflow","ellipsis"),n.ah.append(n.ck),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),e.prototype.get_z=function(){return!0},e.prototype.bs=function(e,n,i){t.prototype.bs.call(this,e,n,i),"Indent"==e&&this.ck.setRawStyleProperty("margin-left",this.a3+this.a5+10+"px"),"IsCollapsable"==e&&(this.v?this.ck.setRawStyleProperty("margin-left",this.a3+this.a5+10+"px"):this.ck.setRawStyleProperty("margin-left","0px"))},e.$t=n.markType(e,"SectionHeaderCell",Ma.$),e}(Ma),Ts=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;e.a3&&((e.a8(Zn.ml)||e.a8(Zn.mn)||e.a8(Zn.mm)||e.a8(Zn.mp))&&(null==n.mh||0==n.mh.length&&null==n.mv?null==n.hm?n.j1="":n.j1=n.hm.toString():null!=n.mt&&0==n.mk?n.j1=n.mv+"    "+n.mt:n.j1=n.mv,this.d.cl.setRawText(n.j1)),ts.a(this.a.ae,n,this.a.ah,this.d.cl,this.a))},e.$t=n.markType(e,"SectionHeaderCellPresenter",Ga.$),e}(Ga),Rs=function(t){function e(e){var n=t.call(this,e)||this;return n.cl=null,n.ck=null,n.cm=0,n.cn=0,n.cl=e.createElement("div"),n.cl.setRawStyleProperty("position","absolute"),n.cl.setRawStyleProperty("pointer-events","none"),n.ah.append(n.cl),n}return i.__extends(e,t),e.prototype.b1=function(t,e,n,i,r){null==t?null!=this.ck&&(this.ck.remove(),this.ck=null):(this.co(),this.cm=e,this.cn=i),this.cp()},e.prototype.b9=function(e,n){t.prototype.b9.call(this,e,n),this.cp()},e.prototype.b0=function(t){this.cl.setRawStyleProperty("background-color",t.colorString)},e.prototype.cp=function(){null!=this.ck?(this.cl.setRawStyleProperty("height","100%"),this.cl.setRawStyleProperty("width",this.ah.width()-(this.cm+this.cn)+"px"),this.cl.setRawStyleProperty("left",n.intDivide(this.ah.width(),2)+"px"),this.ck.setRawStyleProperty("width","100%"),this.ck.setRawStyleProperty("height","100%")):(this.cl.setRawStyleProperty("height","100%"),this.cl.setRawStyleProperty("width",this.ah.width()+"px"),this.cl.setRawStyleProperty("left","0px"))},e.prototype.co=function(){null==this.ck&&(this.ck=this.ae.createElement("div"),this.ck.setRawStyleProperty("position","absolute"),this.ck.setRawStyleProperty("background-color","rgba(0,0,0,0)"),this.ah.getNativeElement().insertBefore(this.ck.getNativeElement(),this.cl.getNativeElement()))},e.$t=n.markType(e,"VerticalSeparatorCell",Ma.$),e}(Ma),Ds=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"VerticalSeparatorCellPresenter",Ga.$),e}(Ga),Bs=function(t){function e(e){var n=t.call(this,e)||this;return n.ck=null,n.cl=null,n.cm=null,n.cq=-1,n.cp=-1,n.ah.setRawStyleProperty("vertical-align","middle"),n.cm=e.createElement("div"),n.ck=e.createElement("span"),n.ck.setRawStyleProperty("display","inline-block"),n.ck.setRawStyleProperty("width","40%"),n.ck.setRawStyleProperty("white-space","nowrap"),n.ck.setRawStyleProperty("text-overflow","ellipsis"),n.ck.setRawStyleProperty("vertical-align","middle"),n.ck.setRawStyleProperty("overflow","hidden"),n.cm.append(n.ck),n.cl=e.createElement("span"),n.cl.setRawStyleProperty("display","inline-block"),n.cl.setRawStyleProperty("width","60%"),n.cl.setRawStyleProperty("text-align","right"),n.cl.setRawStyleProperty("white-space","nowrap"),n.cl.setRawStyleProperty("text-overflow","ellipsis"),n.cl.setRawStyleProperty("vertical-align","middle"),n.cl.setRawStyleProperty("overflow","hidden"),n.cm.append(n.cl),n.ah.append(n.cm),n}return i.__extends(e,t),Object.defineProperty(e.prototype,"cn",{get:function(){return this.ck},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"co",{get:function(){return this.cl},enumerable:!1,configurable:!0}),e.prototype.b9=function(e,n){t.prototype.b9.call(this,e,n);var i=Math.max(0,e-n);this.cq!=i&&(this.cq=i)},e.prototype.b3=function(e,n){t.prototype.b3.call(this,e,n);var i=Math.max(0,e-n);this.cp!=i&&(this.cp=i)},e.prototype.get_z=function(){return!1},e.prototype.bs=function(e,n,i){t.prototype.bs.call(this,e,n,i),"Indent"!=e&&"IsCollapsable"!=e||this.cm.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},e.$t=n.markType(e,"SummaryCell",Ma.$),e}(Ma),Ms=function(t){function e(e){return t.call(this,e)||this}return i.__extends(e,t),Object.defineProperty(e.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;if(e.a3&&(ts.a(this.a.ae,i,this.a.ah,this.d.cn,this.a),ts.a(this.a.ae,i,this.a.ah,this.d.co,this.a),(e.a7("ResolvedSummaryLabel")||e.a7("ResolvedSummaryValue"))&&(null!=i.mn&&this.d.cn.setRawText(i.mn),null!=i.mp&&this.d.co.setRawText(i.mp)),e.a7("SummaryLabelTextColor")&&this.d.cn.setRawStyleProperty("color",i.mu._fill),e.a7("SummaryLabelFontInfo"))){var r=i.mg;null==r&&(r=n.FontUtil.getDefaultFont(this.a.ae)),this.d.cn.setRawStyleProperty("font",r.fontString)}},e.$t=n.markType(e,"SummaryCellPresenter",Ga.$),e}(Ga),Es=function(t){function e(e,n){var i=t.call(this)||this;return i.a=null,i.c=!1,i.a=e,i.c=n,i}return i.__extends(e,t),e.prototype.b=function(t,e){return null!=e.s||(this.c?(null!==n.typeCast(Qn.$,e)&&(e.s=new aa(new ia(t))),null!==n.typeCast(Kn.$,e)&&(e.s=new la(new sa(t))),null!==n.typeCast(zn.$,e)&&(e.s=new ca(new ua(t))),null!==n.typeCast(Jn.$,e)&&(e.s=new ma(new fa(t))),null!==n.typeCast(Xn.$,e)&&(e.s=new ya(new ga(t))),null!==n.typeCast(Un.$,e)&&(e.s=new va(new ba(t))),null!==n.typeCast(Yn.$,e)&&(e.s=new _a(new xa(t),this.a)),null!==n.typeCast(Qr.$,e)&&(e.s=new Sa(new wa(t),this.a)),null!==n.typeCast(Zn.$,e)&&(e.s=new Oa(new Pa(t))),null!==n.typeCast(Wn.$,e)&&(e.s=new ja(new Ia(t))),null!==n.typeCast(Hn.$,e)&&(e.s=new Ta(new ka(t))),null!==n.typeCast(Gn.$,e)&&(e.s=new La(new za(t))),null!==n.typeCast(qn.$,e)&&(e.s=new Ha(new qa(t))),null!==n.typeCast(Ln.$,e)&&(e.s=new Qa(new Ya(t)))):(null!==n.typeCast(Qn.$,e)&&(e.s=new es(new Ja(t))),null!==n.typeCast(Kn.$,e)&&(e.s=new is(new ns(t))),null!==n.typeCast(zn.$,e)&&(e.s=new os(new rs(t))),null!==n.typeCast(Jn.$,e)&&(e.s=new vs(new bs(t))),null!==n.typeCast(Xn.$,e)&&(e.s=new xs(new Cs(t))),null!==n.typeCast(Un.$,e)&&(e.s=new ws(new _s(t))),null!==n.typeCast(Yn.$,e)&&(e.s=new Os(new Ps(t),this.a)),null!==n.typeCast(Qr.$,e)&&(e.s=new js(new Is(t),this.a)),null!==n.typeCast(Zn.$,e)&&(e.s=new Ts(new ks(t))),null!==n.typeCast(Wn.$,e)&&(e.s=new Ds(new Rs(t))),null!==n.typeCast(Hn.$,e)&&(e.s=new Ms(new Bs(t))),null!==n.typeCast(Gn.$,e)&&(e.s=new La(new za(t))),null!==n.typeCast(qn.$,e)&&(e.s=new Ha(new qa(t))),null!==n.typeCast(Ln.$,e)&&(e.s=new Qa(new Ya(t))))),e.s},e.$t=n.markType(e,"DataGridPresenterManager"),e}(n.Base),As=new n.Type(null,"IViewportManager"),Vs=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),e.prototype.moveViewportTo=function(t,e){var n=this.a;n._scrollTo?n._scrollTo(t,e):n.scrollTo(t,e)},e.$t=n.markType(e,"DataGridViewportManager",n.Base.$,[As]),e}(n.Base),Ns=new n.Type(null,"IDelayedExecutionManager"),Fs=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),e.prototype.cancelPending=function(t){this.a.clearTimeout(t)},e.prototype.executeIn=function(t,e){return this.a.setTimeout((function(){return t()}),e)},e.$t=n.markType(e,"DataGridDelayedExecutionManager",n.Base.$,[Ns]),e}(n.Base),$s=new n.Type(null,"IPropertySetter"),zs=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.setProperty=function(t,e,n){null!=t&&(t[e]=n)},e.$t=n.markType(e,"DataGridPropertySetter",n.Base.$,[$s]),e}(n.Base),Gs=new n.Type(null,"IDraggerView"),Ls=new n.Type(null,"IDragger"),qs=function(t){function e(e){var n=t.call(this)||this;return n._model=null,n.c=null,n.d=null,n.a=null,n.model=e,n}return i.__extends(e,t),Object.defineProperty(e.prototype,"model",{get:function(){return this._model},set:function(t){this._model=t},enumerable:!1,configurable:!0}),e.prototype.provideContainer=function(t){if(null==t)return null!=this.c&&(this.c=null),void(null!=this.a&&(this.a.ao=null,this.a.av()));this.c=t;var e=Math.round(this.c.rootWrapper.width()),i=Math.round(this.c.rootWrapper.height());this.a=new n.CanvasGestureDOMEventProxy(this.c.rootWrapper,this.c,!0),this.a.c8=!0;var r=this.a;r.onMouseOver=n.delegateCombine(r.onMouseOver,n.runOn(this,this.e));var o=this.a;o.onMouseUp=n.delegateCombine(o.onMouseUp,n.runOn(this,this.f)),this.a.ao=n.runOn(this,this.b),this.model.viewportWidth=e,this.model.viewportHeight=i},e.prototype.onDetachedFromUI=function(){null!=this.a&&null!=this.c&&this.a.bh(this.c.rootWrapper,"")},e.prototype.onAttachedToUI=function(){null!=this.a&&this.a.at(this.c.rootWrapper,"")},e.prototype.b=function(t){return this.model.isDragActive},e.prototype.e=function(t,e,n){this.g(t)},e.prototype.f=function(t){this.h(t)},e.prototype.captureMouse=function(){},e.prototype.releaseMouse=function(){},e.prototype.transformPoint=function(t,e){var i=n.BaseDOMEventProxy.c4(this.c.rootWrapper);return{$type:n.Point_$type,x:t-i.x,y:e-i.y}},e.prototype.g=function(t){this.model.onMouseMove(t.x,t.y)},e.prototype.h=function(t){this.model.onMouseUp(t.x,t.y)},e.prototype.onViewportSizeChanged=function(t,e){this.a.bl=new n.Rect(0,0,0,t,e)},e.prototype.addCloneCellToDom=function(){if(null!=this.c&&null!=this.model.cloneCell){this.d=this.model.cloneCell,document.documentElement.appendChild(this.d.getNativeElement());var t=n.ElevationHelper.e(12,n.BrushUtil.j(66,0,0,0),n.BrushUtil.j(30,0,0,0),n.BrushUtil.j(20,0,0,0));this.d.setStyleProperty("boxShadow",t),this.d.setStyleProperty("z-index","12000"),this.d.setStyleProperty("min-width","170px"),this.d.setStyleProperty("max-width","250px");var e=n.BrushUtil.a("background-color",this.d),i=n.BrushUtil.j(200,e[0].color.o,e[0].color.n,e[0].color.m);this.d.setStyleProperty("background-color",i._fill);var r=this.d.getChildAt(0),o=n.BrushUtil.a("color",r),a=n.BrushUtil.j(200,o[0].color.o,o[0].color.n,o[0].color.m);r.setStyleProperty("color",a._fill)}},e.prototype.removeCloneCellFromDom=function(){null!=this.c&&this.d.remove()},e.prototype.getTopAndLeft=function(){var t=this.c.rootWrapper.getNativeElement().getBoundingClientRect(),e=t.top,n=t.left,i=new Array(2);return i[0]=e,i[1]=n,i},e.prototype.getWindowScrollPos=function(){var t=window.pageYOffset,e=window.pageXOffset,n=new Array(2);return n[0]=t,n[1]=e,n},e.$t=n.markType(e,"DraggerView",n.Base.$,[Gs]),e}(n.Base),Hs=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._startX=0,e._startY=0,e._currentX=0,e._currentY=0,e._controlPressed=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"startX",{get:function(){return this._startX},set:function(t){this._startX=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"startY",{get:function(){return this._startY},set:function(t){this._startY=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"currentX",{get:function(){return this._currentX},set:function(t){this._currentX=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"currentY",{get:function(){return this._currentY},set:function(t){this._currentY=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"controlPressed",{get:function(){return this._controlPressed},set:function(t){this._controlPressed=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"DragSelectEventArgs",n.EventArgs.$),e}(n.EventArgs),Ws=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.q=null,e.d=!1,e.h=0,e.i=0,e.c=null,e.b=4,e.e=!1,e.a=null,e.j=null,e.g=0,e.f=0,e.onDrag=null,e.onDragEnd=null,e.propertyChanged=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"view",{get:function(){return null==this.c&&(this.c=new qs(this)),this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dragType",{get:function(){return this.b},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isDragActive",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cellPath",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cloneCell",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,e!=this.j&&this.o("CloneCell",e,this.j)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"viewportWidth",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.o("ViewportWidth",e,this.g)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"viewportHeight",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,e!=this.f&&this.o("ViewportHeight",e,this.f)},enumerable:!1,configurable:!0}),e.prototype.o=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.p(t,e,i)},e.prototype.onDetachedFromUI=function(){this.view.onDetachedFromUI()},e.prototype.onAttachedToUI=function(){this.view.onAttachedToUI()},e.prototype.provideContainer=function(t){this.view.provideContainer(t)},e.prototype.onMouseMove=function(t,e){var i,r=this;if(this.e&&(null!=this.onDrag&&this.onDrag(this,((i=new Hs).startX=r.q.x,i.startY=r.q.y,i.currentX=t,i.currentY=e,i.controlPressed=r.d,i)),null!=this.cloneCell)){var o=this.i,a=this.h,s=this.view.getWindowScrollPos();o+=s[0],a+=s[1],n.NativeUI.v(this.cloneCell,t+a),n.NativeUI.ae(this.cloneCell,e+o)}},e.prototype.onMouseUp=function(t,e){this.e&&(this.view.releaseMouse(),this.e=!1,null!=this.onDragEnd&&this.onDragEnd(this,new Hs),this.b=4,null!=this.cloneCell&&(this.view.removeCloneCellFromDom(),this.cloneCell=null))},e.prototype.dragStart=function(t,e,i,r,o,a,s){if(!this.e&&(this.q=this.view.transformPoint(t,e),this.q={$type:n.Point_$type,x:this.q.x+i,y:this.q.y+r},this.e=!0,this.d=s,this.b=o,this.a=a,this.view.captureMouse(),null!=this.cloneCell)){var l=this.i,u=this.h,c=this.view.getWindowScrollPos();l+=c[0],u+=c[1],n.NativeUI.v(this.cloneCell,t+u),n.NativeUI.ae(this.cloneCell,e+l)}},e.prototype.cancel=function(){this.e=!1,this.b=4},e.prototype.n=function(){if(null!=this.cloneCell){var t=new Array(2);t[0]=0,t[1]=0,t=this.view.getTopAndLeft();var e=n.NativeUI.d(this.cloneCell)/2;this.i=t[0]-e;var i=n.NativeUI.k(this.cloneCell)/2;this.h=t[1]-i}},e.prototype.p=function(t,e,n){switch(t){case"ViewportWidth":case"ViewportHeight":this.view.onViewportSizeChanged(this.g,this.f);break;case"CloneCell":this.view.addCloneCellToDom(),this.n()}},e.$t=n.markType(e,"Dragger",n.Base.$,[Ls,n.INotifyPropertyChanged_$type]),e}(n.Base),Us={},Ks=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new xt},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"filterExpressions",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=new n.IgxFilterExpressionCollection;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.a=null==t?null:t.i},enumerable:!1,configurable:!0}),t}(),Xs=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new wn},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Zs=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Sn},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Ys=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Pn},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Qs=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new xn(0)},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"columnName",{get:function(){return this.i.c},set:function(t){this.i.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propertyName",{get:function(){return this.i.d},set:function(t){this.i.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),Js=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Tr},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"name",{get:function(){return this.i.k},set:function(t){this.i.k=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"delayMilliseconds",{get:function(){return this.i.i},set:function(t){this.i.i=+t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.addColumnPropertySetter=function(e){var n=this.i.g(null==e?null:e.i),i=null;if(n&&n.externalObject)i=n.externalObject;else if(n){var r=new t;r._implementation=n,n.externalObject=r,i=r}return i},t.prototype.columnPropertySetter=function(){var t=this.i.c(),e=null;if(t&&t.externalObject)e=t.externalObject;else if(t){var n=new Qs;n._implementation=t,t.externalObject=n,e=n}return e},t.prototype.addColumnExchanger=function(e){var n=this.i.f(null==e?null:e.i),i=null;if(n&&n.externalObject)i=n.externalObject;else if(n){var r=new t;r._implementation=n,n.externalObject=r,i=r}return i},t.prototype.columnExchanger=function(){var e=this.i.h(),n=null;if(e&&e.externalObject)n=e.externalObject;else if(e){var i=new t;i._implementation=e,e.externalObject=i,n=i}return n},t}(),tl=function(){function t(){this._stateEntering=null,this._stateEntered=null,this._stateExited=null,this._zoneRunner=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Dr},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"name",{get:function(){return this.i.n},set:function(t){this.i.n=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"minimumWidth",{get:function(){return this.i.k},set:function(t){this.i.k=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maximumWidth",{get:function(){return this.i.j},set:function(t){this.i.j=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isManualState",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype.addResponsivePhase=function(e){var n=this.i.d(null==e?null:e.i),i=null;if(n&&n.externalObject)i=n.externalObject;else if(n){var r=new t;r._implementation=n,n.externalObject=r,i=r}return i},t.prototype.responsivePhase=function(){var t=this.i.a(),e=null;if(t&&t.externalObject)e=t.externalObject;else if(t){var n=new Js;n._implementation=t,t.externalObject=n,e=n}return e},Object.defineProperty(t.prototype,"stateEntering",{get:function(){var t=this;return null==this._stateEntering&&(this._stateEntering=new e.EventEmitter,this.i.stateEntering=n.delegateCombine(this.i.stateEntering,(function(e,n){t._runInZone((function(){var e=new Xs;e._provideImplementation(n),t.beforeStateEntering&&t.beforeStateEntering(t,e),t._stateEntering.emit({sender:t,args:e})}))}))),this._stateEntering},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stateEntered",{get:function(){var t=this;return null==this._stateEntered&&(this._stateEntered=new e.EventEmitter,this.i.stateEntered=n.delegateCombine(this.i.stateEntered,(function(e,n){t._runInZone((function(){var e=new Zs;e._provideImplementation(n),t.beforeStateEntered&&t.beforeStateEntered(t,e),t._stateEntered.emit({sender:t,args:e})}))}))),this._stateEntered},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stateExited",{get:function(){var t=this;return null==this._stateExited&&(this._stateExited=new e.EventEmitter,this.i.stateExited=n.delegateCombine(this.i.stateExited,(function(e,n){t._runInZone((function(){var e=new Ys;e._provideImplementation(n),t.beforeStateExited&&t.beforeStateExited(t,e),t._stateExited.emit({sender:t,args:e})}))}))),this._stateExited},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t}(),el=function(t){function e(e){var i=t.call(this)||this;if(tl.$type||(tl.$type=n.markType(tl,"IgxResponsiveState")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){tl.$type||(tl.$type=n.markType(tl,"IgxResponsiveState"));var t=new n.SyncableObservableCollection$2(tl.$type,Dr.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new tl)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),nl=function(){function t(){this._zoneRunner=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ae},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t}(),il=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new ir},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-row-separator",providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:il,decorators:[{type:e.Component,args:[{selector:"igx-row-separator",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return il}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var rl=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new rr},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-header-row-separator",providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:rl,decorators:[{type:e.Component,args:[{selector:"igx-header-row-separator",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return rl}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var ol=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new b},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"rowIndex",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnUniqueKey",{get:function(){return this.i.d},set:function(t){this.i.d=t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),al=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Xe},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"newActiveCell",{get:function(){var t=this.i.newActiveCell;if(null==t)return null;if(!t.externalObject){var e=new ol;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.newActiveCell=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"oldActiveCell",{get:function(){var t=this.i.oldActiveCell;if(null==t)return null;if(!t.externalObject){var e=new ol;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.oldActiveCell=null==t?null:t.i},enumerable:!1,configurable:!0}),t}(),sl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new pi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.a=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isHidden",{get:function(){return this.i.b},set:function(t){this.i.b=n.ensureBool(t)},enumerable:!1,configurable:!0}),t}(),ll=function(t){function e(e){var n=t.call(this)||this;return n.a=null,n.a=e,n}return i.__extends(e,t),e.prototype.onDownArrow=function(t,e){return this.a.kk(t,e)},e.prototype.onEnd=function(t,e){return this.a.kl(t,e)},e.prototype.onHome=function(t,e){return this.a.kp(t,e)},e.prototype.onLeftArrow=function(t,e){return this.a.kr(t,e)},e.prototype.onPageDown=function(t,e){return this.a.ks(t,e)},e.prototype.onPageUp=function(t,e){return this.a.kt(t,e)},e.prototype.onRightArrow=function(t,e){return this.a.ku(t,e)},e.prototype.onTab=function(t,e){return this.a.kw(t,e)},e.prototype.onUpArrow=function(t,e){return this.a.kx(t,e)},e.prototype.onWheel=function(){this.a.xl()},e.prototype.onEnter=function(t,e){return this.a.km(t,e)},e.prototype.onEscape=function(){return this.a.kn()},e.prototype.onF2=function(){return this.a.ko()},e.prototype.onSpace=function(t,e){return this.a.kv(t,e)},e.prototype.onKeyDown=function(t,e,n){return this.a.kq(t,e,n)},e.$t=n.markType(e,"DataGridScrollerKeyboardListener",n.Base.$,[n.IScrollerKeyboardListener_$type]),e}(n.Base),ul=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new Xi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-header-separator",providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ul,decorators:[{type:e.Component,args:[{selector:"igx-header-separator",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return ul}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var cl=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new Ki},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(n.prototype,"actualOpacity",{get:function(){return this.i.g0},set:function(t){this.i.g0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"opacity",{get:function(){return this.i.g1},set:function(t){this.i.g1=+t},enumerable:!1,configurable:!0}),n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-column-resizing-separator",inputs:{actualOpacity:"actualOpacity",opacity:"opacity"},providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:cl,decorators:[{type:e.Component,args:[{selector:"igx-column-resizing-separator",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return cl}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{actualOpacity:[{type:e.Input}],opacity:[{type:e.Input}]}});var hl=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new Vi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(n.prototype,"separatorWidth",{get:function(){return this.i.g3},set:function(t){this.i.g3=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualOpacity",{get:function(){return this.i.g0},set:function(t){this.i.g0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"opacity",{get:function(){return this.i.g1},set:function(t){this.i.g1=+t},enumerable:!1,configurable:!0}),n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-column-moving-separator",inputs:{separatorWidth:"separatorWidth",actualOpacity:"actualOpacity",opacity:"opacity"},providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:hl,decorators:[{type:e.Component,args:[{selector:"igx-column-moving-separator",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return hl}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{separatorWidth:[{type:e.Input}],actualOpacity:[{type:e.Input}],opacity:[{type:e.Input}]}});var pl=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new Ji},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-pinned-area-separator",providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:pl,decorators:[{type:e.Component,args:[{selector:"igx-pinned-area-separator",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return pl}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var dl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new di},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.a=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinned",{get:function(){return this.i.b},set:function(t){this.i.b=n.ensureEnum(E,t)},enumerable:!1,configurable:!0}),t}(),fl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new fi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"cellInfo",{get:function(){if(null==this.i.cellInfo)return null;if(!this.i.cellInfo.externalObject){var t=null;switch(this.i.cellInfo.$type.name){case"DateTimeCellModel":t=new Hr;break;case"ImageCellModel":t=new Wr;break;case"NumericCellModel":t=new Ur;break;case"RowSeparatorModel":t=new Kr;break;case"SectionHeaderCellModel":t=new Xr;break;case"TemplateCellModel":t=new Zr;break;case"TemplateHeaderCellModel":t=new Jr;break;case"TemplateSectionHeaderCellModel":t=new eo;break;case"TextCellModel":t=new no;break;case"TextHeaderCellModel":t=new io}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editID",{get:function(){return this.i.c},set:function(t){this.i.c=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.b;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.b=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"item",{get:function(){return this.i.item},set:function(t){this.i.item=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"oldValue",{get:function(){return this.i.f},set:function(t){this.i.f=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"newValue",{get:function(){return this.i.e},set:function(t){this.i.e=t},enumerable:!1,configurable:!0}),t}(),ml=function(){function t(){}return Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"changes",{get:function(){return this.i.a},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"commitID",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),t}(),gl=function(){function t(){}return Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"commitID",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"changes",{get:function(){return this.i.a},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.a=t},enumerable:!1,configurable:!0}),t}(),yl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new He},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"width",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this.i.a},set:function(t){this.i.a=+t},enumerable:!1,configurable:!0}),t}(),bl=function(){function t(){this._columns=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ui},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"columns",{get:function(){if(null===this._columns){var t=new Po,e=this.i.columns;e||(e=new ji),this._columns=t._fromInner(e),this.i.columns=e}return this._columns},set:function(t){null!==this._columns&&(this._columns._setSyncTarget(null),this._columns=null);var e=new Po;this._columns=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Ii.$type),r=this.i.columns;r||(r=new ji),i._inner=r,i.clear(),this._columns._setSyncTarget(i),this.i.columns=r},enumerable:!1,configurable:!0}),t}(),vl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new gi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.c;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.c=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"oldWidth",{get:function(){var t=this.i.b;if(null==t)return null;if(!t.externalObject){var e=new yo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.b=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"newWidth",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=new yo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.a=null==t?null:t.i},enumerable:!1,configurable:!0}),t}(),Cl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new yi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.a=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"row",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"item",{get:function(){return this.i.item},set:function(t){this.i.item=t},enumerable:!1,configurable:!0}),t}(),xl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new bi},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.a=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"row",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"item",{get:function(){return this.i.item},set:function(t){this.i.item=t},enumerable:!1,configurable:!0}),t}(),_l=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ye},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"row",{get:function(){return this.i.a},set:function(t){this.i.a=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"item",{get:function(){return this.i.item},set:function(t){this.i.item=t},enumerable:!1,configurable:!0}),t}(),wl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Qe},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"row",{get:function(){return this.i.a},set:function(t){this.i.a=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"item",{get:function(){return this.i.item},set:function(t){this.i.item=t},enumerable:!1,configurable:!0}),t}(),Sl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ze},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Pl=function(t){function e(){var e=t.call(this)||this;return e.b=null,e.c=null,e.a=0,e}return i.__extends(e,t),e.$t=n.markType(e,"GroupInfo"),e}(n.Base),Ol=new n.Type(null,"IColumnGrouping"),Il=new n.Type(null,"IColumnGroupingVisualModelExport"),jl=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=0,e.a=0,e.o=null,e.h=0,e.f=0,e.e=0,e.i=0,e.l=null,e.m=null,e.n=null,e.g=0,e.j=null,e.k=null,e.c=null,e.d=null,e}return i.__extends(e,t),e.prototype.serialize=function(){var t=new n.StringBuilder(0);t.l("{"),t.l("density : "+this.b+", "),t.l("baseTheme : "+this.a+", "),t.l("title : "+this.o+", "),t.l("top : "+this.h+", "),t.l("left : "+this.f+", "),t.l("height : "+this.e+", "),t.l("width : "+this.i+", "),n.stringIsNullOrEmpty(this.l)||t.l('textStyleFontStyle : "'+this.l+'", '),n.stringIsNullOrEmpty(this.m)||t.l('textStyleFontVariant : "'+this.m+'", '),n.stringIsNullOrEmpty(this.n)||t.l('textStyleFontWeight : "'+this.n+'", '),n.stringIsNullOrEmpty(this.j)||t.l('textStyleFontFamily : "'+this.j+'", '),n.stringIsNullOrEmpty(this.k)||t.l('textStyleFontStretch : "'+this.k+'", '),n.isNaN_(this.g)||t.l("textStyleFontSize : "+this.g+", "),t.l("groupPipsModels: [");for(var e=0;e<this.c.count;e++)0!=e&&t.l(","),t.l(this.c._inner[e].h());t.l("],"),t.l("iconsModels: [");for(var i=0;i<this.d.count;i++)0!=i&&t.l(","),t.l(this.d._inner[i].l());return t.l("]"),t.l("}"),t.toString()},e.$t=n.markType(e,"ColumnGroupingVisualModelExport",n.Base.$,[Il]),e}(n.Base),kl=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.e=0,e.d=0,e.c=0,e.f=0,e.g=null,e.b=null,e.a=null,e}return i.__extends(e,t),e.prototype.h=function(){var t=new n.StringBuilder(0);return t.l("{"),t.l("top : "+this.e+", "),t.l("left : "+this.d+", "),t.l("height : "+this.c+", "),t.l("width : "+this.f+", "),null!=this.g&&t.l('value : "'+this.g.toString()+'", '),t.l("textColor : "+this.b.serialize()+", "),null!=this.a&&t.l("borderColor : "+this.a.serialize()+", "),t.l("}"),t.toString()},e.$t=n.markType(e,"TextVisualModelExport"),e}(n.Base),Tl=function(t){function e(){var e=t.call(this)||this;return e.e=null,e.t=null,e.r=null,e.i=new n.List$1(n.DomWrapper_$type,0),e.g=new n.List$1(n.DomWrapper_$type,0),e.h=new n.List$1(n.DomWrapper_$type,0),e.n=null,e.s=null,e.p=null,e.d=null,e.f=!1,e.q=null,e.m=null,e}return i.__extends(e,t),e.prototype.ai=function(){},Object.defineProperty(e.prototype,"o",{get:function(){return this.n},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"u",{get:function(){return this.n.rootWrapper},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.r},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"w",{get:function(){return this.t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.i},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.g},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"k",{get:function(){return this.h},enumerable:!1,configurable:!0}),e.prototype.ah=function(t){if(null!=t){this.n=t,this.d=new n.CanvasGestureDOMEventProxy(this.o.rootWrapper,this.o,!0),this.d.c8=!0;var e=this.d;e.onMouseDown=n.delegateCombine(e.onMouseDown,n.runOn(this,this.z));var i=this.d;i.onMouseOver=n.delegateCombine(i.onMouseOver,n.runOn(this,this.aa));var r=this.d;r.onMouseUp=n.delegateCombine(r.onMouseUp,n.runOn(this,this.ab)),this.n.rootWrapper.setStyleProperty("position","relative"),this.n.rootWrapper.setStyleProperty("display","flex"),this.n.rootWrapper.setStyleProperty("justify-content","space-between"),this.n.rootWrapper.setStyleProperty("align-items","center"),this.n.rootWrapper.setStyleProperty("padding","4px 16px 4px 16px"),1==this.e.o?this.n.rootWrapper.setStyleProperty("border-width","0px 0px 1px 0px"):this.n.rootWrapper.setStyleProperty("border-width","1px 1px 0px 1px"),this.n.rootWrapper.setStyleProperty("border-style","solid"),this.n.rootWrapper.setStyleProperty("box-sizing","border-box"),this.n.rootWrapper.setStyleProperty("border-color","rgba(0, 0, 0, 0.2)"),this.n.rootWrapper.setStyleProperty("border-radius","3px 3px 0px 0px"),this.n.rootWrapper.setStyleProperty("background-color",this.e.bh._fill),this.y()}else this.n=null},e.prototype.an=function(){null!=this.n&&(1==this.e.o?this.n.rootWrapper.setStyleProperty("border-width","0px 0px 1px 0px"):this.n.rootWrapper.setStyleProperty("border-width","1px 1px 0px 1px"))},e.prototype.ao=function(){if(null!=this.n)switch(this.e.i){case 1:this.n.rootWrapper.setStyleProperty("height","52px"),this.r.setStyleProperty("height","52px");break;case 2:this.n.rootWrapper.setStyleProperty("height","46px"),this.r.setStyleProperty("height","46px");break;case 4:case 3:this.n.rootWrapper.setStyleProperty("height","44px"),this.r.setStyleProperty("height","44px");break;case 0:this.n.rootWrapper.setStyleProperty("height","46px"),this.r.setStyleProperty("height","46px")}},e.prototype.y=function(){if(null!=this.n){this.r=this.n.rootWrapper.getChildAt(0),this.r.setStyleProperty("width","100%"),this.ao(),this.r.setStyleProperty("display","flex"),this.r.setStyleProperty("align-items","center"),this.r.setStyleProperty("flex-direction","row"),this.s=this.n.createElement("div"),this.e.ar(this.s),this.s.setStyleProperty("height","18px"),this.s.setStyleProperty("width","18px"),this.s.setStyleProperty("margin-right","5px"),this.s.setStyleProperty("color",this.e.bi.color.colorString),this.r.append(this.s),this.g.add(this.s),this.t=this.n.createElement("span"),this.aq(),this.ar(),this.r.append(this.t);var t=this.n.createElement("div");t.setStyleProperty("display","flex"),t.setStyleProperty("flex-direction","row"),t.setStyleProperty("align-items","center"),this.r.append(t),this.p=this.n.createElement("ul"),this.p.setStyleProperty("list-style-type","none"),this.p.setStyleProperty("margin-top","2px"),this.p.setStyleProperty("margin-bottom","2px"),this.p.setStyleProperty("padding-left","10px"),this.p.setStyleProperty("display","flex"),t.append(this.p),this.ac()}},e.prototype.ar=function(){null!=this.t&&this.t.setText(this.e.al)},e.prototype.aq=function(){null!=this.t&&(null!=this.e.k?this.t.setStyleProperty("font",this.e.k.t):this.t.setStyleProperty("font","14px Verdana"))},e.prototype.ap=function(){if(null!=this.p)for(var t=this.i.count,e=0;e<t;e++){this.i._inner[e].setStyleProperty("font",this.e.k.t)}},e.prototype.as=function(){return null!=this.n?this.n.rootWrapper.getNativeElement().getBoundingClientRect():null},e.prototype.ac=function(){if(null!=this.n&&null!=this.e.targetGrid&&null!=this.r){this.p.removeChildren();var t=this.e.p(),e=t.count;e>0?this.t.hide():this.t.show(),this.e.ap(),this.i.clear(),this.g.clear(),this.h.clear(),this.g.add(this.s);for(var i=0;i<e;i++){if(i>0&&i<e){var r=this.n.createElement("li");r.setStyleProperty("padding","2px"),r.setStyleProperty("margin","2px"),r.setStyleProperty("height","18px"),r.setStyleProperty("display","flex"),this.p.append(r),r.setAttribute("data-field","NextMarker");var o=this.n.createElement("div");o.listen("click",n.runOn(this,this.x)),this.e.as(o),o.setStyleProperty("height","18px"),o.setStyleProperty("width","18px"),o.setStyleProperty("color",this.e.bi.color.colorString),r.append(o),this.g.add(o)}var a=this.n.createElement("li");a.listen("mouseover",n.runOn(this,this.ae)),a.listen("mouseout",n.runOn(this,this.ad)),a.setStyleProperty("background-color",this.e.bj.color.colorString),a.setStyleProperty("border-radius","3px 3px 3px 3px"),a.setStyleProperty("padding","2px 5px 2px 5px"),a.setStyleProperty("margin","2px"),a.setStyleProperty("height","18px"),a.setStyleProperty("display","flex"),a.setStyleProperty("align-items","center"),a.listen("click",n.runOn(this,this.af)),this.p.append(a),this.h.add(a),a.setAttribute("data-field",t._inner[i].b.toString());var s=this.n.createElement("span");null!=this.e.k?s.setStyleProperty("font",this.e.k.t):s.setStyleProperty("font","14px Verdana"),s.setStyleProperty("user-select","none"),s.setStyleProperty("color",this.e.bl.color.colorString),s.setAttribute("data-field",t._inner[i].b.toString()),s.setText(t._inner[i].c.toString()),a.append(s),this.i.add(s);var l=this.n.createElement("div"),u=!0;1==t._inner[i].a&&(u=!1),this.e.at(l,u),l.setStyleProperty("height","18px"),l.setStyleProperty("width","18px"),l.setStyleProperty("color",this.e.bi.color.colorString),a.append(l),this.g.add(l);var c=this.n.createElement("div");c.listen("click",n.runOn(this,this.x)),this.e.aq(c),c.setStyleProperty("height","18px"),c.setStyleProperty("width","18px"),c.setStyleProperty("color",this.e.bi.color.colorString),a.append(c),this.g.add(c)}}},e.prototype.am=function(t,e){if(null!=this.n){var n=this.n.getSubRenderer(e);t.provideContainer(n)}},e.prototype.x=function(t){var e=t.originalEvent.currentTarget.parentElement.getAttribute("data-field").toString();this.e.a1(e)},e.prototype.af=function(t){var e=t.originalEvent.currentTarget.getAttribute("data-field").toString();this.e.ao(e)},e.prototype.z=function(t){this.aj(t)},e.prototype.aa=function(t,e,n){this.ak(t)},e.prototype.ab=function(t){this.al(t)},e.prototype.aj=function(t){for(var e=this.h.count,n=0;n<e;n++){var i=this.h._inner[n].getNativeElement(),r=i.offsetLeft,o=r+i.offsetWidth,a=i.offsetTop,s=i.offsetTop+i.offsetHeight;if(t.x>r&&t.x<o&&t.y>a&&t.y<s){this.q=this.h._inner[n];break}}},e.prototype.ak=function(t){if(null!=this.q&&0==this.f&&(this.f=!0,this.q=this.q.clone(),this.q.setStyleProperty("position","absolute"),this.q.setStyleProperty("z-index","12000"),this.m=this.q.getNativeElement(),document.documentElement.appendChild(this.m)),1==this.f){this.m.style.cursor="grabbing";var e=this.as(),i=e.left-n.NativeUI.k(this.q)/2,r=e.top-n.NativeUI.d(this.q)/2,o=this.c();r+=o[0],i+=o[1],n.NativeUI.v(this.q,t.x+i),n.NativeUI.ae(this.q,t.y+r)}},e.prototype.al=function(t){if(1==this.f){var e=this.as(),n=e.width,i=e.height;if(t.x>0&&t.x<n&&t.y>0&&t.y<i){for(var r=-1,o=-1,a=this.h.count,s=0;s<a;s++){var l=this.h._inner[s].getChildAt(0).getNativeElement(),u=l.offsetLeft+l.offsetWidth;l.innerText!=this.m.innerText?t.x>u?r=s:0==s&&t.x<u&&(r=-2):(o=s,-1==r&&(r=s))}if(-1==r)r=a-1;else if(-2==r)r=0;else if(o>r){var c=this.h._inner[r].getChildAt(0).getNativeElement(),h=c.offsetLeft+c.offsetWidth;t.x>h&&(r+=1)}var p=this.m.getAttribute("data-field").toString();this.e.a2(p,r)}null!=this.q&&(this.f=!1,this.m.style.cursor="pointer",this.q.remove(),this.q=null)}this.q=null},e.prototype.ae=function(t){for(var e=t.originalEvent.target,n=this.h.count,i=0;i<n;i++){if(this.h._inner[i].getNativeElement().contains(e)){this.h._inner[i].setStyleProperty("background-color",this.e.bk.color.colorString);break}}},e.prototype.ad=function(t){for(var e=t.originalEvent.target,n=this.h.count,i=0;i<n;i++){if(this.h._inner[i].getNativeElement().contains(e)){this.h._inner[i].setStyleProperty("background-color",this.e.bj.color.colorString);break}}},e.prototype.a=function(){var t=this.o.rootWrapper.getNativeElement().getBoundingClientRect(),e=t.top,n=t.left,i=new Array(2);return i[0]=e,i[1]=n,i},e.prototype.b=function(t){var e=t.getNativeElement().getBoundingClientRect(),n=e.top,i=e.left,r=new Array(2);return r[0]=n,r[1]=i,r},e.prototype.c=function(){var t=window.pageYOffset,e=window.pageXOffset,n=new Array(2);return n[0]=t,n[1]=e,n},e.prototype.ag=function(){},e.$t=n.markType(e,"ColumnGroupingView"),e}(n.Base),Rl=function(t){function e(){var e=t.call(this)||this;e.b=null,e.propertyChanged=null,e.q=null,e.e=null,e.r=0,e.s=0,e.t=0,e.u=0,e.l=null,e.o=!1,e.c=null,e.f=1,e.h=2,e.w="Drag a Column Here",e.bg=n.BrushUtil.j(158,0,0,0),e.j=null,e.bf=n.BrushUtil.j(158,0,0,0),e.bc=n.BrushUtil.j(158,0,0,0),e.bd=n.BrushUtil.j(30,0,0,0),e.be=n.BrushUtil.j(66,0,0,0),e.bb=n.BrushUtil.j(255,248,248,248),e.v=0,e.n=!1,e.q=new n.ObservableCollection$1(r.XIcon.$,0);var i=new Tl;return i.e=e,e.b=i,e.b.ai(),e}return i.__extends(e,t),e.prototype.notifySizeChanged=function(){this.b.ag()},e.prototype.destroy=function(){if(this.provideContainer(null),null!=this.targetGrid){var t=this.targetGrid;t.groupDescriptionsChanged=n.delegateRemove(t.groupDescriptionsChanged,n.runOn(this,this.a7));var e=this.targetGrid;e.actualColumnsChanged=n.delegateRemove(e.actualColumnsChanged,n.runOn(this,this.a6));var i=this.targetGrid.dragger;i.onDrag=n.delegateRemove(i.onDrag,n.runOn(this,this.av));var r=this.targetGrid.dragger;r.onDragEnd=n.delegateRemove(r.onDragEnd,n.runOn(this,this.aw))}},e.prototype.provideContainer=function(t){this.b.ah(t)},Object.defineProperty(e.prototype,"m",{get:function(){return null==this.l&&(this.l=new n.SRProvider(this.b.o),this.l.cb("ColumnGrouping")),this.l},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"targetGrid",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,e!=this.c&&this.ay("TargetGrid",e,this.c)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,e!=this.f&&this.ay("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,this.f))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.ay("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.h))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"al",{get:function(){return this.w},set:function(t){var e=this.w;this.w=t,e!=this.w&&this.ay("Title",e,this.w)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bm",{get:function(){return this.bg},set:function(t){var e=this.bg;this.bg=t,e!=this.bg&&this.ay("TitleColor",e,this.bg)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"k",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,e!=this.j&&this.ay("TextStyle",e,this.j)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bl",{get:function(){return this.bf},set:function(t){var e=this.bf;this.bf=t,e!=this.bf&&this.ay("TextColor",e,this.bf)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bi",{get:function(){return this.bc},set:function(t){var e=this.bc;this.bc=t,e!=this.bc&&this.ay("IconColor",e,this.bc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bj",{get:function(){return this.bd},set:function(t){var e=this.bd;this.bd=t,e!=this.bd&&this.ay("ItemBackgroundColor",e,this.bd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bk",{get:function(){return this.be},set:function(t){var e=this.be;this.be=t,e!=this.be&&this.ay("ItemHoverBackgroundColor",e,this.be)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bh",{get:function(){return this.bb},set:function(t){var e=this.bb;this.bb=t,e!=this.bb&&this.ay("BackgroundColor",e,this.bb)},enumerable:!1,configurable:!0}),e.prototype.ay=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.az(t,e,i)},e.prototype.az=function(t,e,i){switch(t){case"TargetGrid":this.a5();break;case"BaseTheme":this.a4();break;case"Density":this.a3();break;case"Title":this.a9();break;case"TitleColor":this.ba();break;case"TextStyle":this.b.ap(),this.b.aq();break;case"TextColor":case"IconColor":case"ItemBackgroundColor":this.a8();break;case"ItemHoverBackgroundColor":break;case"BackgroundColor":n.NativeUI.m(this.b.u,this.bh)}},e.prototype.a4=function(){},e.prototype.ba=function(){var t=this.b.w;null!=this.bm&&n.NativeUI.q(t,this.bm)},e.prototype.a9=function(){n.stringIsNullOrWhiteSpace(this.al)&&(this.al=n.stringIsNullOrWhiteSpace(this.m.b1("Title"))?"Drag a Column Here":this.m.b1("Title")),this.b.ar()},e.prototype.a8=function(){for(var t=this.b.l,e=this.b.j,i=this.b.k,r=0;r<t.count;r++)n.NativeUI.q(t._inner[r],this.bl);for(var o=0;o<e.count;o++)n.NativeUI.q(e._inner[o],this.bi);for(var a=0;a<i.count;a++)n.NativeUI.m(i._inner[a],this.bj)},e.prototype.a3=function(){0==this.i&&null!=this.targetGrid&&(this.i=this.targetGrid.density),this.b.ao()},e.prototype.a5=function(){if(null!=this.targetGrid){this.a9(),this.targetGrid.isGroupByAreaVisible&&(this.o=!0),this.b.an();var t=this.targetGrid;t.groupDescriptionsChanged=n.delegateCombine(t.groupDescriptionsChanged,n.runOn(this,this.a7));var e=this.targetGrid;if(e.actualColumnsChanged=n.delegateCombine(e.actualColumnsChanged,n.runOn(this,this.a6)),null!=this.targetGrid.dragger){var i=this.targetGrid.dragger;i.onDrag=n.delegateCombine(i.onDrag,n.runOn(this,this.av));var r=this.targetGrid.dragger;r.onDragEnd=n.delegateCombine(r.onDragEnd,n.runOn(this,this.aw))}this.b.ac()}},e.prototype.p=function(){var t=new n.List$1(Pl.$,0);if(null!=this.targetGrid)for(var e=this.targetGrid.actualColumns,i=this.targetGrid.groupDescriptions.j,r=function(r){var o=new Pl,a=e.i((function(t){return t.lo==i.item(r).f}));-1!=a?(n.stringIsNullOrEmpty(e._inner[a].lv)?o.c=i.item(r).f:o.c=e._inner[a].lv,o.b=i.item(r).f,o.a=i.item(r).c,t.add(o)):(o.c=i.item(r).f,o.b=i.item(r).f,o.a=i.item(r).c,t.add(o))},o=0;o<i.count;o++)r(o);return t},e.prototype.aw=function(t,e){if(2==this.targetGrid.dragger.dragType){var i=this.b.as(),r=-1*i.height,o=i.right-i.left;if(this.t>0&&this.t<o&&this.u>r&&this.u<0){var a=t,s=this.targetGrid.actualColumns._inner[a.cellPath.a5],l=new kt(0);l.f=s.lo,l.c=1;var u=this.targetGrid.groupDescriptions.j.contains(l);if(l.c=0,0==this.targetGrid.groupDescriptions.j.contains(l)&&0==u){for(var c=this.b.l,h=c.count,p=!1,d=0;d<h;d++){var f=this.b.b(c._inner[d]),m=n.NativeUI.k(c._inner[d]),g=f[1]-i.left+m;if(this.t<g){this.targetGrid.groupDescriptions.o(d,l),p=!0;break}}0==p&&this.targetGrid.groupDescriptions.g(l)}t.cancel()}}},e.prototype.av=function(t,e){null!=this.targetGrid.dragger&&(this.r=e.startX,this.s=e.startY,this.t=e.currentX,this.u=e.currentY,this.u<0?0==this.n&&(this.v=this.targetGrid.columnMovingSeparatorOpacity,this.targetGrid.columnMovingSeparatorOpacity=0,this.n=!0):1==this.n&&(this.targetGrid.columnMovingSeparatorOpacity=this.v,this.n=!1))},e.prototype.at=function(t,i){var o=new r.XIcon;this.b.am(o,t),o.svgPath=i?e.x:e.ac,o.fill=n.BrushUtil.j(255,119,119,119),this.q.add(o)},e.prototype.aq=function(t){var i=new r.XIcon;this.b.am(i,t),i.svgPath=e.aa,i.fill=n.BrushUtil.j(255,119,119,119),this.q.add(i)},e.prototype.as=function(t){var i=new r.XIcon;this.b.am(i,t),i.svgPath=e.ah,i.fill=n.BrushUtil.j(255,119,119,119),this.q.add(i)},e.prototype.ar=function(t){var i=new r.XIcon;this.b.am(i,t),i.svgPath=e.ad,i.fill=n.BrushUtil.j(255,119,119,119),this.e=i,this.q.add(this.e)},e.prototype.ap=function(){this.q.clear(),null!=this.e&&this.q.add(this.e)},e.prototype.ao=function(t){for(var e=this.targetGrid.groupDescriptions.j.count,n=0;n<e;n++){var i=this.targetGrid.groupDescriptions.j.item(n);if(i.f==t){this.targetGrid.groupDescriptions.d(n),0==i.c?i.c=1:i.c=0,this.targetGrid.groupDescriptions.o(n,i);break}}},e.prototype.a1=function(t){for(var e=this.targetGrid.groupDescriptions.j.count,n=0;n<e;n++){if(this.targetGrid.groupDescriptions.j.item(n).f==t){this.targetGrid.groupDescriptions.d(n);break}}},e.prototype.a2=function(t,e){for(var n=this.targetGrid.groupDescriptions.j.count,i=null,r=0;r<n;r++)if(this.targetGrid.groupDescriptions.j.item(r).f==t){i=this.targetGrid.groupDescriptions.j.item(r),this.targetGrid.groupDescriptions.d(r);break}this.targetGrid.groupDescriptions.j.insert(e,i)},e.prototype.a7=function(t,e){this.b.ac()},e.prototype.a6=function(t,e){this.b.ac()},e.prototype.exportVisualModel=function(){return this.a()},e.prototype.exportSerializedVisualModel=function(){return this.a().serialize()},e.prototype.a=function(){var t=new jl,e=this.b.v;t.d=new n.List$1(r.IconVisualModelExport.$,0),t.c=new n.List$1(kl.$,0),t.b=this.i,t.a=this.g;var i=this.b.a(),o=i[0],a=i[1];t.h=o,t.f=a,t.e=n.NativeUI.d(e),t.i=n.NativeUI.k(e);for(var s=this.b.l,l=0;l<s.count;l++){var u=new kl,c=this.b.b(s._inner[l]);u.e=c[0]-o,u.d=c[1]-a,u.c=n.NativeUI.d(s._inner[l]),u.f=n.NativeUI.k(s._inner[l]),u.b=n.AppearanceHelper.a(n.NativeUI.al(s._inner[l])),u.g=s._inner[l].getText(),t.c.add(u)}for(var h=this.b.j,p=0;p<h.count;p++){var d=this.q._inner[p].a0(),f=this.b.b(h._inner[p]);d.i=f[0]-o,d.g=f[1]-a,d.f=n.NativeUI.d(h._inner[p]),d.j=n.NativeUI.k(h._inner[p]),t.d.add(d)}if(null!=this.k){var m=this.k;if(null!=this.b&&null==m.q){var g=this.b.o,y=n.FontUtil.getFontInfoFromString(g,m.fontString);m.q=y.q,m.f=y.f,m.r=y.r,m.t=y.t,m.u=y.u,m.v=y.v}null!=m.q&&(t.j=m.q),n.isNaN_(m.f)||(t.g=m.f),null!=m.v&&(t.n=m.v),null!=m.t&&(t.l=m.t),null!=m.r&&(t.k=m.t)}return t},e.$t=n.markType(e,"ColumnGrouping",n.Base.$,[Ol,n.INotifyPropertyChanged_$type]),e.x="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",e.ac="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",e.aa="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z",e.ah="M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z",e.ad="M9,19v-2h11v2H9z M9,15v-2h11v2H9z M9,11V9h11v2H9z M7,7V5h13v2H7z M4,5h2v2H4V5z",e}(n.Base),Dl=function(){function t(t,e,i,r,o,a){var s=this;this._ngrenderer=t,this._elRef=e,this._ngZone=i,this._componentFactoryResolver=r,this._changeDetector=o,this._injector=a,this.combinedColumns=[],this._columns=null,this._disableManualColumnSync=!1,this._columnsAdapter=null,this._scroller=null,this._dragger=null,this._renderer=null,this._grid=null,this.containerResized=function(){var t=this._container.clientWidth,e=this._container.clientHeight;this._scroller.viewportWidth=t,this._scroller.viewportHeight=e,this._grid.dragger.viewportWidth=t,this._grid.dragger.viewportHeight=e,this._grid.onSizeChanged(t,e),this._grid.model.actualVisibleRegion.isEmpty&&t>0&&e>0?this._grid.setViewport(0,0,t,e):this.onScroll()},this._dataSource=null,this._insetLeft=0,this._insetTop=0,this._insetRight=0,this._insetBottom=0,this._isGroupByAreaVisible=!1,this._selectedItems=null,this._selectedKeys=null,this._selectedCells=null,this._selectedCellRanges=null,this._pinnedItems=null,this._pinnedKeys=null,this._responsiveStates=null,this._actualColumns=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._filterExpressionsChanging=null,this._filterExpressionsChanged=null,this._cellPreviewPointerDown=null,this._cellPreviewPointerUp=null,this._cellPointerDown=null,this._cellPointerUp=null,this._cellClicked=null,this._sortDescriptionsChanged=null,this._groupDescriptionsChanged=null,this._summaryDescriptionsChanged=null,this._columnHiddenChanged=null,this._columnPinnedChanged=null,this._cellValueChanging=null,this._dataCommitted=null,this._dataCommitting=null,this._rootSummariesChanged=null,this._sizeChanged=null,this._actualColumnsChanged=null,this._columnsAutoGenerated=null,this._selectedItemsChanged=null,this._selectedKeysChanged=null,this._selectedCellsChanged=null,this._selectionChanged=null,this._activeCellChanged=null,this._selectedCellRangesChanged=null,this._columnWidthChanged=null,this._cellEditStarted=null,this._cellEditEnded=null,this._rowEditStarted=null,this._rowEditEnded=null,this._customFilterRequested=null,this._actualPrimaryKeyChange=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));var l;this._zoneRunner=function(t){return s._ngZone.run(t)},this._container=t.createElement("div"),t.appendChild(e.element.nativeElement,this._container),t.setStyle(this._container,"display","block"),t.setStyle(this._container,"width","100%"),t.setStyle(this._container,"height","100%"),t.setStyle(this._container,"box-sizing","border-box"),l=this._container,null!=this._container.nativeElement&&(l=this._container.nativeElement),this._portalManager=new n.PortalManager("filterDialog",r),this._portalManager.detectChanges=function(){s._changeDetector.detectChanges()};var u=new n.AngularRenderer(l,this._ngrenderer,window.document,this._ngZone,!0,Us,this._portalManager);this._renderer=u,this._implementation=new si;var c=this.i;this._grid=c,this._grid.externalObject=this,this._columnsAdapter=new n.CollectionAdapter([],this.i.columns,this.combinedColumns,(function(t){return t.i}),(function(t){t._provideRenderer(s._renderer),s._elRef&&s._elRef.element.nativeElement.parentElement&&t._styling(s._elRef.element.nativeElement,s,s)}),(function(t){t._provideRenderer(null)})),c.externalGrid=new Yo(this),c.tickProvider=new Qo(u),c.platformPixelConverter=new Jo,this._contentLayout=new Zo(u,new Es(this._grid,!1),window.devicePixelRatio),c.renderingEngine=this._contentLayout,c.viewportManager=new Vs(this),c.delayedExecutionManager=new Fs(u),c.propertySetter=new zs;var h=new n.Scroller;if(this._scroller=h,h.scrollbarStyle=this.scrollbarStyle,h.provideContainer(u),this._content=this._contentLayout.element.getNativeElement(),h.keyboardListener=new ll(c),h.provideContent(new n.AngularWrapper(this._content,this._ngrenderer,this._ngZone)),h.onScrolling=function(){return s.onScroll()},h.onScrollStart=function(){return s.onScrollStart()},h.onScrollStop=function(){return s.onScrollStop()},h.viewportWidth=this._container.clientWidth,h.viewportHeight=this._container.clientHeight,h.verticalTrackStartInset=this.actualHeaderHeight,c.dragger=new Ws,c.dragger.provideContainer(u),c.dragger.viewportWidth=this._container.clientWidth,c.dragger.viewportHeight=this._container.clientHeight,1==this._isGroupByAreaVisible){var p=this._ngrenderer.createElement("div"),d=this._ngrenderer.createElement("div");p.append(d),p.setStyleProperty("width","100%");var f=this._renderer.getSubRenderer(p);this._container.append(f.rootWrapper.getNativeElement());var m=new Rl;m.targetGrid=this._grid,m.provideContainer(f),this.i.columnGrouping=m}u.addSizeWatcher((function(){s.containerResized()})),this.i.syncBorder()}return t.prototype._ensureColumnsAreManual=function(){this._disableManualColumnSync=!0,this._columnsAdapter.shiftContentToManual(this.columns,(function(t){return t.isFromMarkup=!1})),this._disableManualColumnSync=!1},Object.defineProperty(t.prototype,"columns",{get:function(){var t=this;if(null===this._columns){var e=new Po;e._innerColl.addListener((function(e,i){if(!t._disableManualColumnSync)switch(i.action){case n.NotifyCollectionChangedAction.Add:t._columnsAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Remove:t._columnsAdapter.removeManualItemAt(i.oldStartingIndex);break;case n.NotifyCollectionChangedAction.Replace:t._columnsAdapter.removeManualItemAt(i.oldStartingIndex),t._columnsAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Reset:t._columnsAdapter.clearManualItems()}})),this._columns=e}return this._columns},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this._ngrenderer.setStyle(this._elRef.element.nativeElement,"height",t),this.containerResized()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this._ngrenderer.setStyle(this._elRef.element.nativeElement,"width",t),this.containerResized()},enumerable:!1,configurable:!0}),t.prototype._setScrollbarStyle=function(t){this._scroller&&(this._scroller.scrollbarStyle=t)},t.prototype._setScrollbarColor=function(t){this._scroller&&(this._scroller.scrollbarBrush=t)},t.prototype.createImplementation=function(){return new si},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._focusScroller=function(){this._scroller.focus()},t.prototype._setDefaultCursor=function(){""!==this._elRef.element.nativeElement.style.cursor&&(this._elRef.element.nativeElement.style.cursor="")},t.prototype._setResizeCursor=function(){"col-resize"!==this._elRef.element.nativeElement.style.cursor&&(this._elRef.element.nativeElement.style.cursor="col-resize")},t.prototype._setHandCursor=function(){"grabbing"!==this._elRef.element.nativeElement.style.cursor&&(this._elRef.element.nativeElement.style.cursor="grabbing")},t.prototype._setBorder=function(t,e,n,i,r,o,a,s,l){this._elRef&&(0!==e||0!==n||0!==i||0!==r?(this._elRef.element.nativeElement.style.borderStyle="solid",this._elRef.element.nativeElement.style.borderColor=t,this._elRef.element.nativeElement.style.borderTopWidth=n+"px",this._elRef.element.nativeElement.style.borderRightWidth=i+"px",this._elRef.element.nativeElement.style.borderBottomWidth=r+"px",this._elRef.element.nativeElement.style.borderLeftWidth=e+"px",this._elRef.element.nativeElement.style.borderTopLeftRadius=o+"px",this._elRef.element.nativeElement.style.borderTopRightRadius=a+"px",this._elRef.element.nativeElement.style.borderBottomLeftRadius=s+"px",this._elRef.element.nativeElement.style.borderBottomRightRadius=l+"px"):this._elRef.element.nativeElement.style.borderStyle="none")},t.prototype._setScrollerVerticalTrackInset=function(t){this._scroller.verticalTrackStartInset=t},t.prototype._insertExternalColumnAtIndex=function(t,e){var n=this._columnsAdapter.actualContent.length;this.columns.insert(t-n,e)},t.prototype._removeExternalColumn=function(t){for(var e=-1,n=0;n<this.columns.count;n++)if(this.columns.item(n)===t){e=n;break}e>=0&&this.columns.removeAt(e)},t.prototype.ngAfterContentInit=function(){var t=this._grid.columnPropertyUpdatingAnimationMode;this._grid.columnPropertyUpdatingAnimationMode=Wt.None,this._styling(this._elRef.element.nativeElement,this),this._grid.columnPropertyUpdatingAnimationMode=t,this._columnsAdapter.updateQuery(this.contentColumns),t=this._grid.columnPropertyUpdatingAnimationMode,this._grid.columnPropertyUpdatingAnimationMode=Wt.None;for(var e=0;e<this.actualColumns.count;e++){this.actualColumns.item(e)._styling(this._elRef.element.nativeElement,this,this)}this._grid.columnPropertyUpdatingAnimationMode=t,this._grid.itemsSource=this._dataSource},t.prototype.ngAfterViewInit=function(){this._portalManager.dynamicContent=this._dynamicContent},t.prototype.ngOnDestroy=function(){this.i&&(this._scroller&&this._scroller.onDetachedFromUI(),this._grid.dragger&&this._grid.dragger.onDetachedFromUI(),this._grid.renderingEngine&&this._grid.renderingEngine.detach())},Object.defineProperty(t.prototype,"actualDataSource",{get:function(){return this.i.actualDataSource},enumerable:!1,configurable:!0}),t.prototype.refreshContentSize=function(){if(null!=this._content){var t=this._grid.model.absoluteWidth,e=this._grid.model.absoluteHeight;null!=this._scroller&&(this._scroller.contentWidth=t,this._scroller.contentHeight=e)}},t.prototype.onScroll=function(){var t=this._scroller.scrollTop,e=this._scroller.scrollLeft,n=this._scroller.viewportWidth,i=this._scroller.viewportHeight;this._grid.setViewport(e,t,e+n,t+i)},t.prototype.onScrollStart=function(){this._grid.notifyScrollStart()},t.prototype.onScrollStop=function(){this._grid.notifyScrollStop()},t.prototype.scrollTo=function(t,e){this._scroller.scrollTo(t,e)},Object.defineProperty(t.prototype,"dataSource",{get:function(){return this._dataSource},set:function(t){this._dataSource=t,null!=this._grid&&(this._grid.itemsSource=this._dataSource)},enumerable:!1,configurable:!0}),t.prototype.forColumnsWithPropertyPath=function(t,e){for(var n=0;n<this.i.actualColumns.count;n++){var i=this.i.actualColumns.item(n).externalObject;i.field==t&&e(i)}},Object.defineProperty(t.prototype,"defaultColumnWidth",{get:function(){var t=this.i.defaultColumnWidth.externalObject;return t||((t=new yo)._implementation=this.i.defaultColumnWidth),t},set:function(t){if("string"==typeof t){var e=Ft.parse(t),n=new yo;n._implementation=e,t=n}this.i.defaultColumnWidth=t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"insetLeft",{get:function(){return this._insetLeft},set:function(t){this._insetLeft=+t;var e=new n.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"insetTop",{get:function(){return this._insetTop},set:function(t){this._insetTop=+t;var e=new n.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"insetRight",{get:function(){return this._insetLeft},set:function(t){this._insetRight=+t;var e=new n.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"insetBottom",{get:function(){return this._insetBottom},set:function(t){this._insetBottom=+t;var e=new n.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isGroupByAreaVisible",{get:function(){return this._isGroupByAreaVisible},set:function(t){this._isGroupByAreaVisible=n.ensureBool(t),this.i.isGroupByAreaVisible=this._isGroupByAreaVisible},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnResizingMode",{get:function(){return this.i.columnResizingMode},set:function(t){this.i.columnResizingMode=n.ensureEnum(At,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnMovingMode",{get:function(){return this.i.columnMovingMode},set:function(t){this.i.columnMovingMode=n.ensureEnum(Nt,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isRowHoverEnabled",{get:function(){return this.i.isRowHoverEnabled},set:function(t){this.i.isRowHoverEnabled=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowHoverBackground",{get:function(){return n.brushToString(this.i.rowHoverBackground)},set:function(t){this.i.rowHoverBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowHoverTextColor",{get:function(){return n.brushToString(this.i.rowHoverTextColor)},set:function(t){this.i.rowHoverTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editRowBorder",{get:function(){return n.brushToString(this.i.editRowBorder)},set:function(t){this.i.editRowBorder=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editRowBorderWidthBottom",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.bottom:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.bottom=+t,this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editRowBorderWidthLeft",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.left:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.left=+t,this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editRowBorderWidthRight",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.right:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.right=+t,this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editRowBorderWidthTop",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.top:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.top=+t,this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),t.prototype.ensureEditRowBorderWidth=function(){this.i.editRowBorderWidth||(this.i.editRowBorderWidth=new n.Thickness(2))},Object.defineProperty(t.prototype,"sectionHeader",{get:function(){var t=this.i.sectionHeader;if(null==t)return null;if(!t.externalObject){var e=po._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.sectionHeader=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRowRoot",{get:function(){var t=this.i.summaryRowRoot;if(null==t)return null;if(!t.externalObject){var e=mo._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.summaryRowRoot=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRowSection",{get:function(){var t=this.i.summaryRowSection;if(null==t)return null;if(!t.externalObject){var e=go._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.summaryRowSection=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSeparator",{get:function(){var t=this.i.rowSeparator;if(null==t)return null;if(!t.externalObject){var e=il._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.rowSeparator=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerRowSeparator",{get:function(){var t=this.i.headerRowSeparator;if(null==t)return null;if(!t.externalObject){var e=rl._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.headerRowSeparator=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerSeparator",{get:function(){var t=this.i.headerSeparator;if(null==t)return null;if(!t.externalObject){var e=ul._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.headerSeparator=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnResizingSeparator",{get:function(){var t=this.i.columnResizingSeparator;if(null==t)return null;if(!t.externalObject){var e=cl._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.columnResizingSeparator=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnMovingSeparator",{get:function(){var t=this.i.columnMovingSeparator;if(null==t)return null;if(!t.externalObject){var e=hl._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.columnMovingSeparator=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedAreaSeparator",{get:function(){var t=this.i.pinnedAreaSeparator;if(null==t)return null;if(!t.externalObject){var e=pl._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.pinnedAreaSeparator=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"autoGenerateDesiredProperties",{get:function(){return this.i.autoGenerateDesiredProperties},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.autoGenerateDesiredProperties=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataSourceDesiredProperties",{get:function(){return this.i.dataSourceDesiredProperties},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.dataSourceDesiredProperties=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualRowHeight",{get:function(){return this.i.actualRowHeight},set:function(t){this.i.actualRowHeight=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowHeight",{get:function(){return this.i.rowHeight},set:function(t){this.i.rowHeight=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"defaultColumnMinWidth",{get:function(){return this.i.defaultColumnMinWidth},set:function(t){this.i.defaultColumnMinWidth=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualHeaderHeight",{get:function(){return this.i.actualHeaderHeight},set:function(t){this.i.actualHeaderHeight=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerHeight",{get:function(){return this.i.headerHeight},set:function(t){this.i.headerHeight=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerClickAction",{get:function(){return this.i.headerClickAction},set:function(t){this.i.headerClickAction=n.ensureEnum(zt,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editMode",{get:function(){return this.i.editMode},set:function(t){this.i.editMode=n.ensureEnum(C,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editModeClickAction",{get:function(){return this.i.editModeClickAction},set:function(t){this.i.editModeClickAction=n.ensureEnum(Lt,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editOnKeyPress",{get:function(){return this.i.editOnKeyPress},set:function(t){this.i.editOnKeyPress=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"autoGenerateColumns",{get:function(){return this.i.autoGenerateColumns},set:function(t){this.i.autoGenerateColumns=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSeparatorHeight",{get:function(){return this.i.rowSeparatorHeight},set:function(t){this.i.rowSeparatorHeight=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isPlaceholderRenderingEnabled",{get:function(){return this.i.isPlaceholderRenderingEnabled},set:function(t){this.i.isPlaceholderRenderingEnabled=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnAddingAnimationMode",{get:function(){return this.i.columnAddingAnimationMode},set:function(t){this.i.columnAddingAnimationMode=n.ensureEnum(Ht,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnPropertyUpdatingAnimationMode",{get:function(){return this.i.columnPropertyUpdatingAnimationMode},set:function(t){this.i.columnPropertyUpdatingAnimationMode=n.ensureEnum(Ut,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellDataLoadedAnimationMode",{get:function(){return this.i.cellDataLoadedAnimationMode},set:function(t){this.i.cellDataLoadedAnimationMode=n.ensureEnum(Xt,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSelectionAnimationMode",{get:function(){return this.i.rowSelectionAnimationMode},set:function(t){this.i.rowSelectionAnimationMode=n.ensureEnum(Yt,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowHoverAnimationMode",{get:function(){return this.i.rowHoverAnimationMode},set:function(t){this.i.rowHoverAnimationMode=n.ensureEnum(Jt,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellSelectionAnimationMode",{get:function(){return this.i.cellSelectionAnimationMode},set:function(t){this.i.cellSelectionAnimationMode=n.ensureEnum(ee,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"animationSettings",{get:function(){var t=this.i.animationSettings;if(null==t)return null;if(!t.externalObject){var e=new nl;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.animationSettings=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnResizingAnimationMode",{get:function(){return this.i.columnResizingAnimationMode},set:function(t){this.i.columnResizingAnimationMode=n.ensureEnum(le,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnShowingAnimationMode",{get:function(){return this.i.columnShowingAnimationMode},set:function(t){this.i.columnShowingAnimationMode=n.ensureEnum(Ht,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnMovingAnimationMode",{get:function(){return this.i.columnMovingAnimationMode},set:function(t){this.i.columnMovingAnimationMode=n.ensureEnum(ce,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnHidingAnimationMode",{get:function(){return this.i.columnHidingAnimationMode},set:function(t){this.i.columnHidingAnimationMode=n.ensureEnum(pe,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnExchangingAnimationMode",{get:function(){return this.i.columnExchangingAnimationMode},set:function(t){this.i.columnExchangingAnimationMode=n.ensureEnum(fe,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectionMode",{get:function(){return this.i.selectionMode},set:function(t){this.i.selectionMode=n.ensureEnum(ge,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationMode",{get:function(){return this.i.activationMode},set:function(t){this.i.activationMode=n.ensureEnum(be,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectionBehavior",{get:function(){return this.i.selectionBehavior},set:function(t){this.i.selectionBehavior=n.ensureEnum(Ce,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"mouseDragSelectionEnabled",{get:function(){return this.i.mouseDragSelectionEnabled},set:function(t){this.i.mouseDragSelectionEnabled=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedItems",{get:function(){if(null===this._selectedItems){var t=new Io,e=this.i.selectedItems;e||(e=new xe),this._selectedItems=t._fromInner(e)}return this._selectedItems},set:function(t){null!==this._selectedItems&&(this._selectedItems._setSyncTarget(null),this._selectedItems=null);var e=new Io;this._selectedItems=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(n.Base.$type),r=this.i.selectedItems;r||(r=new xe),i._inner=r,i.clear(),this._selectedItems._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedKeys",{get:function(){if(null===this._selectedKeys){var t=new To,e=this.i.selectedKeys;e||(e=new c),this._selectedKeys=t._fromInner(e)}return this._selectedKeys},set:function(t){null!==this._selectedKeys&&(this._selectedKeys._setSyncTarget(null),this._selectedKeys=null);var e=new To;this._selectedKeys=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(s.$type),r=this.i.selectedKeys;r||(r=new c),i._inner=r,i.clear(),this._selectedKeys._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedCells",{get:function(){if(null===this._selectedCells){var t=new Bo,e=this.i.selectedCells;e||(e=new Pi),this._selectedCells=t._fromInner(e)}return this._selectedCells},set:function(t){null!==this._selectedCells&&(this._selectedCells._setSyncTarget(null),this._selectedCells=null);var e=new Bo;this._selectedCells=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Si.$type),r=this.i.selectedCells;r||(r=new Pi),i._inner=r,i.clear(),this._selectedCells._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedCellRanges",{get:function(){if(null===this._selectedCellRanges){var t=new Ao,e=this.i.selectedCellRanges;e||(e=new we),this._selectedCellRanges=t._fromInner(e)}return this._selectedCellRanges},set:function(t){null!==this._selectedCellRanges&&(this._selectedCellRanges._setSyncTarget(null),this._selectedCellRanges=null);var e=new Ao;this._selectedCellRanges=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(_e.$type),r=this.i.selectedCellRanges;r||(r=new we),i._inner=r,i.clear(),this._selectedCellRanges._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedItems",{get:function(){if(null===this._pinnedItems){var t=new Io,e=this.i.pinnedItems;e||(e=new xe),this._pinnedItems=t._fromInner(e)}return this._pinnedItems},set:function(t){null!==this._pinnedItems&&(this._pinnedItems._setSyncTarget(null),this._pinnedItems=null);var e=new Io;this._pinnedItems=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(n.Base.$type),r=this.i.pinnedItems;r||(r=new xe),i._inner=r,i.clear(),this._pinnedItems._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedKeys",{get:function(){if(null===this._pinnedKeys){var t=new To,e=this.i.pinnedKeys;e||(e=new c),this._pinnedKeys=t._fromInner(e)}return this._pinnedKeys},set:function(t){null!==this._pinnedKeys&&(this._pinnedKeys._setSyncTarget(null),this._pinnedKeys=null);var e=new To;this._pinnedKeys=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(s.$type),r=this.i.pinnedKeys;r||(r=new c),i._inner=r,i.clear(),this._pinnedKeys._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isColumnOptionsEnabled",{get:function(){return this.i.isColumnOptionsEnabled},set:function(t){this.i.isColumnOptionsEnabled=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isGroupRowSticky",{get:function(){return this.i.isGroupRowSticky},set:function(t){this.i.isGroupRowSticky=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isHeaderSeparatorVisible",{get:function(){return this.i.isHeaderSeparatorVisible},set:function(t){this.i.isHeaderSeparatorVisible=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellSelectedBackground",{get:function(){return n.brushToString(this.i.cellSelectedBackground)},set:function(t){this.i.cellSelectedBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sectionHeaderSelectedBackground",{get:function(){return n.brushToString(this.i.sectionHeaderSelectedBackground)},set:function(t){this.i.sectionHeaderSelectedBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRootBackground",{get:function(){return n.brushToString(this.i.summaryRootBackground)},set:function(t){this.i.summaryRootBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summarySectionBackground",{get:function(){return n.brushToString(this.i.summarySectionBackground)},set:function(t){this.i.summarySectionBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedRowOpacity",{get:function(){return this.i.pinnedRowOpacity},set:function(t){this.i.pinnedRowOpacity=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editTextStyle",{get:function(){return null==this.i.editTextStyle?null:this.i.editTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.editTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editOpacity",{get:function(){return this.i.editOpacity},set:function(t){this.i.editOpacity=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"deletedTextColor",{get:function(){return n.brushToString(this.i.deletedTextColor)},set:function(t){this.i.deletedTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stickyRowBackground",{get:function(){return n.brushToString(this.i.stickyRowBackground)},set:function(t){this.i.stickyRowBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedRowBackground",{get:function(){return n.brushToString(this.i.pinnedRowBackground)},set:function(t){this.i.pinnedRowBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastStickyRowBackground",{get:function(){return n.brushToString(this.i.lastStickyRowBackground)},set:function(t){this.i.lastStickyRowBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activeCell",{get:function(){var t=this.i.activeCell;if(null==t)return null;if(!t.externalObject){var e=new ol;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},set:function(t){this.i.activeCell=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellBackground",{get:function(){return n.brushToString(this.i.cellBackground)},set:function(t){this.i.cellBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellTextColor",{get:function(){return n.brushToString(this.i.cellTextColor)},set:function(t){this.i.cellTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerSortIndicatorColor",{get:function(){return n.brushToString(this.i.headerSortIndicatorColor)},set:function(t){this.i.headerSortIndicatorColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerSortIndicatorStyle",{get:function(){return this.i.headerSortIndicatorStyle},set:function(t){this.i.headerSortIndicatorStyle=n.ensureEnum(st,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellTextStyle",{get:function(){return null==this.i.cellTextStyle?null:this.i.cellTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.cellTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sectionHeaderBackground",{get:function(){return n.brushToString(this.i.sectionHeaderBackground)},set:function(t){this.i.sectionHeaderBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sectionHeaderTextColor",{get:function(){return n.brushToString(this.i.sectionHeaderTextColor)},set:function(t){this.i.sectionHeaderTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sectionHeaderTextStyle",{get:function(){return null==this.i.sectionHeaderTextStyle?null:this.i.sectionHeaderTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.sectionHeaderTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRootLabelTextStyle",{get:function(){return null==this.i.summaryRootLabelTextStyle?null:this.i.summaryRootLabelTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.summaryRootLabelTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summarySectionLabelTextStyle",{get:function(){return null==this.i.summarySectionLabelTextStyle?null:this.i.summarySectionLabelTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.summarySectionLabelTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRootValueTextColor",{get:function(){return n.brushToString(this.i.summaryRootValueTextColor)},set:function(t){this.i.summaryRootValueTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRootValueTextStyle",{get:function(){return null==this.i.summaryRootValueTextStyle?null:this.i.summaryRootValueTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.summaryRootValueTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summarySectionValueTextStyle",{get:function(){return null==this.i.summarySectionValueTextStyle?null:this.i.summarySectionValueTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.summarySectionValueTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summarySectionValueTextColor",{get:function(){return n.brushToString(this.i.summarySectionValueTextColor)},set:function(t){this.i.summarySectionValueTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRootLabelTextColor",{get:function(){return n.brushToString(this.i.summaryRootLabelTextColor)},set:function(t){this.i.summaryRootLabelTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summarySectionLabelTextColor",{get:function(){return n.brushToString(this.i.summarySectionLabelTextColor)},set:function(t){this.i.summarySectionLabelTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryRootSelectedBackground",{get:function(){return n.brushToString(this.i.summaryRootSelectedBackground)},set:function(t){this.i.summaryRootSelectedBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summarySectionSelectedBackground",{get:function(){return n.brushToString(this.i.summarySectionSelectedBackground)},set:function(t){this.i.summarySectionSelectedBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedAreaSeparatorWidth",{get:function(){return this.i.pinnedAreaSeparatorWidth},set:function(t){this.i.pinnedAreaSeparatorWidth=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerSeparatorWidth",{get:function(){return this.i.headerSeparatorWidth},set:function(t){this.i.headerSeparatorWidth=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerSeparatorBackground",{get:function(){return n.brushToString(this.i.headerSeparatorBackground)},set:function(t){this.i.headerSeparatorBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerBackground",{get:function(){return n.brushToString(this.i.headerBackground)},set:function(t){this.i.headerBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerTextColor",{get:function(){return n.brushToString(this.i.headerTextColor)},set:function(t){this.i.headerTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerTextStyle",{get:function(){return null==this.i.headerTextStyle?null:this.i.headerTextStyle.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.headerTextStyle=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSeparatorBackground",{get:function(){return n.brushToString(this.i.rowSeparatorBackground)},set:function(t){this.i.rowSeparatorBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"headerRowSeparatorBackground",{get:function(){return n.brushToString(this.i.headerRowSeparatorBackground)},set:function(t){this.i.headerRowSeparatorBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSeparatorStickyRowBackground",{get:function(){return n.brushToString(this.i.rowSeparatorStickyRowBackground)},set:function(t){this.i.rowSeparatorStickyRowBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSeparatorLastStickyRowBackground",{get:function(){return n.brushToString(this.i.rowSeparatorLastStickyRowBackground)},set:function(t){this.i.rowSeparatorLastStickyRowBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSeparatorPinnedRowBackground",{get:function(){return n.brushToString(this.i.rowSeparatorPinnedRowBackground)},set:function(t){this.i.rowSeparatorPinnedRowBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnResizingSeparatorWidth",{get:function(){return this.i.columnResizingSeparatorWidth},set:function(t){this.i.columnResizingSeparatorWidth=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnResizingSeparatorOpacity",{get:function(){return this.i.columnResizingSeparatorOpacity},set:function(t){this.i.columnResizingSeparatorOpacity=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnMovingSeparatorWidth",{get:function(){return this.i.columnMovingSeparatorWidth},set:function(t){this.i.columnMovingSeparatorWidth=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnMovingSeparatorOpacity",{get:function(){return this.i.columnMovingSeparatorOpacity},set:function(t){this.i.columnMovingSeparatorOpacity=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnResizingSeparatorBackground",{get:function(){return n.brushToString(this.i.columnResizingSeparatorBackground)},set:function(t){this.i.columnResizingSeparatorBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnMovingSeparatorBackground",{get:function(){return n.brushToString(this.i.columnMovingSeparatorBackground)},set:function(t){this.i.columnMovingSeparatorBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"shiftSectionContent",{get:function(){return this.i.shiftSectionContent},set:function(t){this.i.shiftSectionContent=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnOptionsIconAlignment",{get:function(){return this.i.columnOptionsIconAlignment},set:function(t){this.i.columnOptionsIconAlignment=n.ensureEnum(ut,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnOptionsIconColor",{get:function(){return n.brushToString(this.i.columnOptionsIconColor)},set:function(t){this.i.columnOptionsIconColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnOptionsIconBehavior",{get:function(){return this.i.columnOptionsIconBehavior},set:function(t){this.i.columnOptionsIconBehavior=n.ensureEnum(ht,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"border",{get:function(){return n.brushToString(this.i.border)},set:function(t){this.i.border=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorderWidth",{get:function(){return this.i.actualBorderWidth},set:function(t){this.i.actualBorderWidth=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthBottom",{get:function(){return this.i.borderWidth?this.i.borderWidth.bottom:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.bottom=+t,this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthLeft",{get:function(){return this.i.borderWidth?this.i.borderWidth.left:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.left=+t,this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthRight",{get:function(){return this.i.borderWidth?this.i.borderWidth.right:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.right=+t,this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthTop",{get:function(){return this.i.borderWidth?this.i.borderWidth.top:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.top=+t,this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),t.prototype.ensureBorderWidth=function(){this.i.borderWidth||(this.i.borderWidth=new n.Thickness(2))},Object.defineProperty(t.prototype,"notifyOnAllSelectionChanges",{get:function(){return this.i.notifyOnAllSelectionChanges},set:function(t){this.i.notifyOnAllSelectionChanges=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cornerRadiusBottomRight",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.c:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.c=+t,this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cornerRadiusBottomLeft",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.b:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.b=+t,this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cornerRadiusTopLeft",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.d:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.d=+t,this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cornerRadiusTopRight",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.e:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.e=+t,this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),t.prototype.ensureCornerRadius=function(){this.i.cornerRadius||(this.i.cornerRadius=new n.CornerRadius(2))},Object.defineProperty(t.prototype,"actualCornerRadiusBottomRight",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.c:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.c=+t,this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualCornerRadiusBottomLeft",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.b:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.b=+t,this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualCornerRadiusTopLeft",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.d:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.d=+t,this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualCornerRadiusTopRight",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.e:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.e=+t,this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),t.prototype.ensureActualCornerRadius=function(){this.i.actualCornerRadius||(this.i.actualCornerRadius=new n.CornerRadius(2))},Object.defineProperty(t.prototype,"isActiveCellStyleEnabled",{get:function(){return this.i.isActiveCellStyleEnabled},set:function(t){this.i.isActiveCellStyleEnabled=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"responsiveStates",{get:function(){if(null===this._responsiveStates){var t=new el,e=this.i.responsiveStates;e||(e=new Br),this._responsiveStates=t._fromInner(e)}return this._responsiveStates},set:function(t){null!==this._responsiveStates&&(this._responsiveStates._setSyncTarget(null),this._responsiveStates=null);var e=new el;this._responsiveStates=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Dr.$type),r=this.i.responsiveStates;r||(r=new Br),i._inner=r,i.clear(),this._responsiveStates._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualVisibleRegion",{get:function(){return n.fromRect(this.i.actualVisibleRegion)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"initialSortDescriptions",{get:function(){var t=this.i.initialSortDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Fo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"initialGroupDescriptions",{get:function(){var t=this.i.initialGroupDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Lo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"initialSummaryDescriptions",{get:function(){var t=this.i.initialSummaryDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Uo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"initialSorts",{get:function(){return this.i.initialSorts},set:function(t){this.i.initialSorts=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"initialGroups",{get:function(){return this.i.initialGroups},set:function(t){this.i.initialGroups=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"initialSummaries",{get:function(){return this.i.initialSummaries},set:function(t){this.i.initialSummaries=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortDescriptions",{get:function(){var t=this.i.sortDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Fo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupDescriptions",{get:function(){var t=this.i.groupDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Lo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterExpressions",{get:function(){var t=this.i.filterExpressions;if(null==t)return null;if(!t.externalObject){var e=new n.IgxFilterExpressionCollection;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryDescriptions",{get:function(){var t=this.i.summaryDescriptions;if(null==t)return null;if(!t.externalObject){var e=new Uo;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryScope",{get:function(){return this.i.summaryScope},set:function(t){this.i.summaryScope=n.ensureEnum(ft,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isGroupCollapsable",{get:function(){return this.i.isGroupCollapsable},set:function(t){this.i.isGroupCollapsable=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupHeaderDisplayMode",{get:function(){return this.i.groupHeaderDisplayMode},set:function(t){this.i.groupHeaderDisplayMode=n.ensureEnum(gt,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isGroupExpandedDefault",{get:function(){return this.i.isGroupExpandedDefault},set:function(t){this.i.isGroupExpandedDefault=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupSummaryDisplayMode",{get:function(){return this.i.groupSummaryDisplayMode},set:function(t){this.i.groupSummaryDisplayMode=n.ensureEnum(N,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"autoAcceptEdits",{get:function(){return this.i.autoAcceptEdits},set:function(t){this.i.autoAcceptEdits=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"primaryKey",{get:function(){return this.i.primaryKey},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.primaryKey=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPrimaryKey",{get:function(){return this.i.actualPrimaryKey},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.actualPrimaryKey=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualColumns",{get:function(){if(null===this._actualColumns){var t=new Po,e=this.i.actualColumns;e||(e=new ji),this._actualColumns=t._fromInner(e)}return this._actualColumns},set:function(t){null!==this._actualColumns&&(this._actualColumns._setSyncTarget(null),this._actualColumns=null);var e=new Po;this._actualColumns=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(Ii.$type),r=this.i.actualColumns;r||(r=new ji),i._inner=r,i.clear(),this._actualColumns._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"reactsToSortChanges",{get:function(){return this.i.reactsToSortChanges},set:function(t){this.i.reactsToSortChanges=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"reactsToGroupChanges",{get:function(){return this.i.reactsToGroupChanges},set:function(t){this.i.reactsToGroupChanges=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"reactsToFilterChanges",{get:function(){return this.i.reactsToFilterChanges},set:function(t){this.i.reactsToFilterChanges=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"canUndo",{get:function(){return this.i.canUndo},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"canRedo",{get:function(){return this.i.canRedo},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"canCommit",{get:function(){return this.i.canCommit},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"enterBehavior",{get:function(){return this.i.enterBehavior},set:function(t){this.i.enterBehavior=n.ensureEnum(Pe,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"enterBehaviorAfterEdit",{get:function(){return this.i.enterBehaviorAfterEdit},set:function(t){this.i.enterBehaviorAfterEdit=n.ensureEnum(Ie,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isColumnOptionsSummariesEnabled",{get:function(){return this.i.isColumnOptionsSummariesEnabled},set:function(t){this.i.isColumnOptionsSummariesEnabled=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isColumnOptionsGroupingEnabled",{get:function(){return this.i.isColumnOptionsGroupingEnabled},set:function(t){this.i.isColumnOptionsGroupingEnabled=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"mergedCellMode",{get:function(){return this.i.mergedCellMode},set:function(t){this.i.mergedCellMode=n.ensureEnum(ke,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"mergedCellEvaluationCriteria",{get:function(){return this.i.mergedCellEvaluationCriteria},set:function(t){this.i.mergedCellEvaluationCriteria=n.ensureEnum(Re,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"mergedCellVerticalAlignment",{get:function(){return this.i.mergedCellVerticalAlignment},set:function(t){this.i.mergedCellVerticalAlignment=n.ensureEnum(k,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterUIType",{get:function(){return this.i.filterUIType},set:function(t){this.i.filterUIType=n.ensureEnum(Be,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterLogicalOperator",{get:function(){return this.i.filterLogicalOperator},set:function(t){this.i.filterLogicalOperator=n.ensureEnum(Ee,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterComparisonType",{get:function(){return this.i.filterComparisonType},set:function(t){this.i.filterComparisonType=n.ensureEnum(Ve,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"todayOverride",{get:function(){return this.i.todayOverride},set:function(t){this.i.todayOverride=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"clearSelectionOnEscape",{get:function(){return this.i.clearSelectionOnEscape},set:function(t){this.i.clearSelectionOnEscape=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pageSize",{get:function(){return this.i.pageSize},set:function(t){this.i.pageSize=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isToolbarColumnChooserVisible",{get:function(){return this.i.isToolbarColumnChooserVisible},set:function(t){this.i.isToolbarColumnChooserVisible=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isToolbarColumnPinningVisible",{get:function(){return this.i.isToolbarColumnPinningVisible},set:function(t){this.i.isToolbarColumnPinningVisible=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarTitle",{get:function(){return this.i.toolbarTitle},set:function(t){this.i.toolbarTitle=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarColumnChooserText",{get:function(){return this.i.toolbarColumnChooserText},set:function(t){this.i.toolbarColumnChooserText=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarColumnChooserTitle",{get:function(){return this.i.toolbarColumnChooserTitle},set:function(t){this.i.toolbarColumnChooserTitle=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarColumnPinningText",{get:function(){return this.i.toolbarColumnPinningText},set:function(t){this.i.toolbarColumnPinningText=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarColumnPinningTitle",{get:function(){return this.i.toolbarColumnPinningTitle},set:function(t){this.i.toolbarColumnPinningTitle=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"scrollbarStyle",{get:function(){return this.i.scrollbarStyle},set:function(t){this.i.scrollbarStyle=n.ensureEnum(n.ScrollbarStyle_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"scrollbarBackground",{get:function(){return n.brushToString(this.i.scrollbarBackground)},set:function(t){this.i.scrollbarBackground=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"allowCopyOperation",{get:function(){return this.i.allowCopyOperation},set:function(t){this.i.allowCopyOperation=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"deferEventForRowDragSelection",{get:function(){return this.i.deferEventForRowDragSelection},set:function(t){this.i.deferEventForRowDragSelection=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):this.sectionHeader&&this.sectionHeader.name&&this.sectionHeader.name==t?this.sectionHeader:this.summaryRowRoot&&this.summaryRowRoot.name&&this.summaryRowRoot.name==t?this.summaryRowRoot:this.summaryRowSection&&this.summaryRowSection.name&&this.summaryRowSection.name==t?this.summaryRowSection:this.rowSeparator&&this.rowSeparator.name&&this.rowSeparator.name==t?this.rowSeparator:this.headerRowSeparator&&this.headerRowSeparator.name&&this.headerRowSeparator.name==t?this.headerRowSeparator:this.headerSeparator&&this.headerSeparator.name&&this.headerSeparator.name==t?this.headerSeparator:this.columnResizingSeparator&&this.columnResizingSeparator.name&&this.columnResizingSeparator.name==t?this.columnResizingSeparator:this.columnMovingSeparator&&this.columnMovingSeparator.name&&this.columnMovingSeparator.name==t?this.columnMovingSeparator:this.pinnedAreaSeparator&&this.pinnedAreaSeparator.name&&this.pinnedAreaSeparator.name==t?this.pinnedAreaSeparator:this.animationSettings&&this.animationSettings.name&&this.animationSettings.name==t?this.animationSettings:null!=this.selectedKeys&&this.selectedKeys.findByName&&this.selectedKeys.findByName(t)?this.selectedKeys.findByName(t):null!=this.selectedCells&&this.selectedCells.findByName&&this.selectedCells.findByName(t)?this.selectedCells.findByName(t):null!=this.selectedCellRanges&&this.selectedCellRanges.findByName&&this.selectedCellRanges.findByName(t)?this.selectedCellRanges.findByName(t):null!=this.pinnedKeys&&this.pinnedKeys.findByName&&this.pinnedKeys.findByName(t)?this.pinnedKeys.findByName(t):this.activeCell&&this.activeCell.name&&this.activeCell.name==t?this.activeCell:null!=this.responsiveStates&&this.responsiveStates.findByName&&this.responsiveStates.findByName(t)?this.responsiveStates.findByName(t):null!=this.initialSortDescriptions&&this.initialSortDescriptions.findByName&&this.initialSortDescriptions.findByName(t)?this.initialSortDescriptions.findByName(t):null!=this.initialGroupDescriptions&&this.initialGroupDescriptions.findByName&&this.initialGroupDescriptions.findByName(t)?this.initialGroupDescriptions.findByName(t):null!=this.initialSummaryDescriptions&&this.initialSummaryDescriptions.findByName&&this.initialSummaryDescriptions.findByName(t)?this.initialSummaryDescriptions.findByName(t):null!=this.sortDescriptions&&this.sortDescriptions.findByName&&this.sortDescriptions.findByName(t)?this.sortDescriptions.findByName(t):null!=this.groupDescriptions&&this.groupDescriptions.findByName&&this.groupDescriptions.findByName(t)?this.groupDescriptions.findByName(t):null!=this.filterExpressions&&this.filterExpressions.findByName&&this.filterExpressions.findByName(t)?this.filterExpressions.findByName(t):null!=this.summaryDescriptions&&this.summaryDescriptions.findByName&&this.summaryDescriptions.findByName(t)?this.summaryDescriptions.findByName(t):null!=this.actualColumns&&this.actualColumns.findByName&&this.actualColumns.findByName(t)?this.actualColumns.findByName(t):null!=this.columns&&this.columns.findByName&&this.columns.findByName(t)?this.columns.findByName(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("DataGridComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this.sectionHeader&&this.sectionHeader._styling&&this.sectionHeader._styling(t,e,this),this.summaryRowRoot&&this.summaryRowRoot._styling&&this.summaryRowRoot._styling(t,e,this),this.summaryRowSection&&this.summaryRowSection._styling&&this.summaryRowSection._styling(t,e,this),this.rowSeparator&&this.rowSeparator._styling&&this.rowSeparator._styling(t,e,this),this.headerRowSeparator&&this.headerRowSeparator._styling&&this.headerRowSeparator._styling(t,e,this),this.headerSeparator&&this.headerSeparator._styling&&this.headerSeparator._styling(t,e,this),this.columnResizingSeparator&&this.columnResizingSeparator._styling&&this.columnResizingSeparator._styling(t,e,this),this.columnMovingSeparator&&this.columnMovingSeparator._styling&&this.columnMovingSeparator._styling(t,e,this),this.pinnedAreaSeparator&&this.pinnedAreaSeparator._styling&&this.pinnedAreaSeparator._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.refresh=function(){this.i.refresh()},t.prototype.flush=function(){this.i.flush()},t.prototype.notifyScrollStart=function(){this.i.notifyScrollStart()},t.prototype.notifyScrollStop=function(){this.i.notifyScrollStop()},t.prototype.exchangeColumn=function(t,e){this.i.exchangeColumn(null==t?null:t.i,null==e?null:e.i)},t.prototype.pinColumn=function(t,e){this.i.pinColumn(null==t?null:t.i,null==e?null:e)},t.prototype.moveColumn=function(t,e){this.i.moveColumn(t,e)},t.prototype.moveColumnLeft=function(t){this.i.moveColumnLeft(t)},t.prototype.moveColumnRight=function(t){this.i.moveColumnRight(t)},t.prototype.canMoveColumnLeft=function(t){return this.i.canMoveColumnLeft(t)},t.prototype.canMoveColumnRight=function(t){return this.i.canMoveColumnRight(t)},t.prototype.exportVisualModel=function(){return this.i.exportVisualModel()},t.prototype.exportSerializedVisualModel=function(){return this.i.exportSerializedVisualModel()},t.prototype.scrollToRowByIndex=function(t){this.i.scrollToRowByIndex(t)},t.prototype.scrollToLastRowByIndex=function(t){this.i.scrollToLastRowByIndex(t)},t.prototype.scrollToItem=function(t){return this.i.scrollToItem(t)},t.prototype.scrollToPrimaryKey=function(t){return this.i.scrollToPrimaryKey(t)},t.prototype.scrollToColumnByIndex=function(t){this.i.scrollToColumnByIndex(t)},t.prototype.getLastVisibleIndex=function(){return this.i.getLastVisibleIndex()},t.prototype.getFirstVisibleIndex=function(){return this.i.getFirstVisibleIndex()},t.prototype.invalidateVisibleRows=function(){this.i.invalidateVisibleRows()},t.prototype.setActiveResponsiveState=function(t){this.i.setActiveResponsiveState(t)},t.prototype.notifySetItem=function(t,e,n){this.i.notifySetItem(t,e,n)},t.prototype.notifyClearItems=function(){this.i.notifyClearItems()},t.prototype.notifyInsertItem=function(t,e){this.i.notifyInsertItem(t,e)},t.prototype.notifyRemoveItem=function(t,e){this.i.notifyRemoveItem(t,e)},t.prototype.dataIndexOfItem=function(t){return this.i.dataIndexOfItem(t)},t.prototype.dataIndexOfPrimaryKey=function(t){return this.i.dataIndexOfPrimaryKey(t)},t.prototype.resolveCellValue=function(t){return this.i.resolveCellValue(null==t?null:t.i)},t.prototype.resolveCellValueFromPosition=function(t,e){return this.i.resolveCellValueFromPosition(t,e)},t.prototype.getColumnAtRenderedIndex=function(t){var e=this.i.getColumnAtRenderedIndex(t),n=null;if(e&&e.externalObject)n=e.externalObject;else if(e){var i=So._createFromInternal(e);i._implementation=e,e.externalObject=i,n=i}return n},t.prototype.getRootSummaryResults=function(){return this.i.getRootSummaryResults()},t.prototype.getSectionSummaryResults=function(t){return this.i.getSectionSummaryResults(t)},t.prototype.commitEdits=function(){this.i.commitEdits()},t.prototype.cancelEdits=function(){this.i.cancelEdits()},t.prototype.acceptCommit=function(t){this.i.acceptCommit(t)},t.prototype.rejectCommit=function(t){this.i.rejectCommit(t)},t.prototype.undo=function(){this.i.undo()},t.prototype.redo=function(){this.i.redo()},t.prototype.updatePropertyAtKey=function(t,e,n){this.i.updatePropertyAtKey(t,e,n)},t.prototype.removeItemByKey=function(t){this.i.removeItemByKey(t)},t.prototype.removeItem=function(t){this.i.removeItem(t)},t.prototype.acceptEdit=function(t){this.i.acceptEdit(t)},t.prototype.rejectEdit=function(t){this.i.rejectEdit(t)},t.prototype.setEditError=function(t,e){this.i.setEditError(t,e)},t.prototype.startEditMode=function(){this.i.startEditMode()},t.prototype.endEditMode=function(t){this.i.endEditMode(t)},t.prototype.selectAllRows=function(){this.i.selectAllRows()},t.prototype.deselectAllRows=function(){this.i.deselectAllRows()},t.prototype.saveLayout=function(){return this.i.saveLayout()},t.prototype.loadLayout=function(t){this.i.loadLayout(t)},Object.defineProperty(t.prototype,"filterExpressionsChanging",{get:function(){var t=this;return null==this._filterExpressionsChanging&&(this._filterExpressionsChanging=new e.EventEmitter,this.i.filterExpressionsChanging=n.delegateCombine(this.i.filterExpressionsChanging,(function(e,n){var i=new Ks;i._provideImplementation(n),t.beforeFilterExpressionsChanging&&t.beforeFilterExpressionsChanging(t,i),t._filterExpressionsChanging.emit({sender:t,args:i})}))),this._filterExpressionsChanging},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterExpressionsChanged",{get:function(){var t=this;return null==this._filterExpressionsChanged&&(this._filterExpressionsChanged=new e.EventEmitter,this.i.filterExpressionsChanged=n.delegateCombine(this.i.filterExpressionsChanged,(function(e,n){var i=new Ks;i._provideImplementation(n),t.beforeFilterExpressionsChanged&&t.beforeFilterExpressionsChanged(t,i),t._filterExpressionsChanged.emit({sender:t,args:i})}))),this._filterExpressionsChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellPreviewPointerDown",{get:function(){var t=this;return null==this._cellPreviewPointerDown&&(this._cellPreviewPointerDown=new e.EventEmitter,this.i.cellPreviewPointerDown=n.delegateCombine(this.i.cellPreviewPointerDown,(function(e,n){var i=new bo;i._provideImplementation(n),t.beforeCellPreviewPointerDown&&t.beforeCellPreviewPointerDown(t,i),t._cellPreviewPointerDown.emit({sender:t,args:i})}))),this._cellPreviewPointerDown},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellPreviewPointerUp",{get:function(){var t=this;return null==this._cellPreviewPointerUp&&(this._cellPreviewPointerUp=new e.EventEmitter,this.i.cellPreviewPointerUp=n.delegateCombine(this.i.cellPreviewPointerUp,(function(e,n){var i=new bo;i._provideImplementation(n),t.beforeCellPreviewPointerUp&&t.beforeCellPreviewPointerUp(t,i),t._cellPreviewPointerUp.emit({sender:t,args:i})}))),this._cellPreviewPointerUp},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellPointerDown",{get:function(){var t=this;return null==this._cellPointerDown&&(this._cellPointerDown=new e.EventEmitter,this.i.cellPointerDown=n.delegateCombine(this.i.cellPointerDown,(function(e,n){var i=new bo;i._provideImplementation(n),t.beforeCellPointerDown&&t.beforeCellPointerDown(t,i),t._cellPointerDown.emit({sender:t,args:i})}))),this._cellPointerDown},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellPointerUp",{get:function(){var t=this;return null==this._cellPointerUp&&(this._cellPointerUp=new e.EventEmitter,this.i.cellPointerUp=n.delegateCombine(this.i.cellPointerUp,(function(e,n){var i=new bo;i._provideImplementation(n),t.beforeCellPointerUp&&t.beforeCellPointerUp(t,i),t._cellPointerUp.emit({sender:t,args:i})}))),this._cellPointerUp},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellClicked",{get:function(){var t=this;return null==this._cellClicked&&(this._cellClicked=new e.EventEmitter,this.i.cellClicked=n.delegateCombine(this.i.cellClicked,(function(e,n){var i=new bo;i._provideImplementation(n),t.beforeCellClicked&&t.beforeCellClicked(t,i),t._cellClicked.emit({sender:t,args:i})}))),this._cellClicked},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortDescriptionsChanged",{get:function(){var t=this;return null==this._sortDescriptionsChanged&&(this._sortDescriptionsChanged=new e.EventEmitter,this.i.sortDescriptionsChanged=n.delegateCombine(this.i.sortDescriptionsChanged,(function(e,n){var i=new $o;i._provideImplementation(n),t.beforeSortDescriptionsChanged&&t.beforeSortDescriptionsChanged(t,i),t._sortDescriptionsChanged.emit({sender:t,args:i})}))),this._sortDescriptionsChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupDescriptionsChanged",{get:function(){var t=this;return null==this._groupDescriptionsChanged&&(this._groupDescriptionsChanged=new e.EventEmitter,this.i.groupDescriptionsChanged=n.delegateCombine(this.i.groupDescriptionsChanged,(function(e,n){var i=new qo;i._provideImplementation(n),t.beforeGroupDescriptionsChanged&&t.beforeGroupDescriptionsChanged(t,i),t._groupDescriptionsChanged.emit({sender:t,args:i})}))),this._groupDescriptionsChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryDescriptionsChanged",{get:function(){var t=this;return null==this._summaryDescriptionsChanged&&(this._summaryDescriptionsChanged=new e.EventEmitter,this.i.summaryDescriptionsChanged=n.delegateCombine(this.i.summaryDescriptionsChanged,(function(e,n){var i=new Ko;i._provideImplementation(n),t.beforeSummaryDescriptionsChanged&&t.beforeSummaryDescriptionsChanged(t,i),t._summaryDescriptionsChanged.emit({sender:t,args:i})}))),this._summaryDescriptionsChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnHiddenChanged",{get:function(){var t=this;return null==this._columnHiddenChanged&&(this._columnHiddenChanged=new e.EventEmitter,this.i.columnHiddenChanged=n.delegateCombine(this.i.columnHiddenChanged,(function(e,n){var i=new sl;i._provideImplementation(n),t.beforeColumnHiddenChanged&&t.beforeColumnHiddenChanged(t,i),t._columnHiddenChanged.emit({sender:t,args:i})}))),this._columnHiddenChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnPinnedChanged",{get:function(){var t=this;return null==this._columnPinnedChanged&&(this._columnPinnedChanged=new e.EventEmitter,this.i.columnPinnedChanged=n.delegateCombine(this.i.columnPinnedChanged,(function(e,n){var i=new dl;i._provideImplementation(n),t.beforeColumnPinnedChanged&&t.beforeColumnPinnedChanged(t,i),t._columnPinnedChanged.emit({sender:t,args:i})}))),this._columnPinnedChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellValueChanging",{get:function(){var t=this;return null==this._cellValueChanging&&(this._cellValueChanging=new e.EventEmitter,this.i.cellValueChanging=n.delegateCombine(this.i.cellValueChanging,(function(e,n){var i=new fl;i._provideImplementation(n),t.beforeCellValueChanging&&t.beforeCellValueChanging(t,i),t._cellValueChanging.emit({sender:t,args:i})}))),this._cellValueChanging},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataCommitted",{get:function(){var t=this;return null==this._dataCommitted&&(this._dataCommitted=new e.EventEmitter,this.i.dataCommitted=n.delegateCombine(this.i.dataCommitted,(function(e,n){var i=new gl;i._provideImplementation(n),t.beforeDataCommitted&&t.beforeDataCommitted(t,i),t._dataCommitted.emit({sender:t,args:i})}))),this._dataCommitted},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataCommitting",{get:function(){var t=this;return null==this._dataCommitting&&(this._dataCommitting=new e.EventEmitter,this.i.dataCommitting=n.delegateCombine(this.i.dataCommitting,(function(e,n){var i=new ml;i._provideImplementation(n),t.beforeDataCommitting&&t.beforeDataCommitting(t,i),t._dataCommitting.emit({sender:t,args:i})}))),this._dataCommitting},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rootSummariesChanged",{get:function(){var t=this;return null==this._rootSummariesChanged&&(this._rootSummariesChanged=new e.EventEmitter,this.i.rootSummariesChanged=n.delegateCombine(this.i.rootSummariesChanged,(function(e,i){t._runInZone((function(){var e=new n.IgxDataSourceRootSummariesChangedEventArgs;e._provideImplementation(i),t.beforeRootSummariesChanged&&t.beforeRootSummariesChanged(t,e),t._rootSummariesChanged.emit({sender:t,args:e})}))}))),this._rootSummariesChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeChanged",{get:function(){var t=this;return null==this._sizeChanged&&(this._sizeChanged=new e.EventEmitter,this.i.sizeChanged=n.delegateCombine(this.i.sizeChanged,(function(e,n){t._runInZone((function(){var e=new yl;e._provideImplementation(n),t.beforeSizeChanged&&t.beforeSizeChanged(t,e),t._sizeChanged.emit({sender:t,args:e})}))}))),this._sizeChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualColumnsChanged",{get:function(){var t=this;return null==this._actualColumnsChanged&&(this._actualColumnsChanged=new e.EventEmitter,this.i.actualColumnsChanged=n.delegateCombine(this.i.actualColumnsChanged,(function(e,n){var i=new bl;i._provideImplementation(n),t.beforeActualColumnsChanged&&t.beforeActualColumnsChanged(t,i),t._actualColumnsChanged.emit({sender:t,args:i})}))),this._actualColumnsChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnsAutoGenerated",{get:function(){var t=this;return null==this._columnsAutoGenerated&&(this._columnsAutoGenerated=new e.EventEmitter,this.i.columnsAutoGenerated=n.delegateCombine(this.i.columnsAutoGenerated,(function(e,n){var i=new Oo;i._provideImplementation(n),t.beforeColumnsAutoGenerated&&t.beforeColumnsAutoGenerated(t,i),t._columnsAutoGenerated.emit({sender:t,args:i})}))),this._columnsAutoGenerated},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedItemsChanged",{get:function(){var t=this;return null==this._selectedItemsChanged&&(this._selectedItemsChanged=new e.EventEmitter,this.i.selectedItemsChanged=n.delegateCombine(this.i.selectedItemsChanged,(function(e,n){var i=new jo;i._provideImplementation(n),t.beforeSelectedItemsChanged&&t.beforeSelectedItemsChanged(t,i),t._selectedItemsChanged.emit({sender:t,args:i})}))),this._selectedItemsChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedKeysChanged",{get:function(){var t=this;return null==this._selectedKeysChanged&&(this._selectedKeysChanged=new e.EventEmitter,this.i.selectedKeysChanged=n.delegateCombine(this.i.selectedKeysChanged,(function(e,n){var i=new Ro;i._provideImplementation(n),t.beforeSelectedKeysChanged&&t.beforeSelectedKeysChanged(t,i),t._selectedKeysChanged.emit({sender:t,args:i})}))),this._selectedKeysChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedCellsChanged",{get:function(){var t=this;return null==this._selectedCellsChanged&&(this._selectedCellsChanged=new e.EventEmitter,this.i.selectedCellsChanged=n.delegateCombine(this.i.selectedCellsChanged,(function(e,n){var i=new Mo;i._provideImplementation(n),t.beforeSelectedCellsChanged&&t.beforeSelectedCellsChanged(t,i),t._selectedCellsChanged.emit({sender:t,args:i})}))),this._selectedCellsChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectionChanged",{get:function(){var t=this;return null==this._selectionChanged&&(this._selectionChanged=new e.EventEmitter,this.i.selectionChanged=n.delegateCombine(this.i.selectionChanged,(function(e,n){var i=new Sl;i._provideImplementation(n),t.beforeSelectionChanged&&t.beforeSelectionChanged(t,i),t._selectionChanged.emit({sender:t,args:i})}))),this._selectionChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activeCellChanged",{get:function(){var t=this;return null==this._activeCellChanged&&(this._activeCellChanged=new e.EventEmitter,this.i.activeCellChanged=n.delegateCombine(this.i.activeCellChanged,(function(e,n){var i=new al;i._provideImplementation(n),t.beforeActiveCellChanged&&t.beforeActiveCellChanged(t,i),t._activeCellChanged.emit({sender:t,args:i})}))),this._activeCellChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedCellRangesChanged",{get:function(){var t=this;return null==this._selectedCellRangesChanged&&(this._selectedCellRangesChanged=new e.EventEmitter,this.i.selectedCellRangesChanged=n.delegateCombine(this.i.selectedCellRangesChanged,(function(e,n){var i=new Vo;i._provideImplementation(n),t.beforeSelectedCellRangesChanged&&t.beforeSelectedCellRangesChanged(t,i),t._selectedCellRangesChanged.emit({sender:t,args:i})}))),this._selectedCellRangesChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnWidthChanged",{get:function(){var t=this;return null==this._columnWidthChanged&&(this._columnWidthChanged=new e.EventEmitter,this.i.columnWidthChanged=n.delegateCombine(this.i.columnWidthChanged,(function(e,n){var i=new vl;i._provideImplementation(n),t.beforeColumnWidthChanged&&t.beforeColumnWidthChanged(t,i),t._columnWidthChanged.emit({sender:t,args:i})}))),this._columnWidthChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellEditStarted",{get:function(){var t=this;return null==this._cellEditStarted&&(this._cellEditStarted=new e.EventEmitter,this.i.cellEditStarted=n.delegateCombine(this.i.cellEditStarted,(function(e,n){var i=new Cl;i._provideImplementation(n),t.beforeCellEditStarted&&t.beforeCellEditStarted(t,i),t._cellEditStarted.emit({sender:t,args:i})}))),this._cellEditStarted},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellEditEnded",{get:function(){var t=this;return null==this._cellEditEnded&&(this._cellEditEnded=new e.EventEmitter,this.i.cellEditEnded=n.delegateCombine(this.i.cellEditEnded,(function(e,n){var i=new xl;i._provideImplementation(n),t.beforeCellEditEnded&&t.beforeCellEditEnded(t,i),t._cellEditEnded.emit({sender:t,args:i})}))),this._cellEditEnded},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowEditStarted",{get:function(){var t=this;return null==this._rowEditStarted&&(this._rowEditStarted=new e.EventEmitter,this.i.rowEditStarted=n.delegateCombine(this.i.rowEditStarted,(function(e,n){var i=new _l;i._provideImplementation(n),t.beforeRowEditStarted&&t.beforeRowEditStarted(t,i),t._rowEditStarted.emit({sender:t,args:i})}))),this._rowEditStarted},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowEditEnded",{get:function(){var t=this;return null==this._rowEditEnded&&(this._rowEditEnded=new e.EventEmitter,this.i.rowEditEnded=n.delegateCombine(this.i.rowEditEnded,(function(e,n){var i=new wl;i._provideImplementation(n),t.beforeRowEditEnded&&t.beforeRowEditEnded(t,i),t._rowEditEnded.emit({sender:t,args:i})}))),this._rowEditEnded},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"customFilterRequested",{get:function(){var t=this;return null==this._customFilterRequested&&(this._customFilterRequested=new e.EventEmitter,this.i.customFilterRequested=n.delegateCombine(this.i.customFilterRequested,(function(e,n){var i=new xo;i._provideImplementation(n),t.beforeCustomFilterRequested&&t.beforeCustomFilterRequested(t,i),t._customFilterRequested.emit({sender:t,args:i})}))),this._customFilterRequested},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPrimaryKeyChange",{get:function(){var t=this;return null==this._actualPrimaryKeyChange&&(this._actualPrimaryKeyChange=new e.EventEmitter,this.i.propertyChanged=n.delegateCombine(this.i.propertyChanged,(function(e,n){t._runInZone((function(){var e=t.actualPrimaryKey;t.beforeActualPrimaryKeyChange&&t.beforeActualPrimaryKeyChange(t,e),t._actualPrimaryKeyChange.emit(e)}))}))),this._actualPrimaryKeyChange},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.ComponentFactoryResolver},{token:e.ChangeDetectorRef},{token:e.Injector}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-data-grid",inputs:{height:"height",width:"width",dataSource:"dataSource",columnResizingMode:"columnResizingMode",columnMovingMode:"columnMovingMode",isRowHoverEnabled:"isRowHoverEnabled",rowHoverBackground:"rowHoverBackground",rowHoverTextColor:"rowHoverTextColor",editRowBorder:"editRowBorder",editRowBorderWidthBottom:"editRowBorderWidthBottom",editRowBorderWidthLeft:"editRowBorderWidthLeft",editRowBorderWidthRight:"editRowBorderWidthRight",editRowBorderWidthTop:"editRowBorderWidthTop",sectionHeader:"sectionHeader",summaryRowRoot:"summaryRowRoot",summaryRowSection:"summaryRowSection",rowSeparator:"rowSeparator",headerRowSeparator:"headerRowSeparator",headerSeparator:"headerSeparator",columnResizingSeparator:"columnResizingSeparator",columnMovingSeparator:"columnMovingSeparator",pinnedAreaSeparator:"pinnedAreaSeparator",autoGenerateDesiredProperties:"autoGenerateDesiredProperties",dataSourceDesiredProperties:"dataSourceDesiredProperties",density:"density",actualRowHeight:"actualRowHeight",rowHeight:"rowHeight",defaultColumnMinWidth:"defaultColumnMinWidth",actualHeaderHeight:"actualHeaderHeight",headerHeight:"headerHeight",headerClickAction:"headerClickAction",editMode:"editMode",editModeClickAction:"editModeClickAction",editOnKeyPress:"editOnKeyPress",autoGenerateColumns:"autoGenerateColumns",rowSeparatorHeight:"rowSeparatorHeight",isPlaceholderRenderingEnabled:"isPlaceholderRenderingEnabled",columnAddingAnimationMode:"columnAddingAnimationMode",columnPropertyUpdatingAnimationMode:"columnPropertyUpdatingAnimationMode",cellDataLoadedAnimationMode:"cellDataLoadedAnimationMode",rowSelectionAnimationMode:"rowSelectionAnimationMode",rowHoverAnimationMode:"rowHoverAnimationMode",cellSelectionAnimationMode:"cellSelectionAnimationMode",animationSettings:"animationSettings",columnResizingAnimationMode:"columnResizingAnimationMode",columnShowingAnimationMode:"columnShowingAnimationMode",columnMovingAnimationMode:"columnMovingAnimationMode",columnHidingAnimationMode:"columnHidingAnimationMode",columnExchangingAnimationMode:"columnExchangingAnimationMode",selectionMode:"selectionMode",activationMode:"activationMode",selectionBehavior:"selectionBehavior",mouseDragSelectionEnabled:"mouseDragSelectionEnabled",selectedItems:"selectedItems",selectedKeys:"selectedKeys",selectedCells:"selectedCells",selectedCellRanges:"selectedCellRanges",pinnedItems:"pinnedItems",pinnedKeys:"pinnedKeys",isColumnOptionsEnabled:"isColumnOptionsEnabled",isGroupRowSticky:"isGroupRowSticky",isHeaderSeparatorVisible:"isHeaderSeparatorVisible",cellSelectedBackground:"cellSelectedBackground",sectionHeaderSelectedBackground:"sectionHeaderSelectedBackground",summaryRootBackground:"summaryRootBackground",summarySectionBackground:"summarySectionBackground",pinnedRowOpacity:"pinnedRowOpacity",editTextStyle:"editTextStyle",editOpacity:"editOpacity",deletedTextColor:"deletedTextColor",stickyRowBackground:"stickyRowBackground",pinnedRowBackground:"pinnedRowBackground",lastStickyRowBackground:"lastStickyRowBackground",activeCell:"activeCell",cellBackground:"cellBackground",cellTextColor:"cellTextColor",headerSortIndicatorColor:"headerSortIndicatorColor",headerSortIndicatorStyle:"headerSortIndicatorStyle",cellTextStyle:"cellTextStyle",sectionHeaderBackground:"sectionHeaderBackground",sectionHeaderTextColor:"sectionHeaderTextColor",sectionHeaderTextStyle:"sectionHeaderTextStyle",summaryRootLabelTextStyle:"summaryRootLabelTextStyle",summarySectionLabelTextStyle:"summarySectionLabelTextStyle",summaryRootValueTextColor:"summaryRootValueTextColor",summaryRootValueTextStyle:"summaryRootValueTextStyle",summarySectionValueTextStyle:"summarySectionValueTextStyle",summarySectionValueTextColor:"summarySectionValueTextColor",summaryRootLabelTextColor:"summaryRootLabelTextColor",summarySectionLabelTextColor:"summarySectionLabelTextColor",summaryRootSelectedBackground:"summaryRootSelectedBackground",summarySectionSelectedBackground:"summarySectionSelectedBackground",pinnedAreaSeparatorWidth:"pinnedAreaSeparatorWidth",headerSeparatorWidth:"headerSeparatorWidth",headerSeparatorBackground:"headerSeparatorBackground",headerBackground:"headerBackground",headerTextColor:"headerTextColor",headerTextStyle:"headerTextStyle",rowSeparatorBackground:"rowSeparatorBackground",headerRowSeparatorBackground:"headerRowSeparatorBackground",rowSeparatorStickyRowBackground:"rowSeparatorStickyRowBackground",rowSeparatorLastStickyRowBackground:"rowSeparatorLastStickyRowBackground",rowSeparatorPinnedRowBackground:"rowSeparatorPinnedRowBackground",columnResizingSeparatorWidth:"columnResizingSeparatorWidth",columnResizingSeparatorOpacity:"columnResizingSeparatorOpacity",columnMovingSeparatorWidth:"columnMovingSeparatorWidth",columnMovingSeparatorOpacity:"columnMovingSeparatorOpacity",columnResizingSeparatorBackground:"columnResizingSeparatorBackground",columnMovingSeparatorBackground:"columnMovingSeparatorBackground",shiftSectionContent:"shiftSectionContent",columnOptionsIconAlignment:"columnOptionsIconAlignment",columnOptionsIconColor:"columnOptionsIconColor",columnOptionsIconBehavior:"columnOptionsIconBehavior",border:"border",actualBorderWidth:"actualBorderWidth",borderWidthBottom:"borderWidthBottom",borderWidthLeft:"borderWidthLeft",borderWidthRight:"borderWidthRight",borderWidthTop:"borderWidthTop",notifyOnAllSelectionChanges:"notifyOnAllSelectionChanges",cornerRadiusBottomRight:"cornerRadiusBottomRight",cornerRadiusBottomLeft:"cornerRadiusBottomLeft",cornerRadiusTopLeft:"cornerRadiusTopLeft",cornerRadiusTopRight:"cornerRadiusTopRight",actualCornerRadiusBottomRight:"actualCornerRadiusBottomRight",actualCornerRadiusBottomLeft:"actualCornerRadiusBottomLeft",actualCornerRadiusTopLeft:"actualCornerRadiusTopLeft",actualCornerRadiusTopRight:"actualCornerRadiusTopRight",isActiveCellStyleEnabled:"isActiveCellStyleEnabled",responsiveStates:"responsiveStates",initialSorts:"initialSorts",initialGroups:"initialGroups",initialSummaries:"initialSummaries",summaryScope:"summaryScope",isGroupCollapsable:"isGroupCollapsable",groupHeaderDisplayMode:"groupHeaderDisplayMode",isGroupExpandedDefault:"isGroupExpandedDefault",groupSummaryDisplayMode:"groupSummaryDisplayMode",autoAcceptEdits:"autoAcceptEdits",primaryKey:"primaryKey",actualPrimaryKey:"actualPrimaryKey",actualColumns:"actualColumns",reactsToSortChanges:"reactsToSortChanges",reactsToGroupChanges:"reactsToGroupChanges",reactsToFilterChanges:"reactsToFilterChanges",enterBehavior:"enterBehavior",enterBehaviorAfterEdit:"enterBehaviorAfterEdit",isColumnOptionsSummariesEnabled:"isColumnOptionsSummariesEnabled",isColumnOptionsGroupingEnabled:"isColumnOptionsGroupingEnabled",mergedCellMode:"mergedCellMode",mergedCellEvaluationCriteria:"mergedCellEvaluationCriteria",mergedCellVerticalAlignment:"mergedCellVerticalAlignment",filterUIType:"filterUIType",filterLogicalOperator:"filterLogicalOperator",filterComparisonType:"filterComparisonType",todayOverride:"todayOverride",clearSelectionOnEscape:"clearSelectionOnEscape",pageSize:"pageSize",isToolbarColumnChooserVisible:"isToolbarColumnChooserVisible",isToolbarColumnPinningVisible:"isToolbarColumnPinningVisible",toolbarTitle:"toolbarTitle",toolbarColumnChooserText:"toolbarColumnChooserText",toolbarColumnChooserTitle:"toolbarColumnChooserTitle",toolbarColumnPinningText:"toolbarColumnPinningText",toolbarColumnPinningTitle:"toolbarColumnPinningTitle",scrollbarStyle:"scrollbarStyle",scrollbarBackground:"scrollbarBackground",allowCopyOperation:"allowCopyOperation",deferEventForRowDragSelection:"deferEventForRowDragSelection"},outputs:{filterExpressionsChanging:"filterExpressionsChanging",filterExpressionsChanged:"filterExpressionsChanged",cellPreviewPointerDown:"cellPreviewPointerDown",cellPreviewPointerUp:"cellPreviewPointerUp",cellPointerDown:"cellPointerDown",cellPointerUp:"cellPointerUp",cellClicked:"cellClicked",sortDescriptionsChanged:"sortDescriptionsChanged",groupDescriptionsChanged:"groupDescriptionsChanged",summaryDescriptionsChanged:"summaryDescriptionsChanged",columnHiddenChanged:"columnHiddenChanged",columnPinnedChanged:"columnPinnedChanged",cellValueChanging:"cellValueChanging",dataCommitted:"dataCommitted",dataCommitting:"dataCommitting",rootSummariesChanged:"rootSummariesChanged",sizeChanged:"sizeChanged",actualColumnsChanged:"actualColumnsChanged",columnsAutoGenerated:"columnsAutoGenerated",selectedItemsChanged:"selectedItemsChanged",selectedKeysChanged:"selectedKeysChanged",selectedCellsChanged:"selectedCellsChanged",selectionChanged:"selectionChanged",activeCellChanged:"activeCellChanged",selectedCellRangesChanged:"selectedCellRangesChanged",columnWidthChanged:"columnWidthChanged",cellEditStarted:"cellEditStarted",cellEditEnded:"cellEditEnded",rowEditStarted:"rowEditStarted",rowEditEnded:"rowEditEnded",customFilterRequested:"customFilterRequested",actualPrimaryKeyChange:"actualPrimaryKeyChange"},host:{classAttribute:"ig-data-grid igx-data-grid"},providers:[],queries:[{propertyName:"contentColumns",predicate:So}],viewQueries:[{propertyName:"_dynamicContent",first:!0,predicate:["dynamicContent"],descendants:!0,read:e.ViewContainerRef,static:!0}],ngImport:e,template:"\n <ng-container #dynamicContent></ng-container>\n ",isInline:!0,styles:[":host {\n\t\tdisplay: block;\n box-sizing: border-box;\n overflow: hidden;\n\t}"],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Dl,decorators:[{type:e.Component,args:[{selector:"igx-data-grid",styles:[":host {\n\t\tdisplay: block;\n box-sizing: border-box;\n overflow: hidden;\n\t}"],template:"\n <ng-container #dynamicContent></ng-container>\n ",host:{class:"ig-data-grid igx-data-grid"},providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.ComponentFactoryResolver},{type:e.ChangeDetectorRef},{type:e.Injector}]},propDecorators:{contentColumns:[{type:e.ContentChildren,args:[So]}],_dynamicContent:[{type:e.ViewChild,args:["dynamicContent",{read:e.ViewContainerRef,static:!0}]}],height:[{type:e.Input}],width:[{type:e.Input}],dataSource:[{type:e.Input}],columnResizingMode:[{type:e.Input}],columnMovingMode:[{type:e.Input}],isRowHoverEnabled:[{type:e.Input}],rowHoverBackground:[{type:e.Input}],rowHoverTextColor:[{type:e.Input}],editRowBorder:[{type:e.Input}],editRowBorderWidthBottom:[{type:e.Input}],editRowBorderWidthLeft:[{type:e.Input}],editRowBorderWidthRight:[{type:e.Input}],editRowBorderWidthTop:[{type:e.Input}],sectionHeader:[{type:e.Input}],summaryRowRoot:[{type:e.Input}],summaryRowSection:[{type:e.Input}],rowSeparator:[{type:e.Input}],headerRowSeparator:[{type:e.Input}],headerSeparator:[{type:e.Input}],columnResizingSeparator:[{type:e.Input}],columnMovingSeparator:[{type:e.Input}],pinnedAreaSeparator:[{type:e.Input}],autoGenerateDesiredProperties:[{type:e.Input}],dataSourceDesiredProperties:[{type:e.Input}],density:[{type:e.Input}],actualRowHeight:[{type:e.Input}],rowHeight:[{type:e.Input}],defaultColumnMinWidth:[{type:e.Input}],actualHeaderHeight:[{type:e.Input}],headerHeight:[{type:e.Input}],headerClickAction:[{type:e.Input}],editMode:[{type:e.Input}],editModeClickAction:[{type:e.Input}],editOnKeyPress:[{type:e.Input}],autoGenerateColumns:[{type:e.Input}],rowSeparatorHeight:[{type:e.Input}],isPlaceholderRenderingEnabled:[{type:e.Input}],columnAddingAnimationMode:[{type:e.Input}],columnPropertyUpdatingAnimationMode:[{type:e.Input}],cellDataLoadedAnimationMode:[{type:e.Input}],rowSelectionAnimationMode:[{type:e.Input}],rowHoverAnimationMode:[{type:e.Input}],cellSelectionAnimationMode:[{type:e.Input}],animationSettings:[{type:e.Input}],columnResizingAnimationMode:[{type:e.Input}],columnShowingAnimationMode:[{type:e.Input}],columnMovingAnimationMode:[{type:e.Input}],columnHidingAnimationMode:[{type:e.Input}],columnExchangingAnimationMode:[{type:e.Input}],selectionMode:[{type:e.Input}],activationMode:[{type:e.Input}],selectionBehavior:[{type:e.Input}],mouseDragSelectionEnabled:[{type:e.Input}],selectedItems:[{type:e.Input}],selectedKeys:[{type:e.Input}],selectedCells:[{type:e.Input}],selectedCellRanges:[{type:e.Input}],pinnedItems:[{type:e.Input}],pinnedKeys:[{type:e.Input}],isColumnOptionsEnabled:[{type:e.Input}],isGroupRowSticky:[{type:e.Input}],isHeaderSeparatorVisible:[{type:e.Input}],cellSelectedBackground:[{type:e.Input}],sectionHeaderSelectedBackground:[{type:e.Input}],summaryRootBackground:[{type:e.Input}],summarySectionBackground:[{type:e.Input}],pinnedRowOpacity:[{type:e.Input}],editTextStyle:[{type:e.Input}],editOpacity:[{type:e.Input}],deletedTextColor:[{type:e.Input}],stickyRowBackground:[{type:e.Input}],pinnedRowBackground:[{type:e.Input}],lastStickyRowBackground:[{type:e.Input}],activeCell:[{type:e.Input}],cellBackground:[{type:e.Input}],cellTextColor:[{type:e.Input}],headerSortIndicatorColor:[{type:e.Input}],headerSortIndicatorStyle:[{type:e.Input}],cellTextStyle:[{type:e.Input}],sectionHeaderBackground:[{type:e.Input}],sectionHeaderTextColor:[{type:e.Input}],sectionHeaderTextStyle:[{type:e.Input}],summaryRootLabelTextStyle:[{type:e.Input}],summarySectionLabelTextStyle:[{type:e.Input}],summaryRootValueTextColor:[{type:e.Input}],summaryRootValueTextStyle:[{type:e.Input}],summarySectionValueTextStyle:[{type:e.Input}],summarySectionValueTextColor:[{type:e.Input}],summaryRootLabelTextColor:[{type:e.Input}],summarySectionLabelTextColor:[{type:e.Input}],summaryRootSelectedBackground:[{type:e.Input}],summarySectionSelectedBackground:[{type:e.Input}],pinnedAreaSeparatorWidth:[{type:e.Input}],headerSeparatorWidth:[{type:e.Input}],headerSeparatorBackground:[{type:e.Input}],headerBackground:[{type:e.Input}],headerTextColor:[{type:e.Input}],headerTextStyle:[{type:e.Input}],rowSeparatorBackground:[{type:e.Input}],headerRowSeparatorBackground:[{type:e.Input}],rowSeparatorStickyRowBackground:[{type:e.Input}],rowSeparatorLastStickyRowBackground:[{type:e.Input}],rowSeparatorPinnedRowBackground:[{type:e.Input}],columnResizingSeparatorWidth:[{type:e.Input}],columnResizingSeparatorOpacity:[{type:e.Input}],columnMovingSeparatorWidth:[{type:e.Input}],columnMovingSeparatorOpacity:[{type:e.Input}],columnResizingSeparatorBackground:[{type:e.Input}],columnMovingSeparatorBackground:[{type:e.Input}],shiftSectionContent:[{type:e.Input}],columnOptionsIconAlignment:[{type:e.Input}],columnOptionsIconColor:[{type:e.Input}],columnOptionsIconBehavior:[{type:e.Input}],border:[{type:e.Input}],actualBorderWidth:[{type:e.Input}],borderWidthBottom:[{type:e.Input}],borderWidthLeft:[{type:e.Input}],borderWidthRight:[{type:e.Input}],borderWidthTop:[{type:e.Input}],notifyOnAllSelectionChanges:[{type:e.Input}],cornerRadiusBottomRight:[{type:e.Input}],cornerRadiusBottomLeft:[{type:e.Input}],cornerRadiusTopLeft:[{type:e.Input}],cornerRadiusTopRight:[{type:e.Input}],actualCornerRadiusBottomRight:[{type:e.Input}],actualCornerRadiusBottomLeft:[{type:e.Input}],actualCornerRadiusTopLeft:[{type:e.Input}],actualCornerRadiusTopRight:[{type:e.Input}],isActiveCellStyleEnabled:[{type:e.Input}],responsiveStates:[{type:e.Input}],initialSorts:[{type:e.Input}],initialGroups:[{type:e.Input}],initialSummaries:[{type:e.Input}],summaryScope:[{type:e.Input}],isGroupCollapsable:[{type:e.Input}],groupHeaderDisplayMode:[{type:e.Input}],isGroupExpandedDefault:[{type:e.Input}],groupSummaryDisplayMode:[{type:e.Input}],autoAcceptEdits:[{type:e.Input}],primaryKey:[{type:e.Input}],actualPrimaryKey:[{type:e.Input}],actualColumns:[{type:e.Input}],reactsToSortChanges:[{type:e.Input}],reactsToGroupChanges:[{type:e.Input}],reactsToFilterChanges:[{type:e.Input}],enterBehavior:[{type:e.Input}],enterBehaviorAfterEdit:[{type:e.Input}],isColumnOptionsSummariesEnabled:[{type:e.Input}],isColumnOptionsGroupingEnabled:[{type:e.Input}],mergedCellMode:[{type:e.Input}],mergedCellEvaluationCriteria:[{type:e.Input}],mergedCellVerticalAlignment:[{type:e.Input}],filterUIType:[{type:e.Input}],filterLogicalOperator:[{type:e.Input}],filterComparisonType:[{type:e.Input}],todayOverride:[{type:e.Input}],clearSelectionOnEscape:[{type:e.Input}],pageSize:[{type:e.Input}],isToolbarColumnChooserVisible:[{type:e.Input}],isToolbarColumnPinningVisible:[{type:e.Input}],toolbarTitle:[{type:e.Input}],toolbarColumnChooserText:[{type:e.Input}],toolbarColumnChooserTitle:[{type:e.Input}],toolbarColumnPinningText:[{type:e.Input}],toolbarColumnPinningTitle:[{type:e.Input}],scrollbarStyle:[{type:e.Input}],scrollbarBackground:[{type:e.Input}],allowCopyOperation:[{type:e.Input}],deferEventForRowDragSelection:[{type:e.Input}],filterExpressionsChanging:[{type:e.Output}],filterExpressionsChanged:[{type:e.Output}],cellPreviewPointerDown:[{type:e.Output}],cellPreviewPointerUp:[{type:e.Output}],cellPointerDown:[{type:e.Output}],cellPointerUp:[{type:e.Output}],cellClicked:[{type:e.Output}],sortDescriptionsChanged:[{type:e.Output}],groupDescriptionsChanged:[{type:e.Output}],summaryDescriptionsChanged:[{type:e.Output}],columnHiddenChanged:[{type:e.Output}],columnPinnedChanged:[{type:e.Output}],cellValueChanging:[{type:e.Output}],dataCommitted:[{type:e.Output}],dataCommitting:[{type:e.Output}],rootSummariesChanged:[{type:e.Output}],sizeChanged:[{type:e.Output}],actualColumnsChanged:[{type:e.Output}],columnsAutoGenerated:[{type:e.Output}],selectedItemsChanged:[{type:e.Output}],selectedKeysChanged:[{type:e.Output}],selectedCellsChanged:[{type:e.Output}],selectionChanged:[{type:e.Output}],activeCellChanged:[{type:e.Output}],selectedCellRangesChanged:[{type:e.Output}],columnWidthChanged:[{type:e.Output}],cellEditStarted:[{type:e.Output}],cellEditEnded:[{type:e.Output}],rowEditStarted:[{type:e.Output}],rowEditEnded:[{type:e.Output}],customFilterRequested:[{type:e.Output}],actualPrimaryKeyChange:[{type:e.Output}]}});var Bl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Nr},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"oldValue",{get:function(){return this.i.b},set:function(t){this.i.b=n.ensureEnum(u,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"newValue",{get:function(){return this.i.a},set:function(t){this.i.a=n.ensureEnum(u,t)},enumerable:!1,configurable:!0}),t}(),Ml=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new p},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),El=function(){function t(t,e,i,r,o){this.renderer=t,this._elRef=e,this.ngZone=i,this.injector=r,this.componentFactoryResolver=o,this._dataSource=null,this._wrapper=null,this._root=null,this._implementation=null,this._keys=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._selectedKeyAdded=null,this._selectedKeyRemoved=null,this._checkedChanged=null,this._labelClicked=null,this._indexTypeChanged=null,this._keysCleared=null,this._selectAllCheckboxChanged=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation();var a=this.i;this._checkboxList=a}return Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this._checkboxList.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this._checkboxList.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataSource",{get:function(){return this._dataSource},set:function(t){this._dataSource=t,null!=this._checkboxList&&(this._checkboxList.itemsSource=this._dataSource)},enumerable:!1,configurable:!0}),t.prototype.updateStyle=function(){this._styling(this._root,this)},t.prototype.ngOnDestroy=function(){this._checkboxList.destroy(),this._wrapper.destroy()},t.prototype.ngAfterViewInit=function(){var t=this;if(this.renderer&&null!=this._listGrid&&null!=this._listContainer){this.container=this._listContainer.nativeElement,this._root=this.container;var e=new n.AngularRenderer(this.container,this.renderer,window.document,this.ngZone,!0,null);this._wrapper=e;var i=e.getWrapper(this._hrElement.nativeElement);i.setStyleProperty("margin","3px 0px"),i.setStyleProperty("border-top","1px solid #dde2eb"),i.setStyleProperty("border-left","0px"),i.setStyleProperty("border-right","0px"),i.setStyleProperty("border-bottom","0px"),this.i.provideHrElement(i);var r=e.getWrapper(this._selectAllSection.nativeElement);this._checkboxList.provideContainer(e,this._listGrid.i,r),this._checkboxList.notifySizeChanged(),e.addSizeWatcher((function(){t._checkboxList.notifySizeChanged()}))}this._styling(this._root,this),this.i.notifySizeChanged(),this.updateStyle()},t.prototype.createImplementation=function(){return new zr},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"keys",{get:function(){if(null===this._keys){var t=new To,e=this.i.keys;e||(e=new c),this._keys=t._fromInner(e)}return this._keys},set:function(t){null!==this._keys&&(this._keys._setSyncTarget(null),this._keys=null);var e=new To;this._keys=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(s.$type),r=this.i.keys;r||(r=new c),i._inner=r,i.clear(),this._keys._setSyncTarget(i)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"primaryKey",{get:function(){return this.i.primaryKey},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.primaryKey=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataMemberPath",{get:function(){return this.i.dataMemberPath},set:function(t){this.i.dataMemberPath=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataLegendTarget",{get:function(){return this.i.bh},set:function(t){this.i.bh=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"subtitleMemberPath",{get:function(){return this.i.cw},set:function(t){this.i.cw=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propertyTypeMemberPath",{get:function(){return this.i.cb},set:function(t){this.i.cb=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedMemberPath",{get:function(){return this.i.selectedMemberPath},set:function(t){this.i.selectedMemberPath=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterPlaceholderText",{get:function(){return this.i.b4},set:function(t){this.i.b4=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"searchInputType",{get:function(){return this.i.y},set:function(t){this.i.y=n.ensureEnum(r.InputGroupDisplayType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowHeight",{get:function(){return this.i.be},set:function(t){this.i.be=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualRowHeight",{get:function(){return this.i.bc},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellTextStyle",{get:function(){return null==this.i.am?null:this.i.am.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.am=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"indexType",{get:function(){return this.i.indexType},set:function(t){this.i.indexType=n.ensureEnum(u,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.baseTheme},set:function(t){this.i.baseTheme=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"searchIconColor",{get:function(){return n.brushToString(this.i.searchIconColor)},set:function(t){this.i.searchIconColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"searchBackgroundColor",{get:function(){return n.brushToString(this.i.e1)},set:function(t){this.i.e1=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"labelClickTriggersChange",{get:function(){return this.i.a1},set:function(t){this.i.a1=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"searchTextColor",{get:function(){return n.brushToString(this.i.searchTextColor)},set:function(t){this.i.searchTextColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"searchBorderColor",{get:function(){return n.brushToString(this.i.e2)},set:function(t){this.i.e2=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"searchTextStyle",{get:function(){return null==this.i.an?null:this.i.an.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.an=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkboxTickColor",{get:function(){return n.brushToString(this.i.et)},set:function(t){this.i.et=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkboxCheckedBackgroundColor",{get:function(){return n.brushToString(this.i.er)},set:function(t){this.i.er=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkboxUncheckedBackgroundColor",{get:function(){return n.brushToString(this.i.eu)},set:function(t){this.i.eu=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkboxCheckedBorderColor",{get:function(){return n.brushToString(this.i.es)},set:function(t){this.i.es=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkboxUncheckedBorderColor",{get:function(){return n.brushToString(this.i.ev)},set:function(t){this.i.ev=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkboxCornerRadius",{get:function(){return this.i.a7},set:function(t){this.i.a7=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"scrollbarStyle",{get:function(){return this.i.ab},set:function(t){this.i.ab=n.ensureEnum(n.ScrollbarStyle_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"scrollbarBackground",{get:function(){return n.brushToString(this.i.e0)},set:function(t){this.i.e0=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectAllCaption",{get:function(){return this.i.cp},set:function(t){this.i.cp=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectAllCaptionTextColor",{get:function(){return n.brushToString(this.i.e5)},set:function(t){this.i.e5=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualSelectAllCaptionTextColor",{get:function(){return n.brushToString(this.i.ep)},set:function(t){this.i.ep=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"showSelectAll",{get:function(){return this.i.showSelectAll},set:function(t){this.i.showSelectAll=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.backgroundColor)},set:function(t){this.i.backgroundColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowHoverBackgroundColor",{get:function(){return n.brushToString(this.i.rowHoverBackgroundColor)},set:function(t){this.i.rowHoverBackgroundColor=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.e7)},set:function(t){this.i.e7=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"showFilter",{get:function(){return this.i.a3},set:function(t){this.i.a3=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isRowHoverEnabled",{get:function(){return this.i.az},set:function(t){this.i.az=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkboxAlignedRight",{get:function(){return this.i.av},set:function(t){this.i.av=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null!=this.keys&&this.keys.findByName&&this.keys.findByName(t)?this.keys.findByName(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("CheckboxListComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.selectAll=function(){this.i.d3()},t.prototype.deselectAll=function(){this.i.c5()},t.prototype.notifySetItem=function(t,e,n){this.i.dg(t,e,n)},t.prototype.notifyClearItems=function(){this.i.dc()},t.prototype.notifyInsertItem=function(t,e){this.i.dd(t,e)},t.prototype.notifyRemoveItem=function(t,e){this.i.df(t,e)},t.prototype.refresh=function(){this.i.refresh()},t.prototype.addKeyValue=function(t){this.i.c0(t)},t.prototype.removeKeyValue=function(t){this.i.d1(t)},t.prototype.getDesiredSize=function(t){var e=this.i.getDesiredSize(n.toSize(t));return n.fromSize(e)},t.prototype.isNothingSelected=function(){return this.i.ax()},t.prototype.isEverythingSelected=function(){return this.i.aw()},Object.defineProperty(t.prototype,"selectedKeyAdded",{get:function(){var t=this;return null==this._selectedKeyAdded&&(this._selectedKeyAdded=new e.EventEmitter,this.i.selectedKeyAdded=n.delegateCombine(this.i.selectedKeyAdded,(function(e,n){var i=new Gr;i._provideImplementation(n),t.beforeSelectedKeyAdded&&t.beforeSelectedKeyAdded(t,i),t._selectedKeyAdded.emit({sender:t,args:i})}))),this._selectedKeyAdded},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedKeyRemoved",{get:function(){var t=this;return null==this._selectedKeyRemoved&&(this._selectedKeyRemoved=new e.EventEmitter,this.i.selectedKeyRemoved=n.delegateCombine(this.i.selectedKeyRemoved,(function(e,n){var i=new Gr;i._provideImplementation(n),t.beforeSelectedKeyRemoved&&t.beforeSelectedKeyRemoved(t,i),t._selectedKeyRemoved.emit({sender:t,args:i})}))),this._selectedKeyRemoved},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"checkedChanged",{get:function(){var t=this;return null==this._checkedChanged&&(this._checkedChanged=new e.EventEmitter,this.i.checkedChanged=n.delegateCombine(this.i.checkedChanged,(function(e,n){var i=new Gr;i._provideImplementation(n),t.beforeCheckedChanged&&t.beforeCheckedChanged(t,i),t._checkedChanged.emit({sender:t,args:i})}))),this._checkedChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"labelClicked",{get:function(){var t=this;return null==this._labelClicked&&(this._labelClicked=new e.EventEmitter,this.i.labelClicked=n.delegateCombine(this.i.labelClicked,(function(e,n){var i=new Gr;i._provideImplementation(n),t.beforeLabelClicked&&t.beforeLabelClicked(t,i),t._labelClicked.emit({sender:t,args:i})}))),this._labelClicked},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"indexTypeChanged",{get:function(){var t=this;return null==this._indexTypeChanged&&(this._indexTypeChanged=new e.EventEmitter,this.i.indexTypeChanged=n.delegateCombine(this.i.indexTypeChanged,(function(e,n){t._runInZone((function(){var e=new Bl;e._provideImplementation(n),t.beforeIndexTypeChanged&&t.beforeIndexTypeChanged(t,e),t._indexTypeChanged.emit({sender:t,args:e})}))}))),this._indexTypeChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"keysCleared",{get:function(){var t=this;return null==this._keysCleared&&(this._keysCleared=new e.EventEmitter,this.i.keysCleared=n.delegateCombine(this.i.keysCleared,(function(e,n){t._runInZone((function(){var e=new Ml;e._provideImplementation(n),t.beforeKeysCleared&&t.beforeKeysCleared(t,e),t._keysCleared.emit({sender:t,args:e})}))}))),this._keysCleared},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectAllCheckboxChanged",{get:function(){var t=this;return null==this._selectAllCheckboxChanged&&(this._selectAllCheckboxChanged=new e.EventEmitter,this.i.selectAllCheckboxChanged=n.delegateCombine(this.i.selectAllCheckboxChanged,(function(e,n){var i=new Lr;i._provideImplementation(n),t.beforeSelectAllCheckboxChanged&&t.beforeSelectAllCheckboxChanged(t,i),t._selectAllCheckboxChanged.emit({sender:t,args:i})}))),this._selectAllCheckboxChanged},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-checkbox-list",inputs:{height:"height",width:"width",dataSource:"dataSource",keys:"keys",primaryKey:"primaryKey",dataMemberPath:"dataMemberPath",dataLegendTarget:"dataLegendTarget",subtitleMemberPath:"subtitleMemberPath",propertyTypeMemberPath:"propertyTypeMemberPath",selectedMemberPath:"selectedMemberPath",filterPlaceholderText:"filterPlaceholderText",searchInputType:"searchInputType",rowHeight:"rowHeight",cellTextStyle:"cellTextStyle",indexType:"indexType",baseTheme:"baseTheme",density:"density",searchIconColor:"searchIconColor",searchBackgroundColor:"searchBackgroundColor",labelClickTriggersChange:"labelClickTriggersChange",searchTextColor:"searchTextColor",searchBorderColor:"searchBorderColor",searchTextStyle:"searchTextStyle",checkboxTickColor:"checkboxTickColor",checkboxCheckedBackgroundColor:"checkboxCheckedBackgroundColor",checkboxUncheckedBackgroundColor:"checkboxUncheckedBackgroundColor",checkboxCheckedBorderColor:"checkboxCheckedBorderColor",checkboxUncheckedBorderColor:"checkboxUncheckedBorderColor",checkboxCornerRadius:"checkboxCornerRadius",scrollbarStyle:"scrollbarStyle",scrollbarBackground:"scrollbarBackground",selectAllCaption:"selectAllCaption",selectAllCaptionTextColor:"selectAllCaptionTextColor",actualSelectAllCaptionTextColor:"actualSelectAllCaptionTextColor",showSelectAll:"showSelectAll",backgroundColor:"backgroundColor",rowHoverBackgroundColor:"rowHoverBackgroundColor",textColor:"textColor",showFilter:"showFilter",isRowHoverEnabled:"isRowHoverEnabled",checkboxAlignedRight:"checkboxAlignedRight"},outputs:{selectedKeyAdded:"selectedKeyAdded",selectedKeyRemoved:"selectedKeyRemoved",checkedChanged:"checkedChanged",labelClicked:"labelClicked",indexTypeChanged:"indexTypeChanged",keysCleared:"keysCleared",selectAllCheckboxChanged:"selectAllCheckboxChanged"},host:{classAttribute:"ig-checkbox-list igx-checkbox-list"},providers:[],viewQueries:[{propertyName:"_listGrid",first:!0,predicate:["listGrid"],descendants:!0,read:Dl,static:!0},{propertyName:"_listContainer",first:!0,predicate:["listContainer"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_hrElement",first:!0,predicate:["hrElement"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_selectAllSection",first:!0,predicate:["selectAllSection"],descendants:!0,read:e.ElementRef,static:!0}],ngImport:e,template:'<div #listContainer style="width: 100%; height: 100%">\n <div> \n </div>\n <hr #hrElement>\n <div #selectAllSection key=\'checkBoxListSelectAllSection\'></div>\n <igx-data-grid #listGrid headerHeight="0"></igx-data-grid>\n </div>',isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],components:[{type:Dl,selector:"igx-data-grid",inputs:["height","width","dataSource","columnResizingMode","columnMovingMode","isRowHoverEnabled","rowHoverBackground","rowHoverTextColor","editRowBorder","editRowBorderWidthBottom","editRowBorderWidthLeft","editRowBorderWidthRight","editRowBorderWidthTop","sectionHeader","summaryRowRoot","summaryRowSection","rowSeparator","headerRowSeparator","headerSeparator","columnResizingSeparator","columnMovingSeparator","pinnedAreaSeparator","autoGenerateDesiredProperties","dataSourceDesiredProperties","density","actualRowHeight","rowHeight","defaultColumnMinWidth","actualHeaderHeight","headerHeight","headerClickAction","editMode","editModeClickAction","editOnKeyPress","autoGenerateColumns","rowSeparatorHeight","isPlaceholderRenderingEnabled","columnAddingAnimationMode","columnPropertyUpdatingAnimationMode","cellDataLoadedAnimationMode","rowSelectionAnimationMode","rowHoverAnimationMode","cellSelectionAnimationMode","animationSettings","columnResizingAnimationMode","columnShowingAnimationMode","columnMovingAnimationMode","columnHidingAnimationMode","columnExchangingAnimationMode","selectionMode","activationMode","selectionBehavior","mouseDragSelectionEnabled","selectedItems","selectedKeys","selectedCells","selectedCellRanges","pinnedItems","pinnedKeys","isColumnOptionsEnabled","isGroupRowSticky","isHeaderSeparatorVisible","cellSelectedBackground","sectionHeaderSelectedBackground","summaryRootBackground","summarySectionBackground","pinnedRowOpacity","editTextStyle","editOpacity","deletedTextColor","stickyRowBackground","pinnedRowBackground","lastStickyRowBackground","activeCell","cellBackground","cellTextColor","headerSortIndicatorColor","headerSortIndicatorStyle","cellTextStyle","sectionHeaderBackground","sectionHeaderTextColor","sectionHeaderTextStyle","summaryRootLabelTextStyle","summarySectionLabelTextStyle","summaryRootValueTextColor","summaryRootValueTextStyle","summarySectionValueTextStyle","summarySectionValueTextColor","summaryRootLabelTextColor","summarySectionLabelTextColor","summaryRootSelectedBackground","summarySectionSelectedBackground","pinnedAreaSeparatorWidth","headerSeparatorWidth","headerSeparatorBackground","headerBackground","headerTextColor","headerTextStyle","rowSeparatorBackground","headerRowSeparatorBackground","rowSeparatorStickyRowBackground","rowSeparatorLastStickyRowBackground","rowSeparatorPinnedRowBackground","columnResizingSeparatorWidth","columnResizingSeparatorOpacity","columnMovingSeparatorWidth","columnMovingSeparatorOpacity","columnResizingSeparatorBackground","columnMovingSeparatorBackground","shiftSectionContent","columnOptionsIconAlignment","columnOptionsIconColor","columnOptionsIconBehavior","border","actualBorderWidth","borderWidthBottom","borderWidthLeft","borderWidthRight","borderWidthTop","notifyOnAllSelectionChanges","cornerRadiusBottomRight","cornerRadiusBottomLeft","cornerRadiusTopLeft","cornerRadiusTopRight","actualCornerRadiusBottomRight","actualCornerRadiusBottomLeft","actualCornerRadiusTopLeft","actualCornerRadiusTopRight","isActiveCellStyleEnabled","responsiveStates","initialSorts","initialGroups","initialSummaries","summaryScope","isGroupCollapsable","groupHeaderDisplayMode","isGroupExpandedDefault","groupSummaryDisplayMode","autoAcceptEdits","primaryKey","actualPrimaryKey","actualColumns","reactsToSortChanges","reactsToGroupChanges","reactsToFilterChanges","enterBehavior","enterBehaviorAfterEdit","isColumnOptionsSummariesEnabled","isColumnOptionsGroupingEnabled","mergedCellMode","mergedCellEvaluationCriteria","mergedCellVerticalAlignment","filterUIType","filterLogicalOperator","filterComparisonType","todayOverride","clearSelectionOnEscape","pageSize","isToolbarColumnChooserVisible","isToolbarColumnPinningVisible","toolbarTitle","toolbarColumnChooserText","toolbarColumnChooserTitle","toolbarColumnPinningText","toolbarColumnPinningTitle","scrollbarStyle","scrollbarBackground","allowCopyOperation","deferEventForRowDragSelection"],outputs:["filterExpressionsChanging","filterExpressionsChanged","cellPreviewPointerDown","cellPreviewPointerUp","cellPointerDown","cellPointerUp","cellClicked","sortDescriptionsChanged","groupDescriptionsChanged","summaryDescriptionsChanged","columnHiddenChanged","columnPinnedChanged","cellValueChanging","dataCommitted","dataCommitting","rootSummariesChanged","sizeChanged","actualColumnsChanged","columnsAutoGenerated","selectedItemsChanged","selectedKeysChanged","selectedCellsChanged","selectionChanged","activeCellChanged","selectedCellRangesChanged","columnWidthChanged","cellEditStarted","cellEditEnded","rowEditStarted","rowEditEnded","customFilterRequested","actualPrimaryKeyChange"]}],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:El,decorators:[{type:e.Component,args:[{selector:"igx-checkbox-list",template:'<div #listContainer style="width: 100%; height: 100%">\n <div> \n </div>\n <hr #hrElement>\n <div #selectAllSection key=\'checkBoxListSelectAllSection\'></div>\n <igx-data-grid #listGrid headerHeight="0"></igx-data-grid>\n </div>',changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-checkbox-list igx-checkbox-list"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_listGrid:[{type:e.ViewChild,args:["listGrid",{read:Dl,static:!0}]}],_listContainer:[{type:e.ViewChild,args:["listContainer",{read:e.ElementRef,static:!0}]}],_hrElement:[{type:e.ViewChild,args:["hrElement",{read:e.ElementRef,static:!0}]}],_selectAllSection:[{type:e.ViewChild,args:["selectAllSection",{read:e.ElementRef,static:!0}]}],height:[{type:e.Input}],width:[{type:e.Input}],dataSource:[{type:e.Input}],keys:[{type:e.Input}],primaryKey:[{type:e.Input}],dataMemberPath:[{type:e.Input}],dataLegendTarget:[{type:e.Input}],subtitleMemberPath:[{type:e.Input}],propertyTypeMemberPath:[{type:e.Input}],selectedMemberPath:[{type:e.Input}],filterPlaceholderText:[{type:e.Input}],searchInputType:[{type:e.Input}],rowHeight:[{type:e.Input}],cellTextStyle:[{type:e.Input}],indexType:[{type:e.Input}],baseTheme:[{type:e.Input}],density:[{type:e.Input}],searchIconColor:[{type:e.Input}],searchBackgroundColor:[{type:e.Input}],labelClickTriggersChange:[{type:e.Input}],searchTextColor:[{type:e.Input}],searchBorderColor:[{type:e.Input}],searchTextStyle:[{type:e.Input}],checkboxTickColor:[{type:e.Input}],checkboxCheckedBackgroundColor:[{type:e.Input}],checkboxUncheckedBackgroundColor:[{type:e.Input}],checkboxCheckedBorderColor:[{type:e.Input}],checkboxUncheckedBorderColor:[{type:e.Input}],checkboxCornerRadius:[{type:e.Input}],scrollbarStyle:[{type:e.Input}],scrollbarBackground:[{type:e.Input}],selectAllCaption:[{type:e.Input}],selectAllCaptionTextColor:[{type:e.Input}],actualSelectAllCaptionTextColor:[{type:e.Input}],showSelectAll:[{type:e.Input}],backgroundColor:[{type:e.Input}],rowHoverBackgroundColor:[{type:e.Input}],textColor:[{type:e.Input}],showFilter:[{type:e.Input}],isRowHoverEnabled:[{type:e.Input}],checkboxAlignedRight:[{type:e.Input}],selectedKeyAdded:[{type:e.Output}],selectedKeyRemoved:[{type:e.Output}],checkedChanged:[{type:e.Output}],labelClicked:[{type:e.Output}],indexTypeChanged:[{type:e.Output}],keysCleared:[{type:e.Output}],selectAllCheckboxChanged:[{type:e.Output}]}});var Al=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new hr},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-text-header",providers:[{provide:Co,useExisting:e.forwardRef((function(){return n}))},{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(Co);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Al,decorators:[{type:e.Component,args:[{selector:"igx-text-header",template:"",providers:[{provide:Co,useExisting:e.forwardRef((function(){return Al}))},{provide:ho,useExisting:e.forwardRef((function(){return Al}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var Vl=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Al],imports:[a.CommonModule],exports:[Al]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Vl,decorators:[{type:e.NgModule,args:[{declarations:[Al],imports:[a.CommonModule],exports:[Al],entryComponents:[]}]}]});var Nl=function(){function t(){n.TypeRegistrar.registerCons("IgxTextHeaderComponent",Al),n.TypeRegistrar.register("TextHeader",hr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Vl],exports:[Vl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Vl],Vl]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Nl,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Vl],exports:[Vl],entryComponents:[Al]}]}],ctorParameters:function(){return[]}});var Fl=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[po],imports:[a.CommonModule],exports:[po]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Fl,decorators:[{type:e.NgModule,args:[{declarations:[po],imports:[a.CommonModule],exports:[po],entryComponents:[]}]}]});var $l=function(){function t(){n.TypeRegistrar.registerCons("IgxSectionHeaderComponent",po),n.TypeRegistrar.register("SectionHeader",nr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Fl],exports:[Fl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Fl],Fl]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:$l,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Fl],exports:[Fl],entryComponents:[po]}]}],ctorParameters:function(){return[]}});var zl=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[il],imports:[a.CommonModule],exports:[il]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:zl,decorators:[{type:e.NgModule,args:[{declarations:[il],imports:[a.CommonModule],exports:[il],entryComponents:[]}]}]});var Gl=function(){function t(){n.TypeRegistrar.registerCons("IgxRowSeparatorComponent",il),n.TypeRegistrar.register("RowSeparator",ir.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,zl],exports:[zl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,zl],zl]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Gl,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,zl],exports:[zl],entryComponents:[il]}]}],ctorParameters:function(){return[]}});var Ll=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[ul],imports:[a.CommonModule],exports:[ul]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ll,decorators:[{type:e.NgModule,args:[{declarations:[ul],imports:[a.CommonModule],exports:[ul],entryComponents:[]}]}]});var ql=function(){function t(){n.TypeRegistrar.registerCons("IgxHeaderSeparatorComponent",ul),n.TypeRegistrar.register("HeaderSeparator",Xi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Ll],exports:[Ll]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Ll],Ll]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ql,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Ll],exports:[Ll],entryComponents:[ul]}]}],ctorParameters:function(){return[]}});var Hl=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[cl],imports:[a.CommonModule],exports:[cl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Hl,decorators:[{type:e.NgModule,args:[{declarations:[cl],imports:[a.CommonModule],exports:[cl],entryComponents:[]}]}]});var Wl=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnResizingSeparatorComponent",cl),n.TypeRegistrar.register("ColumnResizingSeparator",Ki.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Hl],exports:[Hl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Hl],Hl]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Wl,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Hl],exports:[Hl],entryComponents:[cl]}]}],ctorParameters:function(){return[]}});var Ul=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[hl],imports:[a.CommonModule],exports:[hl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ul,decorators:[{type:e.NgModule,args:[{declarations:[hl],imports:[a.CommonModule],exports:[hl],entryComponents:[]}]}]});var Kl=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnMovingSeparatorComponent",hl),n.TypeRegistrar.register("ColumnMovingSeparator",Vi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Ul],exports:[Ul]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Ul],Ul]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Kl,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Ul],exports:[Ul],entryComponents:[hl]}]}],ctorParameters:function(){return[]}});var Xl=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[mo],imports:[a.CommonModule],exports:[mo]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Xl,decorators:[{type:e.NgModule,args:[{declarations:[mo],imports:[a.CommonModule],exports:[mo],entryComponents:[]}]}]});var Zl=function(){function t(){n.TypeRegistrar.registerCons("IgxSummaryRowRootComponent",mo),n.TypeRegistrar.register("SummaryRowRoot",ar.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Xl],exports:[Xl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Xl],Xl]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Zl,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Xl],exports:[Xl],entryComponents:[mo]}]}],ctorParameters:function(){return[]}});var Yl=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[go],imports:[a.CommonModule],exports:[go]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Yl,decorators:[{type:e.NgModule,args:[{declarations:[go],imports:[a.CommonModule],exports:[go],entryComponents:[]}]}]});var Ql=function(){function t(){n.TypeRegistrar.registerCons("IgxSummaryRowSectionComponent",go),n.TypeRegistrar.register("SummaryRowSection",sr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Yl],exports:[Yl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Yl],Yl]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ql,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Yl],exports:[Yl],entryComponents:[go]}]}],ctorParameters:function(){return[]}});var Jl=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Jl,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var tu=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnWidth",yo),n.TypeRegistrar.register("ColumnWidth",Ft.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Jl],exports:[Jl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Jl],Jl]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:tu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Jl],exports:[Jl],entryComponents:[]}]}],ctorParameters:function(){return[]}});var eu=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:eu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var nu=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnSortDescription",No),n.TypeRegistrar.register("ColumnSortDescription",Ot.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,eu],exports:[eu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,eu],eu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:nu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,eu],exports:[eu],entryComponents:[]}]}],ctorParameters:function(){return[]}});var iu=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:iu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var ru=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnGroupDescription",Go),n.TypeRegistrar.register("ColumnGroupDescription",kt.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,iu],exports:[iu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,iu],iu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ru,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,iu],exports:[iu],entryComponents:[]}]}],ctorParameters:function(){return[]}});var ou=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ou,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var au=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnSummaryDescription",Wo),n.TypeRegistrar.register("ColumnSummaryDescription",vt.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,ou],exports:[ou]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,ou],ou]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:au,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,ou],exports:[ou],entryComponents:[]}]}],ctorParameters:function(){return[]}});var su=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:su,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var lu=function(){function t(){n.TypeRegistrar.registerCons("IgxPrimaryKeyValue",ko),n.TypeRegistrar.register("PrimaryKeyValue",s.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,su],exports:[su]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,su],su]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:lu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,su],exports:[su],entryComponents:[]}]}],ctorParameters:function(){return[]}});var uu=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:uu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var cu=function(){function t(){n.TypeRegistrar.registerCons("IgxCellKey",Do),n.TypeRegistrar.register("CellKey",Si.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,uu],exports:[uu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,uu],uu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:cu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,uu],exports:[uu],entryComponents:[]}]}],ctorParameters:function(){return[]}});var hu=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:hu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var pu=function(){function t(){n.TypeRegistrar.registerCons("IgxCellRange",Eo),n.TypeRegistrar.register("CellRange",_e.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,hu],exports:[hu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,hu],hu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:pu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,hu],exports:[hu],entryComponents:[]}]}],ctorParameters:function(){return[]}});var du=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:du,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var fu=function(){function t(){n.TypeRegistrar.registerCons("IgxGridCellPosition",ol),n.TypeRegistrar.register("GridCellPosition",b.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,du],exports:[du]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,du],du]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:fu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,du],exports:[du],entryComponents:[]}]}],ctorParameters:function(){return[]}});var mu=n.markEnum("CheckboxListExternalIndexType","Selected,0|DeSelected,1"),gu=function(t){function e(e){var n=t.call(this,e)||this;return n.ac=null,n.af=null,n.ad=null,n.ae=null,n.u=null,n.x=null,n.v=null,n.w=null,n.y=null,n.aa=null,n.z=null,n.ab=null,n}return i.__extends(e,t),e.prototype.getDesiredSize=function(t,e){return this.t.getDesiredSize(e)},e.prototype.addHandler=function(t,e,i,r){var o=t;switch(i){case 2:o.checkedChanged=n.delegateCombine(o.checkedChanged,n.runOn(this,this.ag)),this.u=r,this.ac=e;break;case 20:o.labelClicked=n.delegateCombine(o.labelClicked,n.runOn(this,this.al)),this.x=r,this.af=e;break;case 18:o.selectedKeyAdded=n.delegateCombine(o.selectedKeyAdded,n.runOn(this,this.ai)),this.v=r,this.ad=e;break;case 19:o.selectedKeyRemoved=n.delegateCombine(o.selectedKeyRemoved,n.runOn(this,this.aj)),this.w=r,this.ae=e;break;case 22:o.indexTypeChanged=n.delegateCombine(o.indexTypeChanged,n.runOn(this,this.ah)),this.y=r,this.aa=e;break;case 26:o.keysCleared=n.delegateCombine(o.keysCleared,n.runOn(this,this.ak)),this.z=r,this.ab=e}},e.prototype.ak=function(t,e){null!=this.z&&this.z(this.ab,new n.NativeUICheckboxListKeysClearedEventArgs)},e.prototype.ah=function(t,e){var i;null!=this.y&&this.y(this.aa,((i=new n.NativeUICheckboxListIndexTypeChangedEventArgs).b=e.b,i.a=e.a,i))},e.prototype.removeHandler=function(t,e,i,r){var o=t;switch(i){case 2:o.checkedChanged=n.delegateRemove(o.checkedChanged,n.runOn(this,this.ag)),this.u=null,this.ac=null;break;case 20:o.labelClicked=n.delegateRemove(o.labelClicked,n.runOn(this,this.al)),this.x=null,this.af=null;break;case 18:o.selectedKeyAdded=n.delegateRemove(o.selectedKeyAdded,n.runOn(this,this.ai)),this.v=null,this.ad=null;break;case 19:o.selectedKeyRemoved=n.delegateRemove(o.selectedKeyRemoved,n.runOn(this,this.aj)),this.w=null,this.ae=null;break;case 22:o.indexTypeChanged=n.delegateRemove(o.indexTypeChanged,n.runOn(this,this.ah)),this.y=null,this.aa=null}},e.prototype.ag=function(t,e){var i;null!=this.u&&this.u(this.ac,((i=new n.NativeUICheckboxListChangeEventArgs).c=e.c,i.b=e.b,i.a=e.a,i))},e.prototype.al=function(t,e){var i;null!=this.x&&this.x(this.af,((i=new n.NativeUICheckboxListChangeEventArgs).c=e.c,i.b=e.b,i.a=e.a,i))},e.prototype.ai=function(t,e){var i;null!=this.v&&this.v(this.ad,((i=new n.NativeUICheckboxListChangeEventArgs).c=e.c,i.b=e.b,i.a=e.a,i))},e.prototype.aj=function(t,e){var i;null!=this.w&&this.w(this.ae,((i=new n.NativeUICheckboxListChangeEventArgs).c=e.c,i.b=e.b,i.a=e.a,i))},e.prototype.setValue=function(t,e,i){var r=t;switch(e){case 23:r.backgroundColor=i;break;case 8:r.itemsSource=i;break;case 75:r.selectedMemberPath=i;break;case 76:r.dataMemberPath=i;break;case 77:r.subtitleMemberPath=i;break;case 79:r.showSelectAll=i;break;case 80:r.primaryKey=i;break;case 1:r.density=n.EnumUtil.getEnumValue(n.ControlDisplayDensity_$type,i);break;case 18:r.baseTheme=n.EnumUtil.getEnumValue(n.BaseControlTheme_$type,i);break;case 33:r.textColor=i;break;case 24:r.rowHoverBackgroundColor=i;break;case 81:r.searchIconColor=i;break;case 82:r.searchTextColor=i;break;case 99:r.indexType=n.EnumUtil.getEnumValue(n.NativeUICheckboxListIndexType_$type,i);break;case 113:r.checkboxAlignedRight=i;break;case 114:r.labelClickTriggersChange=i;break;case 115:r.dataLegendTarget=i;break;case 78:r.propertyTypeMemberPath=i;break;case 17:r.checkboxCornerRadius=i}},e.prototype.getValue=function(t,e){var i=t;switch(e){case 23:return i.backgroundColor;case 8:return i.itemsSource;case 75:return i.selectedMemberPath;case 76:return i.dataMemberPath;case 77:return i.subtitleMemberPath;case 79:return i.showSelectAll;case 80:return i.primaryKey;case 1:return n.enumGetBox(n.ControlDisplayDensity_$type,i.density);case 18:return n.enumGetBox(n.BaseControlTheme_$type,i.baseTheme);case 33:return i.textColor;case 24:return i.rowHoverBackgroundColor;case 81:return i.searchIconColor;case 82:return i.searchTextColor;case 99:return n.enumGetBox(mu,i.indexType);case 113:return i.checkboxAlignedRight;case 114:return i.labelClickTriggersChange;case 115:return i.dataLegendTarget;case 78:return i.propertyTypeMemberPath;case 17:return i.checkboxCornerRadius}return null},e.prototype.clearSelectedKeys=function(t){t.clearSelectedKeys()},e.prototype.addSelectedKey=function(t,e,n){t.addSelectedKey(e,n)},e.prototype.insertSelectedKey=function(t,e,n,i){t.insertSelectedKey(e,n,i)},e.prototype.removeSelectedKeyAt=function(t,e){t.removeSelectedKeyAt(e)},e.prototype.refresh=function(t){t.refresh()},e.prototype.am=function(t,e){},e.$t=n.markType(e,"CheckboxListBridge",r.XComponentBridge.$,[n.INativeUICheckboxListBridge_$type]),e}(r.XComponentBridge),yu=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=2,e}return i.__extends(e,t),Object.defineProperty(e,"instance",{get:function(){return null==e.a&&(e.a=new e),e.a},enumerable:!1,configurable:!0}),e.register=function(){n.NativeUIComponent.as(e.instance)},Object.defineProperty(e.prototype,"flavor",{get:function(){return this.c},enumerable:!1,configurable:!0}),e.prototype.createComponent=function(t,e,n){switch(e){case 16:this.d(t,n)}},e.prototype.createComponentSync=function(t,e,n){this.createComponent(t,e,n)},e.prototype.supportsComponent=function(t){switch(t){case 16:return!0}return!1},e.prototype.d=function(t,e){var i=t,r=i.createElement("div");r.setStyleProperty("width","100%"),r.setStyleProperty("height","100%"),i.getPortal(r,"CheckboxList",(function(t){var i=t.componentRef;i.width="100%",i.height="100%";var o=i.i,a=new gu(o),s=new n.NativeUICheckboxList;s.an=r,s.d=a,e(s)}),!1)},e.$t=n.markType(e,"NativeUIGridFactory",n.Base.$,[n.INativeUIElementFactory_$type]),e.a=null,e}(n.Base),bu=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.register=function(){yu.register(),r.NativeUIXInputsFactory.m(),o.NativeUILayoutFactory.g()},e.$t=n.markType(e,"GridModuleHelper"),e}(n.Base),vu=function(){function t(){n.TypeRegistrar.register("GridModuleHelper",bu.$type),bu.register()}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Dl],imports:[a.CommonModule,Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,Jl,eu,iu,ou,su,uu,hu,du,n.IgxLocalDataSourceModule,n.IgxNumberFormatSpecifierModule,n.IgxDateTimeFormatSpecifierModule,o.IgxToolbarDynamicModule],exports:[Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,Jl,eu,iu,ou,su,uu,hu,du,n.IgxLocalDataSourceModule,n.IgxNumberFormatSpecifierModule,n.IgxDateTimeFormatSpecifierModule,o.IgxToolbarDynamicModule,Dl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,Jl,eu,iu,ou,su,uu,hu,du,n.IgxLocalDataSourceModule,n.IgxNumberFormatSpecifierModule,n.IgxDateTimeFormatSpecifierModule,o.IgxToolbarDynamicModule],Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,Jl,eu,iu,ou,su,uu,hu,du,n.IgxLocalDataSourceModule,n.IgxNumberFormatSpecifierModule,n.IgxDateTimeFormatSpecifierModule,o.IgxToolbarDynamicModule]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:vu,decorators:[{type:e.NgModule,args:[{declarations:[Dl],exports:[Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,Jl,eu,iu,ou,su,uu,hu,du,n.IgxLocalDataSourceModule,n.IgxNumberFormatSpecifierModule,n.IgxDateTimeFormatSpecifierModule,o.IgxToolbarDynamicModule,Dl],imports:[a.CommonModule,Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,Jl,eu,iu,ou,su,uu,hu,du,n.IgxLocalDataSourceModule,n.IgxNumberFormatSpecifierModule,n.IgxDateTimeFormatSpecifierModule,o.IgxToolbarDynamicModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Cu=function(){function t(){n.TypeRegistrar.registerCons("IgxDataGridComponent",Dl),n.TypeRegistrar.register("GridModuleHelper",bu.$type),bu.register()}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,tu,nu,ru,au,lu,cu,pu,fu,n.IgxLocalDataSourceDynamicModule,n.IgxNumberFormatSpecifierDynamicModule,n.IgxDateTimeFormatSpecifierDynamicModule,o.IgxToolbarDynamicModule,vu],exports:[Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,tu,nu,ru,au,lu,cu,pu,fu,n.IgxLocalDataSourceDynamicModule,n.IgxNumberFormatSpecifierDynamicModule,n.IgxDateTimeFormatSpecifierDynamicModule,o.IgxToolbarDynamicModule,vu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,tu,nu,ru,au,lu,cu,pu,fu,n.IgxLocalDataSourceDynamicModule,n.IgxNumberFormatSpecifierDynamicModule,n.IgxDateTimeFormatSpecifierDynamicModule,o.IgxToolbarDynamicModule,vu],Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,tu,nu,ru,au,lu,cu,pu,fu,n.IgxLocalDataSourceDynamicModule,n.IgxNumberFormatSpecifierDynamicModule,n.IgxDateTimeFormatSpecifierDynamicModule,o.IgxToolbarDynamicModule,vu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Cu,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,tu,nu,ru,au,lu,cu,pu,fu,n.IgxLocalDataSourceDynamicModule,n.IgxNumberFormatSpecifierDynamicModule,n.IgxDateTimeFormatSpecifierDynamicModule,o.IgxToolbarDynamicModule,vu],imports:[a.CommonModule,Nl,$l,Gl,ql,Wl,Kl,Zl,Ql,tu,nu,ru,au,lu,cu,pu,fu,n.IgxLocalDataSourceDynamicModule,n.IgxNumberFormatSpecifierDynamicModule,n.IgxDateTimeFormatSpecifierDynamicModule,o.IgxToolbarDynamicModule,vu],entryComponents:[Dl]}]}],ctorParameters:function(){return[]}});var xu=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),r.prototype.createImplementation=function(){return new cr},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"editorType",{get:function(){return this.i.n3},set:function(t){this.i.n3=n.ensureEnum(q,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorDataSource",{get:function(){return this.i.n4},set:function(t){this.i.n4=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorTextField",{get:function(){return this.i.n6},set:function(t){this.i.n6=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorValueField",{get:function(){return this.i.n7},set:function(t){this.i.n7=t},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-text-column",inputs:{editorType:"editorType",editorDataSource:"editorDataSource",editorTextField:"editorTextField",editorValueField:"editorValueField"},providers:[{provide:So,useExisting:e.forwardRef((function(){return r}))},{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(So);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:xu,decorators:[{type:e.Component,args:[{selector:"igx-text-column",template:"",providers:[{provide:So,useExisting:e.forwardRef((function(){return xu}))},{provide:ho,useExisting:e.forwardRef((function(){return xu}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{editorType:[{type:e.Input}],editorDataSource:[{type:e.Input}],editorTextField:[{type:e.Input}],editorValueField:[{type:e.Input}]}});var _u=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[xu],imports:[a.CommonModule],exports:[xu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:_u,decorators:[{type:e.NgModule,args:[{declarations:[xu],imports:[a.CommonModule],exports:[xu],entryComponents:[]}]}]});var wu=function(){function t(){n.TypeRegistrar.registerCons("IgxTextColumnComponent",xu),n.TypeRegistrar.register("TextColumn",cr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,_u],exports:[_u]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,_u],_u]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:wu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,_u],exports:[_u],entryComponents:[xu]}]}],ctorParameters:function(){return[]}});var Su=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),r.prototype.createImplementation=function(){return new Qi},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"negativePrefix",{get:function(){return this.i.oy},set:function(t){this.i.oy=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"positivePrefix",{get:function(){return this.i.o2},set:function(t){this.i.o2=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"negativeSuffix",{get:function(){return this.i.o0},set:function(t){this.i.o0=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"positiveSuffix",{get:function(){return this.i.o4},set:function(t){this.i.o4=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"maxFractionDigits",{get:function(){return this.i.od},set:function(t){this.i.od=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"minFractionDigits",{get:function(){return this.i.oe},set:function(t){this.i.oe=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"minIntegerDigits",{get:function(){return this.i.of},set:function(t){this.i.of=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"showGroupingSeparator",{get:function(){return this.i.n8},set:function(t){this.i.n8=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"formatString",{get:function(){return this.i.ot},set:function(t){this.i.ot=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"formatSpecifiers",{get:function(){return this.i.n4},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.n4=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"formatOverride",{get:function(){return this.i.oi},set:function(t){this.i.oi=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorType",{get:function(){return this.i.n6},set:function(t){this.i.n6=n.ensureEnum(q,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorDataSource",{get:function(){return this.i.oh},set:function(t){this.i.oh=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorTextField",{get:function(){return this.i.oo},set:function(t){this.i.oo=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorValueField",{get:function(){return this.i.op},set:function(t){this.i.op=t},enumerable:!1,configurable:!0}),r.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(null!=this.formatSpecifiers&&n.arrayFindByName(this.formatSpecifiers,e)?n.arrayFindByName(this.formatSpecifiers,e):null)},r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-numeric-column",inputs:{negativePrefix:"negativePrefix",positivePrefix:"positivePrefix",negativeSuffix:"negativeSuffix",positiveSuffix:"positiveSuffix",maxFractionDigits:"maxFractionDigits",minFractionDigits:"minFractionDigits",minIntegerDigits:"minIntegerDigits",showGroupingSeparator:"showGroupingSeparator",formatString:"formatString",formatSpecifiers:"formatSpecifiers",formatOverride:"formatOverride",editorType:"editorType",editorDataSource:"editorDataSource",editorTextField:"editorTextField",editorValueField:"editorValueField"},providers:[{provide:So,useExisting:e.forwardRef((function(){return r}))},{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(So);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Su,decorators:[{type:e.Component,args:[{selector:"igx-numeric-column",template:"",providers:[{provide:So,useExisting:e.forwardRef((function(){return Su}))},{provide:ho,useExisting:e.forwardRef((function(){return Su}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{negativePrefix:[{type:e.Input}],positivePrefix:[{type:e.Input}],negativeSuffix:[{type:e.Input}],positiveSuffix:[{type:e.Input}],maxFractionDigits:[{type:e.Input}],minFractionDigits:[{type:e.Input}],minIntegerDigits:[{type:e.Input}],showGroupingSeparator:[{type:e.Input}],formatString:[{type:e.Input}],formatSpecifiers:[{type:e.Input}],formatOverride:[{type:e.Input}],editorType:[{type:e.Input}],editorDataSource:[{type:e.Input}],editorTextField:[{type:e.Input}],editorValueField:[{type:e.Input}]}});var Pu=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Su],imports:[a.CommonModule],exports:[Su]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Pu,decorators:[{type:e.NgModule,args:[{declarations:[Su],imports:[a.CommonModule],exports:[Su],entryComponents:[]}]}]});var Ou=function(){function t(){n.TypeRegistrar.registerCons("IgxNumericColumnComponent",Su),n.TypeRegistrar.register("NumericColumn",Qi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Pu],exports:[Pu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Pu],Pu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ou,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Pu],exports:[Pu],entryComponents:[Su]}]}],ctorParameters:function(){return[]}});var Iu=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),r.prototype.createImplementation=function(){return new Fi},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"dateTimeFormat",{get:function(){return this.i.n8},set:function(t){this.i.n8=n.ensureEnum($,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"formatString",{get:function(){return this.i.oq},set:function(t){this.i.oq=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorFormatString",{get:function(){return this.i.oj},set:function(t){this.i.oj=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"formatSpecifiers",{get:function(){return this.i.n4},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.n4=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"formatOverride",{get:function(){return this.i.of},set:function(t){this.i.of=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"showTodayButton",{get:function(){return this.i.ob},set:function(t){this.i.ob=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorType",{get:function(){return this.i.n9},set:function(t){this.i.n9=n.ensureEnum(q,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorDataSource",{get:function(){return this.i.oe},set:function(t){this.i.oe=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorTextField",{get:function(){return this.i.ol},set:function(t){this.i.ol=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorValueField",{get:function(){return this.i.om},set:function(t){this.i.om=t},enumerable:!1,configurable:!0}),r.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(null!=this.formatSpecifiers&&n.arrayFindByName(this.formatSpecifiers,e)?n.arrayFindByName(this.formatSpecifiers,e):null)},r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-date-time-column",inputs:{dateTimeFormat:"dateTimeFormat",formatString:"formatString",editorFormatString:"editorFormatString",formatSpecifiers:"formatSpecifiers",formatOverride:"formatOverride",showTodayButton:"showTodayButton",editorType:"editorType",editorDataSource:"editorDataSource",editorTextField:"editorTextField",editorValueField:"editorValueField"},providers:[{provide:So,useExisting:e.forwardRef((function(){return r}))},{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(So);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Iu,decorators:[{type:e.Component,args:[{selector:"igx-date-time-column",template:"",providers:[{provide:So,useExisting:e.forwardRef((function(){return Iu}))},{provide:ho,useExisting:e.forwardRef((function(){return Iu}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{dateTimeFormat:[{type:e.Input}],formatString:[{type:e.Input}],editorFormatString:[{type:e.Input}],formatSpecifiers:[{type:e.Input}],formatOverride:[{type:e.Input}],showTodayButton:[{type:e.Input}],editorType:[{type:e.Input}],editorDataSource:[{type:e.Input}],editorTextField:[{type:e.Input}],editorValueField:[{type:e.Input}]}});var ju=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Iu],imports:[a.CommonModule],exports:[Iu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ju,decorators:[{type:e.NgModule,args:[{declarations:[Iu],imports:[a.CommonModule],exports:[Iu],entryComponents:[]}]}]});var ku=function(){function t(){n.TypeRegistrar.registerCons("IgxDateTimeColumnComponent",Iu),n.TypeRegistrar.register("DateTimeColumn",Fi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,ju],exports:[ju]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,ju],ju]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ku,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,ju],exports:[ju],entryComponents:[Iu]}]}],ctorParameters:function(){return[]}});var Tu=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new ur},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"isCanvasBased",{get:function(){return this.i.content.isCanvasBased},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"content",{get:function(){return this.isCanvasBased?null:this.i.content.element.getNativeElement()},enumerable:!1,configurable:!0}),t.prototype.ensureCorrectSize=function(){return this.i.content.ensureCorrectSize()},Object.defineProperty(t.prototype,"context",{get:function(){return this.isCanvasBased?this.i.content.templateContext:null},enumerable:!1,configurable:!0}),t.prototype.renderStandardBackground=function(){this.i.content.renderStandardBackground()},t.prototype.renderStandardContent=function(){this.i.content.renderStandardContent()},Object.defineProperty(t.prototype,"cellInfo",{get:function(){if(null==this.i.cellInfo)return null;if(!this.i.cellInfo.externalObject){var t=null;switch(this.i.cellInfo.$type.name){case"DateTimeCellModel":t=new Hr;break;case"ImageCellModel":t=new Wr;break;case"NumericCellModel":t=new Ur;break;case"RowSeparatorModel":t=new Kr;break;case"SectionHeaderCellModel":t=new Xr;break;case"TemplateCellModel":t=new Zr;break;case"TemplateHeaderCellModel":t=new Jr;break;case"TemplateSectionHeaderCellModel":t=new eo;break;case"TextCellModel":t=new no;break;case"TextHeaderCellModel":t=new io}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),t}(),Ru=function(t){function r(){var e=t.call(this)||this;return e._cellUpdating=null,e}return i.__extends(r,t),r.prototype.createImplementation=function(){return new lr},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"cellUpdating",{get:function(){var t=this;return null==this._cellUpdating&&(this._cellUpdating=new e.EventEmitter,this.i.cellUpdating=n.delegateCombine(this.i.cellUpdating,(function(e,n){var i=new Tu;i._provideImplementation(n),t.beforeCellUpdating&&t.beforeCellUpdating(t,i),t._cellUpdating.emit({sender:t,args:i})}))),this._cellUpdating},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-template-column",outputs:{cellUpdating:"cellUpdating"},providers:[{provide:So,useExisting:e.forwardRef((function(){return r}))},{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(So);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ru,decorators:[{type:e.Component,args:[{selector:"igx-template-column",template:"",providers:[{provide:So,useExisting:e.forwardRef((function(){return Ru}))},{provide:ho,useExisting:e.forwardRef((function(){return Ru}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{cellUpdating:[{type:e.Output}]}});var Du=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Ru],imports:[a.CommonModule],exports:[Ru]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Du,decorators:[{type:e.NgModule,args:[{declarations:[Ru],imports:[a.CommonModule],exports:[Ru],entryComponents:[]}]}]});var Bu=function(){function t(){n.TypeRegistrar.registerCons("IgxTemplateColumnComponent",Ru),n.TypeRegistrar.register("TemplateColumn",lr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Du],exports:[Du]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Du],Du]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Bu,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Du],exports:[Du],entryComponents:[Ru]}]}],ctorParameters:function(){return[]}});var Mu=function(){function t(){n.TypeRegistrar.registerCons("IgxCheckboxListComponent",El),n.TypeRegistrar.register("NativeUIGridFactory",yu.$type),yu.register(),n.TypeRegistrar.register("CheckboxList",zr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[El],imports:[a.CommonModule,vu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule],exports:[vu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,El]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,vu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule],vu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Mu,decorators:[{type:e.NgModule,args:[{declarations:[El],exports:[vu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,El],imports:[a.CommonModule,vu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Eu=function(){function t(){n.TypeRegistrar.registerCons("CheckboxList",zr),n.TypeRegistrar.registerCons("IgxCheckboxListComponent",El),n.TypeRegistrar.register("NativeUIGridFactory",yu.$type),yu.register(),n.TypeRegistrar.register("CheckboxList",zr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Cu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,Mu],exports:[Cu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,Mu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Cu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,Mu],Cu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,Mu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Eu,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Cu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,Mu],imports:[a.CommonModule,Cu,wu,Ou,ku,Bu,r.IgxXCheckboxDynamicModule,r.IgxXInputGroupDynamicModule,Mu],entryComponents:[El]}]}],ctorParameters:function(){return[]}});var Au=function(t){function e(){var e=t.call(this)||this;return e.columnName=null,e.isNotHidden=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"ColumnChooserInfo"),e}(n.Base),Vu=function(t){function e(){var e=t.call(this)||this;return e.d=null,e.c=null,e.e=null,e.a=null,e.b=null,e}return i.__extends(e,t),e.prototype.h=function(){},e.prototype.g=function(t){if(null!=t){this.b=t,this.e=this.b.rootWrapper.getChildAt(0),this.e.setStyleProperty("margin","4px 0px 4px 0px"),this.k(),this.j();Math.round(t.rootWrapper.width()),Math.round(t.rootWrapper.height());this.b.rootWrapper.setStyleProperty("position","relative"),this.i()}else this.b=null},e.prototype.i=function(){null!=this.b&&this.b.rootWrapper.setStyleProperty("background-color",this.a.aq._fill)},e.prototype.j=function(){if(null!=this.b){var t=this.b.rootWrapper.getChildAt(1);t.setStyleProperty("width","100%"),null!=this.a.v?t.setStyleProperty("height","calc(100% - 25px"):t.setStyleProperty("height","calc(100% - 5px")}},e.prototype.k=function(){null!=this.e&&null!=this.a.v&&(this.e.setText(this.a.v),this.e.setStyleProperty("font","16px Verdana")),this.l(),this.m(),this.j()},e.prototype.l=function(){null!=this.e&&null!=this.a.ar&&this.e.setStyleProperty("color",this.a.ar._fill)},e.prototype.m=function(){null!=this.e&&null!=this.a.j&&this.e.setStyleProperty("font",this.a.j.fontString)},e.prototype.f=function(){},e.$t=n.markType(e,"ColumnChooserView"),e}(n.Base),Nu=function(t){function e(){var e=t.call(this)||this;e.a=null,e.d=null,e.propertyChanged=null,e.m=!1,e.k=null,e.b=null,e.o=null,e.i=null,e.ap=n.BrushUtil.j(255,0,153,255),e.n=null,e.e=1,e.g=2,e.ao=n.BrushUtil.j(255,248,248,248),e.m=!1;var i=new Vu;return i.a=e,e.a=i,e.a.h(),e}return i.__extends(e,t),e.prototype.notifySizeChanged=function(){this.a.f()},e.prototype.destroy=function(){if(null!=this.d){var t=this.d;t.checkedChanged=n.delegateRemove(t.checkedChanged,n.runOn(this,this.ac));var e=this.d;e.selectAllCheckboxChanged=n.delegateRemove(e.selectAllCheckboxChanged,n.runOn(this,this.ad))}if(this.provideContainer(null,null),null!=this.b){var i=this.b.actualColumns;i.collectionChanged=n.delegateRemove(i.collectionChanged,n.runOn(this,this.z));var r=this.b;r.columnHiddenChanged=n.delegateRemove(r.columnHiddenChanged,n.runOn(this,this.am))}},e.prototype.provideContainer=function(t,e){if(this.d=e,null!=this.d){var i=this.d;i.checkedChanged=n.delegateCombine(i.checkedChanged,n.runOn(this,this.ac));var r=this.d;r.selectAllCheckboxChanged=n.delegateCombine(r.selectAllCheckboxChanged,n.runOn(this,this.ad))}this.aa(),this.a.g(t)},Object.defineProperty(e.prototype,"l",{get:function(){return null==this.k&&(this.k=new n.SRProvider(this.a.b),this.k.cb("DataGrid")),this.k},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.ag("TargetGrid",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,e!=this.o&&this.ag("Title",e,this.o)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.ag("TitleStyle",e,this.i)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ar",{get:function(){return this.ap},set:function(t){var e=this.ap;this.ap=t,e!=this.ap&&this.ag("TitleColor",e,this.ap)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"s",{get:function(){return null!=this.n?this.n:n.stringIsNullOrWhiteSpace(this.l.b1("Filter_Columns_List"))?"Filter columns list ...":this.l.b1("Filter_Columns_List")},set:function(t){var e=this.n;this.n=t,e!=this.n&&this.ag("FilterPlaceholderText",e,this.n)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.ag("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,this.e))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.ag("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.g))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aq",{get:function(){return this.ao},set:function(t){var e=this.ao;this.ao=t,e!=this.ao&&this.ag("BackgroundColor",e,this.ao)},enumerable:!1,configurable:!0}),e.prototype.ag=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.ah(t,e,i)},e.prototype.ah=function(t,e,i){switch(t){case"TargetGrid":if(null!=e){var r=e.actualColumns;r.collectionChanged=n.delegateRemove(r.collectionChanged,n.runOn(this,this.z));var o=e;o.columnHiddenChanged=n.delegateRemove(o.columnHiddenChanged,n.runOn(this,this.am))}if(null!=this.b){var a=this.b.actualColumns;a.collectionChanged=n.delegateCombine(a.collectionChanged,n.runOn(this,this.z));var s=this.b;s.columnHiddenChanged=n.delegateCombine(s.columnHiddenChanged,n.runOn(this,this.am))}this.aa();break;case"Title":this.a.k();break;case"TitleStyle":this.a.m();break;case"TitleColor":this.a.l();break;case"FilterPlaceholderText":null!=this.d&&(this.d.b4=this.s);break;case"BaseTheme":this.ak();break;case"Density":this.aj();break;case"BackgroundColor":null!=this.d&&(this.d.backgroundColor=this.aq),this.a.i()}},e.prototype.ak=function(){null!=this.d&&(this.d.baseTheme=this.f)},e.prototype.aj=function(){null!=this.d&&(this.d.density=this.h)},e.prototype.am=function(t,e){0==this.m&&this.aa(),this.m=!1},e.prototype.z=function(t,e){this.aa()},e.prototype.aa=function(){var t,e;if(null!=this.b&&null!=this.d){this.d.baseTheme=this.f,this.d.density=this.h,this.d.backgroundColor=this.aq;var r=void 0,o=new n.ObservableCollection$1(Au.$,0);try{for(var a=i.__values(n.fromEnum(this.b.actualColumns)),s=a.next();!s.done;s=a.next()){var l=s.value;r=new Au;var u=l.lo;null!=l.lv&&(u=l.lv),r.columnName=u,r.isNotHidden=!l.jo,o.add(r)}}catch(e){t={error:e}}finally{try{s&&!s.done&&(e=a.return)&&e.call(a)}finally{if(t)throw t.error}}null!=this.s&&(this.d.b4=this.s),this.d.itemsSource=o;"columnName","isNotHidden",this.d.selectedMemberPath="isNotHidden",this.d.dataMemberPath="columnName",this.d.showSelectAll=!0}},e.prototype.an=function(t){null!=this.d&&this.d.updateHrMargin(t)},e.prototype.al=function(){var t,e;if(this.d.d3(),null!=this.b)try{for(var r=i.__values(n.fromEnum(this.b.actualColumns)),o=r.next();!o.done;o=r.next()){var a=o.value;this.m=!0,a.jo=!1}}catch(e){t={error:e}}finally{try{o&&!o.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},e.prototype.ae=function(){var t,e;if(this.d.c5(),null!=this.b)try{for(var r=i.__values(n.fromEnum(this.b.actualColumns)),o=r.next();!o.done;o=r.next()){var a=o.value;this.m=!0,a.jo=!0}}catch(e){t={error:e}}finally{try{o&&!o.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},e.prototype.ad=function(t,e){this.m=!0,e.a?this.al():this.ae()},e.prototype.ac=function(t,e){this.m=!0;for(var n=this.d.f.actualDataSource.getItemAtIndex(e.c),i=this.b.actualColumns.count,r=0;r<i;r++)this.b.actualColumns._inner[r].lo!=n.columnName&&this.b.actualColumns._inner[r].mf!=n.columnName&&this.b.actualColumns._inner[r].lv!=n.columnName||(this.b.actualColumns._inner[r].jo=!e.b,this.b.actualColumns._inner[r].m0("Hidden"))},e.$t=n.markType(e,"ColumnChooser",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),Fu=function(){function t(t,e,i,r,o){this.renderer=t,this._elRef=e,this.ngZone=i,this.injector=r,this.componentFactoryResolver=o,this._wrapper=null,this._root=null,this._implementation=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation();var a=this.i;this._columnChooser=a}return Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this._columnChooser.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this._columnChooser.notifySizeChanged()},enumerable:!1,configurable:!0}),t.prototype.updateStyle=function(){this._styling(this._root,this)},t.prototype.ngOnDestroy=function(){this._columnChooser.destroy(),this._wrapper.destroy()},t.prototype.ngAfterViewInit=function(){var t=this;if(this.renderer&&null!=this._checkboxList&&null!=this._chooserContainer){this.container=this._chooserContainer.nativeElement,this.container=this._chooserContainer.nativeElement,this._root=this.container;var e=new n.AngularRenderer(this.container,this.renderer,window.document,this.ngZone,!0,null);this._wrapper=e,this._columnChooser.provideContainer(e,this._checkboxList.i),this._columnChooser.notifySizeChanged(),e.addSizeWatcher((function(){t._columnChooser.notifySizeChanged()}))}this._styling(this._root,this),this.i.notifySizeChanged(),this.updateStyle()},t.prototype.createImplementation=function(){return new Nu},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"targetGrid",{get:function(){var t=this.i.c;return null==t?null:t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.c=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"title",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"titleStyle",{get:function(){return null==this.i.j?null:this.i.j.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.j=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"titleColor",{get:function(){return n.brushToString(this.i.ar)},set:function(t){this.i.ar=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterPlaceholderText",{get:function(){return this.i.s},set:function(t){this.i.s=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.f},set:function(t){this.i.f=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.h},set:function(t){this.i.h=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.aq)},set:function(t){this.i.aq=n.stringToBrush(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):this.targetGrid&&this.targetGrid.name&&this.targetGrid.name==t?this.targetGrid:null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("ColumnChooserComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-column-chooser",inputs:{height:"height",width:"width",targetGrid:"targetGrid",title:"title",titleStyle:"titleStyle",titleColor:"titleColor",filterPlaceholderText:"filterPlaceholderText",baseTheme:"baseTheme",density:"density",backgroundColor:"backgroundColor"},host:{classAttribute:"ig-column-chooser igx-column-chooser"},providers:[],viewQueries:[{propertyName:"_checkboxList",first:!0,predicate:["checkboxList"],descendants:!0,read:El,static:!0},{propertyName:"_chooserContainer",first:!0,predicate:["chooserContainer"],descendants:!0,read:e.ElementRef,static:!0}],ngImport:e,template:"<div #chooserContainer>\n <span></span>\n <igx-checkbox-list #checkboxList></igx-checkbox-list>\n </div>",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],components:[{type:El,selector:"igx-checkbox-list",inputs:["height","width","dataSource","keys","primaryKey","dataMemberPath","dataLegendTarget","subtitleMemberPath","propertyTypeMemberPath","selectedMemberPath","filterPlaceholderText","searchInputType","rowHeight","cellTextStyle","indexType","baseTheme","density","searchIconColor","searchBackgroundColor","labelClickTriggersChange","searchTextColor","searchBorderColor","searchTextStyle","checkboxTickColor","checkboxCheckedBackgroundColor","checkboxUncheckedBackgroundColor","checkboxCheckedBorderColor","checkboxUncheckedBorderColor","checkboxCornerRadius","scrollbarStyle","scrollbarBackground","selectAllCaption","selectAllCaptionTextColor","actualSelectAllCaptionTextColor","showSelectAll","backgroundColor","rowHoverBackgroundColor","textColor","showFilter","isRowHoverEnabled","checkboxAlignedRight"],outputs:["selectedKeyAdded","selectedKeyRemoved","checkedChanged","labelClicked","indexTypeChanged","keysCleared","selectAllCheckboxChanged"]}],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Fu,decorators:[{type:e.Component,args:[{selector:"igx-column-chooser",template:"<div #chooserContainer>\n <span></span>\n <igx-checkbox-list #checkboxList></igx-checkbox-list>\n </div>",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-column-chooser igx-column-chooser"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_checkboxList:[{type:e.ViewChild,args:["checkboxList",{read:El,static:!0}]}],_chooserContainer:[{type:e.ViewChild,args:["chooserContainer",{read:e.ElementRef,static:!0}]}],height:[{type:e.Input}],width:[{type:e.Input}],targetGrid:[{type:e.Input}],title:[{type:e.Input}],titleStyle:[{type:e.Input}],titleColor:[{type:e.Input}],filterPlaceholderText:[{type:e.Input}],baseTheme:[{type:e.Input}],density:[{type:e.Input}],backgroundColor:[{type:e.Input}]}});var $u=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnChooserComponent",Fu),n.TypeRegistrar.register("ColumnChooser",Nu.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Fu],imports:[a.CommonModule,Mu,r.IgxXButtonModule],exports:[Mu,r.IgxXButtonModule,Fu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Mu,r.IgxXButtonModule],Mu,r.IgxXButtonModule]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:$u,decorators:[{type:e.NgModule,args:[{declarations:[Fu],exports:[Mu,r.IgxXButtonModule,Fu],imports:[a.CommonModule,Mu,r.IgxXButtonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var zu=function(){function t(){n.TypeRegistrar.registerCons("ColumnChooser",Nu),n.TypeRegistrar.registerCons("IgxColumnChooserComponent",Fu),n.TypeRegistrar.register("ColumnChooser",Nu.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Eu,r.IgxXButtonDynamicModule,$u],exports:[Eu,r.IgxXButtonDynamicModule,$u]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Eu,r.IgxXButtonDynamicModule,$u],Eu,r.IgxXButtonDynamicModule,$u]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:zu,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Eu,r.IgxXButtonDynamicModule,$u],imports:[a.CommonModule,Eu,r.IgxXButtonDynamicModule,$u],entryComponents:[Fu]}]}],ctorParameters:function(){return[]}});var Gu=[],Lu=function(){function t(t,e,i,r,o){this.renderer=t,this._elRef=e,this.ngZone=i,this.injector=r,this.componentFactoryResolver=o,this._wrapper=null,this._root=null,this._implementation=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation();var a=this.i;this._columnGrouping=a}return Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this._columnGrouping.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this._columnGrouping.notifySizeChanged()},enumerable:!1,configurable:!0}),t.prototype.updateStyle=function(){this._styling(this._root,this)},t.prototype.ngOnDestroy=function(){this._columnGrouping.destroy(),this._wrapper.destroy()},t.prototype.ngAfterViewInit=function(){var t=this;if(this.renderer&&null!=this._groupingContainer){this.container=this._groupingContainer.nativeElement,this._root=this.container;var e=new n.AngularRenderer(this.container,this.renderer,window.document,this.ngZone,!0,null);this._wrapper=e,this._columnGrouping.provideContainer(e),this._columnGrouping.notifySizeChanged(),e.addSizeWatcher((function(){t._columnGrouping.notifySizeChanged()}))}this._styling(this._root,this),this.i.notifySizeChanged(),this.updateStyle()},t.prototype.createImplementation=function(){return new Rl},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"targetGrid",{get:function(){var t=this.i.targetGrid;return null==t?null:t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.targetGrid=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.g},set:function(t){this.i.g=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"title",{get:function(){return this.i.al},set:function(t){this.i.al=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"titleColor",{get:function(){return n.brushToString(this.i.bm)},set:function(t){this.i.bm=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textStyle",{get:function(){return null==this.i.k?null:this.i.k.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.k=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.bl)},set:function(t){this.i.bl=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"iconColor",{get:function(){return n.brushToString(this.i.bi)},set:function(t){this.i.bi=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"itemBackgroundColor",{get:function(){return n.brushToString(this.i.bj)},set:function(t){this.i.bj=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"itemHoverBackgroundColor",{get:function(){return n.brushToString(this.i.bk)},set:function(t){this.i.bk=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.bh)},set:function(t){this.i.bh=n.stringToBrush(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):this.targetGrid&&this.targetGrid.name&&this.targetGrid.name==t?this.targetGrid:null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("ColumnGroupingComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.exportVisualModel=function(){return this.i.exportVisualModel()},t.prototype.exportSerializedVisualModel=function(){return this.i.exportSerializedVisualModel()},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-column-grouping",inputs:{height:"height",width:"width",targetGrid:"targetGrid",baseTheme:"baseTheme",density:"density",title:"title",titleColor:"titleColor",textStyle:"textStyle",textColor:"textColor",iconColor:"iconColor",itemBackgroundColor:"itemBackgroundColor",itemHoverBackgroundColor:"itemHoverBackgroundColor",backgroundColor:"backgroundColor"},host:{classAttribute:"ig-column-grouping igx-column-grouping"},providers:Gu,viewQueries:[{propertyName:"_groupingContainer",first:!0,predicate:["groupingContainer"],descendants:!0,read:e.ElementRef,static:!0}],ngImport:e,template:"<div #groupingContainer>\n <div #groupAreacontainer>\n </div>\n </div>",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Lu,decorators:[{type:e.Component,args:[{selector:"igx-column-grouping",template:"<div #groupingContainer>\n <div #groupAreacontainer>\n </div>\n </div>",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:Gu,host:{class:"ig-column-grouping igx-column-grouping"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_groupingContainer:[{type:e.ViewChild,args:["groupingContainer",{read:e.ElementRef,static:!0}]}],height:[{type:e.Input}],width:[{type:e.Input}],targetGrid:[{type:e.Input}],baseTheme:[{type:e.Input}],density:[{type:e.Input}],title:[{type:e.Input}],titleColor:[{type:e.Input}],textStyle:[{type:e.Input}],textColor:[{type:e.Input}],iconColor:[{type:e.Input}],itemBackgroundColor:[{type:e.Input}],itemHoverBackgroundColor:[{type:e.Input}],backgroundColor:[{type:e.Input}]}});var qu=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnGroupingComponent",Lu),n.TypeRegistrar.register("ColumnGrouping",Rl.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Lu],imports:[a.CommonModule],exports:[Lu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:qu,decorators:[{type:e.NgModule,args:[{declarations:[Lu],exports:[Lu],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Hu=function(){function t(){n.TypeRegistrar.registerCons("ColumnGrouping",Rl),n.TypeRegistrar.registerCons("IgxColumnGroupingComponent",Lu),n.TypeRegistrar.register("ColumnGrouping",Rl.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,qu],exports:[qu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,qu],qu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Hu,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[qu],imports:[a.CommonModule,qu],entryComponents:[Lu]}]}],ctorParameters:function(){return[]}});var Wu=function(t){function e(){var e=t.call(this)||this;return e.columnName=null,e.isPinned=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"ColumnPinningInfo"),e}(n.Base),Uu=function(t){function e(){var e=t.call(this)||this;return e.c=null,e.a=null,e.b=null,e}return i.__extends(e,t),e.prototype.f=function(){},e.prototype.e=function(t){if(null!=t){this.b=t;Math.round(t.rootWrapper.width()),Math.round(t.rootWrapper.height());this.b.rootWrapper.setStyleProperty("position","relative"),this.g(),this.c=this.b.rootWrapper.getChildAt(0),this.c.setStyleProperty("margin","4px 0px 4px 0px"),this.i(),this.h()}else this.b=null},e.prototype.g=function(){null!=this.b&&this.b.rootWrapper.setStyleProperty("background-color",this.a.an._fill)},e.prototype.i=function(){null!=this.c&&null!=this.a.v&&(this.c.setText(this.a.v),this.c.setStyleProperty("font","16px Verdana")),this.j(),this.k(),this.h()},e.prototype.j=function(){null!=this.c&&null!=this.a.ao&&this.c.setStyleProperty("color",this.a.ao._fill)},e.prototype.k=function(){null!=this.c&&null!=this.a.j&&this.c.setStyleProperty("font",this.a.j.fontString)},e.prototype.h=function(){if(null!=this.b){var t=this.b.rootWrapper.getChildAt(1);t.setStyleProperty("width","100%"),null!=this.a.v?t.setStyleProperty("height","calc(100% - 25px"):t.setStyleProperty("height","calc(100% - 5px")}},e.prototype.d=function(){},e.$t=n.markType(e,"ColumnPinningView"),e}(n.Base),Ku=function(t){function e(){var e=t.call(this)||this;e.a=null,e.d=null,e.propertyChanged=null,e.m=!1,e.k=null,e.b=null,e.o=null,e.i=null,e.am=n.BrushUtil.j(255,0,153,255),e.n=null,e.e=1,e.g=2,e.al=n.BrushUtil.j(255,248,248,248),e.m=!1;var i=new Uu;return i.a=e,e.a=i,e.a.f(),e}return i.__extends(e,t),e.prototype.ak=function(t){null!=this.d&&this.d.updateHrMargin(t)},e.prototype.notifySizeChanged=function(){this.a.d()},e.prototype.destroy=function(){if(null!=this.d){var t=this.d;t.checkedChanged=n.delegateRemove(t.checkedChanged,n.runOn(this,this.ae))}if(this.provideContainer(null,null),null!=this.b){var e=this.b.actualColumns;e.collectionChanged=n.delegateRemove(e.collectionChanged,n.runOn(this,this.z));var i=this.b;i.columnPinnedChanged=n.delegateRemove(i.columnPinnedChanged,n.runOn(this,this.aj))}},e.prototype.provideContainer=function(t,e){if(this.d=e,null!=this.d){var i=this.d;i.checkedChanged=n.delegateCombine(i.checkedChanged,n.runOn(this,this.ae))}this.aa(),this.a.e(t)},Object.defineProperty(e.prototype,"l",{get:function(){return null==this.k&&(this.k=new n.SRProvider(this.a.b),this.k.cb("DataGrid")),this.k},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.ad("TargetGrid",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"v",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,e!=this.o&&this.ad("Title",e,this.o)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.ad("TitleStyle",e,this.i)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ao",{get:function(){return this.am},set:function(t){var e=this.am;this.am=t,e!=this.am&&this.ad("TitleColor",e,this.am)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"s",{get:function(){return null!=this.n?this.n:n.stringIsNullOrWhiteSpace(this.l.b1("Filter_Columns_List"))?"Filter columns list ...":this.l.b1("Filter_Columns_List")},set:function(t){var e=this.n;this.n=t,e!=this.n&&this.ad("FilterPlaceholderText",e,this.n)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.ad("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,this.e))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.ad("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.g))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"an",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,e!=this.al&&this.ad("BackgroundColor",e,this.al)},enumerable:!1,configurable:!0}),e.prototype.ad=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.af(t,e,i)},e.prototype.af=function(t,e,i){switch(t){case"TargetGrid":if(null!=e){var r=e.actualColumns;r.collectionChanged=n.delegateRemove(r.collectionChanged,n.runOn(this,this.z));var o=e;o.columnPinnedChanged=n.delegateRemove(o.columnPinnedChanged,n.runOn(this,this.aj))}if(null!=this.b){var a=this.b.actualColumns;a.collectionChanged=n.delegateCombine(a.collectionChanged,n.runOn(this,this.z));var s=this.b;s.columnPinnedChanged=n.delegateCombine(s.columnPinnedChanged,n.runOn(this,this.aj))}this.aa();break;case"Title":this.a.i();break;case"TitleStyle":this.a.k();break;case"TitleColor":this.a.j();break;case"FilterPlaceholderText":null!=this.d&&(this.d.b4=this.s);break;case"BaseTheme":this.ai();break;case"Density":this.ah();break;case"BackgroundColor":null!=this.d&&(this.d.backgroundColor=this.an),this.a.g()}},e.prototype.ai=function(){null!=this.d&&(this.d.baseTheme=this.f)},e.prototype.ah=function(){null!=this.d&&(this.d.density=this.h)},e.prototype.aj=function(t,e){0==this.m&&this.aa(),this.m=!1},e.prototype.z=function(t,e){this.aa()},e.prototype.aa=function(){var t,e;if(null!=this.b&&null!=this.d){this.d.baseTheme=this.f,this.d.density=this.h,this.d.backgroundColor=this.an;var r=void 0,o=new n.ObservableCollection$1(Wu.$,0);try{for(var a=i.__values(n.fromEnum(this.b.actualColumns)),s=a.next();!s.done;s=a.next()){var l=s.value;r=new Wu;var u=l.lo;null!=l.lv&&(u=l.lv),r.columnName=u,1==l.il?r.isPinned=!0:r.isPinned=!1,o.add(r)}}catch(e){t={error:e}}finally{try{s&&!s.done&&(e=a.return)&&e.call(a)}finally{if(t)throw t.error}}this.d.showSelectAll=!1,null!=this.s&&(this.d.b4=this.s),this.d.itemsSource=o;"columnName","isPinned",this.d.selectedMemberPath="isPinned",this.d.dataMemberPath="columnName"}},e.prototype.ae=function(t,e){this.m=!0;for(var n=this.d.f.actualDataSource.getItemAtIndex(e.c),i=this.b.actualColumns.count,r=0;r<i;r++)if(this.b.actualColumns._inner[r].lo==n.columnName||this.b.actualColumns._inner[r].mf==n.columnName||this.b.actualColumns._inner[r].lv==n.columnName){0==this.b.actualColumns._inner[r].il||2==this.b.actualColumns._inner[r].il?this.b.actualColumns._inner[r].il=1:this.b.actualColumns._inner[r].il=0,this.b.actualColumns._inner[r].m0("Pinned");break}},e.$t=n.markType(e,"ColumnPinning",n.Base.$,[n.INotifyPropertyChanged_$type]),e}(n.Base),Xu=function(){function t(t,e,i,r,o){this.renderer=t,this._elRef=e,this.ngZone=i,this.injector=r,this.componentFactoryResolver=o,this._wrapper=null,this._root=null,this._implementation=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation();var a=this.i;this._columnPinning=a}return Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this._columnPinning.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this._columnPinning.notifySizeChanged()},enumerable:!1,configurable:!0}),t.prototype.updateStyle=function(){this._styling(this._root,this)},t.prototype.ngOnDestroy=function(){this._columnPinning.destroy(),this._wrapper.destroy()},t.prototype.ngAfterViewInit=function(){var t=this;if(this.renderer&&null!=this._checkboxList&&null!=this._pinningContainer){this.container=this._pinningContainer.nativeElement,this._root=this.container;var e=new n.AngularRenderer(this.container,this.renderer,window.document,this.ngZone,!0,null);this._wrapper=e,this._columnPinning.provideContainer(e,this._checkboxList.i),this._columnPinning.notifySizeChanged(),e.addSizeWatcher((function(){t._columnPinning.notifySizeChanged()}))}this._styling(this._root,this),this.i.notifySizeChanged(),this.updateStyle()},t.prototype.createImplementation=function(){return new Ku},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"targetGrid",{get:function(){var t=this.i.c;return null==t?null:t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.c=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"title",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"titleStyle",{get:function(){return null==this.i.j?null:this.i.j.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.j=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"titleColor",{get:function(){return n.brushToString(this.i.ao)},set:function(t){this.i.ao=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterPlaceholderText",{get:function(){return this.i.s},set:function(t){this.i.s=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.f},set:function(t){this.i.f=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.h},set:function(t){this.i.h=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.an)},set:function(t){this.i.an=n.stringToBrush(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):this.targetGrid&&this.targetGrid.name&&this.targetGrid.name==t?this.targetGrid:null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("ColumnPinningComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-column-pinning",inputs:{height:"height",width:"width",targetGrid:"targetGrid",title:"title",titleStyle:"titleStyle",titleColor:"titleColor",filterPlaceholderText:"filterPlaceholderText",baseTheme:"baseTheme",density:"density",backgroundColor:"backgroundColor"},host:{classAttribute:"ig-column-pinning igx-column-pinning"},providers:[],viewQueries:[{propertyName:"_checkboxList",first:!0,predicate:["checkboxList"],descendants:!0,read:El,static:!0},{propertyName:"_pinningContainer",first:!0,predicate:["pinningContainer"],descendants:!0,read:e.ElementRef,static:!0}],ngImport:e,template:"<div #pinningContainer>\n <span></span>\n <igx-checkbox-list #checkboxList ></igx-checkbox-list>\n </div>",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],components:[{type:El,selector:"igx-checkbox-list",inputs:["height","width","dataSource","keys","primaryKey","dataMemberPath","dataLegendTarget","subtitleMemberPath","propertyTypeMemberPath","selectedMemberPath","filterPlaceholderText","searchInputType","rowHeight","cellTextStyle","indexType","baseTheme","density","searchIconColor","searchBackgroundColor","labelClickTriggersChange","searchTextColor","searchBorderColor","searchTextStyle","checkboxTickColor","checkboxCheckedBackgroundColor","checkboxUncheckedBackgroundColor","checkboxCheckedBorderColor","checkboxUncheckedBorderColor","checkboxCornerRadius","scrollbarStyle","scrollbarBackground","selectAllCaption","selectAllCaptionTextColor","actualSelectAllCaptionTextColor","showSelectAll","backgroundColor","rowHoverBackgroundColor","textColor","showFilter","isRowHoverEnabled","checkboxAlignedRight"],outputs:["selectedKeyAdded","selectedKeyRemoved","checkedChanged","labelClicked","indexTypeChanged","keysCleared","selectAllCheckboxChanged"]}],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Xu,decorators:[{type:e.Component,args:[{selector:"igx-column-pinning",template:"<div #pinningContainer>\n <span></span>\n <igx-checkbox-list #checkboxList ></igx-checkbox-list>\n </div>",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-column-pinning igx-column-pinning"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_checkboxList:[{type:e.ViewChild,args:["checkboxList",{read:El,static:!0}]}],_pinningContainer:[{type:e.ViewChild,args:["pinningContainer",{read:e.ElementRef,static:!0}]}],height:[{type:e.Input}],width:[{type:e.Input}],targetGrid:[{type:e.Input}],title:[{type:e.Input}],titleStyle:[{type:e.Input}],titleColor:[{type:e.Input}],filterPlaceholderText:[{type:e.Input}],baseTheme:[{type:e.Input}],density:[{type:e.Input}],backgroundColor:[{type:e.Input}]}});var Zu=function(){function t(){n.TypeRegistrar.registerCons("IgxColumnPinningComponent",Xu),n.TypeRegistrar.register("ColumnPinning",Ku.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Xu],imports:[a.CommonModule,Mu],exports:[Mu,Xu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Mu],Mu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Zu,decorators:[{type:e.NgModule,args:[{declarations:[Xu],exports:[Mu,Xu],imports:[a.CommonModule,Mu],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Yu=function(){function t(){n.TypeRegistrar.registerCons("ColumnPinning",Ku),n.TypeRegistrar.registerCons("IgxColumnPinningComponent",Xu),n.TypeRegistrar.register("ColumnPinning",Ku.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Eu,Zu],exports:[Eu,Zu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Eu,Zu],Eu,Zu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Yu,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Eu,Zu],imports:[a.CommonModule,Eu,Zu],entryComponents:[Xu]}]}],ctorParameters:function(){return[]}});var Qu=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[so],imports:[a.CommonModule],exports:[so]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Qu,decorators:[{type:e.NgModule,args:[{declarations:[so],imports:[a.CommonModule],exports:[so],entryComponents:[]}]}]});var Ju=function(){function t(){n.TypeRegistrar.registerCons("IgxGridConditionalStylePropertyComponent",so),n.TypeRegistrar.register("GridConditionalStyleProperty",dn.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Qu],exports:[Qu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Qu],Qu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ju,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Qu],exports:[Qu],entryComponents:[so]}]}],ctorParameters:function(){return[]}});var tc=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[uo],imports:[a.CommonModule],exports:[uo]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:tc,decorators:[{type:e.NgModule,args:[{declarations:[uo],imports:[a.CommonModule],exports:[uo],entryComponents:[]}]}]});var ec=function(){function t(){n.TypeRegistrar.registerCons("IgxGridConditionalStyleComponent",uo),n.TypeRegistrar.register("GridConditionalStyle",Ci.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,tc],exports:[tc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,tc],tc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ec,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,tc],exports:[tc],entryComponents:[uo]}]}],ctorParameters:function(){return[]}});var nc=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),r.prototype.createImplementation=function(){return new Zi},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"imageStretchOption",{get:function(){return this.i.n7},set:function(t){this.i.n7=n.ensureEnum(X,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorType",{get:function(){return this.i.n3},set:function(t){this.i.n3=n.ensureEnum(q,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorDataSource",{get:function(){return this.i.n8},set:function(t){this.i.n8=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorTextField",{get:function(){return this.i.n9},set:function(t){this.i.n9=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"editorValueField",{get:function(){return this.i.oa},set:function(t){this.i.oa=t},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-image-column",inputs:{imageStretchOption:"imageStretchOption",editorType:"editorType",editorDataSource:"editorDataSource",editorTextField:"editorTextField",editorValueField:"editorValueField"},providers:[{provide:So,useExisting:e.forwardRef((function(){return r}))},{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(So);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:nc,decorators:[{type:e.Component,args:[{selector:"igx-image-column",template:"",providers:[{provide:So,useExisting:e.forwardRef((function(){return nc}))},{provide:ho,useExisting:e.forwardRef((function(){return nc}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{imageStretchOption:[{type:e.Input}],editorType:[{type:e.Input}],editorDataSource:[{type:e.Input}],editorTextField:[{type:e.Input}],editorValueField:[{type:e.Input}]}});var ic=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[nc],imports:[a.CommonModule],exports:[nc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ic,decorators:[{type:e.NgModule,args:[{declarations:[nc],imports:[a.CommonModule],exports:[nc],entryComponents:[]}]}]});var rc=function(){function t(){n.TypeRegistrar.registerCons("IgxImageColumnComponent",nc),n.TypeRegistrar.register("ImageColumn",Zi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,ic],exports:[ic]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,ic],ic]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:rc,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,ic],exports:[ic],entryComponents:[nc]}]}],ctorParameters:function(){return[]}});var oc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._content=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"content",{get:function(){return this._content},set:function(t){this._content=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"TemplateHeaderCellUpdatingEventArgs",n.EventArgs.$),e}(n.EventArgs),ac=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new oc},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"isCanvasBased",{get:function(){return this.i.content.isCanvasBased},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"content",{get:function(){return this.isCanvasBased?null:this.i.content.element.getNativeElement()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this.isCanvasBased?this.i.content.templateContext:null},enumerable:!1,configurable:!0}),t.prototype.ensureCorrectSize=function(){return this.i.content.ensureCorrectSize()},t.prototype.renderStandardBackground=function(){this.i.content.renderStandardBackground()},t.prototype.renderStandardContent=function(){this.i.content.renderStandardContent()},Object.defineProperty(t.prototype,"cellInfo",{get:function(){if(null==this.i.cellInfo)return null;if(!this.i.cellInfo.externalObject){var t=null;switch(this.i.cellInfo.$type.name){case"DateTimeCellModel":t=new Hr;break;case"ImageCellModel":t=new Wr;break;case"NumericCellModel":t=new Ur;break;case"RowSeparatorModel":t=new Kr;break;case"SectionHeaderCellModel":t=new Xr;break;case"TemplateCellModel":t=new Zr;break;case"TemplateHeaderCellModel":t=new Jr;break;case"TemplateSectionHeaderCellModel":t=new eo;break;case"TextCellModel":t=new no;break;case"TextHeaderCellModel":t=new io}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),t}(),sc=function(t){function e(){var e=t.call(this)||this;return e.cellUpdating=null,e}return i.__extends(e,t),e.prototype.n=function(t){return new Qr},e.prototype.d2=function(t,e,n){return"template-header-"+t.a5.toString()},e.prototype.eo=function(e,n,i,r){t.prototype.eo.call(this,e,n,i,r);var o=e,a=n.cf(e.l);o.mh=a.k3,o.n=a.hr,o.mk=a.ja},e.prototype.hq=function(t,e){var n;null!=this.cellUpdating&&this.cellUpdating(this,((n=new oc).cellInfo=t,n.content=e,n))},e.$t=n.markType(e,"TemplateHeader",Ui.$),e}(Ui),lc=function(t){function r(){var e=t.call(this)||this;return e._cellUpdating=null,e}return i.__extends(r,t),r.prototype.createImplementation=function(){return new sc},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"cellUpdating",{get:function(){var t=this;return null==this._cellUpdating&&(this._cellUpdating=new e.EventEmitter,this.i.cellUpdating=n.delegateCombine(this.i.cellUpdating,(function(e,n){var i=new ac;i._provideImplementation(n),t.beforeCellUpdating&&t.beforeCellUpdating(t,i),t._cellUpdating.emit({sender:t,args:i})}))),this._cellUpdating},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-template-header",outputs:{cellUpdating:"cellUpdating"},providers:[{provide:Co,useExisting:e.forwardRef((function(){return r}))},{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Co);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:lc,decorators:[{type:e.Component,args:[{selector:"igx-template-header",template:"",providers:[{provide:Co,useExisting:e.forwardRef((function(){return lc}))},{provide:ho,useExisting:e.forwardRef((function(){return lc}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{cellUpdating:[{type:e.Output}]}});var uc=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[lc],imports:[a.CommonModule],exports:[lc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:uc,decorators:[{type:e.NgModule,args:[{declarations:[lc],imports:[a.CommonModule],exports:[lc],entryComponents:[]}]}]});var cc=function(){function t(){n.TypeRegistrar.registerCons("IgxTemplateHeaderComponent",lc),n.TypeRegistrar.register("TemplateHeader",sc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,uc],exports:[uc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,uc],uc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:cc,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,uc],exports:[uc],entryComponents:[lc]}]}],ctorParameters:function(){return[]}});var hc=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new Ni},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(n.prototype,"actualDataSource",{get:function(){return this.i.n5},set:function(t){this.i.n5=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dataSource",{get:function(){return this.i.n6},set:function(t){this.i.n6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textField",{get:function(){return this.i.oa},set:function(t){this.i.oa=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"valueField",{get:function(){return this.i.ob},set:function(t){this.i.ob=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"valueMultiField",{get:function(){return this.i.n3},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.n3=t},enumerable:!1,configurable:!0}),n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-combo-box-column",inputs:{actualDataSource:"actualDataSource",dataSource:"dataSource",textField:"textField",valueField:"valueField",valueMultiField:"valueMultiField"},providers:[{provide:So,useExisting:e.forwardRef((function(){return n}))},{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(So);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:hc,decorators:[{type:e.Component,args:[{selector:"igx-combo-box-column",template:"",providers:[{provide:So,useExisting:e.forwardRef((function(){return hc}))},{provide:ho,useExisting:e.forwardRef((function(){return hc}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{actualDataSource:[{type:e.Input}],dataSource:[{type:e.Input}],textField:[{type:e.Input}],valueField:[{type:e.Input}],valueMultiField:[{type:e.Input}]}});var pc=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[hc],imports:[a.CommonModule],exports:[hc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:pc,decorators:[{type:e.NgModule,args:[{declarations:[hc],imports:[a.CommonModule],exports:[hc],entryComponents:[]}]}]});var dc=function(){function t(){n.TypeRegistrar.registerCons("IgxComboBoxColumnComponent",hc),n.TypeRegistrar.register("ComboBoxColumn",Ni.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,pc],exports:[pc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,pc],pc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:dc,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,pc],exports:[pc],entryComponents:[hc]}]}],ctorParameters:function(){return[]}});var fc=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Qu,tc,Ou,ku,rc,Bu,n.IgxTemplateContentModule,wu,cc,dc,vu],exports:[Qu,tc,Ou,ku,rc,Bu,n.IgxTemplateContentModule,wu,cc,dc,vu]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Qu,tc,Ou,ku,rc,Bu,n.IgxTemplateContentModule,wu,cc,dc,vu],Qu,tc,Ou,ku,rc,Bu,n.IgxTemplateContentModule,wu,cc,dc,vu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:fc,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Qu,tc,Ou,ku,rc,Bu,n.IgxTemplateContentModule,wu,cc,dc,vu],imports:[a.CommonModule,Qu,tc,Ou,ku,rc,Bu,n.IgxTemplateContentModule,wu,cc,dc,vu],entryComponents:[]}]}]});var mc=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Ju,ec,Ou,ku,rc,Bu,n.IgxTemplateContentDynamicModule,wu,cc,dc,Cu,fc],exports:[Ju,ec,Ou,ku,rc,Bu,n.IgxTemplateContentDynamicModule,wu,cc,dc,Cu,fc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Ju,ec,Ou,ku,rc,Bu,n.IgxTemplateContentDynamicModule,wu,cc,dc,Cu,fc],Ju,ec,Ou,ku,rc,Bu,n.IgxTemplateContentDynamicModule,wu,cc,dc,Cu,fc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:mc,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Ju,ec,Ou,ku,rc,Bu,n.IgxTemplateContentDynamicModule,wu,cc,dc,Cu,fc],imports:[a.CommonModule,Ju,ec,Ou,ku,rc,Bu,n.IgxTemplateContentDynamicModule,wu,cc,dc,Cu,fc],entryComponents:[]}]}]});var gc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.d=null,e.f=null,e.a=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"g",{get:function(){return this.f},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.d},enumerable:!1,configurable:!0}),e.prototype.c=function(){var t=this.f.outerWidth(),e=this.f.outerHeight();return new n.SizeData(t,e)},e.prototype.k=function(){},e.prototype.m=function(){var t=this.g;null!=t&&(n.NativeUI.m(t,this.b.bo),n.NativeUI.q(t,this.b.br))},e.prototype.l=function(t){if(null==t)return this.d=null,this.f=null,void this.k();this.d=t;var e=this.d.rootWrapper;this.h(e)},e.prototype.h=function(t){this.f=t,this.k(),this.m()},e.prototype.i=function(t){this.a=t},e.prototype.j=function(){},e.$t=n.markType(e,"GridColumnOptionsViewBase"),e}(n.Base),yc=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.d=function(t,e,i,r,o,a,s){void 0===s&&(s=!1);var l=t.createElement("label");return(o=t.createElement("input")).setAttribute("type","checkbox"),n.stringIsNullOrEmpty(e)||o.setAttribute("id",e),n.stringIsNullOrEmpty(r)||o.setAttribute("AccessKey",r),(a=t.createElement("text")).setRawText(i),s?(l.append(a),l.append(o)):(l.append(o),l.append(a)),{ret:l,p4:o,p5:a}},e.e=function(t,e,n,i,r,o){var a=t.createElement("label");(o=t.createElement("input")).setAttribute("name",n),o.setAttribute("type","radio"),o.setAttribute("id",e),a.append(o);var s=t.createElement("text");return s.setRawText(i),o.setAttribute("AccessKey",r),a.append(s),{ret:a,p5:o}},e.g=function(t,n,i,r,o,a,s,l,u,c,h){var p,d;return void 0===c&&(c=!0),void 0===h&&(h=!1),{ret:(d=e.f(t,n,i,0,r,o,a,s,l,u,p,c,h),s=d.p7,l=d.p8,u=d.p9,p=d.p10,d.ret),p6:s,p7:l,p8:u}},e.f=function(t,e,i,o,a,s,l,u,c,h,p,d,f,m){void 0===d&&(d=!0),void 0===f&&(f=!1),void 0===m&&(m=!0);var g=e.createElement("div"),y=e.getSubRenderer(g);(u=new r.XButton).provideContainer(y);y.getExternal(u,y.rootWrapper,y.getExternal(t,null,null));u.e=o,u.r=a,u.n=s;var b=null!=i;if(p=null,b){(p=e.createElement("div")).setStyleProperty("display","inline-block"),c=new r.XIcon;var v=e.getSubRenderer(p);c.provideContainer(v);v.getExternal(c,v.rootWrapper,v.getExternal(t,null,null));c.svgPath=i,p.setStyleProperty("width",n.stringFormat("{0}px",l.width.toString())),p.setStyleProperty("height",n.stringFormat("{0}px",l.height.toString())),m&&(d?p.setStyleProperty("margin-right","7px"):p.setStyleProperty("margin-left","7px"))}else c=null;(h=y.createElement("label")).setStyleProperty("display","inline-block"),h.setStyleProperty("margin","0px");var C=e.createElement("div");return C.setStyleProperty("display","flex"),C.setStyleProperty("flex-direction","row"),C.setStyleProperty("flex-wrap","no-wrap"),C.setStyleProperty("align-items","center"),d?(b&&C.append(p),C.append(h)):(C.append(h),b&&C.append(p)),f&&(C.setStyleProperty("justify-content","space-between"),u.g6="1",g.setStyleProperty("display","flex"),g.setStyleProperty("flex-direction","column"),g.setStyleProperty("align-items","stretch"),u.f0="flex",u.g4="column",u.fb="stretch"),u.appendButtonContent(C),{ret:g,p7:u,p8:c,p9:h,p10:p}},e.h=function(t,e,o,a,s,l,u){var c,h,p,d,f=e.createElement("div"),m=e.getSubRenderer(f);(u=new r.XButtonGroup).provideContainer(m);m.getExternal(u,m.rootWrapper,m.getExternal(t,null,null));u.t=s,u.p=l,u.i=0;try{for(var g=i.__values(n.fromEnum(o)),y=g.next();!y.done;y=g.next()){var b=y.value;u.buttons.add(b)}}catch(t){c={error:t}}finally{try{y&&!y.done&&(h=g.return)&&h.call(g)}finally{if(c)throw c.error}}var v=f.getChildAt(0);try{for(var C=i.__values(n.fromEnum(a)),x=C.next();!x.done;x=C.next()){var _=x.value;v.append(_)}}catch(t){p={error:t}}finally{try{x&&!x.done&&(d=C.return)&&d.call(C)}finally{if(p)throw p.error}}return{ret:f,p6:u}},e.b=function(t){return t.getNativeElement().checked},e.i=function(t,e){t.getNativeElement().checked=e},e.a=function(t){switch(t){case 0:return 1;case 1:return 2;default:return 1}},e.c=function(t){switch(t){case 1:return 0;case 2:return 1;case 0:default:return 0}},e.j=function(t,e,n){void 0===n&&(n="block");var i=e?n:"none";t.setStyleProperty("display",i)},e.l=function(t,e){null!=t&&(t.n=e.i,t.r=e.p,t.aa=e.z)},e.k=function(t,e){null!=t&&(t.p=e.i,t.t=e.p)},e.$t=n.markType(e,"GridColumnOptionsUtilities"),e}(n.Base),bc=function(t){function e(){var n=t.call(this)||this;n.d=null,n.propertyChanged=null,n.ac=null,n.ae=null,n.e=null,n.ah=null,n.aj=!1,n.bm=e.bp,n.h=0,n.g=1,n.n=0,n.l=0,n.x=null,n.v=null,n.a=null,n.o=0,n.m=2,n.y=null,n.w=null,n.bn=e.bq;var i=n.f();return n.e=i,n.onViewInitialized(),i.i(n),n}return i.__extends(e,t),e.prototype.bc=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.be(t,e,i)},Object.defineProperty(e.prototype,"ad",{get:function(){return null==this.ac&&(this.ac=new n.FontInfo,this.ac.q="Verdana",this.ac.f=12),this.ac},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"af",{get:function(){return null==this.ae&&(this.ae=new n.FontInfo,this.ae.q="Verdana",this.ae.f=14),this.ae},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ai",{get:function(){return null==this.ah&&(this.ah=new n.SRProvider(this.e.e),this.ah.cb("DataGrid")),this.ah},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ak",{get:function(){return this.aj},set:function(t){var e=this.aj;this.aj=t,e!=this.aj&&this.bc("AutoSize",e,this.aj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bo",{get:function(){return this.bm},set:function(t){var e=this.bm;this.bm=t,e!=this.bm&&this.bc("BackgroundColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.bc("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.bc("ActualBaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"buttonDensity",{get:function(){return this.n},set:function(t){var e=this.n;this.n=t,e!=this.n&&this.bc("ButtonDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"p",{get:function(){return this.l},set:function(t){var e=this.l;this.l=t,e!=this.l&&this.bc("ActualButtonDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ab",{get:function(){return this.x},set:function(t){var e=this.x;this.x=t,e!=this.x&&this.bc("ButtonTextStyle",e,this.x)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"z",{get:function(){return this.v},set:function(t){var e=this.v;this.v=t,this.v!=e&&this.bc("ActualButtonTextStyle",e,this.v)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"column",{get:function(){return this.a},set:function(t){var e=this.a;e!=t&&(this.a3(!1),this.a=t,this.bc("Column",e,this.a),this.a3(!0))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"density",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,e!=this.o&&this.bc("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"q",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,e!=this.m&&this.bc("ActualDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ag",{get:function(){return this.y},set:function(t){var e=this.y;this.y=t,e!=this.y&&this.bc("LabelTextStyle",e,this.y)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aa",{get:function(){return this.w},set:function(t){var e=this.w;this.w=t,this.w!=e&&this.bc("ActualLabelTextStyle",e,this.w)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c",{get:function(){var t=this.column;return null==t?null:t.grid},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"br",{get:function(){return this.bn},set:function(t){var e=this.bn;this.bn=t,e!=this.bn&&this.bc("TextColor",e,t)},enumerable:!1,configurable:!0}),e.prototype.a6=function(){this.bk(this.d,this.c),this.e.m()},e.prototype.a7=function(t,e){this.column},e.prototype.a8=function(t,e){},e.prototype.a9=function(t,e){},e.prototype.a5=function(t,e){},e.prototype.ba=function(t,e){},e.prototype.bb=function(t,e){},e.prototype.onViewInitialized=function(){},e.prototype.be=function(t,e,n){switch(t){case"Column":this.a6();break;case"LabelTextStyle":this.bl();break;case"ButtonTextStyle":this.bi();break;case"BackgroundColor":case"TextColor":this.e.m();break;case"ButtonDensity":case"Density":this.q=0==this.density?2:this.density,this.p=0==this.buttonDensity?this.q:this.buttonDensity;break;case"BaseTheme":this.i=0==this.j?1:this.j}},e.prototype.bi=function(){this.z=null==this.ab?this.ad:this.ab},e.prototype.bk=function(t,e){t!=e&&this.bj(t,e)},e.prototype.bj=function(t,e){null!=t&&this.a4(t,!1),null!=e&&this.a4(e,!0),this.d=e},e.prototype.bl=function(){this.aa=null==this.ag?this.af:this.ag},e.prototype.a3=function(t){var e=this.column;null!=e&&(e.propertyChanged=t?n.delegateCombine(e.propertyChanged,n.runOn(this,this.a7)):n.delegateRemove(e.propertyChanged,n.runOn(this,this.a7)))},e.prototype.a4=function(t,e){if(e){t.propertyChanged=n.delegateCombine(t.propertyChanged,n.runOn(this,this.bb));var i=t.actualColumns;i.collectionChanged=n.delegateCombine(i.collectionChanged,n.runOn(this,this.a8)),t.groupDescriptions.m(n.runOn(this,this.ba)),t.columnPinnedChanged=n.delegateCombine(t.columnPinnedChanged,n.runOn(this,this.a9)),t.calculateCompleted=n.delegateCombine(t.calculateCompleted,n.runOn(this,this.a5))}else{t.propertyChanged=n.delegateRemove(t.propertyChanged,n.runOn(this,this.bb));var r=t.actualColumns;r.collectionChanged=n.delegateRemove(r.collectionChanged,n.runOn(this,this.a8)),t.groupDescriptions.p(n.runOn(this,this.ba)),t.columnPinnedChanged=n.delegateRemove(t.columnPinnedChanged,n.runOn(this,this.a9)),t.calculateCompleted=n.delegateRemove(t.calculateCompleted,n.runOn(this,this.a5))}},e.prototype.bh=function(t){yc.l(t,this)},e.prototype.bg=function(t){yc.k(t,this)},e.prototype.destroy=function(){this.provideRenderer(null)},e.prototype.provideRenderer=function(t){this.e.l(t)},e.$t=n.markType(e,"GridColumnOptionsBase",n.Base.$,[n.INotifyPropertyChanged_$type]),e.bp=n.BrushUtil.j(255,248,248,248),e.bq=n.BrushUtil.j(255,24,29,31),e}(n.Base),vc=function(t){function e(){var e=t.call(this)||this;return e.bl(),e.bi(),e}return i.__extends(e,t),e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"ActualLabelTextStyle":case"ActualBaseTheme":case"ActualButtonDensity":case"ActualButtonTextStyle":case"ActualDensity":this.e.m()}},e.prototype.bt=function(){},e.prototype.bu=function(){},e.$t=n.markType(e,"GridColumnOptionsSectionBase",bc.$),e}(bc),Cc=function(t){function e(){var e=t.call(this)||this;return e.bx=null,e.bv=!0,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"by",{get:function(){return null==this.bx?this.b0:this.bx},set:function(t){var e=this.by;0!=n.StringComparer.b.compare(t,e)&&(this.bx=t,this.bc("Caption",e,this.bx))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bw",{get:function(){return this.bv},set:function(t){var e=this.bw;t!=e&&(this.bv=t,this.bc("ShowCaption",e,this.bv))},enumerable:!1,configurable:!0}),e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"ShowCaption":case"Caption":this.e.m()}},e.$t=n.markType(e,"GridColumnOptionsSimpleSectionBase",vc.$),e}(vc),xc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.s=null,e.p=null,e.r=null,e.o=null,e.t=null,e.q=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.x=function(){if(null!=this.p){this.q=!0;try{var t=this.n.b5;this.p.svgPath=t?e.v:e.u}finally{this.q=!1}}},e.prototype.k=function(){var i=this;if(t.prototype.k.call(this),null!=this.g&&null!=this.e){var r=this.e,o=this.n,a=this.g;this.r=function(){var t=yc.f(i.n,r,e.u,1,o.p,o.j,new n.Size(1,24,24),i.o,i.p,i.s,i.t,!1,!0,!1);return i.o=t.p7,i.p=t.p8,i.s=t.p9,i.t=t.p10,t.ret}();var s=this.o;s.clicked=n.delegateCombine(s.clicked,n.runOn(this,this.w)),a.append(this.r)}},e.prototype.m=function(){t.prototype.m.call(this),this.x();var e=this.n;if(null!=this.s){this.s.setRawText(this.n.by);var n=this.n.bw;yc.j(this.s,n,"inline-block"),n?(this.o.e=1,this.o.fb="stretch",this.t.setStyleProperty("justify-content","space-between")):(this.o.e=4,this.o.fb="center",this.t.setStyleProperty("justify-content","center")),this.s.setStyleProperty("font",e.aa.fontString)}e.bh(this.o)},e.prototype.w=function(t,e){if(!this.q){var n=this.n.b5;this.n.b5=!n}},e.$t=n.markType(e,"GridColumnGroupOptionsView",gc.$),e.u="M9,19v-2h11v2H9z M9,15v-2h11v2H9z M9,11V9h11v2H9z M7,7V5h13v2H7z M4,5h2v2H4V5z",e.v="M16.8,18.3H9.6v-2h5.2l-2-2H9.6v-2h1.2L3.4,4.9l1.4-1.4l15.6,15.6L19,20.5L16.8,18.3z M20.6,14.3h-2.2l-2-2h4.2V14.3 L20.6,14.3z M20.6,10.3h-6.2l-2-2h8.2L20.6,10.3L20.6,10.3L20.6,10.3z M20.6,6.3H10.4l-2-2h12.2L20.6,6.3L20.6,6.3L20.6,6.3z",e}(gc),_c=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.f=function(){return new xc},e.prototype.get_b0=function(){return"Group Column"},Object.defineProperty(e.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),e.prototype.bs=function(){return null!=this.column&&(null!=this.c&&this.column.jb)},e.prototype.bj=function(t,e){null!=t&&(t.groupDescriptionsChanged=n.delegateRemove(t.groupDescriptionsChanged,n.runOn(this,this.b6))),null!=e&&(e.groupDescriptionsChanged=n.delegateCombine(e.groupDescriptionsChanged,n.runOn(this,this.b6)))},e.prototype.be=function(e,n,i){t.prototype.be.call(this,e,n,i)},Object.defineProperty(e.prototype,"b5",{get:function(){var t;return-1!=(t=this.b3(t).p0)},set:function(t){t?this.b7():this.b8()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b4",{get:function(){return this.e},enumerable:!1,configurable:!0}),e.prototype.b3=function(t){var n,i=this.column;return{ret:(n=e.b2(i,t),t=n.p1,n.ret),p0:t}},e.b2=function(t,e){if(null!=t){var i=t.grid;if(null!=i)for(var r=t.lo,o=i.groupDescriptions.j,a=0;a<o.count;a++){var s=o.item(a),l=s.f;if(0==n.StringComparer.b.compare(r,l))return{ret:s,p1:a}}}return{ret:null,p1:-1}},e.prototype.b7=function(){var t=this.c,e=this.column;if(null!=t&&null!=e){var n=new kt(1,e.lo),i=e.hr,r=0!=i?yc.c(i):0;n.c=r,t.groupDescriptions.g(n),e.hr=0,e.m0("Grouped")}},e.prototype.b8=function(){var t,e=this,n=this.c,i=this.column;if(null!=n&&null!=i){var r;t=e.b3(r),r=t.p0,t.ret;-1!=r&&(n.groupDescriptions.d(r),i.m0("Grouped"))}},e.prototype.b6=function(t,e){this.b4.m()},e.$t=n.markType(e,"GridColumnGroupOptions",Cc.$),e}(Cc),wc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.v=null,e.u=null,e.z=null,e.q=null,e.w=null,e.o=null,e.p=null,e.r=null,e.s=null,e.t=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.x=function(){var t=this,i=this.e,r=this.n,o=i.createElement("div"),a=new n.List$1(n.DomWrapper_$type,0),s=function(){var o=yc.g(t.n,i,e.ab,r.p,r.j,new n.Size(1,18,18),t.o,t.r,t.u,!0,!0);return t.o=o.p6,t.r=o.p7,t.u=o.p8,o.ret}(),l=function(){var o=yc.g(t.n,i,e.aa,r.p,r.j,new n.Size(1,18,18),t.p,t.s,t.z,!0,!0);return t.p=o.p6,t.s=o.p7,t.z=o.p8,o.ret}();a.add(s),a.add(l);var u=[this.o,this.p],c=function(){var e=yc.h(t.n,i,u,a,r.p,r.j,t.q);return t.q=e.p6,e.ret}(),h=this.q;return h.selectionChanged=n.delegateCombine(h.selectionChanged,n.runOn(this,this.ac)),o.append(c),o},e.prototype.y=function(){return this.e.createElement("label")},e.prototype.ad=function(){if(null!=this.q){this.t=!0;try{switch(this.n.b2){case 0:this.q.d=[];break;case 1:this.q.d=[0];break;case 2:this.q.d=[1]}}finally{this.t=!1}}},e.prototype.k=function(){if(t.prototype.k.call(this),null!=this.g&&null!=this.e){this.w=this.y(),this.v=this.x();var e=this.g;e.setStyleProperty("display","flex"),e.setStyleProperty("flex-direction","row"),e.setStyleProperty("flex-wrap","no-wrap"),e.setStyleProperty("justify-content","space-between"),e.setStyleProperty("align-items","center"),e.append(this.w),e.append(this.v)}},e.prototype.m=function(){t.prototype.m.call(this),this.ad();var e=this.n;null!=this.w&&(this.w.setRawText(e.by),e.bw?(this.g.setStyleProperty("display","flex"),this.w.setStyleProperty("display","inline-block")):(this.g.setStyleProperty("display","block"),this.w.setStyleProperty("display","none")),this.w.setStyleProperty("font",e.aa.fontString)),null!=this.u&&this.u.setRawText(this.n.b5),null!=this.z&&this.z.setRawText(this.n.b9),e.bh(this.o),e.bh(this.p),e.bg(this.q);e.b2,e.b2},e.prototype.ac=function(t,e){if(!this.t){var n;if(null==this.q||null==this.q.d||0==this.q.d.length)n=0;else switch(this.q.d.length,this.q.d[0]){case 0:n=1;break;case 1:n=2;break;default:n=0}this.n.b2=n}},e.$t=n.markType(e,"GridColumnSortOptionsView",gc.$),e.ab="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",e.aa="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",e}(gc),Sc=function(t){function e(){var e=t.call(this)||this;return e.b4="Asc",e.b8="Desc",e}return i.__extends(e,t),e.prototype.f=function(){return new wc},e.prototype.get_b0=function(){return"Sort"},Object.defineProperty(e.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),e.prototype.bs=function(){if(null==this.column)return!1;var t=this.c;if(null==t)return!0;switch(t.headerClickAction){case 1:case 3:case 0:case 2:return!0;case 4:return!1}return!0},e.prototype.a7=function(e,n){if(t.prototype.a7.call(this,e,n),null!=this.column)switch(n.propertyName){case"SortDirection":this.b3.m()}},e.prototype.ba=function(e,n){t.prototype.ba.call(this,e,n),this.b3.m()},e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"AscendingCaption":case"DescendingCaption":this.b3.m()}},Object.defineProperty(e.prototype,"b3",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b5",{get:function(){return this.b4},set:function(t){if(0!=n.StringComparer.b.compare(t,this.b4)){var e=this.b4;this.b4=t,this.bc("AscendingCaption",e,this.b4)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b9",{get:function(){return this.b8},set:function(t){if(0!=n.StringComparer.b.compare(t,this.b8)){var e=this.b8;this.b8=t,this.bc("DescendingCaption",e,this.b8)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b2",{get:function(){var t=this.column;if(null!=t){var e,n=function(){var n=_c.b2(t,e);return e=n.p1,n.ret}();return null!=n?yc.a(n.c):t.hr}return 0},set:function(t){var e=this.column;if(null!=e){var n,i=function(){var t=_c.b2(e,n);return n=t.p1,t.ret}();if(null!=i){var r=e.grid;if(null!=r){var o=0!=t?yc.c(t):0;i.c=o,r.groupDescriptions.d(n),r.groupDescriptions.o(n,i)}return}e.hr=t}},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridColumnSortOptions",Cc.$),e}(Cc),Pc=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return null},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},Object.defineProperty(t.prototype,"autoSize",{get:function(){return this.i.ak},set:function(t){this.i.ak=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.bo)},set:function(t){this.i.bo=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.j},set:function(t){this.i.j=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBaseTheme",{get:function(){return this.i.i},set:function(t){this.i.i=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"buttonDensity",{get:function(){return this.i.buttonDensity},set:function(t){this.i.buttonDensity=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualButtonDensity",{get:function(){return this.i.p},set:function(t){this.i.p=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"buttonTextStyle",{get:function(){return null==this.i.ab?null:this.i.ab.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.ab=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.column;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.column=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualDensity",{get:function(){return this.i.q},set:function(t){this.i.q=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"labelTextStyle",{get:function(){return null==this.i.ag?null:this.i.ag.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.ag=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.br)},set:function(t){this.i.br=n.stringToBrush(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):this.column&&this.column.name&&this.column.name==t?this.column:null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("GridColumnOptionsBaseComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this.column&&this.column._styling&&this.column._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"ng-component",inputs:{autoSize:"autoSize",backgroundColor:"backgroundColor",baseTheme:"baseTheme",actualBaseTheme:"actualBaseTheme",buttonDensity:"buttonDensity",actualButtonDensity:"actualButtonDensity",buttonTextStyle:"buttonTextStyle",column:"column",density:"density",actualDensity:"actualDensity",labelTextStyle:"labelTextStyle",textColor:"textColor"},ngImport:e,template:"",isInline:!0}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Pc,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]},propDecorators:{autoSize:[{type:e.Input}],backgroundColor:[{type:e.Input}],baseTheme:[{type:e.Input}],actualBaseTheme:[{type:e.Input}],buttonDensity:[{type:e.Input}],actualButtonDensity:[{type:e.Input}],buttonTextStyle:[{type:e.Input}],column:[{type:e.Input}],density:[{type:e.Input}],actualDensity:[{type:e.Input}],labelTextStyle:[{type:e.Input}],textColor:[{type:e.Input}]}});var Oc=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.onApply=function(){this.i.bt()},n.prototype.onCancel=function(){this.i.bu()},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"ng-component",usesInheritance:!0,ngImport:e,template:"",isInline:!0}),n}(Pc);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Oc,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]}});var Ic=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"caption",{get:function(){return this.i.by},set:function(t){this.i.by=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"showCaption",{get:function(){return this.i.bw},set:function(t){this.i.bw=n.ensureBool(t)},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"ng-component",inputs:{caption:"caption",showCaption:"showCaption"},usesInheritance:!0,ngImport:e,template:"",isInline:!0}),r}(Oc);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ic,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]},propDecorators:{caption:[{type:e.Input}],showCaption:[{type:e.Input}]}});var jc=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){var t=this.renderer;t&&(this._mainDiv=t.createElement("div"),t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i)}this.updateStyle()},r.prototype.createImplementation=function(){return new Sc},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"ascendingCaption",{get:function(){return this.i.b5},set:function(t){this.i.b5=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"descendingCaption",{get:function(){return this.i.b9},set:function(t){this.i.b9=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortDirection",{get:function(){return this.i.b2},set:function(t){this.i.b2=n.ensureEnum(B,t)},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-sort-options",inputs:{ascendingCaption:"ascendingCaption",descendingCaption:"descendingCaption",sortDirection:"sortDirection"},host:{classAttribute:"ig-grid-column-sort-options igx-grid-column-sort-options"},providers:[],usesInheritance:!0,ngImport:e,template:"",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Ic);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:jc,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-sort-options",template:"",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-grid-column-sort-options igx-grid-column-sort-options"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{ascendingCaption:[{type:e.Input}],descendingCaption:[{type:e.Input}],sortDirection:[{type:e.Input}]}});var kc=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnSortOptionsComponent",jc),n.TypeRegistrar.register("GridColumnSortOptions",Sc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[jc],imports:[a.CommonModule],exports:[jc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:kc,decorators:[{type:e.NgModule,args:[{declarations:[jc],exports:[jc],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Tc=function(){function t(){n.TypeRegistrar.registerCons("GridColumnSortOptions",Sc),n.TypeRegistrar.registerCons("IgxGridColumnSortOptionsComponent",jc),n.TypeRegistrar.register("GridColumnSortOptions",Sc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,kc],exports:[kc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,kc],kc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Tc,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[kc],imports:[a.CommonModule,kc],entryComponents:[jc]}]}],ctorParameters:function(){return[]}});var Rc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.q=null,e.v=null,e.w=null,e.o=null,e.p=null,e.r=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.s=function(){var t=this,e=this.e,n=e.createElement("div"),i=e.createElement("div");n.append(i),i.setStyleProperty("display","flex"),i.setStyleProperty("flexDirection","row"),i.setStyleProperty("flexWrap","no-wrap"),i.setStyleProperty("justify-content","center");var r,o=function(){var e=t.u(!0,t.v);return t.v=e.p1,e.ret}(),a=(r=t.u(!1,t.w),t.w=r.p1,r.ret);return i.append(o),i.append(a),n},e.prototype.t=function(){return this.e.createElement("label")},e.prototype.u=function(t,i){var r,o,a,s,l=this,u=this.e,c=this.n,h=t?e.x:e.y,p=(s=yc.f(l.n,u,h,1,c.p,c.j,new n.Size(1,18,18),r,o,i,a,t,!1),r=s.p7,o=s.p8,i=s.p9,a=s.p10,s.ret);return t?(this.o=r,r.clicked=n.delegateCombine(r.clicked,n.runOn(this,this.z))):(this.p=r,r.clicked=n.delegateCombine(r.clicked,n.runOn(this,this.aa))),{ret:p,p1:i}},e.prototype.k=function(){if(t.prototype.k.call(this),null!=this.g&&null!=this.e){this.r=this.t(),this.q=this.s();var e=this.g;e.setStyleProperty("display","flex"),e.setStyleProperty("flex-direction","row"),e.setStyleProperty("flex-wrap","no-wrap"),e.setStyleProperty("justify-content","space-between"),e.setStyleProperty("align-items","center"),e.append(this.r),e.append(this.q)}},e.prototype.ab=function(){var t=this.n.b5(),e=this.n.b6();null!=this.o&&(this.o.disabled=!t),null!=this.p&&(this.p.disabled=!e)},e.prototype.m=function(){t.prototype.m.call(this);var e=this.n;if(null!=this.r){this.r.setRawText(e.by);e.bw;e.bw?(this.g.setStyleProperty("display","flex"),this.r.setStyleProperty("display","inline-block")):(this.g.setStyleProperty("display","block"),this.r.setStyleProperty("display","none")),this.r.setStyleProperty("font",e.aa.fontString)}null!=this.v&&this.v.setRawText(this.n.b8),null!=this.w&&this.w.setRawText(this.n.cc),e.bh(this.o),e.bh(this.p)},e.prototype.z=function(t,e){this.n.cg()},e.prototype.aa=function(t,e){this.n.ci()},e.$t=n.markType(e,"GridColumnMoveOptionsView",gc.$),e.x="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",e.y="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",e}(gc),Dc=function(t){function e(){var e=t.call(this)||this;return e.b3=!1,e.b7="Left",e.cb="Right",e}return i.__extends(e,t),e.prototype.f=function(){return new Rc},e.prototype.get_b0=function(){return"Move"},Object.defineProperty(e.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),e.prototype.bs=function(){if(null==this.column)return!1;var t=this.c;if(null==t)return!1;switch(t.columnMovingMode){case 0:return!0;case 1:return!1}return!0},e.prototype.a8=function(e,n){t.prototype.a8.call(this,e,n),this.b2.ab()},e.prototype.a9=function(e,n){t.prototype.a9.call(this,e,n),this.b3=!0},e.prototype.a5=function(e,n){t.prototype.a5.call(this,e,n),this.b3&&(this.b2.ab(),this.b3=!1)},e.prototype.a6=function(){t.prototype.a6.call(this),this.b2.ab()},e.prototype.a7=function(e,n){if(t.prototype.a7.call(this,e,n),null!=this.column)switch(n.propertyName){case"Pinned":this.b2.ab()}},e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"MoveLeftCaption":case"MoveRightCaption":this.b2.m()}},Object.defineProperty(e.prototype,"b2",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b8",{get:function(){return this.b7},set:function(t){if(0!=n.StringComparer.b.compare(t,this.b7)){var e=this.b7;this.b7=t,this.bc("MoveLeftCaption",e,this.b7)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cc",{get:function(){return this.cb},set:function(t){if(0!=n.StringComparer.b.compare(t,this.cb)){var e=this.cb;this.cb=t,this.bc("MoveRightCaption",e,this.cb)}},enumerable:!1,configurable:!0}),e.prototype.b4=function(t){var e=this.column;if(null==e)return!1;var n=e.grid;if(null==n)return!1;var i=n.actualColumns.indexOf(e);return!(i<0)&&(t?this.c.canMoveColumnLeft(i):this.c.canMoveColumnRight(i))},e.prototype.cf=function(t){var e=this.column;if(null!=e){var n=this.c;if(null!=n&&this.b4(t)){var i=n.actualColumns.indexOf(e);e.m0("Moved"),t?n.moveColumnLeft(i):n.moveColumnRight(i)}}},e.prototype.b5=function(){return this.b4(!0)},e.prototype.b6=function(){return this.b4(!1)},e.prototype.cg=function(){this.cf(!0)},e.prototype.ci=function(){this.cf(!1)},e.prototype.ch=function(t,e){this.cg()},e.prototype.cj=function(t,e){this.ci()},e.$t=n.markType(e,"GridColumnMoveOptions",Cc.$),e}(Cc),Bc=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){var t=this.renderer;t&&(this._mainDiv=t.createElement("div"),t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i)}this.updateStyle()},r.prototype.createImplementation=function(){return new Dc},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"moveLeftCaption",{get:function(){return this.i.b8},set:function(t){this.i.b8=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"moveRightCaption",{get:function(){return this.i.cc},set:function(t){this.i.cc=t},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-move-options",inputs:{moveLeftCaption:"moveLeftCaption",moveRightCaption:"moveRightCaption"},host:{classAttribute:"ig-grid-column-move-options igx-grid-column-move-options"},providers:[],usesInheritance:!0,ngImport:e,template:"",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Ic);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Bc,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-move-options",template:"",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-grid-column-move-options igx-grid-column-move-options"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{moveLeftCaption:[{type:e.Input}],moveRightCaption:[{type:e.Input}]}});var Mc=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnMoveOptionsComponent",Bc),n.TypeRegistrar.register("GridColumnMoveOptions",Dc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Bc],imports:[a.CommonModule],exports:[Bc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Mc,decorators:[{type:e.NgModule,args:[{declarations:[Bc],exports:[Bc],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Ec=function(){function t(){n.TypeRegistrar.registerCons("GridColumnMoveOptions",Dc),n.TypeRegistrar.registerCons("IgxGridColumnMoveOptionsComponent",Bc),n.TypeRegistrar.register("GridColumnMoveOptions",Dc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Mc],exports:[Mc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Mc],Mc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ec,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Mc],imports:[a.CommonModule,Mc],entryComponents:[Bc]}]}],ctorParameters:function(){return[]}});var Ac=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.y=null,e.z=null,e.q=null,e.v=null,e.u=null,e.o=null,e.p=null,e.r=null,e.s=null,e.t=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.w=function(){var t=this,i=this.e,r=this.n;this.u=i.createElement("div");var o=new n.List$1(n.DomWrapper_$type,0),a=function(){var o=yc.g(t.n,i,e.aa,r.p,r.j,new n.Size(1,18,18),t.o,t.r,t.y,!0,!0);return t.o=o.p6,t.r=o.p7,t.y=o.p8,o.ret}(),s=function(){var o=yc.g(t.n,i,e.ab,r.p,r.j,new n.Size(1,18,18),t.p,t.s,t.z,!1,!0);return t.p=o.p6,t.s=o.p7,t.z=o.p8,o.ret}();o.add(a),o.add(s);var l=[this.o,this.p],u=function(){var e=yc.h(t.n,i,l,o,r.p,r.j,t.q);return t.q=e.p6,e.ret}(),c=this.q;return c.selectionChanged=n.delegateCombine(c.selectionChanged,n.runOn(this,this.ae)),this.u.append(u),this.u},e.prototype.x=function(){return this.e.createElement("label")},e.prototype.af=function(){if(null!=this.r&&null!=this.s){var t=this.n.b4;t:for(;;){switch(t){case 0:this.r.svgPath=e.aa,this.s.svgPath=e.ab;break;case 1:this.r.svgPath=e.ac,this.s.svgPath=e.ab;break;case 2:this.r.svgPath=e.aa,this.s.svgPath=e.ad;break;default:t=0;continue t}break}}},e.prototype.ag=function(){if(null!=this.q){this.t=!0;try{switch(this.n.b4){case 0:this.q.d=[];break;case 1:this.q.d=[0];break;case 2:this.q.d=[1]}}finally{this.t=!1}}},e.prototype.k=function(){if(t.prototype.k.call(this),null!=this.g&&null!=this.e){this.v=this.x();var e=this.w(),n=(this.e,this.g);n.setStyleProperty("display","flex"),n.setStyleProperty("flex-direction","row"),n.setStyleProperty("flex-wrap","no-wrap"),n.setStyleProperty("justify-content","space-between"),n.setStyleProperty("align-items","center"),n.append(this.v),n.append(e)}},e.prototype.m=function(){t.prototype.m.call(this),this.ag(),this.af();var e=this.n;null!=this.v&&(this.v.setRawText(e.by),e.bw?(this.g.setStyleProperty("display","flex"),this.v.setStyleProperty("display","inline-block")):(this.g.setStyleProperty("display","block"),this.v.setStyleProperty("display","none")),this.v.setStyleProperty("font",e.aa.fontString)),null!=this.y&&this.y.setRawText(this.n.b6),null!=this.z&&this.z.setRawText(this.n.ca),e.bh(this.o),e.bh(this.p),e.bg(this.q)},e.prototype.ae=function(t,e){if(!this.t){var n;if(null==this.q||null==this.q.d||0==this.q.d.length)n=0;else switch(this.q.d.length,this.q.d[0]){case 0:n=1;break;case 1:n=2;break;default:n=0}this.n.b4=n,this.af()}},e.$t=n.markType(e,"GridColumnPinOptionsView",gc.$),e.aa="M13.2,3.8l7.1,7.1l-2.8-0.1l-3.4,3.4l0.1,4.2l-3.5-3.5l-5.4,5.4l-1.4,0l0-1.4l5.4-5.4L5.7,9.8l4.2,0.1l3.4-3.4L13.2,3.8z",e.ab="M10.8,3.8l-7.1,7.1l2.8-0.1l3.4,3.4l-0.1,4.2l3.5-3.5l5.4,5.4l1.4,0l0-1.4l-5.4-5.4l3.5-3.5l-4.2,0.1l-3.4-3.4L10.8,3.8z",e.ac="M3,3.4l19,17.1l-1.3,1.2L12.1,14l-4.9,4.9l-1.4-0.1l-0.1-1.4l4.8-4.8l-8.9-8L3,3.4z M14.9,2.3l7.5,7.5l-2.8-0.1L16.1,13 l0,0.3l-5.4-4.8l0.9,0L15,5.1L14.9,2.3z",e.ad="M21,3.4L2,20.5l1.3,1.2l8.5-7.7l4.9,4.9l1.4-0.1l0.1-1.4l-4.8-4.8l8.9-8L21,3.4z M9.1,2.3L1.7,9.8l2.8-0.1L7.9,13l0,0.3 l5.4-4.8l-0.9,0L9,5.1L9.1,2.3z",e}(gc),Vc=function(t){function e(){var e=t.call(this)||this;return e.b3=0,e.b5="Left",e.b9="Right",e}return i.__extends(e,t),e.prototype.f=function(){return new Ac},e.prototype.get_b0=function(){return"Pin"},Object.defineProperty(e.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),e.prototype.bs=function(){return null!=this.column},e.prototype.a6=function(){var e=this.column;this.b3=null!=e?e.il:0,t.prototype.a6.call(this)},e.prototype.a7=function(e,n){t.prototype.a7.call(this,e,n);var i=this.column;if(null!=i)switch(n.propertyName){case"Pinned":this.b3=null!=i?i.il:0,this.b2.m()}},e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"PinLeftCaption":case"PinRightCaption":this.b2.m()}},Object.defineProperty(e.prototype,"b4",{get:function(){var t=this.column;return null!=t?t.il:this.b3},set:function(t){this.b3=t;var e=this.c,n=this.column;null!=e&&null!=n&&(e.pinColumn(n,this.b3),n.m0("Pinned"))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b2",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b6",{get:function(){return this.b5},set:function(t){if(0!=n.StringComparer.b.compare(t,this.b5)){var e=this.b5;this.b5=t,this.bc("PinLeftCaption",e,this.b5)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ca",{get:function(){return this.b9},set:function(t){if(0!=n.StringComparer.b.compare(t,this.b9)){var e=this.b9;this.b9=t,this.bc("PinRightCaption",e,this.b9)}},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridColumnPinOptions",Cc.$),e}(Cc),Nc=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){var t=this.renderer;t&&(this._mainDiv=t.createElement("div"),t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i)}this.updateStyle()},r.prototype.createImplementation=function(){return new Vc},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinLeftCaption",{get:function(){return this.i.b6},set:function(t){this.i.b6=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinRightCaption",{get:function(){return this.i.ca},set:function(t){this.i.ca=t},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-pin-options",inputs:{pinLeftCaption:"pinLeftCaption",pinRightCaption:"pinRightCaption"},host:{classAttribute:"ig-grid-column-pin-options igx-grid-column-pin-options"},providers:[],usesInheritance:!0,ngImport:e,template:"",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Ic);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Nc,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-pin-options",template:"",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-grid-column-pin-options igx-grid-column-pin-options"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{pinLeftCaption:[{type:e.Input}],pinRightCaption:[{type:e.Input}]}});var Fc=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnPinOptionsComponent",Nc),n.TypeRegistrar.register("GridColumnPinOptions",Vc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Nc],imports:[a.CommonModule],exports:[Nc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Fc,decorators:[{type:e.NgModule,args:[{declarations:[Nc],exports:[Nc],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var $c=function(){function t(){n.TypeRegistrar.registerCons("GridColumnPinOptions",Vc),n.TypeRegistrar.registerCons("IgxGridColumnPinOptionsComponent",Nc),n.TypeRegistrar.register("GridColumnPinOptions",Vc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Fc],exports:[Fc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Fc],Fc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:$c,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Fc],imports:[a.CommonModule,Fc],entryComponents:[Nc]}]}],ctorParameters:function(){return[]}});var zc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.s=null,e.p=null,e.r=null,e.o=null,e.t=null,e.q=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.x=function(){if(null!=this.p){this.q=!0;try{var t=this.n.b3;this.p.svgPath=t?e.v:e.u}finally{this.q=!1}}},e.prototype.k=function(){var i=this;if(t.prototype.k.call(this),null!=this.g&&null!=this.e){var r=this.e,o=this.n,a=this.g;this.r=function(){var t=yc.f(i.n,r,e.u,1,o.p,o.j,new n.Size(1,24,24),i.o,i.p,i.s,i.t,!1,!0,!1);return i.o=t.p7,i.p=t.p8,i.s=t.p9,i.t=t.p10,t.ret}();var s=this.o;s.clicked=n.delegateCombine(s.clicked,n.runOn(this,this.w)),a.append(this.r)}},e.prototype.m=function(){t.prototype.m.call(this),this.x();var e=this.n;if(null!=this.s){this.s.setRawText(this.n.by);var n=this.n.bw;yc.j(this.s,n,"inline-block"),n?(this.o.e=1,this.o.fb="stretch",this.t.setStyleProperty("justify-content","space-between")):(this.o.e=4,this.o.fb="center",this.t.setStyleProperty("justify-content","center")),this.s.setStyleProperty("font",e.aa.fontString)}e.bh(this.o)},e.prototype.w=function(t,e){this.q||(this.n.b3=!this.n.b3)},e.$t=n.markType(e,"GridColumnHideOptionsView",gc.$),e.v="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",e.u="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z",e}(gc),Gc=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.f=function(){return new zc},e.prototype.get_b0=function(){return"Hide Column"},Object.defineProperty(e.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),e.prototype.bs=function(){return null!=this.column},e.prototype.a7=function(e,n){if(t.prototype.a7.call(this,e,n),null!=this.column)switch(n.propertyName){case"IsHidden":this.b2.m()}},e.prototype.be=function(e,n,i){t.prototype.be.call(this,e,n,i)},Object.defineProperty(e.prototype,"b3",{get:function(){var t=this.column;return null!=t&&t.jo},set:function(t){var e=this.column;null!=e&&(e.jo=t,e.m0("Hidden"))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b2",{get:function(){return this.e},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"GridColumnHideOptions",Cc.$),e}(Cc),Lc=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){var t=this.renderer;t&&(this._mainDiv=t.createElement("div"),t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i)}this.updateStyle()},r.prototype.createImplementation=function(){return new Gc},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-hide-options",host:{classAttribute:"ig-grid-column-hide-options igx-grid-column-hide-options"},providers:[],usesInheritance:!0,ngImport:e,template:"",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Ic);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Lc,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-hide-options",template:"",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-grid-column-hide-options igx-grid-column-hide-options"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]}});var qc=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnHideOptionsComponent",Lc),n.TypeRegistrar.register("GridColumnHideOptions",Gc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Lc],imports:[a.CommonModule],exports:[Lc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:qc,decorators:[{type:e.NgModule,args:[{declarations:[Lc],exports:[Lc],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Hc=function(){function t(){n.TypeRegistrar.registerCons("GridColumnHideOptions",Gc),n.TypeRegistrar.registerCons("IgxGridColumnHideOptionsComponent",Lc),n.TypeRegistrar.register("GridColumnHideOptions",Gc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,qc],exports:[qc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,qc],qc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Hc,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[qc],imports:[a.CommonModule,qc],entryComponents:[Lc]}]}],ctorParameters:function(){return[]}});var Wc=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){var t=this.renderer;t&&(this._mainDiv=t.createElement("div"),t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i)}this.updateStyle()},r.prototype.createImplementation=function(){return new _c},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-group-options",host:{classAttribute:"ig-grid-column-group-options igx-grid-column-group-options"},providers:[],usesInheritance:!0,ngImport:e,template:"",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Ic);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Wc,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-group-options",template:"",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-grid-column-group-options igx-grid-column-group-options"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]}});var Uc=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnGroupOptionsComponent",Wc),n.TypeRegistrar.register("GridColumnGroupOptions",_c.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Wc],imports:[a.CommonModule],exports:[Wc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Uc,decorators:[{type:e.NgModule,args:[{declarations:[Wc],exports:[Wc],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Kc=function(){function t(){n.TypeRegistrar.registerCons("GridColumnGroupOptions",_c),n.TypeRegistrar.registerCons("IgxGridColumnGroupOptionsComponent",Wc),n.TypeRegistrar.register("GridColumnGroupOptions",_c.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Uc],exports:[Uc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Uc],Uc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Kc,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Uc],imports:[a.CommonModule,Uc],entryComponents:[Wc]}]}],ctorParameters:function(){return[]}});var Xc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.y=null,e.z=null,e.u=null,e.x=null,e.aa=null,e.t=null,e.v=null,e.w=null,e.q=null,e.o=null,e.p=null,e.applyButtonClick=null,e.cancelButtonClick=null,e}return i.__extends(e,t),e.prototype.m=function(){t.prototype.m.call(this);var e=this.n;if(e.bh(this.q),e.bh(this.o),e.bh(this.p),null!=this.w&&null!=this.x){switch(this.w.setStyleProperty("padding-bottom","5px"),this.w.setStyleProperty("margin","0 -8px"),this.q.q){case 2:this.x.setStyleProperty("margin","0 -.25rem");break;case 1:case 4:case 3:this.x.setStyleProperty("margin","0 -.5rem")}this.x.setRawText(e.b7),this.x.setStyleProperty("font",e.aa.fontString)}null!=this.aa&&(this.aa.setRawText(e.cg),this.aa.setStyleProperty("font",e.aa.fontString),yc.j(this.aa,!1))},Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.al=function(t){null!=this.o&&(this.o.disabled=!t)},e.prototype.am=function(t){null!=this.q&&(this.q.disabled=!t)},e.prototype.ah=function(t){var i,r,o=this,a=this.e,s=this.n;this.y=t,this.w=function(){var t=yc.f(o.n,a,e.ab,1,s.p,s.j,new n.Size(1,24,24),o.q,i,o.x,r,!1,!0);return o.q=t.p7,i=t.p8,o.x=t.p9,r=t.p10,t.ret}();var l=this.q;l.clicked=n.delegateCombine(l.clicked,n.runOn(this,this.ae)),this.y.append(this.w)},e.prototype.aj=function(t){var e=this.e;this.z=t,this.aa=e.createElement("span"),this.aa.setRawText(this.n.cg),this.z.append(this.aa)},e.prototype.ai=function(t){},e.prototype.ak=function(t){this.h(t)},e.prototype.af=function(){null!=this.applyButtonClick&&this.applyButtonClick(this,n.EventArgs.empty)},e.prototype.ag=function(){null!=this.cancelButtonClick&&this.cancelButtonClick(this,n.EventArgs.empty)},e.prototype.ac=function(t,e){this.af()},e.prototype.ad=function(t,e){this.ag()},e.prototype.ae=function(t,e){this.n.cl()},e.$t=n.markType(e,"GridColumnFilterOptionsView",gc.$),e.ab="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",e}(gc),Zc=function(t){function e(){var e=t.call(this)||this;return e.bx=null,e.b6="Clear column filters",e.cb="Search",e.bz=0,e.by=0,e.cf="Text filter",e}return i.__extends(e,t),e.prototype.f=function(){return new Xc},e.prototype.bs=function(){if(null==this.column)return!1;if(null!=this.c&&0!=this.c.filterUIType)return!1;if(!this.column.jm)return!1;if(null==this.c||null==this.c.actualDataSource||!this.c.actualDataSource.isGroupingSupported||!this.c.actualDataSource.isFilteringSupported)return!1;if(this.c.isPagerVisible&&null!=this.c.pager){var t=this.c.pager.actualDataSource;if(null==t||!t.isGroupingSupported||!t.isFilteringSupported)return!1}return!0},e.prototype.a6=function(){t.prototype.a6.call(this),this.co(),this.cu()},e.prototype.a7=function(e,n){switch(t.prototype.a7.call(this,e,n),n.propertyName){case"Filter":this.cu()}},e.prototype.onViewInitialized=function(){t.prototype.onViewInitialized.call(this)},e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"ClearColumnFiltersCaption":case"TextFilterCaption":this.bw.m();break;case"ActualBaseTheme":case"ActualDensity":case"ActualFilterListDensity":case"FilterListPlaceholderText":case"BackgroundColor":case"TextColor":this.cw();break;case"FilterListDensity":this.b0=0==this.b2?this.q:this.b2}},e.prototype.bt=function(){this.cj()},Object.defineProperty(e.prototype,"bw",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b7",{get:function(){return this.b6},set:function(t){if(0!=n.StringComparer.b.compare(t,this.b6)){var e=this.b6;this.b6=t,this.bc("ClearColumnFiltersCaption",e,this.b6)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cc",{get:function(){return this.cb},set:function(t){if(0!=n.StringComparer.b.compare(t,this.cb)){var e=this.cb;this.cb=t,this.bc("FilterListPlaceholderText",e,this.cb)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b2",{get:function(){return this.bz},set:function(t){var e=this.bz;this.bz=t,e!=this.bz&&this.bc("FilterListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b0",{get:function(){return this.by},set:function(t){var e=this.by;this.by=t,e!=this.by&&this.bc("ActualFilterListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cg",{get:function(){return this.cf},set:function(t){if(0!=n.StringComparer.b.compare(t,this.cf)){var e=this.cf;this.cf=t,this.bc("TextFilterCaption",e,this.cf)}},enumerable:!1,configurable:!0}),e.prototype.cu=function(){var t=this.bx.ax();this.bw.al(!t);var e=this.b3();this.bw.am(e)},e.prototype.cj=function(){var t,r;if(0!=this.bx.keys.count){var o,a;0==this.bx.indexType?(a=!1,o=1):(a=!0,o=0);for(var s=new n.List$1(In.$,0),l=this.bx.keys,u=0;u<l.count;u++){var c=l._inner[u].value[0],h=e.bv(o,c);s.add(h)}if(1==s.count)this.column.g1=s._inner[0];else{var p=new Tn;p.usesOrOperator=a;try{for(var d=i.__values(n.fromEnum(s)),f=d.next();!f.done;f=d.next()){var m=f.value;p.add(m)}}catch(e){t={error:e}}finally{try{f&&!f.done&&(r=d.return)&&r.call(d)}finally{if(t)throw t.error}}this.column.g1=p}this.column.m0("Filtered")}else this.cl()},e.prototype.provideClearFiltersSection=function(t){this.bw.ah(t)},e.prototype.provideFilterSection=function(t){this.bw.aj(t)},e.prototype.provideFilterCheckboxListSection=function(t){this.bx=t,this.cw();var e=this.bx;e.selectAllCheckboxChanged=n.delegateCombine(e.selectAllCheckboxChanged,n.runOn(this,this.ck));var i=this.bx;i.checkedChanged=n.delegateCombine(i.checkedChanged,n.runOn(this,this.cn))},e.prototype.provideFilterButtonSection=function(t){this.bw.ai(t)},e.prototype.provideMainDiv=function(t){this.bw.ak(t)},e.prototype.cl=function(){this.column.g1=null,this.cv()},e.bv=function(t,e){var n=new In;return n.operator=t,n.value=e,n},e.prototype.b3=function(){var t=this.column;return null!=t&&null!=t.g1},e.prototype.co=function(){var t=this.column,e=this.c,i=null!=t?t.lo:null,r=null,o=null;if(null!=e&&(e.isPagerVisible&&null!=e.pager&&null!=e.pager.actualDataSource?(r=e.pager.actualDataSource,o=e.pager.actualDataSource.clone()):(r=e.actualDataSource,o=e.actualDataSource.clone())),null!=o){this.cx(r,o),o.summaryDescriptions.clear(),o.sortDescriptions.clear(),o.groupDescriptions.clear();var a=new n.SortDescription;a.propertyName=i,a.direction=0,o.groupDescriptions.add(a);for(var s=e.z(t),l=o.filterExpressions,u=l.k.count-1;u>=0;u--){if(l.k.item(u).isAutoGenerated){null!=s?l.k.item(u,s):o.filterExpressions.removeAt(u);break}}this.bx.itemsSource=o,this.bx.dataMemberPath=i,this.bx.primaryKey=[i],o.shouldEmitSectionHeaders=!0,o.isSectionHeaderNormalRow=!0,o.isSectionExpandedDefault=!1,o.isSectionCollapsable=!0,o.isSectionContentVisible=!1,this.cv()}},e.prototype.cx=function(t,e){if(null!=t&&null!=t.actualSchema&&null!=e&&null!=e.actualSchema)for(var n=e.actualSchema.propertyTypes,i=t.actualSchema.propertyTypes,r=0;r<n.length;r++)n[r]!=i[r]&&(n[r]=i[r])},e.prototype.cv=function(){for(var t,e,r=this.column,o=null!=r?r.lo:null,a=!0,l=n.toNullable(m,null),u=this.b4(),c=u.count-1;c>=0;c--){var h=u._inner[c];switch(h.operator){case 0:case 1:break;default:u.removeAt(c);continue}if(n.nullableEquals(l,null))l=n.toNullable(m,h.operator);else if(l.value!=h.operator){a=!1;break}}if(0!=u.count&&a){switch(l.value){case 0:this.bx.c5();break;case 1:this.bx.d3()}var p=this.bx.keys;try{for(var d=i.__values(n.fromEnum(u)),f=d.next();!f.done;f=d.next()){var g=f.value;p.add(new s([o],[g.value]))}}catch(e){t={error:e}}finally{try{f&&!f.done&&(e=d.return)&&e.call(d)}finally{if(t)throw t.error}}this.cu()}else this.bx.d3()},e.prototype.b4=function(){var t=new n.List$1(In.$,0),i=this.column;if(null==i)return t;null!=i.g1&&(t=e.cm(i.g1,t).p1);return t},e.cm=function(t,i){var r=n.typeCast(Tn.$,t);if(null!=r)for(var o=0;o<r.count;o++){var a=r.item(o);i=e.cm(a,i).p1}else null!=t&&null!==n.typeCast(In.$,t)&&i.add(t);return{p1:i}},e.prototype.cw=function(){null!=this.bx&&(this.bx.density=this.b0,this.bx.b4=this.cc,this.bx.backgroundColor=this.bo,this.bx.e7=this.br,this.bx.baseTheme=this.i,this.bx.updateHrMargin(new n.Thickness(1,-7,3,-7,3)))},e.prototype.ck=function(t,e){this.cu()},e.prototype.cn=function(t,e){this.cu()},e.$t=n.markType(e,"GridColumnFilterOptions",vc.$),e}(vc),Yc=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){this._mainDiv=this._mainDivRef.nativeElement;var t=this.renderer;t&&(t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i)}var r=this._angularRenderer.getWrapper(this._clearFiltersSectionRef.nativeElement);e.provideClearFiltersSection(r);var o=this._angularRenderer.getWrapper(this._filterSectionRef.nativeElement);e.provideFilterSection(o),e.provideFilterCheckboxListSection(this._filterCheckboxListSectionRef.i);var a=this._angularRenderer.getWrapper(this._filterButtonsSectionRef.nativeElement);e.provideFilterButtonSection(a),this.updateStyle()},r.prototype.createImplementation=function(){return new Zc},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"clearColumnFiltersCaption",{get:function(){return this.i.b7},set:function(t){this.i.b7=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterListPlaceholderText",{get:function(){return this.i.cc},set:function(t){this.i.cc=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterListDensity",{get:function(){return this.i.b2},set:function(t){this.i.b2=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualFilterListDensity",{get:function(){return this.i.b0},set:function(t){this.i.b0=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textFilterCaption",{get:function(){return this.i.cg},set:function(t){this.i.cg=t},enumerable:!1,configurable:!0}),r.prototype.onApply=function(){this.i.bt()},r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-filter-options",inputs:{clearColumnFiltersCaption:"clearColumnFiltersCaption",filterListPlaceholderText:"filterListPlaceholderText",filterListDensity:"filterListDensity",actualFilterListDensity:"actualFilterListDensity",textFilterCaption:"textFilterCaption"},host:{classAttribute:"ig-grid-column-filter-options igx-grid-column-filter-options"},providers:[],viewQueries:[{propertyName:"_mainDivRef",first:!0,predicate:["_mainDivRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_clearFiltersSectionRef",first:!0,predicate:["_clearFiltersSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_filterSectionRef",first:!0,predicate:["_filterSectionRef"],descendants:!0,static:!0},{propertyName:"_filterCheckboxListSectionRef",first:!0,predicate:["_filterCheckboxListSectionRef"],descendants:!0,static:!0},{propertyName:"_filterButtonsSectionRef",first:!0,predicate:["_filterButtonsSectionRef"],descendants:!0,static:!0}],usesInheritance:!0,ngImport:e,template:'<div #_mainDivRef\n >\n <div #_clearFiltersSectionRef\n key="clearFiltersSection"\n ></div>\n\n <div #_filterSectionRef\n key="filtersSection"\n ></div>\n\n <igx-checkbox-list \n #_filterCheckboxListSectionRef\n key="filterCheckboxListSection"\n width="195px"\n ></igx-checkbox-list>\n\n <div #_filterButtonsSectionRef\n key="filterButtonsSection"\n ></div>\n </div>',isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],components:[{type:El,selector:"igx-checkbox-list",inputs:["height","width","dataSource","keys","primaryKey","dataMemberPath","dataLegendTarget","subtitleMemberPath","propertyTypeMemberPath","selectedMemberPath","filterPlaceholderText","searchInputType","rowHeight","cellTextStyle","indexType","baseTheme","density","searchIconColor","searchBackgroundColor","labelClickTriggersChange","searchTextColor","searchBorderColor","searchTextStyle","checkboxTickColor","checkboxCheckedBackgroundColor","checkboxUncheckedBackgroundColor","checkboxCheckedBorderColor","checkboxUncheckedBorderColor","checkboxCornerRadius","scrollbarStyle","scrollbarBackground","selectAllCaption","selectAllCaptionTextColor","actualSelectAllCaptionTextColor","showSelectAll","backgroundColor","rowHoverBackgroundColor","textColor","showFilter","isRowHoverEnabled","checkboxAlignedRight"],outputs:["selectedKeyAdded","selectedKeyRemoved","checkedChanged","labelClicked","indexTypeChanged","keysCleared","selectAllCheckboxChanged"]}],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Oc);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Yc,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-filter-options",template:'<div #_mainDivRef\n >\n <div #_clearFiltersSectionRef\n key="clearFiltersSection"\n ></div>\n\n <div #_filterSectionRef\n key="filtersSection"\n ></div>\n\n <igx-checkbox-list \n #_filterCheckboxListSectionRef\n key="filterCheckboxListSection"\n width="195px"\n ></igx-checkbox-list>\n\n <div #_filterButtonsSectionRef\n key="filterButtonsSection"\n ></div>\n </div>',changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-grid-column-filter-options igx-grid-column-filter-options"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_mainDivRef:[{type:e.ViewChild,args:["_mainDivRef",{read:e.ElementRef,static:!0}]}],_clearFiltersSectionRef:[{type:e.ViewChild,args:["_clearFiltersSectionRef",{read:e.ElementRef,static:!0}]}],_filterSectionRef:[{type:e.ViewChild,args:["_filterSectionRef",{static:!0}]}],_filterCheckboxListSectionRef:[{type:e.ViewChild,args:["_filterCheckboxListSectionRef",{static:!0}]}],_filterButtonsSectionRef:[{type:e.ViewChild,args:["_filterButtonsSectionRef",{static:!0}]}],clearColumnFiltersCaption:[{type:e.Input}],filterListPlaceholderText:[{type:e.Input}],filterListDensity:[{type:e.Input}],actualFilterListDensity:[{type:e.Input}],textFilterCaption:[{type:e.Input}]}});var Qc=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnFilterOptionsComponent",Yc),n.TypeRegistrar.register("GridColumnFilterOptions",Zc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Yc],imports:[a.CommonModule,Mu],exports:[Mu,Yc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Mu],Mu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Qc,decorators:[{type:e.NgModule,args:[{declarations:[Yc],exports:[Mu,Yc],imports:[a.CommonModule,Mu],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Jc=function(){function t(){n.TypeRegistrar.registerCons("GridColumnFilterOptions",Zc),n.TypeRegistrar.registerCons("IgxGridColumnFilterOptionsComponent",Yc),n.TypeRegistrar.register("GridColumnFilterOptions",Zc.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Eu,Qc],exports:[Eu,Qc]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Eu,Qc],Eu,Qc]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Jc,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Eu,Qc],imports:[a.CommonModule,Eu,Qc],entryComponents:[Yc]}]}],ctorParameters:function(){return[]}});var th=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.label=null,e.iD=null,e.isSelected=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"SummaryChooserItem"),e}(n.Base),eh=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=null,e.a=!1,e}return i.__extends(e,t),e.$t=n.markType(e,"SummaryChangedEventArgs"),e}(n.Base),nh=new n.Type(null,"ISummaryChooserView"),ih=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=!1,e.a=null,e.c=null,e._model=null,e.d=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"model",{get:function(){return this._model},set:function(t){this._model=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"renderer",{get:function(){return this.c},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"container",{get:function(){return this.d},enumerable:!1,configurable:!0}),e.prototype.provideContainer=function(t){var e=this;if(null==t)return this.c=null,void(this.a=null);this.c=t,null!=this.a||this.b||(this.b=!0,this.d=this.c.createElement("div"),this.d.addClass("ig-summary-chooser"),this.d.setStyleProperty("padding","0px 8px 4px"),this.d.setStyleProperty("margin-top","-3px"),this.d.setStyleProperty("width","150px"),this.d.setStyleProperty("height","154px"),this.d.setStyleProperty("box-sizing","border-box"),this.d.listen("mousedown",(function(t){return t.stopPropagation()})),this.c.getPortal(this.d,"CheckboxList",(function(t){var n=t.componentRef;e.a=n.i,e.model.a1(e.a),e.b=!1}),!1))},e.prototype.onItemInserted=function(){this.e()},e.prototype.onItemRemoved=function(){this.e()},e.prototype.e=function(){if(this.model.f.bc>-1){var t=this.model.r.count*this.model.f.bc;t+=4,this.d.setStyleProperty("height",t+"px")}},e.$t=n.markType(e,"SummaryChooserView",n.Base.$,[nh]),e}(n.Base),rh=function(t){function e(){var e=t.call(this)||this;return e.c=null,e.e=null,e.q=null,e.o=null,e.s=null,e.t=null,e.v=null,e.u=null,e.w=null,e.l=0,e.k=0,e.a8=n.BrushUtil.j(255,24,29,31),e.h=0,e.g=1,e.a7=n.BrushUtil.j(255,248,248,248),e.summaryChanged=null,e.c=new ih,e.c.model=e,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"r",{get:function(){return this.q},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"p",{get:function(){return null==this.o&&(this.o=new n.SRProvider(this.c.renderer),this.o.cb("DataGrid")),this.o},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aa",{get:function(){if(null==this.s){var t=this.p.b1("Column_Options_Summary_Average");return n.stringIsNullOrWhiteSpace(t)?"Average":t}return this.s},set:function(t){var e=this.s;this.s=t,e!=this.s&&this.a0("AverageCaption",e,this.s)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ag",{get:function(){if(null==this.t){var t=this.p.b1("Column_Options_Summary_Count");return n.stringIsNullOrWhiteSpace(t)?"Count":t}return this.t},set:function(t){var e=this.t;this.t=t,e!=this.t&&this.a0("CountCaption",e,this.t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ap",{get:function(){if(null==this.v){var t=this.p.b1("Column_Options_Summary_Minimum");return n.stringIsNullOrWhiteSpace(t)?"Minimum":t}return this.v},set:function(t){var e=this.v;this.v=t,e!=this.v&&this.a0("MinimumCaption",e,this.v)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"al",{get:function(){if(null==this.u){var t=this.p.b1("Column_Options_Summary_Maximum");return n.stringIsNullOrWhiteSpace(t)?"Maximum":t}return this.u},set:function(t){var e=this.u;this.u=t,e!=this.u&&this.a0("MaximumCaption",e,this.u)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"at",{get:function(){if(null==this.w){var t=this.p.b1("Column_Options_Summary_Sum");return n.stringIsNullOrWhiteSpace(t)?"Sum":t}return this.w},set:function(t){var e=this.w;this.w=t,e!=this.w&&this.a0("SumCaption",e,this.w)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n",{get:function(){return this.l},set:function(t){var e=this.l;this.l=t,e!=this.l&&this.a0("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.l))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"m",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.a0("ActualDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ba",{get:function(){return this.a8},set:function(t){var e=this.a8;this.a8=t,e!=this.a8&&this.a0("TextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.a0("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"i",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.a0("ActualBaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a9",{get:function(){return this.a7},set:function(t){var e=this.a7;this.a7=t,e!=this.a7&&this.a0("Background",e,t)},enumerable:!1,configurable:!0}),e.prototype.a1=function(t){var e,i=this;if(null!=this.e){var r=this.e;r.checkedChanged=n.delegateRemove(r.checkedChanged,n.runOn(this,this.az))}if(this.e=t,null!=this.e){var o=this.e;o.checkedChanged=n.delegateCombine(o.checkedChanged,n.runOn(this,this.az))}this.q=new n.List$1(th.$,0),this.q.add(((e=new th).label=i.aa,e.iD="avg",e)),this.q.add(function(){var t=new th;return t.label=i.ag,t.iD="count",t}()),this.q.add(function(){var t=new th;return t.label=i.al,t.iD="max",t}()),this.q.add(function(){var t=new th;return t.label=i.ap,t.iD="min",t}()),this.q.add(function(){var t=new th;return t.label=i.at,t.iD="sum",t}()),this.a6()},e.prototype.az=function(t,e){var n,i=this.q._inner[e.c];i.isSelected=e.b,null!=this.summaryChanged&&this.summaryChanged(this,((n=new eh).b=i.iD,n.a=e.b,n))},e.prototype.a6=function(){null!=this.e&&(this.e.density=this.m,this.e.e7=this.ba,this.e.baseTheme=this.i,this.e.backgroundColor=this.a9,this.e.showSelectAll=!1,this.e.a3=!1,this.e.az=!1,this.e.updateHrMargin(new n.Thickness(1,-7,3,-7,3)),this.e.itemsSource=this.q,this.e.dataMemberPath="label",this.e.selectedMemberPath="isSelected",this.e.primaryKey=["label"])},e.prototype.a0=function(t,e,n){switch(t){case"AverageCaption":this.a5("sum",this.aa);break;case"CountCaption":this.a5("count",this.aa);break;case"MinimumCaption":this.a5("min",this.aa);break;case"MaximumCaption":this.a5("max",this.aa);break;case"SumCaption":this.a5("sum",this.aa);break;case"ActualDensity":case"ActualBaseTheme":case"Background":case"TextColor":this.a6();break;case"Density":this.m=0==this.n?this.m:this.n;break;case"BaseTheme":this.i=0==this.j?this.i:this.j}},e.prototype.a2=function(t){this.c.provideContainer(t)},e.prototype.ay=function(){null!=this.e&&this.e.destroy(),this.c.provideContainer(null)},e.prototype.a4=function(t,e){for(var n=0;n<this.q.count;n++){var i=this.q._inner[n];if(i.iD==t){i.isSelected=e,null!=this.e&&this.e.dg(n,i,i);break}}},e.prototype.ax=function(t,e){var n=new th;n.iD=t,n.label=e,this.q.add(n),null!=this.e&&this.e.dd(this.q.count-1,n),this.c.onItemInserted()},e.prototype.a3=function(t){for(var e=0;e<this.q.count;e++){var n=this.q._inner[e];if(n.iD==t){this.q.removeAt(e),null!=this.e&&this.e.df(e,n);break}}this.c.onItemRemoved()},e.prototype.a5=function(t,e){for(var n=0;n<this.q.count;n++){var i=this.q._inner[n];if(i.iD==t){i.label=e,null!=this.e&&this.e.dg(n,i,i);break}}},e.prototype.b=function(){for(var t=new n.List$1(n.String_$type,0),e=0;e<this.q.count;e++){var i=this.q._inner[e];i.isSelected&&t.add(i.iD)}return t.toArray()},e.prototype.a=function(){for(var t=new n.List$1(n.String_$type,0),e=0;e<this.q.count;e++){var i=this.q._inner[e];i.isSelected||t.add(i.iD)}return t.toArray()},e.$t=n.markType(e,"SummaryChooser"),e}(n.Base),oh=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.o=null,e.p=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.k=function(){var i=this;if(t.prototype.k.call(this),null!=this.g&&null!=this.e){var r,o,a;if(null==this.n.bz)this.o=function(){var t=yc.f(i.n,i.e,e.r,1,i.n.p,i.n.j,new n.Size(1,24,24),r,o,i.p,a,!1,!0);return r=t.p7,o=t.p8,i.p=t.p9,a=t.p10,t.ret}(),a.setStyleProperty("transform","rotate(-90deg)"),this.g.append(this.o),this.n.ck(r);if(null==this.n.bx){var s=new rh;s.a2(this.e),this.n.co(s);var l=this.e.createElement("div"),u=this.e.getSubRenderer(l),c=new n.Popup;c.provideRenderer(u),c.appendPopupContent(s.c.container),this.n.cl(c)}document.addEventListener("mousedown",n.runOn(this,this.s),!1)}},e.prototype.m=function(){if(t.prototype.m.call(this),this.n.bh(this.n.bz),null!=this.o){switch(this.o.setStyleProperty("margin","0 -8px"),this.n.bz.q){case 2:this.p.setStyleProperty("margin","0 -.25rem");break;case 1:case 4:case 3:this.p.setStyleProperty("margin","0 -.5rem")}this.p.setRawText(this.n.cb),this.p.setStyleProperty("font",this.n.aa.fontString)}},e.prototype.t=function(){if(null!=this.o){var t=this.o.getNativeElement().getBoundingClientRect(),e=new n.Rect(4);return e.left=t.left,e.top=t.top,e.width=t.width,e.height=t.height,e}return n.Rect.empty},e.prototype.u=function(){var t=this.t();return t.x+=window.pageXOffset,t.y+=window.pageYOffset,t},e.prototype.q=function(){return window.innerWidth},e.prototype.s=function(t){this.n.cj()},e.$t=n.markType(e,"GridColumnSummaryOptionsView",gc.$),e.r="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z",e}(gc),ah=function(t){function e(){var e=t.call(this)||this;return e.by=null,e.b0=null,e.bw=null,e.b8=null,e.b2=0,e.b1=0,e.b6=0,e.ct=n.BrushUtil.j(255,24,29,31),e.cs=n.BrushUtil.j(255,248,248,248),e}return i.__extends(e,t),e.prototype.f=function(){return new oh},e.prototype.bs=function(){return null!=this.c&&null!=this.column&&(this.column.jc&&3!=this.c.summaryScope)},e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"ActualBaseTheme":case"ActualDensity":case"ActualSummaryListDensity":case"BackgroundColor":case"TextColor":case"SummaryListTextColor":case"SummaryListBackground":this.cq(),this.cp(),this.cr();break;case"SummaryListDensity":this.b3=0==this.b5?this.q:this.b5;break;case"SummaryCaption":case"ActualLabelTextStyle":case"ActiveCount":this.bv.m()}},e.prototype.bt=function(){if(null!=this.bw){for(var t=this.bw.a(),e=0;e<t.length;e++){var n=new vt(1,this.column.lo);switch(t[e]){case"avg":n.i=3;break;case"count":n.i=4;break;case"max":n.i=1;break;case"min":n.i=0;break;case"sum":n.i=2}for(var i=0;i<this.c.summaryDescriptions.j.count;i++){var r=this.c.summaryDescriptions.j.item(i);r.ah==this.column.lo&&r.i==n.i&&(this.c.summaryDescriptions.j.removeAt(i),i--)}}for(var o=this.bw.b(),a=0;a<o.length;a++){var s=new vt(1,this.column.lo);switch(o[a]){case"avg":s.i=3;break;case"count":s.i=4;break;case"max":s.i=1;break;case"min":s.i=0;break;case"sum":s.i=2}for(var l=!1,u=0;u<this.c.summaryDescriptions.j.count;u++){var c=this.c.summaryDescriptions.j.item(u);if(c.ah==this.column.lo&&c.i==s.i){l=!0;break}}l||(this.c.summaryDescriptions.j.add(s),this.column.m0("Summed"))}}null!=this.b0&&this.b0.ax&&this.b0.b6()},e.prototype.bu=function(){null!=this.b0&&this.b0.ax&&this.b0.b6()},e.prototype.a6=function(){if(t.prototype.a6.call(this),null!=this.column){this.b7=0;for(var e=0;e<this.c.summaryDescriptions.j.count;e++){var n=this.c.summaryDescriptions.j.item(e);if(n.ah==this.column.lo)switch(n.i){case 3:this.bw.a4("avg",!0),this.b7++;break;case 4:this.bw.a4("count",!0),this.b7++;break;case 1:this.bw.a4("max",!0),this.b7++;break;case 0:this.bw.a4("min",!0),this.b7++;break;case 2:this.bw.a4("sum",!0),this.b7++}}}},Object.defineProperty(e.prototype,"cb",{get:function(){return this.b7>0?n.stringFormat("{0} ({1})",this.cd,this.b7):this.cd},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bz",{get:function(){return this.by},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bx",{get:function(){return this.bw},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bv",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cd",{get:function(){if(null==this.b8){var t=this.ai.b1("Column_Options_Summaries");return n.stringIsNullOrWhiteSpace(t)?"Summaries":t}return this.b8},set:function(t){var e=this.b8;this.b8=t,e!=this.b8&&this.bc("SummaryCaption",e,this.b8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b5",{get:function(){return this.b2},set:function(t){var e=this.b2;this.b2=t,e!=this.b2&&this.bc("SummaryListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.b2))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b3",{get:function(){return this.b1},set:function(t){var e=this.b1;this.b1=t,e!=this.b1&&this.bc("ActualSummaryListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.b1))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b7",{get:function(){return this.b6},set:function(t){var e=this.b6;this.b6=t,e!=this.b6&&this.bc("ActiveCount",e,this.b6)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cv",{get:function(){return this.ct},set:function(t){var e=this.ct;this.ct=t,e!=this.ct&&this.bc("SummaryListTextColor",e,this.ct)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cu",{get:function(){return this.cs},set:function(t){var e=this.cs;this.cs=t,e!=this.cs&&this.bc("SummaryListBackground",e,this.cs)},enumerable:!1,configurable:!0}),e.prototype.cj=function(){null!=this.b0&&this.b0.ax&&this.b0.b6()},e.prototype.ck=function(t){if(null!=this.by){var e=this.by;e.clicked=n.delegateRemove(e.clicked,n.runOn(this,this.cm))}if(this.by=t,null!=this.by){var i=this.by;i.clicked=n.delegateCombine(i.clicked,n.runOn(this,this.cm))}this.cp()},e.prototype.cl=function(t){this.b0=t,this.cr()},e.prototype.co=function(t){if(null!=this.bw){var e=this.bw;e.summaryChanged=n.delegateRemove(e.summaryChanged,n.runOn(this,this.cn))}if(this.bw=t,null!=this.bw){var i=this.bw;i.summaryChanged=n.delegateCombine(i.summaryChanged,n.runOn(this,this.cn))}this.cq()},e.prototype.cq=function(){null!=this.bw&&(this.bw.j=this.i,this.bw.n=this.b3,this.bw.ba=this.cv,this.bw.a9=this.cu)},e.prototype.cp=function(){null!=this.by&&(this.by.ds=0,this.by.a2=!1,this.by.rg=this.br,this.bh(this.by))},e.prototype.cr=function(){null!=this.b0&&(this.b0.c0=this.bo,this.b0.am=!1)},e.prototype.cm=function(t,e){if(null!=this.b0)if(this.b0.ax)this.b0.b6();else{var n=this.bv.t(),i=this.bv.u(),r=this.bv.q();n.right>r-150-10?(i.x-=150,i.y-=i.height):(i.x+=i.width,i.y-=i.height),this.b0.showRelativeToExclusionRect(i,1,0)}},e.prototype.cn=function(t,e){e.a?this.b7++:this.b7--},e.$t=n.markType(e,"GridColumnSummaryOptions",vc.$),e}(vc),sh=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),r.prototype.createImplementation=function(){return new ah},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryCaption",{get:function(){return this.i.cd},set:function(t){this.i.cd=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryListDensity",{get:function(){return this.i.b5},set:function(t){this.i.b5=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSummaryListDensity",{get:function(){return this.i.b3},set:function(t){this.i.b3=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"activeCount",{get:function(){return this.i.b7},set:function(t){this.i.b7=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryListTextColor",{get:function(){return n.brushToString(this.i.cv)},set:function(t){this.i.cv=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryListBackground",{get:function(){return n.brushToString(this.i.cu)},set:function(t){this.i.cu=n.stringToBrush(t)},enumerable:!1,configurable:!0}),r.prototype.onApply=function(){this.i.bt()},r.prototype.onCancel=function(){this.i.bu()},r.prototype.closeMenu=function(){this.i.cj()},r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-summary-options",inputs:{summaryCaption:"summaryCaption",summaryListDensity:"summaryListDensity",actualSummaryListDensity:"actualSummaryListDensity",activeCount:"activeCount",summaryListTextColor:"summaryListTextColor",summaryListBackground:"summaryListBackground"},providers:[{provide:Oc,useExisting:e.forwardRef((function(){return r}))},{provide:Pc,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Oc);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:sh,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-summary-options",template:"",providers:[{provide:Oc,useExisting:e.forwardRef((function(){return sh}))},{provide:Pc,useExisting:e.forwardRef((function(){return sh}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{summaryCaption:[{type:e.Input}],summaryListDensity:[{type:e.Input}],actualSummaryListDensity:[{type:e.Input}],activeCount:[{type:e.Input}],summaryListTextColor:[{type:e.Input}],summaryListBackground:[{type:e.Input}]}});var lh=function(){function t(){n.TypeRegistrar.register("SummaryChooser",rh.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:lh,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var uh=function(){function t(){n.TypeRegistrar.registerCons("SummaryChooser",rh),n.TypeRegistrar.register("SummaryChooser",rh.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,lh],exports:[lh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,lh],lh]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:uh,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[lh],imports:[a.CommonModule,lh],entryComponents:[]}]}],ctorParameters:function(){return[]}});var ch=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnSummaryOptionsComponent",sh),n.TypeRegistrar.register("GridColumnSummaryOptions",ah.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[sh],imports:[a.CommonModule,Mu,lh],exports:[sh,Mu,lh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Mu,lh],Mu,lh]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ch,decorators:[{type:e.NgModule,args:[{declarations:[sh],exports:[sh,Mu,lh],imports:[a.CommonModule,Mu,lh],entryComponents:[]}]}],ctorParameters:function(){return[]}});var hh=function(){function t(){n.TypeRegistrar.registerCons("GridColumnSummaryOptions",ah),n.TypeRegistrar.registerCons("IgxGridColumnSummaryOptionsComponent",sh),n.TypeRegistrar.register("GridColumnSummaryOptions",ah.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Eu,uh,ch],exports:[Eu,uh,ch]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Eu,uh,ch],Eu,uh,ch]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:hh,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Eu,uh,ch],imports:[a.CommonModule,Eu,uh,ch],entryComponents:[sh]}]}],ctorParameters:function(){return[]}});var ph=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"ApplyButtonClickEventArgs",n.EventArgs.$),e}(n.EventArgs),dh=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"CancelButtonClickEventArgs",n.EventArgs.$),e}(n.EventArgs),fh=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.t=null,e.s=null,e.u=null,e.o=null,e.p=null,e.applyButtonClick=null,e.cancelButtonClick=null,e}return i.__extends(e,t),e.prototype.m=function(){t.prototype.m.call(this);var e=this.n;e.bh(this.o),e.bh(this.p),null!=this.s&&this.s.setRawText(e.bz),null!=this.u&&this.u.setRawText(e.b3)},Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.z=function(t){var e=this,i=this.e,r=this.n;this.t=t;var o,a=i.createElement("hr");a.setStyleProperty("margin","4px -7px"),a.setStyleProperty("border-top","1px solid #dde2eb"),a.setStyleProperty("border-left","0px"),a.setStyleProperty("border-right","0px"),a.setStyleProperty("border-bottom","0px"),this.t.append(a);var s=function(){var t=yc.g(e.n,i,null,r.p,r.j,n.Size.empty,e.o,o,e.s);return e.o=t.p6,o=t.p7,e.s=t.p8,t.ret}();s.setStyleProperty("margin-left","1rem");var l,u=this.o;u.clicked=n.delegateCombine(u.clicked,n.runOn(this,this.v)),this.o.g6="1";var c=function(){var t=yc.g(e.n,i,null,r.p,r.j,n.Size.empty,e.p,l,e.u);return e.p=t.p6,l=t.p7,e.u=t.p8,t.ret}(),h=this.p;h.clicked=n.delegateCombine(h.clicked,n.runOn(this,this.w)),this.p.g6="1",this.p.e=2;var p=i.createElement("div");p.setStyleProperty("display","flex"),p.setStyleProperty("justify-content","space-between"),p.append(c),p.append(s),this.t.append(p),this.m()},e.prototype.aa=function(t){this.h(t)},e.prototype.x=function(){null!=this.applyButtonClick&&this.applyButtonClick(this,n.EventArgs.empty)},e.prototype.y=function(){null!=this.cancelButtonClick&&this.cancelButtonClick(this,n.EventArgs.empty)},e.prototype.v=function(t,e){this.x()},e.prototype.w=function(t,e){this.y()},e.$t=n.markType(e,"GridColumnButtonOptionsView",gc.$),e}(gc),mh=function(t){function e(){var e=t.call(this)||this;return e.by="Apply",e.b2="Cancel",e.applyButtonClick=null,e.cancelButtonClick=null,e}return i.__extends(e,t),e.prototype.f=function(){return new fh},e.prototype.bs=function(){return!0},e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"ApplyButtonCaption":case"CancelButtonCaption":this.bx.m()}},e.prototype.onViewInitialized=function(){t.prototype.onViewInitialized.call(this);var e=this.bx;e.applyButtonClick=n.delegateCombine(e.applyButtonClick,n.runOn(this,this.ca));var i=this.bx;i.cancelButtonClick=n.delegateCombine(i.cancelButtonClick,n.runOn(this,this.cb))},Object.defineProperty(e.prototype,"bx",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bz",{get:function(){return this.by},set:function(t){if(0!=n.StringComparer.b.compare(t,this.by)){var e=this.by;this.by=t,this.bc("ApplyButtonCaption",e,this.by)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b3",{get:function(){return this.b2},set:function(t){if(0!=n.StringComparer.b.compare(t,this.b2)){var e=this.b2;this.b2=t,this.bc("CancelButtonCaption",e,this.b2)}},enumerable:!1,configurable:!0}),e.prototype.provideButtonSection=function(t){this.bx.z(t)},e.prototype.provideMainDiv=function(t){this.bx.aa(t)},e.prototype.ca=function(t,e){this.b6()},e.prototype.cb=function(t,e){this.b7()},e.prototype.b6=function(){null!=this.applyButtonClick&&this.applyButtonClick(this,new ph)},e.prototype.b7=function(){null!=this.cancelButtonClick&&this.cancelButtonClick(this,new dh)},e.$t=n.markType(e,"GridColumnButtonOptions",vc.$),e}(vc),gh=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ph},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),yh=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new dh},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),bh=[],vh=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._applyButtonClick=null,s._cancelButtonClick=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){this._mainDiv=this._mainDivRef.nativeElement;var t=this.renderer;t&&(t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i)}var r=this._angularRenderer.getWrapper(this._buttonsSectionRef.nativeElement);e.provideButtonSection(r),this.updateStyle()},r.prototype.createImplementation=function(){return new mh},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"applyButtonCaption",{get:function(){return this.i.bz},set:function(t){this.i.bz=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cancelButtonCaption",{get:function(){return this.i.b3},set:function(t){this.i.b3=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"applyButtonClick",{get:function(){var t=this;return null==this._applyButtonClick&&(this._applyButtonClick=new e.EventEmitter,this.i.applyButtonClick=n.delegateCombine(this.i.applyButtonClick,(function(e,n){t._runInZone((function(){var e=new gh;e._provideImplementation(n),t.beforeApplyButtonClick&&t.beforeApplyButtonClick(t,e),t._applyButtonClick.emit({sender:t,args:e})}))}))),this._applyButtonClick},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cancelButtonClick",{get:function(){var t=this;return null==this._cancelButtonClick&&(this._cancelButtonClick=new e.EventEmitter,this.i.cancelButtonClick=n.delegateCombine(this.i.cancelButtonClick,(function(e,n){t._runInZone((function(){var e=new yh;e._provideImplementation(n),t.beforeCancelButtonClick&&t.beforeCancelButtonClick(t,e),t._cancelButtonClick.emit({sender:t,args:e})}))}))),this._cancelButtonClick},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-button-options",inputs:{applyButtonCaption:"applyButtonCaption",cancelButtonCaption:"cancelButtonCaption"},outputs:{applyButtonClick:"applyButtonClick",cancelButtonClick:"cancelButtonClick"},host:{classAttribute:"ig-grid-column-button-options igx-grid-column-button-options"},providers:bh,viewQueries:[{propertyName:"_mainDivRef",first:!0,predicate:["_mainDivRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_buttonsSectionRef",first:!0,predicate:["_buttonsSectionRef"],descendants:!0,static:!0}],usesInheritance:!0,ngImport:e,template:'<div #_mainDivRef\n >\n <div #_buttonsSectionRef\n key="buttonsSection"\n ></div>\n </div>',isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Oc);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:vh,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-button-options",template:'<div #_mainDivRef\n >\n <div #_buttonsSectionRef\n key="buttonsSection"\n ></div>\n </div>',changeDetection:e.ChangeDetectionStrategy.OnPush,providers:bh,host:{class:"ig-grid-column-button-options igx-grid-column-button-options"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_mainDivRef:[{type:e.ViewChild,args:["_mainDivRef",{read:e.ElementRef,static:!0}]}],_buttonsSectionRef:[{type:e.ViewChild,args:["_buttonsSectionRef",{static:!0}]}],applyButtonCaption:[{type:e.Input}],cancelButtonCaption:[{type:e.Input}],applyButtonClick:[{type:e.Output}],cancelButtonClick:[{type:e.Output}]}});var Ch=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnButtonOptionsComponent",vh),n.TypeRegistrar.register("GridColumnButtonOptions",mh.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[vh],imports:[a.CommonModule],exports:[vh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ch,decorators:[{type:e.NgModule,args:[{declarations:[vh],exports:[vh],imports:[a.CommonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var xh=function(){function t(){n.TypeRegistrar.registerCons("GridColumnButtonOptions",mh),n.TypeRegistrar.registerCons("IgxGridColumnButtonOptionsComponent",vh),n.TypeRegistrar.register("GridColumnButtonOptions",mh.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Ch],exports:[Ch]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Ch],Ch]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:xh,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Ch],imports:[a.CommonModule,Ch],entryComponents:[vh]}]}],ctorParameters:function(){return[]}});var _h=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.v=null,e.z=null,e.x=null,e.y=null,e.q=null,e.aa=null,e.o=null,e.t=null,e.s=null,e.w=null,e.r=null,e.u=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.prototype.p=function(){var t=this.e,e=t.createElement("div"),n=t.createElement("header");e.append(n);var i=t.createElement("h4");return n.append(i),n.setRawText(this.n.dx),e},e.prototype.ad=function(){if(null!=this.u){var t=this.n,e=t.dx;this.u.setRawText(e),null!=t.cf&&this.u.setStyleProperty("font",t.cf.fontString)}},e.prototype.j=function(){t.prototype.j.call(this),this.m()},e.prototype.m=function(){var e,n;t.prototype.m.call(this),null!=this.g&&(this.g.setStyleProperty("padding",this.n.d5()),this.g.setStyleProperty("box-sizing","border-box")),this.ad(),null!=this.v&&(e=this.v,n=this.n.cp,yc.j(e,n,"flex")),null!=this.z&&(e=this.z,n=this.n.c3,yc.j(e,n)),null!=this.x&&(e=this.x,n=this.n.cx,yc.j(e,n)),null!=this.y&&(e=this.y,n=this.n.c0,yc.j(e,n)),null!=this.w&&(e=this.w,n=this.n.cu,yc.j(e,n)),null!=this.r&&(e=this.r,n=this.n.co,yc.j(e,n)),null!=this.q&&(e=this.q,n=this.n.cl,yc.j(e,n)),null!=this.aa&&(e=this.aa,n=this.n.c6,yc.j(e,n)),null!=this.o&&(e=this.o,yc.j(e,!0))},e.prototype.ab=function(){var t=this.e,e=t.createElement("header");this.v.append(e);var n=t.createElement("h4");n.setStyleProperty("margin-top","0"),n.setStyleProperty("margin-bottom","0"),e.append(n),this.u=n,this.t.append(e),this.ad()},e.prototype.ac=function(t,e,n,i,r,o,a,s,l,u,c){this.v=t,this.z=e,this.x=n,this.y=i,this.q=r,this.aa=o,this.o=a,this.t=s,this.s=l,this.w=u,this.r=c,this.s.setStyleProperty("display","flex"),this.s.setStyleProperty("flex-direction","row"),this.s.setStyleProperty("flex-wrap","no-wrap"),this.s.setStyleProperty("align-items","center"),this.s.setStyleProperty("justify-content","space-between"),this.v.setStyleProperty("display","flex"),this.v.setStyleProperty("flex-direction","row"),this.v.setStyleProperty("flex-wrap","no-wrap"),this.v.setStyleProperty("align-items","center"),this.v.setStyleProperty("justify-content","space-between"),this.v.setStyleProperty("margin-bottom","5px"),this.ab(),this.z.setStyleProperty("margin-bottom","8px"),this.x.setStyleProperty("margin-bottom","8px"),this.y.setStyleProperty("margin-bottom","8px")},e.$t=n.markType(e,"GridColumnOptionsView",gc.$),e}(gc),wh=function(t){function e(){var e=t.call(this)||this;return e.b1=null,e.by=null,e.b0=null,e.bx=null,e.bw=null,e.bv=null,e.b2=null,e.bu=null,e.ch=null,e.ce=null,e.cd=null,e.c9=n.truncate(n.DeviceUtils.g(8)),e.db=n.truncate(n.DeviceUtils.g(4)),e.da=n.truncate(n.DeviceUtils.g(8)),e.c8=n.truncate(n.DeviceUtils.g(8)),e.cq=!0,e.c1=!0,e.cv=!0,e.cy=!0,e.cs=!0,e.cm=!0,e.cj=!0,e.c4=!0,e.e3=null,e.ex=null,e.e0=null,e.d9=null,e.ec=null,e.eg=null,e.en=null,e.eq=null,e.eu=null,e.dn=null,e.dr=null,e.du=null,e.b6=0,e.b4=0,e.b5=0,e.b3=0,e.d0=null,e.fk=n.BrushUtil.j(255,24,29,31),e.fj=n.BrushUtil.j(255,248,248,248),e.applyButtonClick=null,e.cancelButtonClick=null,e}return i.__extends(e,t),e.prototype.f=function(){return new _h},e.prototype.a6=function(){t.prototype.a6.call(this);var e=this.column;null!=this.b1&&(this.b1.column=e),null!=this.by&&(this.by.column=e),null!=this.b0&&(this.b0.column=e),null!=this.bx&&(this.bx.column=e),null!=this.bw&&(this.bw.column=e),null!=this.bv&&(this.bv.column=e),null!=this.b2&&(this.b2.column=e),this.fi()},e.prototype.bb=function(e,n){switch(t.prototype.bb.call(this,e,n),n.propertyName){case"HeaderClickAction":case"ColumnMovingMode":this.fi()}},e.prototype.be=function(e,n,i){switch(t.prototype.be.call(this,e,n,i),e){case"HeaderVisible":case"SortOptionsVisible":case"MoveOptionsVisible":case"PinOptionsVisible":case"HideOptionsVisible":case"FilterOptionsVisible":case"PaddingTop":case"PaddingRight":case"PaddingBottom":case"PaddingLeft":this.fi();break;case"ActualLabelTextStyle":case"ActualBaseTheme":case"ActualButtonDensity":case"ActualButtonTextStyle":case"ActualDensity":case"ActualFilterListDensity":case"ActualSummaryListDensity":case"BackgroundColor":case"TextColor":this.fg();break;case"ColumnNameTextStyle":this.fh();break;case"ActualColumnNameTextStyle":this.fi();break;case"FilterListDensity":this.b7=0==this.filterListDensity?this.q:this.filterListDensity;break;case"SummaryListDensity":this.b8=0==this.summaryListDensity?this.q:this.summaryListDensity}},e.prototype.fi=function(){this.bz.m()},Object.defineProperty(e.prototype,"dx",{get:function(){var t=this.column;return null!=t?t.k3:"(No column selected)"},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ci",{get:function(){return null==this.ch&&(this.ch=new n.FontInfo,this.ch.q="Verdana",this.ch.f=16),this.ch},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cp",{get:function(){return this.cr},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c3",{get:function(){return this.c2&&this.b1.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cx",{get:function(){return this.cw&&this.by.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c0",{get:function(){return this.cz&&this.b0.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cu",{get:function(){return this.ct&&this.bx.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"co",{get:function(){return this.cn&&this.bw.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cl",{get:function(){return this.ck&&this.bv.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c6",{get:function(){return this.c5&&this.b2.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bz",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cg",{get:function(){return this.ce},set:function(t){var e=this.ce;this.ce=t,e!=this.ce&&this.bc("ColumnNameTextStyle",e,this.ce)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cf",{get:function(){return this.cd},set:function(t){var e=this.cd;this.cd=t,this.cd!=e&&this.bc("ActualColumnNameTextStyle",e,this.cd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dh",{get:function(){return this.c9},set:function(t){var e=this.c9;this.c9=t,this.c9!=e&&this.bc("PaddingLeft",e,this.c9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dj",{get:function(){return this.db},set:function(t){var e=this.db;this.db=t,this.db!=e&&this.bc("PaddingTop",e,this.db)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"di",{get:function(){return this.da},set:function(t){var e=this.da;this.da=t,this.da!=e&&this.bc("PaddingRight",e,this.da)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dg",{get:function(){return this.c8},set:function(t){var e=this.c8;this.c8=t,this.c8!=e&&this.bc("PaddingBottom",e,this.c8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cr",{get:function(){return this.cq},set:function(t){if(t!=this.cq){var e=this.cq;this.cq=t,this.bc("HeaderVisible",e,this.cq)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c2",{get:function(){return this.c1},set:function(t){if(t!=this.c1){var e=this.c1;this.c1=t,this.bc("SortOptionsVisible",e,this.c1)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cw",{get:function(){return this.cv},set:function(t){if(t!=this.cv){var e=this.cv;this.cv=t,this.bc("MoveOptionsVisible",e,this.cv)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cz",{get:function(){return this.cy},set:function(t){if(t!=this.cy){var e=this.cy;this.cy=t,this.bc("PinOptionsVisible",e,this.cy)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ct",{get:function(){return this.cs},set:function(t){if(t!=this.cs){var e=this.cs;this.cs=t,this.bc("HideOptionsVisible",e,this.cs)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cn",{get:function(){return this.cm},set:function(t){if(t!=this.cm){var e=this.cm;this.cm=t,this.bc("GroupOptionsVisible",e,this.cm)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ck",{get:function(){return this.cj},set:function(t){if(t!=this.cj){var e=this.cj;this.cj=t,this.bc("FilterOptionsVisible",e,this.cj)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c5",{get:function(){return this.c4},set:function(t){if(t!=this.c4){var e=this.c4;this.c4=t,this.bc("SummaryOptionsVisible",e,this.c4)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e4",{get:function(){return null!=this.e3?this.e3:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Sort"))?"Sort":this.ai.b1("Column_Sort")},set:function(t){var e=this.e4;0!=n.StringComparer.b.compare(t,e)&&(this.e3=t,null!=this.b1&&(this.b1.by=t),this.bc("SortHeaderCaption",e,this.e3))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ey",{get:function(){return null!=this.ex?this.ex:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Sort_Ascending"))?"Asc":this.ai.b1("Column_Sort_Ascending")},set:function(t){var e=this.ey;0!=n.StringComparer.b.compare(t,e)&&(this.ex=t,null!=this.b1&&(this.b1.b5=t),this.bc("SortAscendingCaption",e,this.ex))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e1",{get:function(){return null!=this.e0?this.e0:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Sort_Descending"))?"Desc":this.ai.b1("Column_Sort_Descending")},set:function(t){var e=this.e1;0!=n.StringComparer.b.compare(t,e)&&(this.e0=t,null!=this.b1&&(this.b1.b9=t),this.bc("SortDescendingCaption",e,this.e0))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ea",{get:function(){return null!=this.d9?this.d9:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Move"))?"Move":this.ai.b1("Column_Move")},set:function(t){var e=this.ea;0!=n.StringComparer.b.compare(t,e)&&(this.d9=t,null!=this.by&&(this.by.by=t),this.bc("MoveHeaderCaption",e,this.d9))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ed",{get:function(){return null!=this.ec?this.ec:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Move_Left"))?"Left":this.ai.b1("Column_Move_Left")},set:function(t){var e=this.ed;0!=n.StringComparer.b.compare(t,e)&&(this.ec=t,null!=this.by&&(this.by.b8=t),this.bc("MoveLeftCaption",e,this.ec))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"eh",{get:function(){return null!=this.eg?this.eg:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Move_Right"))?"Right":this.ai.b1("Column_Move_Right")},set:function(t){var e=this.eh;0!=n.StringComparer.b.compare(t,e)&&(this.eg=t,null!=this.by&&(this.by.cc=t),this.bc("MoveRightCaption",e,this.eg))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"eo",{get:function(){return null!=this.en?this.en:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Pin"))?"Pin":this.ai.b1("Column_Pin")},set:function(t){var e=this.eo;0!=n.StringComparer.b.compare(t,e)&&(this.en=t,null!=this.b0&&(this.b0.by=t),this.bc("PinHeaderCaption",e,this.en))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"er",{get:function(){return null!=this.eq?this.eq:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Pin_Left"))?"Left":this.ai.b1("Column_Pin_Left")},set:function(t){var e=this.er;0!=n.StringComparer.b.compare(t,e)&&(this.eq=t,null!=this.b0&&(this.b0.b6=t),this.bc("PinLeftCaption",e,this.eq))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ev",{get:function(){return null!=this.eu?this.eu:n.stringIsNullOrWhiteSpace(this.ai.b1("Column_Pin_Right"))?"Right":this.ai.b1("Column_Pin_Right")},set:function(t){var e=this.ev;0!=n.StringComparer.b.compare(t,e)&&(this.eu=t,null!=this.b0&&(this.b0.ca=t),this.bc("PinRightCaption",e,this.eu))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dp",{get:function(){return null!=this.dn?this.dn:n.stringIsNullOrWhiteSpace(this.ai.b1("Apply"))?"Apply":this.ai.b1("Apply")},set:function(t){var e=this.dp;0!=n.StringComparer.b.compare(t,e)&&(this.dn=t,null!=this.bu&&(this.bu.bz=t),this.bc("ApplyFiltersButtonCaption",e,this.dn))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ds",{get:function(){return null!=this.dr?this.dr:n.stringIsNullOrWhiteSpace(this.ai.b1("Cancel"))?"Cancel":this.ai.b1("Cancel")},set:function(t){var e=this.ds;0!=n.StringComparer.b.compare(t,e)&&(this.dr=t,null!=this.bu&&(this.bu.b3=t),this.bc("CancelFiltersButtonCaption",e,this.dr))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dv",{get:function(){return null!=this.du?this.du:n.stringIsNullOrWhiteSpace(this.ai.b1("Clear_Column_Filter"))?"Clear column filters":this.ai.b1("Clear_Column_Filter")},set:function(t){var e=this.dv;0!=n.StringComparer.b.compare(t,e)&&(this.du=t,null!=this.bv&&(this.bv.b7=t),this.bc("ClearColumnFiltersCaption",e,this.du))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryListDensity",{get:function(){return this.b6},set:function(t){var e=this.b6;this.b6=t,e!=this.b6&&this.bc("SummaryListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.b6))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b8",{get:function(){return this.b4},set:function(t){var e=this.b4;this.b4=t,e!=this.b4&&this.bc("ActualSummaryListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.b4))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"filterListDensity",{get:function(){return this.b5},set:function(t){var e=this.b5;this.b5=t,e!=this.b5&&this.bc("FilterListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b7",{get:function(){return this.b3},set:function(t){var e=this.b3;this.b3=t,e!=this.b3&&this.bc("ActualFilterListDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d1",{get:function(){return null!=this.d0?this.d0:n.stringIsNullOrWhiteSpace(this.ai.b1("Search"))?"Search":this.ai.b1("Search")},set:function(t){if(0!=n.StringComparer.b.compare(t,this.d0)){var e=this.d0;this.d0=t,null!=this.bv&&(this.bv.cc=t),this.bc("FilterListPlaceholderText",e,this.d0)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fm",{get:function(){return this.fk},set:function(t){var e=this.fk;this.fk=t,e!=this.fk&&this.bc("SummaryListTextColor",e,this.fk)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fl",{get:function(){return this.fj},set:function(t){var e=this.fj;this.fj=t,e!=this.fj&&this.bc("SummaryListBackground",e,this.fj)},enumerable:!1,configurable:!0}),e.prototype.notifySizeChanged=function(){this.e.j()},e.prototype.provideContent=function(t,e,i,r,o,a,s,l,u,c,h,p,d,f,m,g,y,b,v){this.bz.ac(t,e,i,r,o,a,s,l,u,c,h),this.b1=p,this.b1.by=this.e4,this.b1.b5=this.ey,this.b1.b9=this.e1,this.by=d,this.by.by=this.ea,this.by.b8=this.ed,this.by.cc=this.eh,this.b0=f,this.b0.by=this.eo,this.b0.b6=this.er,this.b0.ca=this.ev,this.bx=m,this.bx.bw=!1,this.bw=g,this.bw.bw=!1,this.bv=y,this.bv.b7=this.dv,this.bv.cc=this.d1;var C=this.b1;C.propertyChanged=n.delegateCombine(C.propertyChanged,n.runOn(this,this.fb));var x=this.by;x.propertyChanged=n.delegateCombine(x.propertyChanged,n.runOn(this,this.fb));var _=this.b0;_.propertyChanged=n.delegateCombine(_.propertyChanged,n.runOn(this,this.fb));var w=this.bx;w.propertyChanged=n.delegateCombine(w.propertyChanged,n.runOn(this,this.fb));var S=this.bw;S.propertyChanged=n.delegateCombine(S.propertyChanged,n.runOn(this,this.fb));var P=this.bv;P.propertyChanged=n.delegateCombine(P.propertyChanged,n.runOn(this,this.fb)),this.b2=b,this.bu=v,this.bu.bz=this.dp,this.bu.b3=this.ds;var O=this.bu;O.applyButtonClick=n.delegateCombine(O.applyButtonClick,n.runOn(this,this.fd));var I=this.bu;I.cancelButtonClick=n.delegateCombine(I.cancelButtonClick,n.runOn(this,this.fe)),this.fh(),this.bl(),this.bi(),this.fg()},e.prototype.d5=function(){return n.stringFormat1("{0}px {1}px {2}px {3}px",this.dj.toString(),this.di.toString(),this.dg.toString(),this.dh.toString())},e.prototype.fh=function(){this.cf=null==this.cg?this.ci:this.cg},e.prototype.fg=function(){for(var t=[this.b1,this.by,this.b0,this.bx,this.bw,this.bv,this.b2,this.bu],e=0;e<t.length;e++){var i=t[e];null!=i&&(i.bo=this.bo,i.br=this.br,i.density=this.q,i.buttonDensity=this.p,i.j=this.i);var r=n.typeCast(Cc.$,i);null!=r&&(r.ag=this.aa,r.ab=this.z)}null!=this.bv&&(this.bv.b2=this.b7),null!=this.b2&&(this.b2.b5=this.b8,this.b2.cv=this.fm,this.b2.cu=this.fl)},e.prototype.fd=function(t,e){for(var n=[this.b1,this.by,this.b0,this.bx,this.bw,this.bv,this.b2],i=0;i<n.length;i++){n[i].bt()}null!=this.applyButtonClick&&this.applyButtonClick(this,e)},e.prototype.fe=function(t,e){for(var n=[this.b1,this.by,this.b0,this.bx,this.bw,this.bv,this.b2],i=0;i<n.length;i++){n[i].bu()}null!=this.cancelButtonClick&&this.cancelButtonClick(this,e)},e.prototype.fb=function(t,e){e.propertyName},e.$t=n.markType(e,"GridColumnOptions",bc.$),e}(bc),Sh=function(t){function r(e,i,r,o,a){var s=t.call(this)||this;return s.renderer=e,s._elRef=i,s.ngZone=r,s.injector=o,s.componentFactoryResolver=a,s._angularRenderer=null,s._applyButtonClick=null,s._cancelButtonClick=null,s._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(s)),s}return i.__extends(r,t),Object.defineProperty(r.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),r.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},r.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},r.prototype.ngAfterContentInit=function(){this._mainDiv=this._mainDivRef.nativeElement;var t=this.renderer;t&&(t.appendChild(this._elRef.element.nativeElement,this._mainDiv),t.setStyle(this._mainDiv,"display","block"),t.setStyle(this._mainDiv,"width","100%"),t.setStyle(this._mainDiv,"height","100%"));var e=this.i;if(t){var i=new n.AngularRenderer(this._mainDiv,t,window.document,this.ngZone,!0,Us);this._angularRenderer=i,e.provideRenderer(i),e.notifySizeChanged(),i.addSizeWatcher((function(){e.notifySizeChanged()}))}var r=this._angularRenderer.getWrapper(this._headerSectionRef.nativeElement),o=this._angularRenderer.getWrapper(this._sortSectionRef.nativeElement),a=this._angularRenderer.getWrapper(this._moveSectionRef.nativeElement),s=this._angularRenderer.getWrapper(this._pinSectionRef.nativeElement),l=this._angularRenderer.getWrapper(this._filterSectionRef.nativeElement),u=this._angularRenderer.getWrapper(this._summarySectionRef.nativeElement),c=this._angularRenderer.getWrapper(this._buttonSectionRef.nativeElement),h=this._angularRenderer.getWrapper(this._headerColumnNameSectionRef.nativeElement),p=this._angularRenderer.getWrapper(this._headerButtonsSectionRef.nativeElement),d=this._angularRenderer.getWrapper(this._hideSectionRef.nativeElement),f=this._angularRenderer.getWrapper(this._groupSectionRef.nativeElement);this.i.provideContent(r,o,a,s,l,u,c,h,p,d,f,this._sortOptionsRef.i,this._moveOptionsRef.i,this._pinOptionsRef.i,this._hideOptionsRef.i,this._groupOptionsRef.i,this._filterOptionsRef.i,this._summaryOptionsRef.i,this._buttonOptionsRef.i),this.i.notifySizeChanged(),this.updateStyle()},r.prototype.createImplementation=function(){return new wh},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"headerOptionsVisibleResolved",{get:function(){return this.i.cp},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortOptionsVisibleResolved",{get:function(){return this.i.c3},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"moveOptionsVisibleResolved",{get:function(){return this.i.cx},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinOptionsVisibleResolved",{get:function(){return this.i.c0},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"hideOptionsVisibleResolved",{get:function(){return this.i.cu},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"groupOptionsVisibleResolved",{get:function(){return this.i.co},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterOptionsVisibleResolved",{get:function(){return this.i.cl},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryOptionsVisibleResolved",{get:function(){return this.i.c6},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"columnNameTextStyle",{get:function(){return null==this.i.cg?null:this.i.cg.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.cg=e},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingLeft",{get:function(){return this.i.dh},set:function(t){this.i.dh=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingTop",{get:function(){return this.i.dj},set:function(t){this.i.dj=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingRight",{get:function(){return this.i.di},set:function(t){this.i.di=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"paddingBottom",{get:function(){return this.i.dg},set:function(t){this.i.dg=+t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"headerVisible",{get:function(){return this.i.cr},set:function(t){this.i.cr=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortOptionsVisible",{get:function(){return this.i.c2},set:function(t){this.i.c2=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"moveOptionsVisible",{get:function(){return this.i.cw},set:function(t){this.i.cw=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinOptionsVisible",{get:function(){return this.i.cz},set:function(t){this.i.cz=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"hideOptionsVisible",{get:function(){return this.i.ct},set:function(t){this.i.ct=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"groupOptionsVisible",{get:function(){return this.i.cn},set:function(t){this.i.cn=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterOptionsVisible",{get:function(){return this.i.ck},set:function(t){this.i.ck=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryOptionsVisible",{get:function(){return this.i.c5},set:function(t){this.i.c5=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortHeaderCaption",{get:function(){return this.i.e4},set:function(t){this.i.e4=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortAscendingCaption",{get:function(){return this.i.ey},set:function(t){this.i.ey=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortDescendingCaption",{get:function(){return this.i.e1},set:function(t){this.i.e1=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"moveHeaderCaption",{get:function(){return this.i.ea},set:function(t){this.i.ea=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"moveLeftCaption",{get:function(){return this.i.ed},set:function(t){this.i.ed=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"moveRightCaption",{get:function(){return this.i.eh},set:function(t){this.i.eh=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinHeaderCaption",{get:function(){return this.i.eo},set:function(t){this.i.eo=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinLeftCaption",{get:function(){return this.i.er},set:function(t){this.i.er=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"pinRightCaption",{get:function(){return this.i.ev},set:function(t){this.i.ev=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"applyFiltersButtonCaption",{get:function(){return this.i.dp},set:function(t){this.i.dp=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cancelFiltersButtonCaption",{get:function(){return this.i.ds},set:function(t){this.i.ds=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"clearColumnFiltersCaption",{get:function(){return this.i.dv},set:function(t){this.i.dv=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryListDensity",{get:function(){return this.i.summaryListDensity},set:function(t){this.i.summaryListDensity=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSummaryListDensity",{get:function(){return this.i.b8},set:function(t){this.i.b8=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterListDensity",{get:function(){return this.i.filterListDensity},set:function(t){this.i.filterListDensity=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualFilterListDensity",{get:function(){return this.i.b7},set:function(t){this.i.b7=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterListPlaceholderText",{get:function(){return this.i.d1},set:function(t){this.i.d1=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryListTextColor",{get:function(){return n.brushToString(this.i.fm)},set:function(t){this.i.fm=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"summaryListBackground",{get:function(){return n.brushToString(this.i.fl)},set:function(t){this.i.fl=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"applyButtonClick",{get:function(){var t=this;return null==this._applyButtonClick&&(this._applyButtonClick=new e.EventEmitter,this.i.applyButtonClick=n.delegateCombine(this.i.applyButtonClick,(function(e,n){t._runInZone((function(){var e=new gh;e._provideImplementation(n),t.beforeApplyButtonClick&&t.beforeApplyButtonClick(t,e),t._applyButtonClick.emit({sender:t,args:e})}))}))),this._applyButtonClick},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cancelButtonClick",{get:function(){var t=this;return null==this._cancelButtonClick&&(this._cancelButtonClick=new e.EventEmitter,this.i.cancelButtonClick=n.delegateCombine(this.i.cancelButtonClick,(function(e,n){t._runInZone((function(){var e=new yh;e._provideImplementation(n),t.beforeCancelButtonClick&&t.beforeCancelButtonClick(t,e),t._cancelButtonClick.emit({sender:t,args:e})}))}))),this._cancelButtonClick},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-grid-column-options",inputs:{height:"height",width:"width",columnNameTextStyle:"columnNameTextStyle",paddingLeft:"paddingLeft",paddingTop:"paddingTop",paddingRight:"paddingRight",paddingBottom:"paddingBottom",headerVisible:"headerVisible",sortOptionsVisible:"sortOptionsVisible",moveOptionsVisible:"moveOptionsVisible",pinOptionsVisible:"pinOptionsVisible",hideOptionsVisible:"hideOptionsVisible",groupOptionsVisible:"groupOptionsVisible",filterOptionsVisible:"filterOptionsVisible",summaryOptionsVisible:"summaryOptionsVisible",sortHeaderCaption:"sortHeaderCaption",sortAscendingCaption:"sortAscendingCaption",sortDescendingCaption:"sortDescendingCaption",moveHeaderCaption:"moveHeaderCaption",moveLeftCaption:"moveLeftCaption",moveRightCaption:"moveRightCaption",pinHeaderCaption:"pinHeaderCaption",pinLeftCaption:"pinLeftCaption",pinRightCaption:"pinRightCaption",applyFiltersButtonCaption:"applyFiltersButtonCaption",cancelFiltersButtonCaption:"cancelFiltersButtonCaption",clearColumnFiltersCaption:"clearColumnFiltersCaption",summaryListDensity:"summaryListDensity",actualSummaryListDensity:"actualSummaryListDensity",filterListDensity:"filterListDensity",actualFilterListDensity:"actualFilterListDensity",filterListPlaceholderText:"filterListPlaceholderText",summaryListTextColor:"summaryListTextColor",summaryListBackground:"summaryListBackground"},outputs:{applyButtonClick:"applyButtonClick",cancelButtonClick:"cancelButtonClick"},providers:[],viewQueries:[{propertyName:"_mainDivRef",first:!0,predicate:["_mainDivRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_headerSectionRef",first:!0,predicate:["_headerSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_sortSectionRef",first:!0,predicate:["_sortSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_moveSectionRef",first:!0,predicate:["_moveSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_pinSectionRef",first:!0,predicate:["_pinSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_filterSectionRef",first:!0,predicate:["_filterSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_summarySectionRef",first:!0,predicate:["_summarySectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_buttonSectionRef",first:!0,predicate:["_buttonSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_headerColumnNameSectionRef",first:!0,predicate:["_headerColumnNameSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_headerButtonsSectionRef",first:!0,predicate:["_headerButtonsSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_hideSectionRef",first:!0,predicate:["_hideSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_groupSectionRef",first:!0,predicate:["_groupSectionRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_sortOptionsRef",first:!0,predicate:["_sortOptionsRef"],descendants:!0,static:!0},{propertyName:"_moveOptionsRef",first:!0,predicate:["_moveOptionsRef"],descendants:!0,static:!0},{propertyName:"_pinOptionsRef",first:!0,predicate:["_pinOptionsRef"],descendants:!0,static:!0},{propertyName:"_hideOptionsRef",first:!0,predicate:["_hideOptionsRef"],descendants:!0,static:!0},{propertyName:"_groupOptionsRef",first:!0,predicate:["_groupOptionsRef"],descendants:!0,static:!0},{propertyName:"_filterOptionsRef",first:!0,predicate:["_filterOptionsRef"],descendants:!0,static:!0},{propertyName:"_summaryOptionsRef",first:!0,predicate:["_summaryOptionsRef"],descendants:!0,static:!0},{propertyName:"_buttonOptionsRef",first:!0,predicate:["_buttonOptionsRef"],descendants:!0,static:!0}],usesInheritance:!0,ngImport:e,template:'<div #_mainDivRef\n class="ig-grid-column-options igx-grid-column-options"\n >\n <div\n #_headerSectionRef\n key="headerSection"\n >\n <div\n #_headerColumnNameSectionRef\n key="headerColumnNameSection"\n ></div>\n <div\n #_headerButtonsSectionRef\n key="headerbuttonsSection"\n >\n <div\n #_groupSectionRef\n key="groupSection">\n <igx-grid-column-group-options\n #_groupOptionsRef \n key="groupOptions"\n ></igx-grid-column-group-options>\n </div>\n <div\n #_hideSectionRef\n key="hideSection">\n <igx-grid-column-hide-options\n #_hideOptionsRef \n key="hideOptions"\n ></igx-grid-column-hide-options>\n </div>\n </div> \n </div>\n <div\n #_sortSectionRef\n key="sortSection">\n <igx-grid-column-sort-options\n #_sortOptionsRef \n key="sortOptions"\n ></igx-grid-column-sort-options> \n </div>\n <div\n #_moveSectionRef\n key="moveSection">\n <igx-grid-column-move-options\n #_moveOptionsRef \n key="moveOptions"\n ></igx-grid-column-move-options>\n </div>\n <div\n #_pinSectionRef\n key="pinSection">\n <igx-grid-column-pin-options\n #_pinOptionsRef \n key="pinOptions"\n ></igx-grid-column-pin-options>\n </div>\n <div\n #_summarySectionRef\n key="summarySection">\n <igx-grid-column-summary-options\n #_summaryOptionsRef \n key="summaryOptions"\n ></igx-grid-column-summary-options> \n </div>\n <div\n #_filterSectionRef\n key="filterSection">\n <igx-grid-column-filter-options\n #_filterOptionsRef \n key="filterOptions"\n ></igx-grid-column-filter-options> \n </div>\n <div\n #_buttonSectionRef\n key="buttonSection">\n <igx-grid-column-button-options\n #_buttonOptionsRef\n key="buttonOptions"\n ></igx-grid-column-button-options>\n </div>\n </div>',isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],components:[{type:Wc,selector:"igx-grid-column-group-options"},{type:Lc,selector:"igx-grid-column-hide-options"},{type:jc,selector:"igx-grid-column-sort-options",inputs:["ascendingCaption","descendingCaption","sortDirection"]},{type:Bc,selector:"igx-grid-column-move-options",inputs:["moveLeftCaption","moveRightCaption"]},{type:Nc,selector:"igx-grid-column-pin-options",inputs:["pinLeftCaption","pinRightCaption"]},{type:sh,selector:"igx-grid-column-summary-options",inputs:["summaryCaption","summaryListDensity","actualSummaryListDensity","activeCount","summaryListTextColor","summaryListBackground"]},{type:Yc,selector:"igx-grid-column-filter-options",inputs:["clearColumnFiltersCaption","filterListPlaceholderText","filterListDensity","actualFilterListDensity","textFilterCaption"]},{type:vh,selector:"igx-grid-column-button-options",inputs:["applyButtonCaption","cancelButtonCaption"],outputs:["applyButtonClick","cancelButtonClick"]}],changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Pc);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Sh,decorators:[{type:e.Component,args:[{selector:"igx-grid-column-options",template:'<div #_mainDivRef\n class="ig-grid-column-options igx-grid-column-options"\n >\n <div\n #_headerSectionRef\n key="headerSection"\n >\n <div\n #_headerColumnNameSectionRef\n key="headerColumnNameSection"\n ></div>\n <div\n #_headerButtonsSectionRef\n key="headerbuttonsSection"\n >\n <div\n #_groupSectionRef\n key="groupSection">\n <igx-grid-column-group-options\n #_groupOptionsRef \n key="groupOptions"\n ></igx-grid-column-group-options>\n </div>\n <div\n #_hideSectionRef\n key="hideSection">\n <igx-grid-column-hide-options\n #_hideOptionsRef \n key="hideOptions"\n ></igx-grid-column-hide-options>\n </div>\n </div> \n </div>\n <div\n #_sortSectionRef\n key="sortSection">\n <igx-grid-column-sort-options\n #_sortOptionsRef \n key="sortOptions"\n ></igx-grid-column-sort-options> \n </div>\n <div\n #_moveSectionRef\n key="moveSection">\n <igx-grid-column-move-options\n #_moveOptionsRef \n key="moveOptions"\n ></igx-grid-column-move-options>\n </div>\n <div\n #_pinSectionRef\n key="pinSection">\n <igx-grid-column-pin-options\n #_pinOptionsRef \n key="pinOptions"\n ></igx-grid-column-pin-options>\n </div>\n <div\n #_summarySectionRef\n key="summarySection">\n <igx-grid-column-summary-options\n #_summaryOptionsRef \n key="summaryOptions"\n ></igx-grid-column-summary-options> \n </div>\n <div\n #_filterSectionRef\n key="filterSection">\n <igx-grid-column-filter-options\n #_filterOptionsRef \n key="filterOptions"\n ></igx-grid-column-filter-options> \n </div>\n <div\n #_buttonSectionRef\n key="buttonSection">\n <igx-grid-column-button-options\n #_buttonOptionsRef\n key="buttonOptions"\n ></igx-grid-column-button-options>\n </div>\n </div>',changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_mainDivRef:[{type:e.ViewChild,args:["_mainDivRef",{read:e.ElementRef,static:!0}]}],_headerSectionRef:[{type:e.ViewChild,args:["_headerSectionRef",{read:e.ElementRef,static:!0}]}],_sortSectionRef:[{type:e.ViewChild,args:["_sortSectionRef",{read:e.ElementRef,static:!0}]}],_moveSectionRef:[{type:e.ViewChild,args:["_moveSectionRef",{read:e.ElementRef,static:!0}]}],_pinSectionRef:[{type:e.ViewChild,args:["_pinSectionRef",{read:e.ElementRef,static:!0}]}],_filterSectionRef:[{type:e.ViewChild,args:["_filterSectionRef",{read:e.ElementRef,static:!0}]}],_summarySectionRef:[{type:e.ViewChild,args:["_summarySectionRef",{read:e.ElementRef,static:!0}]}],_buttonSectionRef:[{type:e.ViewChild,args:["_buttonSectionRef",{read:e.ElementRef,static:!0}]}],_headerColumnNameSectionRef:[{type:e.ViewChild,args:["_headerColumnNameSectionRef",{read:e.ElementRef,static:!0}]}],_headerButtonsSectionRef:[{type:e.ViewChild,args:["_headerButtonsSectionRef",{read:e.ElementRef,static:!0}]}],_hideSectionRef:[{type:e.ViewChild,args:["_hideSectionRef",{read:e.ElementRef,static:!0}]}],_groupSectionRef:[{type:e.ViewChild,args:["_groupSectionRef",{read:e.ElementRef,static:!0}]}],_sortOptionsRef:[{type:e.ViewChild,args:["_sortOptionsRef",{static:!0}]}],_moveOptionsRef:[{type:e.ViewChild,args:["_moveOptionsRef",{static:!0}]}],_pinOptionsRef:[{type:e.ViewChild,args:["_pinOptionsRef",{static:!0}]}],_hideOptionsRef:[{type:e.ViewChild,args:["_hideOptionsRef",{static:!0}]}],_groupOptionsRef:[{type:e.ViewChild,args:["_groupOptionsRef",{static:!0}]}],_filterOptionsRef:[{type:e.ViewChild,args:["_filterOptionsRef",{static:!0}]}],_summaryOptionsRef:[{type:e.ViewChild,args:["_summaryOptionsRef",{static:!0}]}],_buttonOptionsRef:[{type:e.ViewChild,args:["_buttonOptionsRef",{static:!0}]}],height:[{type:e.Input}],width:[{type:e.Input}],columnNameTextStyle:[{type:e.Input}],paddingLeft:[{type:e.Input}],paddingTop:[{type:e.Input}],paddingRight:[{type:e.Input}],paddingBottom:[{type:e.Input}],headerVisible:[{type:e.Input}],sortOptionsVisible:[{type:e.Input}],moveOptionsVisible:[{type:e.Input}],pinOptionsVisible:[{type:e.Input}],hideOptionsVisible:[{type:e.Input}],groupOptionsVisible:[{type:e.Input}],filterOptionsVisible:[{type:e.Input}],summaryOptionsVisible:[{type:e.Input}],sortHeaderCaption:[{type:e.Input}],sortAscendingCaption:[{type:e.Input}],sortDescendingCaption:[{type:e.Input}],moveHeaderCaption:[{type:e.Input}],moveLeftCaption:[{type:e.Input}],moveRightCaption:[{type:e.Input}],pinHeaderCaption:[{type:e.Input}],pinLeftCaption:[{type:e.Input}],pinRightCaption:[{type:e.Input}],applyFiltersButtonCaption:[{type:e.Input}],cancelFiltersButtonCaption:[{type:e.Input}],clearColumnFiltersCaption:[{type:e.Input}],summaryListDensity:[{type:e.Input}],actualSummaryListDensity:[{type:e.Input}],filterListDensity:[{type:e.Input}],actualFilterListDensity:[{type:e.Input}],filterListPlaceholderText:[{type:e.Input}],summaryListTextColor:[{type:e.Input}],summaryListBackground:[{type:e.Input}],applyButtonClick:[{type:e.Output}],cancelButtonClick:[{type:e.Output}]}});var Ph=function(){function t(){n.TypeRegistrar.registerCons("IgxGridColumnOptionsComponent",Sh),n.TypeRegistrar.register("GridColumnOptions",wh.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Sh],imports:[a.CommonModule,kc,Mc,Fc,qc,Uc,Qc,ch,Ch],exports:[kc,Mc,Fc,qc,Uc,Qc,ch,Ch,Sh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,kc,Mc,Fc,qc,Uc,Qc,ch,Ch],kc,Mc,Fc,qc,Uc,Qc,ch,Ch]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ph,decorators:[{type:e.NgModule,args:[{declarations:[Sh],exports:[kc,Mc,Fc,qc,Uc,Qc,ch,Ch,Sh],imports:[a.CommonModule,kc,Mc,Fc,qc,Uc,Qc,ch,Ch],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Oh=function(){function t(){n.TypeRegistrar.registerCons("GridColumnOptions",wh),n.TypeRegistrar.registerCons("IgxGridColumnOptionsComponent",Sh),n.TypeRegistrar.register("GridColumnOptions",wh.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Tc,Ec,$c,Hc,Kc,Jc,hh,xh,Ph],exports:[Tc,Ec,$c,Hc,Kc,Jc,hh,xh,Ph]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Tc,Ec,$c,Hc,Kc,Jc,hh,xh,Ph],Tc,Ec,$c,Hc,Kc,Jc,hh,xh,Ph]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Oh,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[Tc,Ec,$c,Hc,Kc,Jc,hh,xh,Ph],imports:[a.CommonModule,Tc,Ec,$c,Hc,Kc,Jc,hh,xh,Ph],entryComponents:[Sh]}]}],ctorParameters:function(){return[]}});var Ih=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"GotFocusEventArgs",n.EventArgs.$),e}(n.EventArgs),jh=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"LostFocusEventArgs",n.EventArgs.$),e}(n.EventArgs),kh=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.a=function(t,e,i,o,a,s,l,u,c){var h=e.createElement("div"),p=e.getSubRenderer(h);(u=new r.XButton).provideContainer(p);p.getExternal(u,p.rootWrapper,p.getExternal(t,null,null));u.e=o,u.r=a,u.n=s;var d=e.createElement("div");d.setStyleProperty("display","inline-block"),c=new r.XIcon;var f=e.getSubRenderer(d);c.provideContainer(f);f.getExternal(c,f.rootWrapper,f.getExternal(t,null,null));c.svgPath=i,d.setStyleProperty("width",n.stringFormat("{0}px",l.width.toString())),d.setStyleProperty("height",n.stringFormat("{0}px",l.height.toString()));var m=e.createElement("div");return m.setStyleProperty("display","flex"),m.setStyleProperty("flex-direction","row"),m.setStyleProperty("flex-wrap","no-wrap"),m.setStyleProperty("align-items","center"),m.append(d),u.appendButtonContent(m),{ret:h,p7:u,p8:c}},e.d=function(t){var e=0;return t.altKey&&(e|=1),t.shiftKey&&(e|=4),t.ctrlKey&&(e|=2),e},e.c=function(t,e,n){void 0===n&&(n="block");var i=e?n:"none";t.setStyleProperty("display",i)},e.e=function(t,i,r){null==e.b&&(e.b=t.createElement("div"),e.b.setStyleProperty("height","auto"),e.b.setStyleProperty("width","auto"),e.b.setStyleProperty("white-space","nowrap"),e.b.setStyleProperty("position","absolute")),null!=r?e.b.setStyleProperty("font",r.fontString):e.b.setStyleProperty("font",n.stringEmpty());var o=e.b.getNativeElement();document.body.appendChild(o),e.b.setRawText(i);var a=e.b.outerWidth(),s=e.b.outerHeight();return document.body.removeChild(o),new n.Size(1,a,s)},e.$t=n.markType(e,"MultiColumnComboBoxUtilities"),e.b=null,e}(n.Base),Th=function(t){return t[t.SortByOneColumnOnly=0]="SortByOneColumnOnly",t[t.SortByMultipleColumns=1]="SortByMultipleColumns",t[t.SortByOneColumnOnlyTriState=2]="SortByOneColumnOnlyTriState",t[t.SortByMultipleColumnsTriState=3]="SortByMultipleColumnsTriState",t[t.None=4]="None",t}({}),Rh=n.markEnum("SortMode","SortByOneColumnOnly,0|SortByMultipleColumns,1|SortByOneColumnOnlyTriState,2|SortByMultipleColumnsTriState,3|None,4"),Dh=function(t){function e(e,n){var i=t.call(this)||this;return i.d=null,i.b=null,i.d=e,i.b=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"oldText",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"newText",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"MultiColumnComboBoxTextChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Bh=function(t){function e(e,n){var i=t.call(this)||this;return i.d=null,i.b=null,i.d=e,i.b=n,i}return i.__extends(e,t),Object.defineProperty(e.prototype,"oldValue",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"newValue",{get:function(){return this.b},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"MultiColumnComboBoxValueChangedEventArgs",n.EventArgs.$),e}(n.EventArgs),Mh=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.j=0,e.b=null,e.p=0,e._columnHeadersVisible=!1,e.au=null,e.at=null,e.k=0,e._dropDownButtonVisible=!1,e.q=0,e.aa=null,e.c=null,e.ad=null,e.ae=null,e.af=null,e.v=0,e.ab=null,e.ac=null,e._actualLabelVisible=!1,e._actualNoMatchesFoundLabel=null,e.d=null,e.e=null,e.ai=null,e.aj=null,e.ak=null,e.w=0,e.ag=null,e.ah=null,e.al=null,e._rowSeparatorsVisible=!1,e.f=null,e.aq=null,e.ar=null,e.as=null,e.x=0,e.ao=null,e.ap=null,e.g=null,e.r=0,e.h=null,e.s=0,e.t=0,e.u=0,e.an=null,e.i=null,e.y=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"columnHeadersVisible",{get:function(){return this._columnHeadersVisible},set:function(t){this._columnHeadersVisible=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dropDownButtonVisible",{get:function(){return this._dropDownButtonVisible},set:function(t){this._dropDownButtonVisible=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualLabelVisible",{get:function(){return this._actualLabelVisible},set:function(t){this._actualLabelVisible=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualNoMatchesFoundLabel",{get:function(){return this._actualNoMatchesFoundLabel},set:function(t){this._actualNoMatchesFoundLabel=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparatorsVisible",{get:function(){return this._rowSeparatorsVisible},set:function(t){this._rowSeparatorsVisible=t},enumerable:!1,configurable:!0}),e.prototype.am=function(){var t=new n.StringBuilder(0);return t.l("{"),t.l("actualBackgroundColor : "+this.a.serialize()+", "),t.l("actualBaseTheme : "+this.j+", "),t.l("actualBorderColor : "+this.b.serialize()+", "),t.l("actualBorderWidth : "+this.p+", "),t.l("columnHeadersVisible : "+this.columnHeadersVisible+", "),t.l("actualContentPadding : { left: "+this.au.left+",top: "+this.au.top+",right: "+this.au.right+",bottom: "+this.au.bottom+"},"),t.l("actualDensity : "+this.k+", "),t.l("dropDownButtonVisible : "+this.dropDownButtonVisible+", "),t.l("actualFocusUnderlineOpacity : "+this.q+", "),t.l('label : "'+this.aa+'", '),t.l("actualLabelTextColor : "+this.c.serialize()+", "),n.stringIsNullOrEmpty(this.ad)||t.l('labelFontStyle : "'+this.ad+'", '),n.stringIsNullOrEmpty(this.ae)||t.l('labelFontVariant : "'+this.ae+'", '),n.stringIsNullOrEmpty(this.af)||t.l('labelFontWeight : "'+this.af+'", '),n.stringIsNullOrEmpty(this.ab)||t.l('labelFontFamily : "'+this.ab+'", '),n.stringIsNullOrEmpty(this.ac)||t.l('labelFontStretch : "'+this.ac+'", '),n.isNaN_(this.v)||t.l("labelFontSize : "+this.v+", "),t.l("actualLabelVisible : "+this.actualLabelVisible+", "),t.l('actualNoMatchesFoundLabel :"'+this.actualNoMatchesFoundLabel+'", '),t.l("actualNoMatchesFoundLabelBackgroundColor : "+this.d.serialize()+", "),t.l("actualNoMatchesFoundLabelTextColor : "+this.e.serialize()+", "),n.stringIsNullOrEmpty(this.ai)||t.l('noMatchesFoundLabelFontStyle : "'+this.ai+'", '),n.stringIsNullOrEmpty(this.aj)||t.l('noMatchesFoundLabelFontVariant : "'+this.aj+'", '),n.stringIsNullOrEmpty(this.ak)||t.l('noMatchesFoundLabelFontWeight : "'+this.ak+'", '),n.stringIsNullOrEmpty(this.ag)||t.l('noMatchesFoundLabelFontFamily : "'+this.ag+'", '),n.stringIsNullOrEmpty(this.ah)||t.l('noMatchesFoundLabelFontStretch : "'+this.ah+'", '),n.isNaN_(this.w)||t.l("noMatchesFoundLabelFontSize : "+this.w+", "),t.l('placeholder : "'+this.al+'", '),t.l("rowSeparatorsVisible : "+this.rowSeparatorsVisible+", "),t.l("actualTextColor : "+this.f.serialize()+", "),n.stringIsNullOrEmpty(this.aq)||t.l('textStyleFontStyle : "'+this.aq+'", '),n.stringIsNullOrEmpty(this.ar)||t.l('textStyleFontVariant : "'+this.ar+'", '),n.stringIsNullOrEmpty(this.as)||t.l('textStyleFontWeight : "'+this.as+'", '),n.stringIsNullOrEmpty(this.ao)||t.l('textStyleFontFamily : "'+this.ao+'", '),n.stringIsNullOrEmpty(this.ap)||t.l('textStyleFontStretch : "'+this.ap+'", '),n.isNaN_(this.x)||t.l("textStyleFontSize : "+this.x+", "),t.l("actualUnderlineColor : "+this.g.serialize()+", "),t.l("actualUnderlineOpacity : "+this.r+", "),t.l("actualUnderlineRippleColor : "+this.h.serialize()+", "),t.l("actualUnderlineRippleOpacity : "+this.s+", "),t.l("actualUnderlineRippleWidth : "+this.t+", "),t.l("actualUnderlineWidth : "+this.u+", "),t.l('text : "'+this.an+'", '),null!=this.y&&t.l('value : "'+this.y.toString()+'", '),t.l("Grid : "+this.i.a5()),t.l("}"),t.toString()},e.$t=n.markType(e,"MultiColumnComboVisualModelExport"),e}(n.Base),Eh=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.ac=null,e.ak=null,e.f=null,e.ai=null,e.k=null,e.ah=null,e.j=null,e.aj=null,e.l=null,e.h=null,e.ae=null,e.i=null,e.af=null,e.m=null,e.ag=null,e.d=null,e.aq=null,e.ab=new n.List$1(n.Delegate_$type,0),e.au=null,e.aa=!0,e.ap=0,e.x=!1,e.a=null,e.c=0,e.w=!1,e.s=!1,e.r=!1,e.p=!1,e.an=null,e.am=null,e.v=!1,e.ao=-1,e.z=!1,e.t=!1,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"e",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"y",{get:function(){return 46==this.ap},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n",{get:function(){return this.m},enumerable:!1,configurable:!0}),e.prototype.bg=function(t){this.ak=t,this.b2()},e.prototype.bh=function(t){this.f=t},e.prototype.bq=function(){},e.prototype.b2=function(){this.ag=this.ac.createElement("div"),this.cx(),this.a1(),this.a0(),this.ak.append(this.ai),this.cm(),this.co(),document.addEventListener("click",n.runOn(this,this.a2),!1),window.addEventListener("resize",n.runOn(this,this.c3),!1)},e.prototype.aw=function(t){var e=this.g.p();null!=e&&(this.p=!1,e.g1!=t?(e.g1=t,this.p=!0):this.a3())},e.prototype.ay=function(){this.e.activeCell=null},e.prototype.az=function(){var t=this.n;null!=t&&t.b6(),this.co();var e=this.g.p();null!=e&&(null!=e.g1&&(e.g1=null))},e.prototype.u=function(t){if(null==t)return!1;var e=this.ai.getNativeElement(),n=this.ag.getNativeElement(),i=this.am.getNativeElement();return e.contains(t)||n.contains(t)||i.contains(t)},e.prototype.a0=function(){var t=this.ad,i=this.g;this.ai=t.createElement("div"),this.ai.setStyleProperty("display","flex"),this.ai.setStyleProperty("height","100%"),this.ai.setAttribute("tabIndex","0"),this.ai.setAttribute("outline","none !important"),this.ai.listen("focusin",n.runOn(this,this.bn)),this.ai.listen("focusout",n.runOn(this,this.bo));var o=t.getSubRenderer(this.ai);this.k=new r.XInputGroup,this.k.provideContainer(o);o.getExternal(this.k,o.rootWrapper,o.getExternal(this.g,null,null));this.k.d=this.g.ac,this.aj=t.createElement("div");var a=t.getSubRenderer(this.aj);this.l=new r.XLabel,this.l.provideContainer(a);a.getExternal(this.l,a.rootWrapper,a.getExternal(this.g,null,null));this.f.actualLabelVisible&&this.c0(),this.ah=t.createElement("div"),this.ah.addClass("ig-input"),this.ah.setRawStyleProperty("flex-grow","1");var s=t.getSubRenderer(this.ah);this.j=new r.XInput,this.j.provideContainer(s),t.getExternal(this.j,t.rootWrapper,t.getExternal(i,null,null)),this.j.b8="text",this.j.cq=i.text;var l=this.j;l.changing=n.delegateCombine(l.changing,n.runOn(this,this.bi));var u=this.j;u.compositionEnd=n.delegateCombine(u.compositionEnd,n.runOn(this,this.bj));var c=this.j;c.keyDown=n.delegateCombine(c.keyDown,n.runOn(this,this.bl));var h=this.j;h.gotFocus=n.delegateCombine(h.gotFocus,n.runOn(this,this.bk));var p=this.j;p.mouseDown=n.delegateCombine(p.mouseDown,n.runOn(this,this.bm)),this.k.appendContentChild(this.ah),this.k.inputs.add(this.j),this.a5(this.g.bg);var d=t.createElement("div"),f=t.getSubRenderer(d),m=new r.XSuffix;m.provideContainer(f);f.getExternal(m,f.rootWrapper,f.getExternal(this.g,null,null));this.ae=t.createElement("div"),this.h=new r.XIcon;var g=t.getSubRenderer(this.ae);this.h.provideContainer(g);g.getExternal(this.h,g.rootWrapper,g.getExternal(this.g,null,null));this.h.svgPath=e.ar,this.ae.setStyleProperty("height","16px"),this.ae.setStyleProperty("width","16px"),m.appendContentChild(this.ae),this.k.appendContentChild(d),this.k.inputs.add(m),this.cj();var y=t.createElement("div"),b=t.getSubRenderer(y),v=new r.XSuffix;v.provideContainer(b);b.getExternal(v,b.rootWrapper,b.getExternal(this.g,null,null));this.af=t.createElement("div"),this.i=new r.XIcon;var C=t.getSubRenderer(this.af);this.i.provideContainer(C);C.getExternal(this.i,C.rootWrapper,C.getExternal(this.g,null,null));this.i.svgPath=e.at,v.appendContentChild(this.af),this.k.appendContentChild(y),this.k.inputs.add(v),this.ae.listen("click",n.runOn(this,this.ax)),this.af.listen("click",n.runOn(this,this.a4)),this.cq()},e.prototype.a1=function(){var t=this.ac.createElement("div"),e=this.ac.getSubRenderer(t);this.m=new n.Popup,this.m.ar=this.f.bn,this.m.ay=this.f.br,this.m.c0=n.BrushUtil.j(255,255,255,255),this.m.a9=150,this.m.provideRenderer(e);e.getExternal(this.m,e.rootWrapper,e.getExternal(this.g,null,null));this.am=this.ac.createElement("div"),this.am.setStyleProperty("padding","4px"),this.am.setStyleProperty("white-space","nowrap"),this.an=this.ac.createElement("div"),this.an.append(this.am),this.an.append(this.ag),this.m.appendPopupContent(this.an)},e.prototype.bu=function(t,e){},e.prototype.bx=function(t,e,n){},e.prototype.bt=function(){switch(this.c){case 2:case 1:null==this.a&&(this.c=0)}var t=null;switch(this.c){case 2:var e=this.a.actualCount;if(0==e)this.g.value=null;else{t=this.a.getItemAtIndex(0);for(var i=this.g.i(),r=new n.List$1(n.Base.$,0),o=0;o<i.length;o++){var a=i[o],s=this.a.getItemProperty(t,a);r.add1(s)}this.g.value=1==r.count?r._inner[0]:r.toArray()}break;case 1:var l=this.a.actualCount;if(0==l)this.g.text=n.stringEmpty();else{var u=this.g.e5();t=this.a.getItemAtIndex(0);var c=this.a.getItemProperty(t,u).toString();this.g.text=c}var h=this.b().indexOfItem(t);this.ch(h);break;case 0:default:return}if(null!=t){var p=this.b().indexOfItem(t);this.ch(p)}else this.ch(-1);null!=this.a&&(this.a.updateNotifier=null,this.a=null),this.c=0},e.prototype.bv=function(t,e){},e.prototype.bw=function(t,e){},e.prototype.b0=function(t,e){var n=this.e;if(null!=n){var i=n.activeCell;null!=i&&i.b>=t&&i.b<=e&&(this.cf(i.b),this.cy())}},e.prototype.b5=function(t,e,n){},e.prototype.bs=function(){if(this.b8(),this.w){var t=this.b().actualCount;this.aa&&t>0?this.ca():this.cb()}else this.cw()},e.prototype.b1=function(t,e){},e.prototype.b3=function(t,e){},e.prototype.o=function(){var t=document.activeElement;return this.u(t)},e.prototype.a3=function(){this.c1(),this.bp();var t=this.n;if(!t.ax){var e=this.c4();t.am=!this.w,this.f.bo?t.cr(this.ac.rootWrapper.getNativeElement(),1,1):t.showRelativeToExclusionRect(e,1,1),this.co()}},e.prototype.c4=function(){var t=this.ac.rootWrapper.getNativeElement().getBoundingClientRect();return new n.Rect(0,t.left+window.pageXOffset,t.top+window.pageYOffset,t.width,t.height)},e.prototype.b=function(){var t=this.e;return null!=t?t.actualDataSource:null},e.prototype.q=function(t){var e=this.d.selectedItems,n=e.count;return 0==n?{ret:!0,p0:t=null}:{ret:null!=(t=e._inner[0]),p0:t}},e.prototype.a8=function(t){var e=null!=t?t.b:-1;this.cf(e)},e.prototype.bc=function(){var t=this;if(!this.v){var e,n,i=this.g;(n=t.q(e),e=n.p0,n.ret)&&null!=e&&i.gi(e)}},e.prototype.bp=function(){this.n.b9()},e.prototype.br=function(){if(this.n.ax){this.az();var t=this.j;t.focus();var e=null!=t.cq?t.cq.length:0;t.dr(e,e)}},e.prototype.by=function(){this.k.an=!0,this.j.dp();var t=new Ih;this.g.ge(t)},e.prototype.bz=function(){this.az(),this.k.j8();var t=new jh;this.g.gg(t)},e.prototype.b4=function(t){var e,r;if(null!=t){this.ac=t;var o=t.rootWrapper;this.bg(o)}else{this.ac=null;try{for(var a=i.__values(n.fromEnum(this.ab)),s=a.next();!s.done;s=a.next()){(0,s.value)()}}catch(t){e={error:t}}finally{try{s&&!s.done&&(r=a.return)&&r.call(a)}finally{if(e)throw e.error}}this.ab.clear()}},e.prototype.b6=function(t,e){var i=this.b();if(null!=i){null!=this.a&&(this.c,this.a.updateNotifier=null,this.a=null),this.c=t;var r=new n.FilterFactory,o=null,a=null;switch(t){case 2:var s=this.g.e5();if(n.stringIsNullOrEmpty(s))return;o=e.toString(),a=r.property(s).isEqualTo(o);break;case 1:var l=this.g.i();if(null==l||l.length<1)return;var u=null!==n.typeCast(n.Array_$type,e)?e:[e];if(l.length!=u.length)return;for(var c=0;c<l.length;c++){var h=l[c];o=u[c];var p=r.property(h).isEqualTo(o);null==a?a=p:a.and(p)}break;case 0:default:return}this.a=i.clone(),this.a.filterExpressions.clear(),this.a.updateNotifier=new Vh(this,!0),this.a.filterExpressions.add(a),this.a.isVirtual||this.a.flushAutoRefresh()}},e.prototype.b7=function(){this.cu();var t=this.f.text,e=this.au.length,i=n.stringIsNullOrEmpty(t)?0:t.length;this.x&&!n.stringIsNullOrEmpty(this.au)&&e>0&&e--,this.j.dr(e,i)},e.prototype.b8=function(){this.p&&(this.p=!1,this.a3())},e.prototype.b9=function(t){this.au=t,this.aa=!this.y,this.cc(),this.cj()},e.prototype.ca=function(){n.stringIsNullOrEmpty(this.au)?this.ay():this.ch(0),this.b7(),this.w=!1},e.prototype.cj=function(){null!=this.ae&&null!=this.j&&(0==this.g.bq?this.ae.setStyleProperty("display","none"):null!=this.g.value&&""!=this.g.value||null!=this.j.cq&&""!=this.j.cq?this.ae.show():this.ae.setStyleProperty("display","none"))},e.prototype.a5=function(t){null!=this.j&&(this.j.disabled=!t)},e.prototype.cb=function(){var t=this.d;t.selectedItemsChanged=n.delegateRemove(t.selectedItemsChanged,n.runOn(this,this.bd)),this.v=!0;try{this.g.gq(this.au)}finally{this.v=!1;var e=this.d;e.selectedItemsChanged=n.delegateCombine(e.selectedItemsChanged,n.runOn(this,this.bd))}this.w=!1},e.prototype.cc=function(){var t=this.g.p();if(null!=t)if(this.w=!0,n.stringIsNullOrEmpty(this.au))null!=t.g1?this.aw(null):this.cb();else{var e=new In;e.operator=14,e.value=this.au,e.isCaseSensitive=!1,this.aw(e)}},e.prototype.cd=function(){this.ap=0,this.x=!1},e.prototype.cf=function(t){var e=this.b();if(e.isPlaceholderItem(t));else{var i=this.e;if(t<0)return this.s=!1,i.selectedItems.clear(),void(this.s||this.bc());i.selectedItemsChanged=n.delegateRemove(i.selectedItemsChanged,n.runOn(this,this.bd));try{i.selectedItems.clear()}finally{i.selectedItemsChanged=n.delegateCombine(i.selectedItemsChanged,n.runOn(this,this.bd))}if(t>=0){var r=e.getItemAtIndex(t);this.s=!1,i.selectedItems.add1(r),this.s||this.bc()}}},e.prototype.ch=function(t){var e=this.e;if(-1!=t){var n,i=e.activeCell,r=new b;if(null!=i)n=i.d;else{if(0==e.actualColumns.count)return void(this.ao=t);this.g;n=this.g.p().lt()}r.d=n,r.b=t,this.r=!1,e.activeCell=r,this.r||this.a8(e.activeCell),this.cy()}else e.activeCell=null},e.prototype.cl=function(t){this.b6(2,t)},e.prototype.ck=function(t){this.b6(1,t)},e.prototype.cm=function(){var t=this.g;if(null!=this.k&&(this.k.t=t.density,this.k.p=t.ah,this.k.d=t.ac,this.k.mc=t.hl,this.k.md=t.hm,this.k.c0=t.cc,this.k.oi=t.il,this.k.ks=t.gw,this.k.t=t.am,this.k.no=t.hn,this.k.eg=t.cd,this.k.np=t.ho,this.k.eh=t.ce,this.k.ei=t.cf,this.k.nq=t.hp,this.k.ej=t.cg,this.k.ek=t.ch,this.k.n6=t.hu,this.k.e5=t.ci,this.k.n7=t.hv,this.k.e6=t.cj,this.k.e7=t.ck,this.k.e8=t.cl),null!=this.j&&(this.j.d8=t.ht,this.j.af=t.ax,this.j.cg=t.fn),null!=this.l&&(this.l.text=t.fb,this.l.dj=t.hq,this.l.y=t.av),null!=this.am&&(n.NativeUI.q(this.am,t.hs),n.NativeUI.m(this.am,t.hr),null!=t.aw&&this.am.setStyleProperty("font",t.aw.fontString),this.am.setRawText(t.actualNoMatchesFoundLabel),this.bp()),null!=this.d){this.d.density=t.density;var e=t.columnHeadersVisible;this.d.headerHeight=e?-1:0,this.d.rowSeparatorHeight=t.rowSeparatorsVisible?1:0}if(null!=this.af){var i=t.dropDownButtonVisible;kh.c(this.af,i)}},e.prototype.cu=function(){if(!this.v&&null!=this.j){var t=this.f.text;this.j.cq=t}},e.prototype.co=function(){var t=this.n,n=null!=t&&t.ax;this.i.svgPath=n?e.as:e.at},e.prototype.ct=function(){var t=this.d.actualHeaderHeight+3,e=this.d.actualRowHeight+this.d.rowSeparatorHeight,i=this.d.actualDataSource,r=null!=i?i.actualCount:0;r>8&&(r=8);var o=r*e;o+=t;var a=n.stringFormat("{0}px",o);this.ag.setStyleProperty("height",a);var s=0,l=this.d.actualColumns.count,u=100;null!=this.d.defaultColumnWidth&&(u=this.d.defaultColumnWidth.f),s=l*u,this.d.defaultColumnMinWidth=0,s+=2;var c=n.stringFormat("{0}px",s);if(this.ag.setStyleProperty("width",c),null!=this.am){var h=this.g,p=kh.e(this.ad,h.actualNoMatchesFoundLabel,h.av),d=p.width,f=p.height,m=n.stringFormat("{0}px",d),g=n.stringFormat("{0}px",f);this.am.setStyleProperty("width",m),this.am.setStyleProperty("height",g)}},e.prototype.cv=function(){if(!this.w){this.au=null;var t=this.g.p();if(null!=t)null!=t.g1?t.g1=null:this.cw()}},e.prototype.cw=function(){if(null!=this.g.value){var t=this.g.value,e=null!==n.typeCast(n.Array_$type,t)?t:[t],i=this.b().indexOfKey(e);-1!=i&&this.ch(i)}},e.prototype.cx=function(){var t=this;null==this.d&&this.ac.getPortal(this.ag,"DataGrid",(function(e){t.aq=e.componentRef,t.aq.height="100%",t.aq.width="100%",t.d=t.aq.i,t.cz(),t.d.selectionMode=1,t.d.selectionBehavior=0,t.d.activationMode=1,t.d.defaultColumnWidth=t.f.defaultColumnWidth,t.cr(),t.d.editMode=0,t.d.isColumnOptionsEnabled=!1,t.d.isActiveCellStyleEnabled=!1,t.d.cornerRadius=new n.CornerRadius(0,0),t.d.ix=!1;var i=t.d;i.activeCellChanged=n.delegateCombine(i.activeCellChanged,n.runOn(t,t.a7));var r=t.d;r.selectedItemsChanged=n.delegateCombine(r.selectedItemsChanged,n.runOn(t,t.bd));var o=t.d;o.cellClicked=n.delegateCombine(o.cellClicked,n.runOn(t,t.ba));var a=t.d;a.sizeChanged=n.delegateCombine(a.sizeChanged,n.runOn(t,t.be));var s=t.d;s.viewportChanged=n.delegateCombine(s.viewportChanged,n.runOn(t,t.bf));var l=t.d;l.actualColumnsChanged=n.delegateCombine(l.actualColumnsChanged,n.runOn(t,t.a9));var u=t.d;u.columnWidthChanged=n.delegateCombine(u.columnWidthChanged,n.runOn(t,t.bb)),t.cm()}),!1)},e.prototype.cn=function(t){null!=this.d&&(this.d.defaultColumnWidth=t,this.ct())},e.prototype.cr=function(){if(null!=this.d){var t=0;switch(this.f.x){case 0:t=0;break;case 1:t=1;break;case 2:t=2;break;case 3:t=3;break;case 4:t=4}this.d.headerClickAction=t}},e.prototype.cy=function(){if(this.t){var t=this.d,e=t.activeCell;if(null!=e){var n=this.b();if(null!=n){var i=n.getItemAtIndex(e.b);if(null==i)return;t.scrollToItem(i)}}else t.scrollToRowByIndex(0)}},e.prototype.cz=function(){if(null!=this.aq){var t=this.g,e=t.itemsSource;if(this.d.selectedItems.clear(),null!=this.d.actualDataSource){var i=this.d.actualDataSource;i.schemaChanged=n.delegateRemove(i.schemaChanged,n.runOn(this,this.av))}this.aq.dataSource=e,this.aq.autoGenerateDesiredProperties=t.g,this.d.primaryKey=t.i(),this.ao=-1;var r=this.b();if(null!=r){var o=r.updateNotifier,a=new Vh(this,!1),s=new Pt(1,[o,a]);r.updateNotifier=s,r.propertiesRequested=t.f,r.schemaChanged=n.delegateCombine(r.schemaChanged,n.runOn(this,this.av)),null!=this.g.value&&this.b6(1,this.g.value)}this.a=null,null!=this.n&&this.n.ax&&(this.c1(),this.n.b9())}},e.prototype.av=function(t,e){-1!=this.ao&&(this.ch(this.ao),this.ao=-1)},e.prototype.c0=function(){null!=this.aj&&(this.f.actualLabelVisible?(this.k.appendContentChild(this.aj),this.k.inputs.add(this.l)):(this.k.j7(this.aj),this.k.inputs.remove(this.l)))},e.prototype.cg=function(t){null!=this.j&&(this.j.disabled=!t),null!=this.k&&(this.k.disabled=!t)},e.prototype.c1=function(){if(this.ct(),this.w){var t=this.b();this.z=0==t.actualCount}else this.z=!1;kh.c(this.am,this.z),kh.c(this.ag,!this.z)},e.prototype.a6=function(t){null!=this.j&&this.j.focus(t)},e.prototype.ce=function(){null!=this.j&&this.j.dp()},e.prototype.ci=function(t){null!=this.j&&(this.j.e=t)},Object.defineProperty(e.prototype,"al",{get:function(){return this.ak},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.f},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ad",{get:function(){return this.ac},enumerable:!1,configurable:!0}),e.prototype.c2=function(){null!=this.al&&this.al.setStyleProperty("box-sizing","border-box")},e.prototype.a2=function(t){t.target;this.o()||this.bz()},e.prototype.ax=function(t){this.d.selectedItems.clear(),this.j.cq="",this.g.text="",this.g.value=null},e.prototype.a4=function(t){this.n.ax?this.az():this.aw(null),null!=this.j&&(this.j.focus(),this.j.dp())},e.prototype.a7=function(t,e){var n=e.newActiveCell;this.a8(n),this.r=!0},e.prototype.a9=function(t,e){this.cv()},e.prototype.ba=function(t,e){null===n.typeCast(Jn.$,e.cellInfo)&&this.br()},e.prototype.bb=function(t,e){this.ct(),this.bp()},e.prototype.bd=function(t,e){this.bc(),this.s=!0,this.cj()},e.prototype.be=function(t,e){this.t=0!=e.b&&0!=e.a,this.cy()},e.prototype.bf=function(t,e){this.cy();var i=this.d;i.viewportChanged=n.delegateRemove(i.viewportChanged,n.runOn(this,this.bf))},e.prototype.bi=function(t,e){if(!e.isCompositionInProgress){this.f.gd(e);var n=e.value;this.b9(n)}},e.prototype.bj=function(t,e){var n=this.j.cq;this.b9(n)},e.prototype.bk=function(t,e){this.cd()},e.prototype.bl=function(t,e){if(this.f.gf(e),!e.defaultPrevented){var i=e.keyCode;this.ap=i,this.x=!1;var r=e.modifiers;switch(i){case 8:var o=this.j.selectionStart;if(0==o)break;var a=this.j.cq;if(n.stringIsNullOrEmpty(a))break;var s=a.length,l=this.j.selectionEnd,u=l-o;u>0&&u<s&&l==s&&(this.x=!0);break;case 40:if(1==r)this.a3(),this.cv(),e.preventDefault();else{var c=this.e;if(null==c)return;this.e.activeCell;if(null!=c.activeCell)this.d.kk(!1,!1),e.preventDefault();else{var h=this.b();if(null!=h)h.actualCount>0&&(this.ch(0),e.preventDefault())}}break;case 38:if(1==r)this.az(),e.preventDefault();else{var p=this.e;if(null==p)return;this.e.activeCell;if(null!=p.activeCell)this.d.kx(!1,!1),e.preventDefault();else{var d=this.b();if(null!=d){var f=d.actualCount;f>0&&(this.ch(f-1),e.preventDefault())}}}break;case 13:this.n.ax&&e.stopPropagation(),this.br();break;case 27:this.az()}}},e.prototype.bm=function(t,e){0==this.o()&&(this.j.dp(),e.handled=!0)},e.prototype.bn=function(t){this.j.focus();var e=t.originalEvent.relatedTarget;this.u(e)||this.by()},e.prototype.bo=function(t){var e=t.originalEvent.relatedTarget;this.u(e)||this.bz()},e.prototype.c3=function(t){var e=this.n;if(null!=e&&0!=e.ax){var n=this.c4();this.m.ca(n)}},e.prototype.cq=function(){this.g.disallowTabFocus?(null!=this.ai&&this.ai.setAttribute("tabIndex","-1"),null!=this.j&&(this.j.be=-1)):(null!=this.ai&&this.ai.setAttribute("tabIndex","0"),null!=this.j&&this.j.cu())},e.prototype.cp=function(){null!=this.m&&(this.m.ar=this.g.bn)},e.prototype.cs=function(){null!=this.m&&(this.m.ay=this.g.br)},e.$t=n.markType(e,"MultiColumnComboBoxView"),e.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",e.at="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z",e.as="M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",e}(n.Base),Ah=function(t){function e(){var i=t.call(this)||this;i.dd=null,i.h1=r.XInputGroup.m.ad(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"BackgroundColor"),i.h2=r.XInputGroup.m.ad(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"BorderColor"),i.co=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"BorderWidth"),i.io=r.XInputGroup.m.ai(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"ContentPadding"),i.gy=r.XInputGroup.m.y(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"CornerRadius"),i.h3=r.XInputGroup.m.ad(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusBorderColor"),i.cp=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusBorderWidth"),i.h4=r.XInputGroup.m.ad(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusUnderlineColor"),i.cq=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusUnderlineOpacity"),i.cr=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusUnderlineRippleOpacity"),i.h5=r.XInputGroup.m.ad(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"HoverUnderlineColor"),i.cs=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"HoverUnderlineOpacity"),i.ct=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"HoverUnderlineWidth"),i.h6=r.XInputGroup.m.ad(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineColor"),i.cu=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineOpacity"),i.h7=r.XInputGroup.m.ad(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineRippleColor"),i.cv=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusUnderlineRippleOpacity"),i.cw=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineRippleWidth"),i.cx=r.XInputGroup.m.i(e.ag,n.enumGetBox(r.InputGroupDisplayType_$type,0),"HoverUnderlineWidth"),i.a5=null,i.a0=null,i.v=null,i.a8=!1,i.bc=!0,i.c=null,i.m=Ft.a,i.ha=null,i.gz=r.ThemeResolver.af(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"BackgroundColor"),i.af=0,i.ae=1,i.hb=null,i.g0=r.ThemeResolver.af(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"BorderColor"),i.b2=NaN,i.bs=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"BorderWidth"),i.bh=!0,i.ik=new n.Thickness(1,NaN,NaN,NaN,NaN),i.ij=r.ThemeResolver.ak(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"ContentPadding"),i.gv=new n.CornerRadius(1,NaN,NaN,NaN,NaN),i.gu=r.ThemeResolver.aa(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"CornerRadius"),i.b=null,i.al=0,i.ak=0,i.bk=!0,i.hc=null,i.g1=r.ThemeResolver.af(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusBorderColor"),i.b3=NaN,i.bt=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusBorderWidth"),i.hd=null,i.g2=r.ThemeResolver.af(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusUnderlineColor"),i.b4=NaN,i.bu=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusUnderlineOpacity"),i.b5=NaN,i.bv=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"FocusUnderlineRippleOpacity"),i.he=null,i.g3=r.ThemeResolver.af(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"HoverUnderlineColor"),i.b6=NaN,i.bw=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"HoverUnderlineOpacity"),i.b7=NaN,i.bx=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"HoverUnderlineWidth"),i.c7=null,i.fd=null,i.hf=null,i.g4=e.hy,i.as=null,i.ap=null,i.be=!1,i.fg=null,i.d1="No Matches Found",i.hg=null,i.g5=e.hz,i.hh=null,i.g6=e.h0,i.at=null,i.aq=null,i.fo="",i.bb=!0,i.hi=e.h8,i.g7=e.h8,i.au=null,i.ar=null,i.hj=null,i.g8=r.ThemeResolver.af(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineColor"),i.b8=NaN,i.by=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineOpacity"),i.hk=null,i.g9=r.ThemeResolver.af(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineRippleColor"),i.b9=NaN,i.bz=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineRippleOpacity"),i.ca=NaN,i.b0=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineRippleWidth"),i.cb=NaN,i.b1=r.ThemeResolver.k(e.ag,r.XInputGroup.m,n.enumGetBox(r.InputGroupDisplayType_$type,0),"UnderlineWidth"),i.a7=!0,i.w=0,i.dg=null,i.df=null,i.d=null,i.a=null,i.c8=null,i.aa=0,i.bm=!1,i.a9=!1,i.ba=!1,i.bd=!1,i.gotFocus=null,i.lostFocus=null,i.textValueChanged=null,i.selectedValueChanged=null,i.keyDown=null,i.change=null,i.changing=null,i.propertyChanged=null,i.m=new Ft,i.m.f=100;var o=i.u();return i.v=o,o.bh(i),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"a6",{get:function(){return null==this.a5&&(this.a5=new n.SRProvider(this.v.ad),this.a5.cb("MultiColumnComboBox")),this.a5},enumerable:!1,configurable:!0}),e.prototype.u=function(){return new Eh},e.prototype.gm=function(t,i,o){switch(t){case"BackgroundColor":this.hl=null!=this.hw?this.hw:this.h1;break;case"BorderColor":this.hm=null!=this.hx?this.hx:this.h2;break;case"BorderWidth":this.cc=n.isNaN_(this.cm)?this.co:this.cm;break;case"ContentPadding":this.il=r.XInputGroup.oh(this.im,this.io);break;case"CornerRadius":this.gw=r.XInputGroup.kr(this.gx,this.gy);break;case"FocusBorderColor":this.hn=null!=this.h9?this.h9:this.h3;break;case"FocusBorderWidth":this.cd=n.isNaN_(this.cy)?this.cp:this.cy;break;case"FocusUnderlineColor":this.ho=null!=this.ia?this.ia:this.h4;break;case"FocusUnderlineOpacity":this.ce=n.isNaN_(this.cz)?this.cq:this.cz;break;case"FocusUnderlineRippleOpacity":this.cf=n.isNaN_(this.c0)?this.cr:this.c0;break;case"HoverUnderlineColor":this.hp=null!=this.ib?this.ib:this.h5;break;case"HoverUnderlineOpacity":this.cg=n.isNaN_(this.c1)?this.cs:this.c1;break;case"HoverUnderlineWidth":this.ch=n.isNaN_(this.c2)?this.ct:this.c2;break;case"ItemsSource":case"ValueField":case"DataSourceDesiredProperties":case"Fields":this.v.cz();break;case"DefaultColumnWidth":this.v.cn(this.defaultColumnWidth);break;case"LabelTextColor":this.hq=null!=this.ic?this.ic:e.hy;break;case"LabelTextStyle":this.av=null!=this.a2?this.a2:e.ay;break;case"NoMatchesFoundLabelTextColor":this.hs=null!=this.ie?this.ie:e.h0;break;case"NoMatchesFoundLabelBackgroundColor":this.hr=null!=this.id?this.id:e.hz;break;case"NoMatchesFoundLabelTextStyle":this.aw=null!=this.a3?this.a3:e.az;break;case"UnderlineColor":this.hu=null!=this.ih?this.ih:this.h6;break;case"UnderlineOpacity":this.ci=n.isNaN_(this.c3)?this.cu:this.c3;break;case"UnderlineRippleColor":this.hv=null!=this.ii?this.ii:this.h7;break;case"UnderlineRippleOpacity":this.cj=n.isNaN_(this.c4)?this.cv:this.c4;break;case"UnderlineRippleWidth":this.ck=n.isNaN_(this.c5)?this.cw:this.c5;break;case"UnderlineWidth":this.cl=n.isNaN_(this.c6)?this.cx:this.c6;break;case"BaseTheme":this.ah=0==this.ai?1:this.ai;break;case"Density":this.am=0==this.density?0:this.density;break;case"TextColor":this.ht=null!=this.ig?this.ig:e.h8;break;case"TextStyle":this.ax=null!=this.a4?this.a4:null;break;case"ActualDensity":case"ActualBaseTheme":case"ActualTextColor":case"ActualTextStyle":case"DisplayType":case"ActualBackgroundColor":case"ActualBorderColor":case"ActualBorderWidth":case"ActualContentPadding":case"ActualCornerRadius":case"ActualFocusBorderColor":case"ActualFocusBorderWidth":case"ActualFocusUnderlineColor":case"ActualFocusUnderlineOpacity":case"ActualFocusUnderlineRippleOpacity":case"ActualHoverUnderlineColor":case"ActualHoverUnderlineOpacity":case"ActualHoverUnderlineWidth":case"ActualLabelTextColor":case"ActualLabelTextStyle":case"ActualUnderlineColor":case"ActualUnderlineOpacity":case"ActualUnderlineRippleColor":case"ActualUnderlineRippleOpacity":case"ActualUnderlineRippleWidth":case"ActualUnderlineWidth":case"DropDownButtonVisible":case"ColumnHeadersVisible":case"RowSeparatorsVisible":case"ActualNoMatchesFoundLabel":case"ActualNoMatchesFoundLabelTextColor":case"ActualNoMatchesFoundLabelTextStyle":case e.d3:this.v.cm();break;case"NoMatchesFoundLabel":this.actualNoMatchesFoundLabel=n.stringIsNullOrEmpty(this.fh)?"No Matches Found":this.fh;break;case"ActualLabelVisible":this.v.c0();break;case"Label":case"PlaceholderText":this.v.cm(),this.actualLabelVisible=!n.stringIsNullOrEmpty(this.fd);break;case"Text":this.v.cu();var a=null!=i?i.toString():null,s=null!=o?o.toString():null;this.gk(new Dh(a,s)),this.gl(1,s);break;case"Value":this.gj(new Bh(i,o)),this.gl(0,o);break;case"ShowClearButton":this.v.cj();break;case"AllowFilter":this.v.a5(this.bg);break;case"SortMode":this.v.cr();break;case"DisallowTabFocus":this.v.cq();break;case"IsFixed":this.v.cp();break;case"UseTopLayer":this.v.cs()}},e.prototype.gt=function(){this.v.c2()},Object.defineProperty(e.prototype,"a1",{get:function(){return null==this.a0&&(this.a0=new n.FontInfo,this.a0.q="Verdana",this.a0.f=n.DeviceUtils.f(16)),this.a0},enumerable:!1,configurable:!0}),e.prototype.focus=function(t){this.v.a6(t)},e.prototype.setName=function(t){this.v.ci(t)},Object.defineProperty(e.prototype,"disallowTabFocus",{get:function(){return this.a8},set:function(t){var e=this.a8;this.a8=t,e!=this.a8&&this.gh("DisallowTabFocus",e,this.a8)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bq",{get:function(){return this.bc},set:function(t){var e=this.bc;this.bc=t,e!=this.bc&&this.gh("ShowClearButton",e,this.bc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,e!=this.c&&this.gh("Fields",e,this.c)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"defaultColumnWidth",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,e!=this.m&&this.gh("DefaultColumnWidth",e,this.m)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hw",{get:function(){return this.ha},set:function(t){var e=this.ha;this.ha=t,e!=this.ha&&this.gh("BackgroundColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hl",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,e!=this.gz&&this.gh("ActualBackgroundColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ai",{get:function(){return this.af},set:function(t){var e=this.af;this.af=t,e!=this.af&&this.gh("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ah",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=this.ae&&this.gh("ActualBaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hx",{get:function(){return this.hb},set:function(t){var e=this.hb;this.hb=t,e!=this.hb&&this.gh("BorderColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hm",{get:function(){return this.g0},set:function(t){var e=this.g0;this.g0=t,e!=this.g0&&this.gh("ActualBorderColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cm",{get:function(){return this.b2},set:function(t){var e=this.b2;this.b2=t,e!=this.b2&&this.gh("BorderWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cc",{get:function(){return this.bs},set:function(t){var e=this.bs;this.bs=t,e!=this.bs&&this.gh("ActualBorderWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnHeadersVisible",{get:function(){return this.bh},set:function(t){var e=this.bh;this.bh=t,e!=this.bh&&this.gh("ColumnHeadersVisible",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"im",{get:function(){return this.ik},set:function(t){var e=this.ik;this.ik=t,e!=this.ik&&this.gh("ContentPadding",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"il",{get:function(){return this.ij},set:function(t){var e=this.ij;this.ij=t,e!=this.ij&&this.gh("ActualContentPadding",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gx",{get:function(){return this.gv},set:function(t){var e=this.gv;this.gv=t,e!=this.gv&&this.gh("CornerRadius",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"gw",{get:function(){return this.gu},set:function(t){var e=this.gu;this.gu=t,e!=this.gu&&this.gh("ActualCornerRadius",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"f",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.gh("DataSourceDesiredProperties",e,this.b)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"density",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,e!=this.al&&this.gh("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"am",{get:function(){return this.ak},set:function(t){var e=this.ak;this.ak=t,e!=this.ak&&this.gh("ActualDensity",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dropDownButtonVisible",{get:function(){return this.bk},set:function(t){var e=this.bk;this.bk=t,e!=this.bk&&this.gh("DropDownButtonVisible",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"h9",{get:function(){return this.hc},set:function(t){var e=this.hc;this.hc=t,e!=this.hc&&this.gh("FocusBorderColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hn",{get:function(){return this.g1},set:function(t){var e=this.g1;this.g1=t,e!=this.g1&&this.gh("ActualFocusBorderColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cy",{get:function(){return this.b3},set:function(t){var e=this.b3;this.b3=t,e!=this.b3&&this.gh("FocusBorderWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cd",{get:function(){return this.bt},set:function(t){var e=this.bt;this.bt=t,e!=this.bt&&this.gh("ActualFocusBorderWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ia",{get:function(){return this.hd},set:function(t){var e=this.hd;this.hd=t,e!=this.hd&&this.gh("FocusUnderlineColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ho",{get:function(){return this.g2},set:function(t){var e=this.g2;this.hd=t,e!=this.g2&&this.gh("ActualFocusUnderlineColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cz",{get:function(){return this.b4},set:function(t){var e=this.b4;this.b4=t,e!=this.b4&&this.gh("FocusUnderlineOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ce",{get:function(){return this.bu},set:function(t){var e=this.bu;this.bu=t,e!=this.bu&&this.gh("ActualFocusUnderlineOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c0",{get:function(){return this.b5},set:function(t){var e=this.b5;this.b5=t,e!=this.b5&&this.gh("FocusUnderlineRippleOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cf",{get:function(){return this.bv},set:function(t){var e=this.bv;this.bv=t,e!=this.bv&&this.gh("ActualFocusUnderlineRippleOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ib",{get:function(){return this.he},set:function(t){var e=this.he;this.he=t,e!=this.he&&this.gh("HoverUnderlineColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hp",{get:function(){return this.g3},set:function(t){var e=this.g3;this.g3=t,e!=this.g3&&this.gh("ActualHoverUnderlineColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c1",{get:function(){return this.b6},set:function(t){var e=this.b6;this.b6=t,e!=this.b6&&this.gh("HoverUnderlineOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cg",{get:function(){return this.bw},set:function(t){var e=this.bw;this.bw=t,e!=this.bw&&this.gh("ActualHoverUnderlineOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c2",{get:function(){return this.b7},set:function(t){var e=this.b7;this.b7=t,e!=this.b7&&this.gh("HoverUnderlineWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ch",{get:function(){return this.bx},set:function(t){var e=this.bx;this.bx=t,e!=this.bx&&this.gh("ActualHoverUnderlineWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"itemsSource",{get:function(){return this.c7},set:function(t){var e=this.c7;this.c7=t,e!=this.c7&&this.gh("ItemsSource",e,this.c7)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualDataSource",{get:function(){return this.v.b()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fb",{get:function(){return this.fd},set:function(t){var e=this.fb;0!=n.StringComparer.b.compare(t,e)&&(this.fd=t,this.gh("Label",e,this.fd))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ic",{get:function(){return this.hf},set:function(t){var e=this.hf;this.hf=t,e!=this.hf&&this.gh("LabelTextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hq",{get:function(){return this.g4},set:function(t){var e=this.g4;this.g4=t,e!=this.g4&&this.gh("ActualLabelTextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a2",{get:function(){return this.as},set:function(t){var e=this.as;this.as=t,e!=this.as&&this.gh("LabelTextStyle",e,this.as)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"av",{get:function(){return this.ap},set:function(t){var e=this.ap;this.ap=t,this.ap!=e&&this.gh("ActualLabelTextStyle",e,this.ap)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualLabelVisible",{get:function(){return this.be},set:function(t){var e=this.be;this.be=t,e!=this.be&&this.gh("ActualLabelVisible",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fh",{get:function(){return this.fg},set:function(t){var e=this.fg;0!=n.StringComparer.b.compare(t,e)&&(this.fg=t,this.gh("NoMatchesFoundLabel",e,this.fg))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualNoMatchesFoundLabel",{get:function(){return this.d1},set:function(t){var e=this.d1;this.d1=t,e!=this.d1&&this.gh("ActualNoMatchesFoundLabel",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"id",{get:function(){return this.hg},set:function(t){var e=this.hg;this.hg=t,e!=this.hg&&this.gh("NoMatchesFoundLabelBackgroundColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hr",{get:function(){return this.g5},set:function(t){var n=this.g5;this.g5=t,n!=this.g5&&this.gh(e.d3,n,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ie",{get:function(){return this.hh},set:function(t){var e=this.hh;this.hh=t,e!=this.hh&&this.gh("NoMatchesFoundLabelTextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hs",{get:function(){return this.g6},set:function(t){var e=this.g6;this.g6=t,e!=this.g6&&this.gh("ActualNoMatchesFoundLabelTextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a3",{get:function(){return this.at},set:function(t){var e=this.at;this.at=t,e!=this.at&&this.gh("NoMatchesFoundLabelTextStyle",e,this.at)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aw",{get:function(){return this.aq},set:function(t){var e=this.aq;this.aq=t,this.aq!=e&&this.gh("ActualNoMatchesFoundLabelTextStyle",e,this.aq)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fn",{get:function(){return this.fo},set:function(t){var e=this.fn;0!=n.StringComparer.b.compare(t,e)&&(this.fo=t,this.gh("PlaceholderText",e,this.fo))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"rowSeparatorsVisible",{get:function(){return this.bb},set:function(t){var e=this.bb;this.bb=t,e!=this.bb&&this.gh("RowSeparatorsVisible",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ig",{get:function(){return this.hi},set:function(t){var e=this.hi;this.hi=t,e!=this.hi&&this.gh("TextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ht",{get:function(){return this.g7},set:function(t){var e=this.g7;this.g7=t,e!=this.g7&&this.gh("ActualTextColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"a4",{get:function(){return this.au},set:function(t){var e=this.au;this.au=t,e!=this.au&&this.gh("TextStyle",e,this.au)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ax",{get:function(){return this.ar},set:function(t){var e=this.ar;this.ar=t,this.ar!=e&&this.gh("ActualTextStyle",e,this.ar)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ih",{get:function(){return this.hj},set:function(t){var e=this.hj;this.hj=t,e!=this.hj&&this.gh("UnderlineColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hu",{get:function(){return this.g8},set:function(t){var e=this.g8;this.g8=t,e!=this.g8&&this.gh("ActualUnderlineColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c3",{get:function(){return this.b8},set:function(t){var e=this.b8;this.b8=t,e!=this.b8&&this.gh("UnderlineOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ci",{get:function(){return this.by},set:function(t){var e=this.by;this.by=t,e!=this.by&&this.gh("ActualUnderlineOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ii",{get:function(){return this.hk},set:function(t){var e=this.hk;this.hk=t,e!=this.hk&&this.gh("UnderlineRippleColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hv",{get:function(){return this.g9},set:function(t){var e=this.g9;this.g9=t,e!=this.g9&&this.gh("ActualUnderlineRippleColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c4",{get:function(){return this.b9},set:function(t){var e=this.b9;this.b9=t,e!=this.b9&&this.gh("UnderlineRippleOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cj",{get:function(){return this.bz},set:function(t){var e=this.bz;this.bz=t,e!=this.bz&&this.gh("ActualUnderlineRippleOpacity",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c5",{get:function(){return this.ca},set:function(t){var e=this.ca;this.ca=t,e!=this.ca&&this.gh("UnderlineRippleWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ck",{get:function(){return this.b0},set:function(t){var e=this.b0;this.b0=t,e!=this.b0&&this.gh("ActualUnderlineRippleWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"c6",{get:function(){return this.cb},set:function(t){var e=this.cb;this.cb=t,e!=this.cb&&this.gh("UnderlineWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"cl",{get:function(){return this.b1},set:function(t){var e=this.b1;this.b1=t,e!=this.b1&&this.gh("ActualUnderlineWidth",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bg",{get:function(){return this.a7},set:function(t){var e=this.a7;this.a7=t,e!=this.a7&&this.gh("AllowFilter",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"x",{get:function(){return this.w},set:function(t){var e=this.w;this.w=t,e!=this.w&&this.gh("SortMode",n.enumGetBox(Rh,e),n.enumGetBox(Rh,this.w))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fv",{get:function(){return this.dg},set:function(t){var e=this.dg;this.dg=t,e!=this.dg&&this.gh("TextField",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"text",{get:function(){return this.df},set:function(t){var e=this.df;this.df=t,e!=this.df&&this.gh("Text",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,e!=this.d&&this.gh("ValueField",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"e",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,e!=this.a&&this.gh("ActualValueField",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this.c8},set:function(t){var e=this.c8;this.c8=t,e!=this.c8&&this.gh("Value",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ac",{get:function(){return this.aa},set:function(t){var e=this.aa;this.aa=t,e!=this.aa&&this.gh("DisplayType",n.enumGetBox(r.InputGroupDisplayType_$type,e),n.enumGetBox(r.InputGroupDisplayType_$type,t))},enumerable:!1,configurable:!0}),e.prototype.da=function(t,e){return new n.FastReflectionHelper(!1,e).getPropertyValue(t)},e.prototype.p=function(){var t=this.e5();return this.o(t)},e.prototype.e5=function(){return this.e4(this.fv)},e.prototype.db=function(t){var e=this.i();if(null==e||0==e.length)return null;for(var i=new n.List$1(n.Base.$,0),r=0;r<e.length;r++){var o=e[r],a=this.da(t,o);i.add1(a)}return 1==i.count?i._inner[0]:i.toArray()},e.prototype.e3=function(t){var e,n=this.e5();if(null!=n){var i=this.da(t,n);e=null!=i?i.toString():null}else e=null;return e},e.prototype.o=function(t){var e,r,o=this.v.e;if(null==o)return null;var a=o.actualColumns;if(null==a||0==a.count)return null;if(n.stringIsNullOrEmpty(t))return a._inner[0];try{for(var s=i.__values(n.fromEnum(a)),l=s.next();!l.done;l=s.next()){var u=l.value;if(0==n.StringComparer.b.compare(u.lo,t))return u}}catch(t){e={error:t}}finally{try{l&&!l.done&&(r=s.return)&&r.call(s)}finally{if(e)throw e.error}}return null},e.prototype.e4=function(t){if(n.stringIsNullOrEmpty(t)){var e=this.actualDataSource;if(null==e)return null;var i=e.actualSchema;if(null==i)return null;var r=i.propertyNames;return 0==r.length?null:r[0]}return t},e.prototype.h=function(t){var e=new n.List$1(n.String_$type,0);if(null==t||0==t.length){var i=this.e4(null);return n.stringIsNullOrEmpty(i)?null:(e.add(i),e.toArray())}for(var r=0;r<t.length;r++){var o=t[r],a=this.e4(o);null!=a&&e.add(a)}return e.count>0?e.toArray():null},e.prototype.i=function(){var t=this.j;return this.h(t)},e.prototype.gi=function(t){this.gl(2,t)},e.prototype.gl=function(t,e){if(!this.bm){this.bm=!0;try{switch(t){case 2:var i=e,r=void 0,o=void 0;null!=i?(r=this.e3(i),o=this.db(i)):(r=n.stringEmpty(),o=null),this.text!=r&&(this.text=r),this.value!=o&&(this.value=o);break;case 1:this.v.cl(e.toString());break;case 0:this.v.ck(e)}}finally{this.bm=!1}this.v.cj()}},e.prototype.gq=function(t){this.text=t},e.prototype.gs=function(){this.ax=null==this.a4?this.a1:this.a4,this.av=null==this.a2?this.a1:this.a2},e.prototype.gr=function(){},e.prototype.closeUp=function(){this.v.az()},e.prototype.destroy=function(){this.provideRenderer(null)},e.prototype.dropDown=function(){this.v.a3()},e.prototype.select=function(){this.v.ce()},e.prototype.notifySizeChanged=function(){this.v.bq()},e.prototype.provideRenderer=function(t){this.v.b4(t),this.actualNoMatchesFoundLabel=n.stringIsNullOrWhiteSpace(this.a6.b1("NoMatches"))?"No Matches Found":this.a6.b1("NoMatches")},e.prototype.c9=function(){return this.l()},e.prototype.ew=function(){return this.l().am()},e.prototype.l=function(){var t=new Mh;if(t.a=n.AppearanceHelper.a(this.hl),t.j=this.ah,t.b=n.AppearanceHelper.a(this.hm),t.p=this.cc,t.columnHeadersVisible=this.columnHeadersVisible,t.au=this.il,t.at=this.gw,t.k=this.am,t.dropDownButtonVisible=this.dropDownButtonVisible,t.q=this.ce,t.aa=this.fb,t.c=n.AppearanceHelper.a(this.hq),t.actualLabelVisible=this.actualLabelVisible,t.actualNoMatchesFoundLabel=this.actualNoMatchesFoundLabel,t.d=n.AppearanceHelper.a(this.hr),t.e=n.AppearanceHelper.a(this.hs),t.al=this.fn,t.rowSeparatorsVisible=this.rowSeparatorsVisible,t.f=n.AppearanceHelper.a(this.ht),t.g=n.AppearanceHelper.a(this.hu),t.r=this.ci,t.h=n.AppearanceHelper.a(this.hv),t.s=this.cj,t.t=this.ck,t.u=this.cl,t.an=this.text,t.y=this.value,t.i=this.v.e.exportVisualModel(),null!=this.av){var e=this.av;if(null!=this.v&&null==e.q){var i=this.v.ad,r=n.FontUtil.getFontInfoFromString(i,e.fontString);e.q=r.q,e.f=r.f,e.r=r.r,e.t=r.t,e.u=r.u,e.v=r.v}null!=e.q&&(t.ab=e.q),n.isNaN_(e.f)||(t.v=e.f),null!=e.v&&(t.af=e.v),null!=e.t&&(t.ad=e.t),null!=e.r&&(t.ac=e.t)}if(null!=this.aw){var o=this.aw;if(null!=this.v&&null==o.q){var a=this.v.ad,s=n.FontUtil.getFontInfoFromString(a,o.fontString);o.q=s.q,o.f=s.f,o.r=s.r,o.t=s.t,o.u=s.u,o.v=s.v}null!=o.q&&(t.ag=o.q),n.isNaN_(o.f)||(t.w=o.f),null!=o.v&&(t.ak=o.v),null!=o.t&&(t.ai=o.t),null!=o.r&&(t.ah=o.t)}if(null!=this.ax){var l=this.ax;if(null!=this.v&&null==l.q){var u=this.v.ad,c=n.FontUtil.getFontInfoFromString(u,l.fontString);l.q=c.q,l.f=c.f,l.r=c.r,l.t=c.t,l.u=c.u,l.v=c.v}null!=l.q&&(t.ao=l.q),n.isNaN_(l.f)||(t.x=l.f),null!=l.v&&(t.as=l.v),null!=l.t&&(t.aq=l.t),null!=l.r&&(t.ap=l.t)}return t},Object.defineProperty(e.prototype,"bn",{get:function(){return this.a9},set:function(t){var e=this.a9;this.a9=t,e!=this.a9&&this.gh("IsFixed",e,this.a9)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bo",{get:function(){return this.ba},set:function(t){var e=this.ba;this.ba=t,e!=this.ba&&this.gh("OpenAsChild",e,this.ba)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"br",{get:function(){return this.bd},set:function(t){var e=this.bd;this.bd=t,e!=this.bd&&this.gh("UseTopLayer",e,this.bd)},enumerable:!1,configurable:!0}),e.prototype.ge=function(t){null!=this.gotFocus&&this.gotFocus(this,t)},e.prototype.gg=function(t){null!=this.lostFocus&&this.lostFocus(this,t)},e.prototype.gk=function(t){null!=this.textValueChanged&&this.textValueChanged(this,t)},e.prototype.gj=function(t){null!=this.selectedValueChanged&&this.selectedValueChanged(this,t)},e.prototype.gh=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.gm(t,e,i)},e.prototype.gf=function(t){null!=this.keyDown&&this.keyDown(this,t)},e.prototype.gd=function(t){null!=this.changing&&this.changing(this,t)},e.$t=n.markType(e,"MultiColumnComboBox",n.Base.$,[n.INotifyPropertyChanged_$type]),e.ag=1,e.hy=r.ThemeResolver.ah(e.ag,r.XLabel.de,r.XLabel.c7),e.h0=r.ThemeResolver.ah(e.ag,r.XLabel.de,r.XLabel.c7),e.hz=n.BrushUtil.j(255,255,255,255),e.ay=null,e.d3="ActualNoMatchesFoundLabelBackgroundColor",e.az=null,e.h8=n.BrushUtil.j(221,0,0,0),e}(n.Base),Vh=function(t){function e(e,n){var i=t.call(this)||this;return i.a=null,i.b=!1,i.a=e,i.b=n,i}return i.__extends(e,t),e.prototype.rangeActualized=function(t,e){this.b?this.a.bu(t,e):this.a.b0(t,e)},e.prototype.notifySetItem=function(t,e,n){this.b?this.a.bx(t,e,n):this.a.b5(t,e,n)},e.prototype.notifyClearItems=function(){this.b?this.a.bt():this.a.bs()},e.prototype.notifyInsertItem=function(t,e){this.b?this.a.bv(t,e):this.a.b1(t,e)},e.prototype.notifyRemoveItem=function(t,e){this.b?this.a.bw(t,e):this.a.b3(t,e)},e.$t=n.markType(e,"MultiColumnComboBoxDataSourceNotificationHandler",n.Base.$,[n.IDataSourceUpdateNotifier_$type]),e}(n.Base),Nh=function(){function t(){}return Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"oldText",{get:function(){return this.i.oldText},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"newText",{get:function(){return this.i.newText},enumerable:!1,configurable:!0}),t}(),Fh=function(){function t(){}return Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"oldValue",{get:function(){return this.i.oldValue},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"newValue",{get:function(){return this.i.newValue},enumerable:!1,configurable:!0}),t}(),$h=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ih},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),zh=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new jh},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Gh=function(){function t(t,e,i,r,o){this.renderer=t,this._elRef=e,this.ngZone=i,this.injector=r,this.componentFactoryResolver=o,this._implementation=null,this._portalManager=null,this._componentFactoryResolver=null,this._angularRenderer=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._gotFocus=null,this._lostFocus=null,this._textValueChanged=null,this._selectedValueChanged=null,this._keyDown=null,this._change=null,this._changing=null,this._textChange=null,this._valueChange=null,this._zoneRunner=null,this._componentFactoryResolver=o,this._implementation=this.createImplementation(),this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this))}return Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),t.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},t.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},t.prototype.ngAfterViewInit=function(){if(this._mainDiv=this._mainDivRef.nativeElement,this.renderer){this._portalManager=new n.PortalManager("popupContent",this._componentFactoryResolver),this._angularRenderer=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,{},this._portalManager);var t=this.i;t.provideRenderer(this._angularRenderer),this._portalManager.dynamicContent=this._dynamicContent,this._portalManager.onChildContentChanged(this._childTemplateRef),this._angularRenderer.addSizeWatcher((function(){t.notifySizeChanged()})),t.notifySizeChanged(),this.updateStyle()}},t.prototype.ngAfterContentInit=function(){},t.prototype.createImplementation=function(){return new Ah},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"defaultColumnWidth",{get:function(){var t=this.i.defaultColumnWidth.externalObject;return t||((t=new yo)._implementation=this.i.defaultColumnWidth),t},set:function(t){if("string"==typeof t){var e=Ft.parse(t);(n=new yo)._implementation=e,t=n}else if("number"==typeof t){var n;e=Ft.parse(t.toString());(n=new yo)._implementation=e,t=n}this.i.defaultColumnWidth=t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"showClearButton",{get:function(){return this.i.bq},set:function(t){this.i.bq=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"fields",{get:function(){return this.i.g},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.hw)},set:function(t){this.i.hw=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBackgroundColor",{get:function(){return n.brushToString(this.i.hl)},set:function(t){this.i.hl=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.ai},set:function(t){this.i.ai=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBaseTheme",{get:function(){return this.i.ah},set:function(t){this.i.ah=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderColor",{get:function(){return n.brushToString(this.i.hx)},set:function(t){this.i.hx=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorderColor",{get:function(){return n.brushToString(this.i.hm)},set:function(t){this.i.hm=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidth",{get:function(){return this.i.cm},set:function(t){this.i.cm=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorderWidth",{get:function(){return this.i.cc},set:function(t){this.i.cc=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnHeadersVisible",{get:function(){return this.i.columnHeadersVisible},set:function(t){this.i.columnHeadersVisible=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"contentPaddingBottom",{get:function(){return this.i.im?this.i.im.bottom:NaN},set:function(t){this.ensureContentPadding(),this.i.im.bottom=+t,this.i.im=this.i.im},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"contentPaddingLeft",{get:function(){return this.i.im?this.i.im.left:NaN},set:function(t){this.ensureContentPadding(),this.i.im.left=+t,this.i.im=this.i.im},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"contentPaddingRight",{get:function(){return this.i.im?this.i.im.right:NaN},set:function(t){this.ensureContentPadding(),this.i.im.right=+t,this.i.im=this.i.im},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"contentPaddingTop",{get:function(){return this.i.im?this.i.im.top:NaN},set:function(t){this.ensureContentPadding(),this.i.im.top=+t,this.i.im=this.i.im},enumerable:!1,configurable:!0}),t.prototype.ensureContentPadding=function(){this.i.im||(this.i.im=new n.Thickness(2))},Object.defineProperty(t.prototype,"actualContentPaddingBottom",{get:function(){return this.i.il?this.i.il.bottom:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.bottom=+t,this.i.il=this.i.il},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualContentPaddingLeft",{get:function(){return this.i.il?this.i.il.left:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.left=+t,this.i.il=this.i.il},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualContentPaddingRight",{get:function(){return this.i.il?this.i.il.right:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.right=+t,this.i.il=this.i.il},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualContentPaddingTop",{get:function(){return this.i.il?this.i.il.top:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.top=+t,this.i.il=this.i.il},enumerable:!1,configurable:!0}),t.prototype.ensureActualContentPadding=function(){this.i.il||(this.i.il=new n.Thickness(2))},Object.defineProperty(t.prototype,"cornerRadiusBottomRight",{get:function(){return this.i.gx?this.i.gx.c:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.c=+t,this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cornerRadiusBottomLeft",{get:function(){return this.i.gx?this.i.gx.b:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.b=+t,this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cornerRadiusTopLeft",{get:function(){return this.i.gx?this.i.gx.d:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.d=+t,this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cornerRadiusTopRight",{get:function(){return this.i.gx?this.i.gx.e:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.e=+t,this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),t.prototype.ensureCornerRadius=function(){this.i.gx||(this.i.gx=new n.CornerRadius(2))},Object.defineProperty(t.prototype,"actualCornerRadiusBottomRight",{get:function(){return this.i.gw?this.i.gw.c:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.c=+t,this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualCornerRadiusBottomLeft",{get:function(){return this.i.gw?this.i.gw.b:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.b=+t,this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualCornerRadiusTopLeft",{get:function(){return this.i.gw?this.i.gw.d:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.d=+t,this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualCornerRadiusTopRight",{get:function(){return this.i.gw?this.i.gw.e:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.e=+t,this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),t.prototype.ensureActualCornerRadius=function(){this.i.gw||(this.i.gw=new n.CornerRadius(2))},Object.defineProperty(t.prototype,"dataSourceDesiredProperties",{get:function(){return this.i.f},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.f=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualDensity",{get:function(){return this.i.am},set:function(t){this.i.am=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dropDownButtonVisible",{get:function(){return this.i.dropDownButtonVisible},set:function(t){this.i.dropDownButtonVisible=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"focusBorderColor",{get:function(){return n.brushToString(this.i.h9)},set:function(t){this.i.h9=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualFocusBorderColor",{get:function(){return n.brushToString(this.i.hn)},set:function(t){this.i.hn=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"focusBorderWidth",{get:function(){return this.i.cy},set:function(t){this.i.cy=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualFocusBorderWidth",{get:function(){return this.i.cd},set:function(t){this.i.cd=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"focusUnderlineColor",{get:function(){return n.brushToString(this.i.ia)},set:function(t){this.i.ia=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualFocusUnderlineColor",{get:function(){return n.brushToString(this.i.ho)},set:function(t){this.i.ho=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"focusUnderlineOpacity",{get:function(){return this.i.cz},set:function(t){this.i.cz=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualFocusUnderlineOpacity",{get:function(){return this.i.ce},set:function(t){this.i.ce=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"focusUnderlineRippleOpacity",{get:function(){return this.i.c0},set:function(t){this.i.c0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualFocusUnderlineRippleOpacity",{get:function(){return this.i.cf},set:function(t){this.i.cf=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverUnderlineColor",{get:function(){return n.brushToString(this.i.ib)},set:function(t){this.i.ib=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualHoverUnderlineColor",{get:function(){return n.brushToString(this.i.hp)},set:function(t){this.i.hp=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverUnderlineOpacity",{get:function(){return this.i.c1},set:function(t){this.i.c1=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualHoverUnderlineOpacity",{get:function(){return this.i.cg},set:function(t){this.i.cg=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverUnderlineWidth",{get:function(){return this.i.c2},set:function(t){this.i.c2=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualHoverUnderlineWidth",{get:function(){return this.i.ch},set:function(t){this.i.ch=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataSource",{get:function(){return this.i.itemsSource},set:function(t){this.i.itemsSource=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualDataSource",{get:function(){return this.i.actualDataSource},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"label",{get:function(){return this.i.fb},set:function(t){this.i.fb=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"labelTextColor",{get:function(){return n.brushToString(this.i.ic)},set:function(t){this.i.ic=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualLabelTextColor",{get:function(){return n.brushToString(this.i.hq)},set:function(t){this.i.hq=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"labelTextStyle",{get:function(){return null==this.i.a2?null:this.i.a2.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.a2=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualLabelVisible",{get:function(){return this.i.actualLabelVisible},set:function(t){this.i.actualLabelVisible=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"noMatchesFoundLabel",{get:function(){return this.i.fh},set:function(t){this.i.fh=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualNoMatchesFoundLabel",{get:function(){return this.i.actualNoMatchesFoundLabel},set:function(t){this.i.actualNoMatchesFoundLabel=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"noMatchesFoundLabelBackgroundColor",{get:function(){return n.brushToString(this.i.id)},set:function(t){this.i.id=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualNoMatchesFoundLabelBackgroundColor",{get:function(){return n.brushToString(this.i.hr)},set:function(t){this.i.hr=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"noMatchesFoundLabelTextColor",{get:function(){return n.brushToString(this.i.ie)},set:function(t){this.i.ie=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualNoMatchesFoundLabelTextColor",{get:function(){return n.brushToString(this.i.hs)},set:function(t){this.i.hs=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"noMatchesFoundLabelTextStyle",{get:function(){return null==this.i.a3?null:this.i.a3.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.a3=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"placeholder",{get:function(){return this.i.fn},set:function(t){this.i.fn=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowSeparatorsVisible",{get:function(){return this.i.rowSeparatorsVisible},set:function(t){this.i.rowSeparatorsVisible=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.ig)},set:function(t){this.i.ig=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualTextColor",{get:function(){return n.brushToString(this.i.ht)},set:function(t){this.i.ht=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textStyle",{get:function(){return null==this.i.a4?null:this.i.a4.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.a4=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"underlineColor",{get:function(){return n.brushToString(this.i.ih)},set:function(t){this.i.ih=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualUnderlineColor",{get:function(){return n.brushToString(this.i.hu)},set:function(t){this.i.hu=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"underlineOpacity",{get:function(){return this.i.c3},set:function(t){this.i.c3=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualUnderlineOpacity",{get:function(){return this.i.ci},set:function(t){this.i.ci=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"underlineRippleColor",{get:function(){return n.brushToString(this.i.ii)},set:function(t){this.i.ii=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualUnderlineRippleColor",{get:function(){return n.brushToString(this.i.hv)},set:function(t){this.i.hv=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"underlineRippleOpacity",{get:function(){return this.i.c4},set:function(t){this.i.c4=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualUnderlineRippleOpacity",{get:function(){return this.i.cj},set:function(t){this.i.cj=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"underlineRippleWidth",{get:function(){return this.i.c5},set:function(t){this.i.c5=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualUnderlineRippleWidth",{get:function(){return this.i.ck},set:function(t){this.i.ck=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"underlineWidth",{get:function(){return this.i.c6},set:function(t){this.i.c6=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualUnderlineWidth",{get:function(){return this.i.cl},set:function(t){this.i.cl=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"allowFilter",{get:function(){return this.i.bg},set:function(t){this.i.bg=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortMode",{get:function(){return this.i.x},set:function(t){this.i.x=n.ensureEnum(Rh,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textField",{get:function(){return this.i.fv},set:function(t){this.i.fv=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"text",{get:function(){return this.i.text},set:function(t){this.i.text=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"valueField",{get:function(){return this.i.j},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.j=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualValueField",{get:function(){return this.i.e},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this.i.value},set:function(t){this.i.value=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isFixed",{get:function(){return this.i.bn},set:function(t){this.i.bn=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"openAsChild",{get:function(){return this.i.bo},set:function(t){this.i.bo=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"useTopLayer",{get:function(){return this.i.br},set:function(t){this.i.br=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("MultiColumnComboBoxComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.closeUp=function(){this.i.closeUp()},t.prototype.dropDown=function(){this.i.dropDown()},t.prototype.select=function(){this.i.select()},t.prototype.exportVisualModel=function(){return this.i.c9()},t.prototype.exportSerializedVisualModel=function(){return this.i.ew()},Object.defineProperty(t.prototype,"gotFocus",{get:function(){var t=this;return null==this._gotFocus&&(this._gotFocus=new e.EventEmitter,this.i.gotFocus=n.delegateCombine(this.i.gotFocus,(function(e,n){t._runInZone((function(){var e=new $h;e._provideImplementation(n),t.beforeGotFocus&&t.beforeGotFocus(t,e),t._gotFocus.emit({sender:t,args:e})}))}))),this._gotFocus},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lostFocus",{get:function(){var t=this;return null==this._lostFocus&&(this._lostFocus=new e.EventEmitter,this.i.lostFocus=n.delegateCombine(this.i.lostFocus,(function(e,n){t._runInZone((function(){var e=new zh;e._provideImplementation(n),t.beforeLostFocus&&t.beforeLostFocus(t,e),t._lostFocus.emit({sender:t,args:e})}))}))),this._lostFocus},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textValueChanged",{get:function(){var t=this;return null==this._textValueChanged&&(this._textValueChanged=new e.EventEmitter,this.i.textValueChanged=n.delegateCombine(this.i.textValueChanged,(function(e,n){t._runInZone((function(){var e=new Nh;e._provideImplementation(n),t.beforeTextValueChanged&&t.beforeTextValueChanged(t,e),t._textValueChanged.emit({sender:t,args:e})}))}))),this._textValueChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedValueChanged",{get:function(){var t=this;return null==this._selectedValueChanged&&(this._selectedValueChanged=new e.EventEmitter,this.i.selectedValueChanged=n.delegateCombine(this.i.selectedValueChanged,(function(e,n){t._runInZone((function(){var e=new Fh;e._provideImplementation(n),t.beforeSelectedValueChanged&&t.beforeSelectedValueChanged(t,e),t._selectedValueChanged.emit({sender:t,args:e})}))}))),this._selectedValueChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"keyDown",{get:function(){var t=this;return null==this._keyDown&&(this._keyDown=new e.EventEmitter,this.i.keyDown=n.delegateCombine(this.i.keyDown,(function(e,i){t._runInZone((function(){var e=new n.IgxKeyEventArgs;e._provideImplementation(i),t.beforeKeyDown&&t.beforeKeyDown(t,e),t._keyDown.emit({sender:t,args:e})}))}))),this._keyDown},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"change",{get:function(){var t=this;return null==this._change&&(this._change=new e.EventEmitter,this.i.change=n.delegateCombine(this.i.change,(function(e,n){t._runInZone((function(){var e=new r.IgxInputChangeEventArgs;e._provideImplementation(n),t.beforeChange&&t.beforeChange(t,e),t._change.emit({sender:t,args:e})}))}))),this._change},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"changing",{get:function(){var t=this;return null==this._changing&&(this._changing=new e.EventEmitter,this.i.changing=n.delegateCombine(this.i.changing,(function(e,n){t._runInZone((function(){var e=new r.IgxInputChangeEventArgs;e._provideImplementation(n),t.beforeChanging&&t.beforeChanging(t,e),t._changing.emit({sender:t,args:e})}))}))),this._changing},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textChange",{get:function(){var t=this;return null==this._textChange&&(this._textChange=new e.EventEmitter,this.i.propertyChanged=n.delegateCombine(this.i.propertyChanged,(function(e,n){t._runInZone((function(){var e=t.text;t.beforeTextChange&&t.beforeTextChange(t,e),t._textChange.emit(e)}))}))),this._textChange},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"valueChange",{get:function(){var t=this;return null==this._valueChange&&(this._valueChange=new e.EventEmitter,this.i.propertyChanged=n.delegateCombine(this.i.propertyChanged,(function(e,n){t._runInZone((function(){var e=t.value;t.beforeValueChange&&t.beforeValueChange(t,e),t._valueChange.emit(e)}))}))),this._valueChange},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-multi-column-combo-box",inputs:{height:"height",width:"width",showClearButton:"showClearButton",fields:"fields",backgroundColor:"backgroundColor",actualBackgroundColor:"actualBackgroundColor",baseTheme:"baseTheme",actualBaseTheme:"actualBaseTheme",borderColor:"borderColor",actualBorderColor:"actualBorderColor",borderWidth:"borderWidth",actualBorderWidth:"actualBorderWidth",columnHeadersVisible:"columnHeadersVisible",contentPaddingBottom:"contentPaddingBottom",contentPaddingLeft:"contentPaddingLeft",contentPaddingRight:"contentPaddingRight",contentPaddingTop:"contentPaddingTop",actualContentPaddingBottom:"actualContentPaddingBottom",actualContentPaddingLeft:"actualContentPaddingLeft",actualContentPaddingRight:"actualContentPaddingRight",actualContentPaddingTop:"actualContentPaddingTop",cornerRadiusBottomRight:"cornerRadiusBottomRight",cornerRadiusBottomLeft:"cornerRadiusBottomLeft",cornerRadiusTopLeft:"cornerRadiusTopLeft",cornerRadiusTopRight:"cornerRadiusTopRight",actualCornerRadiusBottomRight:"actualCornerRadiusBottomRight",actualCornerRadiusBottomLeft:"actualCornerRadiusBottomLeft",actualCornerRadiusTopLeft:"actualCornerRadiusTopLeft",actualCornerRadiusTopRight:"actualCornerRadiusTopRight",dataSourceDesiredProperties:"dataSourceDesiredProperties",density:"density",actualDensity:"actualDensity",dropDownButtonVisible:"dropDownButtonVisible",focusBorderColor:"focusBorderColor",actualFocusBorderColor:"actualFocusBorderColor",focusBorderWidth:"focusBorderWidth",actualFocusBorderWidth:"actualFocusBorderWidth",focusUnderlineColor:"focusUnderlineColor",actualFocusUnderlineColor:"actualFocusUnderlineColor",focusUnderlineOpacity:"focusUnderlineOpacity",actualFocusUnderlineOpacity:"actualFocusUnderlineOpacity",focusUnderlineRippleOpacity:"focusUnderlineRippleOpacity",actualFocusUnderlineRippleOpacity:"actualFocusUnderlineRippleOpacity",hoverUnderlineColor:"hoverUnderlineColor",actualHoverUnderlineColor:"actualHoverUnderlineColor",hoverUnderlineOpacity:"hoverUnderlineOpacity",actualHoverUnderlineOpacity:"actualHoverUnderlineOpacity",hoverUnderlineWidth:"hoverUnderlineWidth",actualHoverUnderlineWidth:"actualHoverUnderlineWidth",dataSource:"dataSource",label:"label",labelTextColor:"labelTextColor",actualLabelTextColor:"actualLabelTextColor",labelTextStyle:"labelTextStyle",actualLabelVisible:"actualLabelVisible",noMatchesFoundLabel:"noMatchesFoundLabel",actualNoMatchesFoundLabel:"actualNoMatchesFoundLabel",noMatchesFoundLabelBackgroundColor:"noMatchesFoundLabelBackgroundColor",actualNoMatchesFoundLabelBackgroundColor:"actualNoMatchesFoundLabelBackgroundColor",noMatchesFoundLabelTextColor:"noMatchesFoundLabelTextColor",actualNoMatchesFoundLabelTextColor:"actualNoMatchesFoundLabelTextColor",noMatchesFoundLabelTextStyle:"noMatchesFoundLabelTextStyle",placeholder:"placeholder",rowSeparatorsVisible:"rowSeparatorsVisible",textColor:"textColor",actualTextColor:"actualTextColor",textStyle:"textStyle",underlineColor:"underlineColor",actualUnderlineColor:"actualUnderlineColor",underlineOpacity:"underlineOpacity",actualUnderlineOpacity:"actualUnderlineOpacity",underlineRippleColor:"underlineRippleColor",actualUnderlineRippleColor:"actualUnderlineRippleColor",underlineRippleOpacity:"underlineRippleOpacity",actualUnderlineRippleOpacity:"actualUnderlineRippleOpacity",underlineRippleWidth:"underlineRippleWidth",actualUnderlineRippleWidth:"actualUnderlineRippleWidth",underlineWidth:"underlineWidth",actualUnderlineWidth:"actualUnderlineWidth",allowFilter:"allowFilter",sortMode:"sortMode",textField:"textField",text:"text",valueField:"valueField",actualValueField:"actualValueField",value:"value",isFixed:"isFixed",openAsChild:"openAsChild",useTopLayer:"useTopLayer"},outputs:{gotFocus:"gotFocus",lostFocus:"lostFocus",textValueChanged:"textValueChanged",selectedValueChanged:"selectedValueChanged",keyDown:"keyDown",change:"change",changing:"changing",textChange:"textChange",valueChange:"valueChange"},providers:[],viewQueries:[{propertyName:"_mainDivRef",first:!0,predicate:["mainDivRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_dynamicContent",first:!0,predicate:["dynamicContent"],descendants:!0,read:e.ViewContainerRef,static:!0},{propertyName:"_childTemplateRef",first:!0,predicate:["childContent"],descendants:!0,read:e.TemplateRef}],ngImport:e,template:'\n <ng-template #childContent>\n <ng-content></ng-content>\n </ng-template>\n <ng-container #dynamicContent></ng-container>\n <div #mainDivRef class="ig-multi-column-combo-box igx-multi-column-combo-box"> \n\t </div> \n ',isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Gh,decorators:[{type:e.Component,args:[{selector:"igx-multi-column-combo-box",template:'\n <ng-template #childContent>\n <ng-content></ng-content>\n </ng-template>\n <ng-container #dynamicContent></ng-container>\n <div #mainDivRef class="ig-multi-column-combo-box igx-multi-column-combo-box"> \n\t </div> \n ',changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_mainDivRef:[{type:e.ViewChild,args:["mainDivRef",{read:e.ElementRef,static:!0}]}],_dynamicContent:[{type:e.ViewChild,args:["dynamicContent",{read:e.ViewContainerRef,static:!0}]}],_childTemplateRef:[{type:e.ViewChild,args:["childContent",{read:e.TemplateRef,static:!1}]}],height:[{type:e.Input}],width:[{type:e.Input}],showClearButton:[{type:e.Input}],fields:[{type:e.Input}],backgroundColor:[{type:e.Input}],actualBackgroundColor:[{type:e.Input}],baseTheme:[{type:e.Input}],actualBaseTheme:[{type:e.Input}],borderColor:[{type:e.Input}],actualBorderColor:[{type:e.Input}],borderWidth:[{type:e.Input}],actualBorderWidth:[{type:e.Input}],columnHeadersVisible:[{type:e.Input}],contentPaddingBottom:[{type:e.Input}],contentPaddingLeft:[{type:e.Input}],contentPaddingRight:[{type:e.Input}],contentPaddingTop:[{type:e.Input}],actualContentPaddingBottom:[{type:e.Input}],actualContentPaddingLeft:[{type:e.Input}],actualContentPaddingRight:[{type:e.Input}],actualContentPaddingTop:[{type:e.Input}],cornerRadiusBottomRight:[{type:e.Input}],cornerRadiusBottomLeft:[{type:e.Input}],cornerRadiusTopLeft:[{type:e.Input}],cornerRadiusTopRight:[{type:e.Input}],actualCornerRadiusBottomRight:[{type:e.Input}],actualCornerRadiusBottomLeft:[{type:e.Input}],actualCornerRadiusTopLeft:[{type:e.Input}],actualCornerRadiusTopRight:[{type:e.Input}],dataSourceDesiredProperties:[{type:e.Input}],density:[{type:e.Input}],actualDensity:[{type:e.Input}],dropDownButtonVisible:[{type:e.Input}],focusBorderColor:[{type:e.Input}],actualFocusBorderColor:[{type:e.Input}],focusBorderWidth:[{type:e.Input}],actualFocusBorderWidth:[{type:e.Input}],focusUnderlineColor:[{type:e.Input}],actualFocusUnderlineColor:[{type:e.Input}],focusUnderlineOpacity:[{type:e.Input}],actualFocusUnderlineOpacity:[{type:e.Input}],focusUnderlineRippleOpacity:[{type:e.Input}],actualFocusUnderlineRippleOpacity:[{type:e.Input}],hoverUnderlineColor:[{type:e.Input}],actualHoverUnderlineColor:[{type:e.Input}],hoverUnderlineOpacity:[{type:e.Input}],actualHoverUnderlineOpacity:[{type:e.Input}],hoverUnderlineWidth:[{type:e.Input}],actualHoverUnderlineWidth:[{type:e.Input}],dataSource:[{type:e.Input}],label:[{type:e.Input}],labelTextColor:[{type:e.Input}],actualLabelTextColor:[{type:e.Input}],labelTextStyle:[{type:e.Input}],actualLabelVisible:[{type:e.Input}],noMatchesFoundLabel:[{type:e.Input}],actualNoMatchesFoundLabel:[{type:e.Input}],noMatchesFoundLabelBackgroundColor:[{type:e.Input}],actualNoMatchesFoundLabelBackgroundColor:[{type:e.Input}],noMatchesFoundLabelTextColor:[{type:e.Input}],actualNoMatchesFoundLabelTextColor:[{type:e.Input}],noMatchesFoundLabelTextStyle:[{type:e.Input}],placeholder:[{type:e.Input}],rowSeparatorsVisible:[{type:e.Input}],textColor:[{type:e.Input}],actualTextColor:[{type:e.Input}],textStyle:[{type:e.Input}],underlineColor:[{type:e.Input}],actualUnderlineColor:[{type:e.Input}],underlineOpacity:[{type:e.Input}],actualUnderlineOpacity:[{type:e.Input}],underlineRippleColor:[{type:e.Input}],actualUnderlineRippleColor:[{type:e.Input}],underlineRippleOpacity:[{type:e.Input}],actualUnderlineRippleOpacity:[{type:e.Input}],underlineRippleWidth:[{type:e.Input}],actualUnderlineRippleWidth:[{type:e.Input}],underlineWidth:[{type:e.Input}],actualUnderlineWidth:[{type:e.Input}],allowFilter:[{type:e.Input}],sortMode:[{type:e.Input}],textField:[{type:e.Input}],text:[{type:e.Input}],valueField:[{type:e.Input}],actualValueField:[{type:e.Input}],value:[{type:e.Input}],isFixed:[{type:e.Input}],openAsChild:[{type:e.Input}],useTopLayer:[{type:e.Input}],gotFocus:[{type:e.Output}],lostFocus:[{type:e.Output}],textValueChanged:[{type:e.Output}],selectedValueChanged:[{type:e.Output}],keyDown:[{type:e.Output}],change:[{type:e.Output}],changing:[{type:e.Output}],textChange:[{type:e.Output}],valueChange:[{type:e.Output}]}});var Lh=function(){function t(){n.TypeRegistrar.registerCons("IgxMultiColumnComboBoxComponent",Gh),n.TypeRegistrar.register("MultiColumnComboBox",Ah.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Gh],imports:[a.CommonModule,r.IgxXInputGroupModule,Cu,Ou,ku,rc,wu],exports:[r.IgxXInputGroupModule,Cu,Ou,ku,rc,wu,Gh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,r.IgxXInputGroupModule,Cu,Ou,ku,rc,wu],r.IgxXInputGroupModule,Cu,Ou,ku,rc,wu]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Lh,decorators:[{type:e.NgModule,args:[{declarations:[Gh],exports:[r.IgxXInputGroupModule,Cu,Ou,ku,rc,wu,Gh],imports:[a.CommonModule,r.IgxXInputGroupModule,Cu,Ou,ku,rc,wu],entryComponents:[]}]}],ctorParameters:function(){return[]}});var qh=function(){function t(){n.TypeRegistrar.registerCons("MultiColumnComboBox",Ah),n.TypeRegistrar.registerCons("IgxMultiColumnComboBoxComponent",Gh),n.TypeRegistrar.register("MultiColumnComboBox",Ah.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,r.IgxXInputGroupDynamicModule,Cu,Ou,ku,rc,wu,Lh],exports:[r.IgxXInputGroupDynamicModule,Cu,Ou,ku,rc,wu,Lh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,r.IgxXInputGroupDynamicModule,Cu,Ou,ku,rc,wu,Lh],r.IgxXInputGroupDynamicModule,Cu,Ou,ku,rc,wu,Lh]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:qh,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[r.IgxXInputGroupDynamicModule,Cu,Ou,ku,rc,wu,Lh],imports:[a.CommonModule,r.IgxXInputGroupDynamicModule,Cu,Ou,ku,rc,wu,Lh],entryComponents:[Gh]}]}],ctorParameters:function(){return[]}});var Hh=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Hh,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}]});var Wh=function(){function t(){n.TypeRegistrar.registerCons("IgxFilterOperand",_o),n.TypeRegistrar.register("FilterOperand",_i.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Hh],exports:[Hh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Hh],Hh]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Wh,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Hh],exports:[Hh],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Uh=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new yt},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"page",{get:function(){return this.i.page},set:function(t){this.i.page=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"data",{get:function(){return this.i.data},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.data=t},enumerable:!1,configurable:!0}),t}(),Kh=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._pageChanged=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ti},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},Object.defineProperty(t.prototype,"pagerText",{get:function(){return this.i.a9},set:function(t){this.i.a9=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pageSize",{get:function(){return this.i.ao},set:function(t){this.i.ao=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pageCount",{get:function(){return this.i.an},set:function(t){this.i.an=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"currentPage",{get:function(){return this.i.ak},set:function(t){this.i.ak=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textStyle",{get:function(){return null==this.i.s?null:this.i.s.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.s=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"background",{get:function(){return n.brushToString(this.i.ca)},set:function(t){this.i.ca=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"border",{get:function(){return n.brushToString(this.i.border)},set:function(t){this.i.border=n.stringToBrush(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("DataGridPagerComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.nextPage=function(){this.i.bn()},t.prototype.previousPage=function(){this.i.by()},t.prototype.firstPage=function(){this.i.bk()},t.prototype.lastPage=function(){this.i.bm()},t.prototype.provideContainer=function(t){this.i.provideContainer(t)},t.prototype.exportVisualModel=function(){return this.i.as()},t.prototype.exportSerializedVisualModel=function(){return this.i.az()},Object.defineProperty(t.prototype,"pageChanged",{get:function(){var t=this;return null==this._pageChanged&&(this._pageChanged=new e.EventEmitter,this.i.pageChanged=n.delegateCombine(this.i.pageChanged,(function(e,n){t._runInZone((function(){var e=new Uh;e._provideImplementation(n),t.beforePageChanged&&t.beforePageChanged(t,e),t._pageChanged.emit({sender:t,args:e})}))}))),this._pageChanged},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-data-grid-pager",inputs:{pagerText:"pagerText",pageSize:"pageSize",pageCount:"pageCount",currentPage:"currentPage",textStyle:"textStyle",background:"background",border:"border"},outputs:{pageChanged:"pageChanged"},providers:[],ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Kh,decorators:[{type:e.Component,args:[{selector:"igx-data-grid-pager",template:"",providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{pagerText:[{type:e.Input}],pageSize:[{type:e.Input}],pageCount:[{type:e.Input}],currentPage:[{type:e.Input}],textStyle:[{type:e.Input}],background:[{type:e.Input}],border:[{type:e.Input}],pageChanged:[{type:e.Output}]}});var Xh=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Kh],imports:[a.CommonModule,r.IgxXButtonModule],exports:[r.IgxXButtonModule,Kh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,r.IgxXButtonModule],r.IgxXButtonModule]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Xh,decorators:[{type:e.NgModule,args:[{declarations:[Kh],exports:[r.IgxXButtonModule,Kh],imports:[a.CommonModule,r.IgxXButtonModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Zh=function(){function t(){n.TypeRegistrar.registerCons("IgxDataGridPagerComponent",Kh)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,r.IgxXButtonDynamicModule,Xh],exports:[r.IgxXButtonDynamicModule,Xh]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,r.IgxXButtonDynamicModule,Xh],r.IgxXButtonDynamicModule,Xh]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Zh,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[r.IgxXButtonDynamicModule,Xh],imports:[a.CommonModule,r.IgxXButtonDynamicModule,Xh],entryComponents:[Kh]}]}],ctorParameters:function(){return[]}});var Yh=new n.Type(null,"IDataGridComponent"),Qh=new n.Type(null,"IToolbarVisualModelExport"),Jh=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.serialize=function(){return"{}"},e.$t=n.markType(e,"ToolbarVisualModelExport",n.Base.$,[Qh]),e}(n.Base),tp=function(t){function e(){var e=t.call(this)||this;return e.k=null,e.f=null,e.d=null,e.e=null,e.h=null,e.i=null,e.j=null,e.g=null,e.a=null,e.c=null,e.b=new n.List$1(n.Delegate_$type,0),e}return i.__extends(e,t),e.prototype.s=function(){},e.prototype.p=function(t){if(null!=t){this.c=t;Math.round(t.rootWrapper.width()),Math.round(t.rootWrapper.height());this.c.rootWrapper.setStyleProperty("position","relative"),this.c.rootWrapper.setStyleProperty("display","flex"),this.c.rootWrapper.setStyleProperty("justify-content","space-between"),this.c.rootWrapper.setStyleProperty("align-items","center"),this.c.rootWrapper.setStyleProperty("padding","4px 16px 4px 16px"),null!=this.a.be&&this.c.rootWrapper.setStyleProperty("background-color",this.a.be._fill),this.aa(),this.c.rootWrapper.setStyleProperty("border-style","solid"),this.c.rootWrapper.setStyleProperty("box-sizing","border-box"),this.c.rootWrapper.setStyleProperty("border-color","rgba(0, 0, 0, 0.2)"),this.c.rootWrapper.setStyleProperty("border-radius","3px 3px 0px 0px"),this.ad(),this.k=this.c.rootWrapper.getChildAt(0),this.y(),this.c.rootWrapper.getChildAt(1).setStyleProperty("justify-content","space-around"),this.v(),this.x()}else this.c=null},e.prototype.ad=function(){if(null!=this.c)switch(this.a.l){case 1:this.c.rootWrapper.setStyleProperty("height","52px");break;case 2:this.c.rootWrapper.setStyleProperty("height","46px");break;case 4:case 3:this.c.rootWrapper.setStyleProperty("height","44px");break;case 0:this.c.rootWrapper.setStyleProperty("height","46px")}},e.prototype.z=function(){null!=this.c&&null!=this.a.be&&this.c.rootWrapper.setStyleProperty("background-color",this.a.be._fill)},e.prototype.aa=function(){this.c.rootWrapper.setStyleProperty("border-width",this.a.bi.top+"px "+this.a.bi.right+"px "+this.a.bi.bottom+"px "+this.a.bi.left+"px")},e.prototype.y=function(){null!=this.k&&null!=this.a.ar&&(this.k.setText(this.a.ar),this.k.setStyleProperty("font","16px Verdana")),this.ah(),this.ai()},e.prototype.ah=function(){null!=this.k&&null!=this.a.bg&&this.k.setStyleProperty("color",this.a.bg._fill)},e.prototype.ai=function(){null!=this.k&&null!=this.a.n&&this.k.setStyleProperty("font",this.a.n.fontString)},e.prototype.v=function(){if(null!=this.c){var t=this.c.rootWrapper.getChildAt(1);this.f=t.getChildAt(0),this.f.setProperty("id","hideBtn"),this.e=this.c.rootWrapper.getChildAt(2),this.w(this.e),this.e.setStyleProperty("height","400px"),this.e.setStyleProperty("width","250px");var e=this.e.getChildAt(0);e.setStyleProperty("height","calc(100% - 16px)"),e.setStyleProperty("padding","4px 16px 4px 16px"),e.setStyleProperty("box-sizing","border-box"),1==this.a.q?null==this.a.g?(this.d=this.c.createElement("div"),this.a.a5(this.a,this.c,this.f,this.d,"Hiding"),this.f.listen("click",n.runOn(this,this.n))):this.f.show():this.f.hide()}},e.prototype.ae=function(){null!=this.d&&this.d.getChildAt(1).setText(this.a.s.toString())},e.prototype.ab=function(){if(null!=this.d)if(this.d.getChildCount()>2){this.d.getChildAt(2).setText(this.a.ad.toString())}else{var t=this.c.createElement("span");t.setStyleProperty("display","inline-block"),t.setStyleProperty("font-size","14px"),t.setStyleProperty("font-weight","600"),t.setText(this.a.ad),this.d.append(t)}},e.prototype.n=function(t){if(null!=this.e)if(null==this.g||this.g!=this.e){this.l();var e=this.f.getOffset();this.e.setOffset(e.left-this.e.width()+this.f.width(),e.top+this.f.height()),this.g=this.e,this.t()}else this.l();t.stopPropagation()},e.prototype.x=function(){if(null!=this.c){var t=this.c.rootWrapper.getChildAt(1);this.h=t.getChildAt(1),this.h.setProperty("id","pinBtn"),this.j=this.c.rootWrapper.getChildAt(3),this.w(this.j),this.j.setStyleProperty("height","400px"),this.j.setStyleProperty("width","250px");var e=this.j.getChildAt(0);e.setStyleProperty("height","calc(100% - 16px)"),e.setStyleProperty("padding","8px 16px 8px 16px"),e.setStyleProperty("box-sizing","border-box"),1==this.a.r?null==this.a.h?(this.i=this.c.createElement("div"),this.a.a5(this.a,this.c,this.h,this.i,"Pinning"),this.h.listen("click",n.runOn(this,this.u))):this.h.show():this.h.hide()}},e.prototype.af=function(){null!=this.i&&this.i.getChildAt(1).setText(this.a.t.toString())},e.prototype.ag=function(){if(null!=this.i)if(this.i.getChildCount()>2){this.i.getChildAt(2).setText(this.a.ai)}else{var t=this.c.createElement("span");t.setStyleProperty("display","inline-block"),t.setStyleProperty("font-size","14px"),t.setStyleProperty("font-weight","600"),t.setText(this.a.ai),this.i.append(t)}},e.prototype.u=function(t){if(null!=this.j)if(null==this.g||this.g!=this.j){this.l();var e=this.h.getOffset();this.j.setOffset(e.left-this.j.width()+this.h.width(),e.top+this.h.height()),this.g=this.j,this.t()}else this.l();t.stopPropagation()},e.prototype.w=function(t){var e=r.ElevationHelper.e(12,n.BrushUtil.j(66,0,0,0),n.BrushUtil.j(30,0,0,0),n.BrushUtil.j(20,0,0,0),1);t.setStyleProperty("boxShadow",e),t.setStyleProperty("background-color",this.a.bf._fill),t.setStyleProperty("position","absolute"),t.setStyleProperty("z-index","12000"),t.setStyleProperty("display","none")},e.prototype.ac=function(){null!=this.j&&this.j.setStyleProperty("background-color",this.a.bf._fill),null!=this.e&&this.e.setStyleProperty("background-color",this.a.bf._fill)},e.prototype.t=function(){null!=this.g&&(this.b.add(this.c.globalListen("document","keydown",n.runOn(this,this.q))),this.b.add(this.c.globalListen("document","click",n.runOn(this,this.r))),this.g.show(),this.g.listen("click",n.runOn(this,this.m)))},e.prototype.l=function(){if(null!=this.g){for(var t=0;t<this.b.count;t++)this.b._inner[t]();this.b.clear(),this.g.unlistenAll(),this.g.hide(),this.g=null}},e.prototype.m=function(t){t.stopPropagation()},e.prototype.q=function(t){8==n.BaseDOMEventProxy.c0(t)&&this.a.av()},e.prototype.r=function(t){this.a.av()},e.prototype.o=function(){},e.$t=n.markType(e,"DataGridToolbarView"),e}(n.Base),ep=function(t){function e(){var e=t.call(this)||this;e.c=null,e.a=null,e.b=null,e.s=0,e.t=0,e.g=null,e.h=null,e.propertyChanged=null,e.d=null,e.y=null,e.m=null,e.bd=n.BrushUtil.j(255,24,29,31),e.bb=n.BrushUtil.j(255,248,248,248),e.bc=n.BrushUtil.j(255,248,248,248),e.o=!1,e.u=null,e.v=null,e.p=!1,e.w=null,e.x=null,e.bh=new n.Thickness(1,1,1,1,0),e.k=2,e.i=1,e.s=0,e.t=0;var i=new tp;return i.a=e,e.c=i,e.c.s(),e}return i.__extends(e,t),e.prototype.notifySizeChanged=function(){this.c.o()},e.prototype.destroy=function(){if(this.provideContainer(null,null,null),null!=this.e){var t=this.e;t.columnHiddenChanged=n.delegateRemove(t.columnHiddenChanged,n.runOn(this,this.a9));var e=this.e;e.columnPinnedChanged=n.delegateRemove(e.columnPinnedChanged,n.runOn(this,this.ba))}},e.prototype.provideContainer=function(t,e,n){this.a=e,this.b=n,this.a6(),this.a7(),this.c.p(t)},Object.defineProperty(e.prototype,"e",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,e!=this.d&&this.a0("TargetGrid",e,this.d)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ar",{get:function(){return this.y},set:function(t){var e=this.y;this.y=t,e!=this.y&&this.a0("ToolbarTitle",e,this.y)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"n",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,e!=this.m&&this.a0("ToolbarTitleStyle",e,this.m)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bg",{get:function(){return this.bd},set:function(t){var e=this.bd;this.bd=t,e!=this.bd&&this.a0("ToolbarTitleColor",e,this.bd)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"be",{get:function(){return this.bb},set:function(t){var e=this.bb;this.bb=t,e!=this.bb&&this.a0("BackgroundColor",e,this.bb)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bf",{get:function(){return this.bc},set:function(t){var e=this.bc;this.bc=t,e!=this.bc&&this.a0("DialogBackgroundColor",e,this.bc)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"q",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,e!=this.o&&this.a0("ColumnChooser",e,this.o)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ad",{get:function(){return this.u},set:function(t){var e=this.u;this.u=t,e!=this.u&&this.a0("ColumnChooserText",e,this.u)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"af",{get:function(){return this.v},set:function(t){var e=this.v;this.v=t,e!=this.v&&this.a0("ColumnChooserTitle",e,this.v)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"r",{get:function(){return this.p},set:function(t){var e=this.p;this.p=t,e!=this.p&&this.a0("ColumnPinning",e,this.p)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ai",{get:function(){return this.w},set:function(t){var e=this.w;this.w=t,e!=this.w&&this.a0("ColumnPinningText",e,this.w)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ak",{get:function(){return this.x},set:function(t){var e=this.x;this.x=t,e!=this.x&&this.a0("ColumnPinningTitle",e,this.x)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bi",{get:function(){return this.bh},set:function(t){var e=this.bh;this.bh=t,e!=this.bh&&this.a0("BorderWidth",e,this.bh)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"l",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.a0("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.a0("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,this.i))},enumerable:!1,configurable:!0}),e.prototype.a0=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.a1(t,e,i)},e.prototype.a1=function(t,e,i){switch(t){case"TargetGrid":this.a6(),this.a7(),this.a8(n.typeCast(si.$,e)),this.c.ad();break;case"ToolbarTitle":this.c.y();break;case"ToolbarTitleStyle":this.c.ai();break;case"ToolbarTitleColor":this.c.ah();break;case"BackgroundColor":this.c.z();break;case"DialogBackgroundColor":this.c.ac(),null!=this.a&&(this.a.aq=this.bf),null!=this.b&&(this.b.an=this.bf);break;case"ColumnChooser":this.a6(),this.c.v();break;case"ColumnChooserText":this.c.ab();break;case"ColumnChooserTitle":null!=this.a&&(this.a.v=this.af);break;case"ColumnPinning":this.a7(),this.c.x();break;case"ColumnPinningText":this.c.ag();break;case"ColumnPinningTitle":null!=this.b&&(this.b.v=this.ak);break;case"Density":this.a3();break;case"BaseTheme":this.a4();break;case"BorderWidth":this.c.aa()}},e.prototype.az=function(t,e){switch(e.propertyName){case"IsToolbarColumnChooserVisible":this.q=this.e.isToolbarColumnChooserVisible;break;case"IsToolbarColumnPinningVisible":this.r=this.e.isToolbarColumnPinningVisible;break;case"ToolbarTitle":this.ar=this.e.toolbarTitle;break;case"ToolbarColumnChooserText":this.ad=this.e.toolbarColumnChooserText;break;case"ToolbarColumnChooserTitle":this.af=this.e.toolbarColumnChooserTitle;break;case"ToolbarColumnPinningText":this.ai=this.e.toolbarColumnPinningText;break;case"ToolbarColumnPinningTitle":this.ak=this.e.toolbarColumnPinningTitle}},e.prototype.a4=function(){null!=this.a&&(this.a.f=this.j),null!=this.b&&(this.b.f=this.j),null!=this.g&&(this.g.n=this.j),null!=this.h&&(this.h.n=this.j)},e.prototype.a3=function(){0==this.l&&null!=this.e&&(this.l=this.e.density),null!=this.g&&(this.g.r=this.l),null!=this.h&&(this.h.r=this.l),null!=this.a&&(this.a.h=this.l),null!=this.b&&(this.b.h=this.l),this.c.ad()},e.prototype.a5=function(t,n,i,o,a){var s=new r.XButton,l=n.getSubRenderer(i);s.provideContainer(l);l.getExternal(s,l.rootWrapper,l.getExternal(t,null,null));s.n=this.j,s.r=this.l;var u=null,c=null,h=null;switch(a){case"Hiding":this.g=s,u=e.ao,c=this.s.toString(),null!=this.ad&&(h=this.ad);break;case"Pinning":this.h=s,u=e.ap,c=this.t.toString(),null!=this.ai&&(h=this.ai)}s.e=2,i.setStyleProperty("display","inline-block"),i.setStyleProperty("margin-left","10px"),o.setStyleProperty("display","flex"),o.setStyleProperty("flexDirection","row"),o.setStyleProperty("flexWrap","no-wrap"),o.setStyleProperty("align-items","center");var p=n.createElement("div");p.setStyleProperty("display","inline-block"),p.setStyleProperty("margin-right","5px");var d=n.getSubRenderer(p),f=new r.XIcon;f.provideContainer(d);d.getExternal(f,d.rootWrapper,d.getExternal(t,null,null));f.svgPath=u,o.append(p);var m=n.createElement("span");if(m.setStyleProperty("display","inline-block"),m.setStyleProperty("font-size","12px"),m.setStyleProperty("font-weight","600"),m.setStyleProperty("margin-right","5px"),m.setText(c),o.append(m),null!=h){var g=n.createElement("span");g.setStyleProperty("display","inline-block"),g.setStyleProperty("font-size","12px"),g.setStyleProperty("font-weight","600"),g.setText(h),o.append(g)}s.appendButtonContent(o)},e.prototype.av=function(){this.c.l()},e.prototype.a6=function(){this.q&&null!=this.a&&null!=this.e&&(null!=this.af&&(this.a.v=this.af),this.a.c=this.e,this.a.f=this.j,this.a.aq=this.bf,this.a.an(new n.Thickness(1,-16,3,-16,3)))},e.prototype.a7=function(){this.r&&null!=this.b&&null!=this.e&&(null!=this.ak&&(this.b.v=this.ak),this.b.c=this.e,this.b.f=this.j,this.b.an=this.bf,this.b.ak(new n.Thickness(1,-16,3,-16,3)))},e.prototype.a8=function(t){if(null!=t&&(t.columnHiddenChanged=n.delegateRemove(t.columnHiddenChanged,n.runOn(this,this.a9)),t.columnPinnedChanged=n.delegateRemove(t.columnPinnedChanged,n.runOn(this,this.ba)),t.propertyChanged=n.delegateRemove(t.propertyChanged,n.runOn(this,this.az))),null!=this.e){var e=this.e;e.columnHiddenChanged=n.delegateCombine(e.columnHiddenChanged,n.runOn(this,this.a9));var i=this.e;i.columnPinnedChanged=n.delegateCombine(i.columnPinnedChanged,n.runOn(this,this.ba));var r=this.e;r.propertyChanged=n.delegateCombine(r.propertyChanged,n.runOn(this,this.az)),this.ax(),null!=this.e.toolbar&&(this.ar=this.e.toolbarTitle,this.q=this.e.isToolbarColumnChooserVisible,this.ad=this.e.toolbarColumnChooserText,this.af=this.e.toolbarColumnChooserTitle,this.r=this.e.isToolbarColumnPinningVisible,this.ai=this.e.toolbarColumnPinningText,this.ak=this.e.toolbarColumnPinningTitle)}},e.prototype.ax=function(){if(null!=this.e){var t=this.e.actualColumns.count;this.s=0,this.t=0;for(var e=0;e<t;e++)1==this.e.actualColumns._inner[e].jo&&this.s++,1==this.e.actualColumns._inner[e].il&&this.t++}this.c.ae(),this.c.af()},e.prototype.a9=function(t,e){this.ax()},e.prototype.ba=function(t,e){this.ax()},e.prototype.exportVisualModel=function(){return this.f()},e.prototype.exportSerializedVisualModel=function(){return this.f().serialize()},e.prototype.f=function(){return new Jh},e.$t=n.markType(e,"DataGridToolbar",n.Base.$,[n.INotifyPropertyChanged_$type,Yh]),e.ao="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z",e.ap="M13.2,3.8l7.1,7.1l-2.8-0.1l-3.4,3.4l0.1,4.2l-3.5-3.5l-5.4,5.4l-1.4,0l0-1.4l5.4-5.4L5.7,9.8l4.2,0.1l3.4-3.4L13.2,3.8z",e}(n.Base),np=function(){function t(t,e,i,r,o){this.renderer=t,this._elRef=e,this.ngZone=i,this.injector=r,this.componentFactoryResolver=o,this._dataSource=null,this._wrapper=null,this._root=null,this._implementation=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation();var a=this.i;this._toolbar=a}return Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this._toolbar.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this._toolbar.notifySizeChanged()},enumerable:!1,configurable:!0}),t.prototype.updateStyle=function(){this._styling(this._root,this)},t.prototype.ngOnDestroy=function(){this._toolbar.destroy(),this._wrapper.destroy()},t.prototype.ngAfterViewInit=function(){var t=this;if(this.renderer&&null!=this._toolbarContainer){this.container=this._toolbarContainer.nativeElement,this._root=this.container;var e=new n.AngularRenderer(this.container,this.renderer,window.document,this.ngZone,!0,null);this._wrapper=e,this._toolbar.provideContainer(e,this._columnChooser.i,this._columnPinning.i),this._toolbar.notifySizeChanged(),e.addSizeWatcher((function(){t._toolbar.notifySizeChanged()}))}this._styling(this._root,this),this.i.notifySizeChanged(),this.updateStyle()},t.prototype.createImplementation=function(){return new ep},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"targetGrid",{get:function(){var t=this.i.e;return null==t?null:t.externalObject},set:function(t){null!=t&&this._stylingContainer&&t._styling&&t._styling(this._stylingContainer,this,this),this.i.e=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarTitle",{get:function(){return this.i.ar},set:function(t){this.i.ar=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarTitleStyle",{get:function(){return null==this.i.n?null:this.i.n.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.n=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"toolbarTitleColor",{get:function(){return n.brushToString(this.i.bg)},set:function(t){this.i.bg=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.be)},set:function(t){this.i.be=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dialogBackgroundColor",{get:function(){return n.brushToString(this.i.bf)},set:function(t){this.i.bf=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnChooser",{get:function(){return this.i.q},set:function(t){this.i.q=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnChooserText",{get:function(){return this.i.ad},set:function(t){this.i.ad=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnChooserTitle",{get:function(){return this.i.af},set:function(t){this.i.af=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnPinning",{get:function(){return this.i.r},set:function(t){this.i.r=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnPinningText",{get:function(){return this.i.ai},set:function(t){this.i.ai=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnPinningTitle",{get:function(){return this.i.ak},set:function(t){this.i.ak=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthBottom",{get:function(){return this.i.bi?this.i.bi.bottom:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.bottom=+t,this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthLeft",{get:function(){return this.i.bi?this.i.bi.left:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.left=+t,this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthRight",{get:function(){return this.i.bi?this.i.bi.right:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.right=+t,this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"borderWidthTop",{get:function(){return this.i.bi?this.i.bi.top:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.top=+t,this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),t.prototype.ensureBorderWidth=function(){this.i.bi||(this.i.bi=new n.Thickness(2))},Object.defineProperty(t.prototype,"density",{get:function(){return this.i.l},set:function(t){this.i.l=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.j},set:function(t){this.i.j=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):this.targetGrid&&this.targetGrid.name&&this.targetGrid.name==t?this.targetGrid:null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("DataGridToolbarComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.exportVisualModel=function(){return this.i.exportVisualModel()},t.prototype.exportSerializedVisualModel=function(){return this.i.exportSerializedVisualModel()},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-data-grid-toolbar",inputs:{height:"height",width:"width",targetGrid:"targetGrid",toolbarTitle:"toolbarTitle",toolbarTitleStyle:"toolbarTitleStyle",toolbarTitleColor:"toolbarTitleColor",backgroundColor:"backgroundColor",dialogBackgroundColor:"dialogBackgroundColor",columnChooser:"columnChooser",columnChooserText:"columnChooserText",columnChooserTitle:"columnChooserTitle",columnPinning:"columnPinning",columnPinningText:"columnPinningText",columnPinningTitle:"columnPinningTitle",borderWidthBottom:"borderWidthBottom",borderWidthLeft:"borderWidthLeft",borderWidthRight:"borderWidthRight",borderWidthTop:"borderWidthTop",density:"density",baseTheme:"baseTheme"},host:{classAttribute:"ig-data-grid-toolbar igx-data-grid-toolbar"},providers:[],viewQueries:[{propertyName:"_toolbarContainer",first:!0,predicate:["toolbarContainer"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_columnChooser",first:!0,predicate:["columnChooser"],descendants:!0,read:Fu,static:!0},{propertyName:"_columnPinning",first:!0,predicate:["columnPinning"],descendants:!0,read:Xu,static:!0}],ngImport:e,template:"<div #toolbarContainer>\n <span></span>\n <div #buttonsContainer>\n <div #hideBtnContainer></div>\n <div #pinBtnContainer></div>\n </div>\n <div #chooserDialog>\n <igx-column-chooser #columnChooser></igx-column-chooser>\n </div>\n <div #pinningDialog>\n <igx-column-pinning #columnPinning></igx-column-pinning>\n </div>\n </div>",isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],components:[{type:Fu,selector:"igx-column-chooser",inputs:["height","width","targetGrid","title","titleStyle","titleColor","filterPlaceholderText","baseTheme","density","backgroundColor"]},{type:Xu,selector:"igx-column-pinning",inputs:["height","width","targetGrid","title","titleStyle","titleColor","filterPlaceholderText","baseTheme","density","backgroundColor"]}],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:np,decorators:[{type:e.Component,args:[{selector:"igx-data-grid-toolbar",template:"<div #toolbarContainer>\n <span></span>\n <div #buttonsContainer>\n <div #hideBtnContainer></div>\n <div #pinBtnContainer></div>\n </div>\n <div #chooserDialog>\n <igx-column-chooser #columnChooser></igx-column-chooser>\n </div>\n <div #pinningDialog>\n <igx-column-pinning #columnPinning></igx-column-pinning>\n </div>\n </div>",changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],host:{class:"ig-data-grid-toolbar igx-data-grid-toolbar"},styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ComponentFactoryResolver}]},propDecorators:{_toolbarContainer:[{type:e.ViewChild,args:["toolbarContainer",{read:e.ElementRef,static:!0}]}],_columnChooser:[{type:e.ViewChild,args:["columnChooser",{read:Fu,static:!0}]}],_columnPinning:[{type:e.ViewChild,args:["columnPinning",{read:Xu,static:!0}]}],height:[{type:e.Input}],width:[{type:e.Input}],targetGrid:[{type:e.Input}],toolbarTitle:[{type:e.Input}],toolbarTitleStyle:[{type:e.Input}],toolbarTitleColor:[{type:e.Input}],backgroundColor:[{type:e.Input}],dialogBackgroundColor:[{type:e.Input}],columnChooser:[{type:e.Input}],columnChooserText:[{type:e.Input}],columnChooserTitle:[{type:e.Input}],columnPinning:[{type:e.Input}],columnPinningText:[{type:e.Input}],columnPinningTitle:[{type:e.Input}],borderWidthBottom:[{type:e.Input}],borderWidthLeft:[{type:e.Input}],borderWidthRight:[{type:e.Input}],borderWidthTop:[{type:e.Input}],density:[{type:e.Input}],baseTheme:[{type:e.Input}]}});var ip=function(){function t(){n.TypeRegistrar.registerCons("IgxDataGridToolbarComponent",np),n.TypeRegistrar.register("DataGridToolbar",ep.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[np],imports:[a.CommonModule,$u,Zu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule],exports:[$u,Zu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,np]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,$u,Zu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule],$u,Zu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ip,decorators:[{type:e.NgModule,args:[{declarations:[np],exports:[$u,Zu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,np],imports:[a.CommonModule,$u,Zu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var rp=function(){function t(){n.TypeRegistrar.registerCons("DataGridToolbar",ep),n.TypeRegistrar.registerCons("IgxDataGridToolbarComponent",np),n.TypeRegistrar.register("DataGridToolbar",ep.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,zu,Yu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,ip],exports:[zu,Yu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,ip]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,zu,Yu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,ip],zu,Yu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,ip]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:rp,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[zu,Yu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,ip],imports:[a.CommonModule,zu,Yu,r.IgxXButtonDynamicModule,r.IgxXIconDynamicModule,ip],entryComponents:[np]}]}],ctorParameters:function(){return[]}});var op=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,fc,Ph,dc,r.IgxXInputGroupDynamicModule,qh,Hh,qu,Xh,ip],exports:[fc,Ph,dc,r.IgxXInputGroupDynamicModule,qh,Hh,qu,Xh,ip]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,fc,Ph,dc,r.IgxXInputGroupDynamicModule,qh,Hh,qu,Xh,ip],fc,Ph,dc,r.IgxXInputGroupDynamicModule,qh,Hh,qu,Xh,ip]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:op,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[fc,Ph,dc,r.IgxXInputGroupDynamicModule,qh,Hh,qu,Xh,ip],imports:[a.CommonModule,fc,Ph,dc,r.IgxXInputGroupDynamicModule,qh,Hh,qu,Xh,ip],entryComponents:[]}]}]});var ap=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,mc,Oh,dc,r.IgxXInputGroupDynamicModule,qh,Wh,Hu,Zh,rp,op],exports:[mc,Oh,dc,r.IgxXInputGroupDynamicModule,qh,Wh,Hu,Zh,rp,op]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,mc,Oh,dc,r.IgxXInputGroupDynamicModule,qh,Wh,Hu,Zh,rp,op],mc,Oh,dc,r.IgxXInputGroupDynamicModule,qh,Wh,Hu,Zh,rp,op]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ap,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[mc,Oh,dc,r.IgxXInputGroupDynamicModule,qh,Wh,Hu,Zh,rp,op],imports:[a.CommonModule,mc,Oh,dc,r.IgxXInputGroupDynamicModule,qh,Wh,Hu,Zh,rp,op],entryComponents:[]}]}]});var sp=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._content=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"content",{get:function(){return this._content},set:function(t){this._content=t},enumerable:!1,configurable:!0}),e.$t=n.markType(e,"TemplateSectionHeaderCellUpdatingEventArgs",n.EventArgs.$),e}(n.EventArgs),lp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new sp},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"content",{get:function(){return this.i.content.element.getNativeElement()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellInfo",{get:function(){if(null==this.i.cellInfo)return null;if(!this.i.cellInfo.externalObject){var t=null;switch(this.i.cellInfo.$type.name){case"DateTimeCellModel":t=new Hr;break;case"ImageCellModel":t=new Wr;break;case"NumericCellModel":t=new Ur;break;case"RowSeparatorModel":t=new Kr;break;case"SectionHeaderCellModel":t=new Xr;break;case"TemplateCellModel":t=new Zr;break;case"TemplateHeaderCellModel":t=new Jr;break;case"TemplateSectionHeaderCellModel":t=new eo;break;case"TextCellModel":t=new no;break;case"TextHeaderCellModel":t=new io}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),t}(),up=function(){return function(){this.Apply="Apply",this.Cancel="Cancel",this.Clear_Column_Filter="Clear column filters",this.Column_Move="Move",this.Column_Move_Left="Left",this.Column_Move_Right="Right",this.Column_Options_Summaries="Summaries",this.Column_Options_Summary_Average="Average",this.Column_Options_Summary_Count="Count",this.Column_Options_Summary_Maximum="Maximum",this.Column_Options_Summary_Minimum="Minimum",this.Column_Options_Summary_Sum="Sum",this.Column_Pin="Pin",this.Column_Pin_Left="Left",this.Column_Pin_Right="Right",this.Column_Sort="Sort",this.Column_Sort_Ascending="Asc",this.Column_Sort_Descending="Desc",this.ComparisonOperator_Bottom="Bottom",this.ComparisonOperator_BottomPercentile="Bottom percentile",this.ComparisonOperator_Contains="Contains",this.ComparisonOperator_DoesNotContain="Does not contain",this.ComparisonOperator_DoesNotEndWith="Does not end with",this.ComparisonOperator_DoesNotStartWith="Does not start with",this.ComparisonOperator_Empty="Empty",this.ComparisonOperator_EndsWith="Ends with",this.ComparisonOperator_Equals="Equals",this.ComparisonOperator_False="False",this.ComparisonOperator_GreaterThan="Greater than",this.ComparisonOperator_GreaterThanOrEqualTo="Greater than or equal to",this.ComparisonOperator_LastMonth="Last Month",this.ComparisonOperator_LastQuater="Last Quarter",this.ComparisonOperator_LastWeek="Last Week",this.ComparisonOperator_LastYear="Last Year",this.ComparisonOperator_LessThan="Less than",this.ComparisonOperator_LessThanOrEqualTo="Less than or equal to",this.ComparisonOperator_NextMonth="Next Month",this.ComparisonOperator_NextQuater="Next Quarter",this.ComparisonOperator_NextWeek="Next Week",this.ComparisonOperator_NextYear="Next Year",this.ComparisonOperator_NotEmpty="Not empty",this.ComparisonOperator_NotEquals="Not equals",this.ComparisonOperator_StartsWith="Starts with",this.ComparisonOperator_ThisMonth="This Month",this.ComparisonOperator_ThisQuarter="This Quarter",this.ComparisonOperator_ThisWeek="This Week",this.ComparisonOperator_ThisYear="This Year",this.ComparisonOperator_Today="Today",this.ComparisonOperator_Tomorrow="Tomorrow",this.ComparisonOperator_Top="Top",this.ComparisonOperator_TopPercentile="Top percentile",this.ComparisonOperator_True="True",this.ComparisonOperator_Yesterday="Yesterday",this.Filter_Columns_List="Filter columns list ...",this.Pager_Text="{0} of {1}",this.Search="Search",this.Select_All="(Select All)"}}(),cp=function(){function t(){n.Localization.register("DataGrid-en",new up)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:cp,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule],exports:[],entryComponents:[]}]}],ctorParameters:function(){return[]}});var hp=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.i=null,e.e=0,e.d=0,e.f=null,e.a=new n.FastIterationDictionary$2(n.Number_$type,$n.$,0),e}return i.__extends(e,t),Object.defineProperty(e.prototype,"c",{get:function(){return this.e+2},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),e.prototype.j=function(t,e){this.b.d(t.l.a5)?this.b.item(t.l.a5)!=t&&this.b.item(t.l.a5,t):this.b.s(t.l.a5,t),e.setAttribute("id",this.g(t)),e.setAttribute("role",this.f),t.l.a0?(e.setAttribute("aria-colindex","1"),e.setAttribute("aria-colspan",this.d.toString())):e.setAttribute("aria-colindex",(t.l.a5+1).toString()),1==t.cq?e.setAttribute("aria-selected","true"):e.setAttribute("aria-selected","false"),t.l.g&&(1==t.n?e.setAttribute("aria-sort","ascending"):2==t.n?e.setAttribute("aria-sort","descending"):e.setAttribute("aria-sort","none")),t.a2&&e.setAttribute("aria-expanded",t.ba?"true":"false")},e.prototype.h=function(){for(var t="",e=0;e<this.d;e++){if(this.b.d(e))t.length>0&&(t+=" "),t+=this.g(this.b.item(e))}if(""==t)for(var n=0;n<this.b.o.count;n++){var i=this.b.o._inner[n],r=this.b.item(i);t+=this.g(r)}return t},e.prototype.k=function(){this.b.u()},e.prototype.g=function(t){return t.l.aj||t.l.an&&!t.l.h?t.l.a0?"cellid"+this.i+"r"+this.c+"span":"cellid"+this.i+"r"+this.c+"c"+t.l.a5:null},e.prototype.l=function(t,e){t.getNativeElement().removeAttribute(e)},e.$t=n.markType(e,"AccessibilityRow"),e}(n.Base),pp=function(t){function e(i,r,o){var a=t.call(this,i,r,o)||this;return a.a2=new n.List$1(n.DomWrapper_$type,0),a.a3=new n.Stack$1(n.DomWrapper_$type),a.a0=new n.FastIterationDictionary$2(n.Number_$type,hp.$,0),a.ay=null,a.a7=null,a.a7=e.a6.toString(),e.a6++,a}return i.__extends(e,t),e.prototype.refresh=function(e,n){if(t.prototype.refresh.call(this,e,n),null!=this.rootElement){var i=e.c5(),r=e.b9.count;e.c6>0&&i++,this.rootElement.setAttribute("role","grid"),this.rootElement.setAttribute("aria-rowcount",i.toString()),this.rootElement.setAttribute("aria-colcount",r.toString()),this.rootElement.setAttribute("aria-multiselectable","true")}},e.prototype.ah=function(t,e){if(this.a1(t))if(t.l.g)null==this.ay&&(this.ay=new hp,this.ay.i=this.a7,this.ay.e=-1,this.ay.d=this.g.b9.count,this.ay.f="columnheader"),this.ay.j(t,e);else{var n=t.l.g?-1:t.l.x,i=this.az(n);null==i&&((i=new hp).i=this.a7,i.e=n,i.d=this.g.b9.count,i.f="gridcell",this.a0.s(n,i)),i.j(t,e)}},e.prototype.aj=function(t,e){this.a1(t)&&(this.bb(e,"id"),this.bb(e,"role"),this.bb(e,"aria-colindex"),this.bb(e,"aria-selected"),t.l.g&&this.bb(e,"aria-sort"))},e.prototype.ai=function(t,e){this.a1(t)&&this.ah(t,e)},e.prototype.an=function(){this.a8(),null!=this.ay&&(this.ba(this.ay),this.ay.k());for(var t=this.a0.q,e=0;e<t.count;e++){var n=t._inner[e];this.ba(n),n.k()}this.ay=null,this.a0.u()},e.prototype.az=function(t){for(var e=this.a0.o,n=0;n<e.count;n++){var i=e._inner[n],r=this.a0.item(i);if(null!=r&&r.e==t)return r}return null},e.prototype.a4=function(){return this.a3.f>0?this.a3.e():null},e.prototype.a5=function(t){for(var e=0;e<this.a2.count;e++){if(parseInt(this.a2._inner[e].getAttribute("aria-rowindex"))==t.c)return this.a2._inner[e]}return null},e.prototype.ba=function(t){var e=this.a5(t);if(null==e){if(null!=(e=this.a4()))return e.setAttribute("aria-rowindex",t.c.toString()),e.setAttribute("aria-owns",t.h()),void this.a9(t,e);(e=this.s.createElement("div")).setAttribute("role","row"),e.setAttribute("aria-rowindex",t.c.toString()),e.setAttribute("aria-owns",t.h()),this.a9(t,e)}else e.setAttribute("aria-owns",t.h())},e.prototype.a8=function(){for(var t=0;t<this.a2.count;t++){var e=this.a2._inner[t],n=parseInt(e.getAttribute("aria-rowindex"))-2;-1==n||this.a0.d(n)||(e.remove(),this.a3.h(e),this.a2.removeAt(t),t--)}},e.prototype.a9=function(t,e){for(var n=-1,i=0;i<this.a2.count;i++){var r=parseInt(this.a2._inner[i].getAttribute("aria-rowindex"));if(t.c<r){n=i;break}}-1!=n?(this.element.getNativeElement().insertBefore(e.getNativeElement(),this.a2._inner[n].getNativeElement()),this.a2.insert(n,e)):(this.element.append(e),this.a2.add(e))},e.prototype.a1=function(t){return t.l.aj||t.l.an&&!t.l.h},e.prototype.bb=function(t,e){t.getNativeElement().removeAttribute(e)},e.$t=n.markType(e,"DataGridAccessibilityLayoutPanel",Zo.$),e.a6=0,e}(Zo),dp=new n.Type(null,"ComboEditorView_ComboExternal"),fp=new n.Type(null,"CheckboxListExternal"),mp=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=0,e.a=0,e}return i.__extends(e,t),e.$t=n.markType(e,"CheckboxListExternalIndexTypeChangedEventArgs"),e}(n.Base),gp=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"CheckboxListExternalKeysClearedEventArgs"),e}(n.Base),yp=new n.Type(null,"CheckboxListViewExternal"),bp=function(){function t(){this._zoneRunner=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new re},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"durationMilliseconds",{get:function(){return this.i.l},set:function(t){this.i.l=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"holdInitialMilliseconds",{get:function(){return this.i.m},set:function(t){this.i.m=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"perItemDelayMilliseconds",{get:function(){return this.i.n},set:function(t){this.i.n=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"subItemDurationMilliseconds",{get:function(){return this.i.o},set:function(t){this.i.o=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"desiredSubItemDurationMilliseconds",{get:function(){return this.i.k},set:function(t){this.i.k=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"shouldItemsFinishSimultaneously",{get:function(){return this.i.e},set:function(t){this.i.e=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"easingFunctionType",{get:function(){return this.i.c},set:function(t){this.i.c=n.ensureEnum(ie,t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t}(),vp=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Gn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isHidden",{get:function(){return this.i.mr},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editTarget",{get:function(){var t=this.i.mk;return null==t?null:t.externalObject},set:function(t){this.i.mk=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dataType",{get:function(){return this.i.mi},set:function(t){this.i.mi=n.ensureEnum(n.DataSourceSchemaPropertyType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"errorMessage",{get:function(){return this.i.nn},set:function(t){this.i.nn=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editValue",{get:function(){return this.i.na},set:function(t){this.i.na=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editorType",{get:function(){return this.i.mm},set:function(t){this.i.mm=n.ensureEnum(q,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editorDataSource",{get:function(){return this.i.m9},set:function(t){this.i.m9=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editorTextField",{get:function(){return this.i.ni},set:function(t){this.i.ni=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editorValueField",{get:function(){return this.i.mg},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.mg=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dateFormatString",{get:function(){return this.i.nf},set:function(t){this.i.nf=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"showTodayButton",{get:function(){return this.i.ms},set:function(t){this.i.ms=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"targetRow",{get:function(){return this.i.m7},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"targetColumn",{get:function(){return this.i.m6},enumerable:!1,configurable:!0}),e.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(this.editTarget&&this.editTarget.name&&this.editTarget.name==e?this.editTarget:null)},e}(qr),Cp=function(t){function e(){var e=t.call(this)||this;return e._filterOperands=null,e}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Ln},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dataType",{get:function(){return this.i.mk},set:function(t){this.i.mk=n.ensureEnum(n.DataSourceSchemaPropertyType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"filter",{get:function(){return this.i.mi},set:function(t){this.i.mi=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"filterExpression",{get:function(){return this.i.mm},set:function(t){this.i.mm=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"filterOperands",{get:function(){if(null===this._filterOperands){var t=new wo,e=this.i.mo;e||(e=new wi),this._filterOperands=t._fromInner(e),this.i.mo=e}return this._filterOperands},set:function(t){null!==this._filterOperands&&(this._filterOperands._setSyncTarget(null),this._filterOperands=null);var e=new wo;this._filterOperands=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(_i.$type),r=this.i.mo;r||(r=new wi),i._inner=r,i.clear(),this._filterOperands._setSyncTarget(i),this.i.mo=r},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"operatorType",{get:function(){return this.i.mg},set:function(t){this.i.mg=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"filterValue",{get:function(){return this.i.m2},set:function(t){this.i.m2=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectorTop",{get:function(){return this.i.mw},set:function(t){this.i.mw=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selectorLeft",{get:function(){return this.i.mv},set:function(t){this.i.mv=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editorTop",{get:function(){return this.i.mu},set:function(t){this.i.mu=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"editorLeft",{get:function(){return this.i.mt},set:function(t){this.i.mt=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"clearIconTop",{get:function(){return this.i.ms},set:function(t){this.i.ms=+t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"clearIconLeft",{get:function(){return this.i.mr},set:function(t){this.i.mr=+t},enumerable:!1,configurable:!0}),e.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(null!=this.filterOperands&&this.filterOperands.findByName&&this.filterOperands.findByName(e)?this.filterOperands.findByName(e):null)},e}(qr),xp=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new qn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),e}(qr),_p=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Hn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"resolvedSummaryLabel",{get:function(){return this.i.mn},set:function(t){this.i.mn=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"resolvedSummaryValue",{get:function(){return this.i.mp},set:function(t){this.i.mp=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"summaryLabelTextColor",{get:function(){return n.brushToString(this.i.mu)},set:function(t){this.i.mu=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"font",{get:function(){return null==this.i.mg?null:this.i.mg.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.mg=e},enumerable:!1,configurable:!0}),e}(qr),wp=function(t){function e(){return t.call(this)||this}return i.__extends(e,t),e.prototype.createImplementation=function(){return new Wn},Object.defineProperty(e.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),e}(qr),Sp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new et},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"groupName",{get:function(){return this.i.c},set:function(t){this.i.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupValue",{get:function(){return this.i.a},set:function(t){this.i.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formattedText",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),Pp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new nt},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"summaryName",{get:function(){return this.i.e},set:function(t){this.i.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryValue",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"summaryOperand",{get:function(){return this.i.a},set:function(t){this.i.a=n.ensureEnum(n.DataSourceSummaryOperand_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formattedText",{get:function(){return this.i.c},set:function(t){this.i.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"formattedValue",{get:function(){return this.i.d},set:function(t){this.i.d=t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),Op=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ka},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"oldValue",{get:function(){return this.i.oldValue},set:function(t){this.i.oldValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"newValue",{get:function(){return this.i.newValue},set:function(t){this.i.newValue=t},enumerable:!1,configurable:!0}),t}(),Ip=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Wa},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),jp=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"OperatorSelectorClosingEventArgs",n.EventArgs.$),e}(n.EventArgs),kp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new jp},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Tp=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._valueChanged=null,this._opening=null,this._opened=null,this._closing=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Za},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},Object.defineProperty(t.prototype,"value",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"customFilterID",{get:function(){return this.i.ae},set:function(t){this.i.ae=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"customFilterIndex",{get:function(){return this.i.x},set:function(t){this.i.x=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataType",{get:function(){return this.i.d},set:function(t){this.i.d=n.ensureEnum(n.DataSourceSchemaPropertyType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maxHeight",{get:function(){return this.i.z},set:function(t){this.i.z=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.eq)},set:function(t){this.i.eq=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"background",{get:function(){return n.brushToString(this.i.ep)},set:function(t){this.i.ep=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionTrue",{get:function(){return this.i.dd},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionFalse",{get:function(){return this.i.ck},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionEquals",{get:function(){return this.i.cj},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionNotEquals",{get:function(){return this.i.cz},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionLessThan",{get:function(){return this.i.cr},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionLessThanOrEqual",{get:function(){return this.i.cs},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionGreaterThan",{get:function(){return this.i.cl},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionGreaterThanOrEqual",{get:function(){return this.i.cm},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionTop",{get:function(){return this.i.db},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionBottom",{get:function(){return this.i.cb},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionTopPercentile",{get:function(){return this.i.dc},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionBottomPercentile",{get:function(){return this.i.cc},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionToday",{get:function(){return this.i.c9},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionTomorrow",{get:function(){return this.i.da},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionYesterday",{get:function(){return this.i.dg},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionThisWeek",{get:function(){return this.i.c7},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionNextWeek",{get:function(){return this.i.cw},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionLastWeek",{get:function(){return this.i.cp},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionThisMonth",{get:function(){return this.i.c5},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionNextMonth",{get:function(){return this.i.cu},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionLastMonth",{get:function(){return this.i.cn},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionThisQuarter",{get:function(){return this.i.c6},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionNextQuarter",{get:function(){return this.i.cv},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionLastQuarter",{get:function(){return this.i.co},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionThisYear",{get:function(){return this.i.c8},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionNextYear",{get:function(){return this.i.cx},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionLastYear",{get:function(){return this.i.cq},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionYearToDate",{get:function(){return this.i.df},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionQ1",{get:function(){return this.i.c0},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionQ2",{get:function(){return this.i.c1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionQ3",{get:function(){return this.i.c2},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionQ4",{get:function(){return this.i.c3},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionMonth",{get:function(){return this.i.ct},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionYear",{get:function(){return this.i.de},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionStartsWith",{get:function(){return this.i.c4},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionDoesNotStartWith",{get:function(){return this.i.cg},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionEndsWith",{get:function(){return this.i.ci},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionDoesNotEndWith",{get:function(){return this.i.cf},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionContains",{get:function(){return this.i.cd},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionDoesNotContain",{get:function(){return this.i.ce},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionEmpty",{get:function(){return this.i.ch},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operatorCaptionNotEmpty",{get:function(){return this.i.cy},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("DataGridComparisonOperatorSelectorComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.provideContainer=function(t){this.i.ej(t)},t.prototype.dispose=function(){this.i.ea()},t.prototype.getDropdownHeight=function(){return this.i.y()},t.prototype.toggle=function(){this.i.em()},t.prototype.close=function(){this.i.d8()},t.prototype.addCustomOperator=function(t,e,n,i){this.i.d1(t,e,n,i)},t.prototype.clearCustomOperators=function(){this.i.d7()},t.prototype.selectCustomFilter=function(t,e){this.i.ek(t,e)},Object.defineProperty(t.prototype,"valueChanged",{get:function(){var t=this;return null==this._valueChanged&&(this._valueChanged=new e.EventEmitter,this.i.valueChanged=n.delegateCombine(this.i.valueChanged,(function(e,n){t._runInZone((function(){var e=new Op;e._provideImplementation(n),t.beforeValueChanged&&t.beforeValueChanged(t,e),t._valueChanged.emit({sender:t,args:e})}))}))),this._valueChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"opening",{get:function(){var t=this;return null==this._opening&&(this._opening=new e.EventEmitter,this.i.opening=n.delegateCombine(this.i.opening,(function(e,n){t._runInZone((function(){var e=new Ip;e._provideImplementation(n),t.beforeOpening&&t.beforeOpening(t,e),t._opening.emit({sender:t,args:e})}))}))),this._opening},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"opened",{get:function(){var t=this;return null==this._opened&&(this._opened=new e.EventEmitter,this.i.opened=n.delegateCombine(this.i.opened,(function(e,n){t._runInZone((function(){var e=new Ip;e._provideImplementation(n),t.beforeOpened&&t.beforeOpened(t,e),t._opened.emit({sender:t,args:e})}))}))),this._opened},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"closing",{get:function(){var t=this;return null==this._closing&&(this._closing=new e.EventEmitter,this.i.closing=n.delegateCombine(this.i.closing,(function(e,n){t._runInZone((function(){var e=new kp;e._provideImplementation(n),t.beforeClosing&&t.beforeClosing(t,e),t._closing.emit({sender:t,args:e})}))}))),this._closing},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-data-grid-comparison-operator-selector",inputs:{value:"value",customFilterID:"customFilterID",customFilterIndex:"customFilterIndex",dataType:"dataType",maxHeight:"maxHeight",textColor:"textColor",background:"background"},outputs:{valueChanged:"valueChanged",opening:"opening",opened:"opened",closing:"closing"},providers:[],ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Tp,decorators:[{type:e.Component,args:[{selector:"igx-data-grid-comparison-operator-selector",template:"",providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{value:[{type:e.Input}],customFilterID:[{type:e.Input}],customFilterIndex:[{type:e.Input}],dataType:[{type:e.Input}],maxHeight:[{type:e.Input}],textColor:[{type:e.Input}],background:[{type:e.Input}],valueChanged:[{type:e.Output}],opening:[{type:e.Output}],opened:[{type:e.Output}],closing:[{type:e.Output}]}});var Rp=n.markEnum("DateOperatorTypes","Today,18|Tomorrow,19|Yesterday,20|NextWeek,21|ThisWeek,22|LastWeek,23|NextMonth,24|ThisMonth,25|LastMonth,26|NextQuater,27|ThisQuater,28|LastQuater,29|NextYear,30|ThisYear,31|LastYear,32|YearToDate,33|Q1,34|Q2,35|Q3,36|Q4,37|Month,38|Year,39"),Dp=n.markEnum("StringOperatorTypes","Contains,12|NotContains,13|StartsWith,14|DoesNotStartWith,15|EndsWith,16|DoesNotEndWith,17"),Bp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new as},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=So._createFromInternal(t);e&&(e._implementation=t),t.externalObject=e}return t.externalObject},set:function(t){this.i.a=null==t?null:t.i},enumerable:!1,configurable:!0}),t}(),Mp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ss},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"filter",{get:function(){return this.i.a},set:function(t){this.i.a=t},enumerable:!1,configurable:!0}),t}(),Ep=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new hs},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Ap=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._dialogOpening=null,this._filterChanging=null,this._filterChanged=null,this._renderCompleted=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ms},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},Object.defineProperty(t.prototype,"isAnimationEnabled",{get:function(){return this.i.ab},set:function(t){this.i.ab=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pixelScalingRatio",{get:function(){return this.i.aj},set:function(t){this.i.aj=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPixelScalingRatio",{get:function(){return this.i.ai},set:function(t){this.i.ai=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"iconColor",{get:function(){return n.brushToString(this.i.bw)},set:function(t){this.i.bw=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"viewSize",{get:function(){return this.i.ak},set:function(t){this.i.ak=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isOpen",{get:function(){return this.i.ac},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"commandCompleted",{get:function(){return this.i.commandCompleted},set:function(t){this.i.commandCompleted=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"invalidateActions",{get:function(){return this.i.invalidateActions},set:function(t){this.i.invalidateActions=t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("DataGridFilterDialogComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.notifySizeChanged=function(t,e){this.i.be(t,e)},t.prototype.notifyCellSizeChanged=function(){this.i.bd()},t.prototype.showIcon=function(){this.i.br()},t.prototype.hideIcon=function(){this.i.bb()},t.prototype.getDesiredToolbarActions=function(){return this.i.getDesiredToolbarActions()},t.prototype.addCommandAvailabilityListener=function(t){this.i.addCommandAvailabilityListener(t)},t.prototype.removeCommandAvailabilityListener=function(t){this.i.removeCommandAvailabilityListener(t)},t.prototype.addCommandStateChangedListener=function(t){this.i.addCommandStateChangedListener(t)},t.prototype.removeCommandStateChangedListener=function(t){this.i.removeCommandStateChangedListener(t)},t.prototype.provideContextAccessor=function(t){this.i.provideContextAccessor(t)},t.prototype.dismissContextAccessor=function(t){this.i.dismissContextAccessor(t)},Object.defineProperty(t.prototype,"dialogOpening",{get:function(){var t=this;return null==this._dialogOpening&&(this._dialogOpening=new e.EventEmitter,this.i.dialogOpening=n.delegateCombine(this.i.dialogOpening,(function(e,n){t._runInZone((function(){var e=new Bp;e._provideImplementation(n),t.beforeDialogOpening&&t.beforeDialogOpening(t,e),t._dialogOpening.emit({sender:t,args:e})}))}))),this._dialogOpening},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterChanging",{get:function(){var t=this;return null==this._filterChanging&&(this._filterChanging=new e.EventEmitter,this.i.filterChanging=n.delegateCombine(this.i.filterChanging,(function(e,n){t._runInZone((function(){var e=new Mp;e._provideImplementation(n),t.beforeFilterChanging&&t.beforeFilterChanging(t,e),t._filterChanging.emit({sender:t,args:e})}))}))),this._filterChanging},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterChanged",{get:function(){var t=this;return null==this._filterChanged&&(this._filterChanged=new e.EventEmitter,this.i.filterChanged=n.delegateCombine(this.i.filterChanged,(function(e,n){t._runInZone((function(){var e=new Mp;e._provideImplementation(n),t.beforeFilterChanged&&t.beforeFilterChanged(t,e),t._filterChanged.emit({sender:t,args:e})}))}))),this._filterChanged},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"renderCompleted",{get:function(){var t=this;return null==this._renderCompleted&&(this._renderCompleted=new e.EventEmitter,this.i.renderCompleted=n.delegateCombine(this.i.renderCompleted,(function(e,n){var i=new Ep;i._provideImplementation(n),t.beforeRenderCompleted&&t.beforeRenderCompleted(t,i),t._renderCompleted.emit({sender:t,args:i})}))),this._renderCompleted},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-data-grid-filter-dialog",inputs:{isAnimationEnabled:"isAnimationEnabled",pixelScalingRatio:"pixelScalingRatio",actualPixelScalingRatio:"actualPixelScalingRatio",iconColor:"iconColor",viewSize:"viewSize",commandCompleted:"commandCompleted",invalidateActions:"invalidateActions"},outputs:{dialogOpening:"dialogOpening",filterChanging:"filterChanging",filterChanged:"filterChanged",renderCompleted:"renderCompleted"},providers:[],ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ap,decorators:[{type:e.Component,args:[{selector:"igx-data-grid-filter-dialog",template:"",providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{isAnimationEnabled:[{type:e.Input}],pixelScalingRatio:[{type:e.Input}],actualPixelScalingRatio:[{type:e.Input}],iconColor:[{type:e.Input}],viewSize:[{type:e.Input}],commandCompleted:[{type:e.Input}],invalidateActions:[{type:e.Input}],dialogOpening:[{type:e.Output}],filterChanging:[{type:e.Output}],filterChanged:[{type:e.Output}],renderCompleted:[{type:e.Output}]}});var Vp=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.$t=n.markType(e,"ColumnOptionsToolbarManagerOpeningEventArgs",n.EventArgs.$),e}(n.EventArgs),Np=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new us},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"startIndex",{get:function(){return this.i.c},set:function(t){this.i.c=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"endIndex",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isOrGrouping",{get:function(){return this.i.a},set:function(t){this.i.a=n.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),Fp=function(t){function e(e){var i=t.call(this)||this;if(Np.$type||(Np.$type=n.markType(Np,"IgxGridFilterDialogViewModelGrouping")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){Np.$type||(Np.$type=n.markType(Np,"IgxGridFilterDialogViewModelGrouping"));var t=new n.SyncableObservableCollection$2(Np.$type,us.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Np)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),$p=function(t){function e(e){var i=t.call(this)||this;if(Fp.$type||(Fp.$type=n.markType(Fp,"IgxGridFilterDialogViewModelGroupingLevel")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){Fp.$type||(Fp.$type=n.markType(Fp,"IgxGridFilterDialogViewModelGroupingLevel"));var t=new n.SyncableObservableCollection$2(Fp.$type,cs.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Fp)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),zp=function(){function t(){this._zoneRunner=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ls},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"operatorTypes",{get:function(){return this.i.f},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.f=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operators",{get:function(){return this.i.e},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"currentOperator",{get:function(){return this.i.l},set:function(t){this.i.l=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operandNumber",{get:function(){return this.i.d},set:function(t){if(t&&!Array.isArray(t)&&"string"==typeof t){t=t.split(/\s*(?:,|\s|$)\s*/gm)}this.i.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operand1",{get:function(){return this.i.i},set:function(t){this.i.i=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"operand2",{get:function(){return this.i.j},set:function(t){this.i.j=t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t}(),Gp=function(t){function e(e){var i=t.call(this)||this;if(zp.$type||(zp.$type=n.markType(zp,"IgxGridFilterDialogViewModelRow")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){zp.$type||(zp.$type=n.markType(zp,"IgxGridFilterDialogViewModelRow"));var t=new n.SyncableObservableCollection$2(zp.$type,ls.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new zp)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Lp=function(){function t(){this._groupingLevels=null,this._rows=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new gs},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"propertyType",{get:function(){return this.i.a},set:function(t){this.i.a=n.ensureEnum(n.DataSourceSchemaPropertyType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupingLevels",{get:function(){if(null===this._groupingLevels){var t=new $p,e=this.i.e;e||(e=new ps),this._groupingLevels=t._fromInner(e),this.i.e=e}return this._groupingLevels},set:function(t){null!==this._groupingLevels&&(this._groupingLevels._setSyncTarget(null),this._groupingLevels=null);var e=new $p;this._groupingLevels=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(cs.$type),r=this.i.e;r||(r=new ps),i._inner=r,i.clear(),this._groupingLevels._setSyncTarget(i),this.i.e=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isTopLevelOr",{get:function(){return this.i.k},set:function(t){this.i.k=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"maxGroupingLevels",{get:function(){return this.i.m},set:function(t){this.i.m=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rows",{get:function(){if(null===this._rows){var t=new Gp,e=this.i.f;e||(e=new ys),this._rows=t._fromInner(e),this.i.f=e}return this._rows},set:function(t){null!==this._rows&&(this._rows._setSyncTarget(null),this._rows=null);var e=new Gp;this._rows=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(ls.$type),r=this.i.f;r||(r=new ys),i._inner=r,i.clear(),this._rows._setSyncTarget(i),this.i.f=r},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null!=this.rows&&this.rows.findByName&&this.rows.findByName(t)?this.rows.findByName(t):null},t.prototype.addNewRow=function(){this.i.n()},t.prototype.canGroupRange=function(t,e){return this.i.h(t,e)},t.prototype.ungroupRange=function(t,e){this.i.aa(t,e)},t.prototype.targetingRange=function(t,e){return this.i.l(t,e)},t.prototype.toggleRange=function(t,e){this.i.z(t,e)},t.prototype.groupRange=function(t,e,n){this.i.o(t,e,n)},t}(),qp=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Da},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},Object.defineProperty(t.prototype,"isExpanded",{get:function(){return this.i.g},set:function(t){this.i.g=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"iconColor",{get:function(){return n.brushToString(this.i.ae)},set:function(t){this.i.ae=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isAnimationEnabled",{get:function(){return this.i.f},set:function(t){this.i.f=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pixelScalingRatio",{get:function(){return this.i.m},set:function(t){this.i.m=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPixelScalingRatio",{get:function(){return this.i.j},set:function(t){this.i.j=+t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("DataGridExpansionIndicatorComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.notifySizeChanged=function(t,e){this.i.y(t,e)},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-data-grid-expansion-indicator",inputs:{isExpanded:"isExpanded",iconColor:"iconColor",isAnimationEnabled:"isAnimationEnabled",pixelScalingRatio:"pixelScalingRatio",actualPixelScalingRatio:"actualPixelScalingRatio"},providers:[],ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:qp,decorators:[{type:e.Component,args:[{selector:"igx-data-grid-expansion-indicator",template:"",providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{isExpanded:[{type:e.Input}],iconColor:[{type:e.Input}],isAnimationEnabled:[{type:e.Input}],pixelScalingRatio:[{type:e.Input}],actualPixelScalingRatio:[{type:e.Input}]}});var Hp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ha},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},t}(),Wp=function(){function t(){this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._renderCompleted=null,this._zoneRunner=null,this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new da},t.prototype.ngOnInit=function(){},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igx"+t.$type.name+"Component";return n.TypeRegistrar.isRegistered(e)?n.TypeRegistrar.create(e):null},t.prototype.onImplementationCreated=function(){},Object.defineProperty(t.prototype,"sortDirection",{get:function(){return this.i.b},set:function(t){this.i.b=n.ensureEnum(B,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"iconColor",{get:function(){return n.brushToString(this.i.a0)},set:function(t){this.i.a0=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isAnimationEnabled",{get:function(){return this.i.l},set:function(t){this.i.l=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pixelScalingRatio",{get:function(){return this.i.w},set:function(t){this.i.w=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualPixelScalingRatio",{get:function(){return this.i.p},set:function(t){this.i.p=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortIndicatorStyle",{get:function(){return this.i.f},set:function(t){this.i.f=n.ensureEnum(st,t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("DataGridSortIndicatorComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.getDesiredScale=function(){return this.i.v()},t.prototype.notifySizeChanged=function(t,e){this.i.ar(t,e)},t.prototype.notifyCellSizeChanged=function(){this.i.aq()},Object.defineProperty(t.prototype,"renderCompleted",{get:function(){var t=this;return null==this._renderCompleted&&(this._renderCompleted=new e.EventEmitter,this.i.renderCompleted=n.delegateCombine(this.i.renderCompleted,(function(e,n){var i=new Hp;i._provideImplementation(n),t.beforeRenderCompleted&&t.beforeRenderCompleted(t,i),t._renderCompleted.emit({sender:t,args:i})}))),this._renderCompleted},enumerable:!1,configurable:!0}),t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-data-grid-sort-indicator",inputs:{sortDirection:"sortDirection",iconColor:"iconColor",isAnimationEnabled:"isAnimationEnabled",pixelScalingRatio:"pixelScalingRatio",actualPixelScalingRatio:"actualPixelScalingRatio",sortIndicatorStyle:"sortIndicatorStyle"},outputs:{renderCompleted:"renderCompleted"},providers:[],ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Wp,decorators:[{type:e.Component,args:[{selector:"igx-data-grid-sort-indicator",template:"",providers:[],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{sortDirection:[{type:e.Input}],iconColor:[{type:e.Input}],isAnimationEnabled:[{type:e.Input}],pixelScalingRatio:[{type:e.Input}],actualPixelScalingRatio:[{type:e.Input}],sortIndicatorStyle:[{type:e.Input}],renderCompleted:[{type:e.Output}]}});var Up=function(t){return t[t.Unspecified=0]="Unspecified",t[t.Normal=1]="Normal",t[t.Edit=2]="Edit",t[t.EditRow=3]="EditRow",t[t.MergedCell=4]="MergedCell",t[t.FilterCell=5]="FilterCell",t[t.MovingSeparator=6]="MovingSeparator",t[t.ResizeSeparator=7]="ResizeSeparator",t}({}),Kp=n.markEnum("GridCellType","Unspecified,0|Normal,1|Edit,2|EditRow,3|MergedCell,4|FilterCell,5|MovingSeparator,6|ResizeSeparator,7"),Xp=n.markEnum("DragType","RangeSelect,0|HeaderResize,1|ColumnMove,2|RowSelect,3|None,4"),Zp=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(n.prototype,"isCompound",{get:function(){return this.i.s},enumerable:!1,configurable:!0}),n.prototype.getSubStyles=function(){var t=this.i.aq(),e=null;if(t&&t.externalObject)e=t.externalObject;else if(t){var n=new co;n._implementation=t,t.externalObject=n,e=n}return e},n.prototype.actualNeedsFieldMaximum=function(){return this.i.p()},n.prototype.actualNeedsFieldMinimum=function(){return this.i.q()},n.prototype.actualNeedsFieldSum=function(){return this.i.r()},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"ng-component",usesInheritance:!0,ngImport:e,template:"",isInline:!0}),n}(uo);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Zp,decorators:[{type:e.Component,args:[{template:""}]}],ctorParameters:function(){return[]}});var Yp=function(t){return t[t.ThreeArrows=0]="ThreeArrows",t[t.CheckOrDashOrX=1]="CheckOrDashOrX",t[t.ThreeBoxes=2]="ThreeBoxes",t[t.ThreeFaces=3]="ThreeFaces",t}({}),Qp=n.markEnum("TextIconSetBuiltInTypes","ThreeArrows,0|CheckOrDashOrX,1|ThreeBoxes,2|ThreeFaces,3"),Jp=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.au=0,e.at=null,e}return i.__extends(e,t),Object.defineProperty(e.prototype,"av",{get:function(){return this.au},set:function(t){var e=this.au;this.au=t,e!=t&&this.ao("IconType",n.enumGetBox(Qp,e),n.enumGetBox(Qp,t))},enumerable:!1,configurable:!0}),e.prototype.as=function(t){switch(t){case 3:return[this.aw("F09F9880"),this.aw("F09F9890"),this.aw("F09F989E")];case 2:return[this.aw("E296A0"),this.aw("E296A0"),this.aw("E296A0")];case 0:return[this.aw("E2AC86"),this.aw("E2AC85"),this.aw("E2AC87")];case 1:return[this.aw("E29C94EFB88F"),this.aw("E29E96"),this.aw("E29D8C")]}return[this.aw("E2AC86"),this.aw("E2AC85"),this.aw("E2AC87")]},e.prototype.ar=function(t){switch(t){case 3:case 2:case 1:case 0:return[n.BrushUtil.j(255,26,199,32),n.BrushUtil.j(255,252,171,20),n.BrushUtil.j(255,217,76,48)]}return[n.BrushUtil.j(255,26,199,32),n.BrushUtil.j(255,252,171,20),n.BrushUtil.j(255,217,76,48)]},e.prototype.aw=function(t){for(var e=new Array(n.intDivide(t.length,2)),i=0;i<e.length;i++){var r=n.Convert.toByte2(t.substr(2*i,2),16);e[i]=r}return new TextDecoder("utf-8").decode(new Uint8Array(e))},e.prototype.aq=function(){if(null==this.at){for(var t=new xi,e=this.as(this.av),n=this.ar(this.av),i=0;i<e.length;i++){var r="env('columnValuePercentage') le "+(e.length-i)/e.length+" and env('columnValuePercentage') gt "+(e.length-i-1)/e.length,o=new Ci;o.ak=this.ak+":::"+i.toString(),o.ae=r,o.t=!0,o.u=!0;var a=new dn;a.aj=0,a.b9="TextValue",a.bc=e[i],o.properties.add(a),(a=new dn).aj=0,a.b9="TextColor",a.bc=n[i],o.properties.add(a),(a=new dn).aj=0,a.b9="FontInfo",a.bc=h.i,o.properties.add(a),t.add(o)}this.at=t}return this.at},e.$t=n.markType(e,"TextIconSetConditionalStyle",Gi.$),e}(Gi),td=function(t){function r(){return t.call(this)||this}return i.__extends(r,t),r.prototype.createImplementation=function(){return new Jp},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"iconType",{get:function(){return this.i.av},set:function(t){this.i.av=n.ensureEnum(Qp,t)},enumerable:!1,configurable:!0}),r.prototype.getSubStyles=function(){var t=this.i.aq(),e=null;if(t&&t.externalObject)e=t.externalObject;else if(t){var n=new co;n._implementation=t,t.externalObject=n,e=n}return e},r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-text-icon-set-conditional-style",inputs:{iconType:"iconType"},providers:[{provide:Zp,useExisting:e.forwardRef((function(){return r}))},{provide:uo,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(Zp);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:td,decorators:[{type:e.Component,args:[{selector:"igx-text-icon-set-conditional-style",template:"",providers:[{provide:Zp,useExisting:e.forwardRef((function(){return td}))},{provide:uo,useExisting:e.forwardRef((function(){return td}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{iconType:[{type:e.Input}]}});var ed=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[td],imports:[a.CommonModule],exports:[td]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ed,decorators:[{type:e.NgModule,args:[{declarations:[td],imports:[a.CommonModule],exports:[td],entryComponents:[]}]}]});var nd=function(){function t(){n.TypeRegistrar.registerCons("IgxTextIconSetConditionalStyleComponent",td),n.TypeRegistrar.register("TextIconSetConditionalStyle",Jp.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,ed],exports:[ed]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,ed],ed]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:nd,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,ed],exports:[ed],entryComponents:[td]}]}],ctorParameters:function(){return[]}});var id=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new qi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-editor-definition",providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:id,decorators:[{type:e.Component,args:[{selector:"igx-editor-definition",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return id}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var rd=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[id],imports:[a.CommonModule],exports:[id]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:rd,decorators:[{type:e.NgModule,args:[{declarations:[id],imports:[a.CommonModule],exports:[id],entryComponents:[]}]}]});var od=function(){function t(){n.TypeRegistrar.registerCons("IgxEditorDefinitionComponent",id),n.TypeRegistrar.register("EditorDefinition",qi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,rd],exports:[rd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,rd],rd]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:od,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,rd],exports:[rd],entryComponents:[id]}]}],ctorParameters:function(){return[]}});var ad=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new Hi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-edit-row-definition",providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ad,decorators:[{type:e.Component,args:[{selector:"igx-edit-row-definition",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return ad}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var sd=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[ad],imports:[a.CommonModule],exports:[ad]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:sd,decorators:[{type:e.NgModule,args:[{declarations:[ad],imports:[a.CommonModule],exports:[ad],entryComponents:[]}]}]});var ld=function(){function t(){n.TypeRegistrar.registerCons("IgxEditRowDefinitionComponent",ad),n.TypeRegistrar.register("EditRowDefinition",Hi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,sd],exports:[sd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,sd],sd]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ld,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,sd],exports:[sd],entryComponents:[ad]}]}],ctorParameters:function(){return[]}});var ud=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new Wi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(n.prototype,"paddingLeft",{get:function(){return this.i.g3},set:function(t){this.i.g3=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingTop",{get:function(){return this.i.g5},set:function(t){this.i.g5=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingRight",{get:function(){return this.i.g4},set:function(t){this.i.g4=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingBottom",{get:function(){return this.i.g2},set:function(t){this.i.g2=+t},enumerable:!1,configurable:!0}),n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-filter-row-definition",inputs:{paddingLeft:"paddingLeft",paddingTop:"paddingTop",paddingRight:"paddingRight",paddingBottom:"paddingBottom"},providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:ud,decorators:[{type:e.Component,args:[{selector:"igx-filter-row-definition",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return ud}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{paddingLeft:[{type:e.Input}],paddingTop:[{type:e.Input}],paddingRight:[{type:e.Input}],paddingBottom:[{type:e.Input}]}});var cd=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[ud],imports:[a.CommonModule],exports:[ud]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:cd,decorators:[{type:e.NgModule,args:[{declarations:[ud],imports:[a.CommonModule],exports:[ud],entryComponents:[]}]}]});var hd=function(){function t(){n.TypeRegistrar.registerCons("IgxFilterRowDefinitionComponent",ud),n.TypeRegistrar.register("FilterRowDefinition",Wi.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,cd],exports:[cd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,cd],cd]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:hd,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,cd],exports:[cd],entryComponents:[ud]}]}],ctorParameters:function(){return[]}});var pd=new n.Type(null,"IExternalTemplateSectionHeader"),dd=new n.Type(null,"IExternalTemplateColumn"),fd=new n.Type(null,"IExternalTemplateHeaderColumn"),md=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[pl],imports:[a.CommonModule],exports:[pl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:md,decorators:[{type:e.NgModule,args:[{declarations:[pl],imports:[a.CommonModule],exports:[pl],entryComponents:[]}]}]});var gd=function(){function t(){n.TypeRegistrar.registerCons("IgxPinnedAreaSeparatorComponent",pl),n.TypeRegistrar.register("PinnedAreaSeparator",Ji.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,md],exports:[md]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,md],md]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:gd,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,md],exports:[md],entryComponents:[pl]}]}],ctorParameters:function(){return[]}});var yd=function(t){function n(){return t.call(this)||this}return i.__extends(n,t),n.prototype.createImplementation=function(){return new er},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},n.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:n,deps:[],target:e["ɵɵFactoryTarget"].Component}),n.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:n,selector:"igx-section-footer",providers:[{provide:ho,useExisting:e.forwardRef((function(){return n}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),n}(ho);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:yd,decorators:[{type:e.Component,args:[{selector:"igx-section-footer",template:"",providers:[{provide:ho,useExisting:e.forwardRef((function(){return yd}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]}});var bd=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[yd],imports:[a.CommonModule],exports:[yd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:bd,decorators:[{type:e.NgModule,args:[{declarations:[yd],imports:[a.CommonModule],exports:[yd],entryComponents:[]}]}]});var vd=function(){function t(){n.TypeRegistrar.registerCons("IgxSectionFooterComponent",yd),n.TypeRegistrar.register("SectionFooter",er.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,bd],exports:[bd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,bd],bd]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:vd,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,bd],exports:[bd],entryComponents:[yd]}]}],ctorParameters:function(){return[]}});var Cd=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[rl],imports:[a.CommonModule],exports:[rl]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Cd,decorators:[{type:e.NgModule,args:[{declarations:[rl],imports:[a.CommonModule],exports:[rl],entryComponents:[]}]}]});var xd=function(){function t(){n.TypeRegistrar.registerCons("IgxHeaderRowSeparatorComponent",rl),n.TypeRegistrar.register("HeaderRowSeparator",rr.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Cd],exports:[Cd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Cd],Cd]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:xd,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Cd],exports:[Cd],entryComponents:[rl]}]}],ctorParameters:function(){return[]}});var _d=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.cellUpdating=null,e}return i.__extends(e,t),e.prototype.d2=function(t,e,n){return"templateSectionHeader"},e.prototype.n=function(t){return new to},e.prototype.hu=function(t,e){var n;null!=this.cellUpdating&&this.cellUpdating(this,((n=new sp).cellInfo=t,n.content=e,n))},e.$t=n.markType(e,"TemplateSectionHeader",nr.$),e}(nr),wd=function(t){function r(){var e=t.call(this)||this;return e._cellUpdating=null,e}return i.__extends(r,t),r.prototype.createImplementation=function(){return new _d},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.ngAfterContentInit=function(){this.__calledUpdateAdapters=!1,t.prototype.ngAfterContentInit&&t.prototype.ngAfterContentInit.call(this);var e=this.__calledUpdateAdapters;this.__calledUpdateAdapters=!1,e||this._updateAdapters&&(this.__calledUpdateAdapters=!0,this._updateAdapters())},Object.defineProperty(r.prototype,"cellUpdating",{get:function(){var t=this;return null==this._cellUpdating&&(this._cellUpdating=new e.EventEmitter,this.i.cellUpdating=n.delegateCombine(this.i.cellUpdating,(function(e,n){var i=new lp;i._provideImplementation(n),t.beforeCellUpdating&&t.beforeCellUpdating(t,i),t._cellUpdating.emit({sender:t,args:i})}))),this._cellUpdating},enumerable:!1,configurable:!0}),r.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:r,deps:[],target:e["ɵɵFactoryTarget"].Component}),r.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:r,selector:"igx-template-section-header",outputs:{cellUpdating:"cellUpdating"},providers:[{provide:po,useExisting:e.forwardRef((function(){return r}))},{provide:ho,useExisting:e.forwardRef((function(){return r}))}],usesInheritance:!0,ngImport:e,template:"",isInline:!0,changeDetection:e.ChangeDetectionStrategy.OnPush}),r}(po);e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:wd,decorators:[{type:e.Component,args:[{selector:"igx-template-section-header",template:"",providers:[{provide:po,useExisting:e.forwardRef((function(){return wd}))},{provide:ho,useExisting:e.forwardRef((function(){return wd}))}],changeDetection:e.ChangeDetectionStrategy.OnPush}]}],ctorParameters:function(){return[]},propDecorators:{cellUpdating:[{type:e.Output}]}});var Sd=function(){function t(){}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[wd],imports:[a.CommonModule],exports:[wd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule]]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Sd,decorators:[{type:e.NgModule,args:[{declarations:[wd],imports:[a.CommonModule],exports:[wd],entryComponents:[]}]}]});var Pd=function(){function t(){n.TypeRegistrar.registerCons("IgxTemplateSectionHeaderComponent",wd),n.TypeRegistrar.register("TemplateSectionHeader",_d.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,Sd],exports:[Sd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,Sd],Sd]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Pd,decorators:[{type:e.NgModule,args:[{declarations:[],imports:[a.CommonModule,Sd],exports:[Sd],entryComponents:[wd]}]}],ctorParameters:function(){return[]}});var Od=n.markEnum("GridEffectMainIntent","Default,0|Position,1|Opacity,2|Virtualization,3|Dimensions,4|Selection,5|Hover,6|DataChange,7|ColumnPropertyChange,8|Activation,9"),Id=n.markEnum("GridEffectSubIntent","Default,0|Move,1|Show,2|Hide,3|Exchange,4|HeaderPropertyChange,5|HeaderSeparatorPropertyChange,6|MovingSeparatorPropertyChange,7"),jd=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ir(0)},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"targetIndex",{get:function(){return this.i.b},set:function(t){this.i.b=+t},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),kd=function(t){function e(e){var i=t.call(this)||this;if(jd.$type||(jd.$type=n.markType(jd,"IgxColumnExchanger")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){jd.$type||(jd.$type=n.markType(jd,"IgxColumnExchanger"));var t=new n.SyncableObservableCollection$2(jd.$type,Ir.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new jd)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Td=function(t){function e(e){var i=t.call(this)||this;if(Qs.$type||(Qs.$type=n.markType(Qs,"IgxColumnPropertySetter")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){Qs.$type||(Qs.$type=n.markType(Qs,"IgxColumnPropertySetter"));var t=new n.SyncableObservableCollection$2(Qs.$type,xn.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Qs)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Rd=function(t){function e(e){var i=t.call(this)||this;if(Js.$type||(Js.$type=n.markType(Js,"IgxResponsivePhase")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){Js.$type||(Js.$type=n.markType(Js,"IgxResponsivePhase"));var t=new n.SyncableObservableCollection$2(Js.$type,Tr.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Js)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Dd=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.get_ac=function(){return"TemplatSectionHeaderCell"},e.prototype.ad=function(e){t.prototype.ad.call(this,e)},e.$t=n.markType(e,"TemplateSectionHeaderCellModelExport",it.$),e}(it),Bd=function(t){function e(e){var i=t.call(this)||this;return i.b=new Date,i._requestAnimationFrame=null,null!=e&&(i.requestAnimationFrame=e.getRequestAnimationFrame()),i.b=n.dateNow(),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"requestAnimationFrame",{get:function(){return this._requestAnimationFrame},set:function(t){this._requestAnimationFrame=t},enumerable:!1,configurable:!0}),e.prototype.enqueueAction=function(t){window.setTimeout((function(){return t()}),0)},e.prototype.enqueueAnimationAction=function(t){this.requestAnimationFrame((function(){return t()}))},e.prototype.execute=function(t){window.setTimeout((function(){return t()}),0)},e.prototype.executeDelayed=function(t,e){window.setTimeout((function(){return t()}),e)},e.prototype.getCurrentRelativeTime=function(){var t=n.dateNow();return n.truncate(n.timeSpanTotalMilliseconds(+t-+this.b))},e.$t=n.markType(e,"BrowserExecutionContext",n.Base.$,[n.IExecutionContext_$type]),e}(n.Base),Md=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=2,e}return i.__extends(e,t),Object.defineProperty(e,"instance",{get:function(){return null==e.a&&(e.a=new e),e.a},enumerable:!1,configurable:!0}),e.register=function(){n.NativeUIComponent.as(e.instance)},Object.defineProperty(e.prototype,"flavor",{get:function(){return this.c},enumerable:!1,configurable:!0}),e.prototype.createComponent=function(t,e,n){e},e.prototype.createComponentSync=function(t,e,n){this.createComponent(t,e,n)},e.prototype.supportsComponent=function(t){return!1},e.$t=n.markType(e,"NativeUIComboFactory",n.Base.$,[n.INativeUIElementFactory_$type]),e.a=null,e}(n.Base),Ed=function(t){return t[t.None=0]="None",t[t.ValueToText=1]="ValueToText",t[t.TextToValue=2]="TextToValue",t}({}),Ad=n.markEnum("CloneDataSourceFilterOperation","None,0|ValueToText,1|TextToValue,2"),Vd=function(t){return t[t.Value=0]="Value",t[t.Text=1]="Text",t[t.Row=2]="Row",t}({}),Nd=n.markEnum("MultiColumnComboBoxSelectedItemChangeType","Value,0|Text,1|Row,2"),Fd=function(t){function e(e){var n=t.call(this)||this;return n.ae=null,n.add(new o.PropertyEditorPropertyDescription),n.ae=e,n}return i.__extends(e,t),e.$t=n.markType(e,"HorizontalPropertyEditorDataSource",o.PropertyEditorPropertyDescriptionCollection.$),e}(o.PropertyEditorPropertyDescriptionCollection),$d=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.Name=null,e.Value=null,e}return i.__extends(e,t),e.$t=n.markType(e,"DropDownDataListItem"),e}(n.Base),zd=function(t){function e(){var e,i=t.call(this)||this;return i.o=null,i.n=null,i.b=null,i.j=null,i.m=null,i.f=null,i.l=null,i.c=((e=new n.FontInfo).q="Verdana",e.f=13,e.t="Normal",e.v="Normal",e.r="Normal",e),i.af=new n.Size,i.d=null,i._gridExternal=null,i.a=null,i.g=!1,i.k=null,i}return i.__extends(e,t),e.prototype.z=function(){},e.prototype.x=function(t){var e=this;if(null!=t){this.j=t,this.m=this.j.createElement("canvas"),this.f=new n.RenderingContext(new n.CanvasViewRenderer,this.j.get2DCanvasContext(this.m)),this.l=this.j.createElement("div"),this.ad(),this.j.getPortal(this.j.rootWrapper,"DataGrid",(function(t){e._gridExternal=t.componentRef,e.a=e._gridExternal.i,e._gridExternal.height="100%",e.b.dk(e.a,null),e.ab()}),!1);Math.round(t.rootWrapper.width()),Math.round(t.rootWrapper.height());this.j.rootWrapper.setStyleProperty("position","relative")}else this.j=null},e.prototype.ad=function(){},e.prototype.ab=function(){this.j},e.prototype.w=function(){if(null!=this.j){var t=this.j.rootWrapper.width(),e=this.j.rootWrapper.height();this.af=new n.Size(1,t,e),null!=this.b.l&&this.b.d5()}},e.prototype.ae=function(){var t=this.j;if(null!=t){var e=t.rootWrapper;null!=e&&(n.NativeUI.q(e,this.b.ec),n.NativeUI.m(e,this.b.d8))}},e.prototype.e=function(){return this.c},e.prototype.y=function(){},e.prototype.aa=function(){},e.prototype.v=function(){var t=this.b.ed();t.height>0&&this.j.rootWrapper.setStyleProperty("min-height",t.height+"px")},e.prototype.h=function(){return this.af.width},e.prototype.i=function(t){return this.d=this.b.ae(),n.FontUtil.measureStringWidth(t,this.d,this.f)},e.prototype.t=function(t,e){var n=this,i=t.content,r=i.element.getChildCount()>0?i.element.getChildAt(0):null,o=!1;if(null==r)this.j.getPortal(i.element,"XInputGroup",(function(t){i.element.getChildCount()>0&&i.element.getChildAt(0);o=!0;var r=t.componentRef,a=r.i,s=a.view.s;i.__int=a,r.width="100%",r.height="100%",i.element.setStyleProperty("line-height","0"),n.j.getPortal(s,"XInput",(function(t){var n=t.componentRef.i;a.inputs.add(n),e(a,o)}),!1)}),!1);else{var a=i.__int;if(null==a||null==a)return;e(a,o)}},e.prototype.s=function(t,e){var n=t.content,i=n.element.getChildCount()>0?n.element.getChildAt(0):null,r=!1;if(null==i)this.j.getPortal(n.element,"MultiColumnComboBox",(function(t){n.element.getChildCount()>0&&n.element.getChildAt(0);r=!0;var i=t.componentRef,o=i.i;n.__int=o,i.width="100%",i.height="100%",n.element.setStyleProperty("line-height","0"),e(o,r)}),!1);else{var o=n.__int;if(null==o||null==o)return;e(o,r)}},e.prototype.r=function(t,e){var n=t.content,i=n.element.getChildCount()>0?n.element.getChildAt(0):null,r=!1;if(null==i){n.element.setStyleProperty("height","100%");var o=this.j.createElement("div");o.setStyleProperty("width","100%"),o.setStyleProperty("height","100%"),o.setStyleProperty("display","flex"),o.setStyleProperty("flex-direction","column"),o.setStyleProperty("justify-content","center"),n.element.append(o),this.j.getPortal(o,"XCheckbox",(function(t){r=!0;var i=t.componentRef,a=i.i;n.__int=a,i.width="100%",i.height="100%",o.setStyleProperty("line-height","0"),e(a,r)}),!1)}else{i.getChildAt(0);var a=n.__int;if(null==a||null==a)return;e(a,r)}},e.prototype.q=function(t,e){var n=t.content,i=n.element.getChildCount()>0?n.element.getChildAt(0):null,r=!1;if(null==i){n.element.setStyleProperty("height","100%");var o=this.j.createElement("div");o.setStyleProperty("width","100%"),o.setStyleProperty("height","100%"),o.setStyleProperty("display","flex"),o.setStyleProperty("flex-direction","column"),o.setStyleProperty("justify-content","center"),n.element.append(o),this.j.getPortal(o,"XButton",(function(t){r=!0;var i=t.componentRef,a=i.i;n.__int=a,i.width="100%",i.height="100%",o.setStyleProperty("line-height","0"),e(a,r)}),!1)}else{i.getChildAt(0);var a=n.__int;if(null==a||null==a)return;e(a,r)}},e.prototype.u=function(t,e){null==this.k&&(this.k=this.j.createElement("div")),e(this.k.getNativeElement())},e.prototype.ac=function(t,e){var n=null,i=t.__span?t.__span:null;if(null!=i)n=i;else{var r=n=this.j.createElement("span");t.__span=r,t.appendButtonContent(n)}n.setRawText(e)},e.$t=n.markType(e,"PropertyEditorView"),e}(n.Base),Gd=function(t){function e(){var i=t.call(this)||this;i.m=null,i.l=null,i.ab=null,i.d=null,i.ah=!1,i.c=null,i.n=null,i.o=null,i.ai=!1,i.af=null,i.propertyChanged=null,i.an=!1,i.t=null,i.u=new o.PropertyEditorPropertyDescriptionCollection,i.bx=null,i.p=3,i.bn=-1,i.ac=null,i.x=1,i.z=2,i.bv=null,i.am=!0,i.au=new n.Dictionary$2(Ii.$,n.Number_$type,0),i.h=null,i.i=null,i.f=null,i.bt=null,i.bw=null,i.aj=!1,i.al=!1,i.ak=!1,i.d6=e.d9,i.d7=e.ea,i.br=0,i.bo=-1,i.r=null,i.d=new n.FilterFactory;var r=new zd;r.b=i;var a=i.properties;return a.collectionChanged=n.delegateCombine(a.collectionChanged,n.runOn(i,i.dz)),i.m=r,i.m.z(),i}return i.__extends(e,t),Object.defineProperty(e.prototype,"e",{get:function(){return null==this.l?null:this.l.actualDataSource},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ag",{get:function(){return null==this.af&&(this.af=new n.SRProvider(this.m.j),this.af.cb("DataGrid")),this.af},enumerable:!1,configurable:!0}),e.prototype.dz=function(t,e){var r,o,a,s;if(null!=e.oldItems)try{for(var l=i.__values(n.fromEn(e.oldItems)),u=l.next();!u.done;u=l.next()){var c=u.value;if(null!==n.typeCast(n.INotifyPropertyChanged_$type,c)){var h=c;h.propertyChanged=n.delegateRemove(h.propertyChanged,n.runOn(this,this.dn))}}}catch(t){r={error:t}}finally{try{u&&!u.done&&(o=l.return)&&o.call(l)}finally{if(r)throw r.error}}if(null!=e.newItems)try{for(var p=i.__values(n.fromEn(e.newItems)),d=p.next();!d.done;d=p.next()){var f=d.value;if(null!==n.typeCast(n.INotifyPropertyChanged_$type,f)){var m=f;m.propertyChanged=n.delegateCombine(m.propertyChanged,n.runOn(this,this.dn))}}}catch(t){a={error:t}}finally{try{d&&!d.done&&(s=p.return)&&s.call(p)}finally{if(a)throw a.error}}this.ar(),this.properties.count>0&&this.actualProperties!=this.properties&&(this.actualProperties=this.properties),null!=this.l&&this.l.notifyClearItems()},e.prototype.dn=function(t,e){this.an||(this.ar(),null!=this.l&&this.d5())},e.prototype.notifySizeChanged=function(){this.m.w()},e.prototype.dk=function(t,e){if(this.l=t,null!=this.l){this.l.headerHeight=0,this.l.rowSeparatorHeight=0,this.l.autoGenerateColumns=!1,this.l.activationMode=0,this.l.editMode=0;var i=this.l;i.cellClicked=n.delegateCombine(i.cellClicked,n.runOn(this,this.dj)),null!=this.actualProperties&&(this.l.itemsSource=this.actualProperties,this.cn()),null!=this.actualProperties&&this.d5()}},e.prototype.destroy=function(){if(null!=this.l){var t=this.l;t.cellClicked=n.delegateRemove(t.cellClicked,n.runOn(this,this.dj))}if(null!=this.n){var e=this.n;e.change=n.delegateRemove(e.change,n.runOn(this,this.dm))}this.provideContainer(null)},e.prototype.provideContainer=function(t){this.m.x(t)},e.prototype.dj=function(t,e){},e.prototype.dv=function(t){},Object.defineProperty(e.prototype,"actualProperties",{get:function(){return this.t},set:function(t){var e=this.t;this.t=t,e!=this.t&&this.dw("ActualProperties",e,this.t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"properties",{get:function(){return this.u},set:function(t){var e=this.u;this.u=t,e!=this.u&&this.dw("Properties",e,this.u)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b9",{get:function(){return this.bx},set:function(t){var e=this.bx;this.bx=t,e!=this.bx&&this.dw("FilterPlaceholderText",e,this.bx)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"q",{get:function(){return this.p},set:function(t){var e=this.p;this.p=t,e!=this.p&&this.dw("SearchInputType",n.enumGetBox(r.InputGroupDisplayType_$type,e),n.enumGetBox(r.InputGroupDisplayType_$type,this.p))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bs",{get:function(){return this.bn},set:function(t){var e=this.bn;this.bn=t,e!=this.bn&&this.dw("RowHeight",e,this.bn)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ad",{get:function(){return this.ac},set:function(t){var e=this.ac;this.ac=t,e!=this.ac&&this.dw("CellTextStyle",e,this.ac)},enumerable:!1,configurable:!0}),e.prototype.ae=function(){return null==this.ad?this.m.e():this.ad},Object.defineProperty(e.prototype,"y",{get:function(){return this.x},set:function(t){var e=this.x;this.x=t,e!=this.x&&this.dw("BaseTheme",n.enumGetBox(n.BaseControlTheme_$type,e),n.enumGetBox(n.BaseControlTheme_$type,this.x))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aa",{get:function(){return this.z},set:function(t){var e=this.z;this.z=t,e!=this.z&&this.dw("Density",n.enumGetBox(n.ControlDisplayDensity_$type,e),n.enumGetBox(n.ControlDisplayDensity_$type,this.z))},enumerable:!1,configurable:!0}),e.prototype.dw=function(t,e,i){null!=this.propertyChanged&&this.propertyChanged(this,new n.PropertyChangedEventArgs(t)),this.d0(t,e,i)},e.prototype.d0=function(t,e,i){switch(t){case"DescriptionType":null==this.b7&&null==this.properties&&(this.actualProperties=null),null!=this.b7&&(null==this.r&&(this.r=new o.PropertyEditorDataSource),this.r.n=this.b7),null==this.properties||0==this.properties.count?null!=this.r.h&&(this.actualProperties=this.r.h):null!=this.properties&&this.properties.count>0&&this.ar();break;case"ComponentRenderer":null!=e&&e.removeTargetPropertyUpdatingListener(n.runOn(this,this.at)),e!=i&&(this.am=!0),null==this.g?this.j=this.k:this.j=this.g.context;break;case"Target":break;case"DescriptionContext":null==this.g&&(this.j=i);break;case"ActualContext":null==this.j&&null==this.properties&&(this.actualProperties=null),null!=this.j&&(null==this.r&&(this.r=new o.PropertyEditorDataSource),this.r.b=this.j),null==this.properties||0==this.properties.count?null!=this.r.h&&(this.actualProperties=this.r.h):null!=this.properties&&this.properties.count>0&&this.ar();break;case"Properties":this.actualProperties=this.properties;break;case"IsWrappingEnabled":this.d5();break;case"IsHorizontal":if(this.ao)null!=this.actualProperties&&null===n.typeCast(Fd.$,this.actualProperties)&&(this.actualProperties=new Fd(this.actualProperties));else if(null!==n.typeCast(Fd.$,this.actualProperties)){var r=this.actualProperties;this.actualProperties=r.ae}break;case"ActualProperties":if(this.ao)null!=this.actualProperties&&null===n.typeCast(Fd.$,this.actualProperties)&&(this.actualProperties=new Fd(this.actualProperties));else if(null!==n.typeCast(Fd.$,this.actualProperties)){var a=this.actualProperties;this.actualProperties=a.ae}if(null!=this.l){if(null!=i&&(this.l.groupDescriptions.n(),this.l.sortDescriptions.n(),this.l.filterExpressions.clear(),this.l.summaryDescriptions.n()),null!=this.l.actualDataSource){var s=this.l.actualDataSource;s.schemaChanged=n.delegateRemove(s.schemaChanged,n.runOn(this,this.dy))}var l=this.l.itemsSource!=this.actualProperties,u=this.actualProperties;if(u=this.actualProperties.toArray(),this.l.itemsSource=u,this.cn(),null!=this.l.actualDataSource){var c=this.l.actualDataSource;c.schemaChanged=n.delegateCombine(c.schemaChanged,n.runOn(this,this.dy))}l&&this.d5()}break;case"FilterPlaceholderText":null!=this.n&&(this.n.cg=this.b9);break;case"SearchInputType":null!=this.o&&(this.o.d=this.q);break;case"RowHeight":null!=this.l&&(this.l.rowHeight=this.bs);break;case"CellTextStyle":null!=this.l&&(this.l.cellTextStyle=this.ad);break;case"BackgroundColor":case"TextColor":var h=this.l;null!=h&&(h.cellTextColor=this.ec,h.cellBackground=this.d8),this.m.ae();break;case"BaseTheme":this.d4();break;case"Density":this.d3()}},e.prototype.ar=function(){var t,e,r=this.an;this.an=!0;var o=!1;try{for(var a=i.__values(n.fromEnum(this.properties)),s=a.next();!s.done;s=a.next()){var l=s.value,u=l.a3;if(null!=this.r){var c=this.r.e(u,!1);null!=c&&l.z(c)&&(o=!0)}}}catch(e){t={error:e}}finally{try{s&&!s.done&&(e=a.return)&&e.call(a)}finally{if(t)throw t.error}}return o?this.d5():null!=this.l&&this.l.notifyClearItems(),this.an=r,o},e.prototype.d3=function(){null!=this.l&&(this.l.density=this.aa),null!=this.o&&(this.o.t=this.aa),this.m.y()},e.prototype.d4=function(){null!=this.o&&(this.o.p=this.y),this.m.aa()},e.prototype.dy=function(t,e){this.ai=!0,this.cn(),this.ai=!1},e.prototype.d5=function(){if(null!=this.l)if(this.au.clear(),this.l.actualColumns.clear(),this.l.isGroupRowSticky=!1,this.l.rowHeight=-1==this.bs?38:this.bs,this.l.cellBackground=this.d8,this.l.cellSelectedBackground=this.d8,this.l.density=this.aa,this.l.borderWidth=new n.Thickness(0,0),null!=this.ad&&(this.l.cellTextStyle=this.ad),this.ao)this.cp();else{var t=new cr;t.kk=10,t.kl=5,t.lo="PropertyPath",t.dataBinding=n.delegateCombine(t.dataBinding,n.runOn(this,this.dp)),this.l.columns.add(t);var e=new lr;e.lo="ValueType",e.kk=5,e.kl=5,e.dataBinding=n.delegateCombine(e.dataBinding,n.runOn(this,this.cu)),e.cellStyleKeyRequested=n.delegateCombine(e.cellStyleKeyRequested,n.runOn(this,this.cs)),e.cellUpdating=n.delegateCombine(e.cellUpdating,n.runOn(this,this.ct)),this.l.columns.add(e)}},e.prototype.cp=function(){if(null!=this.actualProperties){for(var t=this.actualProperties.ae,e=t.count,i=new n.List$1(Ii.$,0),r=this.bp(t,e,i,2147483647),a=0;a<i.count;a++)this.l.columns.add(i._inner[a]);this.br=r;var s=this.actualProperties,l=s.count;s.clear();for(var u=0;u<this.br;u++)s.add(new o.PropertyEditorPropertyDescription);if(s.count!=l){var c=s.toArray();this.l.itemsSource=c,this.m.v()}}},e.prototype.ed=function(){if(this.ao&&null!=this.l&&null!=this.l.itemsSource){var t=this.l.actualRowHeight,e=this.l.itemsSource;return new n.Size(1,0,e.count*t)}return new n.Size(1,0,0)},e.prototype.bp=function(t,e,i,r){var o=0,a=0,s=this.m.h();s-=5,this.aq||(s=17976931348623157e292);for(var l=0,u=s,c=function(c){var p=t.item(c),d=h.be(p),f=h.ba(p);if(l+d+f>s&&a>0||a>=r){if(0!=o&&a<r&&r>2){var m=i._inner[a],g=i._inner[a+1];return m.width.f=d,g.width.f=f,h.d2(s,i),0==i.count?{value:0}:{value:h.bp(t,e,i,i.count)}}r=Math.max(Math.min(r,a),2),o++;var y=s-l;y<u&&(u=y),l=0,a=0}var b;h.cc(p);if(i.count<=a){var v=new cr;v.kk=10,v.kl=5,v.width=((b=new Ft).c=!1,b.f=d,b),v.dataBinding=n.delegateCombine(v.dataBinding,n.runOn(h,h.dp)),v.mf="PropertyName_"+c,v.lo="PropertyName",i.add(v),h.au.item(v,i.count-1),a++}else{var C=i._inner[a];if(d>C.width.f){var x=d-C.width.f;if(C.width=function(){var t=new Ft;return t.c=!1,t.f=d,t}(),x>u&&r>2)return h.d2(s,i),0==i.count?{value:0}:{value:h.bp(t,e,i,i.count)};(u-=x)<0&&(u=0),a++}else d=C.width.f,a++}if(i.count<=a){var _=new lr;_.mf="ValueType_"+c,_.lo="ValueType",_.kk=5,_.kl=5,_.dataBinding=n.delegateCombine(_.dataBinding,n.runOn(h,h.cu)),_.width=function(){var t=new Ft;return t.c=!1,t.f=f,t}(),_.cellStyleKeyRequested=n.delegateCombine(_.cellStyleKeyRequested,n.runOn(h,h.cs)),_.cellUpdating=n.delegateCombine(_.cellUpdating,n.runOn(h,h.ct)),i.add(_),h.au.item(_,i.count-1),a++}else{var w=i._inner[a];if(f>w.width.f){var S=f-w.width.f;if(w.width=function(){var t=new Ft;return t.c=!1,t.f=f,t}(),S>u&&r>2)return h.d2(s,i),0==i.count?{value:0}:{value:h.bp(t,e,i,i.count)};(u-=S)<0&&(u=0),a++}else f=w.width.f,a++}l+=d+f},h=this,p=0;p<e;p++){var d=c(p);if("object"==typeof d)return d.value}return o+1},e.prototype.d2=function(t,e){var r,o,a=0;try{for(var s=i.__values(n.fromEnum(e)),l=s.next();!l.done;l=s.next()){a+=l.value.width.f}}catch(t){r={error:t}}finally{try{l&&!l.done&&(o=s.return)&&o.call(s)}finally{if(r)throw r.error}}for(;a>t;){if(e.count<1)return;null!==n.typeCast(lr.$,e._inner[e.count-1])?(a-=e._inner[e.count-1].width.f,a-=e._inner[e.count-2].width.f,e.removeAt(e.count-1),e.removeAt(e.count-1)):(a-=e._inner[e.count-1].width.f,e.removeAt(e.count-1))}},e.prototype.cu=function(t,e){var i=t,r=this.s(i,e.cellInfo.fb,e.rowObject);e.resolvedValue=n.enumGetBox(o.PropertyEditorValueType_$type,null!=r?r.w:0)},e.prototype.dp=function(t,e){var n=t,i=this.s(n,e.cellInfo.fb,e.rowObject);e.resolvedValue=null!=i?null!=i.az?i.az:i.a3:null},e.prototype.ba=function(t){switch(t.w){case 10:return this.aw(t);case 7:return this.ax(t);case 4:return this.az(t);case 6:return this.ay(t);case 23:return this.a8(t);case 9:return this.a2(t);case 5:return this.a4(t);case 14:return this.a3(t);case 18:return this.a5(t);case 3:return this.a6(t);case 15:return this.bb(t);case 17:return this.bc(t);case 16:return this.bf(t);case 1:return this.bg(t);case 11:return this.bh(t);case 13:return this.bi(t);case 12:return this.bj(t);case 2:return this.bk(t);case 8:return this.bl(t);case 19:return this.bm(t);case 0:return this.bd(t);case 20:return this.a0(t)}return 100},e.prototype.bm=function(t){return this.bd(t)},e.prototype.bd=function(t){return 175},e.prototype.a0=function(t){return 80},e.prototype.bl=function(t){return this.a0(t)},e.prototype.bk=function(t){return this.bd(t)},e.prototype.bj=function(t){return this.bd(t)},e.prototype.bi=function(t){return this.bd(t)},e.prototype.bh=function(t){return this.bd(t)},e.prototype.bg=function(t){return this.bd(t)},e.prototype.bf=function(t){return this.a0(t)},e.prototype.bc=function(t){return this.a0(t)},e.prototype.bb=function(t){return this.a9(t)},e.prototype.a9=function(t){return this.bd(t)},e.prototype.a6=function(t){return this.a7(t)},e.prototype.a7=function(t){return this.bd(t)},e.prototype.a5=function(t){return this.a0(t)},e.prototype.a3=function(t){return this.a0(t)},e.prototype.a4=function(t){return this.bd(t)},e.prototype.a2=function(t){return this.a0(t)},e.prototype.ay=function(t){return this.a0(t)},e.prototype.a8=function(t){return this.bd(t)},e.prototype.az=function(t){return this.bd(t)},e.prototype.ax=function(t){return this.a1(t)},e.prototype.a1=function(t){return 50},e.prototype.aw=function(t){return this.a0(t)},e.prototype.be=function(t){return this.m.i(this.cc(t))+17},e.prototype.cc=function(t){return null!=t.az?t.az:t.a3},e.prototype.ct=function(t,e){var n=t,i=this.s(n,e.cellInfo.fb,e.cellInfo.hn);switch(null!=i?i.w:0){case 10:this.cv(n,e);break;case 7:this.cw(n,e);break;case 4:this.cy(n,e);break;case 6:this.cx(n,e);break;case 23:this.c6(n,e);break;case 9:this.c0(n,e);break;case 5:this.c2(n,e);break;case 14:this.c1(n,e);break;case 18:this.c3(n,e);break;case 3:this.c4(n,e);break;case 15:this.c8(n,e);break;case 17:this.c9(n,e);break;case 16:this.db(n,e);break;case 1:this.dc(n,e);break;case 11:this.dd(n,e);break;case 13:this.de(n,e);break;case 12:this.df(n,e);break;case 2:this.dg(n,e);break;case 8:this.dh(n,e);break;case 19:this.di(n,e);break;case 20:this.cz(n,e)}},e.prototype.di=function(t,e){this.da(t,e)},e.prototype.dh=function(t,e){},e.prototype.dg=function(t,e){this.da(t,e)},e.prototype.df=function(t,e){this.da(t,e)},e.prototype.de=function(t,e){this.da(t,e)},e.prototype.dd=function(t,e){this.da(t,e)},e.prototype.dc=function(t,e){this.da(t,e)},e.prototype.da=function(t,e){var i=this;this.m.t(e,(function(r,o){2!=r.d&&(r.d=2),3!=r.t&&(r.t=3);var a=i.s(t,e.cellInfo.fb,e.cellInfo.hn),s=r.inputs._inner[0];s.bh=a,s.cq=null!=a.ar?a.ar.toString():"",o&&(s.changing=n.delegateCombine(s.changing,n.runOn(i,i.dl)))}))},e.prototype.cz=function(t,e){var i=this;this.m.q(e,(function(r,o){3!=r.r&&(r.r=3);var a=i.s(t,e.cellInfo.fb,e.cellInfo.hn);r.ed=a;var s=a.ar;"number"!=typeof a.ar&&"number"!=typeof a.ar||(s=a.ar.toString()),i.m.ac(r,s),o&&(r.clicked=n.delegateCombine(r.clicked,n.runOn(i,i.cm)))}))},e.prototype.c7=function(t,e){var i=this;this.m.s(e,(function(r,o){3!=r.density&&(r.density=3);var a,s=i.s(t,e.cellInfo.fb,e.cellInfo.hn);r.dd!=s?(o||(r.selectedValueChanged=n.delegateRemove(r.selectedValueChanged,n.runOn(i,i.cq))),r.dd=s,r.value=null,r.itemsSource=i.b(i.a(s)),s.ar!=r.value&&("number"==typeof s.ar||"number"==typeof s.ar?r.value=s.ar.toString():r.value=s.ar),o||(r.selectedValueChanged=n.delegateCombine(r.selectedValueChanged,n.runOn(i,i.cq)))):s.ar!=r.value&&("number"==typeof s.ar||"number"==typeof s.ar?r.value=s.ar.toString():r.value=s.ar),o&&(r.selectedValueChanged=n.delegateCombine(r.selectedValueChanged,n.runOn(i,i.cq)),r.hw=n.BrushUtil.j(255,255,255,255),r.g=["Name"],r.columnHeadersVisible=!1,r.defaultColumnWidth=((a=new Ft).c=!1,a.f=i.ba(s),a),r.fv="Name")}))},e.prototype.b=function(t){var e=new n.List$1($d.$,0);if(null==t)return[];for(var i=function(n){var i;e.add(((i=new $d).Name=t[n],i.Value=t[n],i))},r=0;r<t.length;r++)i(r);return e.toArray()},e.prototype.a=function(t){return t.c},e.prototype.cq=function(t,e){var n=t,i=n.dd;this.an=!0,i.ar=n.value,i.a5(),this.an=!1,this.dx(i)},e.prototype.dl=function(t,e){var i=t,r=i.bh;if(this.an=!0,1==r.w){var o=0;o=n.tryParseNumber(i.cq,o).p1,r.ar=o}else if(23==r.w){if(null!=i.cq){for(var a=i.cq.split(" "),s=new n.List$1(n.Number_$type,0),l=function(t){var e,r=a[t];if(!n.stringIsNullOrEmpty(r)){var o=0;e=n.tryParseNumber(i.cq,o),o=e.p1,e.ret&&s.add(o)}},u=0;u<a.length;u++)l(u);r.ar=s.toArray()}}else r.ar=i.cq;r.a5(),this.an=!1,this.dx(r)},e.prototype.cm=function(t,e){var n=t.ed;this.an=!0,n.a6(),this.an=!1,this.dx(n)},e.prototype.dx=function(t){var e=this;if(null!=this.bu&&null!=this.g){this.am&&(this.am=!1,this.g.addTargetPropertyUpdatingListener(n.runOn(this,this.at)));var i=null==this.bv;this.bv=this.cb(),i?this.m.u(this.bu,(function(t){return e.g.loadJsonOverlay(e.bv,(function(e){return t}),(function(t){return e.bu}))})):this.m.u(this.bu,(function(t){return e.g.loadJsonDelta(e.bv,(function(e){return t}),!1)}))}},e.prototype.at=function(t,e,i){var r=this.actualProperties;null!==n.typeCast(Fd.$,r)&&(r=r.ae);for(var o=0;o<r.count;o++){var a=r._inner[o].a3;this.as(a,t)&&r._inner[o].a9(t,e,i)}return!!this.ap},e.prototype.as=function(t,e){if(null==t&&null==e)return!0;if(null==t)return!1;if(null==e)return!1;var i=n.stringSplit(t,[".","["],0),r=n.stringSplit(e,[".","["],0);if(i.length!=r.length)return!1;for(var o=0;o<i.length;o++){var a=i[o],s=r[o];if(n.stringContains(a,"]")){if(!n.stringContains(s,"]"))return!1;if(s=n.stringReplace(s,"]",""),!this.av(a).contains(s))return!1}else if(!n.Base.equalsStatic(a,s))return!1}return!0},e.prototype.av=function(t){var e=new n.List$1(n.String_$type,0);if(n.stringContains(t,"]")){for(var i=(t=n.stringReplace(t,"]","")).split(","),r=0;r<i.length;r++){var o=i[r];if(n.stringContains(o,"as")){var a=o.indexOf("as"),s=o.substr(0,a).trim();e.add(s)}}return e}return e.add(t),e},e.prototype.cb=function(){if(null==this.actualProperties)return null;var t=this.actualProperties;null!==n.typeCast(Fd.$,t)&&(t=t.ae);var e=new o.PropertyEditorTreeTransformer(this.j,this.b7,!1);return this.c5(t,"",e,this.b7),e.j()},e.prototype.c5=function(t,e,n,i){for(var r=0;r<t.count;r++){var o=t._inner[r];if(20!=o.w)if(null!=o.m)for(var a=0;a<o.m.count;a++){var s=o.m._inner[a],l=e+o.a3+"["+a+"]";this.c5(s.a,l,n,s.b)}else if(null!=o.i){var u=e+o.a3;this.c5(o.i.a,u,n,o.i.b)}else n.k(e+o.a3,o.ar,i)}},e.prototype.db=function(t,e){},e.prototype.c9=function(t,e){},e.prototype.c8=function(t,e){this.c7(t,e)},e.prototype.c4=function(t,e){},e.prototype.c3=function(t,e){},e.prototype.c1=function(t,e){},e.prototype.c2=function(t,e){this.da(t,e)},e.prototype.c0=function(t,e){},e.prototype.cx=function(t,e){},e.prototype.c6=function(t,e){this.da(t,e)},e.prototype.cy=function(t,e){this.da(t,e)},e.prototype.cw=function(t,e){var i=this;this.m.r(e,(function(r,o){r.y||(r.y=!0);var a=i.s(t,e.cellInfo.fb,e.cellInfo.hn),s=a.ar;null==s&&(s=!1);var l=s;r.checked=l,r.a4=a,o&&(r.change=n.delegateCombine(r.change,n.runOn(i,i.co)))}))},e.prototype.s=function(t,e,i){if(this.ao){var r=this.actualProperties.ae,o=e*n.truncate(this.l.actualColumns.count/2),a=this.bq(t);return(a=n.truncate(Math.floor(a/2))+o)>r.count-1?null:r.item(a)}return i},e.prototype.bq=function(t){return this.au.item(t)},e.prototype.co=function(t,e){var n=t,i=n.a4;this.an=!0,i.ar=n.checked,i.a5(),this.an=!1,this.dx(i)},e.prototype.cv=function(t,e){},e.prototype.cs=function(t,e){var i=t,r=e;this.ao||(r=this.actualProperties._inner[e.rowNumber]);var a=this.s(i,e.rowNumber,r),s=null!=a?a.w:0;e.styleKey="editortype_"+n.enumGetBox(o.PropertyEditorValueType_$type,s)},e.prototype.dm=function(t,e){var n=e.value.toLowerCase();this.dv(n)},e.prototype.dt=function(t,e,n){null!=this.l&&this.l.notifySetItem(t,e,n)},e.prototype.dq=function(){null!=this.l&&this.l.notifyClearItems()},e.prototype.dr=function(t,e){null!=this.l&&this.l.notifyInsertItem(t,e)},e.prototype.ds=function(t,e){null!=this.l&&this.l.notifyRemoveItem(t,e)},Object.defineProperty(e.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,this.dw("ActualContext",e,this.h)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"k",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,this.dw("DescriptionContext",e,this.i)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"g",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,this.dw("ComponentRenderer",e,this.f)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"bu",{get:function(){return this.bt},set:function(t){var e=this.bt;this.bt=t,this.dw("Target",e,this.bt)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"b7",{get:function(){return this.bw},set:function(t){var e=this.bw;this.bw=t,this.dw("DescriptionType",e,this.bw)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ao",{get:function(){return this.aj},set:function(t){var e=this.aj;this.aj=t,this.dw("IsHorizontal",e,this.aj)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"aq",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,this.dw("IsWrappingEnabled",e,this.al)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ap",{get:function(){return this.ak},set:function(t){var e=this.ak;this.ak=t,this.dw("IsIndirectModeEnabled",e,this.ak)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"d8",{get:function(){return this.d6},set:function(t){var e=this.d6;this.d6=t,e!=this.d6&&this.dw("BackgroundColor",e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ec",{get:function(){return this.d7},set:function(t){var e=this.d7;this.d7=t,e!=this.d7&&this.dw("TextColor",e,t)},enumerable:!1,configurable:!0}),e.prototype.cn=function(){var t=this.l.actualDataSource;if(null!=t){if(null==t.actualSchema)return void(this.bo=-1);var e=t.actualCount;this.bo=e}else this.bo=-1},e.$t=n.markType(e,"PropertyEditor",n.Base.$,[n.INotifyPropertyChanged_$type]),e.eb=n.BrushUtil.j(255,24,29,31),e.cj="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z",e.d9=n.BrushUtil.j(255,248,248,248),e.ea=n.BrushUtil.j(255,24,29,31),e}(n.Base),Ld=function(){function t(t,e,i,r,o,a){var s,l=this;this.renderer=t,this._elRef=e,this.ngZone=i,this.injector=r,this.changeDetector=o,this.componentFactoryResolver=a,this._implementation=null,this._portalManager=null,this._componentFactoryResolver=null,this.actualProperties=[],this._properties=null,this._propertiesAdapter=null,this._angularRenderer=null,this._root=null,this._actualDataSource=null,this.__p=null,this._hasUserValues=new Set,this._stylingContainer=null,this._stylingParent=null,this._inStyling=!1,this._zoneRunner=null,this._componentFactoryResolver=a,this._implementation=this.createImplementation(),this._styling&&n.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)),(s=this._elRef)&&s.nativeElement&&(s=s.nativeElement),this._root=s,this._propertiesAdapter=new n.CollectionAdapter([],this.i.properties,this.actualProperties,(function(t){return t.i}),(function(t){l._root&&l._root.element.nativeElement.parentElement&&t._styling(l._root.element.nativeElement,l,l)}),(function(t){}))}return Object.defineProperty(t.prototype,"properties",{get:function(){var t=this;if(null===this._properties){var e=new o.IgxPropertyEditorPropertyDescriptionCollection;e._innerColl.addListener((function(e,i){switch(i.action){case n.NotifyCollectionChangedAction.Add:t._propertiesAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Remove:t._propertiesAdapter.removeManualItemAt(i.oldStartingIndex);break;case n.NotifyCollectionChangedAction.Replace:t._propertiesAdapter.removeManualItemAt(i.oldStartingIndex),t._propertiesAdapter.insertManualItem(i.newStartingIndex,i.newItems.item(0));break;case n.NotifyCollectionChangedAction.Reset:t._propertiesAdapter.clearManualItems()}})),this._properties=e}return this._properties},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.renderer.setStyle(this._elRef.element.nativeElement,"height",t),this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.renderer.setStyle(this._elRef.element.nativeElement,"width",t),this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),t.prototype.updateStyle=function(){this._styling(this._mainDiv,this)},t.prototype.ngOnDestroy=function(){this.i.destroy(),this._angularRenderer.destroy()},t.prototype.ngAfterViewInit=function(){var t=this;if(this._mainDiv=this._mainDivRef.nativeElement,this.renderer){this._portalManager=new n.PortalManager("popupContent",this._componentFactoryResolver),this._portalManager.detectChanges=function(){t.changeDetector.detectChanges()},this._angularRenderer=new n.AngularRenderer(this._mainDiv,this.renderer,window.document,this.ngZone,!0,{},this._portalManager);var e=this.i;e.provideContainer(this._angularRenderer),this._portalManager.dynamicContent=this._dynamicContent,this._portalManager.onChildContentChanged(this._childTemplateRef),this._angularRenderer.addSizeWatcher((function(){e.notifySizeChanged()})),e.notifySizeChanged(),this.updateStyle()}},t.prototype.ngAfterContentInit=function(){if(this._propertiesAdapter.updateQuery(this.contentProperties),this.actualProperties&&this.actualProperties.length>0)for(var t=this.actualProperties,e=0;e<t.length;e++)t[e]._styling(this._root.element.nativeElement,this,this)},t.prototype.createImplementation=function(){return new Gd},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualDataSource",{get:function(){if(null===this._actualDataSource){var t=new o.IgxPropertyEditorPropertyDescriptionCollection,e=this.i.actualProperties;e||(e=new o.PropertyEditorPropertyDescriptionCollection),this._actualDataSource=t._fromInner(e),this.i.actualProperties=e}return this._actualDataSource},set:function(t){null!==this._actualDataSource&&(this._actualDataSource._setSyncTarget(null),this._actualDataSource=null);var e=new o.IgxPropertyEditorPropertyDescriptionCollection;this._actualDataSource=e._fromOuter(t);var i=new n.SyncableObservableCollection$1(o.PropertyEditorPropertyDescription.$type),r=this.i.actualProperties;r||(r=new o.PropertyEditorPropertyDescriptionCollection),i._inner=r,i.clear(),this._actualDataSource._setSyncTarget(i),this.i.actualProperties=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterPlaceholderText",{get:function(){return this.i.b9},set:function(t){this.i.b9=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"searchInputType",{get:function(){return this.i.q},set:function(t){this.i.q=n.ensureEnum(r.InputGroupDisplayType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"rowHeight",{get:function(){return this.i.bs},set:function(t){this.i.bs=+t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"cellTextStyle",{get:function(){return null==this.i.ad?null:this.i.ad.fontString},set:function(t){var e=new n.FontInfo;e.fontString=t,this.i.ad=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"baseTheme",{get:function(){return this.i.y},set:function(t){this.i.y=n.ensureEnum(n.BaseControlTheme_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"density",{get:function(){return this.i.aa},set:function(t){this.i.aa=n.ensureEnum(n.ControlDisplayDensity_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualDescriptionContext",{get:function(){return this.i.j},set:function(t){this.i.j=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"descriptionContext",{get:function(){return this.i.k},set:function(t){this.i.k=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"componentRenderer",{get:function(){return this.i.g},set:function(t){this.i.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"target",{get:function(){return this.i.bu},set:function(t){this.i.bu=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"descriptionType",{get:function(){return this.i.b7},set:function(t){this.i.b7=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isHorizontal",{get:function(){return this.i.ao},set:function(t){this.i.ao=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isWrappingEnabled",{get:function(){return this.i.aq},set:function(t){this.i.aq=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isIndirectModeEnabled",{get:function(){return this.i.ap},set:function(t){this.i.ap=n.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"backgroundColor",{get:function(){return n.brushToString(this.i.d8)},set:function(t){this.i.d8=n.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"textColor",{get:function(){return n.brushToString(this.i.ec)},set:function(t){this.i.ec=n.stringToBrush(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null!=this.actualDataSource&&this.actualDataSource.findByName&&this.actualDataSource.findByName(t)?this.actualDataSource.findByName(t):null!=this.properties&&this.properties.findByName&&this.properties.findByName(t)?this.properties.findByName(t):null},Object.defineProperty(t.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),t.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},t.prototype._styling=function(t,e,i){if(!this._inStyling){this._inStyling=!0,this._stylingContainer=t,this._stylingParent=e;var r,o=this.i.$type.name;0===o.indexOf("Xam")&&(o=o.substring(3)),r=n.toSpinal("PropertyEditorComponent");var a=[],s=n.toSpinal(o);a.push(s+"-");for(var l=this.i.$type.baseType;l&&"Object"!=l.name&&"Base"!=l.name&&"Control"!=l.name&&"DependencyObject"!=l.Name&&"FrameworkElement"!=l.Name;){0===(o=l.name).indexOf("Xam")&&(o=o.substring(3));var u=n.toSpinal(o);a.push(u+"-"),l=l.baseType}if(i){var c=i.i.$type.name;0===c.indexOf("Xam")&&(c=c.substring(3));var h=n.toSpinal(c);a.push(h+"-"+r+"-"),a.push(h+"-"+s+"-")}n.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,a),this._otherStyling&&this._otherStyling(t,e,i),this._inStyling=!1}},t.prototype.getDesiredSize=function(){var t=this.i.ed();return n.fromSize(t)},t.prototype.notifySetItem=function(t,e,n){this.i.dt(t,e,n)},t.prototype.notifyClearItems=function(){this.i.dq()},t.prototype.notifyInsertItem=function(t,e){this.i.dr(t,e)},t.prototype.notifyRemoveItem=function(t,e){this.i.ds(t,e)},t.prototype._runInZone=function(t){null!=this._zoneRunner?this._zoneRunner(t):t()},t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[{token:e.Renderer2},{token:e.ViewContainerRef},{token:e.NgZone},{token:e.Injector},{token:e.ChangeDetectorRef},{token:e.ComponentFactoryResolver}],target:e["ɵɵFactoryTarget"].Component}),t.ɵcmp=e["ɵɵngDeclareComponent"]({minVersion:"12.0.0",version:"12.2.17",type:t,selector:"igx-property-editor",inputs:{height:"height",width:"width",actualDataSource:"actualDataSource",filterPlaceholderText:"filterPlaceholderText",searchInputType:"searchInputType",rowHeight:"rowHeight",cellTextStyle:"cellTextStyle",baseTheme:"baseTheme",density:"density",actualDescriptionContext:"actualDescriptionContext",descriptionContext:"descriptionContext",componentRenderer:"componentRenderer",target:"target",descriptionType:"descriptionType",isHorizontal:"isHorizontal",isWrappingEnabled:"isWrappingEnabled",isIndirectModeEnabled:"isIndirectModeEnabled",backgroundColor:"backgroundColor",textColor:"textColor"},providers:[],queries:[{propertyName:"contentProperties",predicate:o.IgxPropertyEditorPropertyDescriptionComponent}],viewQueries:[{propertyName:"_mainDivRef",first:!0,predicate:["mainDivRef"],descendants:!0,read:e.ElementRef,static:!0},{propertyName:"_dynamicContent",first:!0,predicate:["dynamicContent"],descendants:!0,read:e.ViewContainerRef,static:!0},{propertyName:"_childTemplateRef",first:!0,predicate:["childContent"],descendants:!0,read:e.TemplateRef}],ngImport:e,template:'\n <ng-template #childContent>\n <ng-content></ng-content>\n </ng-template>\n <ng-container #dynamicContent></ng-container>\n <div #mainDivRef class="ig-property-editor igx-property-editor"> \n\t </div> \n ',isInline:!0,styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"],changeDetection:e.ChangeDetectionStrategy.OnPush}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Ld,decorators:[{type:e.Component,args:[{selector:"igx-property-editor",template:'\n <ng-template #childContent>\n <ng-content></ng-content>\n </ng-template>\n <ng-container #dynamicContent></ng-container>\n <div #mainDivRef class="ig-property-editor igx-property-editor"> \n\t </div> \n ',changeDetection:e.ChangeDetectionStrategy.OnPush,providers:[],styles:["\n\t\t:host {\n\t\t\tdisplay: block;\n\t\t}\n\t"]}]}],ctorParameters:function(){return[{type:e.Renderer2},{type:e.ViewContainerRef},{type:e.NgZone},{type:e.Injector},{type:e.ChangeDetectorRef},{type:e.ComponentFactoryResolver}]},propDecorators:{_mainDivRef:[{type:e.ViewChild,args:["mainDivRef",{read:e.ElementRef,static:!0}]}],_dynamicContent:[{type:e.ViewChild,args:["dynamicContent",{read:e.ViewContainerRef,static:!0}]}],_childTemplateRef:[{type:e.ViewChild,args:["childContent",{read:e.TemplateRef,static:!1}]}],contentProperties:[{type:e.ContentChildren,args:[o.IgxPropertyEditorPropertyDescriptionComponent]}],height:[{type:e.Input}],width:[{type:e.Input}],actualDataSource:[{type:e.Input}],filterPlaceholderText:[{type:e.Input}],searchInputType:[{type:e.Input}],rowHeight:[{type:e.Input}],cellTextStyle:[{type:e.Input}],baseTheme:[{type:e.Input}],density:[{type:e.Input}],actualDescriptionContext:[{type:e.Input}],descriptionContext:[{type:e.Input}],componentRenderer:[{type:e.Input}],target:[{type:e.Input}],descriptionType:[{type:e.Input}],isHorizontal:[{type:e.Input}],isWrappingEnabled:[{type:e.Input}],isIndirectModeEnabled:[{type:e.Input}],backgroundColor:[{type:e.Input}],textColor:[{type:e.Input}]}});var qd=function(){function t(){n.TypeRegistrar.registerCons("IgxPropertyEditorComponent",Ld),n.TypeRegistrar.register("PropertyEditor",Gd.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,declarations:[Ld],imports:[a.CommonModule,r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule],exports:[r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,Ld]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule],r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:qd,decorators:[{type:e.NgModule,args:[{declarations:[Ld],exports:[r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,Ld],imports:[a.CommonModule,r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule],entryComponents:[]}]}],ctorParameters:function(){return[]}});var Hd=function(){function t(){n.TypeRegistrar.registerCons("PropertyEditor",Gd),n.TypeRegistrar.registerCons("IgxPropertyEditorComponent",Ld),n.TypeRegistrar.register("PropertyEditor",Gd.$type)}return t.ɵfac=e["ɵɵngDeclareFactory"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,deps:[],target:e["ɵɵFactoryTarget"].NgModule}),t.ɵmod=e["ɵɵngDeclareNgModule"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[a.CommonModule,r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,qd],exports:[r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,qd]}),t.ɵinj=e["ɵɵngDeclareInjector"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:t,imports:[[a.CommonModule,r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,qd],r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,qd]}),t}();e["ɵɵngDeclareClassMetadata"]({minVersion:"12.0.0",version:"12.2.17",ngImport:e,type:Hd,decorators:[{type:e.NgModule,args:[{declarations:[],exports:[r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,qd],imports:[a.CommonModule,r.IgxXInputGroupDynamicModule,r.IgxXCheckboxDynamicModule,r.IgxXButtonDynamicModule,Cu,qh,Ou,ku,rc,wu,Bu,o.IgxPropertyEditorPropertyDescriptionDynamicModule,qd],entryComponents:[Ld]}]}],ctorParameters:function(){return[]}});var Wd=function(t){function e(e){var i=t.call(this)||this;if(o.IgxPropertyEditorPropertyDescriptionComponent.$type||(o.IgxPropertyEditorPropertyDescriptionComponent.$type=n.markType(o.IgxPropertyEditorPropertyDescriptionComponent,"IgxPropertyEditorPropertyDescriptionComponent")),e)for(var r=0;r<e.length;r++)i.add(e[r]);return i}return i.__extends(e,t),e.prototype._createInnerColl=function(){o.IgxPropertyEditorPropertyDescriptionComponent.$type||(o.IgxPropertyEditorPropertyDescriptionComponent.$type=n.markType(o.IgxPropertyEditorPropertyDescriptionComponent,"IgxPropertyEditorPropertyDescriptionComponent"));var t=new n.SyncableObservableCollection$2(o.IgxPropertyEditorPropertyDescriptionComponent.$type,o.PropertyEditorPropertyDescription.$type,0);return t.compare=function(t,e){var n=t;return n._implementation&&(n=n._implementation),n.equals?n.equals(e):n===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new o.IgxPropertyEditorPropertyDescriptionComponent)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},e}(n.IgCollection),Ud=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new eh},Object.defineProperty(t.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),t.prototype.onImplementationCreated=function(){},t.prototype._provideImplementation=function(t){this._implementation=t,this._implementation.externalObject=this,this.onImplementationCreated()},Object.defineProperty(t.prototype,"iD",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isEnabled",{get:function(){return this.i.a},set:function(t){this.i.a=n.ensureBool(t)},enumerable:!1,configurable:!0}),t}();t.AccessibilityRow=hp,t.ActivationManager=Di,t.ApplyButtonClickEventArgs=ph,t.BaseEditorView=Aa,t.BrowserExecutionContext=Bd,t.BrowserPixelConverter=Jo,t.BrowserTickProvider=Qo,t.CalculationParameters=Cn,t.CancelButtonClickEventArgs=dh,t.CanvasCellPresenterBase=ra,t.CanvasContentCellModelHelper=oa,t.CanvasDateTimeCell=ua,t.CanvasDateTimeCellPresenter=ca,t.CanvasGridCellBase=na,t.CanvasImageCell=ba,t.CanvasImageCellPresenter=va,t.CanvasNumericCell=sa,t.CanvasNumericCellPresenter=la,t.CanvasPlaceholderView=ea,t.CanvasRowSeparatorCell=ga,t.CanvasRowSeparatorCellPresenter=ya,t.CanvasSectionHeaderCell=Pa,t.CanvasSectionHeaderCellPresenter=Oa,t.CanvasSummaryCell=ka,t.CanvasSummaryCellPresenter=Ta,t.CanvasTemplateCell=xa,t.CanvasTemplateCellContainer=Ca,t.CanvasTemplateCellPresenter=_a,t.CanvasTemplateHeaderCell=wa,t.CanvasTemplateHeaderCellPresenter=Sa,t.CanvasTextCell=ia,t.CanvasTextCellPresenter=aa,t.CanvasTextHeaderCell=fa,t.CanvasTextHeaderCellPresenter=ma,t.CanvasVerticalSeparatorCell=Ia,t.CanvasVerticalSeparatorCellPresenter=ja,t.CellContentHorizontalAlignment=O,t.CellContentHorizontalAlignment_$type=I,t.CellContentVerticalAlignment=j,t.CellContentVerticalAlignment_$type=k,t.CellDataLoadedAnimationMode=Kt,t.CellDataLoadedAnimationMode_$type=Xt,t.CellEffect=gr,t.CellKey=Si,t.CellModel=$n,t.CellModelExport=A,t.CellPath=S,t.CellPositionEffect=yr,t.CellPresenterBase=Ga,t.CellPropertyAnimationType=Bt,t.CellPropertyAnimationType_$type=Mt,t.CellRange=_e,t.CellSelectionAnimationMode=te,t.CellSelectionAnimationMode_$type=ee,t.CellStyleRequestedEventArgs=mn,t.CheckboxList=zr,t.CheckboxListBridge=gu,t.CheckboxListExternalIndexTypeChangedEventArgs=mp,t.CheckboxListExternalIndexType_$type=mu,t.CheckboxListExternalKeysClearedEventArgs=gp,t.CheckboxListExternal_$type=fp,t.CheckboxListIndexType=l,t.CheckboxListIndexTypeChangedEventArgs=Nr,t.CheckboxListIndexType_$type=u,t.CheckboxListKeysClearedEventArgs=p,t.CheckboxListView=$r,t.CheckboxListViewExternal_$type=yp,t.CheckedChangedEventArgs=d,t.CloneDataSourceFilterOperation=Ed,t.CloneDataSourceFilterOperation_$type=Ad,t.ColumnCellsEffect=mr,t.ColumnChooser=Nu,t.ColumnChooserInfo=Au,t.ColumnChooserView=Vu,t.ColumnComparisonConditionOperatorType=f,t.ColumnComparisonConditionOperatorType_$type=m,t.ColumnComparisonFilterCondition=In,t.ColumnController=oi,t.ColumnCustomFilterCondition=jn,t.ColumnEffect=dr,t.ColumnExchanger=Ir,t.ColumnExchangersCollection=jr,t.ColumnExchangingAnimationMode=de,t.ColumnExchangingAnimationMode_$type=fe,t.ColumnFilterCondition=On,t.ColumnFilterConditionCollection=kn,t.ColumnFilterConditionGroup=Tn,t.ColumnGroupDescription=kt,t.ColumnGroupDescriptionCollection=Tt,t.ColumnGrouping=Rl,t.ColumnGroupingView=Tl,t.ColumnGroupingVisualModelExport=jl,t.ColumnHiddenChangedEventArgs=pi,t.ColumnHidingAnimationMode=he,t.ColumnHidingAnimationMode_$type=pe,t.ColumnInfo=Er,t.ColumnMovingAnimationMode=ue,t.ColumnMovingAnimationMode_$type=ce,t.ColumnMovingMode=Vt,t.ColumnMovingMode_$type=Nt,t.ColumnMovingSeparator=Vi,t.ColumnOptionsIconAlignment=lt,t.ColumnOptionsIconAlignment_$type=ut,t.ColumnOptionsIconBehavior=ct,t.ColumnOptionsIconBehavior_$type=ht,t.ColumnOptionsToolbarManagerOpeningEventArgs=Vp,t.ColumnPinnedChangedEventArgs=di,t.ColumnPinning=Ku,t.ColumnPinningInfo=Wu,t.ColumnPinningView=Uu,t.ColumnPropertySetter=xn,t.ColumnPropertySettersCollection=_n,t.ColumnPropertyUpdatingAnimationMode=Wt,t.ColumnPropertyUpdatingAnimationMode_$type=Ut,t.ColumnResizingAnimationMode=se,t.ColumnResizingAnimationMode_$type=le,t.ColumnResizingMode=Et,t.ColumnResizingMode_$type=At,t.ColumnResizingSeparator=Ki,t.ColumnShowingAnimationMode=qt,t.ColumnShowingAnimationMode_$type=Ht,t.ColumnSortDescription=Ot,t.ColumnSortDescriptionCollection=It,t.ColumnSortDirection=D,t.ColumnSortDirection_$type=B,t.ColumnStates_$type=We,t.ColumnSummaryDescription=vt,t.ColumnSummaryDescriptionCollection=Ct,t.ColumnWidth=Ft,t.ComboBoxColumn=Ni,t.ComboEditorView=$a,t.ComboEditorView_ComboExternal_$type=dp,t.ComparisonOperatorSelector=Za,t.ComparisonOperatorSelectorView=Xa,t.ContentCellModelHelper=ts,t.CurrentRendererSettings=Xo,t.DataAdapter=Ai,t.DataBindingEventArgs=zi,t.DataGrid=si,t.DataGridAccessibilityLayoutPanel=pp,t.DataGridCellEventArgs=hi,t.DataGridCellLayoutPanel=Zo,t.DataGridColumn=Ii,t.DataGridColumnToolbarManager=Li,t.DataGridDelayedExecutionManager=Fs,t.DataGridLocaleEn=up,t.DataGridPresenterManager=Es,t.DataGridPropertySetter=zs,t.DataGridScrollerKeyboardListener=ll,t.DataGridSelectionMode=me,t.DataGridSelectionMode_$type=ge,t.DataGridStylingDefaults=Us,t.DataGridToolbar=ep,t.DataGridToolbarView=tp,t.DataGridViewportManager=Vs,t.DataSourceNotificationBridge=ri,t.DateEditorView=Fa,t.DateOperatorTypes_$type=Rp,t.DateTimeCell=rs,t.DateTimeCellModel=zn,t.DateTimeCellModelExport=G,t.DateTimeCellPresenter=os,t.DateTimeColumn=Fi,t.DateTimeColumnValueFormatter=z,t.DateTimeFormats=F,t.DateTimeFormats_$type=$,t.DefaultCellActionManager=En,t.DefaultCellModelExportUpdater=Nn,t.DefaultGridInfoRequestor=Vn,t.DefaultPlatformPixelConverter=Fe,t.DefinitionBase=Oi,t.DefinitionPropertyUpdatedEventArgs=Dt,t.DragSelectEventArgs=Hs,t.DragType_$type=Xp,t.Dragger=Ws,t.DraggerView=qs,t.DropDownDataListItem=$d,t.EditModeClickAction=Gt,t.EditModeClickAction_$type=Lt,t.EditModeType=v,t.EditModeType_$type=C,t.EditRowDefinition=Hi,t.EditingManager=ai,t.EditorCell=za,t.EditorCellModel=Gn,t.EditorCellModelExport=H,t.EditorCellPresenter=La,t.EditorDefinition=qi,t.EditorRowCell=qa,t.EditorRowCellModel=qn,t.EditorRowCellPresenter=Ha,t.EditorType=L,t.EditorType_$type=q,t.EnterKeyBehaviorAfterEdit=Oe,t.EnterKeyBehaviorAfterEdit_$type=Ie,t.EnterKeyBehaviors=Se,t.EnterKeyBehaviors_$type=Pe,t.FilterCell=Ya,t.FilterCellModel=Ln,t.FilterCellModelExport=W,t.FilterCellPresenter=Qa,t.FilterComparisonType=Ae,t.FilterComparisonType_$type=Ve,t.FilterDialogRenderCompletedEventArgs=hs,t.FilterLogicalOperator=Me,t.FilterLogicalOperator_$type=Ee,t.FilterOperand=_i,t.FilterRowDefinition=Wi,t.FilterUIType=De,t.FilterUIType_$type=Be,t.FixedCellPositions_$type=g,t.FormatGroupTextEventArgs=jt,t.FormatSummaryTextEventArgs=bt,t.GotFocusEventArgs=Ih,t.GridActivationMode=ye,t.GridActivationMode_$type=be,t.GridActiveCellChangedEventArgs=Xe,t.GridAnimationManager=vi,t.GridAnimationManagerAnimationCanceledEventArgs=on,t.GridAnimationManagerAnimationCompletedEventArgs=rn,t.GridAnimationManagerAnimationCreatedEventArgs=nn,t.GridAnimationPhaseSettings=re,t.GridAnimationSettings=ae,t.GridCellBase=Ma,t.GridCellEditEndedEventArgs=bi,t.GridCellEditStartedEventArgs=yi,t.GridCellPosition=b,t.GridCellType=Up,t.GridCellType_$type=Kp,t.GridCellValueChangingEventArgs=fi,t.GridColumnAnimationSettings=oe,t.GridColumnButtonOptions=mh,t.GridColumnButtonOptionsView=fh,t.GridColumnCollection=ji,t.GridColumnFilterOptions=Zc,t.GridColumnFilterOptionsView=Xc,t.GridColumnGroupOptions=_c,t.GridColumnGroupOptionsView=xc,t.GridColumnHideOptions=Gc,t.GridColumnHideOptionsView=zc,t.GridColumnMoveOptions=Dc,t.GridColumnMoveOptionsView=Rc,t.GridColumnOptions=wh,t.GridColumnOptionsBase=bc,t.GridColumnOptionsSectionBase=vc,t.GridColumnOptionsSimpleSectionBase=Cc,t.GridColumnOptionsUtilities=yc,t.GridColumnOptionsView=_h,t.GridColumnOptionsViewBase=gc,t.GridColumnPinOptions=Vc,t.GridColumnPinOptionsView=Ac,t.GridColumnSortOptions=Sc,t.GridColumnSortOptionsView=wc,t.GridColumnSpacer=an,t.GridColumnSpacerCollection=sn,t.GridColumnSummaryOptions=ah,t.GridColumnSummaryOptionsView=oh,t.GridColumnWidthChangedEventArgs=gi,t.GridColumnsAutoGeneratedEventArgs=li,t.GridColumnsChangedEventArgs=ui,t.GridCompoundConditionalStyle=Gi,t.GridConditionFilterStringErrorsParsingEventArgs=pn,t.GridConditionalStyle=Ci,t.GridConditionalStyleBoundType=cn,t.GridConditionalStyleBoundType_$type=hn,t.GridConditionalStyleCollection=xi,t.GridConditionalStyleProperty=dn,t.GridConditionalStylePropertyCollection=fn,t.GridConditionalStylePropertyStylingType=ln,t.GridConditionalStylePropertyStylingType_$type=un,t.GridCustomFilterRequestedEventArgs=mi,t.GridDataCommittedEventArgs=Le,t.GridDataCommittingEventArgs=qe,t.GridEasingFunctionType=ne,t.GridEasingFunctionType_$type=ie,t.GridEffect=pr,t.GridEffectGroup=ki,t.GridEffectMainIntent_$type=Od,t.GridEffectManager=Cr,t.GridEffectSubIntent_$type=Id,t.GridExpansionIndicator=Da,t.GridExpansionIndicatorView=Ra,t.GridExternalWrapper=Yo,t.GridFilterDialog=ms,t.GridFilterDialogFilterChangeEventArgs=ss,t.GridFilterDialogOpeningEventArgs=as,t.GridFilterDialogPanel=fs,t.GridFilterDialogView=ds,t.GridFilterDialogViewModel=gs,t.GridFilterDialogViewModelGrouping=us,t.GridFilterDialogViewModelGroupingLevel=cs,t.GridFilterDialogViewModelGroupingLevelCollection=ps,t.GridFilterDialogViewModelRow=ls,t.GridFilterDialogViewModelRowCollection=ys,t.GridFilterExpressionsEventArgs=xt,t.GridFilterOperandsCollection=wi,t.GridGroupDescriptionsChangedEventArgs=wt,t.GridLayer=Mr,t.GridLayerController=xr,t.GridLayerExport=Ue,t.GridModuleHelper=bu,t.GridRowEditEndedEventArgs=Qe,t.GridRowEditStartedEventArgs=Ye,t.GridSelectedCellRangesChangedEventArgs=Ge,t.GridSelectedCellRangesCollection=we,t.GridSelectedCellsChangedEventArgs=ci,t.GridSelectedCellsCollection=Pi,t.GridSelectedItemsChangedEventArgs=$e,t.GridSelectedItemsCollection=xe,t.GridSelectedKeysChangedEventArgs=ze,t.GridSelectedKeysCollection=c,t.GridSelectionBehavior=ve,t.GridSelectionBehavior_$type=Ce,t.GridSelectionChangedEventArgs=Ze,t.GridSizeChangedEventArgs=He,t.GridSortDescriptionsChangedEventArgs=_t,t.GridSortIndicator=da,t.GridSortIndicatorView=pa,t.GridStyleRepository=h,t.GridSummaryDescriptionsChangedEventArgs=St,t.GridViewportChangedEventArgs=x,t.GroupData=et,t.GroupHeaderDisplayMode=mt,t.GroupHeaderDisplayMode_$type=gt,t.GroupInfo=Pl,t.GroupSummaryDisplayMode=V,t.GroupSummaryDisplayMode_$type=N,t.Header=Ui,t.HeaderClickAction=$t,t.HeaderClickAction_$type=zt,t.HeaderRowSeparator=rr,t.HeaderSeparator=Xi,t.HorizontalPropertyEditorDataSource=Fd,t.HoverManager=Ti,t.ICellActionManager_$type=Mn,t.ICellModelExportUpdater_$type=_,t.ICellPresenter_$type=Bn,t.ICellRenderingEngine_$type=Dn,t.IColumnGroupingVisualModelExport_$type=Il,t.IColumnGrouping_$type=Ol,t.IDataAdapter_$type=Ei,t.IDataGridComponent_$type=Yh,t.IDelayedExecutionManager_$type=Ns,t.IDraggerView_$type=Gs,t.IDragger_$type=Ls,t.IEditorView_$type=Ea,t.IExternalDefinitionBase_$type=$i,t.IExternalGrid_$type=Rn,t.IExternalTemplateColumn_$type=dd,t.IExternalTemplateHeaderColumn_$type=fd,t.IExternalTemplateSectionHeader_$type=pd,t.IGridInfoRequestor_$type=An,t.INativeCell_$type=ta,t.IPlatformPixelConverter_$type=Ne,t.IPropertySetter_$type=$s,t.ISummaryChooserView_$type=nh,t.IToolbarVisualModelExport_$type=Qh,t.IViewportManager_$type=As,t.IgxApplyButtonClickEventArgs=gh,t.IgxCancelButtonClickEventArgs=yh,t.IgxCellInfo=qr,t.IgxCellKey=Do,t.IgxCellKeyDynamicModule=cu,t.IgxCellKeyModule=uu,t.IgxCellRange=Eo,t.IgxCellRangeDynamicModule=pu,t.IgxCellRangeModule=hu,t.IgxCellStyleRequestedEventArgs=oo,t.IgxCheckboxListComponent=El,t.IgxCheckboxListDynamicModule=Eu,t.IgxCheckboxListIndexTypeChangedEventArgs=Bl,t.IgxCheckboxListKeysClearedEventArgs=Ml,t.IgxCheckboxListModule=Mu,t.IgxCheckedChangedEventArgs=Gr,t.IgxColumnChooserComponent=Fu,t.IgxColumnChooserDynamicModule=zu,t.IgxColumnChooserModule=$u,t.IgxColumnExchanger=jd,t.IgxColumnExchangersCollection=kd,t.IgxColumnGroupDescription=Go,t.IgxColumnGroupDescriptionCollection=Lo,t.IgxColumnGroupDescriptionDynamicModule=ru,t.IgxColumnGroupDescriptionModule=iu,t.IgxColumnGroupingComponent=Lu,t.IgxColumnGroupingComponent_PROVIDERS=Gu,t.IgxColumnGroupingDynamicModule=Hu,t.IgxColumnGroupingModule=qu,t.IgxColumnHiddenChangedEventArgs=sl,t.IgxColumnMovingSeparatorComponent=hl,t.IgxColumnMovingSeparatorDynamicModule=Kl,t.IgxColumnMovingSeparatorModule=Ul,t.IgxColumnPinnedChangedEventArgs=dl,t.IgxColumnPinningComponent=Xu,t.IgxColumnPinningDynamicModule=Yu,t.IgxColumnPinningModule=Zu,t.IgxColumnPropertySetter=Qs,t.IgxColumnPropertySettersCollection=Td,t.IgxColumnResizingSeparatorComponent=cl,t.IgxColumnResizingSeparatorDynamicModule=Wl,t.IgxColumnResizingSeparatorModule=Hl,t.IgxColumnSortDescription=No,t.IgxColumnSortDescriptionCollection=Fo,t.IgxColumnSortDescriptionDynamicModule=nu,t.IgxColumnSortDescriptionModule=eu,t.IgxColumnSummaryDescription=Wo,t.IgxColumnSummaryDescriptionCollection=Uo,t.IgxColumnSummaryDescriptionDynamicModule=au,t.IgxColumnSummaryDescriptionModule=ou,t.IgxColumnWidth=yo,t.IgxColumnWidthDynamicModule=tu,t.IgxColumnWidthModule=Jl,t.IgxComboBoxColumnComponent=hc,t.IgxComboBoxColumnDynamicModule=dc,t.IgxComboBoxColumnModule=pc,t.IgxDataBindingEventArgs=ro,t.IgxDataGridAllColumnsDynamicModule=mc,t.IgxDataGridAllColumnsModule=fc,t.IgxDataGridCellEventArgs=bo,t.IgxDataGridColumnComponent=So,t.IgxDataGridComparisonOperatorSelectorComponent=Tp,t.IgxDataGridComponent=Dl,t.IgxDataGridCoreDynamicModule=Cu,t.IgxDataGridCoreModule=vu,t.IgxDataGridDynamicModule=ap,t.IgxDataGridExpansionIndicatorComponent=qp,t.IgxDataGridFilterDialogComponent=Ap,t.IgxDataGridLocaleEnModule=cp,t.IgxDataGridModule=op,t.IgxDataGridPagerComponent=Kh,t.IgxDataGridPagerDynamicModule=Zh,t.IgxDataGridPagerModule=Xh,t.IgxDataGridSortIndicatorComponent=Wp,t.IgxDataGridToolbarComponent=np,t.IgxDataGridToolbarDynamicModule=rp,t.IgxDataGridToolbarModule=ip,t.IgxDateTimeCellInfo=Hr,t.IgxDateTimeColumnComponent=Iu,t.IgxDateTimeColumnDynamicModule=ku,t.IgxDateTimeColumnModule=ju,t.IgxDefinitionBaseComponent=ho,t.IgxEditRowDefinitionComponent=ad,t.IgxEditRowDefinitionDynamicModule=ld,t.IgxEditRowDefinitionModule=sd,t.IgxEditorCellInfo=vp,t.IgxEditorDefinitionComponent=id,t.IgxEditorDefinitionDynamicModule=od,t.IgxEditorDefinitionModule=rd,t.IgxEditorRowCellInfo=xp,t.IgxFilterCellInfo=Cp,t.IgxFilterDialogRenderCompletedEventArgs=Ep,t.IgxFilterOperand=_o,t.IgxFilterOperandDynamicModule=Wh,t.IgxFilterOperandModule=Hh,t.IgxFilterRowDefinitionComponent=ud,t.IgxFilterRowDefinitionDynamicModule=hd,t.IgxFilterRowDefinitionModule=cd,t.IgxFormatGroupTextEventArgs=zo,t.IgxFormatSummaryTextEventArgs=Ho,t.IgxGotFocusEventArgs=$h,t.IgxGridActiveCellChangedEventArgs=al,t.IgxGridAnimationPhaseSettings=bp,t.IgxGridAnimationSettings=nl,t.IgxGridCellEditEndedEventArgs=xl,t.IgxGridCellEditStartedEventArgs=Cl,t.IgxGridCellPosition=ol,t.IgxGridCellPositionDynamicModule=fu,t.IgxGridCellPositionModule=du,t.IgxGridCellValueChangingEventArgs=fl,t.IgxGridColumnAnimationSettings=vo,t.IgxGridColumnButtonOptionsComponent=vh,t.IgxGridColumnButtonOptionsDynamicModule=xh,t.IgxGridColumnButtonOptionsModule=Ch,t.IgxGridColumnCollection=Po,t.IgxGridColumnFilterOptionsComponent=Yc,t.IgxGridColumnFilterOptionsComponent_PROVIDERS=bh,t.IgxGridColumnFilterOptionsDynamicModule=Jc,t.IgxGridColumnFilterOptionsModule=Qc,t.IgxGridColumnGroupOptionsComponent=Wc,t.IgxGridColumnGroupOptionsDynamicModule=Kc,t.IgxGridColumnGroupOptionsModule=Uc,t.IgxGridColumnHideOptionsComponent=Lc,t.IgxGridColumnHideOptionsDynamicModule=Hc,t.IgxGridColumnHideOptionsModule=qc,t.IgxGridColumnMoveOptionsComponent=Bc,t.IgxGridColumnMoveOptionsDynamicModule=Ec,t.IgxGridColumnMoveOptionsModule=Mc,t.IgxGridColumnOptionsBaseComponent=Pc,t.IgxGridColumnOptionsComponent=Sh,t.IgxGridColumnOptionsDynamicModule=Oh,t.IgxGridColumnOptionsModule=Ph,t.IgxGridColumnOptionsSectionBaseComponent=Oc,t.IgxGridColumnOptionsSimpleSectionBaseComponent=Ic,t.IgxGridColumnPinOptionsComponent=Nc,t.IgxGridColumnPinOptionsDynamicModule=$c,t.IgxGridColumnPinOptionsModule=Fc,t.IgxGridColumnSortOptionsComponent=jc,t.IgxGridColumnSortOptionsDynamicModule=Tc,t.IgxGridColumnSortOptionsModule=kc,t.IgxGridColumnSummaryOptionsComponent=sh,t.IgxGridColumnSummaryOptionsDynamicModule=hh,t.IgxGridColumnSummaryOptionsModule=ch,t.IgxGridColumnWidthChangedEventArgs=vl,t.IgxGridColumnsAutoGeneratedEventArgs=Oo,t.IgxGridColumnsChangedEventArgs=bl,t.IgxGridCompoundConditionalStyleComponent=Zp,t.IgxGridConditionFilterStringErrorsParsingEventArgs=ao,t.IgxGridConditionalStyleCollection=co,t.IgxGridConditionalStyleComponent=uo,t.IgxGridConditionalStyleDynamicModule=ec,t.IgxGridConditionalStyleModule=tc,t.IgxGridConditionalStylePropertyCollection=lo,t.IgxGridConditionalStylePropertyComponent=so,t.IgxGridConditionalStylePropertyDynamicModule=Ju,t.IgxGridConditionalStylePropertyModule=Qu,t.IgxGridCustomFilterRequestedEventArgs=xo,t.IgxGridDataCommittedEventArgs=gl,t.IgxGridDataCommittingEventArgs=ml,t.IgxGridFilterDialogFilterChangeEventArgs=Mp,t.IgxGridFilterDialogOpeningEventArgs=Bp,t.IgxGridFilterDialogViewModel=Lp,t.IgxGridFilterDialogViewModelGrouping=Np,t.IgxGridFilterDialogViewModelGroupingLevel=Fp,t.IgxGridFilterDialogViewModelGroupingLevelCollection=$p,t.IgxGridFilterDialogViewModelRow=zp,t.IgxGridFilterDialogViewModelRowCollection=Gp,t.IgxGridFilterExpressionsEventArgs=Ks,t.IgxGridFilterOperandsCollection=wo,t.IgxGridGroupDescriptionsChangedEventArgs=qo,t.IgxGridRowEditEndedEventArgs=wl,t.IgxGridRowEditStartedEventArgs=_l,t.IgxGridSelectedCellRangesChangedEventArgs=Vo,t.IgxGridSelectedCellRangesCollection=Ao,t.IgxGridSelectedCellsChangedEventArgs=Mo,t.IgxGridSelectedCellsCollection=Bo,t.IgxGridSelectedItemsChangedEventArgs=jo,t.IgxGridSelectedItemsCollection=Io,t.IgxGridSelectedKeysChangedEventArgs=Ro,t.IgxGridSelectedKeysCollection=To,t.IgxGridSelectionChangedEventArgs=Sl,t.IgxGridSizeChangedEventArgs=yl,t.IgxGridSortDescriptionsChangedEventArgs=$o,t.IgxGridSummaryDescriptionsChangedEventArgs=Ko,t.IgxGroupData=Sp,t.IgxHeaderComponent=Co,t.IgxHeaderRowSeparatorComponent=rl,t.IgxHeaderRowSeparatorDynamicModule=xd,t.IgxHeaderRowSeparatorModule=Cd,t.IgxHeaderSeparatorComponent=ul,t.IgxHeaderSeparatorDynamicModule=ql,t.IgxHeaderSeparatorModule=Ll,t.IgxHorizontalPropertyEditorDataSource=Wd,t.IgxImageCellInfo=Wr,t.IgxImageColumnComponent=nc,t.IgxImageColumnDynamicModule=rc,t.IgxImageColumnModule=ic,t.IgxLostFocusEventArgs=zh,t.IgxMultiColumnComboBoxComponent=Gh,t.IgxMultiColumnComboBoxDynamicModule=qh,t.IgxMultiColumnComboBoxModule=Lh,t.IgxMultiColumnComboBoxTextChangedEventArgs=Nh,t.IgxMultiColumnComboBoxValueChangedEventArgs=Fh,t.IgxNumericCellInfo=Ur,t.IgxNumericColumnComponent=Su,t.IgxNumericColumnDynamicModule=Ou,t.IgxNumericColumnModule=Pu,t.IgxOperatorSelectorClosingEventArgs=kp,t.IgxOperatorSelectorOpeningEventArgs=Ip,t.IgxOperatorSelectorValueChangedEventArgs=Op,t.IgxPageChangedEventArgs=Uh,t.IgxPinnedAreaSeparatorComponent=pl,t.IgxPinnedAreaSeparatorDynamicModule=gd,t.IgxPinnedAreaSeparatorModule=md,t.IgxPrimaryKeyValue=ko,t.IgxPrimaryKeyValueDynamicModule=lu,t.IgxPrimaryKeyValueModule=su,t.IgxPropertyEditorComponent=Ld,t.IgxPropertyEditorDynamicModule=Hd,t.IgxPropertyEditorModule=qd,t.IgxResponsivePhase=Js,t.IgxResponsivePhasesCollection=Rd,t.IgxResponsiveState=tl,t.IgxResponsiveStateEnteredEventArgs=Zs,t.IgxResponsiveStateEnteringEventArgs=Xs,t.IgxResponsiveStateExitedEventArgs=Ys,t.IgxResponsiveStatesCollection=el,t.IgxRowSeparatorComponent=il,t.IgxRowSeparatorDynamicModule=Gl,t.IgxRowSeparatorInfo=Kr,t.IgxRowSeparatorModule=zl,t.IgxSectionFooterComponent=yd,t.IgxSectionFooterDynamicModule=vd,t.IgxSectionFooterModule=bd,t.IgxSectionHeaderCellInfo=Xr,t.IgxSectionHeaderComponent=po,t.IgxSectionHeaderDynamicModule=$l,t.IgxSectionHeaderModule=Fl,t.IgxSelectAllCheckboxChangedEventArgs=Lr,t.IgxSortIndicatorRenderCompletedEventArgs=Hp,t.IgxSummaryCellInfo=_p,t.IgxSummaryChangedEventArgs=Ud,t.IgxSummaryChooserDynamicModule=uh,t.IgxSummaryChooserModule=lh,t.IgxSummaryData=Pp,t.IgxSummaryRowComponent=fo,t.IgxSummaryRowRootComponent=mo,t.IgxSummaryRowRootDynamicModule=Zl,t.IgxSummaryRowRootModule=Xl,t.IgxSummaryRowSectionComponent=go,t.IgxSummaryRowSectionDynamicModule=Ql,t.IgxSummaryRowSectionModule=Yl,t.IgxTemplateCellInfo=Zr,t.IgxTemplateCellUpdatingEventArgs=Tu,t.IgxTemplateColumnComponent=Ru,t.IgxTemplateColumnDynamicModule=Bu,t.IgxTemplateColumnModule=Du,t.IgxTemplateHeaderCellInfo=Jr,t.IgxTemplateHeaderCellUpdatingEventArgs=ac,t.IgxTemplateHeaderComponent=lc,t.IgxTemplateHeaderDynamicModule=cc,t.IgxTemplateHeaderModule=uc,t.IgxTemplateSectionHeaderCellInfo=eo,t.IgxTemplateSectionHeaderCellUpdatingEventArgs=lp,t.IgxTemplateSectionHeaderComponent=wd,t.IgxTemplateSectionHeaderDynamicModule=Pd,t.IgxTemplateSectionHeaderModule=Sd,t.IgxTextCellInfo=no,t.IgxTextColumnComponent=xu,t.IgxTextColumnDynamicModule=wu,t.IgxTextColumnModule=_u,t.IgxTextHeaderCellInfo=io,t.IgxTextHeaderComponent=Al,t.IgxTextHeaderDynamicModule=Nl,t.IgxTextHeaderModule=Vl,t.IgxTextIconSetConditionalStyleComponent=td,t.IgxTextIconSetConditionalStyleDynamicModule=nd,t.IgxTextIconSetConditionalStyleModule=ed,t.IgxVerticalSeparatorCellInfo=wp,t.ImageCell=_s,t.ImageCellModel=Un,t.ImageCellModelExport=Q,t.ImageCellPresenter=ws,t.ImageColumn=Zi,t.ImageResourceType=Z,t.ImageResourceType_$type=Y,t.ImageStretchOptions=K,t.ImageStretchOptions_$type=X,t.LayoutAction=gn,t.LayoutAction_$type=yn,t.LostFocusEventArgs=jh,t.MergedCellEvaluationCriteria=Te,t.MergedCellEvaluationCriteria_$type=Re,t.MergedCellInfo=vn,t.MergedCellMode=je,t.MergedCellMode_$type=ke,t.ModelStates_$type=w,t.ModelTypes_$type=P,t.MultiColumnComboBox=Ah,t.MultiColumnComboBoxDataSourceNotificationHandler=Vh,t.MultiColumnComboBoxSelectedItemChangeType=Vd,t.MultiColumnComboBoxSelectedItemChangeType_$type=Nd,t.MultiColumnComboBoxTextChangedEventArgs=Dh,t.MultiColumnComboBoxUtilities=kh,t.MultiColumnComboBoxValueChangedEventArgs=Bh,t.MultiColumnComboBoxView=Eh,t.MultiColumnComboVisualModelExport=Mh,t.MultipleDataSourceNotifier=Pt,t.NativeUIComboFactory=Md,t.NativeUIGridFactory=yu,t.NumericCell=ns,t.NumericCellFormatter=Yi,t.NumericCellModel=Kn,t.NumericCellModelExport=J,t.NumericCellPresenter=is,t.NumericColumn=Qi,t.NumericEditorView=Na,t.OperatorModel=Ua,t.OperatorSelectorClosingEventArgs=jp,t.OperatorSelectorOpeningEventArgs=Wa,t.OperatorSelectorValueChangedEventArgs=Ka,t.PageChangedEventArgs=yt,t.PagedDataProvider=ii,t.Pager=ti,t.PagerDataSourceNotificationBridge=ei,t.PagerGridDataSourceNotificationBridge=ni,t.PagerView=Fn,t.PagerVisualModelExport=Rt,t.PinnedAreaSeparator=Ji,t.PinnedPositions=M,t.PinnedPositions_$type=E,t.PinnedRowInfo=wr,t.PlaceholderView=Ba,t.PrimaryKeyValue=s,t.PropertyEditor=Gd,t.PropertyEditorView=zd,t.PushRowResult=Pr,t.PushRowSettings=Sr,t.RecyclingManager=Ri,t.ResponsiveEngine=kr,t.ResponsivePhase=Tr,t.ResponsivePhasesCollection=Rr,t.ResponsiveState=Dr,t.ResponsiveStateEnteredEventArgs=Sn,t.ResponsiveStateEnteringEventArgs=wn,t.ResponsiveStateExitedEventArgs=Pn,t.ResponsiveStatesCollection=Br,t.RowCellsEffect=vr,t.RowEffect=br,t.RowHoverAnimationMode=Qt,t.RowHoverAnimationMode_$type=Jt,t.RowPath=y,t.RowRange=bn,t.RowSelectionAnimationMode=Zt,t.RowSelectionAnimationMode_$type=Yt,t.RowSeparator=ir,t.RowSeparatorCell=Cs,t.RowSeparatorCellPresenter=xs,t.RowSeparatorModel=Xn,t.RowSeparatorModelExport=tt,t.SaveLayoutColumn=tr,t.SaveLayoutFilterInfo=en,t.SaveLayoutGroupInfo=tn,t.SaveLayoutSortInfo=Je,t.SectionFooter=er,t.SectionHeader=nr,t.SectionHeaderCell=ks,t.SectionHeaderCellModel=Zn,t.SectionHeaderCellModelExport=it,t.SectionHeaderCellPresenter=Ts,t.SectionInfo=Ar,t.SelectAllCheckboxChangedEventArgs=Fr,t.SelectionManager=Bi,t.SortIndicatorRenderCompletedEventArgs=ha,t.SortIndicatorStyle=at,t.SortIndicatorStyle_$type=st,t.SortManager=Mi,t.SortMode=Th,t.SortMode_$type=Rh,t.SpacerEffect=fr,t.SpatialEngine=Or,t.StringOperatorTypes_$type=Dp,t.SummaryCell=Bs,t.SummaryCellModel=Hn,t.SummaryCellModelExport=U,t.SummaryCellPresenter=Ms,t.SummaryChangedEventArgs=eh,t.SummaryChooser=rh,t.SummaryChooserItem=th,t.SummaryChooserView=ih,t.SummaryData=nt,t.SummaryRow=or,t.SummaryRowRoot=ar,t.SummaryRowSection=sr,t.SummaryScope=dt,t.SummaryScope_$type=ft,t.TemplateCell=Ps,t.TemplateCellContainer=Ss,t.TemplateCellModel=Yn,t.TemplateCellModelExport=rt,t.TemplateCellPresenter=Os,t.TemplateCellUpdatingEventArgs=ur,t.TemplateColumn=lr,t.TemplateHeader=sc,t.TemplateHeaderCell=Is,t.TemplateHeaderCellModel=Qr,t.TemplateHeaderCellModelExport=Yr,t.TemplateHeaderCellPresenter=js,t.TemplateHeaderCellUpdatingEventArgs=oc,t.TemplateSectionHeader=_d,t.TemplateSectionHeaderCellModel=to,t.TemplateSectionHeaderCellModelExport=Dd,t.TemplateSectionHeaderCellUpdatingEventArgs=sp,t.TextCell=Ja,t.TextCellLineBreakMode=T,t.TextCellLineBreakMode_$type=R,t.TextCellModel=Qn,t.TextCellModelExport=ot,t.TextCellPresenter=es,t.TextColumn=cr,t.TextEditorView=Va,t.TextHeader=hr,t.TextHeaderCell=bs,t.TextHeaderCellModel=Jn,t.TextHeaderCellModelExport=pt,t.TextHeaderCellPresenter=vs,t.TextIconSetBuiltInTypes=Yp,t.TextIconSetBuiltInTypes_$type=Qp,t.TextIconSetConditionalStyle=Jp,t.TextVisualModelExport=kl,t.ToolbarVisualModelExport=Jh,t.VerticalSeparatorCell=Rs,t.VerticalSeparatorCellModel=Wn,t.VerticalSeparatorCellPresenter=Ds,t.VisibilityEngine=_r,t.VisualModel=Vr,t.VisualModelExport=Ke,Object.defineProperty(t,"__esModule",{value:!0})}));