igniteui-webcomponents-data-grids 5.5.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.
- package/License +27 -0
- package/README.md +32 -0
- package/bundles/igniteui-webcomponents-data-grids.umd.js +107872 -0
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +7 -0
- package/esm2015/igniteui-webcomponents-data-grids.js +1 -0
- package/esm2015/lib/AccessibilityRow.js +105 -0
- package/esm2015/lib/ActivationManager.js +7 -0
- package/esm2015/lib/ApplyButtonClickEventArgs.js +16 -0
- package/esm2015/lib/BaseEditorView.js +205 -0
- package/esm2015/lib/BrowserExecutionContext.js +51 -0
- package/esm2015/lib/BrowserPixelConverter.js +20 -0
- package/esm2015/lib/BrowserTickProvider.js +64 -0
- package/esm2015/lib/CalculationParameters.js +34 -0
- package/esm2015/lib/CancelButtonClickEventArgs.js +16 -0
- package/esm2015/lib/CanvasCellPresenterBase.js +70 -0
- package/esm2015/lib/CanvasContentCellModelHelper.js +81 -0
- package/esm2015/lib/CanvasDateTimeCell.js +20 -0
- package/esm2015/lib/CanvasDateTimeCellPresenter.js +45 -0
- package/esm2015/lib/CanvasGridCellBase.js +764 -0
- package/esm2015/lib/CanvasImageCell.js +66 -0
- package/esm2015/lib/CanvasImageCellPresenter.js +90 -0
- package/esm2015/lib/CanvasNumericCell.js +22 -0
- package/esm2015/lib/CanvasNumericCellPresenter.js +45 -0
- package/esm2015/lib/CanvasPlaceholderView.js +62 -0
- package/esm2015/lib/CanvasRowSeparatorCell.js +20 -0
- package/esm2015/lib/CanvasRowSeparatorCellPresenter.js +23 -0
- package/esm2015/lib/CanvasSectionHeaderCell.js +25 -0
- package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +51 -0
- package/esm2015/lib/CanvasSummaryCell.js +98 -0
- package/esm2015/lib/CanvasSummaryCellPresenter.js +42 -0
- package/esm2015/lib/CanvasTemplateCell.js +32 -0
- package/esm2015/lib/CanvasTemplateCellContainer.js +32 -0
- package/esm2015/lib/CanvasTemplateCellPresenter.js +38 -0
- package/esm2015/lib/CanvasTemplateHeaderCell.js +32 -0
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +38 -0
- package/esm2015/lib/CanvasTextCell.js +25 -0
- package/esm2015/lib/CanvasTextCellPresenter.js +47 -0
- package/esm2015/lib/CanvasTextHeaderCell.js +57 -0
- package/esm2015/lib/CanvasTextHeaderCellPresenter.js +69 -0
- package/esm2015/lib/CanvasVerticalSeparatorCell.js +20 -0
- package/esm2015/lib/CanvasVerticalSeparatorCellPresenter.js +23 -0
- package/esm2015/lib/CellContentHorizontalAlignment.js +37 -0
- package/esm2015/lib/CellContentVerticalAlignment.js +37 -0
- package/esm2015/lib/CellDataLoadedAnimationMode.js +29 -0
- package/esm2015/lib/CellEffect.js +7 -0
- package/esm2015/lib/CellKey.js +7 -0
- package/esm2015/lib/CellModel.js +7 -0
- package/esm2015/lib/CellModelExport.js +116 -0
- package/esm2015/lib/CellPath.js +232 -0
- package/esm2015/lib/CellPositionEffect.js +7 -0
- package/esm2015/lib/CellPresenterBase.js +100 -0
- package/esm2015/lib/CellPropertyAnimationType.js +65 -0
- package/esm2015/lib/CellRange.js +64 -0
- package/esm2015/lib/CellSelectionAnimationMode.js +29 -0
- package/esm2015/lib/CellStyleRequestedEventArgs.js +40 -0
- package/esm2015/lib/CheckboxList.js +7 -0
- package/esm2015/lib/CheckboxListBridge.js +281 -0
- package/esm2015/lib/CheckboxListExternal.js +11 -0
- package/esm2015/lib/CheckboxListExternalIndexType.js +11 -0
- package/esm2015/lib/CheckboxListExternalIndexTypeChangedEventArgs.js +21 -0
- package/esm2015/lib/CheckboxListExternalKeysClearedEventArgs.js +16 -0
- package/esm2015/lib/CheckboxListIndexType.js +16 -0
- package/esm2015/lib/CheckboxListIndexTypeChangedEventArgs.js +21 -0
- package/esm2015/lib/CheckboxListKeysClearedEventArgs.js +16 -0
- package/esm2015/lib/CheckboxListView.js +7 -0
- package/esm2015/lib/CheckboxListViewExternal.js +11 -0
- package/esm2015/lib/CheckboxListView_combined.js +1945 -0
- package/esm2015/lib/CheckedChangedEventArgs.js +22 -0
- package/esm2015/lib/CloneDataSourceFilterOperation.js +20 -0
- package/esm2015/lib/ColumnCellsEffect.js +7 -0
- package/esm2015/lib/ColumnChooser.js +7 -0
- package/esm2015/lib/ColumnChooserInfo.js +21 -0
- package/esm2015/lib/ColumnChooserView.js +7 -0
- package/esm2015/lib/ColumnChooserView_combined.js +375 -0
- package/esm2015/lib/ColumnComparisonConditionOperatorType.js +62 -0
- package/esm2015/lib/ColumnComparisonFilterCondition.js +7 -0
- package/esm2015/lib/ColumnController.js +7 -0
- package/esm2015/lib/ColumnCustomFilterCondition.js +7 -0
- package/esm2015/lib/ColumnEffect.js +7 -0
- package/esm2015/lib/ColumnExchanger.js +7 -0
- package/esm2015/lib/ColumnExchangersCollection.js +7 -0
- package/esm2015/lib/ColumnExchangingAnimationMode.js +61 -0
- package/esm2015/lib/ColumnFilterCondition.js +7 -0
- package/esm2015/lib/ColumnFilterConditionCollection.js +7 -0
- package/esm2015/lib/ColumnFilterConditionGroup.js +7 -0
- package/esm2015/lib/ColumnFilterCondition_combined.js +32433 -0
- package/esm2015/lib/ColumnGroupDescription.js +176 -0
- package/esm2015/lib/ColumnGroupDescriptionCollection.js +90 -0
- package/esm2015/lib/ColumnGrouping.js +7 -0
- package/esm2015/lib/ColumnGroupingView.js +7 -0
- package/esm2015/lib/ColumnGroupingView_combined.js +987 -0
- package/esm2015/lib/ColumnGroupingVisualModelExport.js +85 -0
- package/esm2015/lib/ColumnHiddenChangedEventArgs.js +7 -0
- package/esm2015/lib/ColumnHidingAnimationMode.js +61 -0
- package/esm2015/lib/ColumnInfo.js +7 -0
- package/esm2015/lib/ColumnMovingAnimationMode.js +29 -0
- package/esm2015/lib/ColumnMovingMode.js +16 -0
- package/esm2015/lib/ColumnMovingSeparator.js +7 -0
- package/esm2015/lib/ColumnOptionsIconAlignment.js +29 -0
- package/esm2015/lib/ColumnOptionsIconBehavior.js +33 -0
- package/esm2015/lib/ColumnOptionsToolbarManagerOpeningEventArgs.js +16 -0
- package/esm2015/lib/ColumnPinnedChangedEventArgs.js +7 -0
- package/esm2015/lib/ColumnPinning.js +7 -0
- package/esm2015/lib/ColumnPinningInfo.js +21 -0
- package/esm2015/lib/ColumnPinningView.js +7 -0
- package/esm2015/lib/ColumnPinningView_combined.js +356 -0
- package/esm2015/lib/ColumnPropertySetter.js +37 -0
- package/esm2015/lib/ColumnPropertySettersCollection.js +21 -0
- package/esm2015/lib/ColumnPropertyUpdatingAnimationMode.js +33 -0
- package/esm2015/lib/ColumnResizingAnimationMode.js +29 -0
- package/esm2015/lib/ColumnResizingMode.js +17 -0
- package/esm2015/lib/ColumnResizingSeparator.js +7 -0
- package/esm2015/lib/ColumnShowingAnimationMode.js +61 -0
- package/esm2015/lib/ColumnSortDescription.js +61 -0
- package/esm2015/lib/ColumnSortDescriptionCollection.js +90 -0
- package/esm2015/lib/ColumnSortDirection.js +29 -0
- package/esm2015/lib/ColumnStates.js +11 -0
- package/esm2015/lib/ColumnSummaryDescription.js +220 -0
- package/esm2015/lib/ColumnSummaryDescriptionCollection.js +96 -0
- package/esm2015/lib/ColumnWidth.js +100 -0
- package/esm2015/lib/ComboBoxColumn.js +7 -0
- package/esm2015/lib/ComboEditorView.js +260 -0
- package/esm2015/lib/ComboEditorView_ComboExternal.js +11 -0
- package/esm2015/lib/ComparisonOperatorSelector.js +7 -0
- package/esm2015/lib/ComparisonOperatorSelectorView.js +7 -0
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +887 -0
- package/esm2015/lib/ContentCellModelHelper.js +129 -0
- package/esm2015/lib/CurrentRendererSettings.js +23 -0
- package/esm2015/lib/DataAdapter.js +7 -0
- package/esm2015/lib/DataBindingEventArgs.js +7 -0
- package/esm2015/lib/DataGrid.js +7 -0
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +187 -0
- package/esm2015/lib/DataGridCellEventArgs.js +7 -0
- package/esm2015/lib/DataGridCellLayoutPanel.js +550 -0
- package/esm2015/lib/DataGridColumn.js +7 -0
- package/esm2015/lib/DataGridColumnToolbarManager.js +7 -0
- package/esm2015/lib/DataGridDelayedExecutionManager.js +28 -0
- package/esm2015/lib/DataGridLocaleEn.js +67 -0
- package/esm2015/lib/DataGridPresenterManager.js +181 -0
- package/esm2015/lib/DataGridPropertySetter.js +23 -0
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +67 -0
- package/esm2015/lib/DataGridSelectionMode.js +41 -0
- package/esm2015/lib/DataGridStylingDefaults.js +2 -0
- package/esm2015/lib/DataGridToolbar.js +7 -0
- package/esm2015/lib/DataGridToolbarView.js +7 -0
- package/esm2015/lib/DataGridToolbarView_combined.js +783 -0
- package/esm2015/lib/DataGridViewportManager.js +32 -0
- package/esm2015/lib/DataSourceNotificationBridge.js +7 -0
- package/esm2015/lib/DateEditorView.js +222 -0
- package/esm2015/lib/DateOperatorTypes.js +11 -0
- package/esm2015/lib/DateTimeCell.js +20 -0
- package/esm2015/lib/DateTimeCellModel.js +7 -0
- package/esm2015/lib/DateTimeCellModelExport.js +30 -0
- package/esm2015/lib/DateTimeCellPresenter.js +45 -0
- package/esm2015/lib/DateTimeColumn.js +7 -0
- package/esm2015/lib/DateTimeColumnValueFormatter.js +96 -0
- package/esm2015/lib/DateTimeFormats.js +41 -0
- package/esm2015/lib/DefaultCellActionManager.js +7 -0
- package/esm2015/lib/DefaultCellModelExportUpdater.js +7 -0
- package/esm2015/lib/DefaultGridInfoRequestor.js +7 -0
- package/esm2015/lib/DefaultPlatformPixelConverter.js +20 -0
- package/esm2015/lib/DefinitionBase.js +7 -0
- package/esm2015/lib/DefinitionPropertyUpdatedEventArgs.js +47 -0
- package/esm2015/lib/DragSelectEventArgs.js +54 -0
- package/esm2015/lib/DragType.js +11 -0
- package/esm2015/lib/Dragger.js +186 -0
- package/esm2015/lib/DraggerView.js +139 -0
- package/esm2015/lib/DropDownDataListItem.js +21 -0
- package/esm2015/lib/EditModeClickAction.js +29 -0
- package/esm2015/lib/EditModeType.js +33 -0
- package/esm2015/lib/EditRowDefinition.js +7 -0
- package/esm2015/lib/EditingManager.js +7 -0
- package/esm2015/lib/EditorCell.js +501 -0
- package/esm2015/lib/EditorCellModel.js +7 -0
- package/esm2015/lib/EditorCellModelExport.js +35 -0
- package/esm2015/lib/EditorCellPresenter.js +73 -0
- package/esm2015/lib/EditorDefinition.js +7 -0
- package/esm2015/lib/EditorRowCell.js +21 -0
- package/esm2015/lib/EditorRowCellModel.js +7 -0
- package/esm2015/lib/EditorRowCellPresenter.js +26 -0
- package/esm2015/lib/EditorType.js +37 -0
- package/esm2015/lib/EnterKeyBehaviorAfterEdit.js +37 -0
- package/esm2015/lib/EnterKeyBehaviors.js +41 -0
- package/esm2015/lib/FilterCell.js +544 -0
- package/esm2015/lib/FilterCellModel.js +7 -0
- package/esm2015/lib/FilterCellModelExport.js +48 -0
- package/esm2015/lib/FilterCellPresenter.js +62 -0
- package/esm2015/lib/FilterComparisonType.js +29 -0
- package/esm2015/lib/FilterDialogRenderCompletedEventArgs.js +16 -0
- package/esm2015/lib/FilterLogicalOperator.js +25 -0
- package/esm2015/lib/FilterOperand.js +7 -0
- package/esm2015/lib/FilterRowDefinition.js +7 -0
- package/esm2015/lib/FilterUIType.js +30 -0
- package/esm2015/lib/FixedCellPositions.js +11 -0
- package/esm2015/lib/FormatGroupTextEventArgs.js +23 -0
- package/esm2015/lib/FormatSummaryTextEventArgs.js +24 -0
- package/esm2015/lib/GotFocusEventArgs.js +16 -0
- package/esm2015/lib/GridActivationMode.js +25 -0
- package/esm2015/lib/GridActiveCellChangedEventArgs.js +33 -0
- package/esm2015/lib/GridAnimationManager.js +7 -0
- package/esm2015/lib/GridAnimationManagerAnimationCanceledEventArgs.js +20 -0
- package/esm2015/lib/GridAnimationManagerAnimationCompletedEventArgs.js +20 -0
- package/esm2015/lib/GridAnimationManagerAnimationCreatedEventArgs.js +20 -0
- package/esm2015/lib/GridAnimationPhaseSettings.js +117 -0
- package/esm2015/lib/GridAnimationSettings.js +126 -0
- package/esm2015/lib/GridCellBase.js +664 -0
- package/esm2015/lib/GridCellEditEndedEventArgs.js +7 -0
- package/esm2015/lib/GridCellEditStartedEventArgs.js +7 -0
- package/esm2015/lib/GridCellPosition.js +35 -0
- package/esm2015/lib/GridCellType.js +22 -0
- package/esm2015/lib/GridCellValueChangingEventArgs.js +7 -0
- package/esm2015/lib/GridColumnAnimationSettings.js +307 -0
- package/esm2015/lib/GridColumnButtonOptions.js +7 -0
- package/esm2015/lib/GridColumnButtonOptionsView.js +7 -0
- package/esm2015/lib/GridColumnButtonOptionsView_combined.js +183 -0
- package/esm2015/lib/GridColumnCollection.js +7 -0
- package/esm2015/lib/GridColumnFilterOptions.js +7 -0
- package/esm2015/lib/GridColumnFilterOptionsView.js +7 -0
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +494 -0
- package/esm2015/lib/GridColumnGroupOptions.js +7 -0
- package/esm2015/lib/GridColumnGroupOptionsView.js +7 -0
- package/esm2015/lib/GridColumnGroupOptionsView_combined.js +214 -0
- package/esm2015/lib/GridColumnHideOptions.js +7 -0
- package/esm2015/lib/GridColumnHideOptionsView.js +7 -0
- package/esm2015/lib/GridColumnHideOptionsView_combined.js +152 -0
- package/esm2015/lib/GridColumnMoveOptions.js +7 -0
- package/esm2015/lib/GridColumnMoveOptionsView.js +7 -0
- package/esm2015/lib/GridColumnMoveOptionsView_combined.js +297 -0
- package/esm2015/lib/GridColumnOptions.js +7 -0
- package/esm2015/lib/GridColumnOptionsBase.js +7 -0
- package/esm2015/lib/GridColumnOptionsSectionBase.js +38 -0
- package/esm2015/lib/GridColumnOptionsSimpleSectionBase.js +57 -0
- package/esm2015/lib/GridColumnOptionsUtilities.js +7 -0
- package/esm2015/lib/GridColumnOptionsView.js +7 -0
- package/esm2015/lib/GridColumnOptionsViewBase.js +7 -0
- package/esm2015/lib/GridColumnOptionsViewBase_combined.js +597 -0
- package/esm2015/lib/GridColumnOptionsView_combined.js +835 -0
- package/esm2015/lib/GridColumnPinOptions.js +7 -0
- package/esm2015/lib/GridColumnPinOptionsView.js +7 -0
- package/esm2015/lib/GridColumnPinOptionsView_combined.js +282 -0
- package/esm2015/lib/GridColumnSortOptions.js +7 -0
- package/esm2015/lib/GridColumnSortOptionsView.js +7 -0
- package/esm2015/lib/GridColumnSortOptionsView_combined.js +277 -0
- package/esm2015/lib/GridColumnSpacer.js +68 -0
- package/esm2015/lib/GridColumnSpacerCollection.js +79 -0
- package/esm2015/lib/GridColumnSummaryOptions.js +7 -0
- package/esm2015/lib/GridColumnSummaryOptionsView.js +7 -0
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +436 -0
- package/esm2015/lib/GridColumnWidthChangedEventArgs.js +7 -0
- package/esm2015/lib/GridColumnsAutoGeneratedEventArgs.js +7 -0
- package/esm2015/lib/GridColumnsChangedEventArgs.js +7 -0
- package/esm2015/lib/GridCompoundConditionalStyle.js +7 -0
- package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +33 -0
- package/esm2015/lib/GridConditionalStyle.js +7 -0
- package/esm2015/lib/GridConditionalStyleBoundType.js +16 -0
- package/esm2015/lib/GridConditionalStyleCollection.js +7 -0
- package/esm2015/lib/GridConditionalStyleProperty.js +615 -0
- package/esm2015/lib/GridConditionalStylePropertyCollection.js +21 -0
- package/esm2015/lib/GridConditionalStylePropertyStylingType.js +18 -0
- package/esm2015/lib/GridCustomFilterRequestedEventArgs.js +7 -0
- package/esm2015/lib/GridDataCommittedEventArgs.js +23 -0
- package/esm2015/lib/GridDataCommittingEventArgs.js +23 -0
- package/esm2015/lib/GridEasingFunctionType.js +33 -0
- package/esm2015/lib/GridEffect.js +7 -0
- package/esm2015/lib/GridEffectGroup.js +7 -0
- package/esm2015/lib/GridEffectMainIntent.js +11 -0
- package/esm2015/lib/GridEffectManager.js +7 -0
- package/esm2015/lib/GridEffectSubIntent.js +11 -0
- package/esm2015/lib/GridExpansionIndicator.js +7 -0
- package/esm2015/lib/GridExpansionIndicatorView.js +7 -0
- package/esm2015/lib/GridExpansionIndicatorView_combined.js +317 -0
- package/esm2015/lib/GridExternalWrapper.js +152 -0
- package/esm2015/lib/GridFilterDialog.js +7 -0
- package/esm2015/lib/GridFilterDialogFilterChangeEventArgs.js +20 -0
- package/esm2015/lib/GridFilterDialogOpeningEventArgs.js +20 -0
- package/esm2015/lib/GridFilterDialogPanel.js +7 -0
- package/esm2015/lib/GridFilterDialogView.js +7 -0
- package/esm2015/lib/GridFilterDialogViewModel.js +7 -0
- package/esm2015/lib/GridFilterDialogViewModelGrouping.js +22 -0
- package/esm2015/lib/GridFilterDialogViewModelGroupingLevel.js +21 -0
- package/esm2015/lib/GridFilterDialogViewModelGroupingLevelCollection.js +21 -0
- package/esm2015/lib/GridFilterDialogViewModelRow.js +91 -0
- package/esm2015/lib/GridFilterDialogViewModelRowCollection.js +7 -0
- package/esm2015/lib/GridFilterDialogView_combined.js +1157 -0
- package/esm2015/lib/GridFilterExpressionsEventArgs.js +20 -0
- package/esm2015/lib/GridFilterOperandsCollection.js +7 -0
- package/esm2015/lib/GridGroupDescriptionsChangedEventArgs.js +26 -0
- package/esm2015/lib/GridLayer.js +7 -0
- package/esm2015/lib/GridLayerController.js +7 -0
- package/esm2015/lib/GridLayerExport.js +49 -0
- package/esm2015/lib/GridModuleHelper.js +24 -0
- package/esm2015/lib/GridRowEditEndedEventArgs.js +27 -0
- package/esm2015/lib/GridRowEditStartedEventArgs.js +27 -0
- package/esm2015/lib/GridSelectedCellRangesChangedEventArgs.js +47 -0
- package/esm2015/lib/GridSelectedCellRangesCollection.js +24 -0
- package/esm2015/lib/GridSelectedCellsChangedEventArgs.js +7 -0
- package/esm2015/lib/GridSelectedCellsCollection.js +7 -0
- package/esm2015/lib/GridSelectedItemsChangedEventArgs.js +40 -0
- package/esm2015/lib/GridSelectedItemsCollection.js +42 -0
- package/esm2015/lib/GridSelectedKeysChangedEventArgs.js +40 -0
- package/esm2015/lib/GridSelectedKeysCollection.js +160 -0
- package/esm2015/lib/GridSelectionBehavior.js +25 -0
- package/esm2015/lib/GridSelectionChangedEventArgs.js +16 -0
- package/esm2015/lib/GridSizeChangedEventArgs.js +21 -0
- package/esm2015/lib/GridSortDescriptionsChangedEventArgs.js +26 -0
- package/esm2015/lib/GridSortIndicator.js +7 -0
- package/esm2015/lib/GridSortIndicatorView.js +7 -0
- package/esm2015/lib/GridSortIndicatorView_combined.js +588 -0
- package/esm2015/lib/GridStyleRepository.js +467 -0
- package/esm2015/lib/GridSummaryDescriptionsChangedEventArgs.js +26 -0
- package/esm2015/lib/GridViewportChangedEventArgs.js +27 -0
- package/esm2015/lib/GroupData.js +22 -0
- package/esm2015/lib/GroupHeaderDisplayMode.js +25 -0
- package/esm2015/lib/GroupInfo.js +22 -0
- package/esm2015/lib/GroupSummaryDisplayMode.js +38 -0
- package/esm2015/lib/Header.js +7 -0
- package/esm2015/lib/HeaderClickAction.js +37 -0
- package/esm2015/lib/HeaderRowSeparator.js +7 -0
- package/esm2015/lib/HeaderSeparator.js +7 -0
- package/esm2015/lib/HorizontalPropertyEditorDataSource.js +24 -0
- package/esm2015/lib/HoverManager.js +7 -0
- package/esm2015/lib/ICellActionManager.js +7 -0
- package/esm2015/lib/ICellModelExportUpdater.js +11 -0
- package/esm2015/lib/ICellPresenter.js +7 -0
- package/esm2015/lib/ICellRenderingEngine.js +7 -0
- package/esm2015/lib/IColumnGrouping.js +11 -0
- package/esm2015/lib/IColumnGroupingVisualModelExport.js +11 -0
- package/esm2015/lib/IDataAdapter.js +7 -0
- package/esm2015/lib/IDataGridComponent.js +11 -0
- package/esm2015/lib/IDelayedExecutionManager.js +11 -0
- package/esm2015/lib/IDragger.js +7 -0
- package/esm2015/lib/IDraggerView.js +7 -0
- package/esm2015/lib/IDraggerView_combined.js +15 -0
- package/esm2015/lib/IEditorView.js +11 -0
- package/esm2015/lib/IExternalDefinitionBase.js +7 -0
- package/esm2015/lib/IExternalGrid.js +7 -0
- package/esm2015/lib/IExternalTemplateColumn.js +11 -0
- package/esm2015/lib/IExternalTemplateHeaderColumn.js +11 -0
- package/esm2015/lib/IExternalTemplateSectionHeader.js +11 -0
- package/esm2015/lib/IGridInfoRequestor.js +7 -0
- package/esm2015/lib/INativeCell.js +11 -0
- package/esm2015/lib/IPlatformPixelConverter.js +11 -0
- package/esm2015/lib/IPropertySetter.js +11 -0
- package/esm2015/lib/ISummaryChooserView.js +7 -0
- package/esm2015/lib/ISummaryChooserView_combined.js +448 -0
- package/esm2015/lib/IToolbarVisualModelExport.js +11 -0
- package/esm2015/lib/IViewportManager.js +11 -0
- package/esm2015/lib/ImageCell.js +119 -0
- package/esm2015/lib/ImageCellModel.js +7 -0
- package/esm2015/lib/ImageCellModelExport.js +28 -0
- package/esm2015/lib/ImageCellPresenter.js +91 -0
- package/esm2015/lib/ImageColumn.js +7 -0
- package/esm2015/lib/ImageResourceType.js +37 -0
- package/esm2015/lib/ImageStretchOptions.js +29 -0
- package/esm2015/lib/LayoutAction.js +49 -0
- package/esm2015/lib/LostFocusEventArgs.js +16 -0
- package/esm2015/lib/MergedCellEvaluationCriteria.js +29 -0
- package/esm2015/lib/MergedCellInfo.js +26 -0
- package/esm2015/lib/MergedCellMode.js +34 -0
- package/esm2015/lib/ModelStates.js +11 -0
- package/esm2015/lib/ModelTypes.js +11 -0
- package/esm2015/lib/MultiColumnComboBox.js +7 -0
- package/esm2015/lib/MultiColumnComboBoxDataSourceNotificationHandler.js +7 -0
- package/esm2015/lib/MultiColumnComboBoxSelectedItemChangeType.js +20 -0
- package/esm2015/lib/MultiColumnComboBoxTextChangedEventArgs.js +29 -0
- package/esm2015/lib/MultiColumnComboBoxUtilities.js +92 -0
- package/esm2015/lib/MultiColumnComboBoxValueChangedEventArgs.js +29 -0
- package/esm2015/lib/MultiColumnComboBoxView.js +7 -0
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +2784 -0
- package/esm2015/lib/MultiColumnComboVisualModelExport.js +187 -0
- package/esm2015/lib/MultipleDataSourceNotifier.js +61 -0
- package/esm2015/lib/NativeUIComboFactory.js +47 -0
- package/esm2015/lib/NativeUIGridFactory.js +70 -0
- package/esm2015/lib/NumericCell.js +28 -0
- package/esm2015/lib/NumericCellFormatter.js +7 -0
- package/esm2015/lib/NumericCellModel.js +7 -0
- package/esm2015/lib/NumericCellModelExport.js +32 -0
- package/esm2015/lib/NumericCellPresenter.js +45 -0
- package/esm2015/lib/NumericColumn.js +7 -0
- package/esm2015/lib/NumericEditorView.js +31 -0
- package/esm2015/lib/OperatorModel.js +24 -0
- package/esm2015/lib/OperatorSelectorClosingEventArgs.js +16 -0
- package/esm2015/lib/OperatorSelectorOpeningEventArgs.js +16 -0
- package/esm2015/lib/OperatorSelectorValueChangedEventArgs.js +33 -0
- package/esm2015/lib/PageChangedEventArgs.js +33 -0
- package/esm2015/lib/PagedDataProvider.js +7 -0
- package/esm2015/lib/Pager.js +7 -0
- package/esm2015/lib/PagerDataSourceNotificationBridge.js +7 -0
- package/esm2015/lib/PagerGridDataSourceNotificationBridge.js +7 -0
- package/esm2015/lib/PagerView.js +7 -0
- package/esm2015/lib/PagerVisualModelExport.js +82 -0
- package/esm2015/lib/PinnedAreaSeparator.js +7 -0
- package/esm2015/lib/PinnedPositions.js +29 -0
- package/esm2015/lib/PinnedRowInfo.js +7 -0
- package/esm2015/lib/PlaceholderView.js +69 -0
- package/esm2015/lib/PrimaryKeyValue.js +87 -0
- package/esm2015/lib/PropertyEditor.js +7 -0
- package/esm2015/lib/PropertyEditorView.js +7 -0
- package/esm2015/lib/PropertyEditorView_combined.js +1652 -0
- package/esm2015/lib/PushRowResult.js +7 -0
- package/esm2015/lib/PushRowSettings.js +7 -0
- package/esm2015/lib/RecyclingManager.js +7 -0
- package/esm2015/lib/ResponsiveEngine.js +7 -0
- package/esm2015/lib/ResponsivePhase.js +7 -0
- package/esm2015/lib/ResponsivePhasesCollection.js +7 -0
- package/esm2015/lib/ResponsiveState.js +7 -0
- package/esm2015/lib/ResponsiveStateEnteredEventArgs.js +16 -0
- package/esm2015/lib/ResponsiveStateEnteringEventArgs.js +16 -0
- package/esm2015/lib/ResponsiveStateExitedEventArgs.js +16 -0
- package/esm2015/lib/ResponsiveStatesCollection.js +7 -0
- package/esm2015/lib/RowCellsEffect.js +7 -0
- package/esm2015/lib/RowEffect.js +7 -0
- package/esm2015/lib/RowHoverAnimationMode.js +29 -0
- package/esm2015/lib/RowPath.js +110 -0
- package/esm2015/lib/RowRange.js +38 -0
- package/esm2015/lib/RowSelectionAnimationMode.js +29 -0
- package/esm2015/lib/RowSeparator.js +7 -0
- package/esm2015/lib/RowSeparatorCell.js +20 -0
- package/esm2015/lib/RowSeparatorCellPresenter.js +23 -0
- package/esm2015/lib/RowSeparatorModel.js +7 -0
- package/esm2015/lib/RowSeparatorModelExport.js +23 -0
- package/esm2015/lib/SaveLayoutColumn.js +7 -0
- package/esm2015/lib/SaveLayoutFilterInfo.js +173 -0
- package/esm2015/lib/SaveLayoutGroupInfo.js +51 -0
- package/esm2015/lib/SaveLayoutSortInfo.js +54 -0
- package/esm2015/lib/SectionFooter.js +7 -0
- package/esm2015/lib/SectionHeader.js +7 -0
- package/esm2015/lib/SectionHeaderCell.js +48 -0
- package/esm2015/lib/SectionHeaderCellModel.js +7 -0
- package/esm2015/lib/SectionHeaderCellModelExport.js +62 -0
- package/esm2015/lib/SectionHeaderCellPresenter.js +51 -0
- package/esm2015/lib/SectionInfo.js +7 -0
- package/esm2015/lib/SelectAllCheckboxChangedEventArgs.js +20 -0
- package/esm2015/lib/SelectionManager.js +7 -0
- package/esm2015/lib/SortIndicatorRenderCompletedEventArgs.js +16 -0
- package/esm2015/lib/SortIndicatorStyle.js +32 -0
- package/esm2015/lib/SortManager.js +7 -0
- package/esm2015/lib/SortMode.js +37 -0
- package/esm2015/lib/SpacerEffect.js +7 -0
- package/esm2015/lib/SpatialEngine.js +7 -0
- package/esm2015/lib/StringOperatorTypes.js +11 -0
- package/esm2015/lib/SummaryCell.js +74 -0
- package/esm2015/lib/SummaryCellModel.js +7 -0
- package/esm2015/lib/SummaryCellModelExport.js +88 -0
- package/esm2015/lib/SummaryCellPresenter.js +51 -0
- package/esm2015/lib/SummaryChangedEventArgs.js +21 -0
- package/esm2015/lib/SummaryChooser.js +7 -0
- package/esm2015/lib/SummaryChooserItem.js +22 -0
- package/esm2015/lib/SummaryChooserView.js +7 -0
- package/esm2015/lib/SummaryData.js +24 -0
- package/esm2015/lib/SummaryRow.js +7 -0
- package/esm2015/lib/SummaryRowRoot.js +7 -0
- package/esm2015/lib/SummaryRowSection.js +7 -0
- package/esm2015/lib/SummaryScope.js +33 -0
- package/esm2015/lib/TemplateCell.js +55 -0
- package/esm2015/lib/TemplateCellContainer.js +33 -0
- package/esm2015/lib/TemplateCellModel.js +7 -0
- package/esm2015/lib/TemplateCellModelExport.js +27 -0
- package/esm2015/lib/TemplateCellPresenter.js +37 -0
- package/esm2015/lib/TemplateCellUpdatingEventArgs.js +7 -0
- package/esm2015/lib/TemplateColumn.js +7 -0
- package/esm2015/lib/TemplateHeader.js +48 -0
- package/esm2015/lib/TemplateHeaderCell.js +30 -0
- package/esm2015/lib/TemplateHeaderCellModel.js +61 -0
- package/esm2015/lib/TemplateHeaderCellModelExport.js +27 -0
- package/esm2015/lib/TemplateHeaderCellPresenter.js +38 -0
- package/esm2015/lib/TemplateHeaderCellUpdatingEventArgs.js +33 -0
- package/esm2015/lib/TemplateSectionHeader.js +39 -0
- package/esm2015/lib/TemplateSectionHeaderCellModel.js +17 -0
- package/esm2015/lib/TemplateSectionHeaderCellModelExport.js +23 -0
- package/esm2015/lib/TemplateSectionHeaderCellUpdatingEventArgs.js +33 -0
- package/esm2015/lib/TextCell.js +61 -0
- package/esm2015/lib/TextCellLineBreakMode.js +33 -0
- package/esm2015/lib/TextCellModel.js +7 -0
- package/esm2015/lib/TextCellModelExport.js +30 -0
- package/esm2015/lib/TextCellPresenter.js +47 -0
- package/esm2015/lib/TextColumn.js +7 -0
- package/esm2015/lib/TextEditorView.js +174 -0
- package/esm2015/lib/TextHeader.js +7 -0
- package/esm2015/lib/TextHeaderCell.js +300 -0
- package/esm2015/lib/TextHeaderCellModel.js +7 -0
- package/esm2015/lib/TextHeaderCellModelExport.js +23 -0
- package/esm2015/lib/TextHeaderCellPresenter.js +87 -0
- package/esm2015/lib/TextIconSetBuiltInTypes.js +18 -0
- package/esm2015/lib/TextIconSetConditionalStyle.js +101 -0
- package/esm2015/lib/TextVisualModelExport.js +44 -0
- package/esm2015/lib/ToolbarVisualModelExport.js +20 -0
- package/esm2015/lib/VerticalSeparatorCell.js +72 -0
- package/esm2015/lib/VerticalSeparatorCellModel.js +7 -0
- package/esm2015/lib/VerticalSeparatorCellPresenter.js +23 -0
- package/esm2015/lib/VisibilityEngine.js +7 -0
- package/esm2015/lib/VisualModel.js +7 -0
- package/esm2015/lib/VisualModelExport.js +231 -0
- package/esm2015/lib/igc-apply-button-click-event-args.js +30 -0
- package/esm2015/lib/igc-cancel-button-click-event-args.js +30 -0
- package/esm2015/lib/igc-cell-info.js +986 -0
- package/esm2015/lib/igc-cell-key-module.js +15 -0
- package/esm2015/lib/igc-cell-key.js +84 -0
- package/esm2015/lib/igc-cell-range-module.js +15 -0
- package/esm2015/lib/igc-cell-range.js +77 -0
- package/esm2015/lib/igc-cell-style-requested-event-args.js +60 -0
- package/esm2015/lib/igc-checkbox-list-component.js +932 -0
- package/esm2015/lib/igc-checkbox-list-index-type-changed-event-args.js +44 -0
- package/esm2015/lib/igc-checkbox-list-keys-cleared-event-args.js +30 -0
- package/esm2015/lib/igc-checkbox-list-module.js +34 -0
- package/esm2015/lib/igc-checked-changed-event-args.js +53 -0
- package/esm2015/lib/igc-column-chooser-component.js +333 -0
- package/esm2015/lib/igc-column-chooser-module.js +21 -0
- package/esm2015/lib/igc-column-exchanger.js +50 -0
- package/esm2015/lib/igc-column-exchangers-collection.js +53 -0
- package/esm2015/lib/igc-column-group-description-collection.js +115 -0
- package/esm2015/lib/igc-column-group-description-module.js +15 -0
- package/esm2015/lib/igc-column-group-description.js +125 -0
- package/esm2015/lib/igc-column-grouping-component.js +378 -0
- package/esm2015/lib/igc-column-grouping-module.js +17 -0
- package/esm2015/lib/igc-column-hidden-changed-event-args.js +55 -0
- package/esm2015/lib/igc-column-moving-separator-component.js +93 -0
- package/esm2015/lib/igc-column-moving-separator-module.js +16 -0
- package/esm2015/lib/igc-column-pinned-changed-event-args.js +65 -0
- package/esm2015/lib/igc-column-pinning-component.js +333 -0
- package/esm2015/lib/igc-column-pinning-module.js +19 -0
- package/esm2015/lib/igc-column-property-setter.js +68 -0
- package/esm2015/lib/igc-column-property-setters-collection.js +53 -0
- package/esm2015/lib/igc-column-resizing-separator-component.js +83 -0
- package/esm2015/lib/igc-column-resizing-separator-module.js +16 -0
- package/esm2015/lib/igc-column-sort-description-collection.js +115 -0
- package/esm2015/lib/igc-column-sort-description-module.js +15 -0
- package/esm2015/lib/igc-column-sort-description.js +70 -0
- package/esm2015/lib/igc-column-summary-description-collection.js +112 -0
- package/esm2015/lib/igc-column-summary-description-module.js +15 -0
- package/esm2015/lib/igc-column-summary-description.js +213 -0
- package/esm2015/lib/igc-column-width-module.js +15 -0
- package/esm2015/lib/igc-column-width.js +69 -0
- package/esm2015/lib/igc-combo-box-column-component.js +121 -0
- package/esm2015/lib/igc-combo-box-column-module.js +16 -0
- package/esm2015/lib/igc-data-binding-event-args.js +98 -0
- package/esm2015/lib/igc-data-grid-all-columns-module.js +32 -0
- package/esm2015/lib/igc-data-grid-cell-event-args.js +113 -0
- package/esm2015/lib/igc-data-grid-column-component.js +827 -0
- package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +522 -0
- package/esm2015/lib/igc-data-grid-component.js +4412 -0
- package/esm2015/lib/igc-data-grid-core-module.js +57 -0
- package/esm2015/lib/igc-data-grid-expansion-indicator-component.js +255 -0
- package/esm2015/lib/igc-data-grid-filter-dialog-component.js +399 -0
- package/esm2015/lib/igc-data-grid-locale-en-module.js +13 -0
- package/esm2015/lib/igc-data-grid-module.js +28 -0
- package/esm2015/lib/igc-data-grid-pager-component.js +374 -0
- package/esm2015/lib/igc-data-grid-pager-module.js +16 -0
- package/esm2015/lib/igc-data-grid-sort-indicator-component.js +292 -0
- package/esm2015/lib/igc-data-grid-toolbar-component.js +460 -0
- package/esm2015/lib/igc-data-grid-toolbar-module.js +25 -0
- package/esm2015/lib/igc-date-time-cell-info.js +86 -0
- package/esm2015/lib/igc-date-time-column-component.js +178 -0
- package/esm2015/lib/igc-date-time-column-module.js +16 -0
- package/esm2015/lib/igc-definition-base-component.js +890 -0
- package/esm2015/lib/igc-edit-row-definition-component.js +72 -0
- package/esm2015/lib/igc-edit-row-definition-module.js +16 -0
- package/esm2015/lib/igc-editor-cell-info.js +142 -0
- package/esm2015/lib/igc-editor-definition-component.js +72 -0
- package/esm2015/lib/igc-editor-definition-module.js +16 -0
- package/esm2015/lib/igc-editor-row-cell-info.js +19 -0
- package/esm2015/lib/igc-filter-cell-info.js +140 -0
- package/esm2015/lib/igc-filter-dialog-render-completed-event-args.js +30 -0
- package/esm2015/lib/igc-filter-operand-module.js +15 -0
- package/esm2015/lib/igc-filter-operand.js +124 -0
- package/esm2015/lib/igc-filter-row-definition-component.js +112 -0
- package/esm2015/lib/igc-filter-row-definition-module.js +16 -0
- package/esm2015/lib/igc-format-group-text-event-args.js +66 -0
- package/esm2015/lib/igc-format-summary-text-event-args.js +75 -0
- package/esm2015/lib/igc-got-focus-event-args.js +30 -0
- package/esm2015/lib/igc-grid-active-cell-changed-event-args.js +84 -0
- package/esm2015/lib/igc-grid-animation-phase-settings.js +106 -0
- package/esm2015/lib/igc-grid-animation-settings.js +41 -0
- package/esm2015/lib/igc-grid-cell-edit-ended-event-args.js +69 -0
- package/esm2015/lib/igc-grid-cell-edit-started-event-args.js +69 -0
- package/esm2015/lib/igc-grid-cell-position-module.js +15 -0
- package/esm2015/lib/igc-grid-cell-position.js +56 -0
- package/esm2015/lib/igc-grid-cell-value-changing-event-args.js +137 -0
- package/esm2015/lib/igc-grid-column-animation-settings.js +41 -0
- package/esm2015/lib/igc-grid-column-button-options-component.js +167 -0
- package/esm2015/lib/igc-grid-column-button-options-module.js +17 -0
- package/esm2015/lib/igc-grid-column-collection.js +53 -0
- package/esm2015/lib/igc-grid-column-filter-options-component.js +159 -0
- package/esm2015/lib/igc-grid-column-filter-options-module.js +19 -0
- package/esm2015/lib/igc-grid-column-group-options-component.js +95 -0
- package/esm2015/lib/igc-grid-column-group-options-module.js +17 -0
- package/esm2015/lib/igc-grid-column-hide-options-component.js +95 -0
- package/esm2015/lib/igc-grid-column-hide-options-module.js +17 -0
- package/esm2015/lib/igc-grid-column-move-options-component.js +107 -0
- package/esm2015/lib/igc-grid-column-move-options-module.js +17 -0
- package/esm2015/lib/igc-grid-column-options-base-component.js +340 -0
- package/esm2015/lib/igc-grid-column-options-component.js +506 -0
- package/esm2015/lib/igc-grid-column-options-module.js +33 -0
- package/esm2015/lib/igc-grid-column-options-section-base-component.js +56 -0
- package/esm2015/lib/igc-grid-column-options-simple-section-base-component.js +63 -0
- package/esm2015/lib/igc-grid-column-pin-options-component.js +107 -0
- package/esm2015/lib/igc-grid-column-pin-options-module.js +17 -0
- package/esm2015/lib/igc-grid-column-sort-options-component.js +115 -0
- package/esm2015/lib/igc-grid-column-sort-options-module.js +17 -0
- package/esm2015/lib/igc-grid-column-summary-options-component.js +158 -0
- package/esm2015/lib/igc-grid-column-summary-options-module.js +21 -0
- package/esm2015/lib/igc-grid-column-width-changed-event-args.js +105 -0
- package/esm2015/lib/igc-grid-columns-auto-generated-event-args.js +67 -0
- package/esm2015/lib/igc-grid-columns-changed-event-args.js +67 -0
- package/esm2015/lib/igc-grid-compound-conditional-style-component.js +88 -0
- package/esm2015/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +48 -0
- package/esm2015/lib/igc-grid-conditional-style-collection.js +53 -0
- package/esm2015/lib/igc-grid-conditional-style-component.js +413 -0
- package/esm2015/lib/igc-grid-conditional-style-module.js +16 -0
- package/esm2015/lib/igc-grid-conditional-style-property-collection.js +53 -0
- package/esm2015/lib/igc-grid-conditional-style-property-component.js +400 -0
- package/esm2015/lib/igc-grid-conditional-style-property-module.js +16 -0
- package/esm2015/lib/igc-grid-custom-filter-requested-event-args.js +101 -0
- package/esm2015/lib/igc-grid-data-committed-event-args.js +45 -0
- package/esm2015/lib/igc-grid-data-committing-event-args.js +45 -0
- package/esm2015/lib/igc-grid-filter-dialog-filter-change-event-args.js +36 -0
- package/esm2015/lib/igc-grid-filter-dialog-opening-event-args.js +48 -0
- package/esm2015/lib/igc-grid-filter-dialog-view-model-grouping-level-collection.js +53 -0
- package/esm2015/lib/igc-grid-filter-dialog-view-model-grouping-level.js +53 -0
- package/esm2015/lib/igc-grid-filter-dialog-view-model-grouping.js +57 -0
- package/esm2015/lib/igc-grid-filter-dialog-view-model-row-collection.js +53 -0
- package/esm2015/lib/igc-grid-filter-dialog-view-model-row.js +86 -0
- package/esm2015/lib/igc-grid-filter-dialog-view-model.js +148 -0
- package/esm2015/lib/igc-grid-filter-expressions-event-args.js +53 -0
- package/esm2015/lib/igc-grid-filter-operands-collection.js +53 -0
- package/esm2015/lib/igc-grid-group-descriptions-changed-event-args.js +56 -0
- package/esm2015/lib/igc-grid-row-edit-ended-event-args.js +48 -0
- package/esm2015/lib/igc-grid-row-edit-started-event-args.js +48 -0
- package/esm2015/lib/igc-grid-selected-cell-ranges-changed-event-args.js +169 -0
- package/esm2015/lib/igc-grid-selected-cell-ranges-collection.js +53 -0
- package/esm2015/lib/igc-grid-selected-cells-changed-event-args.js +136 -0
- package/esm2015/lib/igc-grid-selected-cells-collection.js +53 -0
- package/esm2015/lib/igc-grid-selected-items-changed-event-args.js +136 -0
- package/esm2015/lib/igc-grid-selected-items-collection.js +30 -0
- package/esm2015/lib/igc-grid-selected-keys-changed-event-args.js +136 -0
- package/esm2015/lib/igc-grid-selected-keys-collection.js +53 -0
- package/esm2015/lib/igc-grid-selection-changed-event-args.js +33 -0
- package/esm2015/lib/igc-grid-size-changed-event-args.js +51 -0
- package/esm2015/lib/igc-grid-sort-descriptions-changed-event-args.js +56 -0
- package/esm2015/lib/igc-grid-summary-descriptions-changed-event-args.js +56 -0
- package/esm2015/lib/igc-group-data.js +68 -0
- package/esm2015/lib/igc-header-component.js +134 -0
- package/esm2015/lib/igc-header-row-separator-component.js +72 -0
- package/esm2015/lib/igc-header-row-separator-module.js +16 -0
- package/esm2015/lib/igc-header-separator-component.js +69 -0
- package/esm2015/lib/igc-header-separator-module.js +16 -0
- package/esm2015/lib/igc-horizontal-property-editor-data-source.js +53 -0
- package/esm2015/lib/igc-image-cell-info.js +49 -0
- package/esm2015/lib/igc-image-column-component.js +121 -0
- package/esm2015/lib/igc-image-column-module.js +16 -0
- package/esm2015/lib/igc-lost-focus-event-args.js +30 -0
- package/esm2015/lib/igc-multi-column-combo-box-component.js +1431 -0
- package/esm2015/lib/igc-multi-column-combo-box-module.js +29 -0
- package/esm2015/lib/igc-multi-column-combo-box-text-changed-event-args.js +26 -0
- package/esm2015/lib/igc-multi-column-combo-box-value-changed-event-args.js +26 -0
- package/esm2015/lib/igc-numeric-cell-info.js +148 -0
- package/esm2015/lib/igc-numeric-column-component.js +224 -0
- package/esm2015/lib/igc-numeric-column-module.js +16 -0
- package/esm2015/lib/igc-operator-selector-closing-event-args.js +30 -0
- package/esm2015/lib/igc-operator-selector-opening-event-args.js +33 -0
- package/esm2015/lib/igc-operator-selector-value-changed-event-args.js +45 -0
- package/esm2015/lib/igc-page-changed-event-args.js +52 -0
- package/esm2015/lib/igc-pinned-area-separator-component.js +69 -0
- package/esm2015/lib/igc-pinned-area-separator-module.js +16 -0
- package/esm2015/lib/igc-primary-key-value-module.js +15 -0
- package/esm2015/lib/igc-primary-key-value.js +69 -0
- package/esm2015/lib/igc-property-editor-component.js +486 -0
- package/esm2015/lib/igc-property-editor-module.js +39 -0
- package/esm2015/lib/igc-responsive-phase.js +142 -0
- package/esm2015/lib/igc-responsive-phases-collection.js +53 -0
- package/esm2015/lib/igc-responsive-state-entered-event-args.js +33 -0
- package/esm2015/lib/igc-responsive-state-entering-event-args.js +33 -0
- package/esm2015/lib/igc-responsive-state-exited-event-args.js +33 -0
- package/esm2015/lib/igc-responsive-state.js +208 -0
- package/esm2015/lib/igc-responsive-states-collection.js +53 -0
- package/esm2015/lib/igc-row-separator-component.js +72 -0
- package/esm2015/lib/igc-row-separator-info.js +19 -0
- package/esm2015/lib/igc-row-separator-module.js +16 -0
- package/esm2015/lib/igc-section-footer-component.js +72 -0
- package/esm2015/lib/igc-section-footer-module.js +16 -0
- package/esm2015/lib/igc-section-header-cell-info.js +48 -0
- package/esm2015/lib/igc-section-header-component.js +141 -0
- package/esm2015/lib/igc-section-header-module.js +16 -0
- package/esm2015/lib/igc-select-all-checkbox-changed-event-args.js +37 -0
- package/esm2015/lib/igc-sort-indicator-render-completed-event-args.js +30 -0
- package/esm2015/lib/igc-summary-cell-info.js +59 -0
- package/esm2015/lib/igc-summary-changed-event-args.js +52 -0
- package/esm2015/lib/igc-summary-chooser-module.js +13 -0
- package/esm2015/lib/igc-summary-data.js +73 -0
- package/esm2015/lib/igc-summary-row-component.js +152 -0
- package/esm2015/lib/igc-summary-row-root-component.js +69 -0
- package/esm2015/lib/igc-summary-row-root-module.js +16 -0
- package/esm2015/lib/igc-summary-row-section-component.js +69 -0
- package/esm2015/lib/igc-summary-row-section-module.js +16 -0
- package/esm2015/lib/igc-template-cell-info.js +28 -0
- package/esm2015/lib/igc-template-cell-updating-event-args.js +111 -0
- package/esm2015/lib/igc-template-column-component.js +273 -0
- package/esm2015/lib/igc-template-column-module.js +16 -0
- package/esm2015/lib/igc-template-header-cell-info.js +29 -0
- package/esm2015/lib/igc-template-header-cell-updating-event-args.js +111 -0
- package/esm2015/lib/igc-template-header-component.js +102 -0
- package/esm2015/lib/igc-template-header-module.js +16 -0
- package/esm2015/lib/igc-template-section-header-cell-info.js +19 -0
- package/esm2015/lib/igc-template-section-header-cell-updating-event-args.js +86 -0
- package/esm2015/lib/igc-template-section-header-component.js +102 -0
- package/esm2015/lib/igc-template-section-header-module.js +16 -0
- package/esm2015/lib/igc-text-cell-info.js +28 -0
- package/esm2015/lib/igc-text-column-component.js +110 -0
- package/esm2015/lib/igc-text-column-module.js +16 -0
- package/esm2015/lib/igc-text-header-cell-info.js +65 -0
- package/esm2015/lib/igc-text-header-component.js +72 -0
- package/esm2015/lib/igc-text-header-module.js +16 -0
- package/esm2015/lib/igc-text-icon-set-conditional-style-component.js +94 -0
- package/esm2015/lib/igc-text-icon-set-conditional-style-module.js +16 -0
- package/esm2015/lib/igc-vertical-separator-cell-info.js +19 -0
- package/esm2015/public_api.js +687 -0
- package/esm5/igniteui-webcomponents-data-grids.js +1 -0
- package/esm5/lib/AccessibilityRow.js +115 -0
- package/esm5/lib/ActivationManager.js +7 -0
- package/esm5/lib/ApplyButtonClickEventArgs.js +20 -0
- package/esm5/lib/BaseEditorView.js +232 -0
- package/esm5/lib/BrowserExecutionContext.js +57 -0
- package/esm5/lib/BrowserPixelConverter.js +24 -0
- package/esm5/lib/BrowserTickProvider.js +87 -0
- package/esm5/lib/CalculationParameters.js +36 -0
- package/esm5/lib/CancelButtonClickEventArgs.js +20 -0
- package/esm5/lib/CanvasCellPresenterBase.js +80 -0
- package/esm5/lib/CanvasContentCellModelHelper.js +85 -0
- package/esm5/lib/CanvasDateTimeCell.js +21 -0
- package/esm5/lib/CanvasDateTimeCellPresenter.js +50 -0
- package/esm5/lib/CanvasGridCellBase.js +872 -0
- package/esm5/lib/CanvasImageCell.js +72 -0
- package/esm5/lib/CanvasImageCellPresenter.js +95 -0
- package/esm5/lib/CanvasNumericCell.js +24 -0
- package/esm5/lib/CanvasNumericCellPresenter.js +50 -0
- package/esm5/lib/CanvasPlaceholderView.js +80 -0
- package/esm5/lib/CanvasRowSeparatorCell.js +21 -0
- package/esm5/lib/CanvasRowSeparatorCellPresenter.js +28 -0
- package/esm5/lib/CanvasSectionHeaderCell.js +27 -0
- package/esm5/lib/CanvasSectionHeaderCellPresenter.js +56 -0
- package/esm5/lib/CanvasSummaryCell.js +100 -0
- package/esm5/lib/CanvasSummaryCellPresenter.js +47 -0
- package/esm5/lib/CanvasTemplateCell.js +38 -0
- package/esm5/lib/CanvasTemplateCellContainer.js +42 -0
- package/esm5/lib/CanvasTemplateCellPresenter.js +44 -0
- package/esm5/lib/CanvasTemplateHeaderCell.js +38 -0
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +44 -0
- package/esm5/lib/CanvasTextCell.js +27 -0
- package/esm5/lib/CanvasTextCellPresenter.js +52 -0
- package/esm5/lib/CanvasTextHeaderCell.js +63 -0
- package/esm5/lib/CanvasTextHeaderCellPresenter.js +75 -0
- package/esm5/lib/CanvasVerticalSeparatorCell.js +21 -0
- package/esm5/lib/CanvasVerticalSeparatorCellPresenter.js +28 -0
- package/esm5/lib/CellContentHorizontalAlignment.js +37 -0
- package/esm5/lib/CellContentVerticalAlignment.js +37 -0
- package/esm5/lib/CellDataLoadedAnimationMode.js +29 -0
- package/esm5/lib/CellEffect.js +7 -0
- package/esm5/lib/CellKey.js +7 -0
- package/esm5/lib/CellModel.js +7 -0
- package/esm5/lib/CellModelExport.js +122 -0
- package/esm5/lib/CellPath.js +319 -0
- package/esm5/lib/CellPositionEffect.js +7 -0
- package/esm5/lib/CellPresenterBase.js +110 -0
- package/esm5/lib/CellPropertyAnimationType.js +65 -0
- package/esm5/lib/CellRange.js +82 -0
- package/esm5/lib/CellSelectionAnimationMode.js +29 -0
- package/esm5/lib/CellStyleRequestedEventArgs.js +54 -0
- package/esm5/lib/CheckboxList.js +7 -0
- package/esm5/lib/CheckboxListBridge.js +283 -0
- package/esm5/lib/CheckboxListExternal.js +11 -0
- package/esm5/lib/CheckboxListExternalIndexType.js +11 -0
- package/esm5/lib/CheckboxListExternalIndexTypeChangedEventArgs.js +23 -0
- package/esm5/lib/CheckboxListExternalKeysClearedEventArgs.js +20 -0
- package/esm5/lib/CheckboxListIndexType.js +16 -0
- package/esm5/lib/CheckboxListIndexTypeChangedEventArgs.js +23 -0
- package/esm5/lib/CheckboxListKeysClearedEventArgs.js +20 -0
- package/esm5/lib/CheckboxListView.js +7 -0
- package/esm5/lib/CheckboxListViewExternal.js +11 -0
- package/esm5/lib/CheckboxListView_combined.js +2206 -0
- package/esm5/lib/CheckedChangedEventArgs.js +24 -0
- package/esm5/lib/CloneDataSourceFilterOperation.js +20 -0
- package/esm5/lib/ColumnCellsEffect.js +7 -0
- package/esm5/lib/ColumnChooser.js +7 -0
- package/esm5/lib/ColumnChooserInfo.js +23 -0
- package/esm5/lib/ColumnChooserView.js +7 -0
- package/esm5/lib/ColumnChooserView_combined.js +465 -0
- package/esm5/lib/ColumnComparisonConditionOperatorType.js +62 -0
- package/esm5/lib/ColumnComparisonFilterCondition.js +7 -0
- package/esm5/lib/ColumnController.js +7 -0
- package/esm5/lib/ColumnCustomFilterCondition.js +7 -0
- package/esm5/lib/ColumnEffect.js +7 -0
- package/esm5/lib/ColumnExchanger.js +7 -0
- package/esm5/lib/ColumnExchangersCollection.js +7 -0
- package/esm5/lib/ColumnExchangingAnimationMode.js +61 -0
- package/esm5/lib/ColumnFilterCondition.js +7 -0
- package/esm5/lib/ColumnFilterConditionCollection.js +7 -0
- package/esm5/lib/ColumnFilterConditionGroup.js +7 -0
- package/esm5/lib/ColumnFilterCondition_combined.js +36272 -0
- package/esm5/lib/ColumnGroupDescription.js +208 -0
- package/esm5/lib/ColumnGroupDescriptionCollection.js +104 -0
- package/esm5/lib/ColumnGrouping.js +7 -0
- package/esm5/lib/ColumnGroupingView.js +7 -0
- package/esm5/lib/ColumnGroupingView_combined.js +1069 -0
- package/esm5/lib/ColumnGroupingVisualModelExport.js +87 -0
- package/esm5/lib/ColumnHiddenChangedEventArgs.js +7 -0
- package/esm5/lib/ColumnHidingAnimationMode.js +61 -0
- package/esm5/lib/ColumnInfo.js +7 -0
- package/esm5/lib/ColumnMovingAnimationMode.js +29 -0
- package/esm5/lib/ColumnMovingMode.js +16 -0
- package/esm5/lib/ColumnMovingSeparator.js +7 -0
- package/esm5/lib/ColumnOptionsIconAlignment.js +29 -0
- package/esm5/lib/ColumnOptionsIconBehavior.js +33 -0
- package/esm5/lib/ColumnOptionsToolbarManagerOpeningEventArgs.js +20 -0
- package/esm5/lib/ColumnPinnedChangedEventArgs.js +7 -0
- package/esm5/lib/ColumnPinning.js +7 -0
- package/esm5/lib/ColumnPinningInfo.js +23 -0
- package/esm5/lib/ColumnPinningView.js +7 -0
- package/esm5/lib/ColumnPinningView_combined.js +412 -0
- package/esm5/lib/ColumnPropertySetter.js +43 -0
- package/esm5/lib/ColumnPropertySettersCollection.js +22 -0
- package/esm5/lib/ColumnPropertyUpdatingAnimationMode.js +33 -0
- package/esm5/lib/ColumnResizingAnimationMode.js +29 -0
- package/esm5/lib/ColumnResizingMode.js +17 -0
- package/esm5/lib/ColumnResizingSeparator.js +7 -0
- package/esm5/lib/ColumnShowingAnimationMode.js +61 -0
- package/esm5/lib/ColumnSortDescription.js +75 -0
- package/esm5/lib/ColumnSortDescriptionCollection.js +104 -0
- package/esm5/lib/ColumnSortDirection.js +29 -0
- package/esm5/lib/ColumnStates.js +11 -0
- package/esm5/lib/ColumnSummaryDescription.js +279 -0
- package/esm5/lib/ColumnSummaryDescriptionCollection.js +110 -0
- package/esm5/lib/ColumnWidth.js +110 -0
- package/esm5/lib/ComboBoxColumn.js +7 -0
- package/esm5/lib/ComboEditorView.js +274 -0
- package/esm5/lib/ComboEditorView_ComboExternal.js +11 -0
- package/esm5/lib/ComparisonOperatorSelector.js +7 -0
- package/esm5/lib/ComparisonOperatorSelectorView.js +7 -0
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +1089 -0
- package/esm5/lib/ContentCellModelHelper.js +133 -0
- package/esm5/lib/CurrentRendererSettings.js +25 -0
- package/esm5/lib/DataAdapter.js +7 -0
- package/esm5/lib/DataBindingEventArgs.js +7 -0
- package/esm5/lib/DataGrid.js +7 -0
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +189 -0
- package/esm5/lib/DataGridCellEventArgs.js +7 -0
- package/esm5/lib/DataGridCellLayoutPanel.js +576 -0
- package/esm5/lib/DataGridColumn.js +7 -0
- package/esm5/lib/DataGridColumnToolbarManager.js +7 -0
- package/esm5/lib/DataGridDelayedExecutionManager.js +30 -0
- package/esm5/lib/DataGridLocaleEn.js +69 -0
- package/esm5/lib/DataGridPresenterManager.js +183 -0
- package/esm5/lib/DataGridPropertySetter.js +27 -0
- package/esm5/lib/DataGridScrollerKeyboardListener.js +69 -0
- package/esm5/lib/DataGridSelectionMode.js +41 -0
- package/esm5/lib/DataGridStylingDefaults.js +2 -0
- package/esm5/lib/DataGridToolbar.js +7 -0
- package/esm5/lib/DataGridToolbarView.js +7 -0
- package/esm5/lib/DataGridToolbarView_combined.js +846 -0
- package/esm5/lib/DataGridViewportManager.js +34 -0
- package/esm5/lib/DataSourceNotificationBridge.js +7 -0
- package/esm5/lib/DateEditorView.js +232 -0
- package/esm5/lib/DateOperatorTypes.js +11 -0
- package/esm5/lib/DateTimeCell.js +21 -0
- package/esm5/lib/DateTimeCellModel.js +7 -0
- package/esm5/lib/DateTimeCellModelExport.js +32 -0
- package/esm5/lib/DateTimeCellPresenter.js +50 -0
- package/esm5/lib/DateTimeColumn.js +7 -0
- package/esm5/lib/DateTimeColumnValueFormatter.js +98 -0
- package/esm5/lib/DateTimeFormats.js +41 -0
- package/esm5/lib/DefaultCellActionManager.js +7 -0
- package/esm5/lib/DefaultCellModelExportUpdater.js +7 -0
- package/esm5/lib/DefaultGridInfoRequestor.js +7 -0
- package/esm5/lib/DefaultPlatformPixelConverter.js +24 -0
- package/esm5/lib/DefinitionBase.js +7 -0
- package/esm5/lib/DefinitionPropertyUpdatedEventArgs.js +65 -0
- package/esm5/lib/DragSelectEventArgs.js +76 -0
- package/esm5/lib/DragType.js +11 -0
- package/esm5/lib/Dragger.js +217 -0
- package/esm5/lib/DraggerView.js +145 -0
- package/esm5/lib/DropDownDataListItem.js +23 -0
- package/esm5/lib/EditModeClickAction.js +29 -0
- package/esm5/lib/EditModeType.js +33 -0
- package/esm5/lib/EditRowDefinition.js +7 -0
- package/esm5/lib/EditingManager.js +7 -0
- package/esm5/lib/EditorCell.js +544 -0
- package/esm5/lib/EditorCellModel.js +7 -0
- package/esm5/lib/EditorCellModelExport.js +37 -0
- package/esm5/lib/EditorCellPresenter.js +78 -0
- package/esm5/lib/EditorDefinition.js +7 -0
- package/esm5/lib/EditorRowCell.js +23 -0
- package/esm5/lib/EditorRowCellModel.js +7 -0
- package/esm5/lib/EditorRowCellPresenter.js +31 -0
- package/esm5/lib/EditorType.js +37 -0
- package/esm5/lib/EnterKeyBehaviorAfterEdit.js +37 -0
- package/esm5/lib/EnterKeyBehaviors.js +41 -0
- package/esm5/lib/FilterCell.js +578 -0
- package/esm5/lib/FilterCellModel.js +7 -0
- package/esm5/lib/FilterCellModelExport.js +50 -0
- package/esm5/lib/FilterCellPresenter.js +67 -0
- package/esm5/lib/FilterComparisonType.js +29 -0
- package/esm5/lib/FilterDialogRenderCompletedEventArgs.js +20 -0
- package/esm5/lib/FilterLogicalOperator.js +25 -0
- package/esm5/lib/FilterOperand.js +7 -0
- package/esm5/lib/FilterRowDefinition.js +7 -0
- package/esm5/lib/FilterUIType.js +30 -0
- package/esm5/lib/FixedCellPositions.js +11 -0
- package/esm5/lib/FormatGroupTextEventArgs.js +25 -0
- package/esm5/lib/FormatSummaryTextEventArgs.js +26 -0
- package/esm5/lib/GotFocusEventArgs.js +20 -0
- package/esm5/lib/GridActivationMode.js +25 -0
- package/esm5/lib/GridActiveCellChangedEventArgs.js +43 -0
- package/esm5/lib/GridAnimationManager.js +7 -0
- package/esm5/lib/GridAnimationManagerAnimationCanceledEventArgs.js +22 -0
- package/esm5/lib/GridAnimationManagerAnimationCompletedEventArgs.js +22 -0
- package/esm5/lib/GridAnimationManagerAnimationCreatedEventArgs.js +22 -0
- package/esm5/lib/GridAnimationPhaseSettings.js +148 -0
- package/esm5/lib/GridAnimationSettings.js +144 -0
- package/esm5/lib/GridCellBase.js +731 -0
- package/esm5/lib/GridCellEditEndedEventArgs.js +7 -0
- package/esm5/lib/GridCellEditStartedEventArgs.js +7 -0
- package/esm5/lib/GridCellPosition.js +45 -0
- package/esm5/lib/GridCellType.js +22 -0
- package/esm5/lib/GridCellValueChangingEventArgs.js +7 -0
- package/esm5/lib/GridColumnAnimationSettings.js +357 -0
- package/esm5/lib/GridColumnButtonOptions.js +7 -0
- package/esm5/lib/GridColumnButtonOptionsView.js +7 -0
- package/esm5/lib/GridColumnButtonOptionsView_combined.js +203 -0
- package/esm5/lib/GridColumnCollection.js +7 -0
- package/esm5/lib/GridColumnFilterOptions.js +7 -0
- package/esm5/lib/GridColumnFilterOptionsView.js +7 -0
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +560 -0
- package/esm5/lib/GridColumnGroupOptions.js +7 -0
- package/esm5/lib/GridColumnGroupOptionsView.js +7 -0
- package/esm5/lib/GridColumnGroupOptionsView_combined.js +234 -0
- package/esm5/lib/GridColumnHideOptions.js +7 -0
- package/esm5/lib/GridColumnHideOptionsView.js +7 -0
- package/esm5/lib/GridColumnHideOptionsView_combined.js +171 -0
- package/esm5/lib/GridColumnMoveOptions.js +7 -0
- package/esm5/lib/GridColumnMoveOptionsView.js +7 -0
- package/esm5/lib/GridColumnMoveOptionsView_combined.js +322 -0
- package/esm5/lib/GridColumnOptions.js +7 -0
- package/esm5/lib/GridColumnOptionsBase.js +7 -0
- package/esm5/lib/GridColumnOptionsSectionBase.js +40 -0
- package/esm5/lib/GridColumnOptionsSimpleSectionBase.js +67 -0
- package/esm5/lib/GridColumnOptionsUtilities.js +7 -0
- package/esm5/lib/GridColumnOptionsView.js +7 -0
- package/esm5/lib/GridColumnOptionsViewBase.js +7 -0
- package/esm5/lib/GridColumnOptionsViewBase_combined.js +741 -0
- package/esm5/lib/GridColumnOptionsView_combined.js +1018 -0
- package/esm5/lib/GridColumnPinOptions.js +7 -0
- package/esm5/lib/GridColumnPinOptionsView.js +7 -0
- package/esm5/lib/GridColumnPinOptionsView_combined.js +310 -0
- package/esm5/lib/GridColumnSortOptions.js +7 -0
- package/esm5/lib/GridColumnSortOptionsView.js +7 -0
- package/esm5/lib/GridColumnSortOptionsView_combined.js +305 -0
- package/esm5/lib/GridColumnSpacer.js +98 -0
- package/esm5/lib/GridColumnSpacerCollection.js +80 -0
- package/esm5/lib/GridColumnSummaryOptions.js +7 -0
- package/esm5/lib/GridColumnSummaryOptionsView.js +7 -0
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +484 -0
- package/esm5/lib/GridColumnWidthChangedEventArgs.js +7 -0
- package/esm5/lib/GridColumnsAutoGeneratedEventArgs.js +7 -0
- package/esm5/lib/GridColumnsChangedEventArgs.js +7 -0
- package/esm5/lib/GridCompoundConditionalStyle.js +7 -0
- package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +43 -0
- package/esm5/lib/GridConditionalStyle.js +7 -0
- package/esm5/lib/GridConditionalStyleBoundType.js +16 -0
- package/esm5/lib/GridConditionalStyleCollection.js +7 -0
- package/esm5/lib/GridConditionalStyleProperty.js +761 -0
- package/esm5/lib/GridConditionalStylePropertyCollection.js +22 -0
- package/esm5/lib/GridConditionalStylePropertyStylingType.js +18 -0
- package/esm5/lib/GridCustomFilterRequestedEventArgs.js +7 -0
- package/esm5/lib/GridDataCommittedEventArgs.js +25 -0
- package/esm5/lib/GridDataCommittingEventArgs.js +25 -0
- package/esm5/lib/GridEasingFunctionType.js +33 -0
- package/esm5/lib/GridEffect.js +7 -0
- package/esm5/lib/GridEffectGroup.js +7 -0
- package/esm5/lib/GridEffectMainIntent.js +11 -0
- package/esm5/lib/GridEffectManager.js +7 -0
- package/esm5/lib/GridEffectSubIntent.js +11 -0
- package/esm5/lib/GridExpansionIndicator.js +7 -0
- package/esm5/lib/GridExpansionIndicatorView.js +7 -0
- package/esm5/lib/GridExpansionIndicatorView_combined.js +350 -0
- package/esm5/lib/GridExternalWrapper.js +158 -0
- package/esm5/lib/GridFilterDialog.js +7 -0
- package/esm5/lib/GridFilterDialogFilterChangeEventArgs.js +22 -0
- package/esm5/lib/GridFilterDialogOpeningEventArgs.js +22 -0
- package/esm5/lib/GridFilterDialogPanel.js +7 -0
- package/esm5/lib/GridFilterDialogView.js +7 -0
- package/esm5/lib/GridFilterDialogViewModel.js +7 -0
- package/esm5/lib/GridFilterDialogViewModelGrouping.js +24 -0
- package/esm5/lib/GridFilterDialogViewModelGroupingLevel.js +22 -0
- package/esm5/lib/GridFilterDialogViewModelGroupingLevelCollection.js +22 -0
- package/esm5/lib/GridFilterDialogViewModelRow.js +117 -0
- package/esm5/lib/GridFilterDialogViewModelRowCollection.js +7 -0
- package/esm5/lib/GridFilterDialogView_combined.js +1228 -0
- package/esm5/lib/GridFilterExpressionsEventArgs.js +22 -0
- package/esm5/lib/GridFilterOperandsCollection.js +7 -0
- package/esm5/lib/GridGroupDescriptionsChangedEventArgs.js +32 -0
- package/esm5/lib/GridLayer.js +7 -0
- package/esm5/lib/GridLayerController.js +7 -0
- package/esm5/lib/GridLayerExport.js +55 -0
- package/esm5/lib/GridModuleHelper.js +28 -0
- package/esm5/lib/GridRowEditEndedEventArgs.js +33 -0
- package/esm5/lib/GridRowEditStartedEventArgs.js +33 -0
- package/esm5/lib/GridSelectedCellRangesChangedEventArgs.js +65 -0
- package/esm5/lib/GridSelectedCellRangesCollection.js +29 -0
- package/esm5/lib/GridSelectedCellsChangedEventArgs.js +7 -0
- package/esm5/lib/GridSelectedCellsCollection.js +7 -0
- package/esm5/lib/GridSelectedItemsChangedEventArgs.js +54 -0
- package/esm5/lib/GridSelectedItemsCollection.js +48 -0
- package/esm5/lib/GridSelectedKeysChangedEventArgs.js +54 -0
- package/esm5/lib/GridSelectedKeysCollection.js +220 -0
- package/esm5/lib/GridSelectionBehavior.js +25 -0
- package/esm5/lib/GridSelectionChangedEventArgs.js +20 -0
- package/esm5/lib/GridSizeChangedEventArgs.js +23 -0
- package/esm5/lib/GridSortDescriptionsChangedEventArgs.js +32 -0
- package/esm5/lib/GridSortIndicator.js +7 -0
- package/esm5/lib/GridSortIndicatorView.js +7 -0
- package/esm5/lib/GridSortIndicatorView_combined.js +634 -0
- package/esm5/lib/GridStyleRepository.js +647 -0
- package/esm5/lib/GridSummaryDescriptionsChangedEventArgs.js +32 -0
- package/esm5/lib/GridViewportChangedEventArgs.js +29 -0
- package/esm5/lib/GroupData.js +24 -0
- package/esm5/lib/GroupHeaderDisplayMode.js +25 -0
- package/esm5/lib/GroupInfo.js +24 -0
- package/esm5/lib/GroupSummaryDisplayMode.js +38 -0
- package/esm5/lib/Header.js +7 -0
- package/esm5/lib/HeaderClickAction.js +37 -0
- package/esm5/lib/HeaderRowSeparator.js +7 -0
- package/esm5/lib/HeaderSeparator.js +7 -0
- package/esm5/lib/HorizontalPropertyEditorDataSource.js +26 -0
- package/esm5/lib/HoverManager.js +7 -0
- package/esm5/lib/ICellActionManager.js +7 -0
- package/esm5/lib/ICellModelExportUpdater.js +11 -0
- package/esm5/lib/ICellPresenter.js +7 -0
- package/esm5/lib/ICellRenderingEngine.js +7 -0
- package/esm5/lib/IColumnGrouping.js +11 -0
- package/esm5/lib/IColumnGroupingVisualModelExport.js +11 -0
- package/esm5/lib/IDataAdapter.js +7 -0
- package/esm5/lib/IDataGridComponent.js +11 -0
- package/esm5/lib/IDelayedExecutionManager.js +11 -0
- package/esm5/lib/IDragger.js +7 -0
- package/esm5/lib/IDraggerView.js +7 -0
- package/esm5/lib/IDraggerView_combined.js +15 -0
- package/esm5/lib/IEditorView.js +11 -0
- package/esm5/lib/IExternalDefinitionBase.js +7 -0
- package/esm5/lib/IExternalGrid.js +7 -0
- package/esm5/lib/IExternalTemplateColumn.js +11 -0
- package/esm5/lib/IExternalTemplateHeaderColumn.js +11 -0
- package/esm5/lib/IExternalTemplateSectionHeader.js +11 -0
- package/esm5/lib/IGridInfoRequestor.js +7 -0
- package/esm5/lib/INativeCell.js +11 -0
- package/esm5/lib/IPlatformPixelConverter.js +11 -0
- package/esm5/lib/IPropertySetter.js +11 -0
- package/esm5/lib/ISummaryChooserView.js +7 -0
- package/esm5/lib/ISummaryChooserView_combined.js +521 -0
- package/esm5/lib/IToolbarVisualModelExport.js +11 -0
- package/esm5/lib/IViewportManager.js +11 -0
- package/esm5/lib/ImageCell.js +129 -0
- package/esm5/lib/ImageCellModel.js +7 -0
- package/esm5/lib/ImageCellModelExport.js +30 -0
- package/esm5/lib/ImageCellPresenter.js +96 -0
- package/esm5/lib/ImageColumn.js +7 -0
- package/esm5/lib/ImageResourceType.js +37 -0
- package/esm5/lib/ImageStretchOptions.js +29 -0
- package/esm5/lib/LayoutAction.js +49 -0
- package/esm5/lib/LostFocusEventArgs.js +20 -0
- package/esm5/lib/MergedCellEvaluationCriteria.js +29 -0
- package/esm5/lib/MergedCellInfo.js +28 -0
- package/esm5/lib/MergedCellMode.js +34 -0
- package/esm5/lib/ModelStates.js +11 -0
- package/esm5/lib/ModelTypes.js +11 -0
- package/esm5/lib/MultiColumnComboBox.js +7 -0
- package/esm5/lib/MultiColumnComboBoxDataSourceNotificationHandler.js +7 -0
- package/esm5/lib/MultiColumnComboBoxSelectedItemChangeType.js +20 -0
- package/esm5/lib/MultiColumnComboBoxTextChangedEventArgs.js +39 -0
- package/esm5/lib/MultiColumnComboBoxUtilities.js +99 -0
- package/esm5/lib/MultiColumnComboBoxValueChangedEventArgs.js +39 -0
- package/esm5/lib/MultiColumnComboBoxView.js +7 -0
- package/esm5/lib/MultiColumnComboBoxView_combined.js +3184 -0
- package/esm5/lib/MultiColumnComboVisualModelExport.js +209 -0
- package/esm5/lib/MultipleDataSourceNotifier.js +71 -0
- package/esm5/lib/NativeUIComboFactory.js +57 -0
- package/esm5/lib/NativeUIGridFactory.js +80 -0
- package/esm5/lib/NumericCell.js +30 -0
- package/esm5/lib/NumericCellFormatter.js +7 -0
- package/esm5/lib/NumericCellModel.js +7 -0
- package/esm5/lib/NumericCellModelExport.js +34 -0
- package/esm5/lib/NumericCellPresenter.js +50 -0
- package/esm5/lib/NumericColumn.js +7 -0
- package/esm5/lib/NumericEditorView.js +33 -0
- package/esm5/lib/OperatorModel.js +26 -0
- package/esm5/lib/OperatorSelectorClosingEventArgs.js +20 -0
- package/esm5/lib/OperatorSelectorOpeningEventArgs.js +20 -0
- package/esm5/lib/OperatorSelectorValueChangedEventArgs.js +43 -0
- package/esm5/lib/PageChangedEventArgs.js +43 -0
- package/esm5/lib/PagedDataProvider.js +7 -0
- package/esm5/lib/Pager.js +7 -0
- package/esm5/lib/PagerDataSourceNotificationBridge.js +7 -0
- package/esm5/lib/PagerGridDataSourceNotificationBridge.js +7 -0
- package/esm5/lib/PagerView.js +7 -0
- package/esm5/lib/PagerVisualModelExport.js +84 -0
- package/esm5/lib/PinnedAreaSeparator.js +7 -0
- package/esm5/lib/PinnedPositions.js +29 -0
- package/esm5/lib/PinnedRowInfo.js +7 -0
- package/esm5/lib/PlaceholderView.js +87 -0
- package/esm5/lib/PrimaryKeyValue.js +97 -0
- package/esm5/lib/PropertyEditor.js +7 -0
- package/esm5/lib/PropertyEditorView.js +7 -0
- package/esm5/lib/PropertyEditorView_combined.js +1821 -0
- package/esm5/lib/PushRowResult.js +7 -0
- package/esm5/lib/PushRowSettings.js +7 -0
- package/esm5/lib/RecyclingManager.js +7 -0
- package/esm5/lib/ResponsiveEngine.js +7 -0
- package/esm5/lib/ResponsivePhase.js +7 -0
- package/esm5/lib/ResponsivePhasesCollection.js +7 -0
- package/esm5/lib/ResponsiveState.js +7 -0
- package/esm5/lib/ResponsiveStateEnteredEventArgs.js +20 -0
- package/esm5/lib/ResponsiveStateEnteringEventArgs.js +20 -0
- package/esm5/lib/ResponsiveStateExitedEventArgs.js +20 -0
- package/esm5/lib/ResponsiveStatesCollection.js +7 -0
- package/esm5/lib/RowCellsEffect.js +7 -0
- package/esm5/lib/RowEffect.js +7 -0
- package/esm5/lib/RowHoverAnimationMode.js +29 -0
- package/esm5/lib/RowPath.js +148 -0
- package/esm5/lib/RowRange.js +44 -0
- package/esm5/lib/RowSelectionAnimationMode.js +29 -0
- package/esm5/lib/RowSeparator.js +7 -0
- package/esm5/lib/RowSeparatorCell.js +21 -0
- package/esm5/lib/RowSeparatorCellPresenter.js +28 -0
- package/esm5/lib/RowSeparatorModel.js +7 -0
- package/esm5/lib/RowSeparatorModelExport.js +27 -0
- package/esm5/lib/SaveLayoutColumn.js +7 -0
- package/esm5/lib/SaveLayoutFilterInfo.js +175 -0
- package/esm5/lib/SaveLayoutGroupInfo.js +53 -0
- package/esm5/lib/SaveLayoutSortInfo.js +56 -0
- package/esm5/lib/SectionFooter.js +7 -0
- package/esm5/lib/SectionHeader.js +7 -0
- package/esm5/lib/SectionHeaderCell.js +54 -0
- package/esm5/lib/SectionHeaderCellModel.js +7 -0
- package/esm5/lib/SectionHeaderCellModelExport.js +64 -0
- package/esm5/lib/SectionHeaderCellPresenter.js +56 -0
- package/esm5/lib/SectionInfo.js +7 -0
- package/esm5/lib/SelectAllCheckboxChangedEventArgs.js +22 -0
- package/esm5/lib/SelectionManager.js +7 -0
- package/esm5/lib/SortIndicatorRenderCompletedEventArgs.js +20 -0
- package/esm5/lib/SortIndicatorStyle.js +32 -0
- package/esm5/lib/SortManager.js +7 -0
- package/esm5/lib/SortMode.js +37 -0
- package/esm5/lib/SpacerEffect.js +7 -0
- package/esm5/lib/SpatialEngine.js +7 -0
- package/esm5/lib/StringOperatorTypes.js +11 -0
- package/esm5/lib/SummaryCell.js +84 -0
- package/esm5/lib/SummaryCellModel.js +7 -0
- package/esm5/lib/SummaryCellModelExport.js +90 -0
- package/esm5/lib/SummaryCellPresenter.js +56 -0
- package/esm5/lib/SummaryChangedEventArgs.js +23 -0
- package/esm5/lib/SummaryChooser.js +7 -0
- package/esm5/lib/SummaryChooserItem.js +24 -0
- package/esm5/lib/SummaryChooserView.js +7 -0
- package/esm5/lib/SummaryData.js +26 -0
- package/esm5/lib/SummaryRow.js +7 -0
- package/esm5/lib/SummaryRowRoot.js +7 -0
- package/esm5/lib/SummaryRowSection.js +7 -0
- package/esm5/lib/SummaryScope.js +33 -0
- package/esm5/lib/TemplateCell.js +61 -0
- package/esm5/lib/TemplateCellContainer.js +43 -0
- package/esm5/lib/TemplateCellModel.js +7 -0
- package/esm5/lib/TemplateCellModelExport.js +29 -0
- package/esm5/lib/TemplateCellPresenter.js +43 -0
- package/esm5/lib/TemplateCellUpdatingEventArgs.js +7 -0
- package/esm5/lib/TemplateColumn.js +7 -0
- package/esm5/lib/TemplateHeader.js +50 -0
- package/esm5/lib/TemplateHeaderCell.js +36 -0
- package/esm5/lib/TemplateHeaderCellModel.js +67 -0
- package/esm5/lib/TemplateHeaderCellModelExport.js +29 -0
- package/esm5/lib/TemplateHeaderCellPresenter.js +44 -0
- package/esm5/lib/TemplateHeaderCellUpdatingEventArgs.js +43 -0
- package/esm5/lib/TemplateSectionHeader.js +41 -0
- package/esm5/lib/TemplateSectionHeaderCellModel.js +21 -0
- package/esm5/lib/TemplateSectionHeaderCellModelExport.js +27 -0
- package/esm5/lib/TemplateSectionHeaderCellUpdatingEventArgs.js +43 -0
- package/esm5/lib/TextCell.js +67 -0
- package/esm5/lib/TextCellLineBreakMode.js +33 -0
- package/esm5/lib/TextCellModel.js +7 -0
- package/esm5/lib/TextCellModelExport.js +32 -0
- package/esm5/lib/TextCellPresenter.js +52 -0
- package/esm5/lib/TextColumn.js +7 -0
- package/esm5/lib/TextEditorView.js +177 -0
- package/esm5/lib/TextHeader.js +7 -0
- package/esm5/lib/TextHeaderCell.js +322 -0
- package/esm5/lib/TextHeaderCellModel.js +7 -0
- package/esm5/lib/TextHeaderCellModelExport.js +27 -0
- package/esm5/lib/TextHeaderCellPresenter.js +92 -0
- package/esm5/lib/TextIconSetBuiltInTypes.js +18 -0
- package/esm5/lib/TextIconSetConditionalStyle.js +107 -0
- package/esm5/lib/TextVisualModelExport.js +46 -0
- package/esm5/lib/ToolbarVisualModelExport.js +24 -0
- package/esm5/lib/VerticalSeparatorCell.js +74 -0
- package/esm5/lib/VerticalSeparatorCellModel.js +7 -0
- package/esm5/lib/VerticalSeparatorCellPresenter.js +28 -0
- package/esm5/lib/VisibilityEngine.js +7 -0
- package/esm5/lib/VisualModel.js +7 -0
- package/esm5/lib/VisualModelExport.js +233 -0
- package/esm5/lib/igc-apply-button-click-event-args.js +36 -0
- package/esm5/lib/igc-cancel-button-click-event-args.js +36 -0
- package/esm5/lib/igc-cell-info.js +1376 -0
- package/esm5/lib/igc-cell-key-module.js +19 -0
- package/esm5/lib/igc-cell-key.js +106 -0
- package/esm5/lib/igc-cell-range-module.js +19 -0
- package/esm5/lib/igc-cell-range.js +99 -0
- package/esm5/lib/igc-cell-style-requested-event-args.js +78 -0
- package/esm5/lib/igc-checkbox-list-component.js +1149 -0
- package/esm5/lib/igc-checkbox-list-index-type-changed-event-args.js +58 -0
- package/esm5/lib/igc-checkbox-list-keys-cleared-event-args.js +36 -0
- package/esm5/lib/igc-checkbox-list-module.js +38 -0
- package/esm5/lib/igc-checked-changed-event-args.js +71 -0
- package/esm5/lib/igc-column-chooser-component.js +387 -0
- package/esm5/lib/igc-column-chooser-module.js +25 -0
- package/esm5/lib/igc-column-exchanger.js +60 -0
- package/esm5/lib/igc-column-exchangers-collection.js +58 -0
- package/esm5/lib/igc-column-group-description-collection.js +146 -0
- package/esm5/lib/igc-column-group-description-module.js +19 -0
- package/esm5/lib/igc-column-group-description.js +163 -0
- package/esm5/lib/igc-column-grouping-component.js +444 -0
- package/esm5/lib/igc-column-grouping-module.js +21 -0
- package/esm5/lib/igc-column-hidden-changed-event-args.js +69 -0
- package/esm5/lib/igc-column-moving-separator-component.js +114 -0
- package/esm5/lib/igc-column-moving-separator-module.js +20 -0
- package/esm5/lib/igc-column-pinned-changed-event-args.js +79 -0
- package/esm5/lib/igc-column-pinning-component.js +387 -0
- package/esm5/lib/igc-column-pinning-module.js +23 -0
- package/esm5/lib/igc-column-property-setter.js +86 -0
- package/esm5/lib/igc-column-property-setters-collection.js +58 -0
- package/esm5/lib/igc-column-resizing-separator-component.js +100 -0
- package/esm5/lib/igc-column-resizing-separator-module.js +20 -0
- package/esm5/lib/igc-column-sort-description-collection.js +146 -0
- package/esm5/lib/igc-column-sort-description-module.js +19 -0
- package/esm5/lib/igc-column-sort-description.js +84 -0
- package/esm5/lib/igc-column-summary-description-collection.js +143 -0
- package/esm5/lib/igc-column-summary-description-module.js +19 -0
- package/esm5/lib/igc-column-summary-description.js +273 -0
- package/esm5/lib/igc-column-width-module.js +19 -0
- package/esm5/lib/igc-column-width.js +87 -0
- package/esm5/lib/igc-combo-box-column-component.js +150 -0
- package/esm5/lib/igc-combo-box-column-module.js +20 -0
- package/esm5/lib/igc-data-binding-event-args.js +116 -0
- package/esm5/lib/igc-data-grid-all-columns-module.js +36 -0
- package/esm5/lib/igc-data-grid-cell-event-args.js +135 -0
- package/esm5/lib/igc-data-grid-column-component.js +1066 -0
- package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +752 -0
- package/esm5/lib/igc-data-grid-component.js +5372 -0
- package/esm5/lib/igc-data-grid-core-module.js +61 -0
- package/esm5/lib/igc-data-grid-expansion-indicator-component.js +289 -0
- package/esm5/lib/igc-data-grid-filter-dialog-component.js +465 -0
- package/esm5/lib/igc-data-grid-locale-en-module.js +17 -0
- package/esm5/lib/igc-data-grid-module.js +32 -0
- package/esm5/lib/igc-data-grid-pager-component.js +441 -0
- package/esm5/lib/igc-data-grid-pager-module.js +20 -0
- package/esm5/lib/igc-data-grid-sort-indicator-component.js +335 -0
- package/esm5/lib/igc-data-grid-toolbar-component.js +554 -0
- package/esm5/lib/igc-data-grid-toolbar-module.js +29 -0
- package/esm5/lib/igc-date-time-cell-info.js +118 -0
- package/esm5/lib/igc-date-time-column-component.js +227 -0
- package/esm5/lib/igc-date-time-column-module.js +20 -0
- package/esm5/lib/igc-definition-base-component.js +1134 -0
- package/esm5/lib/igc-edit-row-definition-component.js +81 -0
- package/esm5/lib/igc-edit-row-definition-module.js +20 -0
- package/esm5/lib/igc-editor-cell-info.js +202 -0
- package/esm5/lib/igc-editor-definition-component.js +81 -0
- package/esm5/lib/igc-editor-definition-module.js +20 -0
- package/esm5/lib/igc-editor-row-cell-info.js +27 -0
- package/esm5/lib/igc-filter-cell-info.js +197 -0
- package/esm5/lib/igc-filter-dialog-render-completed-event-args.js +36 -0
- package/esm5/lib/igc-filter-operand-module.js +19 -0
- package/esm5/lib/igc-filter-operand.js +159 -0
- package/esm5/lib/igc-filter-row-definition-component.js +137 -0
- package/esm5/lib/igc-filter-row-definition-module.js +20 -0
- package/esm5/lib/igc-format-group-text-event-args.js +88 -0
- package/esm5/lib/igc-format-summary-text-event-args.js +101 -0
- package/esm5/lib/igc-got-focus-event-args.js +36 -0
- package/esm5/lib/igc-grid-active-cell-changed-event-args.js +98 -0
- package/esm5/lib/igc-grid-animation-phase-settings.js +140 -0
- package/esm5/lib/igc-grid-animation-settings.js +47 -0
- package/esm5/lib/igc-grid-cell-edit-ended-event-args.js +87 -0
- package/esm5/lib/igc-grid-cell-edit-started-event-args.js +87 -0
- package/esm5/lib/igc-grid-cell-position-module.js +19 -0
- package/esm5/lib/igc-grid-cell-position.js +70 -0
- package/esm5/lib/igc-grid-cell-value-changing-event-args.js +167 -0
- package/esm5/lib/igc-grid-column-animation-settings.js +47 -0
- package/esm5/lib/igc-grid-column-button-options-component.js +203 -0
- package/esm5/lib/igc-grid-column-button-options-module.js +21 -0
- package/esm5/lib/igc-grid-column-collection.js +58 -0
- package/esm5/lib/igc-grid-column-filter-options-component.js +197 -0
- package/esm5/lib/igc-grid-column-filter-options-module.js +23 -0
- package/esm5/lib/igc-grid-column-group-options-component.js +113 -0
- package/esm5/lib/igc-grid-column-group-options-module.js +21 -0
- package/esm5/lib/igc-grid-column-hide-options-component.js +113 -0
- package/esm5/lib/igc-grid-column-hide-options-module.js +21 -0
- package/esm5/lib/igc-grid-column-move-options-component.js +133 -0
- package/esm5/lib/igc-grid-column-move-options-module.js +21 -0
- package/esm5/lib/igc-grid-column-options-base-component.js +402 -0
- package/esm5/lib/igc-grid-column-options-component.js +694 -0
- package/esm5/lib/igc-grid-column-options-module.js +37 -0
- package/esm5/lib/igc-grid-column-options-section-base-component.js +65 -0
- package/esm5/lib/igc-grid-column-options-simple-section-base-component.js +80 -0
- package/esm5/lib/igc-grid-column-pin-options-component.js +133 -0
- package/esm5/lib/igc-grid-column-pin-options-module.js +21 -0
- package/esm5/lib/igc-grid-column-sort-options-component.js +145 -0
- package/esm5/lib/igc-grid-column-sort-options-module.js +21 -0
- package/esm5/lib/igc-grid-column-summary-options-component.js +200 -0
- package/esm5/lib/igc-grid-column-summary-options-module.js +25 -0
- package/esm5/lib/igc-grid-column-width-changed-event-args.js +123 -0
- package/esm5/lib/igc-grid-columns-auto-generated-event-args.js +77 -0
- package/esm5/lib/igc-grid-columns-changed-event-args.js +77 -0
- package/esm5/lib/igc-grid-compound-conditional-style-component.js +101 -0
- package/esm5/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +62 -0
- package/esm5/lib/igc-grid-conditional-style-collection.js +58 -0
- package/esm5/lib/igc-grid-conditional-style-component.js +500 -0
- package/esm5/lib/igc-grid-conditional-style-module.js +20 -0
- package/esm5/lib/igc-grid-conditional-style-property-collection.js +58 -0
- package/esm5/lib/igc-grid-conditional-style-property-component.js +535 -0
- package/esm5/lib/igc-grid-conditional-style-property-module.js +20 -0
- package/esm5/lib/igc-grid-custom-filter-requested-event-args.js +127 -0
- package/esm5/lib/igc-grid-data-committed-event-args.js +59 -0
- package/esm5/lib/igc-grid-data-committing-event-args.js +59 -0
- package/esm5/lib/igc-grid-filter-dialog-filter-change-event-args.js +46 -0
- package/esm5/lib/igc-grid-filter-dialog-opening-event-args.js +58 -0
- package/esm5/lib/igc-grid-filter-dialog-view-model-grouping-level-collection.js +58 -0
- package/esm5/lib/igc-grid-filter-dialog-view-model-grouping-level.js +58 -0
- package/esm5/lib/igc-grid-filter-dialog-view-model-grouping.js +75 -0
- package/esm5/lib/igc-grid-filter-dialog-view-model-row-collection.js +58 -0
- package/esm5/lib/igc-grid-filter-dialog-view-model-row.js +116 -0
- package/esm5/lib/igc-grid-filter-dialog-view-model.js +174 -0
- package/esm5/lib/igc-grid-filter-expressions-event-args.js +63 -0
- package/esm5/lib/igc-grid-filter-operands-collection.js +58 -0
- package/esm5/lib/igc-grid-group-descriptions-changed-event-args.js +66 -0
- package/esm5/lib/igc-grid-row-edit-ended-event-args.js +62 -0
- package/esm5/lib/igc-grid-row-edit-started-event-args.js +62 -0
- package/esm5/lib/igc-grid-selected-cell-ranges-changed-event-args.js +191 -0
- package/esm5/lib/igc-grid-selected-cell-ranges-collection.js +58 -0
- package/esm5/lib/igc-grid-selected-cells-changed-event-args.js +154 -0
- package/esm5/lib/igc-grid-selected-cells-collection.js +58 -0
- package/esm5/lib/igc-grid-selected-items-changed-event-args.js +154 -0
- package/esm5/lib/igc-grid-selected-items-collection.js +35 -0
- package/esm5/lib/igc-grid-selected-keys-changed-event-args.js +154 -0
- package/esm5/lib/igc-grid-selected-keys-collection.js +58 -0
- package/esm5/lib/igc-grid-selection-changed-event-args.js +39 -0
- package/esm5/lib/igc-grid-size-changed-event-args.js +65 -0
- package/esm5/lib/igc-grid-sort-descriptions-changed-event-args.js +66 -0
- package/esm5/lib/igc-grid-summary-descriptions-changed-event-args.js +66 -0
- package/esm5/lib/igc-group-data.js +86 -0
- package/esm5/lib/igc-header-component.js +175 -0
- package/esm5/lib/igc-header-row-separator-component.js +81 -0
- package/esm5/lib/igc-header-row-separator-module.js +20 -0
- package/esm5/lib/igc-header-separator-component.js +78 -0
- package/esm5/lib/igc-header-separator-module.js +20 -0
- package/esm5/lib/igc-horizontal-property-editor-data-source.js +58 -0
- package/esm5/lib/igc-image-cell-info.js +69 -0
- package/esm5/lib/igc-image-column-component.js +150 -0
- package/esm5/lib/igc-image-column-module.js +20 -0
- package/esm5/lib/igc-lost-focus-event-args.js +36 -0
- package/esm5/lib/igc-multi-column-combo-box-component.js +1854 -0
- package/esm5/lib/igc-multi-column-combo-box-module.js +33 -0
- package/esm5/lib/igc-multi-column-combo-box-text-changed-event-args.js +40 -0
- package/esm5/lib/igc-multi-column-combo-box-value-changed-event-args.js +40 -0
- package/esm5/lib/igc-numeric-cell-info.js +208 -0
- package/esm5/lib/igc-numeric-column-component.js +293 -0
- package/esm5/lib/igc-numeric-column-module.js +20 -0
- package/esm5/lib/igc-operator-selector-closing-event-args.js +36 -0
- package/esm5/lib/igc-operator-selector-opening-event-args.js +39 -0
- package/esm5/lib/igc-operator-selector-value-changed-event-args.js +59 -0
- package/esm5/lib/igc-page-changed-event-args.js +66 -0
- package/esm5/lib/igc-pinned-area-separator-component.js +78 -0
- package/esm5/lib/igc-pinned-area-separator-module.js +20 -0
- package/esm5/lib/igc-primary-key-value-module.js +19 -0
- package/esm5/lib/igc-primary-key-value.js +89 -0
- package/esm5/lib/igc-property-editor-component.js +598 -0
- package/esm5/lib/igc-property-editor-module.js +43 -0
- package/esm5/lib/igc-responsive-phase.js +156 -0
- package/esm5/lib/igc-responsive-phases-collection.js +58 -0
- package/esm5/lib/igc-responsive-state-entered-event-args.js +39 -0
- package/esm5/lib/igc-responsive-state-entering-event-args.js +39 -0
- package/esm5/lib/igc-responsive-state-exited-event-args.js +39 -0
- package/esm5/lib/igc-responsive-state.js +245 -0
- package/esm5/lib/igc-responsive-states-collection.js +58 -0
- package/esm5/lib/igc-row-separator-component.js +81 -0
- package/esm5/lib/igc-row-separator-info.js +27 -0
- package/esm5/lib/igc-row-separator-module.js +20 -0
- package/esm5/lib/igc-section-footer-component.js +81 -0
- package/esm5/lib/igc-section-footer-module.js +20 -0
- package/esm5/lib/igc-section-header-cell-info.js +68 -0
- package/esm5/lib/igc-section-header-component.js +182 -0
- package/esm5/lib/igc-section-header-module.js +20 -0
- package/esm5/lib/igc-select-all-checkbox-changed-event-args.js +47 -0
- package/esm5/lib/igc-sort-indicator-render-completed-event-args.js +36 -0
- package/esm5/lib/igc-summary-cell-info.js +83 -0
- package/esm5/lib/igc-summary-changed-event-args.js +66 -0
- package/esm5/lib/igc-summary-chooser-module.js +17 -0
- package/esm5/lib/igc-summary-data.js +99 -0
- package/esm5/lib/igc-summary-row-component.js +197 -0
- package/esm5/lib/igc-summary-row-root-component.js +78 -0
- package/esm5/lib/igc-summary-row-root-module.js +20 -0
- package/esm5/lib/igc-summary-row-section-component.js +78 -0
- package/esm5/lib/igc-summary-row-section-module.js +20 -0
- package/esm5/lib/igc-template-cell-info.js +40 -0
- package/esm5/lib/igc-template-cell-updating-event-args.js +133 -0
- package/esm5/lib/igc-template-column-component.js +300 -0
- package/esm5/lib/igc-template-column-module.js +20 -0
- package/esm5/lib/igc-template-header-cell-info.js +41 -0
- package/esm5/lib/igc-template-header-cell-updating-event-args.js +133 -0
- package/esm5/lib/igc-template-header-component.js +117 -0
- package/esm5/lib/igc-template-header-module.js +20 -0
- package/esm5/lib/igc-template-section-header-cell-info.js +27 -0
- package/esm5/lib/igc-template-section-header-cell-updating-event-args.js +100 -0
- package/esm5/lib/igc-template-section-header-component.js +117 -0
- package/esm5/lib/igc-template-section-header-module.js +20 -0
- package/esm5/lib/igc-text-cell-info.js +40 -0
- package/esm5/lib/igc-text-column-component.js +135 -0
- package/esm5/lib/igc-text-column-module.js +20 -0
- package/esm5/lib/igc-text-header-cell-info.js +93 -0
- package/esm5/lib/igc-text-header-component.js +81 -0
- package/esm5/lib/igc-text-header-module.js +20 -0
- package/esm5/lib/igc-text-icon-set-conditional-style-component.js +107 -0
- package/esm5/lib/igc-text-icon-set-conditional-style-module.js +20 -0
- package/esm5/lib/igc-vertical-separator-cell-info.js +27 -0
- package/esm5/public_api.js +687 -0
- package/fesm2015/igniteui-webcomponents-data-grids.js +93353 -0
- package/fesm5/igniteui-webcomponents-data-grids.js +107130 -0
- package/igniteui-webcomponents-data-grids.d.ts +1 -0
- package/lib/AccessibilityRow.d.ts +22 -0
- package/lib/ActivationManager.d.ts +1 -0
- package/lib/ApplyButtonClickEventArgs.d.ts +7 -0
- package/lib/BaseEditorView.d.ts +62 -0
- package/lib/BrowserExecutionContext.d.ts +19 -0
- package/lib/BrowserPixelConverter.d.ts +9 -0
- package/lib/BrowserTickProvider.d.ts +21 -0
- package/lib/CalculationParameters.d.ts +24 -0
- package/lib/CancelButtonClickEventArgs.d.ts +7 -0
- package/lib/CanvasCellPresenterBase.d.ts +18 -0
- package/lib/CanvasContentCellModelHelper.d.ts +18 -0
- package/lib/CanvasDateTimeCell.d.ts +10 -0
- package/lib/CanvasDateTimeCellPresenter.d.ts +15 -0
- package/lib/CanvasGridCellBase.d.ts +166 -0
- package/lib/CanvasImageCell.d.ts +27 -0
- package/lib/CanvasImageCellPresenter.d.ts +16 -0
- package/lib/CanvasNumericCell.d.ts +10 -0
- package/lib/CanvasNumericCellPresenter.d.ts +15 -0
- package/lib/CanvasPlaceholderView.d.ts +25 -0
- package/lib/CanvasRowSeparatorCell.d.ts +10 -0
- package/lib/CanvasRowSeparatorCellPresenter.d.ts +12 -0
- package/lib/CanvasSectionHeaderCell.d.ts +11 -0
- package/lib/CanvasSectionHeaderCellPresenter.d.ts +14 -0
- package/lib/CanvasSummaryCell.d.ts +30 -0
- package/lib/CanvasSummaryCellPresenter.d.ts +14 -0
- package/lib/CanvasTemplateCell.d.ts +15 -0
- package/lib/CanvasTemplateCellContainer.d.ts +15 -0
- package/lib/CanvasTemplateCellPresenter.d.ts +16 -0
- package/lib/CanvasTemplateHeaderCell.d.ts +15 -0
- package/lib/CanvasTemplateHeaderCellPresenter.d.ts +16 -0
- package/lib/CanvasTextCell.d.ts +11 -0
- package/lib/CanvasTextCellPresenter.d.ts +14 -0
- package/lib/CanvasTextHeaderCell.d.ts +20 -0
- package/lib/CanvasTextHeaderCellPresenter.d.ts +16 -0
- package/lib/CanvasVerticalSeparatorCell.d.ts +10 -0
- package/lib/CanvasVerticalSeparatorCellPresenter.d.ts +12 -0
- package/lib/CellContentHorizontalAlignment.d.ts +30 -0
- package/lib/CellContentVerticalAlignment.d.ts +30 -0
- package/lib/CellDataLoadedAnimationMode.d.ts +22 -0
- package/lib/CellEffect.d.ts +1 -0
- package/lib/CellKey.d.ts +1 -0
- package/lib/CellModel.d.ts +1 -0
- package/lib/CellModelExport.d.ts +43 -0
- package/lib/CellPath.d.ts +54 -0
- package/lib/CellPositionEffect.d.ts +1 -0
- package/lib/CellPresenterBase.d.ts +18 -0
- package/lib/CellPropertyAnimationType.d.ts +58 -0
- package/lib/CellRange.d.ts +23 -0
- package/lib/CellSelectionAnimationMode.d.ts +22 -0
- package/lib/CellStyleRequestedEventArgs.d.ts +16 -0
- package/lib/CheckboxList.d.ts +1 -0
- package/lib/CheckboxListBridge.d.ts +43 -0
- package/lib/CheckboxListExternal.d.ts +42 -0
- package/lib/CheckboxListExternalIndexType.d.ts +12 -0
- package/lib/CheckboxListExternalIndexTypeChangedEventArgs.d.ts +10 -0
- package/lib/CheckboxListExternalKeysClearedEventArgs.d.ts +7 -0
- package/lib/CheckboxListIndexType.d.ts +9 -0
- package/lib/CheckboxListIndexTypeChangedEventArgs.d.ts +10 -0
- package/lib/CheckboxListKeysClearedEventArgs.d.ts +7 -0
- package/lib/CheckboxListView.d.ts +1 -0
- package/lib/CheckboxListViewExternal.d.ts +21 -0
- package/lib/CheckboxListView_combined.d.ts +281 -0
- package/lib/CheckedChangedEventArgs.d.ts +10 -0
- package/lib/CloneDataSourceFilterOperation.d.ts +13 -0
- package/lib/ColumnCellsEffect.d.ts +1 -0
- package/lib/ColumnChooser.d.ts +1 -0
- package/lib/ColumnChooserInfo.d.ts +10 -0
- package/lib/ColumnChooserView.d.ts +1 -0
- package/lib/ColumnChooserView_combined.d.ts +81 -0
- package/lib/ColumnComparisonConditionOperatorType.d.ts +55 -0
- package/lib/ColumnComparisonFilterCondition.d.ts +1 -0
- package/lib/ColumnController.d.ts +1 -0
- package/lib/ColumnCustomFilterCondition.d.ts +1 -0
- package/lib/ColumnEffect.d.ts +1 -0
- package/lib/ColumnExchanger.d.ts +1 -0
- package/lib/ColumnExchangersCollection.d.ts +1 -0
- package/lib/ColumnExchangingAnimationMode.d.ts +54 -0
- package/lib/ColumnFilterCondition.d.ts +1 -0
- package/lib/ColumnFilterConditionCollection.d.ts +1 -0
- package/lib/ColumnFilterConditionGroup.d.ts +1 -0
- package/lib/ColumnFilterCondition_combined.d.ts +5234 -0
- package/lib/ColumnGroupDescription.d.ts +42 -0
- package/lib/ColumnGroupDescriptionCollection.d.ts +29 -0
- package/lib/ColumnGrouping.d.ts +1 -0
- package/lib/ColumnGroupingView.d.ts +1 -0
- package/lib/ColumnGroupingView_combined.d.ts +151 -0
- package/lib/ColumnGroupingVisualModelExport.d.ts +29 -0
- package/lib/ColumnHiddenChangedEventArgs.d.ts +1 -0
- package/lib/ColumnHidingAnimationMode.d.ts +54 -0
- package/lib/ColumnInfo.d.ts +1 -0
- package/lib/ColumnMovingAnimationMode.d.ts +22 -0
- package/lib/ColumnMovingMode.d.ts +9 -0
- package/lib/ColumnMovingSeparator.d.ts +1 -0
- package/lib/ColumnOptionsIconAlignment.d.ts +22 -0
- package/lib/ColumnOptionsIconBehavior.d.ts +26 -0
- package/lib/ColumnOptionsToolbarManagerOpeningEventArgs.d.ts +7 -0
- package/lib/ColumnPinnedChangedEventArgs.d.ts +1 -0
- package/lib/ColumnPinning.d.ts +1 -0
- package/lib/ColumnPinningInfo.d.ts +10 -0
- package/lib/ColumnPinningView.d.ts +1 -0
- package/lib/ColumnPinningView_combined.d.ts +76 -0
- package/lib/ColumnPropertySetter.d.ts +14 -0
- package/lib/ColumnPropertySettersCollection.d.ts +10 -0
- package/lib/ColumnPropertyUpdatingAnimationMode.d.ts +26 -0
- package/lib/ColumnResizingAnimationMode.d.ts +22 -0
- package/lib/ColumnResizingMode.d.ts +10 -0
- package/lib/ColumnResizingSeparator.d.ts +1 -0
- package/lib/ColumnShowingAnimationMode.d.ts +54 -0
- package/lib/ColumnSortDescription.d.ts +20 -0
- package/lib/ColumnSortDescriptionCollection.d.ts +29 -0
- package/lib/ColumnSortDirection.d.ts +22 -0
- package/lib/ColumnStates.d.ts +17 -0
- package/lib/ColumnSummaryDescription.d.ts +68 -0
- package/lib/ColumnSummaryDescriptionCollection.d.ts +29 -0
- package/lib/ColumnWidth.d.ts +16 -0
- package/lib/ComboBoxColumn.d.ts +1 -0
- package/lib/ComboEditorView.d.ts +46 -0
- package/lib/ComboEditorView_ComboExternal.d.ts +39 -0
- package/lib/ComparisonOperatorSelector.d.ts +1 -0
- package/lib/ComparisonOperatorSelectorView.d.ts +1 -0
- package/lib/ComparisonOperatorSelectorView_combined.d.ts +200 -0
- package/lib/ContentCellModelHelper.d.ts +20 -0
- package/lib/CurrentRendererSettings.d.ts +12 -0
- package/lib/DataAdapter.d.ts +1 -0
- package/lib/DataBindingEventArgs.d.ts +1 -0
- package/lib/DataGrid.d.ts +1 -0
- package/lib/DataGridAccessibilityLayoutPanel.d.ts +32 -0
- package/lib/DataGridCellEventArgs.d.ts +1 -0
- package/lib/DataGridCellLayoutPanel.d.ts +75 -0
- package/lib/DataGridColumn.d.ts +1 -0
- package/lib/DataGridColumnToolbarManager.d.ts +1 -0
- package/lib/DataGridDelayedExecutionManager.d.ts +13 -0
- package/lib/DataGridLocaleEn.d.ts +60 -0
- package/lib/DataGridPresenterManager.d.ts +15 -0
- package/lib/DataGridPropertySetter.d.ts +9 -0
- package/lib/DataGridScrollerKeyboardListener.d.ts +27 -0
- package/lib/DataGridSelectionMode.d.ts +34 -0
- package/lib/DataGridStylingDefaults.d.ts +1 -0
- package/lib/DataGridToolbar.d.ts +1 -0
- package/lib/DataGridToolbarView.d.ts +1 -0
- package/lib/DataGridToolbarView_combined.d.ts +135 -0
- package/lib/DataGridViewportManager.d.ts +11 -0
- package/lib/DataSourceNotificationBridge.d.ts +1 -0
- package/lib/DateEditorView.d.ts +44 -0
- package/lib/DateOperatorTypes.d.ts +32 -0
- package/lib/DateTimeCell.d.ts +10 -0
- package/lib/DateTimeCellModel.d.ts +1 -0
- package/lib/DateTimeCellModelExport.d.ts +14 -0
- package/lib/DateTimeCellPresenter.d.ts +15 -0
- package/lib/DateTimeColumn.d.ts +1 -0
- package/lib/DateTimeColumnValueFormatter.d.ts +19 -0
- package/lib/DateTimeFormats.d.ts +34 -0
- package/lib/DefaultCellActionManager.d.ts +1 -0
- package/lib/DefaultCellModelExportUpdater.d.ts +1 -0
- package/lib/DefaultGridInfoRequestor.d.ts +1 -0
- package/lib/DefaultPlatformPixelConverter.d.ts +9 -0
- package/lib/DefinitionBase.d.ts +1 -0
- package/lib/DefinitionPropertyUpdatedEventArgs.d.ts +20 -0
- package/lib/DragSelectEventArgs.d.ts +22 -0
- package/lib/DragType.d.ts +15 -0
- package/lib/Dragger.d.ts +47 -0
- package/lib/DraggerView.d.ts +34 -0
- package/lib/DropDownDataListItem.d.ts +9 -0
- package/lib/EditModeClickAction.d.ts +22 -0
- package/lib/EditModeType.d.ts +26 -0
- package/lib/EditRowDefinition.d.ts +1 -0
- package/lib/EditingManager.d.ts +1 -0
- package/lib/EditorCell.d.ts +92 -0
- package/lib/EditorCellModel.d.ts +1 -0
- package/lib/EditorCellModelExport.d.ts +16 -0
- package/lib/EditorCellPresenter.d.ts +13 -0
- package/lib/EditorDefinition.d.ts +1 -0
- package/lib/EditorRowCell.d.ts +10 -0
- package/lib/EditorRowCellModel.d.ts +1 -0
- package/lib/EditorRowCellPresenter.d.ts +13 -0
- package/lib/EditorType.d.ts +30 -0
- package/lib/EnterKeyBehaviorAfterEdit.d.ts +30 -0
- package/lib/EnterKeyBehaviors.d.ts +34 -0
- package/lib/FilterCell.d.ts +80 -0
- package/lib/FilterCellModel.d.ts +1 -0
- package/lib/FilterCellModelExport.d.ts +23 -0
- package/lib/FilterCellPresenter.d.ts +14 -0
- package/lib/FilterComparisonType.d.ts +22 -0
- package/lib/FilterDialogRenderCompletedEventArgs.d.ts +7 -0
- package/lib/FilterLogicalOperator.d.ts +18 -0
- package/lib/FilterOperand.d.ts +1 -0
- package/lib/FilterRowDefinition.d.ts +1 -0
- package/lib/FilterUIType.d.ts +23 -0
- package/lib/FixedCellPositions.d.ts +15 -0
- package/lib/FormatGroupTextEventArgs.d.ts +11 -0
- package/lib/FormatSummaryTextEventArgs.d.ts +12 -0
- package/lib/GotFocusEventArgs.d.ts +7 -0
- package/lib/GridActivationMode.d.ts +18 -0
- package/lib/GridActiveCellChangedEventArgs.d.ts +14 -0
- package/lib/GridAnimationManager.d.ts +1 -0
- package/lib/GridAnimationManagerAnimationCanceledEventArgs.d.ts +8 -0
- package/lib/GridAnimationManagerAnimationCompletedEventArgs.d.ts +8 -0
- package/lib/GridAnimationManagerAnimationCreatedEventArgs.d.ts +8 -0
- package/lib/GridAnimationPhaseSettings.d.ts +33 -0
- package/lib/GridAnimationSettings.d.ts +28 -0
- package/lib/GridCellBase.d.ts +135 -0
- package/lib/GridCellEditEndedEventArgs.d.ts +1 -0
- package/lib/GridCellEditStartedEventArgs.d.ts +1 -0
- package/lib/GridCellPosition.d.ts +14 -0
- package/lib/GridCellType.d.ts +15 -0
- package/lib/GridCellValueChangingEventArgs.d.ts +1 -0
- package/lib/GridColumnAnimationSettings.d.ts +59 -0
- package/lib/GridColumnButtonOptions.d.ts +1 -0
- package/lib/GridColumnButtonOptionsView.d.ts +1 -0
- package/lib/GridColumnButtonOptionsView_combined.d.ts +52 -0
- package/lib/GridColumnCollection.d.ts +1 -0
- package/lib/GridColumnFilterOptions.d.ts +1 -0
- package/lib/GridColumnFilterOptionsView.d.ts +1 -0
- package/lib/GridColumnFilterOptionsView_combined.d.ts +86 -0
- package/lib/GridColumnGroupOptions.d.ts +1 -0
- package/lib/GridColumnGroupOptionsView.d.ts +1 -0
- package/lib/GridColumnGroupOptionsView_combined.d.ts +52 -0
- package/lib/GridColumnHideOptions.d.ts +1 -0
- package/lib/GridColumnHideOptionsView.d.ts +1 -0
- package/lib/GridColumnHideOptionsView_combined.d.ts +38 -0
- package/lib/GridColumnMoveOptions.d.ts +1 -0
- package/lib/GridColumnMoveOptionsView.d.ts +1 -0
- package/lib/GridColumnMoveOptionsView_combined.d.ts +61 -0
- package/lib/GridColumnOptions.d.ts +1 -0
- package/lib/GridColumnOptionsBase.d.ts +1 -0
- package/lib/GridColumnOptionsSectionBase.d.ts +13 -0
- package/lib/GridColumnOptionsSimpleSectionBase.d.ts +17 -0
- package/lib/GridColumnOptionsUtilities.d.ts +1 -0
- package/lib/GridColumnOptionsView.d.ts +1 -0
- package/lib/GridColumnOptionsViewBase.d.ts +1 -0
- package/lib/GridColumnOptionsViewBase_combined.d.ts +159 -0
- package/lib/GridColumnOptionsView_combined.d.ts +182 -0
- package/lib/GridColumnPinOptions.d.ts +1 -0
- package/lib/GridColumnPinOptionsView.d.ts +1 -0
- package/lib/GridColumnPinOptionsView_combined.d.ts +56 -0
- package/lib/GridColumnSortOptions.d.ts +1 -0
- package/lib/GridColumnSortOptionsView.d.ts +1 -0
- package/lib/GridColumnSortOptionsView_combined.d.ts +53 -0
- package/lib/GridColumnSpacer.d.ts +29 -0
- package/lib/GridColumnSpacerCollection.d.ts +16 -0
- package/lib/GridColumnSummaryOptions.d.ts +1 -0
- package/lib/GridColumnSummaryOptionsView.d.ts +1 -0
- package/lib/GridColumnSummaryOptionsView_combined.d.ts +72 -0
- package/lib/GridColumnWidthChangedEventArgs.d.ts +1 -0
- package/lib/GridColumnsAutoGeneratedEventArgs.d.ts +1 -0
- package/lib/GridColumnsChangedEventArgs.d.ts +1 -0
- package/lib/GridCompoundConditionalStyle.d.ts +1 -0
- package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +14 -0
- package/lib/GridConditionalStyle.d.ts +1 -0
- package/lib/GridConditionalStyleBoundType.d.ts +9 -0
- package/lib/GridConditionalStyleCollection.d.ts +1 -0
- package/lib/GridConditionalStyleProperty.d.ts +127 -0
- package/lib/GridConditionalStylePropertyCollection.d.ts +10 -0
- package/lib/GridConditionalStylePropertyStylingType.d.ts +11 -0
- package/lib/GridCustomFilterRequestedEventArgs.d.ts +1 -0
- package/lib/GridDataCommittedEventArgs.d.ts +11 -0
- package/lib/GridDataCommittingEventArgs.d.ts +11 -0
- package/lib/GridEasingFunctionType.d.ts +26 -0
- package/lib/GridEffect.d.ts +1 -0
- package/lib/GridEffectGroup.d.ts +1 -0
- package/lib/GridEffectMainIntent.d.ts +20 -0
- package/lib/GridEffectManager.d.ts +1 -0
- package/lib/GridEffectSubIntent.d.ts +18 -0
- package/lib/GridExpansionIndicator.d.ts +1 -0
- package/lib/GridExpansionIndicatorView.d.ts +1 -0
- package/lib/GridExpansionIndicatorView_combined.d.ts +72 -0
- package/lib/GridExternalWrapper.d.ts +41 -0
- package/lib/GridFilterDialog.d.ts +1 -0
- package/lib/GridFilterDialogFilterChangeEventArgs.d.ts +9 -0
- package/lib/GridFilterDialogOpeningEventArgs.d.ts +9 -0
- package/lib/GridFilterDialogPanel.d.ts +1 -0
- package/lib/GridFilterDialogView.d.ts +1 -0
- package/lib/GridFilterDialogViewModel.d.ts +1 -0
- package/lib/GridFilterDialogViewModelGrouping.d.ts +10 -0
- package/lib/GridFilterDialogViewModelGroupingLevel.d.ts +10 -0
- package/lib/GridFilterDialogViewModelGroupingLevelCollection.d.ts +10 -0
- package/lib/GridFilterDialogViewModelRow.d.ts +28 -0
- package/lib/GridFilterDialogViewModelRowCollection.d.ts +1 -0
- package/lib/GridFilterDialogView_combined.d.ts +243 -0
- package/lib/GridFilterExpressionsEventArgs.d.ts +9 -0
- package/lib/GridFilterOperandsCollection.d.ts +1 -0
- package/lib/GridGroupDescriptionsChangedEventArgs.d.ts +11 -0
- package/lib/GridLayer.d.ts +1 -0
- package/lib/GridLayerController.d.ts +1 -0
- package/lib/GridLayerExport.d.ts +16 -0
- package/lib/GridModuleHelper.d.ts +8 -0
- package/lib/GridRowEditEndedEventArgs.d.ts +11 -0
- package/lib/GridRowEditStartedEventArgs.d.ts +11 -0
- package/lib/GridSelectedCellRangesChangedEventArgs.d.ts +20 -0
- package/lib/GridSelectedCellRangesCollection.d.ts +11 -0
- package/lib/GridSelectedCellsChangedEventArgs.d.ts +1 -0
- package/lib/GridSelectedCellsCollection.d.ts +1 -0
- package/lib/GridSelectedItemsChangedEventArgs.d.ts +17 -0
- package/lib/GridSelectedItemsCollection.d.ts +14 -0
- package/lib/GridSelectedKeysChangedEventArgs.d.ts +17 -0
- package/lib/GridSelectedKeysCollection.d.ts +31 -0
- package/lib/GridSelectionBehavior.d.ts +18 -0
- package/lib/GridSelectionChangedEventArgs.d.ts +7 -0
- package/lib/GridSizeChangedEventArgs.d.ts +9 -0
- package/lib/GridSortDescriptionsChangedEventArgs.d.ts +11 -0
- package/lib/GridSortIndicator.d.ts +1 -0
- package/lib/GridSortIndicatorView.d.ts +1 -0
- package/lib/GridSortIndicatorView_combined.d.ts +103 -0
- package/lib/GridStyleRepository.d.ts +97 -0
- package/lib/GridSummaryDescriptionsChangedEventArgs.d.ts +11 -0
- package/lib/GridViewportChangedEventArgs.d.ts +15 -0
- package/lib/GroupData.d.ts +10 -0
- package/lib/GroupHeaderDisplayMode.d.ts +18 -0
- package/lib/GroupInfo.d.ts +12 -0
- package/lib/GroupSummaryDisplayMode.d.ts +31 -0
- package/lib/Header.d.ts +1 -0
- package/lib/HeaderClickAction.d.ts +30 -0
- package/lib/HeaderRowSeparator.d.ts +1 -0
- package/lib/HeaderSeparator.d.ts +1 -0
- package/lib/HorizontalPropertyEditorDataSource.d.ts +10 -0
- package/lib/HoverManager.d.ts +1 -0
- package/lib/ICellActionManager.d.ts +1 -0
- package/lib/ICellModelExportUpdater.d.ts +11 -0
- package/lib/ICellPresenter.d.ts +1 -0
- package/lib/ICellRenderingEngine.d.ts +1 -0
- package/lib/IColumnGrouping.d.ts +12 -0
- package/lib/IColumnGroupingVisualModelExport.d.ts +11 -0
- package/lib/IDataAdapter.d.ts +1 -0
- package/lib/IDataGridComponent.d.ts +12 -0
- package/lib/IDelayedExecutionManager.d.ts +12 -0
- package/lib/IDragger.d.ts +1 -0
- package/lib/IDraggerView.d.ts +1 -0
- package/lib/IDraggerView_combined.d.ts +50 -0
- package/lib/IEditorView.d.ts +32 -0
- package/lib/IExternalDefinitionBase.d.ts +1 -0
- package/lib/IExternalGrid.d.ts +1 -0
- package/lib/IExternalTemplateColumn.d.ts +12 -0
- package/lib/IExternalTemplateHeaderColumn.d.ts +12 -0
- package/lib/IExternalTemplateSectionHeader.d.ts +12 -0
- package/lib/IGridInfoRequestor.d.ts +1 -0
- package/lib/INativeCell.d.ts +17 -0
- package/lib/IPlatformPixelConverter.d.ts +11 -0
- package/lib/IPropertySetter.d.ts +11 -0
- package/lib/ISummaryChooserView.d.ts +1 -0
- package/lib/ISummaryChooserView_combined.d.ts +103 -0
- package/lib/IToolbarVisualModelExport.d.ts +11 -0
- package/lib/IViewportManager.d.ts +11 -0
- package/lib/ImageCell.d.ts +34 -0
- package/lib/ImageCellModel.d.ts +1 -0
- package/lib/ImageCellModelExport.d.ts +12 -0
- package/lib/ImageCellPresenter.d.ts +16 -0
- package/lib/ImageColumn.d.ts +1 -0
- package/lib/ImageResourceType.d.ts +30 -0
- package/lib/ImageStretchOptions.d.ts +22 -0
- package/lib/LayoutAction.d.ts +42 -0
- package/lib/LostFocusEventArgs.d.ts +7 -0
- package/lib/MergedCellEvaluationCriteria.d.ts +22 -0
- package/lib/MergedCellInfo.d.ts +14 -0
- package/lib/MergedCellMode.d.ts +27 -0
- package/lib/ModelStates.d.ts +13 -0
- package/lib/ModelTypes.d.ts +23 -0
- package/lib/MultiColumnComboBox.d.ts +1 -0
- package/lib/MultiColumnComboBoxDataSourceNotificationHandler.d.ts +1 -0
- package/lib/MultiColumnComboBoxSelectedItemChangeType.d.ts +13 -0
- package/lib/MultiColumnComboBoxTextChangedEventArgs.d.ts +12 -0
- package/lib/MultiColumnComboBoxUtilities.d.ts +25 -0
- package/lib/MultiColumnComboBoxValueChangedEventArgs.d.ts +12 -0
- package/lib/MultiColumnComboBoxView.d.ts +1 -0
- package/lib/MultiColumnComboBoxView_combined.d.ts +499 -0
- package/lib/MultiColumnComboVisualModelExport.d.ts +70 -0
- package/lib/MultipleDataSourceNotifier.d.ts +20 -0
- package/lib/NativeUIComboFactory.d.ts +18 -0
- package/lib/NativeUIGridFactory.d.ts +19 -0
- package/lib/NumericCell.d.ts +11 -0
- package/lib/NumericCellFormatter.d.ts +1 -0
- package/lib/NumericCellModel.d.ts +1 -0
- package/lib/NumericCellModelExport.d.ts +14 -0
- package/lib/NumericCellPresenter.d.ts +15 -0
- package/lib/NumericColumn.d.ts +1 -0
- package/lib/NumericEditorView.d.ts +13 -0
- package/lib/OperatorModel.d.ts +13 -0
- package/lib/OperatorSelectorClosingEventArgs.d.ts +7 -0
- package/lib/OperatorSelectorOpeningEventArgs.d.ts +7 -0
- package/lib/OperatorSelectorValueChangedEventArgs.d.ts +14 -0
- package/lib/PageChangedEventArgs.d.ts +13 -0
- package/lib/PagedDataProvider.d.ts +1 -0
- package/lib/Pager.d.ts +1 -0
- package/lib/PagerDataSourceNotificationBridge.d.ts +1 -0
- package/lib/PagerGridDataSourceNotificationBridge.d.ts +1 -0
- package/lib/PagerView.d.ts +1 -0
- package/lib/PagerVisualModelExport.d.ts +25 -0
- package/lib/PinnedAreaSeparator.d.ts +1 -0
- package/lib/PinnedPositions.d.ts +22 -0
- package/lib/PinnedRowInfo.d.ts +1 -0
- package/lib/PlaceholderView.d.ts +26 -0
- package/lib/PrimaryKeyValue.d.ts +19 -0
- package/lib/PropertyEditor.d.ts +1 -0
- package/lib/PropertyEditorView.d.ts +1 -0
- package/lib/PropertyEditorView_combined.d.ts +237 -0
- package/lib/PushRowResult.d.ts +1 -0
- package/lib/PushRowSettings.d.ts +1 -0
- package/lib/RecyclingManager.d.ts +1 -0
- package/lib/ResponsiveEngine.d.ts +1 -0
- package/lib/ResponsivePhase.d.ts +1 -0
- package/lib/ResponsivePhasesCollection.d.ts +1 -0
- package/lib/ResponsiveState.d.ts +1 -0
- package/lib/ResponsiveStateEnteredEventArgs.d.ts +7 -0
- package/lib/ResponsiveStateEnteringEventArgs.d.ts +7 -0
- package/lib/ResponsiveStateExitedEventArgs.d.ts +7 -0
- package/lib/ResponsiveStatesCollection.d.ts +1 -0
- package/lib/RowCellsEffect.d.ts +1 -0
- package/lib/RowEffect.d.ts +1 -0
- package/lib/RowHoverAnimationMode.d.ts +22 -0
- package/lib/RowPath.d.ts +37 -0
- package/lib/RowRange.d.ts +14 -0
- package/lib/RowSelectionAnimationMode.d.ts +22 -0
- package/lib/RowSeparator.d.ts +1 -0
- package/lib/RowSeparatorCell.d.ts +10 -0
- package/lib/RowSeparatorCellPresenter.d.ts +12 -0
- package/lib/RowSeparatorModel.d.ts +1 -0
- package/lib/RowSeparatorModelExport.d.ts +11 -0
- package/lib/SaveLayoutColumn.d.ts +1 -0
- package/lib/SaveLayoutFilterInfo.d.ts +25 -0
- package/lib/SaveLayoutGroupInfo.d.ts +15 -0
- package/lib/SaveLayoutSortInfo.d.ts +15 -0
- package/lib/SectionFooter.d.ts +1 -0
- package/lib/SectionHeader.d.ts +1 -0
- package/lib/SectionHeaderCell.d.ts +14 -0
- package/lib/SectionHeaderCellModel.d.ts +1 -0
- package/lib/SectionHeaderCellModelExport.d.ts +21 -0
- package/lib/SectionHeaderCellPresenter.d.ts +14 -0
- package/lib/SectionInfo.d.ts +1 -0
- package/lib/SelectAllCheckboxChangedEventArgs.d.ts +8 -0
- package/lib/SelectionManager.d.ts +1 -0
- package/lib/SortIndicatorRenderCompletedEventArgs.d.ts +7 -0
- package/lib/SortIndicatorStyle.d.ts +25 -0
- package/lib/SortManager.d.ts +1 -0
- package/lib/SortMode.d.ts +30 -0
- package/lib/SpacerEffect.d.ts +1 -0
- package/lib/SpatialEngine.d.ts +1 -0
- package/lib/StringOperatorTypes.d.ts +16 -0
- package/lib/SummaryCell.d.ts +21 -0
- package/lib/SummaryCellModel.d.ts +1 -0
- package/lib/SummaryCellModelExport.d.ts +28 -0
- package/lib/SummaryCellPresenter.d.ts +14 -0
- package/lib/SummaryChangedEventArgs.d.ts +9 -0
- package/lib/SummaryChooser.d.ts +1 -0
- package/lib/SummaryChooserItem.d.ts +10 -0
- package/lib/SummaryChooserView.d.ts +1 -0
- package/lib/SummaryData.d.ts +13 -0
- package/lib/SummaryRow.d.ts +1 -0
- package/lib/SummaryRowRoot.d.ts +1 -0
- package/lib/SummaryRowSection.d.ts +1 -0
- package/lib/SummaryScope.d.ts +26 -0
- package/lib/TemplateCell.d.ts +17 -0
- package/lib/TemplateCellContainer.d.ts +15 -0
- package/lib/TemplateCellModel.d.ts +1 -0
- package/lib/TemplateCellModelExport.d.ts +12 -0
- package/lib/TemplateCellPresenter.d.ts +16 -0
- package/lib/TemplateCellUpdatingEventArgs.d.ts +1 -0
- package/lib/TemplateColumn.d.ts +1 -0
- package/lib/TemplateHeader.d.ts +19 -0
- package/lib/TemplateHeaderCell.d.ts +14 -0
- package/lib/TemplateHeaderCellModel.d.ts +17 -0
- package/lib/TemplateHeaderCellModelExport.d.ts +12 -0
- package/lib/TemplateHeaderCellPresenter.d.ts +16 -0
- package/lib/TemplateHeaderCellUpdatingEventArgs.d.ts +14 -0
- package/lib/TemplateSectionHeader.d.ts +17 -0
- package/lib/TemplateSectionHeaderCellModel.d.ts +8 -0
- package/lib/TemplateSectionHeaderCellModelExport.d.ts +11 -0
- package/lib/TemplateSectionHeaderCellUpdatingEventArgs.d.ts +14 -0
- package/lib/TextCell.d.ts +18 -0
- package/lib/TextCellLineBreakMode.d.ts +26 -0
- package/lib/TextCellModel.d.ts +1 -0
- package/lib/TextCellModelExport.d.ts +13 -0
- package/lib/TextCellPresenter.d.ts +14 -0
- package/lib/TextColumn.d.ts +1 -0
- package/lib/TextEditorView.d.ts +35 -0
- package/lib/TextHeader.d.ts +1 -0
- package/lib/TextHeaderCell.d.ts +54 -0
- package/lib/TextHeaderCellModel.d.ts +1 -0
- package/lib/TextHeaderCellModelExport.d.ts +11 -0
- package/lib/TextHeaderCellPresenter.d.ts +15 -0
- package/lib/TextIconSetBuiltInTypes.d.ts +11 -0
- package/lib/TextIconSetConditionalStyle.d.ts +18 -0
- package/lib/TextVisualModelExport.d.ts +16 -0
- package/lib/ToolbarVisualModelExport.d.ts +9 -0
- package/lib/VerticalSeparatorCell.d.ts +21 -0
- package/lib/VerticalSeparatorCellModel.d.ts +1 -0
- package/lib/VerticalSeparatorCellPresenter.d.ts +12 -0
- package/lib/VisibilityEngine.d.ts +1 -0
- package/lib/VisualModel.d.ts +1 -0
- package/lib/VisualModelExport.d.ts +74 -0
- package/lib/igc-apply-button-click-event-args.d.ts +12 -0
- package/lib/igc-cancel-button-click-event-args.d.ts +12 -0
- package/lib/igc-cell-info.d.ts +514 -0
- package/lib/igc-cell-key-module.d.ts +3 -0
- package/lib/igc-cell-key.d.ts +35 -0
- package/lib/igc-cell-range-module.d.ts +3 -0
- package/lib/igc-cell-range.d.ts +36 -0
- package/lib/igc-cell-style-requested-event-args.d.ts +30 -0
- package/lib/igc-checkbox-list-component.d.ts +328 -0
- package/lib/igc-checkbox-list-index-type-changed-event-args.d.ts +17 -0
- package/lib/igc-checkbox-list-keys-cleared-event-args.d.ts +12 -0
- package/lib/igc-checkbox-list-module.d.ts +3 -0
- package/lib/igc-checked-changed-event-args.d.ts +18 -0
- package/lib/igc-column-chooser-component.d.ts +94 -0
- package/lib/igc-column-chooser-module.d.ts +3 -0
- package/lib/igc-column-exchanger.d.ts +21 -0
- package/lib/igc-column-exchangers-collection.d.ts +8 -0
- package/lib/igc-column-group-description-collection.d.ts +29 -0
- package/lib/igc-column-group-description-module.d.ts +3 -0
- package/lib/igc-column-group-description.d.ts +52 -0
- package/lib/igc-column-grouping-component.d.ts +119 -0
- package/lib/igc-column-grouping-module.d.ts +3 -0
- package/lib/igc-column-hidden-changed-event-args.d.ts +17 -0
- package/lib/igc-column-moving-separator-component.d.ts +26 -0
- package/lib/igc-column-moving-separator-module.d.ts +3 -0
- package/lib/igc-column-pinned-changed-event-args.d.ts +27 -0
- package/lib/igc-column-pinning-component.d.ts +94 -0
- package/lib/igc-column-pinning-module.d.ts +3 -0
- package/lib/igc-column-property-setter.d.ts +31 -0
- package/lib/igc-column-property-setters-collection.d.ts +8 -0
- package/lib/igc-column-resizing-separator-component.d.ts +21 -0
- package/lib/igc-column-resizing-separator-module.d.ts +3 -0
- package/lib/igc-column-sort-description-collection.d.ts +29 -0
- package/lib/igc-column-sort-description-module.d.ts +3 -0
- package/lib/igc-column-sort-description.d.ts +33 -0
- package/lib/igc-column-summary-description-collection.d.ts +26 -0
- package/lib/igc-column-summary-description-module.d.ts +3 -0
- package/lib/igc-column-summary-description.d.ts +83 -0
- package/lib/igc-column-width-module.d.ts +3 -0
- package/lib/igc-column-width.d.ts +31 -0
- package/lib/igc-combo-box-column-component.d.ts +46 -0
- package/lib/igc-combo-box-column-module.d.ts +3 -0
- package/lib/igc-data-binding-event-args.d.ts +27 -0
- package/lib/igc-data-grid-all-columns-module.d.ts +3 -0
- package/lib/igc-data-grid-cell-event-args.d.ts +34 -0
- package/lib/igc-data-grid-column-component.d.ts +357 -0
- package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +145 -0
- package/lib/igc-data-grid-component.d.ts +1495 -0
- package/lib/igc-data-grid-core-module.d.ts +3 -0
- package/lib/igc-data-grid-expansion-indicator-component.d.ts +69 -0
- package/lib/igc-data-grid-filter-dialog-component.d.ts +102 -0
- package/lib/igc-data-grid-locale-en-module.d.ts +3 -0
- package/lib/igc-data-grid-module.d.ts +3 -0
- package/lib/igc-data-grid-pager-component.d.ts +113 -0
- package/lib/igc-data-grid-pager-module.d.ts +3 -0
- package/lib/igc-data-grid-sort-indicator-component.d.ts +74 -0
- package/lib/igc-data-grid-toolbar-component.d.ts +143 -0
- package/lib/igc-data-grid-toolbar-module.d.ts +3 -0
- package/lib/igc-date-time-cell-info.d.ts +42 -0
- package/lib/igc-date-time-column-component.d.ts +70 -0
- package/lib/igc-date-time-column-module.d.ts +3 -0
- package/lib/igc-definition-base-component.d.ts +320 -0
- package/lib/igc-edit-row-definition-component.d.ts +20 -0
- package/lib/igc-edit-row-definition-module.d.ts +3 -0
- package/lib/igc-editor-cell-info.d.ts +72 -0
- package/lib/igc-editor-definition-component.d.ts +20 -0
- package/lib/igc-editor-definition-module.d.ts +3 -0
- package/lib/igc-editor-row-cell-info.d.ts +13 -0
- package/lib/igc-filter-cell-info.d.ts +53 -0
- package/lib/igc-filter-dialog-render-completed-event-args.d.ts +12 -0
- package/lib/igc-filter-operand-module.d.ts +3 -0
- package/lib/igc-filter-operand.d.ts +55 -0
- package/lib/igc-filter-row-definition-component.d.ts +40 -0
- package/lib/igc-filter-row-definition-module.d.ts +3 -0
- package/lib/igc-format-group-text-event-args.d.ts +32 -0
- package/lib/igc-format-summary-text-event-args.d.ts +37 -0
- package/lib/igc-got-focus-event-args.d.ts +12 -0
- package/lib/igc-grid-active-cell-changed-event-args.d.ts +26 -0
- package/lib/igc-grid-animation-phase-settings.d.ts +52 -0
- package/lib/igc-grid-animation-settings.d.ts +16 -0
- package/lib/igc-grid-cell-edit-ended-event-args.d.ts +28 -0
- package/lib/igc-grid-cell-edit-started-event-args.d.ts +28 -0
- package/lib/igc-grid-cell-position-module.d.ts +3 -0
- package/lib/igc-grid-cell-position.d.ts +23 -0
- package/lib/igc-grid-cell-value-changing-event-args.d.ts +43 -0
- package/lib/igc-grid-column-animation-settings.d.ts +16 -0
- package/lib/igc-grid-column-button-options-component.d.ts +40 -0
- package/lib/igc-grid-column-button-options-module.d.ts +3 -0
- package/lib/igc-grid-column-collection.d.ts +8 -0
- package/lib/igc-grid-column-filter-options-component.d.ts +44 -0
- package/lib/igc-grid-column-filter-options-module.d.ts +3 -0
- package/lib/igc-grid-column-group-options-component.d.ts +26 -0
- package/lib/igc-grid-column-group-options-module.d.ts +3 -0
- package/lib/igc-grid-column-hide-options-component.d.ts +26 -0
- package/lib/igc-grid-column-hide-options-module.d.ts +3 -0
- package/lib/igc-grid-column-move-options-component.d.ts +30 -0
- package/lib/igc-grid-column-move-options-module.d.ts +3 -0
- package/lib/igc-grid-column-options-base-component.d.ts +99 -0
- package/lib/igc-grid-column-options-component.d.ts +142 -0
- package/lib/igc-grid-column-options-module.d.ts +3 -0
- package/lib/igc-grid-column-options-section-base-component.d.ts +15 -0
- package/lib/igc-grid-column-options-simple-section-base-component.d.ts +17 -0
- package/lib/igc-grid-column-pin-options-component.d.ts +30 -0
- package/lib/igc-grid-column-pin-options-module.d.ts +3 -0
- package/lib/igc-grid-column-sort-options-component.d.ts +33 -0
- package/lib/igc-grid-column-sort-options-module.d.ts +3 -0
- package/lib/igc-grid-column-summary-options-component.d.ts +52 -0
- package/lib/igc-grid-column-summary-options-module.d.ts +3 -0
- package/lib/igc-grid-column-width-changed-event-args.d.ts +32 -0
- package/lib/igc-grid-columns-auto-generated-event-args.d.ts +19 -0
- package/lib/igc-grid-columns-changed-event-args.d.ts +19 -0
- package/lib/igc-grid-compound-conditional-style-component.d.ts +19 -0
- package/lib/igc-grid-condition-filter-string-errors-parsing-event-args.d.ts +22 -0
- package/lib/igc-grid-conditional-style-collection.d.ts +8 -0
- package/lib/igc-grid-conditional-style-component.d.ts +80 -0
- package/lib/igc-grid-conditional-style-module.d.ts +3 -0
- package/lib/igc-grid-conditional-style-property-collection.d.ts +8 -0
- package/lib/igc-grid-conditional-style-property-component.d.ts +101 -0
- package/lib/igc-grid-conditional-style-property-module.d.ts +3 -0
- package/lib/igc-grid-custom-filter-requested-event-args.d.ts +40 -0
- package/lib/igc-grid-data-committed-event-args.d.ts +25 -0
- package/lib/igc-grid-data-committing-event-args.d.ts +25 -0
- package/lib/igc-grid-filter-dialog-filter-change-event-args.d.ts +15 -0
- package/lib/igc-grid-filter-dialog-opening-event-args.d.ts +15 -0
- package/lib/igc-grid-filter-dialog-view-model-grouping-level-collection.d.ts +8 -0
- package/lib/igc-grid-filter-dialog-view-model-grouping-level.d.ts +8 -0
- package/lib/igc-grid-filter-dialog-view-model-grouping.d.ts +19 -0
- package/lib/igc-grid-filter-dialog-view-model-row-collection.d.ts +8 -0
- package/lib/igc-grid-filter-dialog-view-model-row.d.ts +26 -0
- package/lib/igc-grid-filter-dialog-view-model.d.ts +34 -0
- package/lib/igc-grid-filter-expressions-event-args.d.ts +15 -0
- package/lib/igc-grid-filter-operands-collection.d.ts +8 -0
- package/lib/igc-grid-group-descriptions-changed-event-args.d.ts +18 -0
- package/lib/igc-grid-row-edit-ended-event-args.d.ts +22 -0
- package/lib/igc-grid-row-edit-started-event-args.d.ts +22 -0
- package/lib/igc-grid-selected-cell-ranges-changed-event-args.d.ts +40 -0
- package/lib/igc-grid-selected-cell-ranges-collection.d.ts +8 -0
- package/lib/igc-grid-selected-cells-changed-event-args.d.ts +34 -0
- package/lib/igc-grid-selected-cells-collection.d.ts +8 -0
- package/lib/igc-grid-selected-items-changed-event-args.d.ts +34 -0
- package/lib/igc-grid-selected-items-collection.d.ts +6 -0
- package/lib/igc-grid-selected-keys-changed-event-args.d.ts +34 -0
- package/lib/igc-grid-selected-keys-collection.d.ts +8 -0
- package/lib/igc-grid-selection-changed-event-args.d.ts +15 -0
- package/lib/igc-grid-size-changed-event-args.d.ts +25 -0
- package/lib/igc-grid-sort-descriptions-changed-event-args.d.ts +18 -0
- package/lib/igc-grid-summary-descriptions-changed-event-args.d.ts +18 -0
- package/lib/igc-group-data.d.ts +31 -0
- package/lib/igc-header-component.d.ts +51 -0
- package/lib/igc-header-row-separator-component.d.ts +20 -0
- package/lib/igc-header-row-separator-module.d.ts +3 -0
- package/lib/igc-header-separator-component.d.ts +17 -0
- package/lib/igc-header-separator-module.d.ts +3 -0
- package/lib/igc-horizontal-property-editor-data-source.d.ts +8 -0
- package/lib/igc-image-cell-info.d.ts +30 -0
- package/lib/igc-image-column-component.d.ts +47 -0
- package/lib/igc-image-column-module.d.ts +3 -0
- package/lib/igc-lost-focus-event-args.d.ts +12 -0
- package/lib/igc-multi-column-combo-box-component.d.ts +524 -0
- package/lib/igc-multi-column-combo-box-module.d.ts +3 -0
- package/lib/igc-multi-column-combo-box-text-changed-event-args.d.ts +13 -0
- package/lib/igc-multi-column-combo-box-value-changed-event-args.d.ts +13 -0
- package/lib/igc-numeric-cell-info.d.ts +76 -0
- package/lib/igc-numeric-column-component.d.ts +94 -0
- package/lib/igc-numeric-column-module.d.ts +3 -0
- package/lib/igc-operator-selector-closing-event-args.d.ts +12 -0
- package/lib/igc-operator-selector-opening-event-args.d.ts +15 -0
- package/lib/igc-operator-selector-value-changed-event-args.d.ts +20 -0
- package/lib/igc-page-changed-event-args.d.ts +22 -0
- package/lib/igc-pinned-area-separator-component.d.ts +17 -0
- package/lib/igc-pinned-area-separator-module.d.ts +3 -0
- package/lib/igc-primary-key-value-module.d.ts +3 -0
- package/lib/igc-primary-key-value.d.ts +29 -0
- package/lib/igc-property-editor-component.d.ts +138 -0
- package/lib/igc-property-editor-module.d.ts +3 -0
- package/lib/igc-responsive-phase.d.ts +50 -0
- package/lib/igc-responsive-phases-collection.d.ts +8 -0
- package/lib/igc-responsive-state-entered-event-args.d.ts +15 -0
- package/lib/igc-responsive-state-entering-event-args.d.ts +15 -0
- package/lib/igc-responsive-state-exited-event-args.d.ts +15 -0
- package/lib/igc-responsive-state.d.ts +72 -0
- package/lib/igc-responsive-states-collection.d.ts +8 -0
- package/lib/igc-row-separator-component.d.ts +20 -0
- package/lib/igc-row-separator-info.d.ts +13 -0
- package/lib/igc-row-separator-module.d.ts +3 -0
- package/lib/igc-section-footer-component.d.ts +20 -0
- package/lib/igc-section-footer-module.d.ts +3 -0
- package/lib/igc-section-header-cell-info.d.ts +29 -0
- package/lib/igc-section-header-component.d.ts +49 -0
- package/lib/igc-section-header-module.d.ts +3 -0
- package/lib/igc-select-all-checkbox-changed-event-args.d.ts +14 -0
- package/lib/igc-sort-indicator-render-completed-event-args.d.ts +12 -0
- package/lib/igc-summary-cell-info.d.ts +30 -0
- package/lib/igc-summary-changed-event-args.d.ts +25 -0
- package/lib/igc-summary-chooser-module.d.ts +3 -0
- package/lib/igc-summary-data.d.ts +27 -0
- package/lib/igc-summary-row-component.d.ts +58 -0
- package/lib/igc-summary-row-root-component.d.ts +17 -0
- package/lib/igc-summary-row-root-module.d.ts +3 -0
- package/lib/igc-summary-row-section-component.d.ts +17 -0
- package/lib/igc-summary-row-section-module.d.ts +3 -0
- package/lib/igc-template-cell-info.d.ts +18 -0
- package/lib/igc-template-cell-updating-event-args.d.ts +26 -0
- package/lib/igc-template-column-component.d.ts +52 -0
- package/lib/igc-template-column-module.d.ts +3 -0
- package/lib/igc-template-header-cell-info.d.ts +18 -0
- package/lib/igc-template-header-cell-updating-event-args.d.ts +26 -0
- package/lib/igc-template-header-component.d.ts +28 -0
- package/lib/igc-template-header-module.d.ts +3 -0
- package/lib/igc-template-section-header-cell-info.d.ts +13 -0
- package/lib/igc-template-section-header-cell-updating-event-args.d.ts +21 -0
- package/lib/igc-template-section-header-component.d.ts +28 -0
- package/lib/igc-template-section-header-module.d.ts +3 -0
- package/lib/igc-text-cell-info.d.ts +18 -0
- package/lib/igc-text-column-component.d.ts +41 -0
- package/lib/igc-text-column-module.d.ts +3 -0
- package/lib/igc-text-header-cell-info.d.ts +38 -0
- package/lib/igc-text-header-component.d.ts +20 -0
- package/lib/igc-text-header-module.d.ts +3 -0
- package/lib/igc-text-icon-set-conditional-style-component.d.ts +22 -0
- package/lib/igc-text-icon-set-conditional-style-module.d.ts +3 -0
- package/lib/igc-vertical-separator-cell-info.d.ts +13 -0
- package/package.json +43 -0
- package/public_api.d.ts +687 -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("tslib"),require("igniteui-webcomponents-core"),require("igniteui-webcomponents-inputs"),require("igniteui-webcomponents-layouts")):"function"==typeof define&&define.amd?define(["exports","tslib","igniteui-webcomponents-core","igniteui-webcomponents-inputs","igniteui-webcomponents-layouts"],e):e((t=t||self)["igniteui-webcomponents-data-grids"]={},t.tslib,t.igniteuiWebcomponentsCore,t.igniteuiWebcomponentsInputs,t.igniteuiWebcomponentsLayouts)}(this,(function(t,e,i,n,r){"use strict";var o=function(t){return t[t.Default=0]="Default",t[t.FadingUpDownArrows=1]="FadingUpDownArrows",t[t.FadingSimpleUpDownArrows=2]="FadingSimpleUpDownArrows",t[t.Unset=3]="Unset",t}({}),s=i.markEnum("SortIndicatorStyle","Default,0|FadingUpDownArrows,1|FadingSimpleUpDownArrows,2|Unset,3"),a=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}({}),l=i.markEnum("CellContentHorizontalAlignment","Left,0|Center,1|Right,2|Stretch,3|Auto,4"),u=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}({}),h=i.markEnum("CellContentVerticalAlignment","Top,0|Center,1|Bottom,2|Stretch,3|Auto,4"),c=function(t){return t[t.Ellipsis=0]="Ellipsis",t[t.NoWrap=1]="NoWrap",t[t.WordWrap=2]="WordWrap",t[t.CharacterWrap=3]="CharacterWrap",t}({}),p=i.markEnum("TextCellLineBreakMode","Ellipsis,0|NoWrap,1|WordWrap,2|CharacterWrap,3"),d=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}({}),f=i.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"),m=i.markEnum("FixedCellPositions","None,0|Left,1|Right,2|Top,3|Bottom,4"),g=function(t){function n(e,i){var n=t.call(this)||this;return n.n=0,n.m=0,n.a=0,n.c=0,n.l=-1,n.e=!1,n.k=-1,n.b=0,n.d=0,n.n=e,n.m=i,n.ad(),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"y",{get:function(){return this.n},set:function(t){this.n=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"x",{get:function(){return this.m},set:function(t){this.m=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},set:function(t){this.a=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.c},set:function(t){this.c=t,this.ad()},enumerable:!1,configurable:!0}),n.prototype.ad=function(){this.l=1e6*this.m},n.prototype.getHashCode=function(){return this.l},n.prototype.equals=function(t){var e=t;return this.a==e.a&&(this.n==e.n&&this.m==e.m)},n.prototype.toString=function(){return"F"+i.enumGetBox(m,this.a)+"."+this.n+"."+this.m},Object.defineProperty(n.prototype,"g",{get:function(){return(-100==this.m||-101==this.m)&&-100==this.n},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"h",{get:function(){return-101==this.m},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return-200==this.m||-201==this.m},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.e},set:function(t){this.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"o",{get:function(){return this.k},set:function(t){this.k=t},enumerable:!1,configurable:!0}),n.prototype.ab=function(){var t=new n(this.y,this.x);return t.b=this.b,t.i=this.i,t.o=this.o,t},n.$t=i.markType(n,"RowPath"),n}(i.Base),b=function(t){function n(){var e=t.call(this)||this;return e.a=0,e.c=null,e.___mustPassByValue=!0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridCellPosition"),n}(i.Base),y=function(t){return t[t.None=0]="None",t[t.Cell=1]="Cell",t[t.CellBatch=2]="CellBatch",t[t.Row=3]="Row",t}({}),v=i.markEnum("EditModeType","None,0|Cell,1|CellBatch,2|Row,3"),C=function(t){function n(){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 e.__extends(n,t),n.$t=i.markType(n,"GridViewportChangedEventArgs"),n}(i.Base),_=new i.Type(null,"ICellModelExportUpdater"),w=i.markEnum("ModelStates","New,0|Recycled,1|Inview,2"),S=function(t){function n(e){for(var i=[],n=1;n<arguments.length;n++)i[n-1]=arguments[n];var r=this;switch(e=null==e?0:e){case 0:var o=i[0],s=i[1],a=i[2],l=i[3],u=[s,a,l],h=u[0],c=u[1],p=u[2];(r=t.call(this,c,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=h,r.ad(),r.b=o,r.ad();break;case 1:o=i[0],s=i[1],a=i[2];(r=t.call(this,s,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 2:o=i[0],s=i[1];(r=t.call(this,0,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 3:o=i[0],s=i[1],a=i[2];(r=t.call(this,0,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.ae=a,r.ad()}return r}return e.__extends(n,t),Object.defineProperty(n.prototype,"a5",{get:function(){return this.a3},set:function(t){this.a3=t,this.ad()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bb",{get:function(){return this.a4},set:function(t){this.a4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"af",{get:function(){return this.ae},set:function(t){this.ae=t,this.ad()},enumerable:!1,configurable:!0}),n.prototype.ad=function(){t.prototype.ad.call(this),this.a2=1e8*this.a5+t.prototype.getHashCode.call(this)+this.af},n.prototype.getHashCode=function(){return this.a2},n.prototype.equals=function(e){if(!t.prototype.equals.call(this,e))return!1;var i=e;if(null==e)return!1;if(this.a3!=i.a3)return!1;if(!this.ay){if(this.az!=i.az)return!1;if(this.aw!=i.aw)return!1}return this.af==i.af},n.prototype.toString=function(){return this.a3+"."+t.prototype.toString.call(this)},n.prototype.ab=function(){var t=new n(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(n.prototype,"ay",{get:function(){return-300==this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"a0",{get:function(){return-400==this.a3||-401==this.a3||-402==this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"an",{get:function(){return this.g&&!this.ay},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"av",{get:function(){return-102==this.x&&-400==this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aq",{get:function(){return(-103==this.x||-104==this.x)&&-500==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"as",{get:function(){return(-103==this.x||-104==this.x)&&-501==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ap",{get:function(){return-100==this.x&&-500==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ar",{get:function(){return-100==this.x&&-501==this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"at",{get:function(){return-104==this.x},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"az",{get:function(){return this.ah},set:function(t){this.ah=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aw",{get:function(){return this.ag},set:function(t){this.ag=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a1",{get:function(){return this.az||this.aw},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ak",{get:function(){return 2==this.af},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"al",{get:function(){return 3==this.af},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ao",{get:function(){return 4==this.af},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"am",{get:function(){return 5==this.af},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CellPath",g.$),n}(g),P=i.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.None=0]="None",t[t.Ascending=1]="Ascending",t[t.Descending=2]="Descending",t}({}),x=i.markEnum("ColumnSortDirection","None,0|Ascending,1|Descending,2"),j=function(t){return t[t.None=0]="None",t[t.Left=1]="Left",t[t.Right=2]="Right",t}({}),k=i.markEnum("PinnedPositions","None,0|Left,1|Right,2"),I=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),Object.defineProperty(n,"bo",{get:function(){if(null==n.at){n.at=((t=new i.Brush).fill="#babfc7",t)}var t;return n.at},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bq",{get:function(){if(null==n.av){n.av=((t=new i.Brush).fill="#dde2eb",t)}var t;return n.av},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bi",{get:function(){var t;return null==n.an&&(n.an=((t=new i.Brush).color=i.Color.u(255,224,224,224),t)),n.an},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a8",{get:function(){if(null==n.ad){n.ad=((t=new i.Brush).fill="#babfc7",t)}var t;return n.ad},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a6",{get:function(){if(null==n.ab){n.ab=((t=new i.Brush).fill="#babfc7",t)}var t;return n.ab},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bs",{get:function(){if(null==n.ax){n.ax=((t=new i.Brush).fill="#ff80ab",t)}var t;return n.ax},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bt",{get:function(){if(null==n.ay){n.ay=((t=new i.Brush).fill="#181d1f",t)}var t;return n.ay},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a0",{get:function(){if(null==n.v){n.v=((t=new i.Brush).fill="#3c90bd",t)}var t;return n.v},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a1",{get:function(){if(null==n.w){n.w=((t=new i.Brush).fill="#204f69",t)}var t;return n.w},enumerable:!1,configurable:!0}),Object.defineProperty(n,"az",{get:function(){if(null==n.u){n.u=((t=new i.Brush).fill="#2196f3",t)}var t;return n.u},enumerable:!1,configurable:!0}),Object.defineProperty(n,"n",{get:function(){return null==n.h&&(n.h=new i.FontInfo,n.h.f=i.DeviceUtils.f(13),n.h.q="Verdana"),n.h},enumerable:!1,configurable:!0}),Object.defineProperty(n,"i",{get:function(){return null==n.c&&(n.c=new i.FontInfo,n.c.f=i.DeviceUtils.f(13),n.c.q="Segoe UI Emoji"),n.c},enumerable:!1,configurable:!0}),Object.defineProperty(n,"m",{get:function(){return null==n.g&&(n.g=new i.FontInfo,n.g.f=i.DeviceUtils.f(13),n.g.t="italic",n.g.q="Verdana"),n.g},enumerable:!1,configurable:!0}),Object.defineProperty(n,"j",{get:function(){return null==n.d&&(n.d=new i.FontInfo,n.d.f=i.DeviceUtils.f(14),n.d.q="Verdana"),n.d},enumerable:!1,configurable:!0}),Object.defineProperty(n,"l",{get:function(){return null==n.e&&(n.e=new i.FontInfo,n.e.f=i.DeviceUtils.f(12),n.e.v="600",n.e.q="Verdana"),n.e},enumerable:!1,configurable:!0}),Object.defineProperty(n,"k",{get:function(){return null==n.f&&(n.f=new i.FontInfo,n.f.f=i.DeviceUtils.f(12),n.f.q="Verdana"),n.f},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bg",{get:function(){return null==n.al&&(n.al=new i.Brush,n.al.color=i.Color.u(255,210,234,253)),n.al},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a2",{get:function(){var t;return null==n.x&&(n.x=((t=new i.Brush).fill="White",t)),n.x},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a7",{get:function(){if(null==n.ac){n.ac=((t=new i.Brush).color=i.Color.u(255,232,244,254),t)}var t;return n.ac},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bn",{get:function(){if(null==n.as){n.as=((t=new i.Brush).fill="#F8F8F8",t)}var t;return n.as},enumerable:!1,configurable:!0}),Object.defineProperty(n,"br",{get:function(){if(null==n.aw){n.aw=((t=new i.Brush).fill="#181d1f",t)}var t;return n.aw},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bp",{get:function(){if(null==n.au){n.au=((t=new i.Brush).fill="#181d1f",t)}var t;return n.au},enumerable:!1,configurable:!0}),Object.defineProperty(n,"be",{get:function(){if(null==n.aj){n.aj=((t=new i.Brush).fill="#fafafa",t)}var t;return n.aj},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bd",{get:function(){var t;return null==n.ai&&(n.ai=((t=new i.Brush).fill="#f5f5dc",t)),n.ai},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bh",{get:function(){if(null==n.am){n.am=((t=new i.Brush).fill="#ffffff",t)}var t;return n.am},enumerable:!1,configurable:!0}),Object.defineProperty(n,"ba",{get:function(){if(null==n.af){n.af=((t=new i.Brush).fill="#ffffff",t)}var t;return n.af},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bc",{get:function(){if(null==n.ah){n.ah=((t=new i.Brush).fill="#f8f8f8",t)}var t;return n.ah},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bf",{get:function(){if(null==n.ak){n.ak=((t=new i.Brush).fill="#fafafa",t)}var t;return n.ak},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bj",{get:function(){if(null==n.ao){n.ao=((t=new i.Brush).fill="#0099FF",t)}var t;return n.ao},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bk",{get:function(){if(null==n.ap){n.ap=((t=new i.Brush).fill="#181d1f",t)}var t;return n.ap},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a4",{get:function(){if(null==n.z){n.z=((t=new i.Brush).fill="#2196f3",t)}var t;return n.z},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bb",{get:function(){if(null==n.ag){n.ag=((t=new i.Brush).fill="#2196f3",t)}var t;return n.ag},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a9",{get:function(){if(null==n.ae){n.ae=((t=new i.Brush).fill="#babfc7",t)}var t;return n.ae},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a5",{get:function(){if(null==n.aa){n.aa=((t=new i.Brush).fill="#181d1f",t)}var t;return n.aa},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a",{get:function(){return 2},enumerable:!1,configurable:!0}),Object.defineProperty(n,"b",{get:function(){return 3},enumerable:!1,configurable:!0}),Object.defineProperty(n,"q",{get:function(){return i.truncate(i.DeviceUtils.g(30))},enumerable:!1,configurable:!0}),Object.defineProperty(n,"r",{get:function(){return i.truncate(i.DeviceUtils.g(36))},enumerable:!1,configurable:!0}),Object.defineProperty(n,"p",{get:function(){return i.truncate(i.DeviceUtils.g(40))},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a3",{get:function(){if(null==n.y){n.y=((t=new i.Brush).fill="#babfc7",t)}var t;return n.y},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bv",{get:function(){return n.bu},enumerable:!1,configurable:!0}),Object.defineProperty(n,"t",{get:function(){return n.s},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bm",{get:function(){if(null==n.ar){n.ar=((t=new i.Brush).fill="#ff0000",t)}var t;return n.ar},enumerable:!1,configurable:!0}),Object.defineProperty(n,"bl",{get:function(){var t;return null==n.aq&&(n.aq=((t=new i.Brush).color=i.Color.u(0,0,0,0),t)),n.aq},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridStyleRepository"),n.at=null,n.av=null,n.an=null,n.ad=null,n.ab=null,n.ax=null,n.ay=null,n.v=null,n.w=null,n.u=null,n.h=null,n.c=null,n.g=null,n.o=.54,n.d=null,n.e=null,n.f=null,n.al=null,n.x=null,n.ac=null,n.as=null,n.aw=null,n.au=null,n.aj=null,n.ai=null,n.am=null,n.af=null,n.ah=null,n.ak=null,n.ao=null,n.ap=null,n.z=null,n.ag=null,n.ae=null,n.aa=null,n.y=null,n.bu=new i.Thickness(0,1),n.s=new i.CornerRadius(0,3),n.ar=null,n.aq=null,n}(i.Base),T=function(t){function n(){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 e.__extends(n,t),n.prototype.ab=function(){var t=new i.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()+", "),i.stringIsNullOrEmpty(this.w)||t.l('fontStyle : "'+this.w+'", '),i.stringIsNullOrEmpty(this.x)||t.l('fontVariant : "'+this.x+'", '),i.stringIsNullOrEmpty(this.y)||t.l('fontWeight : "'+this.y+'", '),i.stringIsNullOrEmpty(this.u)||t.l('fontFamily : "'+this.u+'", '),i.stringIsNullOrEmpty(this.v)||t.l('fontStretch : "'+this.v+'", '),i.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 i.stringEndsWith(e,", ")&&(e=e.substr(0,e.length-2)),e+="} "},n.prototype.get_ac=function(){return"Cell"},Object.defineProperty(n.prototype,"ac",{get:function(){return this.get_ac()},enumerable:!1,configurable:!0}),n.prototype.ad=function(t){},n.$t=i.markType(n,"CellModelExport"),n}(i.Base),R=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}({}),A=i.markEnum("GroupSummaryDisplayMode","List,0|Cells,1|RowTop,2|RowBottom,3|None,4"),E=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}({}),B=i.markEnum("DateTimeFormats","DateShort,0|DateLong,1|TimeShort,2|TimeLong,3|DateTimeShort,4|DateTimeLong,5"),D=function(t){function n(){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 e.__extends(n,t),n.prototype.k=function(){this.b=!0},n.prototype.j=function(t){this.a=t,this.b=!1},n.prototype.i=function(t){if(+t==+i.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 n=t;return e.format(n)}n=t;switch(this.a){case 4:case 5:return n.toLocaleString();case 1:case 0:return n.toLocaleDateString();case 3:case 2:return n.toLocaleTimeString()}return t.toString()},n.$t=i.markType(n,"DateTimeColumnValueFormatter"),n}(i.Base),$=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=new Date,e.ag=0,e.ae=!1,e}return e.__extends(n,t),n.prototype.get_ac=function(){return"DateTimeCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l("dateTimeFormat : "+this.ag+", ")},n.$t=i.markType(n,"DateTimeCellModelExport",T.$),n}(T),M=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}({}),z=i.markEnum("EditorType","Default,0|Text,1|Numeric,2|Date,3|Combo,4"),N=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=!1,e.ag=null,e.ae=0,e.ah=null,e}return e.__extends(n,t),n.prototype.get_ac=function(){return"EditorCell"},n.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: '"+i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.ae)+"', "),e.l("errorMessage: '"+this.ah+"', ")},n.$t=i.markType(n,"EditorCellModelExport",T.$),n}(T),F=function(t){function n(){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 e.__extends(n,t),n.prototype.get_ac=function(){return"FilterCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l("dataType: '"+i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.af)+"', "),e.l("isEnabled: "+this.ag.toString().toLowerCase()+", "),e.l("filterValue: '"+this.an+"', "),e.l("operatorType: '"+i.enumGetBox(f,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+"', ")},n.$t=i.markType(n,"FilterCellModelExport",T.$),n}(T),G=function(t){function n(){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 e.__extends(n,t),n.prototype.get_ac=function(){return"SummaryCell"},n.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()+", "),i.stringIsNullOrEmpty(this.al)||e.l('summaryLabelFontStyle : "'+this.al+'", '),i.stringIsNullOrEmpty(this.am)||e.l('summaryLabelFontVariant : "'+this.am+'", '),i.stringIsNullOrEmpty(this.an)||e.l('summaryLabelFontWeight : "'+this.an+'", '),i.isNaN_(this.ag)||e.l("summaryLabelFontSize : "+this.ag+", "),i.stringIsNullOrEmpty(this.aj)||e.l('summaryLabelFontFamily : "'+this.aj+'", '),i.stringIsNullOrEmpty(this.ak)||e.l('summaryLabelFontStretch : "'+this.ak+'", '),i.stringIsNullOrEmpty(this.ar)||e.l('summaryValueFontStyle : "'+this.ar+'", '),i.stringIsNullOrEmpty(this.as)||e.l('summaryValueFontVariant : "'+this.as+'", '),i.stringIsNullOrEmpty(this.at)||e.l('summaryValueFontWeight : "'+this.at+'", '),i.isNaN_(this.ah)||e.l("summaryValueFontSize : "+this.ah+", "),i.stringIsNullOrEmpty(this.ap)||e.l('summaryValueFontFamily : "'+this.ap+'", '),i.stringIsNullOrEmpty(this.aq)||e.l('summaryValueFontStretch : "'+this.aq+'", ')},n.$t=i.markType(n,"SummaryCellModelExport",T.$),n}(T),V=function(t){return t[t.Uniform=0]="Uniform",t[t.Fill=1]="Fill",t[t.None=2]="None",t}({}),q=i.markEnum("ImageStretchOptions","Uniform,0|Fill,1|None,2"),L=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}({}),H=i.markEnum("ImageResourceType","Unspecified,0|LocalResource,1|LocalAsset,2|EmbeddedResource,3|RemoteResource,4"),W=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=null,e}return e.__extends(n,t),n.prototype.get_ac=function(){return"ImageCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l('imagePath : "'+this.ae+'", ')},n.$t=i.markType(n,"ImageCellModelExport",T.$),n}(T),U=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=0,e.af=0,e.ag=0,e}return e.__extends(n,t),n.prototype.get_ac=function(){return"NumericCell"},n.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+", ")},n.$t=i.markType(n,"NumericCellModelExport",T.$),n}(T),K=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.get_ac=function(){return"RowSeparator"},n.prototype.ad=function(e){t.prototype.ad.call(this,e)},n.$t=i.markType(n,"RowSeparatorModelExport",T.$),n}(T),X=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.a=null,e.b=null,e}return e.__extends(n,t),n.$t=i.markType(n,"GroupData"),n}(i.Base),Q=function(t){function n(){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 e.__extends(n,t),n.$t=i.markType(n,"SummaryData"),n}(i.Base),Y=function(t){function n(){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 e.__extends(n,t),n.prototype.get_ac=function(){return"SectionHeaderCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e);for(var n="groupNames : [ ",r="groupValues : [ ",o=0;o<this.af.length;o++)n+='"'+this.af[o]+'", ',r+='"'+this.ag[o]+'", ';var s="summaryNames : [ ",a="summaryValues : [ ",l="summaryOperands : [ ",u="summaryFormattedText : [ ";if(null!=this.ai)for(var h=0;h<this.ai.length;h++)s+='"'+this.ai[h]+'", ',a+='"'+this.ak[h]+'", ',l+='"'+i.enumGetBox(i.DataSourceSummaryOperand_$type,this.aj[h])+'", ',u+='"'+this.ah[h]+'", ';e.l(n+" ], "),e.l(r+" ], "),e.l('formattedText : "'+this.al+'", '),e.l(s+" ], "),e.l(a+" ], "),e.l(l+" ], "),e.l(u+" ], "),e.l('fullSummaryFormattedText : "'+this.am+'", ')},n.$t=i.markType(n,"SectionHeaderCellModelExport",T.$),n}(T),Z=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=null,e}return e.__extends(n,t),n.prototype.get_ac=function(){return"TemplateCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e)},n.$t=i.markType(n,"TemplateCellModelExport",T.$),n}(T),J=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.af=null,e.ae=null,e}return e.__extends(n,t),n.prototype.get_ac=function(){return"TextCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e),e.l('textValue : "'+this.af+'", '),e.l('formatString : "'+this.ae+'", ')},n.$t=i.markType(n,"TextCellModelExport",T.$),n}(T),tt=function(t){return t[t.Unset=0]="Unset",t[t.None=1]="None",t[t.Opposite=2]="Opposite",t}({}),et=i.markEnum("ColumnOptionsIconAlignment","Unset,0|None,1|Opposite,2"),it=function(t){return t[t.Unset=0]="Unset",t[t.AlwaysVisible=1]="AlwaysVisible",t[t.AppearOnHover=2]="AppearOnHover",t[t.AppearOnHoverAnimate=3]="AppearOnHoverAnimate",t}({}),nt=i.markEnum("ColumnOptionsIconBehavior","Unset,0|AlwaysVisible,1|AppearOnHover,2|AppearOnHoverAnimate,3"),rt=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.get_ac=function(){return"TextHeaderCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e)},n.$t=i.markType(n,"TextHeaderCellModelExport",J.$),n}(J),ot=function(t){return t[t.Both=0]="Both",t[t.Root=1]="Root",t[t.Groups=2]="Groups",t[t.None=3]="None",t}({}),st=i.markEnum("SummaryScope","Both,0|Root,1|Groups,2|None,3"),at=function(t){return t[t.Combined=0]="Combined",t[t.Split=1]="Split",t}({}),lt=i.markEnum("GroupHeaderDisplayMode","Combined,0|Split,1"),ut=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._page=0,e._data=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"page",{get:function(){return this._page},set:function(t){this._page=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"data",{get:function(){return this._data},set:function(t){this._data=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"PageChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),ht=function(t){function n(){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 e.__extends(n,t),n.$t=i.markType(n,"FormatSummaryTextEventArgs"),n}(i.Base),ct=function(t){function n(e){for(var i=[],n=1;n<arguments.length;n++)i[n-1]=arguments[n];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=i[0];r.ah=o,r.i=4;break;case 2:o=i[0];var s=i[1];r.ah=o,r.i=s}return r}return e.__extends(n,t),Object.defineProperty(n.prototype,"ah",{get:function(){return this.ac},set:function(t){this.ac=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.h},set:function(t){switch(this.h=t,this.h){case 0:this.l=new i.MinSummaryCalculator;break;case 1:this.l=new i.MaxSummaryCalculator;break;case 2:this.l=new i.SumSummaryCalculator;break;case 3:this.l=new i.AverageSummaryCalculator;break;case 4:this.l=new i.CountSummaryCalculator}},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l",{get:function(){return this.k},set:function(t){this.k=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ae",{get:function(){return this.z},set:function(t){this.z=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ag",{get:function(){return this.ab},set:function(t){this.ab=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ai",{get:function(){return this.ad},set:function(t){this.ad=t,this.aj()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"t",{get:function(){return this.q},set:function(t){this.q=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.b},set:function(t){this.b=t,this.aj()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"af",{get:function(){return this.aa},set:function(t){this.aa=t,this.aj()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c",{get:function(){return this.a},set:function(t){this.a=t,this.aj()},enumerable:!1,configurable:!0}),n.prototype.aj=function(){null!=this.ai?(this.f=new i.BindingFormatter,this.f.j=this.ai,this.f.d=this.d):this.f=null,null!=this.af?(this.e=new i.BindingFormatter,this.e.j=this.af,this.e.d=this.c):this.e=null},Object.defineProperty(n.prototype,"y",{get:function(){return this.x},set:function(t){this.x=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"w",{get:function(){return this.u},set:function(t){this.u=t},enumerable:!1,configurable:!0}),n.prototype.equals=function(e){var i=e;return null==i?t.prototype.equals.call(this,e):i.ah==this.ah&&i.i==this.i},n.prototype.getHashCode=function(){return 17*i.Base.getHashCodeStatic(this.ah)+this.i},n.prototype.o=function(t,e,i){var n,r=this,o=((n=new ht).c=r.ah,n.b=r.ag,n.a=t,n.d=e,n.e=i,n);return null!=this.formatText&&this.formatText(this,o),o},Object.defineProperty(n.prototype,"n",{get:function(){return this.m},set:function(t){var e=this.m;if(null!=e&&(e.provideCalculator=i.delegateRemove(e.provideCalculator,i.runOn(this,this.ak))),this.m=t,null!=this.m){var n=this.m;n.provideCalculator=i.delegateCombine(n.provideCalculator,i.runOn(this,this.ak))}},enumerable:!1,configurable:!0}),n.prototype.ak=function(t,e){null!=this.provideCalculator&&(this.provideCalculator(this,e),this.l=e.a)},n.$t=i.markType(n,"ColumnSummaryDescription"),n}(i.Base),pt=function(t){function n(){var e=t.call(this)||this;e.f=new i.SyncableObservableCollection$2(ct.$,i.SummaryDescription.$,0),e.a=null;var n=e.f;return n.compare=function(t,e){return t.ah==e.propertyName&&t.i==e.operand&&t.t==e.shouldDisplay&&t.l==e.calculator&&t.n==e},n.createFrom=function(t){var e=new ct(1,t.propertyName);return e.i=t.operand,e.t=t.shouldDisplay,e.l=t.calculator,e.n=t,e},n.createTo=function(t){var e=new i.SummaryDescription(1,t.ah);return e.operand=t.i,e.shouldDisplay=t.t,e.calculator=t.l,t.n=e,e},e}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this.f.shouldDetachOnTargetChange},set:function(t){this.f.shouldDetachOnTargetChange=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.g=function(t){return this.f.add(t)},n.prototype.o=function(t,e){this.f.add1(t,e)},n.prototype.n=function(){this.f.clear()},n.prototype.get=function(t){return this.f.get(t)},n.prototype.k=function(t){return this.f.indexOf(t)},n.prototype.h=function(t){return this.f.remove1(t)},n.prototype.d=function(t){return this.f.remove(t)},n.prototype.set=function(t,e){return this.f.set(t,e)},n.prototype.size=function(){return this.f.size()},n.prototype.m=function(t){this.f.addListener(t)},n.prototype.p=function(t){this.f.removeListener(t)},Object.defineProperty(n.prototype,"j",{get:function(){return this.f.all},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"ColumnSummaryDescriptionCollection"),n}(i.Base),dt=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e}return e.__extends(n,t),n.$t=i.markType(n,"GridFilterExpressionsEventArgs"),n}(i.Base),ft=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._sortDescriptions=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"sortDescriptions",{get:function(){return this._sortDescriptions},set:function(t){this._sortDescriptions=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridSortDescriptionsChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),mt=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._groupDescriptions=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"groupDescriptions",{get:function(){return this._groupDescriptions},set:function(t){this._groupDescriptions=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridGroupDescriptionsChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),gt=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._summaryDescriptions=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"summaryDescriptions",{get:function(){return this._summaryDescriptions},set:function(t){this._summaryDescriptions=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridSummaryDescriptionsChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),bt=function(t){function n(e){for(var i=[],n=1;n<arguments.length;n++)i[n-1]=arguments[n];var r=t.call(this)||this;switch(r.a=null,e=null==e?0:e){case 0:break;case 1:var o=i[0];r.b.o(o)}return r}return e.__extends(n,t),Object.defineProperty(n.prototype,"b",{get:function(){return null==this.a&&(this.a=new i.List$1(i.IDataSourceUpdateNotifier_$type,0)),this.a},enumerable:!1,configurable:!0}),n.prototype.c=function(t){this.b.add(t)},n.prototype.d=function(t){for(var e=0;e<this.b.count;e++)t(this.b._inner[e])},n.prototype.notifyClearItems=function(){this.d((function(t){return t.notifyClearItems()}))},n.prototype.notifyInsertItem=function(t,e){this.d((function(i){return i.notifyInsertItem(t,e)}))},n.prototype.notifyRemoveItem=function(t,e){this.d((function(i){return i.notifyRemoveItem(t,e)}))},n.prototype.notifySetItem=function(t,e,i){this.d((function(n){return n.notifySetItem(t,e,i)}))},n.prototype.rangeActualized=function(t,e){this.d((function(i){return i.rangeActualized(t,e)}))},n.$t=i.markType(n,"MultipleDataSourceNotifier",i.Base.$,[i.IDataSourceUpdateNotifier_$type]),n}(i.Base),yt=function(t){function n(e){for(var i=[],n=1;n<arguments.length;n++)i[n-1]=arguments[n];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=i[0];r.f=o;break;case 2:o=i[0];var s=i[1];r.f=o,r.c=s}return r}return e.__extends(n,t),Object.defineProperty(n.prototype,"f",{get:function(){return this.e},set:function(t){this.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c",{get:function(){return this.b},set:function(t){this.b=t},enumerable:!1,configurable:!0}),n.prototype.equals=function(e){var i=e;return null==i?t.prototype.equals.call(this,e):i.f==this.f&&i.c==this.c},n.prototype.getHashCode=function(){return 17*i.Base.getHashCodeStatic(this.f)+this.c},n.$t=i.markType(n,"ColumnSortDescription"),n}(i.Base),vt=function(t){function n(){var e=t.call(this)||this;e.f=new i.SyncableObservableCollection$2(yt.$,i.SortDescription.$,0),e.a=null;var n=e.f;return n.compare=function(t,e){return t.f==e.propertyName},n.createFrom=function(t){return new yt(2,t.propertyName,t.direction)},n.createTo=function(t){var e=t.c;return i.SortDescription.create(t.f,e)},e}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this.f.shouldDetachOnTargetChange},set:function(t){this.f.shouldDetachOnTargetChange=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.g=function(t){return this.f.add(t)},n.prototype.o=function(t,e){this.f.add1(t,e)},n.prototype.n=function(){this.f.clear()},n.prototype.get=function(t){return this.f.get(t)},n.prototype.k=function(t){return this.f.indexOf(t)},n.prototype.h=function(t){return this.f.remove1(t)},n.prototype.d=function(t){return this.f.remove(t)},n.prototype.set=function(t,e){return this.f.set(t,e)},n.prototype.size=function(){return this.f.size()},n.prototype.m=function(t){this.f.addListener(t)},n.prototype.p=function(t){this.f.removeListener(t)},Object.defineProperty(n.prototype,"j",{get:function(){return this.f.all},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"ColumnSortDescriptionCollection"),n}(i.Base),Ct=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.d=null,e.a=null,e.c=null,e.b=null,e}return e.__extends(n,t),n.$t=i.markType(n,"FormatGroupTextEventArgs"),n}(i.Base),_t=function(t){function n(e){for(var i=[],n=1;n<arguments.length;n++)i[n-1]=arguments[n];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=i[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=i[0];var s=i[1];(r=t.call(this,2,o,s)||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=i[0],s=i[1];var a=i[2];(r=t.call(this,2,o,s)||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=a}return r}return e.__extends(n,t),Object.defineProperty(n.prototype,"x",{get:function(){return this.t},set:function(t){this.t=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.h},set:function(t){this.h=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"u",{get:function(){return this.r},set:function(t){this.r=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.g},set:function(t){this.g=t,this.y()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"q",{get:function(){return this.p},set:function(t){this.p=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"v",{get:function(){return this.s},set:function(t){this.s=t},enumerable:!1,configurable:!0}),n.prototype.y=function(){null!=this.x?(this.l=new i.BindingFormatter,this.l.j=this.x,this.l.d=this.j):this.l=null,null!=this.u?(this.k=new i.BindingFormatter,this.k.j=this.u,this.k.d=this.i):this.k=null},n.prototype.w=function(t,e,i){var n,r=this,o=null;return null!=this.formatText&&((n=new Ct).d=r.f,n.a=t,n.c=e,n.b=i,o=n,this.formatText(this,o)),null==o?i:o.b},n.$t=i.markType(n,"ColumnGroupDescription",yt.$),n}(yt),wt=function(t){function n(){var e=t.call(this)||this;e.f=new i.SyncableObservableCollection$2(_t.$,i.SortDescription.$,0),e.a=null;var n=e.f;return n.compare=function(t,e){return t.f==e.propertyName},n.createFrom=function(t){return new _t(3,t.propertyName,t.direction,t.displayName)},n.createTo=function(t){var e=t.c;return i.SortDescription.create(t.f,e,t.v)},e}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this.f.shouldDetachOnTargetChange},set:function(t){this.f.shouldDetachOnTargetChange=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.g=function(t){return this.f.add(t)},n.prototype.o=function(t,e){this.f.add1(t,e)},n.prototype.n=function(){this.f.clear()},n.prototype.get=function(t){return this.f.get(t)},n.prototype.k=function(t){return this.f.indexOf(t)},n.prototype.h=function(t){return this.f.remove1(t)},n.prototype.d=function(t){return this.f.remove(t)},n.prototype.set=function(t,e){return this.f.set(t,e)},n.prototype.size=function(){return this.f.size()},n.prototype.m=function(t){this.f.addListener(t)},n.prototype.p=function(t){this.f.removeListener(t)},Object.defineProperty(n.prototype,"j",{get:function(){return this.f.all},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"ColumnGroupDescriptionCollection"),n}(i.Base),St=function(t){function n(){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 e.__extends(n,t),n.prototype.j=function(){var t=new i.StringBuilder(0);return t.l("{"),null!=this.a&&t.l("actualBackgroundColor : "+this.a.serialize()+", "),null!=this.b&&t.l("actualBorderColor : "+this.b.serialize()+", "),i.stringIsNullOrEmpty(this.n)||t.l('textStyleFontStyle : "'+this.n+'", '),i.stringIsNullOrEmpty(this.o)||t.l('textStyleFontVariant : "'+this.o+'", '),i.stringIsNullOrEmpty(this.p)||t.l('textStyleFontWeight : "'+this.p+'", '),i.stringIsNullOrEmpty(this.l)||t.l('textStyleFontFamily : "'+this.l+'", '),i.stringIsNullOrEmpty(this.m)||t.l('textStyleFontStretch : "'+this.m+'", '),i.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()},n.$t=i.markType(n,"PagerVisualModelExport"),n}(i.Base),Pt=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._propertyName=null,e._animationType=0,e._oldValue=null,e._newValue=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"propertyName",{get:function(){return this._propertyName},set:function(t){this._propertyName=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"animationType",{get:function(){return this._animationType},set:function(t){this._animationType=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"oldValue",{get:function(){return this._oldValue},set:function(t){this._oldValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"newValue",{get:function(){return this._newValue},set:function(t){this._newValue=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"DefinitionPropertyUpdatedEventArgs",i.EventArgs.$),n}(i.EventArgs),Ot=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}({}),xt=i.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"),jt=function(t){return t[t.Deferred=0]="Deferred",t[t.Immediate=1]="Immediate",t[t.None=2]="None",t}({}),kt=i.markEnum("ColumnResizingMode","Deferred,0|Immediate,1|None,2"),It=function(t){return t[t.Deferred=0]="Deferred",t[t.None=1]="None",t}({}),Tt=i.markEnum("ColumnMovingMode","Deferred,0|None,1"),Rt=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"e",{get:function(){return this.d},set:function(t){this.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(n,"a",{get:function(){return(t=new n).c=!0,t.e=0,t.f=1,t;var t},enumerable:!1,configurable:!0}),n.parse=function(t){if(null==t)return new n;t=t.trim();var e=i.stringContains(t,"*");if(e||i.stringContains(t,"min=")||i.stringContains(t,"Min=")||i.stringContains(t,",")){var r=new n;r.c=e,t=i.stringReplace(t," ",""),t=i.stringReplace(t,"min=",","),t=i.stringReplace(t,"Min=",","),t=i.stringReplace(t,"*,,","*"),t=i.stringReplace(t,"*,","*");for(var o=(t=i.stringReplace(t,",,",",")).split("*"),s=new i.List$1(i.String_$type,0),a=0;a<o.length;a++)for(var l=o[a].split(","),u=0;u<l.length;u++)s.add(l[u]);var h,c,p=s._inner[0];if(null!=p&&(p=p.trim()),i.stringIsNullOrEmpty(p))h=1;else if(m=i.tryParseNumber(p,h),h=m.p1,!m.ret)return new n;if(r.f=h,s.count>1&&null!=s._inner[1])s._inner[1]=i.stringReplace(s._inner[1],">",""),function(){var t=i.tryParseNumber(s._inner[1],c);return c=t.p1,t.ret}()&&(r.e=c);return r}var d,f,m,g=new n;return g.c=!1,f=i.tryParseNumber(t,d),d=f.p1,f.ret?(g.f=d,g):new n},n.$t=i.markType(n,"ColumnWidth"),n}(i.Base),At=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}({}),Et=i.markEnum("HeaderClickAction","SortByOneColumnOnly,0|SortByMultipleColumns,1|SortByOneColumnOnlyTriState,2|SortByMultipleColumnsTriState,3|None,4"),Bt=function(t){return t[t.None=0]="None",t[t.SingleClick=1]="SingleClick",t[t.DoubleClick=2]="DoubleClick",t}({}),Dt=i.markEnum("EditModeClickAction","None,0|SingleClick,1|DoubleClick,2"),$t=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}({}),Mt=i.markEnum("ColumnShowingAnimationMode","Auto,0|None,1|SlideFromLeft,2|SlideFromRight,3|SlideFromTop,4|SlideFromBottom,5|FadeIn,6|SlideFromLeftAndFadeIn,7|SlideFromRightAndFadeIn,8|SlideFromTopAndFadeIn,9|SlideFromBottomAndFadeIn,10"),zt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.Interpolate=2]="Interpolate",t[t.InterpolateDeep=3]="InterpolateDeep",t}({}),Nt=i.markEnum("ColumnPropertyUpdatingAnimationMode","Auto,0|None,1|Interpolate,2|InterpolateDeep,3"),Ft=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.CrossFade=2]="CrossFade",t}({}),Gt=i.markEnum("CellDataLoadedAnimationMode","Auto,0|None,1|CrossFade,2"),Vt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.ColorBlend=2]="ColorBlend",t}({}),qt=i.markEnum("RowSelectionAnimationMode","Auto,0|None,1|ColorBlend,2"),Lt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.ColorBlend=2]="ColorBlend",t}({}),Ht=i.markEnum("RowHoverAnimationMode","Auto,0|None,1|ColorBlend,2"),Wt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.ColorBlend=2]="ColorBlend",t}({}),Ut=i.markEnum("CellSelectionAnimationMode","Auto,0|None,1|ColorBlend,2"),Kt=function(t){return t[t.Linear=0]="Linear",t[t.CubicInOut=1]="CubicInOut",t[t.ExponentialInOut=2]="ExponentialInOut",t[t.CircleInOut=3]="CircleInOut",t}({}),Xt=i.markEnum("GridEasingFunctionType","Linear,0|CubicInOut,1|ExponentialInOut,2|CircleInOut,3"),Qt=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"c",{get:function(){return this.b},set:function(t){var e=this.b;this.b=t,e!=this.b&&this.x("EasingFunctionType",i.enumGetBox(Xt,e),i.enumGetBox(Xt,this.b))},enumerable:!1,configurable:!0}),n.prototype.x=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.a=function(){var t,e=this;return(t=new n).l=e.l,t.c=e.c,t.m=e.m,t.n=e.n,t.e=e.e,t.o=e.o,t.k=e.k,t},n.$t=i.markType(n,"GridAnimationPhaseSettings",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),Yt=function(t){function n(){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 Qt,e.a.l=1e3,e.a.c=1,e.a.m=500,e.a.e=!1,e.k=e.a.a(),e.i=new Qt,e.i.l=1e3,e.i.c=1,e.i.e=!1,e.b=new Qt,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 Qt,e.f.m=1200,e.f.l=300,e.f.c=1,e.g=new Qt,e.g.l=1e3,e.g.c=1,e.g.m=500,e.g.e=!1,e.h=new Qt,e.h.c=1,e.h.l=800,e.d=e.a.a(),e.d.m=0,e.c=new Qt,e.c.m=0,e.c.l=300,e.c.c=0,e.j=new Qt,e.j.c=1,e.j.l=200,e}return e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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}),n.prototype.av=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.aw(t,e,n)},n.prototype.aw=function(t,e,n){switch(t){case"ColumnAddingMainPhase":if(null!=e){var r=e;r.propertyChanged=i.delegateRemove(r.propertyChanged,i.runOn(this,this.al))}if(null!=n){var o=n;o.propertyChanged=i.delegateCombine(o.propertyChanged,i.runOn(this,this.al))}break;case"ColumnAddingPrePhase":if(null!=e){var s=e;s.propertyChanged=i.delegateRemove(s.propertyChanged,i.runOn(this,this.am))}if(null!=n){var a=n;a.propertyChanged=i.delegateCombine(a.propertyChanged,i.runOn(this,this.am))}break;case"ColumnShowingMainPhase":if(null!=e){var l=e;l.propertyChanged=i.delegateRemove(l.propertyChanged,i.runOn(this,this.at))}if(null!=n){var u=n;u.propertyChanged=i.delegateCombine(u.propertyChanged,i.runOn(this,this.at))}break;case"ColumnShowingPrePhase":if(null!=e){var h=e;h.propertyChanged=i.delegateRemove(h.propertyChanged,i.runOn(this,this.au))}if(null!=n){var c=n;c.propertyChanged=i.delegateCombine(c.propertyChanged,i.runOn(this,this.au))}break;case"ColumnMovingMainPhase":if(null!=e){var p=e;p.propertyChanged=i.delegateRemove(p.propertyChanged,i.runOn(this,this.ar))}if(null!=n){var d=n;d.propertyChanged=i.delegateCombine(d.propertyChanged,i.runOn(this,this.ar))}break;case"ColumnMovingPrePhase":if(null!=e){var f=e;f.propertyChanged=i.delegateRemove(f.propertyChanged,i.runOn(this,this.as))}if(null!=n){var m=n;m.propertyChanged=i.delegateCombine(m.propertyChanged,i.runOn(this,this.as))}break;case"ColumnHidingMainPhase":if(null!=e){var g=e;g.propertyChanged=i.delegateRemove(g.propertyChanged,i.runOn(this,this.ap))}if(null!=n){var b=n;b.propertyChanged=i.delegateCombine(b.propertyChanged,i.runOn(this,this.ap))}break;case"ColumnHidingPostPhase":if(null!=e){var y=e;y.propertyChanged=i.delegateRemove(y.propertyChanged,i.runOn(this,this.aq))}if(null!=n){var v=n;v.propertyChanged=i.delegateCombine(v.propertyChanged,i.runOn(this,this.aq))}break;case"ColumnExchangingMainPhase":if(null!=e){var C=e;C.propertyChanged=i.delegateRemove(C.propertyChanged,i.runOn(this,this.ao))}if(null!=n){var _=n;_.propertyChanged=i.delegateCombine(_.propertyChanged,i.runOn(this,this.ao))}break;case"ColumnExchangingCleanupPhase":if(null!=e){var w=e;w.propertyChanged=i.delegateRemove(w.propertyChanged,i.runOn(this,this.an))}if(null!=n){var S=n;S.propertyChanged=i.delegateCombine(S.propertyChanged,i.runOn(this,this.an))}}},n.prototype.al=function(t,e){this.av("ColumnAddingMainPhase",this.m,this.m)},n.prototype.am=function(t,e){this.av("ColumnAddingPrePhase",this.n,this.n)},n.prototype.at=function(t,e){this.av("ColumnShowingMainPhase",this.w,this.w)},n.prototype.au=function(t,e){this.av("ColumnShowingPrePhase",this.x,this.x)},n.prototype.ar=function(t,e){this.av("ColumnMovingMainPhase",this.s,this.s)},n.prototype.as=function(t,e){this.av("ColumnMovingPrePhase",this.t,this.t)},n.prototype.ap=function(t,e){this.av("ColumnHidingMainPhase",this.q,this.q)},n.prototype.aq=function(t,e){this.av("ColumnHidingPostPhase",this.r,this.r)},n.prototype.ao=function(t,e){this.av("ColumnExchangingMainPhase",this.p,this.p)},n.prototype.an=function(t,e){this.av("ColumnExchangingCleanupPhase",this.o,this.o)},n.$t=i.markType(n,"GridColumnAnimationSettings",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),Zt=function(t){function n(){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 Qt,e.b.l=500,e.b.c=1,e.b.e=!1,e.d=new Qt,e.d.l=300,e.d.c=1,e.d.n=0,e.d.e=!0,e.a=new Qt,e.a.l=0,e.a.c=1,e.a.n=0,e.a.e=!0,e.c=new Qt,e.c.l=100,e.c.c=1,e.c.n=0,e.c.e=!0,e}return e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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(n.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}),n.prototype.p=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.q(t,e,n)},n.prototype.q=function(t,e,n){switch(t){case"CellDataLoadedMainPhase":if(null!=e){var r=e;r.propertyChanged=i.delegateRemove(r.propertyChanged,i.runOn(this,this.o))}if(null!=n){var o=n;o.propertyChanged=i.delegateCombine(o.propertyChanged,i.runOn(this,this.o))}break;case"RowSelectionMainPhase":if(null!=e){var s=e;s.propertyChanged=i.delegateRemove(s.propertyChanged,i.runOn(this,this.r))}if(null!=n){var a=n;a.propertyChanged=i.delegateCombine(a.propertyChanged,i.runOn(this,this.r))}break;case"CellActivationMainPhase":if(null!=e){var l=e;l.propertyChanged=i.delegateRemove(l.propertyChanged,i.runOn(this,this.n))}if(null!=n){var u=n;u.propertyChanged=i.delegateCombine(u.propertyChanged,i.runOn(this,this.n))}}},n.prototype.o=function(t,e){this.p("CellDataLoadedMainPhase",this.f,this.f)},n.prototype.r=function(t,e){this.p("RowSelectionMainPhase",this.h,this.h)},n.prototype.n=function(t,e){this.p("CellActivationMainPhase",this.e,this.e)},n.$t=i.markType(n,"GridAnimationSettings",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),Jt=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.Interpolate=2]="Interpolate",t}({}),te=i.markEnum("ColumnResizingAnimationMode","Auto,0|None,1|Interpolate,2"),ee=function(t){return t[t.Auto=0]="Auto",t[t.None=1]="None",t[t.SlideOver=2]="SlideOver",t}({}),ie=i.markEnum("ColumnMovingAnimationMode","Auto,0|None,1|SlideOver,2"),ne=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}({}),re=i.markEnum("ColumnHidingAnimationMode","Auto,0|None,1|SlideToLeft,2|SlideToRight,3|SlideToTop,4|SlideToBottom,5|FadeOut,6|SlideToLeftAndFadeOut,7|SlideToRightAndFadeOut,8|SlideToTopAndFadeOut,9|SlideToBottomAndFadeOut,10"),oe=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}({}),se=i.markEnum("ColumnExchangingAnimationMode","Auto,0|None,1|SlideToLeft,2|SlideToRight,3|SlideToTop,4|SlideToBottom,5|Crossfade,6|SlideToLeftAndCrossfade,7|SlideToRightAndCrossfade,8|SlideToTopAndCrossfade,9|SlideToBottomAndCrossfade,10"),ae=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}({}),le=i.markEnum("DataGridSelectionMode","None,0|SingleRow,1|MultipleRow,2|SingleCell,3|MultipleCell,4|RangeCell,5"),ue=function(t){return t[t.None=0]="None",t[t.Cell=1]="Cell",t}({}),he=i.markEnum("GridActivationMode","None,0|Cell,1"),ce=function(t){return t[t.Toggle=0]="Toggle",t[t.ModifierBased=1]="ModifierBased",t}({}),pe=i.markEnum("GridSelectionBehavior","Toggle,0|ModifierBased,1"),de=function(t){function n(){var e=t.call(this,i.Base.$,0)||this;return e.af=!1,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),n.prototype.ag=function(t){this.collectionChanged=i.delegateCombine(this.collectionChanged,t)},n.prototype.u=function(t){var e=this._inner[t];0==t?this._inner.shift():this._inner.splice(t,1),this.ad(new i.PropertyChangedEventArgs("Count")),this.ad(new i.PropertyChangedEventArgs("Item[]")),this.af||this.ac(new i.NotifyCollectionChangedEventArgs(1,1,e,t))},n.$t=i.markType(n,"GridSelectedItemsCollection",i.ObservableCollection$1.$.specialize(i.Base.$)),n}(i.ObservableCollection$1),fe=function(t){function n(e,i){var n=t.call(this)||this;return n.a=null,n.b=null,n.a=e,n.b=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"key",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"value",{get:function(){return this.b},set:function(t){this.b=t},enumerable:!1,configurable:!0}),n.createIdentityKey=function(t){return new n(null,[t])},n.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 i=this.b[0],n=e.b[0];return this.f(i,n)}for(var r=0;r<this.b.length;r++)if(!this.f(this.b[r],e.b[r]))return!1;return!0},n.prototype.f=function(t,e){return null==t&&null==e||(null!=t||null==e)&&i.Base.equalsStatic(t,e)},n.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},n.prototype.i=function(t){return null==t?0:i.Base.getHashCodeStatic(t)},n.$t=i.markType(n,"PrimaryKeyValue"),n}(i.Base),me=function(t){function n(){var e=t.call(this,fe.$,0)||this;return e.ak=new i.List$1(i.Delegate_$type,0),e.ah=!1,e.af=!0,e.ai=new i.Dictionary$2(fe.$,i.Number_$type,0),e.aj=new i.Dictionary$2(i.Number_$type,fe.$,0),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),n.prototype.an=function(t){this.collectionChanged=i.delegateCombine(this.collectionChanged,t)},n.prototype.am=function(t){this.ak.add(t)},n.prototype.ao=function(t){this.ak.remove(t)},n.prototype.ap=function(t){this.collectionChanged=i.delegateRemove(this.collectionChanged,t)},Object.defineProperty(n.prototype,"ag",{get:function(){return this.af},set:function(t){this.af=t},enumerable:!1,configurable:!0}),n.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))},n.prototype.o=function(n){var r,o,s=this.count;if(t.prototype.o.call(this,n),this.ag)try{for(var a=e.__values(i.fromEnum(n)),l=a.next();!l.done;l=a.next()){var u=l.value;this.ai.addItem(u,s),this.aj.addItem(s,u),s++}}catch(t){r={error:t}}finally{try{l&&!l.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}},n.prototype.p=function(){var n,r,o,s,a=new i.List$1(i.Delegate_$type,0);try{for(var l=e.__values(i.fromEnum(this.ak)),u=l.next();!u.done;u=l.next()){var h=u.value;a.add(h)}}catch(t){n={error:t}}finally{try{u&&!u.done&&(r=l.return)&&r.call(l)}finally{if(n)throw n.error}}try{for(var c=e.__values(i.fromEnum(a)),p=c.next();!p.done;p=c.next()){(0,p.value)()}}catch(t){o={error:t}}finally{try{p&&!p.done&&(s=c.return)&&s.call(c)}finally{if(o)throw o.error}}t.prototype.p.call(this),this.ag&&(this.ai.clear(),this.aj.clear())},n.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 n=t+1;n<this.count;n++)if(this.aj.containsKey(n)){var r=this.aj.item(n);this.aj.removeItem(n),this.aj.addItem(n-1,r),this.ai.item(r,n-1)}}var o=this._inner[t];0==t?this._inner.shift():this._inner.splice(t,1),this.ad(new i.PropertyChangedEventArgs("Count")),this.ad(new i.PropertyChangedEventArgs("Item[]")),this.ah||this.ac(new i.NotifyCollectionChangedEventArgs(1,1,o,t))},n.prototype.v=function(e,i){if(t.prototype.v.call(this,e,i),this.ag)for(var n=e;n<e+i;n++)if(this.aj.containsKey(n)){var r=this.aj.item(n);this.ai.removeItem(r),this.aj.removeItem(n)}},n.prototype.x=function(e,i){if(t.prototype.x.call(this,e,i),this.ag&&this.aj.containsKey(e)){var n=this.aj.item(e);this.aj.item(e,i),this.ai.removeItem(n),this.ai.addItem(i,e)}},n.prototype.r=function(e,i){if(t.prototype.r.call(this,e,i),this.ag)for(var n=e;n<this.count;n++){var r=this._inner[n];this.ai.containsKey(r)?(this.ai.item(r,n),this.aj.removeItem(n),this.aj.addItem(n,r)):(this.ai.addItem(r,n),this.aj.addItem(n,r))}},n.prototype.al=function(t){return this.ag?this.ai.containsKey(t)?this.ai.item(t):-1:this.indexOf(t)},n.$t=i.markType(n,"GridSelectedKeysCollection",i.ObservableCollection$1.$.specialize(fe.$)),n}(i.ObservableCollection$1),ge=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.g=-2147483648,e.e=-2147483648,e.h=-2147483648,e.f=-2147483648,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"k",{get:function(){return this.g},set:function(t){this.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.e},set:function(t){this.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.f},set:function(t){this.f=t},enumerable:!1,configurable:!0}),n.prototype.b=function(t,e){return this.d(t)&&this.c(e)},n.prototype.d=function(t){return t>=this.l&&t<=this.j},n.prototype.c=function(t){return t>=this.k&&t<=this.i},n.prototype.a=function(){var t=new n;return t.k=this.k,t.i=this.i,t.l=this.l,t.j=this.j,t},n.$t=i.markType(n,"CellRange"),n}(i.Base),be=function(t){function n(){return t.call(this,ge.$,0)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridSelectedCellRangesCollection",i.ObservableCollection$1.$.specialize(ge.$)),n}(i.ObservableCollection$1),ye=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}({}),ve=i.markEnum("EnterKeyBehaviors","None,0|Edit,1|MoveDown,2|MoveRight,3|MoveUp,4|MoveLeft,5"),Ce=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}({}),_e=i.markEnum("EnterKeyBehaviorAfterEdit","None,0|MoveDown,1|MoveRight,2|MoveUp,3|MoveLeft,4"),we=function(t){return t[t.Default=0]="Default",t[t.Never=1]="Never",t[t.Always=2]="Always",t[t.OnlyWhenSorted=3]="OnlyWhenSorted",t}({}),Se=i.markEnum("MergedCellMode","Default,0|Never,1|Always,2|OnlyWhenSorted,3"),Pe=function(t){return t[t.Default=0]="Default",t[t.RawValue=1]="RawValue",t[t.FormattedText=2]="FormattedText",t}({}),Oe=i.markEnum("MergedCellEvaluationCriteria","Default,0|RawValue,1|FormattedText,2"),xe=function(t){return t[t.ColumnOptions=0]="ColumnOptions",t[t.FilterRow=1]="FilterRow",t[t.None=2]="None",t}({}),je=i.markEnum("FilterUIType","ColumnOptions,0|FilterRow,1|None,2"),ke=function(t){return t[t.And=0]="And",t[t.Or=1]="Or",t}({}),Ie=i.markEnum("FilterLogicalOperator","And,0|Or,1"),Te=function(t){return t[t.Default=0]="Default",t[t.CaseInsensitive=1]="CaseInsensitive",t[t.CaseSensitive=2]="CaseSensitive",t}({}),Re=i.markEnum("FilterComparisonType","Default,0|CaseInsensitive,1|CaseSensitive,2"),Ae=new i.Type(null,"IPlatformPixelConverter"),Ee=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.devicePixelsToPixel=function(t){return t},n.$t=i.markType(n,"DefaultPlatformPixelConverter",i.Base.$,[Ae]),n}(i.Base),Be=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentItems=null,e._addedItems=null,e._removedItems=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"currentItems",{get:function(){return this._currentItems},set:function(t){this._currentItems=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"addedItems",{get:function(){return this._addedItems},set:function(t){this._addedItems=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"removedItems",{get:function(){return this._removedItems},set:function(t){this._removedItems=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridSelectedItemsChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),De=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentKeys=null,e._addedKeys=null,e._removedKeys=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"currentKeys",{get:function(){return this._currentKeys},set:function(t){this._currentKeys=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"addedKeys",{get:function(){return this._addedKeys},set:function(t){this._addedKeys=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"removedKeys",{get:function(){return this._removedKeys},set:function(t){this._removedKeys=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridSelectedKeysChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),$e=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentRanges=null,e._addedRanges=null,e._removedRanges=null,e._updatedRanges=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"currentRanges",{get:function(){return this._currentRanges},set:function(t){this._currentRanges=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"addedRanges",{get:function(){return this._addedRanges},set:function(t){this._addedRanges=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"removedRanges",{get:function(){return this._removedRanges},set:function(t){this._removedRanges=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"updatedRanges",{get:function(){return this._updatedRanges},set:function(t){this._updatedRanges=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridSelectedCellRangesChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),Me=function(t){function n(e,i){var n=t.call(this)||this;return n.b=0,n.a=null,n.b=e,n.a=i,n}return e.__extends(n,t),n.$t=i.markType(n,"GridDataCommittedEventArgs"),n}(i.Base),ze=function(t){function n(e,i){var n=t.call(this)||this;return n.a=null,n.b=0,n.b=e,n.a=i,n}return e.__extends(n,t),n.$t=i.markType(n,"GridDataCommittingEventArgs"),n}(i.Base),Ne=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=0,e.a=0,e}return e.__extends(n,t),n.$t=i.markType(n,"GridSizeChangedEventArgs"),n}(i.Base),Fe=i.markEnum("ColumnStates","Detached,0|Showing,1|Hiding,2|Hidden,3|Swapping,4|Visible,5|Moving,6"),Ge=function(t){function n(e){var n=t.call(this)||this;return n.a=null,n.c=null,n.c=e,n.a=new i.List$1(T.$,0),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.e=function(t){this.a.add(t)},n.prototype.f=function(){this.a.clear()},n.prototype.d=function(){var t=new i.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()},n.$t=i.markType(n,"GridLayerExport"),n}(i.Base),Ve=function(t){function n(){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=i.RectData.empty,e.ae=new Ge("SubContentLayer"),e.a=new Ge("ContentLayer"),e.ah=new Ge("SuperContentLayer"),e.b=new Ge("DecoratorLayer"),e.t=new Ge("PinnedRowsSubLayer"),e.r=new Ge("PinnedRowsLayer"),e.u=new Ge("PinnedRowsSuperLayer"),e.i=new Ge("FixedSubContentLayer"),e.c=new Ge("FixedContentLayer"),e.l=new Ge("FixedSuperContentLayer"),e.g=new Ge("FixedPinnedRowsLayer"),e.h=new Ge("FixedSeparatorLayer"),e.ad=new Ge("SectionLayer"),e.w=new Ge("PinnedSectionSubLayer"),e.v=new Ge("PinnedSectionLayer"),e.x=new Ge("PinnedSectionSuperLayer"),e.ag=new Ge("SubHeaderLayer"),e.af=new Ge("SubHeaderDecoratorLayer"),e.p=new Ge("HeaderLayer"),e.o=new Ge("HeaderDecoratorLayer"),e.aj=new Ge("SuperHeaderLayer"),e.ai=new Ge("SuperHeaderDecoratorLayer"),e.k=new Ge("FixedSubHeaderLayer"),e.j=new Ge("FixedSubHeaderDecoratorLayer"),e.e=new Ge("FixedHeaderLayer"),e.d=new Ge("FixedHeaderDecoratorLayer"),e.n=new Ge("FixedSuperHeaderLayer"),e.m=new Ge("FixedSuperHeaderDecoratorLayer"),e.ak=new Ge("VerticalSeparatorLayer"),e.q=new Ge("HiddenLayer"),e.f=new Ge("FixedMergedCellsLayer"),e.s=new Ge("PinnedRowsMergedCellsLayer"),e.y=new Ge("RowSeparatorContentLayer"),e.aa=new Ge("RowSeparatorPinnedSectionLayer"),e.ab=new Ge("RowSeparatorPinnedSectionSuperLayer"),e.ac=new Ge("RowSeparatorSectionLayer"),e.z=new Ge("RowSeparatorFixedPinnedRowsLayer"),e.at=1,e}return e.__extends(n,t),n.prototype.a7=function(){this.ap=new i.List$1(Ge.$,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)},n.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()},n.prototype.a5=function(){var t=new i.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 n=this.ap._inner[e].c.charAt(0).toString().toLowerCase()+this.ap._inner[e].c.substr(1);t.l(n+": "+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()},n.$t=i.markType(n,"VisualModelExport"),n}(i.Base),qe=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._newActiveCell=null,e._oldActiveCell=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"newActiveCell",{get:function(){return this._newActiveCell},set:function(t){this._newActiveCell=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"oldActiveCell",{get:function(){return this._oldActiveCell},set:function(t){this._oldActiveCell=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridActiveCellChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),Le=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"GridSelectionChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),He=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e._item=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridRowEditStartedEventArgs"),n}(i.Base),We=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e._item=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridRowEditEndedEventArgs"),n}(i.Base),Ue=function(t){function n(){var e=t.call(this)||this;return e.f=null,e.e=i.toNullable(i.ListSortDirection_$type,null),e.f=null,e.e=i.toNullable(i.ListSortDirection_$type,null),e}return e.__extends(n,t),n.prototype.g=function(t){var e=t;if(e.g("ColumnName")){var n=e.item("ColumnName");this.f=n.value.toString()}if(e.g("SortDirection")){var r=e.item("SortDirection");this.e=i.toNullable(i.ListSortDirection_$type,parseInt(r.value.toString()))}else this.e=i.toNullable(i.ListSortDirection_$type,null)},n.prototype.d=function(t){t.i("{"),t.h(),t.g(),t.i('"ColumnName": "'+this.f+'"'),i.nullableNotEquals(this.e,null)&&(t.i(","),t.h(),t.i(i.nullableConcat('"SortDirection": ',i.unwrapNullable(this.e)))),t.h(),t.e(),t.i("}")},n.$t=i.markType(n,"SaveLayoutSortInfo",i.JsonDictionaryItem.$),n}(i.JsonDictionaryItem),Ke=function(t){function n(){var e=t.call(this)||this;return e.f=null,e.e=i.toNullable(i.ListSortDirection_$type,null),e.f=null,e.e=i.toNullable(i.ListSortDirection_$type,null),e}return e.__extends(n,t),n.prototype.g=function(t){var e=t;if(e.g("ColumnName")){var n=e.item("ColumnName");this.f=n.value.toString()}if(e.g("GroupSortDirection")){var r=e.item("GroupSortDirection");this.e=i.toNullable(i.ListSortDirection_$type,parseInt(r.value.toString()))}},n.prototype.d=function(t){t.i("{"),t.h(),t.g(),t.i('"ColumnName": "'+this.f+'"'),i.nullableNotEquals(this.e,null)&&(t.i(","),t.h(),t.i(i.nullableConcat('"GroupSortDirection" : ',i.unwrapNullable(this.e)))),t.h(),t.e(),t.i("}")},n.$t=i.markType(n,"SaveLayoutGroupInfo",i.JsonDictionaryItem.$),n}(i.JsonDictionaryItem),Xe=function(t){function n(){var e=t.call(this)||this;return e.o=null,e.n=i.toNullable(i.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=i.toNullable(i.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 e.__extends(n,t),n.prototype.q=function(t){var e=t;if(e.g("ColumnName")){var r=e.item("ColumnName");this.o=r.value.toString()}if(e.g("Operator")){var o=e.item("Operator");this.n=i.toNullable(i.Number_$type,parseInt(o.value.toString()))}if(e.g("Value")){var s=e.item("Value");this.p=s.value.toString()}if(e.g("FilterArguments")){var a=e.item("FilterArguments"),l=a.items.length;l>0&&null==this.m&&(this.m=new i.List$1(n.$,0));for(var u=0;u<l;u++){var h=new n;h.q(a.items[u]),this.m.add(h)}}if(e.g("Left")){var c=e.item("Left");null==this.e&&(this.e=new n),this.e.q(c)}if(e.g("Right")){var p=e.item("Right");null==this.f&&(this.f=new n),this.f.q(p)}if(e.g("IsFunction")){var d=e.item("IsFunction");this.h=d.value}if(e.g("IsLiteral")){var f=e.item("IsLiteral");this.i=f.value}if(e.g("IsOperation")){var m=e.item("IsOperation");this.k=m.value}if(e.g("IsPropertyReference")){var g=e.item("IsPropertyReference");this.l=g.value}if(e.g("IsNull")){var b=e.item("IsNull");this.j=b.value}if(e.g("IsAutoGenerated")){var y=e.item("IsAutoGenerated");this.g=y.value}},n.prototype.d=function(t){if(t.i("{"),t.h(),t.g(),t.i('"ColumnName": "'+this.o+'"'),i.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("}")},n.$t=i.markType(n,"SaveLayoutFilterInfo",i.JsonDictionaryItem.$),n}(i.JsonDictionaryItem),Qe=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e}return e.__extends(n,t),n.$t=i.markType(n,"GridAnimationManagerAnimationCreatedEventArgs"),n}(i.Base),Ye=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e}return e.__extends(n,t),n.$t=i.markType(n,"GridAnimationManagerAnimationCompletedEventArgs"),n}(i.Base),Ze=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=0,e}return e.__extends(n,t),n.$t=i.markType(n,"GridAnimationManagerAnimationCanceledEventArgs"),n}(i.Base),Je=function(t){function n(){var e=t.call(this)||this;return e.g=0,e.h=0,e.m=0,e.c=!1,e.l=0,e.b=!1,e.a=!1,e.m=n.k,n.k++,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this.g},set:function(t){this.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"o",{get:function(){return this.m},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"f",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n",{get:function(){return this.l},set:function(t){this.l=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e",{get:function(){return this.b},set:function(t){this.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridColumnSpacer"),n.k=0,n}(i.Base),ti=function(t){function n(){return t.call(this,Je.$,0)||this}return e.__extends(n,t),n.prototype.ac=function(){for(var t=this.count,e=0,i=0;i<t;i++)e+=this._inner[i].i;return e},n.prototype.ag=function(){for(var t=this.count,e=0,i=0;i<t;i++)this._inner[i].f&&(e+=this._inner[i].i);return e},n.prototype.ae=function(){for(var t=this.count,e=0,i=0;i<t;i++)this._inner[i].f||(e+=this._inner[i].i);return e},n.prototype.ah=function(){for(var t=this.count,e=0,i=0;i<t;i++)this._inner[i].i>0&&(e+=this._inner[i].j);return e},n.prototype.ad=function(t){for(var e=this.count,i=0,n=0;n<e;n++)this._inner[n].d||this._inner[n].n==t||(i+=this._inner[n].i);return i},n.prototype.af=function(t){for(var e=this.count,i=0,n=0;n<e;n++)this._inner[n].d&&this._inner[n].n!=t&&(i+=this._inner[n].i);return i},n.$t=i.markType(n,"GridColumnSpacerCollection",i.List$1.$.specialize(Je.$)),n}(i.List$1),ei=function(t){return t[t.DirectSet=0]="DirectSet",t[t.ScaledValue=1]="ScaledValue",t[t.ValueColorGradient=2]="ValueColorGradient",t[t.ValueSelector=3]="ValueSelector",t}({}),ii=i.markEnum("GridConditionalStylePropertyStylingType","DirectSet,0|ScaledValue,1|ValueColorGradient,2|ValueSelector,3"),ni=function(t){return t[t.Value=0]="Value",t[t.Percent=1]="Percent",t}({}),ri=i.markEnum("GridConditionalStyleBoundType","Value,0|Percent,1"),oi=function(t){function n(){var e=t.call(this)||this;return e._propertyName=null,e._errors=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"propertyName",{get:function(){return this._propertyName},set:function(t){this._propertyName=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"errors",{get:function(){return this._errors},set:function(t){this._errors=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridConditionFilterStringErrorsParsingEventArgs"),n}(i.Base),si=function(t){function n(){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=i.dateMinValue(),e.au=i.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 e.__extends(n,t),Object.defineProperty(n.prototype,"aj",{get:function(){return this.ai},set:function(t){var e=this.ai;this.ai=t,e!=t&&this.cj("StylingType",i.enumGetBox(ii,e),i.enumGetBox(ii,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ah",{get:function(){return this.af},set:function(t){var e=this.af;this.af=t,e!=t&&this.cj("MinimumType",i.enumGetBox(ri,e),i.enumGetBox(ri,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ag",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=t&&this.cj("MaximumType",i.enumGetBox(ri,e),i.enumGetBox(ri,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"ar",{get:function(){return this.ap||this.ao||this.aq},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ap",{get:function(){return 0!=this.aj&&(!(!i.isNaN_(this.a1)&&1!=this.ah)&&(+this.aw==+i.dateMinValue()&&!(null!=this.u&&(1!=this.ah||!i.isNaN_(this.a0)&&!i.isNaN_(this.a1)))))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ao",{get:function(){return 0!=this.aj&&(!(!i.isNaN_(this.a0)&&1!=this.ah)&&(+this.av==+i.dateMinValue()&&!(null!=this.t&&(1!=this.ah||!i.isNaN_(this.a0)&&!i.isNaN_(this.a1)))))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aq",{get:function(){return!1},enumerable:!1,configurable:!0}),n.prototype.cj=function(t,e,n){this.ck(t,e,n),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.ck=function(t,e,n){switch(t){case"Value":this.an=!0;break;case"ValueCollection":this.am=!0;break;case"MinimumInputValue":"number"==typeof n&&(this.a1=n),"number"==typeof n&&(this.a1=i.typeGetValue(n)),"number"==typeof n&&(this.a1=n),"number"==typeof n&&(this.a1=i.typeGetValue(n)),"number"==typeof n&&(this.a1=i.typeGetValue(n)),null!==i.typeCast(i.Date_$type,n)&&(this.aw=n);break;case"MaximumInputValue":"number"==typeof n&&(this.a0=n),"number"==typeof n&&(this.a0=i.typeGetValue(n)),"number"==typeof n&&(this.a0=n),"number"==typeof n&&(this.a0=i.typeGetValue(n)),"number"==typeof n&&(this.a0=i.typeGetValue(n)),null!==i.typeCast(i.Date_$type,n)&&(this.av=n);break;case"SumInputValue":"number"==typeof n&&(this.a2=n),"number"==typeof n&&(this.a2=i.typeGetValue(n)),"number"==typeof n&&(this.a2=n),"number"==typeof n&&(this.a2=i.typeGetValue(n)),"number"==typeof n&&(this.a2=i.typeGetValue(n));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()}},n.prototype.z=function(){if(null!=this.w)return this.w;if(null==this.n&&null!=this.bo){var t=i.FilterExpressionParsingHelper.getFilterExpression(this.bo);if(!i.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new oi).propertyName="InputValueExpressionString",e.errors=t.errors,e)),null;this.n=t.result}var e;return this.n},n.prototype.ab=function(){if(null!=this.y)return this.y;if(null==this.p&&null!=this.b5){var t=i.FilterExpressionParsingHelper.getFilterExpression(this.b5);if(!i.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new oi).propertyName="MinimumInputValueExpressionString",e.errors=t.errors,e)),null;this.p=t.result}var e;return this.p},n.prototype.aa=function(){if(null!=this.x)return this.x;if(null==this.o&&null!=this.bz){var t=i.FilterExpressionParsingHelper.getFilterExpression(this.bz);if(!i.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new oi).propertyName="MaximumInputValueExpressionString",e.errors=t.errors,e)),null;this.o=t.result}var e;return this.o},n.prototype.ac=function(){if(null!=this.ad)return this.ad;if(null==this.q&&null!=this.ce){var t=i.FilterExpressionParsingHelper.getFilterExpression(this.ce);if(!i.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new oi).propertyName="SumInputValueExpressionString",e.errors=t.errors,e)),null;this.q=t.result}var e;return this.q},n.$t=i.markType(n,"GridConditionalStyleProperty",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),ai=function(t){function n(){return t.call(this,si.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"GridConditionalStylePropertyCollection",i.ObservableCollection$1.$.specialize(si.$)),n}(i.ObservableCollection$1),li=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._styleKey=null,e._resolvedValue=null,e._rowNumber=0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"styleKey",{get:function(){return this._styleKey},set:function(t){this._styleKey=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"resolvedValue",{get:function(){return this._resolvedValue},set:function(t){this._resolvedValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowNumber",{get:function(){return this._rowNumber},set:function(t){this._rowNumber=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CellStyleRequestedEventArgs",i.EventArgs.$),n}(i.EventArgs),ui=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}({}),hi=i.markEnum("LayoutAction","Sorted,0|Resized,1|Hidden,2|Pinned,3|Moved,4|Filtered,5|Grouped,6|Summed,7"),ci=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.f=0,e.d=0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"e",{get:function(){return this.d-this.f+1},enumerable:!1,configurable:!0}),n.prototype.c=function(t){return t.f>=this.f&&t.f<=this.d||t.d>=this.f&&t.d<=this.d},n.prototype.b=function(t){return t>=this.f&&t<=this.d},n.a=function(t,e){for(var i=0;i<t.count;i++)if(t._inner[i].b(e))return t._inner[i];return null},n.$t=i.markType(n,"RowRange"),n}(i.Base),pi=function(t){function n(){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 e.__extends(n,t),n.$t=i.markType(n,"MergedCellInfo"),n}(i.Base),di=function(t){function n(){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 e.__extends(n,t),n.$t=i.markType(n,"CalculationParameters"),n}(i.Base),fi=function(t){function n(e){for(var i=[],n=1;n<arguments.length;n++)i[n-1]=arguments[n];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=i[0],s=i[1],a=i[2];r.c=o,r.d=s,r.b=a}return r}return e.__extends(n,t),n.$t=i.markType(n,"ColumnPropertySetter"),n}(i.Base),mi=function(t){function n(){return t.call(this,fi.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"ColumnPropertySettersCollection",i.ObservableCollection$1.$.specialize(fi.$)),n}(i.ObservableCollection$1),gi=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"ResponsiveStateEnteringEventArgs",i.EventArgs.$),n}(i.EventArgs),bi=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"ResponsiveStateEnteredEventArgs",i.EventArgs.$),n}(i.EventArgs),yi=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"ResponsiveStateExitedEventArgs",i.EventArgs.$),n}(i.EventArgs),vi=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=null,e}return e.__extends(n,t),n.prototype.isGroup=function(){return!1},n.prototype.resolveFilter=function(t,e){return null},n.$t=i.markType(n,"ColumnFilterCondition"),n}(i.Base),Ci=function(t){function n(){var e=t.call(this)||this;return e._operator=0,e._value=null,e._isCaseSensitive=!1,e.isCaseSensitive=!0,e}return e.__extends(n,t),n.getApplicableOperators=function(t){var e=new i.List$1(f,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()},n.prototype.equals=function(t){if(null==t)return!1;if(null===i.typeCast(n.$,t))return!1;var e=t;return e.operator==this.operator&&(!!i.Base.equalsStatic(e.value,this.value)&&!!i.Base.equalsStatic(e.isCaseSensitive,this.isCaseSensitive))},Object.defineProperty(n.prototype,"operator",{get:function(){return this._operator},set:function(t){this._operator=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"value",{get:function(){return this._value},set:function(t){this._value=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isCaseSensitive",{get:function(){return this._isCaseSensitive},set:function(t){this._isCaseSensitive=t},enumerable:!1,configurable:!0}),n.prototype.resolveFilter=function(t,e){return this.h(t,e,this.operator)},n.prototype.h=function(t,e,r){switch(r){case 12:if(null==this.value)return null;var o=i.FilterFactory.instance.property(t),s=i.FilterFactory.instance.literal(this.value);return null==(o=n.g(e,o))?null:(this.isCaseSensitive||(o=o.toLower(),s=s.toLower()),o.contains(s));case 13:if(null==this.value)return null;var a=i.FilterFactory.instance.property(t),l=i.FilterFactory.instance.literal(this.value);return null==(a=n.g(e,a))?null:(this.isCaseSensitive||(a=a.toLower(),l=l.toLower()),a.contains(l).not());case 17:if(null==this.value)return null;var u=i.FilterFactory.instance.property(t),h=i.FilterFactory.instance.literal(this.value);return null==(u=n.g(e,u))?null:(this.isCaseSensitive||(u=u.toLower(),h=h.toLower()),u.endsWith(h).not());case 15:if(null==this.value)return null;var c=i.FilterFactory.instance.property(t),p=i.FilterFactory.instance.literal(this.value);return null==(c=n.g(e,c))?null:(this.isCaseSensitive||(c=c.toLower(),p=p.toLower()),c.startsWith(p).not());case 16:if(null==this.value)return null;var d=i.FilterFactory.instance.property(t),f=i.FilterFactory.instance.literal(this.value);return null==(d=n.g(e,d))?null:(this.isCaseSensitive||(d=d.toLower(),f=f.toLower()),d.endsWith(f));case 0:var m=i.FilterFactory.instance.property(t),g=i.FilterFactory.instance.literal(this.k(this.value,e));if(0!=e||this.isCaseSensitive){if(8==e)return m.day().isEqualTo(g.day()).and(m.month().isEqualTo(g.month())).and(m.year().isEqualTo(g.year()));if(2==e&&null!=this.value&&"string"==typeof this.value)switch(this.value.toString().toLowerCase()){case"true":g=i.FilterFactory.instance.literal(!0);break;case"false":g=i.FilterFactory.instance.literal(!1)}}else m=m.toLower(),g=g.toLower();return m.isEqualTo(g);case 4:var b=this.k(this.value,e),y=i.FilterFactory.instance.property(t),v=i.FilterFactory.instance.literal(b);if(0!=e||this.isCaseSensitive){if(8==e){var C=b;return y.year().isGreaterThan(C.getFullYear()).or(y.year().isEqualTo(C.getFullYear()).and(y.month().isGreaterThan(i.dateGetMonth(C)).or(y.month().isEqualTo(i.dateGetMonth(C)).and(y.day().isGreaterThan(C.getDate())))))}}else y=y.toLower(),v=v.toLower();return y.isGreaterThan(v);case 5:var _=this.k(this.value,e),w=i.FilterFactory.instance.property(t),S=i.FilterFactory.instance.literal(_);if(0!=e||this.isCaseSensitive){if(8==e){var P=_;return w.year().isGreaterThan(P.getFullYear()).or(w.year().isEqualTo(P.getFullYear()).and(w.month().isGreaterThan(i.dateGetMonth(P)).or(w.month().isEqualTo(i.dateGetMonth(P)).and(w.day().isGreaterThanOrEqualTo(P.getDate())))))}}else w=w.toLower(),S=S.toLower();return w.isGreaterThanOrEqualTo(S);case 2:var O=this.k(this.value,e),x=i.FilterFactory.instance.property(t),j=i.FilterFactory.instance.literal(O);if(0!=e||this.isCaseSensitive){if(8==e){var k=O;return x.year().isLessThan(k.getFullYear()).or(x.year().isEqualTo(k.getFullYear()).and(x.month().isLessThan(i.dateGetMonth(k)).or(x.month().isEqualTo(i.dateGetMonth(k)).and(x.day().isLessThan(k.getDate())))))}}else x=x.toLower(),j=j.toLower();return x.isLessThan(j);case 3:var I=this.k(this.value,e),T=i.FilterFactory.instance.property(t),R=i.FilterFactory.instance.literal(I);if(0!=e||this.isCaseSensitive){if(8==e){var A=I;return T.year().isLessThan(A.getFullYear()).or(T.year().isEqualTo(A.getFullYear()).and(T.month().isLessThan(i.dateGetMonth(A)).or(T.month().isEqualTo(i.dateGetMonth(A)).and(T.day().isLessThanOrEqualTo(A.getDate())))))}}else T=T.toLower(),R=R.toLower();return T.isLessThanOrEqualTo(R);case 1:var E=i.FilterFactory.instance.property(t),B=i.FilterFactory.instance.literal(this.k(this.value,e));if(0!=e||this.isCaseSensitive){if(8==e)return E.day().isNotEqualTo(B.day()).or(E.month().isNotEqualTo(B.month())).or(E.year().isNotEqualTo(B.year()))}else E=E.toLower(),B=B.toLower();return E.isNotEqualTo(B);case 14:if(null==this.value)return null;var D=i.FilterFactory.instance.property(t),$=i.FilterFactory.instance.literal(this.value);return null==(D=n.g(e,D))?null:(this.isCaseSensitive||(D=D.toLower(),$=$.toLower()),D.startsWith($));case 43:var M=i.FilterFactory.instance.property(t),z=i.FilterFactory.instance.literal(null);return M.isNotEqualTo(z);case 42:var N=i.FilterFactory.instance.property(t),F=i.FilterFactory.instance.literal(null);return N.isEqualTo(F);case 38:var G=i.FilterFactory.instance.property(t),V=0;if("string"==typeof this.value){var q=this.value;if(function(){var t=i.tryParseInt32_1(q,V);return V=t.p1,t.ret}()){var L=i.FilterFactory.instance.literal(V);return G.month().isEqualTo(L)}for(var H=null,W=i.CultureInfo.currentCulture.dateTimeFormat.monthNames,U=0;U<W.length;U++)if(i.stringStartsWith(W[U].toLowerCase(),q.toLowerCase())){var K=i.FilterFactory.instance.literal(U+1);H=null==H?G.month().isEqualTo(K):i.FilterFactory.instance.or(H,G.month().isEqualTo(K))}return H}var X=i.FilterFactory.instance.literal(this.value);return G.month().isEqualTo(X);case 39:var Q=this.value;if("string"==typeof Q){var Y=-1;Q=function(){var t=i.tryParseInt32_1(Q,Y);return Y=t.p1,t.ret}()?Y:-1}var Z=i.FilterFactory.instance.property(t),J=i.FilterFactory.instance.literal(Q);return Z.year().isEqualTo(J);case 10:var tt=i.FilterFactory.instance.property(t),et=i.FilterFactory.instance.literal(!0);return tt.isEqualTo(et);case 11:var it=i.FilterFactory.instance.property(t),nt=i.FilterFactory.instance.literal(!1);return it.isEqualTo(nt);case 40:var rt=i.FilterFactory.instance.property(t),ot=i.FilterFactory.instance.literal("");return rt.isEqualTo(ot);case 41:var st=i.FilterFactory.instance.property(t),at=i.FilterFactory.instance.literal("");return st.isNotEqualTo(at);case 18:return i.FilterFactory.instance.property(t).isToday();case 19:return i.FilterFactory.instance.property(t).isTomorrow();case 20:return i.FilterFactory.instance.property(t).isYesterday();case 22:return i.FilterFactory.instance.property(t).isThisWeek();case 21:return i.FilterFactory.instance.property(t).isNextWeek();case 23:return i.FilterFactory.instance.property(t).isLastWeek();case 25:return i.FilterFactory.instance.property(t).isThisMonth();case 24:return i.FilterFactory.instance.property(t).isNextMonth();case 26:return i.FilterFactory.instance.property(t).isLastMonth();case 31:return i.FilterFactory.instance.property(t).isThisYear();case 30:return i.FilterFactory.instance.property(t).isNextYear();case 32:return i.FilterFactory.instance.property(t).isLastYear();case 33:return i.FilterFactory.instance.property(t).isYearToDate();case 28:return i.FilterFactory.instance.property(t).isThisQuarter();case 27:return i.FilterFactory.instance.property(t).isNextQuarter();case 29:return i.FilterFactory.instance.property(t).isLastQuarter();case 34:return i.FilterFactory.instance.property(t).isQ1();case 35:return i.FilterFactory.instance.property(t).isQ2();case 36:return i.FilterFactory.instance.property(t).isQ3();case 37:return i.FilterFactory.instance.property(t).isQ4()}return null},n.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(i.enumGetBox(i.DataSourceSchemaPropertyType_$type,0))}return e},n.getOperandNumber=function(t){return 43==t||42==t?0:1},n.getOperandNumbers=function(t){for(var e=new Array(t.length),i=0;i<t.length;i++)e[i]=n.getOperandNumber(t[i]);return e},n.prototype.k=function(t,e){if(null==t)return null;switch(e){case 2:return!!t;case 10:return+t;case 8:return null!==i.typeCast(i.Date_$type,t)?t:"string"==typeof t?(r=i.dateTryParse(t,n),n=r.p1,r.ret?n:null):new Date(+t);var n;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},n.$t=i.markType(n,"ColumnComparisonFilterCondition",vi.$),n}(vi),_i=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._value=null,e._id=null,e._index=0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"value",{get:function(){return this._value},set:function(t){this._value=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"id",{get:function(){return this._id},set:function(t){this._id=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"index",{get:function(){return this._index},set:function(t){this._index=t},enumerable:!1,configurable:!0}),n.prototype.resolveFilter=function(t,e){var i=this.b.h4(this.id,this.index);return this.b.g4(i,this.value)},n.$t=i.markType(n,"ColumnCustomFilterCondition",vi.$),n}(vi),wi=function(t){function n(){return t.call(this,vi.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"ColumnFilterConditionCollection",i.ObservableCollection$1.$.specialize(vi.$)),n}(i.ObservableCollection$1),Si=function(t){function n(){var e=t.call(this)||this;return e._usesOrOperator=!1,e.f=null,e.f=new wi,e.usesOrOperator=!1,e}return e.__extends(n,t),n.prototype.isGroup=function(){return!0},n.prototype.equals=function(t){if(null==t)return!1;if(null===i.typeCast(n.$,t))return!1;var e=t;if(e.count!=this.count)return!1;for(var r=0;r<this.count;r++)if(!i.Base.equalsStatic(this.item(r),e.item(r)))return!1;return!0},Object.defineProperty(n.prototype,"count",{get:function(){return this.f.count},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"usesOrOperator",{get:function(){return this._usesOrOperator},set:function(t){this._usesOrOperator=t},enumerable:!1,configurable:!0}),n.prototype.add=function(t){this.f.add(t)},n.prototype.remove=function(t){this.f.remove(t)},n.prototype.removeAt=function(t){this.f.removeAt(t)},n.prototype.item=function(t,e){return 2===arguments.length?(this.f._inner[t]=e,e):this.f._inner[t]},n.prototype.clear=function(){this.f.clear()},n.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},n.prototype.resolveFilter=function(t,e){if(0==this.f.count)return null;for(var n=this.f._inner[this.f.count-1].resolveFilter(t,e),r=this.f.count-2;r>=0;r--)n=this.usesOrOperator?i.FilterFactory.instance.or(this.f._inner[r].resolveFilter(t,e),n):i.FilterFactory.instance.and(this.f._inner[r].resolveFilter(t,e),n);return n},n.$t=i.markType(n,"ColumnFilterConditionGroup",vi.$),n}(vi),Pi=new i.Type(null,"IExternalGrid"),Oi=new i.Type(null,"ICellRenderingEngine"),xi=new i.Type(null,"ICellPresenter"),ji=new i.Type(null,"ICellActionManager"),ki=function(t){function n(e,i){var n=t.call(this)||this;return n.b=null,n.a=null,n.c=!1,n.d=!1,n.b=e,n.a=i,n}return e.__extends(n,t),n.prototype.clickExpansionIndicator=function(){null!=this.b&&null!=this.a&&this.b.wv(this.a)},n.prototype.clickCell=function(t){null!=this.b&&null!=this.a&&this.b.vp(this.a,this.c,this.d,t)},n.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))},n.prototype.previewPointerDownCell=function(){null!=this.b&&null!=this.a&&this.b.v0(this.a)},n.prototype.previewPointerUpCell=function(){null!=this.b&&null!=this.a&&this.b.v1(this.a)},n.prototype.pointerDownCell=function(){null!=this.b&&null!=this.a&&this.b.vy(this.a)},n.prototype.pointerUpCell=function(){null!=this.b&&null!=this.a&&this.b.vz(this.a)},n.prototype.previewMouseDownCell=function(t,e,i){null!=this.b&&null!=this.a&&this.b.w0(this.a,t,e,i)},n.prototype.previewMouseUpCell=function(t,e,i){null!=this.b&&null!=this.a&&this.b.w1(this.a,t,e,i)},n.prototype.mouseDownCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vw(this.a,t,e)},n.prototype.mouseUpCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vx(this.a,t,e)},n.prototype.mouseLeaveCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vv(this.a,t,e)},n.prototype.mouseEnterCell=function(t,e){null!=this.b&&null!=this.a&&this.b.vu(this.a,t,e)},n.prototype.mouseIsOver=function(t,e){null!=this.b&&null!=this.a&&this.b.wz(this.a,t,e)},n.prototype.doubleClicked=function(t){null!=this.b&&null!=this.a&&this.b.vr(this.a,t)},n.prototype.getColumnFilterCondition=function(){return null==this.b?null:this.b.o(this.a)},n.prototype.getColumnPropertyType=function(){return null==this.b?11:this.b.q(this.a)},n.prototype.columnFilterChanging=function(t){null!=this.b&&this.b.ug(this.a,t)},n.prototype.columnFilterChanged=function(t){null!=this.b&&this.b.uf(this.a,t)},n.prototype.isCellDown=function(){return null!=this.b&&null!=this.b.ao&&null!=this.a&&this.b.ao.equals(this.a.l)},Object.defineProperty(n.prototype,"isLeaveActionDesired",{get:function(){return!!this.a.l.h||this.b.isRowHoverEnabled},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isEnterActionDesired",{get:function(){return this.b.isRowHoverEnabled},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isClickActionDesired",{get:function(){return this.b.ji},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isHoverActionDesired",{get:function(){return this.b.j2},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isPreviewPointerDownActionDesired",{get:function(){return this.b.j9},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isPreviewPointerUpActionDesired",{get:function(){return this.b.ka},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isPointerDownActionDesired",{get:function(){return this.b.j7},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isPointerUpActionDesired",{get:function(){return this.b.j8},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isControlPressed",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isShiftPressed",{get:function(){return this.d},set:function(t){this.d=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isDrag",{get:function(){return this.b.dragger.isDragActive},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isMouseDown",{get:function(){return null!=this.b.ao},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mousePosition",{get:function(){return this.b.abb},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isGridDragging",{get:function(){return null!=this.b&&null!=this.b.dragger&&this.b.dragger.isDragActive},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isEditRefocusDesired",{get:function(){return null!=this.b&&this.b.k9()},enumerable:!1,configurable:!0}),n.prototype.updateCellEditValue=function(t){var e=i.typeCast(Di.$,this.a);null!=e&&(e.na=t);var n=this.b.cj;n.t=t,null!=this.b.model.bx&&null!=this.b.model.bw&&!n.k&&(n.r<this.b.model.bx.x||n.r>this.b.model.bw.x)&&this.b.t9(n.r,n.q,!1)},n.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(),i=this.b.model.e(e,this.b.activeCell.b);this.b.lb(i)}},n.prototype.editorCellLostFocus=function(){null!=this.b&&this.b.wu(i.typeCast(Di.$,this.a))},n.prototype.cancelEditMode=function(t){null!=this.b&&this.b.cj.j&&(this.b.ja(t),3==this.b.editMode&&this.b.uq(t))},n.prototype.disableKeyInput=function(){null!=this.b&&(this.b.j4=!1)},n.prototype.enableKeyInput=function(){null!=this.b&&(this.b.j4=!0)},n.prototype.passCellClone=function(t){null!=this.b&&null!=this.b.dragger&&(this.b.dragger.cloneCell=t)},n.prototype.applyFilter=function(t,e){if(null!=this.b){var i=this.b.cf(this.a.l);null!=i&&i.mv(t,e)}},n.prototype.applyCustomFilter=function(t,e,i){if(null!=this.b){var n=this.b.cf(this.a.l);null!=n&&n.mu(t,e,i)}},n.prototype.clearFilter=function(){if(null!=this.b){var t=this.b.cf(this.a.l);null!=t&&t.mw()}},n.prototype.shouldSkipFocusRetain=function(){return this.b.la()},n.$t=i.markType(n,"DefaultCellActionManager",i.Base.$,[ji]),n}(i.Base),Ii=new i.Type(null,"IGridInfoRequestor"),Ti=function(t){function n(e,i){var n=t.call(this)||this;return n.b=null,n.a=null,n.b=e,n.a=i,n}return e.__extends(n,t),n.prototype.getColumn=function(){return null==this.b?null:this.b.cf(this.a.l)},n.prototype.getDensity=function(){return null==this.b?3:this.b.density},n.prototype.getTheme=function(){return null==this.b?0:1},n.prototype.setViewportChangedHandler=function(t){if(null!=this.b&&null!=t){var e=this.b;e.viewportChanged=i.delegateCombine(e.viewportChanged,t)}},n.prototype.removeViewportChangedHandler=function(t){if(null!=this.b&&null!=t){var e=this.b;e.viewportChanged=i.delegateRemove(e.viewportChanged,t)}},n.$t=i.markType(n,"DefaultGridInfoRequestor",i.Base.$,[Ii]),n}(i.Base),Ri=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),n.prototype.update=function(t,e){null!=this.a&&this.a.k7(t,e)},n.$t=i.markType(n,"DefaultCellModelExportUpdater",i.Base.$,[_]),n}(i.Base),Ai=function(t){function r(e){var i=t.call(this)||this;return i.c=null,i.m=null,i.n=null,i.d=null,i.g=null,i.f=null,i.e=null,i.c=e,i}return e.__extends(r,t),r.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,Ui.a1,!1),this.g=this.h(this.m,Ui.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,Ui.a7,!0),this.e=this.h(this.m,Ui.a6,!1);var e=this.d;e.clicked=i.delegateCombine(e.clicked,i.runOn(this,this.q));var n=this.g;n.clicked=i.delegateCombine(n.clicked,i.runOn(this,this.t));var r=this.f;r.clicked=i.delegateCombine(r.clicked,i.runOn(this,this.s));var o=this.e;o.clicked=i.delegateCombine(o.clicked,i.runOn(this,this.r)),this.v()}else this.p()},r.prototype.h=function(t,e,i){var r=t.createElement("div");t.rootWrapper.append(r);var o=t.getSubRenderer(r),s=new n.XButton;s.provideContainer(o),s.e=4;var a=t.createElement("div"),l=t.getSubRenderer(a),u=new n.XIcon;return u.provideContainer(l),u.svgPath=e,s.appendButtonContent(a),i&&r.setRawStyleProperty("margin","0px 5px"),s},r.prototype.q=function(t,e){this.c.bk()},r.prototype.t=function(t,e){this.c.by()},r.prototype.s=function(t,e){this.c.bn()},r.prototype.r=function(t,e){this.c.bm()},r.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(i.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}},r.prototype.p=function(){var t=this.d;t.clicked=i.delegateRemove(t.clicked,i.runOn(this,this.q));var e=this.g;e.clicked=i.delegateRemove(e.clicked,i.runOn(this,this.t));var n=this.f;n.clicked=i.delegateRemove(n.clicked,i.runOn(this,this.s));var r=this.e;r.clicked=i.delegateRemove(r.clicked,i.runOn(this,this.r))},r.prototype.a=function(){var t,e=window.getComputedStyle(this.m.rootWrapper.getNativeElement());return i.AppearanceHelper.a(((t=new i.Brush).fill=e.backgroundColor,t))},r.prototype.b=function(){var t,e=window.getComputedStyle(this.m.rootWrapper.getNativeElement());return i.AppearanceHelper.a(((t=new i.Brush).fill=e.borderTopColor,t))},r.prototype.o=function(){return null!=this.n?this.n.getNativeElement().innerText:null},r.prototype.i=function(){return this.d},r.prototype.l=function(){return this.g},r.prototype.k=function(){return this.f},r.prototype.j=function(){return this.e},r.$t=i.markType(r,"PagerView"),r}(i.Base),Ei=function(t){function n(){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=i.Rect.empty,e.aq=!0,e.at=!1,e.au=!1,e.as=!1,e.ao=!1,e.dl=0,e.br=new i.Dictionary$2(i.String_$type,i.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=I.a2,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"p",{get:function(){return this.o},set:function(t){this.o=t},enumerable:!1,configurable:!0}),n.ft=function(t){if(null!=n.bu&&null!=n.bu||(n.bu=new i.Dictionary$2(i.String_$type,i.Number_$type,0)),n.bu.containsKey(t))return n.bu.item(t);var e=n.dn;return n.dn++,n.dm=e,n.bu.item(t,e),e},Object.defineProperty(n.prototype,"u",{get:function(){return this.t},set:function(t){var e=this.t;this.t=t,this.t!=e&&this.k0("State",n.g6,i.enumGetBox(w,e),i.enumGetBox(w,this.t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"l",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,this.k==e||i.Base.equalsStatic(this.k,e)||this.k0("Path",n.gs,e,this.k)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ax",{get:function(){return this.ah},set:function(t){var e=this.ah;this.ah=t,this.ah!=e&&this.k0("DoClone",n.fd,e,this.ah)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a0",{get:function(){return this.aj},set:function(t){var e=this.aj;this.aj=t,this.aj!=e&&this.k0("IsBarSupported",n.f2,e,this.aj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ci",{get:function(){return this.b1},set:function(t){var e=this.b1;this.b1=t,(this.b1!=e||this.ay)&&this.k0("BarProgress",n.ex,e,this.b1)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ly",{get:function(){return this.lf},set:function(t){var e=this.lf;this.lf=t,this.lf!=e&&this.k0("BarBackground",n.et,e,this.lf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lz",{get:function(){return this.lg},set:function(t){var e=this.lg;this.lg=t,this.lg!=e&&this.k0("BarOutline",n.ew,e,this.lg)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ey",{get:function(){return this.c9},set:function(t){var e=this.c9;this.c9=t,this.c9!=e&&this.k0("BarStrokeThickness",n.ez,e,this.c9)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"eu",{get:function(){return this.c8},set:function(t){var e=this.c8;this.c8=t,this.c8!=e&&this.k0("BarCornerRadius",n.ev,e,this.c8)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"me",{get:function(){return this.md},set:function(t){var e=this.md;this.md=t,i.Rect.l_op_Inequality(this.md,e)&&this.k0("ClipRect",n.e9,e,this.md)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bd",{get:function(){return this.aq},set:function(t){var e=this.aq;this.aq=t,e!=this.aq&&this.k0("IsHitTestVisible",n.f8,e,this.aq)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bk",{get:function(){return this.at},set:function(t){var e=this.at;this.at=t,this.at!=e&&this.k0("IsRowPinned",n.ga,e,this.at)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bl",{get:function(){return this.au},set:function(t){var e=this.au;this.au=t,this.au!=e&&this.k0("IsRowSticky",n.gb,e,this.au)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bg",{get:function(){return this.as},set:function(t){var e=this.as;this.as=t,this.as!=e&&this.k0("IsLastStickyRow",n.f9,e,this.as)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bb",{get:function(){return this.ao},set:function(t){var e=this.ao;this.ao=t,this.ao!=e&&this.k0("IsFilterRow",n.f7,e,this.ao)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"f0",{get:function(){return this.dl},set:function(t){var e=this.dl;this.dl=t,this.dl!=e&&this.k0("Indent",n.f1,e,this.dl)},enumerable:!1,configurable:!0}),n.prototype.a4=function(t){return!!this.br.containsKey(t)&&this.br.item(t)},n.prototype.a8=function(t){if(-1==this.de)return!1;var e=t/32|0,i=t%32;return 0!=(this.a[e]>>i&1)},n.prototype.a7=function(t){var e=n.bu.f(t);return null!=e?this.a8(e):!!this.a4(t)},n.prototype.ks=function(t){-1==this.de&&(this.de=i.truncate(Math.ceil(n.dm/32)),this.a=new Array(t));var e=t/32|0,r=t%32;this.a[e]=this.a[e]|1<<r},n.prototype.kp=function(){for(var t=0;t<this.de;t++)this.a[t]=0},n.prototype.kt=function(t){var e=n.bu.f(t);null==e?this.br.item(t,!0):this.ks(e)},Object.defineProperty(n.prototype,"ay",{get:function(){return this.ai},set:function(t){this.ai=t},enumerable:!1,configurable:!0}),n.prototype.k0=function(t,e,n,r){this.aw||(this.ay&&this.bq(t)&&(this.aw=!0,this.k8("underlying_"+t,r),this.k9(t,n),this.aw=!1),this.ks(e),this.k3(t,n,r),null!=this.p&&this.p.refresh(),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)))},n.prototype.bq=function(t){return null!=this.bw&&this.bw.contains(t)},n.prototype.k3=function(t,e,i){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}},n.prototype.k1=function(){},n.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)},n.prototype.kw=function(){var t=!1;if(0!=this.cf&&null!=this.lt&&(t=!0),null!=this.it){var e=this.fk-this.e2,i=this.fp-this.e7,n=this.fn-this.e5,r=this.fi-this.e0;this.el=Math.max(0,this.gm-e),this.ep=Math.max(0,this.gq-i),this.en=Math.max(0,this.go-n),this.ej=Math.max(0,this.gk-r),this.d9=Math.max(0,this.e2+e),this.ee=Math.max(0,this.e7+i),this.ec=Math.max(0,this.e5+n),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,s=this.d3-this.e7,a=this.d1-this.e5,l=this.dw-this.e0;this.el=Math.max(0,this.gm-o),this.ep=Math.max(0,this.gq-s),this.en=Math.max(0,this.go-a),this.ej=Math.max(0,this.gk-l),this.d9=Math.max(0,this.e2+o),this.ee=Math.max(0,this.e7+s),this.ec=Math.max(0,this.e5+a),this.d7=Math.max(0,this.e0+l)}var u=this.l0;this.lv=this.l4(u,this.lt,this.cf)}},n.prototype.kx=function(){this.ch=this.co},n.prototype.ky=function(){this.a9&&!this.a6?this.cg=this.ck:this.bk&&!this.bl?this.cg=this.cp:this.cg=this.cj},n.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},n.prototype.kz=function(){this.a9||this.a6?this.ae=this.af:this.ae=this.ag},n.prototype.l4=function(t,e,n){return 0==n?t:1==n?e:i.BrushUtil.n(t,n,e,0)},n.prototype.k5=function(){this.k6()},n.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},n.prototype.k8=function(t,e){null==this.bt&&(this.bt=new i.Dictionary$2(i.String_$type,i.Base.$,0));var n=null;if(this.bt.containsKey(t)&&(n=this.bt.item(t)),this.ay&&this.bq(t)&&!this.aw)return this.aw=!0,this.k8("underlying_"+t,e),this.k8(t,n),void(this.aw=!1);this.bt.item(t,e);var r=!1;if(null==n&&null!=e&&(r=!0),null!=n&&(i.Base.equalsStatic(n,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()}},n.prototype.az=function(t){return null!=this.bt&&this.bt.containsKey(t)},n.prototype.k4=function(t){null!=this.bt&&this.bt.containsKey(t)&&this.bt.removeItem(t)},n.prototype.hk=function(t){return null==this.bt?null:this.bt.containsKey(t)?this.bt.item(t):null},Object.defineProperty(n.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(n.prototype,"hn",{get:function(){return this.hj},set:function(t){var e=this.hj;this.hj=t,this.hj!=e&&this.k0("RowItem",n.gx,e,this.hj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cu",{get:function(){return this.cd},set:function(t){var e=this.cd;this.cd=t,this.cd!=e&&this.k0("X",n.hf,e,this.cd)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cv",{get:function(){return this.ce},set:function(t){var e=this.ce;this.ce=t,this.ce!=e&&this.k0("Y",n.hg,e,this.ce)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g0",{get:function(){return this.dt},set:function(t){var e=this.dt;this.dt=t,this.dt!=e&&this.k0("SnappedX",n.g1,e,this.dt)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g2",{get:function(){return this.du},set:function(t){var e=this.du;this.du=t,this.du!=e&&this.k0("SnappedY",n.g3,e,this.du)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ck",{get:function(){return this.b3},set:function(t){var e=this.b3;this.b3=t,this.b3!=e&&this.k0("EditOpacity",n.fh,e,this.b3)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cj",{get:function(){return this.b2},set:function(t){var e=this.b2;this.b2=t,this.b2!=e&&this.k0("ContentOpacity",n.fa,e,this.b2)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cg",{get:function(){return this.bz},set:function(t){var e=this.bz;this.bz=t,this.bz!=e&&this.k0("ActualContentOpacity",n.eg,e,this.bz)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"co",{get:function(){return this.b7},set:function(t){var e=this.b7;this.b7=t,this.b7!=e&&this.k0("Opacity",n.gi,e,this.b7)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ch",{get:function(){return this.b0},set:function(t){var e=this.b0;this.b0=t,this.b0!=e&&this.k0("ActualOpacity",n.ei,e,this.b0)},enumerable:!1,configurable:!0}),n.prototype.ku=function(){null!=this.cellReconciling&&this.cellReconciling(this)},Object.defineProperty(n.prototype,"cm",{get:function(){return this.b5},set:function(t){var e=this.b5;this.b5=t,this.b5!=e&&this.k0("LeftOffset",n.ge,e,this.b5)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cr",{get:function(){return this.ca},set:function(t){var e=this.ca;this.ca=t,this.ca!=e&&this.k0("TopOffset",n.g9,e,this.ca)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cn",{get:function(){return this.b6},set:function(t){var e=this.b6;this.b6=t,this.b6!=e&&this.k0("LeftPercentOffset",n.gf,e,this.b6)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cs",{get:function(){return this.cb},set:function(t){var e=this.cb;this.cb=t,this.cb!=e&&this.k0("TopPercentOffset",n.ha,e,this.cb)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"fu",{get:function(){return this.dk},set:function(t){var e=this.dk;this.dk=t,this.dk!=e&&this.k0("Height",n.fv,e,this.dk)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hd",{get:function(){return this.dv},set:function(t){var e=this.dv;this.dv=t,this.dv!=e&&this.k0("Width",n.he,e,this.dv)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bn",{get:function(){return this.av},set:function(t){var e=this.av;this.av=t,this.av!=e&&this.k0("IsSelected",n.gc,e,this.av)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"w",{get:function(){return this.v},set:function(t){var e=this.v;this.v=t,this.v!=e&&this.k0("ModelType",n.gh,i.enumGetBox(P,e),i.enumGetBox(P,this.v))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cq",{get:function(){return this.b9},set:function(t){var e=this.b9;this.b9=t,this.b9!=e&&this.k0("SelectedStatus",n.gz,e,this.b9)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cf",{get:function(){return this.by},set:function(t){var e=this.by;this.by=t,this.by!=e&&this.k0("ActivationStatus",n.d5,e,this.by)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cl",{get:function(){return this.b4},set:function(t){var e=this.b4;this.b4=t,this.b4!=e&&this.k0("HoverStatus",n.fy,e,this.b4)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"be",{get:function(){return this.ar},set:function(t){this.ar=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,this.f!=e&&this.k0("HorizontalAlignment",n.fw,i.enumGetBox(l,e),i.enumGetBox(l,this.f))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,this.h!=e&&this.k0("VerticalAlignment",n.hb,i.enumGetBox(h,e),i.enumGetBox(l,this.f))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lx",{get:function(){return this.le},set:function(t){var e=this.le;this.le=t,this.le!=e&&this.k0("Background",n.es,e,this.le)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l0",{get:function(){return this.lh},set:function(t){var e=this.lh;this.lh=t,this.lh!=e&&this.k0("Border",n.e4,e,this.lh)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lu",{get:function(){return this.lb},set:function(t){var e=this.lb;this.lb=t,this.lb!=e&&this.k0("ActualBackground",n.d6,e,this.lb)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lv",{get:function(){return this.lc},set:function(t){var e=this.lc;this.lc=t,this.lc!=e&&this.k0("ActualBorder",n.eb,e,this.lc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lt",{get:function(){return this.la},set:function(t){var e=this.la;this.la=t,this.la!=e&&this.k0("ActivationBorder",n.d0,e,this.la)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l2",{get:function(){return this.lj},set:function(t){var e=this.lj;this.lj=t,this.lj!=e&&this.k0("ErrorBorder",n.fm,e,this.lj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l9",{get:function(){return this.lp},set:function(t){var e=this.lp;this.lp=t,this.lp!=e&&this.k0("SelectedBackground",n.gy,e,this.lp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l5",{get:function(){return this.ll},set:function(t){var e=this.ll;this.ll=t,this.ll!=e&&this.k0("HoverBackground",n.fx,e,this.ll)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l6",{get:function(){return this.lm},set:function(t){var e=this.lm;this.lm=t,this.lm!=e&&this.k0("HoverTextColor",n.fz,e,this.lm)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ma",{get:function(){return this.lq},set:function(t){var e=this.lq;this.lq=t,this.lq!=e&&this.k0("SortIndicatorColor",n.g5,e,this.lq)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mb",{get:function(){return this.lr},set:function(t){var e=this.lr;this.lr=t,this.lr!=e&&this.k0("StickyRowBackground",n.g7,e,this.lr)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l8",{get:function(){return this.lo},set:function(t){var e=this.lo;this.lo=t,this.lo!=e&&this.k0("PinnedRowBackground",n.gu,e,this.lo)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l7",{get:function(){return this.ln},set:function(t){var e=this.ln;this.ln=t,this.ln!=e&&this.k0("LastStickyRowBackground",n.gd,e,this.ln)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l3",{get:function(){return this.lk},set:function(t){var e=this.lk;this.lk=t,this.lk!=e&&this.k0("FilterRowBackground",n.fr,e,this.lk)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cp",{get:function(){return this.b8},set:function(t){var e=this.b8;this.b8=t,this.b8!=e&&this.k0("PinnedRowOpacity",n.gv,e,this.b8)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hm",{get:function(){return this.hi},set:function(t){var e=this.hi;this.hi=t,this.hi!=e&&this.k0("OriginalValue",n.gj,e,this.hi)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j1",{get:function(){return this.hp},set:function(t){var e=this.hp;this.hp=t,this.hp!=e&&this.k0("RenderValue",n.gw,e,this.hp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mc",{get:function(){return this.ls},set:function(t){var e=this.ls;this.ls=t,this.ls!=e&&this.k0("TextColor",n.g8,e,this.ls)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lw",{get:function(){return this.ld},set:function(t){var e=this.ld;this.ld=t,this.ld!=e&&this.k0("ActualTextColor",n.er,e,this.ld)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l1",{get:function(){return this.li},set:function(t){var e=this.li;this.li=t,this.li!=e&&this.k0("DeletedTextColor",n.fc,e,this.li)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ag",{get:function(){return this.ad},set:function(t){var e=this.ad;this.ad=t,this.ad!=e&&this.k0("FontInfo",n.fs,e,this.ad)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ae",{get:function(){return this.ab},set:function(t){var e=this.ab;this.ab=t,this.ab!=e&&this.k0("ActualFontInfo",n.eh,e,this.ab)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aa",{get:function(){return this.z},set:function(t){var e=this.z;this.z=t,this.z!=e&&this.k0("LineBreakMode",n.gg,i.enumGetBox(p,e),i.enumGetBox(p,this.z))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ct",{get:function(){return this.cc},set:function(t){var e=this.cc;this.cc=t,this.cc!=e&&this.k0("VirtualizationPercentage",n.hc,e,this.cc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"gm",{get:function(){return this.dq},set:function(t){var e=this.dq;this.dq=t,this.dq!=e&&this.k0("PaddingLeft",n.gn,e,this.dq)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"gq",{get:function(){return this.ds},set:function(t){var e=this.ds;this.ds=t,this.ds!=e&&this.k0("PaddingTop",n.gr,e,this.ds)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"go",{get:function(){return this.dr},set:function(t){var e=this.dr;this.dr=t,this.dr!=e&&this.k0("PaddingRight",n.gp,e,this.dr)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"gk",{get:function(){return this.dp},set:function(t){var e=this.dp;this.dp=t,this.dp!=e&&this.k0("PaddingBottom",n.gl,e,this.dp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"el",{get:function(){return this.c5},set:function(t){var e=this.c5;this.c5=t,this.c5!=e&&this.k0("ActualPaddingLeft",n.em,e,this.c5)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ep",{get:function(){return this.c7},set:function(t){var e=this.c7;this.c7=t,this.c7!=e&&this.k0("ActualPaddingTop",n.eq,e,this.c7)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"en",{get:function(){return this.c6},set:function(t){var e=this.c6;this.c6=t,this.c6!=e&&this.k0("ActualPaddingRight",n.eo,e,this.c6)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ej",{get:function(){return this.c4},set:function(t){var e=this.c4;this.c4=t,this.c4!=e&&this.k0("ActualPaddingBottom",n.ek,e,this.c4)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e2",{get:function(){return this.db},set:function(t){var e=this.db;this.db=t,this.db!=e&&this.k0("BorderLeftWidth",n.e3,e,this.db)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e7",{get:function(){return this.dd},set:function(t){var e=this.dd;this.dd=t,this.dd!=e&&this.k0("BorderTopWidth",n.e8,e,this.dd)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e5",{get:function(){return this.dc},set:function(t){var e=this.dc;this.dc=t,this.dc!=e&&this.k0("BorderRightWidth",n.e6,e,this.dc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e0",{get:function(){return this.da},set:function(t){var e=this.da;this.da=t,this.da!=e&&this.k0("BorderBottomWidth",n.e1,e,this.da)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dy",{get:function(){return this.cx},set:function(t){var e=this.cx;this.cx=t,this.cx!=e&&this.k0("ActivationBorderLeftWidth",n.dz,e,this.cx)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d3",{get:function(){return this.cz},set:function(t){var e=this.cz;this.cz=t,this.cz!=e&&this.k0("ActivationBorderTopWidth",n.d4,e,this.cz)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d1",{get:function(){return this.cy},set:function(t){var e=this.cy;this.cy=t,this.cy!=e&&this.k0("ActivationBorderRightWidth",n.d2,e,this.cy)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dw",{get:function(){return this.cw},set:function(t){var e=this.cw;this.cw=t,this.cw!=e&&this.k0("ActivationBorderBottomWidth",n.dx,e,this.cw)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"fk",{get:function(){return this.dh},set:function(t){var e=this.dh;this.dh=t,this.dh!=e&&this.k0("ErrorBorderLeftWidth",n.fl,e,this.dh)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"fp",{get:function(){return this.dj},set:function(t){var e=this.dj;this.dj=t,this.dj!=e&&this.k0("ErrorBorderTopWidth",n.fq,e,this.dj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"fn",{get:function(){return this.di},set:function(t){var e=this.di;this.di=t,this.di!=e&&this.k0("ErrorBorderRightWidth",n.fo,e,this.di)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"fi",{get:function(){return this.dg},set:function(t){var e=this.dg;this.dg=t,this.dg!=e&&this.k0("ErrorBorderBottomWidth",n.fj,e,this.dg)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d9",{get:function(){return this.c1},set:function(t){var e=this.c1;this.c1=t,this.c1!=e&&this.k0("ActualBorderLeftWidth",n.ea,e,this.c1)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ee",{get:function(){return this.c3},set:function(t){var e=this.c3;this.c3=t,this.c3!=e&&this.k0("ActualBorderTopWidth",n.ef,e,this.c3)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ec",{get:function(){return this.c2},set:function(t){var e=this.c2;this.c2=t,this.c2!=e&&this.k0("ActualBorderRightWidth",n.ed,e,this.c2)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d7",{get:function(){return this.c0},set:function(t){var e=this.c0;this.c0=t,this.c0!=e&&this.k0("ActualBorderBottomWidth",n.d8,e,this.c0)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,this.m!=e&&this.k0("SortDirection",n.g4,i.enumGetBox(x,e),i.enumGetBox(x,this.m))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ba",{get:function(){return this.an},set:function(t){var e=this.an;this.an=t,this.an!=e&&this.k0("IsExpanded",n.f6,e,this.an)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a2",{get:function(){return this.ak},set:function(t){var e=this.ak;this.ak=t,this.ak!=e&&this.k0("IsCollapsable",n.f3,e,this.ak)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"y",{get:function(){return this.x},set:function(t){var e=this.x;this.x=t,this.x!=e&&this.k0("Pinned",n.gt,i.enumGetBox(k,e),i.enumGetBox(k,this.x))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"af",{get:function(){return this.ac},set:function(t){var e=this.ac;this.ac=t,this.ac!=e&&this.k0("EditFontInfo",n.ff,e,this.ac)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a9",{get:function(){return this.am},set:function(t){var e=this.am;this.am=t,this.am!=e&&this.k0("IsEdited",n.f5,e,this.am)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a6",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,this.al!=e&&this.k0("IsDeleted",n.f4,e,this.al)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"it",{get:function(){return this.ho},set:function(t){var e=this.ho;this.ho=t,this.ho!=e&&this.k0("EditError",n.fe,e,this.ho)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"fg",{get:function(){return this.df},set:function(t){this.df=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bc",{get:function(){return this.ap},set:function(t){this.ap=t},enumerable:!1,configurable:!0}),n.prototype.kn=function(){this.ko()},n.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()},n.prototype.b=function(t){if(null==t&&(t=new T),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=i.EnumUtil.getName(p,this.aa),t.a=i.AppearanceHelper.a(this.lu),t.b=i.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=i.AppearanceHelper.a(this.lw),null!=this.ae){var e=this.ae;if(null!=this.p&&null==e.q){var n=this.p.externalGrid.renderer,r=i.FontUtil.getFontInfoFromString(n,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),i.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},n.prototype.kr=function(){null==n.bv&&(n.bv=new i.Dictionary$2(i.String_$type,i.Delegate_$type,0),n.bv.addItem("X",(function(t,e){return t.cu=i.typeGetValue(e)})),n.bv.addItem("Y",(function(t,e){return t.cv=i.typeGetValue(e)})),n.bv.addItem("SnappedX",(function(t,e){return t.g0=i.typeGetValue(e)})),n.bv.addItem("SnappedY",(function(t,e){return t.g2=i.typeGetValue(e)})),n.bv.addItem("ContentOpacity",(function(t,e){return t.cj=e})),n.bv.addItem("Opacity",(function(t,e){return t.co=e})),n.bv.addItem("LeftOffset",(function(t,e){return t.cm=e})),n.bv.addItem("LeftPercentOffset",(function(t,e){return t.cn=e})),n.bv.addItem("TopOffset",(function(t,e){return t.cr=e})),n.bv.addItem("TopPercentOffset",(function(t,e){return t.cs=e})),n.bv.addItem("Height",(function(t,e){return t.fu=i.typeGetValue(e)})),n.bv.addItem("Width",(function(t,e){return t.hd=i.typeGetValue(e)})),n.bv.addItem("IsSelected",(function(t,e){return t.bn=e})),n.bv.addItem("ModelType",(function(t,e){return t.w=i.EnumUtil.getEnumValue(P,e)})),n.bv.addItem("SelectedStatus",(function(t,e){return t.cq=e})),n.bv.addItem("ActivationStatus",(function(t,e){return t.cf=e})),n.bv.addItem("HoverStatus",(function(t,e){return t.cl=e})),n.bv.addItem("HorizontalAlignment",(function(t,e){return t.g=i.EnumUtil.getEnumValue(l,e)})),n.bv.addItem("VerticalAlignment",(function(t,e){return t.i=i.EnumUtil.getEnumValue(h,e)})),n.bv.addItem("Background",(function(t,e){return t.lx=e})),n.bv.addItem("Border",(function(t,e){return t.l0=e})),n.bv.addItem("ActivationBorder",(function(t,e){return t.lt=e})),n.bv.addItem("SelectedBackground",(function(t,e){return t.l9=e})),n.bv.addItem("HoverBackground",(function(t,e){return t.l5=e})),n.bv.addItem("RenderValue",(function(t,e){return t.j1=e})),n.bv.addItem("OriginalValue",(function(t,e){return t.hm=e})),n.bv.addItem("TextColor",(function(t,e){return t.mc=e})),n.bv.addItem("SortIndicatorColor",(function(t,e){return t.ma=e})),n.bv.addItem("FontInfo",(function(t,e){return t.ag=e})),n.bv.addItem("LineBreakMode",(function(t,e){return t.aa=i.EnumUtil.getEnumValue(p,e)})),n.bv.addItem("VirtualizationPercentage",(function(t,e){return t.ct=e})),n.bv.addItem("PaddingLeft",(function(t,e){return t.gm=i.typeGetValue(e)})),n.bv.addItem("PaddingTop",(function(t,e){return t.gq=i.typeGetValue(e)})),n.bv.addItem("PaddingRight",(function(t,e){return t.go=i.typeGetValue(e)})),n.bv.addItem("PaddingBottom",(function(t,e){return t.gk=i.typeGetValue(e)})),n.bv.addItem("BorderLeftWidth",(function(t,e){return t.e2=i.typeGetValue(e)})),n.bv.addItem("BorderTopWidth",(function(t,e){return t.e7=i.typeGetValue(e)})),n.bv.addItem("BorderRightWidth",(function(t,e){return t.e5=i.typeGetValue(e)})),n.bv.addItem("BorderBottomWidth",(function(t,e){return t.e0=i.typeGetValue(e)})),n.bv.addItem("ActivationBorderLeftWidth",(function(t,e){return t.dy=i.typeGetValue(e)})),n.bv.addItem("ActivationBorderTopWidth",(function(t,e){return t.d3=i.typeGetValue(e)})),n.bv.addItem("ActivationBorderRightWidth",(function(t,e){return t.d1=i.typeGetValue(e)})),n.bv.addItem("ActivationBorderBottomWidth",(function(t,e){return t.dw=i.typeGetValue(e)})),n.bv.addItem("SortDirection",(function(t,e){return t.n=i.EnumUtil.getEnumValue(x,e)})),n.bv.addItem("PinnedRowBackground",(function(t,e){return t.l8=e})),n.bv.addItem("StickyRowBackground",(function(t,e){return t.mb=e})),n.bv.addItem("LastStickyRowBackground",(function(t,e){return t.l7=e})),n.bv.addItem("PinnedRowOpacity",(function(t,e){return t.cp=e})),n.bv.addItem("Pinned",(function(t,e){return t.y=i.EnumUtil.getEnumValue(k,e)})),n.bv.addItem("IsEdited",(function(t,e){return t.a9=e})),n.bv.addItem("IsDeleted",(function(t,e){return t.a6=e})),n.bv.addItem("DeletedTextColor",(function(t,e){return t.l1=e})),n.bv.addItem("EditOpacity",(function(t,e){return t.ck=e})),n.bv.addItem("EditFontInfo",(function(t,e){return t.af=e})),n.bv.addItem("ErrorBorder",(function(t,e){return t.l2=e})),n.bv.addItem("ErrorBorderLeftWidth",(function(t,e){return t.fk=i.typeGetValue(e)})),n.bv.addItem("ErrorBorderTopWidth",(function(t,e){return t.fp=i.typeGetValue(e)})),n.bv.addItem("ErrorBorderBottomWidth",(function(t,e){return t.fi=i.typeGetValue(e)})),n.bv.addItem("ErrorBorderRightWidth",(function(t,e){return t.fn=i.typeGetValue(e)})),n.bv.addItem("EditError",(function(t,e){return t.it=e})),n.bv.addItem("ClipRect",(function(t,e){return t.me=e})),n.bv.addItem("BarBackground",(function(t,e){return t.ly=e})),n.bv.addItem("BarOutline",(function(t,e){return t.lz=e})),n.bv.addItem("BarProgress",(function(t,e){return t.ci=e})),n.bv.addItem("BarStrokeThickness",(function(t,e){return t.ey=i.typeGetValue(e)})),n.bv.addItem("BarCornerRadius",(function(t,e){return t.eu=i.typeGetValue(e)})))},n.prototype.kq=function(){null==n.bs&&(n.bs=new i.Dictionary$2(i.String_$type,i.Delegate_$type,0),n.bs.addItem("X",(function(t){return t.cu})),n.bs.addItem("Y",(function(t){return t.cv})),n.bs.addItem("SnappedX",(function(t){return t.g0})),n.bs.addItem("SnappedY",(function(t){return t.g2})),n.bs.addItem("ContentOpacity",(function(t){return t.cj})),n.bs.addItem("Opacity",(function(t){return t.co})),n.bs.addItem("LeftOffset",(function(t){return t.cm})),n.bs.addItem("LeftPercentOffset",(function(t){return t.cn})),n.bs.addItem("TopOffset",(function(t){return t.cr})),n.bs.addItem("TopPercentOffset",(function(t){return t.cs})),n.bs.addItem("Height",(function(t){return t.fu})),n.bs.addItem("Width",(function(t){return t.hd})),n.bs.addItem("IsSelected",(function(t){return t.bn})),n.bs.addItem("ModelType",(function(t){return i.enumGetBox(P,t.w)})),n.bs.addItem("SelectedStatus",(function(t){return t.cq})),n.bs.addItem("ActivationStatus",(function(t){return t.cf})),n.bs.addItem("HorizontalAlignment",(function(t){return i.enumGetBox(l,t.g)})),n.bs.addItem("VerticalAlignment",(function(t){return i.enumGetBox(h,t.i)})),n.bs.addItem("Background",(function(t){return t.lx})),n.bs.addItem("Border",(function(t){return t.l0})),n.bs.addItem("ActivationBorder",(function(t){return t.lt})),n.bs.addItem("SelectedBackground",(function(t){return t.l9})),n.bs.addItem("HoverBackground",(function(t){return t.l5})),n.bs.addItem("RenderValue",(function(t){return t.j1})),n.bs.addItem("OriginalValue",(function(t){return t.hm})),n.bs.addItem("TextColor",(function(t){return t.mc})),n.bs.addItem("SortIndicatorColor",(function(t){return t.ma})),n.bs.addItem("FontInfo",(function(t){return t.ag})),n.bs.addItem("LineBreakMode",(function(t){return i.enumGetBox(p,t.aa)})),n.bs.addItem("VirtualizationPercentage",(function(t){return t.ct})),n.bs.addItem("PaddingLeft",(function(t){return t.gm})),n.bs.addItem("PaddingTop",(function(t){return t.gq})),n.bs.addItem("PaddingRight",(function(t){return t.go})),n.bs.addItem("PaddingBottom",(function(t){return t.gk})),n.bs.addItem("BorderLeftWidth",(function(t){return t.e2})),n.bs.addItem("BorderTopWidth",(function(t){return t.e7})),n.bs.addItem("BorderRightWidth",(function(t){return t.e5})),n.bs.addItem("BorderBottomWidth",(function(t){return t.e0})),n.bs.addItem("ActivationBorderLeftWidth",(function(t){return t.dy})),n.bs.addItem("ActivationBorderTopWidth",(function(t){return t.d3})),n.bs.addItem("ActivationBorderRightWidth",(function(t){return t.d1})),n.bs.addItem("ActivationBorderBottomWidth",(function(t){return t.dw})),n.bs.addItem("SortDirection",(function(t){return i.enumGetBox(x,t.n)})),n.bs.addItem("PinnedRowBackground",(function(t){return t.l8})),n.bs.addItem("StickyRowBackground",(function(t){return t.mb})),n.bs.addItem("LastStickyRowBackground",(function(t){return t.l7})),n.bs.addItem("PinnedRowOpacity",(function(t){return t.cp})),n.bs.addItem("Pinned",(function(t){return i.enumGetBox(k,t.y)})),n.bs.addItem("IsEdited",(function(t){return t.a9})),n.bs.addItem("IsDeleted",(function(t){return t.a6})),n.bs.addItem("DeletedTextColor",(function(t){return t.l1})),n.bs.addItem("EditOpacity",(function(t){return t.ck})),n.bs.addItem("EditFontInfo",(function(t){return t.af})),n.bs.addItem("ErrorBorder",(function(t){return t.l2})),n.bs.addItem("ErrorBorderLeftWidth",(function(t){return t.fk})),n.bs.addItem("ErrorBorderTopWidth",(function(t){return t.fp})),n.bs.addItem("ErrorBorderBottomWidth",(function(t){return t.fi})),n.bs.addItem("ErrorBorderRightWidth",(function(t){return t.fn})),n.bs.addItem("EditError",(function(t){return t.it})),n.bs.addItem("ClipRect",(function(t){return t.me})),n.bs.addItem("BarBackground",(function(t){return t.ly})),n.bs.addItem("BarOutline",(function(t){return t.lz})),n.bs.addItem("BarProgress",(function(t){return t.ci})),n.bs.addItem("BarStrokeThickness",(function(t){return t.ey})),n.bs.addItem("BarCornerRadius",(function(t){return t.eu})))},n.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 i.Number_$type;case"IsSelected":return i.Boolean_$type;case"ModelType":case"SelectedStatus":case"ActivationStatus":case"HorizontalAlignment":case"VerticalAlignment":return i.Number_$type;case"Background":case"Border":case"ActivationBorder":case"SelectedBackground":case"HoverBackground":return i.Brush.$;case"RenderValue":return i.String_$type;case"OriginalValue":return i.Base.$;case"TextColor":case"SortIndicatorColor":return i.Brush.$;case"FontInfo":return i.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 i.Number_$type;case"PinnedRowBackground":case"StickyRowBackground":case"LastStickyRowBackground":return i.Brush.$;case"PinnedRowOpacity":return i.Number_$type;case"Pinned":case"IsEdited":case"IsDeleted":return i.Boolean_$type;case"DeletedTextColor":return i.Brush.$;case"EditOpacity":return i.Number_$type;case"EditFontInfo":return i.FontInfo.$;case"ErrorBorder":return i.Brush.$;case"ErrorBorderLeftWidth":case"ErrorBorderTopWidth":case"ErrorBorderBottomWidth":case"ErrorBorderRightWidth":return i.Number_$type;case"EditError":return i.String_$type;case"ClipRect":return i.Rect.$;case"BarBackground":case"BarOutline":return i.Brush.$;case"BarStrokeThickness":case"BarCornerRadius":return i.Number_$type}return i.Number_$type},n.prototype.k9=function(t,e){this.kr(),n.bv.containsKey(t)?n.bv.item(t)(this,e):this.k8(t,e)},n.prototype.hl=function(t){return this.kq(),n.bs.containsKey(t)?n.bs.item(t)(this):this.az(t)?this.hk(t):null},n.prototype.k7=function(t,e){},n.prototype.bm=function(t){return(1!=t||1==t&&1==this.o.groupSummaryDisplayMode)&&2!=t&&4!=t&&5!=t},n.prototype.i4=function(){return null!=this.hm?this.hm.toString():""},n.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 i.HashSet$1(i.String_$type,0):this.bw.clear();for(var e=0;e<t.count;e++){t._inner[e].an(this.bw)}}else this.bw=null},n.$t=i.markType(n,"CellModel"),n.dn=0,n.dm=0,n.bu=null,n.g6=n.ft("State"),n.gs=n.ft("Path"),n.fd=n.ft("DoClone"),n.f2=n.ft("IsBarSupported"),n.ex=n.ft("BarProgress"),n.et=n.ft("BarBackground"),n.ew=n.ft("BarOutline"),n.ez=n.ft("BarStrokeThickness"),n.ev=n.ft("BarCornerRadius"),n.e9=n.ft("ClipRect"),n.f8=n.ft("IsHitTestVisible"),n.ga=n.ft("IsRowPinned"),n.gb=n.ft("IsRowSticky"),n.f9=n.ft("IsLastStickyRow"),n.f7=n.ft("IsFilterRow"),n.f1=n.ft("Indent"),n.gx=n.ft("RowItem"),n.hf=n.ft("X"),n.hg=n.ft("Y"),n.g1=n.ft("SnappedX"),n.g3=n.ft("SnappedY"),n.fh=n.ft("EditOpacity"),n.fa=n.ft("ContentOpacity"),n.eg=n.ft("ActualContentOpacity"),n.gi=n.ft("Opacity"),n.ei=n.ft("ActualOpacity"),n.ge=n.ft("LeftOffset"),n.g9=n.ft("TopOffset"),n.gf=n.ft("LeftPercentOffset"),n.ha=n.ft("TopPercentOffset"),n.fv=n.ft("Height"),n.he=n.ft("Width"),n.gc=n.ft("IsSelected"),n.gh=n.ft("ModelType"),n.gz=n.ft("SelectedStatus"),n.d5=n.ft("ActivationStatus"),n.fy=n.ft("HoverStatus"),n.fw=n.ft("HorizontalAlignment"),n.hb=n.ft("VerticalAlignment"),n.es=n.ft("Background"),n.e4=n.ft("Border"),n.d6=n.ft("ActualBackground"),n.eb=n.ft("ActualBorder"),n.d0=n.ft("ActivationBorder"),n.fm=n.ft("ErrorBorder"),n.gy=n.ft("SelectedBackground"),n.fx=n.ft("HoverBackground"),n.fz=n.ft("HoverTextColor"),n.g5=n.ft("SortIndicatorColor"),n.g7=n.ft("StickyRowBackground"),n.gu=n.ft("PinnedRowBackground"),n.gd=n.ft("LastStickyRowBackground"),n.fr=n.ft("FilterRowBackground"),n.gv=n.ft("PinnedRowOpacity"),n.gj=n.ft("OriginalValue"),n.gw=n.ft("RenderValue"),n.g8=n.ft("TextColor"),n.er=n.ft("ActualTextColor"),n.fc=n.ft("DeletedTextColor"),n.fs=n.ft("FontInfo"),n.eh=n.ft("ActualFontInfo"),n.gg=n.ft("LineBreakMode"),n.hc=n.ft("VirtualizationPercentage"),n.gn=n.ft("PaddingLeft"),n.gr=n.ft("PaddingTop"),n.gp=n.ft("PaddingRight"),n.gl=n.ft("PaddingBottom"),n.em=n.ft("ActualPaddingLeft"),n.eq=n.ft("ActualPaddingTop"),n.eo=n.ft("ActualPaddingRight"),n.ek=n.ft("ActualPaddingBottom"),n.e3=n.ft("BorderLeftWidth"),n.e8=n.ft("BorderTopWidth"),n.e6=n.ft("BorderRightWidth"),n.e1=n.ft("BorderBottomWidth"),n.dz=n.ft("ActivationBorderLeftWidth"),n.d4=n.ft("ActivationBorderTopWidth"),n.d2=n.ft("ActivationBorderRightWidth"),n.dx=n.ft("ActivationBorderBottomWidth"),n.fl=n.ft("ErrorBorderLeftWidth"),n.fq=n.ft("ErrorBorderTopWidth"),n.fo=n.ft("ErrorBorderRightWidth"),n.fj=n.ft("ErrorBorderBottomWidth"),n.ea=n.ft("ActualBorderLeftWidth"),n.ef=n.ft("ActualBorderTopWidth"),n.ed=n.ft("ActualBorderRightWidth"),n.d8=n.ft("ActualBorderBottomWidth"),n.g4=n.ft("SortDirection"),n.f6=n.ft("IsExpanded"),n.f3=n.ft("IsCollapsable"),n.gt=n.ft("Pinned"),n.ff=n.ft("EditFontInfo"),n.f5=n.ft("IsEdited"),n.f4=n.ft("IsDeleted"),n.fe=n.ft("EditError"),n.bv=null,n.bs=null,n}(i.Base),Bi=function(t){function n(){var e=t.call(this)||this;return e.mo=new Date,e.m0=null,e.mf=null,e.mh=null,e.my=null,e._formatOverride=null,e.mk=0,e.mi=null,e.mm=!1,e.mp=i.dateMinValue(),e.ks(n.mr),e.bc=!0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mp",{get:function(){return this.mo},set:function(t){var e=this.mo;this.mo=t,+this.mo!=+e&&this.k0("DateTimeValue",n.mr,e,this.mo)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"m6",{get:function(){return this.m0},set:function(t){var e=this.m0;this.m0=t,this.m0!=e&&this.k0("FormatStringOverride",n.mu,e,this.m0)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mg",{get:function(){return this.mf},set:function(t){var e=this.mf;this.mf=t,this.mf!=e&&this.k0("FormatSpecifiers",n.mt,e,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mz",{get:function(){return this._formatOverride},set:function(t){var e=this._formatOverride;this._formatOverride=t,this._formatOverride!=e&&this.k0("FormatOverride",n.ms,e,this._formatOverride)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ml",{get:function(){return this.mk},set:function(t){var e=this.mk;this.mk=t,this.mk!=e&&this.k0("DateTimeFormat",n.mq,i.enumGetBox(B,e),i.enumGetBox(B,this.mk))},enumerable:!1,configurable:!0}),n.prototype.m3=function(t){if(null!=this.mh)return+t==+i.dateMinValue()?"":this.mh.i(t);if(null!=this._formatOverride){if(+t==+i.dateMinValue())return"";var e=t;return this._formatOverride.format(e)}this.mi.j(this.ml);var n=this.mi.i(t);return n==i.stringEmpty()&&null!=this.hm&&null===i.typeCast(i.Date_$type,this.hm)?this.hm.toString():n},n.prototype.i4=function(){return this.m3(this.mp)},Object.defineProperty(n.prototype,"mj",{get:function(){return this.mi},set:function(t){var e=this.mi;this.mi=t,this.mi!=e&&this.k0("Formatter",n.mv,e,this.mi)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mn",{get:function(){return this.mm},set:function(t){var e=this.mm;this.mm=t,this.mm!=e&&this.k0("IsOffsetValue",n.mw,e,this.mm)},enumerable:!1,configurable:!0}),n.prototype.k3=function(e,n,r){switch(e){case"FormatStringOverride":case"FormatSpecifiers":null!=this.m6?(this.mh=new i.BindingFormatter,this.mh.j=this.m6,this.mh.d=this.mg):this.mh=null}t.prototype.k3.call(this,e,n,r)},n.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"DateTimeFormat"==e&&(this.ml=i.EnumUtil.getEnumValue(B,n)),"DateTimeValue"==e&&(this.mp=n),"IsOffsetValue"==e&&(this.mn=n),"FormatOverride"==e&&(this.mz=n)},n.prototype.kl=function(e){switch(e){case"DateTimeFormat":return i.String_$type;case"DateTimeValue":return i.Date_$type;case"IsOffsetValue":return i.Boolean_$type}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"DateTimeFormat"==e?i.enumGetBox(B,this.ml):"DateTimeValue"==e?this.mp:"IsOffsetValue"==e?this.mn:"FormatOverride"==e?this.mz:t.prototype.hl.call(this,e)},n.prototype.b=function(e){null==e&&(e=new $);var i=e=t.prototype.b.call(this,e);return i.af=this.mp,i.ag=this.ml,i.ae=this.mn,i},n.$t=i.markType(n,"DateTimeCellModel",Ei.$),n.mr=Ei.ft("DateTimeValue"),n.mu=Ei.ft("FormatStringOverride"),n.mt=Ei.ft("FormatSpecifiers"),n.ms=Ei.ft("FormatOverride"),n.mq=Ei.ft("DateTimeFormat"),n.mv=Ei.ft("Formatter"),n.mw=Ei.ft("IsOffsetValue"),n}(Ei),Di=function(t){function n(){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 i.Rect(0,0,0,0,0),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mr",{get:function(){return i.Rect.l_op_Inequality(this.me,i.Rect.empty)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mk",{get:function(){return this.mj},set:function(t){var e=this.mj;this.mj=t,e!=this.mj&&this.k0("EditTarget",n.m1,e,this.mj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mi",{get:function(){return this.mh},set:function(t){var e=this.mh;this.mh=t,e!=this.mh&&this.k0("DataType",n.mv,i.enumGetBox(i.DataSourceSchemaPropertyType_$type,e),i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.mh))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"nn",{get:function(){return this.nd},set:function(t){var e=this.nd;this.nd=t,e!=this.nd&&this.k0("ErrorMessage",n.m2,e,this.nd)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mm",{get:function(){return this.ml},set:function(t){var e=this.ml;this.ml=t,e!=this.ml&&this.k0("EditorType",n.mz,i.enumGetBox(z,e),i.enumGetBox(z,this.ml))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"m9",{get:function(){return this.m8},set:function(t){var e=this.m8;this.m8=t,e!=this.m8&&this.k0("EditorItemsSource",n.mx,e,this.m8)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ni",{get:function(){return this.nc},set:function(t){var e=this.nc;this.nc=t,e!=this.nc&&this.k0("EditorTextField",n.my,e,this.nc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mg",{get:function(){return this.mf},set:function(t){var e=this.mf;this.mf=t,e!=this.mf&&this.k0("EditorValueField",n.m0,e,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mq",{get:function(){return this.mn},set:function(t){var e=this.mn;this.mn=t,this.k0("Focus",n.m3,e,this.mn)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"nf",{get:function(){return this.nb},set:function(t){var e=this.nb;this.nb=t,e!=this.nb&&this.k0("DateFormatString",n.mw,e,this.nb)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ms",{get:function(){return this.mp},set:function(t){var e=this.mp;this.mp=t,this.mp!=e&&this.k0("ShowTodayButton",n.m5,e,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"m7",{get:function(){return this.mu},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"m6",{get:function(){return this.mt},enumerable:!1,configurable:!0}),n.prototype.k6=function(){},n.prototype.k3=function(e,i,n){if("SelectedStatus"!=e)switch(t.prototype.k3.call(this,e,i,n),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},n.prototype.kl=function(e){switch(e){case"DataType":return i.Number_$type;case"ErrorMessage":return i.String_$type;case"Focus":return i.Boolean_$type;case"EditTarget":return i.Base.$;case"DateFormatString":return i.String_$type;case"ShowTodayButton":return i.Boolean_$type;case"EditorItemsSource":return i.Base.$}return t.prototype.kl.call(this,e)},n.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"DataType"==e?this.mi=i.EnumUtil.getEnumValue(i.DataSourceSchemaPropertyType_$type,n):"ErrorMessage"==e?this.nn=n:"Focus"==e?this.mq=n:"EditTarget"==e?this.mk=n:"DateFormatString"==e?this.nf=n:"ShowTodayButton"==e?this.ms=n:"EditorItemsSource"==e&&(this.m9=n)},n.prototype.hl=function(e){switch(e){case"IsHidden":return this.mr;case"DataType":return i.enumGetBox(i.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)},n.prototype.b=function(e){null==e&&(e=new N);var i=t.prototype.b.call(this,e);return i.af=this.mr,i.ae=this.mi,i.ag=null!=this.na?this.na.toString():null,i.ah=this.nn,i},n.prototype.ns=function(){null!=this.mk&&(null!=this.nn?this.l0=I.bm:this.l0=this.mk.lt)},n.$t=i.markType(n,"EditorCellModel",Ei.$),n.m4=Ei.ft("IsHidden"),n.m1=Ei.ft("EditTarget"),n.mv=Ei.ft("DataType"),n.m2=Ei.ft("ErrorMessage"),n.mz=Ei.ft("EditorType"),n.mx=Ei.ft("EditorItemsSource"),n.my=Ei.ft("EditorTextField"),n.m0=Ei.ft("EditorValueField"),n.m3=Ei.ft("Focus"),n.mw=Ei.ft("DateFormatString"),n.m5=Ei.ft("ShowTodayButton"),n}(Ei),$i=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"mk",{get:function(){return this.mj},set:function(t){var e=this.mj;this.mj=t,e!=this.mj&&this.k0("DataType",n.mx,i.enumGetBox(i.DataSourceSchemaPropertyType_$type,e),i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.mj))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mi",{get:function(){return this.mh},set:function(t){var e=this.mh;this.mh=t,e!=this.mh&&this.k0("Filter",n.m0,e,this.mh)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mm",{get:function(){return this.ml},set:function(t){var e=this.ml;this.ml=t,e!=this.ml&&this.k0("FilterExpression",n.my,e,this.ml)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mo",{get:function(){return this.mn},set:function(t){var e=this.mn;this.mn=t,null!=this.mn&&this.k0("FilterOperands",n.mz,e,this.mn)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mq",{get:function(){return this.mp},set:function(t){var e=this.mp;this.mp=t,e!=this.mp&&this.k0("IsFilteringEnabled",n.m1,e,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mg",{get:function(){return this.mf},set:function(t){this.mf=t},enumerable:!1,configurable:!0}),n.prototype.k9=function(e,n){"DataType"==e?this.mk=i.EnumUtil.getEnumValue(i.DataSourceSchemaPropertyType_$type,n):"Filter"==e?this.mi=n:"FilterExpression"==e?this.mm=n:"IsFilteringEnabled"==e&&(this.mq=n),t.prototype.k9.call(this,e,n)},n.prototype.kl=function(e){switch(e){case"DataType":return i.Number_$type;case"Filter":return i.String_$type;case"FilterExpression":return i.Base.$;case"IsFilteringEnabled":return i.Boolean_$type}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"DataType"==e?i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.mk):"Filter"==e?this.mi:"FilterExpression"==e?this.mm:"IsFilteringEnabled"==e?this.mq:t.prototype.hl.call(this,e)},n.prototype.k7=function(t,e){"OperatorType"==t?this.mg=i.EnumUtil.getEnumValue(f,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)},n.prototype.b=function(e){null==e&&(e=new F);var i=t.prototype.b.call(this,e);return i.ag=this.mq,i.af=this.mk,i.ae=this.mg,i.an=this.m2,i.am=this.mw,i.al=this.mv,i.ak=this.mu,i.aj=this.mt,i.ai=this.ms,i.ah=this.mr,i},n.$t=i.markType(n,"FilterCellModel",Ei.$),n.mx=Ei.ft("DataType"),n.m0=Ei.ft("Filter"),n.my=Ei.ft("FilterExpression"),n.mz=Ei.ft("FilterOperands"),n.m1=Ei.ft("IsFilteringEnabled"),n}(Ei),Mi=function(t){function n(){var e=t.call(this)||this;return e.bc=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"EditorRowCellModel",Ei.$),n}(Ei),zi=function(t){function n(){var e=t.call(this)||this;return e.ml=null,e.mm=null,e.mt=null,e.mf=null,e.bc=!0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mn",{get:function(){return this.ml},set:function(t){var e=this.ml;this.ml=t,this.ml!=e&&this.k0("ResolvedSummaryLabel",n.mh,e,this.ml)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mp",{get:function(){return this.mm},set:function(t){var e=this.mm;this.mm=t,this.mm!=e&&this.k0("ResolvedSummaryValue",n.mi,e,this.mm)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mu",{get:function(){return this.mt},set:function(t){var e=this.mt;this.mt=t,this.mt!=e&&this.k0("SummaryLabelTextColor",n.mk,e,this.mt)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mg",{get:function(){return this.mf},set:function(t){var e=this.mf;this.mf=t,this.mf!=e&&this.k0("SummaryLabelFontInfo",n.mj,e,this.mf)},enumerable:!1,configurable:!0}),n.prototype.b=function(e){null==e&&(e=new G);var n=e=t.prototype.b.call(this,e);if(n.ai=this.mn,n.ao=this.mp,n.ae=i.AppearanceHelper.a(this.mu),n.af=i.AppearanceHelper.a(this.mc),null!=this.mg){var r=this.mg;if(null!=this.p&&null==r.q){var o=this.p.externalGrid.renderer,s=i.FontUtil.getFontInfoFromString(o,r.fontString);r.q=s.q,r.f=s.f,r.r=s.r,r.t=s.t,r.u=s.u,r.v=s.v}null!=r.q&&(n.aj=r.q),i.isNaN_(r.f)||(n.ag=r.f),null!=r.v&&(n.an=r.v),null!=r.t&&(n.al=r.t),null!=r.r&&(n.ak=r.t)}if(null!=this.ag){var a=this.ag;if(null!=this.p&&null==a.q){var l=this.p.externalGrid.renderer,u=i.FontUtil.getFontInfoFromString(l,a.fontString);a.q=u.q,a.f=u.f,a.r=u.r,a.t=u.t,a.u=u.u,a.v=u.v}null!=a.q&&(n.ap=a.q),i.isNaN_(a.f)||(n.ah=a.f),null!=a.v&&(n.at=a.v),null!=a.t&&(n.ar=a.t),null!=a.r&&(n.aq=a.t)}return n},n.prototype.bm=function(t){return 4==t||5==t},n.$t=i.markType(n,"SummaryCellModel",Ei.$),n.mh=Ei.ft("ResolvedSummaryLabel"),n.mi=Ei.ft("ResolvedSummaryValue"),n.mk=Ei.ft("SummaryLabelTextColor"),n.mj=Ei.ft("SummaryLabelFontInfo"),n}(Ei),Ni=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.$t=i.markType(n,"VerticalSeparatorCellModel",Ei.$),n}(Ei),Fi=function(t){function n(){var e=t.call(this)||this;return e.mm="",e.mh=0,e.mf=0,e.g=3,e.bc=!0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mn",{get:function(){return this.mm},set:function(t){var e=this.mm;this.mm=t,this.mm!=e&&this.k0("ImagePath",n.mj,e,this.mm)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mi",{get:function(){return this.mh},set:function(t){var e=this.mh;this.mh=t,this.mh!=e&&this.k0("ImageStretchOption",n.ml,i.enumGetBox(q,e),i.enumGetBox(q,this.mh))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mg",{get:function(){return this.mf},set:function(t){var e=this.mf;this.mf=t,this.mf!=e&&this.k0("ImageResourceType",n.mk,i.enumGetBox(H,e),i.enumGetBox(H,this.mf))},enumerable:!1,configurable:!0}),n.prototype.b=function(e){null==e&&(e=new W);var i=e=t.prototype.b.call(this,e);return i.ae=this.mn,i},n.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"ImageStretchOption"==e&&(this.mi=i.EnumUtil.getEnumValue(q,n)),"ImageResourceType"==e&&(this.mg=i.EnumUtil.getEnumValue(H,n)),"ImagePath"==e&&(this.mn=n)},n.prototype.kl=function(e){switch(e){case"ImageStretchOption":case"ImageResourceType":return i.Number_$type;case"ImagePath":return i.String_$type}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"ImageStretchOption"==e?i.enumGetBox(q,this.mi):"ImageResourceType"==e?i.enumGetBox(H,this.mg):"ImagePath"==e?this.mn:t.prototype.hl.call(this,e)},n.$t=i.markType(n,"ImageCellModel",Ei.$),n.mj=Ei.ft("ImagePath"),n.ml=Ei.ft("ImageStretchOption"),n.mk=Ei.ft("ImageResourceType"),n}(Ei),Gi=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"mo",{get:function(){return this.mn},set:function(t){var e=this.mn;this.mn=t,this.mn!=e&&this.k0("NumericValue",n.m4,e,this.mn)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mk",{get:function(){return this.mi},set:function(t){var e=this.mi;this.mi=t,this.mi!=e&&this.k0("HasDecimalValue",n.mv,e,this.mi)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ni",{get:function(){return this.nb},set:function(t){var e=this.nb;this.nb=t,this.nb!=e&&this.k0("FormatStringOverride",n.mu,e,this.nb)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mg",{get:function(){return this.mf},set:function(t){var e=this.mf;this.mf=t,this.mf!=e&&this.k0("FormatSpecifiers",n.mt,e,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"na",{get:function(){return this._formatOverride},set:function(t){var e=this._formatOverride;this._formatOverride=t,this._formatOverride!=e&&this.k0("FormatOverride",n.ms,e,this._formatOverride)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"no",{get:function(){return this.nc},set:function(t){var e=this.nc;this.nc=t,this.nc!=e&&this.k0("NegativePrefix",n.m2,e,this.nc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"nt",{get:function(){return this.ne},set:function(t){var e=this.ne;this.ne=t,this.ne!=e&&this.k0("PositivePrefix",n.m5,e,this.ne)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"nq",{get:function(){return this.nd},set:function(t){var e=this.nd;this.nd=t,this.nd!=e&&this.k0("NegativeSuffix",n.m3,e,this.nd)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"nv",{get:function(){return this.nf},set:function(t){var e=this.nf;this.nf=t,this.nf!=e&&this.k0("PositiveSuffix",n.m6,e,this.nf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mw",{get:function(){return this.mp},set:function(t){var e=this.mp;this.mp=t,this.mp!=e&&this.k0("MaxFractionDigits",n.mx,e,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"my",{get:function(){return this.mq},set:function(t){var e=this.mq;this.mq=t,this.mq!=e&&this.k0("MinFractionDigits",n.mz,e,this.mq)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"m0",{get:function(){return this.mr},set:function(t){var e=this.mr;this.mr=t,this.mr!=e&&this.k0("MinIntegerDigits",n.m1,e,this.mr)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mm",{get:function(){return this.mj},set:function(t){var e=this.mj;this.mj=t,this.mj!=e&&this.k0("ShowGroupingSeparator",n.m7,e,this.mj)},enumerable:!1,configurable:!0}),n.prototype.ml=function(){return!!(this.a8(n.mz)||this.a8(n.mx)||this.a8(n.m1)||this.a8(n.m6)||this.a8(n.m3)||this.a8(n.m5)||this.a8(n.m2)||this.a8(n.ms)||this.a8(n.m7))},n.prototype.k3=function(e,n,r){switch(e){case"FormatStringOverride":case"FormatSpecifiers":null!=this.ni?(this.mh=new i.BindingFormatter,this.mh.j=this.ni,this.mh.d=this.mg):this.mh=null}t.prototype.k3.call(this,e,n,r)},n.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"NumericValue"==e&&(this.mo=n),"NegativePrefix"==e&&(this.no=n),"PositivePrefix"==e&&(this.nt=n),"NegativeSuffix"==e&&(this.nq=n),"PositiveSuffix"==e&&(this.nv=n),"MinFractionDigits"==e&&(this.my=i.typeGetValue(n)),"MaxFractionDigits"==e&&(this.mw=i.typeGetValue(n)),"MinIntegerDigits"==e&&(this.m0=i.typeGetValue(n)),"ShowGroupingSeparator"==e&&(this.mm=n),"FormatOverride"==e&&(this.na=n)},n.prototype.kl=function(e){switch(e){case"NumericValue":return i.Number_$type;case"NegativePrefix":case"PositivePrefix":return i.String_$type;case"MinFractionDigits":case"MaxFractionDigits":case"MinIntegerDigits":return i.Number_$type;case"ShowGroupingSeparator":return i.Boolean_$type}return t.prototype.kl.call(this,e)},n.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)},n.prototype.b=function(e){null==e&&(e=new U);var i=e=t.prototype.b.call(this,e);return i.ae=this.mo,i},n.prototype.i4=function(){return Hn.c(this)},n.$t=i.markType(n,"NumericCellModel",Ei.$),n.m4=Ei.ft("NumericValue"),n.mv=Ei.ft("HasDecimalValue"),n.mu=Ei.ft("FormatStringOverride"),n.mt=Ei.ft("FormatSpecifiers"),n.ms=Ei.ft("FormatOverride"),n.m2=Ei.ft("NegativePrefix"),n.m5=Ei.ft("PositivePrefix"),n.m3=Ei.ft("NegativeSuffix"),n.m6=Ei.ft("PositiveSuffix"),n.mx=Ei.ft("MaxFractionDigits"),n.mz=Ei.ft("MinFractionDigits"),n.m1=Ei.ft("MinIntegerDigits"),n.m7=Ei.ft("ShowGroupingSeparator"),n}(Ei),Vi=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.b=function(e){return null==e&&(e=new K),e=t.prototype.b.call(this,e)},n.$t=i.markType(n,"RowSeparatorModel",Ei.$),n}(Ei),qi=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"mh",{get:function(){return this.mf},set:function(t){var e=this.mf;this.mf=t,this.mf!=e&&this.k0("Groups",n.ml,e,this.mf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mi",{get:function(){return this.mg},set:function(t){var e=this.mg;this.mg=t,this.mg!=e&&this.k0("Summaries",n.mo,e,this.mg)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mv",{get:function(){return this.mr},set:function(t){var e=this.mr;this.mr=t,this.mr!=e&&this.k0("ResolvedText",n.mn,e,this.mr)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mt",{get:function(){return this.mq},set:function(t){var e=this.mq;this.mq=t,this.mq!=e&&this.k0("ResolvedSummaryText",n.mm,e,this.mq)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mk",{get:function(){return this.mj},set:function(t){var e=this.mj;this.mj=t,this.mj!=e&&this.k0("SummaryDisplayMode",n.mp,i.enumGetBox(A,e),i.enumGetBox(A,this.mj))},enumerable:!1,configurable:!0}),n.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"Groups"==e?this.mh=n:"SummaryDisplayMode"==e&&(this.mk=i.EnumUtil.getEnumValue(A,n))},n.prototype.kl=function(e){switch(e){case"Groups":return i.Base.$;case"IsCollapsable":return i.Boolean_$type;case"SummaryDisplayMode":return i.Number_$type}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"Groups"==e?this.mh:"IsCollapsable"==e?this.a2:"SummaryDisplayMode"==e?i.enumGetBox(A,this.mk):t.prototype.hl.call(this,e)},n.prototype.b=function(e){null==e&&(e=new Y);var i=e=t.prototype.b.call(this,e);i.af=new Array(this.mh.length),i.ag=new Array(this.mh.length),i.ae=new Array(this.mh.length),i.al=this.mv,i.ai=new Array(this.mi.length),i.ak=new Array(this.mi.length),i.aj=new Array(this.mi.length),i.ah=new Array(this.mi.length),i.am=this.mt;for(var n=0;n<this.mh.length;n++)i.af[n]=this.mh[n].c,i.ag[n]=this.mh[n].a,i.ae[n]=this.mh[n].b;for(var r=0;r<this.mi.length;r++)i.ai[r]=this.mi[r].e,i.ak[r]=this.mi[r].b,i.aj[r]=this.mi[r].a,i.ah[r]=this.mi[r].c;return i},n.prototype.bm=function(t){return 1==t},n.$t=i.markType(n,"SectionHeaderCellModel",Ei.$),n.ml=Ei.ft("Groups"),n.mo=Ei.ft("Summaries"),n.mn=Ei.ft("ResolvedText"),n.mm=Ei.ft("ResolvedSummaryText"),n.mp=Ei.ft("SummaryDisplayMode"),n}(Ei),Li=function(t){function n(){var e=t.call(this)||this;return e.mg=null,e.bc=!0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mh",{get:function(){return this.mg},set:function(t){var e=this.mg;this.mg=t,this.mg!=e&&this.k0("Value",n.mf,e,this.mg)},enumerable:!1,configurable:!0}),n.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"Value"==e&&(this.mh=i)},n.prototype.kl=function(e){switch(e){case"Value":return i.Base.$}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"Value"==e?this.mh:t.prototype.hl.call(this,e)},n.prototype.b=function(e){null==e&&(e=new Z);var i=e=t.prototype.b.call(this,e);return i.ae=this.mh,i},n.$t=i.markType(n,"TemplateCellModel",Ei.$),n.mf=Ei.ft("Value"),n}(Ei),Hi=function(t){function n(){var e=t.call(this)||this;return e.mg="",e.bc=!0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mh",{get:function(){return this.mg},set:function(t){var e=this.mg;this.mg=t,this.mg!=e&&this.k0("TextValue",n.mf,e,this.mg)},enumerable:!1,configurable:!0}),n.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"TextValue"==e&&(this.mh=i)},n.prototype.kl=function(e){switch(e){case"TextValue":return i.String_$type}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"TextValue"==e?this.mh:t.prototype.hl.call(this,e)},n.prototype.b=function(e){null==e&&(e=new J);var i=e=t.prototype.b.call(this,e);return i.af=this.mh,i},n.prototype.i4=function(){return null!=this.mh?this.mh:null!=this.hm?this.hm.toString():""},n.$t=i.markType(n,"TextCellModel",Ei.$),n.mf=Ei.ft("TextValue"),n}(Ei),Wi=function(t){function n(){var e=t.call(this)||this;return e.mp=!1,e.mn=0,e.mj=0,e.m1=null,e.ml=0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mq",{get:function(){return this.mp},set:function(t){var e=this.mp;this.mp=t,this.mp!=e&&this.k0("IsColumnOptionsEnabled",n.mu,e,this.mp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mo",{get:function(){return this.mn},set:function(t){var e=this.mn;this.mn=t,this.mn!=e&&this.k0("SortIndicatorStyle",n.mv,i.enumGetBox(s,e),i.enumGetBox(s,this.mn))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mk",{get:function(){return this.mj},set:function(t){var e=this.mj;this.mj=t,this.mj!=e&&this.k0("ColumnOptionsIconAlignment",n.mr,i.enumGetBox(et,e),i.enumGetBox(et,this.mj))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"m2",{get:function(){return this.m1},set:function(t){var e=this.m1;this.m1=t,this.m1!=e&&this.k0("ColumnOptionsIconColor",n.mt,e,this.m1)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mm",{get:function(){return this.ml},set:function(t){var e=this.ml;this.ml=t,this.ml!=e&&this.k0("ColumnOptionsIconBehavior",n.ms,i.enumGetBox(nt,e),i.enumGetBox(nt,this.ml))},enumerable:!1,configurable:!0}),n.prototype.k9=function(e,n){t.prototype.k9.call(this,e,n),"IsColumnOptionsEnabled"==e?this.mq=n:"SortIndicatorStyle"==e?this.mo=i.EnumUtil.getEnumValue(s,n):"ColumnOptionsIconAlignment"==e?this.mk=i.EnumUtil.getEnumValue(et,n):"ColumnOptionsIconColor"==e?this.m2=n:"ColumnOptionsIconBehavior"==e&&(this.mm=i.EnumUtil.getEnumValue(nt,n))},n.prototype.kl=function(e){switch(e){case"IsColumnOptionsEnabled":return i.Boolean_$type;case"SortIndicatorStyle":case"ColumnOptionsIconAlignment":return i.Number_$type;case"SortIndicatorColor":case"ColumnOptionsIconColor":return i.Brush.$;case"ColumnOptionsIconBehavior":return i.Number_$type}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"IsColumnOptionsEnabled"==e?this.mq:"SortIndicatorStyle"==e?i.enumGetBox(s,this.mo):"ColumnOptionsIconAlignment"==e?i.enumGetBox(et,this.mk):"ColumnOptionsIconColor"==e?this.m2:"ColumnOptionsIconBehavior"==e?i.enumGetBox(nt,this.mm):t.prototype.hl.call(this,e)},n.prototype.b=function(e){return null==e&&(e=new rt),e=t.prototype.b.call(this,e)},n.$t=i.markType(n,"TextHeaderCellModel",Hi.$),n.mu=Ei.ft("IsColumnOptionsEnabled"),n.mv=Ei.ft("SortIndicatorStyle"),n.mr=Ei.ft("ColumnOptionsIconAlignment"),n.mt=Ei.ft("ColumnOptionsIconColor"),n.ms=Ei.ft("ColumnOptionsIconBehavior"),n}(Hi),Ui=function(t){function n(){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=I.bn,e.b9=I.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 pt,e.n=new Ai(e),e.r=I.n,e.ac=new i.ObservableCollection$1(i.Base.$,0),e.d=new i.PagedDataSource(new Qi(e)),e.d.dataSource=e.ac,e}return e.__extends(n,t),n.prototype.bu=function(t,e,n){this.bz(t,e,n),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.bz=function(t,e,i){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,i)}},n.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(n.prototype,"executionContext",{get:function(){return this._executionContext},set:function(t){this._executionContext=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"u",{get:function(){return null==this.t&&(this.t=new i.SRProvider(this.n.m),this.t.cb("DataGrid")),this.t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a9",{get:function(){if(null==this.au){var t=this.u.b1("Pager_Text");return i.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"l",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.bu("GroupSummaryDisplayMode",i.enumGetBox(A,e),i.enumGetBox(A,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"p",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,e!=this.o&&this.bu("SummaryScope",i.enumGetBox(st,e),i.enumGetBox(st,this.o))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.bu("GroupHeaderDisplayMode",i.enumGetBox(lt,e),i.enumGetBox(lt,this.i))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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}),n.prototype.bo=function(t,e){var i;null!=this.pageChanged&&this.pageChanged(this,((i=new ut).page=t,i.data=e,i))},n.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},n.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}))}},n.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 i=this.b.getItemAtIndex(e);this.ac.add1(i),null!=i&&(this.d.ef=!0)}for(var n=new Array(this.ac.count),r=0;r<this.ac.count;r++)n[r]=this.ac._inner[r];this.bo(this.ak,n),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))}},n.prototype.bt=function(){if(null!=this.itemsSource){if(null!==i.typeCast(i.IDataSource_$type,this.itemsSource))this.b=this.itemsSource,this.b.isVirtual&&null!==i.typeCast(i.VirtualDataSource.$,this.b)&&(this.b.pageSizeRequested=this.ao);else{var t=new i.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 Ki(this),this.b.summaryScope=this.p;var e=this.b;switch(e.schemaChanged=i.delegateCombine(e.schemaChanged,i.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()}},n.prototype.bj=function(t,e){this.b7(),this.b6()},n.prototype.b7=function(){null!=this.targetGrid.actualDataSource&&null!=this.actualDataSource.actualSchema&&this.d.setSchema(this.actualDataSource.actualSchema)},n.prototype.b6=function(){null!=this.b&&(this.b.isVirtual&&null!==i.typeCast(i.VirtualDataSource.$,this.b)&&(this.b.pageSizeRequested=this.ao),this.an=i.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)},n.prototype.b5=function(){this.ag=i.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()},n.prototype.bn=function(){this.ak=Math.min(this.ak+1,this.an-1)},n.prototype.by=function(){this.ak=Math.max(this.ak-1,0)},n.prototype.bk=function(){this.ak=0},n.prototype.bm=function(){this.ak=this.an-1},n.prototype.provideContainer=function(t){null!=this.n&&this.n.u(t)},n.prototype.bx=function(t,e){if(null!=t){var n=t;n.postPropertyChanged=i.delegateRemove(n.postPropertyChanged,i.runOn(this,this.br)),n.filterExpressionsChanged=i.delegateRemove(n.filterExpressionsChanged,i.runOn(this,this.bp)),n.sortDescriptionsChanged=i.delegateRemove(n.sortDescriptionsChanged,i.runOn(this,this.bv)),n.groupDescriptionsChanged=i.delegateRemove(n.groupDescriptionsChanged,i.runOn(this,this.bs)),n.summaryDescriptionsChanged=i.delegateRemove(n.summaryDescriptionsChanged,i.runOn(this,this.bw))}if(null!=e){var r=e;r.postPropertyChanged=i.delegateCombine(r.postPropertyChanged,i.runOn(this,this.br)),r.filterExpressionsChanged=i.delegateCombine(r.filterExpressionsChanged,i.runOn(this,this.bp)),r.sortDescriptionsChanged=i.delegateCombine(r.sortDescriptionsChanged,i.runOn(this,this.bv)),r.groupDescriptionsChanged=i.delegateCombine(r.groupDescriptionsChanged,i.runOn(this,this.bs)),r.summaryDescriptionsChanged=i.delegateCombine(r.summaryDescriptionsChanged,i.runOn(this,this.bw)),this.bq(),this.ao=this.targetGrid.pageSize,this.j=this.targetGrid.groupHeaderDisplayMode}},n.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,i=new bt(1,[e,new Xi(this,this.targetGrid)]);this.targetGrid.actualDataSource.updateNotifier=i,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)}},n.prototype.bp=function(t,e){if(!this.x){this.actualDataSource.filterExpressions.clear();for(var i=0;i<e.a.k.count;i++){var n=e.a.k.item(i);this.actualDataSource.filterExpressions.add(n)}this.b4(!0)}},n.prototype.bv=function(t,e){this.actualDataSource.sortDescriptions.clear();for(var n=0;n<e.sortDescriptions.j.count;n++){var r=e.sortDescriptions.j.item(n);this.actualDataSource.sortDescriptions.add(i.SortDescription.create(r.f,r.c))}this.b4(!0)},n.prototype.bs=function(t,e){this.actualDataSource.groupDescriptions.clear();for(var n=0;n<e.groupDescriptions.j.count;n++){var r=e.groupDescriptions.j.item(n);this.actualDataSource.groupDescriptions.add(i.SortDescription.create(r.f,r.c))}this.b4(!0)},n.prototype.bw=function(t,e){this.f.n(),this.actualDataSource.summaryDescriptions.clear();for(var n=0;n<e.summaryDescriptions.j.count;n++){var r=e.summaryDescriptions.j.item(n);this.f.j.add(r);var o=new i.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)},n.prototype.b4=function(t){t&&this.actualDataSource.flushAutoRefresh(),this.b6()},n.prototype.b3=function(){if(null!=this.targetGrid){var t=this.targetGrid.actualDataSource.getRootSummaryResults(),e=this.actualDataSource.getRootSummaryResults();if(null!=e&&null!=t)for(var i=0;i<e.length;i++)t[i].value=e[i].value;if((2==this.targetGrid.summaryScope||0==this.targetGrid.summaryScope)&&this.targetGrid.groupDescriptions.j.count>0)for(var n=0,r=this.targetGrid.actualDataSource.getSectionSummaryResults(n);null!=r;){for(var o=null,s=0;s<r.length;s++)for(var a=0;a<r[s].length;a++)if(null!=r[s][a]){o=r[s][a].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 h=0;h<l[u].length;h++){var c=r[u][h],p=l[u][h];null==c?r[u][h]=p:c.value=p.value}}r=this.targetGrid.actualDataSource.getSectionSummaryResults(++n)}}},n.prototype.a=function(t,e){var n;n=1==this.j?new Array(this.am):new Array(1);for(var r=0;r<n.length;r++){n[r]=new Array(this.aq);for(var o=0;o<n[r].length;o++)n[r][o]=null}for(var s=0,a=t.getSectionSummaryResults(s);null!=a;){for(var l=0;l<a.length;l++)for(var u=0;u<a[l].length;u++)null!=a[l][u]&&(n[l][u]=a[l][u]);for(var h=null,c=0;c<a.length;c++)for(var p=0;p<a[c].length;p++)if(null!=a[c][p]){h=a[c][p].groupKey;break}if(null!=h){for(var d=!0,f=0;f<h.length;f++)if(!i.Base.equalsStatic(h[f],e[f])){d=!1;break}if(d)return n}a=t.getSectionSummaryResults(++s)}return null},n.prototype.as=function(){return this.e()},n.prototype.az=function(){return this.e().j()},n.prototype.e=function(){var t=new St;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 n=this.n.m,r=i.FontUtil.getFontInfoFromString(n,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),i.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},n.$t=i.markType(n,"Pager",i.Base.$,[i.INotifyPropertyChanged_$type]),n.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",n.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",n.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",n.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",n}(i.Base),Ki=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),n.prototype.notifyClearItems=function(){this.a.b5()},n.prototype.notifyInsertItem=function(t,e){},n.prototype.notifyRemoveItem=function(t,e){},n.prototype.notifySetItem=function(t,e,i){},n.prototype.rangeActualized=function(t,e){t<this.a.ak*this.a.ao||this.a.b1()},n.$t=i.markType(n,"PagerDataSourceNotificationBridge",i.Base.$,[i.IDataSourceUpdateNotifier_$type]),n}(i.Base),Xi=function(t){function n(e,i){var n=t.call(this)||this;return n.b=null,n.a=null,n.b=e,n.a=i,n}return e.__extends(n,t),n.prototype.notifyClearItems=function(){this.a.summaryDescriptions.j.count>0&&(this.b.b3(),this.a.invalidateVisibleRows())},n.prototype.notifyInsertItem=function(t,e){},n.prototype.notifyRemoveItem=function(t,e){},n.prototype.notifySetItem=function(t,e,i){},n.prototype.rangeActualized=function(t,e){},n.$t=i.markType(n,"PagerGridDataSourceNotificationBridge",i.Base.$,[i.IDataSourceUpdateNotifier_$type]),n}(i.Base),Qi=function(t){function n(e){var i=t.call(this)||this;return i.av=null,i.av=e,i}return e.__extends(n,t),n.prototype.getItemValue=function(e,i){return null==e?null:this.av.actualDataSource.isVirtual?this.av.actualDataSource.actualDataProvider.getItemValue(e,i):t.prototype.getItemValue.call(this,e,i)},n.$t=i.markType(n,"PagedDataProvider",i.DataSourceLocalDataProvider.$),n}(i.DataSourceLocalDataProvider),Yi=function(t){function n(e,i){var n=t.call(this)||this;return n.b=null,n.a=null,n.b=e,n.a=i,n}return e.__extends(n,t),n.prototype.rangeActualized=function(t,e){this.b.wk(t,e),null!=this.a&&this.a.rangeActualized(t,e)},n.prototype.notifySetItem=function(t,e,i){this.b.xi(t,e,i),null!=this.a&&this.a.notifySetItem(t,e,i)},n.prototype.notifyClearItems=function(){this.b.v4(),null!=this.a&&this.a.notifyClearItems()},n.prototype.notifyInsertItem=function(t,e){this.b.ww(t,e),null!=this.a&&this.a.notifyInsertItem(t,e)},n.prototype.notifyRemoveItem=function(t,e){this.b.w3(t,e),null!=this.a&&this.a.notifyRemoveItem(t,e)},n.$t=i.markType(n,"DataSourceNotificationBridge",i.Base.$,[i.IDataSourceUpdateNotifier_$type]),n}(i.Base),Zi=function(t){function n(e,n,r){var o=t.call(this)||this;return o.i=null,o.n=!1,o.c=null,o.a=null,o.v=new i.HashSet$1(i.String_$type,0),o.m=!1,o.k=null,o.l=null,o.n=n,o.i=e,o.l=r,o}return e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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 i=0;i<this.a.length;i++)this.v.add_1(this.a[i])}this.u()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.i},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"o",{get:function(){return this.m},set:function(t){this.m=t},enumerable:!1,configurable:!0}),n.prototype.u=function(){if(this.m)return!1;if(null==this.c)return!1;for(var t=new i.Dictionary$2(i.String_$type,i.Boolean_$type,0),e=0;e<this.i.count;e++){var n=this.i._inner[e];n.jh||t.item(n.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},n.prototype.q=function(t,e){for(var n=new wn,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 s=this.e(o,e.propertyTypes[r]);n.add(s),t.item(o,!0)}}for(var a=new i.Dictionary$2(i.String_$type,i.Boolean_$type,0),l=0;l<n.count;l++)a.item(n._inner[l].lo,!0);for(var u=!1,h=this.i.count,c=0;c<n.count;c++)u=!0,this.k.insertExternalColumnAtIndex(h+c,n._inner[c].externalObject);return u},n.prototype.e=function(t,e){var n=null;switch(e){case 8:case 9:n=this.k.createDateTimeColumn(t);break;case 5:case 6:case 7:case 1:case 3:case 4:case 10:n=this.k.createNumericColumn(t);break;case 11:n=this.k.createTextColumn(t);break;case 0:case 2:n=this.k.createTextColumn(t)}return n.lo=t,n.jh=!0,n.mf=this.t(t)?n.lo:i.createGuid(),n},n.prototype.t=function(t){for(var e=0;e<this.i.count;e++)if(this.i._inner[e].mf==t)return!1;return!0},n.prototype.h=function(t){return t.a5<0||0==this.i.count||this.i.count<=t.a5?null:this.i._inner[t.a5]},n.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},n.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},n.prototype.r=function(t){return!1},n.prototype.s=function(t){return!1},n.$t=i.markType(n,"ColumnController"),n}(i.Base),Ji=function(t){function n(e,n){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=n;var o=r.e;return o.definitionPropertyUpdated=i.delegateCombine(o.definitionPropertyUpdated,i.runOn(r,r.y)),r}return e.__extends(n,t),Object.defineProperty(n.prototype,"o",{get:function(){return this.n},set:function(t){this.n=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"p",{get:function(){return null!=this.b?this.b.fg:-1},enumerable:!1,configurable:!0}),n.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)},n.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=i.Rect.empty,t.bf=!0,this.o=t.l.x,this.s=t.hn))},n.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?i.Rect.empty:new i.Rect(0,0,0,0,0),this.e.textStyle=t.ag,this.e.gz=t,this.t=t.hm,this.g.aq=null)},n.prototype.v=function(){this.r=-1,this.q=-1,this.a=null,this.e.gz=null},n.prototype.i=function(t,e){if(this.j&&-1!=this.q&&-1!=this.r){var n=!0;t?n=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),n&&null==this.e.g3&&(this.j=!1,null!=this.a&&(this.a.bf=!1),this.e.g6=new i.Rect(0,0,0,0,0))}return!this.j},n.prototype.w=function(){3==this.g.editMode&&(this.o=-1)},n.prototype.aa=function(t){this.e.g3=t},n.prototype.ac=function(t){this.a=t,null!=this.a&&(this.j?this.a.bf=!0:this.a.bf=!1)},n.prototype.x=function(){},n.prototype.z=function(){this.g.xv()},n.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},n.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}},n.prototype.m=function(t){return null!=t&&t.l.x==this.r&&t.l.a5==this.q},n.$t=i.markType(n,"EditingManager"),n}(i.Base),tn=function(t){function n(){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 i.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 i.List$1(i.Number_$type,0),e.lp=new i.List$1(i.Number_$type,0),e.ai=null,e.j3=!1,e.iu=!1,e.iw=!1,e.it=!1,e.c4=new dn,e._delayedExecutionManager=null,e.fo=null,e.e6=null,e.ax=null,e.d0=new mr,e.ga=new Cr,e.dv=null,e.f4=null,e.ac=null,e.f8=null,e.cj=null,e.g8=null,e.f2=null,e.f0=new Xn,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 gr,e._viewportManager=null,e.lx=0,e.lw=0,e.go=2,e.mw=i.truncate(i.DeviceUtils.g(36)),e.na=-1,e.ca=Rt.a,e.l1=136,e.mv=i.truncate(i.DeviceUtils.g(36)),e.m2=-1,e.nf=i.truncate(i.DeviceUtils.g(0)),e.oq=null,e.ne=i.truncate(i.DeviceUtils.g(0)),e.nc=i.truncate(i.DeviceUtils.g(0)),e.m0=i.truncate(i.DeviceUtils.g(0)),e.ev=0,e.cm=1,e.ck=2,e.hk=!0,e.hg=!0,e.nb=i.truncate(i.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 Yt,e.c6=new Zt,e.bo=1,e.bw=1,e.ba=1,e.a7=1,e.az=1,e.abi=new i.Thickness(1,0,0,0,0),e.cg=5,e.c1=1,e.ek=1,e.h9=!0,e.ho=!1,e.ec=new de,e.eh=new me,e.d8=new vn,e.d5=new be,e.hn=!1,e.eb=new de,e.eg=new me,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=i.truncate(i.DeviceUtils.g(2)),e.m3=i.truncate(i.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=i.truncate(i.DeviceUtils.g(4)),e.l0=1,e.mx=i.truncate(i.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=I.bv,e.abe=I.bv,e.abf=new i.Thickness(0,NaN),e.id=!1,e.y8=I.t,e.y7=new i.CornerRadius(0,NaN),e.y6=I.t,e.hq=!0,e.g6=new Ee,e.e2=null,e.fq=null,e.gk=new Rr,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 i.Dictionary$2(i.String_$type,i.Base.$,0),e.sizeChanged=null,e.viewportChanged=null,e.m6=-1,e.m7=-1,e.le=!1,e.actualColumnsChanged=null,e.dl=new wn,e.ic=!1,e.lc=!1,e.ld=!1,e.ha=!1,e.ji=!1,e.j2=!1,e.lk=new i.List$1(i.Base.$,0),e.ll=new i.List$1(fe.$,0),e.lm=new i.List$1(i.Base.$,0),e.ln=new i.List$1(fe.$,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 i.Dictionary$2(i.String_$type,i.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=i.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 Qn,e.rowSeparator=new Yn,e.headerRowSeparator=new Zn,e.headerSeparator=new qn,e.columnResizingSeparator=new Vn,e.columnMovingSeparator=new Rn,e.pinnedAreaSeparator=new Un,e.summaryRowRoot=new tr,e.summaryRowSection=new er,e.co=new zn,e.cp=new Nn,e.cy=new Fn,e.cy.grid=e,e.abf=e.abg,e.y7=e.y8,e.zd=I.a3,e.ax=new Zi(e.dl,e.autoGenerateColumns,i.runOn(e,e.vg));var n=e.ax.j;n.collectionChanged=i.delegateCombine(n.collectionChanged,i.runOn(e,e.t3)),e.e6=new Tn(e.ax),e.fq=new jr,e.fo=new Sr(e),e.fo.g=e.fq,e.ji=e.k2(),e.j2=e.k3(),e.f5=new jn(e,e.c5),e.ad=new xn(e,e.c5),e.ec.ag(i.runOn(e,e.yk)),e.eh.an(i.runOn(e,e.yl)),e.d8.an(i.runOn(e,e.yj));var r,o=e.d5;return o.collectionChanged=i.delegateCombine(o.collectionChanged,i.runOn(e,e.yi)),e.eb.ag(i.runOn(e,e.xn)),e.eg.an(i.runOn(e,e.xo)),e.b2=new vt,e.a2=new wt,e.b7=new pt,e.b2.m(i.runOn(e,e.yr)),e.a2.m(i.runOn(e,e.uy)),e.b7.m(i.runOn(e,e.yt)),e.t=new i.FilterExpressionCollection,e.t.n(i.runOn(e,e.uv)),e.f9=new kn(e),e.cj=new Ji(e,e.co),e.e1=new Pn(e),e.an=new S(3,-400,-102,1),e.b1=((r=new vt).i=!0,r),e.a3=function(){var t=new wt;return t.i=!0,t}(),e.b6=function(){var t=new pt;return t.i=!0,t}(),e.u=function(){var t=new i.FilterExpressionCollection;return t.shouldDetachOnTargetChange=!0,t}(),e.aa=new i.SortGroupParser,e.ab=new i.SummaryParser,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"externalObject",{get:function(){return this.op},set:function(t){this.op=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"propertySetter",{get:function(){return this._propertySetter},set:function(t){this._propertySetter=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"dragger",{get:function(){return this.fa},set:function(t){if(null!=this.fa){var e=this.fa;e.onDrag=i.delegateRemove(e.onDrag,i.runOn(this,this.wn));var n=this.fa;n.onDragEnd=i.delegateCombine(n.onDragEnd,i.runOn(this,this.wp))}this.fa=t;var r=this.fa;r.onDrag=i.delegateCombine(r.onDrag,i.runOn(this,this.wn));var o=this.fa;o.onDragEnd=i.delegateCombine(o.onDragEnd,i.runOn(this,this.wp))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnGrouping",{get:function(){return this.e4},set:function(t){this.e4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pager",{get:function(){return this._pager},set:function(t){this._pager=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbar",{get:function(){return this._toolbar},set:function(t){this._toolbar=t},enumerable:!1,configurable:!0}),n.prototype.v6=function(t){null!=this.columnExchangingAnimationCompleted&&this.columnExchangingAnimationCompleted(t.externalObject,new i.EventArgs)},n.prototype.v5=function(t){null!=this.columnExchangingAnimationCanceled&&this.columnExchangingAnimationCanceled(t.externalObject,new i.EventArgs)},n.prototype.o=function(t){var e=this.cf(t.l);return null==e?null:e.g1},n.prototype.q=function(t){var e=this.cf(t.l);return null==e||null==this.actualDataSource?11:this.actualDataSource.resolveSchemaPropertyType(e.lo)},n.prototype.wg=function(t){null!=this.columnShowingAnimationCompleted&&this.columnShowingAnimationCompleted(t.externalObject,new i.EventArgs)},n.prototype.ug=function(t,e){var n,r=this,o=this.cf(t.l);null!=o&&(i.Base.equalsStatic(o.g1,e)||(o.g1=e,null!=this.filterExpressionsChanging&&this.filterExpressionsChanging(this,((n=new dt).a=r.filterExpressions,n))))},n.prototype.uf=function(t,e){var n=this.cf(t.l);null!=n&&(i.Base.equalsStatic(n.g1,e)||(n.g1=e))},n.prototype.wf=function(t){null!=this.columnShowingAnimationCanceled&&this.columnShowingAnimationCanceled(t.externalObject,new i.EventArgs)},n.prototype.wc=function(t){null!=this.columnMovingAnimationCompleted&&this.columnMovingAnimationCompleted(t.externalObject,new i.EventArgs)},n.prototype.wb=function(t){null!=this.columnMovingAnimationCanceled&&this.columnMovingAnimationCanceled(t.externalObject,new i.EventArgs)},n.prototype.v8=function(t){null!=this.columnHidingAnimationCompleted&&this.columnHidingAnimationCompleted(t.externalObject,new i.EventArgs)},n.prototype.v7=function(t){null!=this.columnHidingAnimationCanceled&&this.columnHidingAnimationCanceled(t.externalObject,new i.EventArgs)},n.prototype.v0=function(t){var e,i=this;null!=this.cellPreviewPointerDown&&this.cellPreviewPointerDown(t,((e=new on).cellInfo=t,e.grid=i,e))},n.prototype.v1=function(t){var e,i=this;null!=this.cellPreviewPointerUp&&this.cellPreviewPointerUp(t,((e=new on).cellInfo=t,e.grid=i,e))},n.prototype.vy=function(t){var e,i=this;null!=this.cellPointerDown&&this.cellPointerDown(t,((e=new on).cellInfo=t,e.grid=i,e))},n.prototype.vz=function(t){var e,i=this;null!=this.cellPointerUp&&this.cellPointerUp(t,((e=new on).cellInfo=t,e.grid=i,e))},n.prototype.w8=function(t,e){this.u4(t)},n.prototype.wv=function(t){2==t.w&&this.y0(t.l.x)},n.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 i=this.actualDataSource.getRowLevel(t);t<this.model.bx.x&&this.scrollToRowByIndex(t-i)},n.prototype.wu=function(t){null!=t&&3!=this.editMode&&this.ja(!0)},n.prototype.vr=function(t,e){var i,n=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,((i=new on).cellInfo=t,i.grid=n,i.button=e,i.isDoubleClick=!0,i))},n.prototype.vp=function(t,e,i,n){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==n&&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==n){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 s=this.model.b9._inner[t.l.a5].n;if(1==this.selectionBehavior)if(e)this.xr(t.l.x,s);else if(i&&null!=this.at){var a=s,l=t.l.x;this.selectedCellRanges.remove(this.at),this.t5(Math.min(this.at.k,a),Math.max(this.at.k,a),Math.min(this.at.l,l),Math.max(this.at.l,l))}else this.xz(),this.t5(s,s,t.l.x,t.l.x);else 0==this.selectionBehavior&&this.xr(t.l.x,s)}}else this.f5.z(t,i,e,0==this.selectionBehavior);this.xh(),1==this.activationMode&&this.ad.aa(t)}null!=this.cellClicked&&this.cellClicked(t,((r=new on).cellInfo=t,r.grid=o,r.button=n,r.isDoubleClick=!1,r))},n.prototype.xr=function(t,e){for(var i=!1,n=0;n<this.selectedCellRanges.count;n++){var r=this.selectedCellRanges._inner[n];if(r.k==e&&r.i==e&&r.l==t&&r.j==t){this.x0(this.selectedCellRanges._inner[n]),i=!0;break}}i||this.t5(e,e,t,t)},Object.defineProperty(n.prototype,"columnResizingMode",{get:function(){return this.br},set:function(t){var e=this.br;this.br=t,e!=this.br&&this.w2("ColumnResizingMode",i.enumGetBox(kt,e),i.enumGetBox(kt,this.br))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnMovingMode",{get:function(){return this.bd},set:function(t){var e=this.bd;this.bd=t,e!=this.bd&&this.w2("ColumnMovingMode",i.enumGetBox(Tt,e),i.enumGetBox(Tt,this.bd))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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}),n.prototype.vw=function(t,e,n){if((this.ao=t.l.ab(),this.abb={$type:i.Point_$type,x:e,y:n},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,n);this.og=i.truncate(o.x+this.mc)-i.intDivide(this.columnResizingSeparatorWidth,2),this.ly=-1,this.externalGrid.setResizeCursor(),this.dragger.dragStart(e,n,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,1,this.ao,!1),0==this.columnResizingMode&&this.refresh()}},n.prototype.vx=function(t,e,i){this.ao=null},n.prototype.vv=function(t,e,i){for(var n=0,r=0;r<this.model.b9.count;r++){n+=this.model.b9._inner[r].k}var o=this.dragger.view.transformPoint(e,i);(null==this.dragger||!this.dragger.isDragActive)&&o.x>=n&&this.externalGrid.setDefaultCursor(),this.isRowHoverEnabled&&this.e1.f(-1)},n.prototype.w0=function(t,e,i,n){},n.prototype.w1=function(t,e,i,n){},Object.defineProperty(n.prototype,"oe",{get:function(){return this.m5},set:function(t){this.m5=t,this.jc=!0},enumerable:!1,configurable:!0}),n.prototype.vu=function(t,e,i){if(this.isRowHoverEnabled){var n=!1,r=-1;t.l.aj||t.l.ay||t.l.ak?(n=!0,r=t.l.x,t.l.ak&&this.cj.j&&(r=this.cj.r)):(t.l.g||t.l.j)&&(n=!0),n&&(this.le?this.oe=r:this.e1.f(r))}},n.prototype.wz=function(t,e,i){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()},n.prototype.ub=function(){-1!=this.nd&&(this.g8.teardownTicking(this.nd),this.nd=-1)},n.prototype.wt=function(t,e,i,n){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?(n||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,i,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,0,t,n)):2==this.selectionMode&&this.mouseDragSelectionEnabled&&(t.aj||t.ay&&!t.g)&&(n||(this.je=!0,this.selectedKeys.clear(),this.selectedItems.clear(),this.je=!1,this.t8(),this.f5.a2(),this.ur()),this.hj=n,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,i,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,3,t,n));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,i,this.model.actualVisibleRegion.x,this.model.actualVisibleRegion.y,2,t,n)}},n.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 i=this.model.b9._inner[this.dragger.cellPath.a5];this.c5.ah(this,this.columnAnimationSettings,i,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 n=!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")),n=!1;n&&this.refresh()}this.nk=-1}}else 3==this.dragger.dragType?(this.xh(),this.deferEventForRowDragSelection&&this.ur()):0==this.dragger.dragType&&this.xh()},n.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(n.prototype,"og",{get:function(){return this.m9},set:function(t){this.m9!=t&&(this.m9=t)},enumerable:!1,configurable:!0}),n.prototype.wo=function(t){var e=this;if(null!=this.dragger){var n=this.l4+this.model.actualVisibleRegion.x;if(t||!this.i1(n,NaN)){var r=this.dragger.cellPath.a5,o=this.og;this.fn=0;for(var s=0;s<this.model.b9.count;s++){var a=this.model.b9._inner[s];if(3!=a.a){var l=a.l;1==a.d&&(l=a.l+this.model.actualVisibleRegion.x);var u=l+a.k,h=l+i.intDivide(a.k,2);if(0==a.n&&n<l||n>l&&n<=h){o=l,s!=r&&(r=s<this.dragger.cellPath.a5?s:s-1),1!=a.d&&o<this.model.actualVisibleRegion.x+this.model.cz&&(o=this.model.actualVisibleRegion.x+this.model.cz),this.fn=a.d;break}if(n>h&&n<u||s==this.model.b9.count-1&&n>u){o=u-this.columnMovingSeparatorWidth,s!=r&&(r=s<this.dragger.cellPath.a5?s+1:s),this.fn=a.d;break}}}if(o!=this.og){var c=this.og;this.og=i.truncate(o),-1==c?(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}}}},n.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 n=this.l4+this.model.actualVisibleRegion.x-this.l2,r=i.isNaN_(e.j0)?0:e.j0;this.ly=Math.max(this.mb+n,Math.max(r,10));var o,s=20;if(1==e.il){s=Math.min(20,this.actualVisibleRegion.width-this.model.cz);var a=this.actualVisibleRegion.width-s-this.model.c0,l=this.l8+(this.ly-this.mb);l>a&&(this.ly=this.ly-(l-a))}else if(2==e.il){s=Math.min(20,this.actualVisibleRegion.width-this.model.c0);var u=this.actualVisibleRegion.width-s-this.model.cz,h=this.l9+(this.ly-this.mb);h>u&&(this.ly=this.ly-(h-u))}if(0==this.columnResizingMode)this.og=i.truncate(this.l2-this.mb+this.ly)-i.intDivide(this.columnResizingSeparatorWidth,2),null!=this.ak&&(this.ak.cu=this.og,this.renderingEngine.refresh(this.model,!1));else{var c=((o=new Rt).f=t.ly,o.c=!1,o);i.isNaN_(e.j0)||(c.e=e.j0),e.width=c}},n.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,i=this.abd(e,this.l3,this.l4,this.l5),n=this.au(i,this.nj,this.ni,this.ir);this.yh(n)}},n.prototype.yh=function(t){null==this.as?(this.as=t,this.t4(this.as)):this.y5(t)},n.prototype.ws=function(t,e){if(t||!this.i1(this.l4+this.model.actualVisibleRegion.x,this.l5+this.model.actualVisibleRegion.y)){var i=this.l4+this.model.actualVisibleRegion.x,n=this.abd(i,this.l3,this.l4,this.l5),r=this.au(n,this.nj,0,this.ir);this.ym(r.l,r.j)}},n.prototype.ym=function(t,e){for(var i=t;i<=e;i++)if(!this.lo.contains(i)&&!this.lp.contains(i)){var n=this.e7.getRowKey(this.i(),i);if(null!=n){if(this.f5.n(n)){this.lo.add(i);continue}this.lp.add(i),this.selectedKeys.add(n),this.f5.as(i)}}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 s=this.selectedKeys.indexOf(o),a=this.selectedItems._inner[s];this.selectedKeys.remove(o),this.ll.remove(o),this.ln.remove(o),this.lk.remove1(a),this.lm.remove1(a)}}},n.prototype.abd=function(t,e,n,r){return n+=this.model.actualVisibleRegion.x,r+=this.model.actualVisibleRegion.y,new i.Rect(0,Math.min(t,n),Math.min(e,r),Math.abs(n-t),Math.abs(r-e))},n.prototype.getHitCell=function(t,e){return null==this.gk?null:this.gk.f(t,e)},n.prototype.au=function(t,e,n,r){var o=this.model.at.q,s=this.model.a9.q,a=this.model.bd.q,l=this.model.av.q,u=new i.List$1(Ei.$,1,s);u.o(o),u.o(a),u.o(l);for(var h=e,c=n,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 i.Rect(0,f.cu,f.cv,f.hd,f.fu);if(t.intersectsWith(m)){var g=this.model.b9._inner[f.l.a5].n,b=Math.abs(f.l.x-e),y=Math.abs(Math.max(0,g)-n),v=Math.abs(h-e),C=Math.abs(c-n);b>v&&(h=f.l.x),y>C&&!f.l.a0&&(c=g)}}}var _=new ge;return _.k=Math.min(n,c),_.i=Math.max(n,c),_.l=Math.min(e,h),_.j=Math.max(e,h),_},n.prototype.i1=function(t,e){var n=new i.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&&!i.isNaN_(e))if(e>n.bottom){var r=e-n.bottom;this.me=Math.min(5*r,1e3),this.ib=!0}else if(e<n.top){var o=n.top-e;this.me=-Math.min(5*o,1e3),this.ib=!0}else this.me=0,this.ib=!1;if(t>n.right){var s=t-n.right;this.l7=Math.min(5*s,1e3),this.ia=!0}else if(t<n.left){var a=n.left-t;this.l7=-Math.min(5*a,1e3),this.ia=!0}else this.l7=0,this.ia=!1;return(this.ib||this.ia)&&-1==this.nd&&(this.lt=i.dateNow(),this.nd=this.g8.setupTicking(i.runOn(this,this.uo)),this.g8.requestFrame(this.nd)),this.ib||this.ia||this.ub(),this.ia||this.ib},n.prototype.uo=function(){if(null!=this.dragger){var t=i.dateNow(),e=i.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(i.truncate(this.mc),i.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)}},n.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))},n.prototype.x7=function(t){null!=this.actualDataSource&&null!=this.actualDataSource.actualSchema&&(t.m=this.actualDataSource.resolveSchemaPropertyType(t.f),t.o=!0)},n.prototype.x8=function(t){null!=this.actualDataSource&&null!=this.actualDataSource.actualSchema&&(t.g=this.actualDataSource.resolveSchemaPropertyType(t.ah),t.s=!0)},n.prototype.yt=function(t,e){var i,n=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,((i=new gt).summaryDescriptions=n.summaryDescriptions,i))},n.prototype.uy=function(t,e){var i,n=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,((i=new mt).groupDescriptions=n.groupDescriptions,i))},n.prototype.uv=function(t,e){var i,n=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 s=0;s<this.actualColumns.count;s++)this.actualColumns._inner[s].g1=null,this.actualColumns._inner[s].g3=null}null!=this.filterExpressionsChanged&&this.filterExpressionsChanged(this,((i=new dt).a=n.filterExpressions,i))},n.prototype.yr=function(t,n){var r,o,s,a=this;this.j3=!0;try{switch(n.action){case 0:if(null!=n.newItems)for(var l=0;l<n.newItems.count;l++){var u=n.newItems.item(l);this.yz(u.f,this.b5(u.c))}break;case 1:if(null!=n.oldItems)for(var h=0;h<n.oldItems.count;h++){var c=n.oldItems.item(h);this.yz(c.f,0)}break;case 2:if(null!=n.oldItems)for(var p=0;p<n.oldItems.count;p++){var d=n.oldItems.item(p);this.yz(d.f,0)}if(null!=n.newItems)for(var f=0;f<n.newItems.count;f++){var m=n.newItems.item(f);this.yz(m.f,this.b5(m.c))}break;case 4:try{for(var g=e.__values(i.fromEnum(this.columns)),b=g.next();!b.done;b=g.next()){b.value.hr=0}}catch(t){r={error:t}}finally{try{b&&!b.done&&(o=g.return)&&o.call(g)}finally{if(r)throw r.error}}}null!=this.sortDescriptionsChanged&&this.sortDescriptionsChanged(this,((s=new ft).sortDescriptions=a.sortDescriptions,s))}finally{this.j3=!1}},n.prototype.yz=function(t,e){for(var i=0;i<this.columns.count;i++)this.columns._inner[i].lo==t&&(this.columns._inner[i].hr=e)},n.prototype.b5=function(t){switch(t){case 0:return 1;case 1:return 2}return 0},n.prototype.yk=function(t,n){var r,o,s,a,l,u,h,c=this;if(this.ik=!0,!this.je&&null!=this.actualDataSource&&!this.iu){switch(this.iu=!0,n.action){case 0:if(null!=n.newItems)for(var p=0;p<n.newItems.count;p++){var d=this.e7.getItemKey(this.i(),n.newItems.item(p));this.selectedKeys.ae.insert(p+n.newStartingIndex,d)}break;case 1:if(null!=n.oldItems)for(var f=0;f<n.oldItems.count;f++)this.selectedKeys.ae.removeAt(n.oldStartingIndex);break;case 2:if(null!=n.oldItems)for(var m=0;m<n.oldItems.count;m++)this.selectedKeys.ae.removeAt(n.oldStartingIndex);if(null!=n.newItems)for(var g=0;g<n.newItems.count;g++){var b=this.e7.getItemKey(this.i(),n.newItems.item(g));this.selectedKeys.ae.insert(g+n.newStartingIndex,b)}break;case 4:this.selectedKeys.clear();try{for(var y=e.__values(i.fromEnum(this.selectedItems.ae)),v=y.next();!v.done;v=y.next()){var C=v.value,_=this.e7.getItemKey(this.i(),C);this.selectedKeys.add(_)}}catch(t){r={error:t}}finally{try{v&&!v.done&&(o=y.return)&&o.call(y)}finally{if(r)throw r.error}}}this.f5.a2(),this.iu=!1}if(this.notifyOnAllSelectionChanges&&null!=this.selectedItemsChanged){var w=null;if(null!=n.newItems&&n.newItems.count>0){w=new de;try{for(var S=e.__values(i.fromEn(n.newItems)),P=S.next();!P.done;P=S.next()){var O=P.value;w.add1(O)}}catch(t){s={error:t}}finally{try{P&&!P.done&&(a=S.return)&&a.call(S)}finally{if(s)throw s.error}}}var x=null;if(null!=n.oldItems&&n.oldItems.count>0){x=new de;try{for(var j=e.__values(i.fromEn(n.oldItems)),k=j.next();!k.done;k=j.next()){var I=k.value;x.add1(I)}}catch(t){l={error:t}}finally{try{k&&!k.done&&(u=j.return)&&u.call(j)}finally{if(l)throw l.error}}}this.selectedItemsChanged(this,((h=new Be).addedItems=w,h.removedItems=x,h.currentItems=c.selectedItems,h))}},n.prototype.yl=function(t,n){var r,o,s,a,l,u,h,c=this;if(!this.je&&null!=this.actualDataSource&&!this.iu){switch(this.iu=!0,n.action){case 0:if(null!=n.newItems)for(var p=0;p<n.newItems.count;p++){var d=this.e7.getItemForKey(n.newItems.item(p));this.selectedItems.ae.insert1(p+n.newStartingIndex,d)}break;case 1:if(null!=n.oldItems)for(var f=0;f<n.oldItems.count;f++)this.selectedItems.ae.removeAt(n.oldStartingIndex);break;case 2:if(null!=n.oldItems)for(var m=0;m<n.oldItems.count;m++)this.selectedItems.ae.removeAt(n.oldStartingIndex);if(null!=n.newItems)for(var g=0;g<n.newItems.count;g++){var b=this.e7.getItemForKey(n.newItems.item(g));this.selectedItems.ae.insert1(g+n.newStartingIndex,b)}break;case 4:this.selectedItems.clear();try{for(var y=e.__values(i.fromEnum(this.selectedKeys.ae)),v=y.next();!v.done;v=y.next()){var C=v.value,_=this.e7.getItemForKey(C);this.selectedItems.add1(_)}}catch(t){r={error:t}}finally{try{v&&!v.done&&(o=y.return)&&o.call(y)}finally{if(r)throw r.error}}}this.f5.a2(),this.iu=!1}if(this.notifyOnAllSelectionChanges&&null!=this.selectedKeysChanged){var w=null;if(null!=n.newItems&&n.newItems.count>0){(w=new me).ag=!1;try{for(var S=e.__values(i.fromEn(n.newItems)),P=S.next();!P.done;P=S.next()){var O=P.value;w.add(O)}}catch(t){s={error:t}}finally{try{P&&!P.done&&(a=S.return)&&a.call(S)}finally{if(s)throw s.error}}}var x=null;if(null!=n.oldItems&&n.oldItems.count>0){(x=new me).ag=!1;try{for(var j=e.__values(i.fromEn(n.oldItems)),k=j.next();!k.done;k=j.next()){var I=k.value;x.add(I)}}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 De).addedKeys=w,h.removedKeys=x,h.currentKeys=c.selectedKeys,h))}},n.prototype.yj=function(t,n){var r,o,s,a,l,u=this;switch(this.ik=!0,n.action){case 0:case 2:for(var h=0;h<n.newItems.count;h++)i.typeCast(yn.$,n.newItems.item(h)).d=this}if(this.je||(this.iw=!0,this.f5.a1(),this.iw=!1),this.notifyOnAllSelectionChanges){var c=null;if(null!=n.newItems&&n.newItems.count>0){c=new vn;try{for(var p=e.__values(i.fromEn(n.newItems)),d=p.next();!d.done;d=p.next()){var f=d.value;c.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!=n.oldItems&&n.oldItems.count>0){m=new vn;try{for(var g=e.__values(i.fromEn(n.oldItems)),b=g.next();!b.done;b=g.next()){var y=b.value;m.add(y)}}catch(t){s={error:t}}finally{try{b&&!b.done&&(a=g.return)&&a.call(g)}finally{if(s)throw s.error}}}null!=this.selectedCellsChanged&&this.selectedCellsChanged(this,((l=new rn).addedCells=c,l.removedCells=m,l.currentCells=u.selectedCells,l))}},n.prototype.yi=function(t,e){var i,n=this;this.ik=!0,this.iw=!0,this.f5.a0(),this.iw=!1,this.notifyOnAllSelectionChanges&&null!=this.selectedCellRangesChanged&&this.selectedCellRangesChanged(this,((i=new $e).currentRanges=n.selectedCellRanges,i))},n.prototype.xn=function(t,n){var r,o;if(!this.jd&&null!=this.actualDataSource&&!this.it){switch(this.it=!0,n.action){case 0:if(null!=n.newItems)for(var s=0;s<n.newItems.count;s++){var a=this.e7.getItemKey(this.i(),n.newItems.item(s));this.pinnedKeys.ae.insert(s+n.newStartingIndex,a),this.e7.pinRow(a)}break;case 1:if(null!=n.oldItems)for(var l=0;l<n.oldItems.count;l++)this.e7.unpinRow(this.pinnedKeys.ae._inner[n.oldStartingIndex]),this.pinnedKeys.ae.removeAt(n.oldStartingIndex);break;case 2:if(null!=n.oldItems)for(var u=0;u<n.oldItems.count;u++)this.e7.unpinRow(this.pinnedKeys.ae._inner[n.oldStartingIndex]),this.pinnedKeys.ae.removeAt(n.oldStartingIndex);if(null!=n.newItems)for(var h=0;h<n.newItems.count;h++){var c=this.e7.getItemKey(this.i(),n.newItems.item(h));this.pinnedKeys.ae.insert(h+n.newStartingIndex,c),this.e7.pinRow(c)}break;case 4:this.pinnedKeys.clear(),this.e7.clearPinnedRows();try{for(var p=e.__values(i.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}},n.prototype.xo=function(t,n){var r,o;if(!this.jd&&null!=this.actualDataSource&&!this.it){switch(this.it=!0,n.action){case 0:if(null!=n.newItems)for(var s=0;s<n.newItems.count;s++){var a=this.e7.getItemForKey(n.newItems.item(s));this.pinnedItems.ae.insert1(s+n.newStartingIndex,a),this.e7.pinRow(n.newItems.item(s))}break;case 1:if(null!=n.oldItems)for(var l=0;l<n.oldItems.count;l++)this.e7.unpinRow(n.oldItems.item(l)),this.pinnedItems.ae.removeAt(n.oldStartingIndex);break;case 2:if(null!=n.oldItems)for(var u=0;u<n.oldItems.count;u++)this.e7.unpinRow(n.oldItems.item(u)),this.pinnedItems.ae.removeAt(n.oldStartingIndex);if(null!=n.newItems)for(var h=0;h<n.newItems.count;h++){var c=this.e7.getItemForKey(n.newItems.item(h));this.e7.indexOfKey(n.newItems.item(h));this.pinnedItems.ae.insert1(h+n.newStartingIndex,c),this.e7.pinRow(n.newItems.item(h))}break;case 4:this.pinnedItems.clear(),this.e7.clearPinnedRows();try{for(var p=e.__values(i.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(n.prototype,"c5",{get:function(){return this.c4},set:function(t){this.c4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"delayedExecutionManager",{get:function(){return this._delayedExecutionManager},set:function(t){this._delayedExecutionManager=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"fp",{get:function(){return this.fo},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e7",{get:function(){return this.e6},set:function(t){this.e6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ay",{get:function(){return this.ax},set:function(t){this.ax=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d1",{get:function(){return this.d0},set:function(t){this.d0=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"gb",{get:function(){return this.ga},set:function(t){this.ga=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dw",{get:function(){return this.dv},set:function(t){this.dv=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"f5",{get:function(){return this.f4},set:function(t){this.f4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ad",{get:function(){return this.ac},set:function(t){this.ac=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"f9",{get:function(){return this.f8},set:function(t){this.f8=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"tickProvider",{get:function(){return this.g8},set:function(t){this.g8=t,this.dv=new fr(this.g8,this)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sectionHeader",{get:function(){return this.f2},set:function(t){var e=this.f2;this.f2=t,null==this.f2&&(this.f2=new Qn),this.f2.grid=this,e!=this.f2&&this.w2("SectionHeader",e,this.f2)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"f1",{get:function(){return this.f0},set:function(t){this.f0=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRowRoot",{get:function(){return this.gc},set:function(t){var e=this.gc;this.gc=t,null==this.gc&&(this.gc=new tr),this.gc.grid=this,e!=this.gc&&this.w2("SummaryRowRoot",e,this.gc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRowSection",{get:function(){return this.ge},set:function(t){var e=this.ge;this.ge=t,null==this.ge&&(this.ge=new er),this.ge.grid=this,e!=this.ge&&this.w2("SummaryRowSection",e,this.ge)},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"gj",{get:function(){return this.gi},set:function(t){this.gi=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"viewportManager",{get:function(){return this._viewportManager},set:function(t){this._viewportManager=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mg",{get:function(){return this.lx},set:function(t){this.lx=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mf",{get:function(){return this.lw},set:function(t){this.lw=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"density",{get:function(){return this.go},set:function(t){var e=this.go;this.go=t,e!=this.go&&this.w2("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.go))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"headerClickAction",{get:function(){return this.ev},set:function(t){var e=this.ev;this.ev=t,e!=this.ev&&(this.w2("HeaderClickAction",i.enumGetBox(Et,e),i.enumGetBox(Et,this.ev)),0!=this.ev&&2!=this.ev||1!=e&&3!=e||this.f9.h())},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editMode",{get:function(){return this.cm},set:function(t){var e=this.cm;this.cm=t,e!=this.cm&&this.w2("EditMode",i.enumGetBox(v,e),i.enumGetBox(v,this.cm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editModeClickAction",{get:function(){return this.ck},set:function(t){var e=this.ck;this.ck=t,e!=this.ck&&this.w2("EditModeClickAction",i.enumGetBox(Dt,e),i.enumGetBox(Dt,this.ck))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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}),n.prototype.jj=function(t){return 1!=this.bz(t)&&this.jk},n.prototype.bz=function(t){return 0==this.bv?t.hp():this.bv},Object.defineProperty(n.prototype,"columnAddingAnimationMode",{get:function(){return this.bv},set:function(t){var e=this.bv;this.bv=t,this.w2("ColumnAddingAnimationMode",i.enumGetBox(Mt,e),i.enumGetBox(Mt,this.bv))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"jr",{get:function(){return 1!=this.bm&&this.jk},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnPropertyUpdatingAnimationMode",{get:function(){return this.bm},set:function(t){var e=this.bm;this.bm=t,this.w2("ColumnPropertyUpdatingAnimationMode",i.enumGetBox(Nt,e),i.enumGetBox(Nt,this.bm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"jk",{get:function(){return this.renderingEngine.initialRefreshFinished},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"jg",{get:function(){return 1!=this.ag},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellDataLoadedAnimationMode",{get:function(){return this.ag},set:function(t){var e=this.ag;this.ag=t,this.w2("CellDataLoadedAnimationMode",i.enumGetBox(Gt,e),i.enumGetBox(Gt,this.ag))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"kd",{get:function(){return 1!=this.fv},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSelectionAnimationMode",{get:function(){return this.fv},set:function(t){var e=this.fv;this.fv=t,this.w2("RowSelectionAnimationMode",i.enumGetBox(qt,e),i.enumGetBox(qt,this.fv))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"kb",{get:function(){return 1!=this.fs},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowHoverAnimationMode",{get:function(){return this.fs},set:function(t){var e=this.fs;this.fs=t,e!=this.fs&&this.w2("RowHoverAnimationMode",i.enumGetBox(Ht,e),i.enumGetBox(Ht,this.fs))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"jh",{get:function(){return 1!=this.av},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellSelectionAnimationMode",{get:function(){return this.av},set:function(t){var e=this.av;this.av=t,this.w2("CellSelectionAnimationMode",i.enumGetBox(Ut,e),i.enumGetBox(Ut,this.av))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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}),n.prototype.js=function(t){return 1!=this.bq(t)&&this.jk},n.prototype.bq=function(t){return 0==this.bo?t.ho():this.bo},Object.defineProperty(n.prototype,"columnResizingAnimationMode",{get:function(){return this.bo},set:function(t){var e=this.bo;this.bo=t,this.w2("ColumnResizingAnimationMode",i.enumGetBox(te,e),i.enumGetBox(te,this.bo))},enumerable:!1,configurable:!0}),n.prototype.jt=function(t){return 1!=this.b0(t)&&this.jk},n.prototype.b0=function(t){return 0==this.bw?t.hp():this.bw},Object.defineProperty(n.prototype,"columnShowingAnimationMode",{get:function(){return this.bw},set:function(t){var e=this.bw;this.bw=t,this.w2("ColumnShowingAnimationMode",i.enumGetBox(Mt,e),i.enumGetBox(Mt,this.bw))},enumerable:!1,configurable:!0}),n.prototype.jn=function(t){return 1!=this.bc(t)&&this.jk&&!this.ld},n.prototype.bc=function(t){return 0==this.ba?2:this.ba},Object.defineProperty(n.prototype,"columnMovingAnimationMode",{get:function(){return this.ba},set:function(t){var e=this.ba;this.ba=t,this.w2("ColumnMovingAnimationMode",i.enumGetBox(ie,e),i.enumGetBox(ie,this.ba))},enumerable:!1,configurable:!0}),n.prototype.jm=function(t){return 1!=this.a9(t)&&this.jk},n.prototype.a9=function(t){return 0==this.a7?t.hf():this.a7},Object.defineProperty(n.prototype,"columnHidingAnimationMode",{get:function(){return this.a7},set:function(t){var e=this.a7;this.a7=t,this.w2("ColumnHidingAnimationMode",i.enumGetBox(re,e),i.enumGetBox(re,this.a7))},enumerable:!1,configurable:!0}),n.prototype.jl=function(t){return 1!=this.a1(t)&&this.jk},n.prototype.a1=function(t){return 0==this.az?t.he():this.az},Object.defineProperty(n.prototype,"columnExchangingAnimationMode",{get:function(){return this.az},set:function(t){var e=this.az;this.az=t,this.w2("ColumnExchangingAnimationMode",i.enumGetBox(se,e),i.enumGetBox(se,this.az))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"selectionMode",{get:function(){return this.cg},set:function(t){var e=this.cg;this.cg=t,e!=this.cg&&this.w2("SelectionMode",i.enumGetBox(le,e),i.enumGetBox(le,this.cg))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activationMode",{get:function(){return this.c1},set:function(t){var e=this.c1;this.c1=t,e!=this.c1&&this.w2("ActivationMode",i.enumGetBox(he,e),i.enumGetBox(he,this.c1))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectionBehavior",{get:function(){return this.ek},set:function(t){var e=this.ek;this.ek=t,e!=this.ek&&this.w2("SelectionBehavior",i.enumGetBox(pe,e),i.enumGetBox(pe,this.ek))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mouseDragSelectionEnabled",{get:function(){return this.h9},set:function(t){this.h9=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"je",{get:function(){return this.ho},set:function(t){this.ho=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedItems",{get:function(){return this.ec},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedKeys",{get:function(){return this.eh},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedCells",{get:function(){return this.d8},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedCellRanges",{get:function(){return this.d5},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"jd",{get:function(){return this.hn},set:function(t){this.hn=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedItems",{get:function(){return this.eb},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedKeys",{get:function(){return this.eg},enumerable:!1,configurable:!0}),n.prototype.yv=function(t,n){var r,o,s,a,l,u;if(null!=this.actualDataSource)if(t.ae.count>0&&0==n.ae.count){var h=this.i();try{for(var c=e.__values(i.fromEnum(t.ae)),p=c.next();!p.done;p=c.next()){var d=p.value,f=this.e7.getItemKey(h,d);n.ae.add(f)}}catch(t){r={error:t}}finally{try{p&&!p.done&&(o=c.return)&&o.call(c)}finally{if(r)throw r.error}}}else if(0==t.ae.count&&n.ae.count>0)try{for(var m=e.__values(i.fromEnum(n.ae)),g=m.next();!g.done;g=m.next()){var b=g.value,y=this.e7.getItemForKey(b);t.ae.add1(y)}}catch(t){s={error:t}}finally{try{g&&!g.done&&(a=m.return)&&a.call(m)}finally{if(s)throw s.error}}else{t.ae.clear();try{for(var v=e.__values(i.fromEnum(n.ae)),C=v.next();!C.done;C=v.next()){var _=C.value,w=this.e7.getItemForKey(_);t.ae.add1(w)}}catch(t){l={error:t}}finally{try{C&&!C.done&&(u=v.return)&&u.call(v)}finally{if(l)throw l.error}}}},Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"headerSortIndicatorStyle",{get:function(){return this.f6},set:function(t){var e=this.f6;this.f6=t,e!=this.f6&&this.w2("HeaderSortIndicatorStyle",i.enumGetBox(s,e),i.enumGetBox(s,this.f6))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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}),n.prototype.nn=function(t){var e=Math.max(3-t,0);return e%2==1&&(e+=1),i.intDivide(e,2)},Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"columnOptionsIconAlignment",{get:function(){return this.bh},set:function(t){var e=this.bh;this.bh=t,e!=this.bh&&this.w2("ColumnOptionsIconAlignment",i.enumGetBox(et,e),i.enumGetBox(et,this.bh))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"columnOptionsIconBehavior",{get:function(){return this.bj},set:function(t){var e=this.bj;this.bj=t,e!=this.bj&&this.w2("ColumnOptionsIconBehavior",i.enumGetBox(nt,e),i.enumGetBox(nt,this.bj))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"platformPixelConverter",{get:function(){return this.g6},set:function(t){this.g6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"renderingEngine",{get:function(){return this.e2},set:function(t){this.e2=t,this.w4(this.e2)},enumerable:!1,configurable:!0}),n.prototype.w4=function(t){null!=t&&t.refresh(this.model,!1)},Object.defineProperty(n.prototype,"responsiveStates",{get:function(){return this.fq},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"model",{get:function(){return this.gk},set:function(t){this.gk=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualVisibleRegion",{get:function(){return new i.Rect(0,this.gk.cm,this.gk.cr,this.gk.cs,this.gk.ch)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSortDescriptions",{get:function(){return this.b1},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialGroupDescriptions",{get:function(){return this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSummaryDescriptions",{get:function(){return this.b6},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSorts",{get:function(){return this.o1},set:function(t){var e=this,i=this.o1;this.o1=t,i!=t&&(this.b1.n(),this.aa.b(this.o1,(function(t,i,n){return e.b1.j.add(new yt(2,t,i))})))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialGroups",{get:function(){return this.o0},set:function(t){var e=this,i=this.o0;this.o0=t,i!=t&&(this.a3.n(),this.aa.b(this.o0,(function(t,i,n){return e.a3.j.add(((r=new _t(2,t,i)).v=n,r));var r})))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSummaries",{get:function(){return this.o2},set:function(t){var e=this,i=this.o2;this.o2=t,i!=t&&(this.b6.j.clear(),this.ab.a(this.o2,(function(t,i,n){return e.b6.j.add(new ct(2,t,i))})))},enumerable:!1,configurable:!0}),n.prototype.u3=function(t,e){this.b6.j.clear();for(var n=e.split(","),r=0;r<n.length;r++){var o=n[r].trim().split("(");if(2!=o.length)throw new i.ArgumentException(1,"Invalid syntax provided for initial summaries");var s=4;switch(o[0].toLowerCase()){case"avg":s=3;break;case"sum":s=2;break;case"min":s=0;break;case"max":s=1;break;case"count":s=4}o[1]=i.stringReplace(o[1],")",""),this.b6.j.add(new ct(2,o[1],s))}},n.prototype.jb=function(t,e){if(null==t||null==e)return!1;if(t.length!=e.length)return!1;for(var i=0;i<t.length;i++)if(t[i]!=e[i])return!1;return!0},Object.defineProperty(n.prototype,"sortDescriptions",{get:function(){return this.b2},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"groupDescriptions",{get:function(){return this.a2},enumerable:!1,configurable:!0}),n.prototype.wd=function(t,e){var i;null!=this.columnPinnedChanged&&this.columnPinnedChanged(this,((i=new an).a=t,i.b=e,i))},Object.defineProperty(n.prototype,"filterExpressions",{get:function(){return this.t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryDescriptions",{get:function(){return this.b7},enumerable:!1,configurable:!0}),Object.defineProperty(n.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",i.enumGetBox(st,e),i.enumGetBox(st,this.gg))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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",i.enumGetBox(lt,e),i.enumGetBox(lt,this.er))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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",i.enumGetBox(A,e),i.enumGetBox(A,this.et))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"autoAcceptEdits",{get:function(){return this.hf},set:function(t){this.hf=t},enumerable:!1,configurable:!0}),n.prototype.w2=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.xp(t,e,n),null!=this.postPropertyChanged&&this.postPropertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.x6=function(){},n.prototype.xu=function(){var t=this;if(0!=this.lx){var e=this.model.absoluteWidth,n=this.model.absoluteHeight;this.k1=!0,this.gb.r(this,this.model,i.truncate(this.mg)),e==this.model.absoluteWidth&&n==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)}},n.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))},n.prototype.vm=function(){null!=this.calculateCompleted&&this.calculateCompleted(this,null)},n.prototype.ux=function(){this.hp&&(this.hp=!1,this.xu(),this.invalidateVisibleRows())},Object.defineProperty(n.prototype,"k1",{get:function(){return this.ij},set:function(t){this.ij=t},enumerable:!1,configurable:!0}),n.prototype.refresh=function(){var t=this;this.ij||(this.renderingEngine.invalidateVisibility((function(){return t.gj.t(t)})),this.renderingEngine.refresh(this.model,!1))},n.prototype.flush=function(){null!=this.actualDataSource&&this.actualDataSource.flushAutoRefresh(),this.dw.an(!0),this.renderingEngine.refresh(this.model,!0)},Object.defineProperty(n.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(n.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(n.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(n.prototype,"ix",{get:function(){return this.hb},set:function(t){this.hb=t},enumerable:!1,configurable:!0}),n.prototype.xp=function(t,e,n){var r=this;if("ItemsSource"==t){if(null!=this.w){var o=this.w;o.schemaChanged=i.delegateRemove(o.schemaChanged,i.runOn(this,this.um));var s=this.w;if(s.rootSummariesChanged=i.delegateRemove(s.rootSummariesChanged,i.runOn(this,this.ul)),null!=this.y){var a=this.y;a.dataCommitted=i.delegateRemove(a.dataCommitted,i.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!==i.typeCast(i.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=i.typeCast(i.IEditableDataSource_$type,this.actualDataSource);var u=this.w;u.schemaChanged=i.delegateCombine(u.schemaChanged,i.runOn(this,this.um));var h=this.w;if(h.rootSummariesChanged=i.delegateCombine(h.rootSummariesChanged,i.runOn(this,this.ul)),null!=this.y){var c=this.y;c.dataCommitted=i.delegateCombine(c.dataCommitted,i.runOn(this,this.uk))}this.w.updateNotifier=new Yi(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=n;null!=m&&(m.definitionPropertyUpdated=i.delegateRemove(m.definitionPropertyUpdated,i.runOn(this,this.ui)),m.grid=null),null!=g&&(g.definitionPropertyUpdated=i.delegateCombine(g.definitionPropertyUpdated,i.runOn(this,this.ui)),g.grid=this)}if("RowSeparator"==t){var y=e,v=n;null!=y&&(y.definitionPropertyUpdated=i.delegateRemove(y.definitionPropertyUpdated,i.runOn(this,this.ya)),y.grid=null),null!=v&&(v.definitionPropertyUpdated=i.delegateCombine(v.definitionPropertyUpdated,i.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,_=n;null!=C&&(C.definitionPropertyUpdated=i.delegateRemove(C.definitionPropertyUpdated,i.runOn(this,this.uz)),C.grid=null),null!=_&&(_.definitionPropertyUpdated=i.delegateCombine(_.definitionPropertyUpdated,i.runOn(this,this.uz)),_.grid=this)}if("HeaderSeparator"==t){var w=e,S=n;null!=w&&(w.definitionPropertyUpdated=i.delegateRemove(w.definitionPropertyUpdated,i.runOn(this,this.u0)),w.grid=null),null!=S&&(S.definitionPropertyUpdated=i.delegateCombine(S.definitionPropertyUpdated,i.runOn(this,this.u0)),S.grid=this)}if("ColumnResizingSeparator"==t){var P=n;null!=e&&(e.grid=null),null!=P&&(P.grid=this)}if("ColumnMovingSeparator"==t){var O=n;null!=e&&(e.grid=null),null!=O&&(O.grid=this)}if("DataSourceDesiredProperties"==t&&null!=this.w&&(this.w.propertiesRequested=this.dataSourceDesiredProperties),"PrimaryKey"==t&&(null!=this.actualDataSource&&null!=this.primaryKey&&(this.actualDataSource.primaryKey=n),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 x=i.typeCast(Qn.$,e);x.sectionHeaderPropertyUpdating=i.delegateRemove(x.sectionHeaderPropertyUpdating,i.runOn(this,this.xb)),x.grid=null}if(null!=this.sectionHeader){var j=this.sectionHeader;j.sectionHeaderPropertyUpdating=i.delegateCombine(j.sectionHeaderPropertyUpdating,i.runOn(this,this.xb)),this.sectionHeader.grid=this}this.model.b5=!0,this.xu()}if("PinnedAreaSeparator"==t){if(null!=e)i.typeCast(Un.$,e).grid=null;null!=this.pinnedAreaSeparator&&(this.pinnedAreaSeparator.grid=this),this.xu()}("ActiveCell"==t&&(this.dg=i.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)&&(n?null!=this.w&&(this.sortDescriptions.b=this.w.sortDescriptions):this.sortDescriptions.b=null);"ReactsToGroupChanges"==t&&(n?null!=this.w&&(this.groupDescriptions.b=this.w.groupDescriptions):this.groupDescriptions.b=null);"ReactsToFilterChanges"==t&&(n?null!=this.w&&(this.filterExpressions.syncTarget=this.w.filterExpressions):this.filterExpressions.syncTarget=null);if("IsGroupCollapsable"==t&&null!=this.actualDataSource&&(this.actualDataSource.isSectionCollapsable=n),"GroupHeaderDisplayMode"==t&&null!=this.actualDataSource&&(this.actualDataSource.sectionHeaderDisplayMode=i.EnumUtil.getEnumValue(i.DataSourceSectionHeaderDisplayMode_$type,n)),"SummaryScope"==t&&null!=this.actualDataSource&&(this.actualDataSource.summaryScope=i.EnumUtil.getEnumValue(i.DataSourceSummaryScope_$type,n)),"IsGroupExpandedDefault"==t&&null!=this.actualDataSource&&(this.actualDataSource.isSectionExpandedDefault=n),"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 k=this.jw()?this.actualRowHeight+this.rowSeparatorHeight:0;this.externalGrid.setScrollerVerticalTrackInset(this.actualHeaderHeight+this.rowSeparatorHeight+k)}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 I=this.jw()?this.actualRowHeight+this.rowSeparatorHeight:0;this.externalGrid.setScrollerVerticalTrackInset(this.actualHeaderHeight+this.rowSeparatorHeight+I)}"ScrollbarStyle"==t&&this.externalGrid.setScrollbarStyle(this.scrollbarStyle),"ScrollbarBackground"==t&&this.externalGrid.setScrollbarColor(this.scrollbarBackground)},n.prototype.yx=function(){null!=this.y&&(2==this.editMode||3==this.editMode?this.y.isBatchingEnabled=!0:this.y.isBatchingEnabled=!1)},n.prototype.za=function(t,e){return new i.CornerRadius(1,i.isNaN_(t.d)?e.d:t.d,i.isNaN_(t.e)?e.e:t.e,i.isNaN_(t.c)?e.c:t.c,i.isNaN_(t.b)?e.b:t.b)},n.prototype.abl=function(t,e){return new i.Thickness(1,i.isNaN_(t.left)?e.left:t.left,i.isNaN_(t.top)?e.top:t.top,i.isNaN_(t.right)?e.right:t.right,i.isNaN_(t.bottom)?e.bottom:t.bottom)},n.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)},n.prototype.wm=function(){if(-1==this.rowHeight)switch(this.density){case 0:case 2:this.actualRowHeight=I.r;break;case 4:case 3:this.actualRowHeight=I.q;break;case 1:this.actualRowHeight=I.p}else this.actualRowHeight=this.rowHeight;if(-1==this.headerHeight)switch(this.density){case 0:case 2:this.actualHeaderHeight=I.r;break;case 4:case 3:this.actualHeaderHeight=I.q;break;case 1:this.actualHeaderHeight=I.p}else this.actualHeaderHeight=this.headerHeight},n.prototype.m=function(){return null!=this.primaryKey?this.primaryKey:null!=this.actualDataSource?this.actualDataSource.actualPrimaryKey:null},n.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},n.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},n.prototype.ui=function(t,e){10!=e.animationType&&(null!=e.propertyName&&i.stringStartsWith(e.propertyName,"Actual")&&(e.propertyName=e.propertyName.substr(6)),this.c5.r(this,null,e.propertyName,e.animationType,e.oldValue,e.newValue,8))},n.prototype.ya=function(t,e){this.yb(e.propertyName,e.animationType,e.oldValue,e.newValue,!1)},n.prototype.uz=function(t,e){this.yb(e.propertyName,e.animationType,e.oldValue,e.newValue,!0)},n.prototype.u0=function(t,e){this.u1(e.propertyName,e.animationType,e.oldValue,e.newValue)},n.prototype.yb=function(t,e,n,r,o){10!=e&&(null!=t&&i.stringStartsWith(t,"Actual")&&(t=t.substr(6)),this.c5.s(this,null,t,e,n,r,o,!0,!1,!1))},n.prototype.u1=function(t,e,n,r){if(10!=e){null!=t&&i.stringStartsWith(t,"Actual")&&(t=t.substr(6));for(var o=0;o<this.model.b9.count;o++){var s=this.model.b9._inner[o];this.c5.s(this,s,t,e,n,r,!0,!1,!1,!0)}}},n.prototype.um=function(t,e){this.wl()},n.prototype.ul=function(t,e){this.w5()},n.prototype.qz=function(t){var e="";return null!=t.propertyName?e+=t.propertyName:e+="unidentified",e+="@@@",e+=i.EnumUtil.getName(i.DataSourceSummaryOperand_$type,t.operand)},n.prototype.w5=function(){this.ut(),this.summaryDescriptions.j.count>0&&null!=this.rootSummariesChanged&&this.rootSummariesChanged(this,new i.DataSourceRootSummariesChangedEventArgs)},n.prototype.ut=function(){if(null!=this.actualDataSource){var t=this.actualDataSource.getRootSummaryResults();if(null!=t)for(var e=0;e<t.length;e++){var n=t[e];"number"==typeof n.value?this.lj.item(this.qz(n),i.typeGetValue(n.value)):"number"==typeof n.value?this.lj.item(this.qz(n),n.value):"number"==typeof n.value||"number"==typeof n.value?this.lj.item(this.qz(n),i.typeGetValue(n.value)):this.lj.item(this.qz(n),n.value)}}},n.prototype.uk=function(t,e){null!=this.dataCommitted&&this.dataCommitted(this,new Me(e.commitID,e.changes))},n.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())},n.prototype.vg=function(){var t,n;if(null!=this.columnsAutoGenerated){var r=new en;r.columns=this.actualColumns,this.columnsAutoGenerated(this,r)}try{for(var o=e.__values(i.fromEnum(this.actualColumns)),s=o.next();!s.done;s=o.next()){s.value.jq=!1}}catch(e){t={error:e}}finally{try{s&&!s.done&&(n=o.return)&&n.call(o)}finally{if(t)throw t.error}}},n.prototype.onSizeChanged=function(t,e){var i;this.mg=t,this.mf=e,this.fo.y(t,e),this.xu(),null!=this.sizeChanged&&this.sizeChanged(this,((i=new Ne).b=t,i.a=e,i))},n.prototype.notifyScrollStart=function(){this.le=!0},n.prototype.notifyScrollStop=function(){this.le=!1,this.jc&&(this.e1.f(this.oe),this.jc=!1)},n.prototype.setViewport=function(t,e,n,r){this.m6=-1,this.m7=-1;var o,s=new i.Rect(0,t,e,n-t,r-e);if(s.x!=this.model.actualVisibleRegion.x||s.y!=this.model.actualVisibleRegion.y||s.width!=this.model.actualVisibleRegion.width||s.height!=this.model.actualVisibleRegion.height){var a=this.model.actualVisibleRegion;this.model.actualVisibleRegion=s,this.xv(),null!=this.viewportChanged&&this.viewportChanged(this,((o=new C).g=s.x,o.d=a.x,o.h=s.y,o.e=a.y,o.f=s.width,o.c=a.width,o.a=s.height,o.b=a.height,o))}},Object.defineProperty(n.prototype,"actualColumns",{get:function(){return this.ax.j},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columns",{get:function(){return this.dl},enumerable:!1,configurable:!0}),n.prototype.wy=function(t,e,i){var n=this.ci(t.l);t.ay=!0,n.el(t,this,e,i),t.ay=!1,n.en(t,this,e,i)},n.prototype.wx=function(t,e,n,r){var o=this.ci(t.l);if(!i.Base.equalsStatic(r,t.kc)){t.kc=r;var s=o.ba(r);null!=s&&t.km(s),t.ay=!0,o.el(t,this,e,n),t.ay=!1}o.en(t,this,e,n)},n.prototype.cf=function(t){return this.ay.h(t)},n.prototype.hideThenRemoveColumn=function(t){t.jg=!0,t.jo=!0},n.prototype.exchangeColumn=function(t,e){var n=this.columns.indexOf(e);if(-1!=n){if(null!=t&&t.jn||null!=e&&e.jn)throw new i.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(n+1,t.externalObject):this.externalGrid.insertExternalColumnAtIndex(n,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 s=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),s)}}},n.prototype.t3=function(t,e){var i=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 n=0;n<e.newItems.count;n++)this.v9(n+e.newStartingIndex,e.newItems.item(n));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 s=0;s<e.newItems.count;s++)this.v9(s+e.newStartingIndex,e.newItems.item(s));break;case 4:this.wh()}this.xu(),this.ic||(this.ic=!0,this.delayedExecutionManager.executeIn((function(){var t;i.ic=!1,null!=i.actualColumnsChanged&&i.actualColumnsChanged(i,((t=new nn).columns=i.actualColumns,t))}),0))}},n.prototype.wh=function(){this.gb.w(this.d1,this.model)},n.prototype.we=function(t,e){e.grid=null,e.propertyChanged=i.delegateRemove(e.propertyChanged,i.runOn(this,this.ud)),e.columnCellsPropertyUpdating=i.delegateRemove(e.columnCellsPropertyUpdating,i.runOn(this,this.ue)),e.columnHeaderCellsPropertyUpdating=i.delegateRemove(e.columnHeaderCellsPropertyUpdating,i.runOn(this,this.uh)),this.gb.v(this.d1,t,e,this.model),this.xu(),e.ht=0,this.f5.ag(t,e)},n.prototype.v9=function(t,e){if(e.grid=this,e.propertyChanged=i.delegateCombine(e.propertyChanged,i.runOn(this,this.ud)),e.columnCellsPropertyUpdating=i.delegateCombine(e.columnCellsPropertyUpdating,i.runOn(this,this.ue)),e.columnHeaderCellsPropertyUpdating=i.delegateCombine(e.columnHeaderCellsPropertyUpdating,i.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 n=e.ht;e.ht=1,this.xu(),this.c5.ar(this,this.columnAnimationSettings,this.model.h(e.ko),!0,n)}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)},n.prototype.ue=function(t,e,n,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!=n){var s=this.model.h(t.ko);null!=s&&(null!=e&&i.stringStartsWith(e,"Actual")&&(e=e.substr(6)),"HeaderText"!=e?"ColumnOptionsIconAlignment"!=e&&"ColumnOptionsIconColor"!=e&&"ColumnOptionsIconBehavior"!=e&&"IsColumnOptionsEnabled"!=e?("FormatString"==e&&(null===i.typeCast(Wn.$,t)&&null===i.typeCast(En.$,t)||(e="FormatStringOverride")),"EditorItemsSourceInternal"==e&&(e=i.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")),i.stringStartsWith(e,"transition@@@")?this.c5.r(this,s,e,n,r,o,1):this.c5.s(this,s,e,n,r,o,!1,!1,!1,!1)):this.c5.r(this,s,i.stringRemove(e,0,10),n,r,o,12):this.c5.r(this,s,"VerticalAlignment",n,r,o,12):this.c5.r(this,s,e,n,r,o,11)):this.uh(t,e,n,r,o):this.uh(t,"TextValue",n,r,o))}},n.prototype.xb=function(t,e,n,r,o){10!=n&&(null!=e&&i.stringStartsWith(e,"Actual")&&(e=e.substr(6)),this.c5.s(this,null,e,n,r,o,!1,!1,!0,!1))},n.prototype.uh=function(t,e,n,r,o){if(10!=n){var s=this.model.h(t.ko);null!=s&&(null!=e&&i.stringStartsWith(e,"Actual")&&(e=e.substr(6)),this.c5.s(this,s,e,n,r,o,!0,!1,!1,!1))}},n.prototype.pinColumn=function(t,e){var n=e;if(null==n&&(e=0),"number"==typeof n){var r=i.typeGetValue(n);null==i.EnumUtil.getName(k,r)&&(e=0),e=r}else e=i.typeGetValue(i.EnumUtil.parse(k,n,!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 s=t.ht;this.jn(t)&&(t.ht=6,this.c5.al(this,this.columnAnimationSettings,this.model.h(t.ko),s))}},n.prototype.moveColumn=function(t,e){var n=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 i.InvalidOperationException(1,"Can't move a column that was created from markup");if(e>t){if(this.columns._inner[e-1].jn)throw new i.InvalidOperationException(1,"Can't move a column to before columns created from markup")}else if(this.columns._inner[e].jn)throw new i.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 nn).columns=n.actualColumns,r))},n.prototype.moveColumnLeft=function(t){this.ki(t,!0,!0)},n.prototype.moveColumnRight=function(t){this.ki(t,!1,!0)},n.prototype.canMoveColumnLeft=function(t){return this.ki(t,!0,!1)},n.prototype.canMoveColumnRight=function(t){return this.ki(t,!1,!1)},n.prototype.ki=function(t,e,i){var n=this.actualColumns,r=n.count-1,o=n._inner[t],s=o.il,a=-1,l=t;do{if((l+=e?-1:1)<0||l>r)break;var u=n._inner[l];u.jo||u.il!=s||(a=l)}while(-1==a);if(-1!=a)return i&&this.moveColumn(t,a),!0;switch(o.il){case 0:var h=this.cd(e);if(null==h)return!1;i&&(a=n.indexOf(h),this.moveColumn(t,a+(e?1:-1)),o.il=h.il);break;case 1:if(e)return!1;if(i){var c=this.cc(!0);null==c?this.pinColumn(n._inner[t],0):(a=n.indexOf(c),this.moveColumn(t,a-1),o.il=0)}break;case 2:if(!e)return!1;if(i){var p=this.cc(!1);null==p?this.pinColumn(n._inner[t],0):(a=n.indexOf(p),this.moveColumn(t,a+1),o.il=0)}}return!0},n.prototype.cd=function(t){for(var e=t?1:2,i=this.actualColumns,n=this.model.cg,r=n.count-1,o=t?0:r,s=n._inner[o],a=i._inner[s],l=null;a.il==e&&(l=a,!((o+=t?1:-1)<0||o>r));)s=n._inner[o],a=i._inner[s];return l},n.prototype.cc=function(t){for(var e=this.actualColumns,i=this.model.cg,n=i.count-1,r=t?0:n,o=i._inner[r],s=e._inner[o];0!=s.il&&!((r+=t?1:-1)<0||r>n);)o=i._inner[r],s=e._inner[o];return 0==s.il?s:null},n.prototype.wa=function(t,e,i){i.kh=this.gb.k(t,this,this.model),i.kg=t,i.ki=this.model.b9._inner[t].n;var n=i.ht;this.gb.u(this.d1,this.model,t,e,i.ko),this.jn(i)||3==n||(i.ht=5),this.xu(),this.jn(i)&&(i.ht=6,this.c5.al(this,this.columnAnimationSettings,this.model.h(i.ko),n)),this.f5.af(t,e,i)},n.prototype.ud=function(t,e){var i,n=t;switch(e.propertyName){case"Filter":case"FilterExpression":this.yy();break;case"IsHidden":if(n.jo)if(this.jm(n)){var r=n.ht;n.ht=2,this.xu(),this.c5.ak(this,this.columnAnimationSettings,this.model.h(n.ko),!1,r)}else n.ht=3,n.jd&&(this.externalGrid.ensureColumnsAreManual(),this.externalGrid.removeExternalColumn(n.externalObject)),this.xu();else if(this.jt(n)){var o=n.ht;n.ht=1,this.xu(),this.c5.ar(this,this.columnAnimationSettings,this.model.h(n.ko),!1,o)}else n.ht=5,this.c5.ai(this,this.model.h(n.ko)),this.dw.ab(),this.xu();null!=this.columnHiddenChanged&&this.columnHiddenChanged(this,((i=new sn).a=n,i.b=n.jo,i));break;case"MergedCellMode":this.k4()&&this.xu()}},n.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 i=0;i<this.filterExpressions.k.count;i++)if(this.filterExpressions.k.item(i).isAutoGenerated){this.filterExpressions.k.item(i,t),e=!0;break}e||this.filterExpressions.add(t)}else for(var n=this.filterExpressions.k.count-1;n>=0;n--)this.filterExpressions.k.item(n).isAutoGenerated&&this.filterExpressions.removeAt(n)}},n.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 n=this.cf(t);return t.g?t.h?this.headerSeparator:n.header:n}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 i.NotSupportedException(0)}},n.prototype.q0=function(t,e,i,n){return this.ci(t).d1(t,e,i,n)},n.prototype.al=function(t,e){var i=this.ci(t).m(t,e);return i.p=this,i},n.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()},n.prototype.exportSerializedVisualModel=function(){return this.exportVisualModel().a5()},n.prototype.fu=function(t){return this.e7.getRowPathForRow(t)},n.prototype.scrollToRowByIndex=function(t){var n,r;if(!this.model.actualVisibleRegion.isEmpty){var o=i.truncate(this.model.actualVisibleRegion.left);-1!=this.m6&&(o=this.m6);var s=0,a=0;t<0&&(t=0),t>=this.e7.getRowCount()&&(t=this.e7.getRowCount()-1);var l=0;try{for(var u=e.__values(i.fromEnum(this.model.ce)),h=u.next();!h.done;h=u.next()){var c=h.value;if(a+c.m>t){l=i.truncate(Math.floor(t-a));var p=c.e(l);s=c.f(l),s+=i.truncate(Math.round(p*(t-a-l)))}else a+=c.m}}catch(t){n={error:t}}finally{try{h&&!h.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}for(var d=this.gj.n(this,this.model,new i.Rect(0,o,s,this.model.cs,this.model.ch)),f=-1,m=-1,g=!1,b=0;b<d.count;b++){if(d._inner[b].m==l){f=b,m=d._inner[b].n;break}if(d._inner[b].m>l){f=b-1;break}switch(d._inner[b].a){case 3:case 5:g=!0;break;case 1:g=!1}}-1==f&&(f=d.count-1);for(var y=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),y+=d._inner[v].k+this.rowSeparatorHeight+this.rowSpacingHeight):d._inner[v].n>m&&(3!=d._inner[v].a&&(m=d._inner[v].n),y+=d._inner[v].k+this.rowSeparatorHeight+this.rowSpacingHeight);s-=i.truncate(y),s=Math.max(s,0),this.model.absoluteHeight>0&&this.model.actualVisibleRegion.height>0&&s+this.model.actualVisibleRegion.height>this.model.absoluteHeight&&(s=i.truncate(Math.round(this.model.absoluteHeight-this.model.actualVisibleRegion.height))),s<0&&(s=0),this.m7=s,this.m6=o,this.viewportManager.moveViewportTo(o,s)}},n.prototype.scrollToLastRowByIndex=function(t){var n,r,o=i.truncate(this.model.actualVisibleRegion.left);-1!=this.m6&&(o=this.m6);var s=0,a=0;t<0&&(t=0),t>=this.e7.getRowCount()&&(t=this.e7.getRowCount()-1);var l=0;try{for(var u=e.__values(i.fromEnum(this.model.ce)),h=u.next();!h.done;h=u.next()){var c=h.value;if(a+c.m>t){var p=i.truncate(Math.floor(t-a)),d=c.e(p);l=d,s=c.i+c.f(p),s+=i.truncate(Math.round(d*(t-a-p)))}else a+=c.m}}catch(t){n={error:t}}finally{try{h&&!h.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}s-=this.model.c3,s=Math.max(s,0),this.model.absoluteHeight>0&&this.model.actualVisibleRegion.height>0&&(s-=i.truncate(Math.round(this.model.actualVisibleRegion.height-this.model.df-(l+this.model.c3)))),this.model.absoluteHeight>0&&this.model.actualVisibleRegion.height>0&&s+this.model.actualVisibleRegion.height>this.model.absoluteHeight&&(s=i.truncate(Math.round(this.model.absoluteHeight-this.model.actualVisibleRegion.height))),s<0&&(s=0),this.m7=s,this.m6=o,this.viewportManager.moveViewportTo(o,s)},n.prototype.scrollToItem=function(t){var e=this.dataIndexOfItem(t);return-1!=e&&(this.scrollToRowByIndex(e),!0)},n.prototype.scrollToPrimaryKey=function(t){var e=this.dataIndexOfPrimaryKey(t);return-1!=e&&(this.scrollToRowByIndex(e),!0)},n.prototype.scrollToColumnByIndex=function(t){var e=i.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 n=this.gb.k(e,this,this.model),r=i.truncate(this.model.actualVisibleRegion.top);-1!=this.m7&&(r=this.m7);var o=n+i.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=i.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)}},n.prototype.yd=function(t){var e=i.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 n=this.gb.k(e,this,this.model),r=i.truncate(this.model.actualVisibleRegion.top);-1!=this.m7&&(r=this.m7);var o=n+i.truncate(this.model.b9._inner[e].k*(t-e)),s=this.model.actualVisibleRegion.width-this.model.c0;this.model.absoluteWidth>0&&s>0&&(o-=i.truncate(Math.round(s-this.model.b9._inner[e].k))),this.model.absoluteWidth>0&&this.model.actualVisibleRegion.width>0&&o+this.model.actualVisibleRegion.width>this.model.absoluteWidth&&(o=i.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)},n.prototype.k8=function(t){return this.jj(t)},n.prototype.wk=function(t,e){if(1==this.activationMode&&null!=this.activeCell&&this.activeCell.b>=t&&this.activeCell.b<=e&&null!=this.activeCellChanged){var i=new qe;i.newActiveCell=this.activeCell,i.oldActiveCell=this.activeCell,this.activeCellChanged(this,i)}var n=this.getFirstVisibleIndex(),r=this.getLastVisibleIndex();e<n||t>r||(t<n&&(t=n),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()))},n.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)}}},n.prototype.nv=function(t){return this.gb.i(this.model,t.l)},n.prototype.k4=function(){return null!=this.model.bw&&null!=this.model.bx&&this.model.bx.x>=0&&this.model.bw.x>=0},n.prototype.getLastVisibleIndex=function(){return this.gb.i(this.model,this.model.bw)},n.prototype.getFirstVisibleIndex=function(){return this.gb.i(this.model,this.model.bx)},n.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)},n.prototype.n2=function(){var t=this.gb.b(this.model.actualVisibleRegion.bottom-this.model.df,this.model);return this.gb.i(this.model,t)},n.prototype.xk=function(){var t=this.getFirstVisibleIndex(),e=this.getLastVisibleIndex();this.e7.firstVisibleIndexRequested=t,this.e7.lastVisibleIndexRequested=e},Object.defineProperty(n.prototype,"j9",{get:function(){return null!=this.cellPreviewPointerDown},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ka",{get:function(){return null!=this.cellPreviewPointerUp},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j7",{get:function(){return null!=this.cellPointerDown},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j8",{get:function(){return null!=this.cellPointerUp},enumerable:!1,configurable:!0}),n.prototype.k2=function(){return 0!=this.selectionMode||null!=this.cellClicked||0!=this.activationMode||2!=this.columnResizingMode||1!=this.columnMovingMode},n.prototype.k3=function(){return 2!=this.columnResizingMode&&this.isHeaderSeparatorVisible||1!=this.columnMovingMode},n.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},n.prototype.ur=function(){this.hc&&(this.je=!0,this.y3(this.lk,this.ll,this.lm,this.ln),this.je=!1),this.hc=!1},n.prototype.w9=function(t,e){if(null==t){var i=this.selectedKeys.ae.indexOf(e);i>-1&&this.selectedItems.ae.count>0&&(t=this.selectedItems.ae._inner[i])}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)},n.prototype.xa=function(t,e){if(null==t){var i=this.selectedKeys.ae.indexOf(e);i>-1&&this.selectedItems.ae.count>0&&(t=this.selectedItems.ae._inner[i])}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)},n.prototype.xg=function(t,e,i){this.je=!0,this.y2(t,e,i),this.je=!1},n.prototype.vn=function(t,e,i){if(!this.iv){var n=new b;n.d=i,n.b=t,this.activeCell=n}if(null!=this.activeCellChanged){var r=new qe;r.newActiveCell=this.activeCell,r.oldActiveCell=this.dg,this.activeCellChanged(this,r)}this.vo()},n.prototype.vq=function(t,e){if(null!=e){var i=this.activeCell;if(!this.iv){var n=new b;n.d=e,n.b=t,this.activeCell=n}if(null!=this.activeCellChanged){var r=new qe;r.newActiveCell=this.activeCell,r.oldActiveCell=i,this.activeCellChanged(this,r)}this.vo()}},n.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,i=this.actualColumns.indexOf(t);if(t.jl){var n=this.model.e(i,e);null!=n?this.cj.ab(n):this.aq=new S(3,i,e,1)}else this.cj.v()}else this.cj.v()}else this.cj.v()},n.prototype.kk=function(t,e){if(this.cj.j)return!1;if(0==this.activationMode||null==this.activeCell)return!1;var i=this.df.b,n=this.df.d;if(i>this.e7.getRowCount()-1)return!1;var r=i+1;if(e&&(r=this.e7.getRowCount()-1),r>this.e7.getRowCount()-1&&(r=this.e7.getRowCount()-1),r==i)return!1;var o=Math.min(this.ad.s(),this.actualColumns.count-1);o=this.nu(o);var s,a=this.actualColumns._inner[o];if(n!=a.lt()&&(n=a.lt()),1!=this.groupSummaryDisplayMode){var l=this.e7.getRowType(r);1!=l&&2!=l||(n=null)}if(this.activeCell=((s=new b).b=r,s.d=n,s),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=i);var u=Math.min(this.nh,r),h=Math.max(this.nh,r);this.ym(u,h)}else if(5==this.selectionMode&&t){-1==this.nh&&(this.nh=i),-1==this.ng&&(this.ng=this.model.b9._inner[o].n);var c=new ge;c.l=Math.min(this.nh,r),c.k=Math.min(this.ng,this.model.b9._inner[o].n),c.j=Math.max(this.nh,r),c.i=Math.max(this.ng,this.model.b9._inner[o].n),this.yh(c)}else this.nh=-1,this.ng=-1,this.as=null,this.lo.clear(),this.lp.clear();return this.xh(),!0},n.prototype.kl=function(t,e){if(this.cj.j)return!0;if(0==this.activationMode||null==this.activeCell)return!1;var i=this.ad.s(),n=(this.actualColumns._inner[i],this.n1(!0)),r=this.actualColumns._inner[n],o=this.df.b,s=this.df.d;if(e){if(o>=this.e7.getRowCount()-1&&s==r.lt())return!1;o=this.e7.getRowCount()-1}else if(s==r.lt())return!1;s=r.lt();var a,l=this.e7.getRowType(o);return 1!=l&&2!=l||(s=null),this.activeCell=((a=new b).b=o,a.d=s,a),this.t9(o,this.model.b9._inner[n].n,!1),!0},n.prototype.n1=function(t){void 0===t&&(t=!1);var e=this.actualColumns.count-1,i=this.gb.j(e,this.model);if(t)for(;e>0&&(this.actualColumns._inner[i].jo||1==this.actualColumns._inner[i].il);)e--,i=this.gb.j(e,this.model);else for(;e>0&&(this.actualColumns._inner[i].jo||0!=this.actualColumns._inner[i].il);)e--,i=this.gb.j(e,this.model);return i},n.prototype.nw=function(t){void 0===t&&(t=!1);var e=0,i=this.gb.j(e,this.model);if(t)for(;e<this.actualColumns.count-1&&(this.actualColumns._inner[i].jo||2==this.actualColumns._inner[i].il);)e++,i=this.gb.j(e,this.model);else for(;e<this.actualColumns.count-1&&(this.actualColumns._inner[i].jo||0!=this.actualColumns._inner[i].il);)e++,i=this.gb.j(e,this.model);return i},n.prototype.n6=function(t,e){void 0===e&&(e=!0);var i=Math.max(0,t-1);if(e||(i=this.gb.j(i,this.model)),this.actualColumns._inner[i].jo){for(var n=i,r=this.model.b9._inner[i].n;r>0&&this.actualColumns._inner[n].jo;)r--,n=this.gb.j(r,this.model);if(this.actualColumns._inner[n].jo){for(n=i,r=this.model.b9._inner[i].n;r<this.actualColumns.count-1&&this.actualColumns._inner[n].jo;)r++,n=this.gb.j(r,this.model);this.actualColumns._inner[n].jo||(i=n)}else i=n}return i},n.prototype.n5=function(t,e){void 0===e&&(e=!0);var i=Math.min(this.actualColumns.count-1,t+1);return e||(i=this.gb.j(i,this.model)),this.nu(i)},n.prototype.nu=function(t){if(t=Math.min(t,this.actualColumns.count-1),this.actualColumns._inner[t].jo){for(var e=t,i=this.model.b9._inner[e].n;i<this.actualColumns.count-1&&this.actualColumns._inner[e].jo;)i++,e=this.gb.j(i,this.model);if(this.actualColumns._inner[e].jo){for(e=t,i=this.model.b9._inner[e].n;i>0&&this.actualColumns._inner[e].jo;)i--,e=this.gb.j(i,this.model);this.actualColumns._inner[e].jo||(t=e)}else t=e}return t},n.prototype.t9=function(t,e,i,n){void 0===n&&(n=!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)),n||(t<=this.nx()?this.scrollToRowByIndex(t):t>=this.n2()&&(i?this.scrollToRowByIndex(t):this.scrollToLastRowByIndex(t)))},n.prototype.kp=function(t,e){if(this.cj.j)return!0;if(0==this.activationMode||null==this.activeCell)return!1;var i,n=this.ad.s(),r=(this.actualColumns._inner[n],this.nw(!0)),o=this.actualColumns._inner[r],s=this.df.b,a=this.df.d;if(e){if(s<=0&&a==o.lt())return!1;s=0}else if(a==o.lt())return!1;if(a=o.lt(),1!=this.groupSummaryDisplayMode){var l=this.e7.getRowType(s);1!=l&&2!=l||(a=null)}return this.activeCell=((i=new b).b=s,i.d=a,i),this.t9(s,this.model.b9._inner[r].n,!1),!0},n.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 i=this.ad.s(),n=this.model.b9._inner[i].n,r=this.df.b,o=this.df.d;if(null==o)return!1;var s,a=this.n6(n,!1),l=this.model.b9._inner[a].n,u=this.actualColumns._inner[a];if(o==u.lt())return!1;if(o=u.lt(),this.activeCell=((s=new b).b=r,s.d=o,s),this.model.b9.count>0&&0==u.il&&this.t9(r,this.model.b9._inner[a].n,!1),5==this.selectionMode&&t){-1==this.nh&&(this.nh=r),-1==this.ng&&(this.ng=n);var h=new ge;h.l=Math.min(this.nh,r),h.k=Math.min(this.ng,l),h.j=Math.max(this.nh,r),h.i=Math.max(this.ng,l),this.ik=!1,this.yh(h),this.xh()}else this.ng=-1,this.as=null;return!0},n.prototype.ks=function(t,e){if(0==this.activationMode||null==this.activeCell)return!1;var i,n=this.df.d,r=this.ad.s(),o=(this.getFirstVisibleIndex(),this.getLastVisibleIndex()),s=Math.min(o+1,this.e7.getRowCount()-1);if(!this.cj.j){var a=this.e7.getRowType(s);1==a||2==a?n=null:null==n&&(n=this.ad.v),this.activeCell=((i=new b).b=s,i.d=n,i)}return this.t9(s,this.model.b9._inner[r].n,!0),!0},n.prototype.kt=function(t,e){if(0==this.activationMode||null==this.activeCell)return!1;var i,n=this.df.d,r=this.ad.s(),o=this.getFirstVisibleIndex(),s=this.getLastVisibleIndex()-o,a=Math.max(o-s-1,0);if(!this.cj.j){var l=this.e7.getRowType(a);1==l||2==l?n=null:null==n&&(n=this.ad.v),this.activeCell=((i=new b).b=a,i.d=n,i)}return this.t9(a,this.model.b9._inner[r].n,!1),!0},n.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 i=this.ad.s(),n=this.model.b9._inner[i].n,r=this.df.b,o=this.df.d;if(null==o)return!1;var s,a=this.n5(n,!1),l=this.model.b9._inner[a].n,u=this.actualColumns._inner[a];if(o==u.lt())return!1;if(o=u.lt(),this.activeCell=((s=new b).b=r,s.d=o,s),this.model.b9.count>0&&0==u.il&&this.t9(r,this.model.b9._inner[a].n,!1),5==this.selectionMode&&t){-1==this.nh&&(this.nh=r),-1==this.ng&&(this.ng=n);var h=new ge;h.l=Math.min(this.nh,r),h.k=Math.min(this.ng,l),h.j=Math.max(this.nh,r),h.i=Math.max(this.ng,l),this.ik=!1,this.yh(h),this.xh()}else this.ng=-1,this.as=null;return!0},n.prototype.kw=function(t,e){if(0==this.activationMode||null==this.activeCell)return!1;var i=this.ad.s(),n=this.model.b9._inner[i].n,r=this.df.b,o=this.df.d,s=r,a=o,l=i,u=0;s>=0&&s<this.e7.getRowCount()&&(u=this.e7.getRowType(s));var h,c=1!=this.groupSummaryDisplayMode&&1==u,p=1!=u&&2!=u&&4!=u&&5!=u;this.actualColumns._inner[i],this.actualColumns._inner[i];if(t){var d=void 0,f=null;do{if(d=this.n6(n,!1),f=this.actualColumns._inner[d],a==f.lt()||c){if(!(s>0))return!1;s--,c=1==(u=this.e7.getRowType(s)),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]}n=this.model.b9._inner[d].n,a=f.lt()}while(this.cj.j&&s>=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),a=null}l=d,f}else{var y=void 0,v=null;do{if(y=this.n5(n,!1),v=this.actualColumns._inner[y],a==v.lt()||c){if(!(s<this.e7.getRowCount()-1))return!1;y=this.nw(!0),v=this.actualColumns._inner[y],s++,c=1==(u=this.e7.getRowType(s)),p=1!=u&&2!=u&&4!=u&&5!=u}n=this.model.b9._inner[y].n,a=v.lt()}while(this.cj.j&&s<this.e7.getRowCount()&&(!p||!v.jl));if(1!=this.groupSummaryDisplayMode&&(1==u||2==u)){var C=this.nw(),_=this.actualColumns._inner[C];this.ad.ab(r,_.lt(),!1),a=null}l=y,v}return!this.cj.j||o==a&&r==s?(this.activeCell=function(){var t=new b;return t.b=s,t.d=a,t}(),this.t9(s,this.model.b9._inner[l].n,!1)):(this.ja(!0),this.cj.j||(this.activeCell=((h=new b).b=s,h.d=a,h),this.t9(s,this.model.b9._inner[l].n,!1),this.lg())),!0},n.prototype.xl=function(){},n.prototype.kx=function(t,e){if(this.cj.j)return!1;if(0==this.activationMode||null==this.activeCell)return!1;var i=this.df.b,n=this.df.d;if(i<0)return!1;var r=i-1;if(e&&(r=0),r<0&&(r=0),r==i)return!1;var o=Math.min(this.ad.s(),this.actualColumns.count-1);o=this.nu(o);var s,a=this.actualColumns._inner[o];if(n!=a.lt()&&(n=a.lt()),1!=this.groupSummaryDisplayMode){var l=this.e7.getRowType(r);1!=l&&2!=l||(n=null)}if(this.activeCell=((s=new b).b=r,s.d=n,s),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=i);var u=Math.min(this.nh,r),h=Math.max(this.nh,r);this.ym(u,h)}else if(5==this.selectionMode&&t){-1==this.nh&&(this.nh=i),-1==this.ng&&(this.ng=this.model.b9._inner[o].n);var c=new ge;c.l=Math.min(this.nh,r),c.k=Math.min(this.ng,this.model.b9._inner[o].n),c.j=Math.max(this.nh,r),c.i=Math.max(this.ng,this.model.b9._inner[o].n),this.yh(c)}else this.nh=-1,this.ng=-1,this.as=null,this.lo.clear(),this.lp.clear();return this.xh(),!0},n.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 i=this.e7.getRowType(this.activeCell.b);if(1==i)this.y0(this.activeCell.b);else if(!this.ju()||1!=this.enterBehavior||0!=i&&3!=i)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 n=this.ad.s(),r=this.actualColumns._inner[n];if(null!=r&&r.jl){var o=this.model.e(n,this.activeCell.b);return this.lb(o)}}}return!1},n.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},n.prototype.ko=function(){return this.lg()},n.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 i=null,n=this.e7.getRowType(this.activeCell.b);if(0==n||5==n||4==n||3==n){var r=this.ay.g(this.activeCell.d),o=this.model.h(r.ko);i=this.model.e(o.n,this.activeCell.b)}else 1!=n&&2!=n||(i=this.model.e(-400,this.activeCell.b));null!=i&&this.f5.z(i,t,e,!0)}return!1},n.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(),i=this.actualColumns._inner[e];if(null!=i&&i.jl){var n=this.model.e(e,this.activeCell.b);return null==n?this.ap=new S(3,e,this.activeCell.b,1):this.lb(n),!0}}}return!1},n.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 i=this.model.b9._inner[t.l.a5].n;this.t9(t.l.x,i,!1,t.bk)}this.m1=t.l.x;var n=this.actualColumns._inner[this.cj.q],r=this.cj.o,o=this.cj.s;return e&&this.w7(r,o),this.vt(n,r,o),!0},n.prototype.ja=function(t,e){if(void 0===e&&(e=!0),this.cj.j){var i=this.actualColumns._inner[this.cj.q],n=this.cj.o,r=this.cj.s;return!!this.cj.i(t,e)&&(this.vs(i,n,r),this.editOnKeyPress||this.externalGrid.focusScroller(),!0)}return!0},n.prototype.uq=function(t){if(3==this.editMode&&-1!=this.m1){this.m1=-1;var e=this.cj.o,i=this.cj.s;this.cj.w(),this.w6(e,i),t?this.autoAcceptEdits&&(this.canCommit?this.commitEdits():this.cancelEdits()):this.cancelEdits()}},n.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 i=new rn;i.addedCells=new vn,i.addedCells.add(this.selectedCells.ai(t,e)),i.removedCells=new vn,i.currentCells=this.selectedCells,this.selectedCellsChanged(this,i)}this.je=!1},n.prototype.v3=function(t,e){this.je=!0;var i=this.selectedCells.ai(t,e);if(null!=i&&(this.iw||this.selectedCells.remove(i),null!=this.selectedCellsChanged)){var n=new rn;n.addedCells=new vn,n.removedCells=new vn,n.removedCells.add(i),n.currentCells=this.selectedCells,this.selectedCellsChanged(this,n)}this.je=!1},n.prototype.xh=function(){this.ik&&null!=this.selectionChanged&&(this.selectionChanged(this,new Le),this.ik=!1)},n.prototype.y3=function(t,e,i,n){if(0!=t.count||0!=e.count||0!=i.count||0!=n.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),i.count>0)){this.selectedKeys.ah=!0,this.selectedItems.af=!0;for(var o=i.count-1;o>=0;o--){var s=this.selectedKeys.al(n._inner[o]);s>=0&&(this.selectedItems.removeAt(s),this.selectedKeys.removeAt(s))}this.selectedItems.af=!1,this.selectedKeys.ah=!1,this.ik=!0}this.notifyOnAllSelectionChanges=r,this.xc(i,t),this.xf(n,e)}},n.prototype.t6=function(t,e){var i=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1,this.iu||(this.selectedItems.o(t),this.selectedKeys.o(e),this.ik=!0),this.notifyOnAllSelectionChanges=i,this.xc(null,t),this.xf(null,e)},n.prototype.t7=function(t,e,i){var n=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1,this.iu||(this.selectedItems.add1(t),this.selectedKeys.add(e)),this.notifyOnAllSelectionChanges=n,i&&(this.xd(null,t),this.xe(null,e))},n.prototype.y2=function(t,e,i){var n=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1;this.selectedItems.ae._inner[t];this.iu||(this.selectedItems.ae._inner[t]=e),this.notifyOnAllSelectionChanges=n,this.xd(e,e)},n.prototype.x3=function(t,e){var i=this.notifyOnAllSelectionChanges;if(this.notifyOnAllSelectionChanges=!1,!this.iu)for(var n=0;n<t.count;n++)this.selectedItems.remove1(t._inner[n]),this.selectedKeys.remove(e._inner[n]);this.notifyOnAllSelectionChanges=i,this.xc(t,null),this.xf(e,null)},n.prototype.x4=function(t,e,i){var n=this.notifyOnAllSelectionChanges;this.notifyOnAllSelectionChanges=!1,this.iu||(this.selectedItems.remove1(t),this.selectedKeys.remove(e)),this.notifyOnAllSelectionChanges=n,i&&(this.xd(t,null),this.xe(e,null))},n.prototype.xd=function(t,e){if(!this.lf&&null!=this.selectedItemsChanged){var i=new Be;if(i.currentItems=this.selectedItems,null!=t){var n=new de;n.add1(t),i.removedItems=n}if(null!=e){var r=new de;r.add1(e),i.addedItems=r}this.selectedItemsChanged(this,i)}},n.prototype.xe=function(t,e){if(!this.lf&&null!=this.selectedKeysChanged){var i=new De;i.currentKeys=this.selectedKeys,null!=t&&(i.removedKeys=new me,i.removedKeys.ag=!1,i.removedKeys.add(t)),null!=e&&(i.addedKeys=new me,i.addedKeys.ag=!1,i.addedKeys.add(e)),this.selectedKeysChanged(this,i)}},n.prototype.xc=function(t,e){if(!this.lf&&null!=this.selectedItemsChanged){var i=new Be;i.currentItems=this.selectedItems,null!=t&&(i.removedItems=new de,i.removedItems.o(t)),null!=e&&(i.addedItems=new de,i.addedItems.o(e)),this.selectedItemsChanged(this,i)}},n.prototype.xf=function(t,e){if(!this.lf&&null!=this.selectedKeysChanged){var i=new De;i.currentKeys=this.selectedKeys,null!=t&&(i.removedKeys=new me,i.removedKeys.ag=!1,i.removedKeys.o(t)),null!=e&&(i.addedKeys=new me,i.addedKeys.ag=!1,i.addedKeys.o(e)),this.selectedKeysChanged(this,i)}},n.prototype.t5=function(t,e,i,n){var r=new ge;r.k=t,r.i=e,r.l=i,r.j=n,this.t4(r)},n.prototype.t4=function(t){if(this.selectedCellRanges.add(t),this.at=t,null!=this.selectedCellRangesChanged){var e=new $e;e.addedRanges=((i=new be).add(t),i),e.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,e)}var i},n.prototype.x0=function(t){if(this.selectedCellRanges.contains(t)&&(this.selectedCellRanges.remove(t),null!=this.selectedCellRangesChanged)){var e=new $e;e.removedRanges=((i=new be).add(t),i),e.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,e)}var i},n.prototype.xz=function(){if(this.selectedCellRanges.count>0){for(var t=new be,e=0;e<this.selectedCellRanges.count;e++)t.add(this.selectedCellRanges._inner[e]);if(this.selectedCellRanges.clear(),null!=this.selectedCellRangesChanged){var i=new $e;i.removedRanges=t,i.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,i)}}},n.prototype.ve=function(t){if(this.selectedCellRanges.contains(t)&&null!=this.selectedCellRangesChanged){var e=new $e;e.updatedRanges=((i=new be).add(t),i),e.currentRanges=this.selectedCellRanges,this.selectedCellRangesChanged(this,e)}var i},n.prototype.xi=function(t,e,i){this.u4(t),e!=i&&(this.f5.aj(t),this.ad.ak(t))},n.prototype.u4=function(t){this.c5.am(this,t,t)},n.prototype.v4=function(){this.cj.j&&(this.ja(!1),this.m1=-1),this.f5.ad(),this.w5(),this.xu(),this.invalidateVisibleRows()},n.prototype.x9=function(t,e){for(var i=this.lq(t,e),n=0;n<i.count;n++){var r=i._inner[n];this.xy(r)}},n.prototype.x5=function(t,e){for(var i=this.lq(t,e),n=0;n<i.count;n++){var r=i._inner[n];this.us(r)}},n.prototype.lq=function(t,e){var n,r=new i.List$1(ct.$,0);return t.q()&&r.add(((n=new ct(0)).ah=e.lo,n.i=0,n.t=!1,n)),t.p()&&r.add(function(){var t=new ct(0);return t.ah=e.lo,t.i=1,t.t=!1,t}()),t.r()&&r.add(function(){var t=new ct(0);return t.ah=e.lo,t.i=2,t.t=!1,t}()),r},n.prototype.us=function(t){var e=t.ah+"@@@"+i.EnumUtil.getName(i.DataSourceSummaryOperand_$type,t.i);this.li.containsKey(e)||this.li.item(e,0),this.li.item(e,this.li.item(e)+1);for(var n=0;n<this.summaryDescriptions.j.count;n++)if(this.jv(this.summaryDescriptions.j.item(n),t))return;this.summaryDescriptions.g(t)},n.prototype.jv=function(t,e){return t.ah==e.ah&&t.i==e.i&&t.t==e.t},n.prototype.xy=function(t){var e=t.ah+"@@@"+i.EnumUtil.getName(i.DataSourceSummaryOperand_$type,t.i);this.li.containsKey(e)||this.li.item(e,0),this.li.item(e,this.li.item(e)+1);for(var n=!1,r=null,o=0;o<this.summaryDescriptions.j.count;o++)this.jv(this.summaryDescriptions.j.item(o),t)&&(n=!0,r=this.summaryDescriptions.j.item(o));n&&0==this.li.item(e)&&(this.summaryDescriptions.h(r),this.li.removeItem(e))},n.prototype.invalidateVisibleRows=function(){if(this.k4()){var t=this.getFirstVisibleIndex(),e=this.getLastVisibleIndex();this.u5(t,e)}},n.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},n.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},n.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},n.prototype.u5=function(t,e){var i=this.getFirstVisibleIndex(),n=this.getLastVisibleIndex();e<i||t>n||(t<i&&(t=i),e>n&&(e=n),this.c5.z(this,t,e,!0),this.model.b5=!0,this.xv())},n.prototype.ny=function(){return this.gb.o(this.model.actualVisibleRegion.left+this.model.cz,this,this.model)},n.prototype.n3=function(){return this.gb.o(this.model.actualVisibleRegion.right-this.model.c0,this,this.model)},n.prototype.u6=function(t,e){var i=this.gb.i(this.model,t),n=this.gb.i(this.model,e);this.u5(i,n)},n.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)))},n.prototype.ww=function(t,e){var i=this.e7.getRowPathForRow(t);this.dw.ae(i),this.f5.ah(this.gb.i(this.model,i)),this.ad.ai(this.gb.i(this.model,i)),this.xq()},n.prototype.w3=function(t,e){var i=this.e7.getRowPathForRow(t);if(this.dw.af(i),this.f5.ai(this.gb.i(this.model,i),e),this.ad.aj(this.gb.i(this.model,i)),1==this.selectionMode||2==this.selectionMode)if(null!=this.actualPrimaryKey)for(var n=this.e7.getItemKey(this.actualPrimaryKey,e),r=0;r<this.selectedKeys.count;r++)this.selectedKeys._inner[r].equals(n)&&(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 s=this.e7.getItemKey(this.actualPrimaryKey,e),a=0;a<this.selectedCells.count;a++)this.selectedCells._inner[a].primaryKey.equals(s)&&(this.selectedCells.removeAt(a),a--);this.xq()},n.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])},n.prototype.yo=function(t){this.fo.x(t)},n.prototype.notifySetItem=function(t,e,i){null!=this.w&&this.w.notifySetItem(t,e,i)},n.prototype.notifyClearItems=function(){null!=this.w&&this.w.notifyClearItems()},n.prototype.notifyInsertItem=function(t,e){null!=this.w&&this.w.notifyInsertItem(t,e)},n.prototype.notifyRemoveItem=function(t,e){null!=this.w&&this.w.notifyRemoveItem(t,e)},n.prototype.dataIndexOfItem=function(t){return null==this.w?-1:this.w.indexOfItem(t)},n.prototype.dataIndexOfPrimaryKey=function(t){return null==this.w?-1:this.w.indexOfKey(t)},n.prototype.i=function(){return null!=this.actualDataSource?this.actualDataSource.actualPrimaryKey:this.actualPrimaryKey},n.prototype.resolveCellValue=function(t){var e=null!=t.b?t.b:this.ay.g(t.j),i=null;return null!=t.h?i=t.h:null!=t.primaryKey&&(i=null==this.i()&&null==t.primaryKey.key&&1==t.primaryKey.value.length?t.primaryKey.value[0]:this.e7.getItemForKey(t.primaryKey)),null!=e&&null!=i?this.actualDataSource.getItemProperty(i,e.lo):null},n.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 i=this.actualDataSource.getItemAtIndex(t);if(null==i)return null;var n=this.e7.getRowType(t);if(0!=n&&3!=n)return null;var r=this.gb.j(e,this.model),o=this.ay.j._inner[r];return this.actualDataSource.getItemProperty(i,o.lo)},n.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},n.prototype.getRootSummaryResults=function(){return null!=this.actualDataSource?this.actualDataSource.getRootSummaryResults():null},n.prototype.getSectionSummaryResults=function(t){return null!=this.actualDataSource?this.actualDataSource.getSectionSummaryResults(t):null},Object.defineProperty(n.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(n.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(n.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}),n.prototype.z=function(t){for(var e=null,n=0;n<this.ay.j.count;n++){var r=this.ay.j._inner[n];if(r!=t&&(null!=r.g1||null!=r.g3)){var o=this.actualDataSource.resolveSchemaPropertyType(r.lo),s=null!=r.g3?r.g3:r.g1.resolveFilter(r.lo,o);if(null!=e)switch(this.filterLogicalOperator){case 1:e=i.FilterFactory.instance.or(e,s);break;case 0:e=i.FilterFactory.instance.and(e,s)}else e=s}}return e},n.prototype.lh=function(t,e,n,r,o){if(null!=this.actualDataSource&&e>=0&&e<this.actualColumns.count){var s=this.actualColumns._inner[e],a=this.actualDataSource.resolveSchemaPropertyType(s.lo),l=null;try{l=this.or(a,o)}catch(t){return this.cj.aa(t.message),!1}if(null==l&&null!=r||null!=l&&null==r||!i.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,n),h=this.y.updatePropertyAtKey(u.value,s.lo,l,!0);if(this.ie=!0,null!=this.cellValueChanging){var c=((f=new ln).c=h,f.cellInfo=t,f.b=s,f.item=n,f.f=r,f.e=l,f);this.cellValueChanging(this,c);var p=this.y.getTransactionErrorByID(h);if(null!=p)return this.cj.aa(p),null!=t&&(t.fg=h),!1;this.y.isPendingTransaction(h)&&this.autoAcceptEdits&&(this.acceptEdit(h),this.y4(s,u,l))}else this.acceptEdit(h),this.y4(s,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},n.prototype.y4=function(t,e,i){if(null!=this.actualPrimaryKey){for(var n=!1,r=-1,o=0;o<this.actualPrimaryKey.length;o++)if(t.lo==this.actualPrimaryKey[o]){n=!0,r=o;break}if(n)if(1==this.selectionMode||2==this.selectionMode){var s=this.selectedKeys.ae.indexOf(e);if(s>-1){e.value[r]=i,this.selectedKeys.ae.item(s,e);var a=this.iu;this.iu=!0,this.f5.a2(),this.iu=a}}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]=i,this.selectedCells._inner[l].primaryKey=e;var h=this.iu;this.iu=!0,this.f5.a1(),this.iu=h}}}},n.prototype.or=function(t,e){if(null==e)return null;switch(t){case 2:return i.Convert.toBoolean(e);case 10:return i.Convert.toByte1(e);case 8:return i.Convert.toDateTime(e);case 6:return i.Convert.toDecimal2(e);case 5:return i.Convert.toDouble3(e);case 1:return i.Convert.toInt321(e);case 3:return i.Convert.toInt64(e);case 11:return e;case 0:return e.toString()}return e},n.prototype.wi=function(t,e,i){if(null!=this.columnWidthChanged){var n=((r=new hn).c=t,r.b=e,r.a=i,r);this.columnWidthChanged(t.externalObject,n)}var r},n.prototype.vt=function(t,e,i){var n;null!=this.cellEditStarted&&this.cellEditStarted(this,((n=new cn).a=t,n.b=e,n.item=i,n))},n.prototype.vs=function(t,e,i){var n;null!=this.cellEditEnded&&this.cellEditEnded(this,((n=new pn).a=t,n.b=e,n.item=i,n))},n.prototype.w7=function(t,e){var i;null!=this.rowEditStarted&&this.rowEditStarted(this,((i=new He).a=t,i.item=e,i))},n.prototype.w6=function(t,e){var i;null!=this.rowEditEnded&&this.rowEditEnded(this,((i=new We).a=t,i.item=e,i))},n.prototype.ju=function(){return null!=this.y&&!this.y.isReadOnly&&0!=this.editMode},Object.defineProperty(n.prototype,"canUndo",{get:function(){return null!=this.y&&this.y.canUndo},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"canRedo",{get:function(){return null!=this.y&&this.y.canRedo},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"canCommit",{get:function(){return null!=this.y&&this.y.canCommit},enumerable:!1,configurable:!0}),n.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 i=new ze(t,e);this.dataCommitting(this,i),this.y.isPendingCommit(t)&&this.autoAcceptEdits&&this.acceptCommit(t)}else this.acceptCommit(t)}}},n.prototype.cancelEdits=function(){this.ju()&&this.y.cancelEdits()},n.prototype.acceptCommit=function(t){this.ju()&&this.y.acceptPendingCommit(t)},n.prototype.rejectCommit=function(t){this.ju()&&this.y.rejectPendingCommit(t)},n.prototype.undo=function(){this.ju()&&this.y.undo()},n.prototype.redo=function(){this.ju()&&this.y.redo()},n.prototype.updatePropertyAtKey=function(t,e,i){this.ju()&&(this.y.updatePropertyAtKey(t,e,i,!1),2!=this.editMode&&this.commitEdits())},n.prototype.removeItemByKey=function(t){this.ju()&&(this.y.removeItemByKey(t),2!=this.editMode&&this.commitEdits())},n.prototype.removeItem=function(t){this.ju()&&(this.y.removeItem(t),2!=this.editMode&&this.commitEdits())},n.prototype.acceptEdit=function(t){this.ju()&&(this.y.acceptPendingTransaction(t),this.y.isBatchingEnabled||this.commitEdits())},n.prototype.rejectEdit=function(t){this.ju()&&this.y.rejectPendingTransaction(t)},n.prototype.setEditError=function(t,e){this.ju()&&this.y.setTransactionError(t,e)},n.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),i=this.model.e(e.n,this.activeCell.b);null!=i&&this.lb(i)&&this.cj.x()}}},n.prototype.endEditMode=function(t){this.ja(t)},Object.defineProperty(n.prototype,"enterBehavior",{get:function(){return this.cs},set:function(t){var e=this.cs;this.cs=t,e!=this.cs&&this.w2("EnterBehavior",i.enumGetBox(ve,e),i.enumGetBox(ve,this.cs))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"enterBehaviorAfterEdit",{get:function(){return this.cq},set:function(t){var e=this.cq;this.cq=t,e!=this.cq&&this.w2("EnterBehaviorAfterEdit",i.enumGetBox(_e,e),i.enumGetBox(_e,this.cq))},enumerable:!1,configurable:!0}),n.prototype.selectAllRows=function(){2==this.selectionMode&&this.f5.al()},n.prototype.deselectAllRows=function(){if((1==this.selectionMode||2==this.selectionMode)&&this.selectedItems.ae.count>0){for(var t=new i.List$1(i.Base.$,0),e=new i.List$1(fe.$,0),n=0;n<this.selectedItems.ae.count;n++)t.add1(this.selectedItems.ae._inner[n]),e.add(this.selectedKeys.ae._inner[n]);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(n.prototype,"j4",{get:function(){return this.h2},set:function(t){this.h2=t},enumerable:!1,configurable:!0}),n.prototype.kq=function(t,e,i){if(this.j4)switch(t){case 30:if(i)return this.selectAllRows(),!0;break;case 32:var n=!1;if(this.allowCopyOperation&&!this.cj.j&&i){if(null!=this.activeCell){var r=this.ay.g(this.activeCell.d),o=this.activeCell.b,s=this.actualColumns.indexOf(r),a=this.model.e(s,o);if(null!=a)this.externalGrid.setClipboardText(a.j1);else{var l=this.resolveCellValueFromPosition(o,s),u=r.dz(this,l,null);null!=u&&this.externalGrid.setClipboardText(u)}}n=!0}return n}return!1},n.prototype.k9=function(){if(!this.editOnKeyPress)return!1;var t=this.ad.s(),e=this.actualColumns._inner[t];return null===i.typeCast(ir.$,e)&&(!(null!=this.ao&&this.ao.a5>=0&&this.ao.a5<this.actualColumns.count&&(e=this.actualColumns._inner[this.ao.a5],null!==i.typeCast(ir.$,e)))&&this.editOnKeyPress)},Object.defineProperty(n.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(n.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(n.prototype,"mergedCellMode",{get:function(){return this.fi},set:function(t){var e=this.fi;this.fi=t,e!=this.fi&&this.w2("MergedCellMode",i.enumGetBox(Se,e),i.enumGetBox(Se,this.fi))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellEvaluationCriteria",{get:function(){return this.fg},set:function(t){var e=this.fg;this.fg=t,e!=this.fg&&this.w2("MergedCellEvaluationCriteria",i.enumGetBox(Oe,e),i.enumGetBox(Oe,this.fg))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellVerticalAlignment",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,this.ae!=e&&this.w2("MergedCellVerticalAlignment",i.enumGetBox(h,e),i.enumGetBox(h,this.ae))},enumerable:!1,configurable:!0}),n.prototype.saveLayout=function(){var t,e=new i.JsonDictionaryObject,n=new i.JsonDictionaryArray,r=new i.JsonDictionaryArray,o=new i.JsonDictionaryArray,s=new i.JsonDictionaryArray;e.item("version",((t=new i.JsonDictionaryValue).e=2,t.value="1.0",t)),e.item("columns",n),e.item("sortedColumns",r),e.item("groupedColumns",o),e.item("filterColumns",s);for(var a=new i.List$1(Kn.$,0),l=0;l<this.actualColumns.count;l++){var u=this.actualColumns._inner[l],h=new Kn;h.o=u.lo,h.e=u.width,h.i=i.toNullable(i.Boolean_$type,u.jo),h.j=i.toNullable(k,u.il);var c="",p="";l>0&&(c=this.actualColumns._inner[l-1].lo),l<this.actualColumns.count-1&&(p=this.actualColumns._inner[l+1].lo),h.m=c,h.n=p;var d=this.summaryDescriptions.j.count;h.k=i.toNullable(i.Boolean_$type,!1);for(var f=0;f<d;f++)u.lo==this.summaryDescriptions.j.item(f).ah&&(null==h.g&&(h.g=new i.List$1(i.DataSourceSummaryOperand_$type,0)),h.g.add(this.summaryDescriptions.j.item(f).i),h.k=i.toNullable(i.Boolean_$type,!0));if(null!=u.g1){if(null==h.f&&(h.f=new i.List$1(vi.$,0)),u.g1.isGroup()){var m=u.g1;h.l=i.toNullable(i.Boolean_$type,m.usesOrOperator);for(var g=m.count,b=0;b<g;b++)h.f.add(m.item(b))}else{var y=u.g1;h.f.add(y)}h.h=i.toNullable(i.Boolean_$type,!0)}else h.h=i.toNullable(i.Boolean_$type,!1);a.add(h)}for(var v=new i.List$1(Ue.$,0),C=this.sortDescriptions.j.count,_=0;_<C;_++){var w=new Ue;w.f=this.sortDescriptions.j.item(_).f,w.e=i.toNullable(i.ListSortDirection_$type,this.sortDescriptions.j.item(_).c),v.add(w)}for(var S=new i.List$1(Ke.$,0),P=this.groupDescriptions.j.count,O=0;O<P;O++){var x=new Ke;x.f=this.groupDescriptions.j.item(O).f,x.e=i.toNullable(i.ListSortDirection_$type,this.groupDescriptions.j.item(O).c),S.add(x)}for(var j=new i.List$1(Xe.$,0),I=this.filterExpressions.k.count,T=0;T<I;T++){var R=this.filterExpressions.k.item(T),A=this.fz(R);j.add(A)}return n.items=a.toArray(),r.items=v.toArray(),o.items=S.toArray(),s.items=j.toArray(),e.b()},n.prototype.fz=function(t){var e=new Xe;if(t.isFunction){e.h=!0;var n=t;e.n=i.toNullable(i.Number_$type,n.functionType),null==e.m&&(e.m=new i.List$1(Xe.$,0)),e.m=this.lr(n.functionArguments)}else if(t.isOperation){e.k=!0;var r=t;e.n=i.toNullable(i.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 s=t;null!=s.propertyReference&&(e.o=s.propertyReference)}return e.g=t.isAutoGenerated,e},n.prototype.lr=function(t){for(var e=new i.List$1(Xe.$,0),n=t.k.count,r=0;r<n;r++){var o=new Xe,s=t.k.item(r);if(s.isPropertyReference)null!=s.propertyReference&&(o.o=s.propertyReference),o.l=!0;else if(s.isLiteral)null!=s.literalValue&&(o.p=s.literalValue.toString()),o.i=!0;else if(s.isFunction){var a=s;o.n=i.toNullable(i.Number_$type,a.functionType),o.m=this.lr(a.functionArguments),o.h=!0}o.g=s.isAutoGenerated,e.add(o)}return e},n.prototype.loadLayout=function(t){if("string"==typeof t){var e=(new i.JsonDictionaryParser).parse(t);if(null!==i.typeCast(i.JsonDictionaryObject.$,e)){var n=e;if(n.g("columns")){var r=i.typeCast(i.JsonDictionaryArray.$,n.item("columns"));if(null!=r){this.summaryDescriptions.n(),this.filterExpressions.clear();for(var o=this.actualColumns.count,s=r.items.length,a=0;a<s;a++){var l=new Kn;l.p(r.items[a]);for(var u=null,h=-1,c=-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&&(h=d),null!=l.n&&l.n==this.actualColumns._inner[d].lo&&(c=d);if(null!=u){if(null!=l.e){var f=new Rt;f.f=l.e.f,f.e=l.e.e,f.c=l.e.c,u.width=f}if(i.nullableNotEquals(l.i,null)&&(u.jo=l.i.value),i.nullableNotEquals(l.j,null)&&(u.il=l.j.value),null==l.m&&null==l.n||-1!=p&&(-1!=h?p-1!=h&&this.moveColumn(p,h+1):-1!=c&&p+1!=c&&this.moveColumn(p,c-1)),i.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,b=0;b<g;b++){var y=new ct(1,u.lo);switch(l.g._inner[b]){case 3:y.i=3;break;case 4:y.i=4;break;case 1:y.i=1;break;case 0:y.i=0;break;case 2:y.i=2}this.summaryDescriptions.j.add(y)}}if(i.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 _=new Si,w=0;w<v;w++)_.add(l.f._inner[w]);_.usesOrOperator=l.l.value,u.g1=_}}}}}}if(this.sortDescriptions.n(),n.g("sortedColumns")){var S=i.typeCast(i.JsonDictionaryArray.$,n.item("sortedColumns"));if(null!=S)for(var P=0;P<S.items.length;P++){var O=new Ue;O.g(S.items[P]);var x=new yt(0);x.f=O.f,x.c=O.e.value,this.sortDescriptions.g(x)}}if(this.groupDescriptions.n(),n.g("groupedColumns")){var j=i.typeCast(i.JsonDictionaryArray.$,n.item("groupedColumns"));if(null!=j)for(var k=0;k<j.items.length;k++){var I=new Ke;I.g(j.items[k]);for(var T=!1,R=this.actualDataSource.actualSchema.propertyNames.length,A=0;A<R;A++)if(this.actualDataSource.actualSchema.propertyNames[A]==I.f){T=!0;break}if(1==T){var E=new _t(0);E.f=I.f,E.c=I.e.value,this.groupDescriptions.g(E)}}}if(n.g("filterColumns")){var B=i.typeCast(i.JsonDictionaryArray.$,n.item("filterColumns"));if(null!=B)for(var D=0;D<B.items.length;D++){var $=new Xe;$.q(B.items[D]);var M=this.r($);M.isAutoGenerated||this.filterExpressions.add(M)}}}}},n.prototype.r=function(t){if(t.h){var e=0;i.nullableNotEquals(t.n,null)&&(e=t.n.value);var n=new i.FunctionFilterExpression(e,null),r=t.m.count;n.functionArguments.clear();for(var o=0;o<r;o++){var s=this.s(t.m._inner[o]);n.functionArguments.add(s)}return t.g&&n.markAutoGenerated(),n}if(t.k){var a=new i.OperationFilterExpression(null,1,null);return i.nullableNotEquals(t.n,null)&&(a.operator=t.n.value),i.nullableNotEquals(t.n,null)&&(a.propertyName=t.o),i.nullableNotEquals(t.n,null)&&(a.value=t.p),null!=t.e&&(a.left=this.r(t.e)),null!=t.f&&(a.right=this.r(t.f)),t.g&&a.markAutoGenerated(),a}if(t.i){var l=new i.LiteralFilterExpression(null,!1);return null!=t.p&&(l.literalValue=t.p),t.g&&l.markAutoGenerated(),l}if(t.l){var u=new i.PropertyReferenceFilterExpression(null);return null!=t.o&&(u.propertyReference=t.o),t.g&&u.markAutoGenerated(),u}return null},n.prototype.s=function(t){if(t.l){var e=new i.PropertyReferenceFilterExpression(null);return e.propertyReference=t.o,t.g&&e.markAutoGenerated(),e}if(t.i){var n=new i.LiteralFilterExpression(null,!1);return n.literalValue=t.p,t.g&&n.markAutoGenerated(),n}if(t.h){var r=0;i.nullableNotEquals(t.n,null)&&(r=t.n.value);var o=new i.FunctionFilterExpression(r,null),s=t.m.count;o.functionArguments.clear();for(var a=0;a<s;a++){var l=this.s(t.m._inner[a]);o.functionArguments.add(l)}return t.g&&o.markAutoGenerated(),o}return null},n.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(n.prototype,"filterUIType",{get:function(){return this.cz},set:function(t){var e=this.cz;this.cz=t,e!=this.cz&&this.w2("FilterUIType",i.enumGetBox(je,e),i.enumGetBox(je,this.cz))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterLogicalOperator",{get:function(){return this.cw},set:function(t){var e=this.cw;this.cw=t,e!=this.cw&&this.w2("FilterLogicalOperator",i.enumGetBox(Ie,e),i.enumGetBox(Ie,this.cw))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterComparisonType",{get:function(){return this.cu},set:function(t){var e=this.cu;this.cu=t,e!=this.cu&&this.w2("FilterComparisonType",i.enumGetBox(Re,e),i.enumGetBox(Re,this.cu))},enumerable:!1,configurable:!0}),n.prototype.jw=function(){return 1==this.filterUIType},Object.defineProperty(n.prototype,"todayOverride",{get:function(){return this.lu},set:function(t){this.lu=t,i.FilterFactory.instance.todayOverride=this.lu},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.wj=function(t,e,i){var n;null!=this.customFilterRequested&&this.customFilterRequested(this,((n=new un).c=t,n.d=e,n.e=i,n))},n.prototype.la=function(){return this.my>0},n.prototype.va=function(){this.my++},n.prototype.u9=function(){this.my--,this.my<0&&(this.my=0)},Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"scrollbarStyle",{get:function(){return this.gm},set:function(t){var e=this.gm;this.gm=t,e!=this.gm&&this.w2("ScrollbarStyle",i.enumGetBox(i.ScrollbarStyle_$type,e),i.enumGetBox(i.ScrollbarStyle_$type,this.gm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"allowCopyOperation",{get:function(){return this.he},set:function(t){this.he=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"deferEventForRowDragSelection",{get:function(){return this.hi},set:function(t){this.hi=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"DataGrid",i.Base.$,[i.INotifyPropertyChanged_$type]),n.isActiveCellStyleEnabledPropertyName="IsActiveCellStyleEnabled",n}(i.Base),en=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._columns=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"columns",{get:function(){return this._columns},set:function(t){this._columns=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridColumnsAutoGeneratedEventArgs",i.EventArgs.$),n}(i.EventArgs),nn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._columns=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"columns",{get:function(){return this._columns},set:function(t){this._columns=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridColumnsChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),rn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._currentCells=null,e._addedCells=null,e._removedCells=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"currentCells",{get:function(){return this._currentCells},set:function(t){this._currentCells=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"addedCells",{get:function(){return this._addedCells},set:function(t){this._addedCells=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"removedCells",{get:function(){return this._removedCells},set:function(t){this._removedCells=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridSelectedCellsChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),on=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._grid=null,e._button=0,e._isDoubleClick=!1,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"grid",{get:function(){return this._grid},set:function(t){this._grid=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"button",{get:function(){return this._button},set:function(t){this._button=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isDoubleClick",{get:function(){return this._isDoubleClick},set:function(t){this._isDoubleClick=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"DataGridCellEventArgs",i.EventArgs.$),n}(i.EventArgs),sn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"ColumnHiddenChangedEventArgs"),n}(i.Base),an=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=0,e}return e.__extends(n,t),n.$t=i.markType(n,"ColumnPinnedChangedEventArgs"),n}(i.Base),ln=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridCellValueChangingEventArgs"),n}(i.Base),un=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.d=null,e.e=null,e.b=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"a",{get:function(){return i.FilterFactory.instance},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridCustomFilterRequestedEventArgs"),n}(i.Base),hn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=null,e.b=null,e.a=null,e}return e.__extends(n,t),n.$t=i.markType(n,"GridColumnWidthChangedEventArgs"),n}(i.Base),cn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=0,e._item=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridCellEditStartedEventArgs"),n}(i.Base),pn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.b=0,e._item=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"item",{get:function(){return this._item},set:function(t){this._item=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridCellEditEndedEventArgs"),n}(i.Base),dn=function(t){function n(){var e=t.call(this)||this;return e.l=new i.List$1(i.Number_$type,0),e.i=!1,e.animationCreated=null,e.animationCompleted=null,e.animationCanceled=null,e.g=new Yt,e.f=new Zt,e.k=new i.Dictionary$2(i.Number_$type,i.List$1.$.specialize(i.Delegate_$type),0),e.e=null,e.d=null,e.e=new Qt,e.e.l=0,e.e.e=!0,e.e.n=0,e.d=new Qt,e.d.l=0,e.d.e=!0,e.d.n=0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"h",{get:function(){return this.g},enumerable:!1,configurable:!0}),n.prototype.p=function(){var t=n.o;return n.o++,t},n.prototype.as=function(){this.i=!0,this.l=new i.List$1(i.Number_$type,0)},n.prototype.m=function(){return this.i=!1,this.l},n.prototype.x=function(t){var e;this.i&&this.l.add(t),null!=this.animationCreated&&this.animationCreated(this,((e=new Qe).a=t,e))},n.prototype.v=function(t){var e;this.i&&this.l.remove(t),null!=this.animationCanceled&&this.animationCanceled(this,((e=new Ze).a=t,e))},n.prototype.w=function(t){var e;this.i&&this.l.remove(t),null!=this.animationCompleted&&this.animationCompleted(this,((e=new Ye).a=t,e))},n.prototype.ar=function(t,e,n,r,o){var s=this;if(null!=n){var a,l,u=this.p();this.x(u);var h=t.ay.f(n.o);if(null!=h){var c=new Sn(1);c.effectsFinished=i.delegateCombine(c.effectsFinished,(function(e,i){h.ht=5,n.a=5,t.model.b2=!1,t.xu(),t.wg(h),s.w(u)})),c.effectsCanceled=i.delegateCombine(c.effectsCanceled,(function(e,i){t.model.b2=!1,t.wf(h),s.v(u)})),r?(a=null!=h.h6&&null!=h.h6.n?h.h6.n:null!=e&&null!=e.n?e.n:this.g.n,l=null!=h.h6&&null!=h.h6.m?h.h6.m:null!=e&&null!=e.m?e.m:this.g.m):(a=null!=h.h6&&null!=h.h6.x?h.h6.x:null!=e&&null!=e.x?e.x:this.g.x,l=null!=h.h6&&null!=h.h6.w?h.h6.w:null!=e&&null!=e.w?e.w:this.g.w);var p=t.columnAddingAnimationMode;if(r||(p=t.columnShowingAnimationMode),0==p&&(p=h.hp()),3==o||0==o)switch(p){case 2:case 4:case 5:case 7:case 9:case 10:case 6:n.h=-1;break;case 3:case 8:n.h=1}t.model.b2=!0;var d=new ar;d.bx(a),d.al=!0,d.bq=0,d.x=function(t,e,i,n,r){var o=i,s=e;n.h=s+(o-s)*t},d.o=function(t,e){return n.h},c.g(d),t.dw.u(n,d);var f=new ur;f.t=1,f.bx(l),f.al=!0,f.bq=0,f.x=function(e,r,o,s,a){var l=o,u=r,h=s;switch(p){case 6:case 2:case 3:case 7:case 8:h.cn=u+(l-u)*e;break;case 4:case 5:case 9:case 10:h.cr=u+(l-u)*e}if(4==h.l.af){var c=t.gj.p(n,t),d=n.k;h.me=new i.Rect(0,c-h.cu,0,d,h.fu)}},f.o=function(e,i){var n=e,r=n.cn;if(4!=p&&5!=p&&9!=p&&10!=p||(r=n.cr),0==o||3==o)switch(p){case 6:r=0,n.cn=r,n.cs=r,n.cm=0,n.cr=0;break;case 2:case 7:r=-1,n.cn=r,n.cm=0,n.cs=0,n.cr=0;break;case 3:case 8:r=1,n.cn=r,n.cm=0,n.cs=0,n.cr=0;break;case 4:case 9:r=-1*(t.mf+t.model.c3),n.cr=r,n.cm=0,n.cn=0,n.cs=0;break;case 5:case 10:r=1*(t.mf+t.model.c3),n.cr=r,n.cm=0,n.cn=0,n.cs=0}return r},t.model.b4()&&(f.g=new S(0,0,n.m,t.model.bx.y,t.model.bx.x),f.e=new S(0,0,n.m,t.model.bw.y,t.model.bw.x)),c.g(f),4!=p&&9!=p||(f.ao=!0),t.dw.t(n,f);var m=new ur;m.t=2,m.bx(l),m.al=!0,m.bq=1,m.x=function(t,e,i,n,r){var o=e+(i-e)*t;o<0&&(o=0),n.cj=o},m.o=function(t,e){var i=t;if(0==o||3==o)switch(p){case 10:case 7:case 8:case 9:i.cj=-1;break;case 6:i.cj=0}return i.cj},t.model.b4()&&(m.g=new S(0,0,n.m,t.model.bx.y,t.model.bx.x),m.e=new S(0,0,n.m,t.model.bw.y,t.model.bw.x)),c.g(m),4!=p&&9!=p||(m.ao=!0),t.dw.t(n,m)}}},n.prototype.aj=function(t,e,n,r,o){var s=this;if(null!=n&&null!=r){var a,l,u=this.p();this.x(u),n.a=2,r.a=1;var h=t.ay.f(r.o),c=t.ay.f(n.o);if(null!=h&&null!=c){a=null!=h.h6&&null!=h.h6.o?h.h6.o:null!=c.h6&&null!=c.h6.o?c.h6.o:null!=e&&null!=e.x?e.o:this.g.o,l=null!=h.h6&&null!=h.h6.p?h.h6.p:null!=c.h6&&null!=c.h6.p?c.h6.p:null!=e&&null!=e.p?e.p:this.g.p;var p=t.columnExchangingAnimationMode;0==p&&(p=h.he());var d=!1;2!=p&&7!=p||(d=!0),r.h=d?1:-1,this.k.containsKey(n.o)?(this.k.addItem(r.o,new i.List$1(i.Delegate_$type,0)),this.k.item(n.o).add((function(){n=t.model.h(n.o),r=t.model.h(r.o),null!=n&&null!=r&&(c.ht=2,n.a=2,h.ht=1,r.a=1,s.y(t,n,r,a,l,h,c,p,d,u))}))):(this.k.addItem(r.o,new i.List$1(i.Delegate_$type,0)),this.y(t,n,r,a,l,h,c,p,d,u))}}},n.prototype.y=function(t,e,n,r,o,s,a,l,u,h){var c=this;if(null!=e&&null!=n){var p=new Sn(1);p.effectsFinished=i.delegateCombine(p.effectsFinished,(function(o,l){var p=t.model.h(e.o),d=t.model.h(n.o),f=new Sn(1);f.effectsFinished=i.delegateCombine(f.effectsFinished,(function(i,r){if(a.ht=3,e.a=3,t.columns.remove(a),s.ht=5,n.a=5,t.model.b2=!1,t.xu(),c.k.containsKey(n.o)){var o=c.k.item(n.o);if(0==o.count)c.k.removeItem(n.o);else{var l=o._inner[0];o.removeAt(0),l()}}t.v6(s),c.w(h)})),f.effectsCanceled=i.delegateCombine(f.effectsCanceled,(function(e,i){t.model.b2=!1,t.v5(s),c.v(h)})),c.u(t,p,d,r,a,u,f),c.t(t,p,d,r,s,a,u,f)})),p.effectsCanceled=i.delegateCombine(p.effectsCanceled,(function(o,l){t.v5(s);var h=new Sn(1);h.effectsFinished=i.delegateCombine(h.effectsFinished,(function(i,n){a.ht=3,e.a=3,t.columns.remove(a),t.model.b2=!1,t.xu()})),h.effectsCanceled=i.delegateCombine(h.effectsCanceled,(function(e,i){return t.model.b2=!1}));var p=t.model.h(e.o),d=t.model.h(n.o);c.u(t,p,d,r,a,u,h)}));var d=new ur;d.t=1,d.bx(o),d.al=!0,p.g(d),0!=n.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(n,r,o,s,a){var u=o,h=r,c=s;switch(l){case 2:case 3:case 7:case 8:c.cn=h+(u-h)*n;break;case 4:case 5:case 9:case 10:c.cr=h+(u-h)*n}if(4==c.l.af){var p=t.gj.p(e,t),d=e.k;c.me=new i.Rect(0,p-c.cu,0,d,c.fu)}},d.o=function(t,e){var i=t,n=i.cn;switch(4!=l&&5!=l&&9!=l&&10!=l||(n=i.cr),6==l&&(n=0),l){case 2:case 7:case 6:i.cn=n,i.cm=0,i.cs=0,i.cr=0;break;case 3:case 8:i.cn=n,i.cm=0,i.cs=0,i.cr=0;break;case 4:case 9:n=i.cr,i.cr=n,i.cm=0,i.cn=0,i.cs=0;break;case 5:case 10:n=i.cr,i.cr=n,i.cm=0,i.cn=0,i.cs=0}return n},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=i.delegateCombine(d.onFinished,(function(t){})),4!=l&&9!=l||(d.ao=!0),t.dw.t(e,d);var m=new ur;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(n,r,o,s,a){var u=o,h=r,c=s;switch(l){case 2:case 3:case 7:case 8:c.cn=h+(u-h)*n;break;case 4:case 5:case 9:case 10:c.cr=h+(u-h)*n}if(4==c.l.af){var p=t.gj.p(e,t),d=e.k;c.me=new i.Rect(0,p-c.cu,0,d,c.fu)}},m.o=function(e,i){var n=e,r=n.cn;switch(4!=l&&5!=l&&9!=l&&10!=l||(r=n.cr),r=6==l?m.bq:0,l){case 2:case 7:case 6:n.cn=r,n.cm=0,n.cs=0,n.cr=0;break;case 3:case 8:n.cn=r,n.cm=0,n.cs=0,n.cr=0;break;case 4:case 9:r=1*(t.mf+t.model.c3),n.cr=r,n.cm=0,n.cn=1,n.cs=0;break;case 5:case 10:r=-1*(t.mf+t.model.c3),n.cr=r,n.cm=0,n.cn=1,n.cs=0}return r},t.model.b4()&&(m.g=new S(0,0,n.m,t.model.bx.y,t.model.bx.x),m.e=new S(0,0,n.m,t.model.bw.y,t.model.bw.x)),5!=l&&10!=l||(m.ao=!0),t.dw.t(n,m);var g=new ur;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,i,n,r){var o=i,s=e;n.co=s+(o-s)*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=i.delegateCombine(g.onFinished,(function(t){})),5!=l&&10!=l||(g.ao=!0),t.dw.t(e,g);var b=new ur;b.t=2,b.bx(o),b.al=!0,b.bq=1,p.g(b),b.x=function(t,e,i,n,r){var o=i,s=e;n.co=s+(o-s)*t},b.o=function(t,e){var i=t,n=i.co;return 6!=l&&10!=l&&8!=l&&7!=l&&9!=l||(n=0),i.co=n,n},t.model.b4()&&(b.g=new S(0,0,n.m,t.model.bx.y,t.model.bx.x),b.e=new S(0,0,n.m,t.model.bw.y,t.model.bw.x)),5!=l&&10!=l||(b.ao=!0),t.dw.t(n,b)}},n.prototype.u=function(t,e,i,n,r,o,s){var a=this;if(null!=e){var l=new ar;l.bx(n),l.al=!0,s.g(l),l.bq=o?-1:1,l.x=function(t,e,i,n,r){var o=i,s=e;n.h=s+(o-s)*t},l.o=function(t,n){return a.j(e,i)?(e.h=l.bq,l.bq):e.h},t.dw.u(e,l)}},n.prototype.t=function(t,e,i,n,r,o,s,a){var l=this;if(null!=i){var u=new ar;u.bx(n),u.al=!0,u.bq=0,a.g(u),u.x=function(t,e,i,n,r){var o=i,s=e;n.h=s+(o-s)*t},u.o=function(t,n){return l.j(e,i)?(i.h=u.bq,i.h):i.h},t.dw.u(i,u);var h=new ur;h.bx(n),h.al=!0,h.bq=0,a.g(h),h.x=function(t,e,i,n,r){var o=i,s=e;n.cn=s+(o-s)*t},h.o=function(t,n){var r=t;return l.j(e,i)?(r.cn=h.bq,r.cn):r.cn},t.dw.t(i,h)}},n.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)))))},n.prototype.ah=function(t,e,n,r){var o=this;if(null!=n){var s=t.ay.f(n.o);if(null!=s){var a,l=this.p();this.x(l),a=null!=s.h6&&null!=s.h6.v?s.h6.v:null!=e&&null!=e.v?e.v:this.g.v;var u=new ar;u.bx(a),u.al=!0,u.bq=r,u.onFinished=i.delegateCombine(u.onFinished,(function(t){return o.w(l)})),u.onCanceled=i.delegateCombine(u.onCanceled,(function(t,e){return o.v(l)})),u.x=function(t,e,n,r,o){var a,l=e+(n-e)*t,u=((a=new Rt).f=l,a.c=!1,a);i.isNaN_(s.j0)||(u.e=s.j0),s.width=u},u.o=function(t,e){return n.k},t.js(s)||(u.ba=0),t.dw.u(n,u)}}},n.prototype.al=function(t,e,r,o){var s=this;if(null!=r){var a,l,u=this.p();this.x(u);var h=t.ay.f(r.o);if(null!=h){a=null!=h.h6&&null!=h.h6.t?h.h6.t:null!=e&&null!=e.t?e.t:this.g.t,l=null!=h.h6&&null!=h.h6.s?h.h6.s:null!=e&&null!=e.w?e.s:this.g.s;var c=t.columnMovingAnimationMode,p=new Sn(1);p.effectsFinished=i.delegateCombine(p.effectsFinished,(function(e,i){for(var n=t.model.h(r.o),o=t.model.cb(n),a=0;a<o.count;a++)t.model.dk(o._inner[a]);h.ht=5,t.xu(),t.wc(h),s.w(u)})),p.effectsCanceled=i.delegateCombine(p.effectsCanceled,(function(e,i){t.wb(h),s.v(u)})),0==c&&(c=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(h.ki,t.model),g=!1;r.n<h.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 b=t.model.cb(r),y=0;y<b.count;y++)b._inner[y].e=!0;var v=r.m,C=null,_=t.model.cf;if(_._inner[v].count>0)for(var w=0;w<_._inner[v].count;w++)if(_._inner[v]._inner[w].n==r.o){C=_._inner[v]._inner[w];break}null!=C?C.e=!1:t.model.i(v,r,0,null==r.b||r.b.c,!g).e=!1;var P=h.kh,O=n.at(t.model,r,h,d,P),x=(d=O.p3)-(P=O.p4),j=-1*x;r.h=j/r.k,r.a=6;var k=new ar;k.bx(a),k.al=!0,k.bq=0;r.k;var I=!1,T=0,R=(r.m,t.gb.k(r.m,t,t.model)),A=this.n(t,r,r.m);R=this.q(t,r,R,t.model.cb(r),A),p.g(k),k.x=function(e,i,o,a,l){var u=o,c=i,p=a;if(p.h=c+(u-c)*e,p.k>0){var d=t.gb.l(p.m,l,!0);P=h.kh;var f=n.at(t.model,r,h,d,P);if((d=f.p3)-(P=f.p4)!=x){var m=d-P,g=T+(x-m)/p.k,b=g/(1-e);k.by(b,l,p.o),p.h=g,T=g,x=m,p.h=b+(u-b)*e}if(!I)for(var y=t.model.ca(p),v=0;v<y.count;v++){y._inner[v].cn+=T-p.h}T=p.h,p.m;var C=t.model.cb(p);A=s.n(t,p,p.m),R=s.q(t,p,R,C,A)}},k.o=function(t,e){return T=r.h,r.h},t.dw.u(r,k);var E=new ur;E.ar=!0,E.bx(l),E.al=!0,E.bq=0,p.g(E),E.x=function(t,e,i,n,r){if(t>0&&(I=!0),I){var o=e+(i-e)*t;n.cn=o}},E.o=function(t,e){return t.cn},t.model.b4()&&(E.g=new S(0,0,r.m,t.model.bx.y,t.model.bx.x),E.e=new S(0,0,r.m,t.model.bw.y,t.model.bw.x)),t.dw.t(r,E)}}},n.at=function(t,e,n,r,o){if(t.cm>t.cj&&(1==e.d?(o+=i.truncate(t.cj),r+=i.truncate(t.cm)):0==e.d&&1==n.ik&&(o+=i.truncate(t.cm),r+=i.truncate(t.cj))),t.cp<t.absoluteWidth-t.ck){var s=t.absoluteWidth-t.ck-t.cp;2==e.d?r-=i.truncate(s):0==e.d&&2==n.ik&&(o-=i.truncate(s))}return{p3:r,p4:o}},n.prototype.q=function(t,e,i,n,r){if(r>0){for(var o=0,s=0;s<n.count;s++)n._inner[s].e||r>n._inner[s].i&&(o=Math.abs(n._inner[s].i-r),n._inner[s].i=r);for(var a=0,l=0;l<n.count;l++)n._inner[l].e&&(a+=n._inner[l].i);var u=a-o;u<0&&(u=0);var h=1;h=0==a?0:u/a;for(var c=0;c<n.count;c++)n._inner[c].e&&(n._inner[c].i=n._inner[c].i*h)}return 0==e.o&&(i=t.gb.k(e.m,t,t.model)),i},n.prototype.n=function(t,e,i){var n=t.gb.l(i,t.model,!0),r=(e.k,t.gb.l(e.m,t.model,!1));return n>r?Math.max(0,r+e.k-n):Math.max(0,n+e.k-r)},n.prototype.ak=function(t,e,n,r,o){var s=this;if(null!=n){var a,l,u=this.p();this.x(u);var h=t.ay.f(n.o);if(null!=h){a=null!=h.h6&&null!=h.h6.q?h.h6.q:null!=e&&null!=e.q?e.q:this.g.q,l=null!=h.h6&&null!=h.h6.r?h.h6.r:null!=e&&null!=e.r?e.r:this.g.r;var c=t.columnHidingAnimationMode,p=new Sn(1);p.effectsFinished=i.delegateCombine(p.effectsFinished,(function(e,i){h.ht=3,n.a=3,h.jd&&(t.externalGrid.ensureColumnsAreManual(),t.externalGrid.removeExternalColumn(h.externalObject)),t.model.b2=!1,t.xu(),t.v8(h),s.w(u)})),p.effectsCanceled=i.delegateCombine(p.effectsCanceled,(function(e,i){t.model.b2=!1,t.v7(h),s.v(u)})),0==c&&(c=h.hf());var d=0;switch(c){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 ur;f.bx(a),f.t=1,f.al=!0,f.bq=d,p.g(f),f.x=function(e,r,o,s,a){var l=o,u=r,h=s;switch(c){case 2:case 3:case 7:case 8:h.cn=u+(l-u)*e;break;case 4:case 5:case 9:case 10:h.cr=u+(l-u)*e}if(4==h.l.af){var p=t.gj.p(n,t),d=n.k;h.me=new i.Rect(0,p-h.cu,0,d,h.fu)}},f.o=function(t,e){var i=t,n=i.cn;return 4!=c&&5!=c||(n=i.cr),n},t.model.b4()&&(f.g=new S(0,0,n.m,t.model.bx.y,t.model.bx.x),f.e=new S(0,0,n.m,t.model.bw.y,t.model.bw.x)),5!=c&&10!=c||(f.ao=!0),t.dw.t(n,f);var m=0;switch(c){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 ar;g.bx(l),g.al=!0,g.bq=m,p.g(g),g.x=function(t,e,i,n,r){var o=i,s=e;n.h=s+(o-s)*t},g.o=function(t,e){return n.h},t.dw.u(n,g);var b=new ur;b.t=2,b.bx(a),b.al=!0,b.bq=6==c||10==c||7==c||8==c||9==c?0:1,b.x=function(t,e,i,n,r){var o=e+(i-e)*t;o<0&&(o=0),n.cj=o},b.o=function(t,e){var i=t;if(0==o||3==o)switch(c){case 10:case 7:case 8:case 9:case 6:i.cj=1}return i.cj},t.model.b4()&&(b.g=new S(0,0,n.m,t.model.bx.y,t.model.bx.x),b.e=new S(0,0,n.m,t.model.bw.y,t.model.bw.x)),p.g(b),5!=c&&10!=c||(b.ao=!0),t.dw.t(n,b)}}},n.prototype.r=function(t,e,n,r,o,s,a){var l=this;if(t.model.b4()||1==t.filterUIType||11==a){var u=this.p();this.x(u);var h=this.g.u;null!=t.columnAnimationSettings&&null!=t.columnAnimationSettings.u&&(h=t.columnAnimationSettings.u);var c=t.columnPropertyUpdatingAnimationMode,p=new ur;p.bx(h),p.t=8,p.as=!0,0==a&&(p.v=5),7==a&&(p.v=6),8==a&&(p.v=7),p.bs=n,p.al=!0,p.bq=s,p.onFinished=i.delegateCombine(p.onFinished,(function(t){return l.w(u)})),p.onCanceled=i.delegateCombine(p.onCanceled,(function(t,e){return l.v(u)})),0==c&&(c=2),11==r&&(p.x=function(t,e,i,r,o){var s=r;s.w==a&&s.k9(n,i)}),5!=r&&4!=r&&9!=r&&8!=r&&(3==c||7!=r&&1!=r&&3!=r)||(p.x=function(t,e,i,r,o){var s=r;s.w==a&&(t>.5?s.k9(n,i):s.k9(n,e))}),3==c&&1==r&&(p.x=function(t,e,i,r,o){var s=r;if(s.w==a){null==e&&(e=0);var l=e+(i-e)*t;s.k9(n,l)}}),0==r&&(p.x=function(t,e,i,r,o){var s=r;if(s.w==a){null==e&&(e=0);var l=e+(i-e)*t;s.k9(n,l)}}),2==r&&(p.x=function(t,e,r,o,s){var l=o;if(l.w==a){null==e&&(e=i.BrushUtil.j(0,0,0,0));var u=e,h=r,c=i.BrushUtil.n(u,t,h,0);l.k9(n,c)}}),3==r&&(p.x=function(e,r,o,s,l){var u=s;if(u.w==a){var h=r,c=o;null!=h&&h.w(t.externalGrid.renderer),null!=c&&c.w(t.externalGrid.renderer);var p=new i.FontInfo;i.FontUtil.interpolateFont(p,e,h,c),u.k9(n,p)}}),6==r&&(p.x=function(t,e,r,o,s){var l=o;if(l.w==a){null==e&&(e=0);var u=i.typeGetValue(e),h=i.typeGetValue(r),c=i.truncate(Math.round(u+(h-u)*t));l.k9(n,c)}}),p.o=function(t,e){return t.hl(n)},t.model.b4()&&(4==a?(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==a||8==a||6==a?(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==a?t.dw.x(p):2==a||8==a||6==a?t.dw.y(p):t.dw.t(e,p)}},n.prototype.s=function(t,e,n,r,o,s,a,l,u,h){var c=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 ur;m.bx(d),m.t=8,m.as=!0,a&&(m.v=5),h&&(m.v=6),m.bs=n,m.al=!0,m.bq=s,m.onFinished=i.delegateCombine(m.onFinished,(function(t){return c.w(p)})),m.onCanceled=i.delegateCombine(m.onCanceled,(function(t,e){return c.v(p)})),0==f&&(f=2),11==r&&(m.x=function(t,e,i,r,o){var s=r;a==s.l.g&&(l&&!s.l.ay||!l&&s.l.ay||h&&!s.l.h||!h&&s.l.h||s.k9(n,i))}),5!=r&&4!=r&&9!=r&&8!=r&&(3==f||7!=r&&1!=r&&3!=r)||(m.x=function(t,e,i,r,o){var s=r;a==s.l.g&&(l&&!s.l.ay||!l&&s.l.ay||h&&!s.l.h||!h&&s.l.h||(t>.5?s.k9(n,i):s.k9(n,e)))}),3==f&&1==r&&(m.x=function(t,e,i,r,o){var s=r;if(a==s.l.g&&!(l&&!s.l.ay||!l&&s.l.ay||h&&!s.l.h||!h&&s.l.h)){null==e&&(e=0);var u=e+(i-e)*t;s.k9(n,u)}}),0==r&&(m.x=function(t,e,i,r,o){var s=r;if(a==s.l.g&&!(l&&!s.l.ay||!l&&s.l.ay||h&&!s.l.h||!h&&s.l.h)){null==e&&(e=0);var u=e+(i-e)*t;s.k9(n,u)}}),2==r&&(m.x=function(t,e,r,o,s){var u=o;if(a==u.l.g&&!(l&&!u.l.ay||!l&&u.l.ay||h&&!u.l.h||!h&&u.l.h)){null==e&&(e=i.BrushUtil.j(0,0,0,0));var c=e,p=r,d=i.BrushUtil.n(c,t,p,0);u.k9(n,d)}}),3==r&&(m.x=function(e,r,o,s,u){var c=s;if(a==c.l.g&&!(l&&!c.l.ay||!l&&c.l.ay||h&&!c.l.h||!h&&c.l.h)){var p=r,d=o;null!=p&&p.w(t.externalGrid.renderer),null!=d&&d.w(t.externalGrid.renderer);var f=new i.FontInfo;i.FontUtil.interpolateFont(f,e,p,d),c.k9(n,f)}}),6==r&&(m.x=function(t,e,r,o,s){var u=o;if(a==u.l.g&&!(l&&!u.l.ay||!l&&u.l.ay||h&&!u.l.h||!h&&u.l.h)){null==e&&(e=0);var c=i.typeGetValue(e),p=i.typeGetValue(r),d=i.truncate(Math.round(c+(p-c)*t));u.k9(n,d)}}),m.o=function(t,e){return t.hl(n)},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)}},n.prototype.am=function(t,e,n){var r=this,o=this.p();this.x(o);var s=this.e,a=(t.model,new Sn(1));a.effectsCanceled=i.delegateCombine(a.effectsCanceled,(function(t,e){return r.v(o)})),a.effectsFinished=i.delegateCombine(a.effectsFinished,(function(t,e){return r.w(o)}));for(var l=e;l<=n;l++){var u=new dr;a.g(u),u.t=7,u.bx(s),u.al=!0,u.bq=1,u.x=function(t,e,i,n,r){},u.o=function(e,i){var n=e;if(n.l.aj){var r=t.e7.getDataRow(n.l);if(n.fb=r,-1==r)return n.j1;var o=t.e7.getRowType(r);if(n.bm(o)){var s=t.e7.resolveValueForPath(t,n.l),a=t.q0(n.l,t,s,r);t.wx(n,s,t.e7.resolveRow(r),a)}}return n.j1};var h=t.fu(l);t.model.b4()&&(u.g=new S(0,0,t.model.c8,h.y,h.x),u.e=new S(0,0,t.model.db,h.y,h.x)),t.kd||(u.ba=0),t.dw.v(h,u)}},n.prototype.ai=function(t,e){var n=this;if(null!=e){var r=this.p();this.x(r);var o=this.d,s=(t.model,new Sn(1));if(s.effectsFinished=i.delegateCombine(s.effectsFinished,(function(t,e){return n.w(r)})),s.effectsCanceled=i.delegateCombine(s.effectsCanceled,(function(t,e){return n.v(r)})),null!=t.ay.f(e.o)){var a=new ar;s.g(a),a.bx(o),a.al=!0,a.bq=1,a.x=function(t,e,i,n,r){},a.o=function(e,i){var n=e;return n.g=0,n.h=0,n.j=0,t.xu(),n.g},t.dw.u(e,a);var l=new ur;s.g(l),l.t=1,l.bx(o),l.al=!0,l.bq=1,l.x=function(t,e,i,n,r){},l.o=function(t,e){var i=t;return i.cm=0,i.cn=0,i.cr=0,i.cs=0,i.cj=1,i.cm},t.dw.t(e,l)}}},n.prototype.z=function(t,e,n,r){var o=this,s=this.p();this.x(s);var a=this.f.f;null!=t.animationSettings&&null!=t.animationSettings.f&&(a=t.animationSettings.f);var l=t.cellDataLoadedAnimationMode,u=t.model,h=new Sn(1);h.effectsFinished=i.delegateCombine(h.effectsFinished,(function(t,e){return o.w(s)})),h.effectsCanceled=i.delegateCombine(h.effectsCanceled,(function(t,e){return o.v(s)}));for(var c=0;c<u.b9.count;c++){var p=u.b9._inner[c];if(null!=t.ay.f(p.o)){var d=new ur;h.g(d),d.t=3,d.bx(a),d.al=!0,d.bq=0,0==l&&(l=2),d.x=function(e,i,n,r,o){var s=r,a=i,l=n;if(s.l.aj){t.cf(s.l);t.e7.isPlaceholderValue(s.l)&&(e=0)}s.ct=a+(l-a)*e},d.o=function(e,i){var n=e;if(n.l.aj){var r=t.e7.getDataRow(n.l);if(n.fb=r,-1==r)return n.ct;var o=t.e7.resolveValueForPath(t,n.l),s=!1;if(null==o&&t.e7.isPlaceholderValue(n.l)&&(s=!0),n.bm(t.e7.getRowType(n.l.x))){var a=t.q0(n.l,t,o,r);t.wx(n,o,t.e7.resolveRow(r),a)}s&&(n.ct=1)}else if(n.l.am){var l=t.q0(n.l,t,null,-1);t.wx(n,null,null,l)}return n.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)}}},n.prototype.ag=function(t,e,n,r,o){var s=this,a=this.p();this.x(a);var l=this.f.f;null!=t.animationSettings&&null!=t.animationSettings.f&&(l=t.animationSettings.f);var u=t.cellDataLoadedAnimationMode,h=t.model;if(!(r<0||r>=h.b9.count)){var c=h.b9._inner[r];if(null!=t.ay.f(c.o)){var p=new ur;p.onFinished=i.delegateCombine(p.onFinished,(function(t){return s.w(a)})),p.onCanceled=i.delegateCombine(p.onCanceled,(function(t,e){return s.v(a)})),p.t=3,p.bx(l),p.al=!0,p.bq=0,0==u&&(u=2),p.x=function(e,i,n,r,o){var s=r,a=i,l=n;if(s.l.aj){t.cf(s.l);t.e7.isPlaceholderValue(s.l)&&(e=0)}s.ct=a+(l-a)*e},p.o=function(e,i){var n=e;if(n.l.aj){var r=t.e7.getDataRow(n.l);if(n.fb=r,-1==r)return n.ct;var o=t.e7.resolveValueForPath(t,n.l),s=!1;if(null==o&&t.e7.isPlaceholderValue(n.l)&&(s=!0),n.bm(t.e7.getRowType(n.l.x))){var a=t.q0(n.l,t,o,r);t.wx(n,o,t.e7.resolveRow(r),a)}s&&(n.ct=1)}else if(n.l.am){var l=t.q0(n.l,t,null,-1);t.wx(n,null,null,l)}return n.ct},t.model.b4()&&(p.g=new S(0,0,c.m,t.model.bx.y,t.model.bx.x),p.e=new S(0,0,c.m,t.model.bw.y,t.model.bw.x)),t.jg&&!o||(p.ba=0),t.dw.t(c,p)}}},n.prototype.ao=function(t,e){var n=this,r=this.p();this.x(r);var o=this.f.h;null!=t.columnAnimationSettings&&null!=t.animationSettings.h&&(o=t.animationSettings.h);var s=t.rowSelectionAnimationMode,a=(t.model,new dr);a.onFinished=i.delegateCombine(a.onFinished,(function(t){return n.w(r)})),a.onCanceled=i.delegateCombine(a.onCanceled,(function(t,e){return n.v(r)})),a.t=5,a.bx(o),a.al=!0,a.bq=1,0==s&&(s=2),a.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cq=s+(a-s)*t:o.cq=0},a.o=function(t,e){return t.cq};var l=t.fu(e);t.model.b4()&&(a.g=new S(0,0,t.model.c8,l.y,l.x),a.g.d=t.model.b9._inner[t.model.c8].d,a.e=new S(0,0,t.model.db,l.y,l.x),a.e.d=t.model.b9._inner[t.model.db].d),t.kd&&!t.dragger.isDragActive||(a.ba=0),t.dw.v(l,a)},n.prototype.aq=function(t,e){var n=this,r=this.p();this.x(r);var o=this.f.h;null!=t.columnAnimationSettings&&null!=t.animationSettings.h&&(o=t.animationSettings.h);var s=t.rowSelectionAnimationMode,a=(t.model,new dr);a.onFinished=i.delegateCombine(a.onFinished,(function(t){return n.w(r)})),a.onCanceled=i.delegateCombine(a.onCanceled,(function(t,e){return n.v(r)})),a.t=5,a.bx(o),a.al=!0,a.bq=0,0==s&&(s=2),a.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cq=s+(a-s)*t:o.cq=0},a.o=function(t,e){return t.cq};var l=t.fu(e);t.model.b4()&&(a.g=new S(0,0,t.model.c8,l.y,l.x),a.g.d=t.model.b9._inner[t.model.c8].d,a.e=new S(0,0,t.model.db,l.y,l.x),a.e.d=t.model.b9._inner[t.model.db].d),t.kd&&!t.dragger.isDragActive||(a.ba=0),t.dw.v(l,a)},n.prototype.ae=function(t,e,n,r){var o=this,s=this.p();this.x(s);var a=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(a=t.animationSettings.h);t.model;var l=new hr;l.onFinished=i.delegateCombine(l.onFinished,(function(t){return o.w(s)})),l.onCanceled=i.delegateCombine(l.onCanceled,(function(t,e){return o.v(s)})),l.t=5,l.bx(a),l.al=!0,l.bq=1,l.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cq=s+(a-s)*t:o.cq=0},l.o=function(t,e){return t.cq};var u=new S(1,n,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)},n.prototype.aa=function(t,e,n,r){var o=this,s=this.p();this.x(s);var a=this.f.e;null!=t.animationSettings&&null!=t.animationSettings.e&&(a=t.animationSettings.e);t.model;var l=new hr;l.onFinished=i.delegateCombine(l.onFinished,(function(t){return o.w(s)})),l.onCanceled=i.delegateCombine(l.onCanceled,(function(t,e){return o.v(s)})),l.t=9,l.bx(a),l.al=!0,l.bq=1,l.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cf=s+(a-s)*t:o.cf=0},l.o=function(t,e){return t.cf};var u=new S(1,n,0,e);t.model.b4()&&(l.g=new S(0,0,n,u.y,u.x),l.e=new S(0,0,n,u.y,u.x)),t.dw.r(u,l,r)},n.prototype.af=function(t,e,n,r){var o=this,s=this.p();this.x(s);var a=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(a=t.animationSettings.h);t.model;var l=new hr;l.onFinished=i.delegateCombine(l.onFinished,(function(t){return o.w(s)})),l.onCanceled=i.delegateCombine(l.onCanceled,(function(t,e){return o.v(s)})),l.t=5,l.bx(a),l.al=!0,l.bq=0,l.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cq=s+(a-s)*t:o.cq=0},l.o=function(t,e){return t.cq};var u=new S(1,n,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)},n.prototype.ab=function(t,e,n,r){var o=this,s=this.p();this.x(s);var a=this.f.e;null!=t.animationSettings&&null!=t.animationSettings.e&&(a=t.animationSettings.e);t.model;var l=new hr;l.onFinished=i.delegateCombine(l.onFinished,(function(t){return o.w(s)})),l.onCanceled=i.delegateCombine(l.onCanceled,(function(t,e){return o.v(s)})),l.t=9,l.bx(a),l.al=!0,l.bq=0,l.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cf=s+(a-s)*t:o.cf=0},l.o=function(t,e){return t.cf};var u=new S(1,n,0,e);t.model.b4()&&(l.g=new S(0,0,n,u.y,u.x),l.e=new S(0,0,n,u.y,u.x)),t.dw.r(u,l,r)},n.prototype.ac=function(t,e,n){var r=this,o=this.p();this.x(o);var s=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(s=t.animationSettings.h);t.model;var a=new cr;a.onFinished=i.delegateCombine(a.onFinished,(function(t){return r.w(o)})),a.onCanceled=i.delegateCombine(a.onCanceled,(function(t,e){return r.v(o)})),a.t=5,a.bx(s),a.al=!0,a.bq=1,a.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cq=s+(a-s)*t:o.cq=0},a.o=function(t,e){return t.cq};var l=new S(1,n,0,e);t.model.b4()&&(a.g=new S(0,0,t.model.c8,l.y,l.x),a.e=new S(0,0,t.model.db,l.y,l.x)),t.jh&&!t.dragger.isDragActive||(a.ba=0),t.dw.s(l,a)},n.prototype.ad=function(t,e,n){var r=this,o=this.p();this.x(o);var s=this.f.h;null!=t.animationSettings&&null!=t.animationSettings.h&&(s=t.animationSettings.h);t.model;var a=new cr;a.onFinished=i.delegateCombine(a.onFinished,(function(t){return r.w(o)})),a.onCanceled=i.delegateCombine(a.onCanceled,(function(t,e){return r.v(o)})),a.t=5,a.bx(s),a.al=!0,a.bq=0,a.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cq=s+(a-s)*t:o.cq=0},a.o=function(t,e){return t.cq};var l=new S(1,n,0,e);t.model.b4()&&(a.g=new S(0,0,t.model.c8,l.y,l.x),a.e=new S(0,0,t.model.db,l.y,l.x)),t.jh&&!t.dragger.isDragActive||(a.ba=0),t.dw.s(l,a)},n.prototype.an=function(t,e){var n=this,r=this.p();this.x(r);var o=this.f.g;null!=t.columnAnimationSettings&&null!=t.animationSettings.g&&(o=t.animationSettings.g);var s=new dr;s.onFinished=i.delegateCombine(s.onFinished,(function(t){return n.w(r)})),s.onCanceled=i.delegateCombine(s.onCanceled,(function(t,e){return n.v(r)})),s.t=6,s.bx(o),s.al=!0,s.bq=1,s.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj&&o.be?o.cl=s+(a-s)*t:o.cl=0},s.o=function(t,e){return t.cl};var a=t.fu(e);t.model.b4()&&(s.g=new S(0,0,t.model.c8,a.y,a.x),s.g.d=t.model.b9._inner[t.model.c8].d,s.e=new S(0,0,t.model.db,a.y,a.x),s.e.d=t.model.b9._inner[t.model.db].d),t.kb||(s.ba=0),t.dw.v(a,s)},n.prototype.ap=function(t,e){var n=this,r=this.p();this.x(r);var o=this.f.g;null!=t.columnAnimationSettings&&null!=t.animationSettings.g&&(o=t.animationSettings.g);var s=new dr;s.onFinished=i.delegateCombine(s.onFinished,(function(t){return n.w(r)})),s.onCanceled=i.delegateCombine(s.onCanceled,(function(t,e){return n.v(r)})),s.t=6,s.bx(o),s.al=!0,s.bq=0,s.x=function(t,e,i,n,r){var o=n,s=e,a=i;o.l.aj?o.cl=s+(a-s)*t:o.cl=0},s.o=function(t,e){return t.cl};var a=t.fu(e);t.model.b4()&&(s.g=new S(0,0,t.model.c8,a.y,a.x),s.g.d=t.model.b9._inner[t.model.c8].d,s.e=new S(0,0,t.model.db,a.y,a.x),s.e.d=t.model.b9._inner[t.model.db].d),t.kb||(s.ba=0),t.dw.v(a,s)},n.$t=i.markType(n,"GridAnimationManager"),n.o=0,n}(i.Base),fn=function(t){function n(){var e=t.call(this)||this;e.g=null,e.ac=null,e.n=!1,e.h=new ai,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=i.Guid.newGuid().toString();var n=e.h;return n.collectionChanged=i.delegateCombine(n.collectionChanged,i.runOn(e,e.am)),e}return e.__extends(n,t),n.prototype.get_s=function(){return!1},Object.defineProperty(n.prototype,"s",{get:function(){return this.get_s()},enumerable:!1,configurable:!0}),n.prototype.am=function(t,n){var r,o;if(null!=n.newItems)try{for(var s=e.__values(i.fromEn(n.newItems)),a=s.next();!a.done;a=s.next()){a.value;this.g}}catch(t){r={error:t}}finally{try{a&&!a.done&&(o=s.return)&&o.call(s)}finally{if(r)throw r.error}}this.o=!0},Object.defineProperty(n.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(n.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(n.prototype,"properties",{get:function(){return this.h},enumerable:!1,configurable:!0}),n.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])},n.prototype.z=function(){if(this.o){if(this.o=!1,this.y=null,this.aa=null,this.w&&(null==this.y&&(this.y=new i.HashSet$1(i.String_$type,0),this.aa=new i.List$1(i.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 i.HashSet$1(i.String_$type,0),this.aa=new i.List$1(i.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(n.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(n.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}),n.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(n.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(n.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(n.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}),n.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},n.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},n.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},n.prototype.ao=function(t,e,n){this.ap(t,e,n),null!=this.propertyUpdated&&this.propertyUpdated(this,new i.PropertyUpdatedEventArgs(t,e,n)),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.ap=function(t,e,i){switch(t){case"ConditionString":case"Condition":this.d=this.f();break;case"IsTransitionInEnabled":this.o=!0}},n.prototype.f=function(){if(null!=this.e)return this.e;if(null==this.c&&null!=this.ae){var t=i.FilterExpressionParsingHelper.getFilterExpression(this.ae);if(!i.stringIsNullOrEmpty(t.errors))return null!=this.filterStringErrorsParsing&&this.filterStringErrorsParsing(this,((e=new oi).propertyName="ConditionString",e.errors=t.errors,e)),null;this.c=t.result}var e;return this.c},n.$t=i.markType(n,"GridConditionalStyle",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),mn=function(t){function n(){return t.call(this,fn.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"GridConditionalStyleCollection",i.ObservableCollection$1.$.specialize(fn.$)),n}(i.ObservableCollection$1),gn=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"a",{get:function(){return i.FilterFactory.instance},enumerable:!1,configurable:!0}),n.prototype.h=function(t){null!=this.filterRequested&&this.filterRequested(this,t)},n.$t=i.markType(n,"FilterOperand"),n}(i.Base),bn=function(t){function n(){return t.call(this,gn.$,0)||this}return e.__extends(n,t),n.prototype.af=function(t){this.collectionChanged=i.delegateCombine(this.collectionChanged,t)},n.prototype.ag=function(t){this.collectionChanged=i.delegateRemove(this.collectionChanged,t)},Object.defineProperty(n.prototype,"ae",{get:function(){return this},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridFilterOperandsCollection",i.ObservableCollection$1.$.specialize(gn.$)),n}(i.ObservableCollection$1),yn=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.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(n.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(n.prototype,"j",{get:function(){return this.i},set:function(t){this.i=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"d",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CellKey"),n}(i.Base),vn=function(t){function n(){return t.call(this,yn.$,0)||this}return e.__extends(n,t),n.prototype.an=function(t){this.collectionChanged=i.delegateCombine(this.collectionChanged,t)},n.prototype.ao=function(t){this.collectionChanged=i.delegateRemove(this.collectionChanged,t)},Object.defineProperty(n.prototype,"am",{get:function(){return this},enumerable:!1,configurable:!0}),n.prototype.ai=function(t,e){for(var i=0;i<this.count;i++)if(null!=this._inner[i].primaryKey&&this._inner[i].primaryKey.equals(t)&&null!=this._inner[i].b&&this._inner[i].b.ko==e)return this._inner[i];return null},n.prototype.aj=function(t,e){for(var i=0;i<this.count;i++)if(this._inner[i].primaryKey.equals(t)&&this._inner[i].j==e)return this._inner[i];return null},n.prototype.ak=function(t,e){for(var i=0;i<this.count;i++)if(this._inner[i].h==t&&this._inner[i].j==e)return this._inner[i];return null},n.prototype.ae=function(t,e){return this.af(t,e.lt())},n.prototype.af=function(t,e){if(null!=this.aj(t,e))return null;var i=new yn;return i.primaryKey=t,i.j=e,this.add(i),i},n.prototype.ag=function(t,e){return this.ah(t,e.lt())},n.prototype.ah=function(t,e){if(null!=this.ak(t,e))return null;var i=new yn;return i.h=t,i.j=e,this.add(i),i},n.prototype.al=function(t,e){var i=this.ai(t,e);return null!=i&&this.remove(i),i},n.$t=i.markType(n,"GridSelectedCellsCollection",i.ObservableCollection$1.$.specialize(yn.$)),n}(i.ObservableCollection$1),Cn=function(t){function n(){var e=t.call(this)||this;e.a3=new i.HashSet$1(fn.$,0),e.ay=new i.Dictionary$2(i.String_$type,i.List$1.$.specialize(fn.$),0),e.a2=new i.HashSet$1(fn.$,0),e.az=new i.Dictionary$2(fn.$,i.List$1.$.specialize(i.Number_$type),0),e.ax=new i.Dictionary$2(i.Number_$type,fn.$,0),e.cl=null,e.x=null,e.fu=null,e.v=new mn,e.fx=null,e.fj=null,e.fy=null,e.fo=null,e.bw=i.truncate(i.DeviceUtils.g(0)),e.by=i.truncate(i.DeviceUtils.g(0)),e.bx=i.truncate(i.DeviceUtils.g(0)),e.bv=i.truncate(i.DeviceUtils.g(0)),e.bo=i.truncate(i.DeviceUtils.g(1)),e.bq=i.truncate(i.DeviceUtils.g(1)),e.bp=i.truncate(i.DeviceUtils.g(1)),e.bn=i.truncate(i.DeviceUtils.g(1)),e.b0=i.truncate(i.DeviceUtils.g(2)),e.b2=i.truncate(i.DeviceUtils.g(2)),e.b1=i.truncate(i.DeviceUtils.g(2)),e.bz=i.truncate(i.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 i.List$1(i.String_$type,0),e.a7=new i.List$1(fn.$,0),e.al=!1,e.a=null,e.dataBinding=null,e.dataBound=null,e.propertyChanged=null,e.ak=!1,e.a1=new i.HashSet$1(i.String_$type,0),e.a5=new i.List$1(i.String_$type,0),e.a0=new i.Dictionary$2(i.String_$type,xt,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=I.bm;var n=e.conditionalStyles;return n.collectionChanged=i.delegateCombine(n.collectionChanged,i.runOn(e,e.ef)),e}return e.__extends(n,t),n.prototype.ef=function(t,e){if(this.am=this.conditionalStyles.count>0,null!=e.oldItems)for(var i=0;i<e.oldItems.count;i++)this.ep(e.oldItems.item(i));if(null!=e.newItems)for(var n=0;n<e.newItems.count;n++){var r=e.newItems.item(n);this.em(r)}if(null!=this.grid&&this.grid.invalidateVisibleRows(),null!=e.newItems)for(var o=0;o<e.newItems.count;o++){var s=e.newItems.item(o);s.x()&&this.at(s)?this.ez(s):this.eg(s,!1)}},n.prototype.ez=function(t){this.a3.add_1(t),this.e0(t)},n.prototype.e0=function(t){},n.prototype.ct=function(){return null},n.prototype.cs=function(){return null},n.prototype.cr=function(){return null},n.prototype.eh=function(t,e){if(0!=this.a3.count){this.fb();for(var i=!1,n=0;n<this.conditionalStyles.count;n++){var r=this.conditionalStyles._inner[n];this.a3.contains(r)&&(this.at(r)||(i=!0,this.a3.remove(r),this.eg(r,!1)))}i&&this.grid.xq()}},n.prototype.fb=function(){null!=this.cs()&&(null==this.a&&(this.a=new i.FilterExpressionEnvironment),this.a.setVariableValue("columnMinimum",this.cs())),null!=this.cr()&&(null==this.a&&(this.a=new i.FilterExpressionEnvironment),this.a.setVariableValue("columnMaximum",this.cr()))},n.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(),i=0;i<e.count;i++)this.ep(e._inner[i])},n.prototype.ex=function(t){var n,r,o,s,a=new i.List$1(i.String_$type,0);try{for(var l=e.__values(i.fromEnum(this.ay.keys)),u=l.next();!u.done;u=l.next()){var h=u.value;if(i.stringContains(h,"@@@"))for(var c=this.bb(h),p=0;p<c.count;p++)i.Base.equalsStatic(c._inner[p],t)&&a.add(h)}}catch(t){n={error:t}}finally{try{u&&!u.done&&(r=l.return)&&r.call(l)}finally{if(n)throw n.error}}try{for(var d=e.__values(i.fromEnum(a)),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&&(s=d.return)&&s.call(d)}finally{if(o)throw o.error}}},n.prototype.em=function(t){if(t.propertyUpdated=i.delegateCombine(t.propertyUpdated,i.runOn(this,this.ei)),null!=t.ak&&(this.ay.item(t.ak,((r=new i.List$1(fn.$,0)).add(t),r)),t.s))for(var e=t.aq(),n=0;n<e.count;n++)this.em(e._inner[n]);var r},n.prototype.eg=function(t,e){var i=this;if(t.w){var n=this.grid.columnPropertyUpdatingAnimationMode,r=!1;this.ao("transition@@@"+t.ak+"@@@handler")||this.e1("transition@@@"+t.ak+"@@@handler",10,(function(e,n){var r=t;i.ee(r,n,n.hm,n.hn)}));var o=NaN;this.ao("transition@@@"+t.ak)&&(o=this.co("transition@@@"+t.ak));var s=0;e&&(s=1),this.ao("transition@@@"+t.ak)&&(e||1!=o)||this.e1("transition@@@"+t.ak,0,s),null!=this.grid&&1==this.grid.columnPropertyUpdatingAnimationMode&&(r=!0,this.grid.columnPropertyUpdatingAnimationMode=2);var a=1;e&&(a=0),this.e1("transition@@@"+t.ak,0,a),r&&(this.grid.columnPropertyUpdatingAnimationMode=n)}},n.prototype.e3=function(t){var n,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=i.delegateCombine(o.animationCompleted,i.runOn(this,this.ed));var s=this.grid.c5;s.animationCanceled=i.delegateCombine(s.animationCanceled,i.runOn(this,this.ec)),this.grid.c5.as()}if(this.eg(t,!0),null!=this.grid&&t.w){var a=this.grid.c5.m(),l=new i.List$1(i.Number_$type,0);try{for(var u=e.__values(i.fromEnum(a)),h=u.next();!h.done;h=u.next()){var c=h.value;l.add(c),this.ax.item(c,t)}}catch(t){n={error:t}}finally{try{h&&!h.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}this.az.item(t,l)}}},n.prototype.ec=function(t,e){this.ek(e.a)},n.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 n=this.az.item(e);if(n.remove(t),0==n.count&&(this.az.removeItem(e),this.conditionalStyles.remove(e),null!=this.grid&&0==this.ax.count)){var r=this.grid.c5;r.animationCanceled=i.delegateRemove(r.animationCanceled,i.runOn(this,this.ec));var o=this.grid.c5;o.animationCompleted=i.delegateRemove(o.animationCompleted,i.runOn(this,this.ed))}}else this.conditionalStyles.remove(e)}},n.prototype.ed=function(t,e){this.ek(e.a)},n.prototype.e2=function(t){var n,r;if(this.a2.contains(t)){if(this.az.containsKey(t)){var o=this.az.item(t);try{for(var s=e.__values(i.fromEnum(o)),a=s.next();!a.done;a=s.next()){var l=a.value;this.ax.containsKey(l)&&this.ax.removeItem(l)}}catch(t){n={error:t}}finally{try{a&&!a.done&&(r=s.return)&&r.call(s)}finally{if(n)throw n.error}}if(this.az.removeItem(t),null!=this.grid&&0==this.ax.count){var u=this.grid.c5;u.animationCanceled=i.delegateRemove(u.animationCanceled,i.runOn(this,this.ec));var h=this.grid.c5;h.animationCompleted=i.delegateRemove(h.animationCompleted,i.runOn(this,this.ed))}}this.a2.remove(t)}t.x()&&this.at(t)?this.ez(t):this.eg(t,!1)},n.prototype.as=function(t){return this.a2.contains(t)},n.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,((n=new i.List$1(fn.$,0)).add(t),n))}var n},Object.defineProperty(n.prototype,"externalObject",{get:function(){return this.cl},set:function(t){var e=this.cl;this.cl=t,this.x=i.typeCast(Bn,this.cl),this.cl!=e&&this.et("ExternalObject",10,e,this.cl)},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"conditionalStyles",{get:function(){return this.v},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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}),n.prototype.er=function(t,e){if(null!=t){if(t.propertyChanged=i.delegateRemove(t.propertyChanged,i.runOn(this,this.es)),null!=t&&0==this.ax.count){var n=t.c5;n.animationCanceled=i.delegateRemove(n.animationCanceled,i.runOn(this,this.ec));var r=t.c5;r.animationCompleted=i.delegateRemove(r.animationCompleted,i.runOn(this,this.ed)),this.ax.clear(),this.az.clear(),this.a2.clear()}t.rootSummariesChanged=i.delegateRemove(t.rootSummariesChanged,i.runOn(this,this.eh))}if(null!=e&&(e.propertyChanged=i.delegateCombine(e.propertyChanged,i.runOn(this,this.es)),e.rootSummariesChanged=i.delegateCombine(e.rootSummariesChanged,i.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)},n.prototype.eq=function(t,e){},n.prototype.es=function(t,e){switch(e.propertyName){case"IsActiveCellStyleEnabled":this.e4()}},Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"g",{get:function(){return this.d},set:function(t){var e=this.d;this.d=t,this.d!=e&&this.et("HorizontalAlignment",10,i.enumGetBox(l,e),i.enumGetBox(l,this.d))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,this.i!=e&&this.et("VerticalAlignment",10,i.enumGetBox(h,e),i.enumGetBox(h,this.i))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,this.c!=e&&this.et("ActualHorizontalAlignment",4,i.enumGetBox(l,e),i.enumGetBox(l,this.c))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,this.h!=e&&this.et("VerticalAlignment",4,i.enumGetBox(h,e),i.enumGetBox(h,this.h))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ac",{get:function(){return this.aa},set:function(t){var e=this.aa;this.aa=t,this.aa!=e&&this.et("LineBreakMode",10,i.enumGetBox(p,e),i.enumGetBox(p,this.aa))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ab",{get:function(){return this.z},set:function(t){var e=this.z;this.z=t,this.z!=e&&this.et("ActualLineBreakMode",4,i.enumGetBox(p,e),i.enumGetBox(p,this.z))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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}),n.prototype.m=function(t,e){var i=this.n(t);i.kc=e;var n=this.ba(e);return null!=n&&i.km(n),i},n.prototype.ba=function(t){if(this.am){return this.a9(t)}return null},n.prototype.bb=function(t){this.a6.clear();for(var e=!0;i.stringContains(t,"@@@");){var n=t.indexOf("@@@"),r=t.substr(n+3),o=t.substr(0,n);e?e=!1:this.a6.add(o),t=r}return this.a6.add(t),this.a6},n.prototype.a9=function(t){var e=this,n=null;if(function(){var i=e.ay.tryGetValue(t,n);return n=i.p1,i.ret}())return n;if(i.stringContains(t,"@@@")){var r=this.bb(t);n=new i.List$1(fn.$,0);for(var o=null,s=function(t){var i=r._inner[t];if(function(){var t=e.ay.tryGetValue(i,o);return o=t.p1,t.ret}())for(var s=0;s<o.count;s++)n.add(o._inner[s])},a=0;a<r.count;a++)s(a);this.ay.item(t,n)}return n},n.prototype.eu=function(t,e,i,n){for(var r=0;r<t.count;r++){var o=t._inner[r];if(null!=o.ak&&this.aw(o,e,i,n)&&(this.a7.add(o),o.s)){var s=o.aq();this.eu(s,e,i,n)}}},n.prototype.d1=function(t,e,i,n){var r=this.d2(t,e,i);if(this.am&&null!=e.actualDataSource){this.a7.clear();var o=e.e7.resolveRow(n);if(this.eu(this.conditionalStyles,e,i,o),this.a7.count>0)for(var s=0;s<this.a7.count;s++){var a=this.a7._inner[s];r=null!=r?r+"@@@"+a.ak:a.ak}}if(null==this.cellStyleKeyRequested)return r;var l=new li;return l.resolvedValue=i,l.rowNumber=n,l.styleKey=r,this.cellStyleKeyRequested(this,l),l.styleKey},n.prototype.aw=function(t,e,i,n){if(null==t.d)return!0;if(null==e.actualDataSource)return!1;var r=n;return null!=e.actualDataSource.resolvedDataProvider&&!!t.d.matchWithEnvironment(r,e.actualDataSource.resolvedDataProvider,e.actualDataSource.actualSchema,this.b(t,i))},n.prototype.el=function(t,e,i,n){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=I.a8,null==t.c&&(t.c=new ki(e,t)),null==t.e&&(t.e=new Ti(e,t)),null==t.d&&(t.d=new Ri(t))},n.prototype.en=function(t,e,i,n){if(null!=this.dataBinding){var r=this.p(t,e,i,n);this.dataBinding(this,r),i=r.resolvedValue,n=r.rowObject}if(t.ay=!0,this.eo(t,e,i,n),t.ay=!1,this.am)for(var o=0;o<this.conditionalStyles.count;o++){var s=this.conditionalStyles._inner[o];s.x()&&this.at(s)||this.aw(s,e,i,n)&&this.ee(s,t,i,n)}null!=this.dataBound&&this.dataBound(this,this.p(t,e,i,n))},n.prototype.at=function(t){return!0},n.prototype.ee=function(t,e,n,r){if(!this.al&&null!=t){this.al=!0;for(var o=0;o<t.properties.count;o++){var s=t.properties._inner[o];if(s.as){if(s.an){s.an=!1;var a=e.kl(s.b9);s.a8=i.PlatformAPIHelper.n(a,s.bc)}if(s.am)if(s.am=!1,null!=s.d){for(var l=new i.List$1(i.Base.$,0),u=e.kl(s.b9),h=0;h<s.d.length;h++){var c=i.PlatformAPIHelper.n(u,s.d[o]);l.add1(c)}s.c=l.toArray()}else s.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)),s.aj){case 0:if(t.w&&1!=p){var d=e.hk("underlying_"+s.b9),f=this.cn(p,s,e,d,s.a8);e.k9(s.b9,f)}else e.k9(s.b9,s.a8);break;case 1:var m=this.bj(t,s,n,r),g=this.bl(t,s,n),b=this.bk(t,s,n);if(i.isNaN_(m)||i.isNaN_(g)||i.isNaN_(b))break;var y=(m-g)/(b-g);if(y<0&&(y=0),y>1&&(y=1),!i.isNaN_(y))if(t.w&&1!=p){var v=e.hk("underlying_"+s.b9),C=this.cn(p,s,e,v,y);e.k9(s.b9,C)}else e.k9(s.b9,y);break;case 2:var _=this.bj(t,s,n,r),w=this.bl(t,s,n),S=this.bk(t,s,n),P=null;if(i.isNaN_(_)||i.isNaN_(w)||i.isNaN_(S))break;if(null!=(P=null!=s.f?this.gs(s,_,w,S,s.f):this.gt(s,_,w,S,s.co,s.cn)))if(t.w&&1!=p){var O=e.hk("underlying_"+s.b9),x=this.cn(p,s,e,O,P);e.k9(s.b9,x)}else e.k9(s.b9,P);break;case 3:var j=this.bj(t,s,n,r),k=this.bl(t,s,n),I=this.bk(t,s,n);if(i.isNaN_(j)||i.isNaN_(k)||i.isNaN_(I))break;if(null!=s.f){var T=this.cp(s,j,k,I,s.f);if(t.w&&1!=p){var R=e.hk("underlying_"+s.b9),A=this.cn(p,s,e,R,T);e.k9(s.b9,A)}else e.k9(s.b9,T)}if(null!=s.c){var E=this.cq(s,j,k,I,s.c);if(t.w&&1!=p){var B=e.hk("underlying_"+s.b9),D=this.cn(p,s,e,B,E);e.k9(s.b9,D)}else e.k9(s.b9,E)}}}}if(this.al=!1,t.s){var $=t.aq();if(null!=$)for(var M=0;M<$.count;M++){var z=$._inner[M];this.aw(z,this.grid,n,r)&&this.ee(z,e,n,r)}}}},n.prototype.cn=function(t,e,n,r,o){var s=n.kl(e.b9);if(s==i.Brush.$){var a=r,l=o;return i.BrushUtil.n(a,t,l,0)}if(s==i.Number_$type){return r+t*o-r}if(s==i.Number_$type){var u=i.typeGetValue(r),h=i.typeGetValue(o);return i.truncate(Math.round(u+t*h-u))}return t<.5?r:o},n.prototype.cp=function(t,e,n,r,o){var s=(e-n)/(r-n);if(s<0&&(s=0),s>1&&(s=1),i.isNaN_(s))return null;var a=o.count*s,l=i.truncate(Math.round(a));return l<0&&(l=0),l>o.count-1&&(l=o.count-1),o.item(l)},n.prototype.cq=function(t,e,n,r,o){var s=(e-n)/(r-n);if(s<0&&(s=0),s>1&&(s=1),i.isNaN_(s))return null;var a=o.length*s,l=i.truncate(Math.round(a));return l<0&&(l=0),l>o.length-1&&(l=o.length-1),o[l]},n.prototype.gt=function(t,e,n,r,o,s){var a=(e-n)/(r-n);return a<0&&(a=0),a>1&&(a=1),i.isNaN_(a)?null:i.BrushUtil.n(o,a,s,0)},n.prototype.gs=function(t,e,n,r,o){var s=(e-n)/(r-n);if(s<0&&(s=0),s>1&&(s=1),i.isNaN_(s))return null;var a=o.count*s;return i.BrushCollectionUtil.d(o,a)},n.prototype.bk=function(t,e,n){if(!i.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 s=e.t.evaluateWithEnvironment(n,this.grid.actualDataSource.resolvedDataProvider,this.grid.actualDataSource.actualSchema,this.b(t,n));if(1==e.ag){var a=null,l=null;if(a=i.isNaN_(e.a1)?this.cs():e.a1,l=i.isNaN_(e.a0)?this.cr():e.a0,null==a||null==l)return NaN;s=a+s/100*(l-a)}return s}var u=this.cr();return null!=u?u:NaN},n.prototype.bl=function(t,e,n){if(!i.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 s=e.u.evaluateWithEnvironment(n,this.grid.actualDataSource.resolvedDataProvider,this.grid.actualDataSource.actualSchema,this.b(t,n));if(1==e.ah){var a=null,l=null;if(a=i.isNaN_(e.a1)?this.cs():e.a1,l=i.isNaN_(e.a0)?this.cr():e.a0,null==a||null==l)return NaN;s=a+s/100*(l-a)}return s}var u=this.cs();return null!=u?u:NaN},n.prototype.bg=function(t){return null!==i.typeCast(i.Date_$type,t)?t.getTime():null==t?0:t},n.prototype.b=function(t,e){if(t.q()&&t.p()&&null!=this.a){var i=this.bg(this.cs()),n=this.bg(this.cr()),r=(this.bg(e)-i)/(n-i);this.a.setVariableValue("columnValuePercentage",r)}return this.a},n.prototype.bj=function(t,e,i,n){if(null==e.s)return this.bg(i);var r=e.s.evaluateWithEnvironment(n,this.grid.actualDataSource.resolvedDataProvider,this.grid.actualDataSource.actualSchema,this.b(t,i));return this.bg(r)},n.prototype.p=function(t,e,i,n){var r=new Dn;return r.cellInfo=t,r.resolvedValue=i,r.rowObject=n,r},n.prototype.eo=function(t,e,i,n){if(t.hn=n,!t.l.g&&this.ap())for(var r=this.ae,o=r.o,s=o.count,a=r.p,l=r.q,u=0;u<s;u++)a._inner[u]||t.k8(o._inner[u],l._inner[u])},n.prototype.dz=function(t,e,i){return null!=e?e.toString():""},n.prototype.ey=function(){for(var t=0;t<this.a5.count;t++)this.av(this.a5._inner[t])||this.au(this.a5._inner[t])},n.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},n.prototype.av=function(t){if(i.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,i.enumGetBox(l,this.e),i.enumGetBox(l,this.e)),!0;case"TextColor":return this.et("ActualTextColor",2,this.gd,this.gd),!0;case"VerticalAlignment":return this.et("VerticalAlignment",4,i.enumGetBox(h,this.j),i.enumGetBox(h,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},n.prototype.et=function(t,e,n,r){var o;null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.ev(t,e,n,r),null!=this.definitionPropertyUpdated&&this.definitionPropertyUpdated(this,((o=new Pt).propertyName=t,o.animationType=e,o.newValue=r,o.oldValue=n,o))},n.prototype.e5=function(){null!=this.ge?this.f5=this.ge:this.f5=this.gk()},n.prototype.fh=function(){null!=this.gx?this.gd=this.gx:this.gd=this.gr()},n.prototype.e6=function(){null!=this.gf?this.f6=this.gf:this.f6=this.gl()},n.prototype.e8=function(){null!=this.gf?this.f6=this.gf:this.f6=this.gm()},n.prototype.e9=function(){-1!=this.ca?this.b8=this.ca:this.b8=this.ck()},n.prototype.e7=function(){-1!=this.b9?this.b7=this.b9:this.b7=this.cj()},n.prototype.fi=function(){this.ah=this.textStyle},n.prototype.ff=function(){i.isNaN_(this.bm)?this.bf=this.bi():this.bf=this.bm},n.prototype.fe=function(){null!=this.gv?this.gb=this.gv:this.gb=this.go()},n.prototype.fg=function(){null!=this.gw?this.gc=this.gw:this.gc=this.gq()},n.prototype.fd=function(){null!=this.gu?this.ga=this.gu:this.ga=this.gn()},n.prototype.ev=function(t,e,i,n){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()}},n.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))},n.prototype.e4=function(){null!=this.grid&&this.grid.isActiveCellStyleEnabled?null==this.f3?this.f4=this.gj():this.f4=this.f3:this.f3=null},n.prototype.fc=function(){null!=this.gi?this.f9=this.gi:this.f9=I.bm},Object.defineProperty(n.prototype,"a4",{get:function(){return this.a1},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a8",{get:function(){return this.a5},enumerable:!1,configurable:!0}),n.prototype.ej=function(t,e){this.a1.contains(t)||(this.a1.add_1(t),this.a5.add(t),this.a0.addItem(t,e))},n.prototype.f=function(){return 4!=this.g?this.g:0},n.prototype.k=function(){return 4!=this.l?this.l:1},n.prototype.gr=function(){return I.bt},n.prototype.gl=function(){return I.a0},n.prototype.gm=function(){return I.a1},n.prototype.ck=function(){return i.truncate(Math.round(i.DeviceUtils.g(1)))},n.prototype.cj=function(){return i.truncate(Math.round(i.DeviceUtils.g(2)))},n.prototype.gj=function(){return I.az},n.prototype.aj=function(){return I.n},n.prototype.gk=function(){return I.a2},n.prototype.gq=function(){return null},n.prototype.go=function(){return null},n.prototype.gn=function(){return null},n.prototype.gp=function(){return I.bg},n.prototype.bi=function(){return.3},n.prototype.e1=function(t,e,n){null==this.ad&&(this.ad=new i.FastIterationDictionary$2(i.String_$type,i.Base.$,0));var r=null;this.ad.d(t)&&(r=this.ad.item(t)),this.ad.item(t,n);var o=!1;null==r&&null!=n&&(o=!0),null!=r&&(i.Base.equalsStatic(r,n)||(o=!0)),o&&this.et(t,e,r,n)},n.prototype.ap=function(){return null!=this.ad&&this.ad.r>0},Object.defineProperty(n.prototype,"ae",{get:function(){return this.ad},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aq",{get:function(){return this.conditionalStyles.count>0},enumerable:!1,configurable:!0}),n.prototype.ao=function(t){return null!=this.ad&&this.ad.d(t)},n.prototype.ew=function(t){null!=this.ad&&this.ad.d(t)&&this.ad.f(t)},n.prototype.co=function(t){return null==this.ad?null:this.ad.d(t)?this.ad.item(t):null},n.prototype.d0=function(t,e,n){var r=i.stringEmpty();switch(e){case 10:if(null!=n){var o=n,s=i.typeGetValue(t);r=o.format(s)}else r=i.typeGetValue(t).toString();break;case 8:if(null!=n){s=t;r=(o=n).format(s)}else r=t.toString();break;case 5:if(null!=n){s=t;r=(o=n).format(s)}else r=t.toString();break;case 1:if(null!=n){o=n,s=i.typeGetValue(t);r=o.format(s)}else r=i.typeGetValue(t).toString();break;case 3:if(null!=n){o=n,s=i.typeGetValue(t);r=o.format(s)}else r=i.typeGetValue(t).toString();break;case 4:if(null!=n){o=n,s=i.typeGetValue(t);r=o.format(s)}else r=i.typeGetValue(t).toString();break;case 7:if(null!=n){s=t;r=(o=n).format(s)}else r=t.toString();break;case 6:if(null!=n){s=t;r=(o=n).format(s)}else r=t.toString();break;case 0:case 2:case 11:r=t.toString()}return r},n.prototype.y=function(t,e){var n=null!=e&&null!=e.value?e.value.toString():i.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 s=t.y,a=i.typeGetValue(o);n=s.format(a)}else n=i.typeGetValue(o).toString();break;case 8:if(null!=t.y){s=t.y,a=o;n=s.format(a)}else n=o.toString();break;case 5:if(null!=t.y){s=t.y,a=o;n=s.format(a)}else{var l=o,u=t.w;n=parseFloat(l.toFixed(u)).toString()}break;case 1:if(null!=t.y){s=t.y,a=i.typeGetValue(o);n=s.format(a)}else n=i.typeGetValue(o).toString();break;case 3:if(null!=t.y){s=t.y,a=i.typeGetValue(o);n=s.format(a)}else n=i.typeGetValue(o).toString();break;case 4:if(null!=t.y){s=t.y,a=i.typeGetValue(o);n=s.format(a)}else n=i.typeGetValue(o).toString();break;case 7:if(null!=t.y){s=t.y,a=o;n=s.format(a)}else{l=o,u=t.w;n=parseFloat(l.toFixed(u)).toString()}break;case 6:if(null!=t.y){s=t.y,a=o;n=s.format(a)}else{l=o,u=t.w;n=parseFloat(l.toFixed(u)).toString()}break;case 0:case 2:case 11:n=o.toString()}var h=null!=t.ae?t.ae:null!=t.l?t.l.displayName:i.stringEmpty();null!=t.f&&null!=o&&(n=t.f.i(o));var c=i.stringIsNullOrWhiteSpace(t.ag)?t.ah:t.ag,p=c+" "+h+" = "+n;null!=t.e&&null!=o&&(p=t.e.i(o));var d,f=t.o(e,n,p);return p=f.e,n=f.d,(d=new Q).e=c,d.b=o,d.a=t.i,d.c=f.e,d.d=f.d,d},n.$t=i.markType(n,"DefinitionBase",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),_n=function(t){function n(){var e=t.call(this)||this;e.ko=0,e.hs=0,e.j9=i.truncate(i.DeviceUtils.g(12)),e.kb=i.truncate(i.DeviceUtils.g(1)),e.ka=i.truncate(i.DeviceUtils.g(12)),e.j8=i.truncate(i.DeviceUtils.g(1)),e.kw=i.stringEmpty(),e.j6=0,e.j5=0,e.j7=0,e.ii=0,e.ku=null,e.kv=null,e.ks=null,e.nq=null,e.nl=null,e.no=null,e.nj=null,e.np=null,e.nk=null,e.h5=null,e.hu=null,e.jx=NaN,e.i5=!1,e.iz=!1,e.i8=!1,e.g0=null,e.g2=null,e.h9=null,e.i4=!0,e.i7=!0,e.i6=!1,e.i9=!1,e.hq=0,e.ij=0,e.iy=!1,e.hg=0,e.hh=0,e.nh=null,e.nm=null,e.hl=0,e.hk=0,e.iu=!0,e.i0=!0,e.iw=!0,e.i2=!0,e.iv=!0,e.i1=!0,e.i3=!0,e.nn=null,e.ni=null,e.jw=NaN,e.jv=0,e.ir=null,e.iq=null,e.hy=0,e.kp=null,e.kt=null,e.gy=null,e.ie=0,e.ib=0,e.g7=4,e.g6=1,e.j2=i.truncate(i.DeviceUtils.g(12)),e.j4=i.truncate(i.DeviceUtils.g(10)),e.j3=i.truncate(i.DeviceUtils.g(12)),e.j1=i.truncate(i.DeviceUtils.g(10)),e.h0=0,e.h7=null,e.columnCellsPropertyUpdating=null,e.columnHeaderCellsPropertyUpdating=null,e.io=null,e.ix=!1,e.ju=null,e.hw=null,e._commandCompleted=null,e._invalidateActions=null,e.jt=null,e.ix=!0,e.header=new or,e.ix=!1,e.e=e.f(),e.j=e.k(),e.nv=e.nz(),e.nt=e.ny(),e.ko=n.kn++,e.h7=new bn;var r=e.h7;return r.collectionChanged=i.delegateCombine(r.collectionChanged,i.runOn(e,e.mt)),e}return e.__extends(n,t),n.prototype.e0=function(e){t.prototype.e0.call(this,e),null!=this.grid&&this.grid.x5(e,this)},n.prototype.cr=function(){return null==this.grid?null:this.grid.ox(this)},n.prototype.cs=function(){return null==this.grid?null:this.grid.oy(this)},n.prototype.ct=function(){return null==this.grid?null:this.grid.oz(this)},n.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},n.prototype.nz=function(){return I.bg},n.prototype.ny=function(){return I.a7},Object.defineProperty(n.prototype,"ht",{get:function(){return this.hs},set:function(t){var e=this.hs;this.hs=t,this.hs!=e&&this.et("State",10,i.enumGetBox(Fe,e),i.enumGetBox(Fe,this.hs))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.prototype,"kh",{get:function(){return this.j6},set:function(t){this.j6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"kg",{get:function(){return this.j5},set:function(t){this.j5=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ki",{get:function(){return this.j7},set:function(t){this.j7=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ik",{get:function(){return this.ii},set:function(t){this.ii=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"hr",{get:function(){return this.hq},set:function(t){var e=this.hq;this.hq=t,this.hq!=e&&this.et("SortDirection",11,i.enumGetBox(x,e),i.enumGetBox(x,this.hq))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"il",{get:function(){return this.ij},set:function(t){var e=this.ij;this.ij=t,this.ij!=e&&this.et("Pinned",11,i.enumGetBox(k,e),i.enumGetBox(k,this.ij))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"jd",{get:function(){return!!this.iy||this.i9},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hi",{get:function(){return this.hg},set:function(t){var e=this.hg;this.hg=t,this.hg!=e&&this.et("ActualColumnOptionsIconAlignment",4,i.enumGetBox(et,e),i.enumGetBox(et,this.hg))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hj",{get:function(){return this.hh},set:function(t){var e=this.hh;this.hh=t,this.hh!=e&&this.et("ColumnOptionsIconAlignment",10,i.enumGetBox(et,e),i.enumGetBox(et,this.hh))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"hn",{get:function(){return this.hl},set:function(t){var e=this.hl;this.hl=t,this.hl!=e&&this.et("ColumnOptionsIconBehavior",10,i.enumGetBox(nt,e),i.enumGetBox(nt,this.hl))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hm",{get:function(){return this.hk},set:function(t){var e=this.hk;this.hk=t,this.hk!=e&&this.et("ActualColumnOptionsIconBehavior",4,i.enumGetBox(nt,e),i.enumGetBox(nt,this.hk))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"hz",{get:function(){return this.hy},set:function(t){var e=this.hy;this.hy=t,e!=this.hy&&this.et("EditorTypeInternal",4,i.enumGetBox(z,e),i.enumGetBox(z,this.hy))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.prototype,"ih",{get:function(){return this.ie},set:function(t){var e=this.ie;this.ie=t,e!=this.ie&&this.et("MergedCellMode",11,i.enumGetBox(Se,e),i.enumGetBox(Se,this.ie))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"id",{get:function(){return this.ib},set:function(t){var e=this.ib;this.ib=t,e!=this.ib&&this.et("MergedCellEvaluationCriteria",11,i.enumGetBox(Oe,e),i.enumGetBox(Oe,this.ib))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ha",{get:function(){return this.g7},set:function(t){var e=this.g7;this.g7=t,this.g7!=e&&this.et("MergedCellVerticalAlignment",4,i.enumGetBox(h,e),i.enumGetBox(h,this.g7))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g8",{get:function(){return this.g6},set:function(t){var e=this.g6;this.g6=t,this.g6!=e&&this.et("ActualMergedCellVerticalAlignment",4,i.enumGetBox(h,e),i.enumGetBox(h,this.g6))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.prototype,"h1",{get:function(){return this.h0},set:function(t){var e=this.h0;this.h0=t,e!=this.h0&&this.et("FilterComparisonType",11,i.enumGetBox(Re,e),i.enumGetBox(Re,this.h0))},enumerable:!1,configurable:!0}),n.prototype.h3=function(t){return 0==t?1:t},n.prototype.h2=function(){return 0==this.h1?this.h3(this.grid.filterComparisonType):this.h1},Object.defineProperty(n.prototype,"h8",{get:function(){return this.h7},enumerable:!1,configurable:!0}),n.prototype.mt=function(t,e){this.et("FilterOperands",11,null,this.h7)},n.prototype.ig=function(){return null==this.grid?this.ih:0==this.ih?this.grid.mergedCellMode:this.ih},n.prototype.ic=function(){return null==this.grid?this.id:0==this.id?this.grid.mergedCellEvaluationCriteria:this.id},n.prototype.jr=function(){var t=this.ig();return 3==t&&0!=this.hr||2==t},n.prototype.go=function(){return I.ba},n.prototype.gq=function(){return I.bh},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r),e.hm=n,e.a9=i.e7.isEditedValue(r,this.lo),e.a6=i.e7.isDeletedRow(r),e.fg=i.e7.getPendingEditID(r,this.lo),e.it=i.e7.getError(e.fg),i.cj.b==e&&(i.cj.u=e.hm),i.f5.p(e)?e.cq=1:e.cq=0,i.ad.m(e)?e.cf=1:e.cf=0,i.e1.c(e.l.x)?e.cl=1:e.cl=0,e.bd=4!=e.l.af},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,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},n.prototype.ev=function(e,n,r,o){switch(t.prototype.ev.call(this,e,n,r,o),e){case"Header":var s=r,a=o;null!=s&&(s.definitionPropertyUpdated=i.delegateRemove(s.definitionPropertyUpdated,i.runOn(this,this.mz))),null!=a&&(a.definitionPropertyUpdated=i.delegateCombine(a.definitionPropertyUpdated,i.runOn(this,this.mz)),4==a.g&&(a.e=this.g5()),4==a.l&&(a.j=this.hb()),this.ix||a.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,n,r,o)},n.prototype.hb=function(){return this.j},n.prototype.g5=function(){return this.e},n.prototype.g9=function(){return 4!=this.ha?this.ha:null!=this.grid&&4!=this.grid.mergedCellVerticalAlignment?this.grid.mergedCellVerticalAlignment:1},n.prototype.nd=function(t,e,i,n,r){null!=this.columnHeaderCellsPropertyUpdating&&this.columnHeaderCellsPropertyUpdating(this,e,i,n,r)},n.prototype.mz=function(t,e){this.nd(this,e.propertyName,e.animationType,e.oldValue,e.newValue)},n.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()},n.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()}},n.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},n.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},n.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},n.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},n.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},n.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},n.prototype.ff=function(){if(i.isNaN_(this.bm)){if(null!=this.grid&&!i.isNaN_(this.grid.pinnedRowOpacity))return void(this.bf=this.grid.pinnedRowOpacity);this.bf=this.bi()}else this.bf=this.bm},n.prototype.na=function(){if(null==this.nx){if(null!=this.grid&&null!=this.grid.deletedTextColor)return void(this.ns=this.grid.deletedTextColor);this.ns=I.bs}else this.ns=this.nx},n.prototype.nc=function(){if(i.isNaN_(this.jz)){if(null!=this.grid&&!i.isNaN_(this.grid.editOpacity))return void(this.jy=this.grid.editOpacity);this.jy=I.o}else this.jy=this.jz},n.prototype.nb=function(){if(null==this.textEditStyle){if(null!=this.grid&&null!=this.grid.editTextStyle)return void(this.is=this.grid.editTextStyle);this.is=I.m}else this.is=this.textEditStyle},n.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},n.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},n.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},n.prototype.m4=function(){if(0==this.hj){if(null!=this.grid&&0!=this.grid.columnOptionsIconAlignment)return void(this.hi=this.grid.columnOptionsIconAlignment);this.hi=I.a}else this.hi=this.hj},n.prototype.m8=function(){if(null==this.nw){if(null!=this.grid&&null!=this.grid.columnOptionsIconColor)return void(this.nr=this.grid.columnOptionsIconColor);this.nr=I.a5}else this.nr=this.nw},n.prototype.m7=function(){if(0==this.hn){if(null!=this.grid&&0!=this.grid.columnOptionsIconBehavior)return void(this.hm=this.grid.columnOptionsIconBehavior);this.hm=I.b}else this.hm=this.hn},n.prototype.m5=function(){null!=this.grid?this.ja=this.grid.isColumnOptionsEnabled&&this.ji:this.ja=!0},n.prototype.m9=function(){null!=this.grid?this.jc=this.grid.isColumnOptionsSummariesEnabled&&this.jk:this.jc=!1},n.prototype.m6=function(){null!=this.grid?this.jb=this.grid.isColumnOptionsGroupingEnabled&&this.jj:this.jb=!1},n.prototype.m3=function(t,e,i,n){null!=this.columnCellsPropertyUpdating&&this.columnCellsPropertyUpdating(this,t,e,i,n)},n.prototype.hf=function(){return 0==this.e?3:2},n.prototype.hp=function(){return 0==this.e?3:2},n.prototype.he=function(){return 2},n.prototype.ho=function(){return 2},n.prototype.lt=function(){return null!=this.mf&&""!=this.mf?this.mf:this.lo},n.prototype.m2=function(t,e,n){null==this.io&&(this.io=new i.FastIterationDictionary$2(i.String_$type,i.Base.$,0));var r=null;this.io.d(t)&&(r=this.io.item(t)),this.io.item(t,n);var o=!1;null==r&&null!=n&&(o=!0),null!=r&&(i.Base.equalsStatic(r,n)||(o=!0)),o&&this.nd(this,t,e,r,n)},n.prototype.jf=function(){return null!=this.io&&this.io.r>0},Object.defineProperty(n.prototype,"ip",{get:function(){return this.io},enumerable:!1,configurable:!0}),n.prototype.je=function(t){return null!=this.io&&this.io.d(t)},n.prototype.m1=function(t){null!=this.io&&this.io.d(t)&&this.io.f(t)},n.prototype.kr=function(t){return null==this.io?null:this.io.d(t)?this.io.item(t):null},n.prototype.m0=function(t){switch(null==this.ju&&(this.ju=new i.List$1(hi,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)}},n.prototype.mv=function(t,e){var i=new Ci;i.operator=t,i.value=e,i.isCaseSensitive=2==this.h2(),this.g1=i,this.g3=null},n.prototype.mu=function(t,e,i){if(null!=this.grid&&this.h8.count>0){var n=this.h4(t,e);if(null!=n){this.grid.wj(this,n,i);var r=this.g4(n,i);null!=r&&(this.g3=r,this.g1=((o=new _i).value=i,o.id=t,o.index=e,o))}}var o},n.prototype.g4=function(t,e){var i=this;if(null==t)return null;var n,r=((n=new un).c=i,n.e=e,n.d=t,n);return t.h(r),r.b},n.prototype.h4=function(t,e){if(null!=t)for(var i=0;i<this.h8.count;i++)if(this.h8._inner[i].g==t)return this.h8._inner[i];return e>=0&&e<this.h8.count?this.h8._inner[e]:null},n.prototype.mw=function(){this.g1=null,this.g3=null},Object.defineProperty(n.prototype,"hx",{get:function(){return null==this.hw&&(this.hw=new Mn(this)),this.hw},enumerable:!1,configurable:!0}),n.prototype.getDesiredToolbarActions=function(){return this.hx.a()},n.prototype.addCommandAvailabilityListener=function(t){this.hx.a3(t)},n.prototype.removeCommandAvailabilityListener=function(t){this.hx.bw(t)},n.prototype.addCommandStateChangedListener=function(t){this.hx.a4(t)},n.prototype.removeCommandStateChangedListener=function(t){this.hx.bx(t)},n.prototype.onToolCommandExecuting=function(t){return this.hx.g(t)},Object.defineProperty(n.prototype,"commandCompleted",{get:function(){return this._commandCompleted},set:function(t){this._commandCompleted=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"invalidateActions",{get:function(){return this._invalidateActions},set:function(t){this._invalidateActions=t},enumerable:!1,configurable:!0}),n.prototype.im=function(){var t,n;if(null==this.jt)return null;try{for(var r=e.__values(i.fromEnum(this.jt)),o=r.next();!o.done;o=r.next()){return o.value}}catch(e){t={error:e}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(t)throw t.error}}return null},n.prototype.my=function(t){var n,r;if(null!=this.jt)try{for(var o=e.__values(i.fromEnum(this.jt)),s=o.next();!s.done;s=o.next()){t(s.value)}}catch(t){n={error:t}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(n)throw n.error}}},n.prototype.provideContextAccessor=function(t){null==this.jt&&(this.jt=new i.HashSet$1(i.IToolbarContextAccessor_$type,0)),this.jt.add_1(t)},n.prototype.dismissContextAccessor=function(t){null!=this.jt&&this.jt.remove(t)},n.prototype.mx=function(){null!=this.hx&&this.hx.bv()},n.$t=i.markType(n,"DataGridColumn",Cn.$,[i.IToolbarTarget_$type]),n.kn=0,n}(Cn),wn=function(t){function n(){return t.call(this,_n.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"GridColumnCollection",i.ObservableCollection$1.$.specialize(_n.$)),n}(i.ObservableCollection$1),Sn=function(t){function n(e){for(var n=[],r=1;r<arguments.length;r++)n[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 s=n[0];o.a=s,o.c=new i.List$1(sr.$,0),o.b=!1;break;case 1:var a=(s=[!0])[0];o.a=a,o.c=new i.List$1(sr.$,0),o.b=!1}return o}return e.__extends(n,t),n.prototype.k=function(){this.b=!1;for(var t=0;t<this.c.count;t++){var e=this.c._inner[t];e.onFinished=i.delegateRemove(e.onFinished,i.runOn(this,this.i));var n=this.c._inner[t];n.onCanceled=i.delegateRemove(n.onCanceled,i.runOn(this,this.h))}this.f=0,this.c.clear()},n.prototype.g=function(t){this.c.add(t),t.onFinished=i.delegateCombine(t.onFinished,i.runOn(this,this.i)),t.onCanceled=i.delegateCombine(t.onCanceled,i.runOn(this,this.h))},n.prototype.h=function(t,e){this.b=!0,this.f++,this.f==this.c.count&&this.j()},n.prototype.i=function(t){this.f++,this.f==this.c.count&&this.j()},n.prototype.j=function(){this.b?null!=this.effectsCanceled&&this.effectsCanceled(this,new i.EventArgs):null!=this.effectsFinished&&this.effectsFinished(this,new i.EventArgs),this.a&&this.k()},n.$t=i.markType(n,"GridEffectGroup"),n}(i.Base),Pn=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.b=!1,i.d=-1,i.e=-1,i.a=e,i}return e.__extends(n,t),n.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)},n.prototype.c=function(t){return this.e==t},n.$t=i.markType(n,"HoverManager"),n}(i.Base),On=function(t){function n(){var e=t.call(this)||this;return e.b=null,e.b=new i.Dictionary$2(i.String_$type,i.Stack$1.$.specialize(Ei.$),0),e}return e.__extends(n,t),n.prototype.a=function(t){if(!this.b.containsKey(t))return this.b.addItem(t,new i.Stack$1(Ei.$)),null;var e=this.b.item(t);if(e.f>0){var n=e.e();return 2==n.u&&(n.u=1),n}return null},n.prototype.c=function(t){t.u=1,this.b.containsKey(t.kc)||this.b.addItem(t.kc,new i.Stack$1(Ei.$)),this.b.item(t.kc).h(t)},n.$t=i.markType(n,"RecyclingManager"),n}(i.Base),xn=function(t){function n(e,n){var r=t.call(this)||this;return r.a=null,r.b=null,r.c=new i.FastIterationDictionary$2(i.Number_$type,i.Number_$type,0),r.e=new i.FastIterationDictionary$2(i.Number_$type,i.Number_$type,0),r.d=new i.FastIterationDictionary$2(i.Number_$type,i.String_$type,0),r.f=new i.FastIterationDictionary$2(i.String_$type,i.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=n,r}return e.__extends(n,t),Object.defineProperty(n.prototype,"v",{get:function(){return-1!=this.t?this.w(this.t):null},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g",{get:function(){return this.k&&(this.ac(),this.k=!1),this.c},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.k&&(this.ac(),this.k=!1),this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"h",{get:function(){return this.k&&(this.ac(),this.k=!1),this.d},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.k&&(this.ac(),this.k=!1),this.f},enumerable:!1,configurable:!0}),n.prototype.al=function(t){t.l.aj&&(this.m(t)?this.af(t):this.aa(t))},n.prototype.m=function(t){var e=!1,n=this.a.e7.getDataRow(t.l);if(-1==n)return!1;if(this.q<0)return!1;if(n!=this.q)return!1;if(null!==i.typeCast(qi.$,t))return!0;if(this.i.d(t.l.a5)){var r=this.i.item(t.l.a5);r>=0&&(e=this.n(n,r))}return e},n.prototype.n=function(t,e){return this.q==t&&e==this.t},n.prototype.o=function(){return 1==this.a.activationMode},n.prototype.ad=function(){this.q>=0&&this.t>=0&&this.ae(this.q,this.t,!0)},n.prototype.af=function(t){var e=this.a.e7.getDataRow(t.l);if(-1!=e&&this.i.d(t.l.a5)){var i=this.i.item(t.l.a5);this.n(e,i)&&this.ae(e,i,!0)}},n.prototype.aa=function(t){this.z(t.l)},n.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 i=this.i.item(t.a5);this.n(e,i)||this.x(e,i,!0)}}},n.prototype.ab=function(t,e,i){this.r=-1,this.u=null;var n=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&&(n=this.i.item(0))}}else this.j.d(e)&&(n=this.j.item(e));-1!=n?this.q>=0&&this.t>=0?t==this.q&&n==this.t||(this.ae(this.q,this.t,!1),this.x(t,n,i)):-1==this.q&&-1==this.t&&this.x(t,n,i):(this.r=t,this.u=e)},n.prototype.y=function(t,e){if(this.i.d(e)){var i=this.i.item(e);if(t!=this.q||i!=this.t){if(this.q=t,this.t=i,this.p=e,t>=0&&e>=0){if(t>=0&&t<this.a.e7.getRowCount()&&1!=this.a.groupSummaryDisplayMode){var n=this.a.e7.getRowType(t);this.a.e7.isRowSpanning(n)&&(e=-400,i=-400)}this.b.aa(this.a,t,e,i)}this.a.vn(t,e,this.w(i))}}},n.prototype.x=function(t,e,i){if(this.g.d(e)){var n=this.g.item(e);if(t!=this.q||e!=this.t){if(this.q=t,this.t=e,this.p=n,t>=0&&n>=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)&&(n=-400,e=-400)}this.b.aa(this.a,t,n,e)}i&&this.a.vn(t,n,this.w(e))}}},n.prototype.ae=function(t,e,i){if(this.n(t,e)){if(this.t=-1,this.q=-1,this.p=-1,t>=0&&this.g.d(e)){var n=this.g.item(e);if(n>=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)&&(n=-400,e=-400)}this.b.ab(this.a,t,n,e)}}i&&this.a.vq(t,this.w(e))}},n.prototype.ah=function(){this.q=-1,this.t=-1,this.p=-1},n.prototype.ai=function(t){},n.prototype.aj=function(t){},n.prototype.w=function(t){return this.h.d(t)?this.h.item(t):null},n.prototype.ak=function(t){},n.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)}},n.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)},n.prototype.s=function(){return this.g.d(this.t)?this.g.item(this.t):-1!=this.p?this.p:0},n.$t=i.markType(n,"ActivationManager"),n}(i.Base),jn=function(t){function n(e,n){var r=t.call(this)||this;return r.a=null,r.b=null,r.g=new i.FastIterationDictionary$2(fe.$,i.Number_$type,0),r.f=new i.FastIterationDictionary$2(fe.$,i.FastIterationDictionary$2.$.specialize(i.Number_$type,i.Number_$type),0),r.d=new i.FastIterationDictionary$2(i.Number_$type,i.Number_$type,0),r.e=new i.FastIterationDictionary$2(i.Number_$type,i.Number_$type,0),r.j=!1,r.t=new i.List$1(ge.$,0),r.s=new i.List$1(ge.$,0),r.k=!1,r.u=-1,r.c=null,r.a=e,r.b=n,r}return e.__extends(n,t),Object.defineProperty(n.prototype,"h",{get:function(){return this.j&&(this.y(),this.j=!1),this.d},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.j&&(this.y(),this.j=!1),this.e},enumerable:!1,configurable:!0}),n.prototype.au=function(t){t.l.aj&&(this.p(t)?this.ax(t):this.ap(t))},n.prototype.at=function(t){t.l.aj&&(this.k=!0,this.ap(t),this.k=!1)},n.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 n=this.a.e7.getRowKey(this.a.i(),e);if(null==n)return!1;var r=this.g.d(n);if(r){if(-1==this.g.item(n))this.g.item(n,e);else if(this.g.item(n)!=e)return!1;var o=this.a.selectedKeys.al(n);if(o>=0&&null==this.a.selectedItems.ae._inner[o]){var s=this.a.e7.resolveValueForRow(t.l);this.a.xg(o,s,n)}}if(!r&&this.i.d(t.l.a5)){var a=this.i.item(t.l.a5);a>=0&&(r=this.l(n,a))&&-1==this.f.item(n).item(a)&&this.f.item(n).item(a,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 h=i.typeCast(i.DataSourceSpecialRow.$,n.value[0]);if(null!=h){var c=this.a.e7.getItemKey(this.a.i(),h.targetRow);if(!(r=this.g.d(c))&&this.i.d(t.l.a5)){var p=this.i.item(t.l.a5);p>=0&&(r=this.l(c,p))}}}return r},n.prototype.n=function(t){return this.g.d(t)},n.prototype.l=function(t,e){return this.f.d(t)&&this.f.item(t).d(e)},n.prototype.o=function(){return 1==this.a.selectionMode||2==this.a.selectionMode},n.prototype.m=function(){return 3==this.a.selectionMode||4==this.a.selectionMode},n.prototype.ax=function(t){var e=this.a.e7.getDataRow(t.l);if(-1!=e&&!this.a.e7.isPlaceholderItem(e)){var i=this.a.e7.getRowKey(this.a.i(),e);if(this.n(i)&&this.ay(i,e,!1),this.i.d(t.l.a5)){var n=this.i.item(t.l.a5);this.l(i,n)&&this.av(i,e,n)}}},n.prototype.ap=function(t){if(0!=this.a.selectionMode){var e=!1,n=null,r=null,o=this.a.e7.getDataRow(t.l);if(o>-1&&!this.a.e7.isPlaceholderItem(o)&&null!=(n=this.a.e7.getRowKey(this.a.i(),o))&&3==this.a.e7.getRowType(o)){var s=i.typeCast(i.DataSourceSpecialRow.$,n.value[0]);r=this.a.e7.getItemKey(this.a.i(),s.targetRow)}if(1==this.a.selectionMode||this.k){for(var a=this.g.o,l=this.g.p,u=new i.List$1(fe.$,0),h=new i.List$1(i.Number_$type,0),c=0;c<a.count;c++)l._inner[c]||(a._inner[c].equals(n)||null!=r&&a._inner[c].equals(r)?e=!0:(u.add(a._inner[c]),h.add(this.g.q._inner[c])));this.a.t8(),this.g.g=!0;for(var p=0;p<u.count;p++)this.ay(u._inner[p],h._inner[p],!1);this.g.g=!1,this.a.ur()}if(3==this.a.selectionMode||this.k){for(var d=this.f.o,f=this.f.p,m=new i.List$1(fe.$,0),g=new i.List$1(i.Number_$type,0),b=new i.List$1(i.Number_$type,0),y=0;y<d.count;y++)if(!f._inner[y])for(var v=d._inner[y],C=this.f.item(v).o,_=this.f.item(v).q,w=this.f.item(v).p,S=0;S<C.count;S++)if(!w._inner[S]){var P=C._inner[S],O=_._inner[S];this.i.d(t.l.a5)&&this.i.item(t.l.a5)==P&&t.l.x==O||(m.add(v),g.add(P),b.add(O))}for(var x=0;x<m.count;x++)this.av(m._inner[x],b._inner[x],g._inner[x])}null==n||e||(this.o()?this.aq(n,o,!1):this.m()&&this.ao(n,o,t.l.a5))}},n.prototype.aq=function(t,e,n){var r=!0,o=!1;if(!n&&3==this.a.e7.getRowType(e)){var s=i.typeCast(i.DataSourceSpecialRow.$,t.value[0]);if(null!=s.targetRow){var a=this.a.e7.getItemKey(this.a.i(),s.targetRow),l=this.a.e7.indexOfVisibleItemByKey(this.a.i(),a,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.ar(a,l,s.targetRow,!0)}o=!0,r=!1}var u=null;if(!o&&(u=this.a.e7.resolveValueForDataRow(e),this.a.pinnedKeys.contains(t))){var h=this.v(t);if(h>=0){var c=this.a.e7.getRowKey(this.a.i(),h);this.n(c)||this.ar(c,h,null,!1)}}this.ar(t,e,u,r)},n.prototype.ar=function(t,e,n,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==n||this.a.isGroupRowSticky&&null!==i.typeCast(i.DataSourceSpecialRow.$,n))&&(o=!0),o&&this.b.ao(this.a,e)}r&&this.a.w9(n,t)},n.prototype.az=function(t,e,n,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==n||this.a.isGroupRowSticky&&null!==i.typeCast(i.DataSourceSpecialRow.$,n))&&(o=!0),o){var s=this.a.e7.getRowKey(this.a.i(),e);null!=s&&s.equals(t)&&e>=0&&this.b.aq(this.a,e)}}r&&this.a.xa(n,t)},n.prototype.ay=function(t,e,n){var r=!0,o=!1;if(!n&&3==this.a.e7.getRowType(e)){var s=i.typeCast(i.DataSourceSpecialRow.$,t.value[0]);if(null!=s.targetRow){var a=this.a.e7.getItemKey(this.a.i(),s.targetRow),l=this.a.e7.indexOfVisibleItemByKey(this.a.i(),a,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.az(a,l,s.targetRow,!0)}o=!0,r=!1}var u=null;if(!o&&(u=this.a.e7.resolveValueForDataRow(e),this.a.pinnedKeys.contains(t))){var h=this.v(t);if(h>=0){var c=this.a.e7.getRowKey(this.a.i(),h);this.n(c)&&this.az(c,h,null,!1)}}this.az(t,e,u,r)},n.prototype.ao=function(t,e,n){if(this.i.d(n)){var r=this.i.item(n),o=!0;if(3==this.a.e7.getRowType(e)){var s=i.typeCast(i.DataSourceSpecialRow.$,t.value[0]);if(null!=s.targetRow){var a=this.a.e7.getItemKey(this.a.i(),s.targetRow),l=this.a.e7.indexOfVisibleItemByKey(this.a.i(),a,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.am(a,r,n,l,!0)}o=!1}else if(this.a.pinnedKeys.contains(t)){var u=this.v(t);if(u>=0){var h=this.a.e7.getRowKey(this.a.i(),u);this.l(h,r)||this.am(h,r,n,u,!1)}}this.am(t,r,n,e,o)}},n.prototype.an=function(t,e,n){if(this.h.d(n)){var r=this.h.item(n);if(this.f.d(t))this.f.item(t).d(n)||(this.f.item(t).s(n,e),e>=0&&this.b.ae(this.a,e,r,n),this.a.v2(t,n));else{var o=new i.FastIterationDictionary$2(i.Number_$type,i.Number_$type,0);o.s(n,e),this.f.s(t,o),e>=0&&r>=0&&this.b.ae(this.a,e,r,n),this.a.v2(t,n)}}},n.prototype.am=function(t,e,n,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,n,e),o&&this.a.v2(t,e));else if(e>=0){var s=new i.FastIterationDictionary$2(i.Number_$type,i.Number_$type,0);s.s(e,r),this.f.s(t,s),r>=0&&this.b.ae(this.a,r,n,e),o&&this.a.v2(t,e)}},n.prototype.aw=function(t,e,i,n){if(this.l(t,i)){if(this.f.item(t).f(i),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(i)){var o=this.h.item(i);o>=0&&this.b.af(this.a,e,o,i)}}n&&this.a.v3(t,i)}},n.prototype.av=function(t,e,n){var r=!0;if(3==this.a.e7.getRowType(e)){var o=i.typeCast(i.DataSourceSpecialRow.$,t.value[0]);if(null!=o.targetRow){var s=this.a.e7.getItemKey(this.a.i(),o.targetRow),a=this.a.e7.indexOfVisibleItemByKey(this.a.i(),s,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex());this.aw(s,a,n,!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,n)&&this.aw(u,l,n,!1)}}this.aw(t,e,n,r)},n.prototype.v=function(t){var e=-1,n=this.a.e7.getStickyRows();if(null!=n)for(var r=0;r<n.length;r++){var o=i.typeCast(i.DataSourceSpecialRow.$,this.a.actualDataSource.getItemAtIndex(n[r]));if(null!=o&&3==o.rowType){var s=this.a.e7.getItemKey(this.a.i(),o.targetRow);if(null!=s&&s.equals(t)){e=n[r];break}}}return e},n.prototype.a2=function(){for(var t=this.r(),e=new i.Dictionary$2(fe.$,i.Number_$type,0),n=0;n<t.count;n++){var r=t.item(n),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 s=this.v(r);if(s>=0){var a=this.a.e7.getRowKey(this.a.i(),s);e.containsKey(a)||e.addItem(a,s),this.n(a)||this.aq(a,s,!0)}}e.containsKey(r)||e.addItem(r,o),this.n(r)||this.aq(r,o,!0)}for(var l=this.g.o,u=this.g.p,h=new i.List$1(fe.$,0),c=new i.List$1(i.Number_$type,0),p=0;p<l.count;p++)if(!u._inner[p]){var d=l._inner[p];e.containsKey(d)||(h.add(d),c.add(this.g.q._inner[p]))}for(var f=0;f<c.count;f++)this.ay(h._inner[f],c._inner[f],!1);for(var m=0;m<this.a.selectedItems.ae.count;m++){var g=this.a.e7.getItemKey(this.a.i(),this.a.selectedItems.ae._inner[m]);if(null!=g&&!e.containsKey(g)){var b=-1;this.g.d(g)&&(b=this.g.item(g)),-1==b&&(b=this.a.e7.fastGetItemIndexForKey(this.a.i(),g,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex())),this.ay(g,b,!1)}}},n.prototype.a1=function(){for(var t=this.a.selectedCells.am,e=new i.Dictionary$2(fe.$,i.IList$1_$type.specialize(i.Number_$type),0),n=function(n){var o=t.item(n).primaryKey;if(null==o)return"continue";if(null==t.item(n).b)return"continue";var s,a=t.item(n).b.ko,l=-1;if(r.l(o,a)&&(l=r.f.item(o).item(a)),-1==l){var u=r.a.getFirstVisibleIndex(),h=r.a.getLastVisibleIndex();-1!=u&&-1!=h&&(l=r.a.e7.indexOfVisibleItemByKey(r.a.i(),o,u,h))}if(r.a.pinnedKeys.contains(o)){var c=r.v(o);if(c>=0){var p=r.a.e7.getRowKey(r.a.i(),c);e.containsKey(p)?e.item(p).contains(a)||e.item(p).add(a):e.addItem(p,((s=new i.List$1(i.Number_$type,0)).add(a),s)),r.l(p,a)||r.an(p,c,a)}}e.containsKey(o)?e.item(o).contains(a)||e.item(o).add(a):e.addItem(o,function(){var t=new i.List$1(i.Number_$type,0);return t.add(a),t}()),r.l(o,a)||r.an(o,l,a)},r=this,o=0;o<t.count;o++)n(o);for(var s=this.f.o,a=this.f.p,l=new i.List$1(fe.$,0),u=new i.List$1(i.Number_$type,0),h=new i.List$1(i.Number_$type,0),c=0;c<s.count;c++)if(!a._inner[c])for(var p=s._inner[c],d=0;d<this.f.item(p).o.count;d++)if(!this.f.item(p).p._inner[d]){var f=this.f.item(p).o._inner[d],m=this.f.item(p).q._inner[d];e.containsKey(p)&&e.item(p).contains(f)||(l.add(p),u.add(f),h.add(m))}for(var g=0;g<l.count;g++)this.av(l._inner[g],h._inner[g],u._inner[g])},n.prototype.a0=function(){var t=this.a.selectedCellRanges.ae;this.t.clear(),this.t=this.s,this.s=new i.List$1(ge.$,0);for(var e=0;e<t.count;e++)this.s.add(t.item(e).a());var n=this.a.e7.getStickyRows();if(null!=n)for(var r=0;r<n.length;r++){if(3==this.a.e7.getRowType(n[r]))for(var o=0;o<this.a.model.cg.count;o++){var s=this.a.model.cg._inner[o],a=this.a.model.b9._inner[s].n;this.x(n[r],a)}}for(var l=this.a.getFirstVisibleIndex(),u=this.a.getLastVisibleIndex(),h=l;h<=u;h++)for(var c=0;c<this.a.model.cg.count;c++){var p=this.a.model.cg._inner[c],d=this.a.model.b9._inner[p].n;this.x(h,d)}},n.prototype.x=function(t,e){for(var i=!1,n=!1,r=0;r<this.t.count;r++){this.t._inner[r].b(t,e)&&(i=!0)}for(var o=0;o<this.s.count;o++){this.s._inner[o].b(t,e)&&(n=!0)}if(i&&!n){var s=this.a.gb.j(e,this.a.model);this.a.c5.ad(this.a,t,s)}else if(!i&&n){var a=this.a.gb.j(e,this.a.model);this.a.c5.ac(this.a,t,a)}},n.prototype.r=function(){return this.a.selectedKeys.ae},n.prototype.ad=function(){this.ac(),this.ab()},n.prototype.ah=function(t){for(var e=0;e<this.g.o.count;e++)if(!this.g.p._inner[e]){var i=this.g.o._inner[e],n=this.g.q._inner[e];n>=t&&this.g.item(i,n+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],s=this.f.q._inner[r],a=0;a<s.o.count;a++)if(!this.f.item(o).p._inner[a]){var l=s.o._inner[a],u=this.f.item(o).item(l);u>=t&&this.f.item(o).item(l,u+1)}},n.prototype.ak=function(t,e,i){if(this.a.pinnedKeys.contains(t)){var n=this.v(t);if(n>=0){var r=this.a.e7.getRowKey(this.a.i(),n);this.n(r)&&this.az(r,n,null,!1)}}this.az(t,e,i,!0)},n.prototype.ai=function(t,e){for(var n=new i.List$1(fe.$,0),r=new i.List$1(i.Number_$type,0),o=0;o<this.g.o.count;o++)if(!this.g.p._inner[o]){var s=this.g.o._inner[o],a=this.g.q._inner[o];a==t&&(n.add(s),r.add(a)),a>t&&this.g.item(s,a-1)}for(var l=0;l<n.count;l++)this.ak(n._inner[l],r._inner[l],e);for(var u=0;u<this.f.o.count;u++)if(!this.f.p._inner[u])for(var h=this.f.o._inner[u],c=this.f.q._inner[u],p=0;p<c.o.count;p++)if(!this.f.item(h).p._inner[p]){var d=c.o._inner[p],f=this.f.item(h).item(d);f==t&&this.f.item(h).item(d,-1),f>t&&this.f.item(h).item(d,f-1)}},n.prototype.ag=function(t,e){for(var n=this.a.getFirstVisibleIndex(),r=this.a.getLastVisibleIndex(),o=new i.List$1(i.Number_$type,0),s=0;s<this.s.count;s++){var a=this.s._inner[s];a.l>r||a.j<n||(t<a.k&&this.w(o,a.k-1),t<=a.i&&this.w(o,a.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,n,r,o._inner[l],!0)},n.prototype.ae=function(t,e){for(var n=this.a.getFirstVisibleIndex(),r=this.a.getLastVisibleIndex(),o=new i.List$1(i.Number_$type,0),s=0;s<this.s.count;s++){var a=this.s._inner[s];a.l>r||a.j<n||(t<a.k&&this.w(o,a.k),t<=a.i&&this.w(o,a.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,n,r,o._inner[l],!0)},n.prototype.af=function(t,e,n){for(var r=this.a.getFirstVisibleIndex(),o=this.a.getLastVisibleIndex(),s=new i.List$1(i.Number_$type,0),a=0;a<this.s.count;a++){var l=this.s._inner[a];l.l>o||l.j<r||(l.c(t)&&!l.c(e)?(this.w(s,e),e>l.i?this.w(s,l.i):e<l.k&&this.w(s,l.k)):!l.c(t)&&l.c(e)?(this.w(s,e),t>l.i?this.w(s,l.i+1):t<l.k&&this.w(s,l.k-1)):l.c(t)||l.c(e)||(t<l.k&&e>l.i&&(this.w(s,l.k-1),this.w(s,l.i)),t>l.i&&e<l.k&&(this.w(s,l.k),this.w(s,l.i+1))))}for(var u=0;u<s.count;u++)this.a.c5.ag(this.a,r,o,s._inner[u],!0)},n.prototype.w=function(t,e){e<0||e>=this.a.actualColumns.count||t.contains(e)||t.add(e)},n.prototype.aj=function(t){for(var e=new i.List$1(fe.$,0),n=new i.List$1(i.Number_$type,0),r=0;r<this.g.o.count;r++)if(!this.g.p._inner[r]){var o=this.g.o._inner[r],s=this.g.q._inner[r];s==t&&(e.add(o),n.add(s))}for(var a=0;a<e.count;a++)this.ay(e._inner[a],n._inner[a],!0)},n.prototype.aa=function(){this.j=!0},n.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)},n.prototype.ac=function(){for(var t=new i.List$1(i.Number_$type,0),e=new i.HashSet$1(i.Number_$type,0),n=0;n<this.g.o.count;n++)if(!this.g.p._inner[n]){var r=this.g.o._inner[n];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 s=0;s<t.count;s++)e.contains(t._inner[s])||this.a.c5.aq(this.a,t._inner[s])},n.prototype.ab=function(){for(var t=new i.FastIterationDictionary$2(fe.$,i.Number_$type,0),e=new i.FastIterationDictionary$2(fe.$,i.Number_$type,0),n=new i.List$1(i.Number_$type,0),r=0;r<this.f.q.count;r++)for(var o=this.f.o._inner[r],s=this.a.e7.indexOfVisibleItemByKey(this.a.i(),o,this.a.getFirstVisibleIndex(),this.a.getLastVisibleIndex()),a=this.f.q._inner[r],l=0;l<a.q.count;l++){var u=a.o._inner[l];t.d(o)||(t.s(o,this.f.item(o).item(u)),e.s(o,s)),n.add(u),this.f.item(o).item(u,-1)}for(var h=0;h<t.q.count;h++){var c=t.o._inner[h],p=t.q._inner[h];e.q._inner[h];if(p>-1&&p<this.a.e7.getRowCount()){var d=this.a.actualDataSource.getItemAtIndex(p),f=i.typeCast(i.DataSourceSpecialRow.$,d);if(null!=f&&3==f.rowType)if(this.a.e7.getItemKey(this.a.i(),f.targetRow).equals(c))continue}e.q.contains(p)||this.a.c5.af(this.a,p,this.d.item(n._inner[h]),n._inner[h])}},n.prototype.q=function(t){return 2==this.a.selectionMode||5==this.a.selectionMode},n.prototype.as=function(t){this.u=t},n.prototype.z=function(t,e,i,n){var r,o=this;if(void 0===n&&(n=!1),t.l.aj)if((e=!!this.q(this.a.selectionMode)&&e)&&-1!=this.u){var s=((r=new ci).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 a=this.c.f;a<=this.c.d;a++)if(!s.b(a)){var l=this.a.e7.getRowKey(this.a.i(),a);null!=l&&this.g.d(l)&&this.ay(l,a,!1)}for(var u=s.f;u<=s.d;u++){var h=this.a.e7.getRowKey(this.a.i(),u);null==h||this.g.d(h)||this.aq(h,u,!1)}this.a.ur(),this.c=s}else i||n?this.au(t):this.at(t),this.c=null,this.p(t)?this.u=t.l.x:this.u=-1},n.prototype.al=function(){if(null!=this.a.actualDataSource){this.a.t8();for(var t=this.a.e7.getRowCount(),e=0;e<t;e++){var n=this.a.actualDataSource.getItemAtIndex(e);if(null===i.typeCast(i.DataSourceSpecialRow.$,n)){var r=this.a.e7.getRowKey(this.a.i(),e);null==r||this.g.d(r)||this.aq(r,e,!1)}}this.a.ur()}},n.$t=i.markType(n,"SelectionManager"),n}(i.Base),kn=function(t){function n(e){var i=t.call(this)||this;return i.c=null,i.e=!1,i.c=e,i}return e.__extends(n,t),n.prototype.d=function(t){if(null==t)return!1;var e=t.lo,i=this.c.sortDescriptions,n=this.a(e,i),r=null==n?0:0==n.c?1:2,o=3==this.c.headerClickAction||2==this.c.headerClickAction,s=this.b(r,o);return this.f(t,s),!0},n.prototype.f=function(t,e){if(null==t)return!1;var i=t.lo,n=this.c.sortDescriptions,r=this.a(i,n);return this.g(i,e,r)},n.prototype.g=function(t,e,i){if(this.e)return!1;this.e=!0;try{var n=this.c.sortDescriptions,r=n.k(i),o=1==this.c.headerClickAction||3==this.c.headerClickAction;switch(null!=i&&n.h(i),0==o&&n.n(),e){case 0:break;case 2:case 1:var s=new yt(2,t,1==e?0:1);o&&r>=0?n.j.insert(r,s):n.g(s)}return!0}finally{this.e=!1}},n.prototype.h=function(){var t=this.c.sortDescriptions,e=t.j.count;if(e>1)for(var i=e-1;i>0;i--)t.j.removeAt(i)},n.prototype.a=function(t,e){if(null==e||e.j.count<1)return null;for(var i=0;i<e.j.count;i++){var n=e.j.item(i);if(n.f==t)return n}return null},n.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},n.$t=i.markType(n,"SortManager"),n}(i.Base),In=new i.Type(null,"IDataAdapter"),Tn=function(t){function n(e){var n=t.call(this)||this;return n.a=null,n.h=new i.Dictionary$2(i.Base.$,i.Number_$type,0),n.i=new i.List$1(fe.$,0),n.g=null,n.b=null,n.d=null,n.propertyChanged=null,n.j=0,n.k=0,n.g=e,n}return e.__extends(n,t),Object.defineProperty(n.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(n.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}),n.prototype.setDataSource=function(t){this.c=t,this.e=i.typeCast(i.IEditableDataSource_$type,this.c)},n.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)},n.prototype.getItemKey=function(t,e){var i=null!=e&&void 0!==e.$$isSpecialRow;if(null==t)return null==e?null:fe.createIdentityKey(e);if(i){var n=e;if(this.c.isSectionContentVisible||!this.c.isSectionHeaderNormalRow||1!=n.rowType)return fe.createIdentityKey(e);if(1==n.rowType)for(var r=n.getSectionKeys(),o=0;o<r.length;o++)for(var s=0;s<t.length;s++)if(t[s]!=r[o])return fe.createIdentityKey(e)}for(var a=new Array(t.length),l=0;l<t.length;l++)a[l]=this.c.getItemProperty(e,t[l]);return new fe(t,a)},n.prototype.getRowKey=function(t,e){if(null==this.c)return null;if(e<0||e>this.c.actualCount-1)return null;var i=this.c.getItemAtIndex(e);return null==i?null:this.getItemKey(t,i)},n.prototype.n=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.o(t,e,n)},n.prototype.o=function(t,e,n){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 i.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()}}},n.prototype.getRowCount=function(){return this.l(0)},n.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},n.prototype.indexOfKey=function(t){return null==this.b?-1:null!=this.b.actualPrimaryKey&&this.b.isKeyIndexLookupSupported?this.b.indexOfKey(t.value):-1},n.prototype.fastGetItemIndexForKey=function(t,e,i,n){var r=this.indexOfVisibleItemByKey(t,e,i,n);return r>=0?r:this.indexOfKey(e)},n.prototype.indexOfVisibleItemByKey=function(t,e,n,r){if(null==this.b||n<0)return-1;for(var o=n;o<=r&&!(o>this.b.actualCount-1);o++){var s=this.b.getItemAtIndex(o);if(null!=s){var a=this.getItemKey(t,s);if(null!=a){if(null!=a.value&&1==a.value.length&&null!=a.value[0]&&i.getInstanceType(a.value[0])==i.DataSourceSpecialRow.$&&null!=e.value&&1==e.value.length&&null!=e.value[0]&&i.getInstanceType(e.value[0])==i.DataSourceSpecialRow.$){var l=i.typeCast(i.DataSourceSpecialRow.$,a.value[0]),u=i.typeCast(i.DataSourceSpecialRow.$,e.value[0]);if(l.rowType==u.rowType&&3==l.rowType&&l.targetRow==u.targetRow)return o}if(a.equals(e))return o}}}return-1},n.prototype.l=function(t){return null==this.b?0:this.b.actualCount},n.prototype.getSectionCount=function(){return null==this.a?0:this.a.length},n.prototype.f=function(t){return t},n.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},n.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)},n.prototype.resolveValueForPath=function(t,e){var i=null;if(-400==e.a5){var n=this.b.getRowType(e.x);i=this.b.getMainValuePath(n)}else{i=t.cf(e).lo}return this.resolveValue(e.x,i)},n.prototype.resolveRow=function(t){return t<0||t>this.b.actualCount-1?null:this.b.getItemAtIndex(t)},n.prototype.resolveValueForDataRow=function(t){return t<0||t>this.b.actualCount-1?null:this.b.getItemAtIndex(t)},n.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)},n.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},n.prototype.getRowPathForRow=function(t){var e=this.getSectionForRow(t);return new g(e,t-this.a[e].startIndex)},Object.defineProperty(n.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(n.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}),n.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)},n.prototype.isPlaceholderItem=function(t){return null!=this.b&&this.b.isPlaceholderItem(t)},n.prototype.getRowType=function(t){return null==this.b||t<0||t>=this.getRowCount()?0:this.b.getRowType(t)},n.prototype.getStickyRows=function(){return null==this.b?null:this.b.getStickyRows()},n.prototype.getStickyRowsInRange=function(t,e){return null==this.b?null:this.b.getStickyRowsInRange(t,e)},n.prototype.getStickRowPriority=function(t){return null==this.b?-1:this.b.getStickyRowPriority(t)},n.prototype.isExclusivelySticky=function(t){return null!=this.b&&this.b.isExclusivelySticky(t)},n.prototype.isRowSpanning=function(t){return null!=this.b&&this.b.isRowSpanning(t)},n.prototype.pinRow=function(t){null!=this.b?this.b.pinRow(t.value):this.i.add(t)},n.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}},n.prototype.clearPinnedRows=function(){null!=this.b&&this.b.clearPinnedRows()},n.prototype.isRowPinned=function(t){return null!=this.b&&this.b.isRowPinned(t)},n.prototype.getRowIndent=function(t){return null==this.b?0:this.b.getRowLevel(t)},n.prototype.getRootSummaryRowCount=function(){return null==this.b?0:this.b.getRootSummaryRowCount()},n.prototype.isEditedValue=function(t,e){if(null==this.e||null==t)return!1;var i=this.getItemKey(this.b.actualPrimaryKey,t);return this.e.hasEdit(i.value,e)||this.e.hasAdd(i.value)},n.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)},n.prototype.getPendingEditID=function(t,e){if(null==this.e||null==t)return-1;var i=this.getItemKey(this.b.actualPrimaryKey,t);return this.e.getTransactionID(i.value,e)},n.prototype.getError=function(t){return null==this.e||-1==t?null:this.e.getTransactionErrorByID(t)},n.$t=i.markType(n,"DataAdapter",i.Base.$,[i.INotifyPropertyChanged_$type,In]),n}(i.Base),Rn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.g2=i.truncate(i.DeviceUtils.g(2)),e.gy=1,e.gz=NaN,e}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"columnMovingSeparator"},n.prototype.n=function(t){return new Ni},n.prototype.gk=function(){return I.a4},Object.defineProperty(n.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(n.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(n.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}),n.prototype.eq=function(t,e){this.e5(),this.g7()},n.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},n.prototype.g7=function(){i.isNaN_(this.g1)?null==this.grid||i.isNaN_(this.grid.columnMovingSeparatorOpacity)?this.g0=1:this.g0=this.grid.columnMovingSeparatorOpacity:this.g0=this.g1},n.prototype.es=function(t,e){switch(e.propertyName){case"ColumnMovingSeparatorBackground":this.e5();break;case"ColumnMovingSeparatorOpacity":this.g7()}},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r),e.co=this.g0},n.$t=i.markType(n,"ColumnMovingSeparator",Cn.$),n}(Cn),An=function(t){function n(){var e=t.call(this)||this;return e.n4=null,e.hz=4,e}return e.__extends(n,t),Object.defineProperty(n.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(n.prototype,"n6",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"oa",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ob",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n3",{get:function(){return this.gz},set:function(t){this.gz=t},enumerable:!1,configurable:!0}),n.prototype.n=function(t){return new Hi},n.prototype.d2=function(t,e,i){return"combobox"},n.prototype.eq=function(e,i){t.prototype.eq.call(this,e,i),null==this.n5&&null!=this.n6&&null!=i&&(this.n5=i.externalGrid.createLocalDataSource(this.n6))},n.prototype.dz=function(t,e,i){return this.n9(e)},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r),e.mh=this.dz(i,n,r)},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r)},n.prototype.ev=function(e,n,r,o){switch(t.prototype.ev.call(this,e,n,r,o),e){case"EditorItemsSourceInternal":null!==i.typeCast(i.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 s=r;s.schemaChanged=i.delegateRemove(s.schemaChanged,i.runOn(this,this.oc))}if(null!=this.n5){var a=this.n5;a.schemaChanged=i.delegateCombine(a.schemaChanged,i.runOn(this,this.oc))}this.od();break;case"EditorTextFieldInternal":case"EditorValueFieldInternal":this.od()}},n.prototype.oc=function(t,e){this.od()},n.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]])}},n.prototype.n8=function(t){return"string"==typeof t?t:null},n.prototype.n9=function(t){var e=null;if(null!=this.n5&&null!=this.oa){var n=this.n5.indexOfKey(null!==i.typeCast(i.Array_$type,t)?t:[t]);if(n>-1){var r=this.n5.getItemPropertyAtIndex(n,this.oa);null!=r&&(e=this.n8(r))}}return null==e&&null!=t&&(e=this.n8(t)),e},n.$t=i.markType(n,"ComboBoxColumn",_n.$),n}(_n),En=function(t){function n(){var e=t.call(this)||this;return e.n6=new D,e.n7=0,e.oh=null,e.og=null,e.n3=null,e.od=null,e.oa=!1,e.n5=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"n8",{get:function(){return this.n7},set:function(t){var e=this.n7;this.n7=t,this.n7!=e&&this.et("DateTimeFormat",4,i.enumGetBox(B,e),i.enumGetBox(B,this.n7))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.prototype,"n9",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"oe",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ol",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"om",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),n.prototype.ev=function(e,n,r,o){switch(t.prototype.ev.call(this,e,n,r,o),e){case"DateTimeFormat":this.n6.k();break;case"FormatString":case"FormatSpecifiers":null!=this.oq?(this.n5=new i.BindingFormatter,this.n5.j=this.oq,this.n5.d=this.n4):this.n5=null}},n.prototype.n=function(t){return new Bi},n.prototype.d2=function(t,e,i){return 4==t.af?"datetime_mergedCell":"datetime"},n.prototype.dz=function(t,e,i){return this.on(e)},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r);var o=e;o.mp=this.oc(n),o.mj=this.n6,this.n6.j(o.ml)},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r);var o=e;o.ml=this.n8,o.m6=this.oq,o.mg=this.n4,o.mz=this.of},n.prototype.oc=function(t){return null==t?i.dateMinValue():null!==i.typeCast(i.Date_$type,t)?t:i.dateMinValue()},n.prototype.on=function(t){var e=null!==i.typeCast(i.Date_$type,t)?t:i.dateMinValue();if(null!=this.n5)return+e==+i.dateMinValue()?"":this.n5.i(e);if(null!=this.od){if(+e==+i.dateMinValue())return"";var n=e;return this.od.format(n)}this.n6.j(this.n8);var r=this.n6.i(e);return r==i.stringEmpty()&&null!=t&&null===i.typeCast(i.Date_$type,t)?t.toString():r},n.$t=i.markType(n,"DateTimeColumn",_n.$),n}(_n),Bn=new i.Type(null,"IExternalDefinitionBase"),Dn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._resolvedValue=null,e._rowObject=null,e._cellInfo=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"resolvedValue",{get:function(){return this._resolvedValue},set:function(t){this._resolvedValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowObject",{get:function(){return this._rowObject},set:function(t){this._rowObject=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"DataBindingEventArgs",i.EventArgs.$),n}(i.EventArgs),$n=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.get_s=function(){return!0},n.prototype.aq=function(){return null},n.prototype.p=function(){var e=this.aq();if(null!=e)for(var i=0;i<e.count;i++)if(e._inner[i].p())return!0;return t.prototype.p.call(this)},n.prototype.q=function(){var e=this.aq();if(null!=e)for(var i=0;i<e.count;i++)if(e._inner[i].q())return!0;return t.prototype.q.call(this)},n.prototype.r=function(){var e=this.aq();if(null!=e)for(var i=0;i<e.count;i++)if(e._inner[i].r())return!0;return t.prototype.r.call(this)},n.$t=i.markType(n,"GridCompoundConditionalStyle",fn.$),n}(fn),Mn=function(t){function n(e){var n=t.call(this)||this;n.f=null,n.j=!1,n.q=new i.List$1(i.ICommandAvailabilityListener_$type,0),n.r=new i.List$1(i.ICommandStateChangedListener_$type,0),n.h=null,n.f=e;var r=n.f;if(r.propertyChanged=i.delegateCombine(r.propertyChanged,i.runOn(n,n.a2)),!n.j){n.j=!0,n.f.grid.sortDescriptions.m(i.runOn(n,n.bz)),n.f.grid.groupDescriptions.m(i.runOn(n,n.br)),n.f.grid.summaryDescriptions.m(i.runOn(n,n.b0));var o=n.f.grid;o.actualColumnsChanged=i.delegateCombine(o.actualColumnsChanged,i.runOn(n,n.bp));var s=n.f.grid;s.columnPinnedChanged=i.delegateCombine(s.columnPinnedChanged,i.runOn(n,n.bq))}return n}return e.__extends(n,t),n.prototype.bz=function(t,e){this.bj()},n.prototype.b0=function(t,e){this.bl()},n.prototype.bq=function(t,e){this.bg()},n.prototype.bp=function(t,e){this.bg()},n.prototype.br=function(t,e){this.bc(),this.bj()},n.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()}},n.prototype.a9=function(){var t=this;this.f.my((function(e){return e.setContextValue("GridColumnOptionsColumnName",3,t.f.k3)}))},n.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)}))},n.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))}))},n.prototype.l=function(t){var e=this.f;if(null==e)return!1;var i=e.grid;if(null==i)return!1;var n=i.actualColumns.indexOf(e);return!(n<0)&&(t?this.f.grid.canMoveColumnLeft(n):this.f.grid.canMoveColumnRight(n))},n.prototype.n=function(t){return this.l(!1)},n.prototype.m=function(t){return this.l(!0)},n.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")}))},n.prototype.bc=function(){for(var t=!1,e=this.f.grid,i=0;i<e.groupDescriptions.j.count;i++){if(e.groupDescriptions.j.item(i).f==this.f.lo){t=!0;break}}this.f.my((function(e){return e.setContextValue("GridColumnOptionsGroupedIcon",3,t?"Ungroup":"Group")}))},n.prototype.bn=function(){var t;t=!this.f.jo,this.f.my((function(e){return e.setContextValue("GridColumnOptionsVisibilityIcon",3,t?"Hide":"Show")}))},n.prototype.a3=function(t){this.q.add(t)},n.prototype.a4=function(t){this.r.add(t)},Object.defineProperty(n.prototype,"i",{get:function(){return null==this.h&&(this.h=new i.SRProvider(this.f.grid.externalGrid.renderer),this.h.cb("DataGrid")),this.h},enumerable:!1,configurable:!0}),n.prototype.am=function(t,e){var n=this.i.b1(t);return i.stringIsNullOrEmpty(n)?e:n},n.prototype.a=function(){n.k||(n.k=!0,i.SvgIconRegistry.instance.addSvgPathString("XGrid","DotDotDot",n.ak),i.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowUpward",n.z),i.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowDownward",n.x),i.SvgIconRegistry.instance.addSvgPathString("XGrid","PinLeft",n.at),i.SvgIconRegistry.instance.addSvgPathString("XGrid","PinRight",n.au),i.SvgIconRegistry.instance.addSvgPathString("XGrid","UnpinLeft",n.ay),i.SvgIconRegistry.instance.addSvgPathString("XGrid","UnpinRight",n.az),i.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowForward",n.y),i.SvgIconRegistry.instance.addSvgPathString("XGrid","ArrowBackward",n.w),i.SvgIconRegistry.instance.addSvgPathString("XGrid","Group",n.ap),i.SvgIconRegistry.instance.addSvgPathString("XGrid","Ungroup",n.ax),i.SvgIconRegistry.instance.addSvgPathString("XGrid","Show",n.a1),i.SvgIconRegistry.instance.addSvgPathString("XGrid","Hide",n.a0),i.SvgIconRegistry.instance.addSvgPathString("XGrid","ClearFilter",n.ab));new r.ToolActionCollection;var t=new i.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 e,o=new i.ToolActionGroupHeaderInfo;o.name="DataGridColumnHeader",o.height=46,o.contextBindings=[(e=new i.ToolContextBindingInfo,e.contextKey="GridColumnOptionsColumnName",e.propertyName="Title",e)];var s=new i.List$1(i.ToolActionInfo.$,0),a=new i.ToolActionIconButtonInfo;a.name="DataGridColumnGroup",a.iconCollectionName="XGrid",a.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsGroupedIcon",t.propertyName="IconName",t}()];var l=new i.ToolActionIconButtonInfo;l.name="DataGridColumnHide",l.iconCollectionName="XGrid",l.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsVisibilityIcon",t.propertyName="IconName",t}()],s.add(a),s.add(l),o.actions=s.toArray(),o.density=3;var u=new i.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 i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortAscending",t.propertyName="LeftIsSelected",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortDescending",t.propertyName="RightIsSelected",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortAscendingDisabled",t.propertyName="LeftIsDisabled",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSortDescendingDisabled",t.propertyName="RightIsDisabled",t}()],u.density=3;var h=new i.ToolActionButtonPairInfo;h.name="DataGridColumnMove",h.isToggleDisabled=!0,h.title=this.am("Column_Move","Move"),h.leftTitle=this.am("Column_Move_Left","Left"),h.leftCommandArgument="MoveLeft",h.leftIconCollectionName="XGrid",h.leftIconName="ArrowBackward",h.rightIconCollectionName="XGrid",h.rightCommandArgument="MoveRight",h.rightIconName="ArrowForward",h.rightTitle=this.am("Column_Move_Right","Right"),h.density=3,h.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveLeftSelected",t.propertyName="LeftIsSelected",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveRightSelected",t.propertyName="RightIsSelected",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveLeftDisabled",t.propertyName="LeftIsDisabled",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsMoveRightDisabled",t.propertyName="RightIsDisabled",t}()];var c=new i.ToolActionButtonPairInfo;c.name="DataGridColumnPin",c.title=this.am("Column_Pin","Pin"),c.leftTitle=this.am("Column_Pin_Left","Left"),c.leftIconCollectionName="XGrid",c.leftCommandArgument="PinLeft",c.rightIconCollectionName="XGrid",c.rightCommandArgument="PinRight",c.rightTitle=this.am("Column_Pin_Right","Right"),c.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsPinnedLeft",t.propertyName="LeftIsSelected",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsPinnedRight",t.propertyName="RightIsSelected",t}(),function(){var t=new i.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsPinnedLeftIcon",t.propertyName="LeftIconName",t}(),function(){var t=new i.ToolContextBindingInfo;return t.contextKey="GridColumnOptionsPinnedRightIcon",t.propertyName="RightIconName",t}()],c.density=3;var p=new i.ToolActionLabelInfo;p.name="DataGridColumnSummaries",p.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesTitle",t.propertyName="Title",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesVisible",t.propertyName="Visibility",t}()];var d=new i.ToolActionCheckboxInfo;d.name="DataGridColumnAverageSummary",d.title=this.am("Column_Options_Summary_Average","Average"),d.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesAverageChecked",t.propertyName="IsChecked",t}()];var f=new i.ToolActionCheckboxInfo;f.name="DataGridColumnMinimumSummary",f.title=this.am("Column_Options_Summary_Minimum","Minimum"),f.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesMinimumChecked",t.propertyName="IsChecked",t}()];var m=new i.ToolActionCheckboxInfo;m.name="DataGridColumnMaximumSummary",m.title=this.am("Column_Options_Summary_Maximum","Maximum"),m.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesMaximumChecked",t.propertyName="IsChecked",t}()];var g=new i.ToolActionCheckboxInfo;g.name="DataGridColumnCountSummary",g.title=this.am("Column_Options_Summary_Count","Count"),g.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesCountChecked",t.propertyName="IsChecked",t}()];var b=new i.ToolActionCheckboxInfo;b.title=this.am("Column_Options_Summary_Sum","Sum"),b.name="DataGridColumnSumSummary",b.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsSummariesSumChecked",t.propertyName="IsChecked",t}()];var y=new i.ToolActionGroupHeaderInfo;y.name="DataGridColumnSummariesHeader",y.title=this.am("Column_Options_Summaries","Summaries");var v=new i.List$1(i.ToolActionInfo.$,0);v.add(y),v.add(d),v.add(f),v.add(m),v.add(g),v.add(b),p.actions=v.toArray();var C=new i.ToolActionCheckboxListInfo;C.name="DataGridColumnFilter",C.contextBindings=[function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterIndexType",t.propertyName="IndexType",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterItemsSource",t.propertyName="ItemsSource",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterSelectedKeys",t.propertyName="SelectedKeys",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterPrimaryKey",t.propertyName="PrimaryKey",t}(),function(){var t=new i.ToolContextBindingInfo;return t.bindingMode=1,t.contextKey="GridColumnOptionsFilterDataMemberPath",t.propertyName="DataMemberPath",t}()],C.showSelectAll=!0;var _=new i.ToolActionLabelInfo;_.title=this.am("Clear_Column_Filter","Clear Filter"),_.iconName="ClearFilter",_.iconCollectionName="XGrid",_.name="DataGridClearFilter";var w=new i.List$1(i.ToolActionInfo.$,0);w.add(o),w.add(u),w.add(h),w.add(c),w.add(p),w.add(_),w.add(C);var S=new i.ToolActionSubPanelInfo;S.name="DataGridColumnApplyOrCancel";var P=new i.ToolActionButtonInfo;P.name="DataGridColumnApply",P.title=this.am("Apply","Apply"),P.paddingLeft=20,P.paddingRight=40,P.closeOnExecute=!0;var O=new i.ToolActionButtonInfo;O.name="DataGridColumnCancel",O.title=this.am("Cancel","Cancel"),O.closeOnExecute=!0,S.actions=[P,O],S.height=42,S.subPanelRowHeight=42,w.add(S),t.actions=w.toArray(),t.name="DataGridColumnOptions",t.tooltipDelay=500;var x=[t];return this.a9(),this.bj(),this.bg(),this.bh(),this.bc(),this.bn(),this.bl(),x},n.prototype.bk=function(){var t=this;this.f.my((function(e){return e.setContextValue("GridColumnOptionsSummariesTitle",3,t.al())}))},n.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,i=!1,n=!1,r=!1,o=!1;if(null!=this.f&&null!=this.f.grid)for(var s=this.f.grid,a=0;a<s.summaryDescriptions.j.count;a++){var l=s.summaryDescriptions.j.item(a);if(l.ah==this.f.lo&&l.t)switch(l.i){case 3:e=!0;break;case 0:i=!0;break;case 1:n=!0;break;case 2:o=!0;break;case 4:r=!0}}this.f.my((function(s){s.setContextValue("GridColumnOptionsSummariesVisible",6,t.b6()),s.setContextValue("GridColumnOptionsSummariesAverageChecked",5,e),s.setContextValue("GridColumnOptionsSummariesMinimumChecked",5,i),s.setContextValue("GridColumnOptionsSummariesMaximumChecked",5,n),s.setContextValue("GridColumnOptionsSummariesSumChecked",5,o),s.setContextValue("GridColumnOptionsSummariesCountChecked",5,r)}))}},n.prototype.b6=function(){return this.f.jc&&3!=this.f.grid.summaryScope?0:1},n.prototype.an=function(){return this.am("Column_Options_Summaries","Summaries")+" ("+this.v()+")"},n.prototype.al=function(){return this.am("Column_Options_Summaries","Summaries")+" ("+this.u()+")"},n.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},n.prototype.v=function(){if(null==this.f)return 0;for(var t=this.f.grid,e=0,i=0;i<t.summaryDescriptions.j.count;i++){var n=t.summaryDescriptions.j.item(i);n.ah==this.f.lo&&n.t&&e++}return e},n.prototype.ba=function(){var t=this.f,e=this.f.grid,n=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 s=new i.SortDescription;s.propertyName=n,s.direction=0,o.groupDescriptions.add(s);for(var a=e.z(t),l=o.filterExpressions,u=l.k.count-1;u>=0;u--){if(l.k.item(u).isAutoGenerated){null!=a?l.k.item(u,a):o.filterExpressions.removeAt(u);break}}o.flushAutoRefresh(),this.f.my((function(t){t.setContextValue("GridColumnOptionsFilterItemsSource",7,o),t.setContextValue("GridColumnOptionsFilterDataMemberPath",3,n),t.setContextValue("GridColumnOptionsFilterPrimaryKey",7,[n])})),o.shouldEmitSectionHeaders=!0,o.isSectionHeaderNormalRow=!0,o.isSectionExpandedDefault=!1,o.isSectionCollapsable=!0,o.isSectionContentVisible=!1,this.b4()}},n.prototype.b5=function(t,e){},n.prototype.b4=function(){for(var t,n,o=this.f,s=null!=o?o.lo:null,a=!0,l=i.toNullable(f,null),u=this.s(),h=u.count-1;h>=0;h--){var c=u._inner[h];switch(c.operator){case 0:case 1:break;default:u.removeAt(h);continue}if(i.nullableEquals(l,null))l=i.toNullable(f,c.operator);else if(l.value!=c.operator){a=!1;break}}if(0!=u.count&&a){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 r.LayoutSelectedKeysCollection;try{for(var d=e.__values(i.fromEnum(u)),m=d.next();!m.done;m=d.next()){var g=m.value;p.add(new r.LayoutPrimaryKeyValue(0,[s],[g.value]))}}catch(e){t={error:e}}finally{try{m&&!m.done&&(n=d.return)&&n.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 r.LayoutSelectedKeysCollection)}))},n.prototype.b3=function(){},n.prototype.o=function(){var t=this.f;return null!=t&&null!=t.g1},n.prototype.s=function(){var t=new i.List$1(Ci.$,0),e=this.f;if(null==e)return t;null!=e.g1&&(t=n.bo(e.g1,t).p1);return t},n.bo=function(t,e){var r=i.typeCast(Si.$,t);if(null!=r)for(var o=0;o<r.count;o++){var s=r.item(o);e=n.bo(s,e).p1}else null!=t&&null!==i.typeCast(Ci.$,t)&&e.add(t);return{p1:e}},n.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},n.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,i=null,n=t.argumentsList,r=0;r<n.length;r++){var o=n[r];"Ascending"==o.argumentName&&(e=o),"Descending"==o.argumentName&&(i=o)}var s=!1,a=!1;null!=e&&(s=e.value),null!=i&&(a=i.value),this.e=s||a?s?1:2:0;break;case"DataGridColumnMove":for(var l=null,u=null,h=t.argumentsList,c=0;c<h.length;c++){var p=h[c];"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 b=m[g];"PinLeft"==b.argumentName&&(d=b),"PinRight"==b.argumentName&&(f=b)}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},n.prototype.bb=function(t,e,i){this.a5()},n.prototype.a7=function(){this.f.g1=null,this.b4()},n.prototype.a8=function(){null!=this.f&&this.bl()},n.b=function(t,e){var i=new Ci;return i.operator=t,i.value=e,i},n.prototype.a6=function(){var t=this.f.im();if(null!=t){var e=t.getContextValue("GridColumnOptionsSummariesAverageChecked",5),n=t.getContextValue("GridColumnOptionsSummariesMinimumChecked",5),r=t.getContextValue("GridColumnOptionsSummariesMaximumChecked",5),o=t.getContextValue("GridColumnOptionsSummariesSumChecked",5),s=t.getContextValue("GridColumnOptionsSummariesCountChecked",5),a=new i.HashSet$1(i.DataSourceSummaryOperand_$type,0);e&&a.add_1(3),n&&a.add_1(0),r&&a.add_1(1),o&&a.add_1(2),s&&a.add_1(4),this.by(a),e&&this.bm(e,3),s&&this.bm(s,4),r&&this.bm(r,1),n&&this.bm(n,0),o&&this.bm(o,2)}},n.prototype.a5=function(){var t,o,s=this.f.im();if(null!=s){var a=s.getContextValue("GridColumnOptionsFilterSelectedKeys",7),l=i.EnumUtil.getEnumValue(r.ToolActionCheckboxListIndexType_$type,s.getContextValue("GridColumnOptionsFilterIndexType",6));if(0!=a.count){var u,h;0==l?(h=!1,u=1):(h=!0,u=0);for(var c=new i.List$1(Ci.$,0),p=a,d=0;d<p.count;d++){var f=p._inner[d].value[0],m=n.b(u,f);c.add(m)}if(1==c.count)this.f.g1=c._inner[0];else{var g=new Si;g.usesOrOperator=h;try{for(var b=e.__values(i.fromEnum(c)),y=b.next();!y.done;y=b.next()){var v=y.value;g.add(v)}}catch(e){t={error:e}}finally{try{y&&!y.done&&(o=b.return)&&o.call(b)}finally{if(t)throw t.error}}this.f.g1=g}this.f.m0("Filtered")}else this.a7()}},n.prototype.b2=function(){this.f.jo=!this.f.jo},n.prototype.b1=function(){var t=new _t(0);1==this.e&&(t.c=0),2==this.e&&(t.c=1),t.f=this.f.lo;for(var e=this.f.grid,i=!1,n=0;n<e.groupDescriptions.j.count;n++){if(e.groupDescriptions.j.item(n).f==this.f.lo){e.groupDescriptions.d(n),i=!0;break}}i||e.groupDescriptions.g(t),this.bj()},n.prototype.by=function(t){for(var e=this.f.grid,i=e.summaryDescriptions.j.count-1;i>=0;i--){var n=e.summaryDescriptions.j.item(i);n.ah==this.f.lo&&!t.contains(n.i)&&n.t&&e.summaryDescriptions.d(i)}},n.prototype.bm=function(t,e){var i=new ct(1,this.f.lo);i.i=e;for(var n=this.f.grid,r=0;r<n.summaryDescriptions.j.count;r++){var o=n.summaryDescriptions.j.item(r);if(o.ah==this.f.lo&&o.i==i.i&&o.t==i.t){if(t)return;n.summaryDescriptions.d(r)}}t&&n.summaryDescriptions.g(i)},n.prototype.bf=function(t){t?this.f.il=1:1==this.f.il&&(this.f.il=0)},n.prototype.bi=function(t){t?this.f.il=2:2==this.f.il&&(this.f.il=0)},n.prototype.bt=function(){var t=this.f.grid.actualColumns.indexOf(this.f);t>=0&&this.f.grid.canMoveColumnRight(t)&&this.f.grid.moveColumnRight(t)},n.prototype.bs=function(){var t=this.f.grid.actualColumns.indexOf(this.f);t>=0&&this.f.grid.canMoveColumnLeft(t)&&this.f.grid.moveColumnLeft(t)},n.prototype.bw=function(t){this.q.remove(t)},n.prototype.bx=function(t){this.r.remove(t)},n.c=function(t,e){if(null!=t){var n=t.grid;if(null!=n)for(var r=t.lo,o=n.groupDescriptions.j,s=0;s<o.count;s++){var a=o.item(s),l=a.f;if(0==i.StringComparer.b.compare(r,l))return{ret:a,p1:s}}}return{ret:null,p1:-1}},n.d=function(t){switch(t){case 0:return 1;case 1:return 2;default:return 1}},n.t=function(t){switch(t){case 1:return 0;case 2:return 1;case 0:default:return 0}},Object.defineProperty(n.prototype,"e",{get:function(){var t=this.f;if(null!=t){var e,i=function(){var i=n.c(t,e);return e=i.p1,i.ret}();return null!=i?n.d(i.c):t.hr}return 0},set:function(t){var e=this.f;if(null!=e){var i,r=function(){var t=n.c(e,i);return i=t.p1,t.ret}();if(null!=r){var o=e.grid;if(null!=o){var s=0!=t?n.t(t):0;r.c=s,o.groupDescriptions.d(i),o.groupDescriptions.o(i,r)}return}e.hr=t}},enumerable:!1,configurable:!0}),n.prototype.be=function(t){t?this.e=2:2==this.e&&(this.e=0)},n.prototype.bd=function(t){t?this.e=1:1==this.e&&(this.e=0)},n.prototype.bu=function(t,e){null!=t&&this.j&&(this.j=!1,t.groupDescriptions.p(i.runOn(this,this.br)),t.sortDescriptions.p(i.runOn(this,this.bz)),t.summaryDescriptions.p(i.runOn(this,this.b0)),t.actualColumnsChanged=i.delegateRemove(t.actualColumnsChanged,i.runOn(this,this.bp)),t.columnPinnedChanged=i.delegateRemove(t.columnPinnedChanged,i.runOn(this,this.bq))),null==e||this.j||(this.j=!0,e.groupDescriptions.m(i.runOn(this,this.br)),e.sortDescriptions.m(i.runOn(this,this.bz)),e.summaryDescriptions.m(i.runOn(this,this.b0)),e.actualColumnsChanged=i.delegateCombine(e.actualColumnsChanged,i.runOn(this,this.bp)),e.columnPinnedChanged=i.delegateCombine(e.columnPinnedChanged,i.runOn(this,this.bq)))},n.prototype.bv=function(){this.bg(),this.ba()},n.$t=i.markType(n,"DataGridColumnToolbarManager"),n.k=!1,n.z="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",n.x="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",n.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",n.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",n.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",n.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",n.w="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",n.y="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",n.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",n.ap="M9,19v-2h11v2H9z M9,15v-2h11v2H9z M9,11V9h11v2H9z M7,7V5h13v2H7z M4,5h2v2H4V5z",n.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",n.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",n.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",n.ab="M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z",n}(i.Base),zn=function(t){function n(){var e=t.call(this)||this;return e.g5=i.Rect.empty,e.g0=null,e.gy=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"g6",{get:function(){return this.g5},set:function(t){var e=this.g5;this.g5=t,i.Rect.l_op_Inequality(e,this.g5)&&this.et("ClipRect",11,e,this.g5)},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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}),n.prototype.n=function(t){return new Di},n.prototype.d2=function(t,e,i){return"editorCell"},n.prototype.eq=function(t,e){},n.prototype.es=function(t,e){e.propertyName},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,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},n.prototype.eo=function(e,n,r,o){t.prototype.eo.call(this,e,n,r,o);var s=e;s.hm=r,s.na=r,s.me=this.g6,s.mk=this.gz,s.nn=null!=this.gz?this.gz.it:null;var a=n.actualColumns._inner[e.l.a5];if(null!=a){var l=n.e7.getPendingEditID(o,a.lo);s.it=n.e7.getError(l),s.mm=n.cj.f(a),s.m9=a.kq,s.ni=a.lk,s.mg=a.gz,s.mi=n.actualDataSource.resolveSchemaPropertyType(a.lo),null!==i.typeCast(En.$,a)&&(s.nf=i.typeCast(En.$,a).oj,s.ms=i.typeCast(En.$,a).ob)}},n.$t=i.markType(n,"EditorDefinition",Cn.$),n}(Cn),Nn=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.n=function(t){return new Mi},n.prototype.d2=function(t,e,i){return"editorRowCell"},n.prototype.eq=function(t,e){},n.prototype.es=function(t,e){e.propertyName},n.prototype.el=function(e,n,r,o){t.prototype.el.call(this,e,n,r,o);var s=e;s.lx=I.bl,null!=n.editRowBorder?s.l0=n.editRowBorder:s.l0=I.az,s.e2=i.truncate(n.editRowBorderWidth.left),s.e7=i.truncate(n.editRowBorderWidth.top),s.e5=i.truncate(n.editRowBorderWidth.right),s.e0=i.truncate(n.editRowBorderWidth.bottom)},n.$t=i.markType(n,"EditRowDefinition",Cn.$),n}(Cn),Fn=function(t){function n(){var e=t.call(this)||this;return e.gz=i.truncate(i.DeviceUtils.g(12)),e.g1=i.truncate(i.DeviceUtils.g(1)),e.g0=i.truncate(i.DeviceUtils.g(12)),e.gy=i.truncate(i.DeviceUtils.g(1)),e}return e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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(n.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}),n.prototype.n=function(t){return new $i},n.prototype.d2=function(t,e,i){return"filterRowCell"},n.prototype.eq=function(t,e){},n.prototype.es=function(t,e){switch(e.propertyName){case"CellTextColor":this.fh();break;case"CellBackground":this.e5()}},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r),e.gm=this.g3,e.gq=this.g5,e.go=this.g4,e.gk=this.g2;var o=e,s=i.cf(e.l);o.mq=s.jm},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r);var o=e;if(null!=i.actualDataSource){var s=i.cf(e.l);o.mo=s.h8,o.mk=i.actualDataSource.resolveSchemaPropertyType(s.lo),o.mi=s.g1}},n.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},n.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},n.$t=i.markType(n,"FilterRowDefinition",Cn.$),n}(Cn),Gn=function(t){function n(){var e=t.call(this)||this;return e.hl=null,e.hk=null,e.gz=3,e.gy=3,e.g3=i.truncate(i.DeviceUtils.g(12)),e.g5=i.truncate(i.DeviceUtils.g(0)),e.g4=i.truncate(i.DeviceUtils.g(12)),e.g2=i.truncate(i.DeviceUtils.g(0)),e.hm=e.hn(),e}return e.__extends(n,t),n.prototype.gr=function(){return I.bp},n.prototype.gk=function(){return I.bn},n.prototype.hn=function(){return I.br},n.prototype.aj=function(){return I.j},n.prototype.eq=function(t,e){this.e5(),this.fh(),this.fi(),this.hi(),this.hj()},n.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},n.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},n.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},n.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},n.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},n.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(n.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(n.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(n.prototype,"g1",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("SortIndicatorStyle",11,i.enumGetBox(s,e),i.enumGetBox(s,this.gz))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g0",{get:function(){return this.gy},set:function(t){var e=this.gy;this.gy=t,this.gy!=e&&this.et("ActualSortIndicatorStyle",11,i.enumGetBox(s,e),i.enumGetBox(s,this.gy))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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}),n.prototype.av=function(e){if(t.prototype.av.call(this,e))return!0;if(i.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},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r),e.gm=this.g7,e.gq=this.g9,e.go=this.g8,e.gk=this.g6,e.ma=this.hm},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r);var o=i.cf(e.l);if(null!=o&&e.l.g&&o.jf())for(var s=o.ip,a=s.o,l=a.count,u=s.p,h=s.q,c=0;c<l;c++)u._inner[c]||e.k8(a._inner[c],h._inner[c])},n.$t=i.markType(n,"Header",Cn.$),n}(Cn),Vn=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.gy=1,e.gz=NaN,e}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"columnResizingSeparator"},n.prototype.n=function(t){return new Ni},n.prototype.gk=function(){return I.bb},Object.defineProperty(n.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(n.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}),n.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},n.prototype.g5=function(){i.isNaN_(this.g1)?null==this.grid||i.isNaN_(this.grid.columnResizingSeparatorOpacity)?this.g0=1:this.g0=this.grid.columnResizingSeparatorOpacity:this.g0=this.g1},n.prototype.g4=function(t,e){switch(e.propertyName){case"ColumnResizingSeparatorBackground":this.e5();break;case"ColumnResizingSeparatorOpacity":this.g5()}},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r),e.co=this.g0},n.$t=i.markType(n,"ColumnResizingSeparator",Cn.$),n}(Cn),qn=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"headerSeparator"},n.prototype.n=function(t){return new Ni},n.prototype.gk=function(){return I.bo},n.prototype.gy=function(){return i.truncate(i.DeviceUtils.g(1))},n.prototype.eq=function(t,e){this.e5(),this.gz()},n.prototype.es=function(t,e){switch(e.propertyName){case"HeaderSeparatorBackground":this.e5()}},n.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},n.prototype.gz=function(){if(null!=this.grid){this.f8=((e=new i.Brush).color=i.Color.u(0,0,0,0),e);var t=this.grid.nn(this.grid.headerSeparatorWidth);this.cc=t,this.cd=t}var e},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r)},n.$t=i.markType(n,"HeaderSeparator",Cn.$),n}(Cn),Ln=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"n7",{get:function(){return this.n6},set:function(t){var e=this.n6;this.n6=t,this.n6!=e&&this.et("ImageStretchOption",4,i.enumGetBox(q,e),i.enumGetBox(q,this.n6))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n5",{get:function(){return this.n4},set:function(t){var e=this.n4;this.n4=t,this.n4!=e&&this.et("ImageResourceType",11,i.enumGetBox(H,e),i.enumGetBox(H,this.n4))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n3",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n8",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n9",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"oa",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),n.prototype.k=function(){return 4!=this.l?this.l:3},n.prototype.g5=function(){return 3==this.e?1:t.prototype.g5.call(this)},n.prototype.hb=function(){return 3==this.j?1:t.prototype.hb.call(this)},n.prototype.f=function(){return 4!=this.g?this.g:3},n.prototype.n=function(t){return new Fi},n.prototype.d2=function(t,e,i){return"image"},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r);var o=e;null!=n&&(o.j1=n.toString(),o.mi=this.n7,o.mg=this.n5,o.mn=this.ob(n))},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r)},n.prototype.ob=function(t){return null==t?"":"string"==typeof t?t:t.toString()},n.$t=i.markType(n,"ImageColumn",_n.$),n}(_n),Hn=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.e=function(){if(null!=n.a)return n.a;for(var t="",e=1.1.toLocaleString(),i=!1,r=0;r<e.length;r++)"1"==e.charAt(r)&&(i=!i),"1"!=e.charAt(r)&&i&&(t+=e.charAt(r));return n.a=t,n.a},n.b=function(t,e,r,o,s,a,l,u,h,c){if(null!=t)return t.i(c);var p=c,d=10,f=0;if(i.isNaN_(c))return"";var m=0;m=c>=0?c-Math.floor(c):Math.abs(c-Math.ceil(c));var g=0;g=c>=0?c-m:c+m;var b=Math.abs(g),y=m.toString();y=0==m?"":y.substr(2);var v=Math.round(b).toString();if((f=r)<0&&(f=0),(d=e)<0&&(d=10),f>d&&(d=f),y.length>d){var C=Math.round(m*Math.pow(10,d))/Math.pow(10,d);y=C.toString(),1==C?(c>=0?(g+=1,b+=1):(g-=1,b+=1),y="",v=Math.round(b).toString()):y=0==C?"":y.substr(2)}v.length;var _=Math.max(0,o-v.length),w=Math.max(0,r-y.length),S=!1;"1"==v.charAt(0)&&(S=!0);for(var P=0;P<_;P++){var O="0";s&&(O=S?"9":"1"),v=O+v}for(var x=0;x<w;x++)y+="0";if(0==d&&(y=""),s&&v.length>0){var j=parseInt(v).toLocaleString(),k="1";S&&(k="9");for(var I=!0,T="",R=0;R<j.length;R++)j.charAt(R)==k&&I?T+="0":(T+=j.charAt(R),i.isDigit(j.charAt(R))&&j.charAt(R)!=k&&(I=!1));v=T}g<0&&(v="-"+v);var A=v;return y.length>0&&(A+=n.e()+y),p>=0?(i.stringIsNullOrEmpty(a)||(A=a+A),i.stringIsNullOrEmpty(l)||(A+=l)):(i.stringIsNullOrEmpty(u)||(A=u+A),i.stringIsNullOrEmpty(h)||(A+=h)),A},n.c=function(t){return n.b(t.mh,t.mw,t.my,t.m0,t.mm,t.nt,t.nv,t.no,t.nq,t.mo)},n.d=function(t,e){return n.b(t.n5,t.od,t.oe,t.of,t.n8,t.o2,t.o4,t.oy,t.o0,e)},n.$t=i.markType(n,"NumericCellFormatter"),n.a=null,n}(i.Base),Wn=function(t){function n(){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 e.__extends(n,t),n.prototype.f=function(){return 4!=this.g?this.g:2},Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"n6",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"oh",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"oo",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"op",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),n.prototype.ev=function(e,n,r,o){switch(t.prototype.ev.call(this,e,n,r,o),e){case"FormatString":case"FormatSpecifiers":null!=this.ot?(this.n5=new i.BindingFormatter,this.n5.j=this.ot,this.n5.d=this.n4):this.n5=null}},n.prototype.n=function(t){return new Gi},n.prototype.d2=function(t,e,i){return 4==t.af?"numeric_mergedCell":"numeric"},n.prototype.dz=function(t,e,i){return this.oq(e)},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r);var o=e;o.mk=!1,o.mo=this.n9(n)},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,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},n.prototype.n9=function(t){if(null==t)return NaN;if("number"==typeof t)return i.typeGetValue(t);if("number"==typeof t)return t;if("number"==typeof t)return t;if("number"==typeof t)return i.typeGetValue(t);var e,n;if("string"==typeof t&&(n=i.tryParseNumber(t,e),e=n.p1,n.ret))return e;return"number"==typeof t||"number"==typeof t||"number"==typeof t||"number"==typeof t||"number"==typeof t?i.typeGetValue(t):NaN},n.prototype.oq=function(t){var e;if(!1,e=this.n9(t),null!=this.oi){var i=e;return this.oi.format(i)}return Hn.d(this,e)},n.$t=i.markType(n,"NumericColumn",_n.$),n}(_n),Un=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"pinnedAreaSeparator"},n.prototype.n=function(t){return(e=new Ni).bd=!1,e;var e},n.prototype.gk=function(){return I.a9},n.prototype.eq=function(t,e){this.e5()},n.prototype.e5=function(){null==this.ge?this.f5=this.gk():this.f5=this.ge},n.prototype.es=function(t,e){},n.$t=i.markType(n,"PinnedAreaSeparator",Cn.$),n}(Cn),Kn=function(t){function n(){var e=t.call(this)||this;return e.o=null,e.e=null,e.i=i.toNullable(i.Boolean_$type,null),e.j=i.toNullable(k,null),e.m=null,e.n=null,e.k=i.toNullable(i.Boolean_$type,null),e.g=null,e.h=i.toNullable(i.Boolean_$type,null),e.l=i.toNullable(i.Boolean_$type,null),e.f=null,e.o=null,e.e=null,e.i=i.toNullable(i.Boolean_$type,null),e.j=i.toNullable(k,null),e.m=null,e.n=null,e.k=i.toNullable(i.Boolean_$type,null),e.g=null,e.h=i.toNullable(i.Boolean_$type,null),e.l=i.toNullable(i.Boolean_$type,null),e.f=null,e}return e.__extends(n,t),n.prototype.p=function(t){var e=t;if(e.g("ColumnName")){var n=e.item("ColumnName");this.o=n.value.toString()}if(e.g("Width")){var r=e.item("Width");this.e=new Rt,this.e.f=r.value;var o=e.item("MinWidth");this.e.e=o.value;var s=e.item("IsStarSized");this.e.c=s.value}else this.e=null;if(e.g("IsHidden")){var a=e.item("IsHidden");this.i=i.toNullable(i.Boolean_$type,a.value)}else this.i=i.toNullable(i.Boolean_$type,null);if(e.g("Pinned")){var l=e.item("Pinned");this.j=i.toNullable(k,parseInt(l.value.toString()))}else this.j=i.toNullable(k,null);if(e.g("ColToLeft")){var u=e.item("ColToLeft");this.m=u.value.toString()}if(e.g("ColToRight")){var h=e.item("ColToRight");this.n=h.value.toString()}if(e.g("Summed")){var c=e.item("Summed");if(this.k=i.toNullable(i.Boolean_$type,c.value),e.g("SummaryOperands")){var p=e.item("SummaryOperands"),d=p.items.length;d>0&&null==this.g&&(this.g=new i.List$1(i.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=i.toNullable(i.Boolean_$type,m.value),e.g("UsesOrOperator")){var g=e.item("UsesOrOperator");this.l=i.toNullable(i.Boolean_$type,g.value)}if(e.g("FilterConditions")){var b=e.item("FilterConditions"),y=b.items.length;if(y>0){null==this.f&&(this.f=new i.List$1(vi.$,0));for(var v=0;v<y;v++){var C=b.items[v];if(C.g("ID")){var _=C.item("ID"),w=C.item("Index"),S=C.item("ValueType"),P=C.item("Value"),O=new _i;if(O.id=_.value.toString(),O.index=parseInt(w.value.toString()),null!=S)switch(S.value.toString()){case"String":O.value=P.value.toString();break;case"Number":O.value=parseFloat(P.value.toString());break;case"Date":O.value=i.dateParse(P.value.toString())}else O.value=null;this.f.add(O)}else{var x=C.item("IsCaseSensitive"),j=C.item("Operator"),I=C.item("ValueType"),T=C.item("Value"),R=new Ci;switch(R.isCaseSensitive=x.value,j.value.toString()){case"Equals":R.operator=0;break;case"NotEquals":R.operator=1;break;case"LessThan":R.operator=2;break;case"LessThanOrEqualTo":R.operator=3;break;case"GreaterThan":R.operator=4;break;case"GreaterThanOrEqualTo":R.operator=5;break;case"Top":R.operator=6;break;case"Bottom":R.operator=7;break;case"TopPercentile":R.operator=8;break;case"BottomPercentile":R.operator=9;break;case"True":R.operator=10;break;case"False":R.operator=11;break;case"Contains":R.operator=12;break;case"DoesNotContain":R.operator=13;break;case"StartsWith":R.operator=14;break;case"DoesNotStartWith":R.operator=15;break;case"EndsWith":R.operator=16;break;case"DoesNotEndWith":R.operator=17;break;case"Today":R.operator=18;break;case"Tomorrow":R.operator=19;break;case"Yesterday":R.operator=20;break;case"NextWeek":R.operator=21;break;case"ThisWeek":R.operator=22;break;case"LastWeek":R.operator=23;break;case"NextMonth":R.operator=24;break;case"ThisMonth":R.operator=25;break;case"LastMonth":R.operator=26;break;case"NextQuater":R.operator=27;break;case"ThisQuater":R.operator=28;break;case"LastQuater":R.operator=29;break;case"NextYear":R.operator=30;break;case"ThisYear":R.operator=31;break;case"LastYear":R.operator=32;break;case"YearToDate":R.operator=33;break;case"Q1":R.operator=34;break;case"Q2":R.operator=35;break;case"Q3":R.operator=36;break;case"Q4":R.operator=37;break;case"Month":R.operator=38;break;case"Year":R.operator=39;break;case"Empty":R.operator=40;break;case"NotEmpty":R.operator=41;break;case"IsNull":R.operator=42;break;case"IsNotNull":R.operator=43;break;case"Custom":R.operator=44}if(null!=I)switch(I.value.toString()){case"String":R.value=T.value.toString();break;case"Number":R.value=parseFloat(T.value.toString());break;case"Date":R.value=i.dateParse(T.value.toString())}else R.value=null;this.f.add(R)}}}}}},n.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)),i.nullableNotEquals(this.i,null)&&(t.i(","),t.h(),t.i(i.nullableConcat('"IsHidden": ',i.unwrapNullable(this.i)))),i.nullableNotEquals(this.j,null)&&(t.i(","),t.h(),t.i(i.nullableConcat('"Pinned": ',i.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+'"')),i.nullableNotEquals(this.k,null)&&(t.i(","),t.h(),t.i(i.nullableConcat('"Summed" : ',i.unwrapNullable(this.k))),null!=this.g)){t.i(","),t.h(),t.i('"SummaryOperands" : '),t.i("[");for(var e=this.g.count,n=0;n<e;n++)0!=n&&t.i(","),t.i('"'+i.EnumUtil.getName(i.DataSourceSummaryOperand_$type,this.g._inner[n])+'"');t.i("]")}if(i.nullableNotEquals(this.h,null)&&(t.i(","),t.h(),t.i(i.nullableConcat('"Filtered": ',i.unwrapNullable(this.h))),i.nullableNotEquals(this.l,null)&&(t.i(","),t.h(),t.i(i.nullableConcat('"UsesOrOperator": ',i.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!==i.typeCast(_i.$,this.f._inner[o])){var s=this.f._inner[o];t.i('"ID": "'+s.id+'", '),t.i('"Index": '+s.index+", "),null!=s.value&&t.i('"ValueType": "'+i.getInstanceType(s.value).typeName+'", '),t.i('"Value": "'+s.value+'"')}else{var a=this.f._inner[o];t.i('"IsCaseSensitive": '+a.isCaseSensitive+", "),t.i('"Operator": "'+i.enumGetBox(f,a.operator)+'", '),null!=a.value&&t.i('"ValueType": "'+i.getInstanceType(a.value).typeName+'", '),t.i('"Value": "'+a.value+'"')}t.i("}")}t.e(),t.h(),t.i("]")}t.h(),t.e(),t.i("}")},n.$t=i.markType(n,"SaveLayoutColumn",i.JsonDictionaryItem.$),n}(i.JsonDictionaryItem),Xn=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.n=function(t){return new Hi},n.prototype.d2=function(t,e,i){return"sectionFooter"},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r)},n.prototype.el=function(e,i,n,r){this.f5=I.bd,t.prototype.el.call(this,e,i,n,r)},n.$t=i.markType(n,"SectionFooter",Cn.$),n}(Cn),Qn=function(t){function n(){var e=t.call(this)||this;return e.hq=null,e.hp=null,e.g6=i.truncate(i.DeviceUtils.g(12)),e.g8=i.truncate(i.DeviceUtils.g(1)),e.g7=i.truncate(i.DeviceUtils.g(1)),e.g5=i.truncate(i.DeviceUtils.g(1)),e.g2=!1,e.gz=4,e.sectionHeaderPropertyUpdating=null,e.g4=null,e.hr=e.gp(),e}return e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"g0",{get:function(){return this.gz},set:function(t){var e=this.gz;this.gz=t,this.gz!=e&&this.et("SummaryDisplayMode",4,i.enumGetBox(A,e),i.enumGetBox(A,this.gz))},enumerable:!1,configurable:!0}),n.prototype.d2=function(t,e,i){return"sectionHeader"},n.prototype.n=function(t){return new qi},n.prototype.gk=function(){return I.be},n.prototype.eo=function(e,n,r,o){t.prototype.eo.call(this,e,n,r,o);var s=new i.List$1(X.$,0),a=new i.List$1(Q.$,0),l=i.stringEmpty(),u=i.stringEmpty(),h=i.typeCast(i.FastIterationDictionary$2.$.specialize(i.String_$type,i.Base.$),r);if(null!=h){n.actualDataSource.actualSchema;for(var c=0,p=0;p<h.o.count;p++){for(var d=h.o._inner[p],f=h.q._inner[p],m=null,g=0;g<n.groupDescriptions.j.count;g++)if(n.groupDescriptions.j.item(g).f==d){m=n.groupDescriptions.j.item(g);break}m.o||n.x7(m),c>0&&(l+=", ");for(var b=null,y=0;y<n.actualColumns.count;y++)if(n.actualColumns._inner[y].lo==d){b=n.actualColumns._inner[y];break}s.add(this.gy(null!=b&&null!=b.lv?b.lv:d,f,m,m.m)),l+=s._inner[c].b,c++}if(0==this.g0&&n.summaryDescriptions.j.count>0){var v=i.typeCast(i.DataSourceSpecialRow.$,o);if(null!=v&&null!=v.summaryResults)for(var C=0;C<v.summaryResults.length;C++)if(null!=v.summaryResults[C]){var _=v.summaryResults[C].summaryIndex,w=n.summaryDescriptions.j.item(_);C>0&&(u+=", "),a.add(this.y(w,v.summaryResults[C])),u+=a._inner[C].c}}}var S=i.typeCast(qi.$,e);null!=S&&(S.mh=s.toArray(),S.mi=a.toArray(),S.mv=l,S.mt=u,S.mk=this.g0,n.f5.p(S)?S.cq=1:S.cq=0,n.ad.m(S)?S.cf=1:S.cf=0,S.a2=this.g3,S.ba=n.actualDataSource.getIsRowExpandedAtIndex(e.l.x),S.f0=n.e7.getRowIndent(e.l.x))},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r),e.l9=this.hr,e.gm=this.ha,e.gq=this.hc,e.go=this.hb,e.gk=this.g9},n.prototype.eq=function(t,e){this.ho(),this.e5(),this.fh(),this.fi(),this.hn(),null!=t&&(t.actualColumnsChanged=i.delegateRemove(t.actualColumnsChanged,i.runOn(this,this.hm))),null!=e&&(e.actualColumnsChanged=i.delegateCombine(e.actualColumnsChanged,i.runOn(this,this.hm)))},n.prototype.hm=function(t,e){this.g4=null,this.hl()},n.prototype.hl=function(){if(null==this.g4){this.g4=new i.Dictionary$2(i.String_$type,An.$,0);for(var t=0;t<this.grid.columns.count;t++){var e=i.typeCast(An.$,this.grid.columns._inner[t]);null==e||this.g4.containsKey(e.lo)||this.g4.addItem(e.lo,e)}}},n.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()}},n.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},n.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},n.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},n.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},n.prototype.hn=function(){null!=this.grid&&(this.g3=this.grid.isGroupCollapsable)},n.prototype.ev=function(e,i,n,r){switch(t.prototype.ev.call(this,e,i,n,r),e){case"SelectedBackground":this.ho()}null!=this.sectionHeaderPropertyUpdating&&this.sectionHeaderPropertyUpdating(this,e,i,n,r)},n.prototype.gy=function(t,e,n,r){var o,s=null!=e?e.toString():i.stringEmpty(),a=t+": "+s,l=i.stringEmpty();if(null!=n){if(null==n.v?l=t+": ":n.v!=i.stringEmpty()&&(l=n.v+": "),null!=e){switch(r){case 10:if(null!=n.q){var u=n.q,h=i.typeGetValue(e);s=u.format(h)}else s=i.typeGetValue(e).toString();break;case 8:if(null!=n.q){u=n.q,h=e;s=u.format(h)}else{s=e.toLocaleDateString()+" "+e.toLocaleTimeString()}break;case 5:if(null!=n.q){u=n.q,h=e;s=u.format(h)}else s=e.toString();break;case 1:if(null!=n.q){u=n.q,h=i.typeGetValue(e);s=u.format(h)}else s=i.typeGetValue(e).toString();break;case 3:if(null!=n.q){u=n.q,h=i.typeGetValue(e);s=u.format(h)}else s=i.typeGetValue(e).toString();break;case 4:if(null!=n.q){u=n.q,h=i.typeGetValue(e);s=u.format(h)}else s=i.typeGetValue(e).toString();break;case 7:if(null!=n.q){u=n.q,h=e;s=u.format(h)}else s=e.toString();break;case 0:case 6:case 2:case 11:s=e.toString()}if(this.hl(),this.g4.containsKey(n.f)){var c=this.g4.item(n.f).n9(e);null!=c&&(s=c)}}null!=n.l&&(s=n.l.i(e)),a=l+s,null!=n.k&&(a=n.k.i(e)),a=n.w(e,s,a)}return(o=new X).c=t,o.a=e,o.b=a,o},n.$t=i.markType(n,"SectionHeader",Cn.$),n}(Cn),Yn=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"rowSeparator"},n.prototype.eq=function(t,e){this.e5()},n.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},n.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},n.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},n.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},n.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()}},n.prototype.n=function(t){return new Vi},n.prototype.gk=function(){return I.bq},n.prototype.gq=function(){return I.bi},n.prototype.gn=function(){return I.a8},n.prototype.go=function(){return this.gk()},n.prototype.bi=function(){return 1},n.$t=i.markType(n,"RowSeparator",Cn.$),n}(Cn),Zn=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"headerRowSeparator"},n.prototype.n=function(t){return new Vi},n.prototype.gk=function(){return I.a6},n.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},n.prototype.eq=function(t,e){this.e5()},n.prototype.es=function(t,e){switch(e.propertyName){case"HeaderRowSeparatorBackground":this.e5()}},n.$t=i.markType(n,"HeaderRowSeparator",Cn.$),n}(Cn),Jn=function(t){function n(){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=i.truncate(i.DeviceUtils.g(12)),e.g6=i.truncate(i.DeviceUtils.g(1)),e.g5=i.truncate(i.DeviceUtils.g(12)),e.g3=i.truncate(i.DeviceUtils.g(1)),e.hs=e.gp(),e.g0=e.g1(),e.ht=e.hu(),e}return e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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}),n.prototype.d2=function(t,e,i){return"summary"},n.prototype.n=function(t){return new zi},n.prototype.eo=function(e,n,r,o){t.prototype.eo.call(this,e,n,r,o);var s=i.typeCast(i.DataSourceSpecialRow.$,o),a=i.stringEmpty(),l=i.stringEmpty(),u=n.cf(e.l);if(null!=u){var h=s.getSummaryResults(u.lo);if(h.length>0&&n.summaryDescriptions.j.count>0){var c=n.summaryDescriptions.j.item(h[0].summaryIndex);if(null!=c.l){var p=this.y(c,h[0]);a=null!=c.ae?c.ae:c.l.displayName,l=p.d}}}var d=i.typeCast(zi.$,e);null!=d&&(d.mn=a,d.mp=l,d.f0=n.n0(d.l),n.f5.p(d)?d.cq=1:d.cq=0,n.ad.m(d)?d.cf=1:d.cf=0)},n.prototype.el=function(e,n,r,o){t.prototype.el.call(this,e,n,r,o);var s=i.typeCast(zi.$,e);s.l9=this.hs,s.lx=this.f5,s.mu=this.ht,s.mg=this.g0,s.gm=this.g8,s.gq=this.ha,s.go=this.g9,s.gk=this.g7},n.prototype.eq=function(t,e){this.hl(),this.hm(),this.e5(),this.fh(),this.fi(),this.hn()},n.prototype.hu=function(){return I.bj},n.prototype.gr=function(){return I.bk},n.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()}},n.prototype.hl=function(){null==this.hv?this.hs=this.gp():this.hs=this.hv},n.prototype.hm=function(){},n.prototype.fi=function(){},n.prototype.hn=function(){},n.prototype.ev=function(e,i,n,r){switch(t.prototype.ev.call(this,e,i,n,r),e){case"SelectedBackground":this.hl();break;case"SummaryLabelTextColor":this.hm();break;case"SummaryNameFontInfo":this.hn()}},n.prototype.aj=function(){return I.l},n.prototype.g1=function(){return I.k},n.$t=i.markType(n,"SummaryRow",Cn.$),n}(Cn),tr=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"summaryRowRoot"},n.prototype.gk=function(){return I.bc},n.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},n.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},n.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},n.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},n.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},n.$t=i.markType(n,"SummaryRowRoot",Jn.$),n}(Jn),er=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"summaryRowSection"},n.prototype.gk=function(){return I.bf},n.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},n.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},n.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},n.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},n.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},n.$t=i.markType(n,"SummaryRowSection",Jn.$),n}(Jn),ir=function(t){function n(){var e=t.call(this)||this;return e.cellUpdating=null,e.jl=!1,e}return e.__extends(n,t),n.prototype.n=function(t){return new Li},n.prototype.d2=function(t,e,i){var n=4==t.af?"template_mergedCell-":"template-";return n+=this.ko},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r),e.mh=n},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r)},n.prototype.n4=function(t,e){var i;null!=this.cellUpdating&&this.cellUpdating(this,((i=new nr).cellInfo=t,i.content=e,i))},n.prototype.ev=function(e,i,n,r){switch(e){case"IsEditable":this.jl=!1}t.prototype.ev.call(this,e,i,n,r)},n.$t=i.markType(n,"TemplateColumn",_n.$),n}(_n),nr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._content=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"content",{get:function(){return this._content},set:function(t){this._content=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"TemplateCellUpdatingEventArgs",i.EventArgs.$),n}(i.EventArgs),rr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.n5=null,e}return e.__extends(n,t),Object.defineProperty(n.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(n.prototype,"n3",{get:function(){return this.hz},set:function(t){this.hz=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n4",{get:function(){return this.kq},set:function(t){this.kq=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n6",{get:function(){return this.lk},set:function(t){this.lk=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"n7",{get:function(){return null==this.gz?null:this.gz[0]},set:function(t){this.gz=[t]},enumerable:!1,configurable:!0}),n.prototype.n=function(t){return new Hi},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r),e.mh=this.dz(i,n,r)},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r)},n.prototype.dz=function(t,e,i){return null!=e?this.n8(e):null},n.prototype.n8=function(t){return"string"==typeof t?t:null},n.prototype.d2=function(t,e,i){return 4==t.af?"text_mergedCell":"text"},n.$t=i.markType(n,"TextColumn",_n.$),n}(_n),or=function(t){function n(){var e=t.call(this)||this;return e.e=0,e.j=1,e}return e.__extends(n,t),n.prototype.n=function(t){return new Wi},n.prototype.d2=function(t,e,i){return"textHeader"},n.prototype.el=function(e,i,n,r){t.prototype.el.call(this,e,i,n,r);var o=e,s=i.cf(e.l);o.mk=s.hi,o.m2=s.nr,o.mm=s.hm},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r);var o=e,s=i.cf(e.l);o.mh=s.k3,o.j1=o.mh,o.n=s.hr,o.mq=s.ja,o.mo=this.g0},n.$t=i.markType(n,"TextHeader",Gn.$),n}(Gn),sr=function(t){function n(){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 i.Dictionary$2(S.$,i.Number_$type,0),e}return e.__extends(n,t),n.prototype.bu=function(){null!=this.onFinished&&this.onFinished(this)},n.prototype.bt=function(t){null!=this.onCanceled&&this.onCanceled(this,t)},Object.defineProperty(n.prototype,"t",{get:function(){return this.s},set:function(t){this.s=t},enumerable:!1,configurable:!0}),n.prototype.am=function(t){return null!=t&&(t.s==this.s&&(!this.af||t.u==this.u&&t.br==this.br))},Object.defineProperty(n.prototype,"v",{get:function(){return this.u},set:function(t){this.u=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bs",{get:function(){return this.br},set:function(t){this.br=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"as",{get:function(){return this.af},set:function(t){this.af=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ap",{get:function(){return this.ac},set:function(t){this.ac=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ba",{get:function(){return this.a3},set:function(t){this.a3=t,this.a1=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bi",{get:function(){return this.a7},set:function(t){this.a7=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bj",{get:function(){return this.a8},set:function(t){this.a8=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a9",{get:function(){return this.a2},set:function(t){this.a2=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"k",{get:function(){return this.j},set:function(t){this.j=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bg",{get:function(){return this.a4},set:function(t){this.a4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e",{get:function(){return this.a},set:function(t){this.a=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bh",{get:function(){return this.a6},set:function(t){this.a6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aq",{get:function(){return this.ad},set:function(t){this.ad=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ao",{get:function(){return this.ab},set:function(t){this.ab=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bl",{get:function(){return this.bk},set:function(t){this.bk=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bo",{get:function(){return this.bm},set:function(t){this.bm=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bq",{get:function(){return this.bn},set:function(t){this.bn=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"x",{get:function(){return this.w},set:function(t){this.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"q",{get:function(){return this.p},set:function(t){this.p=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"al",{get:function(){return this.aa},set:function(t){this.aa=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"o",{get:function(){return this.n},set:function(t){this.n=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ar",{get:function(){return this.ae},set:function(t){this.ae=t},enumerable:!1,configurable:!0}),n.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)},n.prototype.r=function(t){switch(t){case 0:return null;case 1:return i.EasingFunctions.cubicEase;case 3:return i.EasingFunctions.circleEase;case 2:return i.EasingFunctions.exponentialEase}return null},n.prototype.au=function(t,e,i,n){if(this.ar&&this.an(n))return!1;var r=this.a0(n),o=1;this.a3>0&&(o=r/this.a3);var s=!1;if(null==this.w)return!0;o>=1&&(o=1,s=!0),null!=this.p&&(o=this.p(o));var a=this.bp(this.bm,e,t,t.o);return this.w(o,a,this.bn,t,e),s},n.prototype.av=function(t,e,i,n){if(this.ar&&this.an(n))return!1;var r=this.a0(n),o=1;this.a3>0&&(o=r/this.a3);var s=!1;if(null==this.w)return!0;o>=1&&(o=1,s=!0),null!=this.p&&(o=this.p(o));var a=this.bp(this.bm,e,t,t);return this.w(o,a,this.bn,t,e),s},n.prototype.a0=function(t){var e=t-this.bk;return this.a4>0&&(e<this.a4?e=0:e-=this.a4),e},n.prototype.an=function(t){var e=t-this.bk;return this.a4>0&&e<this.a4},n.prototype.bz=function(t,e,n,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 s=o/this.az;this.az=o;var a=i.truncate(Math.round(this.a1*s));if(a<=0){1}this.a1=a}}},n.prototype.at=function(t,e,i,n){var r=!1;if(this.bz(t.l,e,i,n),this.ar&&this.an(n))return!1;var o=this.a0(n),s=this.bf(e,i,t.l,n),a=this.bc(e,i,t.l,n);if(a<300){1}var l=o-s;l<0&&(l=0);var u=1;a>0&&(u=l/a),u>=1&&(u=1,r=!0),null!=this.p&&(u=this.p(u));var h=this.bp(this.bm,e,t,t.l);return this.w(u,h,this.bn,t,e),r},n.prototype.by=function(t,e,n){null==this.ay&&(this.ay=new i.Dictionary$2(i.Base.$,i.Base.$,0)),this.ay.item(n,t)},n.prototype.bp=function(t,e,n,r){if(this.al){if(null==this.ay&&(this.ay=new i.Dictionary$2(i.Base.$,i.Base.$,0)),this.ay.containsKey(r))return this.ay.item(r);var o=this.o(n,e);return this.ay.item(r,o),o}return this.bm},n.prototype.aw=function(t,e,i,n){if(this.ar&&this.an(n))return!1;var r=this.a0(n),o=1;this.a3>0&&(o=r/this.a3);var s=!1;return null==this.w||(o>=1&&(o=1,s=!0),null!=this.p&&(o=this.p(o)),this.w(o,this.bm,this.bn,t,e),s)},n.prototype.ag=function(t,e){return!1},n.prototype.ah=function(t,e){return!1},n.prototype.ai=function(t,e){return!1},n.prototype.aj=function(t,e){return!1},n.prototype.bv=function(t){},n.prototype.bw=function(t){},Object.defineProperty(n.prototype,"f",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.bf=function(t,e,n,r){if(null==n)return 0;var o=this.bb(t,n),s=this.bd(t,e,n,r),a=this.a3;this.ad&&(a=i.truncate(s/this.a6*a));var l=this.a7;-1==l&&(l=i.truncate(a/s),a-i.truncate(s*l)<this.a2&&(l=i.truncate((a-this.a2)/s)),l<0&&(l=0));var u=l*o;null!=this.h&&(u=this.h(this.c,this.a6,n));var h=this.a1;return u<-1*h&&(u=-1*h),u>h&&(u=h-this.a2),this.ad&&this.a0(r)>u&&null!=n&&!this.ax.containsKey(n)&&this.ax.addItem(n,s),u},n.prototype.bd=function(t,e,i,n){return null!=this.f&&this.ad?this.ax.containsKey(i)?this.ax.item(i):this.bb(t,this.f):this.a6},n.prototype.bb=function(t,e){if(null==e)return 0;var i=this.be(t,e);-1==this.a6&&(this.a6=this.be(t,this.a)+1),this.ab&&(i=this.a6-1-i);var n=i;return n>this.a6&&n>this.a5&&(this.a5=n,this.b=e),n},n.prototype.be=function(t,e){return 0},n.prototype.bc=function(t,e,n,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,n);else if(-1==this.a8)if(this.ad){var s=this.bd(t,e,n,r);o=this.a3,o=i.truncate(s/this.a6*o),o-=this.bf(t,e,n,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},n.prototype.d=function(t){return this.c},n.prototype.y=function(t,e){return e.y==t.y&&e.x<=t.x&&((t=t.ab()).x+=1),t},n.prototype.z=function(t,e){return e.y==t.y&&e.x<t.x&&((t=t.ab()).x-=1),t},n.prototype.ak=function(t,e,i){return this.a0(i)>=this.a1},n.$t=i.markType(n,"GridEffect"),n}(i.Base),ar=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=0,e}return e.__extends(n,t),n.prototype.ah=function(t,e){return this.b0==t.o},n.$t=i.markType(n,"ColumnEffect",sr.$),n}(sr),lr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=0,e}return e.__extends(n,t),n.prototype.aj=function(t,e){return t.o==this.b0},n.$t=i.markType(n,"SpacerEffect",sr.$),n}(sr),ur=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b2=0,e.b1=0,e.b0=0,e}return e.__extends(n,t),n.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 i=e.h(this.b2);if(null==i)return!1;if(t.a5==i.m&&i.c==t.b)return!0}return!1},n.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 i=this.g;return new S(0,i.b,i.a5,-100,-105)}return this.g},n.prototype.be=function(t,e){var i=this.g,n=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==i)return 0;if(r.a1&&r.i)return null==n?0:n.x-i.x+o-r.o;if(r.y==i.y)return r.x-i.x+o;var s=o,a=i.y;if(r.y>i.y)for(;a<=r.y;)a==i.y?(s+=t.ce._inner[a].m-1-i.x,t.ce._inner[a].d>0&&s++):a==r.y?(t.ce._inner[a].g>0&&s++,s+=r.x+1):(t.ce._inner[a].g>0&&s++,s+=t.ce._inner[a].m,t.ce._inner[a].d>0&&s++),a++;else if(r.y<i.y)for(;a>=r.y;)a==i.y?(s-=i.x,t.ce._inner[a].d>0&&s++):a==r.y?(t.ce._inner[a].d>0&&s--,s-=t.ce._inner[a].m-r.x):(t.ce._inner[a].g>0&&s--,s-=t.ce._inner[a].m,t.ce._inner[a].d>0&&s--),a--;return s},n.$t=i.markType(n,"ColumnCellsEffect",sr.$),n}(sr),hr=function(t){function n(){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 e.__extends(n,t),n.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 i=e.h(this.b4);if(null==i)return!1;if(t.a5==i.m&&i.c==t.b)return!0}}return!1},n.prototype.bv=function(t){this.b0=this.y(this.b0,t)},n.prototype.bw=function(t){this.b0=this.z(this.b0,t)},n.$t=i.markType(n,"CellEffect",sr.$),n}(sr),cr=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.ag=function(t,e){return this.b0.equals(t)},n.prototype.bv=function(t){this.b0=this.y(this.b0,t)},n.prototype.bw=function(t){this.b0=this.z(this.b0,t)},n.$t=i.markType(n,"CellPositionEffect",hr.$),n}(hr),pr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=null,e}return e.__extends(n,t),n.prototype.ai=function(t,e){return!!this.b0.equals(t)},n.prototype.bv=function(t){this.b0=this.y(this.b0,t)},n.prototype.bw=function(t){this.b0=this.z(this.b0,t)},n.$t=i.markType(n,"RowEffect",sr.$),n}(sr),dr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b0=null,e}return e.__extends(n,t),n.prototype.ag=function(t,e){return this.b0.y==t.y&&this.b0.x==t.x&&this.b0.b==t.b},n.prototype.bv=function(t){this.b0=this.y(this.b0,t)},n.prototype.bw=function(t){this.b0=this.z(this.b0,t)},n.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 i=t.b9._inner[this.g.a5].n,n=t.b9._inner[e.a5].n;return 0==e.d?n=t.b9._inner[e.a5].n-t.c9:2==e.d&&(n=t.b9._inner[e.a5].n-(t.c9+t.dc)),n-i},n.$t=i.markType(n,"RowCellsEffect",sr.$),n}(sr),fr=function(t){function n(e,n){var r=t.call(this)||this;return r.b=null,r.k=new i.List$1(ar.$,0),r.j=new i.List$1(ur.$,0),r.m=new i.List$1(pr.$,0),r.l=new i.List$1(dr.$,0),r.i=new i.List$1(hr.$,0),r.n=new i.List$1(lr.$,0),r.q=-30,r.o=-1,r.a=null,r.b=e,r.a=n,r}return e.__extends(n,t),Object.defineProperty(n.prototype,"c",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.ae=function(t){for(var e=0;e<this.l.count;e++)this.l._inner[e].bv(t);for(var i=0;i<this.m.count;i++)this.m._inner[i].bv(t);for(var n=0;n<this.i.count;n++)this.i._inner[n].bv(t)},n.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 i=this.m.count-1;i>=0;i--)t.equals(this.m._inner[i].b0)?this.ak(this.m._inner[i].b0,!1,this.m._inner[i]):this.m._inner[i].bw(t);for(var n=this.i.count-1;n>=0;n--)t.equals(this.i._inner[n].b0)?this.ag(this.i._inner[n].b0,!1,this.i._inner[n]):this.i._inner[n].bw(t)},n.prototype.ad=function(){var t=this,e=this.k.count>0;if(this.a.k1=!0,this.an(!1),e){var n=this.a.model.absoluteWidth;this.a.gb.q(this.a,this.a.model,i.truncate(this.a.mg)),this.d(),n!=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))},n.prototype.d=function(){var t=this.k.count>0,e=this.p(),i=this.a.model,n=this.a.d1;return this.f(e,i,n),t},n.prototype.ac=function(){var t=this.p(),e=this.a.model,i=this.a.d1;this.g(t,e,i)},n.prototype.ab=function(){var t=this.p(),e=this.a.model,i=this.a.d1;this.e(t,e,i)},n.prototype.an=function(t){var e=this.p();if(e-this.q<15&&!t)this.b.requestFrame(this.o);else{var i=this.a.model,n=this.a.d1,r=!0;this.f(e,i,n)||(r=!1),this.h(e,i,n)||(r=!1),this.g(e,i,n)||(r=!1),this.e(e,i,n)||(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)}},n.prototype.p=function(){return i.dateNow().getTime()},n.prototype.am=function(){this.b.teardownTicking(this.o),this.o=-1},n.prototype.aa=function(){-1==this.o&&(this.o=this.b.setupTicking(i.runOn(this,this.ad)),this.b.requestFrame(this.o))},n.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()},n.prototype.ai=function(t,e,i){for(var n=this.k.count-1;n>=0;n--)this.k._inner[n].b0==t&&this.k._inner[n].am(i)&&(e&&this.k._inner[n].bt(i),this.k.removeAt(n))},n.prototype.z=function(t,e){e.b0=t.o,e.bl=this.p(),this.al(t,!0,e),this.n.add(e),this.aa()},n.prototype.al=function(t,e,i){for(var n=this.n.count-1;n>=0;n--)this.n._inner[n].b0==t.o&&this.n._inner[n].am(i)&&(e&&this.n._inner[n].bt(i),this.n.removeAt(n))},n.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()},n.prototype.x=function(t){t.b2=-300,t.bl=this.p(),this.ah(-300,!0,t),this.j.add(t),this.aa()},n.prototype.y=function(t){t.b2=-400,t.bl=this.p(),this.ah(-400,!0,t),this.j.add(t),this.aa()},n.prototype.ah=function(t,e,i){for(var n=this.j.count-1;n>=0;n--)this.j._inner[n].b2==t&&this.j._inner[n].am(i)&&(e&&this.j._inner[n].bt(i),this.j.removeAt(n))},n.prototype.w=function(t,e){e.b0=t,e.bl=this.p(),this.ak(t,!0,e),this.m.add(e),this.aa()},n.prototype.ak=function(t,e,i){for(var n=this.m.count-1;n>=0;n--)this.m._inner[n].b0.equals(t)&&this.m._inner[n].am(i)&&(e&&this.m._inner[n].bt(i),this.m.removeAt(n))},n.prototype.v=function(t,e){e.b0=t,e.bl=this.p(),this.aj(t,!0,e),this.l.add(e),this.aa()},n.prototype.aj=function(t,e,i){for(var n=this.l.count-1;n>=0;n--)this.l._inner[n].b0.equals(t)&&this.l._inner[n].am(i)&&(e&&this.l._inner[n].bt(i),this.l.removeAt(n))},n.prototype.r=function(t,e,i){e.b4=i,e.b0=t,e.bl=this.p(),e.b2=!0,this.ag(t,!0,e),this.i.add(e),this.aa()},n.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()},n.prototype.ag=function(t,e,i){for(var n=this.i.count-1;n>=0;n--)this.i._inner[n].b0.equals(t)&&this.i._inner[n].am(i)&&(e&&this.i._inner[n].bt(i),this.i.removeAt(n))},n.prototype.f=function(t,e,n){for(var r,o,s=!0,a=new i.List$1(ar.$,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 h=0;h<this.k.count;h++)(o=this.k._inner[h]).ah(r,e)&&(o.au(r,e,n,t)?a.add(o):s=!1)}for(var c=0;c<a.count;c++)this.ai(a._inner[c].b0,!1,a._inner[c]),a._inner[c].bu();return s},n.prototype.h=function(t,e,n){for(var r=!0,o=e.cf,s=new i.List$1(Je.$,0),a=new i.List$1(lr.$,0),l=0;l<o.count;l++)for(var u=o._inner[l],h=0;h<u.count;h++)for(var c=u._inner[h],p=0;p<this.n.count;p++)this.n._inner[p].aj(c,e)&&(this.n._inner[p].av(c,e,n,t)?(s.add(c),a.add(this.n._inner[p])):r=!1);for(var d=0;d<s.count;d++)this.al(s._inner[d],!1,a._inner[d]),a._inner[d].bu();return r},n.prototype.g=function(t,e,i){for(var n,r=!0,o=new S(1,0,0,0),s=0;s<this.m.count;s++)n=this.m._inner[s],o.b=n.b0.b,o.x=n.b0.x,o.y=n.b0.y,n.aw(e.ce._inner[o.y],e,i,t)||(r=!1);return r},n.prototype.e=function(t,e,n){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 s=e.h(this.j._inner[o].b2);null!=s&&(this.j._inner[o].b1=s.m,this.j._inner[o].b0=s.c),this.j._inner[o].ap=!0}for(var a=0;a<this.l.count;a++)this.l._inner[a].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 h=0;h<e.cc.count;h++)for(var c=e.cc._inner[h],p=0;p<c.o.count;p++)if(!c.p._inner[p]){for(var d=c.o._inner[p],f=0;f<this.j.count;f++){var m=this.j._inner[f];m.ag(d,e)&&(m.at(c.q._inner[p],e,n,t)||(m.ap=!1))}for(var g=0;g<this.l.count;g++){var b=this.l._inner[g];b.ag(d,e)&&(b.at(c.q._inner[p],e,n,t)||(b.ap=!1))}for(var y=0;y<this.i.count;y++){var v=this.i._inner[y];v.ag(d,e)&&(v.at(c.q._inner[p],e,n,t)||(v.ap=!1))}}for(var C=new i.List$1(ur.$,0),_=0;_<this.j.count;_++)this.j._inner[_].ak(e,n,t)&&this.j._inner[_].ap?C.add(this.j._inner[_]):r=!1;for(var w=new i.List$1(dr.$,0),S=0;S<this.l.count;S++)this.l._inner[S].ak(e,n,t)&&this.l._inner[S].ap?w.add(this.l._inner[S]):r=!1;for(var P=new i.List$1(hr.$,0),O=0;O<this.i.count;O++)this.i._inner[O].ak(e,n,t)&&this.i._inner[O].ap?P.add(this.i._inner[O]):r=!1;for(var x=0;x<C.count;x++)this.ah(C._inner[x].b2,!1,C._inner[x]),C._inner[x].bu();for(var j=0;j<w.count;j++)this.aj(w._inner[j].b0,!1,w._inner[j]),w._inner[j].bu();for(var k=0;k<P.count;k++)this.ag(P._inner[k].b0,!1,P._inner[k]),P._inner[k].bu();return r},n.$t=i.markType(n,"GridEffectManager"),n}(i.Base),mr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.e=new On,e}return e.__extends(n,t),n.prototype.a=function(t,e){for(var i=e.cc,n=i.count,r=0;r<n;r++){var o=i._inner[r].b(t);if(null!=o)return o}return null},n.prototype.b=function(t,e,i,n,r,o,s,a){var l=this.a(t,i);if(null==l){var u=null,h=null,c=!1,p=-1;t.aj&&(p=e.e7.getDataRow(t),null==(h=e.e7.resolveValueForPath(e,t))&&e.e7.isPlaceholderValue(t)&&(c=!0));var d=e.q0(t,e,h,p);null==(u=this.e.a(d))?u=e.al(t,d):u.k5();var f=t;null!=u.l&&(f=u.l),i.bz.d(f)&&(i.bz.item(f).remove(u),0==i.bz.item(f).count&&i.bz.f(f)),n.s(t,u),u.r=n,u.l=t,u.w=r,u.fb=p,u.bk=o,u.bl=s,u.bg=a,u.bb=t.am&&t.ay,u.y=t.d,u.bf=e.cj.j&&e.cj.m(u);var m=!1,g=!1,b=u.l.a5;if(b>=0&&0==i.b9._inner[b].n||t.a0)1==e.e7.getRowType(u.l.x)&&e.isGroupCollapsable&&(e.shiftSectionContent?(-401==t.a5||-400==t.a5&&0==i.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,h,e.e7.resolveRow(p)),c&&(u.ct=1),u}this.g(t,i,n),l.w=r;var y=l.l.bb;l.l=t,l.bk=o,l.bl=s,l.bg=a,l.y=t.d,l.bf=e.cj.j&&e.cj.m(l),t.bb!=y&&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,_=l.l.a5;return(_>=0&&0==i.b9._inner[_].n||t.a0)&&1==e.e7.getRowType(l.l.x)&&e.isGroupCollapsable&&(e.shiftSectionContent?(-401==t.a5||-400==t.a5&&0==i.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},n.prototype.d=function(t,e){for(var i=0;i<e.cc.count;i++)if(e.cc._inner[i].d(t))return e.cc._inner[i];return null},n.prototype.g=function(t,e,i){var n=this.d(t,e);if(null!=n&&n!=i){var r=n.item(t);n.f(t),i.s(t,r),r.r=i}},n.prototype.f=function(t,e,n){if(null==n&&(n=this.d(t,e)),null!=n){var r=n.item(t);n.f(t);var o=null;if(e.bz.d(t)){if(1==(o=e.bz.item(t)).count){var s=t.ab();e.bz.f(t),e.bz.s(s,o)}}else o=new i.List$1(Ei.$,0),e.bz.s(t,o);o.add(r)}},n.prototype.i=function(t,e){var i=this.d(t,e);if(null!=i){var n=this.c(t,e);this.f(t,e,i),this.e.c(n)}},n.prototype.j=function(t,e,i){if(null!=e){var n=e.item(t);this.f(t,i,e),this.e.c(n)}},n.prototype.c=function(t,e){for(var i=0;i<e.cc.count;i++)if(e.cc._inner[i].d(t))return e.cc._inner[i].item(t);return null},n.prototype.h=function(t,e,n,r,o,s){t.l.h?t.cu=n+t.cm+t.cn*e.b9._inner[t.l.a5].k:t.cu=n+t.cm+t.cn*t.hd,t.cv=r+t.cr+t.cs*t.fu,t.g0=i.truncate(Math.round(t.cu)),t.g2=i.truncate(Math.round(t.cv)),t.hd=i.truncate(o),t.fu=i.truncate(s)},n.$t=i.markType(n,"GridLayerController"),n}(i.Base),gr=function(t){function n(){var e=t.call(this)||this;return e.o=0,e.f=!1,e.d=null,e.c=null,e.k=new i.Dictionary$2(i.Number_$type,br.$,0),e.e=new i.FastIterationDictionary$2(i.Number_$type,i.List$1.$.specialize(pi.$),0),e.l=new i.List$1(i.Number_$type,0),e.i=!1,e.q=0,e.g=!1,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"r",{get:function(){return this.q},set:function(t){this.q=t},enumerable:!1,configurable:!0}),n.prototype.ah=function(){this.g=!0},n.prototype.t=function(t){var e=!1;this.g&&(this.g=!1,e=!0),this.u(t,t.model,t.gb,e),t.vm()},n.prototype.u=function(t,e,i,n){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,i,r),s=0;s<e.cg.count;s++){var a=e.cg._inner[s],l=i.k(a,t,e);e.b9._inner[a].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))}},n.prototype.a=function(t,e,n,r){var o;if((o=new di).j=r.top,o.g=r.bottom,o.h=r.left,o.i=r.right,this.r>0){var s=this.r*t.actualRowHeight;o.j=Math.max(o.j-s,0),o.g=Math.min(o.g+s,e.absoluteHeight),o.h=Math.max(o.h-s,0),o.i=Math.min(o.i+s,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=n.b(o.j+e.c6+e.c7+e.c2,e),o.a=n.b(o.g,e),o.k=0,o.m=0,e.cg.clear();for(var a=e.cz+i.truncate(t.inset.left),l=a,u=0,h=0,c=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&&(a+=i.truncate(Math.round(f.ad(-1))),6!=d.a&&(a+=d.k+t.model.cv-i.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),h++,6==d.a&&(c-=d.k)):a>=o.d+e.cz&&l<=o.f-c||2==e.b9._inner[p].a||1==e.b9._inner[p].a||6==e.b9._inner[p].a?e.cg.insert(e.cg.count-h,p):a<o.d+e.cz?o.l++:l>o.f-e.c0&&o.n++,m&&(l=a,a+=i.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},n.prototype.ag=function(t,e,n,r){var o=this.d.y,s=this.c.y,a=this.d.x,l=this.c.x,u=0,h=0,c=0,p=!1,d=!1,f=!1,m=!1,g=!1,b=!1,y=0==t.actualHeaderHeight||null==t.itemsSource,v=0==t.rowSeparatorHeight,C=null,_=t.e7.getStickyRows();if(null!=_)for(var w=0;w<_.length;w++)null==C&&(C=new i.HashSet$1(i.Number_$type,0)),C.add_1(_[w]);for(var S=0;S<e.cc.count;S++){var P=e.cc._inner[S];P.g=!0;for(var O=0;O<P.o.count;O++)if(!P.p._inner[O]){var x=P.o._inner[O];if(d=!1,p=!1,u=x.y,h=x.x,c=x.a5,d=x.ay||x.j||x.a0||x.aq||x.as||x.ap||x.ar,g=x.av||x.aq||x.as,m=x.g,b=x.am,f=null!=C&&C.contains(h),0!=x.d,0==e.cg.count&&(p=!0),x.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(x).jm||(p=!0)}if(x.ak||x.al);if((2!=x.af||(h==t.cj.r&&c==t.cj.q||(p=!0),null==t.aq||t.aq.x==h&&t.aq.a5==c||(p=!0),null==t.ap||t.ap.x==h&&t.ap.a5==c||(p=!0),p))&&(3!=x.af||(t.cj.j||(p=!0),h!=t.cj.r&&(p=!0),null!=t.aq&&t.aq.x!=h&&(p=!0),null!=t.ap&&t.ap.x!=h&&(p=!0),p))){if(x.ay&&v&&(p=!0),x.g&&y&&(p=!0),!x.av||null!=t.dragger&&t.dragger.isDragActive||(p=!0),(x.aq||x.ap)&&0==e.cz&&(p=!0),(x.as||x.ar)&&0==e.c0&&(p=!0),x.at&&0==e.cq&&(p=!0),(d||e.cg.contains(c))&&(m||b||!(u<o||u>s))?f||g||x.aq||x.as||x.ap||x.ar||(u==o&&h<a&&(p=!0),u==s&&h>l&&(p=!0)):p=!0,t.shiftSectionContent||-401!=x.a5&&-402!=x.a5||(p=!0),!p){var j=t.e7.getRowType(h),k=t.e7.isRowSpanning(j)&&1!=t.groupSummaryDisplayMode;x.ay||x.av||x.aq||x.as||x.ap||x.ar?(4==j&&!x.ax||4!=j&&x.ax)&&(p=!0):!e.b5||1!=j&&2!=j?(k&&!d||d&&!k||x.az&&5!=j||x.aw&&4!=j||!x.az&&5==j||!x.aw&&4==j)&&(p=!0):p=!0}p&&(t.d1.j(x,P,e),t.cj.b==P.q._inner[O]&&t.cj.ac(null))}}P.g=!1}e.b5=!1},n.prototype.af=function(t,e,i,n){for(var r=this.d.x,o=this.c.x,s=e.ce._inner[0],a=s.k()-s.o,l=0;l<e.cc.count;l++){var u=e.cc._inner[l];if(this.h(u,e)){u.g=!0;for(var h=0;h<u.o.count;h++)if(!u.p._inner[h]){var c=u.o._inner[h],p=u.q._inner[h],d=!1;if(4==c.af){for(var f=!1,m=0;m<this.e.q.count;m++){if(this.e.o._inner[m]==c.a5){for(var g=this.e.q._inner[m],b=0;b<g.count;b++)if(g._inner[b].f==c.x){if(f=!0,null!=t.activeCell&&t.activeCell.b>=g._inner[b].f&&t.activeCell.b<=g._inner[b].e){d=!0;break}if(g._inner[b].f==g._inner[b].e){d=!0;break}if(p.fu<=a){d=!0;break}}f||(d=!0)}if(d)break}f?(e.cg.contains(c.a5)||(d=!0),p.bk||(c.x<r||c.x>o)&&(d=!0)):d=!0}d&&t.d1.j(c,u,e)}}}},n.prototype.ae=function(t,e,i){for(var n=i.b,r=i.a.y,o=new S(1,0,0,0),s=n.y;s<=r;s++)this.ab(s,t,e,i,o)},n.prototype.ab=function(t,e,i,n,r){var o=n.b,s=n.a,a=i.ce,l=e.d1,u=s.y,h=n.d,c=(n.f,n.e),p=a._inner[t],d=t==u?s.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,i,h,p.i+p.l()-p.d,c,t,!1,e),r.y=t,r.x=-201,void(r.a5=0)}p.g>0&&this.ad(t,e,i,n,r,o,p,f),p.d>0&&this.ac(t,e,i,n,r,l,u,p),r.y=t},n.prototype.n=function(t,e,i){var n=this.a(t,e,t.gb,i);return this.m(t,e,i,n,!0)},n.prototype.m=function(t,e,n,r,o){var s=r.a,a=r.b,l=(r.a.y,r.b.y,new S(1,0,0,0)),u=e.ce._inner[0],h=t.e7.getStickyRowsInRange(a.x,s.x),c=-1,p=-1,d=-1,f=-1,m=!1,g=(t.rowSeparatorHeight,3==t.groupSummaryDisplayMode),b=this.k;b.clear(),this.o=0;var y=new i.List$1(br.$,0);if(e.df=0,null!=h&&(t.groupDescriptions.j.count>0&&t.isGroupRowSticky||0==t.groupDescriptions.j.count)){for(var v=n.top+e.c3+e.c2,C=(n.bottom,function(i){var r=h[i],o=t.e7.getRowType(r),s=r*u.k()+u.i,a=new br;if(a.b=e,a.a=o,a.k=u.e(r),a.i=u.j(r),a.n=t.e7.getStickRowPriority(r),a.m=r,a.l=s,a.e=i==h.length-1||h[i+1]!=r+1,a.f=5==o&&i==h.length-1,b.addItem(r,a),0==i)return 4!=a.a?a.l<=v?(a.l+=v-a.l,f=i):a.j>n.bottom&&(a.l+=n.bottom-a.j,m=!0):(a.l+=n.bottom-a.j,a.h=!0,m=!0,e.cq++),"continue";var l=h[i-1],c=(t.e7.getStickRowPriority(l),t.e7.getStickRowPriority(r),b.item(l)),p=t.e7.isExclusivelySticky(r),d=i-1==f;c.f=5!=o&&5==c.a||5==o&&i==h.length-1;var y,C=((y=new yr).a=h,y.d=b,y.c=!0,y.b=p,y);if(4!=a.a){if(a.l<=c.j&&d){f=i;var w=_.b(i-1,i,i,C);w.b||(a.l=w.a.j)}if(2==a.a){var S=t.e7.getRootSummaryRowCount(),P=n.bottom-S*u.k();if(a.j>P){a.l-=a.j-P,a.h=!0,m=!0,C.c=!1;var O=_.b(i-1,i,i,C);O.b||(a.l=O.a.j)}}else if(g&&5==a.a){var x=t.e7.getRootSummaryRowCount(),j=n.bottom-x*u.k();if(a.j>j){a.l-=a.j-j,a.h=!0,m=!0,C.c=!1;var k=_.b(i-1,i,i,C);k.b||(a.l=k.a.j)}}}4==o&&(a.l+=n.bottom-a.j,a.h=!0,e.cq++,m=!0,_.am(t,i-1,i,4,h,b))}),_=this,w=0;w<h.length;w++)C(w);for(var P=0;P<h.length;P++)for(var O=P+1;O<h.length;O++){var x=b.item(h[P]),j=b.item(h[O]);if(!(j.l<x.j))break;j.g=!0,j.d=Math.round(j.j)<=Math.round(x.j)}for(var k=0;k<=f;k++){var I=h[k],T=b.item(I).l,R=b.item(I).j,A=b.item(I).k,E=b.item(I).g,B=b.item(I).d;c=I,this.o=Math.max(this.o,R);var D=!1,$=!1,M=!1;3==b.item(I).a&&(D=!0,$=!0),3==b.item(I).a&&b.item(I).e&&(M=!0),y.add(b.item(I)),o||this.aa(t,e,r,l,t.d1,I,T,A,!0,D,$,M,E,B)}if(m)for(var z=0,N=0;N<h.length;N++){var F=h[N];if(b.item(F).h){-1==d&&(d=F);var G=b.item(F).l,V=(b.item(F).j,b.item(F).k),q=b.item(F).g,L=b.item(F).d;p=F;var H=3==b.item(F).a&&b.item(F).e,W=3==b.item(F).a;o||(l.i=!0,l.o=e.da-1-z,this.aa(t,e,r,l,t.d1,F,G,V,!0,W,W,H,q,L),l.i=!1,l.o=-1),z++}}}for(var U=Math.max(c+1,a.x);U<=s.x;U++)if(!(-1!=d&&-1!=p&&U>=d&&U<=p)){var K=u.f(U);K+=u.i;var X=u.e(U),Q=!1,Y=!1,Z=!1,J=t.e7.getRowType(U);3==J&&(Z=!0,Y=!0),0==J&&t.e7.isRowPinned(U)&&(Y=!0),3==J&&b.containsKey(U)&&b.item(U).e&&(Q=!0),o||this.aa(t,e,r,l,t.d1,U,K,X,!1,Y,Z,Q,!1,!1)}return y},n.prototype.am=function(t,e,i,n,r,o){if(!(e<0)){var s=r[e],a=r[i];o.item(s).a==n&&o.item(s).j>o.item(a).l&&(o.item(s).l-=o.item(s).j-o.item(a).l,o.item(s).h=!0,this.am(t,e-1,e,n,r,o))}},n.prototype.b=function(t,e,i,n){var r,o=this,s=n.a[t],a=n.a[e],l=n.a[i],u=n.d,h=u.item(s).n,c=u.item(a).n,p=u.item(l).n;if(12==a);if(n.e++,u.item(a).l<u.item(s).j){if(c>h||c==h&&n.b){for(var d=u.item(a).l-u.item(s).j,f=this.j(d,t,i,n),m=null;f&&t>0;)t-=1,m=this.b(t,i,i,n),f=m.b;return null==m&&((r=new vr).b=f,r.a=u.item(n.a[t]),m=r),m}if(c==h&&!n.b)return function(){var t=new vr;return t.b=!1,t.a=u.item(s),t}();if(c<h){if(p>=h){if(u.item(l).l<u.item(s).j){var g=u.item(l).l-u.item(s).j;return function(){var e=new vr;return e.b=o.j(g,t,i,n),e.a=u.item(s),e}()}return function(){var t=new vr;return t.b=!0,t.a=u.item(s),t}()}return function(){var t=new vr;return t.b=!1,t.a=u.item(s),t}()}}return function(){var t=new vr;return t.b=!0,t.a=u.item(s),t}()},n.prototype.j=function(t,e,i,n){var r=n.a[e];if(n.d.item(r).l+=t,n.d.item(r).h=!n.c,e>0){var o=this.b(e-1,e,i,n);if(!(n.b&&n.c||o.b)){var s=n.a[e-1];return n.d.item(r).l=n.d.item(s).j,!1}}return!0},n.prototype.aa=function(t,e,n,r,o,s,a,l,u,h,c,p,d,f){r.x=s,r.d=0,r.au=d,r.ai=f;var m=e.b9,g=n.d,b=n.f,y=n.e,v=t.rowSeparatorHeight,C=t.e7.getRowType(s);r.aw=4==C,r.az=5==C;var _=!1;if(0!=C&&(_=t.e7.isRowSpanning(C)&&1!=t.groupSummaryDisplayMode),_){var w=t.shiftSectionContent?e.cz:0,S=t.shiftSectionContent?e.c0:0,P=g,O=y;w>0&&(r.a5=-401,O=e.cz,this.an(P,O,a,l,r.ab(),e,g,b,t,u,h,c,p,C)),r.a5=-400,P=g+w,O=y-w-S,this.an(P,O,a,l,r.ab(),e,g,b,t,u,h,c,p,C),S>0&&(r.a5=-402,P=b-e.c0,O=e.c0,this.an(P,O,a,l,r.ab(),e,g,b,t,u,h,c,p,C))}else for(var x=0;x<e.cg.count;x++){var j=e.cg._inner[x],k=m._inner[j];r.a5=k.m,r.bb=k.n,r.d=k.d;var I=r.ab();this.an(n.o.left+k.l,k.k,a,l,I,e,g,b,t,u,h,c,p,C)}var T=4!=C&&2!=C&&(5!=C||3!=t.groupSummaryDisplayMode);T&&u&&(e.dg=i.truncate(Math.round(a+l+t.rowSpacingHeight-n.j)));var R=4==C||5==C&&3==t.groupSummaryDisplayMode;R&&u&&a<n.g&&(e.df+=i.truncate(l)+t.rowSpacingHeight),v>0&&(T&&u&&(e.dg=i.truncate(Math.round(a+l+t.rowSpacingHeight+v-n.j))),R&&u&&a<n.g&&(e.df+=v),r.d=0,r.a5=-300,r.ax=4==C,this.av(n,r.ab(),e,g,y,a+l+t.rowSpacingHeight,v,t,u,h,c,p,C))},n.prototype.ac=function(t,e,i,n,r,o,s,a){var l=n.d,u=(n.f,n.e);r.y=t,r.x=-201,r.a5=0;var h=new S(1,r.a5,r.y,r.x),c=a.i+a.l()-a.d,p=c;t==s?((p=n.g-a.d)<a.i+a.g&&(p=a.i+a.g),this.au(h,i,l,Math.min(c,p),u,t,!1,!0,e)):this.at(h,i,l,Math.min(c,p),u,t,!1,e)},n.prototype.ad=function(t,e,i,n,r,o,s,a){var l=n.d,u=(n.f,n.e);r.y=t,r.x=-200,r.a5=0;var h=new S(1,r.a5,r.y,r.x);if(t==o.y)if(a==s.m-1){var c=s.j(a),p=s.f(a)+s.i+c-s.g;this.au(h,i,l,Math.min(p,n.j),u,t,!0,!0,e)}else this.au(h,i,l,Math.max(s.i,n.j-e.inset.top),u,t,!0,!0,e);else this.at(h,i,l,s.i,u,t,!0,e)},n.prototype.x=function(t,e,i,n){var r=e.b9,o=t.inset.top;if(null!=t.itemsSource){if(e.c3>0){var s=Math.max(i.j,o);e.b1=this.i,this.i&&(s=o);for(var a=0;a<e.cg.count;a++){var l=e.cg._inner[a],u=r._inner[l],h=new S(1,u.m,-100,-100);if(h.d=u.d,this.ar(h,e,s,i.d,i.f,t),t.isHeaderSeparatorVisible){var c=new S(1,u.m,-100,-101);c.d=u.d;var p=t.nn(t.headerSeparatorWidth),d=t.headerSeparatorWidth+2*p,f=i.o.left+e.b9._inner[h.a5].l+e.b9._inner[h.a5].k-t.headerSeparatorWidth-p;this.aw(c,e,s,f,d,e.c6,i.d,i.f,t)}}if(e.c7>0){var m=new S(1,-300,-100,-100);this.av(i,m,e,i.d,i.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(i.j,o),t.og,t.columnResizingSeparatorWidth,e.ch,i.h,i.i,t)}if(1!=t.columnMovingMode&&null!=t.dragger&&t.dragger.isDragActive&&2==t.dragger.dragType){var b=new S(3,-400,-102,6);this.aw(b,e,i.j,t.og,t.columnMovingSeparatorWidth,e.ch,i.h,i.i,t)}}},n.prototype.z=function(t,e,i,n){if(e.cx>-1?e.cn=i.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;i.i>=e.absoluteWidth?e.co=r+t.inset.left:e.co=r-(e.absoluteWidth-i.i-t.inset.left-t.inset.right)}var o=Math.max(i.j-e.c3-e.c2,t.inset.top),s=i.j,a=e.c3+e.c2,l=e.cq*(t.actualRowHeight+t.rowSeparatorHeight+t.rowSpacingHeight),u=i.g-l,h=Math.min(e.absoluteHeight-l,i.g-l),c=Math.max(0,h-s),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,a,i.d,i.i,t)),p.x=-103,this.aw(p.ab(),e,s,e.cn,t.pinnedAreaSeparatorWidth,c,i.d,i.i,t),e.cq>0&&(p.x=-104,this.aw(p.ab(),e,u,e.cn,t.pinnedAreaSeparatorWidth,l,i.d,i.i,t))),e.c0>0&&(p.a5=-501,e.c3>0&&(p.x=-100,this.aw(p.ab(),e,o,e.co,t.pinnedAreaSeparatorWidth,a,i.d,i.i,t)),p.x=-103,this.aw(p.ab(),e,s,e.co,t.pinnedAreaSeparatorWidth,c,i.d,i.i,t),e.cq>0&&(p.x=-104,this.aw(p.ab(),e,u,e.co,t.pinnedAreaSeparatorWidth,l,i.d,i.i,t)))},n.prototype.p=function(t,e){var i=Math.max(e.actualVisibleRegion.left,e.inset.left),n=Math.min(e.actualVisibleRegion.right,e.model.absoluteWidth-e.inset.right),r=e.inset.left+t.l;return 1==t.d?r=i+t.l:2==t.d&&(r=n>=e.model.absoluteWidth?t.l+e.inset.left:t.l-(e.model.absoluteWidth-n-e.inset.left-e.inset.right)),r},n.prototype.v=function(t,e,i,n){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],s=r.r,a=e.h(o.ko),l=new S(1,a.m,0,s);l.bb=a.n,l.af=2;var u=this.k.containsKey(s)?this.k.item(s).l:e.ce._inner[0].f(s)+e.ce._inner[0].i,h=this.p(a,t),c=a.k,p=e.ce._inner[0].e(s);if(this.ap(t,o,l,e,u,h,c,p),3==t.editMode&&t.cj.j){var d=l.ab();d.af=3,d.x=s,d.a5=-400,h=e.cj,c=e.absoluteWidth,this.ao(t,e,d,u,h,c,p)}}},n.prototype.ap=function(t,e,i,n,r,o,s,a){var l=t.cj.h(e,i.x);this.aj(t,n,i,l,9,o,r,s,a)},n.prototype.ao=function(t,e,i,n,r,o,s){var a=e.a0;this.aj(t,e,i,a,10,r,n,o,s)},n.prototype.y=function(t,e,i,n){this.f=!0;var r=e.ce._inner[0],o=r.k(),s=o-r.o,a=(n.d,n.f,n.j+(this.o>0?Math.abs(this.o-n.j):0)),l=new S(1,0,0,0);l.af=4;for(var u=0;u<this.e.q.count;u++)for(var h=this.e.q._inner[u],c=0;c<h.count;c++){var p=h._inner[c];if(p.e!=p.f){var d=p.b?n.j:a,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,b=this.p(f,t),y=f.k,v=o*(p.e-p.f+1)-r.o;g<d&&(p.b||(v-=d-g),g=d),g+v>n.g&&(p.b||(v-=g+v-n.g));var C=Math.max(v,s);C!=s&&this.as(t,n,f.d,m,g,b,y,C,p.b)}}this.f=!1},n.prototype.as=function(t,e,i,n,r,o,s,a,l){var u=t.model,h=null;h=0!=i?l?u.ay:u.a4:l?u.ba:u.bp,this.ak(t,u,n,h,12,o,r,s,a,l,l,!1)},n.prototype.h=function(t,e){return!0},n.prototype.w=function(t,e,i){if(e.c2>0&&null!=t.actualDataSource&&null!=t.actualDataSource.actualSchema&&t.actualDataSource.actualSchema.propertyNames.length>0){var n=e.b9,r=Math.max(i.j,i.o.top);r+=e.c3;for(var o=new S(1,-1,-100,-1),s=0;s<e.cg.count;s++){var a=e.cg._inner[s],l=n._inner[a],u=o.ab();u.x=-105,u.a5=l.m,u.af=5,u.d=l.d,this.aq(u,e,r,i.d,i.f,t)}if(t.rowSeparatorHeight>0){var h=r+e.cw,c=o.ab();c.x=-105,c.a5=-300,c.af=5,this.av(i,c,e,i.d,i.e,h,t.rowSeparatorHeight,t,!1,!1,!1,!1,0)}}},n.prototype.aq=function(t,e,i,n,r,o){var s=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||(s=0==t.d?e.bo:e.a3),6==e.b9._inner[t.a5].a&&(s=0==t.d&&0==o.columns._inner[t.a5].ik?e.br:e.a6);var a=e.b9._inner[t.a5].l+o.inset.left,l=e.b9._inner[t.a5].k;if(1==t.d)a=n+e.b9._inner[t.a5].l;else if(2==t.d){var u=e.b9._inner[t.a5].l;a=r>=e.absoluteWidth?u+o.inset.left:u-(e.absoluteWidth-r-o.inset.left-o.inset.right)}this.aj(o,e,t,s,11,a,i,l,e.cw)},n.prototype.aj=function(t,e,i,n,r,o,s,a,l){this.ak(t,e,i,n,r,o,s,a,l,!1,!1,!1)},n.prototype.ak=function(t,e,i,n,r,o,s,a,l,u,h,c){var p=t.d1.b(i,t,e,n,r,u,h,c);t.d1.h(p,e,o,s,a,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))},n.prototype.al=function(t,e){if(4==e.l.af){var n=t.model.b9._inner[e.l.a5];1!=n.a&&3!=n.a&&2!=n.a&&(e.me=i.Rect.empty)}},n.prototype.s=function(t,e){var i=null;switch(e){case 0:case 1:i=t.hm;break;case 2:i=t.i4()}return i},n.prototype.ai=function(t,e){var n=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 s=0;s<e.l.a5;s++)if(this.e.d(s)){var a=this.e.item(s),l=a._inner[a.count-1];l.e==e.l.x&&(l.f==l.e?l.a=!0:(l.e--,a.add((r=void 0,(r=new pi).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),h=e.bk&&e.bl;if(u&&e.l.a0)for(var c=this.e.q,p=function(t){c._inner[t].add(function(){var i=new pi;return i.d=n.e.o._inner[t],i.f=e.l.x,i.e=e.l.x,i.a=!0,i}())},d=0;d<c.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 i.List$1(pi.$,0));var g=this.e.item(e.l.a5);if(0==g.count)g.add(function(){var t=new pi;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.g=n.s(e,m),t.b=h,t.a=u,t.c=e.cv,t}());else if(u)g.add(function(){var t=new pi;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.a=!0,t}());else{var b=g._inner[g.count-1];if(b.a)g.add(function(){var t=new pi;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.g=n.s(e,m),t.b=h,t.c=e.cv,t}());else{var y=this.s(e,m);h==b.b&&(null==b.g&&null==y||null!=b.g&&i.Base.equalsStatic(b.g,y))?b.e=e.l.x:g.add(function(){var t=new pi;return t.d=e.l.a5,t.f=e.l.x,t.e=e.l.x,t.g=n.s(e,m),t.b=h,t.c=e.cv,t}())}}}}}},n.prototype.an=function(t,e,i,n,r,o,s,a,l,u,h,c,p,d){var f=o.at,m=r.d,g=0!=r.d,b=(l.gb,1);if(1==d&&(b=2),2==d&&(b=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=s+o.b9._inner[r.a5].l;else if(2==m){var y=o.b9._inner[r.a5].l;t=a>=o.absoluteWidth?y+l.inset.left:y-(o.absoluteWidth-a-l.inset.left-l.inset.right)}this.ak(l,o,r,f,b,t,i,e,n,h,c,p)},n.prototype.ar=function(t,e,i,n,r,o){var s=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||(s=0==t.d?e.bo:e.a3),6==e.b9._inner[t.a5].a&&(s=0==t.d&&0==o.columns._inner[t.a5].ik?e.br:e.a6);var a=e.b9._inner[t.a5].l+o.inset.left,l=e.b9._inner[t.a5].k;if(1==t.d)a=n+e.b9._inner[t.a5].l;else if(2==t.d){var u=e.b9._inner[t.a5].l;a=r>=e.absoluteWidth?u+o.inset.left:u-(e.absoluteWidth-r-o.inset.left-o.inset.right)}this.aj(o,e,t,s,0,a,i,l,e.c6)},n.prototype.aw=function(t,e,i,n,r,o,s,a,l){var u=e.bs,h=5;t.h&&(h=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?n+=s-l.inset.left:2==t.d&&a<e.absoluteWidth&&(n-=e.absoluteWidth-a-l.inset.right)),l.shiftSectionContent||(t.aq||t.as)&&-104!=t.x&&(u=e.a0),6==t.af?h=8:7==t.af&&(h=6),this.aj(l,e,t,u,h,n,i,r,o)},n.prototype.at=function(t,e,i,n,r,o,s,a){this.au(t,e,i,n,r,o,s,!1,a)},n.prototype.au=function(t,e,i,n,r,o,s,a,l){var u=s?e.ce._inner[o].g:e.ce._inner[o].d,h=3,c=e.bl;s&&(h=2),a&&(c=e.bl),this.aj(l,e,t,c,h,i,n,r,u)},n.prototype.av=function(t,e,i,n,r,o,s,a,l,u,h,c,p){var d=0,f=i.bg;if(l?f=1==p||2==p?e.au?i.bk:i.bi:4==p?i.bj:i.bh:1!=p&&2!=p||(f=i.bk),e.g){var m=a.inset.top;d=Math.max(t.j,m)+i.c6,this.i&&(d=t.o.top+i.c6),f=i.a7}else e.am?(d=o,f=i.a7):d=o;this.ak(a,i,e,f,4,n,d,r,s,u,h,c)},n.$t=i.markType(n,"VisibilityEngine"),n}(i.Base),br=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"j",{get:function(){return this.l+this.i},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.toString=function(){return i.EnumUtil.getName(i.DataSourceRowType_$type,this.a)+"("+this.n+") "+this.j},n.$t=i.markType(n,"PinnedRowInfo"),n}(i.Base),yr=function(t){function n(){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 e.__extends(n,t),n.$t=i.markType(n,"PushRowSettings"),n}(i.Base),vr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=!1,e.a=null,e}return e.__extends(n,t),n.$t=i.markType(n,"PushRowResult"),n}(i.Base),Cr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.f=new i.List$1(Ir.$,0),e.c=new i.Dictionary$2(i.Number_$type,Ir.$,0),e.d=new i.List$1(i.Number_$type,0),e.e=new i.List$1(i.Number_$type,0),e.a=new ti,e}return e.__extends(n,t),n.prototype.r=function(t,e,n){e.absoluteHeight=0,e.absoluteWidth=0,e.absoluteHeight=i.truncate(t.inset.top),e.c1=i.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 s=0;s<o;s++){var a=new Tr;a.h=s,a.i=e.absoluteHeight,a.m=t.e7.getRowCount(),a.g=t.sectionHeaderHeight,a.d=t.sectionFooterHeight,a.o=t.rowSeparatorHeight,a.p=t.rowSpacingHeight,a.n=t.actualRowHeight,a.q=a.m*a.n,t.model.absoluteHeight+=a.l(),t.model.ce.add(a)}var l=t.defaultColumnWidth,u=0,h=t.defaultColumnWidth,c=t.defaultColumnMinWidth;for(this.f.clear(),this.d.clear(),this.e.clear(),u=0;u<t.actualColumns.count;u++){var p=new Ir;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?h:l);var m=0;null!=d.width||i.isNaN_(c)||(m=c),!i.isNaN_(f.e)&&f.e>0&&(m=Math.max(m,f.e)),i.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,n),t.dw.ac(),t.model.absoluteHeight+=i.truncate(t.inset.bottom)}},n.prototype.s=function(t){if(this.d.count>0||this.e.count>0){null==t.cd?t.cd=new i.List$1(Ir.$,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 n=0;n<t.b9.count;n++)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}}},n.prototype.q=function(t,r,o){var s,a;r.absoluteWidth=0,r.c4=0,r.cz=0,r.c0=0;var l=t.model.cv,u=t.model.cv,h=0,c=new i.List$1(Ir.$,0);r.cf;try{for(var p=e.__values(i.fromEnum(r.b9)),d=p.next();!d.done;d=p.next()){var f=d.value;f.b.c?(h+=f.b.f*this.g(f),c.add(f)):(f.k=i.truncate(Math.max(i.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-i.truncate(Math.round(f.f(r))),r.c4+=f.k+t.model.cv,1==f.d&&(r.cz+=f.k+r.cv-i.truncate(Math.round(f.f(r)))),2==f.d&&(r.c0+=f.k+r.cv-i.truncate(Math.round(f.f(r))))),6==f.a?l+=f.k+t.model.cv:l+=f.k+t.model.cv-i.truncate(Math.round(f.f(r))))}}catch(t){s={error:t}}finally{try{d&&!d.done&&(a=p.return)&&a.call(p)}finally{if(s)throw s.error}}if(r.cz=Math.max(0,r.cz-r.cv),h>0){u=n.p(t,r,o,l,u,h,c)}t.model.absoluteWidth=u,t.model.absoluteWidth+=i.truncate(t.inset.left+t.inset.right),t.model.c4+=i.truncate(t.inset.left+t.inset.right)},n.prototype.g=function(t){return 6==t.a?1:3==t.a?0:1-Math.max(0,Math.min(1,Math.abs(t.h)))},n.p=function(t,n,r,o,s,a,l){var u,h,c,p;r-=o,r-=i.truncate(t.inset.left+t.inset.right),r-=l.count*t.model.cv;var d=0,f=(r-=t.model.dd+t.model.de)/a;f<0&&(f=0),r<0&&(r=0);for(var m=!1,g=new i.HashSet$1(Ir.$,0);a>0&&!m;){m=!0;try{for(var b=(u=void 0,e.__values(i.fromEnum(l))),y=b.next();!y.done;y=b.next()){var v=y.value;if(!g.contains(v)&&v.i>f*v.b.f)if(m=!1,3!=v.a&&a--,g.add_1(v),v.k=i.truncate(v.i),6!=v.a)if(3!=v.a&&(s+=v.k+t.model.cv-i.truncate(Math.round(v.f(n))),n.c4+=v.k+t.model.cv),6==v.a){var C=v.k+t.model.cv;o+=C,r-=C}else{var _=v.k+t.model.cv-i.truncate(Math.round(v.f(n)));o+=_,r-=_}else s+=v.k,n.c4+=v.k+t.model.cv}}catch(t){u={error:t}}finally{try{y&&!y.done&&(h=b.return)&&h.call(b)}finally{if(u)throw u.error}}f=r/a}r<0&&(r=0);var w=0;try{for(var S=e.__values(i.fromEnum(l)),P=S.next();!P.done;P=S.next()){var O=P.value;if(g.contains(O))3!=O.a&&(1==O.d&&(t.model.cz+=O.k+t.model.cv),2==O.d&&(t.model.c0+=O.k+t.model.cv));else{var x=Math.max(O.i,f*O.b.f),j=w+x;w+=x,Math.round(j)>=j?O.k=i.truncate(Math.ceil(x)):O.k=i.truncate(Math.floor(x)),s+=t.model.cv,o+=t.model.cv,d+=t.model.cv,w+=t.model.cv,n.c4+=t.model.cv,3!=O.a&&(6==O.a?s+=O.k:s+=O.k-i.truncate(Math.round(O.f(n))),1==O.d&&(t.model.cz+=O.k+t.model.cv),2==O.d&&(t.model.c0+=O.k+t.model.cv),n.c4+=O.k),6==O.a?(o+=O.k,d+=O.k):(o+=O.k-i.truncate(Math.round(O.f(n))),d+=O.k-i.truncate(Math.round(O.f(n))))}}}catch(t){c={error:t}}finally{try{P&&!P.done&&(p=S.return)&&p.call(S)}finally{if(c)throw c.error}}if(t.model.cz=Math.max(0,t.model.cz-t.model.cv),d<r){var k=r-d-t.model.cv;l._inner[l.count-1].k+=k,s+=k,o+=k,n.c4+=k}if(d>r){var I=r-d-t.model.cv;l._inner[l.count-1].k+=I,s+=I,o+=I,n.c4+=I}return s},n.prototype.k=function(t,e,i){return this.l(t,i,!1)},n.prototype.l=function(t,e,n){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+=i.truncate(Math.round(e.cf._inner[t].ad(e.b9._inner[t].o))),n||(r=i.truncate(r+Math.round(e.b9._inner[t].e(e)))),r},n.prototype.h=function(t,e,n,r){for(var o=0,s=0;s<t;s++)r.b9._inner[s].d==n&&(o+=i.truncate(Math.round(r.cf._inner[s].ad(e))),6!=r.b9._inner[s].a&&(o+=r.b9._inner[s].k+r.cv-i.truncate(Math.round(r.b9._inner[s].f(r)))),o+=i.truncate(Math.round(r.cf._inner[s].af(e))));return o},n.prototype.m=function(t,e,i){var n=e;if(0==t){for(var r=0,o=0;o<e;o++)0==i.b9._inner[o].d&&r++;n=this.d.count+r}if(1==t){for(var s=0,a=0;a<this.d.count;a++)this.d._inner[a]<e&&s++;n=s}if(2==t){for(var l=0,u=0;u<this.e.count;u++)this.e._inner[u]>e&&l++;n=i.b9.count-1-l}return n},n.prototype.j=function(t,e){for(var i=0;i<e.b9.count;i++)if(e.b9._inner[i].n==t)return i;return-1},n.prototype.n=function(t,e,n){for(var r=n.b9._inner[t].o,o=i.truncate(e.inset.left)+n.cz+n.cv,s=n.cf,a=n.b9,l=0;l<t;l++)0==a._inner[l].d&&(o+=i.truncate(Math.round(s._inner[l].ad(r))),6!=a._inner[l].a&&(o+=a._inner[l].k+e.model.cv-i.truncate(Math.round(a._inner[l].f(n)))),o+=i.truncate(Math.round(s._inner[l].af(r))));return o+=i.truncate(Math.round(s._inner[t].ad(r)))},n.prototype.o=function(t,e,n){var r=0,o=0;o+=i.truncate(e.inset.left);for(var s=n.cf,a=(this.d.count>0||this.e.count>0)&&null!=n.cd?n.cd:n.b9,l=a.count,u=0;u<l;u++){var h=a._inner[u];if(o+=i.truncate(Math.round(s._inner[r].ad(-1))),6!=h.a&&(o+=h.k+e.model.cv-i.truncate(Math.round(h.f(n)))),t<=o)return r;o+=i.truncate(Math.round(s._inner[r].af(-1))),r++}var c=n.b9.count-1;return r>c&&(r=c),r},n.prototype.b=function(t,e){for(var i=e.ce.count,n=0;n<i;n++){var r=e.ce._inner[n],o=r.i;if(t<=o+r.l())return t<o&&(t=o),r.a(t)}return new g(e.ce.count-1,e.ce._inner[e.ce.count-1].m-1)},n.prototype.v=function(t,e,i,n){this.ab(t,e,n,!1);for(var r=e+1;r<n.b9.count;r++)this.aa(r,n,!1,e)},n.prototype.t=function(t,e,i){for(var n=i.b9.count-1;n>=t;n--)this.aa(n,i,!0,t)},n.prototype.x=function(t,e){for(var n=0;n<e.cc.count;n++){for(var r=new i.List$1(Ei.$,0),o=e.cc._inner[n],s=0;s<o.o.count;s++)if(!o.p._inner[s]){var a=o.o._inner[s];(a.y>t.y||a.y==t.y&&a.x>=t.x)&&r.add(o.q._inner[s])}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 h=0;h<r.count;h++){var c=r._inner[h];o.s(c.l,c)}o.g=!1}},n.prototype.y=function(t,e,n){for(var r=0;r<n.cc.count;r++){for(var o=new i.List$1(Ei.$,0),s=n.cc._inner[r],a=new i.List$1(S.$,0),l=0;l<s.o.count;l++)if(!s.p._inner[l]){var u=s.o._inner[l];(u.y>e.y||u.y==e.y&&u.x>e.x)&&o.add(s.q._inner[l]),u.y==e.y&&u.x==e.x&&a.add(u)}s.g=!0;for(var h=0;h<a.count;h++){var c=a._inner[h];t.j(c,s,n)}for(var p=0;p<o.count;p++){var d=o._inner[p];s.f(d.l),d.l.x=d.l.x-1}for(var f=0;f<o.count;f++){var m=o._inner[f];s.s(m.l,m)}s.g=!1}},n.prototype.aa=function(t,e,n,r){for(var o=0;o<e.cc.count;o++){for(var s=new i.List$1(Ei.$,0),a=e.cc._inner[o],l=0;l<a.o.count;l++)if(!a.p._inner[l]){var u=a.o._inner[l];u.a5==t&&(u.aj||u.an||u.am)&&s.add(a.q._inner[l])}a.g=!0;for(var h=0;h<s.count;h++){var c=s._inner[h];a.f(c.l),c.l.a5=n?c.l.a5+1:c.l.a5-1,a.s(c.l,c)}a.g=!1}var p=e.cf;if(n){t==p.count-1&&p.add(new ti);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)},n.prototype.ab=function(t,e,n,r){for(var o=0;o<n.cc.count;o++){for(var s=new i.List$1(Ei.$,0),a=n.cc._inner[o],l=0;l<a.o.count;l++)if(!a.p._inner[l]){var u=a.o._inner[l];u.a5==e&&(u.aj||u.an||u.am)&&s.add(a.q._inner[l])}a.g=!0;for(var h=0;h<s.count;h++){var c=s._inner[h];r?(a.f(c.l),c.l.a5=-800,a.s(c.l,c)):t.j(c.l,a,n)}a.g=!1}var p=n.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)},n.prototype.z=function(t,e){for(var n=0;n<e.cc.count;n++){for(var r=new i.List$1(Ei.$,0),o=e.cc._inner[n],s=0;s<o.o.count;s++)if(!o.p._inner[s]){var a=o.o._inner[s];-800==a.a5&&(a.aj||a.an||a.am)&&r.add(o.q._inner[s])}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}},n.prototype.w=function(t,e){for(var i=0;i<e.b9.count;i++)this.ab(t,i,e,!1)},n.prototype.u=function(t,e,i,n,r){this.ab(t,i,e,!0);for(var o=i+1;o<e.b9.count;o++)this.aa(o,e,!1,i);for(var s=e.b9.count-1;s>=n;s--)this.aa(s,e,!0,n);this.z(n,e);for(var a=e.cf,l=this.a.count-1;l>=0;l--)a._inner[i].add(this.a._inner[l]),this.a.removeAt(l)},n.prototype.i=function(t,e){if(null==e)return 0;for(var i=0,n=0;n<e.y;n++)i+=t.ce._inner[n].m;return i+=e.x},n.$t=i.markType(n,"SpatialEngine"),n}(i.Base),_r=function(t){function n(e){for(var i=[],n=1;n<arguments.length;n++)i[n-1]=arguments[n];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=i[0],s=i[1];r.a=o,r.b=s}return r}return e.__extends(n,t),n.$t=i.markType(n,"ColumnExchanger"),n}(i.Base),wr=function(t){function n(){return t.call(this,_r.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"ColumnExchangersCollection",i.ObservableCollection$1.$.specialize(_r.$)),n}(i.ObservableCollection$1),Sr=function(t){function n(e){var n=t.call(this)||this;return n.c=null,n.l=500,n.m=200,n.k=i.dateMinValue(),n.h=!1,n.i=!1,n.j=null,n.a=null,n.f=null,n.b=null,n.d=null,n.a=e,n.g=new jr,n.j=new i.List$1(i.Number_$type,0),n.h=!0,n.d=null,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"g",{get:function(){return this.f},set:function(t){this.f=t},enumerable:!1,configurable:!0}),n.prototype.x=function(t){this.b!=t&&(this.d=t,this.h||this.w())},n.prototype.y=function(t,e){this.k=i.dateNow(),this.h?(this.q(),this.h=!1):this.w()},n.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)}},n.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()))}},n.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 n=e.a.c5;n.animationCompleted=i.delegateCombine(n.animationCompleted,i.runOn(e,e.p));var r=e.a.c5;r.animationCanceled=i.delegateCombine(r.animationCanceled,i.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)},n.prototype.u=function(t){var e=t.c._inner[t.l];this.v(e.e),this.s(e.b)},n.prototype.o=function(t,e){this.r(e.a)},n.prototype.p=function(t,e){this.r(e.a)},n.prototype.r=function(t){if(this.j.contains(t)&&this.j.remove(t),0==this.j.count){var e=this.a.c5;e.animationCompleted=i.delegateRemove(e.animationCompleted,i.runOn(this,this.p));var n=this.a.c5;n.animationCanceled=i.delegateRemove(n.animationCanceled,i.runOn(this,this.o)),this.c.l=this.c.l+1,this.t(this.c)}},n.prototype.v=function(t){for(var e=0;e<t.count;e++){for(var i=t._inner[e],n=null,r=0;r<this.a.actualColumns.count;r++)if(this.a.actualColumns._inner[r].mf==i.c){n=this.a.actualColumns._inner[r];break}if(null==n)for(var o=0;o<this.a.actualColumns.count;o++)if(this.a.actualColumns._inner[o].lo==i.c){n=this.a.actualColumns._inner[o];break}if(null!=n){var s=n.externalObject;this.a.propertySetter.setProperty(s,i.d,i.b)}}},n.prototype.s=function(t){for(var e=0;e<t.count;e++){var i=t._inner[e];if(null!=i.a&&!(i.b>=this.a.actualColumns.count)){var n=this.a.actualColumns._inner[i.b];this.a.exchangeColumn(i.a,n)}}},n.prototype.e=function(t){if(null!=this.d)return this.d;for(var e=0;e<this.g.count;e++){var i=this.g._inner[e];if(t>=i.k&&t<=i.j&&!i.i)return i}return null},n.prototype.n=function(){var t=i.timeSpanFromMilliseconds(this.m);i.timeSpanFromMilliseconds(this.l);+this.k!=+i.dateMinValue()&&(t=+i.dateNow()-+this.k);var e=i.truncate(i.timeSpanTotalMilliseconds(t)),n=this.m-e;return n<1&&(n=0),n},n.$t=i.markType(n,"ResponsiveEngine"),n}(i.Base),Pr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.j=null,e.k=null,e.i=0,e.d=new mi,e.a=new wr,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"e",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.g=function(t){return this.e.add(t),this},n.prototype.c=function(){var t=new fi(0);return this.e.add(t),t},n.prototype.f=function(t){return this.b.add(t),this},n.prototype.h=function(){var t=new _r(0);return this.b.add(t),this},n.$t=i.markType(n,"ResponsivePhase"),n}(i.Base),Or=function(t){function n(){return t.call(this,Pr.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"ResponsivePhasesCollection",i.ObservableCollection$1.$.specialize(Pr.$)),n}(i.ObservableCollection$1),xr=function(t){function n(){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 Or,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this.h},set:function(t){this.h=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.d=function(t){return this.c.add(t),this},n.prototype.a=function(){var t=new Pr;return this.c.add(t),t},n.prototype.p=function(){null!=this.stateEntering&&this.stateEntering(this,new gi)},n.prototype.o=function(){null!=this.stateEntered&&this.stateEntered(this,new bi)},n.prototype.q=function(){null!=this.stateExited&&this.stateExited(this,new yi)},n.$t=i.markType(n,"ResponsiveState"),n}(i.Base),jr=function(t){function n(){return t.call(this,xr.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"ResponsiveStatesCollection",i.ObservableCollection$1.$.specialize(xr.$)),n}(i.ObservableCollection$1),kr=function(t){function n(e){var i=t.call(this,S.$,Ei.$,0)||this;return i.v=null,i.v=e,i}return e.__extends(n,t),n.$t=i.markType(n,"GridLayer",i.FastIterationDictionary$2.$.specialize(S.$,Ei.$)),n}(i.FastIterationDictionary$2),Ir=function(t){function n(){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 e.__extends(n,t),n.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)},n.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},n.$t=i.markType(n,"ColumnInfo"),n}(i.Base),Tr=function(t){function n(){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 e.__extends(n,t),n.prototype.l=function(){return this.q+this.g+this.d+(this.o+this.p)*this.m},n.prototype.e=function(t){return-200==t?this.g:-201==t?this.d:null==this.b?this.n:this.b._inner[t]},n.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]},n.prototype.k=function(){return this.n+this.p+this.o},n.prototype.j=function(t){return null==this.c?this.n+this.p+this.o:this.b._inner[t]+this.o+this.p},n.prototype.a=function(t){if((t-=this.i)<this.g)return new g(this.h,-200);if(t>this.l()-this.d)return new g(this.h,-201);if(t-=this.g,null==this.b){var e=this.k(),n=i.truncate(t/e);return n>=this.m&&(n=this.m-1),new g(this.h,n)}for(var r=0;r<this.m;r++){var o=this.c._inner[r],s=this.j(r);if(t>=o&&t<=o+s)return new g(this.h,r)}return null},n.$t=i.markType(n,"SectionInfo"),n}(i.Base),Rr=function(t){function n(){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 i.List$1(ti.$,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=i.Rect.empty,e.am=new kr("SubContentLayer"),e.j=new kr("ContentLayer"),e.ag=new kr("RowSeparatorContentLayer"),e.ap=new kr("SuperContentLayer"),e.k=new kr("DecoratorLayer"),e.z=new kr("PinnedRowsLayer"),e.ab=new kr("PinnedRowsSubLayer"),e.ac=new kr("PinnedRowsSuperLayer"),e.ad=new kr("PinnedSectionLayer"),e.ai=new kr("RowSeparatorPinnedSectionLayer"),e.ae=new kr("PinnedSectionSubLayer"),e.af=new kr("PinnedSectionSuperLayer"),e.aj=new kr("RowSeparatorPinnedSectionSuperLayer"),e.al=new kr("SectionLayer"),e.ak=new kr("RowSeparatorSectionLayer"),e.ao=new kr("SubHeaderLayer"),e.y=new kr("HeaderLayer"),e.x=new kr("HeaderDecoratorLayer"),e.ar=new kr("SuperHeaderLayer"),e.as=new kr("VerticalSeparatorLayer"),e.an=new kr("SubHeaderDecoratorLayer"),e.aq=new kr("SuperHeaderDecoratorLayer"),e.l=new kr("FixedContentLayer"),e.n=new kr("FixedHeaderLayer"),e.p=new kr("FixedPinnedRowsLayer"),e.ah=new kr("RowSeparatorFixedPinnedRowsLayer"),e.q=new kr("FixedSeparatorLayer"),e.r=new kr("FixedSubContentLayer"),e.t=new kr("FixedSubHeaderLayer"),e.u=new kr("FixedSuperContentLayer"),e.w=new kr("FixedSuperHeaderLayer"),e.s=new kr("FixedSubHeaderDecoratorLayer"),e.w=new kr("FixedSuperHeaderLayer"),e.v=new kr("FixedSuperHeaderDecoratorLayer"),e.m=new kr("FixedHeaderDecoratorLayer"),e.o=new kr("FixedMergedCellsLayer"),e.aa=new kr("PinnedRowsMergedCellsLayer"),e.by=new i.FastIterationDictionary$2(S.$,i.List$1.$.specialize(Ei.$),0),e.dn(),e.ce=new i.List$1(Tr.$,0),e.b9=new i.List$1(Ir.$,0),e.b6=new i.Dictionary$2(i.Number_$type,i.Number_$type,0),e.cg=new i.List$1(i.Number_$type,0),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"actualVisibleRegion",{get:function(){return this._actualVisibleRegion},set:function(t){this._actualVisibleRegion=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"absoluteWidth",{get:function(){return this._absoluteWidth},set:function(t){this._absoluteWidth=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"absoluteHeight",{get:function(){return this._absoluteHeight},set:function(t){this._absoluteHeight=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cr",{get:function(){return i.truncate(this.actualVisibleRegion.top)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cm",{get:function(){return i.truncate(this.actualVisibleRegion.left)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cp",{get:function(){return i.truncate(this.actualVisibleRegion.right)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ch",{get:function(){return i.truncate(this.actualVisibleRegion.height)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cs",{get:function(){return i.truncate(this.actualVisibleRegion.width)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bm",{get:function(){return this.am},set:function(t){this.am=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a1",{get:function(){return this.r},set:function(t){this.r=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"at",{get:function(){return this.j},set:function(t){this.j=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bg",{get:function(){return this.ag},set:function(t){this.ag=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"av",{get:function(){return this.l},set:function(t){this.l=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bp",{get:function(){return this.ap},set:function(t){this.ap=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a4",{get:function(){return this.u},set:function(t){this.u=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ay",{get:function(){return this.o},set:function(t){this.o=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ba",{get:function(){return this.aa},set:function(t){this.aa=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a0",{get:function(){return this.q},set:function(t){this.q=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"au",{get:function(){return this.k},set:function(t){this.k=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bo",{get:function(){return this.ao},set:function(t){this.ao=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a3",{get:function(){return this.t},set:function(t){this.t=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a2",{get:function(){return this.s},set:function(t){this.s=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bn",{get:function(){return this.an},set:function(t){this.an=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a8",{get:function(){return this.y},set:function(t){this.y=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a7",{get:function(){return this.x},set:function(t){this.x=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aw",{get:function(){return this.m},set:function(t){this.m=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"br",{get:function(){return this.ar},set:function(t){this.ar=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a6",{get:function(){return this.w},set:function(t){this.w=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a5",{get:function(){return this.v},set:function(t){this.v=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bq",{get:function(){return this.aq},set:function(t){this.aq=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ax",{get:function(){return this.n},set:function(t){this.n=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a9",{get:function(){return this.z},set:function(t){this.z=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"az",{get:function(){return this.p},set:function(t){this.p=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bh",{get:function(){return this.ah},set:function(t){this.ah=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bb",{get:function(){return this.ab},set:function(t){this.ab=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bc",{get:function(){return this.ac},set:function(t){this.ac=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bd",{get:function(){return this.ad},set:function(t){this.ad=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bi",{get:function(){return this.ai},set:function(t){this.ai=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"be",{get:function(){return this.ae},set:function(t){this.ae=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bf",{get:function(){return this.af},set:function(t){this.af=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bj",{get:function(){return this.aj},set:function(t){this.aj=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bl",{get:function(){return this.al},set:function(t){this.al=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bk",{get:function(){return this.ak},set:function(t){this.ak=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bs",{get:function(){return this.as},set:function(t){this.as=t,this.dn()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bu",{get:function(){return this.bt},set:function(t){this.bt=t},enumerable:!1,configurable:!0}),n.prototype.f=function(t,e){t+=this.actualVisibleRegion.left,e+=this.actualVisibleRegion.top;for(var i=this.cc,n=i.count,r=n-1;r>=0&&i._inner[r]!=this.at;r--)for(var o=i._inner[r].q,s=i._inner[r].q.count,a=i._inner[r].p,l=0;l<s;l++)if(!a._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 h=this.d;if(t>=h.cu&&t<=h.cu+h.hd&&e>=h.cv&&e<=h.cv+h.fu)return this.d=h,h}for(var c=(n=(i=this.cc).count)-1;c>=0;c--)for(var p=i._inner[c].q,d=i._inner[c].q.count,f=i._inner[c].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(n.prototype,"bz",{get:function(){return this.by},set:function(t){this.by=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cf",{get:function(){for(;this.b8.count<this.b9.count;)this.b8.add(new ti);return this.b8},set:function(t){this.b8=t},enumerable:!1,configurable:!0}),n.prototype.b4=function(){return null!=this.bx&&null!=this.bw&&this.bx.x>=0&&this.bw.x>=0},n.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},n.prototype.dj=function(t){this.b9.add(t),this.b6.addItem(t.o,this.b9.count-1)},n.prototype.dn=function(){this.b7=new i.List$1(kr.$,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(n.prototype,"cc",{get:function(){return this.b7},enumerable:!1,configurable:!0}),n.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},n.prototype.dm=function(){this.g=null,this.di=-1,this.b9.clear(),this.b6.clear()},n.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()},n.prototype.c=function(){var t=new Ve;return t.ao=new i.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},n.prototype.a=function(t){var n,r,o=new Ge(t.v),s=t==this.a8;try{for(var a=e.__values(i.fromEnum(t.n)),l=a.next();!l.done;l=a.next()){var u=l.value.b(null);this.b1&&s&&(u.s+=this.cr),o.e(u)}}catch(t){n={error:t}}finally{try{l&&!l.done&&(r=a.return)&&r.call(a)}finally{if(n)throw n.error}}return o},n.prototype.i=function(t,e,i,n,r){var o=new Je;return o.i=i,o.j=i,o.f=n,o.n=e.o,o.d=r,this.cf._inner[t].add(o),o},n.prototype.dk=function(t){for(var e=this.cf,i=0;i<e.count;i++)for(var n=e._inner[i],r=n.count-1;r>=0;r--)n._inner[r].o==t.o&&n.removeAt(r)},n.prototype.cb=function(t){for(var e=new i.List$1(Je.$,0),n=this.cf,r=0;r<n.count;r++)for(var o=n._inner[r],s=o.count-1;s>=0;s--)o._inner[s].n==t.o&&e.add(o._inner[s]);return e},n.prototype.ca=function(t){for(var e=new i.List$1(Ei.$,0),n=0;n<this.cc.count;n++){new i.List$1(Ei.$,0);for(var r=this.cc._inner[n],o=0;o<r.o.count;o++)if(!r.p._inner[o]){var s=r.q._inner[o];s.l.a5==t.m&&s.l.b==t.c&&e.add(s)}}return e},n.prototype.e=function(t,e,i){void 0===i&&(i=1);for(var n=0;n<this.cc.count;n++)for(var r=this.cc._inner[n],o=0;o<r.o.count;o++)if(!r.p._inner[o]){var s=r.q._inner[o];if(s.l.a5==t&&s.l.x==e&&s.l.af==i)return s}return null},n.prototype.c5=function(){for(var t=0,e=0;e<this.ce.count;e++)t+=this.ce._inner[e].m;return t},n.$t=i.markType(n,"VisualModel"),n}(i.Base),Ar=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=i.delegateCombine(this.i.propertyChanged,i.runOn(this,this._implementation_propertyChanged)),this.i.cellReconciling=i.delegateCombine(this.i.cellReconciling,i.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=i.delegateRemove(this.i.propertyChanged,i.runOn(this,this._implementation_propertyChanged)),this.i.cellReconciling=i.delegateRemove(this.i.cellReconciling,i.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 a.Center:return"center";case a.Left:return"left";case a.Right:return"right";case a.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=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isSizeDirty",{get:function(){return this.i.bo},set:function(t){this.i.bo=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isContentDirty",{get:function(){return this.i.a3},set:function(t){this.i.a3=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isBorderDirty",{get:function(){return this.i.a1},set:function(t){this.i.a1=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isLayerDirty",{get:function(){return this.i.bh},set:function(t){this.i.bh=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isStateDirty",{get:function(){return this.i.bp},set:function(t){this.i.bp=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isDataDirty",{get:function(){return this.i.a5},set:function(t){this.i.a5=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isPlaceholdContentNeeded",{get:function(){return this.i.bi},set:function(t){this.i.bi=i.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=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isRowPinned",{get:function(){return this.i.bk},set:function(t){this.i.bk=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isRowSticky",{get:function(){return this.i.bl},set:function(t){this.i.bl=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isLastStickyRow",{get:function(){return this.i.bg},set:function(t){this.i.bg=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isFilterRow",{get:function(){return this.i.bb},set:function(t){this.i.bb=i.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=i.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=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"horizontalAlignment",{get:function(){return this.i.g},set:function(t){this.i.g=i.ensureEnum(l,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"verticalAlignment",{get:function(){return this.i.i},set:function(t){this.i.i=i.ensureEnum(h,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"background",{get:function(){return i.brushToString(this.i.lx)},set:function(t){this.i.lx=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"border",{get:function(){return i.brushToString(this.i.l0)},set:function(t){this.i.l0=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBackground",{get:function(){return i.brushToString(this.i.lu)},set:function(t){this.i.lu=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualBorder",{get:function(){return i.brushToString(this.i.lv)},set:function(t){this.i.lv=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"activationBorder",{get:function(){return i.brushToString(this.i.lt)},set:function(t){this.i.lt=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"errorBorder",{get:function(){return i.brushToString(this.i.l2)},set:function(t){this.i.l2=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"selectedBackground",{get:function(){return i.brushToString(this.i.l9)},set:function(t){this.i.l9=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverBackground",{get:function(){return i.brushToString(this.i.l5)},set:function(t){this.i.l5=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"hoverTextColor",{get:function(){return i.brushToString(this.i.l6)},set:function(t){this.i.l6=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sortIndicatorColor",{get:function(){return i.brushToString(this.i.ma)},set:function(t){this.i.ma=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stickyRowBackground",{get:function(){return i.brushToString(this.i.mb)},set:function(t){this.i.mb=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinnedRowBackground",{get:function(){return i.brushToString(this.i.l8)},set:function(t){this.i.l8=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastStickyRowBackground",{get:function(){return i.brushToString(this.i.l7)},set:function(t){this.i.l7=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"filterRowBackground",{get:function(){return i.brushToString(this.i.l3)},set:function(t){this.i.l3=i.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 i.brushToString(this.i.mc)},set:function(t){this.i.mc=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actualTextColor",{get:function(){return i.brushToString(this.i.lw)},set:function(t){this.i.lw=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"deletedTextColor",{get:function(){return i.brushToString(this.i.l1)},set:function(t){this.i.l1=i.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 i.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 i.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=i.ensureEnum(p,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=i.ensureEnum(x,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isExpanded",{get:function(){return this.i.ba},set:function(t){this.i.ba=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isCollapsable",{get:function(){return this.i.a2},set:function(t){this.i.a2=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"pinned",{get:function(){return this.i.y},set:function(t){this.i.y=i.ensureEnum(k,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 i.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=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isDeleted",{get:function(){return this.i.a6},set:function(t){this.i.a6=i.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=i.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}(),Er=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Bi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dateTimeValue",{get:function(){return this.i.mp},set:function(t){this.i.mp=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"formatStringOverride",{get:function(){return this.i.m6},set:function(t){this.i.m6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"formatOverride",{get:function(){return this.i.mz},set:function(t){this.i.mz=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dateTimeFormat",{get:function(){return this.i.ml},set:function(t){this.i.ml=i.ensureEnum(B,t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isOffsetValue",{get:function(){return this.i.mn},set:function(t){this.i.mn=i.ensureBool(t)},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(null!=this.formatSpecifiers&&i.arrayFindByName(this.formatSpecifiers,e)?i.arrayFindByName(this.formatSpecifiers,e):null)},n}(Ar),Br=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Fi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"imagePath",{get:function(){return this.i.mn},set:function(t){this.i.mn=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"imageStretchOption",{get:function(){return this.i.mi},set:function(t){this.i.mi=i.ensureEnum(q,t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"imageResourceType",{get:function(){return this.i.mg},set:function(t){this.i.mg=i.ensureEnum(H,t)},enumerable:!1,configurable:!0}),n}(Ar),Dr=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Gi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"numericValue",{get:function(){return this.i.mo},set:function(t){this.i.mo=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hasDecimalValue",{get:function(){return this.i.mk},set:function(t){this.i.mk=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"formatStringOverride",{get:function(){return this.i.ni},set:function(t){this.i.ni=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"formatOverride",{get:function(){return this.i.na},set:function(t){this.i.na=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"negativePrefix",{get:function(){return this.i.no},set:function(t){this.i.no=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"positivePrefix",{get:function(){return this.i.nt},set:function(t){this.i.nt=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"negativeSuffix",{get:function(){return this.i.nq},set:function(t){this.i.nq=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"positiveSuffix",{get:function(){return this.i.nv},set:function(t){this.i.nv=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maxFractionDigits",{get:function(){return this.i.mw},set:function(t){this.i.mw=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minFractionDigits",{get:function(){return this.i.my},set:function(t){this.i.my=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minIntegerDigits",{get:function(){return this.i.m0},set:function(t){this.i.m0=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"showGroupingSeparator",{get:function(){return this.i.mm},set:function(t){this.i.mm=i.ensureBool(t)},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(null!=this.formatSpecifiers&&i.arrayFindByName(this.formatSpecifiers,e)?i.arrayFindByName(this.formatSpecifiers,e):null)},n}(Ar),$r=function(t){function i(){return t.call(this)||this}return e.__extends(i,t),i.prototype.createImplementation=function(){return new Vi},Object.defineProperty(i.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),i}(Ar),Mr=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new qi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"resolvedText",{get:function(){return this.i.mv},set:function(t){this.i.mv=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"resolvedSummaryText",{get:function(){return this.i.mt},set:function(t){this.i.mt=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryDisplayMode",{get:function(){return this.i.mk},set:function(t){this.i.mk=i.ensureEnum(A,t)},enumerable:!1,configurable:!0}),n}(Ar),zr=function(t){function i(){return t.call(this)||this}return e.__extends(i,t),i.prototype.createImplementation=function(){return new Li},Object.defineProperty(i.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(i.prototype,"value",{get:function(){return this.i.mh},set:function(t){this.i.mh=t},enumerable:!1,configurable:!0}),i}(Ar),Nr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.ae=null,e}return e.__extends(n,t),n.prototype.get_ac=function(){return"TemplateHeaderCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e)},n.$t=i.markType(n,"TemplateHeaderCellModelExport",T.$),n}(T),Fr=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.mj=!1,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"mk",{get:function(){return this.mj},set:function(t){var e=this.mj;this.mj=t,this.mj!=e&&this.k0("IsFilterUIVisible",n.ml,e,this.mj)},enumerable:!1,configurable:!0}),n.prototype.k9=function(e,i){t.prototype.k9.call(this,e,i),"IsFilterUIVisible"==e&&(this.mk=i)},n.prototype.kl=function(e){switch(e){case"IsFilterUIVisible":return i.Boolean_$type}return t.prototype.kl.call(this,e)},n.prototype.hl=function(e){return"IsFilterUIVisible"==e?this.mk:t.prototype.hl.call(this,e)},n.prototype.b=function(e){null==e&&(e=new Nr);var i=e=t.prototype.b.call(this,e);return i.ae=this.mh,i},n.$t=i.markType(n,"TemplateHeaderCellModel",Li.$),n.ml=Ei.ft("IsFilterUIVisible"),n}(Li),Gr=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Fr},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isFilterUIVisible",{get:function(){return this.i.mk},set:function(t){this.i.mk=i.ensureBool(t)},enumerable:!1,configurable:!0}),n}(zr),Vr=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"TemplateSectionHeaderCellModel",qi.$),n}(qi),qr=function(t){function i(){return t.call(this)||this}return e.__extends(i,t),i.prototype.createImplementation=function(){return new Vr},Object.defineProperty(i.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),i}(Mr),Lr=function(t){function i(){return t.call(this)||this}return e.__extends(i,t),i.prototype.createImplementation=function(){return new Hi},Object.defineProperty(i.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(i.prototype,"textValue",{get:function(){return this.i.mh},set:function(t){this.i.mh=t},enumerable:!1,configurable:!0}),i}(Ar),Hr=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Wi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isColumnOptionsEnabled",{get:function(){return this.i.mq},set:function(t){this.i.mq=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortIndicatorStyle",{get:function(){return this.i.mo},set:function(t){this.i.mo=i.ensureEnum(s,t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconAlignment",{get:function(){return this.i.mk},set:function(t){this.i.mk=i.ensureEnum(et,t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconColor",{get:function(){return i.brushToString(this.i.m2)},set:function(t){this.i.m2=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconBehavior",{get:function(){return this.i.mm},set:function(t){this.i.mm=i.ensureEnum(nt,t)},enumerable:!1,configurable:!0}),n}(Lr),Wr=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new Dn},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 Er;break;case"ImageCellModel":t=new Br;break;case"NumericCellModel":t=new Dr;break;case"RowSeparatorModel":t=new $r;break;case"SectionHeaderCellModel":t=new Mr;break;case"TemplateCellModel":t=new zr;break;case"TemplateHeaderCellModel":t=new Gr;break;case"TemplateSectionHeaderCellModel":t=new qr;break;case"TextCellModel":t=new Lr;break;case"TextHeaderCellModel":t=new Hr}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}(),Ur=function(){function t(){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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Kr=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new oi},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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Xr=function(t){function n(){var e=t.call(this)||this;return e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._filterStringErrorsParsing=null,e._filterStringErrorsParsing_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new si},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridConditionalStylePropertyComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridConditionalStylePropertyComponent=t}return n._observedAttributesIgcGridConditionalStylePropertyComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"stylingType",{get:function(){return this.i.aj},set:function(t){this.i.aj=i.ensureEnum(ii,t),this._a("stylingType",i.enumToString(ii,this.i.aj))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minimumType",{get:function(){return this.i.ah},set:function(t){this.i.ah=i.ensureEnum(ri,t),this._a("minimumType",i.enumToString(ri,this.i.ah))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maximumType",{get:function(){return this.i.ag},set:function(t){this.i.ag=i.ensureEnum(ri,t),this._a("maximumType",i.enumToString(ri,this.i.ag))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"propertyName",{get:function(){return this.i.b9},set:function(t){this.i.b9=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"inputValueExpression",{get:function(){return this.i.w},set:function(t){this.i.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"inputValueExpressionString",{get:function(){return this.i.bo},set:function(t){this.i.bo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualInputValueExpression",{get:function(){return this.i.s},set:function(t){this.i.s=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minimumInputValueExpression",{get:function(){return this.i.y},set:function(t){this.i.y=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minimumInputValueExpressionString",{get:function(){return this.i.b5},set:function(t){this.i.b5=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualMinimumInputValueExpression",{get:function(){return this.i.u},set:function(t){this.i.u=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maximumInputValueExpression",{get:function(){return this.i.x},set:function(t){this.i.x=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maximumInputValueExpressionString",{get:function(){return this.i.bz},set:function(t){this.i.bz=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualMaximumInputValueExpression",{get:function(){return this.i.t},set:function(t){this.i.t=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sumInputValueExpression",{get:function(){return this.i.ad},set:function(t){this.i.ad=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sumInputValueExpressionString",{get:function(){return this.i.ce},set:function(t){this.i.ce=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSumInputValueExpression",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"value",{get:function(){return this.i.bc},set:function(t){this.i.bc=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"shouldSetValue",{get:function(){return this.i.as},set:function(t){this.i.as=i.ensureBool(t),this._a("shouldSetValue",this.i.as)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minimumColor",{get:function(){return i.brushToString(this.i.co)},set:function(t){this.i.co=i.stringToBrush(t),this._a("minimumColor",i.brushToString(this.i.co))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maximumColor",{get:function(){return i.brushToString(this.i.cn)},set:function(t){this.i.cn=i.stringToBrush(t),this._a("maximumColor",i.brushToString(this.i.cn))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minimumInputValue",{get:function(){return this.i.ba},set:function(t){this.i.ba=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maximumInputValue",{get:function(){return this.i.a9},set:function(t){this.i.a9=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sumInputValue",{get:function(){return this.i.bb},set:function(t){this.i.bb=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"colorCollection",{get:function(){return i.fromBrushCollection(this.i.f)},set:function(t){this.i.f=i.toBrushCollection(t),this._a("colorCollection",i.brushCollectionToString(this.i.f))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"requiresGlobalValues",{get:function(){return this.i.ar},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"needsGlobalMinimum",{get:function(){return this.i.ap},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"needsGlobalMaximum",{get:function(){return this.i.ao},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"needsGlobalSum",{get:function(){return this.i.aq},enumerable:!1,configurable:!0}),n.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("GridConditionalStylePropertyComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},Object.defineProperty(n.prototype,"filterStringErrorsParsing",{get:function(){return this._filterStringErrorsParsing},set:function(t){var e=this;null!==this._filterStringErrorsParsing_wrapped&&(this.i.filterStringErrorsParsing=i.delegateRemove(this.i.filterStringErrorsParsing,this._filterStringErrorsParsing_wrapped),this._filterStringErrorsParsing_wrapped=null,this._filterStringErrorsParsing=null),this._filterStringErrorsParsing=t,this._filterStringErrorsParsing_wrapped=function(t,i){var n=new Kr;n._provideImplementation(i),e.beforeFilterStringErrorsParsing&&e.beforeFilterStringErrorsParsing(e,n),e._filterStringErrorsParsing&&e._filterStringErrorsParsing(e,n)},this.i.filterStringErrorsParsing=i.delegateCombine(this.i.filterStringErrorsParsing,this._filterStringErrorsParsing_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridConditionalStylePropertyComponent=null,n.htmlTagName="igc-grid-conditional-style-property",n._isElementRegistered=!1,n}(i.IgcHTMLElement),Qr=function(t){function n(e){var n=t.call(this)||this;if(Xr.$type||(Xr.$type=i.markType(Xr,"IgcGridConditionalStylePropertyComponent")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Xr.$type||(Xr.$type=i.markType(Xr,"IgcGridConditionalStylePropertyComponent"));var t=new i.SyncableObservableCollection$2(Xr.$type,si.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Xr)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Yr=function(t){function n(){var e=t.call(this)||this;return e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e._properties=null,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._propertyUpdated=null,e._propertyUpdated_wrapped=null,e._filterStringErrorsParsing=null,e._filterStringErrorsParsing_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new fn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._initializeAdapters=function(){var n=this;this.__observingChildren||(this.__observingChildren=!0,new MutationObserver((function(t){var i,r;try{for(var o=e.__values(t),s=o.next();!s.done;s=o.next()){"childList"==s.value.type&&(n.updateContentChildren?n.updateContentChildren():n._initializeAdapters&&n.initializeAdapters())}}catch(t){i={error:t}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}})).observe(this,{childList:!0}));this._propertiesAdapter=new i.CollectionAdapter(this.contentProperties,this.i.properties,this.actualProperties,(function(t){return t.i}),(function(t){n._initializeElement&&n._initializeElement(t)}),(function(t){n._destroyElement&&n._destroyElement(t)})),t.prototype._initializeAdapters&&t.prototype._initializeAdapters.call(this)},n.prototype._updateAdapters=function(){t.prototype._updateAdapters&&t.prototype._updateAdapters.call(this),this.contentProperties.length=0;for(var e=0;e<this.children.length;e++)this.children[e]instanceof Xr&&this.contentProperties.push(this.children[e]);null!=this._propertiesAdapter&&this._propertiesAdapter.notifyContentChanged()},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridConditionalStyleComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridConditionalStyleComponent=t}return n._observedAttributesIgcGridConditionalStyleComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"isCompound",{get:function(){return this.i.s},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"styleKey",{get:function(){return this.i.ak},set:function(t){this.i.ak=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isTransitionInEnabled",{get:function(){return this.i.w},set:function(t){this.i.w=i.ensureBool(t),this._a("isTransitionInEnabled",this.i.w)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualProperties",{get:function(){return this._actualProperties||(this._actualProperties=[]),this._actualProperties},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"contentProperties",{get:function(){return this._contentProperties||(this._contentProperties=[]),this._contentProperties},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"properties",{get:function(){var t=this;if(null===this._properties){var e=new Qr,n=e._innerColl;this._properties=e,n.addListener((function(e,n){switch(n.action){case i.NotifyCollectionChangedAction.Add:t._propertiesAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Remove:t._propertiesAdapter.removeManualItemAt(n.oldStartingIndex);break;case i.NotifyCollectionChangedAction.Replace:t._propertiesAdapter.removeManualItemAt(n.oldStartingIndex),t._propertiesAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Reset:t._propertiesAdapter.clearManualItems()}}))}return this._properties},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"conditionString",{get:function(){return this.i.ae},set:function(t){this.i.ae=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"condition",{get:function(){return this.i.e},set:function(t){this.i.e=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isFieldMinimumNeeded",{get:function(){return this.i.u},set:function(t){this.i.u=i.ensureBool(t),this._a("isFieldMinimumNeeded",this.i.u)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isFieldMaximumNeeded",{get:function(){return this.i.t},set:function(t){this.i.t=i.ensureBool(t),this._a("isFieldMaximumNeeded",this.i.t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isFieldSumNeeded",{get:function(){return this.i.v},set:function(t){this.i.v=i.ensureBool(t),this._a("isFieldSumNeeded",this.i.v)},enumerable:!1,configurable:!0}),n.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(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("GridConditionalStyleComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.requiresGlobalValues=function(){return this.i.x()},n.prototype.actualNeedsFieldMinimum=function(){return this.i.q()},n.prototype.actualNeedsFieldMaximum=function(){return this.i.p()},n.prototype.actualNeedsFieldSum=function(){return this.i.r()},Object.defineProperty(n.prototype,"propertyUpdated",{get:function(){return this._propertyUpdated},set:function(t){var e=this;null!==this._propertyUpdated_wrapped&&(this.i.propertyUpdated=i.delegateRemove(this.i.propertyUpdated,this._propertyUpdated_wrapped),this._propertyUpdated_wrapped=null,this._propertyUpdated=null),this._propertyUpdated=t,this._propertyUpdated_wrapped=function(t,n){var r=new i.IgcPropertyUpdatedEventArgs;r._provideImplementation(n),e.beforePropertyUpdated&&e.beforePropertyUpdated(e,r),e._propertyUpdated&&e._propertyUpdated(e,r)},this.i.propertyUpdated=i.delegateCombine(this.i.propertyUpdated,this._propertyUpdated_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterStringErrorsParsing",{get:function(){return this._filterStringErrorsParsing},set:function(t){var e=this;null!==this._filterStringErrorsParsing_wrapped&&(this.i.filterStringErrorsParsing=i.delegateRemove(this.i.filterStringErrorsParsing,this._filterStringErrorsParsing_wrapped),this._filterStringErrorsParsing_wrapped=null,this._filterStringErrorsParsing=null),this._filterStringErrorsParsing=t,this._filterStringErrorsParsing_wrapped=function(t,i){var n=new Kr;n._provideImplementation(i),e.beforeFilterStringErrorsParsing&&e.beforeFilterStringErrorsParsing(e,n),e._filterStringErrorsParsing&&e._filterStringErrorsParsing(e,n)},this.i.filterStringErrorsParsing=i.delegateCombine(this.i.filterStringErrorsParsing,this._filterStringErrorsParsing_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridConditionalStyleComponent=null,n.htmlTagName="igc-grid-conditional-style",n._isElementRegistered=!1,n}(i.IgcHTMLElement),Zr=function(t){function n(e){var n=t.call(this)||this;if(Yr.$type||(Yr.$type=i.markType(Yr,"IgcGridConditionalStyleComponent")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Yr.$type||(Yr.$type=i.markType(Yr,"IgcGridConditionalStyleComponent"));var t=new i.SyncableObservableCollection$2(Yr.$type,fn.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Yr)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Jr=function(t){function n(){var e=t.call(this)||this;return e._renderer=null,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e._conditionalStyles=null,e._dataBinding=null,e._dataBinding_wrapped=null,e._dataBound=null,e._dataBound_wrapped=null,e._cellStyleKeyRequested=null,e._cellStyleKeyRequested_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return null},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._initializeAdapters=function(){var n=this;this.__observingChildren||(this.__observingChildren=!0,new MutationObserver((function(t){var i,r;try{for(var o=e.__values(t),s=o.next();!s.done;s=o.next()){"childList"==s.value.type&&(n.updateContentChildren?n.updateContentChildren():n._initializeAdapters&&n.initializeAdapters())}}catch(t){i={error:t}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}})).observe(this,{childList:!0}));this._conditionalStylesAdapter=new i.CollectionAdapter(this.contentConditionalStyles,this.i.conditionalStyles,this.actualConditionalStyles,(function(t){return t.i}),(function(t){n._initializeElement&&n._initializeElement(t)}),(function(t){n._destroyElement&&n._destroyElement(t)})),t.prototype._initializeAdapters&&t.prototype._initializeAdapters.call(this)},n.prototype._updateAdapters=function(){t.prototype._updateAdapters&&t.prototype._updateAdapters.call(this),this.contentConditionalStyles.length=0;for(var e=0;e<this.children.length;e++)this.children[e]instanceof Yr&&this.contentConditionalStyles.push(this.children[e]);null!=this._conditionalStylesAdapter&&this._conditionalStylesAdapter.notifyContentChanged()},n.prototype._provideRenderer=function(t){this._renderer=t},Object.defineProperty(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){if(this._stylingContainer=t,this._stylingParent=e,!this._inStyling){this._inStyling=!0;var r,o=e._grid;o&&(r=o.columnPropertyUpdatingAnimationMode,o.columnPropertyUpdatingAnimationMode=zt.None);var s="",a=this.i.$type.name,l=a.toLowerCase();s=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=[],h=i.toSpinal(a);if(u.push(h+"-"),n){var c=n.i.$type.name;"Grid"==c&&(c="DataGrid");var p=i.toSpinal(c);u.push(p+"-"+s+"-"),u.push(p+"-"+h+"-")}i.initializePropertiesFromCss(t,this,s+"-",this.hasUserValues,!1,u),o&&(o.columnPropertyUpdatingAnimationMode=r),this._inStyling=!1}},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDefinitionBaseComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDefinitionBaseComponent=t}return n._observedAttributesIgcDefinitionBaseComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},Object.defineProperty(n.prototype,"background",{get:function(){return i.brushToString(this.i.ge)},set:function(t){this.i.ge=i.stringToBrush(t),this._a("background",i.brushToString(this.i.ge))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualConditionalStyles",{get:function(){return this._actualConditionalStyles||(this._actualConditionalStyles=[]),this._actualConditionalStyles},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"contentConditionalStyles",{get:function(){return this._contentConditionalStyles||(this._contentConditionalStyles=[]),this._contentConditionalStyles},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"conditionalStyles",{get:function(){var t=this;if(null===this._conditionalStyles){var e=new Zr,n=e._innerColl;this._conditionalStyles=e,n.addListener((function(e,n){switch(n.action){case i.NotifyCollectionChangedAction.Add:t._conditionalStylesAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Remove:t._conditionalStylesAdapter.removeManualItemAt(n.oldStartingIndex);break;case i.NotifyCollectionChangedAction.Replace:t._conditionalStylesAdapter.removeManualItemAt(n.oldStartingIndex),t._conditionalStylesAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Reset:t._conditionalStylesAdapter.clearManualItems()}}))}return this._conditionalStyles},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"border",{get:function(){return i.brushToString(this.i.gh)},set:function(t){this.i.gh=i.stringToBrush(t),this._a("border",i.brushToString(this.i.gh))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activationBorder",{get:function(){return i.brushToString(this.i.f3)},set:function(t){this.i.f3=i.stringToBrush(t),this._a("activationBorder",i.brushToString(this.i.f3))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"errorBorder",{get:function(){return i.brushToString(this.i.gi)},set:function(t){this.i.gi=i.stringToBrush(t),this._a("errorBorder",i.brushToString(this.i.gi))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBorder",{get:function(){return i.brushToString(this.i.f8)},set:function(t){this.i.f8=i.stringToBrush(t),this._a("actualBorder",i.brushToString(this.i.f8))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderLeftWidth",{get:function(){return this.i.cc},set:function(t){this.i.cc=+t,this._a("borderLeftWidth",this.i.cc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderTopWidth",{get:function(){return this.i.ce},set:function(t){this.i.ce=+t,this._a("borderTopWidth",this.i.ce)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderRightWidth",{get:function(){return this.i.cd},set:function(t){this.i.cd=+t,this._a("borderRightWidth",this.i.cd)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderBottomWidth",{get:function(){return this.i.cb},set:function(t){this.i.cb=+t,this._a("borderBottomWidth",this.i.cb)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activationBorderLeftWidth",{get:function(){return this.i.b4},set:function(t){this.i.b4=+t,this._a("activationBorderLeftWidth",this.i.b4)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activationBorderTopWidth",{get:function(){return this.i.b6},set:function(t){this.i.b6=+t,this._a("activationBorderTopWidth",this.i.b6)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activationBorderRightWidth",{get:function(){return this.i.b5},set:function(t){this.i.b5=+t,this._a("activationBorderRightWidth",this.i.b5)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activationBorderBottomWidth",{get:function(){return this.i.b3},set:function(t){this.i.b3=+t,this._a("activationBorderBottomWidth",this.i.b3)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"errorBorderLeftWidth",{get:function(){return this.i.cg},set:function(t){this.i.cg=+t,this._a("errorBorderLeftWidth",this.i.cg)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"errorBorderTopWidth",{get:function(){return this.i.ci},set:function(t){this.i.ci=+t,this._a("errorBorderTopWidth",this.i.ci)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"errorBorderRightWidth",{get:function(){return this.i.ch},set:function(t){this.i.ch=+t,this._a("errorBorderRightWidth",this.i.ch)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"errorBorderBottomWidth",{get:function(){return this.i.cf},set:function(t){this.i.cf=+t,this._a("errorBorderBottomWidth",this.i.cf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBackground",{get:function(){return i.brushToString(this.i.f5)},set:function(t){this.i.f5=i.stringToBrush(t),this._a("actualBackground",i.brushToString(this.i.f5))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualActivationBorder",{get:function(){return i.brushToString(this.i.f4)},set:function(t){this.i.f4=i.stringToBrush(t),this._a("actualActivationBorder",i.brushToString(this.i.f4))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualErrorBorder",{get:function(){return i.brushToString(this.i.f9)},set:function(t){this.i.f9=i.stringToBrush(t),this._a("actualErrorBorder",i.brushToString(this.i.f9))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"stickyRowBackground",{get:function(){return i.brushToString(this.i.gw)},set:function(t){this.i.gw=i.stringToBrush(t),this._a("stickyRowBackground",i.brushToString(this.i.gw))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualStickyRowBackground",{get:function(){return i.brushToString(this.i.gc)},set:function(t){this.i.gc=i.stringToBrush(t),this._a("actualStickyRowBackground",i.brushToString(this.i.gc))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedRowBackground",{get:function(){return i.brushToString(this.i.gv)},set:function(t){this.i.gv=i.stringToBrush(t),this._a("pinnedRowBackground",i.brushToString(this.i.gv))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualPinnedRowBackground",{get:function(){return i.brushToString(this.i.gb)},set:function(t){this.i.gb=i.stringToBrush(t),this._a("actualPinnedRowBackground",i.brushToString(this.i.gb))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lastStickyRowBackground",{get:function(){return i.brushToString(this.i.gu)},set:function(t){this.i.gu=i.stringToBrush(t),this._a("lastStickyRowBackground",i.brushToString(this.i.gu))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualLastStickyRowBackground",{get:function(){return i.brushToString(this.i.ga)},set:function(t){this.i.ga=i.stringToBrush(t),this._a("actualLastStickyRowBackground",i.brushToString(this.i.ga))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"contentOpacity",{get:function(){return this.i.bh},set:function(t){this.i.bh=+t,this._a("contentOpacity",this.i.bh)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"horizontalAlignment",{get:function(){return this.i.g},set:function(t){this.i.g=i.ensureEnum(l,t),this._a("horizontalAlignment",i.enumToString(l,this.i.g))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"verticalAlignment",{get:function(){return this.i.l},set:function(t){this.i.l=i.ensureEnum(h,t),this._a("verticalAlignment",i.enumToString(h,this.i.l))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lineBreakMode",{get:function(){return this.i.ac},set:function(t){this.i.ac=i.ensureEnum(p,t),this._a("lineBreakMode",i.enumToString(p,this.i.ac))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualLineBreakMode",{get:function(){return this.i.ab},set:function(t){this.i.ab=i.ensureEnum(p,t),this._a("actualLineBreakMode",i.enumToString(p,this.i.ab))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textColor",{get:function(){return i.brushToString(this.i.gx)},set:function(t){this.i.gx=i.stringToBrush(t),this._a("textColor",i.brushToString(this.i.gx))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualTextColor",{get:function(){return i.brushToString(this.i.gd)},set:function(t){this.i.gd=i.stringToBrush(t),this._a("actualTextColor",i.brushToString(this.i.gd))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isBarSupported",{get:function(){return this.i.ar},set:function(t){this.i.ar=i.ensureBool(t),this._a("isBarSupported",this.i.ar)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"barBackground",{get:function(){return i.brushToString(this.i.gf)},set:function(t){this.i.gf=i.stringToBrush(t),this._a("barBackground",i.brushToString(this.i.gf))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBarBackground",{get:function(){return i.brushToString(this.i.f6)},set:function(t){this.i.f6=i.stringToBrush(t),this._a("actualBarBackground",i.brushToString(this.i.f6))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"barOutline",{get:function(){return i.brushToString(this.i.gg)},set:function(t){this.i.gg=i.stringToBrush(t),this._a("barOutline",i.brushToString(this.i.gg))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBarOutline",{get:function(){return i.brushToString(this.i.f7)},set:function(t){this.i.f7=i.stringToBrush(t),this._a("actualBarOutline",i.brushToString(this.i.f7))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"barStrokeThickness",{get:function(){return this.i.ca},set:function(t){this.i.ca=+t,this._a("barStrokeThickness",this.i.ca)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBarStrokeThickness",{get:function(){return this.i.b8},set:function(t){this.i.b8=+t,this._a("actualBarStrokeThickness",this.i.b8)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"barCornerRadius",{get:function(){return this.i.b9},set:function(t){this.i.b9=+t,this._a("barCornerRadius",this.i.b9)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBarCornerRadius",{get:function(){return this.i.b7},set:function(t){this.i.b7=+t,this._a("actualBarCornerRadius",this.i.b7)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedRowOpacity",{get:function(){return this.i.bm},set:function(t){this.i.bm=+t,this._a("pinnedRowOpacity",this.i.bm)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualPinnedRowOpacity",{get:function(){return this.i.bf},set:function(t){this.i.bf=+t,this._a("actualPinnedRowOpacity",this.i.bf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textStyle",{get:function(){return null==this.i.textStyle?null:this.i.textStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.textStyle=e,this._a("textStyle",null!=this.i.textStyle?this.i.textStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isBarRequired",{get:function(){return this.i.aq},enumerable:!1,configurable:!0}),n.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},n.prototype.transitionStyleOut=function(t){this.i.e3(null==t?null:t.i)},n.prototype.transitionStyleIn=function(t){this.i.e2(null==t?null:t.i)},n.prototype.isStyleTransitioningOut=function(t){return this.i.as(null==t?null:t.i)},n.prototype.setNamedValue=function(t,e,i){this.i.e1(t,null==e?null:e,i)},n.prototype.hasNamedValues=function(){return this.i.ap()},n.prototype.hasNamedValue=function(t){return this.i.ao(t)},n.prototype.removeNamedValue=function(t){this.i.ew(t)},n.prototype.getNamedValue=function(t){return this.i.co(t)},Object.defineProperty(n.prototype,"dataBinding",{get:function(){return this._dataBinding},set:function(t){var e=this;null!==this._dataBinding_wrapped&&(this.i.dataBinding=i.delegateRemove(this.i.dataBinding,this._dataBinding_wrapped),this._dataBinding_wrapped=null,this._dataBinding=null),this._dataBinding=t,this._dataBinding_wrapped=function(t,i){var n=new Wr;n._provideImplementation(i),e.beforeDataBinding&&e.beforeDataBinding(e,n),e._dataBinding&&e._dataBinding(e,n)},this.i.dataBinding=i.delegateCombine(this.i.dataBinding,this._dataBinding_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dataBound",{get:function(){return this._dataBound},set:function(t){var e=this;null!==this._dataBound_wrapped&&(this.i.dataBound=i.delegateRemove(this.i.dataBound,this._dataBound_wrapped),this._dataBound_wrapped=null,this._dataBound=null),this._dataBound=t,this._dataBound_wrapped=function(t,i){var n=new Wr;n._provideImplementation(i),e.beforeDataBound&&e.beforeDataBound(e,n),e._dataBound&&e._dataBound(e,n)},this.i.dataBound=i.delegateCombine(this.i.dataBound,this._dataBound_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellStyleKeyRequested",{get:function(){return this._cellStyleKeyRequested},set:function(t){var e=this;null!==this._cellStyleKeyRequested_wrapped&&(this.i.cellStyleKeyRequested=i.delegateRemove(this.i.cellStyleKeyRequested,this._cellStyleKeyRequested_wrapped),this._cellStyleKeyRequested_wrapped=null,this._cellStyleKeyRequested=null),this._cellStyleKeyRequested=t,this._cellStyleKeyRequested_wrapped=function(t,i){var n=new Ur;n._provideImplementation(i),e.beforeCellStyleKeyRequested&&e.beforeCellStyleKeyRequested(e,n),e._cellStyleKeyRequested&&e._cellStyleKeyRequested(e,n)},this.i.cellStyleKeyRequested=i.delegateCombine(this.i.cellStyleKeyRequested,this._cellStyleKeyRequested_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcDefinitionBaseComponent=null,n}(i.IgcHTMLElement),to=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcHeaderComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcHeaderComponent=t}return n._observedAttributesIgcHeaderComponent},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortIndicatorColor",{get:function(){return i.brushToString(this.i.ho)},set:function(t){this.i.ho=i.stringToBrush(t),this._a("sortIndicatorColor",i.brushToString(this.i.ho))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSortIndicatorColor",{get:function(){return i.brushToString(this.i.hm)},set:function(t){this.i.hm=i.stringToBrush(t),this._a("actualSortIndicatorColor",i.brushToString(this.i.hm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortIndicatorStyle",{get:function(){return this.i.g1},set:function(t){this.i.g1=i.ensureEnum(s,t),this._a("sortIndicatorStyle",i.enumToString(s,this.i.g1))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSortIndicatorStyle",{get:function(){return this.i.g0},set:function(t){this.i.g0=i.ensureEnum(s,t),this._a("actualSortIndicatorStyle",i.enumToString(s,this.i.g0))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingLeft",{get:function(){return this.i.g7},set:function(t){this.i.g7=+t,this._a("paddingLeft",this.i.g7)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingTop",{get:function(){return this.i.g9},set:function(t){this.i.g9=+t,this._a("paddingTop",this.i.g9)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingRight",{get:function(){return this.i.g8},set:function(t){this.i.g8=+t,this._a("paddingRight",this.i.g8)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingBottom",{get:function(){return this.i.g6},set:function(t){this.i.g6=+t,this._a("paddingBottom",this.i.g6)},enumerable:!1,configurable:!0}),n._observedAttributesIgcHeaderComponent=null,n}(Jr),eo=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new or},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcTextHeaderComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcTextHeaderComponent=t}return n._observedAttributesIgcTextHeaderComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcTextHeaderComponent=null,n.htmlTagName="igc-text-header",n._isElementRegistered=!1,n}(to),io=function(){function t(){}return t.register=function(){eo.register(),i.TypeRegistrar.registerCons("IgcTextHeaderComponent",eo),i.TypeRegistrar.register("TextHeader",or.$type)},t}(),no=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Qn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcSectionHeaderComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcSectionHeaderComponent=t}return n._observedAttributesIgcSectionHeaderComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"selectedBackground",{get:function(){return i.brushToString(this.i.hs)},set:function(t){this.i.hs=i.stringToBrush(t),this._a("selectedBackground",i.brushToString(this.i.hs))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSelectedBackground",{get:function(){return i.brushToString(this.i.hr)},set:function(t){this.i.hr=i.stringToBrush(t),this._a("actualSelectedBackground",i.brushToString(this.i.hr))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingLeft",{get:function(){return this.i.ha},set:function(t){this.i.ha=+t,this._a("paddingLeft",this.i.ha)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingTop",{get:function(){return this.i.hc},set:function(t){this.i.hc=+t,this._a("paddingTop",this.i.hc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingRight",{get:function(){return this.i.hb},set:function(t){this.i.hb=+t,this._a("paddingRight",this.i.hb)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingBottom",{get:function(){return this.i.g9},set:function(t){this.i.g9=+t,this._a("paddingBottom",this.i.g9)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isCollapsable",{get:function(){return this.i.g3},set:function(t){this.i.g3=i.ensureBool(t),this._a("isCollapsable",this.i.g3)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryDisplayMode",{get:function(){return this.i.g0},set:function(t){this.i.g0=i.ensureEnum(A,t),this._a("summaryDisplayMode",i.enumToString(A,this.i.g0))},enumerable:!1,configurable:!0}),n._observedAttributesIgcSectionHeaderComponent=null,n.htmlTagName="igc-section-header",n._isElementRegistered=!1,n}(Jr),ro=function(){function t(){}return t.register=function(){no.register(),i.TypeRegistrar.registerCons("IgcSectionHeaderComponent",no),i.TypeRegistrar.register("SectionHeader",Qn.$type)},t}(),oo=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Yn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcRowSeparatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcRowSeparatorComponent=t}return n._observedAttributesIgcRowSeparatorComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcRowSeparatorComponent=null,n.htmlTagName="igc-row-separator",n._isElementRegistered=!1,n}(Jr),so=function(){function t(){}return t.register=function(){oo.register(),i.TypeRegistrar.registerCons("IgcRowSeparatorComponent",oo),i.TypeRegistrar.register("RowSeparator",Yn.$type)},t}(),ao=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new qn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcHeaderSeparatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcHeaderSeparatorComponent=t}return n._observedAttributesIgcHeaderSeparatorComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcHeaderSeparatorComponent=null,n.htmlTagName="igc-header-separator",n._isElementRegistered=!1,n}(Jr),lo=function(){function t(){}return t.register=function(){ao.register(),i.TypeRegistrar.registerCons("IgcHeaderSeparatorComponent",ao),i.TypeRegistrar.register("HeaderSeparator",qn.$type)},t}(),uo=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Vn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcColumnResizingSeparatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcColumnResizingSeparatorComponent=t}return n._observedAttributesIgcColumnResizingSeparatorComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"actualOpacity",{get:function(){return this.i.g0},set:function(t){this.i.g0=+t,this._a("actualOpacity",this.i.g0)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"opacity",{get:function(){return this.i.g1},set:function(t){this.i.g1=+t,this._a("opacity",this.i.g1)},enumerable:!1,configurable:!0}),n._observedAttributesIgcColumnResizingSeparatorComponent=null,n.htmlTagName="igc-column-resizing-separator",n._isElementRegistered=!1,n}(Jr),ho=function(){function t(){}return t.register=function(){uo.register(),i.TypeRegistrar.registerCons("IgcColumnResizingSeparatorComponent",uo),i.TypeRegistrar.register("ColumnResizingSeparator",Vn.$type)},t}(),co=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Rn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcColumnMovingSeparatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcColumnMovingSeparatorComponent=t}return n._observedAttributesIgcColumnMovingSeparatorComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"separatorWidth",{get:function(){return this.i.g3},set:function(t){this.i.g3=+t,this._a("separatorWidth",this.i.g3)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualOpacity",{get:function(){return this.i.g0},set:function(t){this.i.g0=+t,this._a("actualOpacity",this.i.g0)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"opacity",{get:function(){return this.i.g1},set:function(t){this.i.g1=+t,this._a("opacity",this.i.g1)},enumerable:!1,configurable:!0}),n._observedAttributesIgcColumnMovingSeparatorComponent=null,n.htmlTagName="igc-column-moving-separator",n._isElementRegistered=!1,n}(Jr),po=function(){function t(){}return t.register=function(){co.register(),i.TypeRegistrar.registerCons("IgcColumnMovingSeparatorComponent",co),i.TypeRegistrar.register("ColumnMovingSeparator",Rn.$type)},t}(),fo=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcSummaryRowComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcSummaryRowComponent=t}return n._observedAttributesIgcSummaryRowComponent},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedBackground",{get:function(){return i.brushToString(this.i.hv)},set:function(t){this.i.hv=i.stringToBrush(t),this._a("selectedBackground",i.brushToString(this.i.hv))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSelectedBackground",{get:function(){return i.brushToString(this.i.hs)},set:function(t){this.i.hs=i.stringToBrush(t),this._a("actualSelectedBackground",i.brushToString(this.i.hs))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryLabelTextColor",{get:function(){return i.brushToString(this.i.hw)},set:function(t){this.i.hw=i.stringToBrush(t),this._a("summaryLabelTextColor",i.brushToString(this.i.hw))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSummaryLabelTextColor",{get:function(){return i.brushToString(this.i.ht)},set:function(t){this.i.ht=i.stringToBrush(t),this._a("actualSummaryLabelTextColor",i.brushToString(this.i.ht))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryNameTextStyle",{get:function(){return null==this.i.summaryNameTextStyle?null:this.i.summaryNameTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.summaryNameTextStyle=e,this._a("summaryNameTextStyle",null!=this.i.summaryNameTextStyle?this.i.summaryNameTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingLeft",{get:function(){return this.i.g8},set:function(t){this.i.g8=+t,this._a("paddingLeft",this.i.g8)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingTop",{get:function(){return this.i.ha},set:function(t){this.i.ha=+t,this._a("paddingTop",this.i.ha)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingRight",{get:function(){return this.i.g9},set:function(t){this.i.g9=+t,this._a("paddingRight",this.i.g9)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingBottom",{get:function(){return this.i.g7},set:function(t){this.i.g7=+t,this._a("paddingBottom",this.i.g7)},enumerable:!1,configurable:!0}),n._observedAttributesIgcSummaryRowComponent=null,n}(Jr),mo=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new tr},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcSummaryRowRootComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcSummaryRowRootComponent=t}return n._observedAttributesIgcSummaryRowRootComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcSummaryRowRootComponent=null,n.htmlTagName="igc-summary-row-root",n._isElementRegistered=!1,n}(fo),go=function(){function t(){}return t.register=function(){mo.register(),i.TypeRegistrar.registerCons("IgcSummaryRowRootComponent",mo),i.TypeRegistrar.register("SummaryRowRoot",tr.$type)},t}(),bo=function(t){function n(){return t.call(this)||this}return e.__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.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcSummaryRowSectionComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcSummaryRowSectionComponent=t}return n._observedAttributesIgcSummaryRowSectionComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcSummaryRowSectionComponent=null,n.htmlTagName="igc-summary-row-section",n._isElementRegistered=!1,n}(fo),yo=function(){function t(){}return t.register=function(){bo.register(),i.TypeRegistrar.registerCons("IgcSummaryRowSectionComponent",bo),i.TypeRegistrar.register("SummaryRowSection",er.$type)},t}(),vo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Rt},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"isStarSized",{get:function(){return this.i.c},set:function(t){this.i.c=i.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}(),Co=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcColumnWidth",vo),i.TypeRegistrar.register("ColumnWidth",Rt.$type)},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 yt(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(),this._initializeAdapters&&this._initializeAdapters()},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=i.ensureEnum(i.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}(),wo=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcColumnSortDescription",_o),i.TypeRegistrar.register("ColumnSortDescription",yt.$type)},t}(),So=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Po=function(t){function n(){var e=t.call(this)||this;return e._formatText=null,e._formatText_wrapped=null,e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new _t(0)},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"valueFormat",{get:function(){return this.i.x},set:function(t){this.i.x=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"displayFormat",{get:function(){return this.i.u},set:function(t){this.i.u=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"formatOverride",{get:function(){return this.i.q},set:function(t){this.i.q=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"displayName",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(null!=this.valueFormatSpecifiers&&i.arrayFindByName(this.valueFormatSpecifiers,e)?i.arrayFindByName(this.valueFormatSpecifiers,e):null!=this.displayFormatSpecifiers&&i.arrayFindByName(this.displayFormatSpecifiers,e)?i.arrayFindByName(this.displayFormatSpecifiers,e):null)},Object.defineProperty(n.prototype,"formatText",{get:function(){return this._formatText},set:function(t){var e=this;null!==this._formatText_wrapped&&(this.i.formatText=i.delegateRemove(this.i.formatText,this._formatText_wrapped),this._formatText_wrapped=null,this._formatText=null),this._formatText=t,this._formatText_wrapped=function(t,i){var n=new So;n._provideImplementation(i),e.beforeFormatText&&e.beforeFormatText(e,n),e._formatText&&e._formatText(e,n)},this.i.formatText=i.delegateCombine(this.i.formatText,this._formatText_wrapped)},enumerable:!1,configurable:!0}),n}(_o),Oo=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcColumnGroupDescription",Po),i.TypeRegistrar.register("ColumnGroupDescription",_t.$type)},t}(),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 ht},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(),this._initializeAdapters&&this._initializeAdapters()},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}(),jo=function(){function t(){this._formatText=null,this._formatText_wrapped=null,this._provideCalculator=null,this._provideCalculator_wrapped=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ct(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(),this._initializeAdapters&&this._initializeAdapters()},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=i.ensureEnum(i.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=i.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&&i.arrayFindByName(this.valueFormatSpecifiers,t)?i.arrayFindByName(this.valueFormatSpecifiers,t):null!=this.displayFormatSpecifiers&&i.arrayFindByName(this.displayFormatSpecifiers,t)?i.arrayFindByName(this.displayFormatSpecifiers,t):null},t.prototype.equals=function(t){return this.i.equals(t)},Object.defineProperty(t.prototype,"formatText",{get:function(){return this._formatText},set:function(t){var e=this;null!==this._formatText_wrapped&&(this.i.formatText=i.delegateRemove(this.i.formatText,this._formatText_wrapped),this._formatText_wrapped=null,this._formatText=null),this._formatText=t,this._formatText_wrapped=function(t,i){var n=new xo;n._provideImplementation(i),e.beforeFormatText&&e.beforeFormatText(e,n),e._formatText&&e._formatText(e,n)},this.i.formatText=i.delegateCombine(this.i.formatText,this._formatText_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"provideCalculator",{get:function(){return this._provideCalculator},set:function(t){var e=this;null!==this._provideCalculator_wrapped&&(this.i.provideCalculator=i.delegateRemove(this.i.provideCalculator,this._provideCalculator_wrapped),this._provideCalculator_wrapped=null,this._provideCalculator=null),this._provideCalculator=t,this._provideCalculator_wrapped=function(t,n){var r=new i.IgcProvideCalculatorEventArgs;r._provideImplementation(n),e.beforeProvideCalculator&&e.beforeProvideCalculator(e,r),e._provideCalculator&&e._provideCalculator(e,r)},this.i.provideCalculator=i.delegateCombine(this.i.provideCalculator,this._provideCalculator_wrapped)},enumerable:!1,configurable:!0}),t}(),ko=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcColumnSummaryDescription",jo),i.TypeRegistrar.register("ColumnSummaryDescription",ct.$type)},t}(),Io=function(){function t(t,e){void 0===t&&(t=null),void 0===e&&(e=null),this._implementation=new fe(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 i=fe.createIdentityKey(e),n=new t(null,null);return n._provideImplementation(i),n},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(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcPrimaryKeyValue",Io),i.TypeRegistrar.register("PrimaryKeyValue",fe.$type)},t}(),Ro=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(),this._initializeAdapters&&this._initializeAdapters()},t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},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 un},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.c;if(null==t)return null;if(!t.externalObject){var e=Do._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 Eo;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}(),Eo=function(){function t(){this._filterRequested=null,this._filterRequested_wrapped=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new gn},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(),this._initializeAdapters&&this._initializeAdapters()},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=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editorType",{get:function(){return this.i.b},set:function(t){this.i.b=i.ensureEnum(z,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(){return this._filterRequested},set:function(t){var e=this;null!==this._filterRequested_wrapped&&(this.i.filterRequested=i.delegateRemove(this.i.filterRequested,this._filterRequested_wrapped),this._filterRequested_wrapped=null,this._filterRequested=null),this._filterRequested=t,this._filterRequested_wrapped=function(t,i){var n=new Ao;n._provideImplementation(i),e.beforeFilterRequested&&e.beforeFilterRequested(e,n),e._filterRequested&&e._filterRequested(e,n)},this.i.filterRequested=i.delegateCombine(this.i.filterRequested,this._filterRequested_wrapped)},enumerable:!1,configurable:!0}),t}(),Bo=function(t){function n(e){var n=t.call(this)||this;if(Eo.$type||(Eo.$type=i.markType(Eo,"IgcFilterOperand")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Eo.$type||(Eo.$type=i.markType(Eo,"IgcFilterOperand"));var t=new i.SyncableObservableCollection$2(Eo.$type,gn.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===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},n}(i.IgCollection),Do=function(t){function n(){var e=t.call(this)||this;return e._filterOperands=null,e._actualHeaderTextChange=null,e._actualHeaderTextChange_wrapped=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridColumnComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridColumnComponent=t}return n._observedAttributesIgcDataGridColumnComponent},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingLeft",{get:function(){return this.i.kk},set:function(t){this.i.kk=+t,this._a("paddingLeft",this.i.kk)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingTop",{get:function(){return this.i.km},set:function(t){this.i.km=+t,this._a("paddingTop",this.i.km)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingRight",{get:function(){return this.i.kl},set:function(t){this.i.kl=+t,this._a("paddingRight",this.i.kl)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingBottom",{get:function(){return this.i.kj},set:function(t){this.i.kj=+t,this._a("paddingBottom",this.i.kj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"name",{get:function(){return this.i.mf},set:function(t){this.i.mf=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"field",{get:function(){return this.i.lo},set:function(t){this.i.lo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerText",{get:function(){return this.i.lv},set:function(t){this.i.lv=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualHeaderText",{get:function(){return this.i.k3},set:function(t){this.i.k3=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedBackground",{get:function(){return i.brushToString(this.i.n2)},set:function(t){this.i.n2=i.stringToBrush(t),this._a("selectedBackground",i.brushToString(this.i.n2))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSelectedBackground",{get:function(){return i.brushToString(this.i.nv)},set:function(t){this.i.nv=i.stringToBrush(t),this._a("actualSelectedBackground",i.brushToString(this.i.nv))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowHoverBackground",{get:function(){return i.brushToString(this.i.n0)},set:function(t){this.i.n0=i.stringToBrush(t),this._a("rowHoverBackground",i.brushToString(this.i.n0))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualHoverBackground",{get:function(){return i.brushToString(this.i.nt)},set:function(t){this.i.nt=i.stringToBrush(t),this._a("actualHoverBackground",i.brushToString(this.i.nt))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowHoverTextColor",{get:function(){return i.brushToString(this.i.n1)},set:function(t){this.i.n1=i.stringToBrush(t),this._a("rowHoverTextColor",i.brushToString(this.i.n1))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualRowHoverTextColor",{get:function(){return i.brushToString(this.i.nu)},set:function(t){this.i.nu=i.stringToBrush(t),this._a("actualRowHoverTextColor",i.brushToString(this.i.nu))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"animationSettings",{get:function(){var t=this.i.h6;if(null==t)return null;if(!t.externalObject){var e=new Ro;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(n.prototype,"width",{get:function(){var t=this.i.width;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){if("string"==typeof t){var e=Rt.parse(t),i=new vo;i._implementation=e,t=i}this.i.width=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minWidth",{get:function(){return this.i.j0},set:function(t){this.i.j0=+t,this._a("minWidth",this.i.j0)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isFromMarkup",{get:function(){return this.i.jn},set:function(t){this.i.jn=i.ensureBool(t),this._a("isFromMarkup",this.i.jn)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isAutoGenerated",{get:function(){return this.i.jh},set:function(t){this.i.jh=i.ensureBool(t),this._a("isAutoGenerated",this.i.jh)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filter",{get:function(){return this.i.g1},set:function(t){this.i.g1=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterExpression",{get:function(){return this.i.g3},set:function(t){this.i.g3=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"header",{get:function(){var t=this.i.header;if(null==t)return null;if(!t.externalObject){var e=to._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(n.prototype,"isFilteringEnabled",{get:function(){return this.i.jm},set:function(t){this.i.jm=i.ensureBool(t),this._a("isFilteringEnabled",this.i.jm)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isResizingEnabled",{get:function(){return this.i.jp},set:function(t){this.i.jp=i.ensureBool(t),this._a("isResizingEnabled",this.i.jp)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isHidden",{get:function(){return this.i.jo},set:function(t){this.i.jo=i.ensureBool(t),this._a("isHidden",this.i.jo)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"shouldRemoveWhenHidden",{get:function(){return this.i.js},set:function(t){this.i.js=i.ensureBool(t),this._a("shouldRemoveWhenHidden",this.i.js)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortDirection",{get:function(){return this.i.hr},set:function(t){this.i.hr=i.ensureEnum(x,t),this._a("sortDirection",i.enumToString(x,this.i.hr))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinned",{get:function(){return this.i.il},set:function(t){this.i.il=i.ensureEnum(k,t),this._a("pinned",i.enumToString(k,this.i.il))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualColumnOptionsIconAlignment",{get:function(){return this.i.hi},set:function(t){this.i.hi=i.ensureEnum(et,t),this._a("actualColumnOptionsIconAlignment",i.enumToString(et,this.i.hi))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconAlignment",{get:function(){return this.i.hj},set:function(t){this.i.hj=i.ensureEnum(et,t),this._a("columnOptionsIconAlignment",i.enumToString(et,this.i.hj))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualColumnOptionsIconColor",{get:function(){return i.brushToString(this.i.nr)},set:function(t){this.i.nr=i.stringToBrush(t),this._a("actualColumnOptionsIconColor",i.brushToString(this.i.nr))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconColor",{get:function(){return i.brushToString(this.i.nw)},set:function(t){this.i.nw=i.stringToBrush(t),this._a("columnOptionsIconColor",i.brushToString(this.i.nw))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconBehavior",{get:function(){return this.i.hn},set:function(t){this.i.hn=i.ensureEnum(nt,t),this._a("columnOptionsIconBehavior",i.enumToString(nt,this.i.hn))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualColumnOptionsIconBehavior",{get:function(){return this.i.hm},set:function(t){this.i.hm=i.ensureEnum(nt,t),this._a("actualColumnOptionsIconBehavior",i.enumToString(nt,this.i.hm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualIsColumnOptionsEnabled",{get:function(){return this.i.ja},set:function(t){this.i.ja=i.ensureBool(t),this._a("actualIsColumnOptionsEnabled",this.i.ja)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isColumnOptionsEnabled",{get:function(){return this.i.ji},set:function(t){this.i.ji=i.ensureBool(t),this._a("isColumnOptionsEnabled",this.i.ji)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualIsColumnOptionsSummariesEnabled",{get:function(){return this.i.jc},set:function(t){this.i.jc=i.ensureBool(t),this._a("actualIsColumnOptionsSummariesEnabled",this.i.jc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isColumnOptionsSummariesEnabled",{get:function(){return this.i.jk},set:function(t){this.i.jk=i.ensureBool(t),this._a("isColumnOptionsSummariesEnabled",this.i.jk)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualIsColumnOptionsGroupingEnabled",{get:function(){return this.i.jb},set:function(t){this.i.jb=i.ensureBool(t),this._a("actualIsColumnOptionsGroupingEnabled",this.i.jb)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isColumnOptionsGroupingEnabled",{get:function(){return this.i.jj},set:function(t){this.i.jj=i.ensureBool(t),this._a("isColumnOptionsGroupingEnabled",this.i.jj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isEditable",{get:function(){return this.i.jl},set:function(t){this.i.jl=i.ensureBool(t),this._a("isEditable",this.i.jl)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"deletedTextColor",{get:function(){return i.brushToString(this.i.nx)},set:function(t){this.i.nx=i.stringToBrush(t),this._a("deletedTextColor",i.brushToString(this.i.nx))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualDeletedTextColor",{get:function(){return i.brushToString(this.i.ns)},set:function(t){this.i.ns=i.stringToBrush(t),this._a("actualDeletedTextColor",i.brushToString(this.i.ns))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editOpacity",{get:function(){return this.i.jz},set:function(t){this.i.jz=+t,this._a("editOpacity",this.i.jz)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualEditOpacity",{get:function(){return this.i.jy},set:function(t){this.i.jy=+t,this._a("actualEditOpacity",this.i.jy)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textEditStyle",{get:function(){return null==this.i.textEditStyle?null:this.i.textEditStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.textEditStyle=e,this._a("textEditStyle",null!=this.i.textEditStyle?this.i.textEditStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualEditFontInfo",{get:function(){return null==this.i.is?null:this.i.is.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.is=e,this._a("actualEditFontInfo",null!=this.i.is?this.i.is.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellMode",{get:function(){return this.i.ih},set:function(t){this.i.ih=i.ensureEnum(Se,t),this._a("mergedCellMode",i.enumToString(Se,this.i.ih))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellEvaluationCriteria",{get:function(){return this.i.id},set:function(t){this.i.id=i.ensureEnum(Oe,t),this._a("mergedCellEvaluationCriteria",i.enumToString(Oe,this.i.id))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellVerticalAlignment",{get:function(){return this.i.ha},set:function(t){this.i.ha=i.ensureEnum(h,t),this._a("mergedCellVerticalAlignment",i.enumToString(h,this.i.ha))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellPaddingLeft",{get:function(){return this.i.kd},set:function(t){this.i.kd=+t,this._a("mergedCellPaddingLeft",this.i.kd)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellPaddingTop",{get:function(){return this.i.kf},set:function(t){this.i.kf=+t,this._a("mergedCellPaddingTop",this.i.kf)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellPaddingRight",{get:function(){return this.i.ke},set:function(t){this.i.ke=+t,this._a("mergedCellPaddingRight",this.i.ke)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellPaddingBottom",{get:function(){return this.i.kc},set:function(t){this.i.kc=+t,this._a("mergedCellPaddingBottom",this.i.kc)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterComparisonType",{get:function(){return this.i.h1},set:function(t){this.i.h1=i.ensureEnum(Re,t),this._a("filterComparisonType",i.enumToString(Re,this.i.h1))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterOperands",{get:function(){if(null===this._filterOperands){var t=new Bo,e=this.i.h8;e||(e=new bn),this._filterOperands=t._fromInner(e)}return this._filterOperands},set:function(t){null!==this._filterOperands&&(this._filterOperands._setSyncTarget(null),this._filterOperands=null);var e=new Bo;this._filterOperands=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(gn.$type),r=this.i.h8;r||(r=new bn),n._inner=r,n.clear(),this._filterOperands._setSyncTarget(n)},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(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)},n.prototype._styling=function(e,i,n){t.prototype._styling.call(this,e,i,n),this._inStyling=!0,this.header&&this.header._styling&&this.header._styling(e,i,this),this._inStyling=!1},n.prototype.getUniqueKey=function(){return this.i.lt()},n.prototype.setNamedHeaderValue=function(t,e,i){this.i.m2(t,null==e?null:e,i)},n.prototype.hasNamedHeaderValues=function(){return this.i.jf()},n.prototype.hasNamedHeaderValue=function(t){return this.i.je(t)},n.prototype.removeNamedHeaderValue=function(t){this.i.m1(t)},n.prototype.getNamedHeaderValue=function(t){return this.i.kr(t)},n.prototype.applyCustomFilter=function(t,e,i){this.i.mu(t,e,i)},n.prototype.getDesiredToolbarActions=function(){return this.i.getDesiredToolbarActions()},n.prototype.addCommandAvailabilityListener=function(t){this.i.addCommandAvailabilityListener(t)},n.prototype.removeCommandAvailabilityListener=function(t){this.i.removeCommandAvailabilityListener(t)},n.prototype.addCommandStateChangedListener=function(t){this.i.addCommandStateChangedListener(t)},n.prototype.removeCommandStateChangedListener=function(t){this.i.removeCommandStateChangedListener(t)},Object.defineProperty(n.prototype,"actualHeaderTextChange",{get:function(){return this._actualHeaderTextChange},set:function(t){var e=this;null!==this._actualHeaderTextChange_wrapped&&(this.i.propertyChanged=i.delegateRemove(this.i.propertyChanged,this._actualHeaderTextChange_wrapped),this._actualHeaderTextChange_wrapped=null,this._actualHeaderTextChange=null),this._actualHeaderTextChange=t,this._actualHeaderTextChange_wrapped=function(t,i){var n=e.actualHeaderText;"K3"==i.propertyName&&(e.beforeActualHeaderTextChange&&e.beforeActualHeaderTextChange(e,n),e._actualHeaderTextChange&&e._actualHeaderTextChange(e,n))},this.i.propertyChanged=i.delegateCombine(this.i.propertyChanged,this._actualHeaderTextChange_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcDataGridColumnComponent=null,n}(Jr),$o=function(){function t(){this._implementation=new yn,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 Io(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=Do._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}(),Mo=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcCellKey",$o),i.TypeRegistrar.register("CellKey",yn.$type)},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 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(),this._initializeAdapters&&this._initializeAdapters()},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}(),No=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcCellRange",zo),i.TypeRegistrar.register("CellRange",ge.$type)},t}(),Fo=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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Go=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcGridCellPosition",Fo),i.TypeRegistrar.register("GridCellPosition",b.$type)},t}(),Vo=i.markEnum("CheckboxListExternalIndexType","Selected,0|DeSelected,1"),qo=function(t){function r(e){var i=t.call(this,e)||this;return i.ac=null,i.af=null,i.ad=null,i.ae=null,i.u=null,i.x=null,i.v=null,i.w=null,i.y=null,i.aa=null,i.z=null,i.ab=null,i}return e.__extends(r,t),r.prototype.getDesiredSize=function(t,e){return this.t.getDesiredSize(e)},r.prototype.addHandler=function(t,e,n,r){var o=t;switch(n){case 2:o.checkedChanged=i.delegateCombine(o.checkedChanged,i.runOn(this,this.ag)),this.u=r,this.ac=e;break;case 20:o.labelClicked=i.delegateCombine(o.labelClicked,i.runOn(this,this.al)),this.x=r,this.af=e;break;case 18:o.selectedKeyAdded=i.delegateCombine(o.selectedKeyAdded,i.runOn(this,this.ai)),this.v=r,this.ad=e;break;case 19:o.selectedKeyRemoved=i.delegateCombine(o.selectedKeyRemoved,i.runOn(this,this.aj)),this.w=r,this.ae=e;break;case 22:o.indexTypeChanged=i.delegateCombine(o.indexTypeChanged,i.runOn(this,this.ah)),this.y=r,this.aa=e;break;case 26:o.keysCleared=i.delegateCombine(o.keysCleared,i.runOn(this,this.ak)),this.z=r,this.ab=e}},r.prototype.ak=function(t,e){null!=this.z&&this.z(this.ab,new i.NativeUICheckboxListKeysClearedEventArgs)},r.prototype.ah=function(t,e){var n;null!=this.y&&this.y(this.aa,((n=new i.NativeUICheckboxListIndexTypeChangedEventArgs).b=e.b,n.a=e.a,n))},r.prototype.removeHandler=function(t,e,n,r){var o=t;switch(n){case 2:o.checkedChanged=i.delegateRemove(o.checkedChanged,i.runOn(this,this.ag)),this.u=null,this.ac=null;break;case 20:o.labelClicked=i.delegateRemove(o.labelClicked,i.runOn(this,this.al)),this.x=null,this.af=null;break;case 18:o.selectedKeyAdded=i.delegateRemove(o.selectedKeyAdded,i.runOn(this,this.ai)),this.v=null,this.ad=null;break;case 19:o.selectedKeyRemoved=i.delegateRemove(o.selectedKeyRemoved,i.runOn(this,this.aj)),this.w=null,this.ae=null;break;case 22:o.indexTypeChanged=i.delegateRemove(o.indexTypeChanged,i.runOn(this,this.ah)),this.y=null,this.aa=null}},r.prototype.ag=function(t,e){var n;null!=this.u&&this.u(this.ac,((n=new i.NativeUICheckboxListChangeEventArgs).c=e.c,n.b=e.b,n.a=e.a,n))},r.prototype.al=function(t,e){var n;null!=this.x&&this.x(this.af,((n=new i.NativeUICheckboxListChangeEventArgs).c=e.c,n.b=e.b,n.a=e.a,n))},r.prototype.ai=function(t,e){var n;null!=this.v&&this.v(this.ad,((n=new i.NativeUICheckboxListChangeEventArgs).c=e.c,n.b=e.b,n.a=e.a,n))},r.prototype.aj=function(t,e){var n;null!=this.w&&this.w(this.ae,((n=new i.NativeUICheckboxListChangeEventArgs).c=e.c,n.b=e.b,n.a=e.a,n))},r.prototype.setValue=function(t,e,n){var r=t;switch(e){case 23:r.backgroundColor=n;break;case 8:r.itemsSource=n;break;case 75:r.selectedMemberPath=n;break;case 76:r.dataMemberPath=n;break;case 77:r.subtitleMemberPath=n;break;case 79:r.showSelectAll=n;break;case 80:r.primaryKey=n;break;case 1:r.density=i.EnumUtil.getEnumValue(i.ControlDisplayDensity_$type,n);break;case 18:r.baseTheme=i.EnumUtil.getEnumValue(i.BaseControlTheme_$type,n);break;case 33:r.textColor=n;break;case 24:r.rowHoverBackgroundColor=n;break;case 81:r.searchIconColor=n;break;case 82:r.searchTextColor=n;break;case 99:r.indexType=i.EnumUtil.getEnumValue(i.NativeUICheckboxListIndexType_$type,n);break;case 113:r.checkboxAlignedRight=n;break;case 114:r.labelClickTriggersChange=n;break;case 115:r.dataLegendTarget=n;break;case 78:r.propertyTypeMemberPath=n;break;case 17:r.checkboxCornerRadius=n}},r.prototype.getValue=function(t,e){var n=t;switch(e){case 23:return n.backgroundColor;case 8:return n.itemsSource;case 75:return n.selectedMemberPath;case 76:return n.dataMemberPath;case 77:return n.subtitleMemberPath;case 79:return n.showSelectAll;case 80:return n.primaryKey;case 1:return i.enumGetBox(i.ControlDisplayDensity_$type,n.density);case 18:return i.enumGetBox(i.BaseControlTheme_$type,n.baseTheme);case 33:return n.textColor;case 24:return n.rowHoverBackgroundColor;case 81:return n.searchIconColor;case 82:return n.searchTextColor;case 99:return i.enumGetBox(Vo,n.indexType);case 113:return n.checkboxAlignedRight;case 114:return n.labelClickTriggersChange;case 115:return n.dataLegendTarget;case 78:return n.propertyTypeMemberPath;case 17:return n.checkboxCornerRadius}return null},r.prototype.clearSelectedKeys=function(t){t.clearSelectedKeys()},r.prototype.addSelectedKey=function(t,e,i){t.addSelectedKey(e,i)},r.prototype.insertSelectedKey=function(t,e,i,n){t.insertSelectedKey(e,i,n)},r.prototype.removeSelectedKeyAt=function(t,e){t.removeSelectedKeyAt(e)},r.prototype.refresh=function(t){t.refresh()},r.prototype.am=function(t,e){},r.$t=i.markType(r,"CheckboxListBridge",n.XComponentBridge.$,[i.INativeUICheckboxListBridge_$type]),r}(n.XComponentBridge),Lo=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=2,e}return e.__extends(n,t),Object.defineProperty(n,"instance",{get:function(){return null==n.a&&(n.a=new n),n.a},enumerable:!1,configurable:!0}),n.register=function(){i.NativeUIComponent.as(n.instance)},Object.defineProperty(n.prototype,"flavor",{get:function(){return this.c},enumerable:!1,configurable:!0}),n.prototype.createComponent=function(t,e,i){switch(e){case 16:this.d(t,i)}},n.prototype.createComponentSync=function(t,e,i){this.createComponent(t,e,i)},n.prototype.supportsComponent=function(t){switch(t){case 16:return!0}return!1},n.prototype.d=function(t,e){var n=t,r=n.createElement("div");r.setStyleProperty("width","100%"),r.setStyleProperty("height","100%"),n.getPortal(r,"CheckboxList",(function(t){var n=t.componentRef;n.width="100%",n.height="100%";var o=n.i,s=new qo(o),a=new i.NativeUICheckboxList;a.an=r,a.d=s,e(a)}),!1)},n.$t=i.markType(n,"NativeUIGridFactory",i.Base.$,[i.INativeUIElementFactory_$type]),n.a=null,n}(i.Base),Ho=function(t){function o(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(o,t),o.register=function(){Lo.register(),n.NativeUIXInputsFactory.m(),r.NativeUILayoutFactory.g()},o.$t=i.markType(o,"GridModuleHelper"),o}(i.Base),Wo=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new on},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 Er;break;case"ImageCellModel":t=new Br;break;case"NumericCellModel":t=new Dr;break;case"RowSeparatorModel":t=new $r;break;case"SectionHeaderCellModel":t=new Mr;break;case"TemplateCellModel":t=new zr;break;case"TemplateHeaderCellModel":t=new Gr;break;case"TemplateSectionHeaderCellModel":t=new qr;break;case"TextCellModel":t=new Lr;break;case"TextHeaderCellModel":t=new Hr}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=i.ensureEnum(i.MouseButton_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isDoubleClick",{get:function(){return this.i.isDoubleClick},set:function(t){this.i.isDoubleClick=i.ensureBool(t)},enumerable:!1,configurable:!0}),t}(),Uo=function(t){function n(e){var n=t.call(this)||this;if(Do.$type||(Do.$type=i.markType(Do,"IgcDataGridColumnComponent")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Do.$type||(Do.$type=i.markType(Do,"IgcDataGridColumnComponent"));var t=new i.SyncableObservableCollection$2(Do.$type,_n.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=Do._createFromInternal(t))&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Ko=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 en},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"columns",{get:function(){if(null===this._columns){var t=new Uo,e=this.i.columns;e||(e=new wn),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 Uo;this._columns=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(_n.$type),r=this.i.columns;r||(r=new wn),n._inner=r,n.clear(),this._columns._setSyncTarget(n),this.i.columns=r},enumerable:!1,configurable:!0}),t}(),Xo=function(t){function n(e){var i=t.call(this)||this;if(e)for(var n=0;n<e.length;n++)i.add(e[n]);return i}return e.__extends(n,t),n.prototype._createInnerColl=function(){var t=new i.SyncableObservableCollection$2(i.Base.$type,i.Base.$type,0);return t.compare=function(t,e){var i=t;return i.equals?i.equals(e):i===e},t.createTo=function(t){return t},t.createFrom=function(t){return t},t},n}(i.IgCollection),Qo=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 Be},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"currentItems",{get:function(){if(null===this._currentItems){var t=new Xo,e=this.i.currentItems;e||(e=new de),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 Xo;this._currentItems=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(i.Base.$type),r=this.i.currentItems;r||(r=new de),n._inner=r,n.clear(),this._currentItems._setSyncTarget(n),this.i.currentItems=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedItems",{get:function(){if(null===this._addedItems){var t=new Xo,e=this.i.addedItems;e||(e=new de),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 Xo;this._addedItems=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(i.Base.$type),r=this.i.addedItems;r||(r=new de),n._inner=r,n.clear(),this._addedItems._setSyncTarget(n),this.i.addedItems=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedItems",{get:function(){if(null===this._removedItems){var t=new Xo,e=this.i.removedItems;e||(e=new de),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 Xo;this._removedItems=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(i.Base.$type),r=this.i.removedItems;r||(r=new de),n._inner=r,n.clear(),this._removedItems._setSyncTarget(n),this.i.removedItems=r},enumerable:!1,configurable:!0}),t}(),Yo=function(t){function n(e){var n=t.call(this)||this;if(Io.$type||(Io.$type=i.markType(Io,"IgcPrimaryKeyValue")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Io.$type||(Io.$type=i.markType(Io,"IgcPrimaryKeyValue"));var t=new i.SyncableObservableCollection$2(Io.$type,fe.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Io)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Zo=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 De},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"currentKeys",{get:function(){if(null===this._currentKeys){var t=new Yo,e=this.i.currentKeys;e||(e=new me),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 Yo;this._currentKeys=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(fe.$type),r=this.i.currentKeys;r||(r=new me),n._inner=r,n.clear(),this._currentKeys._setSyncTarget(n),this.i.currentKeys=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedKeys",{get:function(){if(null===this._addedKeys){var t=new Yo,e=this.i.addedKeys;e||(e=new me),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 Yo;this._addedKeys=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(fe.$type),r=this.i.addedKeys;r||(r=new me),n._inner=r,n.clear(),this._addedKeys._setSyncTarget(n),this.i.addedKeys=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedKeys",{get:function(){if(null===this._removedKeys){var t=new Yo,e=this.i.removedKeys;e||(e=new me),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 Yo;this._removedKeys=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(fe.$type),r=this.i.removedKeys;r||(r=new me),n._inner=r,n.clear(),this._removedKeys._setSyncTarget(n),this.i.removedKeys=r},enumerable:!1,configurable:!0}),t}(),Jo=function(t){function n(e){var n=t.call(this)||this;if($o.$type||($o.$type=i.markType($o,"IgcCellKey")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){$o.$type||($o.$type=i.markType($o,"IgcCellKey"));var t=new i.SyncableObservableCollection$2($o.$type,yn.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===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},n}(i.IgCollection),ts=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 rn},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"currentCells",{get:function(){if(null===this._currentCells){var t=new Jo,e=this.i.currentCells;e||(e=new vn),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 Jo;this._currentCells=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(yn.$type),r=this.i.currentCells;r||(r=new vn),n._inner=r,n.clear(),this._currentCells._setSyncTarget(n),this.i.currentCells=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedCells",{get:function(){if(null===this._addedCells){var t=new Jo,e=this.i.addedCells;e||(e=new vn),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 Jo;this._addedCells=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(yn.$type),r=this.i.addedCells;r||(r=new vn),n._inner=r,n.clear(),this._addedCells._setSyncTarget(n),this.i.addedCells=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedCells",{get:function(){if(null===this._removedCells){var t=new Jo,e=this.i.removedCells;e||(e=new vn),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 Jo;this._removedCells=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(yn.$type),r=this.i.removedCells;r||(r=new vn),n._inner=r,n.clear(),this._removedCells._setSyncTarget(n),this.i.removedCells=r},enumerable:!1,configurable:!0}),t}(),es=function(t){function n(e){var n=t.call(this)||this;if(zo.$type||(zo.$type=i.markType(zo,"IgcCellRange")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){zo.$type||(zo.$type=i.markType(zo,"IgcCellRange"));var t=new i.SyncableObservableCollection$2(zo.$type,ge.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new zo)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),is=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 $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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"currentRanges",{get:function(){if(null===this._currentRanges){var t=new es,e=this.i.currentRanges;e||(e=new be),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 es;this._currentRanges=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(ge.$type),r=this.i.currentRanges;r||(r=new be),n._inner=r,n.clear(),this._currentRanges._setSyncTarget(n),this.i.currentRanges=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"addedRanges",{get:function(){if(null===this._addedRanges){var t=new es,e=this.i.addedRanges;e||(e=new be),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 es;this._addedRanges=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(ge.$type),r=this.i.addedRanges;r||(r=new be),n._inner=r,n.clear(),this._addedRanges._setSyncTarget(n),this.i.addedRanges=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"removedRanges",{get:function(){if(null===this._removedRanges){var t=new es,e=this.i.removedRanges;e||(e=new be),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 es;this._removedRanges=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(ge.$type),r=this.i.removedRanges;r||(r=new be),n._inner=r,n.clear(),this._removedRanges._setSyncTarget(n),this.i.removedRanges=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"updatedRanges",{get:function(){if(null===this._updatedRanges){var t=new es,e=this.i.updatedRanges;e||(e=new be),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 es;this._updatedRanges=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(ge.$type),r=this.i.updatedRanges;r||(r=new be),n._inner=r,n.clear(),this._updatedRanges._setSyncTarget(n),this.i.updatedRanges=r},enumerable:!1,configurable:!0}),t}(),ns=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new vt},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 i=null,n=null;return null!=(i=void 0!==e?this.i.set(t,null==e?null:e.i):this.i.get(t))&&((n=i.externalObject)||((n=new _o)._implementation=i,i.externalObject=n)),n},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,i;return e.__generator(this,(function(e){switch(e.label){case 0:t=0,e.label=1;case 1:return t<this.count?((i=this.item(t)).externalObject&&(i=i.externalObject),[4,i]):[3,4];case 2:e.sent(),e.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=i.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),i=null;if(e&&e.externalObject)i=e.externalObject;else if(e){var n=new _o;n._implementation=e,e.externalObject=n,i=n}return i},t}(),rs=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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"sortDescriptions",{get:function(){var t=this.i.sortDescriptions;if(null==t)return null;if(!t.externalObject){var e=new ns;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}(),os=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}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()},t.prototype.item=function(t,e){var i=null,n=null;return null!=(i=void 0!==e?this.i.set(t,null==e?null:e.i):this.i.get(t))&&((n=i.externalObject)||((n=new Po)._implementation=i,i.externalObject=n)),n},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,i;return e.__generator(this,(function(e){switch(e.label){case 0:t=0,e.label=1;case 1:return t<this.count?((i=this.item(t)).externalObject&&(i=i.externalObject),[4,i]):[3,4];case 2:e.sent(),e.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=i.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),i=null;if(e&&e.externalObject)i=e.externalObject;else if(e){var n=new Po;n._implementation=e,e.externalObject=n,i=n}return i},t}(),ss=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new mt},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"groupDescriptions",{get:function(){var t=this.i.groupDescriptions;if(null==t)return null;if(!t.externalObject){var e=new os;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}(),as=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new pt},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 i=null,n=null;return null!=(i=void 0!==e?this.i.set(t,null==e?null:e.i):this.i.get(t))&&((n=i.externalObject)||((n=new jo)._implementation=i,i.externalObject=n)),n},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,i;return e.__generator(this,(function(e){switch(e.label){case 0:t=0,e.label=1;case 1:return t<this.count?((i=this.item(t)).externalObject&&(i=i.externalObject),[4,i]):[3,4];case 2:e.sent(),e.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=i.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),i=null;if(e&&e.externalObject)i=e.externalObject;else if(e){var n=new jo;n._implementation=e,e.externalObject=n,i=n}return i},t}(),ls=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new gt},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"summaryDescriptions",{get:function(){var t=this.i.summaryDescriptions;if(null==t)return null;if(!t.externalObject){var e=new as;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}(),us=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e.c=0,e.d=0,e.b=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"CurrentRendererSettings"),n}(i.Base),hs=function(t){function n(e,i,n){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=n,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=i,r.j=!1,r}return e.__extends(n,t),Object.defineProperty(n.prototype,"element",{get:function(){return this._element},set:function(t){this._element=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"s",{get:function(){return this.r},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"g",{get:function(){return this.f},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rootElement",{get:function(){return this._rootElement},set:function(t){this._rootElement=t},enumerable:!1,configurable:!0}),n.prototype.refresh=function(t,e){this.f=t,this.as(e)},n.prototype.viewportChanged=function(){this.as(!0)},n.prototype.invalidateVisibility=function(t){this.h=t,this.n=!0},Object.defineProperty(n.prototype,"initialRefreshFinished",{get:function(){return this.j},enumerable:!1,configurable:!0}),n.prototype.ag=function(t,e,i,n){this.as(!0)},n.prototype.ar=function(t){var e=this.e.b(this.r,t);if(e.isCanvasBased)e.nativeCell.ah=!1;else{var i=e.nativeCell.ah;i.setRawStyleProperty("top","-1000px"),i.setRawStyleProperty("left","-1000px"),0!=t.l.d&&i.setRawStyleProperty("clip","auto"),e.nativeCell.isRemoved=!0,this.aj(t,i)}},n.prototype.as=function(t){if(t)return this.l=!0,void this.z();this.m||this.l||(this.l=!0,this.ac(i.runOn(this,this.z)))},Object.defineProperty(n.prototype,"requestAnimationFrame",{get:function(){return this._requestAnimationFrame},set:function(t){this._requestAnimationFrame=t},enumerable:!1,configurable:!0}),n.prototype.ac=function(t){this.requestAnimationFrame(t)},n.prototype.z=function(){if(this.l&&(this.l=!1,this.n&&(this.n=!1,this.h()),null!=this.f&&!i.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,n=this.f.cc,r=n.count,o=this.f.bz,s=this.f.bz.o,a=s.count,l=this.f.bz.p,u=0;u<a;u++)if(!l._inner[u])for(var h=o.item(s._inner[u]),c=0;c<h.count;c++){var p=h._inner[c];this.ar(p)}o.u();for(var d=!1,f=this.v,m=!0,g=!1,b=0;b<r;b++)for(var y=n._inner[b].q,v=n._inner[b].q.count,C=n._inner[b].p,_=0;_<v;_++)if(!C._inner[_]){var w=y._inner[_];this.e.b(this.r,w).isCanvasBased?g=!0:m=!1,w.bh&&(d=!0),1==w.u&&w.hh!=f&&(d=!0)}g&&this.ab(),d&&(0x8000000000000000==this.v?this.v=0:this.v++,f=this.v);var S=0,P=new us,O=this.q;this.m=!0;for(var x=0;x<r;x++)for(var j=n._inner[x].q,k=n._inner[x].q.count,I=n._inner[x].p,T=0;T<k;T++)if(!I._inner[T]){var R=j._inner[T],A=this.e.b(this.r,R);if(A.isCanvasBased){var E=P.a;this.aw(P,x,R,this.f,S,d,m),P.a!=E&&d&&S++}var B=A.isCanvasBased,D=null;if(B||(D=A.nativeCell.ah,0==R.u&&(this.element.append(D),A.nativeCell.isRemoved=!1,this.ah(R,D))),1==R.u){if(B)R.s.nativeCell.ah=!0;A.nativeCell.isRemoved=!1}R.u=2;var $=R.g0+i.intDivide(R.hd,2),M=R.g2+i.intDivide(R.fu,2);this.f.actualVisibleRegion.width,this.f.actualVisibleRegion.height;if(R.bj&&(B||D.setRawPosition(R.cu,R.cv)),B||(0!=R.l.d?this.f.b2?D.setRawStyleProperty("clip",this.w(R.l.d,R.cu,R.cv)):D.setRawStyleProperty("clip","auto"):R.l.ao?D.setRawStyleProperty("clip",this.y(R)):i.Rect.l_op_Inequality(R.me,i.Rect.empty)?D.setRawStyleProperty("clip",this.x(R.me)):D.setRawStyleProperty("clip","auto")),R.ku(),B)R.s.nativeCell.co(O);if(R.s.modelUpdated(R),B&&P.b){var z=P.a;z.aa(),0!=R.l.d&&this.f.b2&&z.af(this.ax(R.l.d)),R.s.nativeCell.b6(z,P.c,P.d,R.cu,R.cv,O),z.z()}R.kn(),d&&(R.hh=f,B||D.setRawStyleProperty("z-index",S.toString()),S++),this.ai(R,D)}this.m=!1,null!=P.a&&1!=this.q&&P.a.z(),this.an()}},n.prototype.an=function(){},n.prototype.ab=function(){if(!this.k){this.k=!0;var t=this.r.rootWrapper,e=window.navigator.msPointerEnabled&&void 0!==window.MSGesture,n=void 0!==window.PointerEvent;window.TouchEvent;e||n?(t.listen("pointerdown",i.runOn(this,this.ao)),t.listen("pointerup",i.runOn(this,this.aq)),t.listen("pointermove",i.runOn(this,this.ap))):(t.listen("mousedown",i.runOn(this,this.ad)),t.listen("mouseup",i.runOn(this,this.af)),t.listen("mousemove",i.runOn(this,this.ae)),t.listen("touchstart",i.runOn(this,this.at)),t.listen("touchend",i.runOn(this,this.av)),t.listen("touchmove",i.runOn(this,this.au))),t.listen("dblclick",i.runOn(this,this.aa))}},n.prototype.ad=function(t){this.am(t,!1)},n.prototype.af=function(t){this.ak(t,!1)},n.prototype.ae=function(t){this.al(t,!1)},n.prototype.aa=function(t){if(null!=this.f){var e=this.r.rootWrapper.getOffset(),i=this.f.f(t.pageX-e.left,t.pageY-e.top);null!=i&&null!=i.s&&i.s.isCanvasBased&&null!=i.s.nativeCell&&i.s.nativeCell.onDoubleClick(t)}},n.prototype.ao=function(t){"touch"==t.originalEvent.pointerType?this.at(t):this.ad(t)},n.prototype.ap=function(t){"touch"==t.originalEvent.pointerType?this.au(t):this.ae(t)},n.prototype.aq=function(t){"touch"==t.originalEvent.pointerType?this.av(t):this.af(t)},n.prototype.at=function(t){this.am(t,!0)},n.prototype.am=function(t,e){if(null!=this.f){var i=this.r.rootWrapper.getOffset(),n=this.f.f(t.pageX-i.left,t.pageY-i.top);null!=n&&null!=n.s&&n.s.isCanvasBased&&null!=n.s.nativeCell&&n.s.nativeCell.onContactStarted(t,e)}},n.prototype.au=function(t){this.al(t,!0)},n.prototype.al=function(t,e){if(null!=this.f){var i=this.r.rootWrapper.getOffset(),n=this.f.f(t.pageX-i.left,t.pageY-i.top);null!=n&&null!=n.s&&n.s.isCanvasBased&&null!=n.s.nativeCell&&n.s.nativeCell.onContactMoved(t,e)}},n.prototype.av=function(t){this.ak(t,!0)},n.prototype.ak=function(t,e){if(null!=this.f){var i=this.r.rootWrapper.getOffset(),n=this.f.f(t.pageX-i.left,t.pageY-i.top);null!=n&&null!=n.s&&n.s.isCanvasBased&&null!=n.s.nativeCell&&n.s.nativeCell.onContactCompleted(t,e)}},n.prototype.aw=function(t,e,n,r,o,s,a){if(a&&(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 h=this.r.get2DCanvasContext(u),c=((p=new i.CanvasViewRenderer).h$d=h,p);this.c[e]=new i.RenderingContext(c,h)}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),s&&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)}},n.prototype.ax=function(t){var e=this.f.cr,n=this.f.cm+this.f.cj,r=this.f.cz,o=this.f.ch;return 2==t&&(n=Math.min(this.f.c4,this.f.cp)-this.f.c0-this.f.ck,r=this.f.c0),new i.Rect(0,n,e,r,o)},n.prototype.w=function(t,e,i){if(0!=t){var n=this.ax(t),r=n.x-e,o=n.y-i;return"rect("+o+"px,"+(r+n.width)+"px,"+(o+n.height)+"px,"+r+"px)"}return"auto"},n.prototype.x=function(t){return i.stringFormat1("rect({0}px, {1}px, {2}px, {3}px)",t.top,t.right,t.bottom,t.left)},n.prototype.y=function(t){var e=t.cu<this.g.cn?this.g.cn-t.cu:0,n=-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 i.Rect(0,e,0,n,r))},n.prototype.ah=function(t,e){},n.prototype.aj=function(t,e){},n.prototype.ai=function(t,e){},n.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,i=0;i<e.count;i++){var n=e._inner[i];null!=n.s&&null!=n.s.nativeCell&&n.s.nativeCell.detach()}},n.prototype.attach=function(){},n.$t=i.markType(n,"DataGridCellLayoutPanel",i.Base.$,[Oi]),n}(i.Base),cs=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),Object.defineProperty(n.prototype,"renderer",{get:function(){return this.a._renderer},enumerable:!1,configurable:!0}),n.prototype.onContentSizeChanged=function(){this.a.refreshContentSize()},n.prototype.createLocalDataSource=function(t){var e=new i.LocalDataSource;return e.dataSource=t,e},n.prototype.createTextColumn=function(t){if(i.TypeRegistrar.isRegistered("IgxTextColumnComponent")){var e=i.TypeRegistrar.create("IgxTextColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},n.prototype.createNumericColumn=function(t){if(i.TypeRegistrar.isRegistered("IgxNumericColumnComponent")){var e=i.TypeRegistrar.create("IgxNumericColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},n.prototype.createDateTimeColumn=function(t){if(i.TypeRegistrar.isRegistered("IgxDateTimeColumnComponent")){var e=i.TypeRegistrar.create("IgxDateTimeColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},n.prototype.createImageColumn=function(t){if(i.TypeRegistrar.isRegistered("IgxImageColumnComponent")){var e=i.TypeRegistrar.create("IgxImageColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},n.prototype.createTemplateColumn=function(t){if(i.TypeRegistrar.isRegistered("IgxTemplateColumnComponent")){var e=i.TypeRegistrar.create("IgxTemplateColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},n.prototype.createComboBoxColumn=function(t){if(i.TypeRegistrar.isRegistered("IgxComboBoxColumnComponent")){var e=i.TypeRegistrar.create("IgxComboBoxColumnComponent")._implementation;this.renderer.getExternal(e.header,this.renderer.rootWrapper,this.a);return e.lo=t,e}return null},n.prototype.focusScroller=function(){this.a._focusScroller()},n.prototype.insertExternalColumnAtIndex=function(t,e){this.a._insertExternalColumnAtIndex(t,e)},n.prototype.removeExternalColumn=function(t){this.a._removeExternalColumn(t)},n.prototype.setDefaultCursor=function(){this.a._setDefaultCursor()},n.prototype.setResizeCursor=function(){this.a._setResizeCursor()},n.prototype.setHandCursor=function(){this.a._setHandCursor()},n.prototype.setBorder=function(t,e,i,n,r,o,s,a,l){var u=this.a,h=t._fill,c=e,p=i,d=n,f=r,m=o,g=s,b=a,y=l;u._setBorder(h,c,p,d,f,m,g,b,y)},n.prototype.setScrollerVerticalTrackInset=function(t){this.a._setScrollerVerticalTrackInset(t)},n.prototype.setScrollbarStyle=function(t){this.a._setScrollbarStyle(t)},n.prototype.setScrollbarColor=function(t){this.a._setScrollbarColor(t)},n.prototype.setClipboardText=function(t){var e=window.navigator.clipboard;null!=e&&e.writeText(t)},n.prototype.ensureColumnsAreManual=function(){this.a._ensureColumnsAreManual()},n.$t=i.markType(n,"GridExternalWrapper",i.Base.$,[Pi]),n}(i.Base),ps=function(t){function n(e){var n=t.call(this)||this;return n.e=0,n.c=null,n._requestAnimationFrame=null,n.d=new i.List$1(i.Delegate_$type,0),n.b=!1,n.requestAnimationFrame=e.getRequestAnimationFrame(),n.c=new i.Dictionary$2(i.Number_$type,i.Delegate_$type,0),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"requestAnimationFrame",{get:function(){return this._requestAnimationFrame},set:function(t){this._requestAnimationFrame=t},enumerable:!1,configurable:!0}),n.prototype.f=function(){var t,n;this.b=!1,this.d.clear();try{for(var r=e.__values(i.fromEnum(this.c.values)),o=r.next();!o.done;o=r.next()){var s=o.value;this.d.add(s)}}catch(e){t={error:e}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(t)throw t.error}}for(var a=0;a<this.d.count;a++)this.d._inner[a]();this.d.clear()},n.prototype.setupTicking=function(t){var e=this.e;return this.e++,this.c.item(e,t),e},n.prototype.requestFrame=function(t){this.b||(this.b=!0,this.requestAnimationFrame(i.runOn(this,this.f)))},n.prototype.teardownTicking=function(t){this.c.containsKey(t)&&this.c.removeItem(t)},n.$t=i.markType(n,"BrowserTickProvider",i.Base.$,[i.ITickProvider_$type]),n}(i.Base),ds=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.devicePixelsToPixel=function(t){return t},n.$t=i.markType(n,"BrowserPixelConverter",i.Base.$,[Ae]),n}(i.Base),fs=new i.Type(null,"INativeCell"),ms=function(t){function n(){var e=t.call(this)||this;return e.f=null,e.j=new i.Color,e.g=1,e.a=!0,e.c=0,e.b=0,e.k=new i.Color,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"l",{get:function(){return this.j},set:function(t){this.j=t,this.i()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"h",{get:function(){return this.g},set:function(t){this.a=!0,this.g=t,this.i()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e",{get:function(){return this.c},set:function(t){this.c=t,this.i()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.b},set:function(t){this.b=t,this.i()},enumerable:!1,configurable:!0}),n.prototype.i=function(){this.e,this.d;this.k=i.Color.u(i.truncate(this.j.l*this.g),this.j.o,this.j.n,this.j.m)},n.$t=i.markType(n,"CanvasPlaceholderView"),n}(i.Base),gs=function(t){function n(e){var n,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 i.Rectangle,r.c5=new i.Line,r.c8=new i.Line,r.c6=new i.Line,r.c4=new i.Line,r.c7=new i.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 i.TextBlock,r.c3=i.Color.u(255,0,0,0),r.w=!0,r.av=0,r.a8=0,r.c2=i.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=((n=new i.FontInfo).q="Verdana",n.f=12,n),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 e.__extends(n,t),Object.defineProperty(n.prototype,"ad",{get:function(){return this.r},set:function(t){this.r=t},enumerable:!1,configurable:!0}),n.prototype.cp=function(t){this.n=t},n.prototype.ca=function(){this.r=!0,null!=this.n&&this.n()},Object.defineProperty(n.prototype,"isCanvasBased",{get:function(){return!0},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bq",{get:function(){return this.bp},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isRemoved",{get:function(){return this.t},set:function(t){this.t=t},enumerable:!1,configurable:!0}),n.prototype.cr=function(t){this.b3=t,this.r=!0,this.v=!0},Object.defineProperty(n.prototype,"templateContext",{get:function(){return this.m.h()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"z",{get:function(){return this.o},set:function(t){this.o=t},enumerable:!1,configurable:!0}),n.prototype.get_af=function(){return!1},Object.defineProperty(n.prototype,"af",{get:function(){return this.get_af()},enumerable:!1,configurable:!0}),n.prototype.ch=function(t,e,i,n,r){this.r=!0,this.c1=t,this.al=e,this.an=i,this.am=n,this.ak=r,this.v=!0},n.prototype.ci=function(t){this.r=!0,this.at=t,this.c0._opacity=this.at},Object.defineProperty(n.prototype,"bf",{get:function(){return this.ax},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bh",{get:function(){return this.az},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bg",{get:function(){return this.ay},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"be",{get:function(){return this.aw},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ba",{get:function(){return this.al},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bc",{get:function(){return this.an},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bb",{get:function(){return this.am},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a9",{get:function(){return this.ak},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bj",{get:function(){return this.a3},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bl",{get:function(){return this.a5},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bm",{get:function(){return this.a7},enumerable:!1,configurable:!0}),n.prototype.get_ag=function(){return!1},Object.defineProperty(n.prototype,"ag",{get:function(){return this.get_ag()},enumerable:!1,configurable:!0}),n.prototype.b6=function(t,e,i,n,r,o){var s=!0,a=!0,l=!1;this.ag&&(s=!1,a=!1,l=!1),this.b7(t,e,i,n,r,o,s,a,l)},Object.defineProperty(n.prototype,"resized",{get:function(){return this.x},enumerable:!1,configurable:!0}),n.prototype.ensureCorrectSize=function(){return this.x=this.aa(this.a0),this.x},n.prototype.b7=function(t,e,i,n,r,o,s,a,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 h=Math.round(n-e),c=Math.round(r-i);u.ag(h,c)}s&&this.cb(u),a&&this.cc(u),this.y||u.z(),1!=o&&u.z()}if(!l&&this.y){var p=Math.round((n-e)*o),d=Math.round((r-i)*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)}},n.prototype.bx=function(){return this.br.getNativeElement()},n.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)))},n.prototype.co=function(t){this.a0=t},n.prototype.renderStandardContent=function(){this.b7(this.m,0,0,0,0,this.a0,!1,!0,!0)},n.prototype.renderStandardBackground=function(){this.b7(this.m,0,0,0,0,this.a0,!0,!1,!0)},n.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)))},n.prototype.b8=function(){if(null==this.br&&this.y){this.br=this.bp.createElement("canvas");var t=this.bp.get2DCanvasContext(this.br),e=((n=new i.CanvasViewRenderer).h$d=t,n);this.m=new i.RenderingContext(e,t),this.v=!0}var n},n.prototype.aa=function(t){var e=Math.round(this.a8*t),i=Math.round(this.av*t);this.ap=e,this.ao=i;var n=this.bi(e),r=this.bi(i);return(n!=this.ar||r!=this.aq)&&(this.br.setAttribute("width",n+"px"),this.br.setAttribute("height",r+"px"),this.ar=n,this.aq=r,this.ap=e,this.ao=i,!0)},n.prototype.bi=function(t){return t},n.prototype.cn=function(t,e,i,n){this.r=!0,this.ax=t,this.az=e,this.ay=i,this.aw=n,this.v=!0},Object.defineProperty(n.prototype,"bk",{get:function(){return this.a4},set:function(t){this.a4=t},enumerable:!1,configurable:!0}),n.prototype.cs=function(t){var e,n=this;this.r=!0,this.c3=t,this.c0.ao=((e=new i.Brush).color=n.c3,e)},n.prototype.get_ae=function(){return!1},Object.defineProperty(n.prototype,"ae",{get:function(){return this.get_ae()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ah",{get:function(){return this.w},set:function(t){this.r=!0,this.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bd",{get:function(){return this.av},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bo",{get:function(){return this.a8},enumerable:!1,configurable:!0}),n.prototype.ck=function(t){this.r=!0,this.av=t,this.c9.height=this.av},n.prototype.cu=function(t){this.r=!0,this.a8=t,this.c9.width=this.a8,this.v=!0},n.prototype.b5=function(){this.af&&(this.o=!0,this.a=new ms,this.d=0,this.f=1,this.a.l=i.Color.u(120,120,120,120),this.a.h=0)},n.prototype.cg=function(t){var e,n=this;this.r=!0,this.c2=t,this.p=255==this.c2.l,this.c9._fill=((e=new i.Brush).color=n.c2,e)},n.prototype.cm=function(t){this.r=!0,this.b2=t},n.prototype.cq=function(t){this.u=t,this.r=!0},n.prototype.l=function(){return null!=i.TestRandomness.instance.testRandomnessSource?i.TestRandomness.instance.testRandomnessSource:new i.DefaultRandomnessSource(1,n.bz)},n.prototype.k=function(){return this.l().getGenerator("PlaceholderWidths")},n.prototype.cy=function(t){this.af&&(this.r=!0,this.a.h=.20000000298023224*t)},n.prototype.b9=function(t,e,n,r){if(null!=this.a){var o=this.a2,s=this.a1;1==this.f?e=i.truncate(e+r/2-s/2):2==this.f&&(e=i.truncate(e+r-s)),1==this.d?t=i.truncate(t+n/2-o/2):2==this.d&&(t=i.truncate(t+n-o))}},n.prototype.cj=function(t){this.i=t,this.s=!0,this.r=!0,this.v=!0},n.prototype.cx=function(t){if(this.af){this.r=!0;var e=i.DeviceUtils.f(12);null==t.ag||i.isNaN_(t.ag.f)||(e=t.ag.f),this.a1!=e&&(this.a1=e);var r=.2*t.hd,o=.6*t.fu;if(!(this.a2>=r&&this.a2<=o)){null==n.j&&(n.j=this.k());var s=n.j.nextDouble()*(o-r)+r;this.a2!=s&&(this.a2=s)}}},n.prototype.cv=function(t,e){this.af&&(this.r=!0,this.d=t,this.f=e)},n.prototype.cw=function(t){this.af&&(this.r=!0)},n.prototype.cf=function(t){this.b=t},Object.defineProperty(n.prototype,"e",{get:function(){return this.c},enumerable:!1,configurable:!0}),n.prototype.cl=function(t){this.c=t,this.r=!0,this.v=!0},n.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=i.FontUtil.getCurrentFontHeight(this.bp,this.i)),e=this.au;var n=0,r=0,o=this.a8,s=this.av;o-=this.al+this.ax+this.am+this.ay,s-=this.an+this.az+this.ak+this.aw,o=Math.max(o,0),s=Math.max(s,0);var a=o;!i.isNaN_(this.a4)&&this.a4<o&&(a=this.a4);var l=this.bn(this.c0,this.b3,a,t);switch(this.c){case 0:n=this.ax+this.al;break;case 3:case 1:n=this.ax+this.al+(o/2-l/2);break;case 2:n=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+(s/2-e/2);break;case 2:r=Math.max(0,this.av-(this.aw+this.ak))-e}this.a3=n,this.a5=this.a3+l,this.a6=r,this.a7=this.a6+e/2,this.r=!0}},n.prototype.bn=function(t,e,n,r){var o=e,s=o.length,a="…";if(i.isNaN_(this.as)&&(this.as=r.g(a)),n<=this.as)return t.al=a,this.as;var l=r.g(o);if(l<=n)return t.al=e,l;var u=n/l,h=i.truncate(Math.ceil(s*u)),c=o.substr(0,h)+a,p=r.g(c);for(p>n?s=h:(h+=1,c=o.substr(0,h)+a,(p=r.g(c))>n&&(s=h));l>n&&s>0;)s--,o=o.substr(0,s)+a,l=r.g(o);return t.al=o,l},n.prototype.ct=function(t){this.g=t,this.r=!0,this.v=!0},n.prototype.aj=function(t){return t.isClickActionDesired},n.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))},n.prototype.onContactMoved=function(t,e){if(null!=this.b&&this.aj(this.b)){var r=t.pageX,o=t.pageY;this.b.isMouseDown&&(e?i.PointUtil.equals(this.b.mousePosition,null)||Math.abs(r-this.b.mousePosition.x)>n.bv||Math.abs(o-this.b.mousePosition.y)>n.bv?this.b.mouseUpCell(r,o):t.stopPropagation():i.PointUtil.equals(this.b.mousePosition,null)?this.b.mouseUpCell(r,o):(Math.abs(r-this.b.mousePosition.x)>n.bt||Math.abs(o-this.b.mousePosition.y)>n.bt)&&(this.b.isControlPressed=t.ctrlKey,this.b.dragStarted()))}},n.prototype.onContactCompleted=function(t,e){if(null!=this.b&&this.aj(this.b)){var r=t.pageX,o=t.pageY;if((i.PointUtil.equals(this.b.mousePosition,null)||Math.abs(r-this.b.mousePosition.x)>n.bv||Math.abs(o-this.b.mousePosition.y)>n.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)}}},n.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)}},n.prototype.detach=function(){},n.$t=i.markType(n,"CanvasGridCellBase",i.Base.$,[fs]),n.j=null,n.bz=new i.Random(0),n.bv=10,n.bt=3,n}(i.Base),bs=function(t){function n(e){var i=t.call(this,e)||this;return i.cl(0),i.ct(1),i}return e.__extends(n,t),n.prototype.get_af=function(){return!0},n.$t=i.markType(n,"CanvasTextCell",gs.$),n}(gs),ys=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),n.prototype.modelUpdated=function(t){this.b(t)},n.prototype.b=function(t){this.a.cf(t.c),(t.a8(Ei.em)||t.a8(Ei.eq)||t.a8(Ei.eo)||t.a8(Ei.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(Ei.d6)&&this.a.cg(t.lu.color),t.a8(Ei.ei)&&this.a.cm(t.ch)),t.bo&&t.bi&&this.a.cx(t)},n.prototype.c=function(t,e,n){return 0==n?t.color:1==n?e.color:i.BrushUtil.n(t,n,e,0).color},Object.defineProperty(n.prototype,"nativeCell",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isCanvasBased",{get:function(){return!0},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CanvasCellPresenterBase",i.Base.$,[xi]),n}(i.Base),vs=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.e=function(t){return null==t?n.d:t.color},n.a=function(t,e,i){if(e.a3){if(e.a8(Ei.fa)||e.a8(Ei.eg)||e.a8(Ei.hc)||e.a7("IsRowPinned")||e.a7("IsRowSticky")||e.a7("PinnedRowOpacity")){var r=Math.min(1,Math.max(0,e.ct)),o=e.cg*(1-r);i.ci(o),e.bi&&i.cy(e.cg*r)}if(e.a8(Ei.er)&&(n.c(i,e.lw),e.bi&&i.cw(e.lw)),e.a8(Ei.gg),e.a8(Ei.fw)||e.a8(Ei.hb)){var s=e.g,a=e.i;i.cl(s),i.ct(a),e.bi&&i.cv(s,a)}e.a7("ActualFontInfo")&&n.b(t,i,e.ag),(e.a7("IsEdited")||e.a7("IsDeleted"))&&((e.a9||e.a6)&&e.a6?i.cq(!0):i.cq(!1))}},n.b=function(t,e,n){null==n&&(n=i.FontUtil.getDefaultFont(t)),e.cj(n)},n.c=function(t,e){var i=n.e(e);t.cs(i)},n.$t=i.markType(n,"CanvasContentCellModelHelper"),n.d=i.Color.u(0,0,0,0),n}(i.Base),Cs=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(Hi.mf)||e.a8(Ei.gj))&&(null!=i.mh?i.j1=i.mh:null==i.hm?i.j1="":i.j1=i.hm.toString(),this.d.cr(i.j1)),vs.a(this.a.bq,i,this.a))},n.$t=i.markType(n,"CanvasTextCellPresenter",ys.$),n}(ys),_s=function(t){function n(e){var i=t.call(this,e)||this;return i.cl(2),i.ct(1),i}return e.__extends(n,t),n.$t=i.markType(n,"CanvasNumericCell",bs.$),n}(bs),ws=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(Gi.m4)||i.ml())&&(i.j1=this.e(i),this.d.cr(i.j1)),vs.a(this.a.bq,i,this.a))},n.prototype.e=function(t){if(null!=t.na){var e=t.mo;return t.na.format(e)}return Hn.c(t)},n.$t=i.markType(n,"CanvasNumericCellPresenter",ys.$),n}(ys),Ss=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),n.$t=i.markType(n,"CanvasDateTimeCell",bs.$),n}(bs),Ps=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(Bi.mr)||e.a8(Bi.ms)||e.a8(Bi.mq))&&(this.e(i),this.d.cr(i.j1)),vs.a(this.a.bq,i,this.a))},n.prototype.e=function(t){t.j1=t.m3(t.mp),t.j1==i.stringEmpty()&&null===i.typeCast(i.Date_$type,t.hm)&&(t.j1=t.hm.toString())},n.$t=i.markType(n,"CanvasDateTimeCellPresenter",ys.$),n}(ys),Os=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"SortIndicatorRenderCompletedEventArgs",i.EventArgs.$),n}(i.EventArgs),xs=function(t){function n(e){var n=t.call(this)||this;return n.a=null,n.d=new i.List$1(i.Path.$,0),n.i=0,n.h=0,n.b=0,n.m=null,n.c=null,n.l=null,n.f=0,n.e=0,n.g=1,n.k=0,n.j=0,n.a=e,n}return e.__extends(n,t),n.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=i.truncate(Math.round(t)),this.e=i.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 n=0;n<this.d.count;n++){this.c.k(this.d._inner[n].j);var r=this.y();null!=this.a.a0&&(r=this.a.a0),this.d._inner[n]._stroke=r,this.c.t(this.d._inner[n])}this.c.z(),this.c.d&&1!=this.g&&this.c.z(),this.a.at()}},n.prototype.u=function(){this.t()},n.prototype.n=function(){this.a.an(this.k,this.j,this.d)},n.prototype.v=function(){var t=this;if(1==this.d.count){this.d._inner[0]._opacity=this.a.r;var e,n={$type:i.Point_$type,x:this.k/2,y:this.j/2},r=new i.TransformGroup;r.j.add(((e=new i.TranslateTransform).j=-n.x,e.k=-n.y,e)),r.j.add(function(){var e=new i.RotateTransform;return e.j=t.a.q,e}()),r.j.add(function(){var t=new i.TranslateTransform;return t.j=n.x,t.k=n.y,t}()),this.d._inner[0].j=r}},n.prototype.o=function(){this.a.ao(this.k,this.j,this.d)},n.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)},n.prototype.p=function(){this.a.ap(this.k,this.j,this.d)},n.prototype.x=function(){this.d._inner[0]._opacity=this.a.r,this.d._inner[1]._opacity=this.a.x},n.prototype.r=function(t){if(null==t)return this.m=null,this.l=null,void(this.c=null);this.g=i.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 n=this.g,r=Math.round(e.rootWrapper.width()),o=Math.round(e.rootWrapper.height()),s=r*n,a=o*n;this.l.rootWrapper.setStyleProperty("position","relative");var l=this.l.createElement("canvas");l.setStyleProperty("position","absolute"),this.l.append(l),this.f=i.truncate(Math.round(s)),this.e=i.truncate(Math.round(a)),l.setAttribute("width",s.toString()),l.setAttribute("height",a.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 i.RenderingContext(new i.CanvasViewRenderer,u),i.isNaN_(this.a.w)&&(this.a.p=window.devicePixelRatio,this.g=this.a.p),this.t()},n.prototype.s=function(t,e){i.isNaN_(this.a.w)&&(this.a.p=window.devicePixelRatio,this.g=this.a.p),this.k=t,this.j=e,this.t()},n.prototype.q=function(){i.isNaN_(this.a.w)&&(this.a.p=window.devicePixelRatio,this.g!=this.a.p&&(this.g=this.a.p,this.t()))},n.prototype.y=function(){return I.br},n.$t=i.markType(n,"GridSortIndicatorView"),n}(i.Base),js=function(t){function n(){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 xs(e),e.g=new i.DoubleAnimator(0,1,400),e.h=new i.DoubleAnimator(0,1,400),e.g.b=i.EasingFunctions.cubicEase,e.h.b=i.EasingFunctions.cubicEase;var n=e.g;n.propertyChanged=i.delegateCombine(n.propertyChanged,i.runOn(e,e.al));var r=e.h;return r.propertyChanged=i.delegateCombine(r.propertyChanged,i.runOn(e,e.am)),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"ac",{get:function(){return this.ab},set:function(t){this.ab=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},set:function(t){var e=this.a;this.a=t,e!=this.a&&this.as("SortDirection",i.enumGetBox(x,e),i.enumGetBox(x,this.a))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"i",{get:function(){return this.g},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.h},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"f",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.as("SortIndicatorStyle",i.enumGetBox(s,e),i.enumGetBox(s,this.e))},enumerable:!1,configurable:!0}),n.prototype.as=function(t,e,n){this.aw(t,e,n),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},Object.defineProperty(n.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}),n.prototype.aw=function(t,e,n){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(i.EnumUtil.getEnumValue(x,n),this.l);break;case 1:case 2:this.av(i.EnumUtil.getEnumValue(x,n),this.l)}}},n.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()},n.prototype.al=function(t,e){this.q=this.s+this.g.o*(this.y-this.s),this.c.u()},n.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())},n.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())},n.prototype.v=function(){switch(this.f){case 0:return 1;case 1:return.71;case 2:return 1}return 1},n.prototype.ax=function(t){this.c.r(t)},n.prototype.ay=function(t){this.j.u(t),this.i.u(t)},n.prototype.ad=function(){return this.c.m.getNativeElement()},n.prototype.ar=function(t,e){this.c.s(t,e)},n.prototype.aq=function(){this.c.q()},n.prototype.an=function(t,e,n){var r=Math.min(t,e),o={$type:i.Point_$type,x:t/2,y:e/2},s=.5*r,a=s/2,l=s/2.5,u=new i.PathFigure;u._startPoint={$type:i.Point_$type,x:o.x,y:o.y-a};var h=new i.LineSegment(1);h.c={$type:i.Point_$type,x:o.x,y:o.y+a},u._segments.add(h);var c=new i.PathFigure;c._startPoint={$type:i.Point_$type,x:o.x-l,y:o.y};var p=new i.LineSegment(1);p.c={$type:i.Point_$type,x:o.x,y:o.y+a};var d=new i.LineSegment(1);d.c={$type:i.Point_$type,x:o.x+l,y:o.y},c._segments.add(p),c._segments.add(d);var f=new i.PathGeometry;f.c.add(u),f.c.add(c);var m=new i.Path;m.an=f,m._stroke=this.c.y(),m.ad=1.5,m.am=2,n.add(m)},n.prototype.ao=function(t,e,n){var r,o=this,s=i.Geometry.a("M3.792172, 7.800278 L7.983785, 3.635676 L12.148387, 7.800278L12.148387, 7.800278"),a=i.Geometry.a("M7.97027972,4.10930186 L7.97027972,13.8116223 L7.97027972,4.10930186 Z"),l=i.Geometry.a("M11.851613, 16.199722 L16.043224, 20.364325 L20.207829, 16.199722"),u=i.Geometry.a("M16.043224,10.1883777 L16.043224,19.8906981 L16.043224,10.1883777 Z");n.add(((r=new i.Path).an=s,r.am=2,r.stroke=o.c.y(),r.ad=2,r)),n.add(function(){var t=new i.Path;return t.an=a,t.am=2,t.stroke=o.c.y(),t.ad=2,t}()),n.add(function(){var t=new i.Path;return t.an=l,t.am=2,t.stroke=o.c.y(),t.ad=2,t}()),n.add(function(){var t=new i.Path;return t.an=u,t.am=2,t.stroke=o.c.y(),t.ad=2,t}())},n.prototype.ap=function(t,e,n){var r,o=this,s=(i.Point_$type,t/2),a=e/2,l={$type:i.Point_$type,x:s-3.5,y:a-1.5},u={$type:i.Point_$type,x:s-3.5,y:a+1.5},h=i.Geometry.a("M"+l.x.toString()+", "+l.y.toString()+" l 3.5,-3.5 3.5,3.5"),c=i.Geometry.a("M"+u.x.toString()+", "+u.y.toString()+" l 3.5,3.5 3.5,-3.5");n.add(((r=new i.Path).an=h,r.am=2,r.stroke=o.c.y(),r.ad=2,r)),n.add(function(){var t=new i.Path;return t.an=c,t.am=2,t.stroke=o.c.y(),t.ad=2,t}())},n.prototype.at=function(){null!=this.renderCompleted&&this.renderCompleted(this,new Os)},n.$t=i.markType(n,"GridSortIndicator",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),ks=function(t){function n(e){var n=t.call(this,e)||this;n.da=null,n.dd=null,n.dc=null,n.cl(0),n.ct(1),n.da=new js;var r=e.createElement("div");r.setRawStyleProperty("display","inline-block"),r.setRawStyleProperty("width","16px"),r.setRawStyleProperty("height","16px"),n.dd=r;var o=e.getSubRenderer(n.dd);n.da.ax(o),n.da.w=window.devicePixelRatio;var s=n.da;return s.renderCompleted=i.delegateCombine(s.renderCompleted,(function(t,e){return n.ca()})),n.da.ar(16,16),n.dc=n.da.ad(),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"db",{get:function(){return this.da},enumerable:!1,configurable:!0}),n.prototype.de=function(t){this.db.b=t,this.ca()},n.prototype.cc=function(e){t.prototype.cc.call(this,e);var i=this.bl+5;2==this.e&&(i=this.bj-21),e.n(this.dc,1,i,this.bm-8,16,16)},n.prototype.get_ae=function(){return!0},n.$t=i.markType(n,"CanvasTextHeaderCell",gs.$),n}(gs),Is=function(t){function n(e){var i=t.call(this,e)||this;return i.e=null,i}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.f=function(){null!=this.e&&this.e()},n.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;if(e.a3){if(e.a8(Hi.mf)&&(n.j1=n.mh,this.d.cr(n.j1)),e.a8(Ei.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(i.runOn(this,this.f)),e.bp&&(this.d.db.l=!0)}e.a8(Ei.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=n.mo),vs.a(this.a.bq,n,this.a)}},n.$t=i.markType(n,"CanvasTextHeaderCellPresenter",ys.$),n}(ys),Ts=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),n.$t=i.markType(n,"CanvasRowSeparatorCell",gs.$),n}(gs),Rs=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CanvasRowSeparatorCellPresenter",ys.$),n}(ys),As=function(t){function n(e){var i=t.call(this,e)||this;return i.da=1,i.db=3,i.df=null,i.dc=1,i.de=null,i.de=e.createElement("img"),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"dd",{get:function(){return this.dc},set:function(t){this.dc=t},enumerable:!1,configurable:!0}),n.prototype.di=function(t,e){this.dg(),this.de.setRawStyleProperty("opacity","0"),null!=t&&0!=t.length?i.Base.equalsStatic(t,this.df)||this.dl(t,e):this.dh(this.de)},n.prototype.dh=function(t){t.setAttribute("src","")},n.prototype.dl=function(t,e){this.df=t,this.de.setAttribute("src",t)},n.prototype.dg=function(){this.dh(this.de),this.df=""},n.prototype.dj=function(t){this.ad=!0,this.da=t},n.prototype.dk=function(t){this.ad=!0,this.db=t},n.prototype.get_af=function(){return!0},n.$t=i.markType(n,"CanvasImageCell",gs.$),n}(gs),Es=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;if(e.a3){if(e.a8(Ei.fa)||e.a8(Ei.hc)){var n=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-n);this.d.dd=r}(i.a8(Fi.mj)||i.a8(Fi.mk))&&this.e(i.mn,i.mg),(i.a8(Fi.ml)||i.a8(Fi.fw)||i.a8(Fi.hb))&&this.f(i.mi,i.g,i.i),i.a8(Fi.g6)&&(1==e.u?this.d.dg():2==e.u&&this.e(i.mn,i.mg))}},n.prototype.f=function(t,e,i){},n.prototype.e=function(t,e){var n=t.toLowerCase();if(0==e&&(e=4),(i.stringStartsWith(n,"http")||4==e)&&this.d.di(t,4),i.stringStartsWith(n,"asset")||2==e){var r=t;i.stringStartsWith(n,"asset")&&(r=t.substr(8)),this.d.di(r,2)}if(i.stringStartsWith(n,"drawable")||1==e){var o=t;i.stringStartsWith(n,"drawable")&&(o=t.substr(11)),this.d.di(o,1)}if(i.stringStartsWith(n,"nativeresource")||1==e){var s=t;i.stringStartsWith(n,"nativeresource")&&(s=t.substr(17)),this.d.di(s,1)}if(i.stringStartsWith(n,"embeddedresource")||3==e){var a=t;i.stringStartsWith(n,"embeddedresource")&&(a=t.substr(19)),this.d.di(a,3)}},n.$t=i.markType(n,"CanvasImageCellPresenter",ys.$),n}(ys),Bs=function(t){function n(e){var i=t.call(this)||this;return i.d=null,i.c=null,i._opacity=0,i.c=e,i}return e.__extends(n,t),Object.defineProperty(n.prototype,"isCanvasBased",{get:function(){return!0},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"opacity",{get:function(){return this._opacity},set:function(t){this._opacity=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CanvasTemplateCellContainer"),n}(i.Base),Ds=function(t){function n(e){var i=t.call(this,e)||this;return i.da=null,i.da=new Bs(e),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"db",{get:function(){return this.da},enumerable:!1,configurable:!0}),n.prototype.get_af=function(){return!0},n.prototype.dc=function(){this.b8()},n.$t=i.markType(n,"CanvasTemplateCell",gs.$),n}(gs),$s=function(t){function n(e,i){var n=t.call(this,e)||this;return n.e=null,n.e=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=this.e.actualColumns._inner[e.l.a5];if(e.a8(Ei.fa)||e.a8(Ei.hc)){var n=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-n);this.d.db.opacity=r}this.d.dc(),i.n4(e,this.d)},n.$t=i.markType(n,"CanvasTemplateCellPresenter",ys.$),n}(ys),Ms=function(t){function n(e){var i=t.call(this,e)||this;return i.da=null,i.da=new Bs(e),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"db",{get:function(){return this.da},enumerable:!1,configurable:!0}),n.prototype.get_ae=function(){return!0},n.prototype.dc=function(){this.b8()},n.$t=i.markType(n,"CanvasTemplateHeaderCell",gs.$),n}(gs),zs=function(t){function n(e,i){var n=t.call(this,e)||this;return n.e=null,n.e=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=this.e.actualColumns._inner[e.l.a5].header;if(e.a8(Ei.fa)||e.a8(Ei.hc)){var n=Math.min(1,Math.max(0,e.ct));e.cj}var r=e;this.d.dc(),i.hq(r,this.d)},n.$t=i.markType(n,"CanvasTemplateHeaderCellPresenter",ys.$),n}(ys),Ns=function(t){function n(e){var i=t.call(this,e)||this;return i.cl(0),i.ct(1),i}return e.__extends(n,t),n.prototype.get_af=function(){return!0},n.$t=i.markType(n,"CanvasSectionHeaderCell",gs.$),n}(gs),Fs=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(qi.ml)||e.a8(qi.mn))&&(null==i.mh||0==i.mh.length&&null==i.mv?null==i.hm?i.j1="":i.j1=i.hm.toString():null!=i.mt&&0==i.mk?i.j1=i.mv+" "+i.mt:i.j1=i.mv,this.d.cr(i.j1)),vs.a(this.a.bq,i,this.a))},n.$t=i.markType(n,"CanvasSectionHeaderCellPresenter",ys.$),n}(ys),Gs=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),n.$t=i.markType(n,"CanvasVerticalSeparatorCell",gs.$),n}(gs),Vs=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CanvasVerticalSeparatorCellPresenter",ys.$),n}(ys),qs=function(t){function n(e){var n=t.call(this,e)||this;return n.di=null,n.dn=new i.TextBlock,n.de=0,n.df=0,n.dd=0,n.da=null,n.dh=0,n.db=!1,n.dc=!0,n.dg=0,n.cl(2),n}return e.__extends(n,t),n.prototype.cu=function(e){t.prototype.cu.call(this,e),this.bk=i.intDivide(e,2),this.dc=!0},n.prototype.dl=function(t){this.da=t,this.db=!0,this.ad=!0,this.dc=!0},n.prototype.dj=function(t){this.di=t,this.dn.al=this.di,this.ad=!0,this.dc=!0},n.prototype.dk=function(t){var e;this.ad=!0,this.dn.ao=((e=new i.Brush).color=t,e)},n.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=i.FontUtil.getCurrentFontHeight(this.bq,this.da));var e=this.bo,n=this.bd;e-=this.ba+this.bf+this.bb+this.bg,n-=this.bc+this.bh+this.a9+this.be,e=Math.max(e,0),n=Math.max(n,0),this.dg=this.bn(this.dn,this.di,e/2,t),this.de=this.bf+this.ba,this.df=this.bh+this.bc+(n/2-this.dd/2)}},n.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)},n.prototype.get_af=function(){return!1},n.$t=i.markType(n,"CanvasSummaryCell",gs.$),n}(gs),Ls=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;if(e.a3){if((e.a7("ResolvedSummaryLabel")||e.a7("ResolvedSummaryValue"))&&(this.d.dj(i.mn),this.d.cr(i.mp)),e.a7("SummaryLabelTextColor")){var n=vs.e(i.mu);this.d.dk(n)}e.a7("FontInfo")&&this.d.dl(i.ag),vs.a(this.a.bq,i,this.a)}},n.$t=i.markType(n,"CanvasSummaryCellPresenter",ys.$),n}(ys),Hs=function(t){function n(e){var n=t.call(this)||this;return n.k=null,n.f=1,n.e=0,n.d=0,n.c=new i.List$1(i.Path.$,0),n.m=null,n.b=null,n.l=null,n.j=0,n.g=0,n.i=0,n.h=0,n.a=null,n.a=e,n}return e.__extends(n,t),n.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=i.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 n=this.f,r=Math.round(e.rootWrapper.width()),o=Math.round(e.rootWrapper.height()),s=r*n,a=o*n,l=this.l.createElement("canvas");l.setStyleProperty("position","absolute"),this.l.append(l),this.e=i.truncate(Math.round(s)),this.d=i.truncate(Math.round(a)),l.setAttribute("width",s.toString()),l.setAttribute("height",a.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 i.RenderingContext(new i.CanvasViewRenderer,u),i.isNaN_(this.a.m)&&(this.a.j=window.devicePixelRatio,this.f=this.a.j),this.q()},n.prototype.p=function(t,e){this.j=t,this.g=e,this.q()},n.prototype.s=function(){return null!=this.a.ae?this.a.ae:((t=new i.Brush).color=i.Color.u(138,0,0,0),t);var t},n.prototype.r=function(){this.q()},n.prototype.n=function(){this.c.clear(),this.a.x(this.j,this.g,this.c)},n.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:i.Point_$type,x:this.j/2,y:this.g/2},n=new i.TransformGroup;n.j.add(((r=new i.TranslateTransform).j=-e.x,r.k=-e.y,r)),n.j.add(function(){var e=new i.RotateTransform;return e.j=t.a.k,e}()),n.j.add(function(){var t=new i.TranslateTransform;return t.j=e.x,t.k=e.y,t}()),this.c._inner[0].j=n}var r,o=Math.round(this.j*this.f),s=Math.round(this.g*this.f);this.e==o&&this.d==s||(this.m.setAttribute("width",o.toString()),this.m.setAttribute("height",s.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=i.truncate(Math.round(o)),this.d=i.truncate(Math.round(s))),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 a=0;a<this.c.count;a++){this.b.k(this.c._inner[a].j);var l=this.s();null!=this.a.ae&&(l=this.a.ae),this.c._inner[a]._stroke=l,this.b.t(this.c._inner[a])}this.b.z(),this.b.d&&1!=this.f&&this.b.z()}},n.$t=i.markType(n,"GridExpansionIndicatorView"),n}(i.Base),Ws=function(t){function n(){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 Hs(e),e.b=new i.DoubleAnimator(0,1,400),e.b.b=i.EasingFunctions.cubicEase;var n=e.b;return n.propertyChanged=i.delegateCombine(n.propertyChanged,i.runOn(e,e.w)),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"p",{get:function(){return this.o},set:function(t){this.o=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.prototype,"c",{get:function(){return this.b},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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}),n.prototype.z=function(t,e,n){this.aa(t,e,n),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.aa=function(t,e,i){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())}},n.prototype.w=function(t,e){this.k=this.l+this.b.o*(this.n-this.l),this.a.r()},n.prototype.x=function(t,e,n){var r,o=this,s=i.Geometry.a("M 10.18 6.343 l 5.64 5.675 -5.64 5.639");n.add(((r=new i.Path).an=s,r.am=2,r.stroke=o.a.s(),r.ad=2,r))},n.prototype.ab=function(t){this.a.o(t)},n.prototype.ac=function(t){this.c.u(t)},n.prototype.q=function(){return this.a.m.getNativeElement()},n.prototype.y=function(t,e){this.a.p(t,e)},n.$t=i.markType(n,"GridExpansionIndicator",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),Us=function(t){function n(e){var n=t.call(this)||this;return n.f=null,n.k=new i.Color,n.h=1,n.a=!0,n.c=0,n.b=0,n.g=null,n.f=e,n.g=n.f.createElement("div"),n.g.setRawStyleProperty("position","absolute"),n.g.setRawStyleProperty("pointer-events","none"),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"l",{get:function(){return this.k},set:function(t){this.k=t,this.j()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.h},set:function(t){this.a=!0,this.h=t,this.j()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e",{get:function(){return this.c},set:function(t){this.c=t,this.j()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.b},set:function(t){this.b=t,this.j()},enumerable:!1,configurable:!0}),n.prototype.j=function(){var t=this.e,e=this.d,n=i.Color.u(i.truncate(this.k.l*this.h),this.k.o,this.k.n,this.k.m);this.g.setRawStyleProperty("background-color",n.colorString),this.g.setRawStyleProperty("width",t+"px"),this.g.setRawStyleProperty("height",e+"px")},n.$t=i.markType(n,"PlaceholderView"),n}(i.Base),Ks=function(t){function n(e){var n=t.call(this)||this;n.a=null,n.e=null,n.c=null,n.ad=null,n.af=null,n.s=!1,n.ag=null,n.i=null,n.as=0,n.ap=24,n.ar=0,n.aq=0,n.av=0,n.p=!1,n.q=!1,n.r=!0,n.n=!1,n.ax=0,n.az=0,n.ay=0,n.aw=0,n.ak=0,n.am=0,n.al=0,n.aj=0,n.cj=null,n.at=0,n.a2=0,n.au=0,n.j=null,n.g=0,n.h=0,n.ac=0,n.ab=0,n.t=!1,n.a8=0,n.a9=0,n.ai=0,n.a1=-1,n.an=0,n.o=!1,n.ad=e,n.af=n.ad.createElement("div"),n.af.setAttribute("tabindex","-1"),n.af.setRawStyleProperty("position","absolute"),n.af.setRawStyleProperty("overflow","hidden"),n.af.setRawStyleProperty("box-sizing","border-box"),n.af.setRawStyleProperty("outline","none");var r=window.navigator.msPointerEnabled&&void 0!==window.MSGesture,o=void 0!==window.PointerEvent;window.TouchEvent;return r||o?(n.af.listen("pointerdown",i.runOn(n,n.bt)),n.af.listen("pointerup",i.runOn(n,n.bx)),n.af.listen("pointermove",i.runOn(n,n.bw)),n.af.listen("pointerleave",i.runOn(n,n.bv)),n.af.listen("pointerenter",i.runOn(n,n.bu))):(n.af.listen("mousedown",i.runOn(n,n.bj)),n.af.listen("mouseup",i.runOn(n,n.bn)),n.af.listen("mousemove",i.runOn(n,n.bm)),n.af.listen("mouseleave",i.runOn(n,n.bl)),n.af.listen("touchstart",i.runOn(n,n.cb)),n.af.listen("touchend",i.runOn(n,n.cd)),n.af.listen("touchmove",i.runOn(n,n.cc))),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"f",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.c},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ae",{get:function(){return this.ad},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ah",{get:function(){return this.af},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"a5",{get:function(){return this.as},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a3",{get:function(){return this.aq},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"a4",{get:function(){return this.ar},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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}),n.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(i.intDivide(this.at,2)-i.intDivide(this.ap,2))),null==this.i){var t=this.ad.getSubRenderer(this.ag);this.i=new Ws,this.i.ab(t),this.i.y(24,24)}null==this.ag.parent()&&this.af.append(this.ag)},n.prototype.by=function(){this.as=0,this.ar=0,null!=this.ag&&null!=this.ag.parent()&&this.ag.remove()},Object.defineProperty(n.prototype,"u",{get:function(){return this.n},set:function(t){this.n=t},enumerable:!1,configurable:!0}),n.prototype.get_z=function(){return!1},Object.defineProperty(n.prototype,"z",{get:function(){return this.get_z()},enumerable:!1,configurable:!0}),n.prototype.b7=function(t,e,i,n){this.ax=t,this.az=e,this.ay=i,this.aw=n,this.af.setRawStyleProperty("padding-left",t.toString()+"px"),this.af.setRawStyleProperty("padding-top",e.toString()+"px"),this.af.setRawStyleProperty("padding-right",i.toString()+"px"),this.af.setRawStyleProperty("padding-bottom",n.toString()+"px")},n.prototype.b1=function(t,e,i,n,r){this.ak=e,this.am=i,this.al=n,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",i.toString()+"px"),this.af.setRawStyleProperty("border-right-width",n.toString()+"px"),this.af.setRawStyleProperty("border-bottom-width",r.toString()+"px"),this.af.setRawStyleProperty("border-style","solid"))},n.prototype.get_x=function(){return!1},Object.defineProperty(n.prototype,"x",{get:function(){return this.get_x()},enumerable:!1,configurable:!0}),n.prototype.b3=function(t,e){if(this.at!=t||this.au!=e){var n=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(i.intDivide(this.at,2)-i.intDivide(this.as,2)),this.ca(this.a2,this.at,this.a2,n)}},n.prototype.b9=function(t,e){if(this.a2!=t){var i=this.a2;this.a2=t,this.af.setRawStyleProperty("width",t.toString()+"px"),this.ca(this.a2,this.at,i,this.at)}},n.prototype.ca=function(t,e,i,n){},n.prototype.bg=function(){this.z&&(this.n=!0,this.j=new Us(this.ad),this.g=0,this.h=1,this.j.l=i.Color.u(120,120,120,120),this.j.i=0,this.af.append(this.j.g))},n.prototype.b0=function(t){this.af.setRawStyleProperty("background-color",t.colorString)},n.prototype.b6=function(t){this.af.setRawStyleProperty("opacity",t.toString())},n.prototype.m=function(){return null!=i.TestRandomness.instance.testRandomnessSource?i.TestRandomness.instance.testRandomnessSource:new i.DefaultRandomnessSource(1,n.a7)},n.prototype.l=function(){return this.m().getGenerator("PlaceholderWidths")},n.prototype.ci=function(t){this.z&&(this.j.i=.20000000298023224*t)},n.prototype.cg=function(t,e,n,r){if(null!=this.j){var o=this.ac,s=this.ab;1==this.h?e=i.truncate(e+r/2-s/2):2==this.h&&(e=i.truncate(e+r-s)),1==this.g?t=i.truncate(t+n/2-o/2):2==this.g&&(t=i.truncate(t+n-o)),this.j.g.setRawXPosition(t),this.j.g.setRawYPosition(e)}},n.prototype.bq=function(t,e,i){},n.prototype.ch=function(t){if(this.z){var e=i.DeviceUtils.f(12);null==t.ag||i.isNaN_(t.ag.f)||(e=t.ag.f),this.ab!=e&&(this.ab=e,this.j.d=e);var r=.2*t.hd,o=.6*t.fu;if(!(this.ac>=r&&this.ac<=o)||this.t){this.t=!1,null==n.k&&(n.k=this.l());var s=n.k.nextDouble()*(o-r)+r;this.ac!=s&&(this.ac=s,this.j.e=s),this.cg(this.ax+this.aq+this.as,this.az,this.a2-(this.ax+this.ay),this.at-(this.az+this.aw))}}},n.prototype.ce=function(t,e){this.z&&(this.g=t,this.h=e,this.t=!0)},n.prototype.cf=function(t){this.z&&null!=t&&(this.j.l=t.color)},n.prototype.bz=function(t){this.a=t},n.prototype.b5=function(t){this.e=t},n.prototype.b2=function(t){this.c=t},n.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")}},n.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")}},n.prototype.aa=function(t){return t.isClickActionDesired},n.prototype.bj=function(t){this.onContactStarted(t,!1)},n.prototype.bn=function(t){this.onContactCompleted(t,!1)},n.prototype.bm=function(t){this.onContactMoved(t,!1)},n.prototype.bl=function(t){this.bp(t,!1)},n.prototype.bk=function(t){this.bo(t,!1)},n.prototype.bt=function(t){"touch"==t.originalEvent.pointerType?this.cb(t):this.bj(t)},n.prototype.bw=function(t){"touch"==t.originalEvent.pointerType?this.cc(t):this.bm(t)},n.prototype.bx=function(t){"touch"==t.originalEvent.pointerType?this.cd(t):this.bn(t)},n.prototype.bv=function(t){"touch"!=t.originalEvent.pointerType&&this.bl(t)},n.prototype.bu=function(t){"touch"!=t.originalEvent.pointerType&&this.bk(t)},n.prototype.cb=function(t){this.onContactStarted(t,!0)},n.prototype.cc=function(t){this.onContactMoved(t,!0)},n.prototype.cd=function(t){this.onContactCompleted(t,!0)},n.prototype.onContactStarted=function(t,e){var i=!1;if(this.v){var n=this.i.q();i=t.originalEvent.srcElement===n||t.originalEvent.target===n}this.o=!1,i?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))},n.prototype.onContactMoved=function(t,e){if(null!=this.a){var r=t.pageX,o=t.pageY;this.aa(this.a)&&this.a.isMouseDown&&(e?i.PointUtil.equals(this.a.mousePosition,null)||Math.abs(r-this.a.mousePosition.x)>n.a0||Math.abs(o-this.a.mousePosition.y)>n.a0?this.a.mouseUpCell(r,o):t.stopPropagation():i.PointUtil.equals(this.a.mousePosition,null)?this.a.mouseUpCell(r,o):1==this.a1&&(Math.abs(r-this.a.mousePosition.x)>n.ao||Math.abs(o-this.a.mousePosition.y)>n.ao)&&(this.a.isControlPressed=t.ctrlKey,this.a.dragStarted())),this.a.isHoverActionDesired&&this.a.mouseIsOver(r,o)}},n.prototype.onContactCompleted=function(t,e){var r=this;this.an++,window.setTimeout((function(){return r.an=0}),250);var o=!1;if(this.v){var s=this.i.q();o=t.originalEvent.srcElement===s||t.originalEvent.target===s}if(this.o&&o)this.b.clickExpansionIndicator();else if(null!=this.a&&this.aa(this.a)){var a=t.pageX,l=t.pageY;if((i.PointUtil.equals(this.a.mousePosition,null)||Math.abs(a-this.a.mousePosition.x)>n.a0||Math.abs(l-this.a.mousePosition.y)>n.a0||this.a.isDrag)&&this.a.mouseUpCell(a,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},n.prototype.bp=function(t,e){if(null!=this.a&&(this.aa(this.a)&&this.a.isMouseDown&&!e&&i.PointUtil.notEquals(this.a.mousePosition,null)&&(this.a.isControlPressed=t.ctrlKey,this.a.dragStarted()),this.a.isLeaveActionDesired)){var n=t.pageX,r=t.pageY;this.a.mouseLeaveCell(n,r)}},n.prototype.bo=function(t,e){if(null!=this.a&&this.a.isEnterActionDesired){var i=t.pageX,n=t.pageY;this.a.mouseEnterCell(i,n)}},n.prototype.onDoubleClick=function(t){},n.prototype.bs=function(t,e,n){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(i.intDivide(this.at,2)-i.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")}},n.prototype.br=function(){},n.prototype.bh=function(){this.af.focus(!0)},n.prototype.bf=function(){if(null!=this.a){var t=this.af.clone();this.a.passCellClone(t)}},n.prototype.detach=function(){},n.$t=i.markType(n,"GridCellBase",i.Base.$,[fs]),n.k=null,n.a7=new i.Random(0),n.a0=10,n.ao=3,n}(i.Base),Xs=new i.Type(null,"IEditorView"),Qs=function(t){function n(e,i){var n=t.call(this)||this;return n.d=!1,n.j=null,n.e=!0,n.c=!0,n.f=!0,n.b=null,n.i=null,n._container=null,n.g=!1,n.y=null,n.valueProvided=null,n.userTyping=null,n.lostFocus=null,n.gotFocus=null,n.a=null,n.i=e,n.a=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"container",{get:function(){return this._container},set:function(t){this._container=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"focusOnValueChanged",{get:function(){return this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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}),n.prototype.r=function(t,e){null!=this.valueProvided&&this.valueProvided(this,t,e)},n.prototype.q=function(){null!=this.userTyping&&this.userTyping(this)},n.prototype.p=function(){null!=this.lostFocus&&this.lostFocus(this)},n.prototype.o=function(){null!=this.gotFocus&&this.gotFocus(this)},n.prototype.h=function(){return null!=this.a&&this.a.shouldSkipFocusRetain()},n.prototype.setFont=function(t){},n.prototype.attachEvents=function(){},n.prototype.detachEvents=function(){},n.prototype.onTargetChanged=function(){},n.prototype.onEditEnded=function(){this.g=!1},n.prototype.onEditStarted=function(){this.g=!0},n.prototype.cleanUp=function(){this.j=null,this.g=!1},n.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)},n.prototype.t=function(){},n.prototype.getEditorValue=function(){return null},n.prototype.setEditorValue=function(t){},n.prototype.v=function(t,e,i){switch(t){case"Value":this.x();break;case"IsEnabled":this.s();break;case"TextColor":this.w()}},n.prototype.x=function(){},n.prototype.s=function(){},n.prototype.w=function(){},n.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()}}},n.$t=i.markType(n,"BaseEditorView",i.Base.$,[Xs]),n}(i.Base),Ys=function(t){function r(e,i,r){var o=t.call(this,e,r)||this;o.ab=null,o.aa=null,o.z=null;var s=e.createElement("div");s.setRawStyleProperty("display","flex"),s.setRawStyleProperty("width","100%"),s.setRawStyleProperty("margin-top","-10px"),s.setRawStyleProperty("height","38px"),o.container=s;var a=e.getSubRenderer(s);o.aa=new n.XInputGroup,o.aa.provideContainer(a),o.aa.d=0,o.aa.p=i,o.aa.t=3,o.aa.disabled=!o.isEnabled;a.getExternal(o.aa,a.rootWrapper,null);var l=e.createElement("div");l.setRawStyleProperty("width","100%");var u=e.getSubRenderer(l);o.z=new n.XInput,o.z.provideContainer(u),o.z.b8="text",o.z.disabled=!o.isEnabled,o.z.d8=o.textColor;a.getExternal(o.z,u.rootWrapper,null);return o.aa.appendContentChild(l),o.aa.inputs.add(o.z),o}return e.__extends(r,t),r.prototype.setFont=function(t){null!=this.z&&(this.z.af=t)},r.prototype.attachEvents=function(){if(null!=this.z){var t=this.z;t.changing=i.delegateCombine(t.changing,i.runOn(this,this.ad));var e=this.z;e.keyDown=i.delegateCombine(e.keyDown,i.runOn(this,this.onInputKeyDown));var n=this.z;n.compositionEnd=i.delegateCombine(n.compositionEnd,i.runOn(this,this.ac));var r=this.z;r.gotFocus=i.delegateCombine(r.gotFocus,i.runOn(this,this.ae));var o=this.z;o.lostFocus=i.delegateCombine(o.lostFocus,i.runOn(this,this.af))}},r.prototype.detachEvents=function(){if(null!=this.z){var t=this.z;t.changing=i.delegateRemove(t.changing,i.runOn(this,this.ad));var e=this.z;e.keyDown=i.delegateRemove(e.keyDown,i.runOn(this,this.onInputKeyDown));var n=this.z;n.compositionEnd=i.delegateRemove(n.compositionEnd,i.runOn(this,this.ac));var r=this.z;r.gotFocus=i.delegateRemove(r.gotFocus,i.runOn(this,this.ae));var o=this.z;o.lostFocus=i.delegateRemove(o.lostFocus,i.runOn(this,this.af))}},r.prototype.onTargetChanged=function(){this.ab=null,null!=this.z&&this.focus()},r.prototype.onEditStarted=function(){t.prototype.onEditStarted.call(this),this.a.isEditRefocusDesired||this.focus()},r.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())}},r.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))},r.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)},r.prototype.s=function(){null!=this.aa&&(this.aa.disabled=!this.isEnabled),null!=this.z&&(this.z.disabled=!this.isEnabled)},r.prototype.w=function(){t.prototype.w.call(this),null!=this.z&&(this.z.d8=this.textColor)},r.prototype.ad=function(t,e){this.q(),e.isCompositionInProgress||(null==this.ab||this.ab==e.value?this.r(e.value,!1):this.ab=null)},r.prototype.ac=function(t,e){this.ab=e.value,this.r(this.z.cq,!1)},r.prototype.af=function(t,e){this.p()},r.prototype.ae=function(t,e){this.o()},r.prototype.getEditorValue=function(){return null!=this.z?this.z.cq:null},r.prototype.setEditorValue=function(t){null!=this.z&&(this.z.cq=t)},r.$t=i.markType(r,"TextEditorView",Qs.$),r}(Qs),Zs=function(t){function n(e,i,n){var r=t.call(this,e,i,n)||this;return r.z.b8="number",r}return e.__extends(n,t),n.prototype.getEditorValue=function(){if(null==this.z||null==this.z.cq)return null;var t=NaN;return t=i.tryParseNumber(this.z.cq,t).p1},n.$t=i.markType(n,"NumericEditorView",Ys.$),n}(Ys),Js=function(t){function r(e,i,r){var o=t.call(this,e,r)||this;o.ae=null,o.z=null,o.aa=null,o.ac=!1,o.ab=!1;var s=e.createElement("div");s.setRawStyleProperty("width","100%"),s.setRawStyleProperty("margin-top","-10px"),s.setRawStyleProperty("height","38px"),o.container=s;var a=e.getSubRenderer(s),l=e.createElement("div");a.append(l);var u=e.createElement("div");a.append(u),o.z=new n.XDatePicker,o.z.ay=!1,o.z.provideContainer(a),o.z.w=i,o.z.y=3,o.z.a0=o.showClearButton,o.z.a1=o.ad,o.z.dy=o.textColor,o.z.bf=-1;a.getExternal(o.z,a.rootWrapper,null);return null!=o.aa&&(o.z.ad=o.aa),o.attachEvents(),o}return e.__extends(r,t),Object.defineProperty(r.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(r.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}),r.prototype.setFont=function(t){this.aa=t,null!=this.z&&null!=this.aa&&(this.z.ad=this.aa)},r.prototype.attachEvents=function(){if(null!=this.z){var t=this.z;t.selectedValueChanged=i.delegateCombine(t.selectedValueChanged,i.runOn(this,this.onDatePickerValueChanged));var e=this.z;e.gotFocus=i.delegateCombine(e.gotFocus,i.runOn(this,this.onDatePickerGotFocus));var n=this.z;n.lostFocus=i.delegateCombine(n.lostFocus,i.runOn(this,this.onDatePickerLostFocus));var r=this.z;r.keyDown=i.delegateCombine(r.keyDown,i.runOn(this,this.onInputKeyDown));var o=this.z;o.changing=i.delegateCombine(o.changing,i.runOn(this,this.onInputChanging))}},r.prototype.detachEvents=function(){if(null!=this.z){var t=this.z;t.selectedValueChanged=i.delegateRemove(t.selectedValueChanged,i.runOn(this,this.onDatePickerValueChanged));var e=this.z;e.gotFocus=i.delegateRemove(e.gotFocus,i.runOn(this,this.onDatePickerGotFocus));var n=this.z;n.lostFocus=i.delegateRemove(n.lostFocus,i.runOn(this,this.onDatePickerLostFocus));var r=this.z;r.keyDown=i.delegateRemove(r.keyDown,i.runOn(this,this.onInputKeyDown));var o=this.z;o.changing=i.delegateRemove(o.changing,i.runOn(this,this.onInputChanging))}},r.prototype.onTargetChanged=function(){null!=this.z&&(this.ac=!0,this.focus(),this.ac=!1)},r.prototype.onEditStarted=function(){t.prototype.onEditStarted.call(this),this.a.isEditRefocusDesired||this.focus()},r.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()}},r.prototype.t=function(){null!=this.z&&(this.z.focus(!0),this.z.dg())},r.prototype.ah=function(){null!=this.z&&this.z.cr()},r.prototype.v=function(e,i,n){switch(t.prototype.v.call(this,e,i,n),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)}},r.prototype.al=function(){this.z.bz=this.af},r.prototype.x=function(){this.ac=!0,null!=this.z&&(null==this.value?this.z.value=i.dateMinValue():this.z.value=this.value,this.focusOnValueChanged&&!this.h()&&this.t()),this.ac=!1},r.prototype.s=function(){null!=this.z&&(this.z.av=!this.isEnabled)},r.prototype.w=function(){t.prototype.w.call(this),null!=this.z&&(this.z.dy=this.textColor)},r.prototype.onDatePickerValueChanged=function(t,e){this.an()},r.prototype.an=function(){this.ac||(+this.z.value!=+i.dateMinValue()?this.r(this.z.value,!1):+this.z.value==+i.dateMinValue()?this.r(null,!1):this.r(this.value,!1))},r.prototype.onInputChanging=function(t,e){this.q()},r.prototype.onDatePickerLostFocus=function(t,e){this.p()},r.prototype.onDatePickerGotFocus=function(t,e){this.o()},r.prototype.getEditorValue=function(){return null!=this.z?this.z.value:null},r.prototype.setEditorValue=function(t){null!=this.z&&(this.z.value=null!=t?t:i.dateMinValue())},r.$t=i.markType(r,"DateEditorView",Qs.$),r}(Qs),ta=function(t){function n(e,i,n){var r=t.call(this,e,n)||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=i,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 e.__extends(n,t),Object.defineProperty(n.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(n.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(n.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}),n.prototype.setFont=function(t){this.ac=t,null!=this.ab&&null!=this.ac&&(this.ab.textStyle=this.ac.fontString)},n.prototype.attachEvents=function(){if(null!=this.ab){var t=this.ab;t.selectedValueChanged=i.delegateCombine(t.selectedValueChanged,i.runOn(this,this.onComboValueChanged));var e=this.ab;e.textValueChanged=i.delegateCombine(e.textValueChanged,i.runOn(this,this.onComboTextChanged));var n=this.ab;n.gotFocus=i.delegateCombine(n.gotFocus,i.runOn(this,this.onComboGotFocus));var r=this.ab;r.lostFocus=i.delegateCombine(r.lostFocus,i.runOn(this,this.onComboLostFocus));var o=this.ab;o.keyDown=i.delegateCombine(o.keyDown,i.runOn(this,this.onInputKeyDown));var s=this.ab;s.changing=i.delegateCombine(s.changing,i.runOn(this,this.onInputChanging))}},n.prototype.detachEvents=function(){if(null!=this.ab){var t=this.ab;t.selectedValueChanged=i.delegateRemove(t.selectedValueChanged,i.runOn(this,this.onComboValueChanged));var e=this.ab;e.textValueChanged=i.delegateRemove(e.textValueChanged,i.runOn(this,this.onComboTextChanged));var n=this.ab;n.gotFocus=i.delegateRemove(n.gotFocus,i.runOn(this,this.onComboGotFocus));var r=this.ab;r.lostFocus=i.delegateRemove(r.lostFocus,i.runOn(this,this.onComboLostFocus));var o=this.ab;o.keyDown=i.delegateRemove(o.keyDown,i.runOn(this,this.onInputKeyDown));var s=this.ab;s.changing=i.delegateRemove(s.changing,i.runOn(this,this.onInputChanging))}},n.prototype.onTargetChanged=function(){null!=this.ab&&(this.ae=!0,null==this.ab.value&&""!=this.ab.text&&(this.ab.text=""),this.focus(),this.ae=!1)},n.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},n.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},n.prototype.t=function(){null!=this.ab&&(this.af.focus(!0),this.ab.select())},n.prototype.an=function(){null!=this.ab&&this.ab.closeUp()},n.prototype.v=function(e,i,n){switch(t.prototype.v.call(this,e,i,n),e){case"DataSource":case"TextField":case"ValueField":this.aq()}},n.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},n.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=i.typeCast(i.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()}},n.prototype.w=function(){t.prototype.w.call(this),null!=this.ab&&(this.ab.textColor=this.textColor._fill)},n.prototype.onComboValueChanged=function(t,e){this.au()},n.prototype.onComboTextChanged=function(t,e){this.au()},n.prototype.au=function(){this.ae||(null!=this.ab.value?this.r(this.ab.value,!1):null==this.ab.value&&i.stringIsNullOrWhiteSpace(this.ab.text)?this.r(null,!1):this.r(this.value,!1))},n.prototype.onInputChanging=function(t,e){this.q()},n.prototype.onComboLostFocus=function(t){this.p()},n.prototype.onComboGotFocus=function(t){this.o()},n.$t=i.markType(n,"ComboEditorView",Qs.$),n}(Qs),ea=function(t){function n(e){var n=t.call(this,e)||this;return n.cs=null,n.cz=null,n.cy=null,n.cp=null,n.co=null,n.df=null,n.dg=null,n.dh=null,n.c0=null,n.c3=!1,n.c7=!1,n.c4=!1,n.cm=0,n.dj=null,n.c1=null,n.cq=1,n.di=null,n.dm=null,n.ck=null,n.c5=!0,n.dn=null,n.c6=!1,n.c9=!1,n.da=!1,n.c8=!1,n.ah.setAttribute("tabindex","-1"),n.ah.setStyleProperty("outline","none"),n.ah.setStyleProperty("display","flex"),n.ah.setStyleProperty("align-items","center"),n.ah.listen("focusout",i.runOn(n,n.ee)),n.ah.listen("focusin",i.runOn(n,n.ec)),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"cn",{get:function(){return this.cm},set:function(t){var e=this.cm;this.cm=t,e!=this.cm&&this.bs("DataType",i.enumGetBox(i.DataSourceSchemaPropertyType_$type,e),i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.cm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"cr",{get:function(){return this.cq},set:function(t){var e=this.cq;this.cq=t,e!=this.cq&&this.bs("EditorType",i.enumGetBox(z,e),i.enumGetBox(z,this.cq))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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}),n.prototype.cx=function(t){if(null==this.df){this.df=this.ae.createElement("div");var e=this.ae.getSubRenderer(this.df);this.c0=new i.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 n=null;switch(t){case 1:n=this.cw();break;case 2:n=this.cv();break;case 3:n=this.cu();break;case 4:n=this.ct()}return n},n.prototype.cw=function(){return null!=this.cz?(this.d6(),this.eb(),this.cz):(this.cz=new Ys(this.ae,this.f.getTheme(),this.b),this.cz.setFont(this.c2),this.cz)},n.prototype.cv=function(){return null!=this.cy?(this.d6(),this.eb(),this.cy):(this.cy=new Zs(this.ae,this.f.getTheme(),this.b),this.cy.setFont(this.c2),this.cy)},n.prototype.cu=function(){return null!=this.cp?(this.d6(),this.eb(),this.cp):(this.cp=new Js(this.ae,this.f.getTheme(),this.b),this.cp.setFont(this.c2),this.cp)},n.prototype.ct=function(){return null!=this.co?(this.d5(),this.d6(),this.eb(),this.co):(this.co=new ta(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)},n.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())},n.prototype.d1=function(){if(!this.c4&&null!=this.cs){this.cs.attachEvents();var t=this.cs;t.valueProvided=i.delegateCombine(t.valueProvided,i.runOn(this,this.ej));var e=this.cs;e.lostFocus=i.delegateCombine(e.lostFocus,i.runOn(this,this.d9));var n=this.cs;n.gotFocus=i.delegateCombine(n.gotFocus,i.runOn(this,this.d8));var r=this.cs;r.userTyping=i.delegateCombine(r.userTyping,i.runOn(this,this.eh)),this.c4=!0}},n.prototype.d2=function(){if(this.c4&&null!=this.cs){this.cs.detachEvents();var t=this.cs;t.valueProvided=i.delegateRemove(t.valueProvided,i.runOn(this,this.ej));var e=this.cs;e.lostFocus=i.delegateRemove(e.lostFocus,i.runOn(this,this.d9));var n=this.cs;n.gotFocus=i.delegateRemove(n.gotFocus,i.runOn(this,this.d8));var r=this.cs;r.userTyping=i.delegateRemove(r.userTyping,i.runOn(this,this.eh)),this.c4=!1}},n.prototype.eg=function(t){this.c9=!1,this.da=!1,this.c8=!1,t||(this.da=!0,this.cs.onTargetChanged())},n.prototype.ei=function(){null!=this.cs&&(this.cs.value=this.dl)},n.prototype.d6=function(){},n.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},n.prototype.d5=function(){null!=this.co&&(this.co.ah=this.dk,this.co.ak=this.dq,this.co.aa=this.cl)},n.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))},n.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())},n.prototype.d7=function(){null!=this.cs&&this.cp==this.cs&&(this.cp.af=this.du)},n.prototype.ef=function(){null!=this.cs&&this.cp==this.cs&&(this.cp.ad=this.de)},n.prototype.ek=function(t,e,n,r,o){i.stringIsNullOrWhiteSpace(t)||(this.dg.setRawText(t),this.c0.b9(),this.el())},n.prototype.el=function(){var t=this.ah.getNativeElement().getBoundingClientRect(),e=new i.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)},n.prototype.d3=function(){this.c0.ax&&this.c0.b6()},n.prototype.br=function(){null==this.cs&&(this.ea(),this.f.setViewportChangedHandler(i.runOn(this,this.ed)))},n.prototype.bh=function(){null!=this.cs&&this.cs.focus()},n.prototype.bs=function(e,i,n){switch(t.prototype.bs.call(this,e,i,n),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())}},n.prototype.ej=function(t,e,i){t==this.cs&&(i||this.b.updateCellEditValue(e))},n.prototype.eh=function(t){t==this.cs&&this.b.startEditMode()},n.prototype.dc=function(t){return!(null==t||null==this.c0||!this.c0.ax)&&this.dh.getNativeElement().contains(t)},n.prototype.db=function(t){return null!=t&&this.ah.getNativeElement().contains(t)},n.prototype.ee=function(t){var e=this;if(!this.c3){var i=t.originalEvent.relatedTarget;!this.c8||this.db(i)||this.dc(i)||(this.b.editorCellLostFocus(),this.d3()),this.ae.rootWrapper.getNativeElement().contains(i)&&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)}},n.prototype.ec=function(t){this.c9&&!this.c0.ax&&this.el()},n.prototype.d9=function(t){this.c8=!0},n.prototype.d8=function(t){this.c8=!1},n.prototype.onContactStarted=function(t,e){t.stopPropagation()},n.prototype.onContactCompleted=function(t,e){t.stopPropagation()},n.prototype.onDoubleClick=function(t){t.stopPropagation()},n.$t=i.markType(n,"EditorCell",Ks.$),n}(Ks),ia=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),n.prototype.modelUpdated=function(t){this.b(t)},n.prototype.b=function(t){this.a.bz(t.c),this.a.b5(t.e),this.a.b2(t.d),this.a.br(),t.a8(Ei.f8)&&(this.a.y=t.bd),(t.a8(Ei.em)||t.a8(Ei.eq)||t.a8(Ei.eo)||t.a8(Ei.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(Ei.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(Ei.d6)&&this.a.b0(t.lu.color),t.a8(Ei.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())},n.prototype.c=function(t,e,n){return 0==n?t.color:1==n?e.color:i.BrushUtil.n(t,n,e,0).color},Object.defineProperty(n.prototype,"nativeCell",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isCanvasBased",{get:function(){return!1},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"CellPresenterBase",i.Base.$,[xi]),n}(i.Base),na=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;n.a3&&((n.a8(Di.mz)||n.a8(Di.mx)||n.a8(Di.my)||n.a8(Di.m0))&&(this.d.cr=n.mm,this.d.dk=n.m9,this.d.dq=n.ni,this.d.cl=n.mg),n.a8(Di.mv)&&(this.d.cn=n.mi),n.a8(Di.gj)&&(this.d.dl=n.hm),n.a8(Di.m1)&&this.d.eg(null==n.mk),n.a8(Ei.fs)&&(this.d.c2=n.ag),n.a8(Di.m2)&&(i.stringIsNullOrWhiteSpace(n.nn)?(this.d.c9=!1,this.d.d3()):(this.d.c9=!0,this.d.ek(n.nn,n.cu,n.cv,n.hd,n.fu))),n.a8(Di.e9)&&(this.d.dd=!i.Rect.l_op_Equality(n.me,i.Rect.empty)),n.a8(Di.mw)&&(this.d.du=n.nf),n.a8(Di.m5)&&(this.d.de=n.ms)),n.a8(Di.m3)&&this.d.bh()},n.$t=i.markType(n,"EditorCellPresenter",ia.$),n}(ia),ra=function(t){function n(e){var i=t.call(this,e)||this;return i.ah.setRawStyleProperty("pointer-events","none"),i}return e.__extends(n,t),n.$t=i.markType(n,"EditorRowCell",Ks.$),n}(Ks),oa=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e)},n.$t=i.markType(n,"EditorRowCellPresenter",ia.$),n}(ia),sa=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"OperatorSelectorOpeningEventArgs",i.EventArgs.$),n}(i.EventArgs),aa=function(t){function n(){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 e.__extends(n,t),n.$t=i.markType(n,"OperatorModel"),n}(i.Base),la=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._oldValue=0,e._newValue=0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"oldValue",{get:function(){return this._oldValue},set:function(t){this._oldValue=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"newValue",{get:function(){return this._newValue},set:function(t){this._newValue=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"OperatorSelectorValueChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),ua=function(t){function r(e){var r=t.call(this)||this;return r.i=null,r.d=null,r.c=null,r.h=null,r.f=null,r.m=null,r.b=null,r.j=0,r.e=new i.Dictionary$2(i.String_$type,n.XIcon.$,0),r.k=0,r.l=0,r.g=null,r.a=null,r.a=e,r.l=240,r}return e.__extends(r,t),r.prototype.u=function(t){var e=this;if(null!=t){var r=this.a;r.opening=i.delegateCombine(r.opening,i.runOn(this,this.s));var o=this.a;o.opened=i.delegateCombine(o.opened,i.runOn(this,this.r));var s=this.a;s.closing=i.delegateCombine(s.closing,i.runOn(this,this.n)),this.g=t,this.d=new i.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 n.XIcon,this.c.provideContainer(this.f),this.h.setStyleProperty("cursor","pointer"),this.g.append(this.h),this.h.listen("mousedown",i.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 a=this.a;a.opening=i.delegateRemove(a.opening,i.runOn(this,this.s));var l=this.a;l.opened=i.delegateRemove(l.opened,i.runOn(this,this.r));var u=this.a;u.closing=i.delegateRemove(u.closing,i.runOn(this,this.n))}},r.prototype.w=function(){var t=this.h.getNativeElement().getBoundingClientRect(),e=new i.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 n=this.g.rootWrapper.getNativeElement().getBoundingClientRect(),r=n.left,o=(n.right,!0),s=r-(window.innerWidth-this.l-10);if(s>0&&(o=!1),o)e.left=this.g.rootWrapper.getOffset().left;else{var a=this.g.rootWrapper.getOffset().left-s;e.left=a}return e},r.prototype.t=function(t,e){var i=t,r=null;if(0==i.element.getChildCount()){i.element.setStyleProperty("display","inline-block"),i.element.setStyleProperty("vertical-align","middle");var o=this.g.createElement("div"),s=this.j.toString();o.setAttribute("id",s);var a=this.g.getSubRenderer(o);(r=new n.XIcon).provideContainer(a),o.setStyleProperty("width","24px"),o.setStyleProperty("height","24px"),i.element.append(o),this.e.addItem(s,r),this.j++}else{var l=i.element.getChildAt(0).getNativeElement().id;this.e.containsKey(l)&&(r=this.e.item(l))}r.svgPath=e.Icon,r.fill=this.a.eq},r.prototype.q=function(t){this.a.em()},r.prototype.s=function(t,e){this.i.setStyleProperty("height",i.stringFormat("{0}px",this.a.y())),this.d.b9(),document.addEventListener("keydown",i.runOn(this,this.onDocumentKeyDown),!1),document.addEventListener("mousedown",i.runOn(this,this.onDocumentMouseDown),!1)},r.prototype.r=function(t,e){void 0!==this.m.notifyDOMInsertion&&this.m.notifyDOMInsertion()},r.prototype.n=function(t,e){document.removeEventListener("keydown",this.onDocumentKeyDown,!1),document.removeEventListener("mousedown",this.onDocumentMouseDown,!1)},r.prototype.onDocumentKeyDown=function(t){var e=t;8==i.BaseDOMEventProxy.c0(e)&&this.a.d8()},r.prototype.onDocumentMouseDown=function(t){var e=t.srcElement,i=this.g.rootWrapper.getNativeElement(),n=this.i.getNativeElement();i.contains(e)||n.contains(e)||this.a.d8()},r.prototype.v=function(t){this.m.dataSource=t},r.$t=i.markType(r,"ComparisonOperatorSelectorView"),r}(i.Base),ha=function(t){function n(){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 ua(e),e.u=new i.List$1(aa.$,0),e}return e.__extends(n,t),n.prototype.eg=function(t,e,n){this.ei(t,e,n),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.ei=function(t,e,n){switch(t){case"Value":this.eh(i.EnumUtil.getEnumValue(f,e),i.EnumUtil.getEnumValue(f,n));break;case"DataType":this.d4();break;case"TextColor":case"Background":this.ed()}},Object.defineProperty(n.prototype,"s",{get:function(){return null==this.r&&(this.r=new i.SRProvider(this.e.g),this.r.cb("DataGrid")),this.r},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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",i.enumGetBox(f,e),i.enumGetBox(f,this.a))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d",{get:function(){return this.c},set:function(t){var e=this.c;this.c=t,e!=this.c&&this.eg("DataType",i.enumGetBox(i.DataSourceSchemaPropertyType_$type,e),i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.c))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"z",{get:function(){return this.w},set:function(t){this.w=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"dd",{get:function(){var t=this.s.b1("ComparisonOperator_True");return i.stringIsNullOrWhiteSpace(t)?"True":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ck",{get:function(){var t=this.s.b1("ComparisonOperator_False");return i.stringIsNullOrWhiteSpace(t)?"False":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cj",{get:function(){var t=this.s.b1("ComparisonOperator_Equals");return i.stringIsNullOrWhiteSpace(t)?"Equals":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cz",{get:function(){var t=this.s.b1("ComparisonOperator_NotEquals");return i.stringIsNullOrWhiteSpace(t)?"Not equals":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cr",{get:function(){var t=this.s.b1("ComparisonOperator_LessThan");return i.stringIsNullOrWhiteSpace(t)?"Less than":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cs",{get:function(){var t=this.s.b1("ComparisonOperator_LessThanOrEqualTo");return i.stringIsNullOrWhiteSpace(t)?"Less than or equal to":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cl",{get:function(){var t=this.s.b1("ComparisonOperator_GreaterThan");return i.stringIsNullOrWhiteSpace(t)?"Greater than":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cm",{get:function(){var t=this.s.b1("ComparisonOperator_GreaterThanOrEqualTo");return i.stringIsNullOrWhiteSpace(t)?"Greater than or equal to":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"db",{get:function(){var t=this.s.b1("ComparisonOperator_Top");return i.stringIsNullOrWhiteSpace(t)?"Top":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cb",{get:function(){var t=this.s.b1("ComparisonOperator_Bottom");return i.stringIsNullOrWhiteSpace(t)?"Bottom":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dc",{get:function(){var t=this.s.b1("ComparisonOperator_TopPercentile");return i.stringIsNullOrWhiteSpace(t)?"Top percentile":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cc",{get:function(){var t=this.s.b1("ComparisonOperator_BottomPercentile");return i.stringIsNullOrWhiteSpace(t)?"Bottom percentile":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c9",{get:function(){var t=this.s.b1("ComparisonOperator_Today");return i.stringIsNullOrWhiteSpace(t)?"Today":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"da",{get:function(){var t=this.s.b1("ComparisonOperator_Tomorrow");return i.stringIsNullOrWhiteSpace(t)?"Tomorrow":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dg",{get:function(){var t=this.s.b1("ComparisonOperator_Yesterday");return i.stringIsNullOrWhiteSpace(t)?"Yesterday":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c7",{get:function(){var t=this.s.b1("ComparisonOperator_ThisWeek");return i.stringIsNullOrWhiteSpace(t)?"This week":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cw",{get:function(){var t=this.s.b1("ComparisonOperator_NextWeek");return i.stringIsNullOrWhiteSpace(t)?"Next week":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cp",{get:function(){var t=this.s.b1("ComparisonOperator_LastWeek");return i.stringIsNullOrWhiteSpace(t)?"Last week":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c5",{get:function(){var t=this.s.b1("ComparisonOperator_ThisMonth");return i.stringIsNullOrWhiteSpace(t)?"This month":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cu",{get:function(){var t=this.s.b1("ComparisonOperator_NextMonth");return i.stringIsNullOrWhiteSpace(t)?"Next month":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cn",{get:function(){var t=this.s.b1("ComparisonOperator_LastMonth");return i.stringIsNullOrWhiteSpace(t)?"Last month":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c6",{get:function(){var t=this.s.b1("ComparisonOperator_ThisQuarter");return i.stringIsNullOrWhiteSpace(t)?"This quarter":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cv",{get:function(){var t=this.s.b1("ComparisonOperator_NextQuarter");return i.stringIsNullOrWhiteSpace(t)?"Next quarter":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"co",{get:function(){var t=this.s.b1("ComparisonOperator_LastQuarter");return i.stringIsNullOrWhiteSpace(t)?"Last quarter":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c8",{get:function(){var t=this.s.b1("ComparisonOperator_ThisYear");return i.stringIsNullOrWhiteSpace(t)?"This year":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cx",{get:function(){var t=this.s.b1("ComparisonOperator_NextYear");return i.stringIsNullOrWhiteSpace(t)?"Next year":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cq",{get:function(){var t=this.s.b1("ComparisonOperator_LastYear");return i.stringIsNullOrWhiteSpace(t)?"Last year":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"df",{get:function(){var t=this.s.b1("ComparisonOperator_YearToDate");return i.stringIsNullOrWhiteSpace(t)?"Year to date":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c0",{get:function(){var t=this.s.b1("ComparisonOperator_Q1");return i.stringIsNullOrWhiteSpace(t)?"Quarter 1":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c1",{get:function(){var t=this.s.b1("ComparisonOperator_Q2");return i.stringIsNullOrWhiteSpace(t)?"Quarter 2":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c2",{get:function(){var t=this.s.b1("ComparisonOperator_Q3");return i.stringIsNullOrWhiteSpace(t)?"Quarter 3":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c3",{get:function(){var t=this.s.b1("ComparisonOperator_Q4");return i.stringIsNullOrWhiteSpace(t)?"Quarter 4":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ct",{get:function(){var t=this.s.b1("ComparisonOperator_Month");return i.stringIsNullOrWhiteSpace(t)?"Month":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"de",{get:function(){var t=this.s.b1("ComparisonOperator_Year");return i.stringIsNullOrWhiteSpace(t)?"Year":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c4",{get:function(){var t=this.s.b1("ComparisonOperator_StartsWith");return i.stringIsNullOrWhiteSpace(t)?"Starts with":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cg",{get:function(){var t=this.s.b1("ComparisonOperator_DoesNotStartWith");return i.stringIsNullOrWhiteSpace(t)?"Does not start with":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ci",{get:function(){var t=this.s.b1("ComparisonOperator_EndsWith");return i.stringIsNullOrWhiteSpace(t)?"Ends with":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cf",{get:function(){var t=this.s.b1("ComparisonOperator_DoesNotEndWith");return i.stringIsNullOrWhiteSpace(t)?"Does not end with":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cd",{get:function(){var t=this.s.b1("ComparisonOperator_Contains");return i.stringIsNullOrWhiteSpace(t)?"Contains":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ce",{get:function(){var t=this.s.b1("ComparisonOperator_DoesNotContain");return i.stringIsNullOrWhiteSpace(t)?"Does not contain":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ch",{get:function(){var t=this.s.b1("ComparisonOperator_Empty");return i.stringIsNullOrWhiteSpace(t)?"Empty":t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cy",{get:function(){var t=this.s.b1("ComparisonOperator_NotEmpty");return i.stringIsNullOrWhiteSpace(t)?"Not empty":t},enumerable:!1,configurable:!0}),n.prototype.ej=function(t){if(null==t){if(null!=this.o){var e=this.o;e.clicked=i.delegateRemove(e.clicked,i.runOn(this,this.ec))}if(null!=this.f){this.f.selectedItems.clear();var n=this.f;n.cellClicked=i.delegateRemove(n.cellClicked,i.runOn(this,this.d9))}if(null!=this.n){var r=this.n;r.cellUpdating=i.delegateRemove(r.cellUpdating,i.runOn(this,this.el))}}this.e.u(t)},n.prototype.ea=function(){if(this.ej(null),null!=this.f){var t=this.f;t.cellClicked=i.delegateRemove(t.cellClicked,i.runOn(this,this.d9))}this.v.clear()},n.prototype.eb=function(t,e,n){this.q=t,this.p=e,this.p.svgPath=this.bv(this.b),this.p.fill=this.eq,this.f=n,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 i.CornerRadius(0,0),this.f.borderWidth=new i.Thickness(0,0);var r,o=this.f;o.cellClicked=i.delegateCombine(o.cellClicked,i.runOn(this,this.d9)),this.n=new ir,this.n.width=((r=new Rt).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 s=this.n;s.cellUpdating=i.delegateCombine(s.cellUpdating,i.runOn(this,this.el)),this.f.columns.add(this.n);var a=new rr;a.lo="DisplayText",a.kk=0,a.g=0,this.f.columns.add(a),this.d4()},n.prototype.eh=function(t,e){var i,n=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,((i=new la).oldValue=t,i.newValue=n.b,i))},n.prototype.ed=function(){null!=this.p&&(this.p.fill=this.eq),null!=this.f&&(this.f.cellTextColor=this.eq,this.f.cellBackground=this.ep)},n.prototype.ef=function(){null!=this.opening&&this.opening(this,new sa)},n.prototype.ee=function(){null!=this.opened&&this.opened(this,new sa)},n.prototype.bv=function(t){switch(t){case 7:return n.ab;case 9:return n.ac;case 12:return n.ad;case 13:return n.bn;case 17:return n.bo;case 15:return n.bp;case 40:return n.bq;case 16:return n.br;case 0:return"M5 13.5h14v2H5zm0-5h14v2H5z";case 11:return n.bt;case 4:return n.bw;case 5:return n.bx;case 26:return n.by;case 29:return n.bz;case 23:return n.b0;case 32:return n.b1;case 2:return n.b2;case 3:return n.b3;case 38:return n.b4;case 24:return n.b5;case 27:return n.b6;case 21:return n.b7;case 30:return n.b8;case 41:return n.b9;case 1:return n.ca;case 34:return n.dh;case 35:return n.di;case 36:return n.dj;case 37:return n.dk;case 14:return n.dl;case 25:return n.dn;case 28:return n.dp;case 22:return n.dq;case 31:return n.dr;case 18:return n.ds;case 19:return n.dt;case 6:return n.du;case 8:return n.dv;case 10:return n.dw;case 39:return n.dy;case 33:return n.dz;case 20:return n.d0;default:return""}},n.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""}},n.prototype.d4=function(){switch(this.v=new i.List$1(aa.$,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))},n.prototype.h=function(t){var e,i=this;return(e=new aa).a=t,e.DisplayText=i.bu(t),e.Icon=i.bv(t),e},n.prototype.d2=function(t){t.add(this.h(0)),t.add(this.h(10)),t.add(this.h(11))},n.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))},n.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))},n.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))},n.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},n.prototype.em=function(){null!=this.q&&(this.q.ax?this.q.b6():(this.ef(),this.q.showRelativeToExclusionRect(this.e.w(),1,0),this.ee()))},n.prototype.d8=function(){null!=this.q&&this.q.b6()},n.prototype.d1=function(t,e,i,r){var o,s=((o=new aa).DisplayText=t,o.Icon=null!=e?e:n.af,o.a=44,o.c=i,o.b=r,o);this.u.add(s),null!=this.v&&this.v.add(s),null!=this.f&&null!=this.f.actualDataSource&&this.f.actualDataSource.notifyInsertItem(this.v.count,s)},n.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()}},n.prototype.ek=function(t,e){if(null!=t)for(var i=0;i<this.u.count;i++)this.u._inner[i].c==t&&(this.i=this.u._inner[i]);else e>=0&&e<this.u.count&&(this.i=this.u._inner[e])},n.prototype.ec=function(t,e){this.em()},n.prototype.d9=function(t,e){var i=e.cellInfo.fb;this.i=this.f.actualDataSource.getItemAtIndex(i),this.d8()},n.prototype.el=function(t,e){this.e.t(e.content,e.cellInfo.hn)},n.$t=i.markType(n,"ComparisonOperatorSelector",i.Base.$,[i.INotifyPropertyChanged_$type]),n.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 ",n.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 ",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.bw="M6 7.11L15.09 12 6 16.89V19l12-6.46v-1.08L6 5v2.11z",n.bx="M5.99 19h12.02v2H5.99zM18 9.47L6 3v2.11L15.09 10 6 14.9v2.11l12-6.47V9.47z",n.b2="M6 12.54L18 19v-2.11L8.91 12 18 7.11V5L6 11.46v1.08z",n.b3="M5.99 19h12.02v2H5.99zM18 14.9L8.91 10 18 5.11V3L6 9.47v1.07l12 6.47V14.9z",n.bq="M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.dp="M12,7V17H22A10,10,0,0,0,12,7Zm-2,5L6,16V13H2V11H6V8Z",n.b6="M4,9.253A8.03,8.03,0,0,1,9.747,15H4V9.253M2,7V17H12A10,10,0,0,0,2,7ZM18,8v3H14v2h4v3l4-4Z",n.bz="M12,7V17H22A10,10,0,0,0,12,7ZM2,12l4,4V13h4V11H6V8Z",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n.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",n}(i.Base),ca=function(t){function r(e){var i=t.call(this,e)||this;return i.c7=null,i.c9=null,i.c5=null,i.c6=null,i.c8=null,i.cy=null,i.cx=null,i.cn=null,i.co=null,i.cz=null,i.cv=null,i.c2=!0,i.cp=0,i.c3=!0,i.ct=null,i.c0=null,i.da=null,i.ck=null,i.d9=null,i.c7=e.createElement("div"),i.c7.setStyleProperty("display","flex"),i.c7.setStyleProperty("flex-direction","row"),i.c7.setStyleProperty("align-items","center"),i.c7.setStyleProperty("height","100%"),i.ah.append(i.c7),i.c9=e.createElement("div"),i.c5=e.getSubRenderer(i.c9),i.co=new ha,i.co.ej(i.c5),i.c9.setStyleProperty("width","24px"),i.c9.setStyleProperty("height","24px"),i.c7.append(i.c9),i.c6=e.createElement("div"),i.c6.setStyleProperty("display","flex"),i.c6.setStyleProperty("flex","1"),i.c6.setStyleProperty("margin","0 4px"),i.c7.append(i.c6),i.c8=e.createElement("div"),i.c8.setStyleProperty("transform","scale(0.75)"),i.cz=new n.XIcon,i.cz.provideContainer(e.getSubRenderer(i.c8)),i.c7.append(i.c8),i.ds(),i}return e.__extends(r,t),r.prototype.cw=function(t){switch(this.cq){case 0:case 1:return null==this.cy&&(this.cy=new Ys(this.ae,this.f.getTheme(),this.b)),this.cy;case 2:return null==this.cx&&(this.cx=new Zs(this.ae,this.f.getTheme(),this.b)),this.cx;case 3:return null==this.cn&&(this.cn=new Js(this.ae,this.f.getTheme(),this.b)),this.cn;default:return null}},r.prototype.d4=function(){this.c6.removeChildren()},r.prototype.dq=function(){this.c6.append(this.cv.container)},r.prototype.dx=function(){0==this.ah.getChildCount()&&this.ah.append(this.c7)},r.prototype.dv=function(){this.ah.getChildCount()>0&&this.ah.removeChildren()},r.prototype.bs=function(e,i,n){t.prototype.bs.call(this,e,i,n),this.d3(e,i,n)},r.prototype.br=function(){this.d1()},r.prototype.d5=function(t,e,i,n){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 s=this.c8.getNativeElement();this.d.update("ClearIconTop",s.offsetTop),this.d.update("ClearIconLeft",s.offsetLeft)}},r.prototype.ds=function(){var t=this.co;t.valueChanged=i.delegateCombine(t.valueChanged,i.runOn(this,this.d2)),this.cz.svgPath=r.dc,this.d7(!1);var e=this.cz;e.clicked=i.delegateCombine(e.clicked,i.runOn(this,this.dr))},r.prototype.d1=function(){null==this.cv&&this.dw()},r.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},r.prototype.d7=function(t){null!=this.cz&&(this.cz.disabled=!t,this.cz.an=t?1:.3)},r.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))},r.prototype.dm=function(){this.c2&&null!=this.b&&this.b.clearFilter()},r.prototype.d3=function(t,e,i){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}},r.prototype.dy=function(){if(this.c2=!1,null!=this.cv)if(null!=this.cl)if(null!==i.typeCast(Ci.$,this.cl)){var t=i.typeCast(Ci.$,this.cl);this.co.b=t.operator;var e=this.cv.getEditorValue();null!=e&&i.Base.equalsStatic(e,t.value)||(this.cv.value=t.value,this.db=t.value)}else if(null!==i.typeCast(_i.$,this.cl)){var n=i.typeCast(_i.$,this.cl);this.co.ek(n.id,n.index);var r=this.cv.getEditorValue();null!=r&&i.Base.equalsStatic(r,n.value)||(this.cv.value=n.value,this.db=n.value)}else null===i.typeCast(_i.$,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},r.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)},r.prototype.du=function(){11==this.cm&&(this.c4=!1),this.cq=this.cr()},r.prototype.dz=function(){this.d7(null!=this.db),null==this.db||i.Base.equalsStatic(this.db,"")?this.dm():this.dl(this.db),null!=this.d&&this.d.update("FilterValue",this.db)},r.prototype.dw=function(){if(null!=this.cv){this.cv.detachEvents();var t=this.cv;t.valueProvided=i.delegateRemove(t.valueProvided,i.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=i.delegateCombine(e.valueProvided,i.runOn(this,this.d6)),this.dq()}this.dr(null,null)},r.prototype.d0=function(){null!=this.c1&&null!=this.cv&&this.cv.setFont(this.c1)},r.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 n=this.cu._inner[this.co.x];this.c4=n.d}this.c4?null==this.db||i.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",i.enumGetBox(f,this.co.b))},r.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)},r.prototype.d6=function(t,e,n){var r,o;2==this.cq&&("string"==typeof e&&(o=i.tryParseNumber(e,r),r=o.p1,o.ret&&(e=r)));this.db=e},r.prototype.d8=function(t,e,i,n){this.d5(t,e,i,n)},r.prototype.cs=function(t,e){if(null!=t)for(var i=0;i<this.cu.count;i++)if(this.cu._inner[i].g==t)return this.cu._inner[i];return e>=0&&e<this.cu.count?this.cu._inner[e]:null},r.prototype.dp=function(){this.dx()},r.prototype.dn=function(){this.dv()},Object.defineProperty(r.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",i.enumGetBox(i.DataSourceSchemaPropertyType_$type,e),i.enumGetBox(i.DataSourceSchemaPropertyType_$type,this.co.d))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cq",{get:function(){return this.cp},set:function(t){var e=this.cp;this.cp=t,e!=t&&this.bs("EditorType",i.enumGetBox(z,e),i.enumGetBox(z,this.cp))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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}),r.$t=i.markType(r,"FilterCell",Ks.$),r.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",r}(Ks),pa=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),n.prototype.b=function(e){t.prototype.b.call(this,e),this.e(e)},Object.defineProperty(n.prototype,"d",{get:function(){return this.nativeCell},enumerable:!1,configurable:!0}),n.prototype.e=function(t){var e=t;t.a3&&(e.a8($i.mx)&&(this.d.cm=e.mk),e.a8(Ei.fs)&&(this.d.c1=e.ag),e.a8($i.m0)&&(this.d.cl=e.mi),e.a8($i.mz)&&(this.d.cu=e.mo),e.a8($i.m1)&&(e.mq?this.d.dp():this.d.dn()),e.a8($i.er)&&(this.d.ea=e.lw)),(t.bj||t.bo)&&(e.a8($i.hf)||e.a8($i.hg)||e.a8($i.he)||e.a8($i.fv))&&this.d.d8(e.cu,e.cv,e.hd,e.fu)},n.$t=i.markType(n,"FilterCellPresenter",ia.$),n}(ia),da=function(t){function n(e){var i=t.call(this,e)||this;return i.ck=null,i.cn=-1,i.cm=-1,i.ck=e.createElement("span"),i.ah.setRawStyleProperty("text-align","left"),i.ck.setRawStyleProperty("display","inline-block"),i.ck.setRawStyleProperty("line-height","normal"),i.ck.setRawStyleProperty("vertical-align","middle"),i.ck.setRawStyleProperty("overflow","hidden"),i.ck.setRawStyleProperty("white-space","nowrap"),i.ck.setRawStyleProperty("text-overflow","ellipsis"),i.ah.setRawStyleProperty("vertical-align","middle"),i.ah.append(i.ck),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),n.prototype.b9=function(e,i){t.prototype.b9.call(this,e,i);var n=Math.max(0,e-i-(this.a3+this.a5+this.a4));this.cn!=n&&(this.cn=n,this.ck.setRawStyleProperty("max-width",n.toString()+"px"))},n.prototype.b3=function(e,i){t.prototype.b3.call(this,e,i);var n=Math.max(0,e-i);this.cm!=n&&(this.cm=n,this.ck.setRawStyleProperty("max-height",n.toString()+"px"))},n.prototype.get_z=function(){return!0},n.prototype.bs=function(e,i,n){t.prototype.bs.call(this,e,i,n),"Indent"!=e&&"IsCollapsable"!=e||this.ck.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},n.$t=i.markType(n,"TextCell",Ks.$),n}(Ks),fa=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.g=function(t){return null==t?n.f:t.color},n.c=function(t,e,i){switch(i){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")}},n.e=function(t,e,i){switch(i){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")}},n.a=function(t,e,i,r,o){if(e.a3){if(e.a8(Ei.fa)||e.a8(Ei.eg)||e.a8(Ei.hc)||e.a7("IsRowPinned")||e.a7("IsRowSticky")||e.a7("PinnedRowOpacity")){var s=Math.min(1,Math.max(0,e.ct)),a=e.cg*(1-s);r.setRawStyleProperty("opacity",a.toString()),e.bi&&o.ci(e.cg*s)}if(e.a8(Ei.er)&&(n.d(r,e.lw),e.bi&&o.cf(e.lw)),e.a8(Ei.gg))switch(e.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(e.a8(Ei.fw)||e.a8(Ei.hb)){var l=e.g,u=e.i;n.c(i,r,l),o.bq(i,r,l),n.e(i,r,u),e.bi&&o.ce(l,u)}e.a7("ActualFontInfo")&&n.b(t,r,e.ae),(e.a7("IsEdited")||e.a7("IsDeleted"))&&((e.a9||e.a6)&&e.a6?r.setRawStyleProperty("text-decoration","line-through"):r.setRawStyleProperty("text-decoration","none"))}},n.b=function(t,e,n){null==n&&(n=i.FontUtil.getDefaultFont(t)),e.setRawStyleProperty("font",n.fontString)},n.d=function(t,e){var i=n.g(e);t.setRawStyleProperty("color",i.colorString)},n.$t=i.markType(n,"ContentCellModelHelper"),n.f=i.Color.u(0,0,0,0),n}(i.Base),ma=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(Hi.mf)||e.a8(Ei.gj))&&(null!=i.mh?i.j1=i.mh:null==i.hm?i.j1="":i.j1=i.hm.toString(),this.d.cl.setRawText(i.j1)),fa.a(this.a.ae,i,this.a.ah,this.d.cl,this.a))},n.$t=i.markType(n,"TextCellPresenter",ia.$),n}(ia),ga=function(t){function n(e){var i=t.call(this,e)||this;return i.b4(i.cl,2),i.b8(i.cl,1),i}return e.__extends(n,t),n.prototype.bs=function(e,i,n){t.prototype.bs.call(this,e,i,n),"Indent"!=e&&"IsCollapsable"!=e||this.cl.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},n.$t=i.markType(n,"NumericCell",da.$),n}(da),ba=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(Gi.m4)||i.ml())&&(i.j1=this.e(i),this.d.cl.setRawText(i.j1)),fa.a(this.a.ae,i,this.a.ah,this.d.cl,this.a))},n.prototype.e=function(t){if(null!=t.na){var e=t.mo;return t.na.format(e)}return Hn.c(t)},n.$t=i.markType(n,"NumericCellPresenter",ia.$),n}(ia),ya=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),n.$t=i.markType(n,"DateTimeCell",da.$),n}(da),va=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(Bi.mr)||e.a8(Bi.ms)||e.a8(Bi.mq)||e.a8(Bi.gj))&&(this.e(i),this.d.cl.setRawText(i.j1)),fa.a(this.a.ae,i,this.a.ah,this.d.cl,this.a))},n.prototype.e=function(t){t.j1=t.m3(t.mp),t.j1==i.stringEmpty()&&null!=t.hm&&null===i.typeCast(i.Date_$type,t.hm)&&(t.j1=t.hm.toString())},n.$t=i.markType(n,"DateTimeCellPresenter",ia.$),n}(ia),Ca=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e}return e.__extends(n,t),n.$t=i.markType(n,"GridFilterDialogOpeningEventArgs"),n}(i.Base),_a=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=null,e}return e.__extends(n,t),n.$t=i.markType(n,"GridFilterDialogFilterChangeEventArgs"),n}(i.Base),wa=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.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}),n.prototype.m=function(t){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},Object.defineProperty(n.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(n.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(n.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(n.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(n.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}),n.$t=i.markType(n,"GridFilterDialogViewModelRow",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),Sa=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=0,e.b=0,e.a=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"GridFilterDialogViewModelGrouping"),n}(i.Base),Pa=function(t){function n(){return t.call(this,Sa.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"GridFilterDialogViewModelGroupingLevel",i.ObservableCollection$1.$.specialize(Sa.$)),n}(i.ObservableCollection$1),Oa=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"FilterDialogRenderCompletedEventArgs",i.EventArgs.$),n}(i.EventArgs),xa=function(t){function n(){return t.call(this,Pa.$,0)||this}return e.__extends(n,t),n.$t=i.markType(n,"GridFilterDialogViewModelGroupingLevelCollection",i.ObservableCollection$1.$.specialize(Pa.$)),n}(i.ObservableCollection$1),ja=function(t){function n(e){var n=t.call(this)||this;return n.b=null,n.q=null,n.aa=new i.Path,n.j=0,n.i=0,n.d=null,n.m=null,n.n=null,n.o=null,n.g=0,n.f=0,n.h=1,n.l=0,n.k=0,n.e=!1,n.c=null,n.b=e,n}return e.__extends(n,t),n.prototype.y=function(){this.x(),this.b.bk()},n.prototype.t=function(){this.b.bc(this.l,this.k,this.aa)},n.prototype.s=function(){null==i.KeyFrameAnimationFactory.h&&(i.KeyFrameAnimationFactory.h=this.m)},n.prototype.a=function(t){return new i.AnimationKeyFrameEffect(0,this.m.rootWrapper,0,null,t)},n.prototype.v=function(t,e,n){if(null==t)return this.m=null,this.n=null,void(this.d=null);this.h=i.isNaN_(this.b.aj)?this.b.ai:this.b.aj;var r=t;this.m=r,this.n=n,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,s=Math.round(r.rootWrapper.width()),a=Math.round(r.rootWrapper.height());this.b.ak,this.b.ak;this.x(),this.l=s,this.k=a,i.isNaN_(this.b.aj)&&(this.b.ai=window.devicePixelRatio,this.h=this.b.ai),this.y()},n.prototype.r=function(t){var e=t;this.m.append(e.an)},n.prototype.p=function(){return this.m},n.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=i.intDivide(this.o.height(),2)-this.k/2;this.m.rootWrapper.setStyleProperty("top",t+"px")},n.prototype.z=function(){this.y()},n.prototype.w=function(t,e){i.isNaN_(this.b.aj)&&(this.b.ai=window.devicePixelRatio,this.h=this.b.ai),this.l=t,this.k=e,this.y()},n.prototype.u=function(){if(i.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()},n.$t=i.markType(n,"GridFilterDialogView"),n}(i.Base),ka=function(t){function n(e,n,r,o){var s=t.call(this)||this;s.b=null,s.k=null,s.d=null,s.j=264,s.i=0,s.a=null,s.h=null,s.f=null,s.e=null,s.g=null,s.b=e;var a=r.createElement("div"),l=r.getSubRenderer(a);a.setStyleProperty("position","absolute"),a.setStyleProperty("width",s.j+"px"),a.setStyleProperty("top","0px"),a.setStyleProperty("left","0px"),a.setStyleProperty("display","none"),a.setStyleProperty("z-index","10000"),a.setStyleProperty("background-color","#fff"),a.setStyleProperty("border-radius","3px"),a.setStyleProperty("overflow","auto");var u=i.ElevationHelper.e(12,s.b.bv,s.b.bu,s.b.bt);return a.setStyleProperty("boxShadow",u),a.listen("mousedown",i.runOn(s,s.o)),s.onDocumentKeyDown=s.onDocumentKeyDown.bind(s),s.onDocumentMouseClick=s.onDocumentMouseClick.bind(s),s.h=n,s.f=l,s.g=a,s.e=o,s}return e.__extends(n,t),n.prototype.o=function(t){t.stopPropagation()},n.prototype.onDocumentKeyDown=function(t){i.BaseDOMEventProxy.c0(t)},n.prototype.onDocumentMouseClick=function(t){},n.prototype.onFilterApplyClick=function(){},n.prototype.onFilterCancelClick=function(){},n.prototype.t=function(t){var e=this;this.n(),this.g.setStyleProperty("display","block"),this.f.appendToBody(this.g),null==this.k&&this.e.getPortal(this.g,"GridColumnOptions",(function(r){e.d=r;var o=r.componentRef,s=t,a=t.grid.density,l=n.c(a,!0),u=n.c(a,!0);e.k=o.i;var h=e.k;h.column=s,h.density=a,h.buttonDensity=l,h.summaryListDensity=u,h.filterListDensity=u,h.applyButtonClick=i.delegateCombine(h.applyButtonClick,i.runOn(e,e.onFilterApplyClick)),h.cancelButtonClick=i.delegateCombine(h.cancelButtonClick,i.runOn(e,e.onFilterCancelClick)),e.j=e.g.width(),e.i=e.g.height(),e.n()}),!1),document.addEventListener("keydown",this.onDocumentKeyDown,!1),document.addEventListener("mousedown",this.onDocumentMouseClick,!1)},n.prototype.n=function(){var t=this.h.width(),e=this.h.height(),i=this.h.getNativeElement().getBoundingClientRect(),n=i.left,r=i.top,o=window.innerWidth,s=window.innerHeight,a=0,l=0,u=!0;n>o-this.j-10&&(u=!1,a=-(this.j-t)),r>s-this.i-10&&(l=s-this.i-10-r-e,u?a+=t+10:a-=t+10),this.g.setStyleProperty("left",this.h.getOffset().left+a+"px"),this.g.setStyleProperty("top",this.h.getOffset().top+this.h.outerHeight()+l+"px")},n.prototype.l=function(){document.removeEventListener("keydown",this.onDocumentKeyDown,!1),document.removeEventListener("mousedown",this.onDocumentMouseClick,!1);var t=this.k;t.applyButtonClick=i.delegateRemove(t.applyButtonClick,i.runOn(this,this.onFilterApplyClick)),t.cancelButtonClick=i.delegateRemove(t.cancelButtonClick,i.runOn(this,this.onFilterCancelClick)),t.column=null,this.g.setStyleProperty("display","none"),this.g.remove()},n.prototype.m=function(){this.f.destroy(),this.g.unlistenAll(),this.k=null,this.g=null,null!=this.d&&this.d.destroy()},n.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}},n.$t=i.markType(n,"GridFilterDialogPanel"),n}(i.Base),Ia=function(t){function n(){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=i.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 ja(e),e.bv=i.BrushUtil.j(66,0,0,0),e.bu=i.BrushUtil.j(30,0,0,0),e.bt=i.BrushUtil.j(20,0,0,0),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"as",{get:function(){return this.ar},set:function(t){this.ar=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.prototype,"l",{get:function(){return this.j},set:function(t){var e=this.j;this.j=t,e!=this.j&&this.bj("IconHorizontalAlignment",i.enumGetBox(l,e),i.enumGetBox(l,this.j))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"k",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.bj("HeaderTextALignment",i.enumGetBox(l,e),i.enumGetBox(l,this.i))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.prototype,"ac",{get:function(){return this.v.bx},enumerable:!1,configurable:!0}),n.prototype.bj=function(t,e,n){this.bm(t,e,n),null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t))},n.prototype.bm=function(t,e,i){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()}},n.prototype.bn=function(t,e,i){this.s.v(t,e,i),this.bg()},Object.defineProperty(n.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}),n.prototype.bf=function(t,e){this.x=!0},n.prototype.bg=function(){var t=this;i.NativeUIComponent.au(this.s.p(),18,(function(e){var n=e;t.v=n,t.v.b0=16,t.v.b4=i.BrushUtil.j(0,0,0,0),t.v.bq=i.runOn(t,t.a6),t.v.by=!1,t.s.r(t.v),t.v.c=1,t.v.b1=t}))},n.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 i=new Ca;this.dialogOpening(this,i)}},n.prototype.a8=function(t,e){e.propertyName},n.prototype.bh=function(){},n.prototype.bi=function(t,e){t.onModified=i.delegateRemove(t.onModified,i.runOn(this,this.bl)),e?this.bp():this.bo(t,!0),this.f=null},n.prototype.a9=function(){if(this.s.s(),null==this.w){var t=new i.AnimationKeyFrameEffectTiming;t.g=200,t.b=0,this.w=i.KeyFrameAnimationFactory.f.c(this.s.a(t).m(new i.AnimationKeyFrameProperty(1,0)).m(new i.AnimationKeyFrameProperty(1,1)))}},n.prototype.bq=function(){var t,e=this;null!=this.filterChanged&&this.filterChanged(this,((t=new _a).a=e.f,t))},n.prototype.bp=function(){var t;null!=this.filterChanged&&this.filterChanged(this,((t=new _a).a=null,t))},n.prototype.bo=function(t,e){var i,n=this.e(t);e?null!=this.filterChanged&&this.filterChanged(this,((i=new _a).a=n,i)):null!=this.filterChanging&&this.filterChanging(this,function(){var t=new _a;return t.a=n,t}())},n.prototype.e=function(t){var e=new Si;e.usesOrOperator=t.k;for(var n=new i.Stack$1(Si.$),r=0,o=e,s=0;s<t.f.count;s++){for(var a=this.h(r,n,t,s);null!=a;)o.add(a),o=a,r++,a=this.h(r,n,t,s);for(a=this.g(r,n,t,s);null!=a;)o=a,r--,a=this.g(r,n,t,s);null==o&&(o=e),this.ae(t,t.f._inner[s])||o.add(this.d(t.f._inner[s]))}return 0==e.count?null:e},n.prototype.ae=function(t,e){for(var n=0,r=0;r<e.e.length;r++)if(e.e[r]==e.l){n=r;break}return e.d[n]>0&&null==e.i||!!(0!=t.a&&e.d[n]>0&&"string"==typeof e.i&&i.stringIsNullOrEmpty(e.i))},n.prototype.g=function(t,e,i,n){return t>this.aq(i,n)?(e.e(),e.d()):null},n.prototype.aq=function(t,e){var i=t.c(e);return null==i?0:t.e.indexOf(i)},n.prototype.h=function(t,e,i,n){if(t<this.aq(i,n)){var r=i.b(n),o=new Si;return o.usesOrOperator=r.a,e.h(o),o}return null},n.prototype.d=function(t){var e=new Ci;return e.operator=this.c(t.l),e.value=t.i,e},n.prototype.c=function(t){return i.EnumUtil.getEnumValue(f,i.EnumUtil.parse(f,t,!0))},n.prototype.bl=function(t){this.bo(t,!1)},n.prototype.t=function(t,e){var i=new Ta;if(null!=t)this.a7(i,t,e);else{var r=new wa;r.f=e,r.e=n.a(e),r.d=n.b(e),r.l=n.az(e[0]),i.f.add(r)}return i},n.prototype.a7=function(t,e,i){if(e.isGroup())for(var n=e,r=0;r<n.count;r++){var o=n.item(r);this.a7(t,o,i)}else t.f.add(this.u(e,i))},n.prototype.u=function(t,e){var i=new wa;return i.l=n.az(t.operator),i.f=e,i.e=n.a(e),i.i=n.at(n.ap(t.operator),t.operator,t),i.j=n.au(n.ap(t.operator),t.operator,t),i.d=n.b(e),i},n.ap=function(t){return Ci.getOperandNumber(t)},n.at=function(t,e,i){return 0==t?"":null!=i.value?i.value.toString():""},n.au=function(t,e,i){return""},n.b=function(t){return Ci.getOperandNumbers(t)},n.a=function(t){for(var e=new Array(t.length),n=0;n<t.length;n++)e[n]=i.EnumUtil.getName(f,t[n]);return e},n.az=function(t){return i.EnumUtil.getName(f,t)},n.prototype.be=function(t,e){this.s.w(t,e)},n.prototype.bd=function(){this.s.u()},n.prototype.bc=function(t,e,n){var r=i.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");n.an=r,n._fill=null==this.bw?I.a5:this.bw},n.prototype.br=function(){var t=this;this.y=!1,1!=i.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()}))):i.NativeUI.y(this.s.q,1))},n.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()}))):i.NativeUI.y(this.s.q,0),this.y=!1)},Object.defineProperty(n.prototype,"commandCompleted",{get:function(){return this._commandCompleted},set:function(t){this._commandCompleted=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"invalidateActions",{get:function(){return this._invalidateActions},set:function(t){this._invalidateActions=t},enumerable:!1,configurable:!0}),n.prototype.bk=function(){null!=this.renderCompleted&&this.renderCompleted(this,new Oa)},n.prototype.ba=function(){null!=this.v&&null!=this.n&&this.v.b1!=this.n&&(this.v.b1=this.n)},n.prototype.getDesiredToolbarActions=function(){n.aa||(n.aa=!0,i.SvgIconRegistry.instance.addSvgPathString("XGrid","DotDotDot",n.ay));var t=new i.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]},n.prototype.addCommandAvailabilityListener=function(t){},n.prototype.removeCommandAvailabilityListener=function(t){},n.prototype.addCommandStateChangedListener=function(t){},n.prototype.removeCommandStateChangedListener=function(t){},n.prototype.onToolCommandExecuting=function(t){return 0},n.prototype.provideContextAccessor=function(t){},n.prototype.dismissContextAccessor=function(t){},n.prototype.ad=function(t){var e=t.originalEvent.srcElement,i=t.originalEvent.target;return!(!this.s.m.rootWrapper.getNativeElement().contains(e)&&!this.s.m.rootWrapper.getNativeElement().contains(i))},n.$t=i.markType(n,"GridFilterDialog",i.Base.$,[i.INotifyPropertyChanged_$type,i.IToolbarTarget_$type]),n.aa=!1,n.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",n}(i.Base),Ta=function(t){function n(){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 Ra,e.f.ae=e,e.e=new xa,e.f.ag=i.runOn(e,e.u);var n=e.f;return n.collectionChanged=i.delegateCombine(n.collectionChanged,i.runOn(e,e.t)),e}return e.__extends(n,t),n.prototype.n=function(){var t=new wa,e=Ci.getApplicableOperators(this.a);t.f=e,t.e=Ia.a(e),t.d=Ia.b(e),t.l=Ia.az(e[0]),this.f.add(t)},n.prototype.u=function(t){null!=this.onModified&&this.onModified(this)},n.prototype.t=function(t,e){switch(e.action){case 0:if(null!=e.newItems)for(var i=0;i<e.newItems.count;i++){var n=e.newItems.item(i);this.q(i+e.newStartingIndex,n)}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 s=0;s<e.newItems.count;s++){e.newItems.item(s);this.q(s+e.newStartingIndex,e.newItems.item(s))}break;case 4:this.s()}null!=this.onModified&&this.onModified(this)},n.prototype.r=function(t){var e=this.c(t);if(null!=e){var i=this.b(t);if(null!=i){this.w(i,t);for(var n=e.indexOf(i)+1;n<e.count;n++)this.v(e._inner[n],-1)}}},n.prototype.w=function(t,e){t.b--},n.prototype.s=function(){this.e.clear()},n.prototype.q=function(t,e){var i=this.c(t);if(null!=i){var n=this.b(t);if(null!=n){this.p(n,t);for(var r=i.indexOf(n)+1;r<i.count;r++)this.v(i._inner[r],1)}}},n.prototype.v=function(t,e){t.c+=e,t.b-=e},n.prototype.p=function(t,e){t.b++},n.prototype.b=function(t){for(var e=this.e.count-1;e>=0;e--)for(var i=0;i<this.e._inner[e].count;i--)if(this.e._inner[e]._inner[i].c<=t&&this.e._inner[e]._inner[i].b>=t)return this.e._inner[e]._inner[i];return null},n.prototype.c=function(t){for(var e=this.e.count-1;e>=0;e--)for(var i=0;i<this.e._inner[e].count;i--)if(this.e._inner[e]._inner[i].c<=t&&this.e._inner[e]._inner[i].b>=t)return this.e._inner[e];return null},n.prototype.h=function(t,e){var i=this.d(t,e);return!this.i(i,t,e)||this.e.count<this.m},n.prototype.i=function(t,e,i){if(null==t)return!1;for(var n=0;n<t.count;n++)if(this.j(t._inner[n],e,i))return!0;return!1},n.prototype.j=function(t,e,i){return!(i>t.c||e>t.b)},n.prototype.d=function(t,e){if(0==this.e.count)return null;for(var i=0;i<this.e.count;i++)if(!this.i(this.e._inner[i],t,e))return this.e._inner[i];return this.e._inner[this.e.count-1]},n.prototype.aa=function(t,e){for(var i=0;i<this.e.count;i++)for(var n=0;n<this.e._inner[i].count;n++)if(this.e._inner[i]._inner[n].c==t&&this.e._inner[i]._inner[n].b==e){this.e._inner[i].removeAt(n);break}this.x(),null!=this.onModified&&this.onModified(this)},n.prototype.x=function(){for(var t=this.e.count-1;t>=0;t--){for(var e=new i.List$1(Sa.$,0),n=0;n<this.e._inner[t].count;n++){var r=this.e._inner[t]._inner[n];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()},n.prototype.y=function(){for(var t=this.e.count-1;t>=0;t--){for(var e=new i.List$1(Sa.$,0),n=0;n<this.e._inner[t].count;n++)e.add(this.e._inner[t]._inner[n]);e.aa((function(t,e){return i.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])}},n.prototype.l=function(t,e){for(var i=0;i<this.e.count;i++)for(var n=0;n<this.e._inner[i].count;n++)if(this.e._inner[i]._inner[n].c==t&&this.e._inner[i]._inner[n].b==e)return!0;return!1},n.prototype.z=function(t,e){for(var i=0;i<this.e.count;i++)for(var n=0;n<this.e._inner[i].count;n++)this.e._inner[i]._inner[n].c==t&&this.e._inner[i]._inner[n].b==e&&(this.e._inner[i]._inner[n].a=!this.e._inner[i]._inner[n].a);null!=this.onModified&&this.onModified(this)},n.prototype.o=function(t,e,i){if(this.h(t,e)){var n,r=this.d(t,e),o=r;this.i(r,t,e)&&(this.e.add(new Pa),o=this.d(t,e)),o.add(((n=new Sa).c=t,n.b=e,n.a=i,n)),this.y(),null!=this.onModified&&this.onModified(this)}},n.$t=i.markType(n,"GridFilterDialogViewModel"),n}(i.Base),Ra=function(t){function n(){var e=t.call(this,wa.$,0)||this;return e.ae=null,e.af=null,e.collectionChanged=i.delegateCombine(e.collectionChanged,i.runOn(e,e.ah)),e}return e.__extends(n,t),n.prototype.ah=function(t,e){if(null!=e.oldItems)for(var n=0;n<e.oldItems.count;n++){var r=e.oldItems.item(n);r.propertyChanged=i.delegateRemove(r.propertyChanged,i.runOn(this,this.ai))}if(null!=e.newItems)for(var o=0;o<e.newItems.count;o++){var s=e.newItems.item(o);s.propertyChanged=i.delegateCombine(s.propertyChanged,i.runOn(this,this.ai))}},n.prototype.ai=function(t,e){null!=this.af&&this.af(this.ae)},Object.defineProperty(n.prototype,"ag",{get:function(){return this.af},set:function(t){this.af=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridFilterDialogViewModelRowCollection",i.ObservableCollection$1.$.specialize(wa.$)),n}(i.ObservableCollection$1),Aa=function(t){function n(e){var n=t.call(this,e)||this;n.cv=null,n.cr=null,n.cp=null,n.cl=0,n.ck=0,n.cn=3,n.cx=null,n.c0=-1,n.cz=-1,n.ct=!1,n.cw=null,n.cu=!1,n.cv=e.createElement("span"),n.ah.setRawStyleProperty("text-align","left"),n.ah.setRawStyleProperty("vertical-align","middle"),n.cv.setRawStyleProperty("display","inline-block"),n.cv.setRawStyleProperty("line-height","normal"),n.cv.setRawStyleProperty("vertical-align","middle"),n.cv.setRawStyleProperty("overflow","hidden"),n.cv.setRawStyleProperty("white-space","nowrap"),n.cv.setRawStyleProperty("text-overflow","ellipsis"),n.ah.append(n.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"),n.cw=r;var o=e.getSubRenderer(r);n.cp=new Ia,n.cp.bn(o,n.ah,e),n.ah.append(r),n.cp.be(18,18),n.cp.ak=24;var s=n.cp.ab;n.cp.ab=!1,n.cp.bb(),n.cp.ab=s;(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"),n.cx=r,o=e.getSubRenderer(r),n.cr=new js,n.cr.l=!1,n.cr.ax(o),n.ah.append(r),n.cr.ar(18,18);var a=n.cr;a.propertyChanged=i.delegateCombine(a.propertyChanged,i.runOn(n,n.c3));var l=n.cp;l.dialogOpening=i.delegateCombine(l.dialogOpening,i.runOn(n,n.c4));var u=n.cp;u.filterChanging=i.delegateCombine(u.filterChanging,i.runOn(n,n.c6));var h=n.cp;return h.filterChanged=i.delegateCombine(h.filterChanged,i.runOn(n,n.c5)),n.ah.listen("mouseenter",i.runOn(n,n.da)),n.ah.listen("mouseleave",i.runOn(n,n.c9)),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"cy",{get:function(){return this.cv},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cs",{get:function(){return this.cr},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cq",{get:function(){return this.cp},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"co",{get:function(){return this.cn},set:function(t){var e=this.cn;this.cn=t,this.bs("ColumnOptionsIconBehavior",i.enumGetBox(nt,e),i.enumGetBox(nt,this.cn))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cm",{get:function(){return this.cl},set:function(t){var e=this.cl;this.cl=t,this.bs("ColumnOptionsIconAlignment",i.enumGetBox(et,e),i.enumGetBox(et,this.cl))},enumerable:!1,configurable:!0}),n.prototype.aa=function(t){return!0},n.prototype.b9=function(e,i){t.prototype.b9.call(this,e,i),e-=21,this.cu&&(e-=15);var n=Math.max(0,e-i);n!=this.c0&&(this.c0=n,this.cv.setRawStyleProperty("max-width",n.toString()+"px"))},n.prototype.b3=function(e,i){t.prototype.b3.call(this,e,i);var n=Math.max(0,e-i);this.cz!=n&&(this.cz=n,this.cv.setRawStyleProperty("max-height",n.toString()+"px"))},n.prototype.ca=function(t,e,i,n){this.cp.bd()},n.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"))}},n.prototype.da=function(t){if(!this.b.isGridDragging)switch(this.cp.ba(),this.co){case 2:case 3:this.cp.br()}},n.prototype.c9=function(t){switch(this.co){case 2:case 3:this.cp.bb()}},n.prototype.c5=function(t,e){this.b.columnFilterChanged(e.a)},n.prototype.c6=function(t,e){this.b.columnFilterChanging(e.a)},n.prototype.c4=function(t,e){null!=this.b&&(e.a=this.f.getColumn(),this.b.cancelEditMode(!1))},n.prototype.bq=function(e,i,n){t.prototype.bq.call(this,e,i,n),this.ck=n,this.cp.k=n,2==n?(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))},n.prototype.b7=function(e,i,n,r){t.prototype.b7.call(this,e,i,n,r),this.cp.an=e,this.cp.ao=n},n.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"))},n.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}},n.prototype.bs=function(e,i,n){switch(t.prototype.bs.call(this,e,i,n),e){case"ColumnOptionsIconAlignment":this.c8();break;case"ColumnOptionsIconBehavior":this.c7()}},n.prototype.onContactStarted=function(e,i){2!=e.button&&(this.cp.ad(e)?this.ct=!0:t.prototype.onContactStarted.call(this,e,i))},n.prototype.onContactCompleted=function(e,i){this.ct||t.prototype.onContactCompleted.call(this,e,i),this.ct=!1},n.prototype.detach=function(){t.prototype.detach.call(this),this.cp},n.prototype.get_x=function(){return!0},n.$t=i.markType(n,"TextHeaderCell",Ks.$),n}(Ks),Ea=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;if(e.a3){if(e.a8(Hi.mf)&&(i.j1=i.mh,this.d.cy.setRawText(i.j1)),e.a8(Ei.g4)){var n=this.d.cs.l;e.bp&&(this.d.cs.l=!1),this.d.cs.b=e.n,e.bp&&(this.d.cs.l=n)}if(e.a8(Ei.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=i.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=i.mo),e.a7("ColumnOptionsIconAlignment")&&(this.d.cm=i.mk),e.a7("ColumnOptionsIconBehavior")&&(this.d.co=i.mm),e.a7("ColumnOptionsIconColor")&&(this.d.cq.bw=i.m2),e.a7("Path")||null!=this.d.cq.n&&null==this.d.cq.n.grid){var s=e.e.getColumn();s!=this.d.cq.n&&(this.d.cq.n=s)}fa.a(this.a.ae,i,this.a.ah,this.d.cy,this.a)}},n.prototype.e=function(){return i.TypeRegistrar.isRegistered("IgxGridColumnOptionsComponent")},n.$t=i.markType(n,"TextHeaderCellPresenter",ia.$),n}(ia),Ba=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),n.$t=i.markType(n,"RowSeparatorCell",Ks.$),n}(Ks),Da=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"RowSeparatorCellPresenter",ia.$),n}(ia),$a=function(t){function n(e){var n=t.call(this,e)||this;return n.cq=null,n.ck=1,n.cl=3,n.cs=null,n.cm=!1,n.cn=1,n.cp=null,n.cq=e.createElement("img"),n.cq.listen("load",i.runOn(n,n.cv)),n.cp=e.createElement("div"),n.cp.setRawStyleProperty("background-size","contain"),n.cp.setRawStyleProperty("background-repeat","no-repeat"),n.cp.setRawStyleProperty("background-position","center"),n.cp.setRawStyleProperty("width","100%"),n.cp.setRawStyleProperty("height","100%"),n.ah.setRawStyleProperty("text-align","left"),n.ah.setRawStyleProperty("vertical-align","middle"),n.ah.append(n.cp),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"cr",{get:function(){return this.cq},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"co",{get:function(){return this.cn},set:function(t){this.cn=t},enumerable:!1,configurable:!0}),n.prototype.cv=function(t){this.cm=!1,i.stringIsNullOrEmpty(this.cs)||(this.cp.setRawStyleProperty("opacity","1"),this.cp.setRawStyleProperty("background-image","url("+this.cs+")"))},n.prototype.cw=function(t,e){if(t!=this.cs)if(this.ct(),this.cp.setRawStyleProperty("opacity","0"),null!=t&&0!=t.length){if(!i.Base.equalsStatic(t,this.cs)){this.c0(t,e);var n=this.cq.getNativeElement();null!=n&&n.complete&&(this.cm=!1,this.cq.setRawStyleProperty("opacity","1"),this.cp.setRawStyleProperty("background-image","url("+this.cs+")"))}}else this.cu(this.cq)},n.prototype.cu=function(t){t.setAttribute("src",""),this.cp.setRawStyleProperty("background-image","")},n.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")}},n.prototype.c0=function(t,e){this.cm=!0,this.cs=t,this.cr.setAttribute("src",t)},n.prototype.ct=function(){this.cm&&(this.cu(this.cq),this.cs="")},n.prototype.cx=function(t){this.ck=t},n.prototype.cy=function(t){this.cl=t},n.prototype.get_z=function(){return!0},n.prototype.bs=function(e,i,n){t.prototype.bs.call(this,e,i,n),"Indent"!=e&&"IsCollapsable"!=e||this.cp.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},n.$t=i.markType(n,"ImageCell",Ks.$),n}(Ks),Ma=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;if(e.a3){if(e.a8(Ei.fa)||e.a8(Ei.hc)){var n=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-n);this.d.co=r}(i.a8(Fi.mj)||i.a8(Fi.mk))&&this.e(i.mn,i.mg),(i.a8(Fi.ml)||i.a8(Fi.fw)||i.a8(Fi.hb))&&this.f(i.mi,i.g,i.i),i.a8(Fi.g6)&&(1==e.u?this.d.ct():2==e.u&&this.e(i.mn,i.mg))}},n.prototype.f=function(t,e,i){this.d.cz(t)},n.prototype.e=function(t,e){var n=t.toLowerCase();if(0==e&&(e=4),(i.stringStartsWith(n,"http")||4==e)&&this.d.cw(t,4),i.stringStartsWith(n,"asset")||2==e){var r=t;i.stringStartsWith(n,"asset")&&(r=t.substr(8)),this.d.cw(r,2)}if(i.stringStartsWith(n,"drawable")||1==e){var o=t;i.stringStartsWith(n,"drawable")&&(o=t.substr(11)),this.d.cw(o,1)}if(i.stringStartsWith(n,"nativeresource")||1==e){var s=t;i.stringStartsWith(n,"nativeresource")&&(s=t.substr(17)),this.d.cw(s,1)}if(i.stringStartsWith(n,"embeddedresource")||3==e){var a=t;i.stringStartsWith(n,"embeddedresource")&&(a=t.substr(19)),this.d.cw(a,3)}},n.$t=i.markType(n,"ImageCellPresenter",ia.$),n}(ia),za=function(t){function n(e){var i=t.call(this)||this;return i.d=null,i._element=null,i.b=null,i.b=e,i.element=e.createElement("div"),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"element",{get:function(){return this._element},set:function(t){this._element=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isCanvasBased",{get:function(){return!1},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"TemplateCellContainer"),n}(i.Base),Na=function(t){function n(e){var n=t.call(this,e)||this;return n.ck=null,n.ck=new za(e),n.ck.element.setRawStyleProperty("box-sizing","border-box"),n.ah.append(n.ck.element),n.ah.listen("keydown",i.runOn(n,n.cm)),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),n.prototype.get_z=function(){return!0},n.prototype.bs=function(e,i,n){t.prototype.bs.call(this,e,i,n),"Indent"!=e&&"IsCollapsable"!=e||this.ck.element.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},n.prototype.bh=function(){this.ck.element.getNativeElement().contains(document.activeElement)||t.prototype.bh.call(this)},n.prototype.cm=function(t){if(this.ck.element.getNativeElement().contains(document.activeElement)&&"INPUT"==document.activeElement.nodeName){var e=i.BaseDOMEventProxy.c0(t);14!=e&&16!=e||t.stopPropagation()}},n.$t=i.markType(n,"TemplateCell",Ks.$),n}(Ks),Fa=function(t){function n(e,i){var n=t.call(this,e)||this;return n.d=null,n.d=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"e",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=this.d.actualColumns._inner[e.l.a5];if(e.a8(Ei.fa)||e.a8(Ei.hc)){var n=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-n);this.e.cl.element.setRawStyleProperty("opacity",r.toString())}i.n4(e,this.e.cl)},n.$t=i.markType(n,"TemplateCellPresenter",ia.$),n}(ia),Ga=function(t){function n(e){var i=t.call(this,e)||this;return i.ck=null,i.ck=new za(e),i.ah.append(i.ck.element),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),n.prototype.get_x=function(){return!0},n.$t=i.markType(n,"TemplateHeaderCell",Ks.$),n}(Ks),Va=function(t){function n(e,i){var n=t.call(this,e)||this;return n.d=null,n.d=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"e",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=this.d.actualColumns._inner[e.l.a5].header;if(e.a8(Ei.fa)||e.a8(Ei.hc)){var n=Math.min(1,Math.max(0,e.ct)),r=e.cj*(1-n);this.e.cl.element.setRawStyleProperty("opacity",r.toString())}var o=e;i.hq(o,this.e.cl)},n.$t=i.markType(n,"TemplateHeaderCellPresenter",ia.$),n}(ia),qa=function(t){function n(e){var i=t.call(this,e)||this;return i.ck=null,i.ck=e.createElement("span"),i.ah.setRawStyleProperty("text-align","left"),i.ah.setRawStyleProperty("vertical-align","middle"),i.ah.setRawStyleProperty("overflow","hidden"),i.ah.setRawStyleProperty("white-space","nowrap"),i.ah.setRawStyleProperty("text-overflow","ellipsis"),i.ah.append(i.ck),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"cl",{get:function(){return this.ck},enumerable:!1,configurable:!0}),n.prototype.get_z=function(){return!0},n.prototype.bs=function(e,i,n){t.prototype.bs.call(this,e,i,n),"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"))},n.$t=i.markType(n,"SectionHeaderCell",Ks.$),n}(Ks),La=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var i=e;e.a3&&((e.a8(qi.ml)||e.a8(qi.mn)||e.a8(qi.mm)||e.a8(qi.mp))&&(null==i.mh||0==i.mh.length&&null==i.mv?null==i.hm?i.j1="":i.j1=i.hm.toString():null!=i.mt&&0==i.mk?i.j1=i.mv+" "+i.mt:i.j1=i.mv,this.d.cl.setRawText(i.j1)),fa.a(this.a.ae,i,this.a.ah,this.d.cl,this.a))},n.$t=i.markType(n,"SectionHeaderCellPresenter",ia.$),n}(ia),Ha=function(t){function n(e){var i=t.call(this,e)||this;return i.cl=null,i.ck=null,i.cm=0,i.cn=0,i.cl=e.createElement("div"),i.cl.setRawStyleProperty("position","absolute"),i.cl.setRawStyleProperty("pointer-events","none"),i.ah.append(i.cl),i}return e.__extends(n,t),n.prototype.b1=function(t,e,i,n,r){null==t?null!=this.ck&&(this.ck.remove(),this.ck=null):(this.co(),this.cm=e,this.cn=n),this.cp()},n.prototype.b9=function(e,i){t.prototype.b9.call(this,e,i),this.cp()},n.prototype.b0=function(t){this.cl.setRawStyleProperty("background-color",t.colorString)},n.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",i.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"))},n.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()))},n.$t=i.markType(n,"VerticalSeparatorCell",Ks.$),n}(Ks),Wa=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"VerticalSeparatorCellPresenter",ia.$),n}(ia),Ua=function(t){function n(e){var i=t.call(this,e)||this;return i.ck=null,i.cl=null,i.cm=null,i.cq=-1,i.cp=-1,i.ah.setRawStyleProperty("vertical-align","middle"),i.cm=e.createElement("div"),i.ck=e.createElement("span"),i.ck.setRawStyleProperty("display","inline-block"),i.ck.setRawStyleProperty("width","40%"),i.ck.setRawStyleProperty("white-space","nowrap"),i.ck.setRawStyleProperty("text-overflow","ellipsis"),i.ck.setRawStyleProperty("vertical-align","middle"),i.ck.setRawStyleProperty("overflow","hidden"),i.cm.append(i.ck),i.cl=e.createElement("span"),i.cl.setRawStyleProperty("display","inline-block"),i.cl.setRawStyleProperty("width","60%"),i.cl.setRawStyleProperty("text-align","right"),i.cl.setRawStyleProperty("white-space","nowrap"),i.cl.setRawStyleProperty("text-overflow","ellipsis"),i.cl.setRawStyleProperty("vertical-align","middle"),i.cl.setRawStyleProperty("overflow","hidden"),i.cm.append(i.cl),i.ah.append(i.cm),i}return e.__extends(n,t),Object.defineProperty(n.prototype,"cn",{get:function(){return this.ck},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"co",{get:function(){return this.cl},enumerable:!1,configurable:!0}),n.prototype.b9=function(e,i){t.prototype.b9.call(this,e,i);var n=Math.max(0,e-i);this.cq!=n&&(this.cq=n)},n.prototype.b3=function(e,i){t.prototype.b3.call(this,e,i);var n=Math.max(0,e-i);this.cp!=n&&(this.cp=n)},n.prototype.get_z=function(){return!1},n.prototype.bs=function(e,i,n){t.prototype.bs.call(this,e,i,n),"Indent"!=e&&"IsCollapsable"!=e||this.cm.setRawStyleProperty("margin-left",this.a3+this.a5+this.a4+"px")},n.$t=i.markType(n,"SummaryCell",Ks.$),n}(Ks),Ka=function(t){function n(e){return t.call(this,e)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"d",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.prototype.b=function(e){t.prototype.b.call(this,e);var n=e;if(e.a3&&(fa.a(this.a.ae,n,this.a.ah,this.d.cn,this.a),fa.a(this.a.ae,n,this.a.ah,this.d.co,this.a),(e.a7("ResolvedSummaryLabel")||e.a7("ResolvedSummaryValue"))&&(null!=n.mn&&this.d.cn.setRawText(n.mn),null!=n.mp&&this.d.co.setRawText(n.mp)),e.a7("SummaryLabelTextColor")&&this.d.cn.setRawStyleProperty("color",n.mu._fill),e.a7("SummaryLabelFontInfo"))){var r=n.mg;null==r&&(r=i.FontUtil.getDefaultFont(this.a.ae)),this.d.cn.setRawStyleProperty("font",r.fontString)}},n.$t=i.markType(n,"SummaryCellPresenter",ia.$),n}(ia),Xa=function(t){function n(e,i){var n=t.call(this)||this;return n.a=null,n.c=!1,n.a=e,n.c=i,n}return e.__extends(n,t),n.prototype.b=function(t,e){return null!=e.s||(this.c?(null!==i.typeCast(Hi.$,e)&&(e.s=new Cs(new bs(t))),null!==i.typeCast(Gi.$,e)&&(e.s=new ws(new _s(t))),null!==i.typeCast(Bi.$,e)&&(e.s=new Ps(new Ss(t))),null!==i.typeCast(Wi.$,e)&&(e.s=new Is(new ks(t))),null!==i.typeCast(Vi.$,e)&&(e.s=new Rs(new Ts(t))),null!==i.typeCast(Fi.$,e)&&(e.s=new Es(new As(t))),null!==i.typeCast(Li.$,e)&&(e.s=new $s(new Ds(t),this.a)),null!==i.typeCast(Fr.$,e)&&(e.s=new zs(new Ms(t),this.a)),null!==i.typeCast(qi.$,e)&&(e.s=new Fs(new Ns(t))),null!==i.typeCast(Ni.$,e)&&(e.s=new Vs(new Gs(t))),null!==i.typeCast(zi.$,e)&&(e.s=new Ls(new qs(t))),null!==i.typeCast(Di.$,e)&&(e.s=new na(new ea(t))),null!==i.typeCast(Mi.$,e)&&(e.s=new oa(new ra(t))),null!==i.typeCast($i.$,e)&&(e.s=new pa(new ca(t)))):(null!==i.typeCast(Hi.$,e)&&(e.s=new ma(new da(t))),null!==i.typeCast(Gi.$,e)&&(e.s=new ba(new ga(t))),null!==i.typeCast(Bi.$,e)&&(e.s=new va(new ya(t))),null!==i.typeCast(Wi.$,e)&&(e.s=new Ea(new Aa(t))),null!==i.typeCast(Vi.$,e)&&(e.s=new Da(new Ba(t))),null!==i.typeCast(Fi.$,e)&&(e.s=new Ma(new $a(t))),null!==i.typeCast(Li.$,e)&&(e.s=new Fa(new Na(t),this.a)),null!==i.typeCast(Fr.$,e)&&(e.s=new Va(new Ga(t),this.a)),null!==i.typeCast(qi.$,e)&&(e.s=new La(new qa(t))),null!==i.typeCast(Ni.$,e)&&(e.s=new Wa(new Ha(t))),null!==i.typeCast(zi.$,e)&&(e.s=new Ka(new Ua(t))),null!==i.typeCast(Di.$,e)&&(e.s=new na(new ea(t))),null!==i.typeCast(Mi.$,e)&&(e.s=new oa(new ra(t))),null!==i.typeCast($i.$,e)&&(e.s=new pa(new ca(t))))),e.s},n.$t=i.markType(n,"DataGridPresenterManager"),n}(i.Base),Qa=new i.Type(null,"IViewportManager"),Ya=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),n.prototype.moveViewportTo=function(t,e){var i=this.a;i._scrollTo?i._scrollTo(t,e):i.scrollTo(t,e)},n.$t=i.markType(n,"DataGridViewportManager",i.Base.$,[Qa]),n}(i.Base),Za=new i.Type(null,"IDelayedExecutionManager"),Ja=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),n.prototype.cancelPending=function(t){this.a.clearTimeout(t)},n.prototype.executeIn=function(t,e){return this.a.setTimeout((function(){return t()}),e)},n.$t=i.markType(n,"DataGridDelayedExecutionManager",i.Base.$,[Za]),n}(i.Base),tl=new i.Type(null,"IPropertySetter"),el=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.setProperty=function(t,e,i){null!=t&&(t[e]=i)},n.$t=i.markType(n,"DataGridPropertySetter",i.Base.$,[tl]),n}(i.Base),il=new i.Type(null,"IDraggerView"),nl=new i.Type(null,"IDragger"),rl=function(t){function n(e){var i=t.call(this)||this;return i._model=null,i.c=null,i.d=null,i.a=null,i.model=e,i}return e.__extends(n,t),Object.defineProperty(n.prototype,"model",{get:function(){return this._model},set:function(t){this._model=t},enumerable:!1,configurable:!0}),n.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()),n=Math.round(this.c.rootWrapper.height());this.a=new i.CanvasGestureDOMEventProxy(this.c.rootWrapper,this.c,!0),this.a.c8=!0;var r=this.a;r.onMouseOver=i.delegateCombine(r.onMouseOver,i.runOn(this,this.e));var o=this.a;o.onMouseUp=i.delegateCombine(o.onMouseUp,i.runOn(this,this.f)),this.a.ao=i.runOn(this,this.b),this.model.viewportWidth=e,this.model.viewportHeight=n},n.prototype.onDetachedFromUI=function(){null!=this.a&&null!=this.c&&this.a.bh(this.c.rootWrapper,"")},n.prototype.onAttachedToUI=function(){null!=this.a&&this.a.at(this.c.rootWrapper,"")},n.prototype.b=function(t){return this.model.isDragActive},n.prototype.e=function(t,e,i){this.g(t)},n.prototype.f=function(t){this.h(t)},n.prototype.captureMouse=function(){},n.prototype.releaseMouse=function(){},n.prototype.transformPoint=function(t,e){var n=i.BaseDOMEventProxy.c4(this.c.rootWrapper);return{$type:i.Point_$type,x:t-n.x,y:e-n.y}},n.prototype.g=function(t){this.model.onMouseMove(t.x,t.y)},n.prototype.h=function(t){this.model.onMouseUp(t.x,t.y)},n.prototype.onViewportSizeChanged=function(t,e){this.a.bl=new i.Rect(0,0,0,t,e)},n.prototype.addCloneCellToDom=function(){if(null!=this.c&&null!=this.model.cloneCell){this.d=this.model.cloneCell,document.documentElement.appendChild(this.d.getNativeElement());var t=i.ElevationHelper.e(12,i.BrushUtil.j(66,0,0,0),i.BrushUtil.j(30,0,0,0),i.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=i.BrushUtil.a("background-color",this.d),n=i.BrushUtil.j(200,e[0].color.o,e[0].color.n,e[0].color.m);this.d.setStyleProperty("background-color",n._fill);var r=this.d.getChildAt(0),o=i.BrushUtil.a("color",r),s=i.BrushUtil.j(200,o[0].color.o,o[0].color.n,o[0].color.m);r.setStyleProperty("color",s._fill)}},n.prototype.removeCloneCellFromDom=function(){null!=this.c&&this.d.remove()},n.prototype.getTopAndLeft=function(){var t=this.c.rootWrapper.getNativeElement().getBoundingClientRect(),e=t.top,i=t.left,n=new Array(2);return n[0]=e,n[1]=i,n},n.prototype.getWindowScrollPos=function(){var t=window.pageYOffset,e=window.pageXOffset,i=new Array(2);return i[0]=t,i[1]=e,i},n.$t=i.markType(n,"DraggerView",i.Base.$,[il]),n}(i.Base),ol=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"startX",{get:function(){return this._startX},set:function(t){this._startX=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"startY",{get:function(){return this._startY},set:function(t){this._startY=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"currentX",{get:function(){return this._currentX},set:function(t){this._currentX=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"currentY",{get:function(){return this._currentY},set:function(t){this._currentY=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"controlPressed",{get:function(){return this._controlPressed},set:function(t){this._controlPressed=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"DragSelectEventArgs",i.EventArgs.$),n}(i.EventArgs),sl=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"view",{get:function(){return null==this.c&&(this.c=new rl(this)),this.c},set:function(t){this.c=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dragType",{get:function(){return this.b},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isDragActive",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellPath",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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}),n.prototype.o=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.p(t,e,n)},n.prototype.onDetachedFromUI=function(){this.view.onDetachedFromUI()},n.prototype.onAttachedToUI=function(){this.view.onAttachedToUI()},n.prototype.provideContainer=function(t){this.view.provideContainer(t)},n.prototype.onMouseMove=function(t,e){var n,r=this;if(this.e&&(null!=this.onDrag&&this.onDrag(this,((n=new ol).startX=r.q.x,n.startY=r.q.y,n.currentX=t,n.currentY=e,n.controlPressed=r.d,n)),null!=this.cloneCell)){var o=this.i,s=this.h,a=this.view.getWindowScrollPos();o+=a[0],s+=a[1],i.NativeUI.v(this.cloneCell,t+s),i.NativeUI.ae(this.cloneCell,e+o)}},n.prototype.onMouseUp=function(t,e){this.e&&(this.view.releaseMouse(),this.e=!1,null!=this.onDragEnd&&this.onDragEnd(this,new ol),this.b=4,null!=this.cloneCell&&(this.view.removeCloneCellFromDom(),this.cloneCell=null))},n.prototype.dragStart=function(t,e,n,r,o,s,a){if(!this.e&&(this.q=this.view.transformPoint(t,e),this.q={$type:i.Point_$type,x:this.q.x+n,y:this.q.y+r},this.e=!0,this.d=a,this.b=o,this.a=s,this.view.captureMouse(),null!=this.cloneCell)){var l=this.i,u=this.h,h=this.view.getWindowScrollPos();l+=h[0],u+=h[1],i.NativeUI.v(this.cloneCell,t+u),i.NativeUI.ae(this.cloneCell,e+l)}},n.prototype.cancel=function(){this.e=!1,this.b=4},n.prototype.n=function(){if(null!=this.cloneCell){var t=new Array(2);t[0]=0,t[1]=0,t=this.view.getTopAndLeft();var e=i.NativeUI.d(this.cloneCell)/2;this.i=t[0]-e;var n=i.NativeUI.k(this.cloneCell)/2;this.h=t[1]-n}},n.prototype.p=function(t,e,i){switch(t){case"ViewportWidth":case"ViewportHeight":this.view.onViewportSizeChanged(this.g,this.f);break;case"CloneCell":this.view.addCloneCellToDom(),this.n()}},n.$t=i.markType(n,"Dragger",i.Base.$,[nl,i.INotifyPropertyChanged_$type]),n}(i.Base),al={},ll=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new dt},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"filterExpressions",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=new i.IgcFilterExpressionCollection;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}(),ul=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(),this._initializeAdapters&&this._initializeAdapters()},t}(),hl=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(),this._initializeAdapters&&this._initializeAdapters()},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),pl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new fi(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(),this._initializeAdapters&&this._initializeAdapters()},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}(),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 Pr},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(),this._initializeAdapters&&this._initializeAdapters()},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 i=this.i.g(null==e?null:e.i),n=null;if(i&&i.externalObject)n=i.externalObject;else if(i){var r=new t;r._implementation=i,i.externalObject=r,n=r}return n},t.prototype.columnPropertySetter=function(){var t=this.i.c(),e=null;if(t&&t.externalObject)e=t.externalObject;else if(t){var i=new pl;i._implementation=t,t.externalObject=i,e=i}return e},t.prototype.addColumnExchanger=function(e){var i=this.i.f(null==e?null:e.i),n=null;if(i&&i.externalObject)n=i.externalObject;else if(i){var r=new t;r._implementation=i,i.externalObject=r,n=r}return n},t.prototype.columnExchanger=function(){var e=this.i.h(),i=null;if(e&&e.externalObject)i=e.externalObject;else if(e){var n=new t;n._implementation=e,e.externalObject=n,i=n}return i},t}(),fl=function(){function t(){this._stateEntering=null,this._stateEntering_wrapped=null,this._stateEntered=null,this._stateEntered_wrapped=null,this._stateExited=null,this._stateExited_wrapped=null,this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new xr},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(),this._initializeAdapters&&this._initializeAdapters()},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=i.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 i=this.i.d(null==e?null:e.i),n=null;if(i&&i.externalObject)n=i.externalObject;else if(i){var r=new t;r._implementation=i,i.externalObject=r,n=r}return n},t.prototype.responsivePhase=function(){var t=this.i.a(),e=null;if(t&&t.externalObject)e=t.externalObject;else if(t){var i=new dl;i._implementation=t,t.externalObject=i,e=i}return e},Object.defineProperty(t.prototype,"stateEntering",{get:function(){return this._stateEntering},set:function(t){var e=this;null!==this._stateEntering_wrapped&&(this.i.stateEntering=i.delegateRemove(this.i.stateEntering,this._stateEntering_wrapped),this._stateEntering_wrapped=null,this._stateEntering=null),this._stateEntering=t,this._stateEntering_wrapped=function(t,i){var n=new ul;n._provideImplementation(i),e.beforeStateEntering&&e.beforeStateEntering(e,n),e._stateEntering&&e._stateEntering(e,n)},this.i.stateEntering=i.delegateCombine(this.i.stateEntering,this._stateEntering_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stateEntered",{get:function(){return this._stateEntered},set:function(t){var e=this;null!==this._stateEntered_wrapped&&(this.i.stateEntered=i.delegateRemove(this.i.stateEntered,this._stateEntered_wrapped),this._stateEntered_wrapped=null,this._stateEntered=null),this._stateEntered=t,this._stateEntered_wrapped=function(t,i){var n=new hl;n._provideImplementation(i),e.beforeStateEntered&&e.beforeStateEntered(e,n),e._stateEntered&&e._stateEntered(e,n)},this.i.stateEntered=i.delegateCombine(this.i.stateEntered,this._stateEntered_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"stateExited",{get:function(){return this._stateExited},set:function(t){var e=this;null!==this._stateExited_wrapped&&(this.i.stateExited=i.delegateRemove(this.i.stateExited,this._stateExited_wrapped),this._stateExited_wrapped=null,this._stateExited=null),this._stateExited=t,this._stateExited_wrapped=function(t,i){var n=new cl;n._provideImplementation(i),e.beforeStateExited&&e.beforeStateExited(e,n),e._stateExited&&e._stateExited(e,n)},this.i.stateExited=i.delegateCombine(this.i.stateExited,this._stateExited_wrapped)},enumerable:!1,configurable:!0}),t}(),ml=function(t){function n(e){var n=t.call(this)||this;if(fl.$type||(fl.$type=i.markType(fl,"IgcResponsiveState")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){fl.$type||(fl.$type=i.markType(fl,"IgcResponsiveState"));var t=new i.SyncableObservableCollection$2(fl.$type,xr.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new fl)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),gl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Zt},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(),this._initializeAdapters&&this._initializeAdapters()},t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),bl=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Zn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcHeaderRowSeparatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcHeaderRowSeparatorComponent=t}return n._observedAttributesIgcHeaderRowSeparatorComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcHeaderRowSeparatorComponent=null,n.htmlTagName="igc-header-row-separator",n._isElementRegistered=!1,n}(Jr),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 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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"newActiveCell",{get:function(){var t=this.i.newActiveCell;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.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 Fo;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}(),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 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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=Do._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=i.ensureBool(t)},enumerable:!1,configurable:!0}),t}(),Cl=function(t){function n(e){var i=t.call(this)||this;return i.a=null,i.a=e,i}return e.__extends(n,t),n.prototype.onDownArrow=function(t,e){return this.a.kk(t,e)},n.prototype.onEnd=function(t,e){return this.a.kl(t,e)},n.prototype.onHome=function(t,e){return this.a.kp(t,e)},n.prototype.onLeftArrow=function(t,e){return this.a.kr(t,e)},n.prototype.onPageDown=function(t,e){return this.a.ks(t,e)},n.prototype.onPageUp=function(t,e){return this.a.kt(t,e)},n.prototype.onRightArrow=function(t,e){return this.a.ku(t,e)},n.prototype.onTab=function(t,e){return this.a.kw(t,e)},n.prototype.onUpArrow=function(t,e){return this.a.kx(t,e)},n.prototype.onWheel=function(){this.a.xl()},n.prototype.onEnter=function(t,e){return this.a.km(t,e)},n.prototype.onEscape=function(){return this.a.kn()},n.prototype.onF2=function(){return this.a.ko()},n.prototype.onSpace=function(t,e){return this.a.kv(t,e)},n.prototype.onKeyDown=function(t,e,i){return this.a.kq(t,e,i)},n.$t=i.markType(n,"DataGridScrollerKeyboardListener",i.Base.$,[i.IScrollerKeyboardListener_$type]),n}(i.Base),_l=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Un},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcPinnedAreaSeparatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcPinnedAreaSeparatorComponent=t}return n._observedAttributesIgcPinnedAreaSeparatorComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcPinnedAreaSeparatorComponent=null,n.htmlTagName="igc-pinned-area-separator",n._isElementRegistered=!1,n}(Jr),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 an},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=Do._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=i.ensureEnum(k,t)},enumerable:!1,configurable:!0}),t}(),Sl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new ln},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 Er;break;case"ImageCellModel":t=new Br;break;case"NumericCellModel":t=new Dr;break;case"RowSeparatorModel":t=new $r;break;case"SectionHeaderCellModel":t=new Mr;break;case"TemplateCellModel":t=new zr;break;case"TemplateHeaderCellModel":t=new Gr;break;case"TemplateSectionHeaderCellModel":t=new qr;break;case"TextCellModel":t=new Lr;break;case"TextHeaderCellModel":t=new Hr}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=Do._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}(),Pl=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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Ol=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(),this._initializeAdapters&&this._initializeAdapters()},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}(),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 Ne},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(),this._initializeAdapters&&this._initializeAdapters()},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}(),jl=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 nn},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"columns",{get:function(){if(null===this._columns){var t=new Uo,e=this.i.columns;e||(e=new wn),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 Uo;this._columns=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(_n.$type),r=this.i.columns;r||(r=new wn),n._inner=r,n.clear(),this._columns._setSyncTarget(n),this.i.columns=r},enumerable:!1,configurable:!0}),t}(),kl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new hn},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.c;if(null==t)return null;if(!t.externalObject){var e=Do._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 vo;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 vo;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}(),Il=function(t){function n(){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 i.FastIterationDictionary$2(i.Number_$type,Ei.$,0),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"c",{get:function(){return this.e+2},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),n.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")},n.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 i=0;i<this.b.o.count;i++){var n=this.b.o._inner[i],r=this.b.item(n);t+=this.g(r)}return t},n.prototype.k=function(){this.b.u()},n.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},n.prototype.l=function(t,e){t.getNativeElement().removeAttribute(e)},n.$t=i.markType(n,"AccessibilityRow"),n}(i.Base),Tl=function(t){function n(e,r,o){var s=t.call(this,e,r,o)||this;return s.a2=new i.List$1(i.DomWrapper_$type,0),s.a3=new i.Stack$1(i.DomWrapper_$type),s.a0=new i.FastIterationDictionary$2(i.Number_$type,Il.$,0),s.ay=null,s.a7=null,s.a7=n.a6.toString(),n.a6++,s}return e.__extends(n,t),n.prototype.refresh=function(e,i){if(t.prototype.refresh.call(this,e,i),null!=this.rootElement){var n=e.c5(),r=e.b9.count;e.c6>0&&n++,this.rootElement.setAttribute("role","grid"),this.rootElement.setAttribute("aria-rowcount",n.toString()),this.rootElement.setAttribute("aria-colcount",r.toString()),this.rootElement.setAttribute("aria-multiselectable","true")}},n.prototype.ah=function(t,e){if(this.a1(t))if(t.l.g)null==this.ay&&(this.ay=new Il,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 i=t.l.g?-1:t.l.x,n=this.az(i);null==n&&((n=new Il).i=this.a7,n.e=i,n.d=this.g.b9.count,n.f="gridcell",this.a0.s(i,n)),n.j(t,e)}},n.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"))},n.prototype.ai=function(t,e){this.a1(t)&&this.ah(t,e)},n.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 i=t._inner[e];this.ba(i),i.k()}this.ay=null,this.a0.u()},n.prototype.az=function(t){for(var e=this.a0.o,i=0;i<e.count;i++){var n=e._inner[i],r=this.a0.item(n);if(null!=r&&r.e==t)return r}return null},n.prototype.a4=function(){return this.a3.f>0?this.a3.e():null},n.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},n.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())},n.prototype.a8=function(){for(var t=0;t<this.a2.count;t++){var e=this.a2._inner[t],i=parseInt(e.getAttribute("aria-rowindex"))-2;-1==i||this.a0.d(i)||(e.remove(),this.a3.h(e),this.a2.removeAt(t),t--)}},n.prototype.a9=function(t,e){for(var i=-1,n=0;n<this.a2.count;n++){var r=parseInt(this.a2._inner[n].getAttribute("aria-rowindex"));if(t.c<r){i=n;break}}-1!=i?(this.element.getNativeElement().insertBefore(e.getNativeElement(),this.a2._inner[i].getNativeElement()),this.a2.insert(i,e)):(this.element.append(e),this.a2.add(e))},n.prototype.a1=function(t){return t.l.aj||t.l.an&&!t.l.h},n.prototype.bb=function(t,e){t.getNativeElement().removeAttribute(e)},n.$t=i.markType(n,"DataGridAccessibilityLayoutPanel",hs.$),n.a6=0,n}(hs),Rl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new cn},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=Do._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}(),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 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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=Do._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}(),El=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(),this._initializeAdapters&&this._initializeAdapters()},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}(),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 We},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(),this._initializeAdapters&&this._initializeAdapters()},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}(),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 Le},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),$l=function(t){function n(){var e=t.call(this)||this;return e.b=null,e.c=null,e.a=0,e}return e.__extends(n,t),n.$t=i.markType(n,"GroupInfo"),n}(i.Base),Ml=new i.Type(null,"IColumnGrouping"),zl=new i.Type(null,"IColumnGroupingVisualModelExport"),Nl=function(t){function n(){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 e.__extends(n,t),n.prototype.serialize=function(){var t=new i.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+", "),i.stringIsNullOrEmpty(this.l)||t.l('textStyleFontStyle : "'+this.l+'", '),i.stringIsNullOrEmpty(this.m)||t.l('textStyleFontVariant : "'+this.m+'", '),i.stringIsNullOrEmpty(this.n)||t.l('textStyleFontWeight : "'+this.n+'", '),i.stringIsNullOrEmpty(this.j)||t.l('textStyleFontFamily : "'+this.j+'", '),i.stringIsNullOrEmpty(this.k)||t.l('textStyleFontStretch : "'+this.k+'", '),i.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 n=0;n<this.d.count;n++)0!=n&&t.l(","),t.l(this.d._inner[n].l());return t.l("]"),t.l("}"),t.toString()},n.$t=i.markType(n,"ColumnGroupingVisualModelExport",i.Base.$,[zl]),n}(i.Base),Fl=function(t){function n(){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 e.__extends(n,t),n.prototype.h=function(){var t=new i.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()},n.$t=i.markType(n,"TextVisualModelExport"),n}(i.Base),Gl=function(t){function n(){var e=t.call(this)||this;return e.e=null,e.t=null,e.r=null,e.i=new i.List$1(i.DomWrapper_$type,0),e.g=new i.List$1(i.DomWrapper_$type,0),e.h=new i.List$1(i.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 e.__extends(n,t),n.prototype.ai=function(){},Object.defineProperty(n.prototype,"o",{get:function(){return this.n},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"u",{get:function(){return this.n.rootWrapper},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"v",{get:function(){return this.r},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"w",{get:function(){return this.t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"l",{get:function(){return this.i},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"j",{get:function(){return this.g},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"k",{get:function(){return this.h},enumerable:!1,configurable:!0}),n.prototype.ah=function(t){if(null!=t){this.n=t,this.d=new i.CanvasGestureDOMEventProxy(this.o.rootWrapper,this.o,!0),this.d.c8=!0;var e=this.d;e.onMouseDown=i.delegateCombine(e.onMouseDown,i.runOn(this,this.z));var n=this.d;n.onMouseOver=i.delegateCombine(n.onMouseOver,i.runOn(this,this.aa));var r=this.d;r.onMouseUp=i.delegateCombine(r.onMouseUp,i.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},n.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"))},n.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")}},n.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()}},n.prototype.ar=function(){null!=this.t&&this.t.setText(this.e.al)},n.prototype.aq=function(){null!=this.t&&(null!=this.e.k?this.t.setStyleProperty("font",this.e.k.t):this.t.setStyleProperty("font","14px Verdana"))},n.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)}},n.prototype.as=function(){return null!=this.n?this.n.rootWrapper.getNativeElement().getBoundingClientRect():null},n.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 n=0;n<e;n++){if(n>0&&n<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",i.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 s=this.n.createElement("li");s.listen("mouseover",i.runOn(this,this.ae)),s.listen("mouseout",i.runOn(this,this.ad)),s.setStyleProperty("background-color",this.e.bj.color.colorString),s.setStyleProperty("border-radius","3px 3px 3px 3px"),s.setStyleProperty("padding","2px 5px 2px 5px"),s.setStyleProperty("margin","2px"),s.setStyleProperty("height","18px"),s.setStyleProperty("display","flex"),s.setStyleProperty("align-items","center"),s.listen("click",i.runOn(this,this.af)),this.p.append(s),this.h.add(s),s.setAttribute("data-field",t._inner[n].b.toString());var a=this.n.createElement("span");null!=this.e.k?a.setStyleProperty("font",this.e.k.t):a.setStyleProperty("font","14px Verdana"),a.setStyleProperty("user-select","none"),a.setStyleProperty("color",this.e.bl.color.colorString),a.setAttribute("data-field",t._inner[n].b.toString()),a.setText(t._inner[n].c.toString()),s.append(a),this.i.add(a);var l=this.n.createElement("div"),u=!0;1==t._inner[n].a&&(u=!1),this.e.at(l,u),l.setStyleProperty("height","18px"),l.setStyleProperty("width","18px"),l.setStyleProperty("color",this.e.bi.color.colorString),s.append(l),this.g.add(l);var h=this.n.createElement("div");h.listen("click",i.runOn(this,this.x)),this.e.aq(h),h.setStyleProperty("height","18px"),h.setStyleProperty("width","18px"),h.setStyleProperty("color",this.e.bi.color.colorString),s.append(h),this.g.add(h)}}},n.prototype.am=function(t,e){if(null!=this.n){var i=this.n.getSubRenderer(e);t.provideContainer(i)}},n.prototype.x=function(t){var e=t.originalEvent.currentTarget.parentElement.getAttribute("data-field").toString();this.e.a1(e)},n.prototype.af=function(t){var e=t.originalEvent.currentTarget.getAttribute("data-field").toString();this.e.ao(e)},n.prototype.z=function(t){this.aj(t)},n.prototype.aa=function(t,e,i){this.ak(t)},n.prototype.ab=function(t){this.al(t)},n.prototype.aj=function(t){for(var e=this.h.count,i=0;i<e;i++){var n=this.h._inner[i].getNativeElement(),r=n.offsetLeft,o=r+n.offsetWidth,s=n.offsetTop,a=n.offsetTop+n.offsetHeight;if(t.x>r&&t.x<o&&t.y>s&&t.y<a){this.q=this.h._inner[i];break}}},n.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(),n=e.left-i.NativeUI.k(this.q)/2,r=e.top-i.NativeUI.d(this.q)/2,o=this.c();r+=o[0],n+=o[1],i.NativeUI.v(this.q,t.x+n),i.NativeUI.ae(this.q,t.y+r)}},n.prototype.al=function(t){if(1==this.f){var e=this.as(),i=e.width,n=e.height;if(t.x>0&&t.x<i&&t.y>0&&t.y<n){for(var r=-1,o=-1,s=this.h.count,a=0;a<s;a++){var l=this.h._inner[a].getChildAt(0).getNativeElement(),u=l.offsetLeft+l.offsetWidth;l.innerText!=this.m.innerText?t.x>u?r=a:0==a&&t.x<u&&(r=-2):(o=a,-1==r&&(r=a))}if(-1==r)r=s-1;else if(-2==r)r=0;else if(o>r){var h=this.h._inner[r].getChildAt(0).getNativeElement(),c=h.offsetLeft+h.offsetWidth;t.x>c&&(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},n.prototype.ae=function(t){for(var e=t.originalEvent.target,i=this.h.count,n=0;n<i;n++){if(this.h._inner[n].getNativeElement().contains(e)){this.h._inner[n].setStyleProperty("background-color",this.e.bk.color.colorString);break}}},n.prototype.ad=function(t){for(var e=t.originalEvent.target,i=this.h.count,n=0;n<i;n++){if(this.h._inner[n].getNativeElement().contains(e)){this.h._inner[n].setStyleProperty("background-color",this.e.bj.color.colorString);break}}},n.prototype.a=function(){var t=this.o.rootWrapper.getNativeElement().getBoundingClientRect(),e=t.top,i=t.left,n=new Array(2);return n[0]=e,n[1]=i,n},n.prototype.b=function(t){var e=t.getNativeElement().getBoundingClientRect(),i=e.top,n=e.left,r=new Array(2);return r[0]=i,r[1]=n,r},n.prototype.c=function(){var t=window.pageYOffset,e=window.pageXOffset,i=new Array(2);return i[0]=t,i[1]=e,i},n.prototype.ag=function(){},n.$t=i.markType(n,"ColumnGroupingView"),n}(i.Base),Vl=function(t){function r(){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=i.BrushUtil.j(158,0,0,0),e.j=null,e.bf=i.BrushUtil.j(158,0,0,0),e.bc=i.BrushUtil.j(158,0,0,0),e.bd=i.BrushUtil.j(30,0,0,0),e.be=i.BrushUtil.j(66,0,0,0),e.bb=i.BrushUtil.j(255,248,248,248),e.v=0,e.n=!1,e.q=new i.ObservableCollection$1(n.XIcon.$,0);var r=new Gl;return r.e=e,e.b=r,e.b.ai(),e}return e.__extends(r,t),r.prototype.notifySizeChanged=function(){this.b.ag()},r.prototype.destroy=function(){if(this.provideContainer(null),null!=this.targetGrid){var t=this.targetGrid;t.groupDescriptionsChanged=i.delegateRemove(t.groupDescriptionsChanged,i.runOn(this,this.a7));var e=this.targetGrid;e.actualColumnsChanged=i.delegateRemove(e.actualColumnsChanged,i.runOn(this,this.a6));var n=this.targetGrid.dragger;n.onDrag=i.delegateRemove(n.onDrag,i.runOn(this,this.av));var r=this.targetGrid.dragger;r.onDragEnd=i.delegateRemove(r.onDragEnd,i.runOn(this,this.aw))}},r.prototype.provideContainer=function(t){this.b.ah(t)},Object.defineProperty(r.prototype,"m",{get:function(){return null==this.l&&(this.l=new i.SRProvider(this.b.o),this.l.cb("ColumnGrouping")),this.l},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.prototype,"g",{get:function(){return this.f},set:function(t){var e=this.f;this.f=t,e!=this.f&&this.ay("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,this.f))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"i",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.ay("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.h))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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}),r.prototype.ay=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.az(t,e,n)},r.prototype.az=function(t,e,n){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":i.NativeUI.m(this.b.u,this.bh)}},r.prototype.a4=function(){},r.prototype.ba=function(){var t=this.b.w;null!=this.bm&&i.NativeUI.q(t,this.bm)},r.prototype.a9=function(){i.stringIsNullOrWhiteSpace(this.al)&&(this.al=i.stringIsNullOrWhiteSpace(this.m.b1("Title"))?"Drag a Column Here":this.m.b1("Title")),this.b.ar()},r.prototype.a8=function(){for(var t=this.b.l,e=this.b.j,n=this.b.k,r=0;r<t.count;r++)i.NativeUI.q(t._inner[r],this.bl);for(var o=0;o<e.count;o++)i.NativeUI.q(e._inner[o],this.bi);for(var s=0;s<n.count;s++)i.NativeUI.m(n._inner[s],this.bj)},r.prototype.a3=function(){0==this.i&&null!=this.targetGrid&&(this.i=this.targetGrid.density),this.b.ao()},r.prototype.a5=function(){if(null!=this.targetGrid){this.a9(),this.targetGrid.isGroupByAreaVisible&&(this.o=!0),this.b.an();var t=this.targetGrid;t.groupDescriptionsChanged=i.delegateCombine(t.groupDescriptionsChanged,i.runOn(this,this.a7));var e=this.targetGrid;if(e.actualColumnsChanged=i.delegateCombine(e.actualColumnsChanged,i.runOn(this,this.a6)),null!=this.targetGrid.dragger){var n=this.targetGrid.dragger;n.onDrag=i.delegateCombine(n.onDrag,i.runOn(this,this.av));var r=this.targetGrid.dragger;r.onDragEnd=i.delegateCombine(r.onDragEnd,i.runOn(this,this.aw))}this.b.ac()}},r.prototype.p=function(){var t=new i.List$1($l.$,0);if(null!=this.targetGrid)for(var e=this.targetGrid.actualColumns,n=this.targetGrid.groupDescriptions.j,r=function(r){var o=new $l,s=e.i((function(t){return t.lo==n.item(r).f}));-1!=s?(i.stringIsNullOrEmpty(e._inner[s].lv)?o.c=n.item(r).f:o.c=e._inner[s].lv,o.b=n.item(r).f,o.a=n.item(r).c,t.add(o)):(o.c=n.item(r).f,o.b=n.item(r).f,o.a=n.item(r).c,t.add(o))},o=0;o<n.count;o++)r(o);return t},r.prototype.aw=function(t,e){if(2==this.targetGrid.dragger.dragType){var n=this.b.as(),r=-1*n.height,o=n.right-n.left;if(this.t>0&&this.t<o&&this.u>r&&this.u<0){var s=t,a=this.targetGrid.actualColumns._inner[s.cellPath.a5],l=new _t(0);l.f=a.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 h=this.b.l,c=h.count,p=!1,d=0;d<c;d++){var f=this.b.b(h._inner[d]),m=i.NativeUI.k(h._inner[d]),g=f[1]-n.left+m;if(this.t<g){this.targetGrid.groupDescriptions.o(d,l),p=!0;break}}0==p&&this.targetGrid.groupDescriptions.g(l)}t.cancel()}}},r.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))},r.prototype.at=function(t,e){var o=new n.XIcon;this.b.am(o,t),o.svgPath=e?r.x:r.ac,o.fill=i.BrushUtil.j(255,119,119,119),this.q.add(o)},r.prototype.aq=function(t){var e=new n.XIcon;this.b.am(e,t),e.svgPath=r.aa,e.fill=i.BrushUtil.j(255,119,119,119),this.q.add(e)},r.prototype.as=function(t){var e=new n.XIcon;this.b.am(e,t),e.svgPath=r.ah,e.fill=i.BrushUtil.j(255,119,119,119),this.q.add(e)},r.prototype.ar=function(t){var e=new n.XIcon;this.b.am(e,t),e.svgPath=r.ad,e.fill=i.BrushUtil.j(255,119,119,119),this.e=e,this.q.add(this.e)},r.prototype.ap=function(){this.q.clear(),null!=this.e&&this.q.add(this.e)},r.prototype.ao=function(t){for(var e=this.targetGrid.groupDescriptions.j.count,i=0;i<e;i++){var n=this.targetGrid.groupDescriptions.j.item(i);if(n.f==t){this.targetGrid.groupDescriptions.d(i),0==n.c?n.c=1:n.c=0,this.targetGrid.groupDescriptions.o(i,n);break}}},r.prototype.a1=function(t){for(var e=this.targetGrid.groupDescriptions.j.count,i=0;i<e;i++){if(this.targetGrid.groupDescriptions.j.item(i).f==t){this.targetGrid.groupDescriptions.d(i);break}}},r.prototype.a2=function(t,e){for(var i=this.targetGrid.groupDescriptions.j.count,n=null,r=0;r<i;r++)if(this.targetGrid.groupDescriptions.j.item(r).f==t){n=this.targetGrid.groupDescriptions.j.item(r),this.targetGrid.groupDescriptions.d(r);break}this.targetGrid.groupDescriptions.j.insert(e,n)},r.prototype.a7=function(t,e){this.b.ac()},r.prototype.a6=function(t,e){this.b.ac()},r.prototype.exportVisualModel=function(){return this.a()},r.prototype.exportSerializedVisualModel=function(){return this.a().serialize()},r.prototype.a=function(){var t=new Nl,e=this.b.v;t.d=new i.List$1(n.IconVisualModelExport.$,0),t.c=new i.List$1(Fl.$,0),t.b=this.i,t.a=this.g;var r=this.b.a(),o=r[0],s=r[1];t.h=o,t.f=s,t.e=i.NativeUI.d(e),t.i=i.NativeUI.k(e);for(var a=this.b.l,l=0;l<a.count;l++){var u=new Fl,h=this.b.b(a._inner[l]);u.e=h[0]-o,u.d=h[1]-s,u.c=i.NativeUI.d(a._inner[l]),u.f=i.NativeUI.k(a._inner[l]),u.b=i.AppearanceHelper.a(i.NativeUI.al(a._inner[l])),u.g=a._inner[l].getText(),t.c.add(u)}for(var c=this.b.j,p=0;p<c.count;p++){var d=this.q._inner[p].a0(),f=this.b.b(c._inner[p]);d.i=f[0]-o,d.g=f[1]-s,d.f=i.NativeUI.d(c._inner[p]),d.j=i.NativeUI.k(c._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,b=i.FontUtil.getFontInfoFromString(g,m.fontString);m.q=b.q,m.f=b.f,m.r=b.r,m.t=b.t,m.u=b.u,m.v=b.v}null!=m.q&&(t.j=m.q),i.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},r.$t=i.markType(r,"ColumnGrouping",i.Base.$,[Ml,i.INotifyPropertyChanged_$type]),r.x="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",r.ac="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",r.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",r.ah="M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z",r.ad="M9,19v-2h11v2H9z M9,15v-2h11v2H9z M9,11V9h11v2H9z M7,7V5h13v2H7z M4,5h2v2H4V5z",r}(i.Base),ql=function(t){function n(){var e=t.call(this)||this;return e._filterOperands=null,e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new $i},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dataType",{get:function(){return this.i.mk},set:function(t){this.i.mk=i.ensureEnum(i.DataSourceSchemaPropertyType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filter",{get:function(){return this.i.mi},set:function(t){this.i.mi=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterExpression",{get:function(){return this.i.mm},set:function(t){this.i.mm=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterOperands",{get:function(){if(null===this._filterOperands){var t=new Bo,e=this.i.mo;e||(e=new bn),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 Bo;this._filterOperands=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(gn.$type),r=this.i.mo;r||(r=new bn),n._inner=r,n.clear(),this._filterOperands._setSyncTarget(n),this.i.mo=r},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorType",{get:function(){return this.i.mg},set:function(t){this.i.mg=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterValue",{get:function(){return this.i.m2},set:function(t){this.i.m2=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectorTop",{get:function(){return this.i.mw},set:function(t){this.i.mw=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectorLeft",{get:function(){return this.i.mv},set:function(t){this.i.mv=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorTop",{get:function(){return this.i.mu},set:function(t){this.i.mu=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorLeft",{get:function(){return this.i.mt},set:function(t){this.i.mt=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"clearIconTop",{get:function(){return this.i.ms},set:function(t){this.i.ms=+t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"clearIconLeft",{get:function(){return this.i.mr},set:function(t){this.i.mr=+t},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(null!=this.filterOperands&&this.filterOperands.findByName&&this.filterOperands.findByName(e)?this.filterOperands.findByName(e):null)},n}(Ar),Ll=function(t){function n(){var n=t.call(this)||this;n.contentColumns=[],n.combinedColumns=[],n._disableManualColumnSync=!1,n._columns=null,n._columnsAdapter=null,n._renderer=null,n._disconnected=!1,n._initialized=!1,n._scroller=null,n._wrapper=null,n._grid=null,n.containerResized=function(){var t=this._container.getNativeElement().clientWidth,e=this._container.getNativeElement().clientHeight;this._scroller.viewportWidth=t,this._scroller.viewportHeight=e,this._scroller.verticalTrackStartInset=this.getVerticalTrackStartInset(),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()},n._dataSource=null,n._insetLeft=0,n._insetTop=0,n._insetRight=0,n._insetBottom=0,n._hasParentAdded=!1,n._isGroupByAreaVisible=!1,n._hasColumnGroupingAdded=!1,n._isPagerVisible=!1,n._settingAttributes=!1,n._attached=!1,n._queuedSetAttributes=[],n._updatingFromAttribute=!1,n._selectedItems=null,n._selectedKeys=null,n._selectedCells=null,n._selectedCellRanges=null,n._pinnedItems=null,n._pinnedKeys=null,n._responsiveStates=null,n._actualColumns=null,n.__p=null,n._hasUserValues=new Set,n._stylingContainer=null,n._stylingParent=null,n._inStyling=!1,n._filterExpressionsChanging=null,n._filterExpressionsChanging_wrapped=null,n._filterExpressionsChanged=null,n._filterExpressionsChanged_wrapped=null,n._cellPreviewPointerDown=null,n._cellPreviewPointerDown_wrapped=null,n._cellPreviewPointerUp=null,n._cellPreviewPointerUp_wrapped=null,n._cellPointerDown=null,n._cellPointerDown_wrapped=null,n._cellPointerUp=null,n._cellPointerUp_wrapped=null,n._cellClicked=null,n._cellClicked_wrapped=null,n._sortDescriptionsChanged=null,n._sortDescriptionsChanged_wrapped=null,n._groupDescriptionsChanged=null,n._groupDescriptionsChanged_wrapped=null,n._summaryDescriptionsChanged=null,n._summaryDescriptionsChanged_wrapped=null,n._columnHiddenChanged=null,n._columnHiddenChanged_wrapped=null,n._columnPinnedChanged=null,n._columnPinnedChanged_wrapped=null,n._cellValueChanging=null,n._cellValueChanging_wrapped=null,n._dataCommitted=null,n._dataCommitted_wrapped=null,n._dataCommitting=null,n._dataCommitting_wrapped=null,n._rootSummariesChanged=null,n._rootSummariesChanged_wrapped=null,n._sizeChanged=null,n._sizeChanged_wrapped=null,n._actualColumnsChanged=null,n._actualColumnsChanged_wrapped=null,n._columnsAutoGenerated=null,n._columnsAutoGenerated_wrapped=null,n._selectedItemsChanged=null,n._selectedItemsChanged_wrapped=null,n._selectedKeysChanged=null,n._selectedKeysChanged_wrapped=null,n._selectedCellsChanged=null,n._selectedCellsChanged_wrapped=null,n._selectionChanged=null,n._selectionChanged_wrapped=null,n._activeCellChanged=null,n._activeCellChanged_wrapped=null,n._selectedCellRangesChanged=null,n._selectedCellRangesChanged_wrapped=null,n._columnWidthChanged=null,n._columnWidthChanged_wrapped=null,n._cellEditStarted=null,n._cellEditStarted_wrapped=null,n._cellEditEnded=null,n._cellEditEnded_wrapped=null,n._rowEditStarted=null,n._rowEditStarted_wrapped=null,n._rowEditEnded=null,n._rowEditEnded_wrapped=null,n._customFilterRequested=null,n._customFilterRequested_wrapped=null,n._actualPrimaryKeyChange=null,n._actualPrimaryKeyChange_wrapped=null,n._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(n)),n._portalManager=new i.PortalManager("filterDialog"),n._renderer=new i.WebComponentRenderer(n,document,!0,al,n._portalManager),n._container=n._renderer.createElement("div"),n._renderer.updateRoot(n._container),n._renderer.rootWrapper.setStyleProperty("display","block"),n._renderer.rootWrapper.setStyleProperty("width","100%"),n._renderer.rootWrapper.setStyleProperty("height","100%"),n._renderer.rootWrapper.setStyleProperty("overflow","hidden"),n._container,null!=n._container.getNativeElement()&&n._container.getNativeElement(),n._contentArea=n._renderer.createElement("div"),n._contentArea.setRawStyleProperty("overflow","hidden"),n._contentArea.setRawStyleProperty("flex","1"),n._contentArea.append(n._renderer.rootWrapper),n._wrapper=n._renderer,n._implementation=new tn;var r=n.i;n._grid=r,n._grid.externalObject=n,n._columnsAdapter=new i.CollectionAdapter(n.contentColumns,n.i.columns,n.combinedColumns,(function(t){return t.i}),(function(t){t._provideRenderer(n._wrapper),n.parentElement&&t._styling(n,n,n)}),(function(t){t._provideRenderer(null)}),(function(t){return t.name||t.field})),r.externalGrid=new cs(n),r.tickProvider=new ps(n._renderer),r.platformPixelConverter=new ds;var o=n.getAttribute("use-accessibility");o&&(n.useAccessibility=i.ensureBool(o)),r.viewportManager=new Ya(n),r.delayedExecutionManager=new Ja(n._renderer),r.propertySetter=new el;var s=new i.Scroller;s.scrollbarStyle=n.scrollbarStyle,n._scroller=s,n._scroller.keyboardListener=new Cl(r),s.provideContainer(n._renderer),s.onScrolling=function(){return n.onScroll()},s.onScrollStart=function(){return n.onScrollStart()},s.onScrollStop=function(){return n.onScrollStop()},s.viewportWidth=n._container.getNativeElement().clientWidth,s.viewportHeight=n._container.getNativeElement().clientHeight;n.filterUIType===xe.FilterRow&&(n.actualRowHeight,n.rowSeparatorHeight);return s.verticalTrackStartInset=n.getVerticalTrackStartInset(),r.dragger=new sl,r.dragger.provideContainer(n._renderer),r.dragger.viewportWidth=n._container.getNativeElement().clientWidth,r.dragger.viewportHeight=n._container.getNativeElement().clientHeight,new MutationObserver((function(t){var i,r;try{for(var o=e.__values(t),s=o.next();!s.done;s=o.next()){"childList"==s.value.type&&n.updateContentColumns()}}catch(t){i={error:t}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}})).observe(n,{childList:!0}),n._renderer.addSizeWatcher((function(){n.containerResized()})),n}return e.__extends(n,t),n.prototype._ensureColumnsAreManual=function(){this._disableManualColumnSync=!0,this._columnsAdapter.shiftContentToManual(this.columns,(function(t){return t.isFromMarkup=!1})),this._disableManualColumnSync=!1},Object.defineProperty(n.prototype,"columns",{get:function(){var t=this;if(null===this._columns){var e=new Uo;e._innerColl.addListener((function(e,n){if(!t._disableManualColumnSync)switch(n.action){case i.NotifyCollectionChangedAction.Add:t._columnsAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Remove:t._columnsAdapter.removeManualItemAt(n.oldStartingIndex);break;case i.NotifyCollectionChangedAction.Replace:t._columnsAdapter.removeManualItemAt(n.oldStartingIndex),t._columnsAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Reset:t._columnsAdapter.clearManualItems()}})),this._columns=e}return this._columns},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.containerResized()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.containerResized()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"useCanvas",{get:function(){return this._useCanvas},set:function(t){this._useCanvas=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"useAccessibility",{get:function(){return this._useAccessibility},set:function(t){this._useAccessibility=i.ensureBool(t)},enumerable:!1,configurable:!0}),n.prototype._setScrollbarStyle=function(t){this._scroller&&(this._scroller.scrollbarStyle=t)},n.prototype._setScrollbarColor=function(t){this._scroller&&(this._scroller.scrollbarBrush=t)},n.prototype.createImplementation=function(){return new tn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.onImplementationCreated=function(){},n.prototype.getVerticalTrackStartInset=function(){var t=this.filterUIType===xe.FilterRow?this.actualRowHeight+this.rowSeparatorHeight:0;return this.actualHeaderHeight+this.rowSeparatorHeight+t},n.prototype._focusScroller=function(){this._scroller.focus()},n.prototype._setDefaultCursor=function(){""!==this.style.cursor&&(this.style.cursor="")},n.prototype._setResizeCursor=function(){"col-resize"!==this.style.cursor&&(this.style.cursor="col-resize")},n.prototype._setHandCursor=function(){"grabbing"!==this.style.cursor&&(this.style.cursor="grabbing")},n.prototype._setBorder=function(t,e,i,n,r,o,s,a,l){this._attached&&(0!==e||0!==i||0!==n||0!==r?(this.style.borderStyle="solid",this.style.borderColor=t,this.style.borderTopWidth=i+"px",this.style.borderRightWidth=n+"px",this.style.borderBottomWidth=r+"px",this.style.borderLeftWidth=e+"px",this.style.borderTopLeftRadius=o+"px",this.style.borderTopRightRadius=s+"px",this.style.borderBottomLeftRadius=a+"px",this.style.borderBottomRightRadius=l+"px"):this.style.borderStyle="none")},n.prototype._setScrollerVerticalTrackInset=function(t){this._scroller.verticalTrackStartInset=t},n.prototype.updateContentColumns=function(){this.contentColumns.length=0;for(var t=0;t<this.children.length;t++)this.children[t]instanceof Do&&this.contentColumns.push(this.children[t]);null!=this._columnsAdapter&&this._columnsAdapter.notifyContentChanged()},n.prototype._insertExternalColumnAtIndex=function(t,e){var i=this._columnsAdapter.actualContent.length;this.columns.insert(t-i,e)},n.prototype._removeExternalColumn=function(t){for(var e=-1,i=0;i<this.columns.count;i++)if(this.columns.item(i)===t){e=i;break}e>=0&&this.columns.removeAt(e)},n.prototype.disconnectedCallback=function(){this._disconnected=!0,this._attached=!1,this.i&&(this._scroller&&this._scroller.onDetachedFromUI(),this._grid.dragger&&this._grid.dragger.onDetachedFromUI(),this._grid.renderingEngine&&this._grid.renderingEngine.detach())},n.prototype.connectedCallback=function(){if(this._disconnected)return this._disconnected=!1,void(this.i&&(this._scroller&&this._scroller.onAttachedToUI(),this._grid.dragger&&this._grid.dragger.onAttachedToUI()));this.classList.add("ig-data-grid"),this.classList.add("igc-data-grid"),this.appendChild(this._contentArea.getNativeElement()),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this.style.boxSizing="border-box",this.style.overflow="hidden",this.style.display="flex",this.style.flexDirection="column",this._hasParentAdded=!0,this.isToolbarVisible&&this.showToolbar(),1==this._isGroupByAreaVisible&&this.SetupColumnGrouping(),this.isPagerVisible&&this.showPager(),this.i.syncBorder(),this._flushQueuedAttributes();var t=this._grid.columnPropertyUpdatingAnimationMode;this._grid.columnPropertyUpdatingAnimationMode=zt.None,this._styling(this,this),this._grid.columnPropertyUpdatingAnimationMode=t,t=this._grid.columnPropertyUpdatingAnimationMode,this._grid.columnPropertyUpdatingAnimationMode=zt.None;for(var e=0;e<this.actualColumns.count;e++){this.actualColumns.item(e)._styling(this,this,this)}this._grid.columnPropertyUpdatingAnimationMode=t,this._initialized||(this.useAccessibility?(this._contentLayout=new Tl(this._renderer,new Xa(this._grid,this.useCanvas),window.devicePixelRatio),this._contentLayout.rootElement=this._renderer.rootWrapper):this._contentLayout=new hs(this._renderer,new Xa(this._grid,this.useCanvas),window.devicePixelRatio),this._grid.renderingEngine=this._contentLayout,this._content=this._contentLayout.element.getNativeElement(),this._scroller.provideContent(new i.WebComponentWrapper(this._content,this._renderer)),this._initialized=!0),this.updateContentColumns(),this.afterContentInit()},n.prototype.SetupColumnGrouping=function(){if(0==this._hasColumnGroupingAdded&&1==this._hasParentAdded){var t=this._renderer.createElement("div"),e=this._renderer.createElement("div");t.append(e),t.setStyleProperty("width","100%");var i=this._renderer.getSubRenderer(t);this.insertBefore(i.rootWrapper.getNativeElement(),this._contentArea.getNativeElement());var n=new Vl;n.targetGrid=this._grid,n.provideContainer(i),this._hasColumnGroupingAdded=!0,this.i.columnGrouping=n}},n.prototype.showPager=function(){this._pager||(this._pager=document.createElement("igc-data-grid-pager")),this._pager&&1==this._hasParentAdded&&(this._pager.targetGrid=this,this.appendChild(this._pager),this.i.pager=this._pager.i)},n.prototype.hidePager=function(){this._pager&&(this.removeChild(this._pager),this._pager.targetGrid=null,this.i.pager=null,this._grid.itemsSource=this._dataSource)},n.prototype.showToolbar=function(){this._toolbar||1!=this._hasParentAdded||(this._toolbar=document.createElement("igc-data-grid-toolbar"),this._toolbar.borderWidthTop=0,this._toolbar.borderWidthRight=0,this._toolbar.borderWidthBottom=1,this._toolbar.borderWidthLeft=0,this.i.toolbar=this._toolbar.i,this._toolbar.targetGrid=this),this._toolbar&&1==this._hasParentAdded&&this.insertBefore(this._toolbar,this._contentArea.getNativeElement())},n.prototype.hideToolbar=function(){this._toolbar&&this.removeChild(this._toolbar)},Object.defineProperty(n.prototype,"actualDataSource",{get:function(){return this.i.actualDataSource},enumerable:!1,configurable:!0}),n.prototype.afterContentInit=function(){this._grid.itemsSource=this._dataSource},n.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,this._scroller.verticalTrackStartInset=this.getVerticalTrackStartInset())}},n.prototype.onScroll=function(){var t=this._scroller.scrollTop,e=this._scroller.scrollLeft,i=this._scroller.viewportWidth,n=this._scroller.viewportHeight;this._grid.renderingEngine&&this._grid.setViewport(e,t,e+i,t+n)},n.prototype.onScrollStart=function(){this._grid.notifyScrollStart()},n.prototype.onScrollStop=function(){this._grid.notifyScrollStop()},n.prototype._scrollTo=function(t,e){this._scroller.scrollTo(t,e)},Object.defineProperty(n.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}),n.prototype.forColumnsWithPropertyPath=function(t,e){for(var i=0;i<this.i.actualColumns.count;i++){var n=this.i.actualColumns.item(i).externalObject;n.field==t&&e(n)}},Object.defineProperty(n.prototype,"defaultColumnWidth",{get:function(){var t=this.i.defaultColumnWidth.externalObject;return t||((t=new vo)._implementation=this.i.defaultColumnWidth),t},set:function(t){if("string"==typeof t){var e=Rt.parse(t),i=new vo;i._implementation=e,t=i}this.i.defaultColumnWidth=t.i},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"insetLeft",{get:function(){return this._insetLeft},set:function(t){this._insetLeft=+t;var e=new i.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"insetTop",{get:function(){return this._insetTop},set:function(t){this._insetTop=+t;var e=new i.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"insetRight",{get:function(){return this._insetLeft},set:function(t){this._insetRight=+t;var e=new i.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"insetBottom",{get:function(){return this._insetBottom},set:function(t){this._insetBottom=+t;var e=new i.Thickness(1,this._insetLeft,this._insetTop,this._insetRight,this._insetBottom);this.i.inset=e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isGroupByAreaVisible",{get:function(){return this._isGroupByAreaVisible},set:function(t){this._isGroupByAreaVisible=i.ensureBool(t),this.i.isGroupByAreaVisible=this._isGroupByAreaVisible,1==this._isGroupByAreaVisible&&this.SetupColumnGrouping()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isPagerVisible",{get:function(){return this.i.isPagerVisible},set:function(t){this.i.isPagerVisible=i.ensureBool(t),this.i.isPagerVisible?this.showPager():this.hidePager()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isToolbarVisible",{get:function(){return this.i.isToolbarVisible},set:function(t){this.i.isToolbarVisible=i.ensureBool(t),this.i.isToolbarVisible?this.showToolbar():this.hideToolbar()},enumerable:!1,configurable:!0}),n.prototype.getHitCell=function(t,e){var i=this.i.getHitCell(t,e);if(!i)return null;if(!i.externalObject){var n=null;switch(i.$type.name){case"DateTimeCellModel":n=new Er;break;case"ImageCellModel":n=new Br;break;case"NumericCellModel":n=new Dr;break;case"RowSeparatorModel":n=new $r;break;case"SectionHeaderCellModel":n=new Mr;break;case"TemplateCellModel":n=new zr;break;case"TemplateHeaderCellModel":n=new Gr;break;case"TemplateSectionHeaderCellModel":n=new qr;break;case"TextCellModel":n=new Lr;break;case"TextHeaderCellModel":n=new Hr;break;case"FilterCellModel":n=new ql}n._implementation=i,i.externalObject=n}return i.externalObject},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridComponent=t}return n._observedAttributesIgcDataGridComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"columnResizingMode",{get:function(){return this.i.columnResizingMode},set:function(t){this.i.columnResizingMode=i.ensureEnum(kt,t),this._a("columnResizingMode",i.enumToString(kt,this.i.columnResizingMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnMovingMode",{get:function(){return this.i.columnMovingMode},set:function(t){this.i.columnMovingMode=i.ensureEnum(Tt,t),this._a("columnMovingMode",i.enumToString(Tt,this.i.columnMovingMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isRowHoverEnabled",{get:function(){return this.i.isRowHoverEnabled},set:function(t){this.i.isRowHoverEnabled=i.ensureBool(t),this._a("isRowHoverEnabled",this.i.isRowHoverEnabled)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowHoverBackground",{get:function(){return i.brushToString(this.i.rowHoverBackground)},set:function(t){this.i.rowHoverBackground=i.stringToBrush(t),this._a("rowHoverBackground",i.brushToString(this.i.rowHoverBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowHoverTextColor",{get:function(){return i.brushToString(this.i.rowHoverTextColor)},set:function(t){this.i.rowHoverTextColor=i.stringToBrush(t),this._a("rowHoverTextColor",i.brushToString(this.i.rowHoverTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editRowBorder",{get:function(){return i.brushToString(this.i.editRowBorder)},set:function(t){this.i.editRowBorder=i.stringToBrush(t),this._a("editRowBorder",i.brushToString(this.i.editRowBorder))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editRowBorderWidthBottom",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.bottom:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.bottom=+t,this._a("editRowBorderWidthBottom",this.i.editRowBorderWidth.bottom),this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editRowBorderWidthLeft",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.left:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.left=+t,this._a("editRowBorderWidthLeft",this.i.editRowBorderWidth.left),this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editRowBorderWidthRight",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.right:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.right=+t,this._a("editRowBorderWidthRight",this.i.editRowBorderWidth.right),this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editRowBorderWidthTop",{get:function(){return this.i.editRowBorderWidth?this.i.editRowBorderWidth.top:NaN},set:function(t){this.ensureEditRowBorderWidth(),this.i.editRowBorderWidth.top=+t,this._a("editRowBorderWidthTop",this.i.editRowBorderWidth.top),this.i.editRowBorderWidth=this.i.editRowBorderWidth},enumerable:!1,configurable:!0}),n.prototype.ensureEditRowBorderWidth=function(){this.i.editRowBorderWidth||(this.i.editRowBorderWidth=new i.Thickness(2))},Object.defineProperty(n.prototype,"sectionHeader",{get:function(){var t=this.i.sectionHeader;if(null==t)return null;if(!t.externalObject){var e=no._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(n.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(n.prototype,"summaryRowSection",{get:function(){var t=this.i.summaryRowSection;if(null==t)return null;if(!t.externalObject){var e=bo._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(n.prototype,"rowSeparator",{get:function(){var t=this.i.rowSeparator;if(null==t)return null;if(!t.externalObject){var e=oo._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(n.prototype,"headerRowSeparator",{get:function(){var t=this.i.headerRowSeparator;if(null==t)return null;if(!t.externalObject){var e=bl._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(n.prototype,"headerSeparator",{get:function(){var t=this.i.headerSeparator;if(null==t)return null;if(!t.externalObject){var e=ao._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(n.prototype,"columnResizingSeparator",{get:function(){var t=this.i.columnResizingSeparator;if(null==t)return null;if(!t.externalObject){var e=uo._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(n.prototype,"columnMovingSeparator",{get:function(){var t=this.i.columnMovingSeparator;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.columnMovingSeparator=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedAreaSeparator",{get:function(){var t=this.i.pinnedAreaSeparator;if(null==t)return null;if(!t.externalObject){var e=_l._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(n.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(n.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(n.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.density))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualRowHeight",{get:function(){return this.i.actualRowHeight},set:function(t){this.i.actualRowHeight=+t,this._a("actualRowHeight",this.i.actualRowHeight)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowHeight",{get:function(){return this.i.rowHeight},set:function(t){this.i.rowHeight=+t,this._a("rowHeight",this.i.rowHeight)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"defaultColumnMinWidth",{get:function(){return this.i.defaultColumnMinWidth},set:function(t){this.i.defaultColumnMinWidth=+t,this._a("defaultColumnMinWidth",this.i.defaultColumnMinWidth)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualHeaderHeight",{get:function(){return this.i.actualHeaderHeight},set:function(t){this.i.actualHeaderHeight=+t,this._a("actualHeaderHeight",this.i.actualHeaderHeight)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerHeight",{get:function(){return this.i.headerHeight},set:function(t){this.i.headerHeight=+t,this._a("headerHeight",this.i.headerHeight)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerClickAction",{get:function(){return this.i.headerClickAction},set:function(t){this.i.headerClickAction=i.ensureEnum(Et,t),this._a("headerClickAction",i.enumToString(Et,this.i.headerClickAction))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editMode",{get:function(){return this.i.editMode},set:function(t){this.i.editMode=i.ensureEnum(v,t),this._a("editMode",i.enumToString(v,this.i.editMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editModeClickAction",{get:function(){return this.i.editModeClickAction},set:function(t){this.i.editModeClickAction=i.ensureEnum(Dt,t),this._a("editModeClickAction",i.enumToString(Dt,this.i.editModeClickAction))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editOnKeyPress",{get:function(){return this.i.editOnKeyPress},set:function(t){this.i.editOnKeyPress=i.ensureBool(t),this._a("editOnKeyPress",this.i.editOnKeyPress)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"autoGenerateColumns",{get:function(){return this.i.autoGenerateColumns},set:function(t){this.i.autoGenerateColumns=i.ensureBool(t),this._a("autoGenerateColumns",this.i.autoGenerateColumns)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSeparatorHeight",{get:function(){return this.i.rowSeparatorHeight},set:function(t){this.i.rowSeparatorHeight=+t,this._a("rowSeparatorHeight",this.i.rowSeparatorHeight)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isPlaceholderRenderingEnabled",{get:function(){return this.i.isPlaceholderRenderingEnabled},set:function(t){this.i.isPlaceholderRenderingEnabled=i.ensureBool(t),this._a("isPlaceholderRenderingEnabled",this.i.isPlaceholderRenderingEnabled)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnAddingAnimationMode",{get:function(){return this.i.columnAddingAnimationMode},set:function(t){this.i.columnAddingAnimationMode=i.ensureEnum(Mt,t),this._a("columnAddingAnimationMode",i.enumToString(Mt,this.i.columnAddingAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnPropertyUpdatingAnimationMode",{get:function(){return this.i.columnPropertyUpdatingAnimationMode},set:function(t){this.i.columnPropertyUpdatingAnimationMode=i.ensureEnum(Nt,t),this._a("columnPropertyUpdatingAnimationMode",i.enumToString(Nt,this.i.columnPropertyUpdatingAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellDataLoadedAnimationMode",{get:function(){return this.i.cellDataLoadedAnimationMode},set:function(t){this.i.cellDataLoadedAnimationMode=i.ensureEnum(Gt,t),this._a("cellDataLoadedAnimationMode",i.enumToString(Gt,this.i.cellDataLoadedAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSelectionAnimationMode",{get:function(){return this.i.rowSelectionAnimationMode},set:function(t){this.i.rowSelectionAnimationMode=i.ensureEnum(qt,t),this._a("rowSelectionAnimationMode",i.enumToString(qt,this.i.rowSelectionAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowHoverAnimationMode",{get:function(){return this.i.rowHoverAnimationMode},set:function(t){this.i.rowHoverAnimationMode=i.ensureEnum(Ht,t),this._a("rowHoverAnimationMode",i.enumToString(Ht,this.i.rowHoverAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellSelectionAnimationMode",{get:function(){return this.i.cellSelectionAnimationMode},set:function(t){this.i.cellSelectionAnimationMode=i.ensureEnum(Ut,t),this._a("cellSelectionAnimationMode",i.enumToString(Ut,this.i.cellSelectionAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"animationSettings",{get:function(){var t=this.i.animationSettings;if(null==t)return null;if(!t.externalObject){var e=new gl;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(n.prototype,"columnResizingAnimationMode",{get:function(){return this.i.columnResizingAnimationMode},set:function(t){this.i.columnResizingAnimationMode=i.ensureEnum(te,t),this._a("columnResizingAnimationMode",i.enumToString(te,this.i.columnResizingAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnShowingAnimationMode",{get:function(){return this.i.columnShowingAnimationMode},set:function(t){this.i.columnShowingAnimationMode=i.ensureEnum(Mt,t),this._a("columnShowingAnimationMode",i.enumToString(Mt,this.i.columnShowingAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnMovingAnimationMode",{get:function(){return this.i.columnMovingAnimationMode},set:function(t){this.i.columnMovingAnimationMode=i.ensureEnum(ie,t),this._a("columnMovingAnimationMode",i.enumToString(ie,this.i.columnMovingAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnHidingAnimationMode",{get:function(){return this.i.columnHidingAnimationMode},set:function(t){this.i.columnHidingAnimationMode=i.ensureEnum(re,t),this._a("columnHidingAnimationMode",i.enumToString(re,this.i.columnHidingAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnExchangingAnimationMode",{get:function(){return this.i.columnExchangingAnimationMode},set:function(t){this.i.columnExchangingAnimationMode=i.ensureEnum(se,t),this._a("columnExchangingAnimationMode",i.enumToString(se,this.i.columnExchangingAnimationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectionMode",{get:function(){return this.i.selectionMode},set:function(t){this.i.selectionMode=i.ensureEnum(le,t),this._a("selectionMode",i.enumToString(le,this.i.selectionMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activationMode",{get:function(){return this.i.activationMode},set:function(t){this.i.activationMode=i.ensureEnum(he,t),this._a("activationMode",i.enumToString(he,this.i.activationMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectionBehavior",{get:function(){return this.i.selectionBehavior},set:function(t){this.i.selectionBehavior=i.ensureEnum(pe,t),this._a("selectionBehavior",i.enumToString(pe,this.i.selectionBehavior))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mouseDragSelectionEnabled",{get:function(){return this.i.mouseDragSelectionEnabled},set:function(t){this.i.mouseDragSelectionEnabled=i.ensureBool(t),this._a("mouseDragSelectionEnabled",this.i.mouseDragSelectionEnabled)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedItems",{get:function(){if(null===this._selectedItems){var t=new Xo,e=this.i.selectedItems;e||(e=new de),this._selectedItems=t._fromInner(e)}return this._selectedItems},set:function(t){null!==this._selectedItems&&(this._selectedItems._setSyncTarget(null),this._selectedItems=null);var e=new Xo;this._selectedItems=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(i.Base.$type),r=this.i.selectedItems;r||(r=new de),n._inner=r,n.clear(),this._selectedItems._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedKeys",{get:function(){if(null===this._selectedKeys){var t=new Yo,e=this.i.selectedKeys;e||(e=new me),this._selectedKeys=t._fromInner(e)}return this._selectedKeys},set:function(t){null!==this._selectedKeys&&(this._selectedKeys._setSyncTarget(null),this._selectedKeys=null);var e=new Yo;this._selectedKeys=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(fe.$type),r=this.i.selectedKeys;r||(r=new me),n._inner=r,n.clear(),this._selectedKeys._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedCells",{get:function(){if(null===this._selectedCells){var t=new Jo,e=this.i.selectedCells;e||(e=new vn),this._selectedCells=t._fromInner(e)}return this._selectedCells},set:function(t){null!==this._selectedCells&&(this._selectedCells._setSyncTarget(null),this._selectedCells=null);var e=new Jo;this._selectedCells=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(yn.$type),r=this.i.selectedCells;r||(r=new vn),n._inner=r,n.clear(),this._selectedCells._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedCellRanges",{get:function(){if(null===this._selectedCellRanges){var t=new es,e=this.i.selectedCellRanges;e||(e=new be),this._selectedCellRanges=t._fromInner(e)}return this._selectedCellRanges},set:function(t){null!==this._selectedCellRanges&&(this._selectedCellRanges._setSyncTarget(null),this._selectedCellRanges=null);var e=new es;this._selectedCellRanges=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(ge.$type),r=this.i.selectedCellRanges;r||(r=new be),n._inner=r,n.clear(),this._selectedCellRanges._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedItems",{get:function(){if(null===this._pinnedItems){var t=new Xo,e=this.i.pinnedItems;e||(e=new de),this._pinnedItems=t._fromInner(e)}return this._pinnedItems},set:function(t){null!==this._pinnedItems&&(this._pinnedItems._setSyncTarget(null),this._pinnedItems=null);var e=new Xo;this._pinnedItems=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(i.Base.$type),r=this.i.pinnedItems;r||(r=new de),n._inner=r,n.clear(),this._pinnedItems._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedKeys",{get:function(){if(null===this._pinnedKeys){var t=new Yo,e=this.i.pinnedKeys;e||(e=new me),this._pinnedKeys=t._fromInner(e)}return this._pinnedKeys},set:function(t){null!==this._pinnedKeys&&(this._pinnedKeys._setSyncTarget(null),this._pinnedKeys=null);var e=new Yo;this._pinnedKeys=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(fe.$type),r=this.i.pinnedKeys;r||(r=new me),n._inner=r,n.clear(),this._pinnedKeys._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isColumnOptionsEnabled",{get:function(){return this.i.isColumnOptionsEnabled},set:function(t){this.i.isColumnOptionsEnabled=i.ensureBool(t),this._a("isColumnOptionsEnabled",this.i.isColumnOptionsEnabled)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isGroupRowSticky",{get:function(){return this.i.isGroupRowSticky},set:function(t){this.i.isGroupRowSticky=i.ensureBool(t),this._a("isGroupRowSticky",this.i.isGroupRowSticky)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isHeaderSeparatorVisible",{get:function(){return this.i.isHeaderSeparatorVisible},set:function(t){this.i.isHeaderSeparatorVisible=i.ensureBool(t),this._a("isHeaderSeparatorVisible",this.i.isHeaderSeparatorVisible)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellSelectedBackground",{get:function(){return i.brushToString(this.i.cellSelectedBackground)},set:function(t){this.i.cellSelectedBackground=i.stringToBrush(t),this._a("cellSelectedBackground",i.brushToString(this.i.cellSelectedBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sectionHeaderSelectedBackground",{get:function(){return i.brushToString(this.i.sectionHeaderSelectedBackground)},set:function(t){this.i.sectionHeaderSelectedBackground=i.stringToBrush(t),this._a("sectionHeaderSelectedBackground",i.brushToString(this.i.sectionHeaderSelectedBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRootBackground",{get:function(){return i.brushToString(this.i.summaryRootBackground)},set:function(t){this.i.summaryRootBackground=i.stringToBrush(t),this._a("summaryRootBackground",i.brushToString(this.i.summaryRootBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summarySectionBackground",{get:function(){return i.brushToString(this.i.summarySectionBackground)},set:function(t){this.i.summarySectionBackground=i.stringToBrush(t),this._a("summarySectionBackground",i.brushToString(this.i.summarySectionBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedRowOpacity",{get:function(){return this.i.pinnedRowOpacity},set:function(t){this.i.pinnedRowOpacity=+t,this._a("pinnedRowOpacity",this.i.pinnedRowOpacity)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editTextStyle",{get:function(){return null==this.i.editTextStyle?null:this.i.editTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.editTextStyle=e,this._a("editTextStyle",null!=this.i.editTextStyle?this.i.editTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editOpacity",{get:function(){return this.i.editOpacity},set:function(t){this.i.editOpacity=+t,this._a("editOpacity",this.i.editOpacity)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"deletedTextColor",{get:function(){return i.brushToString(this.i.deletedTextColor)},set:function(t){this.i.deletedTextColor=i.stringToBrush(t),this._a("deletedTextColor",i.brushToString(this.i.deletedTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"stickyRowBackground",{get:function(){return i.brushToString(this.i.stickyRowBackground)},set:function(t){this.i.stickyRowBackground=i.stringToBrush(t),this._a("stickyRowBackground",i.brushToString(this.i.stickyRowBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedRowBackground",{get:function(){return i.brushToString(this.i.pinnedRowBackground)},set:function(t){this.i.pinnedRowBackground=i.stringToBrush(t),this._a("pinnedRowBackground",i.brushToString(this.i.pinnedRowBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"lastStickyRowBackground",{get:function(){return i.brushToString(this.i.lastStickyRowBackground)},set:function(t){this.i.lastStickyRowBackground=i.stringToBrush(t),this._a("lastStickyRowBackground",i.brushToString(this.i.lastStickyRowBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activeCell",{get:function(){var t=this.i.activeCell;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.activeCell=null==t?null:t.i},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellBackground",{get:function(){return i.brushToString(this.i.cellBackground)},set:function(t){this.i.cellBackground=i.stringToBrush(t),this._a("cellBackground",i.brushToString(this.i.cellBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellTextColor",{get:function(){return i.brushToString(this.i.cellTextColor)},set:function(t){this.i.cellTextColor=i.stringToBrush(t),this._a("cellTextColor",i.brushToString(this.i.cellTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerSortIndicatorColor",{get:function(){return i.brushToString(this.i.headerSortIndicatorColor)},set:function(t){this.i.headerSortIndicatorColor=i.stringToBrush(t),this._a("headerSortIndicatorColor",i.brushToString(this.i.headerSortIndicatorColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerSortIndicatorStyle",{get:function(){return this.i.headerSortIndicatorStyle},set:function(t){this.i.headerSortIndicatorStyle=i.ensureEnum(s,t),this._a("headerSortIndicatorStyle",i.enumToString(s,this.i.headerSortIndicatorStyle))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellTextStyle",{get:function(){return null==this.i.cellTextStyle?null:this.i.cellTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.cellTextStyle=e,this._a("cellTextStyle",null!=this.i.cellTextStyle?this.i.cellTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sectionHeaderBackground",{get:function(){return i.brushToString(this.i.sectionHeaderBackground)},set:function(t){this.i.sectionHeaderBackground=i.stringToBrush(t),this._a("sectionHeaderBackground",i.brushToString(this.i.sectionHeaderBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sectionHeaderTextColor",{get:function(){return i.brushToString(this.i.sectionHeaderTextColor)},set:function(t){this.i.sectionHeaderTextColor=i.stringToBrush(t),this._a("sectionHeaderTextColor",i.brushToString(this.i.sectionHeaderTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sectionHeaderTextStyle",{get:function(){return null==this.i.sectionHeaderTextStyle?null:this.i.sectionHeaderTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.sectionHeaderTextStyle=e,this._a("sectionHeaderTextStyle",null!=this.i.sectionHeaderTextStyle?this.i.sectionHeaderTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRootLabelTextStyle",{get:function(){return null==this.i.summaryRootLabelTextStyle?null:this.i.summaryRootLabelTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.summaryRootLabelTextStyle=e,this._a("summaryRootLabelTextStyle",null!=this.i.summaryRootLabelTextStyle?this.i.summaryRootLabelTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summarySectionLabelTextStyle",{get:function(){return null==this.i.summarySectionLabelTextStyle?null:this.i.summarySectionLabelTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.summarySectionLabelTextStyle=e,this._a("summarySectionLabelTextStyle",null!=this.i.summarySectionLabelTextStyle?this.i.summarySectionLabelTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRootValueTextColor",{get:function(){return i.brushToString(this.i.summaryRootValueTextColor)},set:function(t){this.i.summaryRootValueTextColor=i.stringToBrush(t),this._a("summaryRootValueTextColor",i.brushToString(this.i.summaryRootValueTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRootValueTextStyle",{get:function(){return null==this.i.summaryRootValueTextStyle?null:this.i.summaryRootValueTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.summaryRootValueTextStyle=e,this._a("summaryRootValueTextStyle",null!=this.i.summaryRootValueTextStyle?this.i.summaryRootValueTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summarySectionValueTextStyle",{get:function(){return null==this.i.summarySectionValueTextStyle?null:this.i.summarySectionValueTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.summarySectionValueTextStyle=e,this._a("summarySectionValueTextStyle",null!=this.i.summarySectionValueTextStyle?this.i.summarySectionValueTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summarySectionValueTextColor",{get:function(){return i.brushToString(this.i.summarySectionValueTextColor)},set:function(t){this.i.summarySectionValueTextColor=i.stringToBrush(t),this._a("summarySectionValueTextColor",i.brushToString(this.i.summarySectionValueTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRootLabelTextColor",{get:function(){return i.brushToString(this.i.summaryRootLabelTextColor)},set:function(t){this.i.summaryRootLabelTextColor=i.stringToBrush(t),this._a("summaryRootLabelTextColor",i.brushToString(this.i.summaryRootLabelTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summarySectionLabelTextColor",{get:function(){return i.brushToString(this.i.summarySectionLabelTextColor)},set:function(t){this.i.summarySectionLabelTextColor=i.stringToBrush(t),this._a("summarySectionLabelTextColor",i.brushToString(this.i.summarySectionLabelTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryRootSelectedBackground",{get:function(){return i.brushToString(this.i.summaryRootSelectedBackground)},set:function(t){this.i.summaryRootSelectedBackground=i.stringToBrush(t),this._a("summaryRootSelectedBackground",i.brushToString(this.i.summaryRootSelectedBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summarySectionSelectedBackground",{get:function(){return i.brushToString(this.i.summarySectionSelectedBackground)},set:function(t){this.i.summarySectionSelectedBackground=i.stringToBrush(t),this._a("summarySectionSelectedBackground",i.brushToString(this.i.summarySectionSelectedBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinnedAreaSeparatorWidth",{get:function(){return this.i.pinnedAreaSeparatorWidth},set:function(t){this.i.pinnedAreaSeparatorWidth=+t,this._a("pinnedAreaSeparatorWidth",this.i.pinnedAreaSeparatorWidth)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerSeparatorWidth",{get:function(){return this.i.headerSeparatorWidth},set:function(t){this.i.headerSeparatorWidth=+t,this._a("headerSeparatorWidth",this.i.headerSeparatorWidth)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerSeparatorBackground",{get:function(){return i.brushToString(this.i.headerSeparatorBackground)},set:function(t){this.i.headerSeparatorBackground=i.stringToBrush(t),this._a("headerSeparatorBackground",i.brushToString(this.i.headerSeparatorBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerBackground",{get:function(){return i.brushToString(this.i.headerBackground)},set:function(t){this.i.headerBackground=i.stringToBrush(t),this._a("headerBackground",i.brushToString(this.i.headerBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerTextColor",{get:function(){return i.brushToString(this.i.headerTextColor)},set:function(t){this.i.headerTextColor=i.stringToBrush(t),this._a("headerTextColor",i.brushToString(this.i.headerTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerTextStyle",{get:function(){return null==this.i.headerTextStyle?null:this.i.headerTextStyle.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.headerTextStyle=e,this._a("headerTextStyle",null!=this.i.headerTextStyle?this.i.headerTextStyle.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSeparatorBackground",{get:function(){return i.brushToString(this.i.rowSeparatorBackground)},set:function(t){this.i.rowSeparatorBackground=i.stringToBrush(t),this._a("rowSeparatorBackground",i.brushToString(this.i.rowSeparatorBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerRowSeparatorBackground",{get:function(){return i.brushToString(this.i.headerRowSeparatorBackground)},set:function(t){this.i.headerRowSeparatorBackground=i.stringToBrush(t),this._a("headerRowSeparatorBackground",i.brushToString(this.i.headerRowSeparatorBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSeparatorStickyRowBackground",{get:function(){return i.brushToString(this.i.rowSeparatorStickyRowBackground)},set:function(t){this.i.rowSeparatorStickyRowBackground=i.stringToBrush(t),this._a("rowSeparatorStickyRowBackground",i.brushToString(this.i.rowSeparatorStickyRowBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSeparatorLastStickyRowBackground",{get:function(){return i.brushToString(this.i.rowSeparatorLastStickyRowBackground)},set:function(t){this.i.rowSeparatorLastStickyRowBackground=i.stringToBrush(t),this._a("rowSeparatorLastStickyRowBackground",i.brushToString(this.i.rowSeparatorLastStickyRowBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSeparatorPinnedRowBackground",{get:function(){return i.brushToString(this.i.rowSeparatorPinnedRowBackground)},set:function(t){this.i.rowSeparatorPinnedRowBackground=i.stringToBrush(t),this._a("rowSeparatorPinnedRowBackground",i.brushToString(this.i.rowSeparatorPinnedRowBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnResizingSeparatorWidth",{get:function(){return this.i.columnResizingSeparatorWidth},set:function(t){this.i.columnResizingSeparatorWidth=+t,this._a("columnResizingSeparatorWidth",this.i.columnResizingSeparatorWidth)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnResizingSeparatorOpacity",{get:function(){return this.i.columnResizingSeparatorOpacity},set:function(t){this.i.columnResizingSeparatorOpacity=+t,this._a("columnResizingSeparatorOpacity",this.i.columnResizingSeparatorOpacity)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnMovingSeparatorWidth",{get:function(){return this.i.columnMovingSeparatorWidth},set:function(t){this.i.columnMovingSeparatorWidth=+t,this._a("columnMovingSeparatorWidth",this.i.columnMovingSeparatorWidth)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnMovingSeparatorOpacity",{get:function(){return this.i.columnMovingSeparatorOpacity},set:function(t){this.i.columnMovingSeparatorOpacity=+t,this._a("columnMovingSeparatorOpacity",this.i.columnMovingSeparatorOpacity)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnResizingSeparatorBackground",{get:function(){return i.brushToString(this.i.columnResizingSeparatorBackground)},set:function(t){this.i.columnResizingSeparatorBackground=i.stringToBrush(t),this._a("columnResizingSeparatorBackground",i.brushToString(this.i.columnResizingSeparatorBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnMovingSeparatorBackground",{get:function(){return i.brushToString(this.i.columnMovingSeparatorBackground)},set:function(t){this.i.columnMovingSeparatorBackground=i.stringToBrush(t),this._a("columnMovingSeparatorBackground",i.brushToString(this.i.columnMovingSeparatorBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"shiftSectionContent",{get:function(){return this.i.shiftSectionContent},set:function(t){this.i.shiftSectionContent=i.ensureBool(t),this._a("shiftSectionContent",this.i.shiftSectionContent)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconAlignment",{get:function(){return this.i.columnOptionsIconAlignment},set:function(t){this.i.columnOptionsIconAlignment=i.ensureEnum(et,t),this._a("columnOptionsIconAlignment",i.enumToString(et,this.i.columnOptionsIconAlignment))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconColor",{get:function(){return i.brushToString(this.i.columnOptionsIconColor)},set:function(t){this.i.columnOptionsIconColor=i.stringToBrush(t),this._a("columnOptionsIconColor",i.brushToString(this.i.columnOptionsIconColor))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnOptionsIconBehavior",{get:function(){return this.i.columnOptionsIconBehavior},set:function(t){this.i.columnOptionsIconBehavior=i.ensureEnum(nt,t),this._a("columnOptionsIconBehavior",i.enumToString(nt,this.i.columnOptionsIconBehavior))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"border",{get:function(){return i.brushToString(this.i.border)},set:function(t){this.i.border=i.stringToBrush(t),this._a("border",i.brushToString(this.i.border))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBorderWidth",{get:function(){return this.i.actualBorderWidth},set:function(t){this.i.actualBorderWidth=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthBottom",{get:function(){return this.i.borderWidth?this.i.borderWidth.bottom:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.bottom=+t,this._a("borderWidthBottom",this.i.borderWidth.bottom),this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthLeft",{get:function(){return this.i.borderWidth?this.i.borderWidth.left:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.left=+t,this._a("borderWidthLeft",this.i.borderWidth.left),this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthRight",{get:function(){return this.i.borderWidth?this.i.borderWidth.right:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.right=+t,this._a("borderWidthRight",this.i.borderWidth.right),this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthTop",{get:function(){return this.i.borderWidth?this.i.borderWidth.top:NaN},set:function(t){this.ensureBorderWidth(),this.i.borderWidth.top=+t,this._a("borderWidthTop",this.i.borderWidth.top),this.i.borderWidth=this.i.borderWidth},enumerable:!1,configurable:!0}),n.prototype.ensureBorderWidth=function(){this.i.borderWidth||(this.i.borderWidth=new i.Thickness(2))},Object.defineProperty(n.prototype,"notifyOnAllSelectionChanges",{get:function(){return this.i.notifyOnAllSelectionChanges},set:function(t){this.i.notifyOnAllSelectionChanges=i.ensureBool(t),this._a("notifyOnAllSelectionChanges",this.i.notifyOnAllSelectionChanges)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cornerRadiusBottomRight",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.c:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.c=+t,this._a("cornerRadiusBottomRight",this.i.cornerRadius.c),this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cornerRadiusBottomLeft",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.b:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.b=+t,this._a("cornerRadiusBottomLeft",this.i.cornerRadius.b),this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cornerRadiusTopLeft",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.d:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.d=+t,this._a("cornerRadiusTopLeft",this.i.cornerRadius.d),this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cornerRadiusTopRight",{get:function(){return this.i.cornerRadius?this.i.cornerRadius.e:NaN},set:function(t){this.ensureCornerRadius(),this.i.cornerRadius.e=+t,this._a("cornerRadiusTopRight",this.i.cornerRadius.e),this.i.cornerRadius=this.i.cornerRadius},enumerable:!1,configurable:!0}),n.prototype.ensureCornerRadius=function(){this.i.cornerRadius||(this.i.cornerRadius=new i.CornerRadius(2))},Object.defineProperty(n.prototype,"actualCornerRadiusBottomRight",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.c:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.c=+t,this._a("actualCornerRadiusBottomRight",this.i.actualCornerRadius.c),this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualCornerRadiusBottomLeft",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.b:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.b=+t,this._a("actualCornerRadiusBottomLeft",this.i.actualCornerRadius.b),this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualCornerRadiusTopLeft",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.d:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.d=+t,this._a("actualCornerRadiusTopLeft",this.i.actualCornerRadius.d),this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualCornerRadiusTopRight",{get:function(){return this.i.actualCornerRadius?this.i.actualCornerRadius.e:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.actualCornerRadius.e=+t,this._a("actualCornerRadiusTopRight",this.i.actualCornerRadius.e),this.i.actualCornerRadius=this.i.actualCornerRadius},enumerable:!1,configurable:!0}),n.prototype.ensureActualCornerRadius=function(){this.i.actualCornerRadius||(this.i.actualCornerRadius=new i.CornerRadius(2))},Object.defineProperty(n.prototype,"isActiveCellStyleEnabled",{get:function(){return this.i.isActiveCellStyleEnabled},set:function(t){this.i.isActiveCellStyleEnabled=i.ensureBool(t),this._a("isActiveCellStyleEnabled",this.i.isActiveCellStyleEnabled)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"responsiveStates",{get:function(){if(null===this._responsiveStates){var t=new ml,e=this.i.responsiveStates;e||(e=new jr),this._responsiveStates=t._fromInner(e)}return this._responsiveStates},set:function(t){null!==this._responsiveStates&&(this._responsiveStates._setSyncTarget(null),this._responsiveStates=null);var e=new ml;this._responsiveStates=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(xr.$type),r=this.i.responsiveStates;r||(r=new jr),n._inner=r,n.clear(),this._responsiveStates._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualVisibleRegion",{get:function(){return i.fromRect(this.i.actualVisibleRegion)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSortDescriptions",{get:function(){var t=this.i.initialSortDescriptions;if(null==t)return null;if(!t.externalObject){var e=new ns;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialGroupDescriptions",{get:function(){var t=this.i.initialGroupDescriptions;if(null==t)return null;if(!t.externalObject){var e=new os;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSummaryDescriptions",{get:function(){var t=this.i.initialSummaryDescriptions;if(null==t)return null;if(!t.externalObject){var e=new as;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSorts",{get:function(){return this.i.initialSorts},set:function(t){this.i.initialSorts=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialGroups",{get:function(){return this.i.initialGroups},set:function(t){this.i.initialGroups=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"initialSummaries",{get:function(){return this.i.initialSummaries},set:function(t){this.i.initialSummaries=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortDescriptions",{get:function(){var t=this.i.sortDescriptions;if(null==t)return null;if(!t.externalObject){var e=new ns;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"groupDescriptions",{get:function(){var t=this.i.groupDescriptions;if(null==t)return null;if(!t.externalObject){var e=new os;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterExpressions",{get:function(){var t=this.i.filterExpressions;if(null==t)return null;if(!t.externalObject){var e=new i.IgcFilterExpressionCollection;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryDescriptions",{get:function(){var t=this.i.summaryDescriptions;if(null==t)return null;if(!t.externalObject){var e=new as;t.$type?e._implementation=t:e.i.setNativeElement&&e.i.setNativeElement(t),t.externalObject=e}return t.externalObject},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryScope",{get:function(){return this.i.summaryScope},set:function(t){this.i.summaryScope=i.ensureEnum(st,t),this._a("summaryScope",i.enumToString(st,this.i.summaryScope))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isGroupCollapsable",{get:function(){return this.i.isGroupCollapsable},set:function(t){this.i.isGroupCollapsable=i.ensureBool(t),this._a("isGroupCollapsable",this.i.isGroupCollapsable)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"groupHeaderDisplayMode",{get:function(){return this.i.groupHeaderDisplayMode},set:function(t){this.i.groupHeaderDisplayMode=i.ensureEnum(lt,t),this._a("groupHeaderDisplayMode",i.enumToString(lt,this.i.groupHeaderDisplayMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isGroupExpandedDefault",{get:function(){return this.i.isGroupExpandedDefault},set:function(t){this.i.isGroupExpandedDefault=i.ensureBool(t),this._a("isGroupExpandedDefault",this.i.isGroupExpandedDefault)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"groupSummaryDisplayMode",{get:function(){return this.i.groupSummaryDisplayMode},set:function(t){this.i.groupSummaryDisplayMode=i.ensureEnum(A,t),this._a("groupSummaryDisplayMode",i.enumToString(A,this.i.groupSummaryDisplayMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"autoAcceptEdits",{get:function(){return this.i.autoAcceptEdits},set:function(t){this.i.autoAcceptEdits=i.ensureBool(t),this._a("autoAcceptEdits",this.i.autoAcceptEdits)},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"actualColumns",{get:function(){if(null===this._actualColumns){var t=new Uo,e=this.i.actualColumns;e||(e=new wn),this._actualColumns=t._fromInner(e)}return this._actualColumns},set:function(t){null!==this._actualColumns&&(this._actualColumns._setSyncTarget(null),this._actualColumns=null);var e=new Uo;this._actualColumns=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(_n.$type),r=this.i.actualColumns;r||(r=new wn),n._inner=r,n.clear(),this._actualColumns._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"reactsToSortChanges",{get:function(){return this.i.reactsToSortChanges},set:function(t){this.i.reactsToSortChanges=i.ensureBool(t),this._a("reactsToSortChanges",this.i.reactsToSortChanges)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"reactsToGroupChanges",{get:function(){return this.i.reactsToGroupChanges},set:function(t){this.i.reactsToGroupChanges=i.ensureBool(t),this._a("reactsToGroupChanges",this.i.reactsToGroupChanges)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"reactsToFilterChanges",{get:function(){return this.i.reactsToFilterChanges},set:function(t){this.i.reactsToFilterChanges=i.ensureBool(t),this._a("reactsToFilterChanges",this.i.reactsToFilterChanges)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"canUndo",{get:function(){return this.i.canUndo},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"canRedo",{get:function(){return this.i.canRedo},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"canCommit",{get:function(){return this.i.canCommit},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"enterBehavior",{get:function(){return this.i.enterBehavior},set:function(t){this.i.enterBehavior=i.ensureEnum(ve,t),this._a("enterBehavior",i.enumToString(ve,this.i.enterBehavior))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"enterBehaviorAfterEdit",{get:function(){return this.i.enterBehaviorAfterEdit},set:function(t){this.i.enterBehaviorAfterEdit=i.ensureEnum(_e,t),this._a("enterBehaviorAfterEdit",i.enumToString(_e,this.i.enterBehaviorAfterEdit))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isColumnOptionsSummariesEnabled",{get:function(){return this.i.isColumnOptionsSummariesEnabled},set:function(t){this.i.isColumnOptionsSummariesEnabled=i.ensureBool(t),this._a("isColumnOptionsSummariesEnabled",this.i.isColumnOptionsSummariesEnabled)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isColumnOptionsGroupingEnabled",{get:function(){return this.i.isColumnOptionsGroupingEnabled},set:function(t){this.i.isColumnOptionsGroupingEnabled=i.ensureBool(t),this._a("isColumnOptionsGroupingEnabled",this.i.isColumnOptionsGroupingEnabled)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellMode",{get:function(){return this.i.mergedCellMode},set:function(t){this.i.mergedCellMode=i.ensureEnum(Se,t),this._a("mergedCellMode",i.enumToString(Se,this.i.mergedCellMode))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellEvaluationCriteria",{get:function(){return this.i.mergedCellEvaluationCriteria},set:function(t){this.i.mergedCellEvaluationCriteria=i.ensureEnum(Oe,t),this._a("mergedCellEvaluationCriteria",i.enumToString(Oe,this.i.mergedCellEvaluationCriteria))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"mergedCellVerticalAlignment",{get:function(){return this.i.mergedCellVerticalAlignment},set:function(t){this.i.mergedCellVerticalAlignment=i.ensureEnum(h,t),this._a("mergedCellVerticalAlignment",i.enumToString(h,this.i.mergedCellVerticalAlignment))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterUIType",{get:function(){return this.i.filterUIType},set:function(t){this.i.filterUIType=i.ensureEnum(je,t),this._a("filterUIType",i.enumToString(je,this.i.filterUIType))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterLogicalOperator",{get:function(){return this.i.filterLogicalOperator},set:function(t){this.i.filterLogicalOperator=i.ensureEnum(Ie,t),this._a("filterLogicalOperator",i.enumToString(Ie,this.i.filterLogicalOperator))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterComparisonType",{get:function(){return this.i.filterComparisonType},set:function(t){this.i.filterComparisonType=i.ensureEnum(Re,t),this._a("filterComparisonType",i.enumToString(Re,this.i.filterComparisonType))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"todayOverride",{get:function(){return this.i.todayOverride},set:function(t){this.i.todayOverride=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"clearSelectionOnEscape",{get:function(){return this.i.clearSelectionOnEscape},set:function(t){this.i.clearSelectionOnEscape=i.ensureBool(t),this._a("clearSelectionOnEscape",this.i.clearSelectionOnEscape)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pageSize",{get:function(){return this.i.pageSize},set:function(t){this.i.pageSize=+t,this._a("pageSize",this.i.pageSize)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isToolbarColumnChooserVisible",{get:function(){return this.i.isToolbarColumnChooserVisible},set:function(t){this.i.isToolbarColumnChooserVisible=i.ensureBool(t),this._a("isToolbarColumnChooserVisible",this.i.isToolbarColumnChooserVisible)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isToolbarColumnPinningVisible",{get:function(){return this.i.isToolbarColumnPinningVisible},set:function(t){this.i.isToolbarColumnPinningVisible=i.ensureBool(t),this._a("isToolbarColumnPinningVisible",this.i.isToolbarColumnPinningVisible)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbarTitle",{get:function(){return this.i.toolbarTitle},set:function(t){this.i.toolbarTitle=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbarColumnChooserText",{get:function(){return this.i.toolbarColumnChooserText},set:function(t){this.i.toolbarColumnChooserText=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbarColumnChooserTitle",{get:function(){return this.i.toolbarColumnChooserTitle},set:function(t){this.i.toolbarColumnChooserTitle=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbarColumnPinningText",{get:function(){return this.i.toolbarColumnPinningText},set:function(t){this.i.toolbarColumnPinningText=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbarColumnPinningTitle",{get:function(){return this.i.toolbarColumnPinningTitle},set:function(t){this.i.toolbarColumnPinningTitle=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"scrollbarStyle",{get:function(){return this.i.scrollbarStyle},set:function(t){this.i.scrollbarStyle=i.ensureEnum(i.ScrollbarStyle_$type,t),this._a("scrollbarStyle",i.enumToString(i.ScrollbarStyle_$type,this.i.scrollbarStyle))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"scrollbarBackground",{get:function(){return i.brushToString(this.i.scrollbarBackground)},set:function(t){this.i.scrollbarBackground=i.stringToBrush(t),this._a("scrollbarBackground",i.brushToString(this.i.scrollbarBackground))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"allowCopyOperation",{get:function(){return this.i.allowCopyOperation},set:function(t){this.i.allowCopyOperation=i.ensureBool(t),this._a("allowCopyOperation",this.i.allowCopyOperation)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"deferEventForRowDragSelection",{get:function(){return this.i.deferEventForRowDragSelection},set:function(t){this.i.deferEventForRowDragSelection=i.ensureBool(t),this._a("deferEventForRowDragSelection",this.i.deferEventForRowDragSelection)},enumerable:!1,configurable:!0}),n.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(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("DataGridComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),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,n),this._inStyling=!1}},n.prototype.refresh=function(){this.i.refresh()},n.prototype.flush=function(){this.i.flush()},n.prototype.notifyScrollStart=function(){this.i.notifyScrollStart()},n.prototype.notifyScrollStop=function(){this.i.notifyScrollStop()},n.prototype.exchangeColumn=function(t,e){this.i.exchangeColumn(null==t?null:t.i,null==e?null:e.i)},n.prototype.pinColumn=function(t,e){this.i.pinColumn(null==t?null:t.i,null==e?null:e)},n.prototype.moveColumn=function(t,e){this.i.moveColumn(t,e)},n.prototype.moveColumnLeft=function(t){this.i.moveColumnLeft(t)},n.prototype.moveColumnRight=function(t){this.i.moveColumnRight(t)},n.prototype.canMoveColumnLeft=function(t){return this.i.canMoveColumnLeft(t)},n.prototype.canMoveColumnRight=function(t){return this.i.canMoveColumnRight(t)},n.prototype.exportVisualModel=function(){return this.i.exportVisualModel()},n.prototype.exportSerializedVisualModel=function(){return this.i.exportSerializedVisualModel()},n.prototype.scrollToRowByIndex=function(t){this.i.scrollToRowByIndex(t)},n.prototype.scrollToLastRowByIndex=function(t){this.i.scrollToLastRowByIndex(t)},n.prototype.scrollToItem=function(t){return this.i.scrollToItem(t)},n.prototype.scrollToPrimaryKey=function(t){return this.i.scrollToPrimaryKey(t)},n.prototype.scrollToColumnByIndex=function(t){this.i.scrollToColumnByIndex(t)},n.prototype.getLastVisibleIndex=function(){return this.i.getLastVisibleIndex()},n.prototype.getFirstVisibleIndex=function(){return this.i.getFirstVisibleIndex()},n.prototype.invalidateVisibleRows=function(){this.i.invalidateVisibleRows()},n.prototype.setActiveResponsiveState=function(t){this.i.setActiveResponsiveState(t)},n.prototype.notifySetItem=function(t,e,i){this.i.notifySetItem(t,e,i)},n.prototype.notifyClearItems=function(){this.i.notifyClearItems()},n.prototype.notifyInsertItem=function(t,e){this.i.notifyInsertItem(t,e)},n.prototype.notifyRemoveItem=function(t,e){this.i.notifyRemoveItem(t,e)},n.prototype.dataIndexOfItem=function(t){return this.i.dataIndexOfItem(t)},n.prototype.dataIndexOfPrimaryKey=function(t){return this.i.dataIndexOfPrimaryKey(t)},n.prototype.resolveCellValue=function(t){return this.i.resolveCellValue(null==t?null:t.i)},n.prototype.resolveCellValueFromPosition=function(t,e){return this.i.resolveCellValueFromPosition(t,e)},n.prototype.getColumnAtRenderedIndex=function(t){var e=this.i.getColumnAtRenderedIndex(t),i=null;if(e&&e.externalObject)i=e.externalObject;else if(e){var n=Do._createFromInternal(e);n._implementation=e,e.externalObject=n,i=n}return i},n.prototype.getRootSummaryResults=function(){return this.i.getRootSummaryResults()},n.prototype.getSectionSummaryResults=function(t){return this.i.getSectionSummaryResults(t)},n.prototype.commitEdits=function(){this.i.commitEdits()},n.prototype.cancelEdits=function(){this.i.cancelEdits()},n.prototype.acceptCommit=function(t){this.i.acceptCommit(t)},n.prototype.rejectCommit=function(t){this.i.rejectCommit(t)},n.prototype.undo=function(){this.i.undo()},n.prototype.redo=function(){this.i.redo()},n.prototype.updatePropertyAtKey=function(t,e,i){this.i.updatePropertyAtKey(t,e,i)},n.prototype.removeItemByKey=function(t){this.i.removeItemByKey(t)},n.prototype.removeItem=function(t){this.i.removeItem(t)},n.prototype.acceptEdit=function(t){this.i.acceptEdit(t)},n.prototype.rejectEdit=function(t){this.i.rejectEdit(t)},n.prototype.setEditError=function(t,e){this.i.setEditError(t,e)},n.prototype.startEditMode=function(){this.i.startEditMode()},n.prototype.endEditMode=function(t){this.i.endEditMode(t)},n.prototype.selectAllRows=function(){this.i.selectAllRows()},n.prototype.deselectAllRows=function(){this.i.deselectAllRows()},n.prototype.saveLayout=function(){return this.i.saveLayout()},n.prototype.loadLayout=function(t){this.i.loadLayout(t)},Object.defineProperty(n.prototype,"filterExpressionsChanging",{get:function(){return this._filterExpressionsChanging},set:function(t){var e=this;null!==this._filterExpressionsChanging_wrapped&&(this.i.filterExpressionsChanging=i.delegateRemove(this.i.filterExpressionsChanging,this._filterExpressionsChanging_wrapped),this._filterExpressionsChanging_wrapped=null,this._filterExpressionsChanging=null),this._filterExpressionsChanging=t,this._filterExpressionsChanging_wrapped=function(t,i){var n=new ll;n._provideImplementation(i),e.beforeFilterExpressionsChanging&&e.beforeFilterExpressionsChanging(e,n),e._filterExpressionsChanging&&e._filterExpressionsChanging(e,n)},this.i.filterExpressionsChanging=i.delegateCombine(this.i.filterExpressionsChanging,this._filterExpressionsChanging_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterExpressionsChanged",{get:function(){return this._filterExpressionsChanged},set:function(t){var e=this;null!==this._filterExpressionsChanged_wrapped&&(this.i.filterExpressionsChanged=i.delegateRemove(this.i.filterExpressionsChanged,this._filterExpressionsChanged_wrapped),this._filterExpressionsChanged_wrapped=null,this._filterExpressionsChanged=null),this._filterExpressionsChanged=t,this._filterExpressionsChanged_wrapped=function(t,i){var n=new ll;n._provideImplementation(i),e.beforeFilterExpressionsChanged&&e.beforeFilterExpressionsChanged(e,n),e._filterExpressionsChanged&&e._filterExpressionsChanged(e,n)},this.i.filterExpressionsChanged=i.delegateCombine(this.i.filterExpressionsChanged,this._filterExpressionsChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellPreviewPointerDown",{get:function(){return this._cellPreviewPointerDown},set:function(t){var e=this;null!==this._cellPreviewPointerDown_wrapped&&(this.i.cellPreviewPointerDown=i.delegateRemove(this.i.cellPreviewPointerDown,this._cellPreviewPointerDown_wrapped),this._cellPreviewPointerDown_wrapped=null,this._cellPreviewPointerDown=null),this._cellPreviewPointerDown=t,this._cellPreviewPointerDown_wrapped=function(t,i){var n=new Wo;n._provideImplementation(i),e.beforeCellPreviewPointerDown&&e.beforeCellPreviewPointerDown(e,n),e._cellPreviewPointerDown&&e._cellPreviewPointerDown(e,n)},this.i.cellPreviewPointerDown=i.delegateCombine(this.i.cellPreviewPointerDown,this._cellPreviewPointerDown_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellPreviewPointerUp",{get:function(){return this._cellPreviewPointerUp},set:function(t){var e=this;null!==this._cellPreviewPointerUp_wrapped&&(this.i.cellPreviewPointerUp=i.delegateRemove(this.i.cellPreviewPointerUp,this._cellPreviewPointerUp_wrapped),this._cellPreviewPointerUp_wrapped=null,this._cellPreviewPointerUp=null),this._cellPreviewPointerUp=t,this._cellPreviewPointerUp_wrapped=function(t,i){var n=new Wo;n._provideImplementation(i),e.beforeCellPreviewPointerUp&&e.beforeCellPreviewPointerUp(e,n),e._cellPreviewPointerUp&&e._cellPreviewPointerUp(e,n)},this.i.cellPreviewPointerUp=i.delegateCombine(this.i.cellPreviewPointerUp,this._cellPreviewPointerUp_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellPointerDown",{get:function(){return this._cellPointerDown},set:function(t){var e=this;null!==this._cellPointerDown_wrapped&&(this.i.cellPointerDown=i.delegateRemove(this.i.cellPointerDown,this._cellPointerDown_wrapped),this._cellPointerDown_wrapped=null,this._cellPointerDown=null),this._cellPointerDown=t,this._cellPointerDown_wrapped=function(t,i){var n=new Wo;n._provideImplementation(i),e.beforeCellPointerDown&&e.beforeCellPointerDown(e,n),e._cellPointerDown&&e._cellPointerDown(e,n)},this.i.cellPointerDown=i.delegateCombine(this.i.cellPointerDown,this._cellPointerDown_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellPointerUp",{get:function(){return this._cellPointerUp},set:function(t){var e=this;null!==this._cellPointerUp_wrapped&&(this.i.cellPointerUp=i.delegateRemove(this.i.cellPointerUp,this._cellPointerUp_wrapped),this._cellPointerUp_wrapped=null,this._cellPointerUp=null),this._cellPointerUp=t,this._cellPointerUp_wrapped=function(t,i){var n=new Wo;n._provideImplementation(i),e.beforeCellPointerUp&&e.beforeCellPointerUp(e,n),e._cellPointerUp&&e._cellPointerUp(e,n)},this.i.cellPointerUp=i.delegateCombine(this.i.cellPointerUp,this._cellPointerUp_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellClicked",{get:function(){return this._cellClicked},set:function(t){var e=this;null!==this._cellClicked_wrapped&&(this.i.cellClicked=i.delegateRemove(this.i.cellClicked,this._cellClicked_wrapped),this._cellClicked_wrapped=null,this._cellClicked=null),this._cellClicked=t,this._cellClicked_wrapped=function(t,i){var n=new Wo;n._provideImplementation(i),e.beforeCellClicked&&e.beforeCellClicked(e,n),e._cellClicked&&e._cellClicked(e,n)},this.i.cellClicked=i.delegateCombine(this.i.cellClicked,this._cellClicked_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortDescriptionsChanged",{get:function(){return this._sortDescriptionsChanged},set:function(t){var e=this;null!==this._sortDescriptionsChanged_wrapped&&(this.i.sortDescriptionsChanged=i.delegateRemove(this.i.sortDescriptionsChanged,this._sortDescriptionsChanged_wrapped),this._sortDescriptionsChanged_wrapped=null,this._sortDescriptionsChanged=null),this._sortDescriptionsChanged=t,this._sortDescriptionsChanged_wrapped=function(t,i){var n=new rs;n._provideImplementation(i),e.beforeSortDescriptionsChanged&&e.beforeSortDescriptionsChanged(e,n),e._sortDescriptionsChanged&&e._sortDescriptionsChanged(e,n)},this.i.sortDescriptionsChanged=i.delegateCombine(this.i.sortDescriptionsChanged,this._sortDescriptionsChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"groupDescriptionsChanged",{get:function(){return this._groupDescriptionsChanged},set:function(t){var e=this;null!==this._groupDescriptionsChanged_wrapped&&(this.i.groupDescriptionsChanged=i.delegateRemove(this.i.groupDescriptionsChanged,this._groupDescriptionsChanged_wrapped),this._groupDescriptionsChanged_wrapped=null,this._groupDescriptionsChanged=null),this._groupDescriptionsChanged=t,this._groupDescriptionsChanged_wrapped=function(t,i){var n=new ss;n._provideImplementation(i),e.beforeGroupDescriptionsChanged&&e.beforeGroupDescriptionsChanged(e,n),e._groupDescriptionsChanged&&e._groupDescriptionsChanged(e,n)},this.i.groupDescriptionsChanged=i.delegateCombine(this.i.groupDescriptionsChanged,this._groupDescriptionsChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryDescriptionsChanged",{get:function(){return this._summaryDescriptionsChanged},set:function(t){var e=this;null!==this._summaryDescriptionsChanged_wrapped&&(this.i.summaryDescriptionsChanged=i.delegateRemove(this.i.summaryDescriptionsChanged,this._summaryDescriptionsChanged_wrapped),this._summaryDescriptionsChanged_wrapped=null,this._summaryDescriptionsChanged=null),this._summaryDescriptionsChanged=t,this._summaryDescriptionsChanged_wrapped=function(t,i){var n=new ls;n._provideImplementation(i),e.beforeSummaryDescriptionsChanged&&e.beforeSummaryDescriptionsChanged(e,n),e._summaryDescriptionsChanged&&e._summaryDescriptionsChanged(e,n)},this.i.summaryDescriptionsChanged=i.delegateCombine(this.i.summaryDescriptionsChanged,this._summaryDescriptionsChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnHiddenChanged",{get:function(){return this._columnHiddenChanged},set:function(t){var e=this;null!==this._columnHiddenChanged_wrapped&&(this.i.columnHiddenChanged=i.delegateRemove(this.i.columnHiddenChanged,this._columnHiddenChanged_wrapped),this._columnHiddenChanged_wrapped=null,this._columnHiddenChanged=null),this._columnHiddenChanged=t,this._columnHiddenChanged_wrapped=function(t,i){var n=new vl;n._provideImplementation(i),e.beforeColumnHiddenChanged&&e.beforeColumnHiddenChanged(e,n),e._columnHiddenChanged&&e._columnHiddenChanged(e,n)},this.i.columnHiddenChanged=i.delegateCombine(this.i.columnHiddenChanged,this._columnHiddenChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnPinnedChanged",{get:function(){return this._columnPinnedChanged},set:function(t){var e=this;null!==this._columnPinnedChanged_wrapped&&(this.i.columnPinnedChanged=i.delegateRemove(this.i.columnPinnedChanged,this._columnPinnedChanged_wrapped),this._columnPinnedChanged_wrapped=null,this._columnPinnedChanged=null),this._columnPinnedChanged=t,this._columnPinnedChanged_wrapped=function(t,i){var n=new wl;n._provideImplementation(i),e.beforeColumnPinnedChanged&&e.beforeColumnPinnedChanged(e,n),e._columnPinnedChanged&&e._columnPinnedChanged(e,n)},this.i.columnPinnedChanged=i.delegateCombine(this.i.columnPinnedChanged,this._columnPinnedChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellValueChanging",{get:function(){return this._cellValueChanging},set:function(t){var e=this;null!==this._cellValueChanging_wrapped&&(this.i.cellValueChanging=i.delegateRemove(this.i.cellValueChanging,this._cellValueChanging_wrapped),this._cellValueChanging_wrapped=null,this._cellValueChanging=null),this._cellValueChanging=t,this._cellValueChanging_wrapped=function(t,i){var n=new Sl;n._provideImplementation(i),e.beforeCellValueChanging&&e.beforeCellValueChanging(e,n),e._cellValueChanging&&e._cellValueChanging(e,n)},this.i.cellValueChanging=i.delegateCombine(this.i.cellValueChanging,this._cellValueChanging_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dataCommitted",{get:function(){return this._dataCommitted},set:function(t){var e=this;null!==this._dataCommitted_wrapped&&(this.i.dataCommitted=i.delegateRemove(this.i.dataCommitted,this._dataCommitted_wrapped),this._dataCommitted_wrapped=null,this._dataCommitted=null),this._dataCommitted=t,this._dataCommitted_wrapped=function(t,i){var n=new Ol;n._provideImplementation(i),e.beforeDataCommitted&&e.beforeDataCommitted(e,n),e._dataCommitted&&e._dataCommitted(e,n)},this.i.dataCommitted=i.delegateCombine(this.i.dataCommitted,this._dataCommitted_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dataCommitting",{get:function(){return this._dataCommitting},set:function(t){var e=this;null!==this._dataCommitting_wrapped&&(this.i.dataCommitting=i.delegateRemove(this.i.dataCommitting,this._dataCommitting_wrapped),this._dataCommitting_wrapped=null,this._dataCommitting=null),this._dataCommitting=t,this._dataCommitting_wrapped=function(t,i){var n=new Pl;n._provideImplementation(i),e.beforeDataCommitting&&e.beforeDataCommitting(e,n),e._dataCommitting&&e._dataCommitting(e,n)},this.i.dataCommitting=i.delegateCombine(this.i.dataCommitting,this._dataCommitting_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rootSummariesChanged",{get:function(){return this._rootSummariesChanged},set:function(t){var e=this;null!==this._rootSummariesChanged_wrapped&&(this.i.rootSummariesChanged=i.delegateRemove(this.i.rootSummariesChanged,this._rootSummariesChanged_wrapped),this._rootSummariesChanged_wrapped=null,this._rootSummariesChanged=null),this._rootSummariesChanged=t,this._rootSummariesChanged_wrapped=function(t,n){var r=new i.IgcDataSourceRootSummariesChangedEventArgs;r._provideImplementation(n),e.beforeRootSummariesChanged&&e.beforeRootSummariesChanged(e,r),e._rootSummariesChanged&&e._rootSummariesChanged(e,r)},this.i.rootSummariesChanged=i.delegateCombine(this.i.rootSummariesChanged,this._rootSummariesChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sizeChanged",{get:function(){return this._sizeChanged},set:function(t){var e=this;null!==this._sizeChanged_wrapped&&(this.i.sizeChanged=i.delegateRemove(this.i.sizeChanged,this._sizeChanged_wrapped),this._sizeChanged_wrapped=null,this._sizeChanged=null),this._sizeChanged=t,this._sizeChanged_wrapped=function(t,i){var n=new xl;n._provideImplementation(i),e.beforeSizeChanged&&e.beforeSizeChanged(e,n),e._sizeChanged&&e._sizeChanged(e,n)},this.i.sizeChanged=i.delegateCombine(this.i.sizeChanged,this._sizeChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualColumnsChanged",{get:function(){return this._actualColumnsChanged},set:function(t){var e=this;null!==this._actualColumnsChanged_wrapped&&(this.i.actualColumnsChanged=i.delegateRemove(this.i.actualColumnsChanged,this._actualColumnsChanged_wrapped),this._actualColumnsChanged_wrapped=null,this._actualColumnsChanged=null),this._actualColumnsChanged=t,this._actualColumnsChanged_wrapped=function(t,i){var n=new jl;n._provideImplementation(i),e.beforeActualColumnsChanged&&e.beforeActualColumnsChanged(e,n),e._actualColumnsChanged&&e._actualColumnsChanged(e,n)},this.i.actualColumnsChanged=i.delegateCombine(this.i.actualColumnsChanged,this._actualColumnsChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnsAutoGenerated",{get:function(){return this._columnsAutoGenerated},set:function(t){var e=this;null!==this._columnsAutoGenerated_wrapped&&(this.i.columnsAutoGenerated=i.delegateRemove(this.i.columnsAutoGenerated,this._columnsAutoGenerated_wrapped),this._columnsAutoGenerated_wrapped=null,this._columnsAutoGenerated=null),this._columnsAutoGenerated=t,this._columnsAutoGenerated_wrapped=function(t,i){var n=new Ko;n._provideImplementation(i),e.beforeColumnsAutoGenerated&&e.beforeColumnsAutoGenerated(e,n),e._columnsAutoGenerated&&e._columnsAutoGenerated(e,n)},this.i.columnsAutoGenerated=i.delegateCombine(this.i.columnsAutoGenerated,this._columnsAutoGenerated_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedItemsChanged",{get:function(){return this._selectedItemsChanged},set:function(t){var e=this;null!==this._selectedItemsChanged_wrapped&&(this.i.selectedItemsChanged=i.delegateRemove(this.i.selectedItemsChanged,this._selectedItemsChanged_wrapped),this._selectedItemsChanged_wrapped=null,this._selectedItemsChanged=null),this._selectedItemsChanged=t,this._selectedItemsChanged_wrapped=function(t,i){var n=new Qo;n._provideImplementation(i),e.beforeSelectedItemsChanged&&e.beforeSelectedItemsChanged(e,n),e._selectedItemsChanged&&e._selectedItemsChanged(e,n)},this.i.selectedItemsChanged=i.delegateCombine(this.i.selectedItemsChanged,this._selectedItemsChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedKeysChanged",{get:function(){return this._selectedKeysChanged},set:function(t){var e=this;null!==this._selectedKeysChanged_wrapped&&(this.i.selectedKeysChanged=i.delegateRemove(this.i.selectedKeysChanged,this._selectedKeysChanged_wrapped),this._selectedKeysChanged_wrapped=null,this._selectedKeysChanged=null),this._selectedKeysChanged=t,this._selectedKeysChanged_wrapped=function(t,i){var n=new Zo;n._provideImplementation(i),e.beforeSelectedKeysChanged&&e.beforeSelectedKeysChanged(e,n),e._selectedKeysChanged&&e._selectedKeysChanged(e,n)},this.i.selectedKeysChanged=i.delegateCombine(this.i.selectedKeysChanged,this._selectedKeysChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedCellsChanged",{get:function(){return this._selectedCellsChanged},set:function(t){var e=this;null!==this._selectedCellsChanged_wrapped&&(this.i.selectedCellsChanged=i.delegateRemove(this.i.selectedCellsChanged,this._selectedCellsChanged_wrapped),this._selectedCellsChanged_wrapped=null,this._selectedCellsChanged=null),this._selectedCellsChanged=t,this._selectedCellsChanged_wrapped=function(t,i){var n=new ts;n._provideImplementation(i),e.beforeSelectedCellsChanged&&e.beforeSelectedCellsChanged(e,n),e._selectedCellsChanged&&e._selectedCellsChanged(e,n)},this.i.selectedCellsChanged=i.delegateCombine(this.i.selectedCellsChanged,this._selectedCellsChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectionChanged",{get:function(){return this._selectionChanged},set:function(t){var e=this;null!==this._selectionChanged_wrapped&&(this.i.selectionChanged=i.delegateRemove(this.i.selectionChanged,this._selectionChanged_wrapped),this._selectionChanged_wrapped=null,this._selectionChanged=null),this._selectionChanged=t,this._selectionChanged_wrapped=function(t,i){var n=new Dl;n._provideImplementation(i),e.beforeSelectionChanged&&e.beforeSelectionChanged(e,n),e._selectionChanged&&e._selectionChanged(e,n)},this.i.selectionChanged=i.delegateCombine(this.i.selectionChanged,this._selectionChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activeCellChanged",{get:function(){return this._activeCellChanged},set:function(t){var e=this;null!==this._activeCellChanged_wrapped&&(this.i.activeCellChanged=i.delegateRemove(this.i.activeCellChanged,this._activeCellChanged_wrapped),this._activeCellChanged_wrapped=null,this._activeCellChanged=null),this._activeCellChanged=t,this._activeCellChanged_wrapped=function(t,i){var n=new yl;n._provideImplementation(i),e.beforeActiveCellChanged&&e.beforeActiveCellChanged(e,n),e._activeCellChanged&&e._activeCellChanged(e,n)},this.i.activeCellChanged=i.delegateCombine(this.i.activeCellChanged,this._activeCellChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"selectedCellRangesChanged",{get:function(){return this._selectedCellRangesChanged},set:function(t){var e=this;null!==this._selectedCellRangesChanged_wrapped&&(this.i.selectedCellRangesChanged=i.delegateRemove(this.i.selectedCellRangesChanged,this._selectedCellRangesChanged_wrapped),this._selectedCellRangesChanged_wrapped=null,this._selectedCellRangesChanged=null),this._selectedCellRangesChanged=t,this._selectedCellRangesChanged_wrapped=function(t,i){var n=new is;n._provideImplementation(i),e.beforeSelectedCellRangesChanged&&e.beforeSelectedCellRangesChanged(e,n),e._selectedCellRangesChanged&&e._selectedCellRangesChanged(e,n)},this.i.selectedCellRangesChanged=i.delegateCombine(this.i.selectedCellRangesChanged,this._selectedCellRangesChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnWidthChanged",{get:function(){return this._columnWidthChanged},set:function(t){var e=this;null!==this._columnWidthChanged_wrapped&&(this.i.columnWidthChanged=i.delegateRemove(this.i.columnWidthChanged,this._columnWidthChanged_wrapped),this._columnWidthChanged_wrapped=null,this._columnWidthChanged=null),this._columnWidthChanged=t,this._columnWidthChanged_wrapped=function(t,i){var n=new kl;n._provideImplementation(i),e.beforeColumnWidthChanged&&e.beforeColumnWidthChanged(e,n),e._columnWidthChanged&&e._columnWidthChanged(e,n)},this.i.columnWidthChanged=i.delegateCombine(this.i.columnWidthChanged,this._columnWidthChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellEditStarted",{get:function(){return this._cellEditStarted},set:function(t){var e=this;null!==this._cellEditStarted_wrapped&&(this.i.cellEditStarted=i.delegateRemove(this.i.cellEditStarted,this._cellEditStarted_wrapped),this._cellEditStarted_wrapped=null,this._cellEditStarted=null),this._cellEditStarted=t,this._cellEditStarted_wrapped=function(t,i){var n=new Rl;n._provideImplementation(i),e.beforeCellEditStarted&&e.beforeCellEditStarted(e,n),e._cellEditStarted&&e._cellEditStarted(e,n)},this.i.cellEditStarted=i.delegateCombine(this.i.cellEditStarted,this._cellEditStarted_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cellEditEnded",{get:function(){return this._cellEditEnded},set:function(t){var e=this;null!==this._cellEditEnded_wrapped&&(this.i.cellEditEnded=i.delegateRemove(this.i.cellEditEnded,this._cellEditEnded_wrapped),this._cellEditEnded_wrapped=null,this._cellEditEnded=null),this._cellEditEnded=t,this._cellEditEnded_wrapped=function(t,i){var n=new Al;n._provideImplementation(i),e.beforeCellEditEnded&&e.beforeCellEditEnded(e,n),e._cellEditEnded&&e._cellEditEnded(e,n)},this.i.cellEditEnded=i.delegateCombine(this.i.cellEditEnded,this._cellEditEnded_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowEditStarted",{get:function(){return this._rowEditStarted},set:function(t){var e=this;null!==this._rowEditStarted_wrapped&&(this.i.rowEditStarted=i.delegateRemove(this.i.rowEditStarted,this._rowEditStarted_wrapped),this._rowEditStarted_wrapped=null,this._rowEditStarted=null),this._rowEditStarted=t,this._rowEditStarted_wrapped=function(t,i){var n=new El;n._provideImplementation(i),e.beforeRowEditStarted&&e.beforeRowEditStarted(e,n),e._rowEditStarted&&e._rowEditStarted(e,n)},this.i.rowEditStarted=i.delegateCombine(this.i.rowEditStarted,this._rowEditStarted_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowEditEnded",{get:function(){return this._rowEditEnded},set:function(t){var e=this;null!==this._rowEditEnded_wrapped&&(this.i.rowEditEnded=i.delegateRemove(this.i.rowEditEnded,this._rowEditEnded_wrapped),this._rowEditEnded_wrapped=null,this._rowEditEnded=null),this._rowEditEnded=t,this._rowEditEnded_wrapped=function(t,i){var n=new Bl;n._provideImplementation(i),e.beforeRowEditEnded&&e.beforeRowEditEnded(e,n),e._rowEditEnded&&e._rowEditEnded(e,n)},this.i.rowEditEnded=i.delegateCombine(this.i.rowEditEnded,this._rowEditEnded_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"customFilterRequested",{get:function(){return this._customFilterRequested},set:function(t){var e=this;null!==this._customFilterRequested_wrapped&&(this.i.customFilterRequested=i.delegateRemove(this.i.customFilterRequested,this._customFilterRequested_wrapped),this._customFilterRequested_wrapped=null,this._customFilterRequested=null),this._customFilterRequested=t,this._customFilterRequested_wrapped=function(t,i){var n=new Ao;n._provideImplementation(i),e.beforeCustomFilterRequested&&e.beforeCustomFilterRequested(e,n),e._customFilterRequested&&e._customFilterRequested(e,n)},this.i.customFilterRequested=i.delegateCombine(this.i.customFilterRequested,this._customFilterRequested_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualPrimaryKeyChange",{get:function(){return this._actualPrimaryKeyChange},set:function(t){var e=this;null!==this._actualPrimaryKeyChange_wrapped&&(this.i.propertyChanged=i.delegateRemove(this.i.propertyChanged,this._actualPrimaryKeyChange_wrapped),this._actualPrimaryKeyChange_wrapped=null,this._actualPrimaryKeyChange=null),this._actualPrimaryKeyChange=t,this._actualPrimaryKeyChange_wrapped=function(t,i){var n=e.actualPrimaryKey;"ActualPrimaryKey"==i.propertyName&&(e.beforeActualPrimaryKeyChange&&e.beforeActualPrimaryKeyChange(e,n),e._actualPrimaryKeyChange&&e._actualPrimaryKeyChange(e,n))},this.i.propertyChanged=i.delegateCombine(this.i.propertyChanged,this._actualPrimaryKeyChange_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcDataGridComponent=null,n.htmlTagName="igc-data-grid",n._isElementRegistered=!1,n}(i.IgcHTMLElement),Hl=function(){function t(){}return t.register=function(){io.register(),ro.register(),so.register(),lo.register(),ho.register(),po.register(),go.register(),yo.register(),Co.register(),wo.register(),Oo.register(),ko.register(),To.register(),Mo.register(),No.register(),Go.register(),i.IgcLocalDataSourceModule.register(),i.IgcNumberFormatSpecifierModule.register(),i.IgcDateTimeFormatSpecifierModule.register(),r.IgcToolbarModule.register(),i.TypeRegistrar.register("GridModuleHelper",Ho.$type),Ho.register(),Ll.register(),i.TypeRegistrar.registerCons("IgcDataGridComponent",Ll)},t}(),Wl=function(t){function n(){return t.call(this)||this}return e.__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.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcTextColumnComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcTextColumnComponent=t}return n._observedAttributesIgcTextColumnComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"editorType",{get:function(){return this.i.n3},set:function(t){this.i.n3=i.ensureEnum(z,t),this._a("editorType",i.enumToString(z,this.i.n3))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorDataSource",{get:function(){return this.i.n4},set:function(t){this.i.n4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorTextField",{get:function(){return this.i.n6},set:function(t){this.i.n6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorValueField",{get:function(){return this.i.n7},set:function(t){this.i.n7=t},enumerable:!1,configurable:!0}),n._observedAttributesIgcTextColumnComponent=null,n.htmlTagName="igc-text-column",n._isElementRegistered=!1,n}(Do),Ul=function(){function t(){}return t.register=function(){Wl.register(),i.TypeRegistrar.registerCons("IgcTextColumnComponent",Wl),i.TypeRegistrar.register("TextColumn",rr.$type)},t}(),Kl=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Wn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcNumericColumnComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcNumericColumnComponent=t}return n._observedAttributesIgcNumericColumnComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"negativePrefix",{get:function(){return this.i.oy},set:function(t){this.i.oy=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"positivePrefix",{get:function(){return this.i.o2},set:function(t){this.i.o2=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"negativeSuffix",{get:function(){return this.i.o0},set:function(t){this.i.o0=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"positiveSuffix",{get:function(){return this.i.o4},set:function(t){this.i.o4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maxFractionDigits",{get:function(){return this.i.od},set:function(t){this.i.od=+t,this._a("maxFractionDigits",this.i.od)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minFractionDigits",{get:function(){return this.i.oe},set:function(t){this.i.oe=+t,this._a("minFractionDigits",this.i.oe)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"minIntegerDigits",{get:function(){return this.i.of},set:function(t){this.i.of=+t,this._a("minIntegerDigits",this.i.of)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"showGroupingSeparator",{get:function(){return this.i.n8},set:function(t){this.i.n8=i.ensureBool(t),this._a("showGroupingSeparator",this.i.n8)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"formatString",{get:function(){return this.i.ot},set:function(t){this.i.ot=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"formatOverride",{get:function(){return this.i.oi},set:function(t){this.i.oi=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorType",{get:function(){return this.i.n6},set:function(t){this.i.n6=i.ensureEnum(z,t),this._a("editorType",i.enumToString(z,this.i.n6))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorDataSource",{get:function(){return this.i.oh},set:function(t){this.i.oh=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorTextField",{get:function(){return this.i.oo},set:function(t){this.i.oo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorValueField",{get:function(){return this.i.op},set:function(t){this.i.op=t},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(null!=this.formatSpecifiers&&i.arrayFindByName(this.formatSpecifiers,e)?i.arrayFindByName(this.formatSpecifiers,e):null)},n._observedAttributesIgcNumericColumnComponent=null,n.htmlTagName="igc-numeric-column",n._isElementRegistered=!1,n}(Do),Xl=function(){function t(){}return t.register=function(){Kl.register(),i.TypeRegistrar.registerCons("IgcNumericColumnComponent",Kl),i.TypeRegistrar.register("NumericColumn",Wn.$type)},t}(),Ql=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new En},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDateTimeColumnComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDateTimeColumnComponent=t}return n._observedAttributesIgcDateTimeColumnComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"dateTimeFormat",{get:function(){return this.i.n8},set:function(t){this.i.n8=i.ensureEnum(B,t),this._a("dateTimeFormat",i.enumToString(B,this.i.n8))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"formatString",{get:function(){return this.i.oq},set:function(t){this.i.oq=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorFormatString",{get:function(){return this.i.oj},set:function(t){this.i.oj=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"formatOverride",{get:function(){return this.i.of},set:function(t){this.i.of=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"showTodayButton",{get:function(){return this.i.ob},set:function(t){this.i.ob=i.ensureBool(t),this._a("showTodayButton",this.i.ob)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorType",{get:function(){return this.i.n9},set:function(t){this.i.n9=i.ensureEnum(z,t),this._a("editorType",i.enumToString(z,this.i.n9))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorDataSource",{get:function(){return this.i.oe},set:function(t){this.i.oe=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorTextField",{get:function(){return this.i.ol},set:function(t){this.i.ol=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorValueField",{get:function(){return this.i.om},set:function(t){this.i.om=t},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var n=t.prototype.findByName.call(this,e);return n||(null!=this.formatSpecifiers&&i.arrayFindByName(this.formatSpecifiers,e)?i.arrayFindByName(this.formatSpecifiers,e):null)},n._observedAttributesIgcDateTimeColumnComponent=null,n.htmlTagName="igc-date-time-column",n._isElementRegistered=!1,n}(Do),Yl=function(){function t(){}return t.register=function(){Ql.register(),i.TypeRegistrar.registerCons("IgcDateTimeColumnComponent",Ql),i.TypeRegistrar.register("DateTimeColumn",En.$type)},t}(),Zl=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}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,"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 Er;break;case"ImageCellModel":t=new Br;break;case"NumericCellModel":t=new Dr;break;case"RowSeparatorModel":t=new $r;break;case"SectionHeaderCellModel":t=new Mr;break;case"TemplateCellModel":t=new zr;break;case"TemplateHeaderCellModel":t=new Gr;break;case"TemplateSectionHeaderCellModel":t=new qr;break;case"TextCellModel":t=new Lr;break;case"TextHeaderCellModel":t=new Hr}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),t}(),Jl=function(t){function n(){var e=t.call(this)||this;return e._templateCells=[],e._activeCellContent=new Map,e._activeCellContentElements=new Map,e._templateCellInitialData=new Map,e._templateCellInitialTemplate=new Map,e._currCellInfo=null,e._template=null,e._templateSelector=null,e._hasSelector=!1,e._selectorStyles=new Map,e._selectorTemplates=new Map,e._keyCount=0,e._cellUpdating=null,e._cellUpdating_wrapped=null,e.cellInfoChanged=e.cellInfoChanged.bind(e),e}return e.__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.beforeStyleKeyRequested=function(t,e){if((null!=this.template||null!=this.templateSelector)&&(this._hasSelector&&null!=this._templateSelector)){var i,n=this._templateSelector(this,e.resolvedValue);if(null!=n)this._selectorStyles.has(n)?(i=this._selectorStyles.get(n),e.styleKey=i):this._selectorStyles.size<1e3&&(i="template_"+this.field+"_"+this._keyCount,this._selectorStyles.set(n,i),this._selectorTemplates[i]=n,this._keyCount++,e.styleKey=i)}},n.prototype.beforeCellUpdating=function(t,e){if(null!=this.template||null!=this.templateSelector){var i=e.cellInfo;if(i.isContentDirty||i.isDataDirty||i.isSizeDirty){var n=this._template;this._hasSelector&&this._selectorTemplates.has(i.styleKey)&&(n=this._selectorTemplates.get(i.styleKey));var r=e.content;if(null!=r)if(this._activeCellContent.has(r)){var o=this._activeCellContent.get(r);o.context=i,this.updateCellInfo(i),o.template!=n?o.template=n:o}else this._templateCells.push(r),this._templateCellInitialData.set(r,i),this.updateCellInfo(i),this._templateCellInitialTemplate.set(r,n),this.updateTemplates()}}},n.prototype.updateCellInfo=function(t){var e=this._currCellInfo;null!=e&&e.removeOnChangedListener(this.cellInfoChanged),this._currCellInfo=t,null!=this._currCellInfo&&this._currCellInfo.addOnChangedListener(this.cellInfoChanged)},n.prototype.cellInfoChanged=function(){this.updateTemplates()},n.prototype.dummyStyleKeyRequested=function(t,e){},n.prototype.dummyCellUpdating=function(t,e){},Object.defineProperty(n.prototype,"hasTemplate",{get:function(){return null!=this._template||null!=this._templateSelector},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"template",{get:function(){return this._template},set:function(t){var e=this.hasTemplate;this._template=t,this.ensureTemplateEvents(e),this.onTemplateChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"templateSelector",{get:function(){return this._templateSelector},set:function(t){var e=this.hasTemplate;this._templateSelector=t,this._hasSelector=null!=this._templateSelector,this.ensureTemplateEvents(e),this.onTemplateChanged()},enumerable:!1,configurable:!0}),n.prototype.onTemplateChanged=function(){this._selectorStyles.clear(),this._selectorTemplates.clear(),this._keyCount=0},n.prototype.updateTemplates=function(){var t=[];if(this._templateCells&&this._templateCells.length>0)for(var e=0;e<this._templateCells.length;e++){var i=this._templateCells[e];if(this._activeCellContentElements.has(i))t.push(this._activeCellContentElements.get(i));else{var n=document.createElement("igc-template-content");n.owner=this._templateCells[e],this._activeCellContentElements.set(i,n),this._activeCellContent.set(i,n),t.push(n),i.appendChild(n),this._templateCellInitialTemplate.has(n.owner)&&(n.template=this._templateCellInitialTemplate.get(n.owner),this._templateCellInitialTemplate.delete(n.owner)),this._templateCellInitialData.has(n.owner)&&(n.context=this._templateCellInitialData.get(n.owner),this._templateCellInitialTemplate.delete(n.owner))}}},n.prototype.ensureTemplateEvents=function(t){this.hasTemplate&&!t&&(this.cellStyleKeyRequested||(this.cellStyleKeyRequested=this.dummyStyleKeyRequested,this._styleKeyRequested=null),this.cellUpdating||(this.cellUpdating=this.dummyCellUpdating,this._cellUpdating=null)),!this.hasTemplate&&t&&(this.cellStyleKeyRequested||(this.cellStyleKeyRequested=null),this.cellUpdating||(this.cellUpdating=null))},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcTemplateColumnComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcTemplateColumnComponent=t}return n._observedAttributesIgcTemplateColumnComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"cellUpdating",{get:function(){return this._cellUpdating},set:function(t){var e=this;null!==this._cellUpdating_wrapped&&(this.i.cellUpdating=i.delegateRemove(this.i.cellUpdating,this._cellUpdating_wrapped),this._cellUpdating_wrapped=null,this._cellUpdating=null),this._cellUpdating=t,this._cellUpdating_wrapped=function(t,i){var n=new Zl;n._provideImplementation(i),e.beforeCellUpdating&&e.beforeCellUpdating(e,n),e._cellUpdating&&e._cellUpdating(e,n)},this.i.cellUpdating=i.delegateCombine(this.i.cellUpdating,this._cellUpdating_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcTemplateColumnComponent=null,n.htmlTagName="igc-template-column",n._isElementRegistered=!1,n}(Do),tu=function(){function t(){}return t.register=function(){Jl.register(),i.TypeRegistrar.registerCons("IgcTemplateColumnComponent",Jl),i.TypeRegistrar.register("TemplateColumn",ir.$type)},t}(),eu=function(t){return t[t.Selected=0]="Selected",t[t.DeSelected=1]="DeSelected",t}({}),iu=i.markEnum("CheckboxListIndexType","Selected,0|DeSelected,1"),nu=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"CheckboxListKeysClearedEventArgs"),n}(i.Base),ru=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=0,e.b=!1,e.a=null,e}return e.__extends(n,t),n.$t=i.markType(n,"CheckedChangedEventArgs"),n}(i.Base),ou=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=0,e.a=0,e}return e.__extends(n,t),n.$t=i.markType(n,"CheckboxListIndexTypeChangedEventArgs"),n}(i.Base),su=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.a=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"SelectAllCheckboxChangedEventArgs"),n}(i.Base),au=function(t){function r(){var e=t.call(this)||this;return e.e=new i.Dictionary$2(i.DomWrapper_$type,n.XCheckbox.$,0),e.h=new i.Dictionary$2(i.DomWrapper_$type,n.XLabel.$,0),e.g=new i.Dictionary$2(i.DomWrapper_$type,n.XLabel.$,0),e.f=new i.Dictionary$2(i.DomWrapper_$type,n.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 e.__extends(r,t),r.prototype.q=function(){},r.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()},r.prototype.aa=function(){null!=this.i&&this.ab(this.i)},r.prototype.ab=function(t){var e=t.rootWrapper.getChildAt(0);this.k=e,this.b.w=new n.XInputGroup;var i=t.getSubRenderer(e);this.b.w.provideContainer(i);i.getExternal(this.b.w,i.rootWrapper,i.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 r=t.createElement("div"),o=t.getSubRenderer(r),s=new n.XPrefix;s.provideContainer(o);o.getExternal(s,o.rootWrapper,o.getExternal(this.b,null,null));var a=t.createElement("div"),l=t.getSubRenderer(a);this.c=new n.XIcon,this.c.provideContainer(l),this.c.fill=this.b.searchIconColor,this.c.svgPath=lu.cl;o.getExternal(this.c,l.rootWrapper,l.getExternal(this.b,null,null));s.appendContentChild(a),this.b.w.appendContentChild(r),this.b.w.inputs.add(s);var u=t.createElement("div");u.setRawStyleProperty("flex-grow","1");var h=t.getSubRenderer(u);this.b.u=new n.XInput,this.b.u.provideContainer(h),this.b.u.b8="text";h.getExternal(this.b.u,h.rootWrapper,h.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()},r.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%")}},r.prototype.r=function(t,e,r){var o=null;if(0==t.getChildCount()){o=new n.XCheckbox;var s=this.i.getSubRenderer(t);o.provideContainer(s);this.i.getExternal(o,s.rootWrapper,this.i.getExternal(this.b,null,null));this.e.addItem(t,o),o.n=this.b.baseTheme,o.y=!0,o.change=i.delegateCombine(o.change,i.runOn(this,this.n));var a=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(a)}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,r?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}},r.prototype.s=function(t,e,r,o,s,a,l,u,h,c,p){var d,f=this,m=null,g=null,b=null,y=null;if(0==t.getChildCount()){y=new n.XIcon,m=new n.XLabel,g=new n.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);y.provideContainer(C),y.ap=24,y.as=24,v.setStyleProperty("margin-right","10px");var _=this.i.createElement("div"),w=this.i.getSubRenderer(_);m.provideContainer(w);var S=this.i.createElement("div"),P=this.i.getSubRenderer(S);g.provideContainer(P),this.h.addItem(t,m),this.g.addItem(t,g),this.f.addItem(t,y),b=new n.XIcon;var O=this.i.createElement("div"),x=this.i.getSubRenderer(O);b.provideContainer(x),O.setStyleProperty("height","100%"),O.setStyleProperty("margin-left","-4px"),b.al=16,b.at=16,b.ap=16,b.as=16,b.ar=2,b.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',b.dp=i.BrushUtil.j(120,0,0,0),b.ao=i.DeviceUtils.g(1),_.setStyleProperty("display","flex"),_.setStyleProperty("height","100%"),_.setStyleProperty("align-items","center"),_.setStyleProperty("justify-content","start"),_.setStyleProperty("flex","auto"),S.setStyleProperty("display","flex"),S.setStyleProperty("height","100%"),S.setStyleProperty("align-items","center"),S.setStyleProperty("justify-content","center"),S.setStyleProperty("flex-direction","column"),t.append(v),t.append(_),t.append(S),t.append(O)}else m=this.h.item(t),g=this.g.item(t),y=this.f.item(t);if(null!=m)try{y.svg=null,y.cu=null,y.az=null;var j=null!=s?s:((d=new i.FontInfo).f=l,d.q=a,d);m.ak=!0,m.p=this.b.baseTheme,m.y=j,m.text=r,m.l=0;var k=t.getChildAt(0),I=null!=u||null!=h||null!=p,T=!1;if(k.setStyleProperty("width",I?"24px":"0px"),null!=h){T=!0,y.cu=h;var R=function(){var t=new i.DataContext;return t.series=f,t.item=null,t.itemBrush=function(){var t=new i.Brush;return t.color=i.Color.u(255,0,0,0),t.fill="black",t}(),t}();y.az=R}else if(null!=u){var A=i.typeCast(i.IDataLegendTarget_$type,u).getDataLegendSeries();if(null!=A)for(var E=0;E<A.length;E++){var B=A[E],D=B.getDataLegendSeriesTitle();if(r==D||r+" "+o==D){T=!0,y.cu=B.getDataLegendBadge(),y.az=B.getDataLegendBadgeContext();break}}k.setStyleProperty("padding-bottom","6px")}else null!=p&&(T=!0,y.aq=0,y.ar=0,y.al=24,y.at=24,y.ap=24,y.as=24,y.dh=i.BrushUtil.j(0,255,255,255),y.fill=i.BrushUtil.j(0,255,255,255),y.dp=i.BrushUtil.j(0,255,255,255),y.di=i.BrushUtil.j(0,255,255,255),y.svg=p);T||y.view.af();var $=t.getChildAt(2),M=t.getChildAt(3);if(i.stringIsNullOrEmpty(o))return $.setStyleProperty("display","none"),void M.setStyleProperty("display","none");$.setStyleProperty("display","flex"),M.setStyleProperty("display","flex"),g.p=this.b.baseTheme,j.f=j.f-2,g.ak=!0,g.y=j,g.text=o,g.dj=i.BrushUtil.j(180,0,0,0),g.l=0}finally{}},r.prototype.ae=function(){var t,n;if(null!=this.e)try{for(var r=e.__values(i.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&&(n=r.return)&&n.call(r)}finally{if(t)throw t.error}}null!=this.a&&(this.a.n=this.b.baseTheme)},r.prototype.ac=function(){},r.prototype.n=function(t,e){var i=t,n=parseInt(i.a4.toString()),r=i.checked;1==r?0==this.b.indexType?this.b.d0(n):this.b.cz(n):0==this.b.indexType?this.b.cz(n):this.b.d0(n),this.b.di(n,r),this.al(!1)},r.prototype.o=function(){},r.prototype.y=function(t,n){var r,o;try{for(var s=e.__values(i.fromEnum(this.e)),a=s.next();!a.done;a=s.next()){var l=a.value.value,u=parseInt(l.a4.toString());u==t&&(l.checked=n,this.b.di(u,n))}}catch(t){r={error:t}}finally{try{a&&!a.done&&(o=s.return)&&o.call(s)}finally{if(r)throw r.error}}this.al()},r.prototype.z=function(t){var n,r;try{for(var o=e.__values(i.fromEnum(this.e)),s=o.next();!s.done;s=o.next()){s.value.value.checked=t}}catch(t){n={error:t}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(n)throw n.error}}},r.prototype.u=function(t){this.m=t,null!=this.m&&this.m.setStyleProperty("margin","5px 0px 4px 0px")},r.prototype.am=function(){var t=this.i;if(null!=t&&null!=this.m){var e=t.createElement("div"),r=t.getSubRenderer(e);this.a=new n.XCheckbox,this.a.provideContainer(r);this.i.getExternal(this.a,r.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=i.delegateCombine(o.change,i.runOn(this,this.w)),this.a.y=!0}},r.prototype.ak=function(){null!=this.l&&(this.l.setRawText(this.b.cp),i.NativeUI.q(this.l,this.b.ep))},r.prototype.an=function(){if(null!=this.l){var t=this.b.showSelectAll?"flex":"none";this.m.setStyleProperty("display",t)}},r.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")},r.prototype.al=function(t){if(void 0===t&&(t=!0),null!=this.a){var e=this.d;this.d=!0;var i=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=i,this.d=e}}},r.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)))},r.prototype.ai=function(){var t=this.i;if(null!=t){var e=t.rootWrapper;null!=e&&(i.NativeUI.q(e,this.b.e7),i.NativeUI.m(e,this.b.backgroundColor))}},r.prototype.ag=function(){null!=this.c&&(this.c.fill=this.b.searchIconColor)},r.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"))},r.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)},r.prototype.af=function(t){null!=this.j&&i.NativeUI.w(this.j,t)},r.prototype.t=function(t){this.j=t},r.prototype.v=function(){var t,n;try{for(var r=e.__values(i.fromEnum(this.f)),o=r.next();!o.done;o=r.next()){var s=o.value;s.value.cu=null,s.value.az=null}}catch(e){t={error:e}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(t)throw t.error}}},r.$t=i.markType(r,"CheckboxListView"),r}(i.Base),lu=function(t){function r(){var e=t.call(this)||this;e._view=null,e.f=null,e.j=null,e.ai=null,e.ag=null,e.aj=null,e.ah=null,e.d=null,e.aq=!1,e.c=null,e.t=null,e.v=null,e.ar=!1,e.ao=null,e.g=new me,e.a=null,e.propertyChanged=null,e.selectedKeyAdded=null,e.selectedKeyRemoved=null,e.checkedChanged=null,e.labelClicked=null,e.bg=null,e.bj=null,e.bf=null,e.bn=null,e.bl=null,e.bm=null,e.bk=null,e.x=3,e.bb=-1,e.ak=null,e.k=1,e.ac=1,e.ae=2,e.el=i.BrushUtil.j(255,24,29,31),e.ej=null,e.at=!0,e.em=null,e.ek=null,e.al=null,e.ee=null,e.ec=null,e.ef=null,e.ed=null,e.eg=null,e.a6=NaN,e.aa=0,e.ei=null,e.indexTypeChanged=null,e.as=!1,e.co=null,e.en=null,e.ea=r.ey,e.a4=!0,e.eb=r.ew,e.eh=r.ex,e.eo=r.ey,e.keysCleared=null,e.selectAllCheckboxChanged=null,e.bd=-1,e.a2=!0,e.ay=!0,e.au=!1;var n=e.g;n.collectionChanged=i.delegateCombine(n.collectionChanged,i.runOn(e,e.du)),e.g.am(i.runOn(e,e.dt)),e.d=new i.FilterFactory;var o=new au;return o.b=e,e.view=o,e.view.q(),e}return e.__extends(r,t),Object.defineProperty(r.prototype,"view",{get:function(){return this._view},set:function(t){this._view=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"w",{get:function(){return this.v},set:function(t){this.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"u",{get:function(){return this.t},set:function(t){this.t=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"e",{get:function(){return null==this.f?null:this.f.actualDataSource},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"ap",{get:function(){return null==this.ao&&(this.ao=new i.SRProvider(this.view.i),this.ao.cb("DataGrid")),this.ao},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"keys",{get:function(){return this.g},enumerable:!1,configurable:!0}),Object.defineProperty(r.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}),r.prototype.clearSelectedKeys=function(){this.keys.clear(),null!=this.keysCleared&&this.keysCleared(this,new nu)},r.prototype.addSelectedKey=function(t,e){this.keys.add(new fe(t,e))},r.prototype.insertSelectedKey=function(t,e,i){this.keys.insert(t,new fe(e,i))},r.prototype.removeSelectedKeyAt=function(t){this.keys.removeAt(t)},r.prototype.dt=function(){this.db(),null!=this.keysCleared&&this.keysCleared(this,new nu)},r.prototype.du=function(t,e){if(null!=this.e&&null!=this.e.actualSchema&&!this.aq)switch(e.action){case 0:for(var i=0;i<e.newItems.count;i++)this.dm(e.newItems.item(i));break;case 1:for(var n=0;n<e.oldItems.count;n++)this.dn(e.oldItems.item(n));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 s=0;s<this.keys.ae.count;s++)this.dm(this.keys.ae._inner[s])}},r.prototype.dm=function(t){var e,i=this,n=this.e.indexOfKey(t.value);(n>=0&&this.view.y(n,1==this.indexType),null!=this.selectedKeyAdded)&&this.selectedKeyAdded(this,((e=new ru).c=n,e.b=1==i.indexType,e.a=t.value,e))},r.prototype.dn=function(t){var e,i=this,n=this.e.indexOfKey(t.value);(n>=0&&this.view.y(n,0==this.indexType),null!=this.selectedKeyRemoved)&&this.selectedKeyRemoved(this,((e=new ru).c=n,e.b=0==i.indexType,e.a=t.value,e))},r.prototype.di=function(t,e){if(null!=this.checkedChanged&&0==this.ar){var i=null;if(null!=this.e.actualPrimaryKey&&this.e.actualPrimaryKey.length>0){i=new Array(this.e.actualPrimaryKey.length);for(var n=0;n<this.e.actualPrimaryKey.length;n++)i[n]=this.e.getItemPropertyAtIndex(t,this.e.actualPrimaryKey[n])}this.checkedChanged(this,((r=new ru).c=t,r.b=e,r.a=i,r))}var r},r.prototype.notifySizeChanged=function(){this.view.o()},r.prototype.destroy=function(){if(null!=this.f){var t=this.f;t.cellClicked=i.delegateRemove(t.cellClicked,i.runOn(this,this.c7));var e=this.f;if(e.sizeChanged=i.delegateRemove(e.sizeChanged,i.runOn(this,this.c8)),null!=this.f.actualDataSource){var n=this.f.actualDataSource;n.schemaChanged=i.delegateRemove(n.schemaChanged,i.runOn(this,this.dq))}}if(null!=this.t){var r=this.t;r.change=i.delegateRemove(r.change,i.runOn(this,this.c9))}if(this.provideContainer(null,null,null),null!=this.j){var o=this.j;o.cellUpdating=i.delegateRemove(o.cellUpdating,i.runOn(this,this.c3))}},r.prototype.provideContainer=function(t,e,n){if(this.f=e,null!=this.f){this.f.scrollbarStyle=1;var r=this.f;r.sizeChanged=i.delegateCombine(r.sizeChanged,i.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=i.delegateCombine(o.cellClicked,i.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(n),this.av&&this.d8(),this.view.p(t)},r.prototype.c8=function(t,e){this.f.scrollbarStyle=this.ab},r.prototype.provideSelectAllSection=function(t){this.view.u(t)},r.prototype.c7=function(t,e){if(!(!this.av&&0==e.cellInfo.l.a5||this.av&&1==e.cellInfo.l.a5)){var i=e.cellInfo.l.x;if(-1!=i){var n=e.cellInfo.hn,r=this.i(n);this.a1&&(this.keys.contains(r)?(null!=this.ai&&this.ai.setPropertyValue(n,!1),this.keys.remove(r)):(null!=this.ai&&this.ai.setPropertyValue(n,!0),this.keys.add(r))),this.de(i,this.keys.contains(r))}}},r.prototype.de=function(t,e){var i,n=null;if(null!=this.e.actualPrimaryKey&&this.e.actualPrimaryKey.length>0){n=new Array(this.e.actualPrimaryKey.length);for(var r=0;r<this.e.actualPrimaryKey.length;r++)n[r]=this.e.getItemPropertyAtIndex(t,this.e.actualPrimaryKey[r])}null!=this.labelClicked&&this.labelClicked(this,((i=new ru).c=t,i.b=e,i.a=n,i))},r.prototype.c3=function(t,e){var i=e.cellInfo.l.x;if(-1!=i){var n=!1;if(null!=e.cellInfo.hn){var r=this.i(e.cellInfo.hn);this.keys.contains(r)&&(n=!0)}this.view.r(e.content.element,i,n)}},r.prototype.d7=function(t,e){var n=e.cellInfo.l.x;if(-1!=n){var r=null,o=null,s=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 a=i.EnumUtil.getEnumValue(i.DataSeriesPropertyType_$type,this.ah.getPropertyValue(e.cellInfo.hn));0==a?s=i.SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons","string-field"):2==a?s=i.SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons","numeric-field"):1==a&&(s=i.SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons","date-time-field"))}this.view.s(e.content.element,n,r,o,this.ak,"Verdana",13,this.bf,null,null,s)}},r.prototype.dj=function(t){if(null!=this.bj){var e=this.d.property(this.bj).cast(i.enumGetBox(i.DataSourceSchemaPropertyType_$type,0)).toLower().contains(t);if(this.f.filterExpressions.k.contains(this.c)){var n=this.f.filterExpressions.k.indexOf(this.c);this.f.filterExpressions.k.item(n,this.c=e)}else this.c=e,this.f.filterExpressions.add(this.c)}},Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.prototype,"y",{get:function(){return this.x},set:function(t){var e=this.x;this.x=t,e!=this.x&&this.dp("SearchInputType",i.enumGetBox(n.InputGroupDisplayType_$type,e),i.enumGetBox(n.InputGroupDisplayType_$type,this.x))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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 I.q;case 0:case 2:return I.r;case 1:return I.p}return I.r},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.prototype,"indexType",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.dp("IndexType",i.enumGetBox(iu,e),i.enumGetBox(iu,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"baseTheme",{get:function(){return this.ac},set:function(t){var e=this.ac;this.ac=t,e!=this.ac&&this.dp("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,this.ac))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"density",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=this.ae&&this.dp("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.ae))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.prototype,"ab",{get:function(){return this.aa},set:function(t){var e=this.aa;this.aa=t,e!=this.aa&&this.dp("ScrollbarStyle",i.enumGetBox(i.ScrollbarStyle_$type,e),i.enumGetBox(i.ScrollbarStyle_$type,this.aa))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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}),r.prototype.dp=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.dv(t,e,n)},r.prototype.dv=function(t,e,n){switch(t){case"IndexType":this.keys.clear(),this.db(),null!=this.keysCleared&&this.keysCleared(this,new nu),this.view.al(),this.dk(e,n);break;case"ItemsSource":if(null!=this.f){if(this.indexType=1,null!=n&&(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=i.delegateRemove(o.schemaChanged,i.runOn(this,this.dq))}if(this.f.itemsSource=this.bg,this.c2(),null!=this.f.actualDataSource){var s=this.f.actualDataSource;s.schemaChanged=i.delegateCombine(s.schemaChanged,i.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:r.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 a=this.f;null!=a&&(a.cellTextColor=this.e7,a.cellBackground=this.backgroundColor,a.cellSelectedBackground=this.backgroundColor,a.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()}},r.prototype.d8=function(){if(0!=this.f.actualColumns.count){var t=this.f.actualColumns._inner[0],e=this.f.actualColumns._inner[1],i=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(i)}},r.prototype.dk=function(t,e){var n;null!=this.indexTypeChanged&&this.indexTypeChanged(this,((n=new ou).b=i.EnumUtil.getEnumValue(iu,t),n.a=i.EnumUtil.getEnumValue(iu,e),n))},r.prototype.d4=function(){null!=this.f&&(this.f.density=this.density),null!=this.v&&(this.v.t=this.density),this.view.ac()},r.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()},r.prototype.dq=function(t,e){if(this.ar=!0,this.c2(),null!=e.schema){this.ds();for(var i=0;i<this.keys.count;i++)this.dm(this.keys._inner[i]);this.view.al()}this.ar=!1},r.prototype.ds=function(){if(null==this.ai&&null!=this.bm&&""!=this.bm&&(this.ai=new i.FastReflectionHelper(!1,this.bm)),null==this.ag&&null!=this.bj&&""!=this.bj&&(this.ag=new i.FastReflectionHelper(!1,this.bj)),null==this.aj&&null!=this.bn&&""!=this.bn&&(this.aj=new i.FastReflectionHelper(!1,this.bn)),null==this.ah&&null!=this.bl&&""!=this.bl&&(this.ah=new i.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 n=this.f.actualDataSource.getItemAtIndex(e),r=this.i(n);1==this.ai.getPropertyValue(n)?this.keys.contains(r)||this.keys.add(r):this.keys.contains(r)&&this.keys.remove(r)}}},r.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 i.Thickness(0,0),null!=this.am&&(this.f.cellTextStyle=this.am);var t=new ir;null==this.bm&&(this.bm=""),t.lo=this.bm,t.mf="CheckboxColumn";var e=new Rt;e.c=!1,e.f=28,t.width=e,t.kk=0,t.kl=0,t.cellUpdating=i.delegateCombine(t.cellUpdating,i.runOn(this,this.c3)),this.j=t,this.f.columns.add(t);var n=this.f.actualDataSource.resolveSchemaPropertyType(this.bj);if(null==this.bn&&null==this.bl||0!=n&&11!=n&&2!=n){var r=void 0;switch(n){case 8:case 9:r=new En;break;case 1:case 3:case 4:case 5:case 6:case 7:case 10:r=new Wn;break;case 2:case 11:case 0:default:r=new rr}r.lo=this.bj,r.mf="DataColumn",r.kk=0,r.g=0,this.f.columns.add(r)}else{var o=new ir;o.lo=this.bj,o.mf="DataColumn",o.kk=0,o.g=0,o.cellUpdating=i.delegateCombine(o.cellUpdating,i.runOn(this,this.d7)),this.f.columns.add(o)}var s=new ir,a=new Rt;a.c=!1,a.f=10,s.lo="PaddingColumn",s.mf="PaddingColumn",s.kk=0,s.width=a,this.f.columns.add(s)},r.prototype.updateHrMargin=function(t){this.view.af(t)},r.prototype.provideHrElement=function(t){this.view.t(t)},r.prototype.dl=function(){var t=this.u;t.changing=i.delegateCombine(t.changing,i.runOn(this,this.c9)),this.d5()},r.prototype.c9=function(t,e){var i=e.value.toLowerCase();this.dj(i)},r.prototype.i=function(t){if(null==this.primaryKey)return fe.createIdentityKey(t);for(var e=new Array(this.primaryKey.length),i=new Array(this.primaryKey.length),n=0;n<e.length;n++)e[n]=this.primaryKey[n],i[n]=this.e.getItemProperty(t,e[n]);return new fe(e,i)},r.prototype.d0=function(t){this.aq=!0;var e=this.e.getItemAtIndex(t);null!=this.ai&&this.ai.setPropertyValue(e,!1);var i=this.i(e);this.keys.remove(i),this.aq=!1},r.prototype.cz=function(t){this.aq=!0;var e=this.e.getItemAtIndex(t);null!=this.ai&&this.ai.setPropertyValue(e,!0);var i=this.i(e);this.keys.add(i),this.aq=!1},r.prototype.d3=function(){this.indexType=0,this.keys.clear(),this.db(),null!=this.keysCleared&&this.keysCleared(this,new nu)},r.prototype.c5=function(){this.indexType=1,this.keys.clear(),this.db(),null!=this.keysCleared&&this.keysCleared(this,new nu)},r.prototype.dg=function(t,e,i){null!=this.f&&this.f.notifySetItem(t,e,i)},r.prototype.dc=function(){null!=this.f&&this.f.notifyClearItems()},r.prototype.db=function(){null!=this.f&&this.f.invalidateVisibleRows()},r.prototype.dd=function(t,e){null!=this.f&&this.f.notifyInsertItem(t,e)},r.prototype.df=function(t,e){null!=this.f&&this.f.notifyRemoveItem(t,e)},r.prototype.refresh=function(){this.as||null!=this.f&&(this.as=!0,this.view.v(),this.f.refresh(),this.as=!1)},r.prototype.c0=function(t){var e=null;if(null==this.primaryKey||0==this.primaryKey.length)e=new fe(null,t);else{if(this.primaryKey.length!=t.length)throw new i.ArgumentException(1,"value length must match PrimaryKey length");e=new fe(this.primaryKey,t)}if(null!=e){if(null!=this.ai){var n=this.e.indexOfKey(t),r=this.e.getItemAtIndex(n);this.ai.setPropertyValue(r,!0)}this.keys.add(e)}},r.prototype.d1=function(t){var e=null;if(null==this.primaryKey||0==this.primaryKey.length)e=new fe(null,t);else{if(this.primaryKey.length!=t.length)throw new i.ArgumentException(1,"value length must match PrimaryKey length");e=new fe(this.primaryKey,t)}if(this.keys.contains(e)){if(null!=this.ai){var n=this.e.indexOfKey(t),r=this.e.getItemAtIndex(n);this.ai.setPropertyValue(r,!1)}this.keys.remove(e)}},r.prototype.getDesiredSize=function(t){var e=0,n=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,s=this.bc*(this.showSelectAll?4:5),a=n+(o>s?s:o);i.isPositiveInfinity(t.height)?e=a:e=t.height<=a?a:n+(t.height-a);return new i.Size(1,248,e)},r.prototype.a9=function(){var t=0;return t+=i.ComponentSizeHelpers.d(this.density,this.baseTheme),t+=i.ComponentSizeHelpers.c(this.density,this.baseTheme),t+=6.8,t+=4,this.showSelectAll&&(t+=this.bc),t+=4},Object.defineProperty(r.prototype,"cp",{get:function(){return null!=this.co?this.co:i.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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}),r.prototype.dr=function(t){var e;null!=this.selectAllCheckboxChanged&&this.selectAllCheckboxChanged(this,((e=new su).a=t,e))},r.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}},r.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}},r.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(r.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(r.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(r.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}),r.$t=i.markType(r,"CheckboxList",i.Base.$,[i.INotifyPropertyChanged_$type]),r.e6=i.BrushUtil.j(255,24,29,31),r.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",r.ew=i.BrushUtil.j(255,248,248,248),r.ex=null,r.ey=i.BrushUtil.j(255,24,29,31),r}(i.Base),uu=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ru},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(),this._initializeAdapters&&this._initializeAdapters()},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=i.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}(),hu=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new su},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"isChecked",{get:function(){return this.i.a},set:function(t){this.i.a=i.ensureBool(t)},enumerable:!1,configurable:!0}),t}(),cu=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ou},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"oldValue",{get:function(){return this.i.b},set:function(t){this.i.b=i.ensureEnum(iu,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"newValue",{get:function(){return this.i.a},set:function(t){this.i.a=i.ensureEnum(iu,t)},enumerable:!1,configurable:!0}),t}(),pu=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new nu},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),du=function(t){function r(){var e=t.call(this)||this;e._dataSource=null,e._disconnected=!1,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e._keys=null,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._selectedKeyAdded=null,e._selectedKeyAdded_wrapped=null,e._selectedKeyRemoved=null,e._selectedKeyRemoved_wrapped=null,e._checkedChanged=null,e._checkedChanged_wrapped=null,e._labelClicked=null,e._labelClicked_wrapped=null,e._indexTypeChanged=null,e._indexTypeChanged_wrapped=null,e._keysCleared=null,e._keysCleared_wrapped=null,e._selectAllCheckboxChanged=null,e._selectAllCheckboxChanged_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._renderer=new i.WebComponentRenderer(e,document,!0,null),e._implementation=e.createImplementation(),e._container=e._renderer.createElement("div"),e._renderer.updateRoot(e._container),e._container.setStyleProperty("display","block"),e._container.setStyleProperty("width","100%"),e._container.setStyleProperty("height","100%");var n=e.i;return e._checkboxList=n,e._renderer.addSizeWatcher((function(){e._checkboxList.notifySizeChanged()})),e}return e.__extends(r,t),Object.defineProperty(r.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.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.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(r.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}),r.prototype.updateStyle=function(){this._styling(this,this)},r.prototype.destroy=function(){this._checkboxList.destroy()},r.prototype.createImplementation=function(){return new lu},r.prototype.disconnectedCallback=function(){this._disconnected=!0},r.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-checkbox-list"),this.classList.add("igc-checkbox-list");var t=this._renderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var e=this._renderer.createElement("div");this._container.append(e);var i=this._renderer.createElement("hr");this._container.append(i),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 n=this._renderer.createElement("div");this._container.append(n);var r=this._renderer.createElement("igc-data-grid");r.getNativeElement().headerHeight=0,this._container.append(r),this._checkboxList.provideContainer(this._renderer,r.getNativeElement().i,n),this._checkboxList.notifySizeChanged(),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},r.prototype.afterContentInit=function(){this.i.notifySizeChanged()},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},r.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},r.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},r.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(r,"observedAttributes",{get:function(){if(null==r._observedAttributesIgcCheckboxListComponent){for(var t=i.getAllPropertyNames(r),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);r._observedAttributesIgcCheckboxListComponent=t}return r._observedAttributesIgcCheckboxListComponent},enumerable:!1,configurable:!0}),r.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},r.register=function(){r._isElementRegistered||(r._isElementRegistered=!0,i.RegisterElementHelper.registerElement(r.htmlTagName,r))},Object.defineProperty(r.prototype,"keys",{get:function(){if(null===this._keys){var t=new Yo,e=this.i.keys;e||(e=new me),this._keys=t._fromInner(e)}return this._keys},set:function(t){null!==this._keys&&(this._keys._setSyncTarget(null),this._keys=null);var e=new Yo;this._keys=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(fe.$type),r=this.i.keys;r||(r=new me),n._inner=r,n.clear(),this._keys._setSyncTarget(n)},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.prototype,"dataMemberPath",{get:function(){return this.i.dataMemberPath},set:function(t){this.i.dataMemberPath=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"dataLegendTarget",{get:function(){return this.i.bh},set:function(t){this.i.bh=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"subtitleMemberPath",{get:function(){return this.i.cw},set:function(t){this.i.cw=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"propertyTypeMemberPath",{get:function(){return this.i.cb},set:function(t){this.i.cb=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"selectedMemberPath",{get:function(){return this.i.selectedMemberPath},set:function(t){this.i.selectedMemberPath=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"filterPlaceholderText",{get:function(){return this.i.b4},set:function(t){this.i.b4=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"searchInputType",{get:function(){return this.i.y},set:function(t){this.i.y=i.ensureEnum(n.InputGroupDisplayType_$type,t),this._a("searchInputType",i.enumToString(n.InputGroupDisplayType_$type,this.i.y))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"rowHeight",{get:function(){return this.i.be},set:function(t){this.i.be=+t,this._a("rowHeight",this.i.be)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualRowHeight",{get:function(){return this.i.bc},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cellTextStyle",{get:function(){return null==this.i.am?null:this.i.am.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.am=e,this._a("cellTextStyle",null!=this.i.am?this.i.am.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"indexType",{get:function(){return this.i.indexType},set:function(t){this.i.indexType=i.ensureEnum(iu,t),this._a("indexType",i.enumToString(iu,this.i.indexType))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"baseTheme",{get:function(){return this.i.baseTheme},set:function(t){this.i.baseTheme=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.baseTheme))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.density))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"searchIconColor",{get:function(){return i.brushToString(this.i.searchIconColor)},set:function(t){this.i.searchIconColor=i.stringToBrush(t),this._a("searchIconColor",i.brushToString(this.i.searchIconColor))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"searchBackgroundColor",{get:function(){return i.brushToString(this.i.e1)},set:function(t){this.i.e1=i.stringToBrush(t),this._a("searchBackgroundColor",i.brushToString(this.i.e1))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"labelClickTriggersChange",{get:function(){return this.i.a1},set:function(t){this.i.a1=i.ensureBool(t),this._a("labelClickTriggersChange",this.i.a1)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"searchTextColor",{get:function(){return i.brushToString(this.i.searchTextColor)},set:function(t){this.i.searchTextColor=i.stringToBrush(t),this._a("searchTextColor",i.brushToString(this.i.searchTextColor))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"searchBorderColor",{get:function(){return i.brushToString(this.i.e2)},set:function(t){this.i.e2=i.stringToBrush(t),this._a("searchBorderColor",i.brushToString(this.i.e2))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"searchTextStyle",{get:function(){return null==this.i.an?null:this.i.an.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.an=e,this._a("searchTextStyle",null!=this.i.an?this.i.an.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkboxTickColor",{get:function(){return i.brushToString(this.i.et)},set:function(t){this.i.et=i.stringToBrush(t),this._a("checkboxTickColor",i.brushToString(this.i.et))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkboxCheckedBackgroundColor",{get:function(){return i.brushToString(this.i.er)},set:function(t){this.i.er=i.stringToBrush(t),this._a("checkboxCheckedBackgroundColor",i.brushToString(this.i.er))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkboxUncheckedBackgroundColor",{get:function(){return i.brushToString(this.i.eu)},set:function(t){this.i.eu=i.stringToBrush(t),this._a("checkboxUncheckedBackgroundColor",i.brushToString(this.i.eu))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkboxCheckedBorderColor",{get:function(){return i.brushToString(this.i.es)},set:function(t){this.i.es=i.stringToBrush(t),this._a("checkboxCheckedBorderColor",i.brushToString(this.i.es))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkboxUncheckedBorderColor",{get:function(){return i.brushToString(this.i.ev)},set:function(t){this.i.ev=i.stringToBrush(t),this._a("checkboxUncheckedBorderColor",i.brushToString(this.i.ev))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkboxCornerRadius",{get:function(){return this.i.a7},set:function(t){this.i.a7=+t,this._a("checkboxCornerRadius",this.i.a7)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"scrollbarStyle",{get:function(){return this.i.ab},set:function(t){this.i.ab=i.ensureEnum(i.ScrollbarStyle_$type,t),this._a("scrollbarStyle",i.enumToString(i.ScrollbarStyle_$type,this.i.ab))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"scrollbarBackground",{get:function(){return i.brushToString(this.i.e0)},set:function(t){this.i.e0=i.stringToBrush(t),this._a("scrollbarBackground",i.brushToString(this.i.e0))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"selectAllCaption",{get:function(){return this.i.cp},set:function(t){this.i.cp=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"selectAllCaptionTextColor",{get:function(){return i.brushToString(this.i.e5)},set:function(t){this.i.e5=i.stringToBrush(t),this._a("selectAllCaptionTextColor",i.brushToString(this.i.e5))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualSelectAllCaptionTextColor",{get:function(){return i.brushToString(this.i.ep)},set:function(t){this.i.ep=i.stringToBrush(t),this._a("actualSelectAllCaptionTextColor",i.brushToString(this.i.ep))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"showSelectAll",{get:function(){return this.i.showSelectAll},set:function(t){this.i.showSelectAll=i.ensureBool(t),this._a("showSelectAll",this.i.showSelectAll)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.backgroundColor)},set:function(t){this.i.backgroundColor=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.backgroundColor))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"rowHoverBackgroundColor",{get:function(){return i.brushToString(this.i.rowHoverBackgroundColor)},set:function(t){this.i.rowHoverBackgroundColor=i.stringToBrush(t),this._a("rowHoverBackgroundColor",i.brushToString(this.i.rowHoverBackgroundColor))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textColor",{get:function(){return i.brushToString(this.i.e7)},set:function(t){this.i.e7=i.stringToBrush(t),this._a("textColor",i.brushToString(this.i.e7))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"showFilter",{get:function(){return this.i.a3},set:function(t){this.i.a3=i.ensureBool(t),this._a("showFilter",this.i.a3)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isRowHoverEnabled",{get:function(){return this.i.az},set:function(t){this.i.az=i.ensureBool(t),this._a("isRowHoverEnabled",this.i.az)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkboxAlignedRight",{get:function(){return this.i.av},set:function(t){this.i.av=i.ensureBool(t),this._a("checkboxAlignedRight",this.i.av)},enumerable:!1,configurable:!0}),r.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(r.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),r.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},r.prototype._styling=function(t,e,n){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=i.toSpinal("CheckboxListComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},r.prototype.selectAll=function(){this.i.d3()},r.prototype.deselectAll=function(){this.i.c5()},r.prototype.notifySetItem=function(t,e,i){this.i.dg(t,e,i)},r.prototype.notifyClearItems=function(){this.i.dc()},r.prototype.notifyInsertItem=function(t,e){this.i.dd(t,e)},r.prototype.notifyRemoveItem=function(t,e){this.i.df(t,e)},r.prototype.refresh=function(){this.i.refresh()},r.prototype.addKeyValue=function(t){this.i.c0(t)},r.prototype.removeKeyValue=function(t){this.i.d1(t)},r.prototype.getDesiredSize=function(t){var e=this.i.getDesiredSize(i.toSize(t));return i.fromSize(e)},r.prototype.isNothingSelected=function(){return this.i.ax()},r.prototype.isEverythingSelected=function(){return this.i.aw()},Object.defineProperty(r.prototype,"selectedKeyAdded",{get:function(){return this._selectedKeyAdded},set:function(t){var e=this;null!==this._selectedKeyAdded_wrapped&&(this.i.selectedKeyAdded=i.delegateRemove(this.i.selectedKeyAdded,this._selectedKeyAdded_wrapped),this._selectedKeyAdded_wrapped=null,this._selectedKeyAdded=null),this._selectedKeyAdded=t,this._selectedKeyAdded_wrapped=function(t,i){var n=new uu;n._provideImplementation(i),e.beforeSelectedKeyAdded&&e.beforeSelectedKeyAdded(e,n),e._selectedKeyAdded&&e._selectedKeyAdded(e,n)},this.i.selectedKeyAdded=i.delegateCombine(this.i.selectedKeyAdded,this._selectedKeyAdded_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"selectedKeyRemoved",{get:function(){return this._selectedKeyRemoved},set:function(t){var e=this;null!==this._selectedKeyRemoved_wrapped&&(this.i.selectedKeyRemoved=i.delegateRemove(this.i.selectedKeyRemoved,this._selectedKeyRemoved_wrapped),this._selectedKeyRemoved_wrapped=null,this._selectedKeyRemoved=null),this._selectedKeyRemoved=t,this._selectedKeyRemoved_wrapped=function(t,i){var n=new uu;n._provideImplementation(i),e.beforeSelectedKeyRemoved&&e.beforeSelectedKeyRemoved(e,n),e._selectedKeyRemoved&&e._selectedKeyRemoved(e,n)},this.i.selectedKeyRemoved=i.delegateCombine(this.i.selectedKeyRemoved,this._selectedKeyRemoved_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"checkedChanged",{get:function(){return this._checkedChanged},set:function(t){var e=this;null!==this._checkedChanged_wrapped&&(this.i.checkedChanged=i.delegateRemove(this.i.checkedChanged,this._checkedChanged_wrapped),this._checkedChanged_wrapped=null,this._checkedChanged=null),this._checkedChanged=t,this._checkedChanged_wrapped=function(t,i){var n=new uu;n._provideImplementation(i),e.beforeCheckedChanged&&e.beforeCheckedChanged(e,n),e._checkedChanged&&e._checkedChanged(e,n)},this.i.checkedChanged=i.delegateCombine(this.i.checkedChanged,this._checkedChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"labelClicked",{get:function(){return this._labelClicked},set:function(t){var e=this;null!==this._labelClicked_wrapped&&(this.i.labelClicked=i.delegateRemove(this.i.labelClicked,this._labelClicked_wrapped),this._labelClicked_wrapped=null,this._labelClicked=null),this._labelClicked=t,this._labelClicked_wrapped=function(t,i){var n=new uu;n._provideImplementation(i),e.beforeLabelClicked&&e.beforeLabelClicked(e,n),e._labelClicked&&e._labelClicked(e,n)},this.i.labelClicked=i.delegateCombine(this.i.labelClicked,this._labelClicked_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"indexTypeChanged",{get:function(){return this._indexTypeChanged},set:function(t){var e=this;null!==this._indexTypeChanged_wrapped&&(this.i.indexTypeChanged=i.delegateRemove(this.i.indexTypeChanged,this._indexTypeChanged_wrapped),this._indexTypeChanged_wrapped=null,this._indexTypeChanged=null),this._indexTypeChanged=t,this._indexTypeChanged_wrapped=function(t,i){var n=new cu;n._provideImplementation(i),e.beforeIndexTypeChanged&&e.beforeIndexTypeChanged(e,n),e._indexTypeChanged&&e._indexTypeChanged(e,n)},this.i.indexTypeChanged=i.delegateCombine(this.i.indexTypeChanged,this._indexTypeChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"keysCleared",{get:function(){return this._keysCleared},set:function(t){var e=this;null!==this._keysCleared_wrapped&&(this.i.keysCleared=i.delegateRemove(this.i.keysCleared,this._keysCleared_wrapped),this._keysCleared_wrapped=null,this._keysCleared=null),this._keysCleared=t,this._keysCleared_wrapped=function(t,i){var n=new pu;n._provideImplementation(i),e.beforeKeysCleared&&e.beforeKeysCleared(e,n),e._keysCleared&&e._keysCleared(e,n)},this.i.keysCleared=i.delegateCombine(this.i.keysCleared,this._keysCleared_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"selectAllCheckboxChanged",{get:function(){return this._selectAllCheckboxChanged},set:function(t){var e=this;null!==this._selectAllCheckboxChanged_wrapped&&(this.i.selectAllCheckboxChanged=i.delegateRemove(this.i.selectAllCheckboxChanged,this._selectAllCheckboxChanged_wrapped),this._selectAllCheckboxChanged_wrapped=null,this._selectAllCheckboxChanged=null),this._selectAllCheckboxChanged=t,this._selectAllCheckboxChanged_wrapped=function(t,i){var n=new hu;n._provideImplementation(i),e.beforeSelectAllCheckboxChanged&&e.beforeSelectAllCheckboxChanged(e,n),e._selectAllCheckboxChanged&&e._selectAllCheckboxChanged(e,n)},this.i.selectAllCheckboxChanged=i.delegateCombine(this.i.selectAllCheckboxChanged,this._selectAllCheckboxChanged_wrapped)},enumerable:!1,configurable:!0}),r._observedAttributesIgcCheckboxListComponent=null,r.htmlTagName="igc-checkbox-list",r._isElementRegistered=!1,r}(i.IgcHTMLElement),fu=function(){function t(){}return t.register=function(){Hl.register(),Ul.register(),Xl.register(),Yl.register(),tu.register(),n.IgcXCheckboxModule.register(),n.IgcXInputGroupModule.register(),du.register(),i.TypeRegistrar.registerCons("IgcCheckboxListComponent",du),i.TypeRegistrar.registerCons("IgcCheckboxListComponent",du),i.TypeRegistrar.register("NativeUIGridFactory",Lo.$type),Lo.register(),i.TypeRegistrar.register("CheckboxList",lu.$type)},t}(),mu=function(t){function n(){var e=t.call(this)||this;return e.columnName=null,e.isNotHidden=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"ColumnChooserInfo"),n}(i.Base),gu=function(t){function n(){var e=t.call(this)||this;return e.d=null,e.c=null,e.e=null,e.a=null,e.b=null,e}return e.__extends(n,t),n.prototype.h=function(){},n.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},n.prototype.i=function(){null!=this.b&&this.b.rootWrapper.setStyleProperty("background-color",this.a.aq._fill)},n.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")}},n.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()},n.prototype.l=function(){null!=this.e&&null!=this.a.ar&&this.e.setStyleProperty("color",this.a.ar._fill)},n.prototype.m=function(){null!=this.e&&null!=this.a.j&&this.e.setStyleProperty("font",this.a.j.fontString)},n.prototype.f=function(){},n.$t=i.markType(n,"ColumnChooserView"),n}(i.Base),bu=function(t){function n(){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=i.BrushUtil.j(255,0,153,255),e.n=null,e.e=1,e.g=2,e.ao=i.BrushUtil.j(255,248,248,248),e.m=!1;var n=new gu;return n.a=e,e.a=n,e.a.h(),e}return e.__extends(n,t),n.prototype.notifySizeChanged=function(){this.a.f()},n.prototype.destroy=function(){if(null!=this.d){var t=this.d;t.checkedChanged=i.delegateRemove(t.checkedChanged,i.runOn(this,this.ac));var e=this.d;e.selectAllCheckboxChanged=i.delegateRemove(e.selectAllCheckboxChanged,i.runOn(this,this.ad))}if(this.provideContainer(null,null),null!=this.b){var n=this.b.actualColumns;n.collectionChanged=i.delegateRemove(n.collectionChanged,i.runOn(this,this.z));var r=this.b;r.columnHiddenChanged=i.delegateRemove(r.columnHiddenChanged,i.runOn(this,this.am))}},n.prototype.provideContainer=function(t,e){if(this.d=e,null!=this.d){var n=this.d;n.checkedChanged=i.delegateCombine(n.checkedChanged,i.runOn(this,this.ac));var r=this.d;r.selectAllCheckboxChanged=i.delegateCombine(r.selectAllCheckboxChanged,i.runOn(this,this.ad))}this.aa(),this.a.g(t)},Object.defineProperty(n.prototype,"l",{get:function(){return null==this.k&&(this.k=new i.SRProvider(this.a.b),this.k.cb("DataGrid")),this.k},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.prototype,"s",{get:function(){return null!=this.n?this.n:i.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(n.prototype,"f",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.ag("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,this.e))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"h",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.ag("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.g))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.ag=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.ah(t,e,n)},n.prototype.ah=function(t,e,n){switch(t){case"TargetGrid":if(null!=e){var r=e.actualColumns;r.collectionChanged=i.delegateRemove(r.collectionChanged,i.runOn(this,this.z));var o=e;o.columnHiddenChanged=i.delegateRemove(o.columnHiddenChanged,i.runOn(this,this.am))}if(null!=this.b){var s=this.b.actualColumns;s.collectionChanged=i.delegateCombine(s.collectionChanged,i.runOn(this,this.z));var a=this.b;a.columnHiddenChanged=i.delegateCombine(a.columnHiddenChanged,i.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()}},n.prototype.ak=function(){null!=this.d&&(this.d.baseTheme=this.f)},n.prototype.aj=function(){null!=this.d&&(this.d.density=this.h)},n.prototype.am=function(t,e){0==this.m&&this.aa(),this.m=!1},n.prototype.z=function(t,e){this.aa()},n.prototype.aa=function(){var t,n;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 i.ObservableCollection$1(mu.$,0);try{for(var s=e.__values(i.fromEnum(this.b.actualColumns)),a=s.next();!a.done;a=s.next()){var l=a.value;r=new mu;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{a&&!a.done&&(n=s.return)&&n.call(s)}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}},n.prototype.an=function(t){null!=this.d&&this.d.updateHrMargin(t)},n.prototype.al=function(){var t,n;if(this.d.d3(),null!=this.b)try{for(var r=e.__values(i.fromEnum(this.b.actualColumns)),o=r.next();!o.done;o=r.next()){var s=o.value;this.m=!0,s.jo=!1}}catch(e){t={error:e}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(t)throw t.error}}},n.prototype.ae=function(){var t,n;if(this.d.c5(),null!=this.b)try{for(var r=e.__values(i.fromEnum(this.b.actualColumns)),o=r.next();!o.done;o=r.next()){var s=o.value;this.m=!0,s.jo=!0}}catch(e){t={error:e}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(t)throw t.error}}},n.prototype.ad=function(t,e){this.m=!0,e.a?this.al():this.ae()},n.prototype.ac=function(t,e){this.m=!0;for(var i=this.d.f.actualDataSource.getItemAtIndex(e.c),n=this.b.actualColumns.count,r=0;r<n;r++)this.b.actualColumns._inner[r].lo!=i.columnName&&this.b.actualColumns._inner[r].mf!=i.columnName&&this.b.actualColumns._inner[r].lv!=i.columnName||(this.b.actualColumns._inner[r].jo=!e.b,this.b.actualColumns._inner[r].m0("Hidden"))},n.$t=i.markType(n,"ColumnChooser",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),yu=function(t){function n(){var e=t.call(this)||this;e._disconnected=!1,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._renderer=new i.WebComponentRenderer(e,document,!0,null),e._implementation=e.createImplementation(),e._container=e._renderer.createElement("div"),e._renderer.updateRoot(e._container),e._container.setStyleProperty("display","block"),e._container.setStyleProperty("width","100%"),e._container.setStyleProperty("height","100%");var n=e.i;return e._columnChooser=n,e._renderer.addSizeWatcher((function(){e._columnChooser.notifySizeChanged()})),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._columnChooser.destroy()},n.prototype.createImplementation=function(){return new bu},n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-column-chooser"),this.classList.add("igc-column-chooser");var t=this._renderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var e=this._renderer.createElement("span");this._container.append(e);var i=this._renderer.createElement("igc-checkbox-list");this._container.append(i),this._columnChooser.provideContainer(this._renderer,i.getNativeElement().i),this._columnChooser.notifySizeChanged(),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){this.i.notifySizeChanged()},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcColumnChooserComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcColumnChooserComponent=t}return n._observedAttributesIgcColumnChooserComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.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(n.prototype,"title",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"titleStyle",{get:function(){return null==this.i.j?null:this.i.j.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.j=e,this._a("titleStyle",null!=this.i.j?this.i.j.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"titleColor",{get:function(){return i.brushToString(this.i.ar)},set:function(t){this.i.ar=i.stringToBrush(t),this._a("titleColor",i.brushToString(this.i.ar))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterPlaceholderText",{get:function(){return this.i.s},set:function(t){this.i.s=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"baseTheme",{get:function(){return this.i.f},set:function(t){this.i.f=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.f))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"density",{get:function(){return this.i.h},set:function(t){this.i.h=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.h))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.aq)},set:function(t){this.i.aq=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.aq))},enumerable:!1,configurable:!0}),n.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(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("ColumnChooserComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n._observedAttributesIgcColumnChooserComponent=null,n.htmlTagName="igc-column-chooser",n._isElementRegistered=!1,n}(i.IgcHTMLElement),vu=function(){function t(){}return t.register=function(){fu.register(),n.IgcXButtonModule.register(),yu.register(),i.TypeRegistrar.registerCons("IgcColumnChooserComponent",yu),i.TypeRegistrar.registerCons("IgcColumnChooserComponent",yu),i.TypeRegistrar.register("ColumnChooser",bu.$type)},t}(),Cu=function(t){function n(){var e=t.call(this)||this;e._disconnected=!1,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._renderer=new i.WebComponentRenderer(e,document,!0,null),e._implementation=e.createImplementation(),e._container=e._renderer.createElement("div"),e._renderer.updateRoot(e._container),e._container.setStyleProperty("display","block"),e._container.setStyleProperty("width","100%"),e._container.setStyleProperty("height","100%");var n=e.i;return e._columnGrouping=n,e._renderer.addSizeWatcher((function(){e._columnGrouping.notifySizeChanged()})),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._columnGrouping.destroy()},n.prototype.createImplementation=function(){return new Vl},n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-column-grouping"),this.classList.add("igc-column-grouping");var t=this._renderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var e=this._renderer.createElement("div");this._container.append(e),this._columnGrouping.provideContainer(this._renderer),this._columnGrouping.notifySizeChanged(),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){this.i.notifySizeChanged()},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcColumnGroupingComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcColumnGroupingComponent=t}return n._observedAttributesIgcColumnGroupingComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.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(n.prototype,"baseTheme",{get:function(){return this.i.g},set:function(t){this.i.g=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.g))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"density",{get:function(){return this.i.i},set:function(t){this.i.i=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.i))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"title",{get:function(){return this.i.al},set:function(t){this.i.al=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"titleColor",{get:function(){return i.brushToString(this.i.bm)},set:function(t){this.i.bm=i.stringToBrush(t),this._a("titleColor",i.brushToString(this.i.bm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textStyle",{get:function(){return null==this.i.k?null:this.i.k.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.k=e,this._a("textStyle",null!=this.i.k?this.i.k.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textColor",{get:function(){return i.brushToString(this.i.bl)},set:function(t){this.i.bl=i.stringToBrush(t),this._a("textColor",i.brushToString(this.i.bl))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"iconColor",{get:function(){return i.brushToString(this.i.bi)},set:function(t){this.i.bi=i.stringToBrush(t),this._a("iconColor",i.brushToString(this.i.bi))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"itemBackgroundColor",{get:function(){return i.brushToString(this.i.bj)},set:function(t){this.i.bj=i.stringToBrush(t),this._a("itemBackgroundColor",i.brushToString(this.i.bj))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"itemHoverBackgroundColor",{get:function(){return i.brushToString(this.i.bk)},set:function(t){this.i.bk=i.stringToBrush(t),this._a("itemHoverBackgroundColor",i.brushToString(this.i.bk))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.bh)},set:function(t){this.i.bh=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.bh))},enumerable:!1,configurable:!0}),n.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(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("ColumnGroupingComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.exportVisualModel=function(){return this.i.exportVisualModel()},n.prototype.exportSerializedVisualModel=function(){return this.i.exportSerializedVisualModel()},n._observedAttributesIgcColumnGroupingComponent=null,n.htmlTagName="igc-column-grouping",n._isElementRegistered=!1,n}(i.IgcHTMLElement),_u=function(){function t(){}return t.register=function(){Cu.register(),i.TypeRegistrar.registerCons("IgcColumnGroupingComponent",Cu),i.TypeRegistrar.registerCons("IgcColumnGroupingComponent",Cu),i.TypeRegistrar.register("ColumnGrouping",Vl.$type)},t}(),wu=function(t){function n(){var e=t.call(this)||this;return e.columnName=null,e.isPinned=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"ColumnPinningInfo"),n}(i.Base),Su=function(t){function n(){var e=t.call(this)||this;return e.c=null,e.a=null,e.b=null,e}return e.__extends(n,t),n.prototype.f=function(){},n.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},n.prototype.g=function(){null!=this.b&&this.b.rootWrapper.setStyleProperty("background-color",this.a.an._fill)},n.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()},n.prototype.j=function(){null!=this.c&&null!=this.a.ao&&this.c.setStyleProperty("color",this.a.ao._fill)},n.prototype.k=function(){null!=this.c&&null!=this.a.j&&this.c.setStyleProperty("font",this.a.j.fontString)},n.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")}},n.prototype.d=function(){},n.$t=i.markType(n,"ColumnPinningView"),n}(i.Base),Pu=function(t){function n(){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=i.BrushUtil.j(255,0,153,255),e.n=null,e.e=1,e.g=2,e.al=i.BrushUtil.j(255,248,248,248),e.m=!1;var n=new Su;return n.a=e,e.a=n,e.a.f(),e}return e.__extends(n,t),n.prototype.ak=function(t){null!=this.d&&this.d.updateHrMargin(t)},n.prototype.notifySizeChanged=function(){this.a.d()},n.prototype.destroy=function(){if(null!=this.d){var t=this.d;t.checkedChanged=i.delegateRemove(t.checkedChanged,i.runOn(this,this.ae))}if(this.provideContainer(null,null),null!=this.b){var e=this.b.actualColumns;e.collectionChanged=i.delegateRemove(e.collectionChanged,i.runOn(this,this.z));var n=this.b;n.columnPinnedChanged=i.delegateRemove(n.columnPinnedChanged,i.runOn(this,this.aj))}},n.prototype.provideContainer=function(t,e){if(this.d=e,null!=this.d){var n=this.d;n.checkedChanged=i.delegateCombine(n.checkedChanged,i.runOn(this,this.ae))}this.aa(),this.a.e(t)},Object.defineProperty(n.prototype,"l",{get:function(){return null==this.k&&(this.k=new i.SRProvider(this.a.b),this.k.cb("DataGrid")),this.k},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.prototype,"s",{get:function(){return null!=this.n?this.n:i.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(n.prototype,"f",{get:function(){return this.e},set:function(t){var e=this.e;this.e=t,e!=this.e&&this.ad("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,this.e))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"h",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.ad("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.g))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.ad=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.af(t,e,n)},n.prototype.af=function(t,e,n){switch(t){case"TargetGrid":if(null!=e){var r=e.actualColumns;r.collectionChanged=i.delegateRemove(r.collectionChanged,i.runOn(this,this.z));var o=e;o.columnPinnedChanged=i.delegateRemove(o.columnPinnedChanged,i.runOn(this,this.aj))}if(null!=this.b){var s=this.b.actualColumns;s.collectionChanged=i.delegateCombine(s.collectionChanged,i.runOn(this,this.z));var a=this.b;a.columnPinnedChanged=i.delegateCombine(a.columnPinnedChanged,i.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()}},n.prototype.ai=function(){null!=this.d&&(this.d.baseTheme=this.f)},n.prototype.ah=function(){null!=this.d&&(this.d.density=this.h)},n.prototype.aj=function(t,e){0==this.m&&this.aa(),this.m=!1},n.prototype.z=function(t,e){this.aa()},n.prototype.aa=function(){var t,n;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 i.ObservableCollection$1(wu.$,0);try{for(var s=e.__values(i.fromEnum(this.b.actualColumns)),a=s.next();!a.done;a=s.next()){var l=a.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{a&&!a.done&&(n=s.return)&&n.call(s)}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"}},n.prototype.ae=function(t,e){this.m=!0;for(var i=this.d.f.actualDataSource.getItemAtIndex(e.c),n=this.b.actualColumns.count,r=0;r<n;r++)if(this.b.actualColumns._inner[r].lo==i.columnName||this.b.actualColumns._inner[r].mf==i.columnName||this.b.actualColumns._inner[r].lv==i.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}},n.$t=i.markType(n,"ColumnPinning",i.Base.$,[i.INotifyPropertyChanged_$type]),n}(i.Base),Ou=function(t){function n(){var e=t.call(this)||this;e._disconnected=!1,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._renderer=new i.WebComponentRenderer(e,document,!0,null),e._implementation=e.createImplementation(),e._container=e._renderer.createElement("div"),e._renderer.updateRoot(e._container),e._container.setStyleProperty("display","block"),e._container.setStyleProperty("width","100%"),e._container.setStyleProperty("height","100%");var n=e.i;return e._columnPinning=n,e._renderer.addSizeWatcher((function(){e._columnPinning.notifySizeChanged()})),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._columnPinning.destroy()},n.prototype.createImplementation=function(){return new Pu},n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-column-pinning"),this.classList.add("igc-column-pinning");var t=this._renderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var e=this._renderer.createElement("span");this._container.append(e);var i=this._renderer.createElement("igc-checkbox-list");this._container.append(i),this._columnPinning.provideContainer(this._renderer,i.getNativeElement().i),this._columnPinning.notifySizeChanged(),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){this.i.notifySizeChanged()},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcColumnPinningComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcColumnPinningComponent=t}return n._observedAttributesIgcColumnPinningComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.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(n.prototype,"title",{get:function(){return this.i.v},set:function(t){this.i.v=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"titleStyle",{get:function(){return null==this.i.j?null:this.i.j.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.j=e,this._a("titleStyle",null!=this.i.j?this.i.j.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"titleColor",{get:function(){return i.brushToString(this.i.ao)},set:function(t){this.i.ao=i.stringToBrush(t),this._a("titleColor",i.brushToString(this.i.ao))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterPlaceholderText",{get:function(){return this.i.s},set:function(t){this.i.s=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"baseTheme",{get:function(){return this.i.f},set:function(t){this.i.f=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.f))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"density",{get:function(){return this.i.h},set:function(t){this.i.h=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.h))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.an)},set:function(t){this.i.an=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.an))},enumerable:!1,configurable:!0}),n.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(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("ColumnPinningComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n._observedAttributesIgcColumnPinningComponent=null,n.htmlTagName="igc-column-pinning",n._isElementRegistered=!1,n}(i.IgcHTMLElement),xu=function(){function t(){}return t.register=function(){fu.register(),Ou.register(),i.TypeRegistrar.registerCons("IgcColumnPinningComponent",Ou),i.TypeRegistrar.registerCons("IgcColumnPinningComponent",Ou),i.TypeRegistrar.register("ColumnPinning",Pu.$type)},t}(),ju=function(){function t(){}return t.register=function(){Xr.register(),i.TypeRegistrar.registerCons("IgcGridConditionalStylePropertyComponent",Xr),i.TypeRegistrar.register("GridConditionalStyleProperty",si.$type)},t}(),ku=function(){function t(){}return t.register=function(){Yr.register(),i.TypeRegistrar.registerCons("IgcGridConditionalStyleComponent",Yr),i.TypeRegistrar.register("GridConditionalStyle",fn.$type)},t}(),Iu=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Ln},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcImageColumnComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcImageColumnComponent=t}return n._observedAttributesIgcImageColumnComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"imageStretchOption",{get:function(){return this.i.n7},set:function(t){this.i.n7=i.ensureEnum(q,t),this._a("imageStretchOption",i.enumToString(q,this.i.n7))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorType",{get:function(){return this.i.n3},set:function(t){this.i.n3=i.ensureEnum(z,t),this._a("editorType",i.enumToString(z,this.i.n3))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorDataSource",{get:function(){return this.i.n8},set:function(t){this.i.n8=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorTextField",{get:function(){return this.i.n9},set:function(t){this.i.n9=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorValueField",{get:function(){return this.i.oa},set:function(t){this.i.oa=t},enumerable:!1,configurable:!0}),n._observedAttributesIgcImageColumnComponent=null,n.htmlTagName="igc-image-column",n._isElementRegistered=!1,n}(Do),Tu=function(){function t(){}return t.register=function(){Iu.register(),i.TypeRegistrar.registerCons("IgcImageColumnComponent",Iu),i.TypeRegistrar.register("ImageColumn",Ln.$type)},t}(),Ru=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._content=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"content",{get:function(){return this._content},set:function(t){this._content=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"TemplateHeaderCellUpdatingEventArgs",i.EventArgs.$),n}(i.EventArgs),Au=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new Ru},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 Er;break;case"ImageCellModel":t=new Br;break;case"NumericCellModel":t=new Dr;break;case"RowSeparatorModel":t=new $r;break;case"SectionHeaderCellModel":t=new Mr;break;case"TemplateCellModel":t=new zr;break;case"TemplateHeaderCellModel":t=new Gr;break;case"TemplateSectionHeaderCellModel":t=new qr;break;case"TextCellModel":t=new Lr;break;case"TextHeaderCellModel":t=new Hr}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),t}(),Eu=function(t){function n(){var e=t.call(this)||this;return e.cellUpdating=null,e}return e.__extends(n,t),n.prototype.n=function(t){return new Fr},n.prototype.d2=function(t,e,i){return"template-header-"+t.a5.toString()},n.prototype.eo=function(e,i,n,r){t.prototype.eo.call(this,e,i,n,r);var o=e,s=i.cf(e.l);o.mh=s.k3,o.n=s.hr,o.mk=s.ja},n.prototype.hq=function(t,e){var i;null!=this.cellUpdating&&this.cellUpdating(this,((i=new Ru).cellInfo=t,i.content=e,i))},n.$t=i.markType(n,"TemplateHeader",Gn.$),n}(Gn),Bu=function(t){function n(){var e=t.call(this)||this;return e._cellUpdating=null,e._cellUpdating_wrapped=null,e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Eu},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcTemplateHeaderComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcTemplateHeaderComponent=t}return n._observedAttributesIgcTemplateHeaderComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"cellUpdating",{get:function(){return this._cellUpdating},set:function(t){var e=this;null!==this._cellUpdating_wrapped&&(this.i.cellUpdating=i.delegateRemove(this.i.cellUpdating,this._cellUpdating_wrapped),this._cellUpdating_wrapped=null,this._cellUpdating=null),this._cellUpdating=t,this._cellUpdating_wrapped=function(t,i){var n=new Au;n._provideImplementation(i),e.beforeCellUpdating&&e.beforeCellUpdating(e,n),e._cellUpdating&&e._cellUpdating(e,n)},this.i.cellUpdating=i.delegateCombine(this.i.cellUpdating,this._cellUpdating_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcTemplateHeaderComponent=null,n.htmlTagName="igc-template-header",n._isElementRegistered=!1,n}(to),Du=function(){function t(){}return t.register=function(){Bu.register(),i.TypeRegistrar.registerCons("IgcTemplateHeaderComponent",Bu),i.TypeRegistrar.register("TemplateHeader",Eu.$type)},t}(),$u=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new An},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcComboBoxColumnComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcComboBoxColumnComponent=t}return n._observedAttributesIgcComboBoxColumnComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},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._observedAttributesIgcComboBoxColumnComponent=null,n.htmlTagName="igc-combo-box-column",n._isElementRegistered=!1,n}(Do),Mu=function(){function t(){}return t.register=function(){$u.register(),i.TypeRegistrar.registerCons("IgcComboBoxColumnComponent",$u),i.TypeRegistrar.register("ComboBoxColumn",An.$type)},t}(),zu=function(){function t(){}return t.register=function(){ju.register(),ku.register(),Xl.register(),Yl.register(),Tu.register(),tu.register(),i.IgcTemplateContentModule.register(),Ul.register(),Du.register(),Mu.register(),Hl.register()},t}(),Nu=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.d=null,e.f=null,e.a=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"g",{get:function(){return this.f},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b",{get:function(){return this.a},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"e",{get:function(){return this.d},enumerable:!1,configurable:!0}),n.prototype.c=function(){var t=this.f.outerWidth(),e=this.f.outerHeight();return new i.SizeData(t,e)},n.prototype.k=function(){},n.prototype.m=function(){var t=this.g;null!=t&&(i.NativeUI.m(t,this.b.bo),i.NativeUI.q(t,this.b.br))},n.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)},n.prototype.h=function(t){this.f=t,this.k(),this.m()},n.prototype.i=function(t){this.a=t},n.prototype.j=function(){},n.$t=i.markType(n,"GridColumnOptionsViewBase"),n}(i.Base),Fu=function(t){function r(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(r,t),r.d=function(t,e,n,r,o,s,a){void 0===a&&(a=!1);var l=t.createElement("label");return(o=t.createElement("input")).setAttribute("type","checkbox"),i.stringIsNullOrEmpty(e)||o.setAttribute("id",e),i.stringIsNullOrEmpty(r)||o.setAttribute("AccessKey",r),(s=t.createElement("text")).setRawText(n),a?(l.append(s),l.append(o)):(l.append(o),l.append(s)),{ret:l,p4:o,p5:s}},r.e=function(t,e,i,n,r,o){var s=t.createElement("label");(o=t.createElement("input")).setAttribute("name",i),o.setAttribute("type","radio"),o.setAttribute("id",e),s.append(o);var a=t.createElement("text");return a.setRawText(n),o.setAttribute("AccessKey",r),s.append(a),{ret:s,p5:o}},r.g=function(t,e,i,n,o,s,a,l,u,h,c){var p,d;return void 0===h&&(h=!0),void 0===c&&(c=!1),{ret:(d=r.f(t,e,i,0,n,o,s,a,l,u,p,h,c),a=d.p7,l=d.p8,u=d.p9,p=d.p10,d.ret),p6:a,p7:l,p8:u}},r.f=function(t,e,r,o,s,a,l,u,h,c,p,d,f,m){void 0===d&&(d=!0),void 0===f&&(f=!1),void 0===m&&(m=!0);var g=e.createElement("div"),b=e.getSubRenderer(g);(u=new n.XButton).provideContainer(b);b.getExternal(u,b.rootWrapper,b.getExternal(t,null,null));u.e=o,u.r=s,u.n=a;var y=null!=r;if(p=null,y){(p=e.createElement("div")).setStyleProperty("display","inline-block"),h=new n.XIcon;var v=e.getSubRenderer(p);h.provideContainer(v);v.getExternal(h,v.rootWrapper,v.getExternal(t,null,null));h.svgPath=r,p.setStyleProperty("width",i.stringFormat("{0}px",l.width.toString())),p.setStyleProperty("height",i.stringFormat("{0}px",l.height.toString())),m&&(d?p.setStyleProperty("margin-right","7px"):p.setStyleProperty("margin-left","7px"))}else h=null;(c=b.createElement("label")).setStyleProperty("display","inline-block"),c.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?(y&&C.append(p),C.append(c)):(C.append(c),y&&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:h,p9:c,p10:p}},r.h=function(t,r,o,s,a,l,u){var h,c,p,d,f=r.createElement("div"),m=r.getSubRenderer(f);(u=new n.XButtonGroup).provideContainer(m);m.getExternal(u,m.rootWrapper,m.getExternal(t,null,null));u.t=a,u.p=l,u.i=0;try{for(var g=e.__values(i.fromEnum(o)),b=g.next();!b.done;b=g.next()){var y=b.value;u.buttons.add(y)}}catch(t){h={error:t}}finally{try{b&&!b.done&&(c=g.return)&&c.call(g)}finally{if(h)throw h.error}}var v=f.getChildAt(0);try{for(var C=e.__values(i.fromEnum(s)),_=C.next();!_.done;_=C.next()){var w=_.value;v.append(w)}}catch(t){p={error:t}}finally{try{_&&!_.done&&(d=C.return)&&d.call(C)}finally{if(p)throw p.error}}return{ret:f,p6:u}},r.b=function(t){return t.getNativeElement().checked},r.i=function(t,e){t.getNativeElement().checked=e},r.a=function(t){switch(t){case 0:return 1;case 1:return 2;default:return 1}},r.c=function(t){switch(t){case 1:return 0;case 2:return 1;case 0:default:return 0}},r.j=function(t,e,i){void 0===i&&(i="block");var n=e?i:"none";t.setStyleProperty("display",n)},r.l=function(t,e){null!=t&&(t.n=e.i,t.r=e.p,t.aa=e.z)},r.k=function(t,e){null!=t&&(t.p=e.i,t.t=e.p)},r.$t=i.markType(r,"GridColumnOptionsUtilities"),r}(i.Base),Gu=function(t){function n(){var e=t.call(this)||this;e.d=null,e.propertyChanged=null,e.ac=null,e.ae=null,e.e=null,e.ah=null,e.aj=!1,e.bm=n.bp,e.h=0,e.g=1,e.n=0,e.l=0,e.x=null,e.v=null,e.a=null,e.o=0,e.m=2,e.y=null,e.w=null,e.bn=n.bq;var i=e.f();return e.e=i,e.onViewInitialized(),i.i(e),e}return e.__extends(n,t),n.prototype.bc=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.be(t,e,n)},Object.defineProperty(n.prototype,"ad",{get:function(){return null==this.ac&&(this.ac=new i.FontInfo,this.ac.q="Verdana",this.ac.f=12),this.ac},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"af",{get:function(){return null==this.ae&&(this.ae=new i.FontInfo,this.ae.q="Verdana",this.ae.f=14),this.ae},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ai",{get:function(){return null==this.ah&&(this.ah=new i.SRProvider(this.e.e),this.ah.cb("DataGrid")),this.ah},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.bc("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.bc("ActualBaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"buttonDensity",{get:function(){return this.n},set:function(t){var e=this.n;this.n=t,e!=this.n&&this.bc("ButtonDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"p",{get:function(){return this.l},set:function(t){var e=this.l;this.l=t,e!=this.l&&this.bc("ActualButtonDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.prototype,"density",{get:function(){return this.o},set:function(t){var e=this.o;this.o=t,e!=this.o&&this.bc("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"q",{get:function(){return this.m},set:function(t){var e=this.m;this.m=t,e!=this.m&&this.bc("ActualDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.prototype,"c",{get:function(){var t=this.column;return null==t?null:t.grid},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.a6=function(){this.bk(this.d,this.c),this.e.m()},n.prototype.a7=function(t,e){this.column},n.prototype.a8=function(t,e){},n.prototype.a9=function(t,e){},n.prototype.a5=function(t,e){},n.prototype.ba=function(t,e){},n.prototype.bb=function(t,e){},n.prototype.onViewInitialized=function(){},n.prototype.be=function(t,e,i){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}},n.prototype.bi=function(){this.z=null==this.ab?this.ad:this.ab},n.prototype.bk=function(t,e){t!=e&&this.bj(t,e)},n.prototype.bj=function(t,e){null!=t&&this.a4(t,!1),null!=e&&this.a4(e,!0),this.d=e},n.prototype.bl=function(){this.aa=null==this.ag?this.af:this.ag},n.prototype.a3=function(t){var e=this.column;null!=e&&(e.propertyChanged=t?i.delegateCombine(e.propertyChanged,i.runOn(this,this.a7)):i.delegateRemove(e.propertyChanged,i.runOn(this,this.a7)))},n.prototype.a4=function(t,e){if(e){t.propertyChanged=i.delegateCombine(t.propertyChanged,i.runOn(this,this.bb));var n=t.actualColumns;n.collectionChanged=i.delegateCombine(n.collectionChanged,i.runOn(this,this.a8)),t.groupDescriptions.m(i.runOn(this,this.ba)),t.columnPinnedChanged=i.delegateCombine(t.columnPinnedChanged,i.runOn(this,this.a9)),t.calculateCompleted=i.delegateCombine(t.calculateCompleted,i.runOn(this,this.a5))}else{t.propertyChanged=i.delegateRemove(t.propertyChanged,i.runOn(this,this.bb));var r=t.actualColumns;r.collectionChanged=i.delegateRemove(r.collectionChanged,i.runOn(this,this.a8)),t.groupDescriptions.p(i.runOn(this,this.ba)),t.columnPinnedChanged=i.delegateRemove(t.columnPinnedChanged,i.runOn(this,this.a9)),t.calculateCompleted=i.delegateRemove(t.calculateCompleted,i.runOn(this,this.a5))}},n.prototype.bh=function(t){Fu.l(t,this)},n.prototype.bg=function(t){Fu.k(t,this)},n.prototype.destroy=function(){this.provideRenderer(null)},n.prototype.provideRenderer=function(t){this.e.l(t)},n.$t=i.markType(n,"GridColumnOptionsBase",i.Base.$,[i.INotifyPropertyChanged_$type]),n.bp=i.BrushUtil.j(255,248,248,248),n.bq=i.BrushUtil.j(255,24,29,31),n}(i.Base),Vu=function(t){function n(){var e=t.call(this)||this;return e.bl(),e.bi(),e}return e.__extends(n,t),n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),e){case"ActualLabelTextStyle":case"ActualBaseTheme":case"ActualButtonDensity":case"ActualButtonTextStyle":case"ActualDensity":this.e.m()}},n.prototype.bt=function(){},n.prototype.bu=function(){},n.$t=i.markType(n,"GridColumnOptionsSectionBase",Gu.$),n}(Gu),qu=function(t){function n(){var e=t.call(this)||this;return e.bx=null,e.bv=!0,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"by",{get:function(){return null==this.bx?this.b0:this.bx},set:function(t){var e=this.by;0!=i.StringComparer.b.compare(t,e)&&(this.bx=t,this.bc("Caption",e,this.bx))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),e){case"ShowCaption":case"Caption":this.e.m()}},n.$t=i.markType(n,"GridColumnOptionsSimpleSectionBase",Vu.$),n}(Vu),Lu=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.x=function(){if(null!=this.p){this.q=!0;try{var t=this.n.b5;this.p.svgPath=t?n.v:n.u}finally{this.q=!1}}},n.prototype.k=function(){var e=this;if(t.prototype.k.call(this),null!=this.g&&null!=this.e){var r=this.e,o=this.n,s=this.g;this.r=function(){var t=Fu.f(e.n,r,n.u,1,o.p,o.j,new i.Size(1,24,24),e.o,e.p,e.s,e.t,!1,!0,!1);return e.o=t.p7,e.p=t.p8,e.s=t.p9,e.t=t.p10,t.ret}();var a=this.o;a.clicked=i.delegateCombine(a.clicked,i.runOn(this,this.w)),s.append(this.r)}},n.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 i=this.n.bw;Fu.j(this.s,i,"inline-block"),i?(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)},n.prototype.w=function(t,e){if(!this.q){var i=this.n.b5;this.n.b5=!i}},n.$t=i.markType(n,"GridColumnGroupOptionsView",Nu.$),n.u="M9,19v-2h11v2H9z M9,15v-2h11v2H9z M9,11V9h11v2H9z M7,7V5h13v2H7z M4,5h2v2H4V5z",n.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",n}(Nu),Hu=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.f=function(){return new Lu},n.prototype.get_b0=function(){return"Group Column"},Object.defineProperty(n.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),n.prototype.bs=function(){return null!=this.column&&(null!=this.c&&this.column.jb)},n.prototype.bj=function(t,e){null!=t&&(t.groupDescriptionsChanged=i.delegateRemove(t.groupDescriptionsChanged,i.runOn(this,this.b6))),null!=e&&(e.groupDescriptionsChanged=i.delegateCombine(e.groupDescriptionsChanged,i.runOn(this,this.b6)))},n.prototype.be=function(e,i,n){t.prototype.be.call(this,e,i,n)},Object.defineProperty(n.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(n.prototype,"b4",{get:function(){return this.e},enumerable:!1,configurable:!0}),n.prototype.b3=function(t){var e,i=this.column;return{ret:(e=n.b2(i,t),t=e.p1,e.ret),p0:t}},n.b2=function(t,e){if(null!=t){var n=t.grid;if(null!=n)for(var r=t.lo,o=n.groupDescriptions.j,s=0;s<o.count;s++){var a=o.item(s),l=a.f;if(0==i.StringComparer.b.compare(r,l))return{ret:a,p1:s}}}return{ret:null,p1:-1}},n.prototype.b7=function(){var t=this.c,e=this.column;if(null!=t&&null!=e){var i=new _t(1,e.lo),n=e.hr,r=0!=n?Fu.c(n):0;i.c=r,t.groupDescriptions.g(i),e.hr=0,e.m0("Grouped")}},n.prototype.b8=function(){var t,e=this,i=this.c,n=this.column;if(null!=i&&null!=n){var r;t=e.b3(r),r=t.p0,t.ret;-1!=r&&(i.groupDescriptions.d(r),n.m0("Grouped"))}},n.prototype.b6=function(t,e){this.b4.m()},n.$t=i.markType(n,"GridColumnGroupOptions",qu.$),n}(qu),Wu=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.x=function(){var t=this,e=this.e,r=this.n,o=e.createElement("div"),s=new i.List$1(i.DomWrapper_$type,0),a=function(){var o=Fu.g(t.n,e,n.ab,r.p,r.j,new i.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=Fu.g(t.n,e,n.aa,r.p,r.j,new i.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}();s.add(a),s.add(l);var u=[this.o,this.p],h=function(){var i=Fu.h(t.n,e,u,s,r.p,r.j,t.q);return t.q=i.p6,i.ret}(),c=this.q;return c.selectionChanged=i.delegateCombine(c.selectionChanged,i.runOn(this,this.ac)),o.append(h),o},n.prototype.y=function(){return this.e.createElement("label")},n.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}}},n.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)}},n.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},n.prototype.ac=function(t,e){if(!this.t){var i;if(null==this.q||null==this.q.d||0==this.q.d.length)i=0;else switch(this.q.d.length,this.q.d[0]){case 0:i=1;break;case 1:i=2;break;default:i=0}this.n.b2=i}},n.$t=i.markType(n,"GridColumnSortOptionsView",Nu.$),n.ab="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",n.aa="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",n}(Nu),Uu=function(t){function n(){var e=t.call(this)||this;return e.b4="Asc",e.b8="Desc",e}return e.__extends(n,t),n.prototype.f=function(){return new Wu},n.prototype.get_b0=function(){return"Sort"},Object.defineProperty(n.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),n.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},n.prototype.a7=function(e,i){if(t.prototype.a7.call(this,e,i),null!=this.column)switch(i.propertyName){case"SortDirection":this.b3.m()}},n.prototype.ba=function(e,i){t.prototype.ba.call(this,e,i),this.b3.m()},n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),e){case"AscendingCaption":case"DescendingCaption":this.b3.m()}},Object.defineProperty(n.prototype,"b3",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b5",{get:function(){return this.b4},set:function(t){if(0!=i.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(n.prototype,"b9",{get:function(){return this.b8},set:function(t){if(0!=i.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(n.prototype,"b2",{get:function(){var t=this.column;if(null!=t){var e,i=function(){var i=Hu.b2(t,e);return e=i.p1,i.ret}();return null!=i?Fu.a(i.c):t.hr}return 0},set:function(t){var e=this.column;if(null!=e){var i,n=function(){var t=Hu.b2(e,i);return i=t.p1,t.ret}();if(null!=n){var r=e.grid;if(null!=r){var o=0!=t?Fu.c(t):0;n.c=o,r.groupDescriptions.d(i),r.groupDescriptions.o(i,n)}return}e.hr=t}},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridColumnSortOptions",qu.$),n}(qu),Ku=function(t){function n(){var e=t.call(this)||this;return e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return null},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnOptionsBaseComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnOptionsBaseComponent=t}return n._observedAttributesIgcGridColumnOptionsBaseComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},Object.defineProperty(n.prototype,"autoSize",{get:function(){return this.i.ak},set:function(t){this.i.ak=i.ensureBool(t),this._a("autoSize",this.i.ak)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.bo)},set:function(t){this.i.bo=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.bo))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"baseTheme",{get:function(){return this.i.j},set:function(t){this.i.j=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.j))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualBaseTheme",{get:function(){return this.i.i},set:function(t){this.i.i=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("actualBaseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.i))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"buttonDensity",{get:function(){return this.i.buttonDensity},set:function(t){this.i.buttonDensity=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("buttonDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.buttonDensity))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualButtonDensity",{get:function(){return this.i.p},set:function(t){this.i.p=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("actualButtonDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.p))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"buttonTextStyle",{get:function(){return null==this.i.ab?null:this.i.ab.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.ab=e,this._a("buttonTextStyle",null!=this.i.ab?this.i.ab.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"column",{get:function(){var t=this.i.column;if(null==t)return null;if(!t.externalObject){var e=Do._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(n.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.density))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualDensity",{get:function(){return this.i.q},set:function(t){this.i.q=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("actualDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.q))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"labelTextStyle",{get:function(){return null==this.i.ag?null:this.i.ag.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.ag=e,this._a("labelTextStyle",null!=this.i.ag?this.i.ag.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textColor",{get:function(){return i.brushToString(this.i.br)},set:function(t){this.i.br=i.stringToBrush(t),this._a("textColor",i.brushToString(this.i.br))},enumerable:!1,configurable:!0}),n.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(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("GridColumnOptionsBaseComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this.column&&this.column._styling&&this.column._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n._observedAttributesIgcGridColumnOptionsBaseComponent=null,n}(i.IgcHTMLElement),Xu=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnOptionsSectionBaseComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnOptionsSectionBaseComponent=t}return n._observedAttributesIgcGridColumnOptionsSectionBaseComponent},enumerable:!1,configurable:!0}),n.prototype.onApply=function(){this.i.bt()},n.prototype.onCancel=function(){this.i.bu()},n._observedAttributesIgcGridColumnOptionsSectionBaseComponent=null,n}(Ku),Qu=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnOptionsSimpleSectionBaseComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnOptionsSimpleSectionBaseComponent=t}return n._observedAttributesIgcGridColumnOptionsSimpleSectionBaseComponent},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"caption",{get:function(){return this.i.by},set:function(t){this.i.by=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"showCaption",{get:function(){return this.i.bw},set:function(t){this.i.bw=i.ensureBool(t),this._a("showCaption",this.i.bw)},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridColumnOptionsSimpleSectionBaseComponent=null,n}(Xu),Yu=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new Uu},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){this._disconnected?this._disconnected=!1:(this.classList.add("ig-grid-column-sort-options"),this.classList.add("igc-grid-column-sort-options"),this.appendChild(this._webComponentRenderer.rootWrapper.getNativeElement()),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit())},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnSortOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnSortOptionsComponent=t}return n._observedAttributesIgcGridColumnSortOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"ascendingCaption",{get:function(){return this.i.b5},set:function(t){this.i.b5=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"descendingCaption",{get:function(){return this.i.b9},set:function(t){this.i.b9=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortDirection",{get:function(){return this.i.b2},set:function(t){this.i.b2=i.ensureEnum(x,t),this._a("sortDirection",i.enumToString(x,this.i.b2))},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridColumnSortOptionsComponent=null,n.htmlTagName="igc-grid-column-sort-options",n._isElementRegistered=!1,n}(Qu),Zu=function(){function t(){}return t.register=function(){Yu.register(),i.TypeRegistrar.registerCons("IgcGridColumnSortOptionsComponent",Yu),i.TypeRegistrar.registerCons("IgcGridColumnSortOptionsComponent",Yu),i.TypeRegistrar.register("GridColumnSortOptions",Uu.$type)},t}(),Ju=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.s=function(){var t=this,e=this.e,i=e.createElement("div"),n=e.createElement("div");i.append(n),n.setStyleProperty("display","flex"),n.setStyleProperty("flexDirection","row"),n.setStyleProperty("flexWrap","no-wrap"),n.setStyleProperty("justify-content","center");var r,o=function(){var e=t.u(!0,t.v);return t.v=e.p1,e.ret}(),s=(r=t.u(!1,t.w),t.w=r.p1,r.ret);return n.append(o),n.append(s),i},n.prototype.t=function(){return this.e.createElement("label")},n.prototype.u=function(t,e){var r,o,s,a,l=this,u=this.e,h=this.n,c=t?n.x:n.y,p=(a=Fu.f(l.n,u,c,1,h.p,h.j,new i.Size(1,18,18),r,o,e,s,t,!1),r=a.p7,o=a.p8,e=a.p9,s=a.p10,a.ret);return t?(this.o=r,r.clicked=i.delegateCombine(r.clicked,i.runOn(this,this.z))):(this.p=r,r.clicked=i.delegateCombine(r.clicked,i.runOn(this,this.aa))),{ret:p,p1:e}},n.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)}},n.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)},n.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)},n.prototype.z=function(t,e){this.n.cg()},n.prototype.aa=function(t,e){this.n.ci()},n.$t=i.markType(n,"GridColumnMoveOptionsView",Nu.$),n.x="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",n.y="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",n}(Nu),th=function(t){function n(){var e=t.call(this)||this;return e.b3=!1,e.b7="Left",e.cb="Right",e}return e.__extends(n,t),n.prototype.f=function(){return new Ju},n.prototype.get_b0=function(){return"Move"},Object.defineProperty(n.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),n.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},n.prototype.a8=function(e,i){t.prototype.a8.call(this,e,i),this.b2.ab()},n.prototype.a9=function(e,i){t.prototype.a9.call(this,e,i),this.b3=!0},n.prototype.a5=function(e,i){t.prototype.a5.call(this,e,i),this.b3&&(this.b2.ab(),this.b3=!1)},n.prototype.a6=function(){t.prototype.a6.call(this),this.b2.ab()},n.prototype.a7=function(e,i){if(t.prototype.a7.call(this,e,i),null!=this.column)switch(i.propertyName){case"Pinned":this.b2.ab()}},n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),e){case"MoveLeftCaption":case"MoveRightCaption":this.b2.m()}},Object.defineProperty(n.prototype,"b2",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b8",{get:function(){return this.b7},set:function(t){if(0!=i.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(n.prototype,"cc",{get:function(){return this.cb},set:function(t){if(0!=i.StringComparer.b.compare(t,this.cb)){var e=this.cb;this.cb=t,this.bc("MoveRightCaption",e,this.cb)}},enumerable:!1,configurable:!0}),n.prototype.b4=function(t){var e=this.column;if(null==e)return!1;var i=e.grid;if(null==i)return!1;var n=i.actualColumns.indexOf(e);return!(n<0)&&(t?this.c.canMoveColumnLeft(n):this.c.canMoveColumnRight(n))},n.prototype.cf=function(t){var e=this.column;if(null!=e){var i=this.c;if(null!=i&&this.b4(t)){var n=i.actualColumns.indexOf(e);e.m0("Moved"),t?i.moveColumnLeft(n):i.moveColumnRight(n)}}},n.prototype.b5=function(){return this.b4(!0)},n.prototype.b6=function(){return this.b4(!1)},n.prototype.cg=function(){this.cf(!0)},n.prototype.ci=function(){this.cf(!1)},n.prototype.ch=function(t,e){this.cg()},n.prototype.cj=function(t,e){this.ci()},n.$t=i.markType(n,"GridColumnMoveOptions",qu.$),n}(qu),eh=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new th},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){this._disconnected?this._disconnected=!1:(this.classList.add("ig-grid-column-move-options"),this.classList.add("igc-grid-column-move-options"),this.appendChild(this._webComponentRenderer.rootWrapper.getNativeElement()),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit())},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnMoveOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnMoveOptionsComponent=t}return n._observedAttributesIgcGridColumnMoveOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"moveLeftCaption",{get:function(){return this.i.b8},set:function(t){this.i.b8=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"moveRightCaption",{get:function(){return this.i.cc},set:function(t){this.i.cc=t},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridColumnMoveOptionsComponent=null,n.htmlTagName="igc-grid-column-move-options",n._isElementRegistered=!1,n}(Qu),ih=function(){function t(){}return t.register=function(){eh.register(),i.TypeRegistrar.registerCons("IgcGridColumnMoveOptionsComponent",eh),i.TypeRegistrar.registerCons("IgcGridColumnMoveOptionsComponent",eh),i.TypeRegistrar.register("GridColumnMoveOptions",th.$type)},t}(),nh=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.w=function(){var t=this,e=this.e,r=this.n;this.u=e.createElement("div");var o=new i.List$1(i.DomWrapper_$type,0),s=function(){var o=Fu.g(t.n,e,n.aa,r.p,r.j,new i.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}(),a=function(){var o=Fu.g(t.n,e,n.ab,r.p,r.j,new i.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(s),o.add(a);var l=[this.o,this.p],u=function(){var i=Fu.h(t.n,e,l,o,r.p,r.j,t.q);return t.q=i.p6,i.ret}(),h=this.q;return h.selectionChanged=i.delegateCombine(h.selectionChanged,i.runOn(this,this.ae)),this.u.append(u),this.u},n.prototype.x=function(){return this.e.createElement("label")},n.prototype.af=function(){if(null!=this.r&&null!=this.s){var t=this.n.b4;t:for(;;){switch(t){case 0:this.r.svgPath=n.aa,this.s.svgPath=n.ab;break;case 1:this.r.svgPath=n.ac,this.s.svgPath=n.ab;break;case 2:this.r.svgPath=n.aa,this.s.svgPath=n.ad;break;default:t=0;continue t}break}}},n.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}}},n.prototype.k=function(){if(t.prototype.k.call(this),null!=this.g&&null!=this.e){this.v=this.x();var e=this.w(),i=(this.e,this.g);i.setStyleProperty("display","flex"),i.setStyleProperty("flex-direction","row"),i.setStyleProperty("flex-wrap","no-wrap"),i.setStyleProperty("justify-content","space-between"),i.setStyleProperty("align-items","center"),i.append(this.v),i.append(e)}},n.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)},n.prototype.ae=function(t,e){if(!this.t){var i;if(null==this.q||null==this.q.d||0==this.q.d.length)i=0;else switch(this.q.d.length,this.q.d[0]){case 0:i=1;break;case 1:i=2;break;default:i=0}this.n.b4=i,this.af()}},n.$t=i.markType(n,"GridColumnPinOptionsView",Nu.$),n.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",n.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",n.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",n.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",n}(Nu),rh=function(t){function n(){var e=t.call(this)||this;return e.b3=0,e.b5="Left",e.b9="Right",e}return e.__extends(n,t),n.prototype.f=function(){return new nh},n.prototype.get_b0=function(){return"Pin"},Object.defineProperty(n.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),n.prototype.bs=function(){return null!=this.column},n.prototype.a6=function(){var e=this.column;this.b3=null!=e?e.il:0,t.prototype.a6.call(this)},n.prototype.a7=function(e,i){t.prototype.a7.call(this,e,i);var n=this.column;if(null!=n)switch(i.propertyName){case"Pinned":this.b3=null!=n?n.il:0,this.b2.m()}},n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),e){case"PinLeftCaption":case"PinRightCaption":this.b2.m()}},Object.defineProperty(n.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,i=this.column;null!=e&&null!=i&&(e.pinColumn(i,this.b3),i.m0("Pinned"))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b2",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b6",{get:function(){return this.b5},set:function(t){if(0!=i.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(n.prototype,"ca",{get:function(){return this.b9},set:function(t){if(0!=i.StringComparer.b.compare(t,this.b9)){var e=this.b9;this.b9=t,this.bc("PinRightCaption",e,this.b9)}},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridColumnPinOptions",qu.$),n}(qu),oh=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new rh},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){this._disconnected?this._disconnected=!1:(this.classList.add("ig-grid-column-pin-options"),this.classList.add("igc-grid-column-pin-options"),this.appendChild(this._webComponentRenderer.rootWrapper.getNativeElement()),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit())},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnPinOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnPinOptionsComponent=t}return n._observedAttributesIgcGridColumnPinOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"pinLeftCaption",{get:function(){return this.i.b6},set:function(t){this.i.b6=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinRightCaption",{get:function(){return this.i.ca},set:function(t){this.i.ca=t},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridColumnPinOptionsComponent=null,n.htmlTagName="igc-grid-column-pin-options",n._isElementRegistered=!1,n}(Qu),sh=function(){function t(){}return t.register=function(){oh.register(),i.TypeRegistrar.registerCons("IgcGridColumnPinOptionsComponent",oh),i.TypeRegistrar.registerCons("IgcGridColumnPinOptionsComponent",oh),i.TypeRegistrar.register("GridColumnPinOptions",rh.$type)},t}(),ah=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.x=function(){if(null!=this.p){this.q=!0;try{var t=this.n.b3;this.p.svgPath=t?n.v:n.u}finally{this.q=!1}}},n.prototype.k=function(){var e=this;if(t.prototype.k.call(this),null!=this.g&&null!=this.e){var r=this.e,o=this.n,s=this.g;this.r=function(){var t=Fu.f(e.n,r,n.u,1,o.p,o.j,new i.Size(1,24,24),e.o,e.p,e.s,e.t,!1,!0,!1);return e.o=t.p7,e.p=t.p8,e.s=t.p9,e.t=t.p10,t.ret}();var a=this.o;a.clicked=i.delegateCombine(a.clicked,i.runOn(this,this.w)),s.append(this.r)}},n.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 i=this.n.bw;Fu.j(this.s,i,"inline-block"),i?(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)},n.prototype.w=function(t,e){this.q||(this.n.b3=!this.n.b3)},n.$t=i.markType(n,"GridColumnHideOptionsView",Nu.$),n.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",n.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",n}(Nu),lh=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.f=function(){return new ah},n.prototype.get_b0=function(){return"Hide Column"},Object.defineProperty(n.prototype,"b0",{get:function(){return this.get_b0()},enumerable:!1,configurable:!0}),n.prototype.bs=function(){return null!=this.column},n.prototype.a7=function(e,i){if(t.prototype.a7.call(this,e,i),null!=this.column)switch(i.propertyName){case"IsHidden":this.b2.m()}},n.prototype.be=function(e,i,n){t.prototype.be.call(this,e,i,n)},Object.defineProperty(n.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(n.prototype,"b2",{get:function(){return this.e},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"GridColumnHideOptions",qu.$),n}(qu),uh=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new lh},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){this._disconnected?this._disconnected=!1:(this.classList.add("ig-grid-column-hide-options"),this.classList.add("igc-grid-column-hide-options"),this.appendChild(this._webComponentRenderer.rootWrapper.getNativeElement()),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit())},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnHideOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnHideOptionsComponent=t}return n._observedAttributesIgcGridColumnHideOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcGridColumnHideOptionsComponent=null,n.htmlTagName="igc-grid-column-hide-options",n._isElementRegistered=!1,n}(Qu),hh=function(){function t(){}return t.register=function(){uh.register(),i.TypeRegistrar.registerCons("IgcGridColumnHideOptionsComponent",uh),i.TypeRegistrar.registerCons("IgcGridColumnHideOptionsComponent",uh),i.TypeRegistrar.register("GridColumnHideOptions",lh.$type)},t}(),ch=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new Hu},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){this._disconnected?this._disconnected=!1:(this.classList.add("ig-grid-column-group-options"),this.classList.add("igc-grid-column-group-options"),this.appendChild(this._webComponentRenderer.rootWrapper.getNativeElement()),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit())},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnGroupOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnGroupOptionsComponent=t}return n._observedAttributesIgcGridColumnGroupOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcGridColumnGroupOptionsComponent=null,n.htmlTagName="igc-grid-column-group-options",n._isElementRegistered=!1,n}(Qu),ph=function(){function t(){}return t.register=function(){ch.register(),i.TypeRegistrar.registerCons("IgcGridColumnGroupOptionsComponent",ch),i.TypeRegistrar.registerCons("IgcGridColumnGroupOptionsComponent",ch),i.TypeRegistrar.register("GridColumnGroupOptions",Hu.$type)},t}(),dh=function(t){function n(){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 e.__extends(n,t),n.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),Fu.j(this.aa,!1))},Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.al=function(t){null!=this.o&&(this.o.disabled=!t)},n.prototype.am=function(t){null!=this.q&&(this.q.disabled=!t)},n.prototype.ah=function(t){var e,r,o=this,s=this.e,a=this.n;this.y=t,this.w=function(){var t=Fu.f(o.n,s,n.ab,1,a.p,a.j,new i.Size(1,24,24),o.q,e,o.x,r,!1,!0);return o.q=t.p7,e=t.p8,o.x=t.p9,r=t.p10,t.ret}();var l=this.q;l.clicked=i.delegateCombine(l.clicked,i.runOn(this,this.ae)),this.y.append(this.w)},n.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)},n.prototype.ai=function(t){},n.prototype.ak=function(t){this.h(t)},n.prototype.af=function(){null!=this.applyButtonClick&&this.applyButtonClick(this,i.EventArgs.empty)},n.prototype.ag=function(){null!=this.cancelButtonClick&&this.cancelButtonClick(this,i.EventArgs.empty)},n.prototype.ac=function(t,e){this.af()},n.prototype.ad=function(t,e){this.ag()},n.prototype.ae=function(t,e){this.n.cl()},n.$t=i.markType(n,"GridColumnFilterOptionsView",Nu.$),n.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",n}(Nu),fh=function(t){function n(){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 e.__extends(n,t),n.prototype.f=function(){return new dh},n.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},n.prototype.a6=function(){t.prototype.a6.call(this),this.co(),this.cu()},n.prototype.a7=function(e,i){switch(t.prototype.a7.call(this,e,i),i.propertyName){case"Filter":this.cu()}},n.prototype.onViewInitialized=function(){t.prototype.onViewInitialized.call(this)},n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),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}},n.prototype.bt=function(){this.cj()},Object.defineProperty(n.prototype,"bw",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b7",{get:function(){return this.b6},set:function(t){if(0!=i.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(n.prototype,"cc",{get:function(){return this.cb},set:function(t){if(0!=i.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(n.prototype,"b2",{get:function(){return this.bz},set:function(t){var e=this.bz;this.bz=t,e!=this.bz&&this.bc("FilterListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b0",{get:function(){return this.by},set:function(t){var e=this.by;this.by=t,e!=this.by&&this.bc("ActualFilterListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cg",{get:function(){return this.cf},set:function(t){if(0!=i.StringComparer.b.compare(t,this.cf)){var e=this.cf;this.cf=t,this.bc("TextFilterCaption",e,this.cf)}},enumerable:!1,configurable:!0}),n.prototype.cu=function(){var t=this.bx.ax();this.bw.al(!t);var e=this.b3();this.bw.am(e)},n.prototype.cj=function(){var t,r;if(0!=this.bx.keys.count){var o,s;0==this.bx.indexType?(s=!1,o=1):(s=!0,o=0);for(var a=new i.List$1(Ci.$,0),l=this.bx.keys,u=0;u<l.count;u++){var h=l._inner[u].value[0],c=n.bv(o,h);a.add(c)}if(1==a.count)this.column.g1=a._inner[0];else{var p=new Si;p.usesOrOperator=s;try{for(var d=e.__values(i.fromEnum(a)),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()},n.prototype.provideClearFiltersSection=function(t){this.bw.ah(t)},n.prototype.provideFilterSection=function(t){this.bw.aj(t)},n.prototype.provideFilterCheckboxListSection=function(t){this.bx=t,this.cw();var e=this.bx;e.selectAllCheckboxChanged=i.delegateCombine(e.selectAllCheckboxChanged,i.runOn(this,this.ck));var n=this.bx;n.checkedChanged=i.delegateCombine(n.checkedChanged,i.runOn(this,this.cn))},n.prototype.provideFilterButtonSection=function(t){this.bw.ai(t)},n.prototype.provideMainDiv=function(t){this.bw.ak(t)},n.prototype.cl=function(){this.column.g1=null,this.cv()},n.bv=function(t,e){var i=new Ci;return i.operator=t,i.value=e,i},n.prototype.b3=function(){var t=this.column;return null!=t&&null!=t.g1},n.prototype.co=function(){var t=this.column,e=this.c,n=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 s=new i.SortDescription;s.propertyName=n,s.direction=0,o.groupDescriptions.add(s);for(var a=e.z(t),l=o.filterExpressions,u=l.k.count-1;u>=0;u--){if(l.k.item(u).isAutoGenerated){null!=a?l.k.item(u,a):o.filterExpressions.removeAt(u);break}}this.bx.itemsSource=o,this.bx.dataMemberPath=n,this.bx.primaryKey=[n],o.shouldEmitSectionHeaders=!0,o.isSectionHeaderNormalRow=!0,o.isSectionExpandedDefault=!1,o.isSectionCollapsable=!0,o.isSectionContentVisible=!1,this.cv()}},n.prototype.cx=function(t,e){if(null!=t&&null!=t.actualSchema&&null!=e&&null!=e.actualSchema)for(var i=e.actualSchema.propertyTypes,n=t.actualSchema.propertyTypes,r=0;r<i.length;r++)i[r]!=n[r]&&(i[r]=n[r])},n.prototype.cv=function(){for(var t,n,r=this.column,o=null!=r?r.lo:null,s=!0,a=i.toNullable(f,null),l=this.b4(),u=l.count-1;u>=0;u--){var h=l._inner[u];switch(h.operator){case 0:case 1:break;default:l.removeAt(u);continue}if(i.nullableEquals(a,null))a=i.toNullable(f,h.operator);else if(a.value!=h.operator){s=!1;break}}if(0!=l.count&&s){switch(a.value){case 0:this.bx.c5();break;case 1:this.bx.d3()}var c=this.bx.keys;try{for(var p=e.__values(i.fromEnum(l)),d=p.next();!d.done;d=p.next()){var m=d.value;c.add(new fe([o],[m.value]))}}catch(e){t={error:e}}finally{try{d&&!d.done&&(n=p.return)&&n.call(p)}finally{if(t)throw t.error}}this.cu()}else this.bx.d3()},n.prototype.b4=function(){var t=new i.List$1(Ci.$,0),e=this.column;if(null==e)return t;null!=e.g1&&(t=n.cm(e.g1,t).p1);return t},n.cm=function(t,e){var r=i.typeCast(Si.$,t);if(null!=r)for(var o=0;o<r.count;o++){var s=r.item(o);e=n.cm(s,e).p1}else null!=t&&null!==i.typeCast(Ci.$,t)&&e.add(t);return{p1:e}},n.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 i.Thickness(1,-7,3,-7,3)))},n.prototype.ck=function(t,e){this.cu()},n.prototype.cn=function(t,e){this.cu()},n.$t=i.markType(n,"GridColumnFilterOptions",Vu.$),n}(Vu),mh=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new fh},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-grid-column-filter-options"),this.classList.add("igc-grid-column-filter-options");var t=this._webComponentRenderer.rootWrapper,e=t.getNativeElement();this.appendChild(e),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var i=document.createElement("div");i.setAttribute("key","clearFiltersSection"),e.appendChild(i);var n=this._webComponentRenderer.getWrapper(i);this.i.provideClearFiltersSection(n);var r=document.createElement("div");r.setAttribute("key","filtersSection"),e.appendChild(r);var o=this._webComponentRenderer.getWrapper(r);this.i.provideFilterSection(o);var s=this._webComponentRenderer.createElement("igc-checkbox-list");s.setAttribute("key","filterCheckboxListSection"),s.setAttribute("height","195px"),t.append(s),this.i.provideFilterCheckboxListSection(s.getNativeElement().i);var a=document.createElement("div");a.setAttribute("key","filterButtonsSection"),e.appendChild(a);var l=this._webComponentRenderer.getWrapper(a);this.i.provideFilterButtonSection(l),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnFilterOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnFilterOptionsComponent=t}return n._observedAttributesIgcGridColumnFilterOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"clearColumnFiltersCaption",{get:function(){return this.i.b7},set:function(t){this.i.b7=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterListPlaceholderText",{get:function(){return this.i.cc},set:function(t){this.i.cc=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterListDensity",{get:function(){return this.i.b2},set:function(t){this.i.b2=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("filterListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.b2))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualFilterListDensity",{get:function(){return this.i.b0},set:function(t){this.i.b0=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("actualFilterListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.b0))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textFilterCaption",{get:function(){return this.i.cg},set:function(t){this.i.cg=t},enumerable:!1,configurable:!0}),n.prototype.onApply=function(){this.i.bt()},n._observedAttributesIgcGridColumnFilterOptionsComponent=null,n.htmlTagName="igc-grid-column-filter-options",n._isElementRegistered=!1,n}(Xu),gh=function(){function t(){}return t.register=function(){fu.register(),mh.register(),i.TypeRegistrar.registerCons("IgcGridColumnFilterOptionsComponent",mh),i.TypeRegistrar.registerCons("IgcGridColumnFilterOptionsComponent",mh),i.TypeRegistrar.register("GridColumnFilterOptions",fh.$type)},t}(),bh=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.label=null,e.iD=null,e.isSelected=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"SummaryChooserItem"),n}(i.Base),yh=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=null,e.a=!1,e}return e.__extends(n,t),n.$t=i.markType(n,"SummaryChangedEventArgs"),n}(i.Base),vh=new i.Type(null,"ISummaryChooserView"),Ch=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"model",{get:function(){return this._model},set:function(t){this._model=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"renderer",{get:function(){return this.c},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"container",{get:function(){return this.d},enumerable:!1,configurable:!0}),n.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 i=t.componentRef;e.a=i.i,e.model.a1(e.a),e.b=!1}),!1))},n.prototype.onItemInserted=function(){this.e()},n.prototype.onItemRemoved=function(){this.e()},n.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")}},n.$t=i.markType(n,"SummaryChooserView",i.Base.$,[vh]),n}(i.Base),_h=function(t){function n(){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=i.BrushUtil.j(255,24,29,31),e.h=0,e.g=1,e.a7=i.BrushUtil.j(255,248,248,248),e.summaryChanged=null,e.c=new Ch,e.c.model=e,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"r",{get:function(){return this.q},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"f",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"p",{get:function(){return null==this.o&&(this.o=new i.SRProvider(this.c.renderer),this.o.cb("DataGrid")),this.o},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"aa",{get:function(){if(null==this.s){var t=this.p.b1("Column_Options_Summary_Average");return i.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(n.prototype,"ag",{get:function(){if(null==this.t){var t=this.p.b1("Column_Options_Summary_Count");return i.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(n.prototype,"ap",{get:function(){if(null==this.v){var t=this.p.b1("Column_Options_Summary_Minimum");return i.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(n.prototype,"al",{get:function(){if(null==this.u){var t=this.p.b1("Column_Options_Summary_Maximum");return i.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(n.prototype,"at",{get:function(){if(null==this.w){var t=this.p.b1("Column_Options_Summary_Sum");return i.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(n.prototype,"n",{get:function(){return this.l},set:function(t){var e=this.l;this.l=t,e!=this.l&&this.a0("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.l))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"m",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.a0("ActualDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"j",{get:function(){return this.h},set:function(t){var e=this.h;this.h=t,e!=this.h&&this.a0("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"i",{get:function(){return this.g},set:function(t){var e=this.g;this.g=t,e!=this.g&&this.a0("ActualBaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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}),n.prototype.a1=function(t){var e,n=this;if(null!=this.e){var r=this.e;r.checkedChanged=i.delegateRemove(r.checkedChanged,i.runOn(this,this.az))}if(this.e=t,null!=this.e){var o=this.e;o.checkedChanged=i.delegateCombine(o.checkedChanged,i.runOn(this,this.az))}this.q=new i.List$1(bh.$,0),this.q.add(((e=new bh).label=n.aa,e.iD="avg",e)),this.q.add(function(){var t=new bh;return t.label=n.ag,t.iD="count",t}()),this.q.add(function(){var t=new bh;return t.label=n.al,t.iD="max",t}()),this.q.add(function(){var t=new bh;return t.label=n.ap,t.iD="min",t}()),this.q.add(function(){var t=new bh;return t.label=n.at,t.iD="sum",t}()),this.a6()},n.prototype.az=function(t,e){var i,n=this.q._inner[e.c];n.isSelected=e.b,null!=this.summaryChanged&&this.summaryChanged(this,((i=new yh).b=n.iD,i.a=e.b,i))},n.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 i.Thickness(1,-7,3,-7,3)),this.e.itemsSource=this.q,this.e.dataMemberPath="label",this.e.selectedMemberPath="isSelected",this.e.primaryKey=["label"])},n.prototype.a0=function(t,e,i){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}},n.prototype.a2=function(t){this.c.provideContainer(t)},n.prototype.ay=function(){null!=this.e&&this.e.destroy(),this.c.provideContainer(null)},n.prototype.a4=function(t,e){for(var i=0;i<this.q.count;i++){var n=this.q._inner[i];if(n.iD==t){n.isSelected=e,null!=this.e&&this.e.dg(i,n,n);break}}},n.prototype.ax=function(t,e){var i=new bh;i.iD=t,i.label=e,this.q.add(i),null!=this.e&&this.e.dd(this.q.count-1,i),this.c.onItemInserted()},n.prototype.a3=function(t){for(var e=0;e<this.q.count;e++){var i=this.q._inner[e];if(i.iD==t){this.q.removeAt(e),null!=this.e&&this.e.df(e,i);break}}this.c.onItemRemoved()},n.prototype.a5=function(t,e){for(var i=0;i<this.q.count;i++){var n=this.q._inner[i];if(n.iD==t){n.label=e,null!=this.e&&this.e.dg(i,n,n);break}}},n.prototype.b=function(){for(var t=new i.List$1(i.String_$type,0),e=0;e<this.q.count;e++){var n=this.q._inner[e];n.isSelected&&t.add(n.iD)}return t.toArray()},n.prototype.a=function(){for(var t=new i.List$1(i.String_$type,0),e=0;e<this.q.count;e++){var n=this.q._inner[e];n.isSelected||t.add(n.iD)}return t.toArray()},n.$t=i.markType(n,"SummaryChooser"),n}(i.Base),wh=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.o=null,e.p=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.k=function(){var e=this;if(t.prototype.k.call(this),null!=this.g&&null!=this.e){var r,o,s;if(null==this.n.bz)this.o=function(){var t=Fu.f(e.n,e.e,n.r,1,e.n.p,e.n.j,new i.Size(1,24,24),r,o,e.p,s,!1,!0);return r=t.p7,o=t.p8,e.p=t.p9,s=t.p10,t.ret}(),s.setStyleProperty("transform","rotate(-90deg)"),this.g.append(this.o),this.n.ck(r);if(null==this.n.bx){var a=new _h;a.a2(this.e),this.n.co(a);var l=this.e.createElement("div"),u=this.e.getSubRenderer(l),h=new i.Popup;h.provideRenderer(u),h.appendPopupContent(a.c.container),this.n.cl(h)}document.addEventListener("mousedown",i.runOn(this,this.s),!1)}},n.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)}},n.prototype.t=function(){if(null!=this.o){var t=this.o.getNativeElement().getBoundingClientRect(),e=new i.Rect(4);return e.left=t.left,e.top=t.top,e.width=t.width,e.height=t.height,e}return i.Rect.empty},n.prototype.u=function(){var t=this.t();return t.x+=window.pageXOffset,t.y+=window.pageYOffset,t},n.prototype.q=function(){return window.innerWidth},n.prototype.s=function(t){this.n.cj()},n.$t=i.markType(n,"GridColumnSummaryOptionsView",Nu.$),n.r="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z",n}(Nu),Sh=function(t){function n(){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=i.BrushUtil.j(255,24,29,31),e.cs=i.BrushUtil.j(255,248,248,248),e}return e.__extends(n,t),n.prototype.f=function(){return new wh},n.prototype.bs=function(){return null!=this.c&&null!=this.column&&(this.column.jc&&3!=this.c.summaryScope)},n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),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()}},n.prototype.bt=function(){if(null!=this.bw){for(var t=this.bw.a(),e=0;e<t.length;e++){var i=new ct(1,this.column.lo);switch(t[e]){case"avg":i.i=3;break;case"count":i.i=4;break;case"max":i.i=1;break;case"min":i.i=0;break;case"sum":i.i=2}for(var n=0;n<this.c.summaryDescriptions.j.count;n++){var r=this.c.summaryDescriptions.j.item(n);r.ah==this.column.lo&&r.i==i.i&&(this.c.summaryDescriptions.j.removeAt(n),n--)}}for(var o=this.bw.b(),s=0;s<o.length;s++){var a=new ct(1,this.column.lo);switch(o[s]){case"avg":a.i=3;break;case"count":a.i=4;break;case"max":a.i=1;break;case"min":a.i=0;break;case"sum":a.i=2}for(var l=!1,u=0;u<this.c.summaryDescriptions.j.count;u++){var h=this.c.summaryDescriptions.j.item(u);if(h.ah==this.column.lo&&h.i==a.i){l=!0;break}}l||(this.c.summaryDescriptions.j.add(a),this.column.m0("Summed"))}}null!=this.b0&&this.b0.ax&&this.b0.b6()},n.prototype.bu=function(){null!=this.b0&&this.b0.ax&&this.b0.b6()},n.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 i=this.c.summaryDescriptions.j.item(e);if(i.ah==this.column.lo)switch(i.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(n.prototype,"cb",{get:function(){return this.b7>0?i.stringFormat("{0} ({1})",this.cd,this.b7):this.cd},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bz",{get:function(){return this.by},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bx",{get:function(){return this.bw},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bv",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cd",{get:function(){if(null==this.b8){var t=this.ai.b1("Column_Options_Summaries");return i.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(n.prototype,"b5",{get:function(){return this.b2},set:function(t){var e=this.b2;this.b2=t,e!=this.b2&&this.bc("SummaryListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.b2))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b3",{get:function(){return this.b1},set:function(t){var e=this.b1;this.b1=t,e!=this.b1&&this.bc("ActualSummaryListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.b1))},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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}),n.prototype.cj=function(){null!=this.b0&&this.b0.ax&&this.b0.b6()},n.prototype.ck=function(t){if(null!=this.by){var e=this.by;e.clicked=i.delegateRemove(e.clicked,i.runOn(this,this.cm))}if(this.by=t,null!=this.by){var n=this.by;n.clicked=i.delegateCombine(n.clicked,i.runOn(this,this.cm))}this.cp()},n.prototype.cl=function(t){this.b0=t,this.cr()},n.prototype.co=function(t){if(null!=this.bw){var e=this.bw;e.summaryChanged=i.delegateRemove(e.summaryChanged,i.runOn(this,this.cn))}if(this.bw=t,null!=this.bw){var n=this.bw;n.summaryChanged=i.delegateCombine(n.summaryChanged,i.runOn(this,this.cn))}this.cq()},n.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)},n.prototype.cp=function(){null!=this.by&&(this.by.ds=0,this.by.a2=!1,this.by.rg=this.br,this.bh(this.by))},n.prototype.cr=function(){null!=this.b0&&(this.b0.c0=this.bo,this.b0.am=!1)},n.prototype.cm=function(t,e){if(null!=this.b0)if(this.b0.ax)this.b0.b6();else{var i=this.bv.t(),n=this.bv.u(),r=this.bv.q();i.right>r-150-10?(n.x-=150,n.y-=n.height):(n.x+=n.width,n.y-=n.height),this.b0.showRelativeToExclusionRect(n,1,0)}},n.prototype.cn=function(t,e){e.a?this.b7++:this.b7--},n.$t=i.markType(n,"GridColumnSummaryOptions",Vu.$),n}(Vu),Ph=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._portalManager=new i.PortalManager("summarySubMenu"),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al,e._portalManager),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new Sh},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-grid-column-summary-options"),this.classList.add("igc-grid-column-summary-options");var t=this._webComponentRenderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnSummaryOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnSummaryOptionsComponent=t}return n._observedAttributesIgcGridColumnSummaryOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"summaryCaption",{get:function(){return this.i.cd},set:function(t){this.i.cd=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryListDensity",{get:function(){return this.i.b5},set:function(t){this.i.b5=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("summaryListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.b5))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSummaryListDensity",{get:function(){return this.i.b3},set:function(t){this.i.b3=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("actualSummaryListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.b3))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"activeCount",{get:function(){return this.i.b7},set:function(t){this.i.b7=+t,this._a("activeCount",this.i.b7)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryListTextColor",{get:function(){return i.brushToString(this.i.cv)},set:function(t){this.i.cv=i.stringToBrush(t),this._a("summaryListTextColor",i.brushToString(this.i.cv))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryListBackground",{get:function(){return i.brushToString(this.i.cu)},set:function(t){this.i.cu=i.stringToBrush(t),this._a("summaryListBackground",i.brushToString(this.i.cu))},enumerable:!1,configurable:!0}),n.prototype.onApply=function(){this.i.bt()},n.prototype.onCancel=function(){this.i.bu()},n.prototype.closeMenu=function(){this.i.cj()},n._observedAttributesIgcGridColumnSummaryOptionsComponent=null,n.htmlTagName="igc-grid-column-summary-options",n._isElementRegistered=!1,n}(Xu),Oh=function(){function t(){}return t.register=function(){i.TypeRegistrar.register("SummaryChooser",_h.$type)},t}(),xh=function(){function t(){}return t.register=function(){Ph.register(),i.TypeRegistrar.registerCons("IgcGridColumnSummaryOptionsComponent",Ph),i.TypeRegistrar.registerCons("IgcGridColumnSummaryOptionsComponent",Ph),i.TypeRegistrar.register("GridColumnSummaryOptions",Sh.$type),fu.register(),Oh.register()},t}(),jh=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"ApplyButtonClickEventArgs",i.EventArgs.$),n}(i.EventArgs),kh=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"CancelButtonClickEventArgs",i.EventArgs.$),n}(i.EventArgs),Ih=function(t){function n(){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 e.__extends(n,t),n.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(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.z=function(t){var e=this,n=this.e,r=this.n;this.t=t;var o,s=n.createElement("hr");s.setStyleProperty("margin","4px -7px"),s.setStyleProperty("border-top","1px solid #dde2eb"),s.setStyleProperty("border-left","0px"),s.setStyleProperty("border-right","0px"),s.setStyleProperty("border-bottom","0px"),this.t.append(s);var a=function(){var t=Fu.g(e.n,n,null,r.p,r.j,i.Size.empty,e.o,o,e.s);return e.o=t.p6,o=t.p7,e.s=t.p8,t.ret}();a.setStyleProperty("margin-left","1rem");var l,u=this.o;u.clicked=i.delegateCombine(u.clicked,i.runOn(this,this.v)),this.o.g6="1";var h=function(){var t=Fu.g(e.n,n,null,r.p,r.j,i.Size.empty,e.p,l,e.u);return e.p=t.p6,l=t.p7,e.u=t.p8,t.ret}(),c=this.p;c.clicked=i.delegateCombine(c.clicked,i.runOn(this,this.w)),this.p.g6="1",this.p.e=2;var p=n.createElement("div");p.setStyleProperty("display","flex"),p.setStyleProperty("justify-content","space-between"),p.append(h),p.append(a),this.t.append(p),this.m()},n.prototype.aa=function(t){this.h(t)},n.prototype.x=function(){null!=this.applyButtonClick&&this.applyButtonClick(this,i.EventArgs.empty)},n.prototype.y=function(){null!=this.cancelButtonClick&&this.cancelButtonClick(this,i.EventArgs.empty)},n.prototype.v=function(t,e){this.x()},n.prototype.w=function(t,e){this.y()},n.$t=i.markType(n,"GridColumnButtonOptionsView",Nu.$),n}(Nu),Th=function(t){function n(){var e=t.call(this)||this;return e.by="Apply",e.b2="Cancel",e.applyButtonClick=null,e.cancelButtonClick=null,e}return e.__extends(n,t),n.prototype.f=function(){return new Ih},n.prototype.bs=function(){return!0},n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),e){case"ApplyButtonCaption":case"CancelButtonCaption":this.bx.m()}},n.prototype.onViewInitialized=function(){t.prototype.onViewInitialized.call(this);var e=this.bx;e.applyButtonClick=i.delegateCombine(e.applyButtonClick,i.runOn(this,this.ca));var n=this.bx;n.cancelButtonClick=i.delegateCombine(n.cancelButtonClick,i.runOn(this,this.cb))},Object.defineProperty(n.prototype,"bx",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bz",{get:function(){return this.by},set:function(t){if(0!=i.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(n.prototype,"b3",{get:function(){return this.b2},set:function(t){if(0!=i.StringComparer.b.compare(t,this.b2)){var e=this.b2;this.b2=t,this.bc("CancelButtonCaption",e,this.b2)}},enumerable:!1,configurable:!0}),n.prototype.provideButtonSection=function(t){this.bx.z(t)},n.prototype.provideMainDiv=function(t){this.bx.aa(t)},n.prototype.ca=function(t,e){this.b6()},n.prototype.cb=function(t,e){this.b7()},n.prototype.b6=function(){null!=this.applyButtonClick&&this.applyButtonClick(this,new jh)},n.prototype.b7=function(){null!=this.cancelButtonClick&&this.cancelButtonClick(this,new kh)},n.$t=i.markType(n,"GridColumnButtonOptions",Vu.$),n}(Vu),Rh=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(),this._initializeAdapters&&this._initializeAdapters()},t}(),Ah=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new kh},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),Eh=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._applyButtonClick=null,e._applyButtonClick_wrapped=null,e._cancelButtonClick=null,e._cancelButtonClick_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new Th},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-grid-column-button-options"),this.classList.add("igc-grid-column-button-options");var t=this._webComponentRenderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var e=document.createElement("div");e.setAttribute("key","buttonsSection"),t.appendChild(e);var i=this._webComponentRenderer.getWrapper(e);this.i.provideButtonSection(i),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnButtonOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnButtonOptionsComponent=t}return n._observedAttributesIgcGridColumnButtonOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"applyButtonCaption",{get:function(){return this.i.bz},set:function(t){this.i.bz=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cancelButtonCaption",{get:function(){return this.i.b3},set:function(t){this.i.b3=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"applyButtonClick",{get:function(){return this._applyButtonClick},set:function(t){var e=this;null!==this._applyButtonClick_wrapped&&(this.i.applyButtonClick=i.delegateRemove(this.i.applyButtonClick,this._applyButtonClick_wrapped),this._applyButtonClick_wrapped=null,this._applyButtonClick=null),this._applyButtonClick=t,this._applyButtonClick_wrapped=function(t,i){var n=new Rh;n._provideImplementation(i),e.beforeApplyButtonClick&&e.beforeApplyButtonClick(e,n),e._applyButtonClick&&e._applyButtonClick(e,n)},this.i.applyButtonClick=i.delegateCombine(this.i.applyButtonClick,this._applyButtonClick_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cancelButtonClick",{get:function(){return this._cancelButtonClick},set:function(t){var e=this;null!==this._cancelButtonClick_wrapped&&(this.i.cancelButtonClick=i.delegateRemove(this.i.cancelButtonClick,this._cancelButtonClick_wrapped),this._cancelButtonClick_wrapped=null,this._cancelButtonClick=null),this._cancelButtonClick=t,this._cancelButtonClick_wrapped=function(t,i){var n=new Ah;n._provideImplementation(i),e.beforeCancelButtonClick&&e.beforeCancelButtonClick(e,n),e._cancelButtonClick&&e._cancelButtonClick(e,n)},this.i.cancelButtonClick=i.delegateCombine(this.i.cancelButtonClick,this._cancelButtonClick_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridColumnButtonOptionsComponent=null,n.htmlTagName="igc-grid-column-button-options",n._isElementRegistered=!1,n}(Xu),Bh=function(){function t(){}return t.register=function(){Eh.register(),i.TypeRegistrar.registerCons("IgcGridColumnButtonOptionsComponent",Eh),i.TypeRegistrar.registerCons("IgcGridColumnButtonOptionsComponent",Eh),i.TypeRegistrar.register("GridColumnButtonOptions",Th.$type)},t}(),Dh=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"n",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.prototype.p=function(){var t=this.e,e=t.createElement("div"),i=t.createElement("header");e.append(i);var n=t.createElement("h4");return i.append(n),i.setRawText(this.n.dx),e},n.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)}},n.prototype.j=function(){t.prototype.j.call(this),this.m()},n.prototype.m=function(){var e,i;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,i=this.n.cp,Fu.j(e,i,"flex")),null!=this.z&&(e=this.z,i=this.n.c3,Fu.j(e,i)),null!=this.x&&(e=this.x,i=this.n.cx,Fu.j(e,i)),null!=this.y&&(e=this.y,i=this.n.c0,Fu.j(e,i)),null!=this.w&&(e=this.w,i=this.n.cu,Fu.j(e,i)),null!=this.r&&(e=this.r,i=this.n.co,Fu.j(e,i)),null!=this.q&&(e=this.q,i=this.n.cl,Fu.j(e,i)),null!=this.aa&&(e=this.aa,i=this.n.c6,Fu.j(e,i)),null!=this.o&&(e=this.o,Fu.j(e,!0))},n.prototype.ab=function(){var t=this.e,e=t.createElement("header");this.v.append(e);var i=t.createElement("h4");i.setStyleProperty("margin-top","0"),i.setStyleProperty("margin-bottom","0"),e.append(i),this.u=i,this.t.append(e),this.ad()},n.prototype.ac=function(t,e,i,n,r,o,s,a,l,u,h){this.v=t,this.z=e,this.x=i,this.y=n,this.q=r,this.aa=o,this.o=s,this.t=a,this.s=l,this.w=u,this.r=h,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")},n.$t=i.markType(n,"GridColumnOptionsView",Nu.$),n}(Nu),$h=function(t){function n(){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=i.truncate(i.DeviceUtils.g(8)),e.db=i.truncate(i.DeviceUtils.g(4)),e.da=i.truncate(i.DeviceUtils.g(8)),e.c8=i.truncate(i.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=i.BrushUtil.j(255,24,29,31),e.fj=i.BrushUtil.j(255,248,248,248),e.applyButtonClick=null,e.cancelButtonClick=null,e}return e.__extends(n,t),n.prototype.f=function(){return new Dh},n.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()},n.prototype.bb=function(e,i){switch(t.prototype.bb.call(this,e,i),i.propertyName){case"HeaderClickAction":case"ColumnMovingMode":this.fi()}},n.prototype.be=function(e,i,n){switch(t.prototype.be.call(this,e,i,n),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}},n.prototype.fi=function(){this.bz.m()},Object.defineProperty(n.prototype,"dx",{get:function(){var t=this.column;return null!=t?t.k3:"(No column selected)"},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"ci",{get:function(){return null==this.ch&&(this.ch=new i.FontInfo,this.ch.q="Verdana",this.ch.f=16),this.ch},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cp",{get:function(){return this.cr},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c3",{get:function(){return this.c2&&this.b1.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cx",{get:function(){return this.cw&&this.by.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c0",{get:function(){return this.cz&&this.b0.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cu",{get:function(){return this.ct&&this.bx.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"co",{get:function(){return this.cn&&this.bw.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cl",{get:function(){return this.ck&&this.bv.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"c6",{get:function(){return this.c5&&this.b2.bs()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"bz",{get:function(){return this.e},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.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(n.prototype,"e4",{get:function(){return null!=this.e3?this.e3:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Sort"))?"Sort":this.ai.b1("Column_Sort")},set:function(t){var e=this.e4;0!=i.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(n.prototype,"ey",{get:function(){return null!=this.ex?this.ex:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Sort_Ascending"))?"Asc":this.ai.b1("Column_Sort_Ascending")},set:function(t){var e=this.ey;0!=i.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(n.prototype,"e1",{get:function(){return null!=this.e0?this.e0:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Sort_Descending"))?"Desc":this.ai.b1("Column_Sort_Descending")},set:function(t){var e=this.e1;0!=i.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(n.prototype,"ea",{get:function(){return null!=this.d9?this.d9:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Move"))?"Move":this.ai.b1("Column_Move")},set:function(t){var e=this.ea;0!=i.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(n.prototype,"ed",{get:function(){return null!=this.ec?this.ec:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Move_Left"))?"Left":this.ai.b1("Column_Move_Left")},set:function(t){var e=this.ed;0!=i.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(n.prototype,"eh",{get:function(){return null!=this.eg?this.eg:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Move_Right"))?"Right":this.ai.b1("Column_Move_Right")},set:function(t){var e=this.eh;0!=i.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(n.prototype,"eo",{get:function(){return null!=this.en?this.en:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Pin"))?"Pin":this.ai.b1("Column_Pin")},set:function(t){var e=this.eo;0!=i.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(n.prototype,"er",{get:function(){return null!=this.eq?this.eq:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Pin_Left"))?"Left":this.ai.b1("Column_Pin_Left")},set:function(t){var e=this.er;0!=i.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(n.prototype,"ev",{get:function(){return null!=this.eu?this.eu:i.stringIsNullOrWhiteSpace(this.ai.b1("Column_Pin_Right"))?"Right":this.ai.b1("Column_Pin_Right")},set:function(t){var e=this.ev;0!=i.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(n.prototype,"dp",{get:function(){return null!=this.dn?this.dn:i.stringIsNullOrWhiteSpace(this.ai.b1("Apply"))?"Apply":this.ai.b1("Apply")},set:function(t){var e=this.dp;0!=i.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(n.prototype,"ds",{get:function(){return null!=this.dr?this.dr:i.stringIsNullOrWhiteSpace(this.ai.b1("Cancel"))?"Cancel":this.ai.b1("Cancel")},set:function(t){var e=this.ds;0!=i.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(n.prototype,"dv",{get:function(){return null!=this.du?this.du:i.stringIsNullOrWhiteSpace(this.ai.b1("Clear_Column_Filter"))?"Clear column filters":this.ai.b1("Clear_Column_Filter")},set:function(t){var e=this.dv;0!=i.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(n.prototype,"summaryListDensity",{get:function(){return this.b6},set:function(t){var e=this.b6;this.b6=t,e!=this.b6&&this.bc("SummaryListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.b6))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b8",{get:function(){return this.b4},set:function(t){var e=this.b4;this.b4=t,e!=this.b4&&this.bc("ActualSummaryListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.b4))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterListDensity",{get:function(){return this.b5},set:function(t){var e=this.b5;this.b5=t,e!=this.b5&&this.bc("FilterListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"b7",{get:function(){return this.b3},set:function(t){var e=this.b3;this.b3=t,e!=this.b3&&this.bc("ActualFilterListDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"d1",{get:function(){return null!=this.d0?this.d0:i.stringIsNullOrWhiteSpace(this.ai.b1("Search"))?"Search":this.ai.b1("Search")},set:function(t){if(0!=i.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(n.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(n.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}),n.prototype.notifySizeChanged=function(){this.e.j()},n.prototype.provideContent=function(t,e,n,r,o,s,a,l,u,h,c,p,d,f,m,g,b,y,v){this.bz.ac(t,e,n,r,o,s,a,l,u,h,c),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=b,this.bv.b7=this.dv,this.bv.cc=this.d1;var C=this.b1;C.propertyChanged=i.delegateCombine(C.propertyChanged,i.runOn(this,this.fb));var _=this.by;_.propertyChanged=i.delegateCombine(_.propertyChanged,i.runOn(this,this.fb));var w=this.b0;w.propertyChanged=i.delegateCombine(w.propertyChanged,i.runOn(this,this.fb));var S=this.bx;S.propertyChanged=i.delegateCombine(S.propertyChanged,i.runOn(this,this.fb));var P=this.bw;P.propertyChanged=i.delegateCombine(P.propertyChanged,i.runOn(this,this.fb));var O=this.bv;O.propertyChanged=i.delegateCombine(O.propertyChanged,i.runOn(this,this.fb)),this.b2=y,this.bu=v,this.bu.bz=this.dp,this.bu.b3=this.ds;var x=this.bu;x.applyButtonClick=i.delegateCombine(x.applyButtonClick,i.runOn(this,this.fd));var j=this.bu;j.cancelButtonClick=i.delegateCombine(j.cancelButtonClick,i.runOn(this,this.fe)),this.fh(),this.bl(),this.bi(),this.fg()},n.prototype.d5=function(){return i.stringFormat1("{0}px {1}px {2}px {3}px",this.dj.toString(),this.di.toString(),this.dg.toString(),this.dh.toString())},n.prototype.fh=function(){this.cf=null==this.cg?this.ci:this.cg},n.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 n=t[e];null!=n&&(n.bo=this.bo,n.br=this.br,n.density=this.q,n.buttonDensity=this.p,n.j=this.i);var r=i.typeCast(qu.$,n);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)},n.prototype.fd=function(t,e){for(var i=[this.b1,this.by,this.b0,this.bx,this.bw,this.bv,this.b2],n=0;n<i.length;n++){i[n].bt()}null!=this.applyButtonClick&&this.applyButtonClick(this,e)},n.prototype.fe=function(t,e){for(var i=[this.b1,this.by,this.b0,this.bx,this.bw,this.bv,this.b2],n=0;n<i.length;n++){i[n].bu()}null!=this.cancelButtonClick&&this.cancelButtonClick(this,e)},n.prototype.fb=function(t,e){e.propertyName},n.$t=i.markType(n,"GridColumnOptions",Gu.$),n}(Gu),Mh=function(t){function n(){var e=t.call(this)||this;return e._disconnected=!1,e._applyButtonClick=null,e._applyButtonClick_wrapped=null,e._cancelButtonClick=null,e._cancelButtonClick_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,al),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e.i.notifySizeChanged(),e._webComponentRenderer.addSizeWatcher((function(){e.i.notifySizeChanged()})),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},n.prototype.createImplementation=function(){return new $h},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-grid-column-options"),this.classList.add("igc-grid-column-options");var t=this._webComponentRenderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var e=document.createElement("div");e.setAttribute("key","headerSection"),t.appendChild(e);var i=this._webComponentRenderer.getWrapper(e),n=document.createElement("div");n.setAttribute("key","headerColumnNameSection"),e.appendChild(n);var r=this._webComponentRenderer.getWrapper(n),o=document.createElement("div");o.setAttribute("key","headerButtonsSection"),e.appendChild(o);var s=this._webComponentRenderer.getWrapper(o),a=document.createElement("div");a.setAttribute("key","groupSection");var l=this._webComponentRenderer.getWrapper(a);o.appendChild(a);var u=document.createElement("div");u.setAttribute("key","hideSection");var h=this._webComponentRenderer.getWrapper(u);o.appendChild(u);var c=document.createElement("div");c.setAttribute("key","sortSection");var p=this._webComponentRenderer.getWrapper(c);t.appendChild(c);var d=this._webComponentRenderer.createElement("igc-grid-column-sort-options");d.setAttribute("key","sortOptions"),p.append(d);var f=document.createElement("div");f.setAttribute("key","moveSection");var m=this._webComponentRenderer.getWrapper(f);t.appendChild(f);var g=this._webComponentRenderer.createElement("igc-grid-column-move-options");g.setAttribute("key","moveOptions"),m.append(g);var b=document.createElement("div");b.setAttribute("key","pinSection");var y=this._webComponentRenderer.getWrapper(b);t.appendChild(b);var v=this._webComponentRenderer.createElement("igc-grid-column-pin-options");v.setAttribute("key","pinOptions"),y.append(v);var C=this._webComponentRenderer.createElement("igc-grid-column-hide-options");C.setAttribute("key","hideOptions"),h.append(C);var _=this._webComponentRenderer.createElement("igc-grid-column-group-options");_.setAttribute("key","groupOptions"),l.append(_);var w=document.createElement("div");w.setAttribute("key","summarySection");var S=this._webComponentRenderer.getWrapper(w);t.appendChild(w);var P=this._webComponentRenderer.createElement("igc-grid-column-summary-options");P.setAttribute("key","summaryOptions"),S.append(P);var O=document.createElement("div");O.setAttribute("key","filterSection");var x=this._webComponentRenderer.getWrapper(O);t.appendChild(O);var j=this._webComponentRenderer.createElement("igc-grid-column-filter-options");j.setAttribute("key","filterOptions"),x.append(j);var k=document.createElement("div");k.setAttribute("key","buttonSection");var I=this._webComponentRenderer.getWrapper(k);t.appendChild(k);var T=this._webComponentRenderer.createElement("igc-grid-column-button-options");T.setAttribute("key","buttonOptions"),I.append(T),this.i.provideContent(i,p,m,y,x,S,I,r,s,h,l,d.getNativeElement().i,g.getNativeElement().i,v.getNativeElement().i,C.getNativeElement().i,_.getNativeElement().i,j.getNativeElement().i,P.getNativeElement().i,T.getNativeElement().i),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){this.i.notifySizeChanged()},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridColumnOptionsComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridColumnOptionsComponent=t}return n._observedAttributesIgcGridColumnOptionsComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"headerOptionsVisibleResolved",{get:function(){return this.i.cp},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortOptionsVisibleResolved",{get:function(){return this.i.c3},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"moveOptionsVisibleResolved",{get:function(){return this.i.cx},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinOptionsVisibleResolved",{get:function(){return this.i.c0},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hideOptionsVisibleResolved",{get:function(){return this.i.cu},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"groupOptionsVisibleResolved",{get:function(){return this.i.co},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterOptionsVisibleResolved",{get:function(){return this.i.cl},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryOptionsVisibleResolved",{get:function(){return this.i.c6},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnNameTextStyle",{get:function(){return null==this.i.cg?null:this.i.cg.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.cg=e,this._a("columnNameTextStyle",null!=this.i.cg?this.i.cg.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingLeft",{get:function(){return this.i.dh},set:function(t){this.i.dh=+t,this._a("paddingLeft",this.i.dh)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingTop",{get:function(){return this.i.dj},set:function(t){this.i.dj=+t,this._a("paddingTop",this.i.dj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingRight",{get:function(){return this.i.di},set:function(t){this.i.di=+t,this._a("paddingRight",this.i.di)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingBottom",{get:function(){return this.i.dg},set:function(t){this.i.dg=+t,this._a("paddingBottom",this.i.dg)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"headerVisible",{get:function(){return this.i.cr},set:function(t){this.i.cr=i.ensureBool(t),this._a("headerVisible",this.i.cr)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortOptionsVisible",{get:function(){return this.i.c2},set:function(t){this.i.c2=i.ensureBool(t),this._a("sortOptionsVisible",this.i.c2)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"moveOptionsVisible",{get:function(){return this.i.cw},set:function(t){this.i.cw=i.ensureBool(t),this._a("moveOptionsVisible",this.i.cw)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinOptionsVisible",{get:function(){return this.i.cz},set:function(t){this.i.cz=i.ensureBool(t),this._a("pinOptionsVisible",this.i.cz)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"hideOptionsVisible",{get:function(){return this.i.ct},set:function(t){this.i.ct=i.ensureBool(t),this._a("hideOptionsVisible",this.i.ct)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"groupOptionsVisible",{get:function(){return this.i.cn},set:function(t){this.i.cn=i.ensureBool(t),this._a("groupOptionsVisible",this.i.cn)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterOptionsVisible",{get:function(){return this.i.ck},set:function(t){this.i.ck=i.ensureBool(t),this._a("filterOptionsVisible",this.i.ck)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryOptionsVisible",{get:function(){return this.i.c5},set:function(t){this.i.c5=i.ensureBool(t),this._a("summaryOptionsVisible",this.i.c5)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortHeaderCaption",{get:function(){return this.i.e4},set:function(t){this.i.e4=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortAscendingCaption",{get:function(){return this.i.ey},set:function(t){this.i.ey=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortDescendingCaption",{get:function(){return this.i.e1},set:function(t){this.i.e1=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"moveHeaderCaption",{get:function(){return this.i.ea},set:function(t){this.i.ea=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"moveLeftCaption",{get:function(){return this.i.ed},set:function(t){this.i.ed=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"moveRightCaption",{get:function(){return this.i.eh},set:function(t){this.i.eh=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinHeaderCaption",{get:function(){return this.i.eo},set:function(t){this.i.eo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinLeftCaption",{get:function(){return this.i.er},set:function(t){this.i.er=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pinRightCaption",{get:function(){return this.i.ev},set:function(t){this.i.ev=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"applyFiltersButtonCaption",{get:function(){return this.i.dp},set:function(t){this.i.dp=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cancelFiltersButtonCaption",{get:function(){return this.i.ds},set:function(t){this.i.ds=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"clearColumnFiltersCaption",{get:function(){return this.i.dv},set:function(t){this.i.dv=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryListDensity",{get:function(){return this.i.summaryListDensity},set:function(t){this.i.summaryListDensity=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("summaryListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.summaryListDensity))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualSummaryListDensity",{get:function(){return this.i.b8},set:function(t){this.i.b8=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("actualSummaryListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.b8))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterListDensity",{get:function(){return this.i.filterListDensity},set:function(t){this.i.filterListDensity=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("filterListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.filterListDensity))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualFilterListDensity",{get:function(){return this.i.b7},set:function(t){this.i.b7=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("actualFilterListDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.b7))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterListPlaceholderText",{get:function(){return this.i.d1},set:function(t){this.i.d1=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryListTextColor",{get:function(){return i.brushToString(this.i.fm)},set:function(t){this.i.fm=i.stringToBrush(t),this._a("summaryListTextColor",i.brushToString(this.i.fm))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryListBackground",{get:function(){return i.brushToString(this.i.fl)},set:function(t){this.i.fl=i.stringToBrush(t),this._a("summaryListBackground",i.brushToString(this.i.fl))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"applyButtonClick",{get:function(){return this._applyButtonClick},set:function(t){var e=this;null!==this._applyButtonClick_wrapped&&(this.i.applyButtonClick=i.delegateRemove(this.i.applyButtonClick,this._applyButtonClick_wrapped),this._applyButtonClick_wrapped=null,this._applyButtonClick=null),this._applyButtonClick=t,this._applyButtonClick_wrapped=function(t,i){var n=new Rh;n._provideImplementation(i),e.beforeApplyButtonClick&&e.beforeApplyButtonClick(e,n),e._applyButtonClick&&e._applyButtonClick(e,n)},this.i.applyButtonClick=i.delegateCombine(this.i.applyButtonClick,this._applyButtonClick_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"cancelButtonClick",{get:function(){return this._cancelButtonClick},set:function(t){var e=this;null!==this._cancelButtonClick_wrapped&&(this.i.cancelButtonClick=i.delegateRemove(this.i.cancelButtonClick,this._cancelButtonClick_wrapped),this._cancelButtonClick_wrapped=null,this._cancelButtonClick=null),this._cancelButtonClick=t,this._cancelButtonClick_wrapped=function(t,i){var n=new Ah;n._provideImplementation(i),e.beforeCancelButtonClick&&e.beforeCancelButtonClick(e,n),e._cancelButtonClick&&e._cancelButtonClick(e,n)},this.i.cancelButtonClick=i.delegateCombine(this.i.cancelButtonClick,this._cancelButtonClick_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcGridColumnOptionsComponent=null,n.htmlTagName="igc-grid-column-options",n._isElementRegistered=!1,n}(Ku),zh=function(){function t(){}return t.register=function(){Zu.register(),ih.register(),sh.register(),hh.register(),ph.register(),gh.register(),xh.register(),Bh.register(),Mh.register(),i.TypeRegistrar.registerCons("IgcGridColumnOptionsComponent",Mh),i.TypeRegistrar.registerCons("IgcGridColumnOptionsComponent",Mh),i.TypeRegistrar.register("GridColumnOptions",$h.$type)},t}(),Nh=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"GotFocusEventArgs",i.EventArgs.$),n}(i.EventArgs),Fh=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"LostFocusEventArgs",i.EventArgs.$),n}(i.EventArgs),Gh=function(t){function r(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(r,t),r.a=function(t,e,r,o,s,a,l,u,h){var c=e.createElement("div"),p=e.getSubRenderer(c);(u=new n.XButton).provideContainer(p);p.getExternal(u,p.rootWrapper,p.getExternal(t,null,null));u.e=o,u.r=s,u.n=a;var d=e.createElement("div");d.setStyleProperty("display","inline-block"),h=new n.XIcon;var f=e.getSubRenderer(d);h.provideContainer(f);f.getExternal(h,f.rootWrapper,f.getExternal(t,null,null));h.svgPath=r,d.setStyleProperty("width",i.stringFormat("{0}px",l.width.toString())),d.setStyleProperty("height",i.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:c,p7:u,p8:h}},r.d=function(t){var e=0;return t.altKey&&(e|=1),t.shiftKey&&(e|=4),t.ctrlKey&&(e|=2),e},r.c=function(t,e,i){void 0===i&&(i="block");var n=e?i:"none";t.setStyleProperty("display",n)},r.e=function(t,e,n){null==r.b&&(r.b=t.createElement("div"),r.b.setStyleProperty("height","auto"),r.b.setStyleProperty("width","auto"),r.b.setStyleProperty("white-space","nowrap"),r.b.setStyleProperty("position","absolute")),null!=n?r.b.setStyleProperty("font",n.fontString):r.b.setStyleProperty("font",i.stringEmpty());var o=r.b.getNativeElement();document.body.appendChild(o),r.b.setRawText(e);var s=r.b.outerWidth(),a=r.b.outerHeight();return document.body.removeChild(o),new i.Size(1,s,a)},r.$t=i.markType(r,"MultiColumnComboBoxUtilities"),r.b=null,r}(i.Base),Vh=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}({}),qh=i.markEnum("SortMode","SortByOneColumnOnly,0|SortByMultipleColumns,1|SortByOneColumnOnlyTriState,2|SortByMultipleColumnsTriState,3|None,4"),Lh=function(t){function n(e,i){var n=t.call(this)||this;return n.d=null,n.b=null,n.d=e,n.b=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"oldText",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"newText",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"MultiColumnComboBoxTextChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),Hh=function(t){function n(e,i){var n=t.call(this)||this;return n.d=null,n.b=null,n.d=e,n.b=i,n}return e.__extends(n,t),Object.defineProperty(n.prototype,"oldValue",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"newValue",{get:function(){return this.b},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"MultiColumnComboBoxValueChangedEventArgs",i.EventArgs.$),n}(i.EventArgs),Wh=function(t){function n(){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 e.__extends(n,t),Object.defineProperty(n.prototype,"columnHeadersVisible",{get:function(){return this._columnHeadersVisible},set:function(t){this._columnHeadersVisible=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dropDownButtonVisible",{get:function(){return this._dropDownButtonVisible},set:function(t){this._dropDownButtonVisible=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualLabelVisible",{get:function(){return this._actualLabelVisible},set:function(t){this._actualLabelVisible=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualNoMatchesFoundLabel",{get:function(){return this._actualNoMatchesFoundLabel},set:function(t){this._actualNoMatchesFoundLabel=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"rowSeparatorsVisible",{get:function(){return this._rowSeparatorsVisible},set:function(t){this._rowSeparatorsVisible=t},enumerable:!1,configurable:!0}),n.prototype.am=function(){var t=new i.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()+", "),i.stringIsNullOrEmpty(this.ad)||t.l('labelFontStyle : "'+this.ad+'", '),i.stringIsNullOrEmpty(this.ae)||t.l('labelFontVariant : "'+this.ae+'", '),i.stringIsNullOrEmpty(this.af)||t.l('labelFontWeight : "'+this.af+'", '),i.stringIsNullOrEmpty(this.ab)||t.l('labelFontFamily : "'+this.ab+'", '),i.stringIsNullOrEmpty(this.ac)||t.l('labelFontStretch : "'+this.ac+'", '),i.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()+", "),i.stringIsNullOrEmpty(this.ai)||t.l('noMatchesFoundLabelFontStyle : "'+this.ai+'", '),i.stringIsNullOrEmpty(this.aj)||t.l('noMatchesFoundLabelFontVariant : "'+this.aj+'", '),i.stringIsNullOrEmpty(this.ak)||t.l('noMatchesFoundLabelFontWeight : "'+this.ak+'", '),i.stringIsNullOrEmpty(this.ag)||t.l('noMatchesFoundLabelFontFamily : "'+this.ag+'", '),i.stringIsNullOrEmpty(this.ah)||t.l('noMatchesFoundLabelFontStretch : "'+this.ah+'", '),i.isNaN_(this.w)||t.l("noMatchesFoundLabelFontSize : "+this.w+", "),t.l('placeholder : "'+this.al+'", '),t.l("rowSeparatorsVisible : "+this.rowSeparatorsVisible+", "),t.l("actualTextColor : "+this.f.serialize()+", "),i.stringIsNullOrEmpty(this.aq)||t.l('textStyleFontStyle : "'+this.aq+'", '),i.stringIsNullOrEmpty(this.ar)||t.l('textStyleFontVariant : "'+this.ar+'", '),i.stringIsNullOrEmpty(this.as)||t.l('textStyleFontWeight : "'+this.as+'", '),i.stringIsNullOrEmpty(this.ao)||t.l('textStyleFontFamily : "'+this.ao+'", '),i.stringIsNullOrEmpty(this.ap)||t.l('textStyleFontStretch : "'+this.ap+'", '),i.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()},n.$t=i.markType(n,"MultiColumnComboVisualModelExport"),n}(i.Base),Uh=function(t){function r(){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 i.List$1(i.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 e.__extends(r,t),Object.defineProperty(r.prototype,"e",{get:function(){return this.d},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"y",{get:function(){return 46==this.ap},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"n",{get:function(){return this.m},enumerable:!1,configurable:!0}),r.prototype.bg=function(t){this.ak=t,this.b2()},r.prototype.bh=function(t){this.f=t},r.prototype.bq=function(){},r.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",i.runOn(this,this.a2),!1),window.addEventListener("resize",i.runOn(this,this.c3),!1)},r.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())},r.prototype.ay=function(){this.e.activeCell=null},r.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))},r.prototype.u=function(t){if(null==t)return!1;var e=this.ai.getNativeElement(),i=this.ag.getNativeElement(),n=this.am.getNativeElement();return e.contains(t)||i.contains(t)||n.contains(t)},r.prototype.a0=function(){var t=this.ad,e=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",i.runOn(this,this.bn)),this.ai.listen("focusout",i.runOn(this,this.bo));var o=t.getSubRenderer(this.ai);this.k=new n.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 s=t.getSubRenderer(this.aj);this.l=new n.XLabel,this.l.provideContainer(s);s.getExternal(this.l,s.rootWrapper,s.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 a=t.getSubRenderer(this.ah);this.j=new n.XInput,this.j.provideContainer(a),t.getExternal(this.j,t.rootWrapper,t.getExternal(e,null,null)),this.j.b8="text",this.j.cq=e.text;var l=this.j;l.changing=i.delegateCombine(l.changing,i.runOn(this,this.bi));var u=this.j;u.compositionEnd=i.delegateCombine(u.compositionEnd,i.runOn(this,this.bj));var h=this.j;h.keyDown=i.delegateCombine(h.keyDown,i.runOn(this,this.bl));var c=this.j;c.gotFocus=i.delegateCombine(c.gotFocus,i.runOn(this,this.bk));var p=this.j;p.mouseDown=i.delegateCombine(p.mouseDown,i.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 n.XSuffix;m.provideContainer(f);f.getExternal(m,f.rootWrapper,f.getExternal(this.g,null,null));this.ae=t.createElement("div"),this.h=new n.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=r.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 b=t.createElement("div"),y=t.getSubRenderer(b),v=new n.XSuffix;v.provideContainer(y);y.getExternal(v,y.rootWrapper,y.getExternal(this.g,null,null));this.af=t.createElement("div"),this.i=new n.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=r.at,v.appendContentChild(this.af),this.k.appendContentChild(b),this.k.inputs.add(v),this.ae.listen("click",i.runOn(this,this.ax)),this.af.listen("click",i.runOn(this,this.a4)),this.cq()},r.prototype.a1=function(){var t=this.ac.createElement("div"),e=this.ac.getSubRenderer(t);this.m=new i.Popup,this.m.ar=this.f.bn,this.m.ay=this.f.br,this.m.c0=i.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)},r.prototype.bu=function(t,e){},r.prototype.bx=function(t,e,i){},r.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 n=this.g.i(),r=new i.List$1(i.Base.$,0),o=0;o<n.length;o++){var s=n[o],a=this.a.getItemProperty(t,s);r.add1(a)}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=i.stringEmpty();else{var u=this.g.e5();t=this.a.getItemAtIndex(0);var h=this.a.getItemProperty(t,u).toString();this.g.text=h}var c=this.b().indexOfItem(t);this.ch(c);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},r.prototype.bv=function(t,e){},r.prototype.bw=function(t,e){},r.prototype.b0=function(t,e){var i=this.e;if(null!=i){var n=i.activeCell;null!=n&&n.b>=t&&n.b<=e&&(this.cf(n.b),this.cy())}},r.prototype.b5=function(t,e,i){},r.prototype.bs=function(){if(this.b8(),this.w){var t=this.b().actualCount;this.aa&&t>0?this.ca():this.cb()}else this.cw()},r.prototype.b1=function(t,e){},r.prototype.b3=function(t,e){},r.prototype.o=function(){var t=document.activeElement;return this.u(t)},r.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()}},r.prototype.c4=function(){var t=this.ac.rootWrapper.getNativeElement().getBoundingClientRect();return new i.Rect(0,t.left+window.pageXOffset,t.top+window.pageYOffset,t.width,t.height)},r.prototype.b=function(){var t=this.e;return null!=t?t.actualDataSource:null},r.prototype.q=function(t){var e=this.d.selectedItems,i=e.count;return 0==i?{ret:!0,p0:t=null}:{ret:null!=(t=e._inner[0]),p0:t}},r.prototype.a8=function(t){var e=null!=t?t.b:-1;this.cf(e)},r.prototype.bc=function(){var t=this;if(!this.v){var e,i,n=this.g;(i=t.q(e),e=i.p0,i.ret)&&null!=e&&n.gi(e)}},r.prototype.bp=function(){this.n.b9()},r.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)}},r.prototype.by=function(){this.k.an=!0,this.j.dp();var t=new Nh;this.g.ge(t)},r.prototype.bz=function(){this.az(),this.k.j8();var t=new Fh;this.g.gg(t)},r.prototype.b4=function(t){var n,r;if(null!=t){this.ac=t;var o=t.rootWrapper;this.bg(o)}else{this.ac=null;try{for(var s=e.__values(i.fromEnum(this.ab)),a=s.next();!a.done;a=s.next()){(0,a.value)()}}catch(t){n={error:t}}finally{try{a&&!a.done&&(r=s.return)&&r.call(s)}finally{if(n)throw n.error}}this.ab.clear()}},r.prototype.b6=function(t,e){var n=this.b();if(null!=n){null!=this.a&&(this.c,this.a.updateNotifier=null,this.a=null),this.c=t;var r=new i.FilterFactory,o=null,s=null;switch(t){case 2:var a=this.g.e5();if(i.stringIsNullOrEmpty(a))return;o=e.toString(),s=r.property(a).isEqualTo(o);break;case 1:var l=this.g.i();if(null==l||l.length<1)return;var u=null!==i.typeCast(i.Array_$type,e)?e:[e];if(l.length!=u.length)return;for(var h=0;h<l.length;h++){var c=l[h];o=u[h];var p=r.property(c).isEqualTo(o);null==s?s=p:s.and(p)}break;case 0:default:return}this.a=n.clone(),this.a.filterExpressions.clear(),this.a.updateNotifier=new Xh(this,!0),this.a.filterExpressions.add(s),this.a.isVirtual||this.a.flushAutoRefresh()}},r.prototype.b7=function(){this.cu();var t=this.f.text,e=this.au.length,n=i.stringIsNullOrEmpty(t)?0:t.length;this.x&&!i.stringIsNullOrEmpty(this.au)&&e>0&&e--,this.j.dr(e,n)},r.prototype.b8=function(){this.p&&(this.p=!1,this.a3())},r.prototype.b9=function(t){this.au=t,this.aa=!this.y,this.cc(),this.cj()},r.prototype.ca=function(){i.stringIsNullOrEmpty(this.au)?this.ay():this.ch(0),this.b7(),this.w=!1},r.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"))},r.prototype.a5=function(t){null!=this.j&&(this.j.disabled=!t)},r.prototype.cb=function(){var t=this.d;t.selectedItemsChanged=i.delegateRemove(t.selectedItemsChanged,i.runOn(this,this.bd)),this.v=!0;try{this.g.gq(this.au)}finally{this.v=!1;var e=this.d;e.selectedItemsChanged=i.delegateCombine(e.selectedItemsChanged,i.runOn(this,this.bd))}this.w=!1},r.prototype.cc=function(){var t=this.g.p();if(null!=t)if(this.w=!0,i.stringIsNullOrEmpty(this.au))null!=t.g1?this.aw(null):this.cb();else{var e=new Ci;e.operator=14,e.value=this.au,e.isCaseSensitive=!1,this.aw(e)}},r.prototype.cd=function(){this.ap=0,this.x=!1},r.prototype.cf=function(t){var e=this.b();if(e.isPlaceholderItem(t));else{var n=this.e;if(t<0)return this.s=!1,n.selectedItems.clear(),void(this.s||this.bc());n.selectedItemsChanged=i.delegateRemove(n.selectedItemsChanged,i.runOn(this,this.bd));try{n.selectedItems.clear()}finally{n.selectedItemsChanged=i.delegateCombine(n.selectedItemsChanged,i.runOn(this,this.bd))}if(t>=0){var r=e.getItemAtIndex(t);this.s=!1,n.selectedItems.add1(r),this.s||this.bc()}}},r.prototype.ch=function(t){var e=this.e;if(-1!=t){var i,n=e.activeCell,r=new b;if(null!=n)i=n.d;else{if(0==e.actualColumns.count)return void(this.ao=t);this.g;i=this.g.p().lt()}r.d=i,r.b=t,this.r=!1,e.activeCell=r,this.r||this.a8(e.activeCell),this.cy()}else e.activeCell=null},r.prototype.cl=function(t){this.b6(2,t)},r.prototype.ck=function(t){this.b6(1,t)},r.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&&(i.NativeUI.q(this.am,t.hs),i.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 n=t.dropDownButtonVisible;Gh.c(this.af,n)}},r.prototype.cu=function(){if(!this.v&&null!=this.j){var t=this.f.text;this.j.cq=t}},r.prototype.co=function(){var t=this.n,e=null!=t&&t.ax;this.i.svgPath=e?r.as:r.at},r.prototype.ct=function(){var t=this.d.actualHeaderHeight+3,e=this.d.actualRowHeight+this.d.rowSeparatorHeight,n=this.d.actualDataSource,r=null!=n?n.actualCount:0;r>8&&(r=8);var o=r*e;o+=t;var s=i.stringFormat("{0}px",o);this.ag.setStyleProperty("height",s);var a=0,l=this.d.actualColumns.count,u=100;null!=this.d.defaultColumnWidth&&(u=this.d.defaultColumnWidth.f),a=l*u,this.d.defaultColumnMinWidth=0,a+=2;var h=i.stringFormat("{0}px",a);if(this.ag.setStyleProperty("width",h),null!=this.am){var c=this.g,p=Gh.e(this.ad,c.actualNoMatchesFoundLabel,c.av),d=p.width,f=p.height,m=i.stringFormat("{0}px",d),g=i.stringFormat("{0}px",f);this.am.setStyleProperty("width",m),this.am.setStyleProperty("height",g)}},r.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()}},r.prototype.cw=function(){if(null!=this.g.value){var t=this.g.value,e=null!==i.typeCast(i.Array_$type,t)?t:[t],n=this.b().indexOfKey(e);-1!=n&&this.ch(n)}},r.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 i.CornerRadius(0,0),t.d.ix=!1;var n=t.d;n.activeCellChanged=i.delegateCombine(n.activeCellChanged,i.runOn(t,t.a7));var r=t.d;r.selectedItemsChanged=i.delegateCombine(r.selectedItemsChanged,i.runOn(t,t.bd));var o=t.d;o.cellClicked=i.delegateCombine(o.cellClicked,i.runOn(t,t.ba));var s=t.d;s.sizeChanged=i.delegateCombine(s.sizeChanged,i.runOn(t,t.be));var a=t.d;a.viewportChanged=i.delegateCombine(a.viewportChanged,i.runOn(t,t.bf));var l=t.d;l.actualColumnsChanged=i.delegateCombine(l.actualColumnsChanged,i.runOn(t,t.a9));var u=t.d;u.columnWidthChanged=i.delegateCombine(u.columnWidthChanged,i.runOn(t,t.bb)),t.cm()}),!1)},r.prototype.cn=function(t){null!=this.d&&(this.d.defaultColumnWidth=t,this.ct())},r.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}},r.prototype.cy=function(){if(this.t){var t=this.d,e=t.activeCell;if(null!=e){var i=this.b();if(null!=i){var n=i.getItemAtIndex(e.b);if(null==n)return;t.scrollToItem(n)}}else t.scrollToRowByIndex(0)}},r.prototype.cz=function(){if(null!=this.aq){var t=this.g,e=t.itemsSource;if(this.d.selectedItems.clear(),null!=this.d.actualDataSource){var n=this.d.actualDataSource;n.schemaChanged=i.delegateRemove(n.schemaChanged,i.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,s=new Xh(this,!1),a=new bt(1,[o,s]);r.updateNotifier=a,r.propertiesRequested=t.f,r.schemaChanged=i.delegateCombine(r.schemaChanged,i.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())}},r.prototype.av=function(t,e){-1!=this.ao&&(this.ch(this.ao),this.ao=-1)},r.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)))},r.prototype.cg=function(t){null!=this.j&&(this.j.disabled=!t),null!=this.k&&(this.k.disabled=!t)},r.prototype.c1=function(){if(this.ct(),this.w){var t=this.b();this.z=0==t.actualCount}else this.z=!1;Gh.c(this.am,this.z),Gh.c(this.ag,!this.z)},r.prototype.a6=function(t){null!=this.j&&this.j.focus(t)},r.prototype.ce=function(){null!=this.j&&this.j.dp()},r.prototype.ci=function(t){null!=this.j&&(this.j.e=t)},Object.defineProperty(r.prototype,"al",{get:function(){return this.ak},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"g",{get:function(){return this.f},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"ad",{get:function(){return this.ac},enumerable:!1,configurable:!0}),r.prototype.c2=function(){null!=this.al&&this.al.setStyleProperty("box-sizing","border-box")},r.prototype.a2=function(t){t.target;this.o()||this.bz()},r.prototype.ax=function(t){this.d.selectedItems.clear(),this.j.cq="",this.g.text="",this.g.value=null},r.prototype.a4=function(t){this.n.ax?this.az():this.aw(null),null!=this.j&&(this.j.focus(),this.j.dp())},r.prototype.a7=function(t,e){var i=e.newActiveCell;this.a8(i),this.r=!0},r.prototype.a9=function(t,e){this.cv()},r.prototype.ba=function(t,e){null===i.typeCast(Wi.$,e.cellInfo)&&this.br()},r.prototype.bb=function(t,e){this.ct(),this.bp()},r.prototype.bd=function(t,e){this.bc(),this.s=!0,this.cj()},r.prototype.be=function(t,e){this.t=0!=e.b&&0!=e.a,this.cy()},r.prototype.bf=function(t,e){this.cy();var n=this.d;n.viewportChanged=i.delegateRemove(n.viewportChanged,i.runOn(this,this.bf))},r.prototype.bi=function(t,e){if(!e.isCompositionInProgress){this.f.gd(e);var i=e.value;this.b9(i)}},r.prototype.bj=function(t,e){var i=this.j.cq;this.b9(i)},r.prototype.bk=function(t,e){this.cd()},r.prototype.bl=function(t,e){if(this.f.gf(e),!e.defaultPrevented){var n=e.keyCode;this.ap=n,this.x=!1;var r=e.modifiers;switch(n){case 8:var o=this.j.selectionStart;if(0==o)break;var s=this.j.cq;if(i.stringIsNullOrEmpty(s))break;var a=s.length,l=this.j.selectionEnd,u=l-o;u>0&&u<a&&l==a&&(this.x=!0);break;case 40:if(1==r)this.a3(),this.cv(),e.preventDefault();else{var h=this.e;if(null==h)return;this.e.activeCell;if(null!=h.activeCell)this.d.kk(!1,!1),e.preventDefault();else{var c=this.b();if(null!=c)c.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()}}},r.prototype.bm=function(t,e){0==this.o()&&(this.j.dp(),e.handled=!0)},r.prototype.bn=function(t){this.j.focus();var e=t.originalEvent.relatedTarget;this.u(e)||this.by()},r.prototype.bo=function(t){var e=t.originalEvent.relatedTarget;this.u(e)||this.bz()},r.prototype.c3=function(t){var e=this.n;if(null!=e&&0!=e.ax){var i=this.c4();this.m.ca(i)}},r.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())},r.prototype.cp=function(){null!=this.m&&(this.m.ar=this.g.bn)},r.prototype.cs=function(){null!=this.m&&(this.m.ay=this.g.br)},r.$t=i.markType(r,"MultiColumnComboBoxView"),r.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",r.at="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z",r.as="M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",r}(i.Base),Kh=function(t){function r(){var e=t.call(this)||this;e.dd=null,e.h1=n.XInputGroup.m.ad(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"BackgroundColor"),e.h2=n.XInputGroup.m.ad(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"BorderColor"),e.co=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"BorderWidth"),e.io=n.XInputGroup.m.ai(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"ContentPadding"),e.gy=n.XInputGroup.m.y(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"CornerRadius"),e.h3=n.XInputGroup.m.ad(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusBorderColor"),e.cp=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusBorderWidth"),e.h4=n.XInputGroup.m.ad(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusUnderlineColor"),e.cq=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusUnderlineOpacity"),e.cr=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusUnderlineRippleOpacity"),e.h5=n.XInputGroup.m.ad(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"HoverUnderlineColor"),e.cs=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"HoverUnderlineOpacity"),e.ct=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"HoverUnderlineWidth"),e.h6=n.XInputGroup.m.ad(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineColor"),e.cu=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineOpacity"),e.h7=n.XInputGroup.m.ad(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineRippleColor"),e.cv=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusUnderlineRippleOpacity"),e.cw=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineRippleWidth"),e.cx=n.XInputGroup.m.i(r.ag,i.enumGetBox(n.InputGroupDisplayType_$type,0),"HoverUnderlineWidth"),e.a5=null,e.a0=null,e.v=null,e.a8=!1,e.bc=!0,e.c=null,e.m=Rt.a,e.ha=null,e.gz=n.ThemeResolver.af(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"BackgroundColor"),e.af=0,e.ae=1,e.hb=null,e.g0=n.ThemeResolver.af(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"BorderColor"),e.b2=NaN,e.bs=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"BorderWidth"),e.bh=!0,e.ik=new i.Thickness(1,NaN,NaN,NaN,NaN),e.ij=n.ThemeResolver.ak(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"ContentPadding"),e.gv=new i.CornerRadius(1,NaN,NaN,NaN,NaN),e.gu=n.ThemeResolver.aa(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"CornerRadius"),e.b=null,e.al=0,e.ak=0,e.bk=!0,e.hc=null,e.g1=n.ThemeResolver.af(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusBorderColor"),e.b3=NaN,e.bt=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusBorderWidth"),e.hd=null,e.g2=n.ThemeResolver.af(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusUnderlineColor"),e.b4=NaN,e.bu=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusUnderlineOpacity"),e.b5=NaN,e.bv=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"FocusUnderlineRippleOpacity"),e.he=null,e.g3=n.ThemeResolver.af(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"HoverUnderlineColor"),e.b6=NaN,e.bw=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"HoverUnderlineOpacity"),e.b7=NaN,e.bx=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"HoverUnderlineWidth"),e.c7=null,e.fd=null,e.hf=null,e.g4=r.hy,e.as=null,e.ap=null,e.be=!1,e.fg=null,e.d1="No Matches Found",e.hg=null,e.g5=r.hz,e.hh=null,e.g6=r.h0,e.at=null,e.aq=null,e.fo="",e.bb=!0,e.hi=r.h8,e.g7=r.h8,e.au=null,e.ar=null,e.hj=null,e.g8=n.ThemeResolver.af(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineColor"),e.b8=NaN,e.by=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineOpacity"),e.hk=null,e.g9=n.ThemeResolver.af(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineRippleColor"),e.b9=NaN,e.bz=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineRippleOpacity"),e.ca=NaN,e.b0=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineRippleWidth"),e.cb=NaN,e.b1=n.ThemeResolver.k(r.ag,n.XInputGroup.m,i.enumGetBox(n.InputGroupDisplayType_$type,0),"UnderlineWidth"),e.a7=!0,e.w=0,e.dg=null,e.df=null,e.d=null,e.a=null,e.c8=null,e.aa=0,e.bm=!1,e.a9=!1,e.ba=!1,e.bd=!1,e.gotFocus=null,e.lostFocus=null,e.textValueChanged=null,e.selectedValueChanged=null,e.keyDown=null,e.change=null,e.changing=null,e.propertyChanged=null,e.m=new Rt,e.m.f=100;var o=e.u();return e.v=o,o.bh(e),e}return e.__extends(r,t),Object.defineProperty(r.prototype,"a6",{get:function(){return null==this.a5&&(this.a5=new i.SRProvider(this.v.ad),this.a5.cb("MultiColumnComboBox")),this.a5},enumerable:!1,configurable:!0}),r.prototype.u=function(){return new Uh},r.prototype.gm=function(t,e,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=i.isNaN_(this.cm)?this.co:this.cm;break;case"ContentPadding":this.il=n.XInputGroup.oh(this.im,this.io);break;case"CornerRadius":this.gw=n.XInputGroup.kr(this.gx,this.gy);break;case"FocusBorderColor":this.hn=null!=this.h9?this.h9:this.h3;break;case"FocusBorderWidth":this.cd=i.isNaN_(this.cy)?this.cp:this.cy;break;case"FocusUnderlineColor":this.ho=null!=this.ia?this.ia:this.h4;break;case"FocusUnderlineOpacity":this.ce=i.isNaN_(this.cz)?this.cq:this.cz;break;case"FocusUnderlineRippleOpacity":this.cf=i.isNaN_(this.c0)?this.cr:this.c0;break;case"HoverUnderlineColor":this.hp=null!=this.ib?this.ib:this.h5;break;case"HoverUnderlineOpacity":this.cg=i.isNaN_(this.c1)?this.cs:this.c1;break;case"HoverUnderlineWidth":this.ch=i.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:r.hy;break;case"LabelTextStyle":this.av=null!=this.a2?this.a2:r.ay;break;case"NoMatchesFoundLabelTextColor":this.hs=null!=this.ie?this.ie:r.h0;break;case"NoMatchesFoundLabelBackgroundColor":this.hr=null!=this.id?this.id:r.hz;break;case"NoMatchesFoundLabelTextStyle":this.aw=null!=this.a3?this.a3:r.az;break;case"UnderlineColor":this.hu=null!=this.ih?this.ih:this.h6;break;case"UnderlineOpacity":this.ci=i.isNaN_(this.c3)?this.cu:this.c3;break;case"UnderlineRippleColor":this.hv=null!=this.ii?this.ii:this.h7;break;case"UnderlineRippleOpacity":this.cj=i.isNaN_(this.c4)?this.cv:this.c4;break;case"UnderlineRippleWidth":this.ck=i.isNaN_(this.c5)?this.cw:this.c5;break;case"UnderlineWidth":this.cl=i.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:r.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 r.d3:this.v.cm();break;case"NoMatchesFoundLabel":this.actualNoMatchesFoundLabel=i.stringIsNullOrEmpty(this.fh)?"No Matches Found":this.fh;break;case"ActualLabelVisible":this.v.c0();break;case"Label":case"PlaceholderText":this.v.cm(),this.actualLabelVisible=!i.stringIsNullOrEmpty(this.fd);break;case"Text":this.v.cu();var s=null!=e?e.toString():null,a=null!=o?o.toString():null;this.gk(new Lh(s,a)),this.gl(1,a);break;case"Value":this.gj(new Hh(e,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()}},r.prototype.gt=function(){this.v.c2()},Object.defineProperty(r.prototype,"a1",{get:function(){return null==this.a0&&(this.a0=new i.FontInfo,this.a0.q="Verdana",this.a0.f=i.DeviceUtils.f(16)),this.a0},enumerable:!1,configurable:!0}),r.prototype.focus=function(t){this.v.a6(t)},r.prototype.setName=function(t){this.v.ci(t)},Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.prototype,"ai",{get:function(){return this.af},set:function(t){var e=this.af;this.af=t,e!=this.af&&this.gh("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"ah",{get:function(){return this.ae},set:function(t){var e=this.ae;this.ae=t,e!=this.ae&&this.gh("ActualBaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.prototype,"density",{get:function(){return this.al},set:function(t){var e=this.al;this.al=t,e!=this.al&&this.gh("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"am",{get:function(){return this.ak},set:function(t){var e=this.ak;this.ak=t,e!=this.ak&&this.gh("ActualDensity",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,t))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.prototype,"actualDataSource",{get:function(){return this.v.b()},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"fb",{get:function(){return this.fd},set:function(t){var e=this.fb;0!=i.StringComparer.b.compare(t,e)&&(this.fd=t,this.gh("Label",e,this.fd))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.prototype,"fh",{get:function(){return this.fg},set:function(t){var e=this.fg;0!=i.StringComparer.b.compare(t,e)&&(this.fg=t,this.gh("NoMatchesFoundLabel",e,this.fg))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.prototype,"hr",{get:function(){return this.g5},set:function(t){var e=this.g5;this.g5=t,e!=this.g5&&this.gh(r.d3,e,t)},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.prototype,"fn",{get:function(){return this.fo},set:function(t){var e=this.fn;0!=i.StringComparer.b.compare(t,e)&&(this.fo=t,this.gh("PlaceholderText",e,this.fo))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.prototype,"x",{get:function(){return this.w},set:function(t){var e=this.w;this.w=t,e!=this.w&&this.gh("SortMode",i.enumGetBox(qh,e),i.enumGetBox(qh,this.w))},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.prototype,"ac",{get:function(){return this.aa},set:function(t){var e=this.aa;this.aa=t,e!=this.aa&&this.gh("DisplayType",i.enumGetBox(n.InputGroupDisplayType_$type,e),i.enumGetBox(n.InputGroupDisplayType_$type,t))},enumerable:!1,configurable:!0}),r.prototype.da=function(t,e){return new i.FastReflectionHelper(!1,e).getPropertyValue(t)},r.prototype.p=function(){var t=this.e5();return this.o(t)},r.prototype.e5=function(){return this.e4(this.fv)},r.prototype.db=function(t){var e=this.i();if(null==e||0==e.length)return null;for(var n=new i.List$1(i.Base.$,0),r=0;r<e.length;r++){var o=e[r],s=this.da(t,o);n.add1(s)}return 1==n.count?n._inner[0]:n.toArray()},r.prototype.e3=function(t){var e,i=this.e5();if(null!=i){var n=this.da(t,i);e=null!=n?n.toString():null}else e=null;return e},r.prototype.o=function(t){var n,r,o=this.v.e;if(null==o)return null;var s=o.actualColumns;if(null==s||0==s.count)return null;if(i.stringIsNullOrEmpty(t))return s._inner[0];try{for(var a=e.__values(i.fromEnum(s)),l=a.next();!l.done;l=a.next()){var u=l.value;if(0==i.StringComparer.b.compare(u.lo,t))return u}}catch(t){n={error:t}}finally{try{l&&!l.done&&(r=a.return)&&r.call(a)}finally{if(n)throw n.error}}return null},r.prototype.e4=function(t){if(i.stringIsNullOrEmpty(t)){var e=this.actualDataSource;if(null==e)return null;var n=e.actualSchema;if(null==n)return null;var r=n.propertyNames;return 0==r.length?null:r[0]}return t},r.prototype.h=function(t){var e=new i.List$1(i.String_$type,0);if(null==t||0==t.length){var n=this.e4(null);return i.stringIsNullOrEmpty(n)?null:(e.add(n),e.toArray())}for(var r=0;r<t.length;r++){var o=t[r],s=this.e4(o);null!=s&&e.add(s)}return e.count>0?e.toArray():null},r.prototype.i=function(){var t=this.j;return this.h(t)},r.prototype.gi=function(t){this.gl(2,t)},r.prototype.gl=function(t,e){if(!this.bm){this.bm=!0;try{switch(t){case 2:var n=e,r=void 0,o=void 0;null!=n?(r=this.e3(n),o=this.db(n)):(r=i.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()}},r.prototype.gq=function(t){this.text=t},r.prototype.gs=function(){this.ax=null==this.a4?this.a1:this.a4,this.av=null==this.a2?this.a1:this.a2},r.prototype.gr=function(){},r.prototype.closeUp=function(){this.v.az()},r.prototype.destroy=function(){this.provideRenderer(null)},r.prototype.dropDown=function(){this.v.a3()},r.prototype.select=function(){this.v.ce()},r.prototype.notifySizeChanged=function(){this.v.bq()},r.prototype.provideRenderer=function(t){this.v.b4(t),this.actualNoMatchesFoundLabel=i.stringIsNullOrWhiteSpace(this.a6.b1("NoMatches"))?"No Matches Found":this.a6.b1("NoMatches")},r.prototype.c9=function(){return this.l()},r.prototype.ew=function(){return this.l().am()},r.prototype.l=function(){var t=new Wh;if(t.a=i.AppearanceHelper.a(this.hl),t.j=this.ah,t.b=i.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=i.AppearanceHelper.a(this.hq),t.actualLabelVisible=this.actualLabelVisible,t.actualNoMatchesFoundLabel=this.actualNoMatchesFoundLabel,t.d=i.AppearanceHelper.a(this.hr),t.e=i.AppearanceHelper.a(this.hs),t.al=this.fn,t.rowSeparatorsVisible=this.rowSeparatorsVisible,t.f=i.AppearanceHelper.a(this.ht),t.g=i.AppearanceHelper.a(this.hu),t.r=this.ci,t.h=i.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 n=this.v.ad,r=i.FontUtil.getFontInfoFromString(n,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),i.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 s=this.v.ad,a=i.FontUtil.getFontInfoFromString(s,o.fontString);o.q=a.q,o.f=a.f,o.r=a.r,o.t=a.t,o.u=a.u,o.v=a.v}null!=o.q&&(t.ag=o.q),i.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,h=i.FontUtil.getFontInfoFromString(u,l.fontString);l.q=h.q,l.f=h.f,l.r=h.r,l.t=h.t,l.u=h.u,l.v=h.v}null!=l.q&&(t.ao=l.q),i.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(r.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(r.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(r.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}),r.prototype.ge=function(t){null!=this.gotFocus&&this.gotFocus(this,t)},r.prototype.gg=function(t){null!=this.lostFocus&&this.lostFocus(this,t)},r.prototype.gk=function(t){null!=this.textValueChanged&&this.textValueChanged(this,t)},r.prototype.gj=function(t){null!=this.selectedValueChanged&&this.selectedValueChanged(this,t)},r.prototype.gh=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.gm(t,e,n)},r.prototype.gf=function(t){null!=this.keyDown&&this.keyDown(this,t)},r.prototype.gd=function(t){null!=this.changing&&this.changing(this,t)},r.$t=i.markType(r,"MultiColumnComboBox",i.Base.$,[i.INotifyPropertyChanged_$type]),r.ag=1,r.hy=n.ThemeResolver.ah(r.ag,n.XLabel.de,n.XLabel.c7),r.h0=n.ThemeResolver.ah(r.ag,n.XLabel.de,n.XLabel.c7),r.hz=i.BrushUtil.j(255,255,255,255),r.ay=null,r.d3="ActualNoMatchesFoundLabelBackgroundColor",r.az=null,r.h8=i.BrushUtil.j(221,0,0,0),r}(i.Base),Xh=function(t){function n(e,i){var n=t.call(this)||this;return n.a=null,n.b=!1,n.a=e,n.b=i,n}return e.__extends(n,t),n.prototype.rangeActualized=function(t,e){this.b?this.a.bu(t,e):this.a.b0(t,e)},n.prototype.notifySetItem=function(t,e,i){this.b?this.a.bx(t,e,i):this.a.b5(t,e,i)},n.prototype.notifyClearItems=function(){this.b?this.a.bt():this.a.bs()},n.prototype.notifyInsertItem=function(t,e){this.b?this.a.bv(t,e):this.a.b1(t,e)},n.prototype.notifyRemoveItem=function(t,e){this.b?this.a.bw(t,e):this.a.b3(t,e)},n.$t=i.markType(n,"MultiColumnComboBoxDataSourceNotificationHandler",i.Base.$,[i.IDataSourceUpdateNotifier_$type]),n}(i.Base),Qh=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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Yh=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(),this._initializeAdapters&&this._initializeAdapters()},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}(),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 Nh},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),Jh=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Fh},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),tc=function(t){function r(){var e=t.call(this)||this;return e._implementation=null,e._disconnected=!1,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._gotFocus=null,e._gotFocus_wrapped=null,e._lostFocus=null,e._lostFocus_wrapped=null,e._textValueChanged=null,e._textValueChanged_wrapped=null,e._selectedValueChanged=null,e._selectedValueChanged_wrapped=null,e._keyDown=null,e._keyDown_wrapped=null,e._change=null,e._change_wrapped=null,e._changing=null,e._changing_wrapped=null,e._textChange=null,e._textChange_wrapped=null,e._valueChange=null,e._valueChange_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e._portalManager=new i.PortalManager("multiColumnComboBoxContent"),e._webComponentRenderer=new i.WebComponentRenderer(e,document,!0,{},e._portalManager),e._webComponentWrapper=e._webComponentRenderer.createElement("div"),e._webComponentRenderer.updateRoot(e._webComponentWrapper),e._webComponentWrapper.setStyleProperty("display","block"),e._webComponentWrapper.setStyleProperty("width","100%"),e._webComponentWrapper.setStyleProperty("height","100%"),e.i.provideRenderer(e._webComponentRenderer),e.i.notifySizeChanged(),e._webComponentRenderer.addSizeWatcher((function(){e.i.notifySizeChanged()})),e}return e.__extends(r,t),Object.defineProperty(r.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.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.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),r.prototype.updateStyle=function(){this._styling(this,this)},r.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},r.prototype.createImplementation=function(){return new Kh},Object.defineProperty(r.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),r.prototype.disconnectedCallback=function(){this._disconnected=!0},r.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-multi-column-combo-box"),this.classList.add("igc-multi-column-combo-box");var t=this._webComponentRenderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},r.prototype.afterContentInit=function(){this.i.notifySizeChanged()},Object.defineProperty(r.prototype,"defaultColumnWidth",{get:function(){var t=this.i.defaultColumnWidth.externalObject;return t||((t=new vo)._implementation=this.i.defaultColumnWidth),t},set:function(t){if("string"==typeof t){var e=Rt.parse(t);(i=new vo)._implementation=e,t=i}else if("number"==typeof t){var i;e=Rt.parse(t.toString());(i=new vo)._implementation=e,t=i}this.i.defaultColumnWidth=t.i},enumerable:!1,configurable:!0}),r.prototype.attributeSynced=function(t,e){"name"===t&&this.i.setName(e)},r.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},r.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},r.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(r,"observedAttributes",{get:function(){if(null==r._observedAttributesIgcMultiColumnComboBoxComponent){for(var t=i.getAllPropertyNames(r),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);r._observedAttributesIgcMultiColumnComboBoxComponent=t}return r._observedAttributesIgcMultiColumnComboBoxComponent},enumerable:!1,configurable:!0}),r.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},r.register=function(){r._isElementRegistered||(r._isElementRegistered=!0,i.RegisterElementHelper.registerElement(r.htmlTagName,r))},Object.defineProperty(r.prototype,"showClearButton",{get:function(){return this.i.bq},set:function(t){this.i.bq=i.ensureBool(t),this._a("showClearButton",this.i.bq)},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.hw)},set:function(t){this.i.hw=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.hw))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualBackgroundColor",{get:function(){return i.brushToString(this.i.hl)},set:function(t){this.i.hl=i.stringToBrush(t),this._a("actualBackgroundColor",i.brushToString(this.i.hl))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"baseTheme",{get:function(){return this.i.ai},set:function(t){this.i.ai=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.ai))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualBaseTheme",{get:function(){return this.i.ah},set:function(t){this.i.ah=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("actualBaseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.ah))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"borderColor",{get:function(){return i.brushToString(this.i.hx)},set:function(t){this.i.hx=i.stringToBrush(t),this._a("borderColor",i.brushToString(this.i.hx))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualBorderColor",{get:function(){return i.brushToString(this.i.hm)},set:function(t){this.i.hm=i.stringToBrush(t),this._a("actualBorderColor",i.brushToString(this.i.hm))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"borderWidth",{get:function(){return this.i.cm},set:function(t){this.i.cm=+t,this._a("borderWidth",this.i.cm)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualBorderWidth",{get:function(){return this.i.cc},set:function(t){this.i.cc=+t,this._a("actualBorderWidth",this.i.cc)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"columnHeadersVisible",{get:function(){return this.i.columnHeadersVisible},set:function(t){this.i.columnHeadersVisible=i.ensureBool(t),this._a("columnHeadersVisible",this.i.columnHeadersVisible)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"contentPaddingBottom",{get:function(){return this.i.im?this.i.im.bottom:NaN},set:function(t){this.ensureContentPadding(),this.i.im.bottom=+t,this._a("contentPaddingBottom",this.i.im.bottom),this.i.im=this.i.im},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"contentPaddingLeft",{get:function(){return this.i.im?this.i.im.left:NaN},set:function(t){this.ensureContentPadding(),this.i.im.left=+t,this._a("contentPaddingLeft",this.i.im.left),this.i.im=this.i.im},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"contentPaddingRight",{get:function(){return this.i.im?this.i.im.right:NaN},set:function(t){this.ensureContentPadding(),this.i.im.right=+t,this._a("contentPaddingRight",this.i.im.right),this.i.im=this.i.im},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"contentPaddingTop",{get:function(){return this.i.im?this.i.im.top:NaN},set:function(t){this.ensureContentPadding(),this.i.im.top=+t,this._a("contentPaddingTop",this.i.im.top),this.i.im=this.i.im},enumerable:!1,configurable:!0}),r.prototype.ensureContentPadding=function(){this.i.im||(this.i.im=new i.Thickness(2))},Object.defineProperty(r.prototype,"actualContentPaddingBottom",{get:function(){return this.i.il?this.i.il.bottom:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.bottom=+t,this._a("actualContentPaddingBottom",this.i.il.bottom),this.i.il=this.i.il},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualContentPaddingLeft",{get:function(){return this.i.il?this.i.il.left:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.left=+t,this._a("actualContentPaddingLeft",this.i.il.left),this.i.il=this.i.il},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualContentPaddingRight",{get:function(){return this.i.il?this.i.il.right:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.right=+t,this._a("actualContentPaddingRight",this.i.il.right),this.i.il=this.i.il},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualContentPaddingTop",{get:function(){return this.i.il?this.i.il.top:NaN},set:function(t){this.ensureActualContentPadding(),this.i.il.top=+t,this._a("actualContentPaddingTop",this.i.il.top),this.i.il=this.i.il},enumerable:!1,configurable:!0}),r.prototype.ensureActualContentPadding=function(){this.i.il||(this.i.il=new i.Thickness(2))},Object.defineProperty(r.prototype,"cornerRadiusBottomRight",{get:function(){return this.i.gx?this.i.gx.c:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.c=+t,this._a("cornerRadiusBottomRight",this.i.gx.c),this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cornerRadiusBottomLeft",{get:function(){return this.i.gx?this.i.gx.b:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.b=+t,this._a("cornerRadiusBottomLeft",this.i.gx.b),this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cornerRadiusTopLeft",{get:function(){return this.i.gx?this.i.gx.d:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.d=+t,this._a("cornerRadiusTopLeft",this.i.gx.d),this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"cornerRadiusTopRight",{get:function(){return this.i.gx?this.i.gx.e:NaN},set:function(t){this.ensureCornerRadius(),this.i.gx.e=+t,this._a("cornerRadiusTopRight",this.i.gx.e),this.i.gx=this.i.gx},enumerable:!1,configurable:!0}),r.prototype.ensureCornerRadius=function(){this.i.gx||(this.i.gx=new i.CornerRadius(2))},Object.defineProperty(r.prototype,"actualCornerRadiusBottomRight",{get:function(){return this.i.gw?this.i.gw.c:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.c=+t,this._a("actualCornerRadiusBottomRight",this.i.gw.c),this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualCornerRadiusBottomLeft",{get:function(){return this.i.gw?this.i.gw.b:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.b=+t,this._a("actualCornerRadiusBottomLeft",this.i.gw.b),this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualCornerRadiusTopLeft",{get:function(){return this.i.gw?this.i.gw.d:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.d=+t,this._a("actualCornerRadiusTopLeft",this.i.gw.d),this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualCornerRadiusTopRight",{get:function(){return this.i.gw?this.i.gw.e:NaN},set:function(t){this.ensureActualCornerRadius(),this.i.gw.e=+t,this._a("actualCornerRadiusTopRight",this.i.gw.e),this.i.gw=this.i.gw},enumerable:!1,configurable:!0}),r.prototype.ensureActualCornerRadius=function(){this.i.gw||(this.i.gw=new i.CornerRadius(2))},Object.defineProperty(r.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(r.prototype,"density",{get:function(){return this.i.density},set:function(t){this.i.density=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.density))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualDensity",{get:function(){return this.i.am},set:function(t){this.i.am=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("actualDensity",i.enumToString(i.ControlDisplayDensity_$type,this.i.am))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"dropDownButtonVisible",{get:function(){return this.i.dropDownButtonVisible},set:function(t){this.i.dropDownButtonVisible=i.ensureBool(t),this._a("dropDownButtonVisible",this.i.dropDownButtonVisible)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"focusBorderColor",{get:function(){return i.brushToString(this.i.h9)},set:function(t){this.i.h9=i.stringToBrush(t),this._a("focusBorderColor",i.brushToString(this.i.h9))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualFocusBorderColor",{get:function(){return i.brushToString(this.i.hn)},set:function(t){this.i.hn=i.stringToBrush(t),this._a("actualFocusBorderColor",i.brushToString(this.i.hn))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"focusBorderWidth",{get:function(){return this.i.cy},set:function(t){this.i.cy=+t,this._a("focusBorderWidth",this.i.cy)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualFocusBorderWidth",{get:function(){return this.i.cd},set:function(t){this.i.cd=+t,this._a("actualFocusBorderWidth",this.i.cd)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"focusUnderlineColor",{get:function(){return i.brushToString(this.i.ia)},set:function(t){this.i.ia=i.stringToBrush(t),this._a("focusUnderlineColor",i.brushToString(this.i.ia))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualFocusUnderlineColor",{get:function(){return i.brushToString(this.i.ho)},set:function(t){this.i.ho=i.stringToBrush(t),this._a("actualFocusUnderlineColor",i.brushToString(this.i.ho))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"focusUnderlineOpacity",{get:function(){return this.i.cz},set:function(t){this.i.cz=+t,this._a("focusUnderlineOpacity",this.i.cz)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualFocusUnderlineOpacity",{get:function(){return this.i.ce},set:function(t){this.i.ce=+t,this._a("actualFocusUnderlineOpacity",this.i.ce)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"focusUnderlineRippleOpacity",{get:function(){return this.i.c0},set:function(t){this.i.c0=+t,this._a("focusUnderlineRippleOpacity",this.i.c0)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualFocusUnderlineRippleOpacity",{get:function(){return this.i.cf},set:function(t){this.i.cf=+t,this._a("actualFocusUnderlineRippleOpacity",this.i.cf)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"hoverUnderlineColor",{get:function(){return i.brushToString(this.i.ib)},set:function(t){this.i.ib=i.stringToBrush(t),this._a("hoverUnderlineColor",i.brushToString(this.i.ib))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualHoverUnderlineColor",{get:function(){return i.brushToString(this.i.hp)},set:function(t){this.i.hp=i.stringToBrush(t),this._a("actualHoverUnderlineColor",i.brushToString(this.i.hp))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"hoverUnderlineOpacity",{get:function(){return this.i.c1},set:function(t){this.i.c1=+t,this._a("hoverUnderlineOpacity",this.i.c1)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualHoverUnderlineOpacity",{get:function(){return this.i.cg},set:function(t){this.i.cg=+t,this._a("actualHoverUnderlineOpacity",this.i.cg)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"hoverUnderlineWidth",{get:function(){return this.i.c2},set:function(t){this.i.c2=+t,this._a("hoverUnderlineWidth",this.i.c2)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualHoverUnderlineWidth",{get:function(){return this.i.ch},set:function(t){this.i.ch=+t,this._a("actualHoverUnderlineWidth",this.i.ch)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"dataSource",{get:function(){return this.i.itemsSource},set:function(t){this.i.itemsSource=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualDataSource",{get:function(){return this.i.actualDataSource},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"label",{get:function(){return this.i.fb},set:function(t){this.i.fb=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"labelTextColor",{get:function(){return i.brushToString(this.i.ic)},set:function(t){this.i.ic=i.stringToBrush(t),this._a("labelTextColor",i.brushToString(this.i.ic))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualLabelTextColor",{get:function(){return i.brushToString(this.i.hq)},set:function(t){this.i.hq=i.stringToBrush(t),this._a("actualLabelTextColor",i.brushToString(this.i.hq))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"labelTextStyle",{get:function(){return null==this.i.a2?null:this.i.a2.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.a2=e,this._a("labelTextStyle",null!=this.i.a2?this.i.a2.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualLabelVisible",{get:function(){return this.i.actualLabelVisible},set:function(t){this.i.actualLabelVisible=i.ensureBool(t),this._a("actualLabelVisible",this.i.actualLabelVisible)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"noMatchesFoundLabel",{get:function(){return this.i.fh},set:function(t){this.i.fh=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualNoMatchesFoundLabel",{get:function(){return this.i.actualNoMatchesFoundLabel},set:function(t){this.i.actualNoMatchesFoundLabel=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"noMatchesFoundLabelBackgroundColor",{get:function(){return i.brushToString(this.i.id)},set:function(t){this.i.id=i.stringToBrush(t),this._a("noMatchesFoundLabelBackgroundColor",i.brushToString(this.i.id))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualNoMatchesFoundLabelBackgroundColor",{get:function(){return i.brushToString(this.i.hr)},set:function(t){this.i.hr=i.stringToBrush(t),this._a("actualNoMatchesFoundLabelBackgroundColor",i.brushToString(this.i.hr))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"noMatchesFoundLabelTextColor",{get:function(){return i.brushToString(this.i.ie)},set:function(t){this.i.ie=i.stringToBrush(t),this._a("noMatchesFoundLabelTextColor",i.brushToString(this.i.ie))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualNoMatchesFoundLabelTextColor",{get:function(){return i.brushToString(this.i.hs)},set:function(t){this.i.hs=i.stringToBrush(t),this._a("actualNoMatchesFoundLabelTextColor",i.brushToString(this.i.hs))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"noMatchesFoundLabelTextStyle",{get:function(){return null==this.i.a3?null:this.i.a3.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.a3=e,this._a("noMatchesFoundLabelTextStyle",null!=this.i.a3?this.i.a3.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"placeholder",{get:function(){return this.i.fn},set:function(t){this.i.fn=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"rowSeparatorsVisible",{get:function(){return this.i.rowSeparatorsVisible},set:function(t){this.i.rowSeparatorsVisible=i.ensureBool(t),this._a("rowSeparatorsVisible",this.i.rowSeparatorsVisible)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textColor",{get:function(){return i.brushToString(this.i.ig)},set:function(t){this.i.ig=i.stringToBrush(t),this._a("textColor",i.brushToString(this.i.ig))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualTextColor",{get:function(){return i.brushToString(this.i.ht)},set:function(t){this.i.ht=i.stringToBrush(t),this._a("actualTextColor",i.brushToString(this.i.ht))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textStyle",{get:function(){return null==this.i.a4?null:this.i.a4.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.a4=e,this._a("textStyle",null!=this.i.a4?this.i.a4.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"underlineColor",{get:function(){return i.brushToString(this.i.ih)},set:function(t){this.i.ih=i.stringToBrush(t),this._a("underlineColor",i.brushToString(this.i.ih))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualUnderlineColor",{get:function(){return i.brushToString(this.i.hu)},set:function(t){this.i.hu=i.stringToBrush(t),this._a("actualUnderlineColor",i.brushToString(this.i.hu))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"underlineOpacity",{get:function(){return this.i.c3},set:function(t){this.i.c3=+t,this._a("underlineOpacity",this.i.c3)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualUnderlineOpacity",{get:function(){return this.i.ci},set:function(t){this.i.ci=+t,this._a("actualUnderlineOpacity",this.i.ci)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"underlineRippleColor",{get:function(){return i.brushToString(this.i.ii)},set:function(t){this.i.ii=i.stringToBrush(t),this._a("underlineRippleColor",i.brushToString(this.i.ii))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualUnderlineRippleColor",{get:function(){return i.brushToString(this.i.hv)},set:function(t){this.i.hv=i.stringToBrush(t),this._a("actualUnderlineRippleColor",i.brushToString(this.i.hv))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"underlineRippleOpacity",{get:function(){return this.i.c4},set:function(t){this.i.c4=+t,this._a("underlineRippleOpacity",this.i.c4)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualUnderlineRippleOpacity",{get:function(){return this.i.cj},set:function(t){this.i.cj=+t,this._a("actualUnderlineRippleOpacity",this.i.cj)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"underlineRippleWidth",{get:function(){return this.i.c5},set:function(t){this.i.c5=+t,this._a("underlineRippleWidth",this.i.c5)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualUnderlineRippleWidth",{get:function(){return this.i.ck},set:function(t){this.i.ck=+t,this._a("actualUnderlineRippleWidth",this.i.ck)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"underlineWidth",{get:function(){return this.i.c6},set:function(t){this.i.c6=+t,this._a("underlineWidth",this.i.c6)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"actualUnderlineWidth",{get:function(){return this.i.cl},set:function(t){this.i.cl=+t,this._a("actualUnderlineWidth",this.i.cl)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"allowFilter",{get:function(){return this.i.bg},set:function(t){this.i.bg=i.ensureBool(t),this._a("allowFilter",this.i.bg)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sortMode",{get:function(){return this.i.x},set:function(t){this.i.x=i.ensureEnum(qh,t),this._a("sortMode",i.enumToString(qh,this.i.x))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textField",{get:function(){return this.i.fv},set:function(t){this.i.fv=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"text",{get:function(){return this.i.text},set:function(t){this.i.text=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.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(r.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(r.prototype,"value",{get:function(){return this.i.value},set:function(t){this.i.value=t},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"isFixed",{get:function(){return this.i.bn},set:function(t){this.i.bn=i.ensureBool(t),this._a("isFixed",this.i.bn)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"openAsChild",{get:function(){return this.i.bo},set:function(t){this.i.bo=i.ensureBool(t),this._a("openAsChild",this.i.bo)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"useTopLayer",{get:function(){return this.i.br},set:function(t){this.i.br=i.ensureBool(t),this._a("useTopLayer",this.i.br)},enumerable:!1,configurable:!0}),r.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(r.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),r.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},r.prototype._styling=function(t,e,n){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=i.toSpinal("MultiColumnComboBoxComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},r.prototype.closeUp=function(){this.i.closeUp()},r.prototype.dropDown=function(){this.i.dropDown()},r.prototype.select=function(){this.i.select()},r.prototype.exportVisualModel=function(){return this.i.c9()},r.prototype.exportSerializedVisualModel=function(){return this.i.ew()},Object.defineProperty(r.prototype,"gotFocus",{get:function(){return this._gotFocus},set:function(t){var e=this;null!==this._gotFocus_wrapped&&(this.i.gotFocus=i.delegateRemove(this.i.gotFocus,this._gotFocus_wrapped),this._gotFocus_wrapped=null,this._gotFocus=null),this._gotFocus=t,this._gotFocus_wrapped=function(t,i){var n=new Zh;n._provideImplementation(i),e.beforeGotFocus&&e.beforeGotFocus(e,n),e._gotFocus&&e._gotFocus(e,n)},this.i.gotFocus=i.delegateCombine(this.i.gotFocus,this._gotFocus_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"lostFocus",{get:function(){return this._lostFocus},set:function(t){var e=this;null!==this._lostFocus_wrapped&&(this.i.lostFocus=i.delegateRemove(this.i.lostFocus,this._lostFocus_wrapped),this._lostFocus_wrapped=null,this._lostFocus=null),this._lostFocus=t,this._lostFocus_wrapped=function(t,i){var n=new Jh;n._provideImplementation(i),e.beforeLostFocus&&e.beforeLostFocus(e,n),e._lostFocus&&e._lostFocus(e,n)},this.i.lostFocus=i.delegateCombine(this.i.lostFocus,this._lostFocus_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textValueChanged",{get:function(){return this._textValueChanged},set:function(t){var e=this;null!==this._textValueChanged_wrapped&&(this.i.textValueChanged=i.delegateRemove(this.i.textValueChanged,this._textValueChanged_wrapped),this._textValueChanged_wrapped=null,this._textValueChanged=null),this._textValueChanged=t,this._textValueChanged_wrapped=function(t,i){var n=new Qh;n._provideImplementation(i),e.beforeTextValueChanged&&e.beforeTextValueChanged(e,n),e._textValueChanged&&e._textValueChanged(e,n)},this.i.textValueChanged=i.delegateCombine(this.i.textValueChanged,this._textValueChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"selectedValueChanged",{get:function(){return this._selectedValueChanged},set:function(t){var e=this;null!==this._selectedValueChanged_wrapped&&(this.i.selectedValueChanged=i.delegateRemove(this.i.selectedValueChanged,this._selectedValueChanged_wrapped),this._selectedValueChanged_wrapped=null,this._selectedValueChanged=null),this._selectedValueChanged=t,this._selectedValueChanged_wrapped=function(t,i){var n=new Yh;n._provideImplementation(i),e.beforeSelectedValueChanged&&e.beforeSelectedValueChanged(e,n),e._selectedValueChanged&&e._selectedValueChanged(e,n)},this.i.selectedValueChanged=i.delegateCombine(this.i.selectedValueChanged,this._selectedValueChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"keyDown",{get:function(){return this._keyDown},set:function(t){var e=this;null!==this._keyDown_wrapped&&(this.i.keyDown=i.delegateRemove(this.i.keyDown,this._keyDown_wrapped),this._keyDown_wrapped=null,this._keyDown=null),this._keyDown=t,this._keyDown_wrapped=function(t,n){var r=new i.IgcKeyEventArgs;r._provideImplementation(n),e.beforeKeyDown&&e.beforeKeyDown(e,r),e._keyDown&&e._keyDown(e,r)},this.i.keyDown=i.delegateCombine(this.i.keyDown,this._keyDown_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"change",{get:function(){return this._change},set:function(t){var e=this;null!==this._change_wrapped&&(this.i.change=i.delegateRemove(this.i.change,this._change_wrapped),this._change_wrapped=null,this._change=null),this._change=t,this._change_wrapped=function(t,i){var r=new n.IgcInputChangeEventArgs;r._provideImplementation(i),e.beforeChange&&e.beforeChange(e,r),e._change&&e._change(e,r)},this.i.change=i.delegateCombine(this.i.change,this._change_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"changing",{get:function(){return this._changing},set:function(t){var e=this;null!==this._changing_wrapped&&(this.i.changing=i.delegateRemove(this.i.changing,this._changing_wrapped),this._changing_wrapped=null,this._changing=null),this._changing=t,this._changing_wrapped=function(t,i){var r=new n.IgcInputChangeEventArgs;r._provideImplementation(i),e.beforeChanging&&e.beforeChanging(e,r),e._changing&&e._changing(e,r)},this.i.changing=i.delegateCombine(this.i.changing,this._changing_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"textChange",{get:function(){return this._textChange},set:function(t){var e=this;null!==this._textChange_wrapped&&(this.i.propertyChanged=i.delegateRemove(this.i.propertyChanged,this._textChange_wrapped),this._textChange_wrapped=null,this._textChange=null),this._textChange=t,this._textChange_wrapped=function(t,i){var n=e.text;"Text"==i.propertyName&&(e.beforeTextChange&&e.beforeTextChange(e,n),e._textChange&&e._textChange(e,n))},this.i.propertyChanged=i.delegateCombine(this.i.propertyChanged,this._textChange_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"valueChange",{get:function(){return this._valueChange},set:function(t){var e=this;null!==this._valueChange_wrapped&&(this.i.propertyChanged=i.delegateRemove(this.i.propertyChanged,this._valueChange_wrapped),this._valueChange_wrapped=null,this._valueChange=null),this._valueChange=t,this._valueChange_wrapped=function(t,i){var n=e.value;"Value"==i.propertyName&&(e.beforeValueChange&&e.beforeValueChange(e,n),e._valueChange&&e._valueChange(e,n))},this.i.propertyChanged=i.delegateCombine(this.i.propertyChanged,this._valueChange_wrapped)},enumerable:!1,configurable:!0}),r._observedAttributesIgcMultiColumnComboBoxComponent=null,r.htmlTagName="igc-multi-column-combo-box",r._isElementRegistered=!1,r}(i.IgcHTMLElement),ec=function(){function t(){}return t.register=function(){n.IgcXInputGroupModule.register(),Hl.register(),Xl.register(),Yl.register(),Tu.register(),Ul.register(),tc.register(),i.TypeRegistrar.registerCons("IgcMultiColumnComboBoxComponent",tc),i.TypeRegistrar.registerCons("IgcMultiColumnComboBoxComponent",tc),i.TypeRegistrar.register("MultiColumnComboBox",Kh.$type)},t}(),ic=function(){function t(){}return t.register=function(){i.TypeRegistrar.registerCons("IgcFilterOperand",Eo),i.TypeRegistrar.register("FilterOperand",gn.$type)},t}(),nc=function(t){function n(e){var n=t.call(this)||this;return n.b=new Date,n._requestAnimationFrame=null,null!=e&&(n.requestAnimationFrame=e.getRequestAnimationFrame()),n.b=i.dateNow(),n}return e.__extends(n,t),Object.defineProperty(n.prototype,"requestAnimationFrame",{get:function(){return this._requestAnimationFrame},set:function(t){this._requestAnimationFrame=t},enumerable:!1,configurable:!0}),n.prototype.enqueueAction=function(t){window.setTimeout((function(){return t()}),0)},n.prototype.enqueueAnimationAction=function(t){this.requestAnimationFrame((function(){return t()}))},n.prototype.execute=function(t){window.setTimeout((function(){return t()}),0)},n.prototype.executeDelayed=function(t,e){window.setTimeout((function(){return t()}),e)},n.prototype.getCurrentRelativeTime=function(){var t=i.dateNow();return i.truncate(i.timeSpanTotalMilliseconds(+t-+this.b))},n.$t=i.markType(n,"BrowserExecutionContext",i.Base.$,[i.IExecutionContext_$type]),n}(i.Base),rc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new ut},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(),this._initializeAdapters&&this._initializeAdapters()},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}(),oc={},sc=function(t){function n(){var e=t.call(this)||this;return e._contentInitialized=!1,e._renderer=null,e._disconnected=!1,e.containerResized=function(){},e._dataSource=null,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._pageChanged=null,e._pageChanged_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._renderer=new i.WebComponentRenderer(e,document,!0,oc,null),e._implementation=new Ui,e._implementation.executionContext=new nc(null),e._implementation.externalObject=e,e._renderer.addSizeWatcher((function(){e.containerResized()})),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.containerResized()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.containerResized()},enumerable:!1,configurable:!0}),n.prototype.createImplementation=function(){return new Ui},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.onImplementationCreated=function(){},n.prototype.disconnectedCallback=function(){this._disconnected=!0,this._attached=!1},n.prototype.connectedCallback=function(){this._disconnected?this._disconnected=!1:(this._contentInitialized||(this._implementation.provideContainer(this._renderer),this._contentInitialized=!0),this.classList.add("ig-data-grid-pager"),this.classList.add("igc-data-grid-pager"),this._attached=!0,this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit())},n.prototype.afterContentInit=function(){this.i.targetGrid=this.targetGrid.i,this.targetGrid||(this.i.itemsSource=this._dataSource)},Object.defineProperty(n.prototype,"actualDataSource",{get:function(){return this.i.actualDataSource},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dataSource",{get:function(){return this._dataSource},set:function(t){this._dataSource=t,null!=this.i&&(this.i.itemsSource=this._dataSource)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"targetGrid",{get:function(){return null==this.i.targetGrid?null:this.i.targetGrid.externalObject},set:function(t){this.i.targetGrid=null==t?null:t.i},enumerable:!1,configurable:!0}),n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridPagerComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridPagerComponent=t}return n._observedAttributesIgcDataGridPagerComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"pagerText",{get:function(){return this.i.a9},set:function(t){this.i.a9=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pageSize",{get:function(){return this.i.ao},set:function(t){this.i.ao=+t,this._a("pageSize",this.i.ao)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pageCount",{get:function(){return this.i.an},set:function(t){this.i.an=+t,this._a("pageCount",this.i.an)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"currentPage",{get:function(){return this.i.ak},set:function(t){this.i.ak=+t,this._a("currentPage",this.i.ak)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textStyle",{get:function(){return null==this.i.s?null:this.i.s.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.s=e,this._a("textStyle",null!=this.i.s?this.i.s.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"background",{get:function(){return i.brushToString(this.i.ca)},set:function(t){this.i.ca=i.stringToBrush(t),this._a("background",i.brushToString(this.i.ca))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"border",{get:function(){return i.brushToString(this.i.border)},set:function(t){this.i.border=i.stringToBrush(t),this._a("border",i.brushToString(this.i.border))},enumerable:!1,configurable:!0}),n.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("DataGridPagerComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.nextPage=function(){this.i.bn()},n.prototype.previousPage=function(){this.i.by()},n.prototype.firstPage=function(){this.i.bk()},n.prototype.lastPage=function(){this.i.bm()},n.prototype.provideContainer=function(t){this.i.provideContainer(t)},n.prototype.exportVisualModel=function(){return this.i.as()},n.prototype.exportSerializedVisualModel=function(){return this.i.az()},Object.defineProperty(n.prototype,"pageChanged",{get:function(){return this._pageChanged},set:function(t){var e=this;null!==this._pageChanged_wrapped&&(this.i.pageChanged=i.delegateRemove(this.i.pageChanged,this._pageChanged_wrapped),this._pageChanged_wrapped=null,this._pageChanged=null),this._pageChanged=t,this._pageChanged_wrapped=function(t,i){var n=new rc;n._provideImplementation(i),e.beforePageChanged&&e.beforePageChanged(e,n),e._pageChanged&&e._pageChanged(e,n)},this.i.pageChanged=i.delegateCombine(this.i.pageChanged,this._pageChanged_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcDataGridPagerComponent=null,n.htmlTagName="igc-data-grid-pager",n._isElementRegistered=!1,n}(i.IgcHTMLElement),ac=function(){function t(){}return t.register=function(){n.IgcXButtonModule.register(),sc.register(),i.TypeRegistrar.registerCons("IgcDataGridPagerComponent",sc)},t}(),lc=new i.Type(null,"IDataGridComponent"),uc=new i.Type(null,"IToolbarVisualModelExport"),hc=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.serialize=function(){return"{}"},n.$t=i.markType(n,"ToolbarVisualModelExport",i.Base.$,[uc]),n}(i.Base),cc=function(t){function r(){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 i.List$1(i.Delegate_$type,0),e}return e.__extends(r,t),r.prototype.s=function(){},r.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},r.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")}},r.prototype.z=function(){null!=this.c&&null!=this.a.be&&this.c.rootWrapper.setStyleProperty("background-color",this.a.be._fill)},r.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")},r.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()},r.prototype.ah=function(){null!=this.k&&null!=this.a.bg&&this.k.setStyleProperty("color",this.a.bg._fill)},r.prototype.ai=function(){null!=this.k&&null!=this.a.n&&this.k.setStyleProperty("font",this.a.n.fontString)},r.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",i.runOn(this,this.n))):this.f.show():this.f.hide()}},r.prototype.ae=function(){null!=this.d&&this.d.getChildAt(1).setText(this.a.s.toString())},r.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)}},r.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()},r.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",i.runOn(this,this.u))):this.h.show():this.h.hide()}},r.prototype.af=function(){null!=this.i&&this.i.getChildAt(1).setText(this.a.t.toString())},r.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)}},r.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()},r.prototype.w=function(t){var e=n.ElevationHelper.e(12,i.BrushUtil.j(66,0,0,0),i.BrushUtil.j(30,0,0,0),i.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")},r.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)},r.prototype.t=function(){null!=this.g&&(this.b.add(this.c.globalListen("document","keydown",i.runOn(this,this.q))),this.b.add(this.c.globalListen("document","click",i.runOn(this,this.r))),this.g.show(),this.g.listen("click",i.runOn(this,this.m)))},r.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}},r.prototype.m=function(t){t.stopPropagation()},r.prototype.q=function(t){8==i.BaseDOMEventProxy.c0(t)&&this.a.av()},r.prototype.r=function(t){this.a.av()},r.prototype.o=function(){},r.$t=i.markType(r,"DataGridToolbarView"),r}(i.Base),pc=function(t){function r(){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=i.BrushUtil.j(255,24,29,31),e.bb=i.BrushUtil.j(255,248,248,248),e.bc=i.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 i.Thickness(1,1,1,1,0),e.k=2,e.i=1,e.s=0,e.t=0;var n=new cc;return n.a=e,e.c=n,e.c.s(),e}return e.__extends(r,t),r.prototype.notifySizeChanged=function(){this.c.o()},r.prototype.destroy=function(){if(this.provideContainer(null,null,null),null!=this.e){var t=this.e;t.columnHiddenChanged=i.delegateRemove(t.columnHiddenChanged,i.runOn(this,this.a9));var e=this.e;e.columnPinnedChanged=i.delegateRemove(e.columnPinnedChanged,i.runOn(this,this.ba))}},r.prototype.provideContainer=function(t,e,i){this.a=e,this.b=i,this.a6(),this.a7(),this.c.p(t)},Object.defineProperty(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.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(r.prototype,"l",{get:function(){return this.k},set:function(t){var e=this.k;this.k=t,e!=this.k&&this.a0("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.k))},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"j",{get:function(){return this.i},set:function(t){var e=this.i;this.i=t,e!=this.i&&this.a0("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,this.i))},enumerable:!1,configurable:!0}),r.prototype.a0=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.a1(t,e,n)},r.prototype.a1=function(t,e,n){switch(t){case"TargetGrid":this.a6(),this.a7(),this.a8(i.typeCast(tn.$,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()}},r.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}},r.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)},r.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()},r.prototype.a5=function(t,e,i,o,s){var a=new n.XButton,l=e.getSubRenderer(i);a.provideContainer(l);l.getExternal(a,l.rootWrapper,l.getExternal(t,null,null));a.n=this.j,a.r=this.l;var u=null,h=null,c=null;switch(s){case"Hiding":this.g=a,u=r.ao,h=this.s.toString(),null!=this.ad&&(c=this.ad);break;case"Pinning":this.h=a,u=r.ap,h=this.t.toString(),null!=this.ai&&(c=this.ai)}a.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=e.createElement("div");p.setStyleProperty("display","inline-block"),p.setStyleProperty("margin-right","5px");var d=e.getSubRenderer(p),f=new n.XIcon;f.provideContainer(d);d.getExternal(f,d.rootWrapper,d.getExternal(t,null,null));f.svgPath=u,o.append(p);var m=e.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(h),o.append(m),null!=c){var g=e.createElement("span");g.setStyleProperty("display","inline-block"),g.setStyleProperty("font-size","12px"),g.setStyleProperty("font-weight","600"),g.setText(c),o.append(g)}a.appendButtonContent(o)},r.prototype.av=function(){this.c.l()},r.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 i.Thickness(1,-16,3,-16,3)))},r.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 i.Thickness(1,-16,3,-16,3)))},r.prototype.a8=function(t){if(null!=t&&(t.columnHiddenChanged=i.delegateRemove(t.columnHiddenChanged,i.runOn(this,this.a9)),t.columnPinnedChanged=i.delegateRemove(t.columnPinnedChanged,i.runOn(this,this.ba)),t.propertyChanged=i.delegateRemove(t.propertyChanged,i.runOn(this,this.az))),null!=this.e){var e=this.e;e.columnHiddenChanged=i.delegateCombine(e.columnHiddenChanged,i.runOn(this,this.a9));var n=this.e;n.columnPinnedChanged=i.delegateCombine(n.columnPinnedChanged,i.runOn(this,this.ba));var r=this.e;r.propertyChanged=i.delegateCombine(r.propertyChanged,i.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)}},r.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()},r.prototype.a9=function(t,e){this.ax()},r.prototype.ba=function(t,e){this.ax()},r.prototype.exportVisualModel=function(){return this.f()},r.prototype.exportSerializedVisualModel=function(){return this.f().serialize()},r.prototype.f=function(){return new hc},r.$t=i.markType(r,"DataGridToolbar",i.Base.$,[i.INotifyPropertyChanged_$type,lc]),r.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",r.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",r}(i.Base),dc=function(t){function n(){var e=t.call(this)||this;e._disconnected=!1,e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._renderer=new i.WebComponentRenderer(e,document,!0,null),e._implementation=e.createImplementation(),e._container=e._renderer.createElement("div"),e._renderer.updateRoot(e._container);var n=e.i;return e._toolbar=n,e._renderer.addSizeWatcher((function(){e._toolbar.notifySizeChanged()})),e}return e.__extends(n,t),Object.defineProperty(n.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),n.prototype.updateStyle=function(){this._styling(this,this)},n.prototype.destroy=function(){this._toolbar.destroy()},n.prototype.createImplementation=function(){return new pc},n.prototype.disconnectedCallback=function(){this._disconnected=!0},n.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-data-grid-toolbar"),this.classList.add("igc-data-grid-toolbar");var t=this._renderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width;var e=this._renderer.createElement("span");this._container.append(e);var i=this._renderer.createElement("div");this._container.append(i);var n=this._renderer.createElement("div");i.append(n);var r=this._renderer.createElement("div");i.append(r);var o=this._renderer.createElement("div");this._container.append(o);var s=this._renderer.createElement("igc-column-chooser");o.append(s);var a=this._renderer.createElement("div");this._container.append(a);var l=this._renderer.createElement("igc-column-pinning");a.append(l),this._toolbar.provideContainer(this._renderer,s.getNativeElement().i,l.getNativeElement().i),this._toolbar.notifySizeChanged(),this._flushQueuedAttributes(),this._styling(this,this),this.afterContentInit()}},n.prototype.afterContentInit=function(){this.i.notifySizeChanged()},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridToolbarComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridToolbarComponent=t}return n._observedAttributesIgcDataGridToolbarComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.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(n.prototype,"toolbarTitle",{get:function(){return this.i.ar},set:function(t){this.i.ar=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbarTitleStyle",{get:function(){return null==this.i.n?null:this.i.n.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.n=e,this._a("toolbarTitleStyle",null!=this.i.n?this.i.n.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"toolbarTitleColor",{get:function(){return i.brushToString(this.i.bg)},set:function(t){this.i.bg=i.stringToBrush(t),this._a("toolbarTitleColor",i.brushToString(this.i.bg))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.be)},set:function(t){this.i.be=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.be))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dialogBackgroundColor",{get:function(){return i.brushToString(this.i.bf)},set:function(t){this.i.bf=i.stringToBrush(t),this._a("dialogBackgroundColor",i.brushToString(this.i.bf))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnChooser",{get:function(){return this.i.q},set:function(t){this.i.q=i.ensureBool(t),this._a("columnChooser",this.i.q)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnChooserText",{get:function(){return this.i.ad},set:function(t){this.i.ad=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnChooserTitle",{get:function(){return this.i.af},set:function(t){this.i.af=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnPinning",{get:function(){return this.i.r},set:function(t){this.i.r=i.ensureBool(t),this._a("columnPinning",this.i.r)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnPinningText",{get:function(){return this.i.ai},set:function(t){this.i.ai=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"columnPinningTitle",{get:function(){return this.i.ak},set:function(t){this.i.ak=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthBottom",{get:function(){return this.i.bi?this.i.bi.bottom:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.bottom=+t,this._a("borderWidthBottom",this.i.bi.bottom),this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthLeft",{get:function(){return this.i.bi?this.i.bi.left:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.left=+t,this._a("borderWidthLeft",this.i.bi.left),this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthRight",{get:function(){return this.i.bi?this.i.bi.right:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.right=+t,this._a("borderWidthRight",this.i.bi.right),this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"borderWidthTop",{get:function(){return this.i.bi?this.i.bi.top:NaN},set:function(t){this.ensureBorderWidth(),this.i.bi.top=+t,this._a("borderWidthTop",this.i.bi.top),this.i.bi=this.i.bi},enumerable:!1,configurable:!0}),n.prototype.ensureBorderWidth=function(){this.i.bi||(this.i.bi=new i.Thickness(2))},Object.defineProperty(n.prototype,"density",{get:function(){return this.i.l},set:function(t){this.i.l=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.l))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"baseTheme",{get:function(){return this.i.j},set:function(t){this.i.j=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.j))},enumerable:!1,configurable:!0}),n.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(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("DataGridToolbarComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this.targetGrid&&this.targetGrid._styling&&this.targetGrid._styling(t,e,this),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.exportVisualModel=function(){return this.i.exportVisualModel()},n.prototype.exportSerializedVisualModel=function(){return this.i.exportSerializedVisualModel()},n._observedAttributesIgcDataGridToolbarComponent=null,n.htmlTagName="igc-data-grid-toolbar",n._isElementRegistered=!1,n}(i.IgcHTMLElement),fc=function(){function t(){}return t.register=function(){vu.register(),xu.register(),n.IgcXButtonModule.register(),n.IgcXIconModule.register(),dc.register(),i.TypeRegistrar.registerCons("IgcDataGridToolbarComponent",dc),i.TypeRegistrar.registerCons("IgcDataGridToolbarComponent",dc),i.TypeRegistrar.register("DataGridToolbar",pc.$type)},t}(),mc=function(){function t(){}return t.register=function(){zu.register(),zh.register(),Mu.register(),n.IgcXInputGroupModule.register(),ec.register(),ic.register(),_u.register(),ac.register(),fc.register()},t}(),gc=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._cellInfo=null,e._content=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"cellInfo",{get:function(){return this._cellInfo},set:function(t){this._cellInfo=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"content",{get:function(){return this._content},set:function(t){this._content=t},enumerable:!1,configurable:!0}),n.$t=i.markType(n,"TemplateSectionHeaderCellUpdatingEventArgs",i.EventArgs.$),n}(i.EventArgs),bc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated()}return t.prototype.createImplementation=function(){return new gc},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 Er;break;case"ImageCellModel":t=new Br;break;case"NumericCellModel":t=new Dr;break;case"RowSeparatorModel":t=new $r;break;case"SectionHeaderCellModel":t=new Mr;break;case"TemplateCellModel":t=new zr;break;case"TemplateHeaderCellModel":t=new Gr;break;case"TemplateSectionHeaderCellModel":t=new qr;break;case"TextCellModel":t=new Lr;break;case"TextHeaderCellModel":t=new Hr}t._implementation=this.i.cellInfo,this.i.cellInfo.externalObject=t}return this.i.cellInfo.externalObject},enumerable:!1,configurable:!0}),t}(),yc=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)"}}(),vc=function(){function t(){}return t.register=function(){i.Localization.register("DataGrid-en",new yc)},t}(),Cc=new i.Type(null,"ComboEditorView_ComboExternal"),_c=new i.Type(null,"CheckboxListExternal"),wc=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.b=0,e.a=0,e}return e.__extends(n,t),n.$t=i.markType(n,"CheckboxListExternalIndexTypeChangedEventArgs"),n}(i.Base),Sc=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"CheckboxListExternalKeysClearedEventArgs"),n}(i.Base),Pc=new i.Type(null,"CheckboxListViewExternal"),Oc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Qt},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(),this._initializeAdapters&&this._initializeAdapters()},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=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"easingFunctionType",{get:function(){return this.i.c},set:function(t){this.i.c=i.ensureEnum(Xt,t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),xc=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Di},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isHidden",{get:function(){return this.i.mr},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"dataType",{get:function(){return this.i.mi},set:function(t){this.i.mi=i.ensureEnum(i.DataSourceSchemaPropertyType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"errorMessage",{get:function(){return this.i.nn},set:function(t){this.i.nn=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editValue",{get:function(){return this.i.na},set:function(t){this.i.na=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorType",{get:function(){return this.i.mm},set:function(t){this.i.mm=i.ensureEnum(z,t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorDataSource",{get:function(){return this.i.m9},set:function(t){this.i.m9=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"editorTextField",{get:function(){return this.i.ni},set:function(t){this.i.ni=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.prototype,"dateFormatString",{get:function(){return this.i.nf},set:function(t){this.i.nf=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"showTodayButton",{get:function(){return this.i.ms},set:function(t){this.i.ms=i.ensureBool(t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"targetRow",{get:function(){return this.i.m7},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"targetColumn",{get:function(){return this.i.m6},enumerable:!1,configurable:!0}),n.prototype.findByName=function(e){var i=t.prototype.findByName.call(this,e);return i||(this.editTarget&&this.editTarget.name&&this.editTarget.name==e?this.editTarget:null)},n}(Ar),jc=function(t){function i(){return t.call(this)||this}return e.__extends(i,t),i.prototype.createImplementation=function(){return new Mi},Object.defineProperty(i.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),i}(Ar),kc=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new zi},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"resolvedSummaryLabel",{get:function(){return this.i.mn},set:function(t){this.i.mn=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"resolvedSummaryValue",{get:function(){return this.i.mp},set:function(t){this.i.mp=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"summaryLabelTextColor",{get:function(){return i.brushToString(this.i.mu)},set:function(t){this.i.mu=i.stringToBrush(t)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"font",{get:function(){return null==this.i.mg?null:this.i.mg.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.mg=e},enumerable:!1,configurable:!0}),n}(Ar),Ic=function(t){function i(){return t.call(this)||this}return e.__extends(i,t),i.prototype.createImplementation=function(){return new Ni},Object.defineProperty(i.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),i}(Ar),Tc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new X},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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Rc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Q},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(),this._initializeAdapters&&this._initializeAdapters()},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=i.ensureEnum(i.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}(),Ac=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new la},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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Ec=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new sa},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),Bc=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"OperatorSelectorClosingEventArgs",i.EventArgs.$),n}(i.EventArgs),Dc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Bc},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),$c=function(t){function n(){var e=t.call(this)||this;return e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._valueChanged=null,e._valueChanged_wrapped=null,e._opening=null,e._opening_wrapped=null,e._opened=null,e._opened_wrapped=null,e._closing=null,e._closing_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new ha},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridComparisonOperatorSelectorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridComparisonOperatorSelectorComponent=t}return n._observedAttributesIgcDataGridComparisonOperatorSelectorComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"value",{get:function(){return this.i.b},set:function(t){this.i.b=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"customFilterID",{get:function(){return this.i.ae},set:function(t){this.i.ae=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"customFilterIndex",{get:function(){return this.i.x},set:function(t){this.i.x=+t,this._a("customFilterIndex",this.i.x)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"dataType",{get:function(){return this.i.d},set:function(t){this.i.d=i.ensureEnum(i.DataSourceSchemaPropertyType_$type,t),this._a("dataType",i.enumToString(i.DataSourceSchemaPropertyType_$type,this.i.d))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"maxHeight",{get:function(){return this.i.z},set:function(t){this.i.z=+t,this._a("maxHeight",this.i.z)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"textColor",{get:function(){return i.brushToString(this.i.eq)},set:function(t){this.i.eq=i.stringToBrush(t),this._a("textColor",i.brushToString(this.i.eq))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"background",{get:function(){return i.brushToString(this.i.ep)},set:function(t){this.i.ep=i.stringToBrush(t),this._a("background",i.brushToString(this.i.ep))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionTrue",{get:function(){return this.i.dd},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionFalse",{get:function(){return this.i.ck},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionEquals",{get:function(){return this.i.cj},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionNotEquals",{get:function(){return this.i.cz},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionLessThan",{get:function(){return this.i.cr},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionLessThanOrEqual",{get:function(){return this.i.cs},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionGreaterThan",{get:function(){return this.i.cl},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionGreaterThanOrEqual",{get:function(){return this.i.cm},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionTop",{get:function(){return this.i.db},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionBottom",{get:function(){return this.i.cb},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionTopPercentile",{get:function(){return this.i.dc},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionBottomPercentile",{get:function(){return this.i.cc},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionToday",{get:function(){return this.i.c9},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionTomorrow",{get:function(){return this.i.da},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionYesterday",{get:function(){return this.i.dg},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionThisWeek",{get:function(){return this.i.c7},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionNextWeek",{get:function(){return this.i.cw},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionLastWeek",{get:function(){return this.i.cp},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionThisMonth",{get:function(){return this.i.c5},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionNextMonth",{get:function(){return this.i.cu},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionLastMonth",{get:function(){return this.i.cn},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionThisQuarter",{get:function(){return this.i.c6},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionNextQuarter",{get:function(){return this.i.cv},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionLastQuarter",{get:function(){return this.i.co},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionThisYear",{get:function(){return this.i.c8},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionNextYear",{get:function(){return this.i.cx},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionLastYear",{get:function(){return this.i.cq},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionYearToDate",{get:function(){return this.i.df},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionQ1",{get:function(){return this.i.c0},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionQ2",{get:function(){return this.i.c1},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionQ3",{get:function(){return this.i.c2},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionQ4",{get:function(){return this.i.c3},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionMonth",{get:function(){return this.i.ct},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionYear",{get:function(){return this.i.de},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionStartsWith",{get:function(){return this.i.c4},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionDoesNotStartWith",{get:function(){return this.i.cg},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionEndsWith",{get:function(){return this.i.ci},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionDoesNotEndWith",{get:function(){return this.i.cf},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionContains",{get:function(){return this.i.cd},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionDoesNotContain",{get:function(){return this.i.ce},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionEmpty",{get:function(){return this.i.ch},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"operatorCaptionNotEmpty",{get:function(){return this.i.cy},enumerable:!1,configurable:!0}),n.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("DataGridComparisonOperatorSelectorComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.provideContainer=function(t){this.i.ej(t)},n.prototype.dispose=function(){this.i.ea()},n.prototype.getDropdownHeight=function(){return this.i.y()},n.prototype.toggle=function(){this.i.em()},n.prototype.close=function(){this.i.d8()},n.prototype.addCustomOperator=function(t,e,i,n){this.i.d1(t,e,i,n)},n.prototype.clearCustomOperators=function(){this.i.d7()},n.prototype.selectCustomFilter=function(t,e){this.i.ek(t,e)},Object.defineProperty(n.prototype,"valueChanged",{get:function(){return this._valueChanged},set:function(t){var e=this;null!==this._valueChanged_wrapped&&(this.i.valueChanged=i.delegateRemove(this.i.valueChanged,this._valueChanged_wrapped),this._valueChanged_wrapped=null,this._valueChanged=null),this._valueChanged=t,this._valueChanged_wrapped=function(t,i){var n=new Ac;n._provideImplementation(i),e.beforeValueChanged&&e.beforeValueChanged(e,n),e._valueChanged&&e._valueChanged(e,n)},this.i.valueChanged=i.delegateCombine(this.i.valueChanged,this._valueChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"opening",{get:function(){return this._opening},set:function(t){var e=this;null!==this._opening_wrapped&&(this.i.opening=i.delegateRemove(this.i.opening,this._opening_wrapped),this._opening_wrapped=null,this._opening=null),this._opening=t,this._opening_wrapped=function(t,i){var n=new Ec;n._provideImplementation(i),e.beforeOpening&&e.beforeOpening(e,n),e._opening&&e._opening(e,n)},this.i.opening=i.delegateCombine(this.i.opening,this._opening_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"opened",{get:function(){return this._opened},set:function(t){var e=this;null!==this._opened_wrapped&&(this.i.opened=i.delegateRemove(this.i.opened,this._opened_wrapped),this._opened_wrapped=null,this._opened=null),this._opened=t,this._opened_wrapped=function(t,i){var n=new Ec;n._provideImplementation(i),e.beforeOpened&&e.beforeOpened(e,n),e._opened&&e._opened(e,n)},this.i.opened=i.delegateCombine(this.i.opened,this._opened_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"closing",{get:function(){return this._closing},set:function(t){var e=this;null!==this._closing_wrapped&&(this.i.closing=i.delegateRemove(this.i.closing,this._closing_wrapped),this._closing_wrapped=null,this._closing=null),this._closing=t,this._closing_wrapped=function(t,i){var n=new Dc;n._provideImplementation(i),e.beforeClosing&&e.beforeClosing(e,n),e._closing&&e._closing(e,n)},this.i.closing=i.delegateCombine(this.i.closing,this._closing_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcDataGridComparisonOperatorSelectorComponent=null,n.htmlTagName="igc-data-grid-comparison-operator-selector",n._isElementRegistered=!1,n}(i.IgcHTMLElement),Mc=i.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"),zc=i.markEnum("StringOperatorTypes","Contains,12|NotContains,13|StartsWith,14|DoesNotStartWith,15|EndsWith,16|DoesNotEndWith,17"),Nc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Ca},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"column",{get:function(){var t=this.i.a;if(null==t)return null;if(!t.externalObject){var e=Do._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}(),Fc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new _a},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"filter",{get:function(){return this.i.a},set:function(t){this.i.a=t},enumerable:!1,configurable:!0}),t}(),Gc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Oa},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),Vc=function(t){function n(){var e=t.call(this)||this;return e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._dialogOpening=null,e._dialogOpening_wrapped=null,e._filterChanging=null,e._filterChanging_wrapped=null,e._filterChanged=null,e._filterChanged_wrapped=null,e._renderCompleted=null,e._renderCompleted_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Ia},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridFilterDialogComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridFilterDialogComponent=t}return n._observedAttributesIgcDataGridFilterDialogComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"isAnimationEnabled",{get:function(){return this.i.ab},set:function(t){this.i.ab=i.ensureBool(t),this._a("isAnimationEnabled",this.i.ab)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pixelScalingRatio",{get:function(){return this.i.aj},set:function(t){this.i.aj=+t,this._a("pixelScalingRatio",this.i.aj)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualPixelScalingRatio",{get:function(){return this.i.ai},set:function(t){this.i.ai=+t,this._a("actualPixelScalingRatio",this.i.ai)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"iconColor",{get:function(){return i.brushToString(this.i.bw)},set:function(t){this.i.bw=i.stringToBrush(t),this._a("iconColor",i.brushToString(this.i.bw))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"viewSize",{get:function(){return this.i.ak},set:function(t){this.i.ak=+t,this._a("viewSize",this.i.ak)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isOpen",{get:function(){return this.i.ac},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"commandCompleted",{get:function(){return this.i.commandCompleted},set:function(t){this.i.commandCompleted=t},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"invalidateActions",{get:function(){return this.i.invalidateActions},set:function(t){this.i.invalidateActions=t},enumerable:!1,configurable:!0}),n.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("DataGridFilterDialogComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.notifySizeChanged=function(t,e){this.i.be(t,e)},n.prototype.notifyCellSizeChanged=function(){this.i.bd()},n.prototype.showIcon=function(){this.i.br()},n.prototype.hideIcon=function(){this.i.bb()},n.prototype.getDesiredToolbarActions=function(){return this.i.getDesiredToolbarActions()},n.prototype.addCommandAvailabilityListener=function(t){this.i.addCommandAvailabilityListener(t)},n.prototype.removeCommandAvailabilityListener=function(t){this.i.removeCommandAvailabilityListener(t)},n.prototype.addCommandStateChangedListener=function(t){this.i.addCommandStateChangedListener(t)},n.prototype.removeCommandStateChangedListener=function(t){this.i.removeCommandStateChangedListener(t)},n.prototype.provideContextAccessor=function(t){this.i.provideContextAccessor(t)},n.prototype.dismissContextAccessor=function(t){this.i.dismissContextAccessor(t)},Object.defineProperty(n.prototype,"dialogOpening",{get:function(){return this._dialogOpening},set:function(t){var e=this;null!==this._dialogOpening_wrapped&&(this.i.dialogOpening=i.delegateRemove(this.i.dialogOpening,this._dialogOpening_wrapped),this._dialogOpening_wrapped=null,this._dialogOpening=null),this._dialogOpening=t,this._dialogOpening_wrapped=function(t,i){var n=new Nc;n._provideImplementation(i),e.beforeDialogOpening&&e.beforeDialogOpening(e,n),e._dialogOpening&&e._dialogOpening(e,n)},this.i.dialogOpening=i.delegateCombine(this.i.dialogOpening,this._dialogOpening_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterChanging",{get:function(){return this._filterChanging},set:function(t){var e=this;null!==this._filterChanging_wrapped&&(this.i.filterChanging=i.delegateRemove(this.i.filterChanging,this._filterChanging_wrapped),this._filterChanging_wrapped=null,this._filterChanging=null),this._filterChanging=t,this._filterChanging_wrapped=function(t,i){var n=new Fc;n._provideImplementation(i),e.beforeFilterChanging&&e.beforeFilterChanging(e,n),e._filterChanging&&e._filterChanging(e,n)},this.i.filterChanging=i.delegateCombine(this.i.filterChanging,this._filterChanging_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"filterChanged",{get:function(){return this._filterChanged},set:function(t){var e=this;null!==this._filterChanged_wrapped&&(this.i.filterChanged=i.delegateRemove(this.i.filterChanged,this._filterChanged_wrapped),this._filterChanged_wrapped=null,this._filterChanged=null),this._filterChanged=t,this._filterChanged_wrapped=function(t,i){var n=new Fc;n._provideImplementation(i),e.beforeFilterChanged&&e.beforeFilterChanged(e,n),e._filterChanged&&e._filterChanged(e,n)},this.i.filterChanged=i.delegateCombine(this.i.filterChanged,this._filterChanged_wrapped)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"renderCompleted",{get:function(){return this._renderCompleted},set:function(t){var e=this;null!==this._renderCompleted_wrapped&&(this.i.renderCompleted=i.delegateRemove(this.i.renderCompleted,this._renderCompleted_wrapped),this._renderCompleted_wrapped=null,this._renderCompleted=null),this._renderCompleted=t,this._renderCompleted_wrapped=function(t,i){var n=new Gc;n._provideImplementation(i),e.beforeRenderCompleted&&e.beforeRenderCompleted(e,n),e._renderCompleted&&e._renderCompleted(e,n)},this.i.renderCompleted=i.delegateCombine(this.i.renderCompleted,this._renderCompleted_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcDataGridFilterDialogComponent=null,n.htmlTagName="igc-data-grid-filter-dialog",n._isElementRegistered=!1,n}(i.IgcHTMLElement),qc=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.$t=i.markType(n,"ColumnOptionsToolbarManagerOpeningEventArgs",i.EventArgs.$),n}(i.EventArgs),Lc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Sa},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(),this._initializeAdapters&&this._initializeAdapters()},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=i.ensureBool(t)},enumerable:!1,configurable:!0}),t.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},t}(),Hc=function(t){function n(e){var n=t.call(this)||this;if(Lc.$type||(Lc.$type=i.markType(Lc,"IgcGridFilterDialogViewModelGrouping")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Lc.$type||(Lc.$type=i.markType(Lc,"IgcGridFilterDialogViewModelGrouping"));var t=new i.SyncableObservableCollection$2(Lc.$type,Sa.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Lc)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Wc=function(t){function n(e){var n=t.call(this)||this;if(Hc.$type||(Hc.$type=i.markType(Hc,"IgcGridFilterDialogViewModelGroupingLevel")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Hc.$type||(Hc.$type=i.markType(Hc,"IgcGridFilterDialogViewModelGroupingLevel"));var t=new i.SyncableObservableCollection$2(Hc.$type,Pa.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Hc)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Uc=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(),this._initializeAdapters&&this._initializeAdapters()},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}(),Kc=function(t){function n(e){var n=t.call(this)||this;if(Uc.$type||(Uc.$type=i.markType(Uc,"IgcGridFilterDialogViewModelRow")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){Uc.$type||(Uc.$type=i.markType(Uc,"IgcGridFilterDialogViewModelRow"));var t=new i.SyncableObservableCollection$2(Uc.$type,wa.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new Uc)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Xc=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 Ta},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(),this._initializeAdapters&&this._initializeAdapters()},Object.defineProperty(t.prototype,"propertyType",{get:function(){return this.i.a},set:function(t){this.i.a=i.ensureEnum(i.DataSourceSchemaPropertyType_$type,t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"groupingLevels",{get:function(){if(null===this._groupingLevels){var t=new Wc,e=this.i.e;e||(e=new xa),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 Wc;this._groupingLevels=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(Pa.$type),r=this.i.e;r||(r=new xa),n._inner=r,n.clear(),this._groupingLevels._setSyncTarget(n),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=i.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 Kc,e=this.i.f;e||(e=new Ra),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 Kc;this._rows=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(wa.$type),r=this.i.f;r||(r=new Ra),n._inner=r,n.clear(),this._rows._setSyncTarget(n),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,i){this.i.o(t,e,i)},t}(),Qc=function(t){function n(){var e=t.call(this)||this;return e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Ws},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridExpansionIndicatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridExpansionIndicatorComponent=t}return n._observedAttributesIgcDataGridExpansionIndicatorComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"isExpanded",{get:function(){return this.i.g},set:function(t){this.i.g=i.ensureBool(t),this._a("isExpanded",this.i.g)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"iconColor",{get:function(){return i.brushToString(this.i.ae)},set:function(t){this.i.ae=i.stringToBrush(t),this._a("iconColor",i.brushToString(this.i.ae))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isAnimationEnabled",{get:function(){return this.i.f},set:function(t){this.i.f=i.ensureBool(t),this._a("isAnimationEnabled",this.i.f)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pixelScalingRatio",{get:function(){return this.i.m},set:function(t){this.i.m=+t,this._a("pixelScalingRatio",this.i.m)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualPixelScalingRatio",{get:function(){return this.i.j},set:function(t){this.i.j=+t,this._a("actualPixelScalingRatio",this.i.j)},enumerable:!1,configurable:!0}),n.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("DataGridExpansionIndicatorComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.notifySizeChanged=function(t,e){this.i.y(t,e)},n._observedAttributesIgcDataGridExpansionIndicatorComponent=null,n.htmlTagName="igc-data-grid-expansion-indicator",n._isElementRegistered=!1,n}(i.IgcHTMLElement),Yc=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new Os},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(),this._initializeAdapters&&this._initializeAdapters()},t}(),Zc=function(t){function n(){var e=t.call(this)||this;return e._settingAttributes=!1,e._attached=!1,e._queuedSetAttributes=[],e._updatingFromAttribute=!1,e.__p=null,e._hasUserValues=new Set,e._stylingContainer=null,e._stylingParent=null,e._inStyling=!1,e._renderCompleted=null,e._renderCompleted_wrapped=null,e._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(e)),e._implementation=e.createImplementation(),e._implementation.externalObject=e,e.onImplementationCreated(),e._initializeAdapters&&e._initializeAdapters(),e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new js},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n._createFromInternal=function(t){if(!t)return null;if(!t.$type)return null;var e="Igc"+t.$type.name+"Component";return i.TypeRegistrar.isRegistered(e)?i.TypeRegistrar.create(e):null},n.prototype.onImplementationCreated=function(){},n.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},n.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},n.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcDataGridSortIndicatorComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcDataGridSortIndicatorComponent=t}return n._observedAttributesIgcDataGridSortIndicatorComponent},enumerable:!1,configurable:!0}),n.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"sortDirection",{get:function(){return this.i.b},set:function(t){this.i.b=i.ensureEnum(x,t),this._a("sortDirection",i.enumToString(x,this.i.b))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"iconColor",{get:function(){return i.brushToString(this.i.a0)},set:function(t){this.i.a0=i.stringToBrush(t),this._a("iconColor",i.brushToString(this.i.a0))},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"isAnimationEnabled",{get:function(){return this.i.l},set:function(t){this.i.l=i.ensureBool(t),this._a("isAnimationEnabled",this.i.l)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"pixelScalingRatio",{get:function(){return this.i.w},set:function(t){this.i.w=+t,this._a("pixelScalingRatio",this.i.w)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"actualPixelScalingRatio",{get:function(){return this.i.p},set:function(t){this.i.p=+t,this._a("actualPixelScalingRatio",this.i.p)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"sortIndicatorStyle",{get:function(){return this.i.f},set:function(t){this.i.f=i.ensureEnum(s,t),this._a("sortIndicatorStyle",i.enumToString(s,this.i.f))},enumerable:!1,configurable:!0}),n.prototype.findByName=function(t){return this.findEphemera&&t&&0==t.indexOf("@@e:")?this.findEphemera(t):null},Object.defineProperty(n.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),n.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},n.prototype._styling=function(t,e,n){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=i.toSpinal("DataGridSortIndicatorComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},n.prototype.getDesiredScale=function(){return this.i.v()},n.prototype.notifySizeChanged=function(t,e){this.i.ar(t,e)},n.prototype.notifyCellSizeChanged=function(){this.i.aq()},Object.defineProperty(n.prototype,"renderCompleted",{get:function(){return this._renderCompleted},set:function(t){var e=this;null!==this._renderCompleted_wrapped&&(this.i.renderCompleted=i.delegateRemove(this.i.renderCompleted,this._renderCompleted_wrapped),this._renderCompleted_wrapped=null,this._renderCompleted=null),this._renderCompleted=t,this._renderCompleted_wrapped=function(t,i){var n=new Yc;n._provideImplementation(i),e.beforeRenderCompleted&&e.beforeRenderCompleted(e,n),e._renderCompleted&&e._renderCompleted(e,n)},this.i.renderCompleted=i.delegateCombine(this.i.renderCompleted,this._renderCompleted_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcDataGridSortIndicatorComponent=null,n.htmlTagName="igc-data-grid-sort-indicator",n._isElementRegistered=!1,n}(i.IgcHTMLElement),Jc=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}({}),tp=i.markEnum("GridCellType","Unspecified,0|Normal,1|Edit,2|EditRow,3|MergedCell,4|FilterCell,5|MovingSeparator,6|ResizeSeparator,7"),ep=i.markEnum("DragType","RangeSelect,0|HeaderResize,1|ColumnMove,2|RowSelect,3|None,4"),ip=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcGridCompoundConditionalStyleComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcGridCompoundConditionalStyleComponent=t}return n._observedAttributesIgcGridCompoundConditionalStyleComponent},enumerable:!1,configurable:!0}),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 i=new Zr;i._implementation=t,t.externalObject=i,e=i}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._observedAttributesIgcGridCompoundConditionalStyleComponent=null,n}(Yr),np=function(t){return t[t.ThreeArrows=0]="ThreeArrows",t[t.CheckOrDashOrX=1]="CheckOrDashOrX",t[t.ThreeBoxes=2]="ThreeBoxes",t[t.ThreeFaces=3]="ThreeFaces",t}({}),rp=i.markEnum("TextIconSetBuiltInTypes","ThreeArrows,0|CheckOrDashOrX,1|ThreeBoxes,2|ThreeFaces,3"),op=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.au=0,e.at=null,e}return e.__extends(n,t),Object.defineProperty(n.prototype,"av",{get:function(){return this.au},set:function(t){var e=this.au;this.au=t,e!=t&&this.ao("IconType",i.enumGetBox(rp,e),i.enumGetBox(rp,t))},enumerable:!1,configurable:!0}),n.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")]},n.prototype.ar=function(t){switch(t){case 3:case 2:case 1:case 0:return[i.BrushUtil.j(255,26,199,32),i.BrushUtil.j(255,252,171,20),i.BrushUtil.j(255,217,76,48)]}return[i.BrushUtil.j(255,26,199,32),i.BrushUtil.j(255,252,171,20),i.BrushUtil.j(255,217,76,48)]},n.prototype.aw=function(t){for(var e=new Array(i.intDivide(t.length,2)),n=0;n<e.length;n++){var r=i.Convert.toByte2(t.substr(2*n,2),16);e[n]=r}return new TextDecoder("utf-8").decode(new Uint8Array(e))},n.prototype.aq=function(){if(null==this.at){for(var t=new mn,e=this.as(this.av),i=this.ar(this.av),n=0;n<e.length;n++){var r="env('columnValuePercentage') le "+(e.length-n)/e.length+" and env('columnValuePercentage') gt "+(e.length-n-1)/e.length,o=new fn;o.ak=this.ak+":::"+n.toString(),o.ae=r,o.t=!0,o.u=!0;var s=new si;s.aj=0,s.b9="TextValue",s.bc=e[n],o.properties.add(s),(s=new si).aj=0,s.b9="TextColor",s.bc=i[n],o.properties.add(s),(s=new si).aj=0,s.b9="FontInfo",s.bc=I.i,o.properties.add(s),t.add(o)}this.at=t}return this.at},n.$t=i.markType(n,"TextIconSetConditionalStyle",$n.$),n}($n),sp=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new op},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcTextIconSetConditionalStyleComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcTextIconSetConditionalStyleComponent=t}return n._observedAttributesIgcTextIconSetConditionalStyleComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"iconType",{get:function(){return this.i.av},set:function(t){this.i.av=i.ensureEnum(rp,t),this._a("iconType",i.enumToString(rp,this.i.av))},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 i=new Zr;i._implementation=t,t.externalObject=i,e=i}return e},n._observedAttributesIgcTextIconSetConditionalStyleComponent=null,n.htmlTagName="igc-text-icon-set-conditional-style",n._isElementRegistered=!1,n}(ip),ap=function(){function t(){}return t.register=function(){sp.register(),i.TypeRegistrar.registerCons("IgcTextIconSetConditionalStyleComponent",sp),i.TypeRegistrar.register("TextIconSetConditionalStyle",op.$type)},t}(),lp=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new zn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcEditorDefinitionComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcEditorDefinitionComponent=t}return n._observedAttributesIgcEditorDefinitionComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcEditorDefinitionComponent=null,n.htmlTagName="igc-editor-definition",n._isElementRegistered=!1,n}(Jr),up=function(){function t(){}return t.register=function(){lp.register(),i.TypeRegistrar.registerCons("IgcEditorDefinitionComponent",lp),i.TypeRegistrar.register("EditorDefinition",zn.$type)},t}(),hp=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Nn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcEditRowDefinitionComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcEditRowDefinitionComponent=t}return n._observedAttributesIgcEditRowDefinitionComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcEditRowDefinitionComponent=null,n.htmlTagName="igc-edit-row-definition",n._isElementRegistered=!1,n}(Jr),cp=function(){function t(){}return t.register=function(){hp.register(),i.TypeRegistrar.registerCons("IgcEditRowDefinitionComponent",hp),i.TypeRegistrar.register("EditRowDefinition",Nn.$type)},t}(),pp=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Fn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcFilterRowDefinitionComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcFilterRowDefinitionComponent=t}return n._observedAttributesIgcFilterRowDefinitionComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"paddingLeft",{get:function(){return this.i.g3},set:function(t){this.i.g3=+t,this._a("paddingLeft",this.i.g3)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingTop",{get:function(){return this.i.g5},set:function(t){this.i.g5=+t,this._a("paddingTop",this.i.g5)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingRight",{get:function(){return this.i.g4},set:function(t){this.i.g4=+t,this._a("paddingRight",this.i.g4)},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"paddingBottom",{get:function(){return this.i.g2},set:function(t){this.i.g2=+t,this._a("paddingBottom",this.i.g2)},enumerable:!1,configurable:!0}),n._observedAttributesIgcFilterRowDefinitionComponent=null,n.htmlTagName="igc-filter-row-definition",n._isElementRegistered=!1,n}(Jr),dp=function(){function t(){}return t.register=function(){pp.register(),i.TypeRegistrar.registerCons("IgcFilterRowDefinitionComponent",pp),i.TypeRegistrar.register("FilterRowDefinition",Fn.$type)},t}(),fp=new i.Type(null,"IExternalTemplateSectionHeader"),mp=new i.Type(null,"IExternalTemplateColumn"),gp=new i.Type(null,"IExternalTemplateHeaderColumn"),bp=function(){function t(){}return t.register=function(){_l.register(),i.TypeRegistrar.registerCons("IgcPinnedAreaSeparatorComponent",_l),i.TypeRegistrar.register("PinnedAreaSeparator",Un.$type)},t}(),yp=function(t){function n(){return t.call(this)||this}return e.__extends(n,t),n.prototype.createImplementation=function(){return new Xn},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcSectionFooterComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcSectionFooterComponent=t}return n._observedAttributesIgcSectionFooterComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},n._observedAttributesIgcSectionFooterComponent=null,n.htmlTagName="igc-section-footer",n._isElementRegistered=!1,n}(Jr),vp=function(){function t(){}return t.register=function(){yp.register(),i.TypeRegistrar.registerCons("IgcSectionFooterComponent",yp),i.TypeRegistrar.register("SectionFooter",Xn.$type)},t}(),Cp=function(){function t(){}return t.register=function(){bl.register(),i.TypeRegistrar.registerCons("IgcHeaderRowSeparatorComponent",bl),i.TypeRegistrar.register("HeaderRowSeparator",Zn.$type)},t}(),_p=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.cellUpdating=null,e}return e.__extends(n,t),n.prototype.d2=function(t,e,i){return"templateSectionHeader"},n.prototype.n=function(t){return new Vr},n.prototype.hu=function(t,e){var i;null!=this.cellUpdating&&this.cellUpdating(this,((i=new gc).cellInfo=t,i.content=e,i))},n.$t=i.markType(n,"TemplateSectionHeader",Qn.$),n}(Qn),wp=function(t){function n(){var e=t.call(this)||this;return e._cellUpdating=null,e._cellUpdating_wrapped=null,e}return e.__extends(n,t),n.prototype.createImplementation=function(){return new _p},Object.defineProperty(n.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),n.prototype.connectedCallback=function(){t.prototype.connectedCallback&&t.prototype.connectedCallback.call(this),this.i.connectedCallback&&this.i.connectedCallback(),this.updateContentChildren?this.updateContentChildren():this._updateAdapters&&this._updateAdapters(),this._attached||(this._attached=!0,this._flushQueuedAttributes())},n.prototype.disconnectedCallback=function(){t.prototype.disconnectedCallback&&t.prototype.disconnectedCallback.call(this),this.i.disconnectedCallback&&this.i.disconnectedCallback(),this._attached&&(this._attached=!1)},Object.defineProperty(n,"observedAttributes",{get:function(){if(null==n._observedAttributesIgcTemplateSectionHeaderComponent){for(var t=i.getAllPropertyNames(n),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);n._observedAttributesIgcTemplateSectionHeaderComponent=t}return n._observedAttributesIgcTemplateSectionHeaderComponent},enumerable:!1,configurable:!0}),n.register=function(){n._isElementRegistered||(n._isElementRegistered=!0,i.RegisterElementHelper.registerElement(n.htmlTagName,n))},Object.defineProperty(n.prototype,"cellUpdating",{get:function(){return this._cellUpdating},set:function(t){var e=this;null!==this._cellUpdating_wrapped&&(this.i.cellUpdating=i.delegateRemove(this.i.cellUpdating,this._cellUpdating_wrapped),this._cellUpdating_wrapped=null,this._cellUpdating=null),this._cellUpdating=t,this._cellUpdating_wrapped=function(t,i){var n=new bc;n._provideImplementation(i),e.beforeCellUpdating&&e.beforeCellUpdating(e,n),e._cellUpdating&&e._cellUpdating(e,n)},this.i.cellUpdating=i.delegateCombine(this.i.cellUpdating,this._cellUpdating_wrapped)},enumerable:!1,configurable:!0}),n._observedAttributesIgcTemplateSectionHeaderComponent=null,n.htmlTagName="igc-template-section-header",n._isElementRegistered=!1,n}(no),Sp=function(){function t(){}return t.register=function(){wp.register(),i.TypeRegistrar.registerCons("IgcTemplateSectionHeaderComponent",wp),i.TypeRegistrar.register("TemplateSectionHeader",_p.$type)},t}(),Pp=i.markEnum("GridEffectMainIntent","Default,0|Position,1|Opacity,2|Virtualization,3|Dimensions,4|Selection,5|Hover,6|DataChange,7|ColumnPropertyChange,8|Activation,9"),Op=i.markEnum("GridEffectSubIntent","Default,0|Move,1|Show,2|Hide,3|Exchange,4|HeaderPropertyChange,5|HeaderSeparatorPropertyChange,6|MovingSeparatorPropertyChange,7"),xp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new _r(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(),this._initializeAdapters&&this._initializeAdapters()},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}(),jp=function(t){function n(e){var n=t.call(this)||this;if(xp.$type||(xp.$type=i.markType(xp,"IgcColumnExchanger")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){xp.$type||(xp.$type=i.markType(xp,"IgcColumnExchanger"));var t=new i.SyncableObservableCollection$2(xp.$type,_r.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new xp)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),kp=function(t){function n(e){var n=t.call(this)||this;if(pl.$type||(pl.$type=i.markType(pl,"IgcColumnPropertySetter")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){pl.$type||(pl.$type=i.markType(pl,"IgcColumnPropertySetter"));var t=new i.SyncableObservableCollection$2(pl.$type,fi.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new pl)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Ip=function(t){function n(e){var n=t.call(this)||this;if(dl.$type||(dl.$type=i.markType(dl,"IgcResponsivePhase")),e)for(var r=0;r<e.length;r++)n.add(e[r]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){dl.$type||(dl.$type=i.markType(dl,"IgcResponsivePhase"));var t=new i.SyncableObservableCollection$2(dl.$type,Pr.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new dl)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),Tp=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e.__extends(n,t),n.prototype.get_ac=function(){return"TemplatSectionHeaderCell"},n.prototype.ad=function(e){t.prototype.ad.call(this,e)},n.$t=i.markType(n,"TemplateSectionHeaderCellModelExport",Y.$),n}(Y),Rp=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.c=2,e}return e.__extends(n,t),Object.defineProperty(n,"instance",{get:function(){return null==n.a&&(n.a=new n),n.a},enumerable:!1,configurable:!0}),n.register=function(){i.NativeUIComponent.as(n.instance)},Object.defineProperty(n.prototype,"flavor",{get:function(){return this.c},enumerable:!1,configurable:!0}),n.prototype.createComponent=function(t,e,i){e},n.prototype.createComponentSync=function(t,e,i){this.createComponent(t,e,i)},n.prototype.supportsComponent=function(t){return!1},n.$t=i.markType(n,"NativeUIComboFactory",i.Base.$,[i.INativeUIElementFactory_$type]),n.a=null,n}(i.Base),Ap=function(t){return t[t.None=0]="None",t[t.ValueToText=1]="ValueToText",t[t.TextToValue=2]="TextToValue",t}({}),Ep=i.markEnum("CloneDataSourceFilterOperation","None,0|ValueToText,1|TextToValue,2"),Bp=function(t){return t[t.Value=0]="Value",t[t.Text=1]="Text",t[t.Row=2]="Row",t}({}),Dp=i.markEnum("MultiColumnComboBoxSelectedItemChangeType","Value,0|Text,1|Row,2"),$p=function(t){function n(e){var i=t.call(this)||this;return i.ae=null,i.add(new r.PropertyEditorPropertyDescription),i.ae=e,i}return e.__extends(n,t),n.$t=i.markType(n,"HorizontalPropertyEditorDataSource",r.PropertyEditorPropertyDescriptionCollection.$),n}(r.PropertyEditorPropertyDescriptionCollection),Mp=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.Name=null,e.Value=null,e}return e.__extends(n,t),n.$t=i.markType(n,"DropDownDataListItem"),n}(i.Base),zp=function(t){function n(){var e,n=t.call(this)||this;return n.o=null,n.n=null,n.b=null,n.j=null,n.m=null,n.f=null,n.l=null,n.c=((e=new i.FontInfo).q="Verdana",e.f=13,e.t="Normal",e.v="Normal",e.r="Normal",e),n.af=new i.Size,n.d=null,n._gridExternal=null,n.a=null,n.g=!1,n.k=null,n}return e.__extends(n,t),n.prototype.z=function(){},n.prototype.x=function(t){var e=this;if(null!=t){this.j=t,this.m=this.j.createElement("canvas"),this.f=new i.RenderingContext(new i.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},n.prototype.ad=function(){},n.prototype.ab=function(){this.j},n.prototype.w=function(){if(null!=this.j){var t=this.j.rootWrapper.width(),e=this.j.rootWrapper.height();this.af=new i.Size(1,t,e),null!=this.b.l&&this.b.d5()}},n.prototype.ae=function(){var t=this.j;if(null!=t){var e=t.rootWrapper;null!=e&&(i.NativeUI.q(e,this.b.ec),i.NativeUI.m(e,this.b.d8))}},n.prototype.e=function(){return this.c},n.prototype.y=function(){},n.prototype.aa=function(){},n.prototype.v=function(){var t=this.b.ed();t.height>0&&this.j.rootWrapper.setStyleProperty("min-height",t.height+"px")},n.prototype.h=function(){return this.af.width},n.prototype.i=function(t){return this.d=this.b.ae(),i.FontUtil.measureStringWidth(t,this.d,this.f)},n.prototype.t=function(t,e){var i=this,n=t.content,r=n.element.getChildCount()>0?n.element.getChildAt(0):null,o=!1;if(null==r)this.j.getPortal(n.element,"XInputGroup",(function(t){n.element.getChildCount()>0&&n.element.getChildAt(0);o=!0;var r=t.componentRef,s=r.i,a=s.view.s;n.__int=s,r.width="100%",r.height="100%",n.element.setStyleProperty("line-height","0"),i.j.getPortal(a,"XInput",(function(t){var i=t.componentRef.i;s.inputs.add(i),e(s,o)}),!1)}),!1);else{var s=n.__int;if(null==s||null==s)return;e(s,o)}},n.prototype.s=function(t,e){var i=t.content,n=i.element.getChildCount()>0?i.element.getChildAt(0):null,r=!1;if(null==n)this.j.getPortal(i.element,"MultiColumnComboBox",(function(t){i.element.getChildCount()>0&&i.element.getChildAt(0);r=!0;var n=t.componentRef,o=n.i;i.__int=o,n.width="100%",n.height="100%",i.element.setStyleProperty("line-height","0"),e(o,r)}),!1);else{var o=i.__int;if(null==o||null==o)return;e(o,r)}},n.prototype.r=function(t,e){var i=t.content,n=i.element.getChildCount()>0?i.element.getChildAt(0):null,r=!1;if(null==n){i.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"),i.element.append(o),this.j.getPortal(o,"XCheckbox",(function(t){r=!0;var n=t.componentRef,s=n.i;i.__int=s,n.width="100%",n.height="100%",o.setStyleProperty("line-height","0"),e(s,r)}),!1)}else{n.getChildAt(0);var s=i.__int;if(null==s||null==s)return;e(s,r)}},n.prototype.q=function(t,e){var i=t.content,n=i.element.getChildCount()>0?i.element.getChildAt(0):null,r=!1;if(null==n){i.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"),i.element.append(o),this.j.getPortal(o,"XButton",(function(t){r=!0;var n=t.componentRef,s=n.i;i.__int=s,n.width="100%",n.height="100%",o.setStyleProperty("line-height","0"),e(s,r)}),!1)}else{n.getChildAt(0);var s=i.__int;if(null==s||null==s)return;e(s,r)}},n.prototype.u=function(t,e){null==this.k&&(this.k=this.j.createElement("div")),e(this.k.getNativeElement())},n.prototype.ac=function(t,e){var i=null,n=t.__span?t.__span:null;if(null!=n)i=n;else{var r=i=this.j.createElement("span");t.__span=r,t.appendButtonContent(i)}i.setRawText(e)},n.$t=i.markType(n,"PropertyEditorView"),n}(i.Base),Np=function(t){function o(){var e=t.call(this)||this;e.m=null,e.l=null,e.ab=null,e.d=null,e.ah=!1,e.c=null,e.n=null,e.o=null,e.ai=!1,e.af=null,e.propertyChanged=null,e.an=!1,e.t=null,e.u=new r.PropertyEditorPropertyDescriptionCollection,e.bx=null,e.p=3,e.bn=-1,e.ac=null,e.x=1,e.z=2,e.bv=null,e.am=!0,e.au=new i.Dictionary$2(_n.$,i.Number_$type,0),e.h=null,e.i=null,e.f=null,e.bt=null,e.bw=null,e.aj=!1,e.al=!1,e.ak=!1,e.d6=o.d9,e.d7=o.ea,e.br=0,e.bo=-1,e.r=null,e.d=new i.FilterFactory;var n=new zp;n.b=e;var s=e.properties;return s.collectionChanged=i.delegateCombine(s.collectionChanged,i.runOn(e,e.dz)),e.m=n,e.m.z(),e}return e.__extends(o,t),Object.defineProperty(o.prototype,"e",{get:function(){return null==this.l?null:this.l.actualDataSource},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"ag",{get:function(){return null==this.af&&(this.af=new i.SRProvider(this.m.j),this.af.cb("DataGrid")),this.af},enumerable:!1,configurable:!0}),o.prototype.dz=function(t,n){var r,o,s,a;if(null!=n.oldItems)try{for(var l=e.__values(i.fromEn(n.oldItems)),u=l.next();!u.done;u=l.next()){var h=u.value;if(null!==i.typeCast(i.INotifyPropertyChanged_$type,h)){var c=h;c.propertyChanged=i.delegateRemove(c.propertyChanged,i.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!=n.newItems)try{for(var p=e.__values(i.fromEn(n.newItems)),d=p.next();!d.done;d=p.next()){var f=d.value;if(null!==i.typeCast(i.INotifyPropertyChanged_$type,f)){var m=f;m.propertyChanged=i.delegateCombine(m.propertyChanged,i.runOn(this,this.dn))}}}catch(t){s={error:t}}finally{try{d&&!d.done&&(a=p.return)&&a.call(p)}finally{if(s)throw s.error}}this.ar(),this.properties.count>0&&this.actualProperties!=this.properties&&(this.actualProperties=this.properties),null!=this.l&&this.l.notifyClearItems()},o.prototype.dn=function(t,e){this.an||(this.ar(),null!=this.l&&this.d5())},o.prototype.notifySizeChanged=function(){this.m.w()},o.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 n=this.l;n.cellClicked=i.delegateCombine(n.cellClicked,i.runOn(this,this.dj)),null!=this.actualProperties&&(this.l.itemsSource=this.actualProperties,this.cn()),null!=this.actualProperties&&this.d5()}},o.prototype.destroy=function(){if(null!=this.l){var t=this.l;t.cellClicked=i.delegateRemove(t.cellClicked,i.runOn(this,this.dj))}if(null!=this.n){var e=this.n;e.change=i.delegateRemove(e.change,i.runOn(this,this.dm))}this.provideContainer(null)},o.prototype.provideContainer=function(t){this.m.x(t)},o.prototype.dj=function(t,e){},o.prototype.dv=function(t){},Object.defineProperty(o.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(o.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(o.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(o.prototype,"q",{get:function(){return this.p},set:function(t){var e=this.p;this.p=t,e!=this.p&&this.dw("SearchInputType",i.enumGetBox(n.InputGroupDisplayType_$type,e),i.enumGetBox(n.InputGroupDisplayType_$type,this.p))},enumerable:!1,configurable:!0}),Object.defineProperty(o.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(o.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}),o.prototype.ae=function(){return null==this.ad?this.m.e():this.ad},Object.defineProperty(o.prototype,"y",{get:function(){return this.x},set:function(t){var e=this.x;this.x=t,e!=this.x&&this.dw("BaseTheme",i.enumGetBox(i.BaseControlTheme_$type,e),i.enumGetBox(i.BaseControlTheme_$type,this.x))},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"aa",{get:function(){return this.z},set:function(t){var e=this.z;this.z=t,e!=this.z&&this.dw("Density",i.enumGetBox(i.ControlDisplayDensity_$type,e),i.enumGetBox(i.ControlDisplayDensity_$type,this.z))},enumerable:!1,configurable:!0}),o.prototype.dw=function(t,e,n){null!=this.propertyChanged&&this.propertyChanged(this,new i.PropertyChangedEventArgs(t)),this.d0(t,e,n)},o.prototype.d0=function(t,e,n){switch(t){case"DescriptionType":null==this.b7&&null==this.properties&&(this.actualProperties=null),null!=this.b7&&(null==this.r&&(this.r=new r.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(i.runOn(this,this.at)),e!=n&&(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=n);break;case"ActualContext":null==this.j&&null==this.properties&&(this.actualProperties=null),null!=this.j&&(null==this.r&&(this.r=new r.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===i.typeCast($p.$,this.actualProperties)&&(this.actualProperties=new $p(this.actualProperties));else if(null!==i.typeCast($p.$,this.actualProperties)){var o=this.actualProperties;this.actualProperties=o.ae}break;case"ActualProperties":if(this.ao)null!=this.actualProperties&&null===i.typeCast($p.$,this.actualProperties)&&(this.actualProperties=new $p(this.actualProperties));else if(null!==i.typeCast($p.$,this.actualProperties)){var s=this.actualProperties;this.actualProperties=s.ae}if(null!=this.l){if(null!=n&&(this.l.groupDescriptions.n(),this.l.sortDescriptions.n(),this.l.filterExpressions.clear(),this.l.summaryDescriptions.n()),null!=this.l.actualDataSource){var a=this.l.actualDataSource;a.schemaChanged=i.delegateRemove(a.schemaChanged,i.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 h=this.l.actualDataSource;h.schemaChanged=i.delegateCombine(h.schemaChanged,i.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 c=this.l;null!=c&&(c.cellTextColor=this.ec,c.cellBackground=this.d8),this.m.ae();break;case"BaseTheme":this.d4();break;case"Density":this.d3()}},o.prototype.ar=function(){var t,n,r=this.an;this.an=!0;var o=!1;try{for(var s=e.__values(i.fromEnum(this.properties)),a=s.next();!a.done;a=s.next()){var l=a.value,u=l.a3;if(null!=this.r){var h=this.r.e(u,!1);null!=h&&l.z(h)&&(o=!0)}}}catch(e){t={error:e}}finally{try{a&&!a.done&&(n=s.return)&&n.call(s)}finally{if(t)throw t.error}}return o?this.d5():null!=this.l&&this.l.notifyClearItems(),this.an=r,o},o.prototype.d3=function(){null!=this.l&&(this.l.density=this.aa),null!=this.o&&(this.o.t=this.aa),this.m.y()},o.prototype.d4=function(){null!=this.o&&(this.o.p=this.y),this.m.aa()},o.prototype.dy=function(t,e){this.ai=!0,this.cn(),this.ai=!1},o.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 i.Thickness(0,0),null!=this.ad&&(this.l.cellTextStyle=this.ad),this.ao)this.cp();else{var t=new rr;t.kk=10,t.kl=5,t.lo="PropertyPath",t.dataBinding=i.delegateCombine(t.dataBinding,i.runOn(this,this.dp)),this.l.columns.add(t);var e=new ir;e.lo="ValueType",e.kk=5,e.kl=5,e.dataBinding=i.delegateCombine(e.dataBinding,i.runOn(this,this.cu)),e.cellStyleKeyRequested=i.delegateCombine(e.cellStyleKeyRequested,i.runOn(this,this.cs)),e.cellUpdating=i.delegateCombine(e.cellUpdating,i.runOn(this,this.ct)),this.l.columns.add(e)}},o.prototype.cp=function(){if(null!=this.actualProperties){for(var t=this.actualProperties.ae,e=t.count,n=new i.List$1(_n.$,0),o=this.bp(t,e,n,2147483647),s=0;s<n.count;s++)this.l.columns.add(n._inner[s]);this.br=o;var a=this.actualProperties,l=a.count;a.clear();for(var u=0;u<this.br;u++)a.add(new r.PropertyEditorPropertyDescription);if(a.count!=l){var h=a.toArray();this.l.itemsSource=h,this.m.v()}}},o.prototype.ed=function(){if(this.ao&&null!=this.l&&null!=this.l.itemsSource){var t=this.l.actualRowHeight,e=this.l.itemsSource;return new i.Size(1,0,e.count*t)}return new i.Size(1,0,0)},o.prototype.bp=function(t,e,n,r){var o=0,s=0,a=this.m.h();a-=5,this.aq||(a=17976931348623157e292);for(var l=0,u=a,h=function(h){var p=t.item(h),d=c.be(p),f=c.ba(p);if(l+d+f>a&&s>0||s>=r){if(0!=o&&s<r&&r>2){var m=n._inner[s],g=n._inner[s+1];return m.width.f=d,g.width.f=f,c.d2(a,n),0==n.count?{value:0}:{value:c.bp(t,e,n,n.count)}}r=Math.max(Math.min(r,s),2),o++;var b=a-l;b<u&&(u=b),l=0,s=0}var y;c.cc(p);if(n.count<=s){var v=new rr;v.kk=10,v.kl=5,v.width=((y=new Rt).c=!1,y.f=d,y),v.dataBinding=i.delegateCombine(v.dataBinding,i.runOn(c,c.dp)),v.mf="PropertyName_"+h,v.lo="PropertyName",n.add(v),c.au.item(v,n.count-1),s++}else{var C=n._inner[s];if(d>C.width.f){var _=d-C.width.f;if(C.width=function(){var t=new Rt;return t.c=!1,t.f=d,t}(),_>u&&r>2)return c.d2(a,n),0==n.count?{value:0}:{value:c.bp(t,e,n,n.count)};(u-=_)<0&&(u=0),s++}else d=C.width.f,s++}if(n.count<=s){var w=new ir;w.mf="ValueType_"+h,w.lo="ValueType",w.kk=5,w.kl=5,w.dataBinding=i.delegateCombine(w.dataBinding,i.runOn(c,c.cu)),w.width=function(){var t=new Rt;return t.c=!1,t.f=f,t}(),w.cellStyleKeyRequested=i.delegateCombine(w.cellStyleKeyRequested,i.runOn(c,c.cs)),w.cellUpdating=i.delegateCombine(w.cellUpdating,i.runOn(c,c.ct)),n.add(w),c.au.item(w,n.count-1),s++}else{var S=n._inner[s];if(f>S.width.f){var P=f-S.width.f;if(S.width=function(){var t=new Rt;return t.c=!1,t.f=f,t}(),P>u&&r>2)return c.d2(a,n),0==n.count?{value:0}:{value:c.bp(t,e,n,n.count)};(u-=P)<0&&(u=0),s++}else f=S.width.f,s++}l+=d+f},c=this,p=0;p<e;p++){var d=h(p);if("object"==typeof d)return d.value}return o+1},o.prototype.d2=function(t,n){var r,o,s=0;try{for(var a=e.__values(i.fromEnum(n)),l=a.next();!l.done;l=a.next()){s+=l.value.width.f}}catch(t){r={error:t}}finally{try{l&&!l.done&&(o=a.return)&&o.call(a)}finally{if(r)throw r.error}}for(;s>t;){if(n.count<1)return;null!==i.typeCast(ir.$,n._inner[n.count-1])?(s-=n._inner[n.count-1].width.f,s-=n._inner[n.count-2].width.f,n.removeAt(n.count-1),n.removeAt(n.count-1)):(s-=n._inner[n.count-1].width.f,n.removeAt(n.count-1))}},o.prototype.cu=function(t,e){var n=t,o=this.s(n,e.cellInfo.fb,e.rowObject);e.resolvedValue=i.enumGetBox(r.PropertyEditorValueType_$type,null!=o?o.w:0)},o.prototype.dp=function(t,e){var i=t,n=this.s(i,e.cellInfo.fb,e.rowObject);e.resolvedValue=null!=n?null!=n.az?n.az:n.a3:null},o.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},o.prototype.bm=function(t){return this.bd(t)},o.prototype.bd=function(t){return 175},o.prototype.a0=function(t){return 80},o.prototype.bl=function(t){return this.a0(t)},o.prototype.bk=function(t){return this.bd(t)},o.prototype.bj=function(t){return this.bd(t)},o.prototype.bi=function(t){return this.bd(t)},o.prototype.bh=function(t){return this.bd(t)},o.prototype.bg=function(t){return this.bd(t)},o.prototype.bf=function(t){return this.a0(t)},o.prototype.bc=function(t){return this.a0(t)},o.prototype.bb=function(t){return this.a9(t)},o.prototype.a9=function(t){return this.bd(t)},o.prototype.a6=function(t){return this.a7(t)},o.prototype.a7=function(t){return this.bd(t)},o.prototype.a5=function(t){return this.a0(t)},o.prototype.a3=function(t){return this.a0(t)},o.prototype.a4=function(t){return this.bd(t)},o.prototype.a2=function(t){return this.a0(t)},o.prototype.ay=function(t){return this.a0(t)},o.prototype.a8=function(t){return this.bd(t)},o.prototype.az=function(t){return this.bd(t)},o.prototype.ax=function(t){return this.a1(t)},o.prototype.a1=function(t){return 50},o.prototype.aw=function(t){return this.a0(t)},o.prototype.be=function(t){return this.m.i(this.cc(t))+17},o.prototype.cc=function(t){return null!=t.az?t.az:t.a3},o.prototype.ct=function(t,e){var i=t,n=this.s(i,e.cellInfo.fb,e.cellInfo.hn);switch(null!=n?n.w:0){case 10:this.cv(i,e);break;case 7:this.cw(i,e);break;case 4:this.cy(i,e);break;case 6:this.cx(i,e);break;case 23:this.c6(i,e);break;case 9:this.c0(i,e);break;case 5:this.c2(i,e);break;case 14:this.c1(i,e);break;case 18:this.c3(i,e);break;case 3:this.c4(i,e);break;case 15:this.c8(i,e);break;case 17:this.c9(i,e);break;case 16:this.db(i,e);break;case 1:this.dc(i,e);break;case 11:this.dd(i,e);break;case 13:this.de(i,e);break;case 12:this.df(i,e);break;case 2:this.dg(i,e);break;case 8:this.dh(i,e);break;case 19:this.di(i,e);break;case 20:this.cz(i,e)}},o.prototype.di=function(t,e){this.da(t,e)},o.prototype.dh=function(t,e){},o.prototype.dg=function(t,e){this.da(t,e)},o.prototype.df=function(t,e){this.da(t,e)},o.prototype.de=function(t,e){this.da(t,e)},o.prototype.dd=function(t,e){this.da(t,e)},o.prototype.dc=function(t,e){this.da(t,e)},o.prototype.da=function(t,e){var n=this;this.m.t(e,(function(r,o){2!=r.d&&(r.d=2),3!=r.t&&(r.t=3);var s=n.s(t,e.cellInfo.fb,e.cellInfo.hn),a=r.inputs._inner[0];a.bh=s,a.cq=null!=s.ar?s.ar.toString():"",o&&(a.changing=i.delegateCombine(a.changing,i.runOn(n,n.dl)))}))},o.prototype.cz=function(t,e){var n=this;this.m.q(e,(function(r,o){3!=r.r&&(r.r=3);var s=n.s(t,e.cellInfo.fb,e.cellInfo.hn);r.ed=s;var a=s.ar;"number"!=typeof s.ar&&"number"!=typeof s.ar||(a=s.ar.toString()),n.m.ac(r,a),o&&(r.clicked=i.delegateCombine(r.clicked,i.runOn(n,n.cm)))}))},o.prototype.c7=function(t,e){var n=this;this.m.s(e,(function(r,o){3!=r.density&&(r.density=3);var s,a=n.s(t,e.cellInfo.fb,e.cellInfo.hn);r.dd!=a?(o||(r.selectedValueChanged=i.delegateRemove(r.selectedValueChanged,i.runOn(n,n.cq))),r.dd=a,r.value=null,r.itemsSource=n.b(n.a(a)),a.ar!=r.value&&("number"==typeof a.ar||"number"==typeof a.ar?r.value=a.ar.toString():r.value=a.ar),o||(r.selectedValueChanged=i.delegateCombine(r.selectedValueChanged,i.runOn(n,n.cq)))):a.ar!=r.value&&("number"==typeof a.ar||"number"==typeof a.ar?r.value=a.ar.toString():r.value=a.ar),o&&(r.selectedValueChanged=i.delegateCombine(r.selectedValueChanged,i.runOn(n,n.cq)),r.hw=i.BrushUtil.j(255,255,255,255),r.g=["Name"],r.columnHeadersVisible=!1,r.defaultColumnWidth=((s=new Rt).c=!1,s.f=n.ba(a),s),r.fv="Name")}))},o.prototype.b=function(t){var e=new i.List$1(Mp.$,0);if(null==t)return[];for(var n=function(i){var n;e.add(((n=new Mp).Name=t[i],n.Value=t[i],n))},r=0;r<t.length;r++)n(r);return e.toArray()},o.prototype.a=function(t){return t.c},o.prototype.cq=function(t,e){var i=t,n=i.dd;this.an=!0,n.ar=i.value,n.a5(),this.an=!1,this.dx(n)},o.prototype.dl=function(t,e){var n=t,r=n.bh;if(this.an=!0,1==r.w){var o=0;o=i.tryParseNumber(n.cq,o).p1,r.ar=o}else if(23==r.w){if(null!=n.cq){for(var s=n.cq.split(" "),a=new i.List$1(i.Number_$type,0),l=function(t){var e,r=s[t];if(!i.stringIsNullOrEmpty(r)){var o=0;e=i.tryParseNumber(n.cq,o),o=e.p1,e.ret&&a.add(o)}},u=0;u<s.length;u++)l(u);r.ar=a.toArray()}}else r.ar=n.cq;r.a5(),this.an=!1,this.dx(r)},o.prototype.cm=function(t,e){var i=t.ed;this.an=!0,i.a6(),this.an=!1,this.dx(i)},o.prototype.dx=function(t){var e=this;if(null!=this.bu&&null!=this.g){this.am&&(this.am=!1,this.g.addTargetPropertyUpdatingListener(i.runOn(this,this.at)));var n=null==this.bv;this.bv=this.cb(),n?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)}))}},o.prototype.at=function(t,e,n){var r=this.actualProperties;null!==i.typeCast($p.$,r)&&(r=r.ae);for(var o=0;o<r.count;o++){var s=r._inner[o].a3;this.as(s,t)&&r._inner[o].a9(t,e,n)}return!!this.ap},o.prototype.as=function(t,e){if(null==t&&null==e)return!0;if(null==t)return!1;if(null==e)return!1;var n=i.stringSplit(t,[".","["],0),r=i.stringSplit(e,[".","["],0);if(n.length!=r.length)return!1;for(var o=0;o<n.length;o++){var s=n[o],a=r[o];if(i.stringContains(s,"]")){if(!i.stringContains(a,"]"))return!1;if(a=i.stringReplace(a,"]",""),!this.av(s).contains(a))return!1}else if(!i.Base.equalsStatic(s,a))return!1}return!0},o.prototype.av=function(t){var e=new i.List$1(i.String_$type,0);if(i.stringContains(t,"]")){for(var n=(t=i.stringReplace(t,"]","")).split(","),r=0;r<n.length;r++){var o=n[r];if(i.stringContains(o,"as")){var s=o.indexOf("as"),a=o.substr(0,s).trim();e.add(a)}}return e}return e.add(t),e},o.prototype.cb=function(){if(null==this.actualProperties)return null;var t=this.actualProperties;null!==i.typeCast($p.$,t)&&(t=t.ae);var e=new r.PropertyEditorTreeTransformer(this.j,this.b7,!1);return this.c5(t,"",e,this.b7),e.j()},o.prototype.c5=function(t,e,i,n){for(var r=0;r<t.count;r++){var o=t._inner[r];if(20!=o.w)if(null!=o.m)for(var s=0;s<o.m.count;s++){var a=o.m._inner[s],l=e+o.a3+"["+s+"]";this.c5(a.a,l,i,a.b)}else if(null!=o.i){var u=e+o.a3;this.c5(o.i.a,u,i,o.i.b)}else i.k(e+o.a3,o.ar,n)}},o.prototype.db=function(t,e){},o.prototype.c9=function(t,e){},o.prototype.c8=function(t,e){this.c7(t,e)},o.prototype.c4=function(t,e){},o.prototype.c3=function(t,e){},o.prototype.c1=function(t,e){},o.prototype.c2=function(t,e){this.da(t,e)},o.prototype.c0=function(t,e){},o.prototype.cx=function(t,e){},o.prototype.c6=function(t,e){this.da(t,e)},o.prototype.cy=function(t,e){this.da(t,e)},o.prototype.cw=function(t,e){var n=this;this.m.r(e,(function(r,o){r.y||(r.y=!0);var s=n.s(t,e.cellInfo.fb,e.cellInfo.hn),a=s.ar;null==a&&(a=!1);var l=a;r.checked=l,r.a4=s,o&&(r.change=i.delegateCombine(r.change,i.runOn(n,n.co)))}))},o.prototype.s=function(t,e,n){if(this.ao){var r=this.actualProperties.ae,o=e*i.truncate(this.l.actualColumns.count/2),s=this.bq(t);return(s=i.truncate(Math.floor(s/2))+o)>r.count-1?null:r.item(s)}return n},o.prototype.bq=function(t){return this.au.item(t)},o.prototype.co=function(t,e){var i=t,n=i.a4;this.an=!0,n.ar=i.checked,n.a5(),this.an=!1,this.dx(n)},o.prototype.cv=function(t,e){},o.prototype.cs=function(t,e){var n=t,o=e;this.ao||(o=this.actualProperties._inner[e.rowNumber]);var s=this.s(n,e.rowNumber,o),a=null!=s?s.w:0;e.styleKey="editortype_"+i.enumGetBox(r.PropertyEditorValueType_$type,a)},o.prototype.dm=function(t,e){var i=e.value.toLowerCase();this.dv(i)},o.prototype.dt=function(t,e,i){null!=this.l&&this.l.notifySetItem(t,e,i)},o.prototype.dq=function(){null!=this.l&&this.l.notifyClearItems()},o.prototype.dr=function(t,e){null!=this.l&&this.l.notifyInsertItem(t,e)},o.prototype.ds=function(t,e){null!=this.l&&this.l.notifyRemoveItem(t,e)},Object.defineProperty(o.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(o.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(o.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(o.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(o.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(o.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(o.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(o.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(o.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(o.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}),o.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},o.$t=i.markType(o,"PropertyEditor",i.Base.$,[i.INotifyPropertyChanged_$type]),o.eb=i.BrushUtil.j(255,24,29,31),o.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",o.d9=i.BrushUtil.j(255,248,248,248),o.ea=i.BrushUtil.j(255,24,29,31),o}(i.Base),Fp=function(t){function o(){var n=t.call(this)||this;return n._implementation=null,n.contentProperties=[],n.actualProperties=[],n._properties=null,n._propertiesAdapter=null,n._disconnected=!1,n._settingAttributes=!1,n._attached=!1,n._queuedSetAttributes=[],n._updatingFromAttribute=!1,n._actualDataSource=null,n.__p=null,n._hasUserValues=new Set,n._stylingContainer=null,n._stylingParent=null,n._inStyling=!1,n._styling&&i.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(n)),n._implementation=n.createImplementation(),n._implementation.externalObject=n,n._portalManager=new i.PortalManager("propertyEditorContent"),n._webComponentRenderer=new i.WebComponentRenderer(n,document,!0,{},n._portalManager),n._webComponentWrapper=n._webComponentRenderer.createElement("div"),n._webComponentRenderer.updateRoot(n._webComponentWrapper),n._webComponentWrapper.setStyleProperty("display","block"),n._webComponentWrapper.setStyleProperty("width","100%"),n._webComponentWrapper.setStyleProperty("height","100%"),n._propertiesAdapter=new i.CollectionAdapter(n.contentProperties,n.i.properties,n.actualProperties,(function(t){return t.i}),(function(t){n._webComponentRenderer&&n._webComponentRenderer.rootWrapper.getNativeElement().parentElement&&t._styling(n,n,n)}),(function(t){})),n.i.provideContainer(n._webComponentRenderer),n.i.notifySizeChanged(),new MutationObserver((function(t){var i,r;try{for(var o=e.__values(t),s=o.next();!s.done;s=o.next()){"childList"==s.value.type&&n.updateContentProperties()}}catch(t){i={error:t}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}})).observe(n,{childList:!0}),n._webComponentRenderer.addSizeWatcher((function(){n.i.notifySizeChanged()})),n}return e.__extends(o,t),Object.defineProperty(o.prototype,"height",{get:function(){return this._height},set:function(t){this._height=t,this.style.height=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"width",{get:function(){return this._width},set:function(t){this._width=t,this.style.width=t,this.i.notifySizeChanged()},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"properties",{get:function(){var t=this;if(null===this._properties){var e=new r.IgcPropertyEditorPropertyDescriptionCollection;e._innerColl.addListener((function(e,n){switch(n.action){case i.NotifyCollectionChangedAction.Add:t._propertiesAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Remove:t._propertiesAdapter.removeManualItemAt(n.oldStartingIndex);break;case i.NotifyCollectionChangedAction.Replace:t._propertiesAdapter.removeManualItemAt(n.oldStartingIndex),t._propertiesAdapter.insertManualItem(n.newStartingIndex,n.newItems.item(0));break;case i.NotifyCollectionChangedAction.Reset:t._propertiesAdapter.clearManualItems()}})),this._properties=e}return this._properties},enumerable:!1,configurable:!0}),o.prototype.updateStyle=function(){this._styling(this,this)},o.prototype.destroy=function(){this._implementation.destroy(),this._webComponentRenderer.destroy()},o.prototype.updateContentProperties=function(){this.contentProperties.length=0;for(var t=0;t<this.children.length;t++)this.children[t]instanceof r.IgcPropertyEditorPropertyDescriptionComponent&&this.contentProperties.push(this.children[t]);null!=this._propertiesAdapter&&this._propertiesAdapter.notifyContentChanged()},o.prototype.createImplementation=function(){return new Np},Object.defineProperty(o.prototype,"i",{get:function(){return this._implementation},enumerable:!1,configurable:!0}),o.prototype.disconnectedCallback=function(){this._disconnected=!0},o.prototype.connectedCallback=function(){if(this._disconnected)this._disconnected=!1;else{this.classList.add("ig-property-editor"),this.classList.add("igc-property-editor");var t=this._webComponentRenderer.rootWrapper.getNativeElement();this.appendChild(t),this._attached=!0,this.style.display="block",this.style.height=this._height,this.style.width=this._width,this._flushQueuedAttributes(),this._styling(this,this);for(var e=0;e<this.actualProperties.length;e++){this.actualProperties[e]._styling(this,this,this)}this.updateContentProperties(),this.afterContentInit()}},o.prototype.afterContentInit=function(){this.i.notifySizeChanged()},o.prototype._enqueueSetAttribute=function(t,e){this._queuedSetAttributes.push({attrName:t,attrValue:e})},o.prototype._flushQueuedAttributes=function(){this._settingAttributes=!0;for(var t=0;t<this._queuedSetAttributes.length;t++)this.setAttribute(this._queuedSetAttributes[t].attrName,this._queuedSetAttributes[t].attrValue);this._settingAttributes=!1,this._queuedSetAttributes.length=0},o.prototype._a=function(t,e){this._updatingFromAttribute||(e&&(e=e.toString()),this._settingAttributes=!0,t=i.toSpinal(t),this._attached?this.setAttribute(t,e):this._enqueueSetAttribute(t,e),this._settingAttributes=!1)},Object.defineProperty(o,"observedAttributes",{get:function(){if(null==o._observedAttributesIgcPropertyEditorComponent){for(var t=i.getAllPropertyNames(o),e=0;e<t.length;e++)t[e]=i.toSpinal(t[e]);o._observedAttributesIgcPropertyEditorComponent=t}return o._observedAttributesIgcPropertyEditorComponent},enumerable:!1,configurable:!0}),o.prototype.attributeChangedCallback=function(t,e,n){if(!this._settingAttributes){var r=i.fromSpinal(t);this._updatingFromAttribute=!0,this[r]=n,this._updatingFromAttribute=!1}},o.register=function(){o._isElementRegistered||(o._isElementRegistered=!0,i.RegisterElementHelper.registerElement(o.htmlTagName,o))},Object.defineProperty(o.prototype,"actualDataSource",{get:function(){if(null===this._actualDataSource){var t=new r.IgcPropertyEditorPropertyDescriptionCollection,e=this.i.actualProperties;e||(e=new r.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 r.IgcPropertyEditorPropertyDescriptionCollection;this._actualDataSource=e._fromOuter(t);var n=new i.SyncableObservableCollection$1(r.PropertyEditorPropertyDescription.$type),o=this.i.actualProperties;o||(o=new r.PropertyEditorPropertyDescriptionCollection),n._inner=o,n.clear(),this._actualDataSource._setSyncTarget(n),this.i.actualProperties=o},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"filterPlaceholderText",{get:function(){return this.i.b9},set:function(t){this.i.b9=t},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"searchInputType",{get:function(){return this.i.q},set:function(t){this.i.q=i.ensureEnum(n.InputGroupDisplayType_$type,t),this._a("searchInputType",i.enumToString(n.InputGroupDisplayType_$type,this.i.q))},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"rowHeight",{get:function(){return this.i.bs},set:function(t){this.i.bs=+t,this._a("rowHeight",this.i.bs)},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"cellTextStyle",{get:function(){return null==this.i.ad?null:this.i.ad.fontString},set:function(t){var e=new i.FontInfo;e.fontString=t,this.i.ad=e,this._a("cellTextStyle",null!=this.i.ad?this.i.ad.fontString:"")},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"baseTheme",{get:function(){return this.i.y},set:function(t){this.i.y=i.ensureEnum(i.BaseControlTheme_$type,t),this._a("baseTheme",i.enumToString(i.BaseControlTheme_$type,this.i.y))},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"density",{get:function(){return this.i.aa},set:function(t){this.i.aa=i.ensureEnum(i.ControlDisplayDensity_$type,t),this._a("density",i.enumToString(i.ControlDisplayDensity_$type,this.i.aa))},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"actualDescriptionContext",{get:function(){return this.i.j},set:function(t){this.i.j=t},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"descriptionContext",{get:function(){return this.i.k},set:function(t){this.i.k=t},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"componentRenderer",{get:function(){return this.i.g},set:function(t){this.i.g=t},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"target",{get:function(){return this.i.bu},set:function(t){this.i.bu=t},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"descriptionType",{get:function(){return this.i.b7},set:function(t){this.i.b7=t},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"isHorizontal",{get:function(){return this.i.ao},set:function(t){this.i.ao=i.ensureBool(t),this._a("isHorizontal",this.i.ao)},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"isWrappingEnabled",{get:function(){return this.i.aq},set:function(t){this.i.aq=i.ensureBool(t),this._a("isWrappingEnabled",this.i.aq)},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"isIndirectModeEnabled",{get:function(){return this.i.ap},set:function(t){this.i.ap=i.ensureBool(t),this._a("isIndirectModeEnabled",this.i.ap)},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"backgroundColor",{get:function(){return i.brushToString(this.i.d8)},set:function(t){this.i.d8=i.stringToBrush(t),this._a("backgroundColor",i.brushToString(this.i.d8))},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"textColor",{get:function(){return i.brushToString(this.i.ec)},set:function(t){this.i.ec=i.stringToBrush(t),this._a("textColor",i.brushToString(this.i.ec))},enumerable:!1,configurable:!0}),o.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(o.prototype,"hasUserValues",{get:function(){return this._hasUserValues},enumerable:!1,configurable:!0}),o.prototype.__m=function(t){this._inStyling||this._hasUserValues.add(t)},o.prototype._styling=function(t,e,n){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=i.toSpinal("PropertyEditorComponent");var s=[],a=i.toSpinal(o);s.push(a+"-");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=i.toSpinal(o);s.push(u+"-"),l=l.baseType}if(n){var h=n.i.$type.name;0===h.indexOf("Xam")&&(h=h.substring(3));var c=i.toSpinal(h);s.push(c+"-"+r+"-"),s.push(c+"-"+a+"-")}i.initializePropertiesFromCss(t,this,r+"-",this.hasUserValues,!1,s),this._otherStyling&&this._otherStyling(t,e,n),this._inStyling=!1}},o.prototype.getDesiredSize=function(){var t=this.i.ed();return i.fromSize(t)},o.prototype.notifySetItem=function(t,e,i){this.i.dt(t,e,i)},o.prototype.notifyClearItems=function(){this.i.dq()},o.prototype.notifyInsertItem=function(t,e){this.i.dr(t,e)},o.prototype.notifyRemoveItem=function(t,e){this.i.ds(t,e)},o._observedAttributesIgcPropertyEditorComponent=null,o.htmlTagName="igc-property-editor",o._isElementRegistered=!1,o}(i.IgcHTMLElement),Gp=function(){function t(){}return t.register=function(){n.IgcXInputGroupModule.register(),n.IgcXCheckboxModule.register(),n.IgcXButtonModule.register(),Hl.register(),ec.register(),Xl.register(),Yl.register(),Tu.register(),Ul.register(),tu.register(),r.IgcPropertyEditorPropertyDescriptionModule.register(),Fp.register(),i.TypeRegistrar.registerCons("IgcPropertyEditorComponent",Fp),i.TypeRegistrar.registerCons("IgcPropertyEditorComponent",Fp),i.TypeRegistrar.register("PropertyEditor",Np.$type)},t}(),Vp=function(t){function n(e){var n=t.call(this)||this;if(r.IgcPropertyEditorPropertyDescriptionComponent.$type||(r.IgcPropertyEditorPropertyDescriptionComponent.$type=i.markType(r.IgcPropertyEditorPropertyDescriptionComponent,"IgcPropertyEditorPropertyDescriptionComponent")),e)for(var o=0;o<e.length;o++)n.add(e[o]);return n}return e.__extends(n,t),n.prototype._createInnerColl=function(){r.IgcPropertyEditorPropertyDescriptionComponent.$type||(r.IgcPropertyEditorPropertyDescriptionComponent.$type=i.markType(r.IgcPropertyEditorPropertyDescriptionComponent,"IgcPropertyEditorPropertyDescriptionComponent"));var t=new i.SyncableObservableCollection$2(r.IgcPropertyEditorPropertyDescriptionComponent.$type,r.PropertyEditorPropertyDescription.$type,0);return t.compare=function(t,e){var i=t;return i._implementation&&(i=i._implementation),i.equals?i.equals(e):i===e},t.createTo=function(t){return t._implementation},t.createFrom=function(t){var e=t.externalObject;return e||(e=new r.IgcPropertyEditorPropertyDescriptionComponent)&&(!t.$type&&e._implementation.setNativeElement?e._implementation.setNativeElement(t):e._implementation=t),e},t},n}(i.IgCollection),qp=function(){function t(){this._implementation=this.createImplementation(),this._implementation.externalObject=this,this.onImplementationCreated(),this._initializeAdapters&&this._initializeAdapters()}return t.prototype.createImplementation=function(){return new yh},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(),this._initializeAdapters&&this._initializeAdapters()},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=i.ensureBool(t)},enumerable:!1,configurable:!0}),t}();t.AccessibilityRow=Il,t.ActivationManager=xn,t.ApplyButtonClickEventArgs=jh,t.BaseEditorView=Qs,t.BrowserExecutionContext=nc,t.BrowserPixelConverter=ds,t.BrowserTickProvider=ps,t.CalculationParameters=di,t.CancelButtonClickEventArgs=kh,t.CanvasCellPresenterBase=ys,t.CanvasContentCellModelHelper=vs,t.CanvasDateTimeCell=Ss,t.CanvasDateTimeCellPresenter=Ps,t.CanvasGridCellBase=gs,t.CanvasImageCell=As,t.CanvasImageCellPresenter=Es,t.CanvasNumericCell=_s,t.CanvasNumericCellPresenter=ws,t.CanvasPlaceholderView=ms,t.CanvasRowSeparatorCell=Ts,t.CanvasRowSeparatorCellPresenter=Rs,t.CanvasSectionHeaderCell=Ns,t.CanvasSectionHeaderCellPresenter=Fs,t.CanvasSummaryCell=qs,t.CanvasSummaryCellPresenter=Ls,t.CanvasTemplateCell=Ds,t.CanvasTemplateCellContainer=Bs,t.CanvasTemplateCellPresenter=$s,t.CanvasTemplateHeaderCell=Ms,t.CanvasTemplateHeaderCellPresenter=zs,t.CanvasTextCell=bs,t.CanvasTextCellPresenter=Cs,t.CanvasTextHeaderCell=ks,t.CanvasTextHeaderCellPresenter=Is,t.CanvasVerticalSeparatorCell=Gs,t.CanvasVerticalSeparatorCellPresenter=Vs,t.CellContentHorizontalAlignment=a,t.CellContentHorizontalAlignment_$type=l,t.CellContentVerticalAlignment=u,t.CellContentVerticalAlignment_$type=h,t.CellDataLoadedAnimationMode=Ft,t.CellDataLoadedAnimationMode_$type=Gt,t.CellEffect=hr,t.CellKey=yn,t.CellModel=Ei,t.CellModelExport=T,t.CellPath=S,t.CellPositionEffect=cr,t.CellPresenterBase=ia,t.CellPropertyAnimationType=Ot,t.CellPropertyAnimationType_$type=xt,t.CellRange=ge,t.CellSelectionAnimationMode=Wt,t.CellSelectionAnimationMode_$type=Ut,t.CellStyleRequestedEventArgs=li,t.CheckboxList=lu,t.CheckboxListBridge=qo,t.CheckboxListExternalIndexTypeChangedEventArgs=wc,t.CheckboxListExternalIndexType_$type=Vo,t.CheckboxListExternalKeysClearedEventArgs=Sc,t.CheckboxListExternal_$type=_c,t.CheckboxListIndexType=eu,t.CheckboxListIndexTypeChangedEventArgs=ou,t.CheckboxListIndexType_$type=iu,t.CheckboxListKeysClearedEventArgs=nu,t.CheckboxListView=au,t.CheckboxListViewExternal_$type=Pc,t.CheckedChangedEventArgs=ru,t.CloneDataSourceFilterOperation=Ap,t.CloneDataSourceFilterOperation_$type=Ep,t.ColumnCellsEffect=ur,t.ColumnChooser=bu,t.ColumnChooserInfo=mu,t.ColumnChooserView=gu,t.ColumnComparisonConditionOperatorType=d,t.ColumnComparisonConditionOperatorType_$type=f,t.ColumnComparisonFilterCondition=Ci,t.ColumnController=Zi,t.ColumnCustomFilterCondition=_i,t.ColumnEffect=ar,t.ColumnExchanger=_r,t.ColumnExchangersCollection=wr,t.ColumnExchangingAnimationMode=oe,t.ColumnExchangingAnimationMode_$type=se,t.ColumnFilterCondition=vi,t.ColumnFilterConditionCollection=wi,t.ColumnFilterConditionGroup=Si,t.ColumnGroupDescription=_t,t.ColumnGroupDescriptionCollection=wt,t.ColumnGrouping=Vl,t.ColumnGroupingView=Gl,t.ColumnGroupingVisualModelExport=Nl,t.ColumnHiddenChangedEventArgs=sn,t.ColumnHidingAnimationMode=ne,t.ColumnHidingAnimationMode_$type=re,t.ColumnInfo=Ir,t.ColumnMovingAnimationMode=ee,t.ColumnMovingAnimationMode_$type=ie,t.ColumnMovingMode=It,t.ColumnMovingMode_$type=Tt,t.ColumnMovingSeparator=Rn,t.ColumnOptionsIconAlignment=tt,t.ColumnOptionsIconAlignment_$type=et,t.ColumnOptionsIconBehavior=it,t.ColumnOptionsIconBehavior_$type=nt,t.ColumnOptionsToolbarManagerOpeningEventArgs=qc,t.ColumnPinnedChangedEventArgs=an,t.ColumnPinning=Pu,t.ColumnPinningInfo=wu,t.ColumnPinningView=Su,t.ColumnPropertySetter=fi,t.ColumnPropertySettersCollection=mi,t.ColumnPropertyUpdatingAnimationMode=zt,t.ColumnPropertyUpdatingAnimationMode_$type=Nt,t.ColumnResizingAnimationMode=Jt,t.ColumnResizingAnimationMode_$type=te,t.ColumnResizingMode=jt,t.ColumnResizingMode_$type=kt,t.ColumnResizingSeparator=Vn,t.ColumnShowingAnimationMode=$t,t.ColumnShowingAnimationMode_$type=Mt,t.ColumnSortDescription=yt,t.ColumnSortDescriptionCollection=vt,t.ColumnSortDirection=O,t.ColumnSortDirection_$type=x,t.ColumnStates_$type=Fe,t.ColumnSummaryDescription=ct,t.ColumnSummaryDescriptionCollection=pt,t.ColumnWidth=Rt,t.ComboBoxColumn=An,t.ComboEditorView=ta,t.ComboEditorView_ComboExternal_$type=Cc,t.ComparisonOperatorSelector=ha,t.ComparisonOperatorSelectorView=ua,t.ContentCellModelHelper=fa,t.CurrentRendererSettings=us,t.DataAdapter=Tn,t.DataBindingEventArgs=Dn,t.DataGrid=tn,t.DataGridAccessibilityLayoutPanel=Tl,t.DataGridCellEventArgs=on,t.DataGridCellLayoutPanel=hs,t.DataGridColumn=_n,t.DataGridColumnToolbarManager=Mn,t.DataGridDelayedExecutionManager=Ja,t.DataGridLocaleEn=yc,t.DataGridPresenterManager=Xa,t.DataGridPropertySetter=el,t.DataGridScrollerKeyboardListener=Cl,t.DataGridSelectionMode=ae,t.DataGridSelectionMode_$type=le,t.DataGridStylingDefaults=al,t.DataGridToolbar=pc,t.DataGridToolbarView=cc,t.DataGridViewportManager=Ya,t.DataSourceNotificationBridge=Yi,t.DateEditorView=Js,t.DateOperatorTypes_$type=Mc,t.DateTimeCell=ya,t.DateTimeCellModel=Bi,t.DateTimeCellModelExport=$,t.DateTimeCellPresenter=va,t.DateTimeColumn=En,t.DateTimeColumnValueFormatter=D,t.DateTimeFormats=E,t.DateTimeFormats_$type=B,t.DefaultCellActionManager=ki,t.DefaultCellModelExportUpdater=Ri,t.DefaultGridInfoRequestor=Ti,t.DefaultPlatformPixelConverter=Ee,t.DefinitionBase=Cn,t.DefinitionPropertyUpdatedEventArgs=Pt,t.DragSelectEventArgs=ol,t.DragType_$type=ep,t.Dragger=sl,t.DraggerView=rl,t.DropDownDataListItem=Mp,t.EditModeClickAction=Bt,t.EditModeClickAction_$type=Dt,t.EditModeType=y,t.EditModeType_$type=v,t.EditRowDefinition=Nn,t.EditingManager=Ji,t.EditorCell=ea,t.EditorCellModel=Di,t.EditorCellModelExport=N,t.EditorCellPresenter=na,t.EditorDefinition=zn,t.EditorRowCell=ra,t.EditorRowCellModel=Mi,t.EditorRowCellPresenter=oa,t.EditorType=M,t.EditorType_$type=z,t.EnterKeyBehaviorAfterEdit=Ce,t.EnterKeyBehaviorAfterEdit_$type=_e,t.EnterKeyBehaviors=ye,t.EnterKeyBehaviors_$type=ve,t.FilterCell=ca,t.FilterCellModel=$i,t.FilterCellModelExport=F,t.FilterCellPresenter=pa,t.FilterComparisonType=Te,t.FilterComparisonType_$type=Re,t.FilterDialogRenderCompletedEventArgs=Oa,t.FilterLogicalOperator=ke,t.FilterLogicalOperator_$type=Ie,t.FilterOperand=gn,t.FilterRowDefinition=Fn,t.FilterUIType=xe,t.FilterUIType_$type=je,t.FixedCellPositions_$type=m,t.FormatGroupTextEventArgs=Ct,t.FormatSummaryTextEventArgs=ht,t.GotFocusEventArgs=Nh,t.GridActivationMode=ue,t.GridActivationMode_$type=he,t.GridActiveCellChangedEventArgs=qe,t.GridAnimationManager=dn,t.GridAnimationManagerAnimationCanceledEventArgs=Ze,t.GridAnimationManagerAnimationCompletedEventArgs=Ye,t.GridAnimationManagerAnimationCreatedEventArgs=Qe,t.GridAnimationPhaseSettings=Qt,t.GridAnimationSettings=Zt,t.GridCellBase=Ks,t.GridCellEditEndedEventArgs=pn,t.GridCellEditStartedEventArgs=cn,t.GridCellPosition=b,t.GridCellType=Jc,t.GridCellType_$type=tp,t.GridCellValueChangingEventArgs=ln,t.GridColumnAnimationSettings=Yt,t.GridColumnButtonOptions=Th,t.GridColumnButtonOptionsView=Ih,t.GridColumnCollection=wn,t.GridColumnFilterOptions=fh,t.GridColumnFilterOptionsView=dh,t.GridColumnGroupOptions=Hu,t.GridColumnGroupOptionsView=Lu,t.GridColumnHideOptions=lh,t.GridColumnHideOptionsView=ah,t.GridColumnMoveOptions=th,t.GridColumnMoveOptionsView=Ju,t.GridColumnOptions=$h,t.GridColumnOptionsBase=Gu,t.GridColumnOptionsSectionBase=Vu,t.GridColumnOptionsSimpleSectionBase=qu,t.GridColumnOptionsUtilities=Fu,t.GridColumnOptionsView=Dh,t.GridColumnOptionsViewBase=Nu,t.GridColumnPinOptions=rh,t.GridColumnPinOptionsView=nh,t.GridColumnSortOptions=Uu,t.GridColumnSortOptionsView=Wu,t.GridColumnSpacer=Je,t.GridColumnSpacerCollection=ti,t.GridColumnSummaryOptions=Sh,t.GridColumnSummaryOptionsView=wh,t.GridColumnWidthChangedEventArgs=hn,t.GridColumnsAutoGeneratedEventArgs=en,t.GridColumnsChangedEventArgs=nn,t.GridCompoundConditionalStyle=$n,t.GridConditionFilterStringErrorsParsingEventArgs=oi,t.GridConditionalStyle=fn,t.GridConditionalStyleBoundType=ni,t.GridConditionalStyleBoundType_$type=ri,t.GridConditionalStyleCollection=mn,t.GridConditionalStyleProperty=si,t.GridConditionalStylePropertyCollection=ai,t.GridConditionalStylePropertyStylingType=ei,t.GridConditionalStylePropertyStylingType_$type=ii,t.GridCustomFilterRequestedEventArgs=un,t.GridDataCommittedEventArgs=Me,t.GridDataCommittingEventArgs=ze,t.GridEasingFunctionType=Kt,t.GridEasingFunctionType_$type=Xt,t.GridEffect=sr,t.GridEffectGroup=Sn,t.GridEffectMainIntent_$type=Pp,t.GridEffectManager=fr,t.GridEffectSubIntent_$type=Op,t.GridExpansionIndicator=Ws,t.GridExpansionIndicatorView=Hs,t.GridExternalWrapper=cs,t.GridFilterDialog=Ia,t.GridFilterDialogFilterChangeEventArgs=_a,t.GridFilterDialogOpeningEventArgs=Ca,t.GridFilterDialogPanel=ka,t.GridFilterDialogView=ja,t.GridFilterDialogViewModel=Ta,t.GridFilterDialogViewModelGrouping=Sa,t.GridFilterDialogViewModelGroupingLevel=Pa,t.GridFilterDialogViewModelGroupingLevelCollection=xa,t.GridFilterDialogViewModelRow=wa,t.GridFilterDialogViewModelRowCollection=Ra,t.GridFilterExpressionsEventArgs=dt,t.GridFilterOperandsCollection=bn,t.GridGroupDescriptionsChangedEventArgs=mt,t.GridLayer=kr,t.GridLayerController=mr,t.GridLayerExport=Ge,t.GridModuleHelper=Ho,t.GridRowEditEndedEventArgs=We,t.GridRowEditStartedEventArgs=He,t.GridSelectedCellRangesChangedEventArgs=$e,t.GridSelectedCellRangesCollection=be,t.GridSelectedCellsChangedEventArgs=rn,t.GridSelectedCellsCollection=vn,t.GridSelectedItemsChangedEventArgs=Be,t.GridSelectedItemsCollection=de,t.GridSelectedKeysChangedEventArgs=De,t.GridSelectedKeysCollection=me,t.GridSelectionBehavior=ce,t.GridSelectionBehavior_$type=pe,t.GridSelectionChangedEventArgs=Le,t.GridSizeChangedEventArgs=Ne,t.GridSortDescriptionsChangedEventArgs=ft,t.GridSortIndicator=js,t.GridSortIndicatorView=xs,t.GridStyleRepository=I,t.GridSummaryDescriptionsChangedEventArgs=gt,t.GridViewportChangedEventArgs=C,t.GroupData=X,t.GroupHeaderDisplayMode=at,t.GroupHeaderDisplayMode_$type=lt,t.GroupInfo=$l,t.GroupSummaryDisplayMode=R,t.GroupSummaryDisplayMode_$type=A,t.Header=Gn,t.HeaderClickAction=At,t.HeaderClickAction_$type=Et,t.HeaderRowSeparator=Zn,t.HeaderSeparator=qn,t.HorizontalPropertyEditorDataSource=$p,t.HoverManager=Pn,t.ICellActionManager_$type=ji,t.ICellModelExportUpdater_$type=_,t.ICellPresenter_$type=xi,t.ICellRenderingEngine_$type=Oi,t.IColumnGroupingVisualModelExport_$type=zl,t.IColumnGrouping_$type=Ml,t.IDataAdapter_$type=In,t.IDataGridComponent_$type=lc,t.IDelayedExecutionManager_$type=Za,t.IDraggerView_$type=il,t.IDragger_$type=nl,t.IEditorView_$type=Xs,t.IExternalDefinitionBase_$type=Bn,t.IExternalGrid_$type=Pi,t.IExternalTemplateColumn_$type=mp,t.IExternalTemplateHeaderColumn_$type=gp,t.IExternalTemplateSectionHeader_$type=fp,t.IGridInfoRequestor_$type=Ii,t.INativeCell_$type=fs,t.IPlatformPixelConverter_$type=Ae,t.IPropertySetter_$type=tl,t.ISummaryChooserView_$type=vh,t.IToolbarVisualModelExport_$type=uc,t.IViewportManager_$type=Qa,t.IgcApplyButtonClickEventArgs=Rh,t.IgcCancelButtonClickEventArgs=Ah,t.IgcCellInfo=Ar,t.IgcCellKey=$o,t.IgcCellKeyModule=Mo,t.IgcCellRange=zo,t.IgcCellRangeModule=No,t.IgcCellStyleRequestedEventArgs=Ur,t.IgcCheckboxListComponent=du,t.IgcCheckboxListIndexTypeChangedEventArgs=cu,t.IgcCheckboxListKeysClearedEventArgs=pu,t.IgcCheckboxListModule=fu,t.IgcCheckedChangedEventArgs=uu,t.IgcColumnChooserComponent=yu,t.IgcColumnChooserModule=vu,t.IgcColumnExchanger=xp,t.IgcColumnExchangersCollection=jp,t.IgcColumnGroupDescription=Po,t.IgcColumnGroupDescriptionCollection=os,t.IgcColumnGroupDescriptionModule=Oo,t.IgcColumnGroupingComponent=Cu,t.IgcColumnGroupingModule=_u,t.IgcColumnHiddenChangedEventArgs=vl,t.IgcColumnMovingSeparatorComponent=co,t.IgcColumnMovingSeparatorModule=po,t.IgcColumnPinnedChangedEventArgs=wl,t.IgcColumnPinningComponent=Ou,t.IgcColumnPinningModule=xu,t.IgcColumnPropertySetter=pl,t.IgcColumnPropertySettersCollection=kp,t.IgcColumnResizingSeparatorComponent=uo,t.IgcColumnResizingSeparatorModule=ho,t.IgcColumnSortDescription=_o,t.IgcColumnSortDescriptionCollection=ns,t.IgcColumnSortDescriptionModule=wo,t.IgcColumnSummaryDescription=jo,t.IgcColumnSummaryDescriptionCollection=as,t.IgcColumnSummaryDescriptionModule=ko,t.IgcColumnWidth=vo,t.IgcColumnWidthModule=Co,t.IgcComboBoxColumnComponent=$u,t.IgcComboBoxColumnModule=Mu,t.IgcDataBindingEventArgs=Wr,t.IgcDataGridAllColumnsModule=zu,t.IgcDataGridCellEventArgs=Wo,t.IgcDataGridColumnComponent=Do,t.IgcDataGridComparisonOperatorSelectorComponent=$c,t.IgcDataGridComponent=Ll,t.IgcDataGridCoreModule=Hl,t.IgcDataGridExpansionIndicatorComponent=Qc,t.IgcDataGridFilterDialogComponent=Vc,t.IgcDataGridLocaleEnModule=vc,t.IgcDataGridModule=mc,t.IgcDataGridPagerComponent=sc,t.IgcDataGridPagerModule=ac,t.IgcDataGridSortIndicatorComponent=Zc,t.IgcDataGridToolbarComponent=dc,t.IgcDataGridToolbarModule=fc,t.IgcDateTimeCellInfo=Er,t.IgcDateTimeColumnComponent=Ql,t.IgcDateTimeColumnModule=Yl,t.IgcDefinitionBaseComponent=Jr,t.IgcEditRowDefinitionComponent=hp,t.IgcEditRowDefinitionModule=cp,t.IgcEditorCellInfo=xc,t.IgcEditorDefinitionComponent=lp,t.IgcEditorDefinitionModule=up,t.IgcEditorRowCellInfo=jc,t.IgcFilterCellInfo=ql,t.IgcFilterDialogRenderCompletedEventArgs=Gc,t.IgcFilterOperand=Eo,t.IgcFilterOperandModule=ic,t.IgcFilterRowDefinitionComponent=pp,t.IgcFilterRowDefinitionModule=dp,t.IgcFormatGroupTextEventArgs=So,t.IgcFormatSummaryTextEventArgs=xo,t.IgcGotFocusEventArgs=Zh,t.IgcGridActiveCellChangedEventArgs=yl,t.IgcGridAnimationPhaseSettings=Oc,t.IgcGridAnimationSettings=gl,t.IgcGridCellEditEndedEventArgs=Al,t.IgcGridCellEditStartedEventArgs=Rl,t.IgcGridCellPosition=Fo,t.IgcGridCellPositionModule=Go,t.IgcGridCellValueChangingEventArgs=Sl,t.IgcGridColumnAnimationSettings=Ro,t.IgcGridColumnButtonOptionsComponent=Eh,t.IgcGridColumnButtonOptionsModule=Bh,t.IgcGridColumnCollection=Uo,t.IgcGridColumnFilterOptionsComponent=mh,t.IgcGridColumnFilterOptionsModule=gh,t.IgcGridColumnGroupOptionsComponent=ch,t.IgcGridColumnGroupOptionsModule=ph,t.IgcGridColumnHideOptionsComponent=uh,t.IgcGridColumnHideOptionsModule=hh,t.IgcGridColumnMoveOptionsComponent=eh,t.IgcGridColumnMoveOptionsModule=ih,t.IgcGridColumnOptionsBaseComponent=Ku,t.IgcGridColumnOptionsComponent=Mh,t.IgcGridColumnOptionsModule=zh,t.IgcGridColumnOptionsSectionBaseComponent=Xu,t.IgcGridColumnOptionsSimpleSectionBaseComponent=Qu,t.IgcGridColumnPinOptionsComponent=oh,t.IgcGridColumnPinOptionsModule=sh,t.IgcGridColumnSortOptionsComponent=Yu,t.IgcGridColumnSortOptionsModule=Zu,t.IgcGridColumnSummaryOptionsComponent=Ph,t.IgcGridColumnSummaryOptionsModule=xh,t.IgcGridColumnWidthChangedEventArgs=kl,t.IgcGridColumnsAutoGeneratedEventArgs=Ko,t.IgcGridColumnsChangedEventArgs=jl,t.IgcGridCompoundConditionalStyleComponent=ip,t.IgcGridConditionFilterStringErrorsParsingEventArgs=Kr,t.IgcGridConditionalStyleCollection=Zr,t.IgcGridConditionalStyleComponent=Yr,t.IgcGridConditionalStyleModule=ku,t.IgcGridConditionalStylePropertyCollection=Qr,t.IgcGridConditionalStylePropertyComponent=Xr,t.IgcGridConditionalStylePropertyModule=ju,t.IgcGridCustomFilterRequestedEventArgs=Ao,t.IgcGridDataCommittedEventArgs=Ol,t.IgcGridDataCommittingEventArgs=Pl,t.IgcGridFilterDialogFilterChangeEventArgs=Fc,t.IgcGridFilterDialogOpeningEventArgs=Nc,t.IgcGridFilterDialogViewModel=Xc,t.IgcGridFilterDialogViewModelGrouping=Lc,t.IgcGridFilterDialogViewModelGroupingLevel=Hc,t.IgcGridFilterDialogViewModelGroupingLevelCollection=Wc,t.IgcGridFilterDialogViewModelRow=Uc,t.IgcGridFilterDialogViewModelRowCollection=Kc,t.IgcGridFilterExpressionsEventArgs=ll,t.IgcGridFilterOperandsCollection=Bo,t.IgcGridGroupDescriptionsChangedEventArgs=ss,t.IgcGridRowEditEndedEventArgs=Bl,t.IgcGridRowEditStartedEventArgs=El,t.IgcGridSelectedCellRangesChangedEventArgs=is,t.IgcGridSelectedCellRangesCollection=es,t.IgcGridSelectedCellsChangedEventArgs=ts,t.IgcGridSelectedCellsCollection=Jo,t.IgcGridSelectedItemsChangedEventArgs=Qo,t.IgcGridSelectedItemsCollection=Xo,t.IgcGridSelectedKeysChangedEventArgs=Zo,t.IgcGridSelectedKeysCollection=Yo,t.IgcGridSelectionChangedEventArgs=Dl,t.IgcGridSizeChangedEventArgs=xl,t.IgcGridSortDescriptionsChangedEventArgs=rs,t.IgcGridSummaryDescriptionsChangedEventArgs=ls,t.IgcGroupData=Tc,t.IgcHeaderComponent=to,t.IgcHeaderRowSeparatorComponent=bl,t.IgcHeaderRowSeparatorModule=Cp,t.IgcHeaderSeparatorComponent=ao,t.IgcHeaderSeparatorModule=lo,t.IgcHorizontalPropertyEditorDataSource=Vp,t.IgcImageCellInfo=Br,t.IgcImageColumnComponent=Iu,t.IgcImageColumnModule=Tu,t.IgcLostFocusEventArgs=Jh,t.IgcMultiColumnComboBoxComponent=tc,t.IgcMultiColumnComboBoxModule=ec,t.IgcMultiColumnComboBoxTextChangedEventArgs=Qh,t.IgcMultiColumnComboBoxValueChangedEventArgs=Yh,t.IgcNumericCellInfo=Dr,t.IgcNumericColumnComponent=Kl,t.IgcNumericColumnModule=Xl,t.IgcOperatorSelectorClosingEventArgs=Dc,t.IgcOperatorSelectorOpeningEventArgs=Ec,t.IgcOperatorSelectorValueChangedEventArgs=Ac,t.IgcPageChangedEventArgs=rc,t.IgcPinnedAreaSeparatorComponent=_l,t.IgcPinnedAreaSeparatorModule=bp,t.IgcPrimaryKeyValue=Io,t.IgcPrimaryKeyValueModule=To,t.IgcPropertyEditorComponent=Fp,t.IgcPropertyEditorModule=Gp,t.IgcResponsivePhase=dl,t.IgcResponsivePhasesCollection=Ip,t.IgcResponsiveState=fl,t.IgcResponsiveStateEnteredEventArgs=hl,t.IgcResponsiveStateEnteringEventArgs=ul,t.IgcResponsiveStateExitedEventArgs=cl,t.IgcResponsiveStatesCollection=ml,t.IgcRowSeparatorComponent=oo,t.IgcRowSeparatorInfo=$r,t.IgcRowSeparatorModule=so,t.IgcSectionFooterComponent=yp,t.IgcSectionFooterModule=vp,t.IgcSectionHeaderCellInfo=Mr,t.IgcSectionHeaderComponent=no,t.IgcSectionHeaderModule=ro,t.IgcSelectAllCheckboxChangedEventArgs=hu,t.IgcSortIndicatorRenderCompletedEventArgs=Yc,t.IgcSummaryCellInfo=kc,t.IgcSummaryChangedEventArgs=qp,t.IgcSummaryChooserModule=Oh,t.IgcSummaryData=Rc,t.IgcSummaryRowComponent=fo,t.IgcSummaryRowRootComponent=mo,t.IgcSummaryRowRootModule=go,t.IgcSummaryRowSectionComponent=bo,t.IgcSummaryRowSectionModule=yo,t.IgcTemplateCellInfo=zr,t.IgcTemplateCellUpdatingEventArgs=Zl,t.IgcTemplateColumnComponent=Jl,t.IgcTemplateColumnModule=tu,t.IgcTemplateHeaderCellInfo=Gr,t.IgcTemplateHeaderCellUpdatingEventArgs=Au,t.IgcTemplateHeaderComponent=Bu,t.IgcTemplateHeaderModule=Du,t.IgcTemplateSectionHeaderCellInfo=qr,t.IgcTemplateSectionHeaderCellUpdatingEventArgs=bc,t.IgcTemplateSectionHeaderComponent=wp,t.IgcTemplateSectionHeaderModule=Sp,t.IgcTextCellInfo=Lr,t.IgcTextColumnComponent=Wl,t.IgcTextColumnModule=Ul,t.IgcTextHeaderCellInfo=Hr,t.IgcTextHeaderComponent=eo,t.IgcTextHeaderModule=io,t.IgcTextIconSetConditionalStyleComponent=sp,t.IgcTextIconSetConditionalStyleModule=ap,t.IgcVerticalSeparatorCellInfo=Ic,t.ImageCell=$a,t.ImageCellModel=Fi,t.ImageCellModelExport=W,t.ImageCellPresenter=Ma,t.ImageColumn=Ln,t.ImageResourceType=L,t.ImageResourceType_$type=H,t.ImageStretchOptions=V,t.ImageStretchOptions_$type=q,t.LayoutAction=ui,t.LayoutAction_$type=hi,t.LostFocusEventArgs=Fh,t.MergedCellEvaluationCriteria=Pe,t.MergedCellEvaluationCriteria_$type=Oe,t.MergedCellInfo=pi,t.MergedCellMode=we,t.MergedCellMode_$type=Se,t.ModelStates_$type=w,t.ModelTypes_$type=P,t.MultiColumnComboBox=Kh,t.MultiColumnComboBoxDataSourceNotificationHandler=Xh,t.MultiColumnComboBoxSelectedItemChangeType=Bp,t.MultiColumnComboBoxSelectedItemChangeType_$type=Dp,t.MultiColumnComboBoxTextChangedEventArgs=Lh,t.MultiColumnComboBoxUtilities=Gh,t.MultiColumnComboBoxValueChangedEventArgs=Hh,t.MultiColumnComboBoxView=Uh,t.MultiColumnComboVisualModelExport=Wh,t.MultipleDataSourceNotifier=bt,t.NativeUIComboFactory=Rp,t.NativeUIGridFactory=Lo,t.NumericCell=ga,t.NumericCellFormatter=Hn,t.NumericCellModel=Gi,t.NumericCellModelExport=U,t.NumericCellPresenter=ba,t.NumericColumn=Wn,t.NumericEditorView=Zs,t.OperatorModel=aa,t.OperatorSelectorClosingEventArgs=Bc,t.OperatorSelectorOpeningEventArgs=sa,t.OperatorSelectorValueChangedEventArgs=la,t.PageChangedEventArgs=ut,t.PagedDataProvider=Qi,t.Pager=Ui,t.PagerDataSourceNotificationBridge=Ki,t.PagerGridDataSourceNotificationBridge=Xi,t.PagerView=Ai,t.PagerVisualModelExport=St,t.PinnedAreaSeparator=Un,t.PinnedPositions=j,t.PinnedPositions_$type=k,t.PinnedRowInfo=br,t.PlaceholderView=Us,t.PrimaryKeyValue=fe,t.PropertyEditor=Np,t.PropertyEditorView=zp,t.PushRowResult=vr,t.PushRowSettings=yr,t.RecyclingManager=On,t.ResponsiveEngine=Sr,t.ResponsivePhase=Pr,t.ResponsivePhasesCollection=Or,t.ResponsiveState=xr,t.ResponsiveStateEnteredEventArgs=bi,t.ResponsiveStateEnteringEventArgs=gi,t.ResponsiveStateExitedEventArgs=yi,t.ResponsiveStatesCollection=jr,t.RowCellsEffect=dr,t.RowEffect=pr,t.RowHoverAnimationMode=Lt,t.RowHoverAnimationMode_$type=Ht,t.RowPath=g,t.RowRange=ci,t.RowSelectionAnimationMode=Vt,t.RowSelectionAnimationMode_$type=qt,t.RowSeparator=Yn,t.RowSeparatorCell=Ba,t.RowSeparatorCellPresenter=Da,t.RowSeparatorModel=Vi,t.RowSeparatorModelExport=K,t.SaveLayoutColumn=Kn,t.SaveLayoutFilterInfo=Xe,t.SaveLayoutGroupInfo=Ke,t.SaveLayoutSortInfo=Ue,t.SectionFooter=Xn,t.SectionHeader=Qn,t.SectionHeaderCell=qa,t.SectionHeaderCellModel=qi,t.SectionHeaderCellModelExport=Y,t.SectionHeaderCellPresenter=La,t.SectionInfo=Tr,t.SelectAllCheckboxChangedEventArgs=su,t.SelectionManager=jn,t.SortIndicatorRenderCompletedEventArgs=Os,t.SortIndicatorStyle=o,t.SortIndicatorStyle_$type=s,t.SortManager=kn,t.SortMode=Vh,t.SortMode_$type=qh,t.SpacerEffect=lr,t.SpatialEngine=Cr,t.StringOperatorTypes_$type=zc,t.SummaryCell=Ua,t.SummaryCellModel=zi,t.SummaryCellModelExport=G,t.SummaryCellPresenter=Ka,t.SummaryChangedEventArgs=yh,t.SummaryChooser=_h,t.SummaryChooserItem=bh,t.SummaryChooserView=Ch,t.SummaryData=Q,t.SummaryRow=Jn,t.SummaryRowRoot=tr,t.SummaryRowSection=er,t.SummaryScope=ot,t.SummaryScope_$type=st,t.TemplateCell=Na,t.TemplateCellContainer=za,t.TemplateCellModel=Li,t.TemplateCellModelExport=Z,t.TemplateCellPresenter=Fa,t.TemplateCellUpdatingEventArgs=nr,t.TemplateColumn=ir,t.TemplateHeader=Eu,t.TemplateHeaderCell=Ga,t.TemplateHeaderCellModel=Fr,t.TemplateHeaderCellModelExport=Nr,t.TemplateHeaderCellPresenter=Va,t.TemplateHeaderCellUpdatingEventArgs=Ru,t.TemplateSectionHeader=_p,t.TemplateSectionHeaderCellModel=Vr,t.TemplateSectionHeaderCellModelExport=Tp,t.TemplateSectionHeaderCellUpdatingEventArgs=gc,t.TextCell=da,t.TextCellLineBreakMode=c,t.TextCellLineBreakMode_$type=p,t.TextCellModel=Hi,t.TextCellModelExport=J,t.TextCellPresenter=ma,t.TextColumn=rr,t.TextEditorView=Ys,t.TextHeader=or,t.TextHeaderCell=Aa,t.TextHeaderCellModel=Wi,t.TextHeaderCellModelExport=rt,t.TextHeaderCellPresenter=Ea,t.TextIconSetBuiltInTypes=np,t.TextIconSetBuiltInTypes_$type=rp,t.TextIconSetConditionalStyle=op,t.TextVisualModelExport=Fl,t.ToolbarVisualModelExport=hc,t.VerticalSeparatorCell=Ha,t.VerticalSeparatorCellModel=Ni,t.VerticalSeparatorCellPresenter=Wa,t.VisibilityEngine=gr,t.VisualModel=Rr,t.VisualModelExport=Ve,Object.defineProperty(t,"__esModule",{value:!0})}));
|