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
|
@@ -11,10 +11,10 @@ export declare abstract class CellInfoDescription extends Description {
|
|
|
11
11
|
private static __marshalByValue;
|
|
12
12
|
private static __marshalByValueAlias;
|
|
13
13
|
constructor();
|
|
14
|
-
private
|
|
14
|
+
private er;
|
|
15
15
|
get styleKey(): string;
|
|
16
16
|
set styleKey(a: string);
|
|
17
|
-
private
|
|
17
|
+
private ci;
|
|
18
18
|
get dataRow(): number;
|
|
19
19
|
set dataRow(a: number);
|
|
20
20
|
private y_1;
|
|
@@ -59,22 +59,22 @@ export declare abstract class CellInfoDescription extends Description {
|
|
|
59
59
|
private r;
|
|
60
60
|
get isFilterRow(): boolean;
|
|
61
61
|
set isFilterRow(a: boolean);
|
|
62
|
-
private
|
|
62
|
+
private cp;
|
|
63
63
|
get indent(): number;
|
|
64
64
|
set indent(a: number);
|
|
65
|
-
private
|
|
65
|
+
private em;
|
|
66
66
|
get rowItemRef(): string;
|
|
67
67
|
set rowItemRef(a: string);
|
|
68
|
-
private
|
|
68
|
+
private bg;
|
|
69
69
|
get x(): number;
|
|
70
70
|
set x(a: number);
|
|
71
|
-
private
|
|
71
|
+
private bh;
|
|
72
72
|
get y(): number;
|
|
73
73
|
set y(a: number);
|
|
74
|
-
private
|
|
74
|
+
private cu;
|
|
75
75
|
get snappedX(): number;
|
|
76
76
|
set snappedX(a: number);
|
|
77
|
-
private
|
|
77
|
+
private cv;
|
|
78
78
|
get snappedY(): number;
|
|
79
79
|
set snappedY(a: number);
|
|
80
80
|
private a4;
|
|
@@ -92,10 +92,10 @@ export declare abstract class CellInfoDescription extends Description {
|
|
|
92
92
|
private a1;
|
|
93
93
|
get actualOpacity(): number;
|
|
94
94
|
set actualOpacity(a: number);
|
|
95
|
-
private
|
|
95
|
+
private co;
|
|
96
96
|
get height(): number;
|
|
97
97
|
set height(a: number);
|
|
98
|
-
private
|
|
98
|
+
private cw;
|
|
99
99
|
get width(): number;
|
|
100
100
|
set width(a: number);
|
|
101
101
|
private ab;
|
|
@@ -113,178 +113,223 @@ export declare abstract class CellInfoDescription extends Description {
|
|
|
113
113
|
private t;
|
|
114
114
|
get isHoverable(): boolean;
|
|
115
115
|
set isHoverable(a: boolean);
|
|
116
|
-
private
|
|
116
|
+
private ed;
|
|
117
117
|
get horizontalAlignment(): string;
|
|
118
118
|
set horizontalAlignment(a: string);
|
|
119
|
-
private
|
|
119
|
+
private e4;
|
|
120
120
|
get verticalAlignment(): string;
|
|
121
121
|
set verticalAlignment(a: string);
|
|
122
|
-
private
|
|
122
|
+
private d1;
|
|
123
123
|
get background(): string;
|
|
124
124
|
set background(a: string);
|
|
125
|
-
private
|
|
125
|
+
private d2;
|
|
126
126
|
get border(): string;
|
|
127
127
|
set border(a: string);
|
|
128
|
-
private
|
|
128
|
+
private dv;
|
|
129
129
|
get actualBackground(): string;
|
|
130
130
|
set actualBackground(a: string);
|
|
131
|
-
private
|
|
131
|
+
private dw;
|
|
132
132
|
get actualBorder(): string;
|
|
133
133
|
set actualBorder(a: string);
|
|
134
|
-
private
|
|
134
|
+
private du;
|
|
135
135
|
get activationBorder(): string;
|
|
136
136
|
set activationBorder(a: string);
|
|
137
|
-
private
|
|
137
|
+
private d8;
|
|
138
138
|
get errorBorder(): string;
|
|
139
139
|
set errorBorder(a: string);
|
|
140
|
-
private
|
|
140
|
+
private en;
|
|
141
141
|
get selectedBackground(): string;
|
|
142
142
|
set selectedBackground(a: string);
|
|
143
|
-
private
|
|
143
|
+
private ee;
|
|
144
144
|
get hoverBackground(): string;
|
|
145
145
|
set hoverBackground(a: string);
|
|
146
|
-
private
|
|
146
|
+
private ef;
|
|
147
147
|
get hoverTextColor(): string;
|
|
148
148
|
set hoverTextColor(a: string);
|
|
149
|
-
private
|
|
149
|
+
private ep;
|
|
150
150
|
get sortIndicatorColor(): string;
|
|
151
151
|
set sortIndicatorColor(a: string);
|
|
152
|
-
private
|
|
152
|
+
private eq;
|
|
153
153
|
get stickyRowBackground(): string;
|
|
154
154
|
set stickyRowBackground(a: string);
|
|
155
|
-
private
|
|
155
|
+
private ek;
|
|
156
156
|
get pinnedRowBackground(): string;
|
|
157
157
|
set pinnedRowBackground(a: string);
|
|
158
|
-
private
|
|
158
|
+
private eg;
|
|
159
159
|
get lastStickyRowBackground(): string;
|
|
160
160
|
set lastStickyRowBackground(a: string);
|
|
161
|
-
private
|
|
161
|
+
private d9;
|
|
162
162
|
get filterRowBackground(): string;
|
|
163
163
|
set filterRowBackground(a: string);
|
|
164
164
|
private a8;
|
|
165
165
|
get pinnedRowOpacity(): number;
|
|
166
166
|
set pinnedRowOpacity(a: number);
|
|
167
|
-
private
|
|
167
|
+
private ei;
|
|
168
168
|
get originalValueRef(): string;
|
|
169
169
|
set originalValueRef(a: string);
|
|
170
|
-
private
|
|
170
|
+
private el;
|
|
171
171
|
get renderValue(): string;
|
|
172
172
|
set renderValue(a: string);
|
|
173
|
-
private
|
|
173
|
+
private e3;
|
|
174
174
|
get userFormattedValue(): string;
|
|
175
175
|
set userFormattedValue(a: string);
|
|
176
|
-
private
|
|
176
|
+
private e1;
|
|
177
177
|
get textColor(): string;
|
|
178
178
|
set textColor(a: string);
|
|
179
|
-
private
|
|
179
|
+
private d0;
|
|
180
180
|
get actualTextColor(): string;
|
|
181
181
|
set actualTextColor(a: string);
|
|
182
|
-
private
|
|
182
|
+
private d3;
|
|
183
183
|
get deletedTextColor(): string;
|
|
184
184
|
set deletedTextColor(a: string);
|
|
185
|
-
private
|
|
185
|
+
private ea;
|
|
186
186
|
get fontFamily(): string;
|
|
187
187
|
set fontFamily(a: string);
|
|
188
188
|
private a5;
|
|
189
189
|
get fontSize(): number;
|
|
190
190
|
set fontSize(a: number);
|
|
191
|
-
private
|
|
191
|
+
private eb;
|
|
192
192
|
get fontStyle(): string;
|
|
193
193
|
set fontStyle(a: string);
|
|
194
|
-
private
|
|
194
|
+
private ec;
|
|
195
195
|
get fontWeight(): string;
|
|
196
196
|
set fontWeight(a: string);
|
|
197
|
-
private
|
|
197
|
+
private dx;
|
|
198
198
|
get actualFontFamily(): string;
|
|
199
199
|
set actualFontFamily(a: string);
|
|
200
200
|
private a0;
|
|
201
201
|
get actualFontSize(): number;
|
|
202
202
|
set actualFontSize(a: number);
|
|
203
|
-
private
|
|
203
|
+
private dy;
|
|
204
204
|
get actualFontStyle(): string;
|
|
205
205
|
set actualFontStyle(a: string);
|
|
206
|
-
private
|
|
206
|
+
private dz;
|
|
207
207
|
get actualFontWeight(): string;
|
|
208
208
|
set actualFontWeight(a: string);
|
|
209
|
-
private
|
|
209
|
+
private ew;
|
|
210
|
+
get suffixText(): string;
|
|
211
|
+
set suffixText(a: string);
|
|
212
|
+
private ex;
|
|
213
|
+
get suffixTextColor(): string;
|
|
214
|
+
set suffixTextColor(a: string);
|
|
215
|
+
private ey;
|
|
216
|
+
get suffixTextFontFamily(): string;
|
|
217
|
+
set suffixTextFontFamily(a: string);
|
|
218
|
+
private be;
|
|
219
|
+
get suffixTextFontSize(): number;
|
|
220
|
+
set suffixTextFontSize(a: number);
|
|
221
|
+
private ez;
|
|
222
|
+
get suffixTextFontStyle(): string;
|
|
223
|
+
set suffixTextFontStyle(a: string);
|
|
224
|
+
private e0;
|
|
225
|
+
get suffixTextFontWeight(): string;
|
|
226
|
+
set suffixTextFontWeight(a: string);
|
|
227
|
+
private eu;
|
|
228
|
+
get suffixIconName(): string;
|
|
229
|
+
set suffixIconName(a: string);
|
|
230
|
+
private es;
|
|
231
|
+
get suffixIconCollectionName(): string;
|
|
232
|
+
set suffixIconCollectionName(a: string);
|
|
233
|
+
private ev;
|
|
234
|
+
get suffixIconStroke(): string;
|
|
235
|
+
set suffixIconStroke(a: string);
|
|
236
|
+
private et;
|
|
237
|
+
get suffixIconFill(): string;
|
|
238
|
+
set suffixIconFill(a: string);
|
|
239
|
+
private bb;
|
|
240
|
+
get suffixIconViewBoxLeft(): number;
|
|
241
|
+
set suffixIconViewBoxLeft(a: number);
|
|
242
|
+
private bc;
|
|
243
|
+
get suffixIconViewBoxTop(): number;
|
|
244
|
+
set suffixIconViewBoxTop(a: number);
|
|
245
|
+
private bd;
|
|
246
|
+
get suffixIconViewBoxWidth(): number;
|
|
247
|
+
set suffixIconViewBoxWidth(a: number);
|
|
248
|
+
private ba;
|
|
249
|
+
get suffixIconViewBoxHeight(): number;
|
|
250
|
+
set suffixIconViewBoxHeight(a: number);
|
|
251
|
+
private e2;
|
|
252
|
+
get textDecoration(): string;
|
|
253
|
+
set textDecoration(a: string);
|
|
254
|
+
private eh;
|
|
210
255
|
get lineBreakMode(): string;
|
|
211
256
|
set lineBreakMode(a: string);
|
|
212
|
-
private
|
|
257
|
+
private bf;
|
|
213
258
|
get virtualizationPercentage(): number;
|
|
214
259
|
set virtualizationPercentage(a: number);
|
|
215
|
-
private
|
|
260
|
+
private cr;
|
|
216
261
|
get paddingLeft(): number;
|
|
217
262
|
set paddingLeft(a: number);
|
|
218
|
-
private
|
|
263
|
+
private ct;
|
|
219
264
|
get paddingTop(): number;
|
|
220
265
|
set paddingTop(a: number);
|
|
221
|
-
private
|
|
266
|
+
private cs;
|
|
222
267
|
get paddingRight(): number;
|
|
223
268
|
set paddingRight(a: number);
|
|
224
|
-
private
|
|
269
|
+
private cq;
|
|
225
270
|
get paddingBottom(): number;
|
|
226
271
|
set paddingBottom(a: number);
|
|
227
|
-
private
|
|
272
|
+
private cb;
|
|
228
273
|
get actualPaddingLeft(): number;
|
|
229
274
|
set actualPaddingLeft(a: number);
|
|
230
|
-
private
|
|
275
|
+
private cd;
|
|
231
276
|
get actualPaddingTop(): number;
|
|
232
277
|
set actualPaddingTop(a: number);
|
|
233
|
-
private
|
|
278
|
+
private cc;
|
|
234
279
|
get actualPaddingRight(): number;
|
|
235
280
|
set actualPaddingRight(a: number);
|
|
236
|
-
private
|
|
281
|
+
private ca;
|
|
237
282
|
get actualPaddingBottom(): number;
|
|
238
283
|
set actualPaddingBottom(a: number);
|
|
239
|
-
private
|
|
284
|
+
private cf;
|
|
240
285
|
get borderLeftWidth(): number;
|
|
241
286
|
set borderLeftWidth(a: number);
|
|
242
|
-
private
|
|
287
|
+
private ch;
|
|
243
288
|
get borderTopWidth(): number;
|
|
244
289
|
set borderTopWidth(a: number);
|
|
245
|
-
private
|
|
290
|
+
private cg;
|
|
246
291
|
get borderRightWidth(): number;
|
|
247
292
|
set borderRightWidth(a: number);
|
|
248
|
-
private
|
|
293
|
+
private ce;
|
|
249
294
|
get borderBottomWidth(): number;
|
|
250
295
|
set borderBottomWidth(a: number);
|
|
251
|
-
private
|
|
296
|
+
private b3;
|
|
252
297
|
get activationBorderLeftWidth(): number;
|
|
253
298
|
set activationBorderLeftWidth(a: number);
|
|
254
|
-
private
|
|
299
|
+
private b5;
|
|
255
300
|
get activationBorderTopWidth(): number;
|
|
256
301
|
set activationBorderTopWidth(a: number);
|
|
257
|
-
private
|
|
302
|
+
private b4;
|
|
258
303
|
get activationBorderRightWidth(): number;
|
|
259
304
|
set activationBorderRightWidth(a: number);
|
|
260
|
-
private
|
|
305
|
+
private b2;
|
|
261
306
|
get activationBorderBottomWidth(): number;
|
|
262
307
|
set activationBorderBottomWidth(a: number);
|
|
263
|
-
private
|
|
308
|
+
private cl;
|
|
264
309
|
get errorBorderLeftWidth(): number;
|
|
265
310
|
set errorBorderLeftWidth(a: number);
|
|
266
|
-
private
|
|
311
|
+
private cn;
|
|
267
312
|
get errorBorderTopWidth(): number;
|
|
268
313
|
set errorBorderTopWidth(a: number);
|
|
269
|
-
private
|
|
314
|
+
private cm;
|
|
270
315
|
get errorBorderRightWidth(): number;
|
|
271
316
|
set errorBorderRightWidth(a: number);
|
|
272
|
-
private
|
|
317
|
+
private ck;
|
|
273
318
|
get errorBorderBottomWidth(): number;
|
|
274
319
|
set errorBorderBottomWidth(a: number);
|
|
275
|
-
private
|
|
320
|
+
private b7;
|
|
276
321
|
get actualBorderLeftWidth(): number;
|
|
277
322
|
set actualBorderLeftWidth(a: number);
|
|
278
|
-
private
|
|
323
|
+
private b9;
|
|
279
324
|
get actualBorderTopWidth(): number;
|
|
280
325
|
set actualBorderTopWidth(a: number);
|
|
281
|
-
private
|
|
326
|
+
private b8;
|
|
282
327
|
get actualBorderRightWidth(): number;
|
|
283
328
|
set actualBorderRightWidth(a: number);
|
|
284
|
-
private
|
|
329
|
+
private b6;
|
|
285
330
|
get actualBorderBottomWidth(): number;
|
|
286
331
|
set actualBorderBottomWidth(a: number);
|
|
287
|
-
private
|
|
332
|
+
private eo;
|
|
288
333
|
get sortDirection(): string;
|
|
289
334
|
set sortDirection(a: string);
|
|
290
335
|
private q;
|
|
@@ -293,19 +338,19 @@ export declare abstract class CellInfoDescription extends Description {
|
|
|
293
338
|
private l;
|
|
294
339
|
get isCollapsable(): boolean;
|
|
295
340
|
set isCollapsable(a: boolean);
|
|
296
|
-
private
|
|
341
|
+
private ej;
|
|
297
342
|
get pinned(): string;
|
|
298
343
|
set pinned(a: string);
|
|
299
|
-
private
|
|
344
|
+
private d5;
|
|
300
345
|
get editFontFamily(): string;
|
|
301
346
|
set editFontFamily(a: string);
|
|
302
347
|
private a3;
|
|
303
348
|
get editFontSize(): number;
|
|
304
349
|
set editFontSize(a: number);
|
|
305
|
-
private
|
|
350
|
+
private d6;
|
|
306
351
|
get editFontStyle(): string;
|
|
307
352
|
set editFontStyle(a: string);
|
|
308
|
-
private
|
|
353
|
+
private d7;
|
|
309
354
|
get editFontWeight(): string;
|
|
310
355
|
set editFontWeight(a: string);
|
|
311
356
|
private p;
|
|
@@ -314,13 +359,13 @@ export declare abstract class CellInfoDescription extends Description {
|
|
|
314
359
|
private o;
|
|
315
360
|
get isDeleted(): boolean;
|
|
316
361
|
set isDeleted(a: boolean);
|
|
317
|
-
private
|
|
362
|
+
private d4;
|
|
318
363
|
get editError(): string;
|
|
319
364
|
set editError(a: string);
|
|
320
365
|
private u;
|
|
321
366
|
get isInEditMode(): boolean;
|
|
322
367
|
set isInEditMode(a: boolean);
|
|
323
|
-
private
|
|
368
|
+
private cj;
|
|
324
369
|
get editID(): number;
|
|
325
370
|
set editID(a: number);
|
|
326
371
|
}
|
|
@@ -11,16 +11,19 @@ export declare class ChartMouseEventArgsDescription extends Description {
|
|
|
11
11
|
protected get_type(): string;
|
|
12
12
|
get type(): string;
|
|
13
13
|
constructor();
|
|
14
|
-
private
|
|
14
|
+
private p;
|
|
15
15
|
get itemRef(): string;
|
|
16
16
|
set itemRef(a: string);
|
|
17
|
-
private
|
|
17
|
+
private l;
|
|
18
18
|
get series(): SeriesDescription;
|
|
19
19
|
set series(a: SeriesDescription);
|
|
20
20
|
private h;
|
|
21
21
|
get plotAreaPosition(): PointDescription;
|
|
22
22
|
set plotAreaPosition(a: PointDescription);
|
|
23
|
-
private
|
|
23
|
+
private i;
|
|
24
|
+
get worldPosition(): PointDescription;
|
|
25
|
+
set worldPosition(a: PointDescription);
|
|
26
|
+
private n;
|
|
24
27
|
get chart(): SeriesViewerDescription;
|
|
25
28
|
set chart(a: SeriesViewerDescription);
|
|
26
29
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Description } from "./Description";
|
|
2
|
+
import { Type } from "./type";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class ChartResizeIdleEventArgsDescription extends Description {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
protected get_type(): string;
|
|
9
|
+
get type(): string;
|
|
10
|
+
constructor();
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class ChartResizeIdleEventArgsDescriptionMetadata extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static a;
|
|
10
|
+
private static b;
|
|
11
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
12
|
+
static d(a: TypeDescriptionContext): void;
|
|
13
|
+
}
|
|
@@ -456,44 +456,44 @@ export declare class WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter ext
|
|
|
456
456
|
export declare class CodeGeneratingComponentRenderer extends ComponentRenderer {
|
|
457
457
|
static $t: Type;
|
|
458
458
|
loadCodeJson(a: string): void;
|
|
459
|
-
protected
|
|
460
|
-
protected
|
|
461
|
-
static
|
|
462
|
-
static
|
|
463
|
-
static
|
|
464
|
-
static
|
|
465
|
-
protected
|
|
466
|
-
bz(a: DescriptionTreeAction): any;
|
|
467
|
-
b0(a: DescriptionTreeAction): any;
|
|
459
|
+
protected dv(a: boolean): void;
|
|
460
|
+
protected r(): boolean;
|
|
461
|
+
static fa(a: string): string;
|
|
462
|
+
static fc(a: string): string;
|
|
463
|
+
static fb(a: string): string;
|
|
464
|
+
static fd(a: string): string;
|
|
465
|
+
protected av(): boolean;
|
|
468
466
|
b1(a: DescriptionTreeAction): any;
|
|
467
|
+
b2(a: DescriptionTreeAction): any;
|
|
469
468
|
b3(a: DescriptionTreeAction): any;
|
|
470
|
-
|
|
471
|
-
protected
|
|
472
|
-
|
|
473
|
-
an(a: JsonDictionaryItem): boolean;
|
|
474
|
-
ah(a: JsonDictionaryItem): boolean;
|
|
469
|
+
b5(a: DescriptionTreeAction): any;
|
|
470
|
+
protected cw(a: string): any;
|
|
471
|
+
protected cx(a: string): any;
|
|
475
472
|
ai(a: JsonDictionaryItem): boolean;
|
|
473
|
+
ap(a: JsonDictionaryItem): boolean;
|
|
476
474
|
aj(a: JsonDictionaryItem): boolean;
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
475
|
+
ak(a: JsonDictionaryItem): boolean;
|
|
476
|
+
al(a: JsonDictionaryItem): boolean;
|
|
477
|
+
ew(a: CodeGenerationItemBuilder, b: CodeGenerationRendererOptions, c: CodeGeneratingRendererResult): CodeGeneratingComponentRendererCodeEmitter;
|
|
478
|
+
ex(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult): CodeGeneratingComponentRendererDataEmitter;
|
|
479
|
+
ey(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult): CodeGeneratingComponentRendererHandlerEmitter;
|
|
480
|
+
e0(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult): CodeGeneratingComponentRendererTemplateEmitter;
|
|
481
|
+
ez(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult): CodeGeneratingComponentRendererModuleEmitter;
|
|
482
482
|
markRefUsed(a: string): void;
|
|
483
483
|
emitCode(a: ICodeGenerationRendererTemplate): CodeGeneratingRendererResult;
|
|
484
|
-
private
|
|
485
|
-
protected
|
|
486
|
-
private
|
|
487
|
-
private
|
|
488
|
-
private ex;
|
|
489
|
-
private ey;
|
|
490
|
-
private e1;
|
|
484
|
+
private fi;
|
|
485
|
+
protected bn(): (arg1: string) => string;
|
|
486
|
+
private fe;
|
|
487
|
+
private ff;
|
|
491
488
|
private e2;
|
|
492
489
|
private e3;
|
|
493
|
-
private
|
|
494
|
-
private
|
|
490
|
+
private e6;
|
|
491
|
+
private e7;
|
|
492
|
+
private e8;
|
|
493
|
+
private e5;
|
|
494
|
+
private e4;
|
|
495
495
|
constructor(a: CodeGenerationTargetPlatforms, b: CodeGenerationRendererOptions);
|
|
496
|
-
private static
|
|
496
|
+
private static e9;
|
|
497
497
|
}
|
|
498
498
|
/**
|
|
499
499
|
* @hidden
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DataGridColumnDescription } from "./DataGridColumnDescription";
|
|
2
2
|
import { BaseDataSourceDescription } from "./BaseDataSourceDescription";
|
|
3
|
+
import { BaseGenericDataSourceDescription } from "./BaseGenericDataSourceDescription";
|
|
3
4
|
import { Type } from "./type";
|
|
4
5
|
/**
|
|
5
6
|
* @hidden
|
|
@@ -10,16 +11,19 @@ export declare class ComboBoxColumnDescription extends DataGridColumnDescription
|
|
|
10
11
|
private static __canMarshalByValue1;
|
|
11
12
|
private static __marshalByValueAlias1;
|
|
12
13
|
constructor();
|
|
13
|
-
private
|
|
14
|
+
private g3;
|
|
14
15
|
get dataSourceRef(): string;
|
|
15
16
|
set dataSourceRef(a: string);
|
|
16
|
-
private
|
|
17
|
+
private gx;
|
|
17
18
|
get dataSource(): BaseDataSourceDescription;
|
|
18
19
|
set dataSource(a: BaseDataSourceDescription);
|
|
19
|
-
private
|
|
20
|
+
private gz;
|
|
21
|
+
get genericDataSource(): BaseGenericDataSourceDescription;
|
|
22
|
+
set genericDataSource(a: BaseGenericDataSourceDescription);
|
|
23
|
+
private g4;
|
|
20
24
|
get textField(): string;
|
|
21
25
|
set textField(a: string);
|
|
22
|
-
private
|
|
26
|
+
private g5;
|
|
23
27
|
get valueField(): string;
|
|
24
28
|
set valueField(a: string);
|
|
25
29
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Base, Type } from "./type";
|
|
2
2
|
import { JsonDictionaryItem } from "./JsonDictionaryItem";
|
|
3
|
+
import { TypeDescriptionWellKnownType } from "./TypeDescriptionWellKnownType";
|
|
3
4
|
import { EmbeddedRefDescription } from "./EmbeddedRefDescription";
|
|
4
5
|
import { PointDescription } from "./PointDescription";
|
|
5
6
|
import { SizeDescription } from "./SizeDescription";
|
|
@@ -9,10 +10,16 @@ import { RectDescription } from "./RectDescription";
|
|
|
9
10
|
*/
|
|
10
11
|
export declare class ComponentRendererMethodHelperBuilder extends Base {
|
|
11
12
|
static $t: Type;
|
|
12
|
-
private
|
|
13
|
-
private
|
|
14
|
-
private
|
|
15
|
-
private
|
|
13
|
+
private i;
|
|
14
|
+
private j;
|
|
15
|
+
private g;
|
|
16
|
+
private c;
|
|
17
|
+
get methodName(): string;
|
|
18
|
+
get targetRef(): string;
|
|
19
|
+
getArgumentCount(): number;
|
|
20
|
+
getArgument(a: number): ComponentRendererMethodHelperArgumentBuilder;
|
|
21
|
+
hasReturn(): boolean;
|
|
22
|
+
getReturn(): ComponentRendererMethodHelperReturnBuilder;
|
|
16
23
|
constructor(a: string, b: string);
|
|
17
24
|
argument(): ComponentRendererMethodHelperArgumentBuilder;
|
|
18
25
|
$return(): ComponentRendererMethodHelperReturnBuilder;
|
|
@@ -23,19 +30,26 @@ export declare class ComponentRendererMethodHelperBuilder extends Base {
|
|
|
23
30
|
*/
|
|
24
31
|
export declare class ComponentRendererMethodHelperArgumentBuilder extends Base {
|
|
25
32
|
static $t: Type;
|
|
26
|
-
private
|
|
33
|
+
private ac;
|
|
27
34
|
constructor(a: ComponentRendererMethodHelperBuilder);
|
|
28
35
|
argument(): ComponentRendererMethodHelperArgumentBuilder;
|
|
29
36
|
$return(): ComponentRendererMethodHelperReturnBuilder;
|
|
30
37
|
build(): string;
|
|
31
|
-
private
|
|
32
|
-
private
|
|
33
|
-
private
|
|
34
|
-
private
|
|
35
|
-
private
|
|
38
|
+
private ah;
|
|
39
|
+
private al;
|
|
40
|
+
private ak;
|
|
41
|
+
private aj;
|
|
42
|
+
private ae;
|
|
43
|
+
get ai(): TypeDescriptionWellKnownType;
|
|
44
|
+
get ao(): string;
|
|
45
|
+
get ap(): string;
|
|
46
|
+
get an(): string;
|
|
47
|
+
get ag(): JsonDictionaryItem;
|
|
36
48
|
asInt(a: number): ComponentRendererMethodHelperArgumentBuilder;
|
|
37
49
|
asIntArray(a: number[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
38
50
|
asDouble(a: number): ComponentRendererMethodHelperArgumentBuilder;
|
|
51
|
+
asDate(a: Date): ComponentRendererMethodHelperArgumentBuilder;
|
|
52
|
+
asDateArray(a: Date[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
39
53
|
asDoubleArray(a: number[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
40
54
|
asShort(a: number): ComponentRendererMethodHelperArgumentBuilder;
|
|
41
55
|
asShortArray(a: number[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
@@ -43,17 +57,22 @@ export declare class ComponentRendererMethodHelperArgumentBuilder extends Base {
|
|
|
43
57
|
asLongArray(a: number[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
44
58
|
asFloat(a: number): ComponentRendererMethodHelperArgumentBuilder;
|
|
45
59
|
asFloatArray(a: number[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
46
|
-
|
|
60
|
+
asEnum1(a: Type, b: any): ComponentRendererMethodHelperArgumentBuilder;
|
|
61
|
+
asEnum(a: string, b: any): ComponentRendererMethodHelperArgumentBuilder;
|
|
47
62
|
asString(a: string): ComponentRendererMethodHelperArgumentBuilder;
|
|
48
63
|
asStringArray(a: string[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
64
|
+
asEmbeddedRefArray(a: EmbeddedRefDescription[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
49
65
|
asPublicTypeRef(a: string, b: EmbeddedRefDescription): ComponentRendererMethodHelperArgumentBuilder;
|
|
66
|
+
asEmbeddedRef(a: EmbeddedRefDescription): ComponentRendererMethodHelperArgumentBuilder;
|
|
50
67
|
asPoint(a: PointDescription): ComponentRendererMethodHelperArgumentBuilder;
|
|
51
68
|
asSize(a: SizeDescription): ComponentRendererMethodHelperArgumentBuilder;
|
|
52
69
|
asRect(a: RectDescription): ComponentRendererMethodHelperArgumentBuilder;
|
|
53
70
|
asMethodRef(a: string): ComponentRendererMethodHelperArgumentBuilder;
|
|
54
71
|
asBool(a: boolean): ComponentRendererMethodHelperArgumentBuilder;
|
|
72
|
+
asPrimitive(a: any): ComponentRendererMethodHelperArgumentBuilder;
|
|
73
|
+
asPrimitiveArray(a: any): ComponentRendererMethodHelperArgumentBuilder;
|
|
55
74
|
asBoolArray(a: boolean[]): ComponentRendererMethodHelperArgumentBuilder;
|
|
56
|
-
|
|
75
|
+
af(): JsonDictionaryItem;
|
|
57
76
|
}
|
|
58
77
|
/**
|
|
59
78
|
* @hidden
|
|
@@ -66,9 +85,13 @@ export declare class ComponentRendererMethodHelperReturnBuilder extends Base {
|
|
|
66
85
|
$return(): ComponentRendererMethodHelperReturnBuilder;
|
|
67
86
|
build(): string;
|
|
68
87
|
private y;
|
|
88
|
+
private ac;
|
|
69
89
|
private ab;
|
|
70
90
|
private aa;
|
|
71
|
-
|
|
91
|
+
get z(): TypeDescriptionWellKnownType;
|
|
92
|
+
get af(): string;
|
|
93
|
+
get ag(): string;
|
|
94
|
+
get ae(): string;
|
|
72
95
|
asInt(): ComponentRendererMethodHelperReturnBuilder;
|
|
73
96
|
asIntArray(): ComponentRendererMethodHelperReturnBuilder;
|
|
74
97
|
asDouble(): ComponentRendererMethodHelperReturnBuilder;
|