igniteui-angular-core 20.0.1 → 20.0.2-beta.1
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 +37 -37
- package/public_api.d.ts +66 -0
|
@@ -9,6 +9,7 @@ import { ColumnResizingSeparatorDescription } from "./ColumnResizingSeparatorDes
|
|
|
9
9
|
import { ColumnMovingSeparatorDescription } from "./ColumnMovingSeparatorDescription";
|
|
10
10
|
import { PinnedAreaSeparatorDescription } from "./PinnedAreaSeparatorDescription";
|
|
11
11
|
import { BaseDataSourceDescription } from "./BaseDataSourceDescription";
|
|
12
|
+
import { BaseGenericDataSourceDescription } from "./BaseGenericDataSourceDescription";
|
|
12
13
|
import { GridAnimationSettingsDescription } from "./GridAnimationSettingsDescription";
|
|
13
14
|
import { Type } from "./type";
|
|
14
15
|
import { PrimaryKeyValueDescription } from "./PrimaryKeyValueDescription";
|
|
@@ -26,82 +27,82 @@ import { DataGridColumnDescription } from "./DataGridColumnDescription";
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class DataGridDescription extends Description {
|
|
28
29
|
static $t: Type;
|
|
29
|
-
private
|
|
30
|
+
private i1;
|
|
30
31
|
get width(): string;
|
|
31
32
|
set width(a: string);
|
|
32
|
-
private
|
|
33
|
+
private g6;
|
|
33
34
|
get height(): string;
|
|
34
35
|
set height(a: string);
|
|
35
|
-
private
|
|
36
|
+
private fa;
|
|
36
37
|
get background(): string;
|
|
37
38
|
set background(a: string);
|
|
38
|
-
private
|
|
39
|
+
private bv;
|
|
39
40
|
get isGroupByAreaVisible(): boolean;
|
|
40
41
|
set isGroupByAreaVisible(a: boolean);
|
|
41
|
-
private
|
|
42
|
+
private b0;
|
|
42
43
|
get isPagerVisible(): boolean;
|
|
43
44
|
set isPagerVisible(a: boolean);
|
|
44
|
-
private
|
|
45
|
+
private b5;
|
|
45
46
|
get isToolbarVisible(): boolean;
|
|
46
47
|
set isToolbarVisible(a: boolean);
|
|
47
48
|
protected get_type(): string;
|
|
48
49
|
get type(): string;
|
|
49
50
|
constructor();
|
|
50
|
-
private
|
|
51
|
+
private f5;
|
|
51
52
|
get columnResizingMode(): string;
|
|
52
53
|
set columnResizingMode(a: string);
|
|
53
|
-
private
|
|
54
|
+
private fx;
|
|
54
55
|
get columnMovingMode(): string;
|
|
55
56
|
set columnMovingMode(a: string);
|
|
56
|
-
private
|
|
57
|
+
private b2;
|
|
57
58
|
get isRowHoverEnabled(): boolean;
|
|
58
59
|
set isRowHoverEnabled(a: boolean);
|
|
59
|
-
private
|
|
60
|
+
private hj;
|
|
60
61
|
get rowHoverBackground(): string;
|
|
61
62
|
set rowHoverBackground(a: string);
|
|
62
|
-
private
|
|
63
|
+
private hk;
|
|
63
64
|
get rowHoverTextColor(): string;
|
|
64
65
|
set rowHoverTextColor(a: string);
|
|
65
|
-
private
|
|
66
|
+
private gl;
|
|
66
67
|
get editRowBorder(): string;
|
|
67
68
|
set editRowBorder(a: string);
|
|
68
|
-
private
|
|
69
|
+
private dl;
|
|
69
70
|
get editRowBorderWidthBottom(): number;
|
|
70
71
|
set editRowBorderWidthBottom(a: number);
|
|
71
|
-
private
|
|
72
|
+
private dm;
|
|
72
73
|
get editRowBorderWidthLeft(): number;
|
|
73
74
|
set editRowBorderWidthLeft(a: number);
|
|
74
|
-
private
|
|
75
|
+
private dn;
|
|
75
76
|
get editRowBorderWidthRight(): number;
|
|
76
77
|
set editRowBorderWidthRight(a: number);
|
|
77
|
-
private
|
|
78
|
+
private dp;
|
|
78
79
|
get editRowBorderWidthTop(): number;
|
|
79
80
|
set editRowBorderWidthTop(a: number);
|
|
80
|
-
private
|
|
81
|
+
private bf;
|
|
81
82
|
get sectionHeader(): SectionHeaderDescription;
|
|
82
83
|
set sectionHeader(a: SectionHeaderDescription);
|
|
83
|
-
private
|
|
84
|
+
private bh;
|
|
84
85
|
get summaryRowRoot(): SummaryRowRootDescription;
|
|
85
86
|
set summaryRowRoot(a: SummaryRowRootDescription);
|
|
86
|
-
private
|
|
87
|
+
private bj;
|
|
87
88
|
get summaryRowSection(): SummaryRowSectionDescription;
|
|
88
89
|
set summaryRowSection(a: SummaryRowSectionDescription);
|
|
89
|
-
private
|
|
90
|
+
private bd;
|
|
90
91
|
get rowSeparator(): RowSeparatorDescription;
|
|
91
92
|
set rowSeparator(a: RowSeparatorDescription);
|
|
92
|
-
private
|
|
93
|
+
private a7;
|
|
93
94
|
get headerRowSeparator(): HeaderRowSeparatorDescription;
|
|
94
95
|
set headerRowSeparator(a: HeaderRowSeparatorDescription);
|
|
95
|
-
private
|
|
96
|
+
private a9;
|
|
96
97
|
get headerSeparator(): HeaderSeparatorDescription;
|
|
97
98
|
set headerSeparator(a: HeaderSeparatorDescription);
|
|
98
|
-
private
|
|
99
|
+
private a1;
|
|
99
100
|
get columnResizingSeparator(): ColumnResizingSeparatorDescription;
|
|
100
101
|
set columnResizingSeparator(a: ColumnResizingSeparatorDescription);
|
|
101
|
-
private
|
|
102
|
+
private az;
|
|
102
103
|
get columnMovingSeparator(): ColumnMovingSeparatorDescription;
|
|
103
104
|
set columnMovingSeparator(a: ColumnMovingSeparatorDescription);
|
|
104
|
-
private
|
|
105
|
+
private bb;
|
|
105
106
|
get pinnedAreaSeparator(): PinnedAreaSeparatorDescription;
|
|
106
107
|
set pinnedAreaSeparator(a: PinnedAreaSeparatorDescription);
|
|
107
108
|
private j;
|
|
@@ -110,97 +111,100 @@ export declare class DataGridDescription extends Description {
|
|
|
110
111
|
private l;
|
|
111
112
|
get dataSourceDesiredProperties(): string[];
|
|
112
113
|
set dataSourceDesiredProperties(a: string[]);
|
|
113
|
-
private
|
|
114
|
+
private gf;
|
|
114
115
|
get density(): string;
|
|
115
116
|
set density(a: string);
|
|
116
|
-
private
|
|
117
|
+
private en;
|
|
117
118
|
get actualRowHeight(): number;
|
|
118
119
|
set actualRowHeight(a: number);
|
|
119
|
-
private
|
|
120
|
+
private eu;
|
|
120
121
|
get rowHeight(): number;
|
|
121
122
|
set rowHeight(a: number);
|
|
122
|
-
private
|
|
123
|
+
private di;
|
|
123
124
|
get defaultColumnMinWidth(): number;
|
|
124
125
|
set defaultColumnMinWidth(a: number);
|
|
125
|
-
private
|
|
126
|
+
private em;
|
|
126
127
|
get actualHeaderHeight(): number;
|
|
127
128
|
set actualHeaderHeight(a: number);
|
|
128
|
-
private
|
|
129
|
+
private eq;
|
|
129
130
|
get headerHeight(): number;
|
|
130
131
|
set headerHeight(a: number);
|
|
131
|
-
private
|
|
132
|
+
private gd;
|
|
132
133
|
get dataSourceRef(): string;
|
|
133
134
|
set dataSourceRef(a: string);
|
|
134
135
|
private av;
|
|
135
136
|
get dataSource(): BaseDataSourceDescription;
|
|
136
137
|
set dataSource(a: BaseDataSourceDescription);
|
|
137
|
-
private
|
|
138
|
+
private ax;
|
|
139
|
+
get genericDataSource(): BaseGenericDataSourceDescription;
|
|
140
|
+
set genericDataSource(a: BaseGenericDataSourceDescription);
|
|
141
|
+
private gx;
|
|
138
142
|
get headerClickAction(): string;
|
|
139
143
|
set headerClickAction(a: string);
|
|
140
|
-
private
|
|
144
|
+
private gj;
|
|
141
145
|
get editMode(): string;
|
|
142
146
|
set editMode(a: string);
|
|
143
|
-
private
|
|
147
|
+
private gk;
|
|
144
148
|
get editModeClickAction(): string;
|
|
145
149
|
set editModeClickAction(a: string);
|
|
146
|
-
private
|
|
150
|
+
private bq;
|
|
147
151
|
get editOnKeyPress(): boolean;
|
|
148
152
|
set editOnKeyPress(a: boolean);
|
|
149
|
-
private
|
|
153
|
+
private bn;
|
|
150
154
|
get autoGenerateColumns(): boolean;
|
|
151
155
|
set autoGenerateColumns(a: boolean);
|
|
152
|
-
private
|
|
156
|
+
private ev;
|
|
153
157
|
get rowSeparatorHeight(): number;
|
|
154
158
|
set rowSeparatorHeight(a: number);
|
|
155
|
-
private
|
|
159
|
+
private b1;
|
|
156
160
|
get isPlaceholderRenderingEnabled(): boolean;
|
|
157
161
|
set isPlaceholderRenderingEnabled(a: boolean);
|
|
158
|
-
private
|
|
162
|
+
private fs;
|
|
159
163
|
get columnAddingAnimationMode(): string;
|
|
160
164
|
set columnAddingAnimationMode(a: string);
|
|
161
|
-
private
|
|
165
|
+
private f3;
|
|
162
166
|
get columnPropertyUpdatingAnimationMode(): string;
|
|
163
167
|
set columnPropertyUpdatingAnimationMode(a: string);
|
|
164
|
-
private
|
|
168
|
+
private fe;
|
|
165
169
|
get cellDataLoadedAnimationMode(): string;
|
|
166
170
|
set cellDataLoadedAnimationMode(a: string);
|
|
167
|
-
private
|
|
171
|
+
private hl;
|
|
168
172
|
get rowSelectionAnimationMode(): string;
|
|
169
173
|
set rowSelectionAnimationMode(a: string);
|
|
170
|
-
private
|
|
174
|
+
private hi;
|
|
171
175
|
get rowHoverAnimationMode(): string;
|
|
172
176
|
set rowHoverAnimationMode(a: string);
|
|
173
|
-
private
|
|
177
|
+
private fp;
|
|
174
178
|
get cellSelectionAnimationMode(): string;
|
|
175
179
|
set cellSelectionAnimationMode(a: string);
|
|
176
|
-
private
|
|
180
|
+
private a3;
|
|
177
181
|
get animationSettings(): GridAnimationSettingsDescription;
|
|
178
182
|
set animationSettings(a: GridAnimationSettingsDescription);
|
|
179
|
-
private
|
|
183
|
+
private f4;
|
|
180
184
|
get columnResizingAnimationMode(): string;
|
|
181
185
|
set columnResizingAnimationMode(a: string);
|
|
182
|
-
private
|
|
186
|
+
private f8;
|
|
183
187
|
get columnShowingAnimationMode(): string;
|
|
184
188
|
set columnShowingAnimationMode(a: string);
|
|
185
|
-
private
|
|
189
|
+
private fw;
|
|
186
190
|
get columnMovingAnimationMode(): string;
|
|
187
191
|
set columnMovingAnimationMode(a: string);
|
|
188
|
-
private
|
|
192
|
+
private fv;
|
|
189
193
|
get columnHidingAnimationMode(): string;
|
|
190
194
|
set columnHidingAnimationMode(a: string);
|
|
191
|
-
private
|
|
195
|
+
private ft;
|
|
192
196
|
get columnExchangingAnimationMode(): string;
|
|
193
197
|
set columnExchangingAnimationMode(a: string);
|
|
194
|
-
private
|
|
198
|
+
private h4;
|
|
195
199
|
get selectionMode(): string;
|
|
196
200
|
set selectionMode(a: string);
|
|
197
|
-
private
|
|
201
|
+
private e6;
|
|
198
202
|
get activationMode(): string;
|
|
199
203
|
set activationMode(a: string);
|
|
200
|
-
private
|
|
204
|
+
private h2;
|
|
201
205
|
get selectionBehavior(): string;
|
|
202
206
|
set selectionBehavior(a: string);
|
|
203
|
-
private
|
|
207
|
+
private b6;
|
|
204
208
|
get mouseDragSelectionEnabled(): boolean;
|
|
205
209
|
set mouseDragSelectionEnabled(a: boolean);
|
|
206
210
|
private x;
|
|
@@ -221,273 +225,276 @@ export declare class DataGridDescription extends Description {
|
|
|
221
225
|
private s;
|
|
222
226
|
get pinnedKeys(): PrimaryKeyValueDescription[];
|
|
223
227
|
set pinnedKeys(a: PrimaryKeyValueDescription[]);
|
|
224
|
-
private
|
|
228
|
+
private bs;
|
|
225
229
|
get isColumnOptionsEnabled(): boolean;
|
|
226
230
|
set isColumnOptionsEnabled(a: boolean);
|
|
227
|
-
private
|
|
231
|
+
private by;
|
|
228
232
|
get isGroupRowSticky(): boolean;
|
|
229
233
|
set isGroupRowSticky(a: boolean);
|
|
230
|
-
private
|
|
234
|
+
private bz;
|
|
231
235
|
get isHeaderSeparatorVisible(): boolean;
|
|
232
236
|
set isHeaderSeparatorVisible(a: boolean);
|
|
233
|
-
private
|
|
237
|
+
private fo;
|
|
234
238
|
get cellSelectedBackground(): string;
|
|
235
239
|
set cellSelectedBackground(a: string);
|
|
236
|
-
private
|
|
240
|
+
private hw;
|
|
237
241
|
get sectionHeaderSelectedBackground(): string;
|
|
238
242
|
set sectionHeaderSelectedBackground(a: string);
|
|
239
|
-
private
|
|
243
|
+
private h9;
|
|
240
244
|
get summaryRootBackground(): string;
|
|
241
245
|
set summaryRootBackground(a: string);
|
|
242
|
-
private
|
|
246
|
+
private il;
|
|
243
247
|
get summarySectionBackground(): string;
|
|
244
248
|
set summarySectionBackground(a: string);
|
|
245
|
-
private
|
|
249
|
+
private dr;
|
|
246
250
|
get pinnedRowOpacity(): number;
|
|
247
251
|
set pinnedRowOpacity(a: number);
|
|
248
|
-
private
|
|
252
|
+
private gg;
|
|
249
253
|
get editFontFamily(): string;
|
|
250
254
|
set editFontFamily(a: string);
|
|
251
|
-
private
|
|
255
|
+
private dj;
|
|
252
256
|
get editFontSize(): number;
|
|
253
257
|
set editFontSize(a: number);
|
|
254
|
-
private
|
|
258
|
+
private gh;
|
|
255
259
|
get editFontStyle(): string;
|
|
256
260
|
set editFontStyle(a: string);
|
|
257
|
-
private
|
|
261
|
+
private gi;
|
|
258
262
|
get editFontWeight(): string;
|
|
259
263
|
set editFontWeight(a: string);
|
|
260
|
-
private
|
|
264
|
+
private dk;
|
|
261
265
|
get editOpacity(): number;
|
|
262
266
|
set editOpacity(a: number);
|
|
263
|
-
private
|
|
267
|
+
private ge;
|
|
264
268
|
get deletedTextColor(): string;
|
|
265
269
|
set deletedTextColor(a: string);
|
|
266
|
-
private
|
|
270
|
+
private h7;
|
|
267
271
|
get stickyRowBackground(): string;
|
|
268
272
|
set stickyRowBackground(a: string);
|
|
269
|
-
private
|
|
273
|
+
private he;
|
|
270
274
|
get pinnedRowBackground(): string;
|
|
271
275
|
set pinnedRowBackground(a: string);
|
|
272
|
-
private
|
|
276
|
+
private ha;
|
|
273
277
|
get lastStickyRowBackground(): string;
|
|
274
278
|
set lastStickyRowBackground(a: string);
|
|
275
|
-
private
|
|
279
|
+
private a5;
|
|
276
280
|
get activeCell(): GridCellPositionDescription;
|
|
277
281
|
set activeCell(a: GridCellPositionDescription);
|
|
278
|
-
private
|
|
282
|
+
private fc;
|
|
279
283
|
get cellBackground(): string;
|
|
280
284
|
set cellBackground(a: string);
|
|
281
|
-
private
|
|
285
|
+
private fq;
|
|
282
286
|
get cellTextColor(): string;
|
|
283
287
|
set cellTextColor(a: string);
|
|
284
|
-
private
|
|
288
|
+
private g3;
|
|
285
289
|
get headerSortIndicatorColor(): string;
|
|
286
290
|
set headerSortIndicatorColor(a: string);
|
|
287
|
-
private
|
|
291
|
+
private g4;
|
|
288
292
|
get headerSortIndicatorStyle(): string;
|
|
289
293
|
set headerSortIndicatorStyle(a: string);
|
|
290
|
-
private
|
|
294
|
+
private fh;
|
|
291
295
|
get cellFontFamily(): string;
|
|
292
296
|
set cellFontFamily(a: string);
|
|
293
|
-
private
|
|
297
|
+
private db;
|
|
294
298
|
get cellFontSize(): number;
|
|
295
299
|
set cellFontSize(a: number);
|
|
296
|
-
private
|
|
300
|
+
private fi;
|
|
297
301
|
get cellFontStyle(): string;
|
|
298
302
|
set cellFontStyle(a: string);
|
|
299
|
-
private
|
|
303
|
+
private fj;
|
|
300
304
|
get cellFontWeight(): string;
|
|
301
305
|
set cellFontWeight(a: string);
|
|
302
|
-
private
|
|
306
|
+
private hs;
|
|
303
307
|
get sectionHeaderBackground(): string;
|
|
304
308
|
set sectionHeaderBackground(a: string);
|
|
305
|
-
private
|
|
309
|
+
private hx;
|
|
306
310
|
get sectionHeaderTextColor(): string;
|
|
307
311
|
set sectionHeaderTextColor(a: string);
|
|
308
|
-
private
|
|
312
|
+
private ht;
|
|
309
313
|
get sectionHeaderFontFamily(): string;
|
|
310
314
|
set sectionHeaderFontFamily(a: string);
|
|
311
|
-
private
|
|
315
|
+
private ds;
|
|
312
316
|
get sectionHeaderFontSize(): number;
|
|
313
317
|
set sectionHeaderFontSize(a: number);
|
|
314
|
-
private
|
|
318
|
+
private hu;
|
|
315
319
|
get sectionHeaderFontStyle(): string;
|
|
316
320
|
set sectionHeaderFontStyle(a: string);
|
|
317
|
-
private
|
|
321
|
+
private hv;
|
|
318
322
|
get sectionHeaderFontWeight(): string;
|
|
319
323
|
set sectionHeaderFontWeight(a: string);
|
|
320
|
-
private
|
|
324
|
+
private ia;
|
|
321
325
|
get summaryRootLabelFontFamily(): string;
|
|
322
326
|
set summaryRootLabelFontFamily(a: string);
|
|
323
|
-
private
|
|
327
|
+
private dt;
|
|
324
328
|
get summaryRootLabelFontSize(): number;
|
|
325
329
|
set summaryRootLabelFontSize(a: number);
|
|
326
|
-
private
|
|
330
|
+
private ib;
|
|
327
331
|
get summaryRootLabelFontStyle(): string;
|
|
328
332
|
set summaryRootLabelFontStyle(a: string);
|
|
329
|
-
private
|
|
333
|
+
private ic;
|
|
330
334
|
get summaryRootLabelFontWeight(): string;
|
|
331
335
|
set summaryRootLabelFontWeight(a: string);
|
|
332
|
-
private
|
|
336
|
+
private im;
|
|
333
337
|
get summarySectionLabelFontFamily(): string;
|
|
334
338
|
set summarySectionLabelFontFamily(a: string);
|
|
335
|
-
private
|
|
339
|
+
private dv;
|
|
336
340
|
get summarySectionLabelFontSize(): number;
|
|
337
341
|
set summarySectionLabelFontSize(a: number);
|
|
338
|
-
private
|
|
342
|
+
private io;
|
|
339
343
|
get summarySectionLabelFontStyle(): string;
|
|
340
344
|
set summarySectionLabelFontStyle(a: string);
|
|
341
|
-
private
|
|
345
|
+
private ip;
|
|
342
346
|
get summarySectionLabelFontWeight(): string;
|
|
343
347
|
set summarySectionLabelFontWeight(a: string);
|
|
344
|
-
private
|
|
348
|
+
private ij;
|
|
345
349
|
get summaryRootValueTextColor(): string;
|
|
346
350
|
set summaryRootValueTextColor(a: string);
|
|
347
|
-
private
|
|
351
|
+
private ig;
|
|
348
352
|
get summaryRootValueFontFamily(): string;
|
|
349
353
|
set summaryRootValueFontFamily(a: string);
|
|
350
|
-
private
|
|
354
|
+
private du;
|
|
351
355
|
get summaryRootValueFontSize(): number;
|
|
352
356
|
set summaryRootValueFontSize(a: number);
|
|
353
|
-
private
|
|
357
|
+
private ih;
|
|
354
358
|
get summaryRootValueFontStyle(): string;
|
|
355
359
|
set summaryRootValueFontStyle(a: string);
|
|
356
|
-
private
|
|
360
|
+
private ii;
|
|
357
361
|
get summaryRootValueFontWeight(): string;
|
|
358
362
|
set summaryRootValueFontWeight(a: string);
|
|
359
|
-
private
|
|
363
|
+
private is;
|
|
360
364
|
get summarySectionValueFontFamily(): string;
|
|
361
365
|
set summarySectionValueFontFamily(a: string);
|
|
362
|
-
private
|
|
366
|
+
private dw;
|
|
363
367
|
get summarySectionValueFontSize(): number;
|
|
364
368
|
set summarySectionValueFontSize(a: number);
|
|
365
|
-
private
|
|
369
|
+
private it;
|
|
366
370
|
get summarySectionValueFontStyle(): string;
|
|
367
371
|
set summarySectionValueFontStyle(a: string);
|
|
368
|
-
private
|
|
372
|
+
private iu;
|
|
369
373
|
get summarySectionValueFontWeight(): string;
|
|
370
374
|
set summarySectionValueFontWeight(a: string);
|
|
371
|
-
private
|
|
375
|
+
private iv;
|
|
372
376
|
get summarySectionValueTextColor(): string;
|
|
373
377
|
set summarySectionValueTextColor(a: string);
|
|
374
|
-
private
|
|
378
|
+
private id;
|
|
375
379
|
get summaryRootLabelTextColor(): string;
|
|
376
380
|
set summaryRootLabelTextColor(a: string);
|
|
377
|
-
private
|
|
381
|
+
private iq;
|
|
378
382
|
get summarySectionLabelTextColor(): string;
|
|
379
383
|
set summarySectionLabelTextColor(a: string);
|
|
380
|
-
private
|
|
384
|
+
private ie;
|
|
381
385
|
get summaryRootSelectedBackground(): string;
|
|
382
386
|
set summaryRootSelectedBackground(a: string);
|
|
383
|
-
private
|
|
387
|
+
private ir;
|
|
384
388
|
get summarySectionSelectedBackground(): string;
|
|
385
389
|
set summarySectionSelectedBackground(a: string);
|
|
386
|
-
private
|
|
390
|
+
private et;
|
|
387
391
|
get pinnedAreaSeparatorWidth(): number;
|
|
388
392
|
set pinnedAreaSeparatorWidth(a: number);
|
|
389
|
-
private
|
|
393
|
+
private er;
|
|
390
394
|
get headerSeparatorWidth(): number;
|
|
391
395
|
set headerSeparatorWidth(a: number);
|
|
392
|
-
private
|
|
396
|
+
private g2;
|
|
393
397
|
get headerSeparatorBackground(): string;
|
|
394
398
|
set headerSeparatorBackground(a: string);
|
|
395
|
-
private
|
|
399
|
+
private gw;
|
|
396
400
|
get headerBackground(): string;
|
|
397
401
|
set headerBackground(a: string);
|
|
398
|
-
private
|
|
402
|
+
private g5;
|
|
399
403
|
get headerTextColor(): string;
|
|
400
404
|
set headerTextColor(a: string);
|
|
401
|
-
private
|
|
405
|
+
private gy;
|
|
402
406
|
get headerFontFamily(): string;
|
|
403
407
|
set headerFontFamily(a: string);
|
|
404
|
-
private
|
|
408
|
+
private dq;
|
|
405
409
|
get headerFontSize(): number;
|
|
406
410
|
set headerFontSize(a: number);
|
|
407
|
-
private
|
|
411
|
+
private gz;
|
|
408
412
|
get headerFontStyle(): string;
|
|
409
413
|
set headerFontStyle(a: string);
|
|
410
|
-
private
|
|
414
|
+
private g0;
|
|
411
415
|
get headerFontWeight(): string;
|
|
412
416
|
set headerFontWeight(a: string);
|
|
413
|
-
private
|
|
417
|
+
private hm;
|
|
414
418
|
get rowSeparatorBackground(): string;
|
|
415
419
|
set rowSeparatorBackground(a: string);
|
|
416
|
-
private
|
|
420
|
+
private g1;
|
|
417
421
|
get headerRowSeparatorBackground(): string;
|
|
418
422
|
set headerRowSeparatorBackground(a: string);
|
|
419
|
-
private
|
|
423
|
+
private hp;
|
|
420
424
|
get rowSeparatorStickyRowBackground(): string;
|
|
421
425
|
set rowSeparatorStickyRowBackground(a: string);
|
|
422
|
-
private
|
|
426
|
+
private hn;
|
|
423
427
|
get rowSeparatorLastStickyRowBackground(): string;
|
|
424
428
|
set rowSeparatorLastStickyRowBackground(a: string);
|
|
425
|
-
private
|
|
429
|
+
private ho;
|
|
426
430
|
get rowSeparatorPinnedRowBackground(): string;
|
|
427
431
|
set rowSeparatorPinnedRowBackground(a: string);
|
|
428
|
-
private
|
|
432
|
+
private ep;
|
|
429
433
|
get columnResizingSeparatorWidth(): number;
|
|
430
434
|
set columnResizingSeparatorWidth(a: number);
|
|
431
|
-
private
|
|
435
|
+
private dd;
|
|
432
436
|
get columnResizingSeparatorOpacity(): number;
|
|
433
437
|
set columnResizingSeparatorOpacity(a: number);
|
|
434
|
-
private
|
|
438
|
+
private eo;
|
|
435
439
|
get columnMovingSeparatorWidth(): number;
|
|
436
440
|
set columnMovingSeparatorWidth(a: number);
|
|
437
|
-
private
|
|
441
|
+
private dc;
|
|
438
442
|
get columnMovingSeparatorOpacity(): number;
|
|
439
443
|
set columnMovingSeparatorOpacity(a: number);
|
|
440
|
-
private
|
|
444
|
+
private f6;
|
|
441
445
|
get columnResizingSeparatorBackground(): string;
|
|
442
446
|
set columnResizingSeparatorBackground(a: string);
|
|
443
|
-
private
|
|
447
|
+
private fy;
|
|
444
448
|
get columnMovingSeparatorBackground(): string;
|
|
445
449
|
set columnMovingSeparatorBackground(a: string);
|
|
446
|
-
private
|
|
450
|
+
private cb;
|
|
447
451
|
get shiftSectionContent(): boolean;
|
|
448
452
|
set shiftSectionContent(a: boolean);
|
|
449
|
-
private
|
|
453
|
+
private fz;
|
|
450
454
|
get columnOptionsIconAlignment(): string;
|
|
451
455
|
set columnOptionsIconAlignment(a: string);
|
|
452
|
-
private
|
|
456
|
+
private f1;
|
|
453
457
|
get columnOptionsIconColor(): string;
|
|
454
458
|
set columnOptionsIconColor(a: string);
|
|
455
|
-
private
|
|
459
|
+
private f0;
|
|
456
460
|
get columnOptionsIconBehavior(): string;
|
|
457
461
|
set columnOptionsIconBehavior(a: string);
|
|
458
|
-
private
|
|
462
|
+
private fb;
|
|
459
463
|
get border(): string;
|
|
460
464
|
set border(a: string);
|
|
461
|
-
private
|
|
465
|
+
private c7;
|
|
462
466
|
get borderWidthBottom(): number;
|
|
463
467
|
set borderWidthBottom(a: number);
|
|
464
|
-
private
|
|
468
|
+
private c8;
|
|
465
469
|
get borderWidthLeft(): number;
|
|
466
470
|
set borderWidthLeft(a: number);
|
|
467
|
-
private
|
|
471
|
+
private c9;
|
|
468
472
|
get borderWidthRight(): number;
|
|
469
473
|
set borderWidthRight(a: number);
|
|
470
|
-
private
|
|
474
|
+
private da;
|
|
471
475
|
get borderWidthTop(): number;
|
|
472
476
|
set borderWidthTop(a: number);
|
|
473
|
-
private
|
|
477
|
+
private b7;
|
|
474
478
|
get notifyOnAllSelectionChanges(): boolean;
|
|
475
479
|
set notifyOnAllSelectionChanges(a: boolean);
|
|
476
|
-
private
|
|
480
|
+
private df;
|
|
477
481
|
get cornerRadiusBottomRight(): number;
|
|
478
482
|
set cornerRadiusBottomRight(a: number);
|
|
479
|
-
private
|
|
483
|
+
private de;
|
|
480
484
|
get cornerRadiusBottomLeft(): number;
|
|
481
485
|
set cornerRadiusBottomLeft(a: number);
|
|
482
|
-
private
|
|
486
|
+
private dg;
|
|
483
487
|
get cornerRadiusTopLeft(): number;
|
|
484
488
|
set cornerRadiusTopLeft(a: number);
|
|
485
|
-
private
|
|
489
|
+
private dh;
|
|
486
490
|
get cornerRadiusTopRight(): number;
|
|
487
491
|
set cornerRadiusTopRight(a: number);
|
|
488
|
-
private
|
|
492
|
+
private br;
|
|
489
493
|
get isActiveCellStyleEnabled(): boolean;
|
|
490
494
|
set isActiveCellStyleEnabled(a: boolean);
|
|
495
|
+
private cc;
|
|
496
|
+
get stopPropagation(): boolean;
|
|
497
|
+
set stopPropagation(a: boolean);
|
|
491
498
|
private u;
|
|
492
499
|
get responsiveStates(): ResponsiveStateDescription[];
|
|
493
500
|
set responsiveStates(a: ResponsiveStateDescription[]);
|
|
@@ -500,13 +507,13 @@ export declare class DataGridDescription extends Description {
|
|
|
500
507
|
private q;
|
|
501
508
|
get initialSummaryDescriptions(): ColumnSummaryDescriptionDescription[];
|
|
502
509
|
set initialSummaryDescriptions(a: ColumnSummaryDescriptionDescription[]);
|
|
503
|
-
private
|
|
510
|
+
private g8;
|
|
504
511
|
get initialSorts(): string;
|
|
505
512
|
set initialSorts(a: string);
|
|
506
|
-
private
|
|
513
|
+
private g7;
|
|
507
514
|
get initialGroups(): string;
|
|
508
515
|
set initialGroups(a: string);
|
|
509
|
-
private
|
|
516
|
+
private g9;
|
|
510
517
|
get initialSummaries(): string;
|
|
511
518
|
set initialSummaries(a: string);
|
|
512
519
|
private z;
|
|
@@ -521,22 +528,22 @@ export declare class DataGridDescription extends Description {
|
|
|
521
528
|
private aa;
|
|
522
529
|
get summaryDescriptions(): ColumnSummaryDescriptionDescription[];
|
|
523
530
|
set summaryDescriptions(a: ColumnSummaryDescriptionDescription[]);
|
|
524
|
-
private
|
|
531
|
+
private ik;
|
|
525
532
|
get summaryScope(): string;
|
|
526
533
|
set summaryScope(a: string);
|
|
527
|
-
private
|
|
534
|
+
private bw;
|
|
528
535
|
get isGroupCollapsable(): boolean;
|
|
529
536
|
set isGroupCollapsable(a: boolean);
|
|
530
|
-
private
|
|
537
|
+
private gu;
|
|
531
538
|
get groupHeaderDisplayMode(): string;
|
|
532
539
|
set groupHeaderDisplayMode(a: string);
|
|
533
|
-
private
|
|
540
|
+
private bx;
|
|
534
541
|
get isGroupExpandedDefault(): boolean;
|
|
535
542
|
set isGroupExpandedDefault(a: boolean);
|
|
536
|
-
private
|
|
543
|
+
private gv;
|
|
537
544
|
get groupSummaryDisplayMode(): string;
|
|
538
545
|
set groupSummaryDisplayMode(a: string);
|
|
539
|
-
private
|
|
546
|
+
private bm;
|
|
540
547
|
get autoAcceptEdits(): boolean;
|
|
541
548
|
set autoAcceptEdits(a: boolean);
|
|
542
549
|
private t;
|
|
@@ -551,181 +558,181 @@ export declare class DataGridDescription extends Description {
|
|
|
551
558
|
private k;
|
|
552
559
|
get columns(): DataGridColumnDescription[];
|
|
553
560
|
set columns(a: DataGridColumnDescription[]);
|
|
554
|
-
private
|
|
561
|
+
private ca;
|
|
555
562
|
get reactsToSortChanges(): boolean;
|
|
556
563
|
set reactsToSortChanges(a: boolean);
|
|
557
|
-
private
|
|
564
|
+
private b9;
|
|
558
565
|
get reactsToGroupChanges(): boolean;
|
|
559
566
|
set reactsToGroupChanges(a: boolean);
|
|
560
|
-
private
|
|
567
|
+
private b8;
|
|
561
568
|
get reactsToFilterChanges(): boolean;
|
|
562
569
|
set reactsToFilterChanges(a: boolean);
|
|
563
|
-
private
|
|
570
|
+
private gm;
|
|
564
571
|
get enterBehavior(): string;
|
|
565
572
|
set enterBehavior(a: string);
|
|
566
|
-
private
|
|
573
|
+
private gn;
|
|
567
574
|
get enterBehaviorAfterEdit(): string;
|
|
568
575
|
set enterBehaviorAfterEdit(a: string);
|
|
569
|
-
private
|
|
576
|
+
private bu;
|
|
570
577
|
get isColumnOptionsSummariesEnabled(): boolean;
|
|
571
578
|
set isColumnOptionsSummariesEnabled(a: boolean);
|
|
572
|
-
private
|
|
579
|
+
private bt;
|
|
573
580
|
get isColumnOptionsGroupingEnabled(): boolean;
|
|
574
581
|
set isColumnOptionsGroupingEnabled(a: boolean);
|
|
575
|
-
private
|
|
582
|
+
private hc;
|
|
576
583
|
get mergedCellMode(): string;
|
|
577
584
|
set mergedCellMode(a: string);
|
|
578
|
-
private
|
|
585
|
+
private hb;
|
|
579
586
|
get mergedCellEvaluationCriteria(): string;
|
|
580
587
|
set mergedCellEvaluationCriteria(a: string);
|
|
581
|
-
private
|
|
588
|
+
private hd;
|
|
582
589
|
get mergedCellVerticalAlignment(): string;
|
|
583
590
|
set mergedCellVerticalAlignment(a: string);
|
|
584
|
-
private
|
|
591
|
+
private gs;
|
|
585
592
|
get filterUIType(): string;
|
|
586
593
|
set filterUIType(a: string);
|
|
587
|
-
private
|
|
594
|
+
private gr;
|
|
588
595
|
get filterLogicalOperator(): string;
|
|
589
596
|
set filterLogicalOperator(a: string);
|
|
590
|
-
private
|
|
597
|
+
private go;
|
|
591
598
|
get filterComparisonType(): string;
|
|
592
599
|
set filterComparisonType(a: string);
|
|
593
|
-
private
|
|
600
|
+
private c5;
|
|
594
601
|
get todayOverride(): Date;
|
|
595
602
|
set todayOverride(a: Date);
|
|
596
|
-
private
|
|
603
|
+
private bo;
|
|
597
604
|
get clearSelectionOnEscape(): boolean;
|
|
598
605
|
set clearSelectionOnEscape(a: boolean);
|
|
599
|
-
private
|
|
606
|
+
private es;
|
|
600
607
|
get pageSize(): number;
|
|
601
608
|
set pageSize(a: number);
|
|
602
|
-
private
|
|
609
|
+
private b3;
|
|
603
610
|
get isToolbarColumnChooserVisible(): boolean;
|
|
604
611
|
set isToolbarColumnChooserVisible(a: boolean);
|
|
605
|
-
private
|
|
612
|
+
private b4;
|
|
606
613
|
get isToolbarColumnPinningVisible(): boolean;
|
|
607
614
|
set isToolbarColumnPinningVisible(a: boolean);
|
|
608
|
-
private
|
|
615
|
+
private i0;
|
|
609
616
|
get toolbarTitle(): string;
|
|
610
617
|
set toolbarTitle(a: string);
|
|
611
|
-
private
|
|
618
|
+
private iw;
|
|
612
619
|
get toolbarColumnChooserText(): string;
|
|
613
620
|
set toolbarColumnChooserText(a: string);
|
|
614
|
-
private
|
|
621
|
+
private ix;
|
|
615
622
|
get toolbarColumnChooserTitle(): string;
|
|
616
623
|
set toolbarColumnChooserTitle(a: string);
|
|
617
|
-
private
|
|
624
|
+
private iy;
|
|
618
625
|
get toolbarColumnPinningText(): string;
|
|
619
626
|
set toolbarColumnPinningText(a: string);
|
|
620
|
-
private
|
|
627
|
+
private iz;
|
|
621
628
|
get toolbarColumnPinningTitle(): string;
|
|
622
629
|
set toolbarColumnPinningTitle(a: string);
|
|
623
|
-
private
|
|
630
|
+
private hr;
|
|
624
631
|
get scrollbarStyle(): string;
|
|
625
632
|
set scrollbarStyle(a: string);
|
|
626
|
-
private
|
|
633
|
+
private hq;
|
|
627
634
|
get scrollbarBackground(): string;
|
|
628
635
|
set scrollbarBackground(a: string);
|
|
629
|
-
private
|
|
636
|
+
private bl;
|
|
630
637
|
get allowCopyOperation(): boolean;
|
|
631
638
|
set allowCopyOperation(a: boolean);
|
|
632
|
-
private
|
|
639
|
+
private bp;
|
|
633
640
|
get deferEventForRowDragSelection(): boolean;
|
|
634
641
|
set deferEventForRowDragSelection(a: boolean);
|
|
635
|
-
private
|
|
642
|
+
private gq;
|
|
636
643
|
get filterExpressionsChangingRef(): string;
|
|
637
644
|
set filterExpressionsChangingRef(a: string);
|
|
638
|
-
private
|
|
645
|
+
private gp;
|
|
639
646
|
get filterExpressionsChangedRef(): string;
|
|
640
647
|
set filterExpressionsChangedRef(a: string);
|
|
641
|
-
private
|
|
648
|
+
private fm;
|
|
642
649
|
get cellPreviewPointerDownRef(): string;
|
|
643
650
|
set cellPreviewPointerDownRef(a: string);
|
|
644
|
-
private
|
|
651
|
+
private fn;
|
|
645
652
|
get cellPreviewPointerUpRef(): string;
|
|
646
653
|
set cellPreviewPointerUpRef(a: string);
|
|
647
|
-
private
|
|
654
|
+
private fk;
|
|
648
655
|
get cellPointerDownRef(): string;
|
|
649
656
|
set cellPointerDownRef(a: string);
|
|
650
|
-
private
|
|
657
|
+
private fl;
|
|
651
658
|
get cellPointerUpRef(): string;
|
|
652
659
|
set cellPointerUpRef(a: string);
|
|
653
|
-
private
|
|
660
|
+
private fd;
|
|
654
661
|
get cellClickedRef(): string;
|
|
655
662
|
set cellClickedRef(a: string);
|
|
656
|
-
private
|
|
663
|
+
private h6;
|
|
657
664
|
get sortDescriptionsChangedRef(): string;
|
|
658
665
|
set sortDescriptionsChangedRef(a: string);
|
|
659
|
-
private
|
|
666
|
+
private gt;
|
|
660
667
|
get groupDescriptionsChangedRef(): string;
|
|
661
668
|
set groupDescriptionsChangedRef(a: string);
|
|
662
|
-
private
|
|
669
|
+
private h8;
|
|
663
670
|
get summaryDescriptionsChangedRef(): string;
|
|
664
671
|
set summaryDescriptionsChangedRef(a: string);
|
|
665
|
-
private
|
|
672
|
+
private fu;
|
|
666
673
|
get columnHiddenChangedRef(): string;
|
|
667
674
|
set columnHiddenChangedRef(a: string);
|
|
668
|
-
private
|
|
675
|
+
private f2;
|
|
669
676
|
get columnPinnedChangedRef(): string;
|
|
670
677
|
set columnPinnedChangedRef(a: string);
|
|
671
|
-
private
|
|
678
|
+
private fr;
|
|
672
679
|
get cellValueChangingRef(): string;
|
|
673
680
|
set cellValueChangingRef(a: string);
|
|
674
|
-
private
|
|
681
|
+
private gb;
|
|
675
682
|
get dataCommittedRef(): string;
|
|
676
683
|
set dataCommittedRef(a: string);
|
|
677
|
-
private
|
|
684
|
+
private gc;
|
|
678
685
|
get dataCommittingRef(): string;
|
|
679
686
|
set dataCommittingRef(a: string);
|
|
680
|
-
private
|
|
687
|
+
private hf;
|
|
681
688
|
get rootSummariesChangedRef(): string;
|
|
682
689
|
set rootSummariesChangedRef(a: string);
|
|
683
|
-
private
|
|
690
|
+
private h5;
|
|
684
691
|
get sizeChangedRef(): string;
|
|
685
692
|
set sizeChangedRef(a: string);
|
|
686
|
-
private
|
|
693
|
+
private e8;
|
|
687
694
|
get actualColumnsChangedRef(): string;
|
|
688
695
|
set actualColumnsChangedRef(a: string);
|
|
689
|
-
private
|
|
696
|
+
private f7;
|
|
690
697
|
get columnsAutoGeneratedRef(): string;
|
|
691
698
|
set columnsAutoGeneratedRef(a: string);
|
|
692
|
-
private
|
|
699
|
+
private h0;
|
|
693
700
|
get selectedItemsChangedRef(): string;
|
|
694
701
|
set selectedItemsChangedRef(a: string);
|
|
695
|
-
private
|
|
702
|
+
private h1;
|
|
696
703
|
get selectedKeysChangedRef(): string;
|
|
697
704
|
set selectedKeysChangedRef(a: string);
|
|
698
|
-
private
|
|
705
|
+
private hz;
|
|
699
706
|
get selectedCellsChangedRef(): string;
|
|
700
707
|
set selectedCellsChangedRef(a: string);
|
|
701
|
-
private
|
|
708
|
+
private h3;
|
|
702
709
|
get selectionChangedRef(): string;
|
|
703
710
|
set selectionChangedRef(a: string);
|
|
704
|
-
private
|
|
711
|
+
private e7;
|
|
705
712
|
get activeCellChangedRef(): string;
|
|
706
713
|
set activeCellChangedRef(a: string);
|
|
707
|
-
private
|
|
714
|
+
private hy;
|
|
708
715
|
get selectedCellRangesChangedRef(): string;
|
|
709
716
|
set selectedCellRangesChangedRef(a: string);
|
|
710
|
-
private
|
|
717
|
+
private f9;
|
|
711
718
|
get columnWidthChangedRef(): string;
|
|
712
719
|
set columnWidthChangedRef(a: string);
|
|
713
|
-
private
|
|
720
|
+
private fg;
|
|
714
721
|
get cellEditStartedRef(): string;
|
|
715
722
|
set cellEditStartedRef(a: string);
|
|
716
|
-
private
|
|
723
|
+
private ff;
|
|
717
724
|
get cellEditEndedRef(): string;
|
|
718
725
|
set cellEditEndedRef(a: string);
|
|
719
|
-
private
|
|
726
|
+
private hh;
|
|
720
727
|
get rowEditStartedRef(): string;
|
|
721
728
|
set rowEditStartedRef(a: string);
|
|
722
|
-
private
|
|
729
|
+
private hg;
|
|
723
730
|
get rowEditEndedRef(): string;
|
|
724
731
|
set rowEditEndedRef(a: string);
|
|
725
|
-
private
|
|
732
|
+
private ga;
|
|
726
733
|
get customFilterRequestedRef(): string;
|
|
727
734
|
set customFilterRequestedRef(a: string);
|
|
728
|
-
private
|
|
735
|
+
private e9;
|
|
729
736
|
get actualPrimaryKeyChangeRef(): string;
|
|
730
737
|
set actualPrimaryKeyChangeRef(a: string);
|
|
731
738
|
}
|