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
|
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
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
|
-
import { Base, IEnumerable_$type, fromEnum, typeCast, Date_$type, Boolean_$type, Array_$type, Delegate_$type, runOn, Number_$type, String_$type, EnumUtil, typeGetValue, markType } from "./type";
|
|
7
|
+
import { Base, IEnumerable_$type, fromEnum, typeCast, Date_$type, Boolean_$type, Array_$type, Delegate_$type, runOn, Number_$type, String_$type, EnumUtil, typeGetValue, fromEn, markType } from "./type";
|
|
8
8
|
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
9
9
|
import { TypeDescriptionCleanups } from "./TypeDescriptionCleanups";
|
|
10
10
|
import { Dictionary$2 } from "./Dictionary$2";
|
|
@@ -32,9 +32,11 @@ import { TypeDescriptionWellKnownType_$type } from "./TypeDescriptionWellKnownTy
|
|
|
32
32
|
import { Tuple$2 } from "./Tuple$2";
|
|
33
33
|
import { DescriptionRefTargetInfo } from "./DescriptionRefTargetInfo";
|
|
34
34
|
import { NotImplementedException } from "./NotImplementedException";
|
|
35
|
+
import { FontRegistry } from "./FontRegistry";
|
|
35
36
|
import { truncate } from "./number";
|
|
36
37
|
import { ComponentRendererAdapter } from "./ComponentRendererAdapter";
|
|
37
38
|
import { stringIsNullOrEmpty, stringStartsWith, stringEndsWith } from "./string";
|
|
39
|
+
import { dateParse } from "./dateExtended";
|
|
38
40
|
/**
|
|
39
41
|
* @hidden
|
|
40
42
|
*/
|
|
@@ -45,35 +47,35 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
45
47
|
this._adapter = null;
|
|
46
48
|
this._context = null;
|
|
47
49
|
this._isProceedOnErrorEnabled = false;
|
|
48
|
-
this.
|
|
49
|
-
this.
|
|
50
|
+
this.m = null;
|
|
51
|
+
this.n = null;
|
|
50
52
|
this._preserveKeyOrder = false;
|
|
51
53
|
this._allowNullForRemove = false;
|
|
52
|
-
this.bf = new List$1(Delegate_$type, 0);
|
|
53
54
|
this.bh = new List$1(Delegate_$type, 0);
|
|
54
|
-
this.
|
|
55
|
+
this.bj = new List$1(Delegate_$type, 0);
|
|
56
|
+
this.a4 = new Dictionary$2(Base.$, Description.$, 0);
|
|
57
|
+
this.a5 = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
58
|
+
this.a6 = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
55
59
|
this.a3 = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
56
|
-
this.
|
|
57
|
-
this.
|
|
58
|
-
this.az = new Dictionary$2(Base.$,
|
|
59
|
-
this.
|
|
60
|
-
this.
|
|
61
|
-
this.
|
|
62
|
-
this.
|
|
63
|
-
this.
|
|
64
|
-
this.aw = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
65
|
-
this.a7 = new Dictionary$2(String_$type, DescriptionRef.$, 0);
|
|
66
|
-
this.a9 = new Dictionary$2(String_$type, Base.$, 0);
|
|
60
|
+
this.a1 = new Dictionary$2(Base.$, String_$type, 0);
|
|
61
|
+
this.a2 = new Dictionary$2(Base.$, Number_$type, 0);
|
|
62
|
+
this.az = new Dictionary$2(Base.$, DescriptionTreeNode.$, 0);
|
|
63
|
+
this.ba = new Dictionary$2(Base.$, ContainerState.$, 0);
|
|
64
|
+
this.a7 = new Dictionary$2(Base.$, Queue$1.$.specialize(Queue$1.$.specialize(DescriptionTreeAction.$)), 0);
|
|
65
|
+
this.a0 = new Dictionary$2(Base.$, List$1.$.specialize(Delegate_$type), 0);
|
|
66
|
+
this.ay = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
67
|
+
this.a9 = new Dictionary$2(String_$type, DescriptionRef.$, 0);
|
|
67
68
|
this.bb = new Dictionary$2(String_$type, Base.$, 0);
|
|
68
|
-
this.
|
|
69
|
-
this.
|
|
70
|
-
this.
|
|
71
|
-
this.
|
|
72
|
-
this.
|
|
69
|
+
this.bd = new Dictionary$2(String_$type, Base.$, 0);
|
|
70
|
+
this.a8 = new Dictionary$2(Base.$, String_$type, 0);
|
|
71
|
+
this.bp = null;
|
|
72
|
+
this.bk = new List$1(Delegate_$type, 0);
|
|
73
|
+
this.bc = new Dictionary$2(String_$type, List$1.$.specialize(Delegate_$type), 0);
|
|
73
74
|
this.bg = new List$1(Delegate_$type, 0);
|
|
74
|
-
this.
|
|
75
|
+
this.bi = new List$1(Delegate_$type, 0);
|
|
76
|
+
this.bf = null;
|
|
75
77
|
this._shouldNamespaceSystemRefValues = false;
|
|
76
|
-
let a = this.
|
|
78
|
+
let a = this.l();
|
|
77
79
|
this.adapter = a;
|
|
78
80
|
let adapter_ = this.adapter;
|
|
79
81
|
let b = (adapter_._platform);
|
|
@@ -84,8 +86,8 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
84
86
|
ComponentRenderer.platform = 2;
|
|
85
87
|
}
|
|
86
88
|
this.context = new TypeDescriptionContext(this.adapter, ComponentRenderer.platform);
|
|
87
|
-
this.
|
|
88
|
-
this.
|
|
89
|
+
this.m = new TypeDescriptionPropretyTransforms();
|
|
90
|
+
this.n = new TypeDescriptionCleanups();
|
|
89
91
|
}
|
|
90
92
|
static get defaultInstance() {
|
|
91
93
|
return ComponentRenderer._defaultInstance;
|
|
@@ -111,7 +113,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
111
113
|
set isProceedOnErrorEnabled(a) {
|
|
112
114
|
this._isProceedOnErrorEnabled = a;
|
|
113
115
|
}
|
|
114
|
-
|
|
116
|
+
l() {
|
|
115
117
|
return (new ComponentRendererAdapter());
|
|
116
118
|
}
|
|
117
119
|
toJson(a) {
|
|
@@ -122,7 +124,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
122
124
|
b.f("\"descriptions\": {");
|
|
123
125
|
b.i();
|
|
124
126
|
let d = true;
|
|
125
|
-
for (let e of fromEnum(this.
|
|
127
|
+
for (let e of fromEnum(this.az.keys)) {
|
|
126
128
|
if (d) {
|
|
127
129
|
d = false;
|
|
128
130
|
}
|
|
@@ -130,7 +132,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
130
132
|
b.f(",");
|
|
131
133
|
}
|
|
132
134
|
let f = e;
|
|
133
|
-
let g = this.
|
|
135
|
+
let g = this.az.item(e);
|
|
134
136
|
let h = "root";
|
|
135
137
|
h = a(f);
|
|
136
138
|
if (stringIsNullOrEmpty(h)) {
|
|
@@ -143,16 +145,16 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
143
145
|
b.f("");
|
|
144
146
|
b.h();
|
|
145
147
|
b.e("}");
|
|
146
|
-
if (this.
|
|
148
|
+
if (this.bd.count > 0) {
|
|
147
149
|
b.e(",");
|
|
148
150
|
}
|
|
149
151
|
b.f("");
|
|
150
|
-
if (this.
|
|
152
|
+
if (this.bd.count > 0) {
|
|
151
153
|
d = true;
|
|
152
154
|
b.f("refs: {");
|
|
153
155
|
b.i();
|
|
154
|
-
for (let i of fromEnum(this.
|
|
155
|
-
if (!this.
|
|
156
|
+
for (let i of fromEnum(this.bd.keys)) {
|
|
157
|
+
if (!this.t(i, this.bd.item(i))) {
|
|
156
158
|
continue;
|
|
157
159
|
}
|
|
158
160
|
if (d) {
|
|
@@ -161,7 +163,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
161
163
|
else {
|
|
162
164
|
b.f(",");
|
|
163
165
|
}
|
|
164
|
-
this.
|
|
166
|
+
this.ep(b, i, this.bd.item(i));
|
|
165
167
|
}
|
|
166
168
|
b.f("");
|
|
167
169
|
b.h();
|
|
@@ -171,12 +173,12 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
171
173
|
b.f("}");
|
|
172
174
|
return b.toString();
|
|
173
175
|
}
|
|
174
|
-
|
|
176
|
+
ep(a, b, c) {
|
|
175
177
|
a.e("\"" + b + "\": ");
|
|
176
|
-
this.
|
|
178
|
+
this.eq(a, c);
|
|
177
179
|
}
|
|
178
|
-
|
|
179
|
-
if (this.
|
|
180
|
+
eq(a, b) {
|
|
181
|
+
if (this.ac(b)) {
|
|
180
182
|
if (typeof b === 'string') {
|
|
181
183
|
a.e(b == null ? "null" : "\"" + b.toString() + "\"");
|
|
182
184
|
}
|
|
@@ -217,7 +219,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
217
219
|
a.e("null");
|
|
218
220
|
return;
|
|
219
221
|
}
|
|
220
|
-
if (this.
|
|
222
|
+
if (this.z(b)) {
|
|
221
223
|
a.f("[");
|
|
222
224
|
a.i();
|
|
223
225
|
let c = new DataSourceLocalDataProvider();
|
|
@@ -226,7 +228,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
226
228
|
if (d > 0) {
|
|
227
229
|
a.f(",");
|
|
228
230
|
}
|
|
229
|
-
this.
|
|
231
|
+
this.eo(a, c, d);
|
|
230
232
|
}
|
|
231
233
|
a.f("");
|
|
232
234
|
a.h();
|
|
@@ -236,11 +238,11 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
236
238
|
let e = [b];
|
|
237
239
|
let f = new DataSourceLocalDataProvider();
|
|
238
240
|
f.dataSource = e;
|
|
239
|
-
this.
|
|
241
|
+
this.eo(a, f, 0);
|
|
240
242
|
}
|
|
241
243
|
}
|
|
242
244
|
}
|
|
243
|
-
|
|
245
|
+
ac(a) {
|
|
244
246
|
if (typeof a === 'string') {
|
|
245
247
|
return true;
|
|
246
248
|
}
|
|
@@ -255,7 +257,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
255
257
|
}
|
|
256
258
|
return false;
|
|
257
259
|
}
|
|
258
|
-
|
|
260
|
+
z(a) {
|
|
259
261
|
if (typeCast(Array_$type, a) !== null) {
|
|
260
262
|
return true;
|
|
261
263
|
}
|
|
@@ -264,7 +266,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
264
266
|
}
|
|
265
267
|
return false;
|
|
266
268
|
}
|
|
267
|
-
|
|
269
|
+
eo(a, b, c) {
|
|
268
270
|
a.f("{");
|
|
269
271
|
a.i();
|
|
270
272
|
let d = b.actualSchema;
|
|
@@ -300,14 +302,14 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
300
302
|
a.e("\"" + (v_.toJSON()) + "\"");
|
|
301
303
|
break;
|
|
302
304
|
case 11:
|
|
303
|
-
this.
|
|
305
|
+
this.eq(a, g);
|
|
304
306
|
break;
|
|
305
307
|
}
|
|
306
308
|
}
|
|
307
309
|
a.h();
|
|
308
310
|
a.f("}");
|
|
309
311
|
}
|
|
310
|
-
|
|
312
|
+
t(a, b) {
|
|
311
313
|
if (b == null) {
|
|
312
314
|
return true;
|
|
313
315
|
}
|
|
@@ -327,23 +329,23 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
327
329
|
return null;
|
|
328
330
|
}
|
|
329
331
|
let h = DescriptionTreeBuilder.createTree(this.context, g.result);
|
|
330
|
-
let i = this.
|
|
332
|
+
let i = this.ba.item(b);
|
|
331
333
|
if (h.c("Type")) {
|
|
332
334
|
let j = h.a("Type").b;
|
|
333
|
-
return this.
|
|
335
|
+
return this.ca(j, h, b, i, true, -1, null);
|
|
334
336
|
}
|
|
335
337
|
else {
|
|
336
|
-
return this.
|
|
338
|
+
return this.b9(typeCast(JsonDictionaryObject.$, d));
|
|
337
339
|
}
|
|
338
340
|
}
|
|
339
341
|
loadJson(a, b) {
|
|
340
|
-
this.
|
|
342
|
+
this.dt(a, b, null, false, false, false);
|
|
341
343
|
}
|
|
342
344
|
loadJsonOverlay(a, b, c) {
|
|
343
|
-
this.
|
|
345
|
+
this.dt(a, b, c, true, false, true);
|
|
344
346
|
}
|
|
345
347
|
loadJsonDelta(a, b, c) {
|
|
346
|
-
this.
|
|
348
|
+
this.dt(a, b, null, true, c, false);
|
|
347
349
|
}
|
|
348
350
|
get preserveKeyOrder() {
|
|
349
351
|
return this._preserveKeyOrder;
|
|
@@ -351,10 +353,10 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
351
353
|
set preserveKeyOrder(a) {
|
|
352
354
|
this._preserveKeyOrder = a;
|
|
353
355
|
}
|
|
354
|
-
|
|
356
|
+
av() {
|
|
355
357
|
return false;
|
|
356
358
|
}
|
|
357
|
-
|
|
359
|
+
dv(a) {
|
|
358
360
|
}
|
|
359
361
|
get allowNullForRemove() {
|
|
360
362
|
return this._allowNullForRemove;
|
|
@@ -362,23 +364,23 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
362
364
|
set allowNullForRemove(a) {
|
|
363
365
|
this._allowNullForRemove = a;
|
|
364
366
|
}
|
|
365
|
-
|
|
367
|
+
dt(a, b, c, d, e, f) {
|
|
366
368
|
let g = new JsonDictionaryParser();
|
|
367
369
|
let h = g.parse(a);
|
|
368
370
|
let i = new DescriptionSerializer();
|
|
369
371
|
i.h = this.isProceedOnErrorEnabled;
|
|
370
|
-
i.g = this.
|
|
372
|
+
i.g = this.av();
|
|
371
373
|
let j = null;
|
|
372
374
|
if (typeCast(JsonDictionaryObject.$, h) !== null) {
|
|
373
375
|
let k = h;
|
|
374
376
|
if (k.g("skipAlterDataCasing")) {
|
|
375
377
|
let l = k.item("skipAlterDataCasing");
|
|
376
378
|
if (l.value) {
|
|
377
|
-
this.
|
|
379
|
+
this.dv(true);
|
|
378
380
|
}
|
|
379
381
|
}
|
|
380
382
|
else {
|
|
381
|
-
this.
|
|
383
|
+
this.dv(false);
|
|
382
384
|
}
|
|
383
385
|
let m = null;
|
|
384
386
|
if (k.g("animationIdleRef") || k.g("hasAnimations")) {
|
|
@@ -405,7 +407,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
405
407
|
}
|
|
406
408
|
j = u;
|
|
407
409
|
let v = false;
|
|
408
|
-
let w = this.
|
|
410
|
+
let w = this.bn();
|
|
409
411
|
if (w != null) {
|
|
410
412
|
v = true;
|
|
411
413
|
}
|
|
@@ -425,7 +427,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
425
427
|
continue;
|
|
426
428
|
}
|
|
427
429
|
if (f) {
|
|
428
|
-
if (!this.
|
|
430
|
+
if (!this.be.containsKey(u)) {
|
|
429
431
|
let z = null;
|
|
430
432
|
if (this.isProceedOnErrorEnabled) {
|
|
431
433
|
try {
|
|
@@ -438,21 +440,21 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
438
440
|
else {
|
|
439
441
|
z = i.d(this.context, t, v, w, true);
|
|
440
442
|
}
|
|
441
|
-
this.
|
|
443
|
+
this.ej(z.result, u, d, true, false, m, n);
|
|
442
444
|
m = null;
|
|
443
445
|
let ab = c(s);
|
|
444
|
-
let ac = this.
|
|
445
|
-
this.
|
|
446
|
+
let ac = this.be.item(u);
|
|
447
|
+
this.dl(this.az.item(u), ab, ac, u);
|
|
446
448
|
}
|
|
447
449
|
}
|
|
448
|
-
this.
|
|
450
|
+
this.ej(x.result, u, d, e, false, m, n);
|
|
449
451
|
m = null;
|
|
450
452
|
}
|
|
451
453
|
}
|
|
452
454
|
}
|
|
453
455
|
if (k.g("refs") && j != null) {
|
|
454
456
|
let ad = k.item("refs");
|
|
455
|
-
let ae = this.
|
|
457
|
+
let ae = this.al(ad);
|
|
456
458
|
if (!ae && typeCast(JsonDictionaryObject.$, ad) !== null) {
|
|
457
459
|
let af = ad;
|
|
458
460
|
let ag = af.e();
|
|
@@ -469,7 +471,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
469
471
|
this.provideRefValue(j, ai, am);
|
|
470
472
|
}
|
|
471
473
|
else {
|
|
472
|
-
let an = this.
|
|
474
|
+
let an = this.b9(aj);
|
|
473
475
|
this.provideRefValue(j, ai, an);
|
|
474
476
|
}
|
|
475
477
|
}
|
|
@@ -477,19 +479,19 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
477
479
|
}
|
|
478
480
|
if (k.g("modules") && j != null) {
|
|
479
481
|
let ao = k.item("modules");
|
|
480
|
-
this.
|
|
482
|
+
this.ai(ao);
|
|
481
483
|
}
|
|
482
484
|
if (k.g("strings") && j != null) {
|
|
483
485
|
let ap = k.item("strings");
|
|
484
|
-
this.
|
|
486
|
+
this.ap(ap);
|
|
485
487
|
}
|
|
486
488
|
if (k.g("onInit") && j != null) {
|
|
487
489
|
let aq = k.item("onInit");
|
|
488
|
-
this.
|
|
490
|
+
this.aj(aq);
|
|
489
491
|
}
|
|
490
492
|
if (k.g("onViewInit") && j != null) {
|
|
491
493
|
let ar = k.item("onViewInit");
|
|
492
|
-
this.
|
|
494
|
+
this.ak(ar);
|
|
493
495
|
}
|
|
494
496
|
}
|
|
495
497
|
}
|
|
@@ -507,60 +509,60 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
507
509
|
this.provideRefValue(a, d, i);
|
|
508
510
|
}
|
|
509
511
|
else {
|
|
510
|
-
let j = this.
|
|
512
|
+
let j = this.b9(f);
|
|
511
513
|
this.provideRefValue(a, d, j);
|
|
512
514
|
}
|
|
513
515
|
}
|
|
514
516
|
addMemberPathTransformer(a) {
|
|
515
|
-
this.
|
|
517
|
+
this.bh.add(a);
|
|
516
518
|
}
|
|
517
519
|
removeMemberPathTransformer(a) {
|
|
518
|
-
this.
|
|
520
|
+
this.bh.remove(a);
|
|
519
521
|
}
|
|
520
522
|
addReferenceResolver(a) {
|
|
521
|
-
this.
|
|
523
|
+
this.bj.add(a);
|
|
522
524
|
}
|
|
523
525
|
removeReferenceResolver(a) {
|
|
524
|
-
this.
|
|
526
|
+
this.bj.remove(a);
|
|
525
527
|
}
|
|
526
528
|
e(a) {
|
|
527
|
-
if (this.
|
|
529
|
+
if (this.bj.count == 0) {
|
|
528
530
|
return null;
|
|
529
531
|
}
|
|
530
532
|
let b = new ComponentRendererReferenceResolverEventArgs();
|
|
531
|
-
for (let c = 0; c < this.
|
|
532
|
-
this.
|
|
533
|
+
for (let c = 0; c < this.bj.count; c++) {
|
|
534
|
+
this.bj._inner[c](a, b);
|
|
533
535
|
}
|
|
534
536
|
return b;
|
|
535
537
|
}
|
|
536
|
-
|
|
537
|
-
if (this.
|
|
538
|
+
bn() {
|
|
539
|
+
if (this.bh.count > 0) {
|
|
538
540
|
return (a) => {
|
|
539
541
|
let b = a;
|
|
540
|
-
for (let c = 0; c < this.
|
|
541
|
-
b = this.
|
|
542
|
+
for (let c = 0; c < this.bh.count; c++) {
|
|
543
|
+
b = this.bh._inner[c](b);
|
|
542
544
|
}
|
|
543
545
|
return b;
|
|
544
546
|
};
|
|
545
547
|
}
|
|
546
548
|
return null;
|
|
547
549
|
}
|
|
548
|
-
|
|
550
|
+
al(a) {
|
|
549
551
|
return false;
|
|
550
552
|
}
|
|
551
|
-
|
|
553
|
+
ai(a) {
|
|
552
554
|
return false;
|
|
553
555
|
}
|
|
554
|
-
|
|
556
|
+
ap(a) {
|
|
555
557
|
return false;
|
|
556
558
|
}
|
|
557
|
-
|
|
559
|
+
aj(a) {
|
|
558
560
|
return false;
|
|
559
561
|
}
|
|
560
|
-
|
|
562
|
+
ak(a) {
|
|
561
563
|
return false;
|
|
562
564
|
}
|
|
563
|
-
|
|
565
|
+
c0(a, b, c) {
|
|
564
566
|
let d = a;
|
|
565
567
|
if (c != null) {
|
|
566
568
|
d = c.k(b);
|
|
@@ -575,23 +577,23 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
575
577
|
}
|
|
576
578
|
return d;
|
|
577
579
|
}
|
|
578
|
-
|
|
580
|
+
dl(a, b, c, d) {
|
|
579
581
|
if (!c.b(b)) {
|
|
580
|
-
c.k(d, this.
|
|
582
|
+
c.k(d, this.az.item(d).g, b, this.az.item(d), runOn(this, this.d0), -1);
|
|
581
583
|
}
|
|
582
584
|
for (let e of fromEnum(a.f())) {
|
|
583
|
-
this.
|
|
585
|
+
this.dm(this.c0(e.c, ComponentRenderer.platform, e.a), e.b, b, c, d, a.g);
|
|
584
586
|
}
|
|
585
587
|
}
|
|
586
|
-
|
|
588
|
+
dm(a, b, c, d, e, f) {
|
|
587
589
|
if (typeCast(DescriptionTreeNode.$, b) !== null) {
|
|
588
590
|
let g = b;
|
|
589
591
|
let h = this.adapter.getPropertyValue(c, a);
|
|
590
592
|
if (!d.b(h) && !d.a(g.g)) {
|
|
591
|
-
d.k(e, g.g, h, g, runOn(this, this.
|
|
593
|
+
d.k(e, g.g, h, g, runOn(this, this.d0), f);
|
|
592
594
|
}
|
|
593
595
|
for (let i of fromEnum(g.f())) {
|
|
594
|
-
this.
|
|
596
|
+
this.dm(a + "." + this.c0(i.c, ComponentRenderer.platform, i.a), i.b, c, d, e, g.g);
|
|
595
597
|
}
|
|
596
598
|
}
|
|
597
599
|
if (typeCast(Array_$type, b) !== null) {
|
|
@@ -613,24 +615,24 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
613
615
|
if (j.containsKey(k)) {
|
|
614
616
|
let s = j.item(k);
|
|
615
617
|
if (!d.b(r) && !d.a(s.g)) {
|
|
616
|
-
d.k(e, s.g, r, s, runOn(this, this.
|
|
618
|
+
d.k(e, s.g, r, s, runOn(this, this.d0), f);
|
|
617
619
|
}
|
|
618
620
|
for (let t of fromEnum(s.f())) {
|
|
619
|
-
this.
|
|
621
|
+
this.dm(a + "." + t.c, t.b, c, d, e, s.g);
|
|
620
622
|
}
|
|
621
623
|
}
|
|
622
624
|
k++;
|
|
623
625
|
});
|
|
624
626
|
if (l > 0 && k == 0) {
|
|
625
|
-
let r = this.
|
|
627
|
+
let r = this.c5(a);
|
|
626
628
|
this.adapter.forPropertyValueItem(c, r, (s) => {
|
|
627
629
|
if (j.containsKey(k)) {
|
|
628
630
|
let t = j.item(k);
|
|
629
631
|
if (!d.b(s) && !d.a(t.g)) {
|
|
630
|
-
d.k(e, t.g, s, t, runOn(this, this.
|
|
632
|
+
d.k(e, t.g, s, t, runOn(this, this.d0), f);
|
|
631
633
|
}
|
|
632
634
|
for (let u of fromEnum(t.f())) {
|
|
633
|
-
this.
|
|
635
|
+
this.dm(r + "." + u.c, u.b, c, d, e, t.g);
|
|
634
636
|
}
|
|
635
637
|
}
|
|
636
638
|
k++;
|
|
@@ -638,7 +640,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
638
640
|
}
|
|
639
641
|
}
|
|
640
642
|
}
|
|
641
|
-
|
|
643
|
+
c5(a) {
|
|
642
644
|
let b = a.lastIndexOf('.');
|
|
643
645
|
let c = null;
|
|
644
646
|
let d = a;
|
|
@@ -646,24 +648,24 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
646
648
|
c = a.substr(0, b);
|
|
647
649
|
d = a.substr(b + 1);
|
|
648
650
|
}
|
|
649
|
-
d = "actual" + this.
|
|
651
|
+
d = "actual" + this.c2(d);
|
|
650
652
|
if (c != null) {
|
|
651
653
|
return c + "." + d;
|
|
652
654
|
}
|
|
653
655
|
return d;
|
|
654
656
|
}
|
|
655
|
-
|
|
657
|
+
c2(a) {
|
|
656
658
|
return a.substr(0, 1).toUpperCase() + a.substr(1);
|
|
657
659
|
}
|
|
658
660
|
a(a) {
|
|
659
661
|
let b = new Array(a.items.length);
|
|
660
662
|
for (let c = 0; c < a.items.length; c++) {
|
|
661
|
-
let d = this.
|
|
663
|
+
let d = this.b9(a.items[c]);
|
|
662
664
|
b[c] = d;
|
|
663
665
|
}
|
|
664
666
|
return b;
|
|
665
667
|
}
|
|
666
|
-
|
|
668
|
+
b9(a) {
|
|
667
669
|
if (a == null) {
|
|
668
670
|
return null;
|
|
669
671
|
}
|
|
@@ -673,7 +675,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
673
675
|
for (let d = 0; d < c.length; d++) {
|
|
674
676
|
let key_ = c[d];
|
|
675
677
|
if (typeCast(JsonDictionaryObject.$, a.item(key_)) !== null) {
|
|
676
|
-
let val_ = this.
|
|
678
|
+
let val_ = this.b9(a.item(key_));
|
|
677
679
|
dict_[key_] = val_;
|
|
678
680
|
}
|
|
679
681
|
else if (typeCast(JsonDictionaryArray.$, a.item(key_)) !== null) {
|
|
@@ -687,44 +689,44 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
687
689
|
}
|
|
688
690
|
return dict_;
|
|
689
691
|
}
|
|
690
|
-
get
|
|
691
|
-
return this.
|
|
692
|
+
get be() {
|
|
693
|
+
return this.ba;
|
|
692
694
|
}
|
|
693
695
|
cleanup(a, b) {
|
|
694
|
-
this.
|
|
695
|
-
this.
|
|
696
|
+
this.bp = a;
|
|
697
|
+
this.ej(null, a, false, false, b, null, 0);
|
|
696
698
|
}
|
|
697
699
|
render(a, b) {
|
|
698
|
-
this.
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
if (!this.
|
|
702
|
-
this.
|
|
703
|
-
this.
|
|
704
|
-
}
|
|
705
|
-
this.
|
|
706
|
-
this.
|
|
707
|
-
this.
|
|
708
|
-
this.
|
|
709
|
-
this.
|
|
710
|
-
this.
|
|
711
|
-
this.
|
|
712
|
-
}
|
|
713
|
-
|
|
700
|
+
this.ej(a, b, false, false, false, null, 0);
|
|
701
|
+
}
|
|
702
|
+
ej(a, b, c, d, e, f, g) {
|
|
703
|
+
if (!this.ba.containsKey(b)) {
|
|
704
|
+
this.ba.item(b, new ContainerState());
|
|
705
|
+
this.ba.item(b).i = b;
|
|
706
|
+
}
|
|
707
|
+
this.a4.item(b, a);
|
|
708
|
+
this.a5.item(b, c);
|
|
709
|
+
this.a6.item(b, d);
|
|
710
|
+
this.a3.item(b, e);
|
|
711
|
+
this.a1.item(b, f);
|
|
712
|
+
this.a2.item(b, g);
|
|
713
|
+
this.dw(b, () => this.eh(b));
|
|
714
|
+
}
|
|
715
|
+
dw(a, b) {
|
|
714
716
|
this.adapter.onUIThread(a, b);
|
|
715
717
|
}
|
|
716
|
-
|
|
717
|
-
if (this.
|
|
718
|
-
let b = this.
|
|
719
|
-
let c = this.
|
|
720
|
-
let d = this.
|
|
721
|
-
let e = this.
|
|
722
|
-
let f = this.
|
|
723
|
-
this.
|
|
718
|
+
eh(a) {
|
|
719
|
+
if (this.a4.containsKey(a)) {
|
|
720
|
+
let b = this.a5.containsKey(a) ? this.a5.item(a) : false;
|
|
721
|
+
let c = this.a6.containsKey(a) ? this.a6.item(a) : false;
|
|
722
|
+
let d = this.a4.item(a);
|
|
723
|
+
let e = this.a1.containsKey(a) ? this.a1.item(a) : null;
|
|
724
|
+
let f = this.a2.containsKey(a) ? this.a2.item(a) : 0;
|
|
725
|
+
this.a4.removeItem(a);
|
|
724
726
|
let g = DescriptionTreeBuilder.createTreeWithOptions(this.context, d, this.preserveKeyOrder);
|
|
725
727
|
let h = null;
|
|
726
|
-
if (this.
|
|
727
|
-
h = this.
|
|
728
|
+
if (this.az.containsKey(a)) {
|
|
729
|
+
h = this.az.item(a);
|
|
728
730
|
}
|
|
729
731
|
let i = DescriptionTreeReconciler.c(h, g, b);
|
|
730
732
|
if (!c && b) {
|
|
@@ -737,32 +739,32 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
737
739
|
}
|
|
738
740
|
if (c) {
|
|
739
741
|
let k = DescriptionTreeReconciler.a(h, i);
|
|
740
|
-
if (!this.
|
|
741
|
-
this.
|
|
742
|
+
if (!this.ba.containsKey(a)) {
|
|
743
|
+
this.ba.addItem(a, ((() => {
|
|
742
744
|
let $ret = new ContainerState();
|
|
743
745
|
$ret.i = a;
|
|
744
746
|
return $ret;
|
|
745
747
|
})()));
|
|
746
748
|
}
|
|
747
|
-
let l = this.
|
|
749
|
+
let l = this.ba.item(a);
|
|
748
750
|
if (k.a.count > 0) {
|
|
749
751
|
for (let m of fromEnum(k.a)) {
|
|
750
752
|
if (l.a(m)) {
|
|
751
753
|
let n = l.j(m);
|
|
752
|
-
this.
|
|
754
|
+
this.dj(a, n, l);
|
|
753
755
|
}
|
|
754
756
|
}
|
|
755
757
|
}
|
|
756
758
|
if (k.c.count > 0) {
|
|
757
759
|
for (let o of fromEnum(k.c)) {
|
|
758
|
-
let p = this.
|
|
760
|
+
let p = this.cg(a, l, o);
|
|
759
761
|
let q = this.adapter.getPropertyValue(p, o.j);
|
|
760
762
|
if (q != null) {
|
|
761
763
|
if (!l.b(q)) {
|
|
762
764
|
let r = o.g;
|
|
763
765
|
if (typeCast(DescriptionTreeNode.$, r) !== null) {
|
|
764
766
|
let s = r.g;
|
|
765
|
-
l.k(a, s, q, r, runOn(this, this.
|
|
767
|
+
l.k(a, s, q, r, runOn(this, this.d0), o.c.g);
|
|
766
768
|
}
|
|
767
769
|
}
|
|
768
770
|
}
|
|
@@ -776,7 +778,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
776
778
|
let v = t.g;
|
|
777
779
|
if (typeCast(DescriptionTreeNode.$, v) !== null) {
|
|
778
780
|
let w = v.g;
|
|
779
|
-
this.
|
|
781
|
+
this.az.item(a, v);
|
|
780
782
|
}
|
|
781
783
|
}
|
|
782
784
|
}
|
|
@@ -801,7 +803,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
801
803
|
if (z.count == 0) {
|
|
802
804
|
continue;
|
|
803
805
|
}
|
|
804
|
-
let ad = this.
|
|
806
|
+
let ad = this.cg(a, l, x);
|
|
805
807
|
let ae = this.adapter.getPropertyValue(ad, x.j);
|
|
806
808
|
if (ae != null) {
|
|
807
809
|
let af = 0;
|
|
@@ -811,7 +813,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
811
813
|
let ah = z.item(this.adapter.getPropertyValue(ag, "Name").toString());
|
|
812
814
|
if (typeCast(DescriptionTreeNode.$, ah) !== null) {
|
|
813
815
|
let ai = ah.g;
|
|
814
|
-
l.k(a, ai, ag, ah, runOn(this, this.
|
|
816
|
+
l.k(a, ai, ag, ah, runOn(this, this.d0), x.c.g);
|
|
815
817
|
}
|
|
816
818
|
}
|
|
817
819
|
}
|
|
@@ -822,11 +824,11 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
822
824
|
}
|
|
823
825
|
}
|
|
824
826
|
else {
|
|
825
|
-
this.
|
|
827
|
+
this.az.item(a, g);
|
|
826
828
|
}
|
|
827
829
|
if (!c) {
|
|
828
|
-
if (e != null && this.
|
|
829
|
-
let ag = this.
|
|
830
|
+
if (e != null && this.y(e)) {
|
|
831
|
+
let ag = this.bd.item(e);
|
|
830
832
|
if (ag != null) {
|
|
831
833
|
let ah = GlobalAnimationState.d.i();
|
|
832
834
|
if (f > 0) {
|
|
@@ -837,71 +839,71 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
837
839
|
}
|
|
838
840
|
}
|
|
839
841
|
}
|
|
840
|
-
this.
|
|
842
|
+
this.ei(a, i);
|
|
841
843
|
}
|
|
842
|
-
if (this.
|
|
843
|
-
this.
|
|
844
|
-
if (this.
|
|
845
|
-
this.
|
|
844
|
+
if (this.a3.item(a)) {
|
|
845
|
+
this.ef(a);
|
|
846
|
+
if (this.ba.containsKey(a)) {
|
|
847
|
+
this.ba.removeItem(a);
|
|
846
848
|
}
|
|
847
849
|
}
|
|
848
850
|
}
|
|
849
|
-
if (this.
|
|
850
|
-
if (this.
|
|
851
|
-
this.
|
|
851
|
+
if (this.bp != null) {
|
|
852
|
+
if (this.a4.containsKey(this.bp)) {
|
|
853
|
+
this.a4.removeItem(this.bp);
|
|
852
854
|
}
|
|
853
|
-
if (this.
|
|
854
|
-
this.
|
|
855
|
+
if (this.a5.containsKey(this.bp)) {
|
|
856
|
+
this.a5.removeItem(this.bp);
|
|
855
857
|
}
|
|
856
|
-
if (this.
|
|
857
|
-
this.
|
|
858
|
+
if (this.a6.containsKey(this.bp)) {
|
|
859
|
+
this.a6.removeItem(this.bp);
|
|
858
860
|
}
|
|
859
|
-
if (this.
|
|
860
|
-
this.
|
|
861
|
+
if (this.a3.containsKey(this.bp)) {
|
|
862
|
+
this.a3.removeItem(this.bp);
|
|
861
863
|
}
|
|
862
|
-
if (this.
|
|
863
|
-
this.
|
|
864
|
+
if (this.az.containsKey(this.bp)) {
|
|
865
|
+
this.az.removeItem(this.bp);
|
|
864
866
|
}
|
|
865
|
-
if (this.
|
|
866
|
-
this.
|
|
867
|
+
if (this.a7.containsKey(this.bp)) {
|
|
868
|
+
this.a7.removeItem(this.bp);
|
|
867
869
|
}
|
|
868
|
-
if (this.
|
|
869
|
-
this.
|
|
870
|
+
if (this.a0.containsKey(this.bp)) {
|
|
871
|
+
this.a0.removeItem(this.bp);
|
|
870
872
|
}
|
|
871
|
-
if (this.
|
|
872
|
-
this.
|
|
873
|
+
if (this.ay.containsKey(this.bp)) {
|
|
874
|
+
this.ay.removeItem(this.bp);
|
|
873
875
|
}
|
|
874
|
-
if (this.
|
|
875
|
-
this.
|
|
876
|
+
if (this.a2.containsKey(this.bp)) {
|
|
877
|
+
this.a2.removeItem(this.bp);
|
|
876
878
|
}
|
|
877
|
-
if (this.
|
|
878
|
-
this.
|
|
879
|
+
if (this.a1.containsKey(this.bp)) {
|
|
880
|
+
this.a1.removeItem(this.bp);
|
|
879
881
|
}
|
|
880
|
-
this.
|
|
882
|
+
this.bp = null;
|
|
881
883
|
}
|
|
882
884
|
}
|
|
883
885
|
getTargetValue(a, b, c) {
|
|
884
|
-
let d = this.context.getMetadata(a, this.
|
|
886
|
+
let d = this.context.getMetadata(a, this.c2(b));
|
|
885
887
|
let e = d.k(ComponentRenderer.platform);
|
|
886
888
|
return this.adapter.getPropertyValue(c, e);
|
|
887
889
|
}
|
|
888
890
|
setTargetValue(a, b, c, d, e) {
|
|
889
|
-
let f = this.context.getMetadata(a, this.
|
|
891
|
+
let f = this.context.getMetadata(a, this.c2(b));
|
|
890
892
|
let g = f.k(ComponentRenderer.platform);
|
|
891
893
|
this.adapter.setPropertyValue(c, g, f, d, e, null);
|
|
892
894
|
}
|
|
893
|
-
|
|
895
|
+
executeMethod1(a, b, c) {
|
|
894
896
|
let d = new JsonDictionaryParser();
|
|
895
897
|
let e = d.parse(b);
|
|
896
|
-
if (!this.
|
|
897
|
-
this.
|
|
898
|
-
this.
|
|
898
|
+
if (!this.ba.containsKey(a)) {
|
|
899
|
+
this.ba.item(a, new ContainerState());
|
|
900
|
+
this.ba.item(a).i = a;
|
|
899
901
|
}
|
|
900
|
-
let f = this.
|
|
902
|
+
let f = this.ba.item(a);
|
|
901
903
|
let g = new DescriptionSerializer();
|
|
902
904
|
g.h = this.isProceedOnErrorEnabled;
|
|
903
|
-
g.g = this.
|
|
904
|
-
let h = this.
|
|
905
|
+
g.g = this.av();
|
|
906
|
+
let h = this.az.item(a);
|
|
905
907
|
let i = null;
|
|
906
908
|
let j = new List$1(Base.$, 0);
|
|
907
909
|
let k = new List$1(TypeDescriptionMetadata.$, 0);
|
|
@@ -909,15 +911,15 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
909
911
|
let l = null;
|
|
910
912
|
let m = e;
|
|
911
913
|
if (m.g("targetRef")) {
|
|
912
|
-
l = this.
|
|
914
|
+
l = this.cy(m, "targetRef");
|
|
913
915
|
}
|
|
914
916
|
let n = null;
|
|
915
917
|
if (m.g("methodName")) {
|
|
916
|
-
n = this.
|
|
918
|
+
n = this.cy(m, "methodName");
|
|
917
919
|
}
|
|
918
920
|
if (l != null) {
|
|
919
|
-
if (this.
|
|
920
|
-
i = this.
|
|
921
|
+
if (this.bb.containsKey(l)) {
|
|
922
|
+
i = this.bb.item(l);
|
|
921
923
|
}
|
|
922
924
|
}
|
|
923
925
|
else {
|
|
@@ -927,16 +929,16 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
927
929
|
let o = m.item("args");
|
|
928
930
|
for (let p = 0; p < o.items.length; p++) {
|
|
929
931
|
let q = o.items[p];
|
|
930
|
-
let r = this.
|
|
932
|
+
let r = this.i(h, q, g);
|
|
931
933
|
let s = null;
|
|
932
934
|
if (typeCast(DescriptionTreeNode.$, r.g) !== null && r.g.i == "EmbeddedRef") {
|
|
933
|
-
s = this.
|
|
935
|
+
s = this.ci(a, r.g);
|
|
934
936
|
}
|
|
935
937
|
else {
|
|
936
|
-
s = this.
|
|
938
|
+
s = this.cd(r, a, f);
|
|
937
939
|
}
|
|
938
940
|
if (r.d.knownType == 8 && r.d.specificType == "string") {
|
|
939
|
-
s = this.
|
|
941
|
+
s = this.by(r.d.specificExternalType, s, r.d);
|
|
940
942
|
}
|
|
941
943
|
j.add1(s);
|
|
942
944
|
k.add(r.d);
|
|
@@ -945,16 +947,69 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
945
947
|
let t = null;
|
|
946
948
|
if (m.g("return")) {
|
|
947
949
|
let u = m.item("return");
|
|
948
|
-
let v = this.
|
|
950
|
+
let v = this.i(h, u, g);
|
|
949
951
|
t = v.d;
|
|
950
952
|
}
|
|
951
953
|
this.adapter.executeMethod(i, n, j.toArray(), k.toArray(), (w) => {
|
|
952
|
-
let x = this.
|
|
954
|
+
let x = this.c3(w, t);
|
|
953
955
|
c(x);
|
|
954
956
|
});
|
|
955
957
|
}
|
|
956
958
|
}
|
|
957
|
-
|
|
959
|
+
executeMethod(a, b, c) {
|
|
960
|
+
let d = new JsonDictionaryParser();
|
|
961
|
+
if (!this.ba.containsKey(a)) {
|
|
962
|
+
this.ba.item(a, new ContainerState());
|
|
963
|
+
this.ba.item(a).i = a;
|
|
964
|
+
}
|
|
965
|
+
let e = this.ba.item(a);
|
|
966
|
+
let f = new DescriptionSerializer();
|
|
967
|
+
f.h = this.isProceedOnErrorEnabled;
|
|
968
|
+
f.g = this.av();
|
|
969
|
+
let g = this.az.item(a);
|
|
970
|
+
let h = null;
|
|
971
|
+
let i = new List$1(Base.$, 0);
|
|
972
|
+
let j = new List$1(TypeDescriptionMetadata.$, 0);
|
|
973
|
+
if (b != null) {
|
|
974
|
+
let k = b.targetRef;
|
|
975
|
+
let l = b.methodName;
|
|
976
|
+
if (k != null) {
|
|
977
|
+
if (this.bb.containsKey(k)) {
|
|
978
|
+
h = this.bb.item(k);
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
else {
|
|
982
|
+
h = e.j(g.g);
|
|
983
|
+
}
|
|
984
|
+
let m = b.getArgumentCount();
|
|
985
|
+
for (let n = 0; n < m; n++) {
|
|
986
|
+
let o = b.getArgument(n);
|
|
987
|
+
let p = this.h(g, o, f);
|
|
988
|
+
let q = null;
|
|
989
|
+
if (typeCast(DescriptionTreeNode.$, p.g) !== null && p.g.i == "EmbeddedRef") {
|
|
990
|
+
q = this.ci(a, p.g);
|
|
991
|
+
}
|
|
992
|
+
else {
|
|
993
|
+
q = this.cd(p, a, e);
|
|
994
|
+
}
|
|
995
|
+
if (p.d.knownType == 8 && p.d.specificType == "string") {
|
|
996
|
+
q = this.by(p.d.specificExternalType, q, p.d);
|
|
997
|
+
}
|
|
998
|
+
i.add1(q);
|
|
999
|
+
j.add(p.d);
|
|
1000
|
+
}
|
|
1001
|
+
let r = null;
|
|
1002
|
+
if (b.hasReturn()) {
|
|
1003
|
+
let s = this.j(g, b.getReturn());
|
|
1004
|
+
r = s.d;
|
|
1005
|
+
}
|
|
1006
|
+
this.adapter.executeMethod(h, l, i.toArray(), j.toArray(), (t) => {
|
|
1007
|
+
let u = this.c3(t, r);
|
|
1008
|
+
c(u);
|
|
1009
|
+
});
|
|
1010
|
+
}
|
|
1011
|
+
}
|
|
1012
|
+
ci(a, b) {
|
|
958
1013
|
if (b.i == "EmbeddedRef") {
|
|
959
1014
|
let c = "uuid";
|
|
960
1015
|
let d = null;
|
|
@@ -967,27 +1022,27 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
967
1022
|
}
|
|
968
1023
|
}
|
|
969
1024
|
if (d != null) {
|
|
970
|
-
for (let f = 0; f < this.
|
|
971
|
-
let g = this.
|
|
1025
|
+
for (let f = 0; f < this.bg.count; f++) {
|
|
1026
|
+
let g = this.bg._inner[f](a, c, d);
|
|
972
1027
|
if (g != null) {
|
|
973
1028
|
return g;
|
|
974
1029
|
}
|
|
975
1030
|
}
|
|
976
1031
|
if (c == "name") {
|
|
977
1032
|
let h = d;
|
|
978
|
-
if (this.a9.containsKey(h)) {
|
|
979
|
-
return this.a9.item(h);
|
|
980
|
-
}
|
|
981
1033
|
if (this.bb.containsKey(h)) {
|
|
982
1034
|
return this.bb.item(h);
|
|
983
1035
|
}
|
|
1036
|
+
if (this.bd.containsKey(h)) {
|
|
1037
|
+
return this.bd.item(h);
|
|
1038
|
+
}
|
|
984
1039
|
}
|
|
985
1040
|
return null;
|
|
986
1041
|
}
|
|
987
1042
|
}
|
|
988
1043
|
return null;
|
|
989
1044
|
}
|
|
990
|
-
static
|
|
1045
|
+
static bm(a) {
|
|
991
1046
|
if (typeCast(Date_$type, a) !== null) {
|
|
992
1047
|
return a.getTime();
|
|
993
1048
|
}
|
|
@@ -996,7 +1051,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
996
1051
|
}
|
|
997
1052
|
return a;
|
|
998
1053
|
}
|
|
999
|
-
|
|
1054
|
+
c3(a, b) {
|
|
1000
1055
|
let c = new JsonDictionaryObject();
|
|
1001
1056
|
c.item("knownType", ((() => {
|
|
1002
1057
|
let $ret = new JsonDictionaryValue();
|
|
@@ -1034,7 +1089,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1034
1089
|
c.item("result", ((() => {
|
|
1035
1090
|
let $ret = new JsonDictionaryValue();
|
|
1036
1091
|
$ret.e = 0;
|
|
1037
|
-
$ret.value = ComponentRenderer.
|
|
1092
|
+
$ret.value = ComponentRenderer.bm(a);
|
|
1038
1093
|
return $ret;
|
|
1039
1094
|
})()));
|
|
1040
1095
|
break;
|
|
@@ -1058,7 +1113,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1058
1113
|
c.item("result", ((() => {
|
|
1059
1114
|
let $ret = new JsonDictionaryValue();
|
|
1060
1115
|
$ret.e = 2;
|
|
1061
|
-
$ret.value = this.
|
|
1116
|
+
$ret.value = this.cj(a);
|
|
1062
1117
|
return $ret;
|
|
1063
1118
|
})()));
|
|
1064
1119
|
break;
|
|
@@ -1066,7 +1121,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1066
1121
|
c.item("result", ((() => {
|
|
1067
1122
|
let $ret = new JsonDictionaryValue();
|
|
1068
1123
|
$ret.e = 2;
|
|
1069
|
-
$ret.value = this.
|
|
1124
|
+
$ret.value = this.cl(a);
|
|
1070
1125
|
return $ret;
|
|
1071
1126
|
})()));
|
|
1072
1127
|
break;
|
|
@@ -1074,7 +1129,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1074
1129
|
c.item("result", ((() => {
|
|
1075
1130
|
let $ret = new JsonDictionaryValue();
|
|
1076
1131
|
$ret.e = 2;
|
|
1077
|
-
$ret.value = this.
|
|
1132
|
+
$ret.value = this.ck(a);
|
|
1078
1133
|
return $ret;
|
|
1079
1134
|
})()));
|
|
1080
1135
|
break;
|
|
@@ -1093,19 +1148,19 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1093
1148
|
c.item("result", ((() => {
|
|
1094
1149
|
let $ret = new JsonDictionaryValue();
|
|
1095
1150
|
$ret.e = 2;
|
|
1096
|
-
$ret.value = this.
|
|
1151
|
+
$ret.value = this.co(a);
|
|
1097
1152
|
return $ret;
|
|
1098
1153
|
})()));
|
|
1099
1154
|
break;
|
|
1100
1155
|
case 12:
|
|
1101
|
-
c.item("result", this.
|
|
1156
|
+
c.item("result", this.cq(a));
|
|
1102
1157
|
break;
|
|
1103
1158
|
case 13: break;
|
|
1104
1159
|
case 14:
|
|
1105
1160
|
c.item("result", ((() => {
|
|
1106
1161
|
let $ret = new JsonDictionaryValue();
|
|
1107
1162
|
$ret.e = 2;
|
|
1108
|
-
$ret.value = this.
|
|
1163
|
+
$ret.value = this.cp(a);
|
|
1109
1164
|
return $ret;
|
|
1110
1165
|
})()));
|
|
1111
1166
|
break;
|
|
@@ -1114,7 +1169,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1114
1169
|
c.item("result", ((() => {
|
|
1115
1170
|
let $ret = new JsonDictionaryValue();
|
|
1116
1171
|
$ret.e = 2;
|
|
1117
|
-
$ret.value = this.
|
|
1172
|
+
$ret.value = this.cm(a);
|
|
1118
1173
|
return $ret;
|
|
1119
1174
|
})()));
|
|
1120
1175
|
break;
|
|
@@ -1126,7 +1181,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1126
1181
|
c.item("result", ((() => {
|
|
1127
1182
|
let $ret = new JsonDictionaryValue();
|
|
1128
1183
|
$ret.e = 2;
|
|
1129
|
-
$ret.value = this.
|
|
1184
|
+
$ret.value = this.cr(a);
|
|
1130
1185
|
return $ret;
|
|
1131
1186
|
})()));
|
|
1132
1187
|
break;
|
|
@@ -1135,41 +1190,41 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1135
1190
|
c.item("result", ((() => {
|
|
1136
1191
|
let $ret = new JsonDictionaryValue();
|
|
1137
1192
|
$ret.e = 2;
|
|
1138
|
-
$ret.value = this.
|
|
1193
|
+
$ret.value = this.cn(a);
|
|
1139
1194
|
return $ret;
|
|
1140
1195
|
})()));
|
|
1141
1196
|
break;
|
|
1142
1197
|
}
|
|
1143
1198
|
return c.b();
|
|
1144
1199
|
}
|
|
1145
|
-
|
|
1200
|
+
cn(a) {
|
|
1146
1201
|
return this.adapter.serializeDoubleCollection(a);
|
|
1147
1202
|
}
|
|
1148
|
-
|
|
1203
|
+
cr(a) {
|
|
1149
1204
|
return this.adapter.serializeTimespan(a);
|
|
1150
1205
|
}
|
|
1151
|
-
|
|
1206
|
+
cm(a) {
|
|
1152
1207
|
return this.adapter.serializeColorCollection(a);
|
|
1153
1208
|
}
|
|
1154
|
-
|
|
1209
|
+
cp(a) {
|
|
1155
1210
|
return this.adapter.serializeRect(a);
|
|
1156
1211
|
}
|
|
1157
|
-
|
|
1212
|
+
cq(a) {
|
|
1158
1213
|
return this.adapter.serializeSize(a);
|
|
1159
1214
|
}
|
|
1160
|
-
|
|
1215
|
+
co(a) {
|
|
1161
1216
|
return this.adapter.serializePoint(a);
|
|
1162
1217
|
}
|
|
1163
|
-
|
|
1218
|
+
ck(a) {
|
|
1164
1219
|
return this.adapter.serializeBrushCollection(a);
|
|
1165
1220
|
}
|
|
1166
|
-
|
|
1221
|
+
cl(a) {
|
|
1167
1222
|
return this.adapter.serializeColor(a);
|
|
1168
1223
|
}
|
|
1169
|
-
|
|
1224
|
+
cj(a) {
|
|
1170
1225
|
return this.adapter.serializeBrush(a);
|
|
1171
1226
|
}
|
|
1172
|
-
|
|
1227
|
+
i(a, b, c) {
|
|
1173
1228
|
let d = new DescriptionTreeAction();
|
|
1174
1229
|
d.a = 0;
|
|
1175
1230
|
d.c = a;
|
|
@@ -1177,20 +1232,54 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1177
1232
|
let e = new TypeDescriptionMetadata();
|
|
1178
1233
|
e.propertyName = "*argument";
|
|
1179
1234
|
let f;
|
|
1180
|
-
let g = this.
|
|
1235
|
+
let g = this.cy(b, "knownType");
|
|
1181
1236
|
let h = EnumUtil.tryParse$1(TypeDescriptionWellKnownType_$type, g, true, f);
|
|
1182
1237
|
f = h.p2;
|
|
1183
1238
|
e.knownType = f;
|
|
1184
|
-
e.specificExternalType = this.
|
|
1185
|
-
e.specificType = this.
|
|
1186
|
-
e.collectionElementType = this.
|
|
1239
|
+
e.specificExternalType = this.cy(b, "specificExternalType");
|
|
1240
|
+
e.specificType = this.cy(b, "specificType");
|
|
1241
|
+
e.collectionElementType = this.cy(b, "collectionElementType");
|
|
1187
1242
|
d.d = e;
|
|
1188
1243
|
let i = null;
|
|
1189
|
-
i = this.
|
|
1244
|
+
i = this.cc(e, b, c);
|
|
1190
1245
|
d.g = i;
|
|
1191
1246
|
return d;
|
|
1192
1247
|
}
|
|
1193
|
-
|
|
1248
|
+
h(a, b, c) {
|
|
1249
|
+
let d = new DescriptionTreeAction();
|
|
1250
|
+
d.a = 0;
|
|
1251
|
+
d.c = a;
|
|
1252
|
+
d.j = "*argument";
|
|
1253
|
+
let e = new TypeDescriptionMetadata();
|
|
1254
|
+
e.propertyName = "*argument";
|
|
1255
|
+
let f = b.ai;
|
|
1256
|
+
e.knownType = f;
|
|
1257
|
+
e.specificExternalType = b.ao;
|
|
1258
|
+
e.specificType = b.ap;
|
|
1259
|
+
e.collectionElementType = b.an;
|
|
1260
|
+
d.d = e;
|
|
1261
|
+
let g = this.b8(e.knownType, e.specificType, e.specificExternalType, e.collectionElementType, b.ag, c);
|
|
1262
|
+
d.g = g;
|
|
1263
|
+
return d;
|
|
1264
|
+
}
|
|
1265
|
+
j(a, b) {
|
|
1266
|
+
let c = new DescriptionTreeAction();
|
|
1267
|
+
c.a = 0;
|
|
1268
|
+
c.c = a;
|
|
1269
|
+
c.j = "*argument";
|
|
1270
|
+
let d = new TypeDescriptionMetadata();
|
|
1271
|
+
d.propertyName = "*argument";
|
|
1272
|
+
let e = b.z;
|
|
1273
|
+
d.knownType = e;
|
|
1274
|
+
d.specificExternalType = b.af;
|
|
1275
|
+
d.specificType = b.ag;
|
|
1276
|
+
d.collectionElementType = b.ae;
|
|
1277
|
+
c.d = d;
|
|
1278
|
+
let f = null;
|
|
1279
|
+
c.g = f;
|
|
1280
|
+
return c;
|
|
1281
|
+
}
|
|
1282
|
+
cy(a, b) {
|
|
1194
1283
|
if (typeCast(JsonDictionaryObject.$, a) !== null) {
|
|
1195
1284
|
let c = a;
|
|
1196
1285
|
if (c.g(b)) {
|
|
@@ -1199,17 +1288,17 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1199
1288
|
}
|
|
1200
1289
|
return null;
|
|
1201
1290
|
}
|
|
1202
|
-
|
|
1291
|
+
cc(a, b, c) {
|
|
1203
1292
|
if (typeCast(JsonDictionaryObject.$, b) !== null) {
|
|
1204
1293
|
let d = b;
|
|
1205
1294
|
if (d.g("value")) {
|
|
1206
1295
|
let e = (d.item("value")) != null ? (d.item("value")) : null;
|
|
1207
|
-
return this.
|
|
1296
|
+
return this.b8(a.knownType, a.specificType, a.specificExternalType, a.collectionElementType, e, c);
|
|
1208
1297
|
}
|
|
1209
1298
|
}
|
|
1210
1299
|
return null;
|
|
1211
1300
|
}
|
|
1212
|
-
|
|
1301
|
+
b8(a, b, c, d, e, f) {
|
|
1213
1302
|
if (typeCast(JsonDictionaryObject.$, e) !== null) {
|
|
1214
1303
|
let g = e;
|
|
1215
1304
|
if (g.g("type") || g.g("refType")) {
|
|
@@ -1225,15 +1314,15 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1225
1314
|
}
|
|
1226
1315
|
else if (a == 11) {
|
|
1227
1316
|
let j = DescriptionSerializer.k(this.context, g);
|
|
1228
|
-
return
|
|
1317
|
+
return j;
|
|
1229
1318
|
}
|
|
1230
1319
|
else if (a == 14) {
|
|
1231
1320
|
let k = DescriptionSerializer.k(this.context, g);
|
|
1232
|
-
return
|
|
1321
|
+
return k;
|
|
1233
1322
|
}
|
|
1234
1323
|
else if (a == 12) {
|
|
1235
1324
|
let l = DescriptionSerializer.k(this.context, g);
|
|
1236
|
-
return
|
|
1325
|
+
return l;
|
|
1237
1326
|
}
|
|
1238
1327
|
}
|
|
1239
1328
|
else if (typeCast(JsonDictionaryArray.$, e) !== null) {
|
|
@@ -1248,11 +1337,11 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1248
1337
|
n = d;
|
|
1249
1338
|
}
|
|
1250
1339
|
let p = new Array(m.items.length);
|
|
1251
|
-
let q;
|
|
1340
|
+
let q = 17;
|
|
1252
1341
|
let r;
|
|
1253
1342
|
let s;
|
|
1254
1343
|
let t;
|
|
1255
|
-
let u = this.
|
|
1344
|
+
let u = this.dq(o, n, b, c, q, r, s, t);
|
|
1256
1345
|
q = u.p4;
|
|
1257
1346
|
r = u.p5;
|
|
1258
1347
|
s = u.p6;
|
|
@@ -1260,18 +1349,31 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1260
1349
|
if (m.items != null) {
|
|
1261
1350
|
for (let v = 0; v < m.items.length; v++) {
|
|
1262
1351
|
let w = m.items[v];
|
|
1263
|
-
let x = this.
|
|
1352
|
+
let x = this.b8(q, r, s, t, w, f);
|
|
1264
1353
|
p[v] = x;
|
|
1265
1354
|
}
|
|
1266
1355
|
}
|
|
1267
1356
|
return p;
|
|
1268
1357
|
}
|
|
1269
1358
|
else if (typeCast(JsonDictionaryValue.$, e) !== null) {
|
|
1270
|
-
|
|
1359
|
+
let y = e;
|
|
1360
|
+
if (y.e == 0) {
|
|
1361
|
+
switch (c) {
|
|
1362
|
+
case "int": return truncate(y.value);
|
|
1363
|
+
case "short": return truncate(y.value);
|
|
1364
|
+
case "long": return truncate(y.value);
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1367
|
+
else if (y.e == 2) {
|
|
1368
|
+
if (c == "DateTime") {
|
|
1369
|
+
return dateParse(y.value);
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
return y.value;
|
|
1271
1373
|
}
|
|
1272
1374
|
return e;
|
|
1273
1375
|
}
|
|
1274
|
-
|
|
1376
|
+
dq(a, b, c, d, e, f, g, h) {
|
|
1275
1377
|
if (a) {
|
|
1276
1378
|
e = 8;
|
|
1277
1379
|
f = b;
|
|
@@ -1319,8 +1421,8 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1319
1421
|
};
|
|
1320
1422
|
case "int":
|
|
1321
1423
|
e = 1;
|
|
1322
|
-
f = "
|
|
1323
|
-
g = "
|
|
1424
|
+
f = "int";
|
|
1425
|
+
g = "int";
|
|
1324
1426
|
return {
|
|
1325
1427
|
p4: e,
|
|
1326
1428
|
p5: f,
|
|
@@ -1359,21 +1461,21 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1359
1461
|
};
|
|
1360
1462
|
}
|
|
1361
1463
|
resolveRefValue(a, b, c) {
|
|
1362
|
-
this.
|
|
1363
|
-
if (!this.
|
|
1364
|
-
this.
|
|
1464
|
+
this.dw(a, () => {
|
|
1465
|
+
if (!this.ba.containsKey(a)) {
|
|
1466
|
+
this.ba.addItem(a, ((() => {
|
|
1365
1467
|
let $ret = new ContainerState();
|
|
1366
1468
|
$ret.i = a;
|
|
1367
1469
|
return $ret;
|
|
1368
1470
|
})()));
|
|
1369
1471
|
}
|
|
1370
|
-
let d = this.
|
|
1472
|
+
let d = this.ba.item(a);
|
|
1371
1473
|
if (!this.hasRef(b)) {
|
|
1372
|
-
if (this.
|
|
1373
|
-
c(this.
|
|
1474
|
+
if (this.bb.containsKey(b)) {
|
|
1475
|
+
c(this.bb.item(b));
|
|
1374
1476
|
return;
|
|
1375
1477
|
}
|
|
1376
|
-
if (!this.
|
|
1478
|
+
if (!this.aa(a)) {
|
|
1377
1479
|
this.queueForIdle(a, () => this.resolveRefValue(a, b, c));
|
|
1378
1480
|
return;
|
|
1379
1481
|
}
|
|
@@ -1381,220 +1483,220 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1381
1483
|
return;
|
|
1382
1484
|
}
|
|
1383
1485
|
let e = this.g(b);
|
|
1384
|
-
let f = this.
|
|
1486
|
+
let f = this.cf(e);
|
|
1385
1487
|
c(f);
|
|
1386
1488
|
});
|
|
1387
1489
|
}
|
|
1388
1490
|
resolveRefName(a, b, c) {
|
|
1389
|
-
this.
|
|
1390
|
-
if (!this.
|
|
1391
|
-
this.
|
|
1491
|
+
this.dw(a, () => {
|
|
1492
|
+
if (!this.ba.containsKey(a)) {
|
|
1493
|
+
this.ba.addItem(a, ((() => {
|
|
1392
1494
|
let $ret = new ContainerState();
|
|
1393
1495
|
$ret.i = a;
|
|
1394
1496
|
return $ret;
|
|
1395
1497
|
})()));
|
|
1396
1498
|
}
|
|
1397
|
-
let d = this.
|
|
1398
|
-
if (b != null && this.
|
|
1399
|
-
c(this.
|
|
1499
|
+
let d = this.ba.item(a);
|
|
1500
|
+
if (b != null && this.a8.containsKey(b)) {
|
|
1501
|
+
c(this.a8.item(b));
|
|
1400
1502
|
return;
|
|
1401
1503
|
}
|
|
1402
1504
|
c(null);
|
|
1403
1505
|
});
|
|
1404
1506
|
}
|
|
1405
1507
|
provideRefValue(a, b, c) {
|
|
1406
|
-
this.
|
|
1407
|
-
if (!this.
|
|
1408
|
-
this.
|
|
1508
|
+
this.dw(a, () => {
|
|
1509
|
+
if (!this.ba.containsKey(a)) {
|
|
1510
|
+
this.ba.addItem(a, ((() => {
|
|
1409
1511
|
let $ret = new ContainerState();
|
|
1410
1512
|
$ret.i = a;
|
|
1411
1513
|
return $ret;
|
|
1412
1514
|
})()));
|
|
1413
1515
|
}
|
|
1414
|
-
let d = this.
|
|
1415
|
-
this.
|
|
1516
|
+
let d = this.ba.item(a);
|
|
1517
|
+
this.d0(a, b, c, true);
|
|
1416
1518
|
});
|
|
1417
1519
|
}
|
|
1418
1520
|
removeRefValue(a, b) {
|
|
1419
|
-
this.
|
|
1420
|
-
if (!this.
|
|
1421
|
-
this.
|
|
1521
|
+
this.dw(a, () => {
|
|
1522
|
+
if (!this.ba.containsKey(a)) {
|
|
1523
|
+
this.ba.addItem(a, ((() => {
|
|
1422
1524
|
let $ret = new ContainerState();
|
|
1423
1525
|
$ret.i = a;
|
|
1424
1526
|
return $ret;
|
|
1425
1527
|
})()));
|
|
1426
1528
|
}
|
|
1427
|
-
let c = this.
|
|
1529
|
+
let c = this.ba.item(a);
|
|
1428
1530
|
this.removeRefValueCore(a, b, true);
|
|
1429
1531
|
});
|
|
1430
1532
|
}
|
|
1431
|
-
|
|
1432
|
-
let b = this.
|
|
1533
|
+
ef(a) {
|
|
1534
|
+
let b = this.ba.item(a);
|
|
1433
1535
|
let c = new List$1(String_$type, 0);
|
|
1434
|
-
for (let d of fromEnum(this.
|
|
1435
|
-
if (this.
|
|
1536
|
+
for (let d of fromEnum(this.a9.keys)) {
|
|
1537
|
+
if (this.a9.item(d).c == 0) {
|
|
1436
1538
|
c.add(d);
|
|
1437
1539
|
}
|
|
1438
1540
|
}
|
|
1439
1541
|
for (let e = 0; e < c.count; e++) {
|
|
1440
1542
|
let f = this.shouldNamespaceSystemRefValues;
|
|
1441
1543
|
this.shouldNamespaceSystemRefValues = false;
|
|
1442
|
-
this.removeRefValueCore(a, c._inner[e], this.
|
|
1544
|
+
this.removeRefValueCore(a, c._inner[e], this.bd.containsKey(c._inner[e]));
|
|
1443
1545
|
this.shouldNamespaceSystemRefValues = f;
|
|
1444
|
-
if (this.
|
|
1445
|
-
for (let g = 0; g < this.
|
|
1446
|
-
this.
|
|
1546
|
+
if (this.bf != null && this.bf.count > 0) {
|
|
1547
|
+
for (let g = 0; g < this.bf.count; g++) {
|
|
1548
|
+
this.bf._inner[g](a, c._inner[e]);
|
|
1447
1549
|
}
|
|
1448
1550
|
}
|
|
1449
1551
|
}
|
|
1450
1552
|
}
|
|
1451
1553
|
clearRefValues(a) {
|
|
1452
|
-
this.
|
|
1453
|
-
if (!this.
|
|
1454
|
-
this.
|
|
1554
|
+
this.dw(a, () => {
|
|
1555
|
+
if (!this.ba.containsKey(a)) {
|
|
1556
|
+
this.ba.addItem(a, ((() => {
|
|
1455
1557
|
let $ret = new ContainerState();
|
|
1456
1558
|
$ret.i = a;
|
|
1457
1559
|
return $ret;
|
|
1458
1560
|
})()));
|
|
1459
1561
|
}
|
|
1460
|
-
let b = this.
|
|
1562
|
+
let b = this.ba.item(a);
|
|
1461
1563
|
this.clearUserRefValues();
|
|
1462
1564
|
});
|
|
1463
1565
|
}
|
|
1464
|
-
|
|
1465
|
-
if (this.
|
|
1566
|
+
aa(a) {
|
|
1567
|
+
if (this.ay.containsKey(a) && this.ay.item(a)) {
|
|
1466
1568
|
return false;
|
|
1467
1569
|
}
|
|
1468
|
-
if (this.
|
|
1570
|
+
if (this.a7.containsKey(a) && this.a7.item(a).count > 0) {
|
|
1469
1571
|
return false;
|
|
1470
1572
|
}
|
|
1471
1573
|
return true;
|
|
1472
1574
|
}
|
|
1473
1575
|
queueForIdle(a, b) {
|
|
1474
|
-
this.
|
|
1475
|
-
if (this.
|
|
1576
|
+
this.dw(a, () => {
|
|
1577
|
+
if (this.aa(a)) {
|
|
1476
1578
|
b();
|
|
1477
1579
|
}
|
|
1478
1580
|
else {
|
|
1479
|
-
if (!this.
|
|
1480
|
-
this.
|
|
1581
|
+
if (!this.a0.containsKey(a)) {
|
|
1582
|
+
this.a0.item(a, new List$1(Delegate_$type, 0));
|
|
1481
1583
|
}
|
|
1482
|
-
this.
|
|
1584
|
+
this.a0.item(a).add(b);
|
|
1483
1585
|
}
|
|
1484
1586
|
});
|
|
1485
1587
|
}
|
|
1486
1588
|
tryFlushIdleActions(a) {
|
|
1487
|
-
if (this.
|
|
1488
|
-
if (this.
|
|
1489
|
-
let b = new List$1(Delegate_$type, 1, this.
|
|
1490
|
-
this.
|
|
1589
|
+
if (this.aa(a)) {
|
|
1590
|
+
if (this.a0.containsKey(a)) {
|
|
1591
|
+
let b = new List$1(Delegate_$type, 1, this.a0.item(a));
|
|
1592
|
+
this.a0.item(a).clear();
|
|
1491
1593
|
for (let c = 0; c < b.count; c++) {
|
|
1492
1594
|
b._inner[c]();
|
|
1493
1595
|
}
|
|
1494
1596
|
}
|
|
1495
1597
|
}
|
|
1496
1598
|
}
|
|
1497
|
-
ed(a, b) {
|
|
1498
|
-
let c = this.a8.item(a);
|
|
1499
|
-
this.du(a, c, b);
|
|
1500
|
-
}
|
|
1501
1599
|
ei(a, b) {
|
|
1600
|
+
let c = this.ba.item(a);
|
|
1601
|
+
this.dx(a, c, b);
|
|
1602
|
+
}
|
|
1603
|
+
en(a, b) {
|
|
1502
1604
|
if (this.isProceedOnErrorEnabled) {
|
|
1503
1605
|
try {
|
|
1504
|
-
this.
|
|
1606
|
+
this.dk(a, b, true);
|
|
1505
1607
|
}
|
|
1506
1608
|
catch (c) {
|
|
1507
|
-
this.
|
|
1609
|
+
this.ay.item(a, false);
|
|
1508
1610
|
}
|
|
1509
1611
|
}
|
|
1510
1612
|
else {
|
|
1511
|
-
this.
|
|
1613
|
+
this.dk(a, b, true);
|
|
1512
1614
|
}
|
|
1513
1615
|
}
|
|
1514
|
-
|
|
1616
|
+
eu(a, b) {
|
|
1515
1617
|
if (this.isProceedOnErrorEnabled) {
|
|
1516
1618
|
try {
|
|
1517
|
-
this.
|
|
1619
|
+
this.dk(a, b, false);
|
|
1518
1620
|
}
|
|
1519
1621
|
catch (c) {
|
|
1520
|
-
this.
|
|
1622
|
+
this.ay.item(a, false);
|
|
1521
1623
|
}
|
|
1522
1624
|
}
|
|
1523
1625
|
else {
|
|
1524
|
-
this.
|
|
1626
|
+
this.dk(a, b, false);
|
|
1525
1627
|
}
|
|
1526
1628
|
}
|
|
1527
|
-
|
|
1629
|
+
dk(a, b, c) {
|
|
1528
1630
|
if (!c) {
|
|
1529
|
-
if (this.
|
|
1631
|
+
if (this.ay.containsKey(a) && this.ay.item(a)) {
|
|
1530
1632
|
return;
|
|
1531
1633
|
}
|
|
1532
1634
|
}
|
|
1533
|
-
this.
|
|
1635
|
+
this.ay.item(a, true);
|
|
1534
1636
|
let d = true;
|
|
1535
|
-
while (d && this.
|
|
1536
|
-
while (this.
|
|
1537
|
-
this.
|
|
1637
|
+
while (d && this.a7.item(a).count > 0) {
|
|
1638
|
+
while (this.a7.item(a).count > 0 && this.a7.item(a).c().count < 1) {
|
|
1639
|
+
this.a7.item(a).b();
|
|
1538
1640
|
}
|
|
1539
|
-
if (this.
|
|
1641
|
+
if (this.a7.item(a).count < 1) {
|
|
1540
1642
|
break;
|
|
1541
1643
|
}
|
|
1542
|
-
let e = this.
|
|
1644
|
+
let e = this.a7.item(a).c();
|
|
1543
1645
|
while (e.count > 0) {
|
|
1544
1646
|
let f = e.b();
|
|
1545
|
-
d = this.
|
|
1647
|
+
d = this.af(a, b, f);
|
|
1546
1648
|
if (!d) {
|
|
1547
1649
|
break;
|
|
1548
1650
|
}
|
|
1549
1651
|
}
|
|
1550
1652
|
}
|
|
1551
1653
|
if (d) {
|
|
1552
|
-
this.
|
|
1654
|
+
this.ay.item(a, false);
|
|
1553
1655
|
}
|
|
1554
|
-
if (this.
|
|
1656
|
+
if (this.aa(a)) {
|
|
1555
1657
|
this.tryFlushIdleActions(a);
|
|
1556
1658
|
}
|
|
1557
1659
|
}
|
|
1558
|
-
|
|
1660
|
+
dx(a, b, c) {
|
|
1559
1661
|
let d = new Queue$1(DescriptionTreeAction.$);
|
|
1560
1662
|
for (let e = 0; e < c.count; e++) {
|
|
1561
1663
|
d.g(c._inner[e]);
|
|
1562
1664
|
}
|
|
1563
|
-
if (!this.
|
|
1564
|
-
this.
|
|
1665
|
+
if (!this.a7.containsKey(a)) {
|
|
1666
|
+
this.a7.addItem(a, new Queue$1(Queue$1.$.specialize(DescriptionTreeAction.$)));
|
|
1565
1667
|
}
|
|
1566
|
-
this.
|
|
1567
|
-
this.
|
|
1668
|
+
this.a7.item(a).g(d);
|
|
1669
|
+
this.eu(a, b);
|
|
1568
1670
|
}
|
|
1569
|
-
|
|
1671
|
+
dy(a, b, c) {
|
|
1570
1672
|
for (let d = 0; d < c.count; d++) {
|
|
1571
|
-
this.
|
|
1673
|
+
this.af(a, b, c._inner[d]);
|
|
1572
1674
|
}
|
|
1573
1675
|
}
|
|
1574
|
-
|
|
1676
|
+
af(a, b, c) {
|
|
1575
1677
|
switch (c.a) {
|
|
1576
|
-
case 5: return this.
|
|
1577
|
-
case 2: return this.
|
|
1578
|
-
case 4: return this.
|
|
1579
|
-
case 3: return this.
|
|
1580
|
-
case 1: return this.
|
|
1581
|
-
case 0: return this.
|
|
1678
|
+
case 5: return this.ag(a, b, c);
|
|
1679
|
+
case 2: return this.ah(a, b, c);
|
|
1680
|
+
case 4: return this.am(a, b, c);
|
|
1681
|
+
case 3: return this.an(a, b, c);
|
|
1682
|
+
case 1: return this.ao(a, b, c);
|
|
1683
|
+
case 0: return this.aq(a, b, c);
|
|
1582
1684
|
}
|
|
1583
1685
|
return true;
|
|
1584
1686
|
}
|
|
1585
|
-
|
|
1586
|
-
let d = this.
|
|
1587
|
-
this.
|
|
1687
|
+
aq(a, b, c) {
|
|
1688
|
+
let d = this.cg(a, b, c);
|
|
1689
|
+
this.ax(a, b, c, d);
|
|
1588
1690
|
return true;
|
|
1589
1691
|
}
|
|
1590
|
-
|
|
1591
|
-
let e = this.
|
|
1592
|
-
e = this.
|
|
1692
|
+
ax(a, b, c, d) {
|
|
1693
|
+
let e = this.cd(c, a, b);
|
|
1694
|
+
e = this.m.transform(ComponentRenderer.platform, e, c);
|
|
1593
1695
|
let f = false;
|
|
1594
|
-
if (this.
|
|
1595
|
-
for (let g = 0; g < this.
|
|
1596
|
-
let h = this.
|
|
1597
|
-
let i = this.
|
|
1696
|
+
if (this.bk != null && this.bk.count > 0) {
|
|
1697
|
+
for (let g = 0; g < this.bk.count; g++) {
|
|
1698
|
+
let h = this.bk._inner[g];
|
|
1699
|
+
let i = this.c1(a, c);
|
|
1598
1700
|
if (h(i, d, e)) {
|
|
1599
1701
|
f = true;
|
|
1600
1702
|
}
|
|
@@ -1607,18 +1709,18 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1607
1709
|
return true;
|
|
1608
1710
|
}
|
|
1609
1711
|
if (c.d != null && c.d.knownType == 9) {
|
|
1610
|
-
this.
|
|
1712
|
+
this.au(a, b, c.i(ComponentRenderer.platform), c.d, e, d);
|
|
1611
1713
|
}
|
|
1612
1714
|
else {
|
|
1613
|
-
this.
|
|
1715
|
+
this.er(a, b, c.i(ComponentRenderer.platform), c.d, e, c.h, d);
|
|
1614
1716
|
}
|
|
1615
1717
|
return true;
|
|
1616
1718
|
}
|
|
1617
|
-
|
|
1719
|
+
c1(a, b) {
|
|
1618
1720
|
let c = b.c;
|
|
1619
1721
|
let d = "";
|
|
1620
|
-
if (c != this.
|
|
1621
|
-
let e = this.
|
|
1722
|
+
if (c != this.az.item(a)) {
|
|
1723
|
+
let e = this.cz(a, c);
|
|
1622
1724
|
d = e;
|
|
1623
1725
|
}
|
|
1624
1726
|
if (d.length > 0) {
|
|
@@ -1627,17 +1729,17 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1627
1729
|
d += b.j;
|
|
1628
1730
|
return d;
|
|
1629
1731
|
}
|
|
1630
|
-
|
|
1732
|
+
cz(a, b) {
|
|
1631
1733
|
if (b == null) {
|
|
1632
1734
|
return "";
|
|
1633
1735
|
}
|
|
1634
|
-
let c = this.
|
|
1736
|
+
let c = this.c6("", this.az.item(a), b);
|
|
1635
1737
|
if (c.c) {
|
|
1636
1738
|
return c.d;
|
|
1637
1739
|
}
|
|
1638
1740
|
return "";
|
|
1639
1741
|
}
|
|
1640
|
-
|
|
1742
|
+
c6(a, b, c) {
|
|
1641
1743
|
if (b == c) {
|
|
1642
1744
|
return new Tuple$2(Boolean_$type, String_$type, true, a);
|
|
1643
1745
|
}
|
|
@@ -1654,7 +1756,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1654
1756
|
}
|
|
1655
1757
|
else {
|
|
1656
1758
|
let g = a + f.c;
|
|
1657
|
-
let h = this.
|
|
1759
|
+
let h = this.c6(g, f.b, c);
|
|
1658
1760
|
if (h.c) {
|
|
1659
1761
|
return h;
|
|
1660
1762
|
}
|
|
@@ -1671,7 +1773,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1671
1773
|
}
|
|
1672
1774
|
else {
|
|
1673
1775
|
let l = a + f.c + "[" + j + "]";
|
|
1674
|
-
let m = this.
|
|
1776
|
+
let m = this.c6(l, k, c);
|
|
1675
1777
|
if (m.c) {
|
|
1676
1778
|
return m;
|
|
1677
1779
|
}
|
|
@@ -1682,52 +1784,52 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1682
1784
|
}
|
|
1683
1785
|
return new Tuple$2(Boolean_$type, String_$type, false, a);
|
|
1684
1786
|
}
|
|
1685
|
-
|
|
1686
|
-
if (this.
|
|
1687
|
-
for (let g of fromEnum(this.
|
|
1787
|
+
au(a, b, c, d, e, f) {
|
|
1788
|
+
if (this.bc.containsKey(c)) {
|
|
1789
|
+
for (let g of fromEnum(this.bc.item(c))) {
|
|
1688
1790
|
g(c, f, e);
|
|
1689
1791
|
}
|
|
1690
1792
|
}
|
|
1691
1793
|
this.adapter.setOrUpdateCollectionOnTarget(a, c, d, this.context, f, e);
|
|
1692
1794
|
return true;
|
|
1693
1795
|
}
|
|
1694
|
-
|
|
1796
|
+
cd(a, b, c) {
|
|
1695
1797
|
if (a.d == null) {
|
|
1696
1798
|
return a.g;
|
|
1697
1799
|
}
|
|
1698
1800
|
switch (a.d.knownType) {
|
|
1699
|
-
case 10: return this.
|
|
1700
|
-
case 7: return this.
|
|
1701
|
-
case 4: return this.
|
|
1702
|
-
case 6: return this.
|
|
1703
|
-
case 23: return this.
|
|
1704
|
-
case 9: return this.
|
|
1705
|
-
case 5: return this.
|
|
1706
|
-
case 16: return this.
|
|
1707
|
-
case 20: return this.
|
|
1708
|
-
case 22: return this.
|
|
1801
|
+
case 10: return this.bq(a, b, c);
|
|
1802
|
+
case 7: return this.br(a);
|
|
1803
|
+
case 4: return this.bs(a);
|
|
1804
|
+
case 6: return this.bt(a);
|
|
1805
|
+
case 23: return this.bx(a);
|
|
1806
|
+
case 9: return this.bq(a, b, c);
|
|
1807
|
+
case 5: return this.bu(a);
|
|
1808
|
+
case 16: return this.bv(a);
|
|
1809
|
+
case 20: return this.cs(a, c);
|
|
1810
|
+
case 22: return this.cv(a, c);
|
|
1709
1811
|
case 15: return null;
|
|
1710
|
-
case 3: return this.
|
|
1711
|
-
case 19: return this.
|
|
1712
|
-
case 8: return this.
|
|
1812
|
+
case 3: return this.bw(a);
|
|
1813
|
+
case 19: return this.ct(a, c);
|
|
1814
|
+
case 8: return this.bz(a, b, c);
|
|
1713
1815
|
case 13: return null;
|
|
1714
|
-
case 18: return this.
|
|
1715
|
-
case 1: return this.
|
|
1716
|
-
case 11: return this.
|
|
1717
|
-
case 14: return this.
|
|
1718
|
-
case 12: return this.
|
|
1719
|
-
case 2: return this.
|
|
1720
|
-
case 21: return this.
|
|
1721
|
-
case 17: return this.
|
|
1816
|
+
case 18: return this.cu(a, c);
|
|
1817
|
+
case 1: return this.b0(a);
|
|
1818
|
+
case 11: return this.b1(a);
|
|
1819
|
+
case 14: return this.b2(a);
|
|
1820
|
+
case 12: return this.b3(a);
|
|
1821
|
+
case 2: return this.b4(a);
|
|
1822
|
+
case 21: return this.b5(a);
|
|
1823
|
+
case 17: return this.b6(a, b, c);
|
|
1722
1824
|
case 0: return null;
|
|
1723
1825
|
}
|
|
1724
1826
|
return null;
|
|
1725
1827
|
}
|
|
1726
|
-
|
|
1727
|
-
let d = this.
|
|
1828
|
+
b6(a, b, c) {
|
|
1829
|
+
let d = this.b7(a.g, a, b, c);
|
|
1728
1830
|
return d;
|
|
1729
1831
|
}
|
|
1730
|
-
|
|
1832
|
+
b7(a, b, c, d) {
|
|
1731
1833
|
if (typeof a === 'string') {
|
|
1732
1834
|
if (stringStartsWith(a, "@d:")) {
|
|
1733
1835
|
let v_ = a.substr(3);
|
|
@@ -1738,7 +1840,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1738
1840
|
let e = a;
|
|
1739
1841
|
let f = new Array(e.length);
|
|
1740
1842
|
for (let g = 0; g < e.length; g++) {
|
|
1741
|
-
let h = this.
|
|
1843
|
+
let h = this.b7(e[g], b, c, d);
|
|
1742
1844
|
f[g] = h;
|
|
1743
1845
|
}
|
|
1744
1846
|
a = f;
|
|
@@ -1746,25 +1848,25 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1746
1848
|
if (typeCast(DescriptionTreeNode.$, a) !== null) {
|
|
1747
1849
|
let i = a;
|
|
1748
1850
|
if (i.i == "EmbeddedRef") {
|
|
1749
|
-
return this.
|
|
1851
|
+
return this.ca(i.i, a, c, d, false, b.c.g, b.d);
|
|
1750
1852
|
}
|
|
1751
1853
|
}
|
|
1752
1854
|
return a;
|
|
1753
1855
|
}
|
|
1754
|
-
|
|
1856
|
+
b5(a) {
|
|
1755
1857
|
return a.g;
|
|
1756
1858
|
}
|
|
1757
|
-
|
|
1859
|
+
b4(a) {
|
|
1758
1860
|
return a.g != null ? a.g.toString() : null;
|
|
1759
1861
|
}
|
|
1760
|
-
|
|
1862
|
+
b3(a) {
|
|
1761
1863
|
let b = a.g;
|
|
1762
1864
|
let width_ = b.width;
|
|
1763
1865
|
let height_ = b.height;
|
|
1764
1866
|
let c = { width: width_, height: height_ };
|
|
1765
1867
|
return c;
|
|
1766
1868
|
}
|
|
1767
|
-
|
|
1869
|
+
b2(a) {
|
|
1768
1870
|
let b = a.g;
|
|
1769
1871
|
let top_ = b.top;
|
|
1770
1872
|
let left_ = b.left;
|
|
@@ -1773,14 +1875,14 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1773
1875
|
let c = { left: left_, top: top_, width: width_, height: height_ };
|
|
1774
1876
|
return c;
|
|
1775
1877
|
}
|
|
1776
|
-
|
|
1878
|
+
b1(a) {
|
|
1777
1879
|
let b = a.g;
|
|
1778
1880
|
let x_ = b.x;
|
|
1779
1881
|
let y_ = b.y;
|
|
1780
1882
|
let c = { x: x_, y: y_ };
|
|
1781
1883
|
return c;
|
|
1782
1884
|
}
|
|
1783
|
-
|
|
1885
|
+
b0(a) {
|
|
1784
1886
|
if (a.g == null) {
|
|
1785
1887
|
if (a.d != null && ((a.d.specificType == "double" || a.d.specificType == "float") || (a.d.specificExternalType == "double" || a.d.specificExternalType == "float"))) {
|
|
1786
1888
|
return NaN;
|
|
@@ -1810,18 +1912,18 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1810
1912
|
return b;
|
|
1811
1913
|
}
|
|
1812
1914
|
f(a) {
|
|
1813
|
-
if (this.
|
|
1814
|
-
let b = this.
|
|
1915
|
+
if (this.a9.containsKey(a)) {
|
|
1916
|
+
let b = this.a9.item(a);
|
|
1815
1917
|
return b;
|
|
1816
1918
|
}
|
|
1817
1919
|
let c = new DescriptionRef(a);
|
|
1818
|
-
this.
|
|
1920
|
+
this.a9.addItem(a, c);
|
|
1819
1921
|
return c;
|
|
1820
1922
|
}
|
|
1821
|
-
|
|
1923
|
+
cu(a, b) {
|
|
1822
1924
|
return a.g == null ? null : this.f(a.g);
|
|
1823
1925
|
}
|
|
1824
|
-
|
|
1926
|
+
bz(a, b, c) {
|
|
1825
1927
|
let d = a.d.specificType;
|
|
1826
1928
|
if (d == null) {
|
|
1827
1929
|
d = a.d.specificExternalType;
|
|
@@ -1832,54 +1934,54 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1832
1934
|
d = e.a("Type").b;
|
|
1833
1935
|
}
|
|
1834
1936
|
}
|
|
1835
|
-
let f = this.
|
|
1937
|
+
let f = this.ca(d, a.g, b, c, false, a.c.g, a.d);
|
|
1836
1938
|
return f;
|
|
1837
1939
|
}
|
|
1838
|
-
|
|
1940
|
+
ct(a, b) {
|
|
1839
1941
|
return a.g == null ? null : this.f(a.g);
|
|
1840
1942
|
}
|
|
1841
|
-
|
|
1943
|
+
bw(a) {
|
|
1842
1944
|
if (typeof a.g === 'string') {
|
|
1843
1945
|
let v_ = a.g;
|
|
1844
1946
|
a.g = new Date(v_);
|
|
1845
1947
|
}
|
|
1846
1948
|
return a.g;
|
|
1847
1949
|
}
|
|
1848
|
-
|
|
1950
|
+
cs(a, b) {
|
|
1849
1951
|
return a.g == null ? null : this.f(a.g);
|
|
1850
1952
|
}
|
|
1851
|
-
|
|
1953
|
+
cv(a, b) {
|
|
1852
1954
|
return a.g == null ? null : this.f(a.g);
|
|
1853
1955
|
}
|
|
1854
|
-
|
|
1956
|
+
cx(a) {
|
|
1855
1957
|
return a;
|
|
1856
1958
|
}
|
|
1857
|
-
|
|
1959
|
+
bv(a) {
|
|
1858
1960
|
let b = a.g;
|
|
1859
1961
|
if (b == null) {
|
|
1860
1962
|
return null;
|
|
1861
1963
|
}
|
|
1862
1964
|
let c = new Array(b.length);
|
|
1863
1965
|
for (let d = 0; d < b.length; d++) {
|
|
1864
|
-
c[d] = this.
|
|
1966
|
+
c[d] = this.cx(b[d]);
|
|
1865
1967
|
}
|
|
1866
1968
|
return c;
|
|
1867
1969
|
}
|
|
1868
|
-
|
|
1869
|
-
return this.
|
|
1970
|
+
bu(a) {
|
|
1971
|
+
return this.cx(a.g);
|
|
1870
1972
|
}
|
|
1871
|
-
|
|
1973
|
+
bt(a) {
|
|
1872
1974
|
let b = a.g;
|
|
1873
1975
|
if (b == null) {
|
|
1874
1976
|
return null;
|
|
1875
1977
|
}
|
|
1876
1978
|
let c = new Array(b.length);
|
|
1877
1979
|
for (let d = 0; d < b.length; d++) {
|
|
1878
|
-
c[d] = this.
|
|
1980
|
+
c[d] = this.cw(b[d]);
|
|
1879
1981
|
}
|
|
1880
1982
|
return c;
|
|
1881
1983
|
}
|
|
1882
|
-
|
|
1984
|
+
bx(a) {
|
|
1883
1985
|
let b = a.g;
|
|
1884
1986
|
if (b == null) {
|
|
1885
1987
|
return null;
|
|
@@ -1890,59 +1992,59 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1890
1992
|
}
|
|
1891
1993
|
return c;
|
|
1892
1994
|
}
|
|
1893
|
-
|
|
1995
|
+
cw(a) {
|
|
1894
1996
|
return a;
|
|
1895
1997
|
}
|
|
1896
|
-
|
|
1897
|
-
return this.
|
|
1998
|
+
bs(a) {
|
|
1999
|
+
return this.cw(a.g);
|
|
1898
2000
|
}
|
|
1899
|
-
|
|
2001
|
+
br(a) {
|
|
1900
2002
|
return a.g;
|
|
1901
2003
|
}
|
|
1902
2004
|
addTargetPropertyUpdatingListener(a) {
|
|
1903
|
-
this.
|
|
2005
|
+
this.bk.add(a);
|
|
1904
2006
|
}
|
|
1905
2007
|
removeTargetPropertyUpdatingListener(a) {
|
|
1906
|
-
this.
|
|
2008
|
+
this.bk.remove(a);
|
|
1907
2009
|
}
|
|
1908
2010
|
addPropertyUpdatingListener(a, b) {
|
|
1909
|
-
if (!this.
|
|
1910
|
-
this.
|
|
2011
|
+
if (!this.bc.containsKey(a)) {
|
|
2012
|
+
this.bc.addItem(a, new List$1(Delegate_$type, 0));
|
|
1911
2013
|
}
|
|
1912
|
-
this.
|
|
2014
|
+
this.bc.item(a).add(b);
|
|
1913
2015
|
}
|
|
1914
2016
|
addReferenceLookupListener(a) {
|
|
1915
|
-
this.
|
|
2017
|
+
this.bg.add(a);
|
|
1916
2018
|
}
|
|
1917
2019
|
removeReferenceLookupListener(a) {
|
|
1918
|
-
this.
|
|
2020
|
+
this.bg.remove(a);
|
|
1919
2021
|
}
|
|
1920
2022
|
removePropertyUpdatingListener(a, b) {
|
|
1921
|
-
if (this.
|
|
1922
|
-
this.
|
|
1923
|
-
if (this.
|
|
1924
|
-
this.
|
|
2023
|
+
if (this.bc.containsKey(a)) {
|
|
2024
|
+
this.bc.item(a).remove(b);
|
|
2025
|
+
if (this.bc.item(a).count == 0) {
|
|
2026
|
+
this.bc.removeItem(a);
|
|
1925
2027
|
}
|
|
1926
2028
|
}
|
|
1927
2029
|
}
|
|
1928
2030
|
addNamespaceLookupListener(a) {
|
|
1929
|
-
this.
|
|
2031
|
+
this.bi.add(a);
|
|
1930
2032
|
}
|
|
1931
2033
|
removeNamespaceLookupListener(a) {
|
|
1932
|
-
this.
|
|
2034
|
+
this.bi.remove(a);
|
|
1933
2035
|
}
|
|
1934
2036
|
addCleanupListener(a) {
|
|
1935
|
-
if (this.
|
|
1936
|
-
this.
|
|
2037
|
+
if (this.bf == null) {
|
|
2038
|
+
this.bf = new List$1(Delegate_$type, 0);
|
|
1937
2039
|
}
|
|
1938
|
-
this.
|
|
2040
|
+
this.bf.add(a);
|
|
1939
2041
|
}
|
|
1940
2042
|
removeCleanupListener(a) {
|
|
1941
|
-
if (this.
|
|
1942
|
-
this.
|
|
2043
|
+
if (this.bf != null) {
|
|
2044
|
+
this.bf.remove(a);
|
|
1943
2045
|
}
|
|
1944
2046
|
}
|
|
1945
|
-
|
|
2047
|
+
bq(a, b, c) {
|
|
1946
2048
|
if (a.g == null) {
|
|
1947
2049
|
return null;
|
|
1948
2050
|
}
|
|
@@ -1958,20 +2060,20 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1958
2060
|
f = a.d.specificExternalType;
|
|
1959
2061
|
}
|
|
1960
2062
|
}
|
|
1961
|
-
for (let g
|
|
2063
|
+
for (let g of fromEn(d)) {
|
|
1962
2064
|
let h = f;
|
|
1963
|
-
if (typeCast(DescriptionTreeNode.$,
|
|
1964
|
-
let i =
|
|
2065
|
+
if (typeCast(DescriptionTreeNode.$, g) !== null) {
|
|
2066
|
+
let i = g;
|
|
1965
2067
|
if (i.c("Type")) {
|
|
1966
2068
|
h = i.a("Type").b;
|
|
1967
2069
|
}
|
|
1968
2070
|
}
|
|
1969
|
-
let j = this.
|
|
2071
|
+
let j = this.ca(h, g, b, c, false, a.c.g, a.d);
|
|
1970
2072
|
e.add1(j);
|
|
1971
2073
|
}
|
|
1972
2074
|
return e.toArray();
|
|
1973
2075
|
}
|
|
1974
|
-
|
|
2076
|
+
er(a, b, c, d, e, f, g) {
|
|
1975
2077
|
if (typeCast(DescriptionRef.$, e) !== null) {
|
|
1976
2078
|
let h = e;
|
|
1977
2079
|
let i = false;
|
|
@@ -1986,13 +2088,13 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1986
2088
|
}
|
|
1987
2089
|
}
|
|
1988
2090
|
}
|
|
1989
|
-
if (this.
|
|
2091
|
+
if (this.x(e)) {
|
|
1990
2092
|
let k = e;
|
|
1991
|
-
if (k.e != null && k.e.length > 0 && this.
|
|
2093
|
+
if (k.e != null && k.e.length > 0 && this.bb.containsKey(k.e)) {
|
|
1992
2094
|
k.a = true;
|
|
1993
2095
|
}
|
|
1994
|
-
e = this.
|
|
1995
|
-
this.
|
|
2096
|
+
e = this.cf(e);
|
|
2097
|
+
this.es(g, c, d, e, f, k);
|
|
1996
2098
|
}
|
|
1997
2099
|
else {
|
|
1998
2100
|
this.adapter.onPendingRef(g, c, d, e);
|
|
@@ -2000,11 +2102,11 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2000
2102
|
let l = null;
|
|
2001
2103
|
l = (m, n) => {
|
|
2002
2104
|
let o = m;
|
|
2003
|
-
if (o.e != null && o.e.length > 0 && this.
|
|
2105
|
+
if (o.e != null && o.e.length > 0 && this.bb.containsKey(o.e)) {
|
|
2004
2106
|
o.a = true;
|
|
2005
2107
|
}
|
|
2006
|
-
let p = this.
|
|
2007
|
-
this.
|
|
2108
|
+
let p = this.cf(m);
|
|
2109
|
+
this.es(g, c, d, p, n.b, o);
|
|
2008
2110
|
};
|
|
2009
2111
|
if (!i) {
|
|
2010
2112
|
h.g(a, g, c, l);
|
|
@@ -2023,10 +2125,10 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2023
2125
|
}
|
|
2024
2126
|
return;
|
|
2025
2127
|
}
|
|
2026
|
-
this.
|
|
2128
|
+
this.es(g, c, d, e, f, null);
|
|
2027
2129
|
}
|
|
2028
|
-
|
|
2029
|
-
return this.
|
|
2130
|
+
y(a) {
|
|
2131
|
+
return this.bd.containsKey(a);
|
|
2030
2132
|
}
|
|
2031
2133
|
get shouldNamespaceSystemRefValues() {
|
|
2032
2134
|
return this._shouldNamespaceSystemRefValues;
|
|
@@ -2034,117 +2136,117 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2034
2136
|
set shouldNamespaceSystemRefValues(a) {
|
|
2035
2137
|
this._shouldNamespaceSystemRefValues = a;
|
|
2036
2138
|
}
|
|
2037
|
-
|
|
2139
|
+
d0(a, b, c, d) {
|
|
2038
2140
|
let e = null;
|
|
2039
2141
|
if (d) {
|
|
2040
|
-
if (this.
|
|
2041
|
-
e = this.
|
|
2142
|
+
if (this.bd.containsKey(b)) {
|
|
2143
|
+
e = this.bd.item(b);
|
|
2042
2144
|
}
|
|
2043
|
-
this.
|
|
2145
|
+
this.bd.item(b, c);
|
|
2044
2146
|
if (c != null) {
|
|
2045
|
-
if (e != null && this.
|
|
2046
|
-
this.
|
|
2147
|
+
if (e != null && this.a8.containsKey(e)) {
|
|
2148
|
+
this.a8.removeItem(e);
|
|
2047
2149
|
}
|
|
2048
|
-
this.
|
|
2150
|
+
this.a8.item(c, b);
|
|
2049
2151
|
}
|
|
2050
2152
|
}
|
|
2051
2153
|
else {
|
|
2052
2154
|
if (this.shouldNamespaceSystemRefValues) {
|
|
2053
2155
|
let f = "";
|
|
2054
|
-
if (this.
|
|
2055
|
-
for (let g = 0; g < this.
|
|
2056
|
-
f = this.
|
|
2156
|
+
if (this.bi != null && this.bi.count > 0) {
|
|
2157
|
+
for (let g = 0; g < this.bi.count; g++) {
|
|
2158
|
+
f = this.bi._inner[g](a);
|
|
2057
2159
|
}
|
|
2058
2160
|
}
|
|
2059
2161
|
if (!stringIsNullOrEmpty(f)) {
|
|
2060
2162
|
b = f + "/" + b;
|
|
2061
2163
|
}
|
|
2062
2164
|
}
|
|
2063
|
-
if (this.
|
|
2064
|
-
e = this.
|
|
2165
|
+
if (this.bb.containsKey(b)) {
|
|
2166
|
+
e = this.bb.item(b);
|
|
2065
2167
|
}
|
|
2066
|
-
this.
|
|
2168
|
+
this.bb.item(b, c);
|
|
2067
2169
|
if (c != null) {
|
|
2068
|
-
this.
|
|
2170
|
+
this.a8.item(c, b);
|
|
2069
2171
|
}
|
|
2070
|
-
if (this.
|
|
2071
|
-
this.
|
|
2172
|
+
if (this.a9.containsKey(b)) {
|
|
2173
|
+
this.a9.item(b).a = true;
|
|
2072
2174
|
}
|
|
2073
2175
|
}
|
|
2074
|
-
if (this.
|
|
2075
|
-
this.
|
|
2176
|
+
if (this.a9.containsKey(b)) {
|
|
2177
|
+
this.a9.item(b).f(e, c);
|
|
2076
2178
|
}
|
|
2077
2179
|
}
|
|
2078
2180
|
removeRefValueCore(a, b, c) {
|
|
2079
2181
|
let d = null;
|
|
2080
2182
|
if (c) {
|
|
2081
|
-
if (this.
|
|
2082
|
-
d = this.
|
|
2183
|
+
if (this.bd.containsKey(b)) {
|
|
2184
|
+
d = this.bd.item(b);
|
|
2083
2185
|
}
|
|
2084
|
-
this.
|
|
2085
|
-
if (d != null && this.
|
|
2086
|
-
this.
|
|
2186
|
+
this.bd.removeItem(b);
|
|
2187
|
+
if (d != null && this.a8.containsKey(d)) {
|
|
2188
|
+
this.a8.removeItem(d);
|
|
2087
2189
|
}
|
|
2088
2190
|
}
|
|
2089
2191
|
else {
|
|
2090
2192
|
if (this.shouldNamespaceSystemRefValues) {
|
|
2091
2193
|
let e = "";
|
|
2092
|
-
if (this.
|
|
2093
|
-
for (let f = 0; f < this.
|
|
2094
|
-
e = this.
|
|
2194
|
+
if (this.bi != null && this.bi.count > 0) {
|
|
2195
|
+
for (let f = 0; f < this.bi.count; f++) {
|
|
2196
|
+
e = this.bi._inner[f](a);
|
|
2095
2197
|
}
|
|
2096
2198
|
}
|
|
2097
2199
|
if (!stringIsNullOrEmpty(e)) {
|
|
2098
2200
|
b = e + "/" + b;
|
|
2099
2201
|
}
|
|
2100
2202
|
}
|
|
2101
|
-
if (this.
|
|
2102
|
-
d = this.
|
|
2203
|
+
if (this.bb.containsKey(b)) {
|
|
2204
|
+
d = this.bb.item(b);
|
|
2103
2205
|
}
|
|
2104
|
-
this.
|
|
2105
|
-
if (d != null && this.
|
|
2106
|
-
this.
|
|
2206
|
+
this.bb.removeItem(b);
|
|
2207
|
+
if (d != null && this.a8.containsKey(d)) {
|
|
2208
|
+
this.a8.removeItem(d);
|
|
2107
2209
|
}
|
|
2108
2210
|
}
|
|
2109
|
-
if (this.
|
|
2110
|
-
this.
|
|
2111
|
-
if (this.
|
|
2112
|
-
this.
|
|
2113
|
-
this.
|
|
2211
|
+
if (this.a9.containsKey(b)) {
|
|
2212
|
+
this.a9.item(b).f(d, this.cf(this.a9.item(b)));
|
|
2213
|
+
if (this.a9.item(b).c <= 0) {
|
|
2214
|
+
this.a9.item(b).h();
|
|
2215
|
+
this.a9.removeItem(b);
|
|
2114
2216
|
}
|
|
2115
2217
|
}
|
|
2116
2218
|
}
|
|
2117
2219
|
clearUserRefValues() {
|
|
2118
2220
|
let a = new List$1(String_$type, 0);
|
|
2119
|
-
for (let b of fromEnum(this.
|
|
2221
|
+
for (let b of fromEnum(this.bd.keys)) {
|
|
2120
2222
|
a.add(b);
|
|
2121
2223
|
}
|
|
2122
2224
|
for (let c of fromEnum(a)) {
|
|
2123
2225
|
this.removeRefValueCore(null, c, true);
|
|
2124
2226
|
}
|
|
2125
2227
|
}
|
|
2126
|
-
|
|
2127
|
-
return this.
|
|
2228
|
+
x(a) {
|
|
2229
|
+
return this.bd.containsKey(a.e) || this.bb.containsKey(a.e);
|
|
2128
2230
|
}
|
|
2129
|
-
|
|
2231
|
+
cf(a) {
|
|
2232
|
+
if (this.bd.containsKey(a.e)) {
|
|
2233
|
+
return this.bd.item(a.e);
|
|
2234
|
+
}
|
|
2130
2235
|
if (this.bb.containsKey(a.e)) {
|
|
2131
2236
|
return this.bb.item(a.e);
|
|
2132
2237
|
}
|
|
2133
|
-
if (this.a9.containsKey(a.e)) {
|
|
2134
|
-
return this.a9.item(a.e);
|
|
2135
|
-
}
|
|
2136
2238
|
return null;
|
|
2137
2239
|
}
|
|
2138
2240
|
hasRef(a) {
|
|
2139
|
-
return this.
|
|
2241
|
+
return this.a9.containsKey(a);
|
|
2140
2242
|
}
|
|
2141
2243
|
g(a) {
|
|
2142
|
-
return this.
|
|
2244
|
+
return this.a9.item(a);
|
|
2143
2245
|
}
|
|
2144
2246
|
getMissingRefs() {
|
|
2145
2247
|
let a = new List$1(String_$type, 0);
|
|
2146
|
-
for (let b of fromEnum(this.
|
|
2147
|
-
if (!this.
|
|
2248
|
+
for (let b of fromEnum(this.a9.keys)) {
|
|
2249
|
+
if (!this.x(this.a9.item(b))) {
|
|
2148
2250
|
a.add(b);
|
|
2149
2251
|
}
|
|
2150
2252
|
}
|
|
@@ -2152,8 +2254,8 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2152
2254
|
}
|
|
2153
2255
|
getRefChangeInfos(a) {
|
|
2154
2256
|
let b = new List$1(DescriptionRefTargetInfo.$, 0);
|
|
2155
|
-
if (this.
|
|
2156
|
-
for (let c of fromEnum(this.
|
|
2257
|
+
if (this.a9.containsKey(a)) {
|
|
2258
|
+
for (let c of fromEnum(this.a9.item(a).b)) {
|
|
2157
2259
|
b.add(((() => {
|
|
2158
2260
|
let $ret = new DescriptionRefTargetInfo();
|
|
2159
2261
|
$ret.container = c.b;
|
|
@@ -2165,29 +2267,29 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2165
2267
|
}
|
|
2166
2268
|
return b.toArray();
|
|
2167
2269
|
}
|
|
2168
|
-
|
|
2270
|
+
cg(a, b, c) {
|
|
2169
2271
|
return b.j(c.c.g);
|
|
2170
2272
|
}
|
|
2171
|
-
|
|
2172
|
-
let d = this.
|
|
2173
|
-
this.
|
|
2273
|
+
ao(a, b, c) {
|
|
2274
|
+
let d = this.cg(a, b, c);
|
|
2275
|
+
this.at(a, b, c, d);
|
|
2174
2276
|
return true;
|
|
2175
2277
|
}
|
|
2176
|
-
|
|
2278
|
+
at(a, b, c, d) {
|
|
2177
2279
|
this.adapter.resetPropertyOnTarget(a, c.i(ComponentRenderer.platform), c.d, d);
|
|
2178
2280
|
return true;
|
|
2179
2281
|
}
|
|
2180
|
-
|
|
2282
|
+
an(a, b, c) {
|
|
2181
2283
|
if (c.c == null) {
|
|
2182
|
-
return this.
|
|
2284
|
+
return this.as(a, b, c);
|
|
2183
2285
|
}
|
|
2184
2286
|
else {
|
|
2185
|
-
let d = this.
|
|
2186
|
-
this.
|
|
2287
|
+
let d = this.cg(a, b, c);
|
|
2288
|
+
this.ek(a, b, c, d);
|
|
2187
2289
|
}
|
|
2188
2290
|
return true;
|
|
2189
2291
|
}
|
|
2190
|
-
|
|
2292
|
+
ek(a, b, c, d) {
|
|
2191
2293
|
let e = c.i(ComponentRenderer.platform);
|
|
2192
2294
|
let f = c.d.collectionElementType;
|
|
2193
2295
|
if (typeCast(DescriptionTreeNode.$, c.g) !== null) {
|
|
@@ -2199,22 +2301,22 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2199
2301
|
if (f == null) {
|
|
2200
2302
|
f = c.d.specificExternalType;
|
|
2201
2303
|
}
|
|
2202
|
-
let h = this.
|
|
2304
|
+
let h = this.ca(f, c.g, a, b, false, c.c.g, c.d);
|
|
2203
2305
|
this.adapter.replaceItemInCollection(e, c.d, d, c.e, h);
|
|
2204
2306
|
if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
|
|
2205
2307
|
let i = c.h.g;
|
|
2206
2308
|
if (i >= 0) {
|
|
2207
2309
|
let j = b.j(i);
|
|
2208
2310
|
if (j != null) {
|
|
2209
|
-
this.
|
|
2311
|
+
this.dj(a, j, b);
|
|
2210
2312
|
}
|
|
2211
2313
|
}
|
|
2212
2314
|
}
|
|
2213
2315
|
}
|
|
2214
|
-
|
|
2316
|
+
as(a, b, c) {
|
|
2215
2317
|
let d = this.adapter.getRootObject(a);
|
|
2216
2318
|
if (d != null) {
|
|
2217
|
-
this.
|
|
2319
|
+
this.dj(a, d, b);
|
|
2218
2320
|
}
|
|
2219
2321
|
if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
|
|
2220
2322
|
throw new NotImplementedException(0);
|
|
@@ -2223,40 +2325,40 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2223
2325
|
let f = false;
|
|
2224
2326
|
this.adapter.replaceRootItem(a, e.i, this.context, (g) => {
|
|
2225
2327
|
let h = this.adapter.getRootObject(a);
|
|
2226
|
-
b.k(a, e.g, h, e, runOn(this, this.
|
|
2227
|
-
let i = this.
|
|
2228
|
-
this.
|
|
2328
|
+
b.k(a, e.g, h, e, runOn(this, this.d0), -1);
|
|
2329
|
+
let i = this.bl(e);
|
|
2330
|
+
this.dy(a, b, i);
|
|
2229
2331
|
f = true;
|
|
2230
2332
|
if (g) {
|
|
2231
|
-
this.
|
|
2333
|
+
this.en(a, b);
|
|
2232
2334
|
}
|
|
2233
2335
|
});
|
|
2234
2336
|
return f;
|
|
2235
2337
|
}
|
|
2236
|
-
|
|
2237
|
-
let d = this.
|
|
2238
|
-
for (let e of fromEnum(this.
|
|
2338
|
+
dj(a, b, c) {
|
|
2339
|
+
let d = this.bo(a, b, c);
|
|
2340
|
+
for (let e of fromEnum(this.a9.values)) {
|
|
2239
2341
|
e.i(b);
|
|
2240
2342
|
}
|
|
2241
2343
|
if (d != -1) {
|
|
2242
2344
|
c.l(this, a, d, runOn(this, this.removeRefValueCore));
|
|
2243
2345
|
}
|
|
2244
|
-
this.
|
|
2346
|
+
this.n.b(ComponentRenderer.platform, b);
|
|
2245
2347
|
}
|
|
2246
|
-
|
|
2348
|
+
bo(a, b, c) {
|
|
2247
2349
|
return c.h(b);
|
|
2248
2350
|
}
|
|
2249
|
-
|
|
2351
|
+
am(a, b, c) {
|
|
2250
2352
|
if (c.c == null) {
|
|
2251
|
-
return this.
|
|
2353
|
+
return this.ar(a, b, c);
|
|
2252
2354
|
}
|
|
2253
2355
|
else {
|
|
2254
|
-
let d = this.
|
|
2255
|
-
this.
|
|
2356
|
+
let d = this.cg(a, b, c);
|
|
2357
|
+
this.d6(a, b, c, d);
|
|
2256
2358
|
}
|
|
2257
2359
|
return true;
|
|
2258
2360
|
}
|
|
2259
|
-
|
|
2361
|
+
d6(a, b, c, d) {
|
|
2260
2362
|
let e = c.i(ComponentRenderer.platform);
|
|
2261
2363
|
this.adapter.removeItemFromCollection(e, c.d, d, c.f);
|
|
2262
2364
|
if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
|
|
@@ -2264,36 +2366,36 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2264
2366
|
if (f >= 0) {
|
|
2265
2367
|
let g = b.j(f);
|
|
2266
2368
|
if (g != null) {
|
|
2267
|
-
this.
|
|
2369
|
+
this.dj(a, g, b);
|
|
2268
2370
|
}
|
|
2269
2371
|
}
|
|
2270
2372
|
}
|
|
2271
2373
|
}
|
|
2272
|
-
|
|
2374
|
+
ar(a, b, c) {
|
|
2273
2375
|
let d = this.adapter.getRootObject(a);
|
|
2274
2376
|
if (d != null) {
|
|
2275
|
-
this.
|
|
2377
|
+
this.dj(a, d, b);
|
|
2276
2378
|
}
|
|
2277
2379
|
let e = false;
|
|
2278
2380
|
this.adapter.removeRootItem(a, this.context, (f) => {
|
|
2279
2381
|
e = true;
|
|
2280
2382
|
if (f) {
|
|
2281
|
-
this.
|
|
2383
|
+
this.en(a, b);
|
|
2282
2384
|
}
|
|
2283
2385
|
});
|
|
2284
2386
|
return e;
|
|
2285
2387
|
}
|
|
2286
|
-
|
|
2388
|
+
ah(a, b, c) {
|
|
2287
2389
|
if (c.c == null) {
|
|
2288
|
-
return this.
|
|
2390
|
+
return this.q(a, b, c);
|
|
2289
2391
|
}
|
|
2290
2392
|
else {
|
|
2291
|
-
let d = this.
|
|
2292
|
-
this.
|
|
2393
|
+
let d = this.cg(a, b, c);
|
|
2394
|
+
this.c8(a, b, c, d);
|
|
2293
2395
|
}
|
|
2294
2396
|
return true;
|
|
2295
2397
|
}
|
|
2296
|
-
|
|
2398
|
+
q(a, b, c) {
|
|
2297
2399
|
if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
|
|
2298
2400
|
throw new NotImplementedException(0);
|
|
2299
2401
|
}
|
|
@@ -2301,17 +2403,17 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2301
2403
|
let e = false;
|
|
2302
2404
|
this.adapter.replaceRootItem(a, d.i, this.context, (f) => {
|
|
2303
2405
|
let g = this.adapter.getRootObject(a);
|
|
2304
|
-
b.k(a, d.g, g, d, runOn(this, this.
|
|
2305
|
-
let h = this.
|
|
2306
|
-
this.
|
|
2406
|
+
b.k(a, d.g, g, d, runOn(this, this.d0), -1);
|
|
2407
|
+
let h = this.bl(d);
|
|
2408
|
+
this.dy(a, b, h);
|
|
2307
2409
|
e = true;
|
|
2308
2410
|
if (f) {
|
|
2309
|
-
this.
|
|
2411
|
+
this.en(a, b);
|
|
2310
2412
|
}
|
|
2311
2413
|
});
|
|
2312
2414
|
return e;
|
|
2313
2415
|
}
|
|
2314
|
-
|
|
2416
|
+
c8(a, b, c, d) {
|
|
2315
2417
|
let e = c.i(ComponentRenderer.platform);
|
|
2316
2418
|
let f = c.d.collectionElementType;
|
|
2317
2419
|
if (typeCast(DescriptionTreeNode.$, c.g) !== null) {
|
|
@@ -2323,11 +2425,11 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2323
2425
|
if (f == null) {
|
|
2324
2426
|
f = c.d.specificExternalType;
|
|
2325
2427
|
}
|
|
2326
|
-
let h = this.
|
|
2428
|
+
let h = this.ca(f, c.g, a, b, false, c.c.g, c.d);
|
|
2327
2429
|
this.adapter.addItemToCollection(e, c.d, d, c.e, h);
|
|
2328
2430
|
}
|
|
2329
|
-
|
|
2330
|
-
if (this.
|
|
2431
|
+
ca(a, b, c, d, e, f, g) {
|
|
2432
|
+
if (this.ab(a)) {
|
|
2331
2433
|
return b;
|
|
2332
2434
|
}
|
|
2333
2435
|
let h = null;
|
|
@@ -2339,17 +2441,17 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2339
2441
|
if (!stringIsNullOrEmpty(j)) {
|
|
2340
2442
|
if (this.shouldNamespaceSystemRefValues) {
|
|
2341
2443
|
let k = "";
|
|
2342
|
-
if (this.
|
|
2343
|
-
for (let l = 0; l < this.
|
|
2344
|
-
k = this.
|
|
2444
|
+
if (this.bi != null && this.bi.count > 0) {
|
|
2445
|
+
for (let l = 0; l < this.bi.count; l++) {
|
|
2446
|
+
k = this.bi._inner[l](c);
|
|
2345
2447
|
}
|
|
2346
2448
|
}
|
|
2347
2449
|
if (!stringIsNullOrEmpty(k)) {
|
|
2348
2450
|
j = k + "/" + j;
|
|
2349
2451
|
}
|
|
2350
2452
|
}
|
|
2351
|
-
if (this.
|
|
2352
|
-
let m = this.
|
|
2453
|
+
if (this.bb.containsKey(j)) {
|
|
2454
|
+
let m = this.bb.item(j);
|
|
2353
2455
|
h = m;
|
|
2354
2456
|
}
|
|
2355
2457
|
}
|
|
@@ -2378,33 +2480,33 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2378
2480
|
}
|
|
2379
2481
|
}
|
|
2380
2482
|
if (p != null) {
|
|
2381
|
-
for (let r = 0; r < this.
|
|
2382
|
-
let s = this.
|
|
2483
|
+
for (let r = 0; r < this.bg.count; r++) {
|
|
2484
|
+
let s = this.bg._inner[r](c, o, p);
|
|
2383
2485
|
if (s != null) {
|
|
2384
2486
|
return s;
|
|
2385
2487
|
}
|
|
2386
2488
|
}
|
|
2387
2489
|
if (o == "name") {
|
|
2388
2490
|
let t = p;
|
|
2389
|
-
if (this.
|
|
2390
|
-
return this.
|
|
2491
|
+
if (this.bb.containsKey(t)) {
|
|
2492
|
+
return this.bb.item(t);
|
|
2391
2493
|
}
|
|
2392
2494
|
}
|
|
2393
2495
|
return null;
|
|
2394
2496
|
}
|
|
2395
2497
|
}
|
|
2396
2498
|
else {
|
|
2397
|
-
if (!this.
|
|
2398
|
-
this.
|
|
2499
|
+
if (!this.ba.containsKey(c)) {
|
|
2500
|
+
this.ba.addItem(c, ((() => {
|
|
2399
2501
|
let $ret = new ContainerState();
|
|
2400
2502
|
$ret.i = c;
|
|
2401
2503
|
return $ret;
|
|
2402
2504
|
})()));
|
|
2403
|
-
d = this.
|
|
2505
|
+
d = this.ba.item(c);
|
|
2404
2506
|
}
|
|
2405
|
-
d.k(c, n.g, h, n, runOn(this, this.
|
|
2406
|
-
let u = this.
|
|
2407
|
-
this.
|
|
2507
|
+
d.k(c, n.g, h, n, runOn(this, this.d0), f);
|
|
2508
|
+
let u = this.bl(n);
|
|
2509
|
+
this.dy(c, d, u);
|
|
2408
2510
|
if (e) {
|
|
2409
2511
|
d.l(this, c, n.g, runOn(this, this.removeRefValueCore));
|
|
2410
2512
|
}
|
|
@@ -2418,23 +2520,23 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2418
2520
|
return x;
|
|
2419
2521
|
}
|
|
2420
2522
|
if (!v && typeof b === 'string' && a.toLowerCase() != "string") {
|
|
2421
|
-
return this.
|
|
2523
|
+
return this.by(a, b, g);
|
|
2422
2524
|
}
|
|
2423
2525
|
if (v) {
|
|
2424
2526
|
return b;
|
|
2425
2527
|
}
|
|
2426
2528
|
return h;
|
|
2427
2529
|
}
|
|
2428
|
-
|
|
2530
|
+
ab(a) {
|
|
2429
2531
|
return a == "int" || a == "Int32" || a == "short" || a == "Int16" || a == "double" || a == "Double" || a == "float" || a == "Float" || a == "Single" || a == "single" || a == "DateTime" || a == "decimal" || a == "Decimal" || a == "long" || a == "Int64" || a == "byte" || a == "bool" || a == "string" || a == "String";
|
|
2430
2532
|
}
|
|
2431
|
-
|
|
2432
|
-
return this.context.t(a, b, c, this.
|
|
2533
|
+
by(a, b, c) {
|
|
2534
|
+
return this.context.t(a, b, c, this.r());
|
|
2433
2535
|
}
|
|
2434
|
-
|
|
2536
|
+
r() {
|
|
2435
2537
|
return true;
|
|
2436
2538
|
}
|
|
2437
|
-
|
|
2539
|
+
bl(a) {
|
|
2438
2540
|
let b = a.f();
|
|
2439
2541
|
let c = new List$1(DescriptionTreeAction.$, 0);
|
|
2440
2542
|
for (let d = 0; d < b.count; d++) {
|
|
@@ -2454,17 +2556,17 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2454
2556
|
}
|
|
2455
2557
|
return c;
|
|
2456
2558
|
}
|
|
2457
|
-
|
|
2559
|
+
ag(a, b, c) {
|
|
2458
2560
|
if (c.c == null) {
|
|
2459
|
-
return this.
|
|
2561
|
+
return this.v(a, b, c);
|
|
2460
2562
|
}
|
|
2461
2563
|
else {
|
|
2462
|
-
let d = this.
|
|
2463
|
-
this.
|
|
2564
|
+
let d = this.cg(a, b, c);
|
|
2565
|
+
this.dg(a, b, c, d);
|
|
2464
2566
|
}
|
|
2465
2567
|
return true;
|
|
2466
2568
|
}
|
|
2467
|
-
|
|
2569
|
+
dg(a, b, c, d) {
|
|
2468
2570
|
let e = c.i(ComponentRenderer.platform);
|
|
2469
2571
|
this.adapter.clearCollection(d, e, c.d);
|
|
2470
2572
|
if (c.h != null && typeCast(Array_$type, c.h) !== null) {
|
|
@@ -2476,41 +2578,47 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
2476
2578
|
if (i >= 0) {
|
|
2477
2579
|
let j = b.j(i);
|
|
2478
2580
|
if (j != null) {
|
|
2479
|
-
this.
|
|
2581
|
+
this.dj(a, j, b);
|
|
2480
2582
|
}
|
|
2481
2583
|
}
|
|
2482
2584
|
}
|
|
2483
2585
|
}
|
|
2484
2586
|
}
|
|
2485
2587
|
}
|
|
2486
|
-
|
|
2487
|
-
if (this.
|
|
2488
|
-
for (let g of fromEnum(this.
|
|
2588
|
+
es(a, b, c, d, e, f) {
|
|
2589
|
+
if (this.bc.containsKey(b)) {
|
|
2590
|
+
for (let g of fromEnum(this.bc.item(b))) {
|
|
2489
2591
|
g(b, a, d);
|
|
2490
2592
|
}
|
|
2491
2593
|
}
|
|
2492
2594
|
this.adapter.setPropertyValue(a, b, c, d, e, f);
|
|
2493
2595
|
}
|
|
2494
|
-
|
|
2596
|
+
ce(a, b) {
|
|
2495
2597
|
return this.adapter.getPropertyValue(a, b);
|
|
2496
2598
|
}
|
|
2497
|
-
|
|
2498
|
-
return this.
|
|
2599
|
+
v(a, b, c) {
|
|
2600
|
+
return this.u(a, b);
|
|
2499
2601
|
}
|
|
2500
|
-
|
|
2602
|
+
u(a, b) {
|
|
2501
2603
|
let c = this.adapter.getRootObject(a);
|
|
2502
2604
|
if (c != null) {
|
|
2503
|
-
this.
|
|
2605
|
+
this.dj(a, c, b);
|
|
2504
2606
|
}
|
|
2505
2607
|
let d = false;
|
|
2506
2608
|
this.adapter.clearContainer(a, this.context, (e) => {
|
|
2507
2609
|
d = true;
|
|
2508
2610
|
if (e) {
|
|
2509
|
-
this.
|
|
2611
|
+
this.en(a, b);
|
|
2510
2612
|
}
|
|
2511
2613
|
});
|
|
2512
2614
|
return d;
|
|
2513
2615
|
}
|
|
2616
|
+
registerFont(a, b) {
|
|
2617
|
+
FontRegistry.instance.registerFont(a, b);
|
|
2618
|
+
}
|
|
2619
|
+
removeFont(a) {
|
|
2620
|
+
FontRegistry.instance.removeFont(a);
|
|
2621
|
+
}
|
|
2514
2622
|
}
|
|
2515
2623
|
ComponentRenderer.$t = markType(ComponentRenderer, 'ComponentRenderer');
|
|
2516
2624
|
ComponentRenderer._defaultInstance = null;
|
|
@@ -2564,7 +2672,7 @@ export let ContainerState = /*@__PURE__*/ (() => {
|
|
|
2564
2672
|
for (let f = 0; f < e.count; f++) {
|
|
2565
2673
|
if (!this.g.containsKey(e._inner[f]) || this.g.item(e._inner[f]).count < 1 || (this.g.item(e._inner[f]).count == 1 && this.g.item(e._inner[f]).contains(c))) {
|
|
2566
2674
|
if (this.e.containsKey(e._inner[f])) {
|
|
2567
|
-
a.
|
|
2675
|
+
a.dj(b, this.e.item(e._inner[f]), this);
|
|
2568
2676
|
}
|
|
2569
2677
|
}
|
|
2570
2678
|
}
|