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
|
@@ -5,12 +5,14 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
7
|
import { __extends, __values } from "tslib";
|
|
8
|
-
import { Base, fromEnum, markType, EnumUtil } from "./type";
|
|
8
|
+
import { Base, fromEnum, markType, typeGetValue, typeCast, Array_$type, Boolean_$type, EnumUtil } from "./type";
|
|
9
9
|
import { List$1 } from "./List$1";
|
|
10
10
|
import { JsonDictionaryObject } from "./JsonDictionaryObject";
|
|
11
11
|
import { JsonDictionaryArray } from "./JsonDictionaryArray";
|
|
12
12
|
import { JsonDictionaryValue } from "./JsonDictionaryValue";
|
|
13
13
|
import { TypeDescriptionWellKnownType_$type } from "./TypeDescriptionWellKnownType";
|
|
14
|
+
import { EmbeddedRefDescription } from "./EmbeddedRefDescription";
|
|
15
|
+
import { dateToStringFormat } from "./dateExtended";
|
|
14
16
|
/**
|
|
15
17
|
* @hidden
|
|
16
18
|
*/
|
|
@@ -18,22 +20,48 @@ var ComponentRendererMethodHelperBuilder = /** @class */ /*@__PURE__*/ (function
|
|
|
18
20
|
__extends(ComponentRendererMethodHelperBuilder, _super);
|
|
19
21
|
function ComponentRendererMethodHelperBuilder(a, b) {
|
|
20
22
|
var _this = _super.call(this) || this;
|
|
21
|
-
_this.
|
|
22
|
-
_this.
|
|
23
|
-
_this.
|
|
24
|
-
_this.
|
|
25
|
-
_this.
|
|
26
|
-
_this.
|
|
23
|
+
_this.i = null;
|
|
24
|
+
_this.j = null;
|
|
25
|
+
_this.g = new List$1(ComponentRendererMethodHelperArgumentBuilder.$, 0);
|
|
26
|
+
_this.c = null;
|
|
27
|
+
_this.i = a;
|
|
28
|
+
_this.j = b;
|
|
27
29
|
return _this;
|
|
28
30
|
}
|
|
31
|
+
Object.defineProperty(ComponentRendererMethodHelperBuilder.prototype, "methodName", {
|
|
32
|
+
get: function () {
|
|
33
|
+
return this.i;
|
|
34
|
+
},
|
|
35
|
+
enumerable: false,
|
|
36
|
+
configurable: true
|
|
37
|
+
});
|
|
38
|
+
Object.defineProperty(ComponentRendererMethodHelperBuilder.prototype, "targetRef", {
|
|
39
|
+
get: function () {
|
|
40
|
+
return this.j;
|
|
41
|
+
},
|
|
42
|
+
enumerable: false,
|
|
43
|
+
configurable: true
|
|
44
|
+
});
|
|
45
|
+
ComponentRendererMethodHelperBuilder.prototype.getArgumentCount = function () {
|
|
46
|
+
return this.g.count;
|
|
47
|
+
};
|
|
48
|
+
ComponentRendererMethodHelperBuilder.prototype.getArgument = function (a) {
|
|
49
|
+
return this.g._inner[a];
|
|
50
|
+
};
|
|
51
|
+
ComponentRendererMethodHelperBuilder.prototype.hasReturn = function () {
|
|
52
|
+
return this.c != null;
|
|
53
|
+
};
|
|
54
|
+
ComponentRendererMethodHelperBuilder.prototype.getReturn = function () {
|
|
55
|
+
return this.c;
|
|
56
|
+
};
|
|
29
57
|
ComponentRendererMethodHelperBuilder.prototype.argument = function () {
|
|
30
58
|
var a = new ComponentRendererMethodHelperArgumentBuilder(this);
|
|
31
|
-
this.
|
|
59
|
+
this.g.add(a);
|
|
32
60
|
return a;
|
|
33
61
|
};
|
|
34
62
|
ComponentRendererMethodHelperBuilder.prototype.$return = function () {
|
|
35
63
|
var a = new ComponentRendererMethodHelperReturnBuilder(this);
|
|
36
|
-
this.
|
|
64
|
+
this.c = a;
|
|
37
65
|
return a;
|
|
38
66
|
};
|
|
39
67
|
ComponentRendererMethodHelperBuilder.prototype.build = function () {
|
|
@@ -42,12 +70,12 @@ var ComponentRendererMethodHelperBuilder = /** @class */ /*@__PURE__*/ (function
|
|
|
42
70
|
var a = new JsonDictionaryObject();
|
|
43
71
|
var b = new JsonDictionaryArray();
|
|
44
72
|
a.item("args", b);
|
|
45
|
-
var c = new Array(this.
|
|
73
|
+
var c = new Array(this.g.count);
|
|
46
74
|
var d = 0;
|
|
47
75
|
try {
|
|
48
|
-
for (var _b = __values(fromEnum(this.
|
|
76
|
+
for (var _b = __values(fromEnum(this.g)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
49
77
|
var e = _c.value;
|
|
50
|
-
c[d] = e.
|
|
78
|
+
c[d] = e.af();
|
|
51
79
|
d++;
|
|
52
80
|
}
|
|
53
81
|
}
|
|
@@ -65,24 +93,24 @@ var ComponentRendererMethodHelperBuilder = /** @class */ /*@__PURE__*/ (function
|
|
|
65
93
|
}
|
|
66
94
|
}
|
|
67
95
|
b.items = c;
|
|
68
|
-
if (this.
|
|
96
|
+
if (this.j != null) {
|
|
69
97
|
a.item("targetRef", ((function () {
|
|
70
98
|
var $ret = new JsonDictionaryValue();
|
|
71
99
|
$ret.e = 2;
|
|
72
|
-
$ret.value = _this.
|
|
100
|
+
$ret.value = _this.j;
|
|
73
101
|
return $ret;
|
|
74
102
|
})()));
|
|
75
103
|
}
|
|
76
104
|
a.item("methodName", ((function () {
|
|
77
105
|
var $ret = new JsonDictionaryValue();
|
|
78
106
|
$ret.e = 2;
|
|
79
|
-
$ret.value = _this.
|
|
107
|
+
$ret.value = _this.i;
|
|
80
108
|
return $ret;
|
|
81
109
|
})()));
|
|
82
|
-
if (this.
|
|
110
|
+
if (this.c == null) {
|
|
83
111
|
this.$return().asVoid();
|
|
84
112
|
}
|
|
85
|
-
a.item("return", this.
|
|
113
|
+
a.item("return", this.c.x());
|
|
86
114
|
return a.b();
|
|
87
115
|
};
|
|
88
116
|
ComponentRendererMethodHelperBuilder.$t = markType(ComponentRendererMethodHelperBuilder, 'ComponentRendererMethodHelperBuilder');
|
|
@@ -96,29 +124,64 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
96
124
|
__extends(ComponentRendererMethodHelperArgumentBuilder, _super);
|
|
97
125
|
function ComponentRendererMethodHelperArgumentBuilder(a) {
|
|
98
126
|
var _this = _super.call(this) || this;
|
|
99
|
-
_this.v = null;
|
|
100
|
-
_this.z = 0;
|
|
101
127
|
_this.ac = null;
|
|
102
|
-
_this.
|
|
103
|
-
_this.
|
|
104
|
-
_this.
|
|
105
|
-
_this.
|
|
128
|
+
_this.ah = 0;
|
|
129
|
+
_this.al = null;
|
|
130
|
+
_this.ak = null;
|
|
131
|
+
_this.aj = null;
|
|
132
|
+
_this.ae = null;
|
|
133
|
+
_this.ac = a;
|
|
106
134
|
return _this;
|
|
107
135
|
}
|
|
108
136
|
ComponentRendererMethodHelperArgumentBuilder.prototype.argument = function () {
|
|
109
|
-
return this.
|
|
137
|
+
return this.ac.argument();
|
|
110
138
|
};
|
|
111
139
|
ComponentRendererMethodHelperArgumentBuilder.prototype.$return = function () {
|
|
112
|
-
return this.
|
|
140
|
+
return this.ac.$return();
|
|
113
141
|
};
|
|
114
142
|
ComponentRendererMethodHelperArgumentBuilder.prototype.build = function () {
|
|
115
|
-
return this.
|
|
143
|
+
return this.ac.build();
|
|
116
144
|
};
|
|
145
|
+
Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ai", {
|
|
146
|
+
get: function () {
|
|
147
|
+
return this.ah;
|
|
148
|
+
},
|
|
149
|
+
enumerable: false,
|
|
150
|
+
configurable: true
|
|
151
|
+
});
|
|
152
|
+
Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ao", {
|
|
153
|
+
get: function () {
|
|
154
|
+
return this.ak;
|
|
155
|
+
},
|
|
156
|
+
enumerable: false,
|
|
157
|
+
configurable: true
|
|
158
|
+
});
|
|
159
|
+
Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ap", {
|
|
160
|
+
get: function () {
|
|
161
|
+
return this.al;
|
|
162
|
+
},
|
|
163
|
+
enumerable: false,
|
|
164
|
+
configurable: true
|
|
165
|
+
});
|
|
166
|
+
Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "an", {
|
|
167
|
+
get: function () {
|
|
168
|
+
return this.aj;
|
|
169
|
+
},
|
|
170
|
+
enumerable: false,
|
|
171
|
+
configurable: true
|
|
172
|
+
});
|
|
173
|
+
Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ag", {
|
|
174
|
+
get: function () {
|
|
175
|
+
return this.ae;
|
|
176
|
+
},
|
|
177
|
+
enumerable: false,
|
|
178
|
+
configurable: true
|
|
179
|
+
});
|
|
117
180
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asInt = function (a) {
|
|
118
|
-
this.
|
|
119
|
-
this.
|
|
120
|
-
this.
|
|
121
|
-
this.
|
|
181
|
+
this.ah = 1;
|
|
182
|
+
this.al = null;
|
|
183
|
+
this.ak = "int";
|
|
184
|
+
this.ae = ((function () {
|
|
122
185
|
var $ret = new JsonDictionaryValue();
|
|
123
186
|
$ret.e = 0;
|
|
124
187
|
$ret.value = a;
|
|
@@ -127,11 +190,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
127
190
|
return this;
|
|
128
191
|
};
|
|
129
192
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asIntArray = function (a) {
|
|
130
|
-
this.
|
|
131
|
-
this.
|
|
132
|
-
this.
|
|
193
|
+
this.ah = 10;
|
|
194
|
+
this.al = null;
|
|
195
|
+
this.ak = "int";
|
|
133
196
|
if (a == null) {
|
|
134
|
-
this.
|
|
197
|
+
this.ae = ((function () {
|
|
135
198
|
var $ret = new JsonDictionaryValue();
|
|
136
199
|
$ret.e = 3;
|
|
137
200
|
$ret.value = null;
|
|
@@ -152,15 +215,15 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
152
215
|
for (var c = 0; c < a.length; c++) {
|
|
153
216
|
_loop_1(c);
|
|
154
217
|
}
|
|
155
|
-
this.
|
|
218
|
+
this.ae = b;
|
|
156
219
|
}
|
|
157
220
|
return this;
|
|
158
221
|
};
|
|
159
222
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asDouble = function (a) {
|
|
160
|
-
this.
|
|
161
|
-
this.
|
|
162
|
-
this.
|
|
163
|
-
this.
|
|
223
|
+
this.ah = 1;
|
|
224
|
+
this.al = null;
|
|
225
|
+
this.ak = "double";
|
|
226
|
+
this.ae = ((function () {
|
|
164
227
|
var $ret = new JsonDictionaryValue();
|
|
165
228
|
$ret.e = 0;
|
|
166
229
|
$ret.value = a;
|
|
@@ -168,12 +231,24 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
168
231
|
})());
|
|
169
232
|
return this;
|
|
170
233
|
};
|
|
171
|
-
ComponentRendererMethodHelperArgumentBuilder.prototype.
|
|
172
|
-
this.
|
|
173
|
-
this.
|
|
174
|
-
this.
|
|
234
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asDate = function (a) {
|
|
235
|
+
this.ah = 3;
|
|
236
|
+
this.al = null;
|
|
237
|
+
this.ak = null;
|
|
238
|
+
this.ae = ((function () {
|
|
239
|
+
var $ret = new JsonDictionaryValue();
|
|
240
|
+
$ret.e = 2;
|
|
241
|
+
$ret.value = dateToStringFormat(a, "o");
|
|
242
|
+
return $ret;
|
|
243
|
+
})());
|
|
244
|
+
return this;
|
|
245
|
+
};
|
|
246
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asDateArray = function (a) {
|
|
247
|
+
this.ah = 10;
|
|
248
|
+
this.al = null;
|
|
249
|
+
this.ak = "DateTime";
|
|
175
250
|
if (a == null) {
|
|
176
|
-
this.
|
|
251
|
+
this.ae = ((function () {
|
|
177
252
|
var $ret = new JsonDictionaryValue();
|
|
178
253
|
$ret.e = 3;
|
|
179
254
|
$ret.value = null;
|
|
@@ -184,6 +259,36 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
184
259
|
var b = new JsonDictionaryArray();
|
|
185
260
|
b.items = new Array(a.length);
|
|
186
261
|
var _loop_2 = function (c) {
|
|
262
|
+
b.items[c] = ((function () {
|
|
263
|
+
var $ret = new JsonDictionaryValue();
|
|
264
|
+
$ret.e = 2;
|
|
265
|
+
$ret.value = dateToStringFormat(a[c], "o");
|
|
266
|
+
return $ret;
|
|
267
|
+
})());
|
|
268
|
+
};
|
|
269
|
+
for (var c = 0; c < a.length; c++) {
|
|
270
|
+
_loop_2(c);
|
|
271
|
+
}
|
|
272
|
+
this.ae = b;
|
|
273
|
+
}
|
|
274
|
+
return this;
|
|
275
|
+
};
|
|
276
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asDoubleArray = function (a) {
|
|
277
|
+
this.ah = 10;
|
|
278
|
+
this.al = null;
|
|
279
|
+
this.ak = "double";
|
|
280
|
+
if (a == null) {
|
|
281
|
+
this.ae = ((function () {
|
|
282
|
+
var $ret = new JsonDictionaryValue();
|
|
283
|
+
$ret.e = 3;
|
|
284
|
+
$ret.value = null;
|
|
285
|
+
return $ret;
|
|
286
|
+
})());
|
|
287
|
+
}
|
|
288
|
+
else {
|
|
289
|
+
var b = new JsonDictionaryArray();
|
|
290
|
+
b.items = new Array(a.length);
|
|
291
|
+
var _loop_3 = function (c) {
|
|
187
292
|
b.items[c] = ((function () {
|
|
188
293
|
var $ret = new JsonDictionaryValue();
|
|
189
294
|
$ret.e = 0;
|
|
@@ -192,17 +297,17 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
192
297
|
})());
|
|
193
298
|
};
|
|
194
299
|
for (var c = 0; c < a.length; c++) {
|
|
195
|
-
|
|
300
|
+
_loop_3(c);
|
|
196
301
|
}
|
|
197
|
-
this.
|
|
302
|
+
this.ae = b;
|
|
198
303
|
}
|
|
199
304
|
return this;
|
|
200
305
|
};
|
|
201
306
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asShort = function (a) {
|
|
202
|
-
this.
|
|
203
|
-
this.
|
|
204
|
-
this.
|
|
205
|
-
this.
|
|
307
|
+
this.ah = 1;
|
|
308
|
+
this.al = null;
|
|
309
|
+
this.ak = "short";
|
|
310
|
+
this.ae = ((function () {
|
|
206
311
|
var $ret = new JsonDictionaryValue();
|
|
207
312
|
$ret.e = 0;
|
|
208
313
|
$ret.value = a;
|
|
@@ -211,11 +316,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
211
316
|
return this;
|
|
212
317
|
};
|
|
213
318
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asShortArray = function (a) {
|
|
214
|
-
this.
|
|
215
|
-
this.
|
|
216
|
-
this.
|
|
319
|
+
this.ah = 10;
|
|
320
|
+
this.al = null;
|
|
321
|
+
this.ak = "short";
|
|
217
322
|
if (a == null) {
|
|
218
|
-
this.
|
|
323
|
+
this.ae = ((function () {
|
|
219
324
|
var $ret = new JsonDictionaryValue();
|
|
220
325
|
$ret.e = 3;
|
|
221
326
|
$ret.value = null;
|
|
@@ -225,7 +330,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
225
330
|
else {
|
|
226
331
|
var b = new JsonDictionaryArray();
|
|
227
332
|
b.items = new Array(a.length);
|
|
228
|
-
var
|
|
333
|
+
var _loop_4 = function (c) {
|
|
229
334
|
b.items[c] = ((function () {
|
|
230
335
|
var $ret = new JsonDictionaryValue();
|
|
231
336
|
$ret.e = 0;
|
|
@@ -234,17 +339,17 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
234
339
|
})());
|
|
235
340
|
};
|
|
236
341
|
for (var c = 0; c < a.length; c++) {
|
|
237
|
-
|
|
342
|
+
_loop_4(c);
|
|
238
343
|
}
|
|
239
|
-
this.
|
|
344
|
+
this.ae = b;
|
|
240
345
|
}
|
|
241
346
|
return this;
|
|
242
347
|
};
|
|
243
348
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asLong = function (a) {
|
|
244
|
-
this.
|
|
245
|
-
this.
|
|
246
|
-
this.
|
|
247
|
-
this.
|
|
349
|
+
this.ah = 1;
|
|
350
|
+
this.al = null;
|
|
351
|
+
this.ak = "long";
|
|
352
|
+
this.ae = ((function () {
|
|
248
353
|
var $ret = new JsonDictionaryValue();
|
|
249
354
|
$ret.e = 0;
|
|
250
355
|
$ret.value = a;
|
|
@@ -253,11 +358,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
253
358
|
return this;
|
|
254
359
|
};
|
|
255
360
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asLongArray = function (a) {
|
|
256
|
-
this.
|
|
257
|
-
this.
|
|
258
|
-
this.
|
|
361
|
+
this.ah = 10;
|
|
362
|
+
this.al = null;
|
|
363
|
+
this.ak = "long";
|
|
259
364
|
if (a == null) {
|
|
260
|
-
this.
|
|
365
|
+
this.ae = ((function () {
|
|
261
366
|
var $ret = new JsonDictionaryValue();
|
|
262
367
|
$ret.e = 3;
|
|
263
368
|
$ret.value = null;
|
|
@@ -267,7 +372,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
267
372
|
else {
|
|
268
373
|
var b = new JsonDictionaryArray();
|
|
269
374
|
b.items = new Array(a.length);
|
|
270
|
-
var
|
|
375
|
+
var _loop_5 = function (c) {
|
|
271
376
|
b.items[c] = ((function () {
|
|
272
377
|
var $ret = new JsonDictionaryValue();
|
|
273
378
|
$ret.e = 0;
|
|
@@ -276,17 +381,17 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
276
381
|
})());
|
|
277
382
|
};
|
|
278
383
|
for (var c = 0; c < a.length; c++) {
|
|
279
|
-
|
|
384
|
+
_loop_5(c);
|
|
280
385
|
}
|
|
281
|
-
this.
|
|
386
|
+
this.ae = b;
|
|
282
387
|
}
|
|
283
388
|
return this;
|
|
284
389
|
};
|
|
285
390
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asFloat = function (a) {
|
|
286
|
-
this.
|
|
287
|
-
this.
|
|
288
|
-
this.
|
|
289
|
-
this.
|
|
391
|
+
this.ah = 1;
|
|
392
|
+
this.al = null;
|
|
393
|
+
this.ak = "float";
|
|
394
|
+
this.ae = ((function () {
|
|
290
395
|
var $ret = new JsonDictionaryValue();
|
|
291
396
|
$ret.e = 0;
|
|
292
397
|
$ret.value = a;
|
|
@@ -295,11 +400,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
295
400
|
return this;
|
|
296
401
|
};
|
|
297
402
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asFloatArray = function (a) {
|
|
298
|
-
this.
|
|
299
|
-
this.
|
|
300
|
-
this.
|
|
403
|
+
this.ah = 10;
|
|
404
|
+
this.al = null;
|
|
405
|
+
this.ak = "float";
|
|
301
406
|
if (a == null) {
|
|
302
|
-
this.
|
|
407
|
+
this.ae = ((function () {
|
|
303
408
|
var $ret = new JsonDictionaryValue();
|
|
304
409
|
$ret.e = 3;
|
|
305
410
|
$ret.value = null;
|
|
@@ -309,7 +414,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
309
414
|
else {
|
|
310
415
|
var b = new JsonDictionaryArray();
|
|
311
416
|
b.items = new Array(a.length);
|
|
312
|
-
var
|
|
417
|
+
var _loop_6 = function (c) {
|
|
313
418
|
b.items[c] = ((function () {
|
|
314
419
|
var $ret = new JsonDictionaryValue();
|
|
315
420
|
$ret.e = 0;
|
|
@@ -318,18 +423,40 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
318
423
|
})());
|
|
319
424
|
};
|
|
320
425
|
for (var c = 0; c < a.length; c++) {
|
|
321
|
-
|
|
426
|
+
_loop_6(c);
|
|
322
427
|
}
|
|
323
|
-
this.
|
|
428
|
+
this.ae = b;
|
|
429
|
+
}
|
|
430
|
+
return this;
|
|
431
|
+
};
|
|
432
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asEnum1 = function (a, b) {
|
|
433
|
+
this.ah = 8;
|
|
434
|
+
this.al = "string";
|
|
435
|
+
this.ak = a.typeName;
|
|
436
|
+
if (b == null) {
|
|
437
|
+
this.ae = ((function () {
|
|
438
|
+
var $ret = new JsonDictionaryValue();
|
|
439
|
+
$ret.e = 3;
|
|
440
|
+
$ret.value = null;
|
|
441
|
+
return $ret;
|
|
442
|
+
})());
|
|
443
|
+
}
|
|
444
|
+
else {
|
|
445
|
+
this.ae = ((function () {
|
|
446
|
+
var $ret = new JsonDictionaryValue();
|
|
447
|
+
$ret.e = 2;
|
|
448
|
+
$ret.value = b.toString();
|
|
449
|
+
return $ret;
|
|
450
|
+
})());
|
|
324
451
|
}
|
|
325
452
|
return this;
|
|
326
453
|
};
|
|
327
454
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asEnum = function (a, b) {
|
|
328
|
-
this.
|
|
329
|
-
this.
|
|
330
|
-
this.
|
|
455
|
+
this.ah = 8;
|
|
456
|
+
this.al = "string";
|
|
457
|
+
this.ak = a;
|
|
331
458
|
if (b == null) {
|
|
332
|
-
this.
|
|
459
|
+
this.ae = ((function () {
|
|
333
460
|
var $ret = new JsonDictionaryValue();
|
|
334
461
|
$ret.e = 3;
|
|
335
462
|
$ret.value = null;
|
|
@@ -337,7 +464,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
337
464
|
})());
|
|
338
465
|
}
|
|
339
466
|
else {
|
|
340
|
-
this.
|
|
467
|
+
this.ae = ((function () {
|
|
341
468
|
var $ret = new JsonDictionaryValue();
|
|
342
469
|
$ret.e = 2;
|
|
343
470
|
$ret.value = b.toString();
|
|
@@ -347,11 +474,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
347
474
|
return this;
|
|
348
475
|
};
|
|
349
476
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asString = function (a) {
|
|
350
|
-
this.
|
|
351
|
-
this.
|
|
352
|
-
this.
|
|
477
|
+
this.ah = 2;
|
|
478
|
+
this.al = null;
|
|
479
|
+
this.ak = "string";
|
|
353
480
|
if (a == null) {
|
|
354
|
-
this.
|
|
481
|
+
this.ae = ((function () {
|
|
355
482
|
var $ret = new JsonDictionaryValue();
|
|
356
483
|
$ret.e = 3;
|
|
357
484
|
$ret.value = null;
|
|
@@ -359,7 +486,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
359
486
|
})());
|
|
360
487
|
}
|
|
361
488
|
else {
|
|
362
|
-
this.
|
|
489
|
+
this.ae = ((function () {
|
|
363
490
|
var $ret = new JsonDictionaryValue();
|
|
364
491
|
$ret.e = 2;
|
|
365
492
|
$ret.value = a;
|
|
@@ -369,11 +496,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
369
496
|
return this;
|
|
370
497
|
};
|
|
371
498
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asStringArray = function (a) {
|
|
372
|
-
this.
|
|
373
|
-
this.
|
|
374
|
-
this.
|
|
499
|
+
this.ah = 10;
|
|
500
|
+
this.al = null;
|
|
501
|
+
this.ak = "string";
|
|
375
502
|
if (a == null) {
|
|
376
|
-
this.
|
|
503
|
+
this.ae = ((function () {
|
|
377
504
|
var $ret = new JsonDictionaryValue();
|
|
378
505
|
$ret.e = 3;
|
|
379
506
|
$ret.value = null;
|
|
@@ -383,7 +510,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
383
510
|
else {
|
|
384
511
|
var b = new JsonDictionaryArray();
|
|
385
512
|
b.items = new Array(a.length);
|
|
386
|
-
var
|
|
513
|
+
var _loop_7 = function (c) {
|
|
387
514
|
b.items[c] = ((function () {
|
|
388
515
|
var $ret = new JsonDictionaryValue();
|
|
389
516
|
$ret.e = 2;
|
|
@@ -392,18 +519,57 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
392
519
|
})());
|
|
393
520
|
};
|
|
394
521
|
for (var c = 0; c < a.length; c++) {
|
|
395
|
-
|
|
522
|
+
_loop_7(c);
|
|
523
|
+
}
|
|
524
|
+
this.ae = b;
|
|
525
|
+
}
|
|
526
|
+
return this;
|
|
527
|
+
};
|
|
528
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asEmbeddedRefArray = function (a) {
|
|
529
|
+
this.ah = 10;
|
|
530
|
+
this.al = null;
|
|
531
|
+
this.ak = null;
|
|
532
|
+
if (a == null) {
|
|
533
|
+
this.ae = ((function () {
|
|
534
|
+
var $ret = new JsonDictionaryValue();
|
|
535
|
+
$ret.e = 3;
|
|
536
|
+
$ret.value = null;
|
|
537
|
+
return $ret;
|
|
538
|
+
})());
|
|
539
|
+
}
|
|
540
|
+
else {
|
|
541
|
+
var b = new JsonDictionaryArray();
|
|
542
|
+
b.items = new Array(a.length);
|
|
543
|
+
var _loop_8 = function (c) {
|
|
544
|
+
var d = a[c];
|
|
545
|
+
var e = new JsonDictionaryObject();
|
|
546
|
+
e.item("refType", ((function () {
|
|
547
|
+
var $ret = new JsonDictionaryValue();
|
|
548
|
+
$ret.e = 2;
|
|
549
|
+
$ret.value = d.refType;
|
|
550
|
+
return $ret;
|
|
551
|
+
})()));
|
|
552
|
+
e.item("id", ((function () {
|
|
553
|
+
var $ret = new JsonDictionaryValue();
|
|
554
|
+
$ret.e = 2;
|
|
555
|
+
$ret.value = d.value;
|
|
556
|
+
return $ret;
|
|
557
|
+
})()));
|
|
558
|
+
b.items[c] = e;
|
|
559
|
+
};
|
|
560
|
+
for (var c = 0; c < a.length; c++) {
|
|
561
|
+
_loop_8(c);
|
|
396
562
|
}
|
|
397
|
-
this.
|
|
563
|
+
this.ae = b;
|
|
398
564
|
}
|
|
399
565
|
return this;
|
|
400
566
|
};
|
|
401
567
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asPublicTypeRef = function (a, b) {
|
|
402
|
-
this.
|
|
403
|
-
this.
|
|
404
|
-
this.
|
|
568
|
+
this.ah = 8;
|
|
569
|
+
this.al = a;
|
|
570
|
+
this.ak = a;
|
|
405
571
|
if (b == null) {
|
|
406
|
-
this.
|
|
572
|
+
this.ae = ((function () {
|
|
407
573
|
var $ret = new JsonDictionaryValue();
|
|
408
574
|
$ret.e = 3;
|
|
409
575
|
$ret.value = null;
|
|
@@ -424,14 +590,44 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
424
590
|
$ret.value = b.name;
|
|
425
591
|
return $ret;
|
|
426
592
|
})()));
|
|
427
|
-
this.
|
|
593
|
+
this.ae = c;
|
|
594
|
+
}
|
|
595
|
+
return this;
|
|
596
|
+
};
|
|
597
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asEmbeddedRef = function (a) {
|
|
598
|
+
this.ah = 8;
|
|
599
|
+
this.al = null;
|
|
600
|
+
this.ak = null;
|
|
601
|
+
if (a == null) {
|
|
602
|
+
this.ae = ((function () {
|
|
603
|
+
var $ret = new JsonDictionaryValue();
|
|
604
|
+
$ret.e = 3;
|
|
605
|
+
$ret.value = null;
|
|
606
|
+
return $ret;
|
|
607
|
+
})());
|
|
608
|
+
}
|
|
609
|
+
else {
|
|
610
|
+
var b = new JsonDictionaryObject();
|
|
611
|
+
b.item("refType", ((function () {
|
|
612
|
+
var $ret = new JsonDictionaryValue();
|
|
613
|
+
$ret.e = 2;
|
|
614
|
+
$ret.value = a.refType;
|
|
615
|
+
return $ret;
|
|
616
|
+
})()));
|
|
617
|
+
b.item("id", ((function () {
|
|
618
|
+
var $ret = new JsonDictionaryValue();
|
|
619
|
+
$ret.e = 2;
|
|
620
|
+
$ret.value = a.value;
|
|
621
|
+
return $ret;
|
|
622
|
+
})()));
|
|
623
|
+
this.ae = b;
|
|
428
624
|
}
|
|
429
625
|
return this;
|
|
430
626
|
};
|
|
431
627
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asPoint = function (a) {
|
|
432
|
-
this.
|
|
433
|
-
this.
|
|
434
|
-
this.
|
|
628
|
+
this.ah = 11;
|
|
629
|
+
this.al = null;
|
|
630
|
+
this.ak = null;
|
|
435
631
|
var b = new JsonDictionaryObject();
|
|
436
632
|
b.item("x", ((function () {
|
|
437
633
|
var $ret = new JsonDictionaryValue();
|
|
@@ -445,13 +641,13 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
445
641
|
$ret.value = a.y;
|
|
446
642
|
return $ret;
|
|
447
643
|
})()));
|
|
448
|
-
this.
|
|
644
|
+
this.ae = b;
|
|
449
645
|
return this;
|
|
450
646
|
};
|
|
451
647
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asSize = function (a) {
|
|
452
|
-
this.
|
|
453
|
-
this.
|
|
454
|
-
this.
|
|
648
|
+
this.ah = 12;
|
|
649
|
+
this.al = null;
|
|
650
|
+
this.ak = null;
|
|
455
651
|
var b = new JsonDictionaryObject();
|
|
456
652
|
b.item("width", ((function () {
|
|
457
653
|
var $ret = new JsonDictionaryValue();
|
|
@@ -465,13 +661,13 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
465
661
|
$ret.value = a.height;
|
|
466
662
|
return $ret;
|
|
467
663
|
})()));
|
|
468
|
-
this.
|
|
664
|
+
this.ae = b;
|
|
469
665
|
return this;
|
|
470
666
|
};
|
|
471
667
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asRect = function (a) {
|
|
472
|
-
this.
|
|
473
|
-
this.
|
|
474
|
-
this.
|
|
668
|
+
this.ah = 14;
|
|
669
|
+
this.al = null;
|
|
670
|
+
this.ak = null;
|
|
475
671
|
var b = new JsonDictionaryObject();
|
|
476
672
|
b.item("left", ((function () {
|
|
477
673
|
var $ret = new JsonDictionaryValue();
|
|
@@ -497,13 +693,13 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
497
693
|
$ret.value = a.height;
|
|
498
694
|
return $ret;
|
|
499
695
|
})()));
|
|
500
|
-
this.
|
|
696
|
+
this.ae = b;
|
|
501
697
|
return this;
|
|
502
698
|
};
|
|
503
699
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asMethodRef = function (a) {
|
|
504
|
-
this.
|
|
505
|
-
this.
|
|
506
|
-
this.
|
|
700
|
+
this.ah = 18;
|
|
701
|
+
this.al = null;
|
|
702
|
+
this.ak = null;
|
|
507
703
|
var b = new JsonDictionaryObject();
|
|
508
704
|
b.item("refType", ((function () {
|
|
509
705
|
var $ret = new JsonDictionaryValue();
|
|
@@ -517,14 +713,14 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
517
713
|
$ret.value = a;
|
|
518
714
|
return $ret;
|
|
519
715
|
})()));
|
|
520
|
-
this.
|
|
716
|
+
this.ae = b;
|
|
521
717
|
return this;
|
|
522
718
|
};
|
|
523
719
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asBool = function (a) {
|
|
524
|
-
this.
|
|
525
|
-
this.
|
|
526
|
-
this.
|
|
527
|
-
this.
|
|
720
|
+
this.ah = 2;
|
|
721
|
+
this.al = null;
|
|
722
|
+
this.ak = "boolean";
|
|
723
|
+
this.ae = ((function () {
|
|
528
724
|
var $ret = new JsonDictionaryValue();
|
|
529
725
|
$ret.e = 1;
|
|
530
726
|
$ret.value = a;
|
|
@@ -532,12 +728,115 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
532
728
|
})());
|
|
533
729
|
return this;
|
|
534
730
|
};
|
|
731
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asPrimitive = function (a) {
|
|
732
|
+
if (a == null) {
|
|
733
|
+
this.ah = 17;
|
|
734
|
+
this.al = null;
|
|
735
|
+
this.ak = null;
|
|
736
|
+
this.ae = ((function () {
|
|
737
|
+
var $ret = new JsonDictionaryValue();
|
|
738
|
+
$ret.e = 3;
|
|
739
|
+
$ret.value = null;
|
|
740
|
+
return $ret;
|
|
741
|
+
})());
|
|
742
|
+
}
|
|
743
|
+
if (typeof a === 'number') {
|
|
744
|
+
return this.asDouble(a);
|
|
745
|
+
}
|
|
746
|
+
if (typeof a === 'number') {
|
|
747
|
+
return this.asInt(typeGetValue(a));
|
|
748
|
+
}
|
|
749
|
+
if (typeof a === 'number') {
|
|
750
|
+
return this.asLong(typeGetValue(a));
|
|
751
|
+
}
|
|
752
|
+
if (typeof a === 'number') {
|
|
753
|
+
return this.asFloat(a);
|
|
754
|
+
}
|
|
755
|
+
if (typeof a === 'number') {
|
|
756
|
+
return this.asShort(typeGetValue(a));
|
|
757
|
+
}
|
|
758
|
+
if (typeof a === 'number') {
|
|
759
|
+
return this.asDouble(a);
|
|
760
|
+
}
|
|
761
|
+
if (typeCast(Array_$type, a) !== null) {
|
|
762
|
+
if (a.length > 0) {
|
|
763
|
+
var b = a[0];
|
|
764
|
+
if (typeof b === 'number') {
|
|
765
|
+
return this.asDoubleArray(a);
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
if (typeof a === 'string') {
|
|
770
|
+
return this.asString(a);
|
|
771
|
+
}
|
|
772
|
+
if (typeCast(Array_$type, a) !== null) {
|
|
773
|
+
if (a.length > 0) {
|
|
774
|
+
var c = a[0];
|
|
775
|
+
if (typeof c === 'string') {
|
|
776
|
+
return this.asStringArray(a);
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
if (typeCast(Boolean_$type, a) !== null) {
|
|
781
|
+
return this.asBool(a);
|
|
782
|
+
}
|
|
783
|
+
if (typeCast(EmbeddedRefDescription.$, a) !== null) {
|
|
784
|
+
return this.asEmbeddedRef(a);
|
|
785
|
+
}
|
|
786
|
+
return this.asString(a);
|
|
787
|
+
};
|
|
788
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.asPrimitiveArray = function (a) {
|
|
789
|
+
if (a == null) {
|
|
790
|
+
this.ah = 17;
|
|
791
|
+
this.al = null;
|
|
792
|
+
this.ak = null;
|
|
793
|
+
this.ae = ((function () {
|
|
794
|
+
var $ret = new JsonDictionaryValue();
|
|
795
|
+
$ret.e = 3;
|
|
796
|
+
$ret.value = null;
|
|
797
|
+
return $ret;
|
|
798
|
+
})());
|
|
799
|
+
}
|
|
800
|
+
if (typeCast(Array_$type, a) !== null) {
|
|
801
|
+
if (a.length > 0) {
|
|
802
|
+
var b = a[0];
|
|
803
|
+
if (typeof b === 'number') {
|
|
804
|
+
return this.asDoubleArray(a);
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
if (typeCast(Array_$type, a) !== null) {
|
|
809
|
+
if (a.length > 0) {
|
|
810
|
+
var c = a[0];
|
|
811
|
+
if (typeof c === 'string') {
|
|
812
|
+
return this.asStringArray(a);
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
if (typeCast(Array_$type, a) !== null) {
|
|
817
|
+
if (a.length > 0) {
|
|
818
|
+
var d = a[0];
|
|
819
|
+
if (typeCast(Boolean_$type, d) !== null) {
|
|
820
|
+
return this.asBoolArray(a);
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
if (typeCast(Array_$type, a) !== null) {
|
|
825
|
+
if (a.length > 0) {
|
|
826
|
+
var e = a[0];
|
|
827
|
+
if (typeCast(EmbeddedRefDescription.$, e) !== null) {
|
|
828
|
+
return this.asEmbeddedRefArray(a);
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
return this.asStringArray(a);
|
|
833
|
+
};
|
|
535
834
|
ComponentRendererMethodHelperArgumentBuilder.prototype.asBoolArray = function (a) {
|
|
536
|
-
this.
|
|
537
|
-
this.
|
|
538
|
-
this.
|
|
835
|
+
this.ah = 10;
|
|
836
|
+
this.al = null;
|
|
837
|
+
this.ak = "boolean";
|
|
539
838
|
if (a == null) {
|
|
540
|
-
this.
|
|
839
|
+
this.ae = ((function () {
|
|
541
840
|
var $ret = new JsonDictionaryValue();
|
|
542
841
|
$ret.e = 3;
|
|
543
842
|
$ret.value = null;
|
|
@@ -547,7 +846,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
547
846
|
else {
|
|
548
847
|
var b = new JsonDictionaryArray();
|
|
549
848
|
b.items = new Array(a.length);
|
|
550
|
-
var
|
|
849
|
+
var _loop_9 = function (c) {
|
|
551
850
|
b.items[c] = ((function () {
|
|
552
851
|
var $ret = new JsonDictionaryValue();
|
|
553
852
|
$ret.e = 1;
|
|
@@ -556,47 +855,47 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
|
|
|
556
855
|
})());
|
|
557
856
|
};
|
|
558
857
|
for (var c = 0; c < a.length; c++) {
|
|
559
|
-
|
|
858
|
+
_loop_9(c);
|
|
560
859
|
}
|
|
561
|
-
this.
|
|
860
|
+
this.ae = b;
|
|
562
861
|
}
|
|
563
862
|
return this;
|
|
564
863
|
};
|
|
565
|
-
ComponentRendererMethodHelperArgumentBuilder.prototype.
|
|
864
|
+
ComponentRendererMethodHelperArgumentBuilder.prototype.af = function () {
|
|
566
865
|
var _this = this;
|
|
567
866
|
var a = new JsonDictionaryObject();
|
|
568
867
|
a.item("knownType", ((function () {
|
|
569
868
|
var $ret = new JsonDictionaryValue();
|
|
570
869
|
$ret.e = 2;
|
|
571
|
-
$ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, _this.
|
|
870
|
+
$ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, _this.ah);
|
|
572
871
|
return $ret;
|
|
573
872
|
})()));
|
|
574
|
-
if (this.
|
|
873
|
+
if (this.al != null) {
|
|
575
874
|
a.item("specificType", ((function () {
|
|
576
875
|
var $ret = new JsonDictionaryValue();
|
|
577
876
|
$ret.e = 2;
|
|
578
|
-
$ret.value = _this.
|
|
877
|
+
$ret.value = _this.al;
|
|
579
878
|
return $ret;
|
|
580
879
|
})()));
|
|
581
880
|
}
|
|
582
|
-
if (this.
|
|
881
|
+
if (this.ak != null) {
|
|
583
882
|
a.item("specificExternalType", ((function () {
|
|
584
883
|
var $ret = new JsonDictionaryValue();
|
|
585
884
|
$ret.e = 2;
|
|
586
|
-
$ret.value = _this.
|
|
885
|
+
$ret.value = _this.ak;
|
|
587
886
|
return $ret;
|
|
588
887
|
})()));
|
|
589
888
|
}
|
|
590
|
-
if (this.
|
|
889
|
+
if (this.aj != null) {
|
|
591
890
|
a.item("collectionElementType", ((function () {
|
|
592
891
|
var $ret = new JsonDictionaryValue();
|
|
593
892
|
$ret.e = 2;
|
|
594
|
-
$ret.value = _this.
|
|
893
|
+
$ret.value = _this.aj;
|
|
595
894
|
return $ret;
|
|
596
895
|
})()));
|
|
597
896
|
}
|
|
598
|
-
if (this.
|
|
599
|
-
a.item("value", this.
|
|
897
|
+
if (this.ae != null) {
|
|
898
|
+
a.item("value", this.ae);
|
|
600
899
|
}
|
|
601
900
|
else {
|
|
602
901
|
a.item("value", ((function () {
|
|
@@ -620,9 +919,9 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
|
|
|
620
919
|
var _this = _super.call(this) || this;
|
|
621
920
|
_this.b = null;
|
|
622
921
|
_this.y = 0;
|
|
922
|
+
_this.ac = null;
|
|
623
923
|
_this.ab = null;
|
|
624
924
|
_this.aa = null;
|
|
625
|
-
_this.z = null;
|
|
626
925
|
_this.b = a;
|
|
627
926
|
return _this;
|
|
628
927
|
}
|
|
@@ -635,88 +934,116 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
|
|
|
635
934
|
ComponentRendererMethodHelperReturnBuilder.prototype.build = function () {
|
|
636
935
|
return this.b.build();
|
|
637
936
|
};
|
|
937
|
+
Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "z", {
|
|
938
|
+
get: function () {
|
|
939
|
+
return this.y;
|
|
940
|
+
},
|
|
941
|
+
enumerable: false,
|
|
942
|
+
configurable: true
|
|
943
|
+
});
|
|
944
|
+
Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "af", {
|
|
945
|
+
get: function () {
|
|
946
|
+
return this.ab;
|
|
947
|
+
},
|
|
948
|
+
enumerable: false,
|
|
949
|
+
configurable: true
|
|
950
|
+
});
|
|
951
|
+
Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "ag", {
|
|
952
|
+
get: function () {
|
|
953
|
+
return this.ac;
|
|
954
|
+
},
|
|
955
|
+
enumerable: false,
|
|
956
|
+
configurable: true
|
|
957
|
+
});
|
|
958
|
+
Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "ae", {
|
|
959
|
+
get: function () {
|
|
960
|
+
return this.aa;
|
|
961
|
+
},
|
|
962
|
+
enumerable: false,
|
|
963
|
+
configurable: true
|
|
964
|
+
});
|
|
638
965
|
ComponentRendererMethodHelperReturnBuilder.prototype.asInt = function () {
|
|
639
966
|
this.y = 1;
|
|
640
|
-
this.
|
|
641
|
-
this.
|
|
967
|
+
this.ac = null;
|
|
968
|
+
this.ab = "int";
|
|
642
969
|
return this;
|
|
643
970
|
};
|
|
644
971
|
ComponentRendererMethodHelperReturnBuilder.prototype.asIntArray = function () {
|
|
645
972
|
this.y = 10;
|
|
646
|
-
this.
|
|
647
|
-
this.
|
|
973
|
+
this.ac = null;
|
|
974
|
+
this.ab = "int";
|
|
648
975
|
return this;
|
|
649
976
|
};
|
|
650
977
|
ComponentRendererMethodHelperReturnBuilder.prototype.asDouble = function () {
|
|
651
978
|
this.y = 1;
|
|
652
|
-
this.
|
|
653
|
-
this.
|
|
979
|
+
this.ac = null;
|
|
980
|
+
this.ab = "double";
|
|
654
981
|
return this;
|
|
655
982
|
};
|
|
656
983
|
ComponentRendererMethodHelperReturnBuilder.prototype.asDoubleArray = function () {
|
|
657
984
|
this.y = 10;
|
|
658
|
-
this.
|
|
659
|
-
this.
|
|
985
|
+
this.ac = null;
|
|
986
|
+
this.ab = "double";
|
|
660
987
|
return this;
|
|
661
988
|
};
|
|
662
989
|
ComponentRendererMethodHelperReturnBuilder.prototype.asShort = function () {
|
|
663
990
|
this.y = 1;
|
|
664
|
-
this.
|
|
665
|
-
this.
|
|
991
|
+
this.ac = null;
|
|
992
|
+
this.ab = "short";
|
|
666
993
|
return this;
|
|
667
994
|
};
|
|
668
995
|
ComponentRendererMethodHelperReturnBuilder.prototype.asShortArray = function () {
|
|
669
996
|
this.y = 10;
|
|
670
|
-
this.
|
|
671
|
-
this.
|
|
997
|
+
this.ac = null;
|
|
998
|
+
this.ab = "short";
|
|
672
999
|
return this;
|
|
673
1000
|
};
|
|
674
1001
|
ComponentRendererMethodHelperReturnBuilder.prototype.asLong = function () {
|
|
675
1002
|
this.y = 1;
|
|
676
|
-
this.
|
|
677
|
-
this.
|
|
1003
|
+
this.ac = null;
|
|
1004
|
+
this.ab = "long";
|
|
678
1005
|
return this;
|
|
679
1006
|
};
|
|
680
1007
|
ComponentRendererMethodHelperReturnBuilder.prototype.asLongArray = function () {
|
|
681
1008
|
this.y = 10;
|
|
682
|
-
this.
|
|
683
|
-
this.
|
|
1009
|
+
this.ac = null;
|
|
1010
|
+
this.ab = "long";
|
|
684
1011
|
return this;
|
|
685
1012
|
};
|
|
686
1013
|
ComponentRendererMethodHelperReturnBuilder.prototype.asFlout = function () {
|
|
687
1014
|
this.y = 1;
|
|
688
|
-
this.
|
|
689
|
-
this.
|
|
1015
|
+
this.ac = null;
|
|
1016
|
+
this.ab = "float";
|
|
690
1017
|
return this;
|
|
691
1018
|
};
|
|
692
1019
|
ComponentRendererMethodHelperReturnBuilder.prototype.asFloatArray = function () {
|
|
693
1020
|
this.y = 10;
|
|
694
|
-
this.
|
|
695
|
-
this.
|
|
1021
|
+
this.ac = null;
|
|
1022
|
+
this.ab = "float";
|
|
696
1023
|
return this;
|
|
697
1024
|
};
|
|
698
1025
|
ComponentRendererMethodHelperReturnBuilder.prototype.asEnum = function (a) {
|
|
699
1026
|
this.y = 8;
|
|
700
|
-
this.
|
|
701
|
-
this.
|
|
1027
|
+
this.ac = a.typeName;
|
|
1028
|
+
this.ab = "string";
|
|
702
1029
|
return this;
|
|
703
1030
|
};
|
|
704
1031
|
ComponentRendererMethodHelperReturnBuilder.prototype.asString = function () {
|
|
705
1032
|
this.y = 2;
|
|
706
|
-
this.
|
|
707
|
-
this.
|
|
1033
|
+
this.ac = null;
|
|
1034
|
+
this.ab = "string";
|
|
708
1035
|
return this;
|
|
709
1036
|
};
|
|
710
1037
|
ComponentRendererMethodHelperReturnBuilder.prototype.asStringArray = function () {
|
|
711
1038
|
this.y = 10;
|
|
712
|
-
this.
|
|
713
|
-
this.
|
|
1039
|
+
this.ac = null;
|
|
1040
|
+
this.ab = "string";
|
|
714
1041
|
return this;
|
|
715
1042
|
};
|
|
716
1043
|
ComponentRendererMethodHelperReturnBuilder.prototype.asPublicTypeRef = function (a) {
|
|
717
1044
|
this.y = 8;
|
|
1045
|
+
this.ac = a;
|
|
718
1046
|
this.ab = a;
|
|
719
|
-
this.aa = a;
|
|
720
1047
|
var b = new JsonDictionaryObject();
|
|
721
1048
|
b.item("refType", ((function () {
|
|
722
1049
|
var $ret = new JsonDictionaryValue();
|
|
@@ -734,32 +1061,32 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
|
|
|
734
1061
|
};
|
|
735
1062
|
ComponentRendererMethodHelperReturnBuilder.prototype.asPoint = function () {
|
|
736
1063
|
this.y = 11;
|
|
1064
|
+
this.ac = null;
|
|
737
1065
|
this.ab = null;
|
|
738
|
-
this.aa = null;
|
|
739
1066
|
return this;
|
|
740
1067
|
};
|
|
741
1068
|
ComponentRendererMethodHelperReturnBuilder.prototype.asSize = function () {
|
|
742
1069
|
this.y = 12;
|
|
1070
|
+
this.ac = null;
|
|
743
1071
|
this.ab = null;
|
|
744
|
-
this.aa = null;
|
|
745
1072
|
return this;
|
|
746
1073
|
};
|
|
747
1074
|
ComponentRendererMethodHelperReturnBuilder.prototype.asRect = function () {
|
|
748
1075
|
this.y = 14;
|
|
1076
|
+
this.ac = null;
|
|
749
1077
|
this.ab = null;
|
|
750
|
-
this.aa = null;
|
|
751
1078
|
return this;
|
|
752
1079
|
};
|
|
753
1080
|
ComponentRendererMethodHelperReturnBuilder.prototype.asMethodRef = function () {
|
|
754
1081
|
this.y = 18;
|
|
1082
|
+
this.ac = null;
|
|
755
1083
|
this.ab = null;
|
|
756
|
-
this.aa = null;
|
|
757
1084
|
return this;
|
|
758
1085
|
};
|
|
759
1086
|
ComponentRendererMethodHelperReturnBuilder.prototype.asBool = function () {
|
|
760
1087
|
this.y = 7;
|
|
761
|
-
this.
|
|
762
|
-
this.
|
|
1088
|
+
this.ac = null;
|
|
1089
|
+
this.ab = "boolean";
|
|
763
1090
|
return this;
|
|
764
1091
|
};
|
|
765
1092
|
ComponentRendererMethodHelperReturnBuilder.prototype.x = function () {
|
|
@@ -771,27 +1098,27 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
|
|
|
771
1098
|
$ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, _this.y);
|
|
772
1099
|
return $ret;
|
|
773
1100
|
})()));
|
|
774
|
-
if (this.
|
|
1101
|
+
if (this.ac != null) {
|
|
775
1102
|
a.item("specificType", ((function () {
|
|
776
1103
|
var $ret = new JsonDictionaryValue();
|
|
777
1104
|
$ret.e = 2;
|
|
778
|
-
$ret.value = _this.
|
|
1105
|
+
$ret.value = _this.ac;
|
|
779
1106
|
return $ret;
|
|
780
1107
|
})()));
|
|
781
1108
|
}
|
|
782
|
-
if (this.
|
|
1109
|
+
if (this.ab != null) {
|
|
783
1110
|
a.item("specificExternalType", ((function () {
|
|
784
1111
|
var $ret = new JsonDictionaryValue();
|
|
785
1112
|
$ret.e = 2;
|
|
786
|
-
$ret.value = _this.
|
|
1113
|
+
$ret.value = _this.ab;
|
|
787
1114
|
return $ret;
|
|
788
1115
|
})()));
|
|
789
1116
|
}
|
|
790
|
-
if (this.
|
|
1117
|
+
if (this.aa != null) {
|
|
791
1118
|
a.item("collectionElementType", ((function () {
|
|
792
1119
|
var $ret = new JsonDictionaryValue();
|
|
793
1120
|
$ret.e = 2;
|
|
794
|
-
$ret.value = _this.
|
|
1121
|
+
$ret.value = _this.aa;
|
|
795
1122
|
return $ret;
|
|
796
1123
|
})()));
|
|
797
1124
|
}
|
|
@@ -799,8 +1126,8 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
|
|
|
799
1126
|
};
|
|
800
1127
|
ComponentRendererMethodHelperReturnBuilder.prototype.asVoid = function () {
|
|
801
1128
|
this.y = 0;
|
|
1129
|
+
this.ac = null;
|
|
802
1130
|
this.ab = null;
|
|
803
|
-
this.aa = null;
|
|
804
1131
|
return this;
|
|
805
1132
|
};
|
|
806
1133
|
ComponentRendererMethodHelperReturnBuilder.$t = markType(ComponentRendererMethodHelperReturnBuilder, 'ComponentRendererMethodHelperReturnBuilder');
|