igniteui-angular-core 20.0.1 → 20.0.2-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/bundles/igniteui-angular-core.umd.js +16013 -8806
- package/bundles/igniteui-angular-core.umd.min.js +2 -2
- package/esm2015/lib/AsyncDataSourcePageRequest.js +14 -7
- package/esm2015/lib/AsyncVirtualDataSourceProviderWorker.js +17 -16
- package/esm2015/lib/AsyncVirtualDataTaskCompletionSource.js +33 -0
- package/esm2015/lib/AxisDescription.js +420 -196
- package/esm2015/lib/AxisDescriptionMetadata.js +32 -0
- package/esm2015/lib/AzureMapsMapImageryDescription.js +71 -0
- package/esm2015/lib/AzureMapsMapImageryDescriptionMetadata.js +45 -0
- package/esm2015/lib/AzureMapsMapImageryDescriptionModule.js +20 -0
- package/esm2015/lib/AzureMapsTileSource.js +112 -0
- package/esm2015/lib/BaseGenericDataSource.js +85 -0
- package/esm2015/lib/BaseGenericDataSourceDescription.js +58 -0
- package/esm2015/lib/BaseGenericDataSourceDescriptionMetadata.js +38 -0
- package/esm2015/lib/BaseVirtualDataProvider.js +398 -0
- package/esm2015/lib/CanvasViewRenderer.js +11 -6
- package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm2015/lib/CategoryAxisBaseDescription.js +24 -24
- package/esm2015/lib/CategoryChartDescription.js +130 -130
- package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm2015/lib/CategoryHighlightLayerDescriptionMetadata.js +1 -0
- package/esm2015/lib/CategoryToolTipLayerDescription.js +27 -3
- package/esm2015/lib/CategoryToolTipLayerDescriptionMetadata.js +4 -0
- package/esm2015/lib/CategoryXAxisDescription.js +49 -33
- package/esm2015/lib/CategoryXAxisDescriptionMetadata.js +2 -0
- package/esm2015/lib/CategoryYAxisDescription.js +49 -33
- package/esm2015/lib/CategoryYAxisDescriptionMetadata.js +2 -0
- package/esm2015/lib/CellInfoDescription.js +321 -201
- package/esm2015/lib/CellInfoDescriptionMetadata.js +16 -0
- package/esm2015/lib/ChartMouseEventArgsDescription.js +17 -9
- package/esm2015/lib/ChartResizeIdleEventArgsDescription.js +26 -0
- package/esm2015/lib/ChartResizeIdleEventArgsDescriptionMetadata.js +36 -0
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +254 -254
- package/esm2015/lib/ColumnGroupDescriptionDescriptionMetadata.js +2 -2
- package/esm2015/lib/ColumnSummaryDescriptionDescriptionMetadata.js +2 -2
- package/esm2015/lib/ComboBoxColumnDescription.js +20 -12
- package/esm2015/lib/ComboBoxColumnDescriptionMetadata.js +2 -1
- package/esm2015/lib/ComponentRendererAdapter.js +5 -3
- package/esm2015/lib/ComponentRendererMethodHelperBuilder_combined.js +444 -167
- package/esm2015/lib/ComponentRenderer_combined.js +673 -565
- package/esm2015/lib/CustomLocalDataSourceDescription.js +26 -0
- package/esm2015/lib/CustomLocalDataSourceDescriptionMetadata.js +36 -0
- package/esm2015/lib/CustomLocalDataSourceDescriptionModule.js +20 -0
- package/esm2015/lib/DataAnnotationAxisLayerDescriptionMetadata.js +1 -0
- package/esm2015/lib/DataChartDashboardTileDescriptionModule.js +2 -0
- package/esm2015/lib/DataChartDescription.js +99 -99
- package/esm2015/lib/DataChartMouseButtonEventArgsDescription.js +23 -15
- package/esm2015/lib/DataGridCellEventArgsDescriptionMetadata_combined.js +3 -1
- package/esm2015/lib/DataGridColumnDescription.js +229 -109
- package/esm2015/lib/DataGridColumnDescriptionMetadata.js +16 -0
- package/esm2015/lib/DataGridDescription.js +623 -607
- package/esm2015/lib/DataLegendDescription.js +414 -382
- package/esm2015/lib/DataLegendDescriptionMetadata.js +4 -0
- package/esm2015/lib/DataPieBaseChartDescription.js +152 -112
- package/esm2015/lib/DataPieBaseChartDescriptionMetadata.js +9 -4
- package/esm2015/lib/DataPieChartDescription.js +36 -36
- package/esm2015/lib/DataPieChartDescriptionModule.js +2 -0
- package/esm2015/lib/DataSourceGroupDescription.js +52 -0
- package/esm2015/lib/DataSourceGroupDescriptionCollection.js +84 -0
- package/esm2015/lib/DataSourceGroupDescriptionDescription.js +25 -0
- package/esm2015/lib/DataSourceGroupDescriptionDescriptionMetadata.js +39 -0
- package/esm2015/lib/DataSourceGroupDescriptionDescriptionModule.js +22 -0
- package/esm2015/lib/DataSourceSortDescription.js +61 -0
- package/esm2015/lib/DataSourceSortDescriptionCollection.js +96 -0
- package/esm2015/lib/DataSourceSortDescriptionDescription.js +44 -0
- package/esm2015/lib/DataSourceSortDescriptionDescriptionMetadata.js +40 -0
- package/esm2015/lib/DataSourceSortDescriptionDescriptionModule.js +20 -0
- package/esm2015/lib/DataSourceSummaryDescription.js +123 -0
- package/esm2015/lib/DataSourceSummaryDescriptionCollection.js +102 -0
- package/esm2015/lib/DataSourceSummaryDescriptionDescription.js +68 -0
- package/esm2015/lib/DataSourceSummaryDescriptionDescriptionMetadata.js +45 -0
- package/esm2015/lib/DataSourceSummaryDescriptionDescriptionModule.js +20 -0
- package/esm2015/lib/DataToolTipLayerDescription.js +251 -227
- package/esm2015/lib/DataToolTipLayerDescriptionMetadata.js +4 -0
- package/esm2015/lib/DateTimeCellInfoDescription.js +18 -18
- package/esm2015/lib/DateTimeCellInfoDescriptionMetadata.js +1 -1
- package/esm2015/lib/DateTimeColumnDescription.js +44 -36
- package/esm2015/lib/DateTimeColumnDescriptionMetadata.js +4 -3
- package/esm2015/lib/DescriptionSerializer.js +1 -1
- package/esm2015/lib/DomainChartDescription.js +620 -588
- package/esm2015/lib/DomainChartDescriptionMetadata.js +6 -2
- package/esm2015/lib/DomainChartSeriesPointerEventArgsDescription.js +17 -9
- package/esm2015/lib/DomainChartSeriesPointerEventArgsDescriptionMetadata.js +1 -0
- package/esm2015/lib/EditorCellInfoDescription.js +30 -30
- package/esm2015/lib/FilterCellInfoDescription.js +36 -36
- package/esm2015/lib/FilterExpressionDescription.js +64 -0
- package/esm2015/lib/FilterExpressionDescriptionMetadata.js +8 -0
- package/esm2015/lib/FinancialChartDescription.js +176 -176
- package/esm2015/lib/FontRegistry.js +47 -0
- package/esm2015/lib/FunctionFilterExpressionDescription.js +30 -6
- package/esm2015/lib/FunctionFilterExpressionDescriptionMetadata.js +3 -0
- package/esm2015/lib/GenericDataSourcePage.js +82 -0
- package/esm2015/lib/GenericDataSourceSchemaPropertyType.js +37 -0
- package/esm2015/lib/GenericInternalVirtualDataProvider.js +247 -0
- package/esm2015/lib/GenericInternalVirtualDataSource.js +125 -0
- package/esm2015/lib/GenericPageResponse.js +37 -0
- package/esm2015/lib/GenericSectionInformation.js +55 -0
- package/esm2015/lib/GenericSummaryResult.js +62 -0
- package/esm2015/lib/GenericVirtualDataProviderWorker.js +156 -0
- package/esm2015/lib/GenericVirtualDataProviderWorkerSettings.js +62 -0
- package/esm2015/lib/GenericVirtualDataSource.js +178 -0
- package/esm2015/lib/GenericVirtualDataSourceDescription.js +31 -0
- package/esm2015/lib/GenericVirtualDataSourceDescriptionMetadata.js +41 -0
- package/esm2015/lib/GenericVirtualDataSourceDescriptionModule.js +20 -0
- package/esm2015/lib/GeographicMapImageryDescription_combined.js +41 -41
- package/esm2015/lib/GeometryUtil.js +18 -3
- package/esm2015/lib/GridConditionalStyleFontInfoDescription.js +58 -0
- package/esm2015/lib/GridConditionalStyleFontInfoDescriptionMetadata.js +40 -0
- package/esm2015/lib/GridConditionalStyleFontInfoDescriptionModule.js +20 -0
- package/esm2015/lib/HierarchicalRingSeriesDescription.js +3 -3
- package/esm2015/lib/IRenderer_combined.js +21 -15
- package/esm2015/lib/ImageCellInfoDescription.js +9 -9
- package/esm2015/lib/ImageColumnDescription.js +29 -21
- package/esm2015/lib/ImageColumnDescriptionMetadata.js +3 -2
- package/esm2015/lib/ItemToolTipLayerDescription.js +30 -6
- package/esm2015/lib/ItemToolTipLayerDescriptionMetadata.js +3 -0
- package/esm2015/lib/LayoutPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm2015/lib/ListPanelPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm2015/lib/LiteralFilterExpressionDescription.js +30 -6
- package/esm2015/lib/LiteralFilterExpressionDescriptionMetadata.js +3 -0
- package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
- package/esm2015/lib/NumericAxisBaseDescription.js +132 -84
- package/esm2015/lib/NumericAxisBaseDescriptionMetadata.js +6 -0
- package/esm2015/lib/NumericCellInfoDescription.js +39 -39
- package/esm2015/lib/NumericCellInfoDescriptionMetadata.js +1 -1
- package/esm2015/lib/NumericColumnDescription.js +59 -51
- package/esm2015/lib/NumericColumnDescriptionMetadata.js +4 -3
- package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm2015/lib/OperationFilterExpressionDescription.js +79 -15
- package/esm2015/lib/OperationFilterExpressionDescriptionMetadata.js +8 -0
- package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm2015/lib/PagePredictionEngine.js +1 -1
- package/esm2015/lib/PageRequestedEventArgs.js +24 -0
- package/esm2015/lib/PageRequestedEventArgsDescription.js +66 -0
- package/esm2015/lib/PageRequestedEventArgsDescriptionMetadata.js +41 -0
- package/esm2015/lib/PieSliceCollisionGeometry.js +1 -1
- package/esm2015/lib/PlatformAPIHelper.js +9 -1
- package/esm2015/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +14 -0
- package/esm2015/lib/PrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm2015/lib/PropertyReferenceFilterExpressionDescription.js +19 -3
- package/esm2015/lib/PropertyReferenceFilterExpressionDescriptionMetadata.js +2 -0
- package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm2015/lib/RadialBaseChartDescription.js +228 -228
- package/esm2015/lib/RadialPieSeriesDescription.js +20 -12
- package/esm2015/lib/RadialPieSeriesDescriptionMetadata.js +1 -0
- package/esm2015/lib/RingSeriesBaseDescription.js +14 -6
- package/esm2015/lib/RingSeriesBaseDescriptionMetadata.js +1 -0
- package/esm2015/lib/RingSeriesDescription.js +3 -3
- package/esm2015/lib/SectionHeaderCellInfoDescription.js +9 -9
- package/esm2015/lib/SeriesViewerDescription.js +469 -389
- package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm2015/lib/SummaryCellInfoDescription.js +21 -21
- package/esm2015/lib/TemplateCellInfoDescription.js +3 -3
- package/esm2015/lib/TemplateColumnDescription.js +6 -6
- package/esm2015/lib/TemplateHeaderCellInfoDescription.js +3 -3
- package/esm2015/lib/TextCellInfoDescription.js +3 -3
- package/esm2015/lib/TextColumnDescription.js +26 -18
- package/esm2015/lib/TextColumnDescriptionMetadata.js +3 -2
- package/esm2015/lib/TextHeaderCellInfoDescription.js +15 -15
- package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
- package/esm2015/lib/TimeXAxisDescription.js +12 -12
- package/esm2015/lib/ToolActionButtonPairInfoDescription.js +92 -44
- package/esm2015/lib/ToolActionButtonPairInfoDescriptionMetadata.js +6 -0
- package/esm2015/lib/TrendLineLayerDescription.js +8 -8
- package/esm2015/lib/TrendLineLayerDescriptionMetadata.js +2 -1
- package/esm2015/lib/ValueLayerDescription.js +33 -49
- package/esm2015/lib/ValueLayerDescriptionMetadata.js +2 -2
- package/esm2015/lib/VirtualDataSource.js +1 -1
- package/esm2015/lib/WebTabsDescription.js +15 -7
- package/esm2015/lib/WebTabsDescriptionMetadata.js +3 -0
- package/esm2015/lib/WrapperExpressionDescription.js +25 -9
- package/esm2015/lib/WrapperExpressionDescriptionMetadata.js +2 -0
- package/esm2015/lib/XYChartDescription.js +228 -228
- package/esm2015/lib/XamMultiScaleImageView_combined.js +110 -98
- package/esm2015/lib/igx-base-generic-data-source.js +183 -0
- package/esm2015/lib/igx-data-legend-series-context.js +6 -4
- package/esm2015/lib/igx-data-source-group-description-collection.js +70 -0
- package/esm2015/lib/igx-data-source-group-description-dynamic-module.js +34 -0
- package/esm2015/lib/igx-data-source-group-description-module.js +26 -0
- package/esm2015/lib/igx-data-source-group-description.js +16 -0
- package/esm2015/lib/igx-data-source-sort-description-collection.js +80 -0
- package/esm2015/lib/igx-data-source-sort-description-dynamic-module.js +34 -0
- package/esm2015/lib/igx-data-source-sort-description-module.js +26 -0
- package/esm2015/lib/igx-data-source-sort-description.js +64 -0
- package/esm2015/lib/igx-data-source-summary-description-collection.js +80 -0
- package/esm2015/lib/igx-data-source-summary-description-dynamic-module.js +34 -0
- package/esm2015/lib/igx-data-source-summary-description-module.js +26 -0
- package/esm2015/lib/igx-data-source-summary-description.js +106 -0
- package/esm2015/lib/igx-generic-virtual-data-source-dynamic-module.js +35 -0
- package/esm2015/lib/igx-generic-virtual-data-source-module.js +33 -0
- package/esm2015/lib/igx-generic-virtual-data-source.js +119 -0
- package/esm2015/lib/igx-page-requested-event-args.js +76 -0
- package/esm2015/lib/igx-popup-component.js +3 -1
- package/esm2015/public_api.js +66 -0
- package/esm5/lib/AsyncDataSourcePageRequest.js +18 -7
- package/esm5/lib/AsyncVirtualDataSourceProviderWorker.js +17 -16
- package/esm5/lib/AsyncVirtualDataTaskCompletionSource.js +39 -0
- package/esm5/lib/AxisDescription.js +532 -196
- package/esm5/lib/AxisDescriptionMetadata.js +32 -0
- package/esm5/lib/AzureMapsMapImageryDescription.js +97 -0
- package/esm5/lib/AzureMapsMapImageryDescriptionMetadata.js +49 -0
- package/esm5/lib/AzureMapsMapImageryDescriptionModule.js +24 -0
- package/esm5/lib/AzureMapsTileSource.js +138 -0
- package/esm5/lib/BaseGenericDataSource.js +107 -0
- package/esm5/lib/BaseGenericDataSourceDescription.js +80 -0
- package/esm5/lib/BaseGenericDataSourceDescriptionMetadata.js +42 -0
- package/esm5/lib/BaseVirtualDataProvider.js +484 -0
- package/esm5/lib/CanvasViewRenderer.js +11 -6
- package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm5/lib/CategoryAxisBaseDescription.js +24 -24
- package/esm5/lib/CategoryChartDescription.js +130 -130
- package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm5/lib/CategoryHighlightLayerDescriptionMetadata.js +1 -0
- package/esm5/lib/CategoryToolTipLayerDescription.js +39 -3
- package/esm5/lib/CategoryToolTipLayerDescriptionMetadata.js +4 -0
- package/esm5/lib/CategoryXAxisDescription.js +57 -33
- package/esm5/lib/CategoryXAxisDescriptionMetadata.js +2 -0
- package/esm5/lib/CategoryYAxisDescription.js +57 -33
- package/esm5/lib/CategoryYAxisDescriptionMetadata.js +2 -0
- package/esm5/lib/CellInfoDescription.js +381 -201
- package/esm5/lib/CellInfoDescriptionMetadata.js +16 -0
- package/esm5/lib/ChartMouseEventArgsDescription.js +21 -9
- package/esm5/lib/ChartResizeIdleEventArgsDescription.js +31 -0
- package/esm5/lib/ChartResizeIdleEventArgsDescriptionMetadata.js +40 -0
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +254 -254
- package/esm5/lib/ColumnGroupDescriptionDescriptionMetadata.js +2 -2
- package/esm5/lib/ColumnSummaryDescriptionDescriptionMetadata.js +2 -2
- package/esm5/lib/ComboBoxColumnDescription.js +24 -12
- package/esm5/lib/ComboBoxColumnDescriptionMetadata.js +2 -1
- package/esm5/lib/ComponentRendererAdapter.js +5 -3
- package/esm5/lib/ComponentRendererMethodHelperBuilder_combined.js +506 -179
- package/esm5/lib/ComponentRenderer_combined.js +723 -597
- package/esm5/lib/CustomLocalDataSourceDescription.js +31 -0
- package/esm5/lib/CustomLocalDataSourceDescriptionMetadata.js +40 -0
- package/esm5/lib/CustomLocalDataSourceDescriptionModule.js +24 -0
- package/esm5/lib/DataAnnotationAxisLayerDescriptionMetadata.js +1 -0
- package/esm5/lib/DataChartDashboardTileDescriptionModule.js +2 -0
- package/esm5/lib/DataChartDescription.js +99 -99
- package/esm5/lib/DataChartMouseButtonEventArgsDescription.js +27 -15
- package/esm5/lib/DataGridCellEventArgsDescriptionMetadata_combined.js +3 -1
- package/esm5/lib/DataGridColumnDescription.js +289 -109
- package/esm5/lib/DataGridColumnDescriptionMetadata.js +16 -0
- package/esm5/lib/DataGridDescription.js +633 -609
- package/esm5/lib/DataLegendDescription.js +430 -382
- package/esm5/lib/DataLegendDescriptionMetadata.js +4 -0
- package/esm5/lib/DataPieBaseChartDescription.js +172 -112
- package/esm5/lib/DataPieBaseChartDescriptionMetadata.js +9 -4
- package/esm5/lib/DataPieChartDescription.js +36 -36
- package/esm5/lib/DataPieChartDescriptionModule.js +2 -0
- package/esm5/lib/DataSourceGroupDescription.js +59 -0
- package/esm5/lib/DataSourceGroupDescriptionCollection.js +94 -0
- package/esm5/lib/DataSourceGroupDescriptionDescription.js +26 -0
- package/esm5/lib/DataSourceGroupDescriptionDescriptionMetadata.js +43 -0
- package/esm5/lib/DataSourceGroupDescriptionDescriptionModule.js +26 -0
- package/esm5/lib/DataSourceSortDescription.js +75 -0
- package/esm5/lib/DataSourceSortDescriptionCollection.js +110 -0
- package/esm5/lib/DataSourceSortDescriptionDescription.js +58 -0
- package/esm5/lib/DataSourceSortDescriptionDescriptionMetadata.js +44 -0
- package/esm5/lib/DataSourceSortDescriptionDescriptionModule.js +24 -0
- package/esm5/lib/DataSourceSummaryDescription.js +149 -0
- package/esm5/lib/DataSourceSummaryDescriptionCollection.js +116 -0
- package/esm5/lib/DataSourceSummaryDescriptionDescription.js +94 -0
- package/esm5/lib/DataSourceSummaryDescriptionDescriptionMetadata.js +49 -0
- package/esm5/lib/DataSourceSummaryDescriptionDescriptionModule.js +24 -0
- package/esm5/lib/DataToolTipLayerDescription.js +263 -227
- package/esm5/lib/DataToolTipLayerDescriptionMetadata.js +4 -0
- package/esm5/lib/DateTimeCellInfoDescription.js +18 -18
- package/esm5/lib/DateTimeCellInfoDescriptionMetadata.js +1 -1
- package/esm5/lib/DateTimeColumnDescription.js +47 -35
- package/esm5/lib/DateTimeColumnDescriptionMetadata.js +4 -3
- package/esm5/lib/DescriptionSerializer.js +1 -1
- package/esm5/lib/DomainChartDescription.js +636 -588
- package/esm5/lib/DomainChartDescriptionMetadata.js +6 -2
- package/esm5/lib/DomainChartSeriesPointerEventArgsDescription.js +21 -9
- package/esm5/lib/DomainChartSeriesPointerEventArgsDescriptionMetadata.js +1 -0
- package/esm5/lib/EditorCellInfoDescription.js +30 -30
- package/esm5/lib/FilterCellInfoDescription.js +36 -36
- package/esm5/lib/FilterExpressionDescription.js +98 -1
- package/esm5/lib/FilterExpressionDescriptionMetadata.js +8 -0
- package/esm5/lib/FinancialChartDescription.js +176 -176
- package/esm5/lib/FontRegistry.js +53 -0
- package/esm5/lib/FunctionFilterExpressionDescription.js +42 -6
- package/esm5/lib/FunctionFilterExpressionDescriptionMetadata.js +3 -0
- package/esm5/lib/GenericDataSourcePage.js +84 -0
- package/esm5/lib/GenericDataSourceSchemaPropertyType.js +37 -0
- package/esm5/lib/GenericInternalVirtualDataProvider.js +250 -0
- package/esm5/lib/GenericInternalVirtualDataSource.js +151 -0
- package/esm5/lib/GenericPageResponse.js +39 -0
- package/esm5/lib/GenericSectionInformation.js +77 -0
- package/esm5/lib/GenericSummaryResult.js +88 -0
- package/esm5/lib/GenericVirtualDataProviderWorker.js +180 -0
- package/esm5/lib/GenericVirtualDataProviderWorkerSettings.js +88 -0
- package/esm5/lib/GenericVirtualDataSource.js +180 -0
- package/esm5/lib/GenericVirtualDataSourceDescription.js +37 -0
- package/esm5/lib/GenericVirtualDataSourceDescriptionMetadata.js +45 -0
- package/esm5/lib/GenericVirtualDataSourceDescriptionModule.js +24 -0
- package/esm5/lib/GeographicMapImageryDescription_combined.js +41 -41
- package/esm5/lib/GeometryUtil.js +18 -3
- package/esm5/lib/GridConditionalStyleFontInfoDescription.js +80 -0
- package/esm5/lib/GridConditionalStyleFontInfoDescriptionMetadata.js +44 -0
- package/esm5/lib/GridConditionalStyleFontInfoDescriptionModule.js +24 -0
- package/esm5/lib/HierarchicalRingSeriesDescription.js +3 -3
- package/esm5/lib/IRenderer_combined.js +21 -15
- package/esm5/lib/ImageCellInfoDescription.js +9 -9
- package/esm5/lib/ImageColumnDescription.js +32 -20
- package/esm5/lib/ImageColumnDescriptionMetadata.js +3 -2
- package/esm5/lib/ItemToolTipLayerDescription.js +42 -6
- package/esm5/lib/ItemToolTipLayerDescriptionMetadata.js +3 -0
- package/esm5/lib/LayoutPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm5/lib/ListPanelPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm5/lib/LiteralFilterExpressionDescription.js +42 -6
- package/esm5/lib/LiteralFilterExpressionDescriptionMetadata.js +3 -0
- package/esm5/lib/NumericAngleAxisDescription.js +6 -6
- package/esm5/lib/NumericAxisBaseDescription.js +156 -84
- package/esm5/lib/NumericAxisBaseDescriptionMetadata.js +6 -0
- package/esm5/lib/NumericCellInfoDescription.js +39 -39
- package/esm5/lib/NumericCellInfoDescriptionMetadata.js +1 -1
- package/esm5/lib/NumericColumnDescription.js +62 -50
- package/esm5/lib/NumericColumnDescriptionMetadata.js +4 -3
- package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm5/lib/OperationFilterExpressionDescription.js +111 -15
- package/esm5/lib/OperationFilterExpressionDescriptionMetadata.js +8 -0
- package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm5/lib/PagePredictionEngine.js +1 -1
- package/esm5/lib/PageRequestedEventArgs.js +26 -0
- package/esm5/lib/PageRequestedEventArgsDescription.js +92 -0
- package/esm5/lib/PageRequestedEventArgsDescriptionMetadata.js +45 -0
- package/esm5/lib/PieSliceCollisionGeometry.js +1 -1
- package/esm5/lib/PlatformAPIHelper.js +9 -1
- package/esm5/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +14 -0
- package/esm5/lib/PrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm5/lib/PropertyReferenceFilterExpressionDescription.js +27 -3
- package/esm5/lib/PropertyReferenceFilterExpressionDescriptionMetadata.js +2 -0
- package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm5/lib/RadialBaseChartDescription.js +228 -228
- package/esm5/lib/RadialPieSeriesDescription.js +24 -12
- package/esm5/lib/RadialPieSeriesDescriptionMetadata.js +1 -0
- package/esm5/lib/RingSeriesBaseDescription.js +18 -6
- package/esm5/lib/RingSeriesBaseDescriptionMetadata.js +1 -0
- package/esm5/lib/RingSeriesDescription.js +3 -3
- package/esm5/lib/SectionHeaderCellInfoDescription.js +9 -9
- package/esm5/lib/SeriesViewerDescription.js +509 -389
- package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm5/lib/SummaryCellInfoDescription.js +21 -21
- package/esm5/lib/TemplateCellInfoDescription.js +3 -3
- package/esm5/lib/TemplateColumnDescription.js +6 -6
- package/esm5/lib/TemplateHeaderCellInfoDescription.js +3 -3
- package/esm5/lib/TextCellInfoDescription.js +3 -3
- package/esm5/lib/TextColumnDescription.js +29 -17
- package/esm5/lib/TextColumnDescriptionMetadata.js +3 -2
- package/esm5/lib/TextHeaderCellInfoDescription.js +15 -15
- package/esm5/lib/TimeAxisBaseDescription.js +24 -24
- package/esm5/lib/TimeXAxisDescription.js +12 -12
- package/esm5/lib/ToolActionButtonPairInfoDescription.js +115 -43
- package/esm5/lib/ToolActionButtonPairInfoDescriptionMetadata.js +6 -0
- package/esm5/lib/TrendLineLayerDescription.js +9 -9
- package/esm5/lib/TrendLineLayerDescriptionMetadata.js +2 -1
- package/esm5/lib/ValueLayerDescription.js +32 -56
- package/esm5/lib/ValueLayerDescriptionMetadata.js +2 -2
- package/esm5/lib/VirtualDataSource.js +1 -1
- package/esm5/lib/WebTabsDescription.js +19 -7
- package/esm5/lib/WebTabsDescriptionMetadata.js +3 -0
- package/esm5/lib/WrapperExpressionDescription.js +33 -9
- package/esm5/lib/WrapperExpressionDescriptionMetadata.js +2 -0
- package/esm5/lib/XYChartDescription.js +228 -228
- package/esm5/lib/XamMultiScaleImageView_combined.js +109 -97
- package/esm5/lib/igx-base-generic-data-source.js +209 -0
- package/esm5/lib/igx-data-legend-series-context.js +6 -4
- package/esm5/lib/igx-data-source-group-description-collection.js +76 -0
- package/esm5/lib/igx-data-source-group-description-dynamic-module.js +33 -0
- package/esm5/lib/igx-data-source-group-description-module.js +27 -0
- package/esm5/lib/igx-data-source-group-description.js +24 -0
- package/esm5/lib/igx-data-source-sort-description-collection.js +90 -0
- package/esm5/lib/igx-data-source-sort-description-dynamic-module.js +33 -0
- package/esm5/lib/igx-data-source-sort-description-module.js +27 -0
- package/esm5/lib/igx-data-source-sort-description.js +78 -0
- package/esm5/lib/igx-data-source-summary-description-collection.js +90 -0
- package/esm5/lib/igx-data-source-summary-description-dynamic-module.js +33 -0
- package/esm5/lib/igx-data-source-summary-description-module.js +27 -0
- package/esm5/lib/igx-data-source-summary-description.js +133 -0
- package/esm5/lib/igx-generic-virtual-data-source-dynamic-module.js +34 -0
- package/esm5/lib/igx-generic-virtual-data-source-module.js +32 -0
- package/esm5/lib/igx-generic-virtual-data-source.js +133 -0
- package/esm5/lib/igx-page-requested-event-args.js +102 -0
- package/esm5/lib/igx-popup-component.js +3 -1
- package/esm5/public_api.js +66 -0
- package/fesm2015/igniteui-angular-core.js +13513 -7629
- package/fesm5/igniteui-angular-core.js +15947 -8807
- package/lib/AsyncDataSourcePageRequest.d.ts +4 -1
- package/lib/AsyncVirtualDataSourceProviderWorker.d.ts +4 -3
- package/lib/AsyncVirtualDataTaskCompletionSource.d.ts +14 -0
- package/lib/AxisDescription.d.ts +151 -67
- package/lib/AzureMapsMapImageryDescription.d.ts +28 -0
- package/lib/AzureMapsMapImageryDescriptionMetadata.d.ts +13 -0
- package/lib/AzureMapsMapImageryDescriptionModule.d.ts +9 -0
- package/lib/AzureMapsTileSource.d.ts +33 -0
- package/lib/BaseGenericDataSource.d.ts +36 -0
- package/lib/BaseGenericDataSourceDescription.d.ts +27 -0
- package/lib/BaseGenericDataSourceDescriptionMetadata.d.ts +13 -0
- package/lib/BaseVirtualDataProvider.d.ts +113 -0
- package/lib/CanvasViewRenderer.d.ts +7 -6
- package/lib/CategoryAngleAxisDescription.d.ts +7 -7
- package/lib/CategoryAxisBaseDescription.d.ts +8 -8
- package/lib/CategoryChartDescription.d.ts +45 -45
- package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
- package/lib/CategoryToolTipLayerDescription.d.ts +10 -1
- package/lib/CategoryXAxisDescription.d.ts +17 -11
- package/lib/CategoryYAxisDescription.d.ts +17 -11
- package/lib/CellInfoDescription.d.ts +116 -71
- package/lib/ChartMouseEventArgsDescription.d.ts +6 -3
- package/lib/ChartResizeIdleEventArgsDescription.d.ts +11 -0
- package/lib/ChartResizeIdleEventArgsDescriptionMetadata.d.ts +13 -0
- package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +29 -29
- package/lib/ComboBoxColumnDescription.d.ts +8 -4
- package/lib/ComponentRendererMethodHelperBuilder_combined.d.ts +36 -13
- package/lib/ComponentRenderer_combined.d.ts +119 -113
- package/lib/CustomLocalDataSourceDescription.d.ts +11 -0
- package/lib/CustomLocalDataSourceDescriptionMetadata.d.ts +13 -0
- package/lib/CustomLocalDataSourceDescriptionModule.d.ts +9 -0
- package/lib/DataChartDescription.d.ts +33 -33
- package/lib/DataChartMouseButtonEventArgsDescription.d.ts +8 -5
- package/lib/DataGridColumnDescription.d.ts +82 -37
- package/lib/DataGridDescription.d.ts +219 -212
- package/lib/DataLegendDescription.d.ts +150 -138
- package/lib/DataPieBaseChartDescription.d.ts +53 -38
- package/lib/DataPieChartDescription.d.ts +12 -12
- package/lib/DataSourceGroupDescription.d.ts +16 -0
- package/lib/DataSourceGroupDescriptionCollection.d.ts +27 -0
- package/lib/DataSourceGroupDescriptionDescription.d.ts +12 -0
- package/lib/DataSourceGroupDescriptionDescriptionMetadata.d.ts +13 -0
- package/lib/DataSourceGroupDescriptionDescriptionModule.d.ts +9 -0
- package/lib/DataSourceSortDescription.d.ts +20 -0
- package/lib/DataSourceSortDescriptionCollection.d.ts +31 -0
- package/lib/DataSourceSortDescriptionDescription.d.ts +19 -0
- package/lib/DataSourceSortDescriptionDescriptionMetadata.d.ts +13 -0
- package/lib/DataSourceSortDescriptionDescriptionModule.d.ts +9 -0
- package/lib/DataSourceSummaryDescription.d.ts +38 -0
- package/lib/DataSourceSummaryDescriptionCollection.d.ts +31 -0
- package/lib/DataSourceSummaryDescriptionDescription.d.ts +28 -0
- package/lib/DataSourceSummaryDescriptionDescriptionMetadata.d.ts +13 -0
- package/lib/DataSourceSummaryDescriptionDescriptionModule.d.ts +9 -0
- package/lib/DataToolTipLayerDescription.d.ts +91 -82
- package/lib/DateTimeCellInfoDescription.d.ts +6 -6
- package/lib/DateTimeColumnDescription.d.ts +17 -13
- package/lib/DomainChartDescription.d.ts +216 -204
- package/lib/DomainChartSeriesPointerEventArgsDescription.d.ts +6 -3
- package/lib/EditorCellInfoDescription.d.ts +10 -10
- package/lib/FilterCellInfoDescription.d.ts +12 -12
- package/lib/FilterExpressionDescription.d.ts +24 -0
- package/lib/FinancialChartDescription.d.ts +61 -61
- package/lib/FontRegistry.d.ts +13 -0
- package/lib/FunctionFilterExpressionDescription.d.ts +11 -2
- package/lib/GenericDataSourcePage.d.ts +35 -0
- package/lib/GenericDataSourceSchemaPropertyType.d.ts +30 -0
- package/lib/GenericInternalVirtualDataProvider.d.ts +43 -0
- package/lib/GenericInternalVirtualDataSource.d.ts +49 -0
- package/lib/GenericPageResponse.d.ts +23 -0
- package/lib/GenericSectionInformation.d.ts +23 -0
- package/lib/GenericSummaryResult.d.ts +27 -0
- package/lib/GenericVirtualDataProviderWorker.d.ts +39 -0
- package/lib/GenericVirtualDataProviderWorkerSettings.d.ts +31 -0
- package/lib/GenericVirtualDataSource.d.ts +41 -0
- package/lib/GenericVirtualDataSourceDescription.d.ts +13 -0
- package/lib/GenericVirtualDataSourceDescriptionMetadata.d.ts +13 -0
- package/lib/GenericVirtualDataSourceDescriptionModule.d.ts +9 -0
- package/lib/GeographicMapImageryDescription_combined.d.ts +14 -14
- package/lib/GeometryUtil.d.ts +4 -3
- package/lib/GridConditionalStyleFontInfoDescription.d.ts +23 -0
- package/lib/GridConditionalStyleFontInfoDescriptionMetadata.d.ts +13 -0
- package/lib/GridConditionalStyleFontInfoDescriptionModule.d.ts +9 -0
- package/lib/HierarchicalRingSeriesDescription.d.ts +1 -1
- package/lib/IRenderer_combined.d.ts +14 -12
- package/lib/ImageCellInfoDescription.d.ts +3 -3
- package/lib/ImageColumnDescription.d.ts +12 -8
- package/lib/ItemToolTipLayerDescription.d.ts +11 -2
- package/lib/LiteralFilterExpressionDescription.d.ts +11 -2
- package/lib/NumericAngleAxisDescription.d.ts +2 -2
- package/lib/NumericAxisBaseDescription.d.ts +46 -28
- package/lib/NumericCellInfoDescription.d.ts +13 -13
- package/lib/NumericColumnDescription.d.ts +22 -18
- package/lib/NumericRadiusAxisDescription.d.ts +2 -2
- package/lib/OperationFilterExpressionDescription.d.ts +29 -5
- package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
- package/lib/PageRequestedEventArgs.d.ts +12 -0
- package/lib/PageRequestedEventArgsDescription.d.ts +26 -0
- package/lib/PageRequestedEventArgsDescriptionMetadata.d.ts +13 -0
- package/lib/PropertyReferenceFilterExpressionDescription.d.ts +7 -1
- package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
- package/lib/RadialBaseChartDescription.d.ts +80 -80
- package/lib/RadialPieSeriesDescription.d.ts +7 -4
- package/lib/RingSeriesBaseDescription.d.ts +5 -2
- package/lib/RingSeriesDescription.d.ts +1 -1
- package/lib/SectionHeaderCellInfoDescription.d.ts +3 -3
- package/lib/SeriesViewerDescription.d.ts +167 -137
- package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
- package/lib/SummaryCellInfoDescription.d.ts +7 -7
- package/lib/TemplateCellInfoDescription.d.ts +1 -1
- package/lib/TemplateColumnDescription.d.ts +2 -2
- package/lib/TemplateHeaderCellInfoDescription.d.ts +1 -1
- package/lib/TextCellInfoDescription.d.ts +1 -1
- package/lib/TextColumnDescription.d.ts +11 -7
- package/lib/TextHeaderCellInfoDescription.d.ts +5 -5
- package/lib/TimeAxisBaseDescription.d.ts +8 -8
- package/lib/TimeXAxisDescription.d.ts +4 -4
- package/lib/ToolActionButtonPairInfoDescription.d.ts +33 -15
- package/lib/TrendLineLayerDescription.d.ts +3 -3
- package/lib/ValueLayerDescription.d.ts +11 -17
- package/lib/WebTabsDescription.d.ts +7 -3
- package/lib/WrapperExpressionDescription.d.ts +9 -3
- package/lib/XYChartDescription.d.ts +80 -80
- package/lib/XamMultiScaleImageView_combined.d.ts +40 -36
- package/lib/igx-base-generic-data-source.d.ts +52 -0
- package/lib/igx-data-legend-series-context.d.ts +4 -4
- package/lib/igx-data-source-group-description-collection.d.ts +20 -0
- package/lib/igx-data-source-group-description-dynamic-module.d.ts +9 -0
- package/lib/igx-data-source-group-description-module.d.ts +7 -0
- package/lib/igx-data-source-group-description.d.ts +10 -0
- package/lib/igx-data-source-sort-description-collection.d.ts +26 -0
- package/lib/igx-data-source-sort-description-dynamic-module.d.ts +9 -0
- package/lib/igx-data-source-sort-description-module.d.ts +7 -0
- package/lib/igx-data-source-sort-description.d.ts +31 -0
- package/lib/igx-data-source-summary-description-collection.d.ts +26 -0
- package/lib/igx-data-source-summary-description-dynamic-module.d.ts +9 -0
- package/lib/igx-data-source-summary-description-module.d.ts +7 -0
- package/lib/igx-data-source-summary-description.d.ts +42 -0
- package/lib/igx-generic-virtual-data-source-dynamic-module.d.ts +9 -0
- package/lib/igx-generic-virtual-data-source-module.d.ts +8 -0
- package/lib/igx-generic-virtual-data-source.d.ts +60 -0
- package/lib/igx-page-requested-event-args.d.ts +45 -0
- package/lib/igx-popup-component.d.ts +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +66 -0
|
@@ -14,247 +14,249 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(DataGridDescription, _super);
|
|
15
15
|
function DataGridDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.
|
|
18
|
-
_this.
|
|
19
|
-
_this.
|
|
20
|
-
_this.
|
|
21
|
-
_this.by = false;
|
|
22
|
-
_this.b3 = false;
|
|
23
|
-
_this.f1 = null;
|
|
24
|
-
_this.ft = null;
|
|
17
|
+
_this.i1 = null;
|
|
18
|
+
_this.g6 = null;
|
|
19
|
+
_this.fa = null;
|
|
20
|
+
_this.bv = false;
|
|
25
21
|
_this.b0 = false;
|
|
26
|
-
_this.
|
|
27
|
-
_this.
|
|
28
|
-
_this.
|
|
29
|
-
_this.
|
|
30
|
-
_this.
|
|
31
|
-
_this.
|
|
32
|
-
_this.
|
|
33
|
-
_this.
|
|
22
|
+
_this.b5 = false;
|
|
23
|
+
_this.f5 = null;
|
|
24
|
+
_this.fx = null;
|
|
25
|
+
_this.b2 = false;
|
|
26
|
+
_this.hj = null;
|
|
27
|
+
_this.hk = null;
|
|
28
|
+
_this.gl = null;
|
|
29
|
+
_this.dl = 0;
|
|
30
|
+
_this.dm = 0;
|
|
31
|
+
_this.dn = 0;
|
|
32
|
+
_this.dp = 0;
|
|
34
33
|
_this.bf = null;
|
|
35
34
|
_this.bh = null;
|
|
36
|
-
_this.
|
|
37
|
-
_this.
|
|
35
|
+
_this.bj = null;
|
|
36
|
+
_this.bd = null;
|
|
38
37
|
_this.a7 = null;
|
|
39
|
-
_this.az = null;
|
|
40
|
-
_this.ax = null;
|
|
41
38
|
_this.a9 = null;
|
|
39
|
+
_this.a1 = null;
|
|
40
|
+
_this.az = null;
|
|
41
|
+
_this.bb = null;
|
|
42
42
|
_this.j = null;
|
|
43
43
|
_this.l = null;
|
|
44
|
-
_this.
|
|
45
|
-
_this.
|
|
46
|
-
_this.
|
|
47
|
-
_this.
|
|
48
|
-
_this.ei = 0;
|
|
44
|
+
_this.gf = null;
|
|
45
|
+
_this.en = 0;
|
|
46
|
+
_this.eu = 0;
|
|
47
|
+
_this.di = 0;
|
|
49
48
|
_this.em = 0;
|
|
50
|
-
_this.
|
|
49
|
+
_this.eq = 0;
|
|
50
|
+
_this.gd = null;
|
|
51
51
|
_this.av = null;
|
|
52
|
-
_this.
|
|
53
|
-
_this.
|
|
54
|
-
_this.
|
|
55
|
-
_this.
|
|
56
|
-
_this.
|
|
57
|
-
_this.
|
|
58
|
-
_this.
|
|
59
|
-
_this.
|
|
60
|
-
_this.fz = null;
|
|
61
|
-
_this.fa = null;
|
|
62
|
-
_this.hh = null;
|
|
63
|
-
_this.he = null;
|
|
64
|
-
_this.fl = null;
|
|
65
|
-
_this.a1 = null;
|
|
66
|
-
_this.f0 = null;
|
|
67
|
-
_this.f4 = null;
|
|
52
|
+
_this.ax = null;
|
|
53
|
+
_this.gx = null;
|
|
54
|
+
_this.gj = null;
|
|
55
|
+
_this.gk = null;
|
|
56
|
+
_this.bq = false;
|
|
57
|
+
_this.bn = false;
|
|
58
|
+
_this.ev = 0;
|
|
59
|
+
_this.b1 = false;
|
|
68
60
|
_this.fs = null;
|
|
69
|
-
_this.
|
|
61
|
+
_this.f3 = null;
|
|
62
|
+
_this.fe = null;
|
|
63
|
+
_this.hl = null;
|
|
64
|
+
_this.hi = null;
|
|
70
65
|
_this.fp = null;
|
|
71
|
-
_this.
|
|
72
|
-
_this.
|
|
73
|
-
_this.
|
|
74
|
-
_this.
|
|
66
|
+
_this.a3 = null;
|
|
67
|
+
_this.f4 = null;
|
|
68
|
+
_this.f8 = null;
|
|
69
|
+
_this.fw = null;
|
|
70
|
+
_this.fv = null;
|
|
71
|
+
_this.ft = null;
|
|
72
|
+
_this.h4 = null;
|
|
73
|
+
_this.e6 = null;
|
|
74
|
+
_this.h2 = null;
|
|
75
|
+
_this.b6 = false;
|
|
75
76
|
_this.x = null;
|
|
76
77
|
_this.y = null;
|
|
77
78
|
_this.w = null;
|
|
78
79
|
_this.v = null;
|
|
79
80
|
_this.r = null;
|
|
80
81
|
_this.s = null;
|
|
81
|
-
_this.
|
|
82
|
-
_this.
|
|
83
|
-
_this.
|
|
84
|
-
_this.
|
|
85
|
-
_this.
|
|
86
|
-
_this.
|
|
87
|
-
_this.
|
|
88
|
-
_this.
|
|
89
|
-
_this.
|
|
90
|
-
_this.
|
|
91
|
-
_this.
|
|
82
|
+
_this.bs = false;
|
|
83
|
+
_this.by = false;
|
|
84
|
+
_this.bz = false;
|
|
85
|
+
_this.fo = null;
|
|
86
|
+
_this.hw = null;
|
|
87
|
+
_this.h9 = null;
|
|
88
|
+
_this.il = null;
|
|
89
|
+
_this.dr = 0;
|
|
90
|
+
_this.gg = null;
|
|
91
|
+
_this.dj = 0;
|
|
92
|
+
_this.gh = null;
|
|
93
|
+
_this.gi = null;
|
|
94
|
+
_this.dk = 0;
|
|
92
95
|
_this.ge = null;
|
|
93
|
-
_this.
|
|
94
|
-
_this.
|
|
95
|
-
_this.h3 = null;
|
|
96
|
+
_this.h7 = null;
|
|
97
|
+
_this.he = null;
|
|
96
98
|
_this.ha = null;
|
|
97
|
-
_this.
|
|
98
|
-
_this.
|
|
99
|
-
_this.
|
|
100
|
-
_this.
|
|
101
|
-
_this.
|
|
102
|
-
_this.
|
|
103
|
-
_this.
|
|
104
|
-
_this.
|
|
105
|
-
_this.
|
|
106
|
-
_this.
|
|
107
|
-
_this.
|
|
99
|
+
_this.a5 = null;
|
|
100
|
+
_this.fc = null;
|
|
101
|
+
_this.fq = null;
|
|
102
|
+
_this.g3 = null;
|
|
103
|
+
_this.g4 = null;
|
|
104
|
+
_this.fh = null;
|
|
105
|
+
_this.db = 0;
|
|
106
|
+
_this.fi = null;
|
|
107
|
+
_this.fj = null;
|
|
108
|
+
_this.hs = null;
|
|
109
|
+
_this.hx = null;
|
|
108
110
|
_this.ht = null;
|
|
109
|
-
_this.
|
|
110
|
-
_this.
|
|
111
|
-
_this.
|
|
112
|
-
_this.
|
|
113
|
-
_this.
|
|
114
|
-
_this.dp = 0;
|
|
115
|
-
_this.h7 = null;
|
|
116
|
-
_this.h8 = null;
|
|
117
|
-
_this.ii = null;
|
|
118
|
-
_this.dr = 0;
|
|
119
|
-
_this.ij = null;
|
|
120
|
-
_this.ik = null;
|
|
121
|
-
_this.ie = null;
|
|
111
|
+
_this.ds = 0;
|
|
112
|
+
_this.hu = null;
|
|
113
|
+
_this.hv = null;
|
|
114
|
+
_this.ia = null;
|
|
115
|
+
_this.dt = 0;
|
|
122
116
|
_this.ib = null;
|
|
123
|
-
_this.dq = 0;
|
|
124
117
|
_this.ic = null;
|
|
125
|
-
_this.
|
|
118
|
+
_this.im = null;
|
|
119
|
+
_this.dv = 0;
|
|
126
120
|
_this.io = null;
|
|
127
|
-
_this.ds = 0;
|
|
128
121
|
_this.ip = null;
|
|
122
|
+
_this.ij = null;
|
|
123
|
+
_this.ig = null;
|
|
124
|
+
_this.du = 0;
|
|
125
|
+
_this.ih = null;
|
|
126
|
+
_this.ii = null;
|
|
127
|
+
_this.is = null;
|
|
128
|
+
_this.dw = 0;
|
|
129
|
+
_this.it = null;
|
|
130
|
+
_this.iu = null;
|
|
131
|
+
_this.iv = null;
|
|
132
|
+
_this.id = null;
|
|
129
133
|
_this.iq = null;
|
|
134
|
+
_this.ie = null;
|
|
130
135
|
_this.ir = null;
|
|
131
|
-
_this.
|
|
132
|
-
_this.
|
|
133
|
-
_this.
|
|
134
|
-
_this.
|
|
135
|
-
_this.
|
|
136
|
-
_this.en = 0;
|
|
136
|
+
_this.et = 0;
|
|
137
|
+
_this.er = 0;
|
|
138
|
+
_this.g2 = null;
|
|
139
|
+
_this.gw = null;
|
|
140
|
+
_this.g5 = null;
|
|
137
141
|
_this.gy = null;
|
|
138
|
-
_this.
|
|
142
|
+
_this.dq = 0;
|
|
143
|
+
_this.gz = null;
|
|
144
|
+
_this.g0 = null;
|
|
145
|
+
_this.hm = null;
|
|
139
146
|
_this.g1 = null;
|
|
140
|
-
_this.
|
|
141
|
-
_this.
|
|
142
|
-
_this.
|
|
143
|
-
_this.
|
|
144
|
-
_this.
|
|
145
|
-
_this.
|
|
146
|
-
_this.
|
|
147
|
-
_this.
|
|
148
|
-
_this.
|
|
149
|
-
_this.
|
|
150
|
-
_this.
|
|
151
|
-
_this.
|
|
147
|
+
_this.hp = null;
|
|
148
|
+
_this.hn = null;
|
|
149
|
+
_this.ho = null;
|
|
150
|
+
_this.ep = 0;
|
|
151
|
+
_this.dd = 0;
|
|
152
|
+
_this.eo = 0;
|
|
153
|
+
_this.dc = 0;
|
|
154
|
+
_this.f6 = null;
|
|
155
|
+
_this.fy = null;
|
|
156
|
+
_this.cb = false;
|
|
157
|
+
_this.fz = null;
|
|
158
|
+
_this.f1 = null;
|
|
159
|
+
_this.f0 = null;
|
|
160
|
+
_this.fb = null;
|
|
161
|
+
_this.c7 = 0;
|
|
152
162
|
_this.c8 = 0;
|
|
153
|
-
_this.
|
|
154
|
-
_this.fu = null;
|
|
155
|
-
_this.b9 = false;
|
|
156
|
-
_this.fv = null;
|
|
157
|
-
_this.fx = null;
|
|
158
|
-
_this.fw = null;
|
|
159
|
-
_this.e7 = null;
|
|
160
|
-
_this.c3 = 0;
|
|
161
|
-
_this.c4 = 0;
|
|
162
|
-
_this.c5 = 0;
|
|
163
|
-
_this.c6 = 0;
|
|
164
|
-
_this.b5 = false;
|
|
165
|
-
_this.db = 0;
|
|
163
|
+
_this.c9 = 0;
|
|
166
164
|
_this.da = 0;
|
|
167
|
-
_this.
|
|
168
|
-
_this.
|
|
169
|
-
_this.
|
|
165
|
+
_this.b7 = false;
|
|
166
|
+
_this.df = 0;
|
|
167
|
+
_this.de = 0;
|
|
168
|
+
_this.dg = 0;
|
|
169
|
+
_this.dh = 0;
|
|
170
|
+
_this.br = false;
|
|
171
|
+
_this.cc = false;
|
|
170
172
|
_this.u = null;
|
|
171
173
|
_this.p = null;
|
|
172
174
|
_this.o = null;
|
|
173
175
|
_this.q = null;
|
|
174
|
-
_this.
|
|
175
|
-
_this.
|
|
176
|
-
_this.
|
|
176
|
+
_this.g8 = null;
|
|
177
|
+
_this.g7 = null;
|
|
178
|
+
_this.g9 = null;
|
|
177
179
|
_this.z = null;
|
|
178
180
|
_this.n = null;
|
|
179
181
|
_this.m = null;
|
|
180
182
|
_this.aa = null;
|
|
181
|
-
_this.
|
|
182
|
-
_this.
|
|
183
|
-
_this.
|
|
184
|
-
_this.
|
|
185
|
-
_this.
|
|
186
|
-
_this.
|
|
183
|
+
_this.ik = null;
|
|
184
|
+
_this.bw = false;
|
|
185
|
+
_this.gu = null;
|
|
186
|
+
_this.bx = false;
|
|
187
|
+
_this.gv = null;
|
|
188
|
+
_this.bm = false;
|
|
187
189
|
_this.t = null;
|
|
188
190
|
_this.i = null;
|
|
189
191
|
_this.h = null;
|
|
190
192
|
_this.k = null;
|
|
193
|
+
_this.ca = false;
|
|
194
|
+
_this.b9 = false;
|
|
191
195
|
_this.b8 = false;
|
|
192
|
-
_this.
|
|
193
|
-
_this.b6 = false;
|
|
194
|
-
_this.gi = null;
|
|
195
|
-
_this.gj = null;
|
|
196
|
-
_this.bs = false;
|
|
197
|
-
_this.br = false;
|
|
198
|
-
_this.g8 = null;
|
|
199
|
-
_this.g7 = null;
|
|
200
|
-
_this.g9 = null;
|
|
201
|
-
_this.go = null;
|
|
196
|
+
_this.gm = null;
|
|
202
197
|
_this.gn = null;
|
|
203
|
-
_this.
|
|
204
|
-
_this.
|
|
205
|
-
_this.
|
|
206
|
-
_this.
|
|
207
|
-
_this.
|
|
208
|
-
_this.
|
|
198
|
+
_this.bu = false;
|
|
199
|
+
_this.bt = false;
|
|
200
|
+
_this.hc = null;
|
|
201
|
+
_this.hb = null;
|
|
202
|
+
_this.hd = null;
|
|
203
|
+
_this.gs = null;
|
|
204
|
+
_this.gr = null;
|
|
205
|
+
_this.go = null;
|
|
206
|
+
_this.c5 = new Date();
|
|
207
|
+
_this.bo = false;
|
|
208
|
+
_this.es = 0;
|
|
209
|
+
_this.b3 = false;
|
|
210
|
+
_this.b4 = false;
|
|
211
|
+
_this.i0 = null;
|
|
209
212
|
_this.iw = null;
|
|
210
|
-
_this.
|
|
211
|
-
_this.
|
|
212
|
-
_this.
|
|
213
|
-
_this.
|
|
214
|
-
_this.
|
|
215
|
-
_this.
|
|
216
|
-
_this.
|
|
217
|
-
_this.
|
|
218
|
-
_this.gm = null;
|
|
219
|
-
_this.gl = null;
|
|
220
|
-
_this.fi = null;
|
|
221
|
-
_this.fj = null;
|
|
222
|
-
_this.fg = null;
|
|
223
|
-
_this.fh = null;
|
|
224
|
-
_this.e9 = null;
|
|
225
|
-
_this.h2 = null;
|
|
213
|
+
_this.ix = null;
|
|
214
|
+
_this.iy = null;
|
|
215
|
+
_this.iz = null;
|
|
216
|
+
_this.hr = null;
|
|
217
|
+
_this.hq = null;
|
|
218
|
+
_this.bl = false;
|
|
219
|
+
_this.bp = false;
|
|
220
|
+
_this.gq = null;
|
|
226
221
|
_this.gp = null;
|
|
227
|
-
_this.
|
|
228
|
-
_this.fq = null;
|
|
229
|
-
_this.fy = null;
|
|
222
|
+
_this.fm = null;
|
|
230
223
|
_this.fn = null;
|
|
224
|
+
_this.fk = null;
|
|
225
|
+
_this.fl = null;
|
|
226
|
+
_this.fd = null;
|
|
227
|
+
_this.h6 = null;
|
|
228
|
+
_this.gt = null;
|
|
229
|
+
_this.h8 = null;
|
|
230
|
+
_this.fu = null;
|
|
231
|
+
_this.f2 = null;
|
|
232
|
+
_this.fr = null;
|
|
233
|
+
_this.gb = null;
|
|
234
|
+
_this.gc = null;
|
|
235
|
+
_this.hf = null;
|
|
236
|
+
_this.h5 = null;
|
|
237
|
+
_this.e8 = null;
|
|
231
238
|
_this.f7 = null;
|
|
232
|
-
_this.
|
|
233
|
-
_this.hb = null;
|
|
239
|
+
_this.h0 = null;
|
|
234
240
|
_this.h1 = null;
|
|
235
|
-
_this.e4 = null;
|
|
236
|
-
_this.f3 = null;
|
|
237
|
-
_this.hw = null;
|
|
238
|
-
_this.hx = null;
|
|
239
|
-
_this.hv = null;
|
|
240
241
|
_this.hz = null;
|
|
241
|
-
_this.
|
|
242
|
-
_this.
|
|
243
|
-
_this.
|
|
244
|
-
_this.
|
|
245
|
-
_this.
|
|
246
|
-
_this.
|
|
247
|
-
_this.
|
|
248
|
-
_this.
|
|
249
|
-
_this.
|
|
242
|
+
_this.h3 = null;
|
|
243
|
+
_this.e7 = null;
|
|
244
|
+
_this.hy = null;
|
|
245
|
+
_this.f9 = null;
|
|
246
|
+
_this.fg = null;
|
|
247
|
+
_this.ff = null;
|
|
248
|
+
_this.hh = null;
|
|
249
|
+
_this.hg = null;
|
|
250
|
+
_this.ga = null;
|
|
251
|
+
_this.e9 = null;
|
|
250
252
|
return _this;
|
|
251
253
|
}
|
|
252
254
|
Object.defineProperty(DataGridDescription.prototype, "width", {
|
|
253
255
|
get: function () {
|
|
254
|
-
return this.
|
|
256
|
+
return this.i1;
|
|
255
257
|
},
|
|
256
258
|
set: function (a) {
|
|
257
|
-
this.
|
|
259
|
+
this.i1 = a;
|
|
258
260
|
this.g("Width");
|
|
259
261
|
},
|
|
260
262
|
enumerable: false,
|
|
@@ -262,10 +264,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
262
264
|
});
|
|
263
265
|
Object.defineProperty(DataGridDescription.prototype, "height", {
|
|
264
266
|
get: function () {
|
|
265
|
-
return this.
|
|
267
|
+
return this.g6;
|
|
266
268
|
},
|
|
267
269
|
set: function (a) {
|
|
268
|
-
this.
|
|
270
|
+
this.g6 = a;
|
|
269
271
|
this.g("Height");
|
|
270
272
|
},
|
|
271
273
|
enumerable: false,
|
|
@@ -273,10 +275,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
273
275
|
});
|
|
274
276
|
Object.defineProperty(DataGridDescription.prototype, "background", {
|
|
275
277
|
get: function () {
|
|
276
|
-
return this.
|
|
278
|
+
return this.fa;
|
|
277
279
|
},
|
|
278
280
|
set: function (a) {
|
|
279
|
-
this.
|
|
281
|
+
this.fa = a;
|
|
280
282
|
this.g("Background");
|
|
281
283
|
},
|
|
282
284
|
enumerable: false,
|
|
@@ -284,10 +286,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
284
286
|
});
|
|
285
287
|
Object.defineProperty(DataGridDescription.prototype, "isGroupByAreaVisible", {
|
|
286
288
|
get: function () {
|
|
287
|
-
return this.
|
|
289
|
+
return this.bv;
|
|
288
290
|
},
|
|
289
291
|
set: function (a) {
|
|
290
|
-
this.
|
|
292
|
+
this.bv = a;
|
|
291
293
|
this.g("IsGroupByAreaVisible");
|
|
292
294
|
},
|
|
293
295
|
enumerable: false,
|
|
@@ -295,10 +297,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
295
297
|
});
|
|
296
298
|
Object.defineProperty(DataGridDescription.prototype, "isPagerVisible", {
|
|
297
299
|
get: function () {
|
|
298
|
-
return this.
|
|
300
|
+
return this.b0;
|
|
299
301
|
},
|
|
300
302
|
set: function (a) {
|
|
301
|
-
this.
|
|
303
|
+
this.b0 = a;
|
|
302
304
|
this.g("IsPagerVisible");
|
|
303
305
|
},
|
|
304
306
|
enumerable: false,
|
|
@@ -306,10 +308,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
306
308
|
});
|
|
307
309
|
Object.defineProperty(DataGridDescription.prototype, "isToolbarVisible", {
|
|
308
310
|
get: function () {
|
|
309
|
-
return this.
|
|
311
|
+
return this.b5;
|
|
310
312
|
},
|
|
311
313
|
set: function (a) {
|
|
312
|
-
this.
|
|
314
|
+
this.b5 = a;
|
|
313
315
|
this.g("IsToolbarVisible");
|
|
314
316
|
},
|
|
315
317
|
enumerable: false,
|
|
@@ -327,10 +329,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
327
329
|
});
|
|
328
330
|
Object.defineProperty(DataGridDescription.prototype, "columnResizingMode", {
|
|
329
331
|
get: function () {
|
|
330
|
-
return this.
|
|
332
|
+
return this.f5;
|
|
331
333
|
},
|
|
332
334
|
set: function (a) {
|
|
333
|
-
this.
|
|
335
|
+
this.f5 = a;
|
|
334
336
|
this.g("ColumnResizingMode");
|
|
335
337
|
},
|
|
336
338
|
enumerable: false,
|
|
@@ -338,10 +340,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
338
340
|
});
|
|
339
341
|
Object.defineProperty(DataGridDescription.prototype, "columnMovingMode", {
|
|
340
342
|
get: function () {
|
|
341
|
-
return this.
|
|
343
|
+
return this.fx;
|
|
342
344
|
},
|
|
343
345
|
set: function (a) {
|
|
344
|
-
this.
|
|
346
|
+
this.fx = a;
|
|
345
347
|
this.g("ColumnMovingMode");
|
|
346
348
|
},
|
|
347
349
|
enumerable: false,
|
|
@@ -349,10 +351,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
349
351
|
});
|
|
350
352
|
Object.defineProperty(DataGridDescription.prototype, "isRowHoverEnabled", {
|
|
351
353
|
get: function () {
|
|
352
|
-
return this.
|
|
354
|
+
return this.b2;
|
|
353
355
|
},
|
|
354
356
|
set: function (a) {
|
|
355
|
-
this.
|
|
357
|
+
this.b2 = a;
|
|
356
358
|
this.g("IsRowHoverEnabled");
|
|
357
359
|
},
|
|
358
360
|
enumerable: false,
|
|
@@ -360,10 +362,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
360
362
|
});
|
|
361
363
|
Object.defineProperty(DataGridDescription.prototype, "rowHoverBackground", {
|
|
362
364
|
get: function () {
|
|
363
|
-
return this.
|
|
365
|
+
return this.hj;
|
|
364
366
|
},
|
|
365
367
|
set: function (a) {
|
|
366
|
-
this.
|
|
368
|
+
this.hj = a;
|
|
367
369
|
this.g("RowHoverBackground");
|
|
368
370
|
},
|
|
369
371
|
enumerable: false,
|
|
@@ -371,10 +373,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
371
373
|
});
|
|
372
374
|
Object.defineProperty(DataGridDescription.prototype, "rowHoverTextColor", {
|
|
373
375
|
get: function () {
|
|
374
|
-
return this.
|
|
376
|
+
return this.hk;
|
|
375
377
|
},
|
|
376
378
|
set: function (a) {
|
|
377
|
-
this.
|
|
379
|
+
this.hk = a;
|
|
378
380
|
this.g("RowHoverTextColor");
|
|
379
381
|
},
|
|
380
382
|
enumerable: false,
|
|
@@ -382,10 +384,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
382
384
|
});
|
|
383
385
|
Object.defineProperty(DataGridDescription.prototype, "editRowBorder", {
|
|
384
386
|
get: function () {
|
|
385
|
-
return this.
|
|
387
|
+
return this.gl;
|
|
386
388
|
},
|
|
387
389
|
set: function (a) {
|
|
388
|
-
this.
|
|
390
|
+
this.gl = a;
|
|
389
391
|
this.g("EditRowBorder");
|
|
390
392
|
},
|
|
391
393
|
enumerable: false,
|
|
@@ -393,10 +395,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
393
395
|
});
|
|
394
396
|
Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthBottom", {
|
|
395
397
|
get: function () {
|
|
396
|
-
return this.
|
|
398
|
+
return this.dl;
|
|
397
399
|
},
|
|
398
400
|
set: function (a) {
|
|
399
|
-
this.
|
|
401
|
+
this.dl = a;
|
|
400
402
|
this.g("EditRowBorderWidthBottom");
|
|
401
403
|
},
|
|
402
404
|
enumerable: false,
|
|
@@ -404,10 +406,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
404
406
|
});
|
|
405
407
|
Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthLeft", {
|
|
406
408
|
get: function () {
|
|
407
|
-
return this.
|
|
409
|
+
return this.dm;
|
|
408
410
|
},
|
|
409
411
|
set: function (a) {
|
|
410
|
-
this.
|
|
412
|
+
this.dm = a;
|
|
411
413
|
this.g("EditRowBorderWidthLeft");
|
|
412
414
|
},
|
|
413
415
|
enumerable: false,
|
|
@@ -415,10 +417,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
415
417
|
});
|
|
416
418
|
Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthRight", {
|
|
417
419
|
get: function () {
|
|
418
|
-
return this.
|
|
420
|
+
return this.dn;
|
|
419
421
|
},
|
|
420
422
|
set: function (a) {
|
|
421
|
-
this.
|
|
423
|
+
this.dn = a;
|
|
422
424
|
this.g("EditRowBorderWidthRight");
|
|
423
425
|
},
|
|
424
426
|
enumerable: false,
|
|
@@ -426,10 +428,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
426
428
|
});
|
|
427
429
|
Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthTop", {
|
|
428
430
|
get: function () {
|
|
429
|
-
return this.
|
|
431
|
+
return this.dp;
|
|
430
432
|
},
|
|
431
433
|
set: function (a) {
|
|
432
|
-
this.
|
|
434
|
+
this.dp = a;
|
|
433
435
|
this.g("EditRowBorderWidthTop");
|
|
434
436
|
},
|
|
435
437
|
enumerable: false,
|
|
@@ -437,10 +439,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
437
439
|
});
|
|
438
440
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeader", {
|
|
439
441
|
get: function () {
|
|
440
|
-
return this.
|
|
442
|
+
return this.bf;
|
|
441
443
|
},
|
|
442
444
|
set: function (a) {
|
|
443
|
-
this.
|
|
445
|
+
this.bf = a;
|
|
444
446
|
this.g("SectionHeader");
|
|
445
447
|
},
|
|
446
448
|
enumerable: false,
|
|
@@ -448,10 +450,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
448
450
|
});
|
|
449
451
|
Object.defineProperty(DataGridDescription.prototype, "summaryRowRoot", {
|
|
450
452
|
get: function () {
|
|
451
|
-
return this.
|
|
453
|
+
return this.bh;
|
|
452
454
|
},
|
|
453
455
|
set: function (a) {
|
|
454
|
-
this.
|
|
456
|
+
this.bh = a;
|
|
455
457
|
this.g("SummaryRowRoot");
|
|
456
458
|
},
|
|
457
459
|
enumerable: false,
|
|
@@ -459,10 +461,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
459
461
|
});
|
|
460
462
|
Object.defineProperty(DataGridDescription.prototype, "summaryRowSection", {
|
|
461
463
|
get: function () {
|
|
462
|
-
return this.
|
|
464
|
+
return this.bj;
|
|
463
465
|
},
|
|
464
466
|
set: function (a) {
|
|
465
|
-
this.
|
|
467
|
+
this.bj = a;
|
|
466
468
|
this.g("SummaryRowSection");
|
|
467
469
|
},
|
|
468
470
|
enumerable: false,
|
|
@@ -470,10 +472,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
470
472
|
});
|
|
471
473
|
Object.defineProperty(DataGridDescription.prototype, "rowSeparator", {
|
|
472
474
|
get: function () {
|
|
473
|
-
return this.
|
|
475
|
+
return this.bd;
|
|
474
476
|
},
|
|
475
477
|
set: function (a) {
|
|
476
|
-
this.
|
|
478
|
+
this.bd = a;
|
|
477
479
|
this.g("RowSeparator");
|
|
478
480
|
},
|
|
479
481
|
enumerable: false,
|
|
@@ -481,10 +483,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
481
483
|
});
|
|
482
484
|
Object.defineProperty(DataGridDescription.prototype, "headerRowSeparator", {
|
|
483
485
|
get: function () {
|
|
484
|
-
return this.
|
|
486
|
+
return this.a7;
|
|
485
487
|
},
|
|
486
488
|
set: function (a) {
|
|
487
|
-
this.
|
|
489
|
+
this.a7 = a;
|
|
488
490
|
this.g("HeaderRowSeparator");
|
|
489
491
|
},
|
|
490
492
|
enumerable: false,
|
|
@@ -492,10 +494,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
492
494
|
});
|
|
493
495
|
Object.defineProperty(DataGridDescription.prototype, "headerSeparator", {
|
|
494
496
|
get: function () {
|
|
495
|
-
return this.
|
|
497
|
+
return this.a9;
|
|
496
498
|
},
|
|
497
499
|
set: function (a) {
|
|
498
|
-
this.
|
|
500
|
+
this.a9 = a;
|
|
499
501
|
this.g("HeaderSeparator");
|
|
500
502
|
},
|
|
501
503
|
enumerable: false,
|
|
@@ -503,10 +505,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
503
505
|
});
|
|
504
506
|
Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparator", {
|
|
505
507
|
get: function () {
|
|
506
|
-
return this.
|
|
508
|
+
return this.a1;
|
|
507
509
|
},
|
|
508
510
|
set: function (a) {
|
|
509
|
-
this.
|
|
511
|
+
this.a1 = a;
|
|
510
512
|
this.g("ColumnResizingSeparator");
|
|
511
513
|
},
|
|
512
514
|
enumerable: false,
|
|
@@ -514,10 +516,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
514
516
|
});
|
|
515
517
|
Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparator", {
|
|
516
518
|
get: function () {
|
|
517
|
-
return this.
|
|
519
|
+
return this.az;
|
|
518
520
|
},
|
|
519
521
|
set: function (a) {
|
|
520
|
-
this.
|
|
522
|
+
this.az = a;
|
|
521
523
|
this.g("ColumnMovingSeparator");
|
|
522
524
|
},
|
|
523
525
|
enumerable: false,
|
|
@@ -525,10 +527,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
525
527
|
});
|
|
526
528
|
Object.defineProperty(DataGridDescription.prototype, "pinnedAreaSeparator", {
|
|
527
529
|
get: function () {
|
|
528
|
-
return this.
|
|
530
|
+
return this.bb;
|
|
529
531
|
},
|
|
530
532
|
set: function (a) {
|
|
531
|
-
this.
|
|
533
|
+
this.bb = a;
|
|
532
534
|
this.g("PinnedAreaSeparator");
|
|
533
535
|
},
|
|
534
536
|
enumerable: false,
|
|
@@ -558,10 +560,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
558
560
|
});
|
|
559
561
|
Object.defineProperty(DataGridDescription.prototype, "density", {
|
|
560
562
|
get: function () {
|
|
561
|
-
return this.
|
|
563
|
+
return this.gf;
|
|
562
564
|
},
|
|
563
565
|
set: function (a) {
|
|
564
|
-
this.
|
|
566
|
+
this.gf = a;
|
|
565
567
|
this.g("Density");
|
|
566
568
|
},
|
|
567
569
|
enumerable: false,
|
|
@@ -569,10 +571,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
569
571
|
});
|
|
570
572
|
Object.defineProperty(DataGridDescription.prototype, "actualRowHeight", {
|
|
571
573
|
get: function () {
|
|
572
|
-
return this.
|
|
574
|
+
return this.en;
|
|
573
575
|
},
|
|
574
576
|
set: function (a) {
|
|
575
|
-
this.
|
|
577
|
+
this.en = a;
|
|
576
578
|
this.g("ActualRowHeight");
|
|
577
579
|
},
|
|
578
580
|
enumerable: false,
|
|
@@ -580,10 +582,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
580
582
|
});
|
|
581
583
|
Object.defineProperty(DataGridDescription.prototype, "rowHeight", {
|
|
582
584
|
get: function () {
|
|
583
|
-
return this.
|
|
585
|
+
return this.eu;
|
|
584
586
|
},
|
|
585
587
|
set: function (a) {
|
|
586
|
-
this.
|
|
588
|
+
this.eu = a;
|
|
587
589
|
this.g("RowHeight");
|
|
588
590
|
},
|
|
589
591
|
enumerable: false,
|
|
@@ -591,10 +593,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
591
593
|
});
|
|
592
594
|
Object.defineProperty(DataGridDescription.prototype, "defaultColumnMinWidth", {
|
|
593
595
|
get: function () {
|
|
594
|
-
return this.
|
|
596
|
+
return this.di;
|
|
595
597
|
},
|
|
596
598
|
set: function (a) {
|
|
597
|
-
this.
|
|
599
|
+
this.di = a;
|
|
598
600
|
this.g("DefaultColumnMinWidth");
|
|
599
601
|
},
|
|
600
602
|
enumerable: false,
|
|
@@ -602,10 +604,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
602
604
|
});
|
|
603
605
|
Object.defineProperty(DataGridDescription.prototype, "actualHeaderHeight", {
|
|
604
606
|
get: function () {
|
|
605
|
-
return this.
|
|
607
|
+
return this.em;
|
|
606
608
|
},
|
|
607
609
|
set: function (a) {
|
|
608
|
-
this.
|
|
610
|
+
this.em = a;
|
|
609
611
|
this.g("ActualHeaderHeight");
|
|
610
612
|
},
|
|
611
613
|
enumerable: false,
|
|
@@ -613,10 +615,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
613
615
|
});
|
|
614
616
|
Object.defineProperty(DataGridDescription.prototype, "headerHeight", {
|
|
615
617
|
get: function () {
|
|
616
|
-
return this.
|
|
618
|
+
return this.eq;
|
|
617
619
|
},
|
|
618
620
|
set: function (a) {
|
|
619
|
-
this.
|
|
621
|
+
this.eq = a;
|
|
620
622
|
this.g("HeaderHeight");
|
|
621
623
|
},
|
|
622
624
|
enumerable: false,
|
|
@@ -624,10 +626,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
624
626
|
});
|
|
625
627
|
Object.defineProperty(DataGridDescription.prototype, "dataSourceRef", {
|
|
626
628
|
get: function () {
|
|
627
|
-
return this.
|
|
629
|
+
return this.gd;
|
|
628
630
|
},
|
|
629
631
|
set: function (a) {
|
|
630
|
-
this.
|
|
632
|
+
this.gd = a;
|
|
631
633
|
this.g("DataSourceRef");
|
|
632
634
|
},
|
|
633
635
|
enumerable: false,
|
|
@@ -644,12 +646,23 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
644
646
|
enumerable: false,
|
|
645
647
|
configurable: true
|
|
646
648
|
});
|
|
649
|
+
Object.defineProperty(DataGridDescription.prototype, "genericDataSource", {
|
|
650
|
+
get: function () {
|
|
651
|
+
return this.ax;
|
|
652
|
+
},
|
|
653
|
+
set: function (a) {
|
|
654
|
+
this.ax = a;
|
|
655
|
+
this.g("GenericDataSource");
|
|
656
|
+
},
|
|
657
|
+
enumerable: false,
|
|
658
|
+
configurable: true
|
|
659
|
+
});
|
|
647
660
|
Object.defineProperty(DataGridDescription.prototype, "headerClickAction", {
|
|
648
661
|
get: function () {
|
|
649
|
-
return this.
|
|
662
|
+
return this.gx;
|
|
650
663
|
},
|
|
651
664
|
set: function (a) {
|
|
652
|
-
this.
|
|
665
|
+
this.gx = a;
|
|
653
666
|
this.g("HeaderClickAction");
|
|
654
667
|
},
|
|
655
668
|
enumerable: false,
|
|
@@ -657,10 +670,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
657
670
|
});
|
|
658
671
|
Object.defineProperty(DataGridDescription.prototype, "editMode", {
|
|
659
672
|
get: function () {
|
|
660
|
-
return this.
|
|
673
|
+
return this.gj;
|
|
661
674
|
},
|
|
662
675
|
set: function (a) {
|
|
663
|
-
this.
|
|
676
|
+
this.gj = a;
|
|
664
677
|
this.g("EditMode");
|
|
665
678
|
},
|
|
666
679
|
enumerable: false,
|
|
@@ -668,10 +681,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
668
681
|
});
|
|
669
682
|
Object.defineProperty(DataGridDescription.prototype, "editModeClickAction", {
|
|
670
683
|
get: function () {
|
|
671
|
-
return this.
|
|
684
|
+
return this.gk;
|
|
672
685
|
},
|
|
673
686
|
set: function (a) {
|
|
674
|
-
this.
|
|
687
|
+
this.gk = a;
|
|
675
688
|
this.g("EditModeClickAction");
|
|
676
689
|
},
|
|
677
690
|
enumerable: false,
|
|
@@ -679,10 +692,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
679
692
|
});
|
|
680
693
|
Object.defineProperty(DataGridDescription.prototype, "editOnKeyPress", {
|
|
681
694
|
get: function () {
|
|
682
|
-
return this.
|
|
695
|
+
return this.bq;
|
|
683
696
|
},
|
|
684
697
|
set: function (a) {
|
|
685
|
-
this.
|
|
698
|
+
this.bq = a;
|
|
686
699
|
this.g("EditOnKeyPress");
|
|
687
700
|
},
|
|
688
701
|
enumerable: false,
|
|
@@ -690,10 +703,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
690
703
|
});
|
|
691
704
|
Object.defineProperty(DataGridDescription.prototype, "autoGenerateColumns", {
|
|
692
705
|
get: function () {
|
|
693
|
-
return this.
|
|
706
|
+
return this.bn;
|
|
694
707
|
},
|
|
695
708
|
set: function (a) {
|
|
696
|
-
this.
|
|
709
|
+
this.bn = a;
|
|
697
710
|
this.g("AutoGenerateColumns");
|
|
698
711
|
},
|
|
699
712
|
enumerable: false,
|
|
@@ -701,10 +714,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
701
714
|
});
|
|
702
715
|
Object.defineProperty(DataGridDescription.prototype, "rowSeparatorHeight", {
|
|
703
716
|
get: function () {
|
|
704
|
-
return this.
|
|
717
|
+
return this.ev;
|
|
705
718
|
},
|
|
706
719
|
set: function (a) {
|
|
707
|
-
this.
|
|
720
|
+
this.ev = a;
|
|
708
721
|
this.g("RowSeparatorHeight");
|
|
709
722
|
},
|
|
710
723
|
enumerable: false,
|
|
@@ -712,10 +725,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
712
725
|
});
|
|
713
726
|
Object.defineProperty(DataGridDescription.prototype, "isPlaceholderRenderingEnabled", {
|
|
714
727
|
get: function () {
|
|
715
|
-
return this.
|
|
728
|
+
return this.b1;
|
|
716
729
|
},
|
|
717
730
|
set: function (a) {
|
|
718
|
-
this.
|
|
731
|
+
this.b1 = a;
|
|
719
732
|
this.g("IsPlaceholderRenderingEnabled");
|
|
720
733
|
},
|
|
721
734
|
enumerable: false,
|
|
@@ -723,10 +736,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
723
736
|
});
|
|
724
737
|
Object.defineProperty(DataGridDescription.prototype, "columnAddingAnimationMode", {
|
|
725
738
|
get: function () {
|
|
726
|
-
return this.
|
|
739
|
+
return this.fs;
|
|
727
740
|
},
|
|
728
741
|
set: function (a) {
|
|
729
|
-
this.
|
|
742
|
+
this.fs = a;
|
|
730
743
|
this.g("ColumnAddingAnimationMode");
|
|
731
744
|
},
|
|
732
745
|
enumerable: false,
|
|
@@ -734,10 +747,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
734
747
|
});
|
|
735
748
|
Object.defineProperty(DataGridDescription.prototype, "columnPropertyUpdatingAnimationMode", {
|
|
736
749
|
get: function () {
|
|
737
|
-
return this.
|
|
750
|
+
return this.f3;
|
|
738
751
|
},
|
|
739
752
|
set: function (a) {
|
|
740
|
-
this.
|
|
753
|
+
this.f3 = a;
|
|
741
754
|
this.g("ColumnPropertyUpdatingAnimationMode");
|
|
742
755
|
},
|
|
743
756
|
enumerable: false,
|
|
@@ -745,10 +758,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
745
758
|
});
|
|
746
759
|
Object.defineProperty(DataGridDescription.prototype, "cellDataLoadedAnimationMode", {
|
|
747
760
|
get: function () {
|
|
748
|
-
return this.
|
|
761
|
+
return this.fe;
|
|
749
762
|
},
|
|
750
763
|
set: function (a) {
|
|
751
|
-
this.
|
|
764
|
+
this.fe = a;
|
|
752
765
|
this.g("CellDataLoadedAnimationMode");
|
|
753
766
|
},
|
|
754
767
|
enumerable: false,
|
|
@@ -756,10 +769,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
756
769
|
});
|
|
757
770
|
Object.defineProperty(DataGridDescription.prototype, "rowSelectionAnimationMode", {
|
|
758
771
|
get: function () {
|
|
759
|
-
return this.
|
|
772
|
+
return this.hl;
|
|
760
773
|
},
|
|
761
774
|
set: function (a) {
|
|
762
|
-
this.
|
|
775
|
+
this.hl = a;
|
|
763
776
|
this.g("RowSelectionAnimationMode");
|
|
764
777
|
},
|
|
765
778
|
enumerable: false,
|
|
@@ -767,10 +780,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
767
780
|
});
|
|
768
781
|
Object.defineProperty(DataGridDescription.prototype, "rowHoverAnimationMode", {
|
|
769
782
|
get: function () {
|
|
770
|
-
return this.
|
|
783
|
+
return this.hi;
|
|
771
784
|
},
|
|
772
785
|
set: function (a) {
|
|
773
|
-
this.
|
|
786
|
+
this.hi = a;
|
|
774
787
|
this.g("RowHoverAnimationMode");
|
|
775
788
|
},
|
|
776
789
|
enumerable: false,
|
|
@@ -778,10 +791,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
778
791
|
});
|
|
779
792
|
Object.defineProperty(DataGridDescription.prototype, "cellSelectionAnimationMode", {
|
|
780
793
|
get: function () {
|
|
781
|
-
return this.
|
|
794
|
+
return this.fp;
|
|
782
795
|
},
|
|
783
796
|
set: function (a) {
|
|
784
|
-
this.
|
|
797
|
+
this.fp = a;
|
|
785
798
|
this.g("CellSelectionAnimationMode");
|
|
786
799
|
},
|
|
787
800
|
enumerable: false,
|
|
@@ -789,10 +802,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
789
802
|
});
|
|
790
803
|
Object.defineProperty(DataGridDescription.prototype, "animationSettings", {
|
|
791
804
|
get: function () {
|
|
792
|
-
return this.
|
|
805
|
+
return this.a3;
|
|
793
806
|
},
|
|
794
807
|
set: function (a) {
|
|
795
|
-
this.
|
|
808
|
+
this.a3 = a;
|
|
796
809
|
this.g("AnimationSettings");
|
|
797
810
|
},
|
|
798
811
|
enumerable: false,
|
|
@@ -800,10 +813,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
800
813
|
});
|
|
801
814
|
Object.defineProperty(DataGridDescription.prototype, "columnResizingAnimationMode", {
|
|
802
815
|
get: function () {
|
|
803
|
-
return this.
|
|
816
|
+
return this.f4;
|
|
804
817
|
},
|
|
805
818
|
set: function (a) {
|
|
806
|
-
this.
|
|
819
|
+
this.f4 = a;
|
|
807
820
|
this.g("ColumnResizingAnimationMode");
|
|
808
821
|
},
|
|
809
822
|
enumerable: false,
|
|
@@ -811,10 +824,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
811
824
|
});
|
|
812
825
|
Object.defineProperty(DataGridDescription.prototype, "columnShowingAnimationMode", {
|
|
813
826
|
get: function () {
|
|
814
|
-
return this.
|
|
827
|
+
return this.f8;
|
|
815
828
|
},
|
|
816
829
|
set: function (a) {
|
|
817
|
-
this.
|
|
830
|
+
this.f8 = a;
|
|
818
831
|
this.g("ColumnShowingAnimationMode");
|
|
819
832
|
},
|
|
820
833
|
enumerable: false,
|
|
@@ -822,10 +835,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
822
835
|
});
|
|
823
836
|
Object.defineProperty(DataGridDescription.prototype, "columnMovingAnimationMode", {
|
|
824
837
|
get: function () {
|
|
825
|
-
return this.
|
|
838
|
+
return this.fw;
|
|
826
839
|
},
|
|
827
840
|
set: function (a) {
|
|
828
|
-
this.
|
|
841
|
+
this.fw = a;
|
|
829
842
|
this.g("ColumnMovingAnimationMode");
|
|
830
843
|
},
|
|
831
844
|
enumerable: false,
|
|
@@ -833,10 +846,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
833
846
|
});
|
|
834
847
|
Object.defineProperty(DataGridDescription.prototype, "columnHidingAnimationMode", {
|
|
835
848
|
get: function () {
|
|
836
|
-
return this.
|
|
849
|
+
return this.fv;
|
|
837
850
|
},
|
|
838
851
|
set: function (a) {
|
|
839
|
-
this.
|
|
852
|
+
this.fv = a;
|
|
840
853
|
this.g("ColumnHidingAnimationMode");
|
|
841
854
|
},
|
|
842
855
|
enumerable: false,
|
|
@@ -844,10 +857,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
844
857
|
});
|
|
845
858
|
Object.defineProperty(DataGridDescription.prototype, "columnExchangingAnimationMode", {
|
|
846
859
|
get: function () {
|
|
847
|
-
return this.
|
|
860
|
+
return this.ft;
|
|
848
861
|
},
|
|
849
862
|
set: function (a) {
|
|
850
|
-
this.
|
|
863
|
+
this.ft = a;
|
|
851
864
|
this.g("ColumnExchangingAnimationMode");
|
|
852
865
|
},
|
|
853
866
|
enumerable: false,
|
|
@@ -855,10 +868,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
855
868
|
});
|
|
856
869
|
Object.defineProperty(DataGridDescription.prototype, "selectionMode", {
|
|
857
870
|
get: function () {
|
|
858
|
-
return this.
|
|
871
|
+
return this.h4;
|
|
859
872
|
},
|
|
860
873
|
set: function (a) {
|
|
861
|
-
this.
|
|
874
|
+
this.h4 = a;
|
|
862
875
|
this.g("SelectionMode");
|
|
863
876
|
},
|
|
864
877
|
enumerable: false,
|
|
@@ -866,10 +879,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
866
879
|
});
|
|
867
880
|
Object.defineProperty(DataGridDescription.prototype, "activationMode", {
|
|
868
881
|
get: function () {
|
|
869
|
-
return this.
|
|
882
|
+
return this.e6;
|
|
870
883
|
},
|
|
871
884
|
set: function (a) {
|
|
872
|
-
this.
|
|
885
|
+
this.e6 = a;
|
|
873
886
|
this.g("ActivationMode");
|
|
874
887
|
},
|
|
875
888
|
enumerable: false,
|
|
@@ -877,10 +890,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
877
890
|
});
|
|
878
891
|
Object.defineProperty(DataGridDescription.prototype, "selectionBehavior", {
|
|
879
892
|
get: function () {
|
|
880
|
-
return this.
|
|
893
|
+
return this.h2;
|
|
881
894
|
},
|
|
882
895
|
set: function (a) {
|
|
883
|
-
this.
|
|
896
|
+
this.h2 = a;
|
|
884
897
|
this.g("SelectionBehavior");
|
|
885
898
|
},
|
|
886
899
|
enumerable: false,
|
|
@@ -888,10 +901,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
888
901
|
});
|
|
889
902
|
Object.defineProperty(DataGridDescription.prototype, "mouseDragSelectionEnabled", {
|
|
890
903
|
get: function () {
|
|
891
|
-
return this.
|
|
904
|
+
return this.b6;
|
|
892
905
|
},
|
|
893
906
|
set: function (a) {
|
|
894
|
-
this.
|
|
907
|
+
this.b6 = a;
|
|
895
908
|
this.g("MouseDragSelectionEnabled");
|
|
896
909
|
},
|
|
897
910
|
enumerable: false,
|
|
@@ -965,10 +978,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
965
978
|
});
|
|
966
979
|
Object.defineProperty(DataGridDescription.prototype, "isColumnOptionsEnabled", {
|
|
967
980
|
get: function () {
|
|
968
|
-
return this.
|
|
981
|
+
return this.bs;
|
|
969
982
|
},
|
|
970
983
|
set: function (a) {
|
|
971
|
-
this.
|
|
984
|
+
this.bs = a;
|
|
972
985
|
this.g("IsColumnOptionsEnabled");
|
|
973
986
|
},
|
|
974
987
|
enumerable: false,
|
|
@@ -976,10 +989,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
976
989
|
});
|
|
977
990
|
Object.defineProperty(DataGridDescription.prototype, "isGroupRowSticky", {
|
|
978
991
|
get: function () {
|
|
979
|
-
return this.
|
|
992
|
+
return this.by;
|
|
980
993
|
},
|
|
981
994
|
set: function (a) {
|
|
982
|
-
this.
|
|
995
|
+
this.by = a;
|
|
983
996
|
this.g("IsGroupRowSticky");
|
|
984
997
|
},
|
|
985
998
|
enumerable: false,
|
|
@@ -987,10 +1000,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
987
1000
|
});
|
|
988
1001
|
Object.defineProperty(DataGridDescription.prototype, "isHeaderSeparatorVisible", {
|
|
989
1002
|
get: function () {
|
|
990
|
-
return this.
|
|
1003
|
+
return this.bz;
|
|
991
1004
|
},
|
|
992
1005
|
set: function (a) {
|
|
993
|
-
this.
|
|
1006
|
+
this.bz = a;
|
|
994
1007
|
this.g("IsHeaderSeparatorVisible");
|
|
995
1008
|
},
|
|
996
1009
|
enumerable: false,
|
|
@@ -998,10 +1011,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
998
1011
|
});
|
|
999
1012
|
Object.defineProperty(DataGridDescription.prototype, "cellSelectedBackground", {
|
|
1000
1013
|
get: function () {
|
|
1001
|
-
return this.
|
|
1014
|
+
return this.fo;
|
|
1002
1015
|
},
|
|
1003
1016
|
set: function (a) {
|
|
1004
|
-
this.
|
|
1017
|
+
this.fo = a;
|
|
1005
1018
|
this.g("CellSelectedBackground");
|
|
1006
1019
|
},
|
|
1007
1020
|
enumerable: false,
|
|
@@ -1009,10 +1022,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1009
1022
|
});
|
|
1010
1023
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeaderSelectedBackground", {
|
|
1011
1024
|
get: function () {
|
|
1012
|
-
return this.
|
|
1025
|
+
return this.hw;
|
|
1013
1026
|
},
|
|
1014
1027
|
set: function (a) {
|
|
1015
|
-
this.
|
|
1028
|
+
this.hw = a;
|
|
1016
1029
|
this.g("SectionHeaderSelectedBackground");
|
|
1017
1030
|
},
|
|
1018
1031
|
enumerable: false,
|
|
@@ -1020,10 +1033,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1020
1033
|
});
|
|
1021
1034
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootBackground", {
|
|
1022
1035
|
get: function () {
|
|
1023
|
-
return this.
|
|
1036
|
+
return this.h9;
|
|
1024
1037
|
},
|
|
1025
1038
|
set: function (a) {
|
|
1026
|
-
this.
|
|
1039
|
+
this.h9 = a;
|
|
1027
1040
|
this.g("SummaryRootBackground");
|
|
1028
1041
|
},
|
|
1029
1042
|
enumerable: false,
|
|
@@ -1031,10 +1044,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1031
1044
|
});
|
|
1032
1045
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionBackground", {
|
|
1033
1046
|
get: function () {
|
|
1034
|
-
return this.
|
|
1047
|
+
return this.il;
|
|
1035
1048
|
},
|
|
1036
1049
|
set: function (a) {
|
|
1037
|
-
this.
|
|
1050
|
+
this.il = a;
|
|
1038
1051
|
this.g("SummarySectionBackground");
|
|
1039
1052
|
},
|
|
1040
1053
|
enumerable: false,
|
|
@@ -1042,10 +1055,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1042
1055
|
});
|
|
1043
1056
|
Object.defineProperty(DataGridDescription.prototype, "pinnedRowOpacity", {
|
|
1044
1057
|
get: function () {
|
|
1045
|
-
return this.
|
|
1058
|
+
return this.dr;
|
|
1046
1059
|
},
|
|
1047
1060
|
set: function (a) {
|
|
1048
|
-
this.
|
|
1061
|
+
this.dr = a;
|
|
1049
1062
|
this.g("PinnedRowOpacity");
|
|
1050
1063
|
},
|
|
1051
1064
|
enumerable: false,
|
|
@@ -1053,10 +1066,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1053
1066
|
});
|
|
1054
1067
|
Object.defineProperty(DataGridDescription.prototype, "editFontFamily", {
|
|
1055
1068
|
get: function () {
|
|
1056
|
-
return this.
|
|
1069
|
+
return this.gg;
|
|
1057
1070
|
},
|
|
1058
1071
|
set: function (a) {
|
|
1059
|
-
this.
|
|
1072
|
+
this.gg = a;
|
|
1060
1073
|
this.g("EditFontFamily");
|
|
1061
1074
|
},
|
|
1062
1075
|
enumerable: false,
|
|
@@ -1064,10 +1077,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1064
1077
|
});
|
|
1065
1078
|
Object.defineProperty(DataGridDescription.prototype, "editFontSize", {
|
|
1066
1079
|
get: function () {
|
|
1067
|
-
return this.
|
|
1080
|
+
return this.dj;
|
|
1068
1081
|
},
|
|
1069
1082
|
set: function (a) {
|
|
1070
|
-
this.
|
|
1083
|
+
this.dj = a;
|
|
1071
1084
|
this.g("EditFontSize");
|
|
1072
1085
|
},
|
|
1073
1086
|
enumerable: false,
|
|
@@ -1075,10 +1088,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1075
1088
|
});
|
|
1076
1089
|
Object.defineProperty(DataGridDescription.prototype, "editFontStyle", {
|
|
1077
1090
|
get: function () {
|
|
1078
|
-
return this.
|
|
1091
|
+
return this.gh;
|
|
1079
1092
|
},
|
|
1080
1093
|
set: function (a) {
|
|
1081
|
-
this.
|
|
1094
|
+
this.gh = a;
|
|
1082
1095
|
this.g("EditFontStyle");
|
|
1083
1096
|
},
|
|
1084
1097
|
enumerable: false,
|
|
@@ -1086,10 +1099,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1086
1099
|
});
|
|
1087
1100
|
Object.defineProperty(DataGridDescription.prototype, "editFontWeight", {
|
|
1088
1101
|
get: function () {
|
|
1089
|
-
return this.
|
|
1102
|
+
return this.gi;
|
|
1090
1103
|
},
|
|
1091
1104
|
set: function (a) {
|
|
1092
|
-
this.
|
|
1105
|
+
this.gi = a;
|
|
1093
1106
|
this.g("EditFontWeight");
|
|
1094
1107
|
},
|
|
1095
1108
|
enumerable: false,
|
|
@@ -1097,10 +1110,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1097
1110
|
});
|
|
1098
1111
|
Object.defineProperty(DataGridDescription.prototype, "editOpacity", {
|
|
1099
1112
|
get: function () {
|
|
1100
|
-
return this.
|
|
1113
|
+
return this.dk;
|
|
1101
1114
|
},
|
|
1102
1115
|
set: function (a) {
|
|
1103
|
-
this.
|
|
1116
|
+
this.dk = a;
|
|
1104
1117
|
this.g("EditOpacity");
|
|
1105
1118
|
},
|
|
1106
1119
|
enumerable: false,
|
|
@@ -1108,10 +1121,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1108
1121
|
});
|
|
1109
1122
|
Object.defineProperty(DataGridDescription.prototype, "deletedTextColor", {
|
|
1110
1123
|
get: function () {
|
|
1111
|
-
return this.
|
|
1124
|
+
return this.ge;
|
|
1112
1125
|
},
|
|
1113
1126
|
set: function (a) {
|
|
1114
|
-
this.
|
|
1127
|
+
this.ge = a;
|
|
1115
1128
|
this.g("DeletedTextColor");
|
|
1116
1129
|
},
|
|
1117
1130
|
enumerable: false,
|
|
@@ -1119,10 +1132,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1119
1132
|
});
|
|
1120
1133
|
Object.defineProperty(DataGridDescription.prototype, "stickyRowBackground", {
|
|
1121
1134
|
get: function () {
|
|
1122
|
-
return this.
|
|
1135
|
+
return this.h7;
|
|
1123
1136
|
},
|
|
1124
1137
|
set: function (a) {
|
|
1125
|
-
this.
|
|
1138
|
+
this.h7 = a;
|
|
1126
1139
|
this.g("StickyRowBackground");
|
|
1127
1140
|
},
|
|
1128
1141
|
enumerable: false,
|
|
@@ -1130,10 +1143,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1130
1143
|
});
|
|
1131
1144
|
Object.defineProperty(DataGridDescription.prototype, "pinnedRowBackground", {
|
|
1132
1145
|
get: function () {
|
|
1133
|
-
return this.
|
|
1146
|
+
return this.he;
|
|
1134
1147
|
},
|
|
1135
1148
|
set: function (a) {
|
|
1136
|
-
this.
|
|
1149
|
+
this.he = a;
|
|
1137
1150
|
this.g("PinnedRowBackground");
|
|
1138
1151
|
},
|
|
1139
1152
|
enumerable: false,
|
|
@@ -1141,10 +1154,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1141
1154
|
});
|
|
1142
1155
|
Object.defineProperty(DataGridDescription.prototype, "lastStickyRowBackground", {
|
|
1143
1156
|
get: function () {
|
|
1144
|
-
return this.
|
|
1157
|
+
return this.ha;
|
|
1145
1158
|
},
|
|
1146
1159
|
set: function (a) {
|
|
1147
|
-
this.
|
|
1160
|
+
this.ha = a;
|
|
1148
1161
|
this.g("LastStickyRowBackground");
|
|
1149
1162
|
},
|
|
1150
1163
|
enumerable: false,
|
|
@@ -1152,10 +1165,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1152
1165
|
});
|
|
1153
1166
|
Object.defineProperty(DataGridDescription.prototype, "activeCell", {
|
|
1154
1167
|
get: function () {
|
|
1155
|
-
return this.
|
|
1168
|
+
return this.a5;
|
|
1156
1169
|
},
|
|
1157
1170
|
set: function (a) {
|
|
1158
|
-
this.
|
|
1171
|
+
this.a5 = a;
|
|
1159
1172
|
this.g("ActiveCell");
|
|
1160
1173
|
},
|
|
1161
1174
|
enumerable: false,
|
|
@@ -1163,10 +1176,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1163
1176
|
});
|
|
1164
1177
|
Object.defineProperty(DataGridDescription.prototype, "cellBackground", {
|
|
1165
1178
|
get: function () {
|
|
1166
|
-
return this.
|
|
1179
|
+
return this.fc;
|
|
1167
1180
|
},
|
|
1168
1181
|
set: function (a) {
|
|
1169
|
-
this.
|
|
1182
|
+
this.fc = a;
|
|
1170
1183
|
this.g("CellBackground");
|
|
1171
1184
|
},
|
|
1172
1185
|
enumerable: false,
|
|
@@ -1174,10 +1187,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1174
1187
|
});
|
|
1175
1188
|
Object.defineProperty(DataGridDescription.prototype, "cellTextColor", {
|
|
1176
1189
|
get: function () {
|
|
1177
|
-
return this.
|
|
1190
|
+
return this.fq;
|
|
1178
1191
|
},
|
|
1179
1192
|
set: function (a) {
|
|
1180
|
-
this.
|
|
1193
|
+
this.fq = a;
|
|
1181
1194
|
this.g("CellTextColor");
|
|
1182
1195
|
},
|
|
1183
1196
|
enumerable: false,
|
|
@@ -1185,10 +1198,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1185
1198
|
});
|
|
1186
1199
|
Object.defineProperty(DataGridDescription.prototype, "headerSortIndicatorColor", {
|
|
1187
1200
|
get: function () {
|
|
1188
|
-
return this.
|
|
1201
|
+
return this.g3;
|
|
1189
1202
|
},
|
|
1190
1203
|
set: function (a) {
|
|
1191
|
-
this.
|
|
1204
|
+
this.g3 = a;
|
|
1192
1205
|
this.g("HeaderSortIndicatorColor");
|
|
1193
1206
|
},
|
|
1194
1207
|
enumerable: false,
|
|
@@ -1196,10 +1209,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1196
1209
|
});
|
|
1197
1210
|
Object.defineProperty(DataGridDescription.prototype, "headerSortIndicatorStyle", {
|
|
1198
1211
|
get: function () {
|
|
1199
|
-
return this.
|
|
1212
|
+
return this.g4;
|
|
1200
1213
|
},
|
|
1201
1214
|
set: function (a) {
|
|
1202
|
-
this.
|
|
1215
|
+
this.g4 = a;
|
|
1203
1216
|
this.g("HeaderSortIndicatorStyle");
|
|
1204
1217
|
},
|
|
1205
1218
|
enumerable: false,
|
|
@@ -1207,10 +1220,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1207
1220
|
});
|
|
1208
1221
|
Object.defineProperty(DataGridDescription.prototype, "cellFontFamily", {
|
|
1209
1222
|
get: function () {
|
|
1210
|
-
return this.
|
|
1223
|
+
return this.fh;
|
|
1211
1224
|
},
|
|
1212
1225
|
set: function (a) {
|
|
1213
|
-
this.
|
|
1226
|
+
this.fh = a;
|
|
1214
1227
|
this.g("CellFontFamily");
|
|
1215
1228
|
},
|
|
1216
1229
|
enumerable: false,
|
|
@@ -1218,10 +1231,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1218
1231
|
});
|
|
1219
1232
|
Object.defineProperty(DataGridDescription.prototype, "cellFontSize", {
|
|
1220
1233
|
get: function () {
|
|
1221
|
-
return this.
|
|
1234
|
+
return this.db;
|
|
1222
1235
|
},
|
|
1223
1236
|
set: function (a) {
|
|
1224
|
-
this.
|
|
1237
|
+
this.db = a;
|
|
1225
1238
|
this.g("CellFontSize");
|
|
1226
1239
|
},
|
|
1227
1240
|
enumerable: false,
|
|
@@ -1229,10 +1242,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1229
1242
|
});
|
|
1230
1243
|
Object.defineProperty(DataGridDescription.prototype, "cellFontStyle", {
|
|
1231
1244
|
get: function () {
|
|
1232
|
-
return this.
|
|
1245
|
+
return this.fi;
|
|
1233
1246
|
},
|
|
1234
1247
|
set: function (a) {
|
|
1235
|
-
this.
|
|
1248
|
+
this.fi = a;
|
|
1236
1249
|
this.g("CellFontStyle");
|
|
1237
1250
|
},
|
|
1238
1251
|
enumerable: false,
|
|
@@ -1240,10 +1253,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1240
1253
|
});
|
|
1241
1254
|
Object.defineProperty(DataGridDescription.prototype, "cellFontWeight", {
|
|
1242
1255
|
get: function () {
|
|
1243
|
-
return this.
|
|
1256
|
+
return this.fj;
|
|
1244
1257
|
},
|
|
1245
1258
|
set: function (a) {
|
|
1246
|
-
this.
|
|
1259
|
+
this.fj = a;
|
|
1247
1260
|
this.g("CellFontWeight");
|
|
1248
1261
|
},
|
|
1249
1262
|
enumerable: false,
|
|
@@ -1251,10 +1264,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1251
1264
|
});
|
|
1252
1265
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeaderBackground", {
|
|
1253
1266
|
get: function () {
|
|
1254
|
-
return this.
|
|
1267
|
+
return this.hs;
|
|
1255
1268
|
},
|
|
1256
1269
|
set: function (a) {
|
|
1257
|
-
this.
|
|
1270
|
+
this.hs = a;
|
|
1258
1271
|
this.g("SectionHeaderBackground");
|
|
1259
1272
|
},
|
|
1260
1273
|
enumerable: false,
|
|
@@ -1262,10 +1275,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1262
1275
|
});
|
|
1263
1276
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeaderTextColor", {
|
|
1264
1277
|
get: function () {
|
|
1265
|
-
return this.
|
|
1278
|
+
return this.hx;
|
|
1266
1279
|
},
|
|
1267
1280
|
set: function (a) {
|
|
1268
|
-
this.
|
|
1281
|
+
this.hx = a;
|
|
1269
1282
|
this.g("SectionHeaderTextColor");
|
|
1270
1283
|
},
|
|
1271
1284
|
enumerable: false,
|
|
@@ -1273,10 +1286,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1273
1286
|
});
|
|
1274
1287
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontFamily", {
|
|
1275
1288
|
get: function () {
|
|
1276
|
-
return this.
|
|
1289
|
+
return this.ht;
|
|
1277
1290
|
},
|
|
1278
1291
|
set: function (a) {
|
|
1279
|
-
this.
|
|
1292
|
+
this.ht = a;
|
|
1280
1293
|
this.g("SectionHeaderFontFamily");
|
|
1281
1294
|
},
|
|
1282
1295
|
enumerable: false,
|
|
@@ -1284,10 +1297,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1284
1297
|
});
|
|
1285
1298
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontSize", {
|
|
1286
1299
|
get: function () {
|
|
1287
|
-
return this.
|
|
1300
|
+
return this.ds;
|
|
1288
1301
|
},
|
|
1289
1302
|
set: function (a) {
|
|
1290
|
-
this.
|
|
1303
|
+
this.ds = a;
|
|
1291
1304
|
this.g("SectionHeaderFontSize");
|
|
1292
1305
|
},
|
|
1293
1306
|
enumerable: false,
|
|
@@ -1295,10 +1308,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1295
1308
|
});
|
|
1296
1309
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontStyle", {
|
|
1297
1310
|
get: function () {
|
|
1298
|
-
return this.
|
|
1311
|
+
return this.hu;
|
|
1299
1312
|
},
|
|
1300
1313
|
set: function (a) {
|
|
1301
|
-
this.
|
|
1314
|
+
this.hu = a;
|
|
1302
1315
|
this.g("SectionHeaderFontStyle");
|
|
1303
1316
|
},
|
|
1304
1317
|
enumerable: false,
|
|
@@ -1306,10 +1319,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1306
1319
|
});
|
|
1307
1320
|
Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontWeight", {
|
|
1308
1321
|
get: function () {
|
|
1309
|
-
return this.
|
|
1322
|
+
return this.hv;
|
|
1310
1323
|
},
|
|
1311
1324
|
set: function (a) {
|
|
1312
|
-
this.
|
|
1325
|
+
this.hv = a;
|
|
1313
1326
|
this.g("SectionHeaderFontWeight");
|
|
1314
1327
|
},
|
|
1315
1328
|
enumerable: false,
|
|
@@ -1317,10 +1330,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1317
1330
|
});
|
|
1318
1331
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontFamily", {
|
|
1319
1332
|
get: function () {
|
|
1320
|
-
return this.
|
|
1333
|
+
return this.ia;
|
|
1321
1334
|
},
|
|
1322
1335
|
set: function (a) {
|
|
1323
|
-
this.
|
|
1336
|
+
this.ia = a;
|
|
1324
1337
|
this.g("SummaryRootLabelFontFamily");
|
|
1325
1338
|
},
|
|
1326
1339
|
enumerable: false,
|
|
@@ -1328,10 +1341,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1328
1341
|
});
|
|
1329
1342
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontSize", {
|
|
1330
1343
|
get: function () {
|
|
1331
|
-
return this.
|
|
1344
|
+
return this.dt;
|
|
1332
1345
|
},
|
|
1333
1346
|
set: function (a) {
|
|
1334
|
-
this.
|
|
1347
|
+
this.dt = a;
|
|
1335
1348
|
this.g("SummaryRootLabelFontSize");
|
|
1336
1349
|
},
|
|
1337
1350
|
enumerable: false,
|
|
@@ -1339,10 +1352,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1339
1352
|
});
|
|
1340
1353
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontStyle", {
|
|
1341
1354
|
get: function () {
|
|
1342
|
-
return this.
|
|
1355
|
+
return this.ib;
|
|
1343
1356
|
},
|
|
1344
1357
|
set: function (a) {
|
|
1345
|
-
this.
|
|
1358
|
+
this.ib = a;
|
|
1346
1359
|
this.g("SummaryRootLabelFontStyle");
|
|
1347
1360
|
},
|
|
1348
1361
|
enumerable: false,
|
|
@@ -1350,10 +1363,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1350
1363
|
});
|
|
1351
1364
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontWeight", {
|
|
1352
1365
|
get: function () {
|
|
1353
|
-
return this.
|
|
1366
|
+
return this.ic;
|
|
1354
1367
|
},
|
|
1355
1368
|
set: function (a) {
|
|
1356
|
-
this.
|
|
1369
|
+
this.ic = a;
|
|
1357
1370
|
this.g("SummaryRootLabelFontWeight");
|
|
1358
1371
|
},
|
|
1359
1372
|
enumerable: false,
|
|
@@ -1361,10 +1374,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1361
1374
|
});
|
|
1362
1375
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontFamily", {
|
|
1363
1376
|
get: function () {
|
|
1364
|
-
return this.
|
|
1377
|
+
return this.im;
|
|
1365
1378
|
},
|
|
1366
1379
|
set: function (a) {
|
|
1367
|
-
this.
|
|
1380
|
+
this.im = a;
|
|
1368
1381
|
this.g("SummarySectionLabelFontFamily");
|
|
1369
1382
|
},
|
|
1370
1383
|
enumerable: false,
|
|
@@ -1372,10 +1385,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1372
1385
|
});
|
|
1373
1386
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontSize", {
|
|
1374
1387
|
get: function () {
|
|
1375
|
-
return this.
|
|
1388
|
+
return this.dv;
|
|
1376
1389
|
},
|
|
1377
1390
|
set: function (a) {
|
|
1378
|
-
this.
|
|
1391
|
+
this.dv = a;
|
|
1379
1392
|
this.g("SummarySectionLabelFontSize");
|
|
1380
1393
|
},
|
|
1381
1394
|
enumerable: false,
|
|
@@ -1383,10 +1396,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1383
1396
|
});
|
|
1384
1397
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontStyle", {
|
|
1385
1398
|
get: function () {
|
|
1386
|
-
return this.
|
|
1399
|
+
return this.io;
|
|
1387
1400
|
},
|
|
1388
1401
|
set: function (a) {
|
|
1389
|
-
this.
|
|
1402
|
+
this.io = a;
|
|
1390
1403
|
this.g("SummarySectionLabelFontStyle");
|
|
1391
1404
|
},
|
|
1392
1405
|
enumerable: false,
|
|
@@ -1394,10 +1407,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1394
1407
|
});
|
|
1395
1408
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontWeight", {
|
|
1396
1409
|
get: function () {
|
|
1397
|
-
return this.
|
|
1410
|
+
return this.ip;
|
|
1398
1411
|
},
|
|
1399
1412
|
set: function (a) {
|
|
1400
|
-
this.
|
|
1413
|
+
this.ip = a;
|
|
1401
1414
|
this.g("SummarySectionLabelFontWeight");
|
|
1402
1415
|
},
|
|
1403
1416
|
enumerable: false,
|
|
@@ -1405,10 +1418,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1405
1418
|
});
|
|
1406
1419
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootValueTextColor", {
|
|
1407
1420
|
get: function () {
|
|
1408
|
-
return this.
|
|
1421
|
+
return this.ij;
|
|
1409
1422
|
},
|
|
1410
1423
|
set: function (a) {
|
|
1411
|
-
this.
|
|
1424
|
+
this.ij = a;
|
|
1412
1425
|
this.g("SummaryRootValueTextColor");
|
|
1413
1426
|
},
|
|
1414
1427
|
enumerable: false,
|
|
@@ -1416,10 +1429,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1416
1429
|
});
|
|
1417
1430
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontFamily", {
|
|
1418
1431
|
get: function () {
|
|
1419
|
-
return this.
|
|
1432
|
+
return this.ig;
|
|
1420
1433
|
},
|
|
1421
1434
|
set: function (a) {
|
|
1422
|
-
this.
|
|
1435
|
+
this.ig = a;
|
|
1423
1436
|
this.g("SummaryRootValueFontFamily");
|
|
1424
1437
|
},
|
|
1425
1438
|
enumerable: false,
|
|
@@ -1427,10 +1440,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1427
1440
|
});
|
|
1428
1441
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontSize", {
|
|
1429
1442
|
get: function () {
|
|
1430
|
-
return this.
|
|
1443
|
+
return this.du;
|
|
1431
1444
|
},
|
|
1432
1445
|
set: function (a) {
|
|
1433
|
-
this.
|
|
1446
|
+
this.du = a;
|
|
1434
1447
|
this.g("SummaryRootValueFontSize");
|
|
1435
1448
|
},
|
|
1436
1449
|
enumerable: false,
|
|
@@ -1438,10 +1451,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1438
1451
|
});
|
|
1439
1452
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontStyle", {
|
|
1440
1453
|
get: function () {
|
|
1441
|
-
return this.
|
|
1454
|
+
return this.ih;
|
|
1442
1455
|
},
|
|
1443
1456
|
set: function (a) {
|
|
1444
|
-
this.
|
|
1457
|
+
this.ih = a;
|
|
1445
1458
|
this.g("SummaryRootValueFontStyle");
|
|
1446
1459
|
},
|
|
1447
1460
|
enumerable: false,
|
|
@@ -1449,10 +1462,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1449
1462
|
});
|
|
1450
1463
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontWeight", {
|
|
1451
1464
|
get: function () {
|
|
1452
|
-
return this.
|
|
1465
|
+
return this.ii;
|
|
1453
1466
|
},
|
|
1454
1467
|
set: function (a) {
|
|
1455
|
-
this.
|
|
1468
|
+
this.ii = a;
|
|
1456
1469
|
this.g("SummaryRootValueFontWeight");
|
|
1457
1470
|
},
|
|
1458
1471
|
enumerable: false,
|
|
@@ -1460,10 +1473,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1460
1473
|
});
|
|
1461
1474
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontFamily", {
|
|
1462
1475
|
get: function () {
|
|
1463
|
-
return this.
|
|
1476
|
+
return this.is;
|
|
1464
1477
|
},
|
|
1465
1478
|
set: function (a) {
|
|
1466
|
-
this.
|
|
1479
|
+
this.is = a;
|
|
1467
1480
|
this.g("SummarySectionValueFontFamily");
|
|
1468
1481
|
},
|
|
1469
1482
|
enumerable: false,
|
|
@@ -1471,10 +1484,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1471
1484
|
});
|
|
1472
1485
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontSize", {
|
|
1473
1486
|
get: function () {
|
|
1474
|
-
return this.
|
|
1487
|
+
return this.dw;
|
|
1475
1488
|
},
|
|
1476
1489
|
set: function (a) {
|
|
1477
|
-
this.
|
|
1490
|
+
this.dw = a;
|
|
1478
1491
|
this.g("SummarySectionValueFontSize");
|
|
1479
1492
|
},
|
|
1480
1493
|
enumerable: false,
|
|
@@ -1482,10 +1495,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1482
1495
|
});
|
|
1483
1496
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontStyle", {
|
|
1484
1497
|
get: function () {
|
|
1485
|
-
return this.
|
|
1498
|
+
return this.it;
|
|
1486
1499
|
},
|
|
1487
1500
|
set: function (a) {
|
|
1488
|
-
this.
|
|
1501
|
+
this.it = a;
|
|
1489
1502
|
this.g("SummarySectionValueFontStyle");
|
|
1490
1503
|
},
|
|
1491
1504
|
enumerable: false,
|
|
@@ -1493,10 +1506,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1493
1506
|
});
|
|
1494
1507
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontWeight", {
|
|
1495
1508
|
get: function () {
|
|
1496
|
-
return this.
|
|
1509
|
+
return this.iu;
|
|
1497
1510
|
},
|
|
1498
1511
|
set: function (a) {
|
|
1499
|
-
this.
|
|
1512
|
+
this.iu = a;
|
|
1500
1513
|
this.g("SummarySectionValueFontWeight");
|
|
1501
1514
|
},
|
|
1502
1515
|
enumerable: false,
|
|
@@ -1504,10 +1517,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1504
1517
|
});
|
|
1505
1518
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionValueTextColor", {
|
|
1506
1519
|
get: function () {
|
|
1507
|
-
return this.
|
|
1520
|
+
return this.iv;
|
|
1508
1521
|
},
|
|
1509
1522
|
set: function (a) {
|
|
1510
|
-
this.
|
|
1523
|
+
this.iv = a;
|
|
1511
1524
|
this.g("SummarySectionValueTextColor");
|
|
1512
1525
|
},
|
|
1513
1526
|
enumerable: false,
|
|
@@ -1515,10 +1528,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1515
1528
|
});
|
|
1516
1529
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelTextColor", {
|
|
1517
1530
|
get: function () {
|
|
1518
|
-
return this.
|
|
1531
|
+
return this.id;
|
|
1519
1532
|
},
|
|
1520
1533
|
set: function (a) {
|
|
1521
|
-
this.
|
|
1534
|
+
this.id = a;
|
|
1522
1535
|
this.g("SummaryRootLabelTextColor");
|
|
1523
1536
|
},
|
|
1524
1537
|
enumerable: false,
|
|
@@ -1526,10 +1539,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1526
1539
|
});
|
|
1527
1540
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelTextColor", {
|
|
1528
1541
|
get: function () {
|
|
1529
|
-
return this.
|
|
1542
|
+
return this.iq;
|
|
1530
1543
|
},
|
|
1531
1544
|
set: function (a) {
|
|
1532
|
-
this.
|
|
1545
|
+
this.iq = a;
|
|
1533
1546
|
this.g("SummarySectionLabelTextColor");
|
|
1534
1547
|
},
|
|
1535
1548
|
enumerable: false,
|
|
@@ -1537,10 +1550,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1537
1550
|
});
|
|
1538
1551
|
Object.defineProperty(DataGridDescription.prototype, "summaryRootSelectedBackground", {
|
|
1539
1552
|
get: function () {
|
|
1540
|
-
return this.
|
|
1553
|
+
return this.ie;
|
|
1541
1554
|
},
|
|
1542
1555
|
set: function (a) {
|
|
1543
|
-
this.
|
|
1556
|
+
this.ie = a;
|
|
1544
1557
|
this.g("SummaryRootSelectedBackground");
|
|
1545
1558
|
},
|
|
1546
1559
|
enumerable: false,
|
|
@@ -1548,10 +1561,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1548
1561
|
});
|
|
1549
1562
|
Object.defineProperty(DataGridDescription.prototype, "summarySectionSelectedBackground", {
|
|
1550
1563
|
get: function () {
|
|
1551
|
-
return this.
|
|
1564
|
+
return this.ir;
|
|
1552
1565
|
},
|
|
1553
1566
|
set: function (a) {
|
|
1554
|
-
this.
|
|
1567
|
+
this.ir = a;
|
|
1555
1568
|
this.g("SummarySectionSelectedBackground");
|
|
1556
1569
|
},
|
|
1557
1570
|
enumerable: false,
|
|
@@ -1559,10 +1572,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1559
1572
|
});
|
|
1560
1573
|
Object.defineProperty(DataGridDescription.prototype, "pinnedAreaSeparatorWidth", {
|
|
1561
1574
|
get: function () {
|
|
1562
|
-
return this.
|
|
1575
|
+
return this.et;
|
|
1563
1576
|
},
|
|
1564
1577
|
set: function (a) {
|
|
1565
|
-
this.
|
|
1578
|
+
this.et = a;
|
|
1566
1579
|
this.g("PinnedAreaSeparatorWidth");
|
|
1567
1580
|
},
|
|
1568
1581
|
enumerable: false,
|
|
@@ -1570,10 +1583,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1570
1583
|
});
|
|
1571
1584
|
Object.defineProperty(DataGridDescription.prototype, "headerSeparatorWidth", {
|
|
1572
1585
|
get: function () {
|
|
1573
|
-
return this.
|
|
1586
|
+
return this.er;
|
|
1574
1587
|
},
|
|
1575
1588
|
set: function (a) {
|
|
1576
|
-
this.
|
|
1589
|
+
this.er = a;
|
|
1577
1590
|
this.g("HeaderSeparatorWidth");
|
|
1578
1591
|
},
|
|
1579
1592
|
enumerable: false,
|
|
@@ -1581,10 +1594,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1581
1594
|
});
|
|
1582
1595
|
Object.defineProperty(DataGridDescription.prototype, "headerSeparatorBackground", {
|
|
1583
1596
|
get: function () {
|
|
1584
|
-
return this.
|
|
1597
|
+
return this.g2;
|
|
1585
1598
|
},
|
|
1586
1599
|
set: function (a) {
|
|
1587
|
-
this.
|
|
1600
|
+
this.g2 = a;
|
|
1588
1601
|
this.g("HeaderSeparatorBackground");
|
|
1589
1602
|
},
|
|
1590
1603
|
enumerable: false,
|
|
@@ -1592,10 +1605,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1592
1605
|
});
|
|
1593
1606
|
Object.defineProperty(DataGridDescription.prototype, "headerBackground", {
|
|
1594
1607
|
get: function () {
|
|
1595
|
-
return this.
|
|
1608
|
+
return this.gw;
|
|
1596
1609
|
},
|
|
1597
1610
|
set: function (a) {
|
|
1598
|
-
this.
|
|
1611
|
+
this.gw = a;
|
|
1599
1612
|
this.g("HeaderBackground");
|
|
1600
1613
|
},
|
|
1601
1614
|
enumerable: false,
|
|
@@ -1603,10 +1616,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1603
1616
|
});
|
|
1604
1617
|
Object.defineProperty(DataGridDescription.prototype, "headerTextColor", {
|
|
1605
1618
|
get: function () {
|
|
1606
|
-
return this.
|
|
1619
|
+
return this.g5;
|
|
1607
1620
|
},
|
|
1608
1621
|
set: function (a) {
|
|
1609
|
-
this.
|
|
1622
|
+
this.g5 = a;
|
|
1610
1623
|
this.g("HeaderTextColor");
|
|
1611
1624
|
},
|
|
1612
1625
|
enumerable: false,
|
|
@@ -1614,10 +1627,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1614
1627
|
});
|
|
1615
1628
|
Object.defineProperty(DataGridDescription.prototype, "headerFontFamily", {
|
|
1616
1629
|
get: function () {
|
|
1617
|
-
return this.
|
|
1630
|
+
return this.gy;
|
|
1618
1631
|
},
|
|
1619
1632
|
set: function (a) {
|
|
1620
|
-
this.
|
|
1633
|
+
this.gy = a;
|
|
1621
1634
|
this.g("HeaderFontFamily");
|
|
1622
1635
|
},
|
|
1623
1636
|
enumerable: false,
|
|
@@ -1625,10 +1638,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1625
1638
|
});
|
|
1626
1639
|
Object.defineProperty(DataGridDescription.prototype, "headerFontSize", {
|
|
1627
1640
|
get: function () {
|
|
1628
|
-
return this.
|
|
1641
|
+
return this.dq;
|
|
1629
1642
|
},
|
|
1630
1643
|
set: function (a) {
|
|
1631
|
-
this.
|
|
1644
|
+
this.dq = a;
|
|
1632
1645
|
this.g("HeaderFontSize");
|
|
1633
1646
|
},
|
|
1634
1647
|
enumerable: false,
|
|
@@ -1636,10 +1649,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1636
1649
|
});
|
|
1637
1650
|
Object.defineProperty(DataGridDescription.prototype, "headerFontStyle", {
|
|
1638
1651
|
get: function () {
|
|
1639
|
-
return this.
|
|
1652
|
+
return this.gz;
|
|
1640
1653
|
},
|
|
1641
1654
|
set: function (a) {
|
|
1642
|
-
this.
|
|
1655
|
+
this.gz = a;
|
|
1643
1656
|
this.g("HeaderFontStyle");
|
|
1644
1657
|
},
|
|
1645
1658
|
enumerable: false,
|
|
@@ -1647,10 +1660,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1647
1660
|
});
|
|
1648
1661
|
Object.defineProperty(DataGridDescription.prototype, "headerFontWeight", {
|
|
1649
1662
|
get: function () {
|
|
1650
|
-
return this.
|
|
1663
|
+
return this.g0;
|
|
1651
1664
|
},
|
|
1652
1665
|
set: function (a) {
|
|
1653
|
-
this.
|
|
1666
|
+
this.g0 = a;
|
|
1654
1667
|
this.g("HeaderFontWeight");
|
|
1655
1668
|
},
|
|
1656
1669
|
enumerable: false,
|
|
@@ -1658,10 +1671,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1658
1671
|
});
|
|
1659
1672
|
Object.defineProperty(DataGridDescription.prototype, "rowSeparatorBackground", {
|
|
1660
1673
|
get: function () {
|
|
1661
|
-
return this.
|
|
1674
|
+
return this.hm;
|
|
1662
1675
|
},
|
|
1663
1676
|
set: function (a) {
|
|
1664
|
-
this.
|
|
1677
|
+
this.hm = a;
|
|
1665
1678
|
this.g("RowSeparatorBackground");
|
|
1666
1679
|
},
|
|
1667
1680
|
enumerable: false,
|
|
@@ -1669,10 +1682,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1669
1682
|
});
|
|
1670
1683
|
Object.defineProperty(DataGridDescription.prototype, "headerRowSeparatorBackground", {
|
|
1671
1684
|
get: function () {
|
|
1672
|
-
return this.
|
|
1685
|
+
return this.g1;
|
|
1673
1686
|
},
|
|
1674
1687
|
set: function (a) {
|
|
1675
|
-
this.
|
|
1688
|
+
this.g1 = a;
|
|
1676
1689
|
this.g("HeaderRowSeparatorBackground");
|
|
1677
1690
|
},
|
|
1678
1691
|
enumerable: false,
|
|
@@ -1680,10 +1693,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1680
1693
|
});
|
|
1681
1694
|
Object.defineProperty(DataGridDescription.prototype, "rowSeparatorStickyRowBackground", {
|
|
1682
1695
|
get: function () {
|
|
1683
|
-
return this.
|
|
1696
|
+
return this.hp;
|
|
1684
1697
|
},
|
|
1685
1698
|
set: function (a) {
|
|
1686
|
-
this.
|
|
1699
|
+
this.hp = a;
|
|
1687
1700
|
this.g("RowSeparatorStickyRowBackground");
|
|
1688
1701
|
},
|
|
1689
1702
|
enumerable: false,
|
|
@@ -1691,10 +1704,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1691
1704
|
});
|
|
1692
1705
|
Object.defineProperty(DataGridDescription.prototype, "rowSeparatorLastStickyRowBackground", {
|
|
1693
1706
|
get: function () {
|
|
1694
|
-
return this.
|
|
1707
|
+
return this.hn;
|
|
1695
1708
|
},
|
|
1696
1709
|
set: function (a) {
|
|
1697
|
-
this.
|
|
1710
|
+
this.hn = a;
|
|
1698
1711
|
this.g("RowSeparatorLastStickyRowBackground");
|
|
1699
1712
|
},
|
|
1700
1713
|
enumerable: false,
|
|
@@ -1702,10 +1715,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1702
1715
|
});
|
|
1703
1716
|
Object.defineProperty(DataGridDescription.prototype, "rowSeparatorPinnedRowBackground", {
|
|
1704
1717
|
get: function () {
|
|
1705
|
-
return this.
|
|
1718
|
+
return this.ho;
|
|
1706
1719
|
},
|
|
1707
1720
|
set: function (a) {
|
|
1708
|
-
this.
|
|
1721
|
+
this.ho = a;
|
|
1709
1722
|
this.g("RowSeparatorPinnedRowBackground");
|
|
1710
1723
|
},
|
|
1711
1724
|
enumerable: false,
|
|
@@ -1713,10 +1726,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1713
1726
|
});
|
|
1714
1727
|
Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparatorWidth", {
|
|
1715
1728
|
get: function () {
|
|
1716
|
-
return this.
|
|
1729
|
+
return this.ep;
|
|
1717
1730
|
},
|
|
1718
1731
|
set: function (a) {
|
|
1719
|
-
this.
|
|
1732
|
+
this.ep = a;
|
|
1720
1733
|
this.g("ColumnResizingSeparatorWidth");
|
|
1721
1734
|
},
|
|
1722
1735
|
enumerable: false,
|
|
@@ -1724,10 +1737,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1724
1737
|
});
|
|
1725
1738
|
Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparatorOpacity", {
|
|
1726
1739
|
get: function () {
|
|
1727
|
-
return this.
|
|
1740
|
+
return this.dd;
|
|
1728
1741
|
},
|
|
1729
1742
|
set: function (a) {
|
|
1730
|
-
this.
|
|
1743
|
+
this.dd = a;
|
|
1731
1744
|
this.g("ColumnResizingSeparatorOpacity");
|
|
1732
1745
|
},
|
|
1733
1746
|
enumerable: false,
|
|
@@ -1735,10 +1748,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1735
1748
|
});
|
|
1736
1749
|
Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparatorWidth", {
|
|
1737
1750
|
get: function () {
|
|
1738
|
-
return this.
|
|
1751
|
+
return this.eo;
|
|
1739
1752
|
},
|
|
1740
1753
|
set: function (a) {
|
|
1741
|
-
this.
|
|
1754
|
+
this.eo = a;
|
|
1742
1755
|
this.g("ColumnMovingSeparatorWidth");
|
|
1743
1756
|
},
|
|
1744
1757
|
enumerable: false,
|
|
@@ -1746,10 +1759,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1746
1759
|
});
|
|
1747
1760
|
Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparatorOpacity", {
|
|
1748
1761
|
get: function () {
|
|
1749
|
-
return this.
|
|
1762
|
+
return this.dc;
|
|
1750
1763
|
},
|
|
1751
1764
|
set: function (a) {
|
|
1752
|
-
this.
|
|
1765
|
+
this.dc = a;
|
|
1753
1766
|
this.g("ColumnMovingSeparatorOpacity");
|
|
1754
1767
|
},
|
|
1755
1768
|
enumerable: false,
|
|
@@ -1757,10 +1770,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1757
1770
|
});
|
|
1758
1771
|
Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparatorBackground", {
|
|
1759
1772
|
get: function () {
|
|
1760
|
-
return this.
|
|
1773
|
+
return this.f6;
|
|
1761
1774
|
},
|
|
1762
1775
|
set: function (a) {
|
|
1763
|
-
this.
|
|
1776
|
+
this.f6 = a;
|
|
1764
1777
|
this.g("ColumnResizingSeparatorBackground");
|
|
1765
1778
|
},
|
|
1766
1779
|
enumerable: false,
|
|
@@ -1768,10 +1781,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1768
1781
|
});
|
|
1769
1782
|
Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparatorBackground", {
|
|
1770
1783
|
get: function () {
|
|
1771
|
-
return this.
|
|
1784
|
+
return this.fy;
|
|
1772
1785
|
},
|
|
1773
1786
|
set: function (a) {
|
|
1774
|
-
this.
|
|
1787
|
+
this.fy = a;
|
|
1775
1788
|
this.g("ColumnMovingSeparatorBackground");
|
|
1776
1789
|
},
|
|
1777
1790
|
enumerable: false,
|
|
@@ -1779,10 +1792,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1779
1792
|
});
|
|
1780
1793
|
Object.defineProperty(DataGridDescription.prototype, "shiftSectionContent", {
|
|
1781
1794
|
get: function () {
|
|
1782
|
-
return this.
|
|
1795
|
+
return this.cb;
|
|
1783
1796
|
},
|
|
1784
1797
|
set: function (a) {
|
|
1785
|
-
this.
|
|
1798
|
+
this.cb = a;
|
|
1786
1799
|
this.g("ShiftSectionContent");
|
|
1787
1800
|
},
|
|
1788
1801
|
enumerable: false,
|
|
@@ -1790,10 +1803,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1790
1803
|
});
|
|
1791
1804
|
Object.defineProperty(DataGridDescription.prototype, "columnOptionsIconAlignment", {
|
|
1792
1805
|
get: function () {
|
|
1793
|
-
return this.
|
|
1806
|
+
return this.fz;
|
|
1794
1807
|
},
|
|
1795
1808
|
set: function (a) {
|
|
1796
|
-
this.
|
|
1809
|
+
this.fz = a;
|
|
1797
1810
|
this.g("ColumnOptionsIconAlignment");
|
|
1798
1811
|
},
|
|
1799
1812
|
enumerable: false,
|
|
@@ -1801,10 +1814,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1801
1814
|
});
|
|
1802
1815
|
Object.defineProperty(DataGridDescription.prototype, "columnOptionsIconColor", {
|
|
1803
1816
|
get: function () {
|
|
1804
|
-
return this.
|
|
1817
|
+
return this.f1;
|
|
1805
1818
|
},
|
|
1806
1819
|
set: function (a) {
|
|
1807
|
-
this.
|
|
1820
|
+
this.f1 = a;
|
|
1808
1821
|
this.g("ColumnOptionsIconColor");
|
|
1809
1822
|
},
|
|
1810
1823
|
enumerable: false,
|
|
@@ -1812,10 +1825,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1812
1825
|
});
|
|
1813
1826
|
Object.defineProperty(DataGridDescription.prototype, "columnOptionsIconBehavior", {
|
|
1814
1827
|
get: function () {
|
|
1815
|
-
return this.
|
|
1828
|
+
return this.f0;
|
|
1816
1829
|
},
|
|
1817
1830
|
set: function (a) {
|
|
1818
|
-
this.
|
|
1831
|
+
this.f0 = a;
|
|
1819
1832
|
this.g("ColumnOptionsIconBehavior");
|
|
1820
1833
|
},
|
|
1821
1834
|
enumerable: false,
|
|
@@ -1823,10 +1836,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1823
1836
|
});
|
|
1824
1837
|
Object.defineProperty(DataGridDescription.prototype, "border", {
|
|
1825
1838
|
get: function () {
|
|
1826
|
-
return this.
|
|
1839
|
+
return this.fb;
|
|
1827
1840
|
},
|
|
1828
1841
|
set: function (a) {
|
|
1829
|
-
this.
|
|
1842
|
+
this.fb = a;
|
|
1830
1843
|
this.g("Border");
|
|
1831
1844
|
},
|
|
1832
1845
|
enumerable: false,
|
|
@@ -1834,10 +1847,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1834
1847
|
});
|
|
1835
1848
|
Object.defineProperty(DataGridDescription.prototype, "borderWidthBottom", {
|
|
1836
1849
|
get: function () {
|
|
1837
|
-
return this.
|
|
1850
|
+
return this.c7;
|
|
1838
1851
|
},
|
|
1839
1852
|
set: function (a) {
|
|
1840
|
-
this.
|
|
1853
|
+
this.c7 = a;
|
|
1841
1854
|
this.g("BorderWidthBottom");
|
|
1842
1855
|
},
|
|
1843
1856
|
enumerable: false,
|
|
@@ -1845,10 +1858,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1845
1858
|
});
|
|
1846
1859
|
Object.defineProperty(DataGridDescription.prototype, "borderWidthLeft", {
|
|
1847
1860
|
get: function () {
|
|
1848
|
-
return this.
|
|
1861
|
+
return this.c8;
|
|
1849
1862
|
},
|
|
1850
1863
|
set: function (a) {
|
|
1851
|
-
this.
|
|
1864
|
+
this.c8 = a;
|
|
1852
1865
|
this.g("BorderWidthLeft");
|
|
1853
1866
|
},
|
|
1854
1867
|
enumerable: false,
|
|
@@ -1856,10 +1869,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1856
1869
|
});
|
|
1857
1870
|
Object.defineProperty(DataGridDescription.prototype, "borderWidthRight", {
|
|
1858
1871
|
get: function () {
|
|
1859
|
-
return this.
|
|
1872
|
+
return this.c9;
|
|
1860
1873
|
},
|
|
1861
1874
|
set: function (a) {
|
|
1862
|
-
this.
|
|
1875
|
+
this.c9 = a;
|
|
1863
1876
|
this.g("BorderWidthRight");
|
|
1864
1877
|
},
|
|
1865
1878
|
enumerable: false,
|
|
@@ -1867,10 +1880,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1867
1880
|
});
|
|
1868
1881
|
Object.defineProperty(DataGridDescription.prototype, "borderWidthTop", {
|
|
1869
1882
|
get: function () {
|
|
1870
|
-
return this.
|
|
1883
|
+
return this.da;
|
|
1871
1884
|
},
|
|
1872
1885
|
set: function (a) {
|
|
1873
|
-
this.
|
|
1886
|
+
this.da = a;
|
|
1874
1887
|
this.g("BorderWidthTop");
|
|
1875
1888
|
},
|
|
1876
1889
|
enumerable: false,
|
|
@@ -1878,10 +1891,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1878
1891
|
});
|
|
1879
1892
|
Object.defineProperty(DataGridDescription.prototype, "notifyOnAllSelectionChanges", {
|
|
1880
1893
|
get: function () {
|
|
1881
|
-
return this.
|
|
1894
|
+
return this.b7;
|
|
1882
1895
|
},
|
|
1883
1896
|
set: function (a) {
|
|
1884
|
-
this.
|
|
1897
|
+
this.b7 = a;
|
|
1885
1898
|
this.g("NotifyOnAllSelectionChanges");
|
|
1886
1899
|
},
|
|
1887
1900
|
enumerable: false,
|
|
@@ -1889,10 +1902,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1889
1902
|
});
|
|
1890
1903
|
Object.defineProperty(DataGridDescription.prototype, "cornerRadiusBottomRight", {
|
|
1891
1904
|
get: function () {
|
|
1892
|
-
return this.
|
|
1905
|
+
return this.df;
|
|
1893
1906
|
},
|
|
1894
1907
|
set: function (a) {
|
|
1895
|
-
this.
|
|
1908
|
+
this.df = a;
|
|
1896
1909
|
this.g("CornerRadiusBottomRight");
|
|
1897
1910
|
},
|
|
1898
1911
|
enumerable: false,
|
|
@@ -1900,10 +1913,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1900
1913
|
});
|
|
1901
1914
|
Object.defineProperty(DataGridDescription.prototype, "cornerRadiusBottomLeft", {
|
|
1902
1915
|
get: function () {
|
|
1903
|
-
return this.
|
|
1916
|
+
return this.de;
|
|
1904
1917
|
},
|
|
1905
1918
|
set: function (a) {
|
|
1906
|
-
this.
|
|
1919
|
+
this.de = a;
|
|
1907
1920
|
this.g("CornerRadiusBottomLeft");
|
|
1908
1921
|
},
|
|
1909
1922
|
enumerable: false,
|
|
@@ -1911,10 +1924,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1911
1924
|
});
|
|
1912
1925
|
Object.defineProperty(DataGridDescription.prototype, "cornerRadiusTopLeft", {
|
|
1913
1926
|
get: function () {
|
|
1914
|
-
return this.
|
|
1927
|
+
return this.dg;
|
|
1915
1928
|
},
|
|
1916
1929
|
set: function (a) {
|
|
1917
|
-
this.
|
|
1930
|
+
this.dg = a;
|
|
1918
1931
|
this.g("CornerRadiusTopLeft");
|
|
1919
1932
|
},
|
|
1920
1933
|
enumerable: false,
|
|
@@ -1922,22 +1935,33 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1922
1935
|
});
|
|
1923
1936
|
Object.defineProperty(DataGridDescription.prototype, "cornerRadiusTopRight", {
|
|
1924
1937
|
get: function () {
|
|
1925
|
-
return this.
|
|
1938
|
+
return this.dh;
|
|
1926
1939
|
},
|
|
1927
1940
|
set: function (a) {
|
|
1928
|
-
this.
|
|
1941
|
+
this.dh = a;
|
|
1929
1942
|
this.g("CornerRadiusTopRight");
|
|
1930
1943
|
},
|
|
1931
1944
|
enumerable: false,
|
|
1932
1945
|
configurable: true
|
|
1933
1946
|
});
|
|
1934
|
-
Object.defineProperty(DataGridDescription.prototype, "isActiveCellStyleEnabled", {
|
|
1947
|
+
Object.defineProperty(DataGridDescription.prototype, "isActiveCellStyleEnabled", {
|
|
1948
|
+
get: function () {
|
|
1949
|
+
return this.br;
|
|
1950
|
+
},
|
|
1951
|
+
set: function (a) {
|
|
1952
|
+
this.br = a;
|
|
1953
|
+
this.g("IsActiveCellStyleEnabled");
|
|
1954
|
+
},
|
|
1955
|
+
enumerable: false,
|
|
1956
|
+
configurable: true
|
|
1957
|
+
});
|
|
1958
|
+
Object.defineProperty(DataGridDescription.prototype, "stopPropagation", {
|
|
1935
1959
|
get: function () {
|
|
1936
|
-
return this.
|
|
1960
|
+
return this.cc;
|
|
1937
1961
|
},
|
|
1938
1962
|
set: function (a) {
|
|
1939
|
-
this.
|
|
1940
|
-
this.g("
|
|
1963
|
+
this.cc = a;
|
|
1964
|
+
this.g("StopPropagation");
|
|
1941
1965
|
},
|
|
1942
1966
|
enumerable: false,
|
|
1943
1967
|
configurable: true
|
|
@@ -1988,10 +2012,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1988
2012
|
});
|
|
1989
2013
|
Object.defineProperty(DataGridDescription.prototype, "initialSorts", {
|
|
1990
2014
|
get: function () {
|
|
1991
|
-
return this.
|
|
2015
|
+
return this.g8;
|
|
1992
2016
|
},
|
|
1993
2017
|
set: function (a) {
|
|
1994
|
-
this.
|
|
2018
|
+
this.g8 = a;
|
|
1995
2019
|
this.g("InitialSorts");
|
|
1996
2020
|
},
|
|
1997
2021
|
enumerable: false,
|
|
@@ -1999,10 +2023,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1999
2023
|
});
|
|
2000
2024
|
Object.defineProperty(DataGridDescription.prototype, "initialGroups", {
|
|
2001
2025
|
get: function () {
|
|
2002
|
-
return this.
|
|
2026
|
+
return this.g7;
|
|
2003
2027
|
},
|
|
2004
2028
|
set: function (a) {
|
|
2005
|
-
this.
|
|
2029
|
+
this.g7 = a;
|
|
2006
2030
|
this.g("InitialGroups");
|
|
2007
2031
|
},
|
|
2008
2032
|
enumerable: false,
|
|
@@ -2010,10 +2034,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2010
2034
|
});
|
|
2011
2035
|
Object.defineProperty(DataGridDescription.prototype, "initialSummaries", {
|
|
2012
2036
|
get: function () {
|
|
2013
|
-
return this.
|
|
2037
|
+
return this.g9;
|
|
2014
2038
|
},
|
|
2015
2039
|
set: function (a) {
|
|
2016
|
-
this.
|
|
2040
|
+
this.g9 = a;
|
|
2017
2041
|
this.g("InitialSummaries");
|
|
2018
2042
|
},
|
|
2019
2043
|
enumerable: false,
|
|
@@ -2065,10 +2089,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2065
2089
|
});
|
|
2066
2090
|
Object.defineProperty(DataGridDescription.prototype, "summaryScope", {
|
|
2067
2091
|
get: function () {
|
|
2068
|
-
return this.
|
|
2092
|
+
return this.ik;
|
|
2069
2093
|
},
|
|
2070
2094
|
set: function (a) {
|
|
2071
|
-
this.
|
|
2095
|
+
this.ik = a;
|
|
2072
2096
|
this.g("SummaryScope");
|
|
2073
2097
|
},
|
|
2074
2098
|
enumerable: false,
|
|
@@ -2076,10 +2100,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2076
2100
|
});
|
|
2077
2101
|
Object.defineProperty(DataGridDescription.prototype, "isGroupCollapsable", {
|
|
2078
2102
|
get: function () {
|
|
2079
|
-
return this.
|
|
2103
|
+
return this.bw;
|
|
2080
2104
|
},
|
|
2081
2105
|
set: function (a) {
|
|
2082
|
-
this.
|
|
2106
|
+
this.bw = a;
|
|
2083
2107
|
this.g("IsGroupCollapsable");
|
|
2084
2108
|
},
|
|
2085
2109
|
enumerable: false,
|
|
@@ -2087,10 +2111,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2087
2111
|
});
|
|
2088
2112
|
Object.defineProperty(DataGridDescription.prototype, "groupHeaderDisplayMode", {
|
|
2089
2113
|
get: function () {
|
|
2090
|
-
return this.
|
|
2114
|
+
return this.gu;
|
|
2091
2115
|
},
|
|
2092
2116
|
set: function (a) {
|
|
2093
|
-
this.
|
|
2117
|
+
this.gu = a;
|
|
2094
2118
|
this.g("GroupHeaderDisplayMode");
|
|
2095
2119
|
},
|
|
2096
2120
|
enumerable: false,
|
|
@@ -2098,10 +2122,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2098
2122
|
});
|
|
2099
2123
|
Object.defineProperty(DataGridDescription.prototype, "isGroupExpandedDefault", {
|
|
2100
2124
|
get: function () {
|
|
2101
|
-
return this.
|
|
2125
|
+
return this.bx;
|
|
2102
2126
|
},
|
|
2103
2127
|
set: function (a) {
|
|
2104
|
-
this.
|
|
2128
|
+
this.bx = a;
|
|
2105
2129
|
this.g("IsGroupExpandedDefault");
|
|
2106
2130
|
},
|
|
2107
2131
|
enumerable: false,
|
|
@@ -2109,10 +2133,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2109
2133
|
});
|
|
2110
2134
|
Object.defineProperty(DataGridDescription.prototype, "groupSummaryDisplayMode", {
|
|
2111
2135
|
get: function () {
|
|
2112
|
-
return this.
|
|
2136
|
+
return this.gv;
|
|
2113
2137
|
},
|
|
2114
2138
|
set: function (a) {
|
|
2115
|
-
this.
|
|
2139
|
+
this.gv = a;
|
|
2116
2140
|
this.g("GroupSummaryDisplayMode");
|
|
2117
2141
|
},
|
|
2118
2142
|
enumerable: false,
|
|
@@ -2120,10 +2144,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2120
2144
|
});
|
|
2121
2145
|
Object.defineProperty(DataGridDescription.prototype, "autoAcceptEdits", {
|
|
2122
2146
|
get: function () {
|
|
2123
|
-
return this.
|
|
2147
|
+
return this.bm;
|
|
2124
2148
|
},
|
|
2125
2149
|
set: function (a) {
|
|
2126
|
-
this.
|
|
2150
|
+
this.bm = a;
|
|
2127
2151
|
this.g("AutoAcceptEdits");
|
|
2128
2152
|
},
|
|
2129
2153
|
enumerable: false,
|
|
@@ -2175,10 +2199,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2175
2199
|
});
|
|
2176
2200
|
Object.defineProperty(DataGridDescription.prototype, "reactsToSortChanges", {
|
|
2177
2201
|
get: function () {
|
|
2178
|
-
return this.
|
|
2202
|
+
return this.ca;
|
|
2179
2203
|
},
|
|
2180
2204
|
set: function (a) {
|
|
2181
|
-
this.
|
|
2205
|
+
this.ca = a;
|
|
2182
2206
|
this.g("ReactsToSortChanges");
|
|
2183
2207
|
},
|
|
2184
2208
|
enumerable: false,
|
|
@@ -2186,10 +2210,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2186
2210
|
});
|
|
2187
2211
|
Object.defineProperty(DataGridDescription.prototype, "reactsToGroupChanges", {
|
|
2188
2212
|
get: function () {
|
|
2189
|
-
return this.
|
|
2213
|
+
return this.b9;
|
|
2190
2214
|
},
|
|
2191
2215
|
set: function (a) {
|
|
2192
|
-
this.
|
|
2216
|
+
this.b9 = a;
|
|
2193
2217
|
this.g("ReactsToGroupChanges");
|
|
2194
2218
|
},
|
|
2195
2219
|
enumerable: false,
|
|
@@ -2197,10 +2221,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2197
2221
|
});
|
|
2198
2222
|
Object.defineProperty(DataGridDescription.prototype, "reactsToFilterChanges", {
|
|
2199
2223
|
get: function () {
|
|
2200
|
-
return this.
|
|
2224
|
+
return this.b8;
|
|
2201
2225
|
},
|
|
2202
2226
|
set: function (a) {
|
|
2203
|
-
this.
|
|
2227
|
+
this.b8 = a;
|
|
2204
2228
|
this.g("ReactsToFilterChanges");
|
|
2205
2229
|
},
|
|
2206
2230
|
enumerable: false,
|
|
@@ -2208,10 +2232,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2208
2232
|
});
|
|
2209
2233
|
Object.defineProperty(DataGridDescription.prototype, "enterBehavior", {
|
|
2210
2234
|
get: function () {
|
|
2211
|
-
return this.
|
|
2235
|
+
return this.gm;
|
|
2212
2236
|
},
|
|
2213
2237
|
set: function (a) {
|
|
2214
|
-
this.
|
|
2238
|
+
this.gm = a;
|
|
2215
2239
|
this.g("EnterBehavior");
|
|
2216
2240
|
},
|
|
2217
2241
|
enumerable: false,
|
|
@@ -2219,10 +2243,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2219
2243
|
});
|
|
2220
2244
|
Object.defineProperty(DataGridDescription.prototype, "enterBehaviorAfterEdit", {
|
|
2221
2245
|
get: function () {
|
|
2222
|
-
return this.
|
|
2246
|
+
return this.gn;
|
|
2223
2247
|
},
|
|
2224
2248
|
set: function (a) {
|
|
2225
|
-
this.
|
|
2249
|
+
this.gn = a;
|
|
2226
2250
|
this.g("EnterBehaviorAfterEdit");
|
|
2227
2251
|
},
|
|
2228
2252
|
enumerable: false,
|
|
@@ -2230,10 +2254,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2230
2254
|
});
|
|
2231
2255
|
Object.defineProperty(DataGridDescription.prototype, "isColumnOptionsSummariesEnabled", {
|
|
2232
2256
|
get: function () {
|
|
2233
|
-
return this.
|
|
2257
|
+
return this.bu;
|
|
2234
2258
|
},
|
|
2235
2259
|
set: function (a) {
|
|
2236
|
-
this.
|
|
2260
|
+
this.bu = a;
|
|
2237
2261
|
this.g("IsColumnOptionsSummariesEnabled");
|
|
2238
2262
|
},
|
|
2239
2263
|
enumerable: false,
|
|
@@ -2241,10 +2265,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2241
2265
|
});
|
|
2242
2266
|
Object.defineProperty(DataGridDescription.prototype, "isColumnOptionsGroupingEnabled", {
|
|
2243
2267
|
get: function () {
|
|
2244
|
-
return this.
|
|
2268
|
+
return this.bt;
|
|
2245
2269
|
},
|
|
2246
2270
|
set: function (a) {
|
|
2247
|
-
this.
|
|
2271
|
+
this.bt = a;
|
|
2248
2272
|
this.g("IsColumnOptionsGroupingEnabled");
|
|
2249
2273
|
},
|
|
2250
2274
|
enumerable: false,
|
|
@@ -2252,10 +2276,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2252
2276
|
});
|
|
2253
2277
|
Object.defineProperty(DataGridDescription.prototype, "mergedCellMode", {
|
|
2254
2278
|
get: function () {
|
|
2255
|
-
return this.
|
|
2279
|
+
return this.hc;
|
|
2256
2280
|
},
|
|
2257
2281
|
set: function (a) {
|
|
2258
|
-
this.
|
|
2282
|
+
this.hc = a;
|
|
2259
2283
|
this.g("MergedCellMode");
|
|
2260
2284
|
},
|
|
2261
2285
|
enumerable: false,
|
|
@@ -2263,10 +2287,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2263
2287
|
});
|
|
2264
2288
|
Object.defineProperty(DataGridDescription.prototype, "mergedCellEvaluationCriteria", {
|
|
2265
2289
|
get: function () {
|
|
2266
|
-
return this.
|
|
2290
|
+
return this.hb;
|
|
2267
2291
|
},
|
|
2268
2292
|
set: function (a) {
|
|
2269
|
-
this.
|
|
2293
|
+
this.hb = a;
|
|
2270
2294
|
this.g("MergedCellEvaluationCriteria");
|
|
2271
2295
|
},
|
|
2272
2296
|
enumerable: false,
|
|
@@ -2274,10 +2298,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2274
2298
|
});
|
|
2275
2299
|
Object.defineProperty(DataGridDescription.prototype, "mergedCellVerticalAlignment", {
|
|
2276
2300
|
get: function () {
|
|
2277
|
-
return this.
|
|
2301
|
+
return this.hd;
|
|
2278
2302
|
},
|
|
2279
2303
|
set: function (a) {
|
|
2280
|
-
this.
|
|
2304
|
+
this.hd = a;
|
|
2281
2305
|
this.g("MergedCellVerticalAlignment");
|
|
2282
2306
|
},
|
|
2283
2307
|
enumerable: false,
|
|
@@ -2285,10 +2309,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2285
2309
|
});
|
|
2286
2310
|
Object.defineProperty(DataGridDescription.prototype, "filterUIType", {
|
|
2287
2311
|
get: function () {
|
|
2288
|
-
return this.
|
|
2312
|
+
return this.gs;
|
|
2289
2313
|
},
|
|
2290
2314
|
set: function (a) {
|
|
2291
|
-
this.
|
|
2315
|
+
this.gs = a;
|
|
2292
2316
|
this.g("FilterUIType");
|
|
2293
2317
|
},
|
|
2294
2318
|
enumerable: false,
|
|
@@ -2296,10 +2320,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2296
2320
|
});
|
|
2297
2321
|
Object.defineProperty(DataGridDescription.prototype, "filterLogicalOperator", {
|
|
2298
2322
|
get: function () {
|
|
2299
|
-
return this.
|
|
2323
|
+
return this.gr;
|
|
2300
2324
|
},
|
|
2301
2325
|
set: function (a) {
|
|
2302
|
-
this.
|
|
2326
|
+
this.gr = a;
|
|
2303
2327
|
this.g("FilterLogicalOperator");
|
|
2304
2328
|
},
|
|
2305
2329
|
enumerable: false,
|
|
@@ -2307,10 +2331,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2307
2331
|
});
|
|
2308
2332
|
Object.defineProperty(DataGridDescription.prototype, "filterComparisonType", {
|
|
2309
2333
|
get: function () {
|
|
2310
|
-
return this.
|
|
2334
|
+
return this.go;
|
|
2311
2335
|
},
|
|
2312
2336
|
set: function (a) {
|
|
2313
|
-
this.
|
|
2337
|
+
this.go = a;
|
|
2314
2338
|
this.g("FilterComparisonType");
|
|
2315
2339
|
},
|
|
2316
2340
|
enumerable: false,
|
|
@@ -2318,10 +2342,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2318
2342
|
});
|
|
2319
2343
|
Object.defineProperty(DataGridDescription.prototype, "todayOverride", {
|
|
2320
2344
|
get: function () {
|
|
2321
|
-
return this.
|
|
2345
|
+
return this.c5;
|
|
2322
2346
|
},
|
|
2323
2347
|
set: function (a) {
|
|
2324
|
-
this.
|
|
2348
|
+
this.c5 = a;
|
|
2325
2349
|
this.g("TodayOverride");
|
|
2326
2350
|
},
|
|
2327
2351
|
enumerable: false,
|
|
@@ -2329,10 +2353,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2329
2353
|
});
|
|
2330
2354
|
Object.defineProperty(DataGridDescription.prototype, "clearSelectionOnEscape", {
|
|
2331
2355
|
get: function () {
|
|
2332
|
-
return this.
|
|
2356
|
+
return this.bo;
|
|
2333
2357
|
},
|
|
2334
2358
|
set: function (a) {
|
|
2335
|
-
this.
|
|
2359
|
+
this.bo = a;
|
|
2336
2360
|
this.g("ClearSelectionOnEscape");
|
|
2337
2361
|
},
|
|
2338
2362
|
enumerable: false,
|
|
@@ -2340,10 +2364,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2340
2364
|
});
|
|
2341
2365
|
Object.defineProperty(DataGridDescription.prototype, "pageSize", {
|
|
2342
2366
|
get: function () {
|
|
2343
|
-
return this.
|
|
2367
|
+
return this.es;
|
|
2344
2368
|
},
|
|
2345
2369
|
set: function (a) {
|
|
2346
|
-
this.
|
|
2370
|
+
this.es = a;
|
|
2347
2371
|
this.g("PageSize");
|
|
2348
2372
|
},
|
|
2349
2373
|
enumerable: false,
|
|
@@ -2351,10 +2375,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2351
2375
|
});
|
|
2352
2376
|
Object.defineProperty(DataGridDescription.prototype, "isToolbarColumnChooserVisible", {
|
|
2353
2377
|
get: function () {
|
|
2354
|
-
return this.
|
|
2378
|
+
return this.b3;
|
|
2355
2379
|
},
|
|
2356
2380
|
set: function (a) {
|
|
2357
|
-
this.
|
|
2381
|
+
this.b3 = a;
|
|
2358
2382
|
this.g("IsToolbarColumnChooserVisible");
|
|
2359
2383
|
},
|
|
2360
2384
|
enumerable: false,
|
|
@@ -2362,10 +2386,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2362
2386
|
});
|
|
2363
2387
|
Object.defineProperty(DataGridDescription.prototype, "isToolbarColumnPinningVisible", {
|
|
2364
2388
|
get: function () {
|
|
2365
|
-
return this.
|
|
2389
|
+
return this.b4;
|
|
2366
2390
|
},
|
|
2367
2391
|
set: function (a) {
|
|
2368
|
-
this.
|
|
2392
|
+
this.b4 = a;
|
|
2369
2393
|
this.g("IsToolbarColumnPinningVisible");
|
|
2370
2394
|
},
|
|
2371
2395
|
enumerable: false,
|
|
@@ -2373,10 +2397,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2373
2397
|
});
|
|
2374
2398
|
Object.defineProperty(DataGridDescription.prototype, "toolbarTitle", {
|
|
2375
2399
|
get: function () {
|
|
2376
|
-
return this.
|
|
2400
|
+
return this.i0;
|
|
2377
2401
|
},
|
|
2378
2402
|
set: function (a) {
|
|
2379
|
-
this.
|
|
2403
|
+
this.i0 = a;
|
|
2380
2404
|
this.g("ToolbarTitle");
|
|
2381
2405
|
},
|
|
2382
2406
|
enumerable: false,
|
|
@@ -2384,10 +2408,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2384
2408
|
});
|
|
2385
2409
|
Object.defineProperty(DataGridDescription.prototype, "toolbarColumnChooserText", {
|
|
2386
2410
|
get: function () {
|
|
2387
|
-
return this.
|
|
2411
|
+
return this.iw;
|
|
2388
2412
|
},
|
|
2389
2413
|
set: function (a) {
|
|
2390
|
-
this.
|
|
2414
|
+
this.iw = a;
|
|
2391
2415
|
this.g("ToolbarColumnChooserText");
|
|
2392
2416
|
},
|
|
2393
2417
|
enumerable: false,
|
|
@@ -2395,10 +2419,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2395
2419
|
});
|
|
2396
2420
|
Object.defineProperty(DataGridDescription.prototype, "toolbarColumnChooserTitle", {
|
|
2397
2421
|
get: function () {
|
|
2398
|
-
return this.
|
|
2422
|
+
return this.ix;
|
|
2399
2423
|
},
|
|
2400
2424
|
set: function (a) {
|
|
2401
|
-
this.
|
|
2425
|
+
this.ix = a;
|
|
2402
2426
|
this.g("ToolbarColumnChooserTitle");
|
|
2403
2427
|
},
|
|
2404
2428
|
enumerable: false,
|
|
@@ -2406,10 +2430,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2406
2430
|
});
|
|
2407
2431
|
Object.defineProperty(DataGridDescription.prototype, "toolbarColumnPinningText", {
|
|
2408
2432
|
get: function () {
|
|
2409
|
-
return this.
|
|
2433
|
+
return this.iy;
|
|
2410
2434
|
},
|
|
2411
2435
|
set: function (a) {
|
|
2412
|
-
this.
|
|
2436
|
+
this.iy = a;
|
|
2413
2437
|
this.g("ToolbarColumnPinningText");
|
|
2414
2438
|
},
|
|
2415
2439
|
enumerable: false,
|
|
@@ -2417,10 +2441,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2417
2441
|
});
|
|
2418
2442
|
Object.defineProperty(DataGridDescription.prototype, "toolbarColumnPinningTitle", {
|
|
2419
2443
|
get: function () {
|
|
2420
|
-
return this.
|
|
2444
|
+
return this.iz;
|
|
2421
2445
|
},
|
|
2422
2446
|
set: function (a) {
|
|
2423
|
-
this.
|
|
2447
|
+
this.iz = a;
|
|
2424
2448
|
this.g("ToolbarColumnPinningTitle");
|
|
2425
2449
|
},
|
|
2426
2450
|
enumerable: false,
|
|
@@ -2428,10 +2452,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2428
2452
|
});
|
|
2429
2453
|
Object.defineProperty(DataGridDescription.prototype, "scrollbarStyle", {
|
|
2430
2454
|
get: function () {
|
|
2431
|
-
return this.
|
|
2455
|
+
return this.hr;
|
|
2432
2456
|
},
|
|
2433
2457
|
set: function (a) {
|
|
2434
|
-
this.
|
|
2458
|
+
this.hr = a;
|
|
2435
2459
|
this.g("ScrollbarStyle");
|
|
2436
2460
|
},
|
|
2437
2461
|
enumerable: false,
|
|
@@ -2439,10 +2463,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2439
2463
|
});
|
|
2440
2464
|
Object.defineProperty(DataGridDescription.prototype, "scrollbarBackground", {
|
|
2441
2465
|
get: function () {
|
|
2442
|
-
return this.
|
|
2466
|
+
return this.hq;
|
|
2443
2467
|
},
|
|
2444
2468
|
set: function (a) {
|
|
2445
|
-
this.
|
|
2469
|
+
this.hq = a;
|
|
2446
2470
|
this.g("ScrollbarBackground");
|
|
2447
2471
|
},
|
|
2448
2472
|
enumerable: false,
|
|
@@ -2450,10 +2474,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2450
2474
|
});
|
|
2451
2475
|
Object.defineProperty(DataGridDescription.prototype, "allowCopyOperation", {
|
|
2452
2476
|
get: function () {
|
|
2453
|
-
return this.
|
|
2477
|
+
return this.bl;
|
|
2454
2478
|
},
|
|
2455
2479
|
set: function (a) {
|
|
2456
|
-
this.
|
|
2480
|
+
this.bl = a;
|
|
2457
2481
|
this.g("AllowCopyOperation");
|
|
2458
2482
|
},
|
|
2459
2483
|
enumerable: false,
|
|
@@ -2461,10 +2485,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2461
2485
|
});
|
|
2462
2486
|
Object.defineProperty(DataGridDescription.prototype, "deferEventForRowDragSelection", {
|
|
2463
2487
|
get: function () {
|
|
2464
|
-
return this.
|
|
2488
|
+
return this.bp;
|
|
2465
2489
|
},
|
|
2466
2490
|
set: function (a) {
|
|
2467
|
-
this.
|
|
2491
|
+
this.bp = a;
|
|
2468
2492
|
this.g("DeferEventForRowDragSelection");
|
|
2469
2493
|
},
|
|
2470
2494
|
enumerable: false,
|
|
@@ -2472,10 +2496,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2472
2496
|
});
|
|
2473
2497
|
Object.defineProperty(DataGridDescription.prototype, "filterExpressionsChangingRef", {
|
|
2474
2498
|
get: function () {
|
|
2475
|
-
return this.
|
|
2499
|
+
return this.gq;
|
|
2476
2500
|
},
|
|
2477
2501
|
set: function (a) {
|
|
2478
|
-
this.
|
|
2502
|
+
this.gq = a;
|
|
2479
2503
|
this.g("FilterExpressionsChangingRef");
|
|
2480
2504
|
},
|
|
2481
2505
|
enumerable: false,
|
|
@@ -2483,10 +2507,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2483
2507
|
});
|
|
2484
2508
|
Object.defineProperty(DataGridDescription.prototype, "filterExpressionsChangedRef", {
|
|
2485
2509
|
get: function () {
|
|
2486
|
-
return this.
|
|
2510
|
+
return this.gp;
|
|
2487
2511
|
},
|
|
2488
2512
|
set: function (a) {
|
|
2489
|
-
this.
|
|
2513
|
+
this.gp = a;
|
|
2490
2514
|
this.g("FilterExpressionsChangedRef");
|
|
2491
2515
|
},
|
|
2492
2516
|
enumerable: false,
|
|
@@ -2494,10 +2518,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2494
2518
|
});
|
|
2495
2519
|
Object.defineProperty(DataGridDescription.prototype, "cellPreviewPointerDownRef", {
|
|
2496
2520
|
get: function () {
|
|
2497
|
-
return this.
|
|
2521
|
+
return this.fm;
|
|
2498
2522
|
},
|
|
2499
2523
|
set: function (a) {
|
|
2500
|
-
this.
|
|
2524
|
+
this.fm = a;
|
|
2501
2525
|
this.g("CellPreviewPointerDownRef");
|
|
2502
2526
|
},
|
|
2503
2527
|
enumerable: false,
|
|
@@ -2505,10 +2529,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2505
2529
|
});
|
|
2506
2530
|
Object.defineProperty(DataGridDescription.prototype, "cellPreviewPointerUpRef", {
|
|
2507
2531
|
get: function () {
|
|
2508
|
-
return this.
|
|
2532
|
+
return this.fn;
|
|
2509
2533
|
},
|
|
2510
2534
|
set: function (a) {
|
|
2511
|
-
this.
|
|
2535
|
+
this.fn = a;
|
|
2512
2536
|
this.g("CellPreviewPointerUpRef");
|
|
2513
2537
|
},
|
|
2514
2538
|
enumerable: false,
|
|
@@ -2516,10 +2540,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2516
2540
|
});
|
|
2517
2541
|
Object.defineProperty(DataGridDescription.prototype, "cellPointerDownRef", {
|
|
2518
2542
|
get: function () {
|
|
2519
|
-
return this.
|
|
2543
|
+
return this.fk;
|
|
2520
2544
|
},
|
|
2521
2545
|
set: function (a) {
|
|
2522
|
-
this.
|
|
2546
|
+
this.fk = a;
|
|
2523
2547
|
this.g("CellPointerDownRef");
|
|
2524
2548
|
},
|
|
2525
2549
|
enumerable: false,
|
|
@@ -2527,10 +2551,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2527
2551
|
});
|
|
2528
2552
|
Object.defineProperty(DataGridDescription.prototype, "cellPointerUpRef", {
|
|
2529
2553
|
get: function () {
|
|
2530
|
-
return this.
|
|
2554
|
+
return this.fl;
|
|
2531
2555
|
},
|
|
2532
2556
|
set: function (a) {
|
|
2533
|
-
this.
|
|
2557
|
+
this.fl = a;
|
|
2534
2558
|
this.g("CellPointerUpRef");
|
|
2535
2559
|
},
|
|
2536
2560
|
enumerable: false,
|
|
@@ -2538,10 +2562,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2538
2562
|
});
|
|
2539
2563
|
Object.defineProperty(DataGridDescription.prototype, "cellClickedRef", {
|
|
2540
2564
|
get: function () {
|
|
2541
|
-
return this.
|
|
2565
|
+
return this.fd;
|
|
2542
2566
|
},
|
|
2543
2567
|
set: function (a) {
|
|
2544
|
-
this.
|
|
2568
|
+
this.fd = a;
|
|
2545
2569
|
this.g("CellClickedRef");
|
|
2546
2570
|
},
|
|
2547
2571
|
enumerable: false,
|
|
@@ -2549,10 +2573,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2549
2573
|
});
|
|
2550
2574
|
Object.defineProperty(DataGridDescription.prototype, "sortDescriptionsChangedRef", {
|
|
2551
2575
|
get: function () {
|
|
2552
|
-
return this.
|
|
2576
|
+
return this.h6;
|
|
2553
2577
|
},
|
|
2554
2578
|
set: function (a) {
|
|
2555
|
-
this.
|
|
2579
|
+
this.h6 = a;
|
|
2556
2580
|
this.g("SortDescriptionsChangedRef");
|
|
2557
2581
|
},
|
|
2558
2582
|
enumerable: false,
|
|
@@ -2560,10 +2584,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2560
2584
|
});
|
|
2561
2585
|
Object.defineProperty(DataGridDescription.prototype, "groupDescriptionsChangedRef", {
|
|
2562
2586
|
get: function () {
|
|
2563
|
-
return this.
|
|
2587
|
+
return this.gt;
|
|
2564
2588
|
},
|
|
2565
2589
|
set: function (a) {
|
|
2566
|
-
this.
|
|
2590
|
+
this.gt = a;
|
|
2567
2591
|
this.g("GroupDescriptionsChangedRef");
|
|
2568
2592
|
},
|
|
2569
2593
|
enumerable: false,
|
|
@@ -2571,10 +2595,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2571
2595
|
});
|
|
2572
2596
|
Object.defineProperty(DataGridDescription.prototype, "summaryDescriptionsChangedRef", {
|
|
2573
2597
|
get: function () {
|
|
2574
|
-
return this.
|
|
2598
|
+
return this.h8;
|
|
2575
2599
|
},
|
|
2576
2600
|
set: function (a) {
|
|
2577
|
-
this.
|
|
2601
|
+
this.h8 = a;
|
|
2578
2602
|
this.g("SummaryDescriptionsChangedRef");
|
|
2579
2603
|
},
|
|
2580
2604
|
enumerable: false,
|
|
@@ -2582,10 +2606,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2582
2606
|
});
|
|
2583
2607
|
Object.defineProperty(DataGridDescription.prototype, "columnHiddenChangedRef", {
|
|
2584
2608
|
get: function () {
|
|
2585
|
-
return this.
|
|
2609
|
+
return this.fu;
|
|
2586
2610
|
},
|
|
2587
2611
|
set: function (a) {
|
|
2588
|
-
this.
|
|
2612
|
+
this.fu = a;
|
|
2589
2613
|
this.g("ColumnHiddenChangedRef");
|
|
2590
2614
|
},
|
|
2591
2615
|
enumerable: false,
|
|
@@ -2593,10 +2617,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2593
2617
|
});
|
|
2594
2618
|
Object.defineProperty(DataGridDescription.prototype, "columnPinnedChangedRef", {
|
|
2595
2619
|
get: function () {
|
|
2596
|
-
return this.
|
|
2620
|
+
return this.f2;
|
|
2597
2621
|
},
|
|
2598
2622
|
set: function (a) {
|
|
2599
|
-
this.
|
|
2623
|
+
this.f2 = a;
|
|
2600
2624
|
this.g("ColumnPinnedChangedRef");
|
|
2601
2625
|
},
|
|
2602
2626
|
enumerable: false,
|
|
@@ -2604,10 +2628,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2604
2628
|
});
|
|
2605
2629
|
Object.defineProperty(DataGridDescription.prototype, "cellValueChangingRef", {
|
|
2606
2630
|
get: function () {
|
|
2607
|
-
return this.
|
|
2631
|
+
return this.fr;
|
|
2608
2632
|
},
|
|
2609
2633
|
set: function (a) {
|
|
2610
|
-
this.
|
|
2634
|
+
this.fr = a;
|
|
2611
2635
|
this.g("CellValueChangingRef");
|
|
2612
2636
|
},
|
|
2613
2637
|
enumerable: false,
|
|
@@ -2615,10 +2639,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2615
2639
|
});
|
|
2616
2640
|
Object.defineProperty(DataGridDescription.prototype, "dataCommittedRef", {
|
|
2617
2641
|
get: function () {
|
|
2618
|
-
return this.
|
|
2642
|
+
return this.gb;
|
|
2619
2643
|
},
|
|
2620
2644
|
set: function (a) {
|
|
2621
|
-
this.
|
|
2645
|
+
this.gb = a;
|
|
2622
2646
|
this.g("DataCommittedRef");
|
|
2623
2647
|
},
|
|
2624
2648
|
enumerable: false,
|
|
@@ -2626,10 +2650,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2626
2650
|
});
|
|
2627
2651
|
Object.defineProperty(DataGridDescription.prototype, "dataCommittingRef", {
|
|
2628
2652
|
get: function () {
|
|
2629
|
-
return this.
|
|
2653
|
+
return this.gc;
|
|
2630
2654
|
},
|
|
2631
2655
|
set: function (a) {
|
|
2632
|
-
this.
|
|
2656
|
+
this.gc = a;
|
|
2633
2657
|
this.g("DataCommittingRef");
|
|
2634
2658
|
},
|
|
2635
2659
|
enumerable: false,
|
|
@@ -2637,10 +2661,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2637
2661
|
});
|
|
2638
2662
|
Object.defineProperty(DataGridDescription.prototype, "rootSummariesChangedRef", {
|
|
2639
2663
|
get: function () {
|
|
2640
|
-
return this.
|
|
2664
|
+
return this.hf;
|
|
2641
2665
|
},
|
|
2642
2666
|
set: function (a) {
|
|
2643
|
-
this.
|
|
2667
|
+
this.hf = a;
|
|
2644
2668
|
this.g("RootSummariesChangedRef");
|
|
2645
2669
|
},
|
|
2646
2670
|
enumerable: false,
|
|
@@ -2648,10 +2672,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2648
2672
|
});
|
|
2649
2673
|
Object.defineProperty(DataGridDescription.prototype, "sizeChangedRef", {
|
|
2650
2674
|
get: function () {
|
|
2651
|
-
return this.
|
|
2675
|
+
return this.h5;
|
|
2652
2676
|
},
|
|
2653
2677
|
set: function (a) {
|
|
2654
|
-
this.
|
|
2678
|
+
this.h5 = a;
|
|
2655
2679
|
this.g("SizeChangedRef");
|
|
2656
2680
|
},
|
|
2657
2681
|
enumerable: false,
|
|
@@ -2659,10 +2683,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2659
2683
|
});
|
|
2660
2684
|
Object.defineProperty(DataGridDescription.prototype, "actualColumnsChangedRef", {
|
|
2661
2685
|
get: function () {
|
|
2662
|
-
return this.
|
|
2686
|
+
return this.e8;
|
|
2663
2687
|
},
|
|
2664
2688
|
set: function (a) {
|
|
2665
|
-
this.
|
|
2689
|
+
this.e8 = a;
|
|
2666
2690
|
this.g("ActualColumnsChangedRef");
|
|
2667
2691
|
},
|
|
2668
2692
|
enumerable: false,
|
|
@@ -2670,10 +2694,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2670
2694
|
});
|
|
2671
2695
|
Object.defineProperty(DataGridDescription.prototype, "columnsAutoGeneratedRef", {
|
|
2672
2696
|
get: function () {
|
|
2673
|
-
return this.
|
|
2697
|
+
return this.f7;
|
|
2674
2698
|
},
|
|
2675
2699
|
set: function (a) {
|
|
2676
|
-
this.
|
|
2700
|
+
this.f7 = a;
|
|
2677
2701
|
this.g("ColumnsAutoGeneratedRef");
|
|
2678
2702
|
},
|
|
2679
2703
|
enumerable: false,
|
|
@@ -2681,10 +2705,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2681
2705
|
});
|
|
2682
2706
|
Object.defineProperty(DataGridDescription.prototype, "selectedItemsChangedRef", {
|
|
2683
2707
|
get: function () {
|
|
2684
|
-
return this.
|
|
2708
|
+
return this.h0;
|
|
2685
2709
|
},
|
|
2686
2710
|
set: function (a) {
|
|
2687
|
-
this.
|
|
2711
|
+
this.h0 = a;
|
|
2688
2712
|
this.g("SelectedItemsChangedRef");
|
|
2689
2713
|
},
|
|
2690
2714
|
enumerable: false,
|
|
@@ -2692,10 +2716,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2692
2716
|
});
|
|
2693
2717
|
Object.defineProperty(DataGridDescription.prototype, "selectedKeysChangedRef", {
|
|
2694
2718
|
get: function () {
|
|
2695
|
-
return this.
|
|
2719
|
+
return this.h1;
|
|
2696
2720
|
},
|
|
2697
2721
|
set: function (a) {
|
|
2698
|
-
this.
|
|
2722
|
+
this.h1 = a;
|
|
2699
2723
|
this.g("SelectedKeysChangedRef");
|
|
2700
2724
|
},
|
|
2701
2725
|
enumerable: false,
|
|
@@ -2703,10 +2727,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2703
2727
|
});
|
|
2704
2728
|
Object.defineProperty(DataGridDescription.prototype, "selectedCellsChangedRef", {
|
|
2705
2729
|
get: function () {
|
|
2706
|
-
return this.
|
|
2730
|
+
return this.hz;
|
|
2707
2731
|
},
|
|
2708
2732
|
set: function (a) {
|
|
2709
|
-
this.
|
|
2733
|
+
this.hz = a;
|
|
2710
2734
|
this.g("SelectedCellsChangedRef");
|
|
2711
2735
|
},
|
|
2712
2736
|
enumerable: false,
|
|
@@ -2714,10 +2738,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2714
2738
|
});
|
|
2715
2739
|
Object.defineProperty(DataGridDescription.prototype, "selectionChangedRef", {
|
|
2716
2740
|
get: function () {
|
|
2717
|
-
return this.
|
|
2741
|
+
return this.h3;
|
|
2718
2742
|
},
|
|
2719
2743
|
set: function (a) {
|
|
2720
|
-
this.
|
|
2744
|
+
this.h3 = a;
|
|
2721
2745
|
this.g("SelectionChangedRef");
|
|
2722
2746
|
},
|
|
2723
2747
|
enumerable: false,
|
|
@@ -2725,10 +2749,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2725
2749
|
});
|
|
2726
2750
|
Object.defineProperty(DataGridDescription.prototype, "activeCellChangedRef", {
|
|
2727
2751
|
get: function () {
|
|
2728
|
-
return this.
|
|
2752
|
+
return this.e7;
|
|
2729
2753
|
},
|
|
2730
2754
|
set: function (a) {
|
|
2731
|
-
this.
|
|
2755
|
+
this.e7 = a;
|
|
2732
2756
|
this.g("ActiveCellChangedRef");
|
|
2733
2757
|
},
|
|
2734
2758
|
enumerable: false,
|
|
@@ -2736,10 +2760,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2736
2760
|
});
|
|
2737
2761
|
Object.defineProperty(DataGridDescription.prototype, "selectedCellRangesChangedRef", {
|
|
2738
2762
|
get: function () {
|
|
2739
|
-
return this.
|
|
2763
|
+
return this.hy;
|
|
2740
2764
|
},
|
|
2741
2765
|
set: function (a) {
|
|
2742
|
-
this.
|
|
2766
|
+
this.hy = a;
|
|
2743
2767
|
this.g("SelectedCellRangesChangedRef");
|
|
2744
2768
|
},
|
|
2745
2769
|
enumerable: false,
|
|
@@ -2747,10 +2771,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2747
2771
|
});
|
|
2748
2772
|
Object.defineProperty(DataGridDescription.prototype, "columnWidthChangedRef", {
|
|
2749
2773
|
get: function () {
|
|
2750
|
-
return this.
|
|
2774
|
+
return this.f9;
|
|
2751
2775
|
},
|
|
2752
2776
|
set: function (a) {
|
|
2753
|
-
this.
|
|
2777
|
+
this.f9 = a;
|
|
2754
2778
|
this.g("ColumnWidthChangedRef");
|
|
2755
2779
|
},
|
|
2756
2780
|
enumerable: false,
|
|
@@ -2758,10 +2782,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2758
2782
|
});
|
|
2759
2783
|
Object.defineProperty(DataGridDescription.prototype, "cellEditStartedRef", {
|
|
2760
2784
|
get: function () {
|
|
2761
|
-
return this.
|
|
2785
|
+
return this.fg;
|
|
2762
2786
|
},
|
|
2763
2787
|
set: function (a) {
|
|
2764
|
-
this.
|
|
2788
|
+
this.fg = a;
|
|
2765
2789
|
this.g("CellEditStartedRef");
|
|
2766
2790
|
},
|
|
2767
2791
|
enumerable: false,
|
|
@@ -2769,10 +2793,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2769
2793
|
});
|
|
2770
2794
|
Object.defineProperty(DataGridDescription.prototype, "cellEditEndedRef", {
|
|
2771
2795
|
get: function () {
|
|
2772
|
-
return this.
|
|
2796
|
+
return this.ff;
|
|
2773
2797
|
},
|
|
2774
2798
|
set: function (a) {
|
|
2775
|
-
this.
|
|
2799
|
+
this.ff = a;
|
|
2776
2800
|
this.g("CellEditEndedRef");
|
|
2777
2801
|
},
|
|
2778
2802
|
enumerable: false,
|
|
@@ -2780,10 +2804,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2780
2804
|
});
|
|
2781
2805
|
Object.defineProperty(DataGridDescription.prototype, "rowEditStartedRef", {
|
|
2782
2806
|
get: function () {
|
|
2783
|
-
return this.
|
|
2807
|
+
return this.hh;
|
|
2784
2808
|
},
|
|
2785
2809
|
set: function (a) {
|
|
2786
|
-
this.
|
|
2810
|
+
this.hh = a;
|
|
2787
2811
|
this.g("RowEditStartedRef");
|
|
2788
2812
|
},
|
|
2789
2813
|
enumerable: false,
|
|
@@ -2791,10 +2815,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2791
2815
|
});
|
|
2792
2816
|
Object.defineProperty(DataGridDescription.prototype, "rowEditEndedRef", {
|
|
2793
2817
|
get: function () {
|
|
2794
|
-
return this.
|
|
2818
|
+
return this.hg;
|
|
2795
2819
|
},
|
|
2796
2820
|
set: function (a) {
|
|
2797
|
-
this.
|
|
2821
|
+
this.hg = a;
|
|
2798
2822
|
this.g("RowEditEndedRef");
|
|
2799
2823
|
},
|
|
2800
2824
|
enumerable: false,
|
|
@@ -2802,10 +2826,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2802
2826
|
});
|
|
2803
2827
|
Object.defineProperty(DataGridDescription.prototype, "customFilterRequestedRef", {
|
|
2804
2828
|
get: function () {
|
|
2805
|
-
return this.
|
|
2829
|
+
return this.ga;
|
|
2806
2830
|
},
|
|
2807
2831
|
set: function (a) {
|
|
2808
|
-
this.
|
|
2832
|
+
this.ga = a;
|
|
2809
2833
|
this.g("CustomFilterRequestedRef");
|
|
2810
2834
|
},
|
|
2811
2835
|
enumerable: false,
|
|
@@ -2813,10 +2837,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2813
2837
|
});
|
|
2814
2838
|
Object.defineProperty(DataGridDescription.prototype, "actualPrimaryKeyChangeRef", {
|
|
2815
2839
|
get: function () {
|
|
2816
|
-
return this.
|
|
2840
|
+
return this.e9;
|
|
2817
2841
|
},
|
|
2818
2842
|
set: function (a) {
|
|
2819
|
-
this.
|
|
2843
|
+
this.e9 = a;
|
|
2820
2844
|
this.g("ActualPrimaryKeyChangeRef");
|
|
2821
2845
|
},
|
|
2822
2846
|
enumerable: false,
|