igniteui-angular-core 17.0.0 → 17.2.0-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.
Files changed (756) hide show
  1. package/bundles/igniteui-angular-core.umd.js +14037 -6883
  2. package/bundles/igniteui-angular-core.umd.min.js +2 -2
  3. package/esm2015/lib/AbsoluteVolumeOscillatorIndicatorDescription.js +6 -6
  4. package/esm2015/lib/AggregatedDataProvider_combined.js +26 -0
  5. package/esm2015/lib/AnchoredCategorySeriesDescription.js +41 -33
  6. package/esm2015/lib/AnchoredCategorySeriesDescriptionMetadata.js +1 -0
  7. package/esm2015/lib/AnchoredRadialSeriesDescription.js +38 -30
  8. package/esm2015/lib/AnchoredRadialSeriesDescriptionMetadata.js +1 -0
  9. package/esm2015/lib/AnnotationLayerDescription.js +61 -61
  10. package/esm2015/lib/AreaSeriesDescription.js +3 -3
  11. package/esm2015/lib/ArrayExtension.js +26 -0
  12. package/esm2015/lib/AverageDirectionalIndexIndicatorDescription.js +3 -3
  13. package/esm2015/lib/AverageTrueRangeIndicatorDescription.js +3 -3
  14. package/esm2015/lib/BarSeriesDescription.js +6 -6
  15. package/esm2015/lib/BollingerBandWidthIndicatorDescription.js +6 -6
  16. package/esm2015/lib/BollingerBandsOverlayDescription.js +6 -6
  17. package/esm2015/lib/BrushUtil.js +29 -26
  18. package/esm2015/lib/BubbleSeriesDescription.js +42 -42
  19. package/esm2015/lib/CalloutLayerDescription.js +111 -111
  20. package/esm2015/lib/CaptureImageSettingsDescription.js +42 -0
  21. package/esm2015/lib/CaptureImageSettingsDescriptionMetadata.js +39 -0
  22. package/esm2015/lib/CategoryChartDescription.js +144 -128
  23. package/esm2015/lib/CategoryChartDescriptionMetadata.js +3 -1
  24. package/esm2015/lib/CategoryHighlightLayerDescription.js +9 -9
  25. package/esm2015/lib/CategoryItemHighlightLayerDescription.js +30 -30
  26. package/esm2015/lib/CategorySeriesDescription.js +21 -21
  27. package/esm2015/lib/CategorySeriesDescriptionMetadata.js +1 -1
  28. package/esm2015/lib/CategoryToolTipLayerDescription.js +6 -6
  29. package/esm2015/lib/ChaikinOscillatorIndicatorDescription.js +6 -6
  30. package/esm2015/lib/ChaikinVolatilityIndicatorDescription.js +3 -3
  31. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +18 -7
  32. package/esm2015/lib/ColumnFragmentDescription.js +6 -6
  33. package/esm2015/lib/ColumnSeriesDescription.js +9 -9
  34. package/esm2015/lib/CommodityChannelIndexIndicatorDescription.js +3 -3
  35. package/esm2015/lib/ContainsPropertyDataSourceFilterExpressionVisitor.js +31 -0
  36. package/esm2015/lib/CrosshairLayerDescription.js +93 -93
  37. package/esm2015/lib/DataChartDescription.js +93 -93
  38. package/esm2015/lib/DataSeries.js +10 -0
  39. package/esm2015/lib/DataSeriesAdapter.js +1 -1
  40. package/esm2015/lib/DataSeriesAdapterProviderInfo.js +26 -0
  41. package/esm2015/lib/DataSourceLocalDataProvider.js +22 -0
  42. package/esm2015/lib/DataToolTipLayerDescription.js +366 -366
  43. package/esm2015/lib/DependencyObject_combined.js +4 -1
  44. package/esm2015/lib/DetrendedPriceOscillatorIndicatorDescription.js +3 -3
  45. package/esm2015/lib/DomainChartDescription.js +797 -741
  46. package/esm2015/lib/DomainChartDescriptionMetadata.js +10 -0
  47. package/esm2015/lib/FastStochasticOscillatorIndicatorDescription.js +3 -3
  48. package/esm2015/lib/FilterExpressionConversionVisitor.js +230 -0
  49. package/esm2015/lib/FilterExpressionParsingHelper.js +37 -0
  50. package/esm2015/lib/FilterExpressionParsingResult.js +21 -0
  51. package/esm2015/lib/FilterFactory_combined.js +30 -6
  52. package/esm2015/lib/FilterStringErrorsParsingEventArgsDescription.js +42 -0
  53. package/esm2015/lib/FilterStringErrorsParsingEventArgsDescriptionMetadata.js +38 -0
  54. package/esm2015/lib/FilterSyntaxBinaryOperatorExpressionSyntax.js +7 -0
  55. package/esm2015/lib/FilterSyntaxExpressionSyntax.js +7 -0
  56. package/esm2015/lib/FilterSyntaxExpressionSyntax_combined.js +193 -0
  57. package/esm2015/lib/FilterSyntaxIdentifierExpressionSyntax.js +7 -0
  58. package/esm2015/lib/FilterSyntaxLexer.js +854 -0
  59. package/esm2015/lib/FilterSyntaxMemberExpressionSyntax.js +7 -0
  60. package/esm2015/lib/FilterSyntaxMethodCallExpressionSyntax.js +7 -0
  61. package/esm2015/lib/FilterSyntaxNullExpressionSyntax.js +7 -0
  62. package/esm2015/lib/FilterSyntaxParenthesisExpressionSyntax.js +7 -0
  63. package/esm2015/lib/FilterSyntaxParseResult.js +31 -0
  64. package/esm2015/lib/FilterSyntaxParser.js +748 -0
  65. package/esm2015/lib/FilterSyntaxPrimitiveValueExpressionSyntax.js +7 -0
  66. package/esm2015/lib/FilterSyntaxPrintingHelper.js +51 -0
  67. package/esm2015/lib/{DataSeriesAdapterCachedProvider.js → FilterSyntaxToken.js} +4 -5
  68. package/esm2015/lib/FilterSyntaxTokenType.js +11 -0
  69. package/esm2015/lib/FilterSyntaxUnaryOperatorExpressionSyntax.js +7 -0
  70. package/esm2015/lib/FilterSyntaxVisitor.js +7 -0
  71. package/esm2015/lib/FinalValueLayerDescription.js +42 -42
  72. package/esm2015/lib/FinancialChartDescription.js +181 -181
  73. package/esm2015/lib/FinancialIndicatorDescription.js +24 -24
  74. package/esm2015/lib/FinancialOverlayDescription.js +3 -3
  75. package/esm2015/lib/FinancialPriceSeriesDescription.js +48 -48
  76. package/esm2015/lib/FinancialSeriesDescription.js +82 -42
  77. package/esm2015/lib/FinancialSeriesDescriptionMetadata.js +6 -1
  78. package/esm2015/lib/FlatDataProviderJoinCollisionType.js +37 -0
  79. package/esm2015/lib/FlatDataProviderJoinType.js +29 -0
  80. package/esm2015/lib/FlatDataProvider_combined.js +440 -137
  81. package/esm2015/lib/FontDefaults.js +5 -5
  82. package/esm2015/lib/ForceIndexIndicatorDescription.js +3 -3
  83. package/esm2015/lib/FullStochasticOscillatorIndicatorDescription.js +9 -9
  84. package/esm2015/lib/GeographicContourLineSeriesDescription.js +15 -15
  85. package/esm2015/lib/GeographicHighDensityScatterSeriesDescription.js +33 -33
  86. package/esm2015/lib/GeographicMapImageryDescription_combined.js +41 -41
  87. package/esm2015/lib/GeographicMapSeriesHostDescription.js +6 -6
  88. package/esm2015/lib/GeographicMarkerSeriesDescription.js +33 -33
  89. package/esm2015/lib/GeographicPolylineSeriesDescription.js +18 -18
  90. package/esm2015/lib/GeographicProportionalSymbolSeriesDescription.js +54 -54
  91. package/esm2015/lib/GeographicScatterAreaSeriesDescription.js +12 -12
  92. package/esm2015/lib/GeographicShapeSeriesBaseDescription.js +30 -30
  93. package/esm2015/lib/GeographicShapeSeriesDescription.js +51 -51
  94. package/esm2015/lib/GeographicSymbolSeriesDescription.js +27 -27
  95. package/esm2015/lib/GeographicTileSeriesDescription.js +6 -6
  96. package/esm2015/lib/GeographicXYTriangulatingSeriesDescription.js +18 -18
  97. package/esm2015/lib/HashSet$1.js +1 -1
  98. package/esm2015/lib/HighDensityScatterSeriesDescription.js +51 -51
  99. package/esm2015/lib/HorizontalAnchoredCategorySeriesDescription.js +6 -6
  100. package/esm2015/lib/HorizontalRangeCategorySeriesDescription.js +18 -18
  101. package/esm2015/lib/HorizontalStackedSeriesBaseDescription.js +6 -6
  102. package/esm2015/lib/IDataSeriesAdapterRule_combined.js +368 -221
  103. package/esm2015/lib/IDataSourceClonableDataProvider.js +11 -0
  104. package/esm2015/lib/IDataSourceDataProvider_combined.js +22 -13
  105. package/esm2015/lib/IDataSourceLocalDataProvider.js +2 -1
  106. package/esm2015/lib/IPlatformAPIHelperImpl.js +11 -0
  107. package/esm2015/lib/IgcDropdownBridge.js +8 -1
  108. package/esm2015/lib/ImageCapturedEventArgsDescription.js +26 -0
  109. package/esm2015/lib/ImageCapturedEventArgsDescriptionMetadata.js +36 -0
  110. package/esm2015/lib/ItemToolTipLayerDescription.js +12 -12
  111. package/esm2015/lib/KeyFrameAnimationTimeline_combined.js +1 -1
  112. package/esm2015/lib/LineSeriesDescription.js +3 -3
  113. package/esm2015/lib/LocalDataSource_combined.js +81 -73
  114. package/esm2015/lib/MarkerSeriesDescription.js +30 -30
  115. package/esm2015/lib/MoneyFlowIndexIndicatorDescription.js +3 -3
  116. package/esm2015/lib/MovingAverageConvergenceDivergenceIndicatorDescription.js +9 -9
  117. package/esm2015/lib/PagedDataSource.js +6 -6
  118. package/esm2015/lib/PercentagePriceOscillatorIndicatorDescription.js +6 -6
  119. package/esm2015/lib/PercentageVolumeOscillatorIndicatorDescription.js +6 -6
  120. package/esm2015/lib/PlatformAPIHelper.js +173 -0
  121. package/esm2015/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +5 -0
  122. package/esm2015/lib/PolarAreaSeriesDescription.js +3 -3
  123. package/esm2015/lib/PolarBaseDescription.js +90 -74
  124. package/esm2015/lib/PolarBaseDescriptionMetadata.js +2 -0
  125. package/esm2015/lib/PolarLineSeriesDescription.js +3 -3
  126. package/esm2015/lib/PolarSplineAreaSeriesDescription.js +3 -3
  127. package/esm2015/lib/PolarSplineSeriesDescription.js +3 -3
  128. package/esm2015/lib/PopupView_combined.js +743 -607
  129. package/esm2015/lib/PriceChannelOverlayDescription.js +3 -3
  130. package/esm2015/lib/PrimitiveAppearanceData.js +14 -1
  131. package/esm2015/lib/RadialAreaSeriesDescription.js +3 -3
  132. package/esm2015/lib/RadialBaseDescription.js +21 -21
  133. package/esm2015/lib/RadialColumnSeriesDescription.js +6 -6
  134. package/esm2015/lib/RadialLineSeriesDescription.js +3 -3
  135. package/esm2015/lib/RadialPieSeriesDescription.js +6 -6
  136. package/esm2015/lib/RangeCategorySeriesDescription.js +22 -6
  137. package/esm2015/lib/RangeCategorySeriesDescriptionMetadata.js +2 -0
  138. package/esm2015/lib/RangeColumnSeriesDescription.js +6 -6
  139. package/esm2015/lib/RateOfChangeAndMomentumIndicatorDescription.js +3 -3
  140. package/esm2015/lib/RearrangedListView.js +46 -38
  141. package/esm2015/lib/RelativeStrengthIndexIndicatorDescription.js +3 -3
  142. package/esm2015/lib/SVGNode_combined.js +2 -2
  143. package/esm2015/lib/ScatterAreaSeriesDescription.js +15 -15
  144. package/esm2015/lib/ScatterBaseDescription.js +87 -71
  145. package/esm2015/lib/ScatterBaseDescriptionMetadata.js +2 -0
  146. package/esm2015/lib/ScatterContourSeriesDescription.js +18 -18
  147. package/esm2015/lib/ScatterLineSeriesDescription.js +3 -3
  148. package/esm2015/lib/ScatterPolygonSeriesDescription.js +36 -36
  149. package/esm2015/lib/ScatterPolylineSeriesDescription.js +3 -3
  150. package/esm2015/lib/ScatterSplineSeriesDescription.js +3 -3
  151. package/esm2015/lib/ScatterTriangulationSeriesDescription.js +39 -39
  152. package/esm2015/lib/SeriesDescription.js +296 -184
  153. package/esm2015/lib/SeriesDescriptionMetadata.js +16 -0
  154. package/esm2015/lib/SeriesLayerDescription.js +42 -0
  155. package/esm2015/lib/SeriesLayerDescriptionMetadata.js +38 -0
  156. package/esm2015/lib/SeriesLayerPropertyOverlayDescription.js +82 -0
  157. package/esm2015/lib/SeriesLayerPropertyOverlayDescriptionMetadata.js +47 -0
  158. package/esm2015/lib/SeriesLayerPropertyOverlayValueResolvingEventArgsDescription.js +34 -0
  159. package/esm2015/lib/SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata.js +37 -0
  160. package/esm2015/lib/SeriesViewerDescription.js +167 -151
  161. package/esm2015/lib/ShapeSeriesBaseDescription.js +47 -39
  162. package/esm2015/lib/ShapeSeriesBaseDescriptionMetadata.js +1 -0
  163. package/esm2015/lib/SimpleCategorySeriesRule.js +11 -5
  164. package/esm2015/lib/SimpleFinancialPriceSeriesRule.js +18 -12
  165. package/esm2015/lib/SimpleScatterSeriesRule.js +3 -0
  166. package/esm2015/lib/SlowStochasticOscillatorIndicatorDescription.js +3 -3
  167. package/esm2015/lib/SortDescriptionCollection.js +7 -1
  168. package/esm2015/lib/SplineSeriesBaseDescription.js +6 -6
  169. package/esm2015/lib/StackedBarSeriesDescription.js +6 -6
  170. package/esm2015/lib/StackedColumnSeriesDescription.js +6 -6
  171. package/esm2015/lib/StackedFragmentSeriesDescription.js +151 -135
  172. package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +5 -2
  173. package/esm2015/lib/StackedSeriesBaseDescription.js +12 -12
  174. package/esm2015/lib/StackedSplineAreaSeriesDescription.js +3 -3
  175. package/esm2015/lib/StackedSplineSeriesDescription.js +3 -3
  176. package/esm2015/lib/StandardDeviationIndicatorDescription.js +3 -3
  177. package/esm2015/lib/StochRSIIndicatorDescription.js +3 -3
  178. package/esm2015/lib/SubCollectionsRule.js +3 -0
  179. package/esm2015/lib/SyncableObservableCollection$2_combined.js +61 -39
  180. package/esm2015/lib/TRIXIndicatorDescription.js +3 -3
  181. package/esm2015/lib/TestFilterSyntaxVisitor.js +82 -0
  182. package/esm2015/lib/TileSeriesDescription.js +3 -3
  183. package/esm2015/lib/ToolActionCheckboxDescription.js +3 -3
  184. package/esm2015/lib/ToolActionCheckboxInfoDescription.js +3 -3
  185. package/esm2015/lib/ToolActionDescription.js +131 -123
  186. package/esm2015/lib/ToolActionDescriptionMetadata.js +1 -0
  187. package/esm2015/lib/ToolActionGroupHeaderDescription.js +6 -6
  188. package/esm2015/lib/ToolActionIconButtonDescription.js +3 -3
  189. package/esm2015/lib/ToolActionIconButtonInfoDescription.js +6 -6
  190. package/esm2015/lib/ToolActionInfoDescription.js +63 -55
  191. package/esm2015/lib/ToolActionInfoDescriptionMetadata.js +1 -0
  192. package/esm2015/lib/ToolActionNumberInputDescription.js +3 -3
  193. package/esm2015/lib/ToolActionNumberInputInfoDescription.js +3 -3
  194. package/esm2015/lib/ToolActionRadioDescription.js +6 -6
  195. package/esm2015/lib/ToolActionRadioInfoDescription.js +6 -6
  196. package/esm2015/lib/ToolActionSeparatorDescription.js +6 -6
  197. package/esm2015/lib/ToolActionSeparatorInfoDescription.js +6 -6
  198. package/esm2015/lib/ValueLayerDescription.js +96 -96
  199. package/esm2015/lib/ValueOverlayDescription.js +42 -42
  200. package/esm2015/lib/VerticalAnchoredCategorySeriesDescription.js +6 -6
  201. package/esm2015/lib/VerticalStackedSeriesBaseDescription.js +6 -6
  202. package/esm2015/lib/WaterfallSeriesDescription.js +12 -12
  203. package/esm2015/lib/WebBaseDateTimeFilteringOperandDescription.js +23 -0
  204. package/esm2015/lib/WebBaseDateTimeFilteringOperandDescriptionMetadata.js +44 -0
  205. package/esm2015/lib/WebBaseExporterDescriptionMetadata_combined.js +4 -0
  206. package/esm2015/lib/WebBooleanFilteringOperandDescription.js +23 -0
  207. package/esm2015/lib/WebBooleanFilteringOperandDescriptionMetadata.js +44 -0
  208. package/esm2015/lib/WebCellPositionDescription.js +42 -0
  209. package/esm2015/lib/WebCellPositionDescriptionMetadata.js +45 -0
  210. package/esm2015/lib/WebColumnStateDescription.js +202 -0
  211. package/esm2015/lib/WebColumnStateDescriptionMetadata.js +67 -0
  212. package/esm2015/lib/WebDateFilteringOperandDescription.js +23 -0
  213. package/esm2015/lib/WebDateFilteringOperandDescriptionMetadata.js +44 -0
  214. package/esm2015/lib/WebDateSummaryOperandDescription.js +23 -0
  215. package/esm2015/lib/WebDateSummaryOperandDescriptionMetadata.js +44 -0
  216. package/esm2015/lib/WebDateTimeFilteringOperandDescription.js +23 -0
  217. package/esm2015/lib/WebDateTimeFilteringOperandDescriptionMetadata.js +44 -0
  218. package/esm2015/lib/WebFilteringOperationDescription.js +11 -3
  219. package/esm2015/lib/WebFilteringOperationDescriptionMetadata.js +1 -0
  220. package/esm2015/lib/WebGridBaseDirectiveDescription_combined.js +338 -330
  221. package/esm2015/lib/WebGridDescription.js +44 -44
  222. package/esm2015/lib/WebGridStateBaseDirectiveDescription.js +50 -0
  223. package/esm2015/lib/WebGridStateBaseDirectiveDescriptionMetadata.js +7 -0
  224. package/esm2015/lib/WebGridStateBaseDirectiveDescriptionMetadata_combined.js +124 -0
  225. package/esm2015/lib/WebGridStateBaseDirectiveDescriptionModule.js +20 -0
  226. package/esm2015/lib/WebGridStateCollectionDescription.js +50 -0
  227. package/esm2015/lib/WebGridStateCollectionDescriptionMetadata.js +48 -0
  228. package/esm2015/lib/WebGridStateComponentEventArgsDescription.js +36 -0
  229. package/esm2015/lib/WebGridStateComponentEventArgsDescriptionMetadata.js +7 -0
  230. package/esm2015/lib/WebGridStateDescription.js +23 -0
  231. package/esm2015/lib/WebGridStateDescriptionMetadata.js +7 -0
  232. package/esm2015/lib/WebGridStateDescriptionModule.js +22 -0
  233. package/esm2015/lib/WebGridStateInfoDescription.js +156 -0
  234. package/esm2015/lib/WebGridStateInfoDescriptionMetadata.js +79 -0
  235. package/esm2015/lib/WebGridStateOptionsDescription.js +146 -0
  236. package/esm2015/lib/WebGridStateOptionsDescriptionMetadata.js +58 -0
  237. package/esm2015/lib/WebGroupByResultDescription.js +42 -0
  238. package/esm2015/lib/WebGroupByResultDescriptionMetadata.js +47 -0
  239. package/esm2015/lib/WebGroupingExpressionDescriptionMetadata.js +1 -0
  240. package/esm2015/lib/WebGroupingStateDescription.js +50 -0
  241. package/esm2015/lib/WebGroupingStateDescriptionMetadata.js +50 -0
  242. package/esm2015/lib/WebNumberFilteringOperandDescription.js +23 -0
  243. package/esm2015/lib/WebNumberFilteringOperandDescriptionMetadata.js +44 -0
  244. package/esm2015/lib/WebNumberSummaryOperandDescription.js +23 -0
  245. package/esm2015/lib/WebNumberSummaryOperandDescriptionMetadata.js +44 -0
  246. package/esm2015/lib/WebPagingStateDescription.js +42 -0
  247. package/esm2015/lib/WebPagingStateDescriptionMetadata.js +45 -0
  248. package/esm2015/lib/WebPivotGridDescription.js +35 -35
  249. package/esm2015/lib/WebSortingExpressionDescriptionMetadata.js +1 -0
  250. package/esm2015/lib/WebStringFilteringOperandDescription.js +23 -0
  251. package/esm2015/lib/WebStringFilteringOperandDescriptionMetadata.js +44 -0
  252. package/esm2015/lib/WebSummaryExpressionDescriptionMetadata.js +1 -1
  253. package/esm2015/lib/WebSummaryOperandDescriptionMetadata.js +1 -0
  254. package/esm2015/lib/WebTimeFilteringOperandDescription.js +23 -0
  255. package/esm2015/lib/WebTimeFilteringOperandDescriptionMetadata.js +44 -0
  256. package/esm2015/lib/WebTimeSummaryOperandDescription.js +23 -0
  257. package/esm2015/lib/WebTimeSummaryOperandDescriptionMetadata.js +44 -0
  258. package/esm2015/lib/WebTreeGridDescription.js +27 -27
  259. package/esm2015/lib/WilliamsPercentRIndicatorDescription.js +3 -3
  260. package/esm2015/lib/XYChartDescription.js +218 -218
  261. package/esm2015/lib/igx-popup-component.js +59 -37
  262. package/esm2015/public_api.js +83 -1
  263. package/esm5/lib/AbsoluteVolumeOscillatorIndicatorDescription.js +6 -6
  264. package/esm5/lib/AggregatedDataProvider_combined.js +26 -0
  265. package/esm5/lib/AnchoredCategorySeriesDescription.js +45 -33
  266. package/esm5/lib/AnchoredCategorySeriesDescriptionMetadata.js +1 -0
  267. package/esm5/lib/AnchoredRadialSeriesDescription.js +42 -30
  268. package/esm5/lib/AnchoredRadialSeriesDescriptionMetadata.js +1 -0
  269. package/esm5/lib/AnnotationLayerDescription.js +61 -61
  270. package/esm5/lib/AreaSeriesDescription.js +3 -3
  271. package/esm5/lib/ArrayExtension.js +26 -0
  272. package/esm5/lib/AverageDirectionalIndexIndicatorDescription.js +3 -3
  273. package/esm5/lib/AverageTrueRangeIndicatorDescription.js +3 -3
  274. package/esm5/lib/BarSeriesDescription.js +6 -6
  275. package/esm5/lib/BollingerBandWidthIndicatorDescription.js +6 -6
  276. package/esm5/lib/BollingerBandsOverlayDescription.js +6 -6
  277. package/esm5/lib/BrushUtil.js +29 -26
  278. package/esm5/lib/BubbleSeriesDescription.js +42 -42
  279. package/esm5/lib/CalloutLayerDescription.js +111 -111
  280. package/esm5/lib/CaptureImageSettingsDescription.js +56 -0
  281. package/esm5/lib/CaptureImageSettingsDescriptionMetadata.js +43 -0
  282. package/esm5/lib/CategoryChartDescription.js +152 -128
  283. package/esm5/lib/CategoryChartDescriptionMetadata.js +3 -1
  284. package/esm5/lib/CategoryHighlightLayerDescription.js +9 -9
  285. package/esm5/lib/CategoryItemHighlightLayerDescription.js +30 -30
  286. package/esm5/lib/CategorySeriesDescription.js +21 -21
  287. package/esm5/lib/CategorySeriesDescriptionMetadata.js +1 -1
  288. package/esm5/lib/CategoryToolTipLayerDescription.js +6 -6
  289. package/esm5/lib/ChaikinOscillatorIndicatorDescription.js +6 -6
  290. package/esm5/lib/ChaikinVolatilityIndicatorDescription.js +3 -3
  291. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +18 -7
  292. package/esm5/lib/ColumnFragmentDescription.js +6 -6
  293. package/esm5/lib/ColumnSeriesDescription.js +9 -9
  294. package/esm5/lib/CommodityChannelIndexIndicatorDescription.js +3 -3
  295. package/esm5/lib/ContainsPropertyDataSourceFilterExpressionVisitor.js +37 -0
  296. package/esm5/lib/CrosshairLayerDescription.js +93 -93
  297. package/esm5/lib/DataChartDescription.js +93 -93
  298. package/esm5/lib/DataSeries.js +14 -0
  299. package/esm5/lib/DataSeriesAdapter.js +1 -1
  300. package/esm5/lib/DataSeriesAdapterProviderInfo.js +28 -0
  301. package/esm5/lib/DataSourceLocalDataProvider.js +22 -0
  302. package/esm5/lib/DataToolTipLayerDescription.js +366 -366
  303. package/esm5/lib/DependencyObject_combined.js +4 -1
  304. package/esm5/lib/DetrendedPriceOscillatorIndicatorDescription.js +3 -3
  305. package/esm5/lib/DomainChartDescription.js +825 -741
  306. package/esm5/lib/DomainChartDescriptionMetadata.js +10 -0
  307. package/esm5/lib/FastStochasticOscillatorIndicatorDescription.js +3 -3
  308. package/esm5/lib/FilterExpressionConversionVisitor.js +240 -0
  309. package/esm5/lib/FilterExpressionParsingHelper.js +41 -0
  310. package/esm5/lib/FilterExpressionParsingResult.js +23 -0
  311. package/esm5/lib/FilterFactory_combined.js +30 -6
  312. package/esm5/lib/FilterStringErrorsParsingEventArgsDescription.js +56 -0
  313. package/esm5/lib/FilterStringErrorsParsingEventArgsDescriptionMetadata.js +42 -0
  314. package/esm5/lib/FilterSyntaxBinaryOperatorExpressionSyntax.js +7 -0
  315. package/esm5/lib/FilterSyntaxExpressionSyntax.js +7 -0
  316. package/esm5/lib/FilterSyntaxExpressionSyntax_combined.js +205 -0
  317. package/esm5/lib/FilterSyntaxIdentifierExpressionSyntax.js +7 -0
  318. package/esm5/lib/FilterSyntaxLexer.js +855 -0
  319. package/esm5/lib/FilterSyntaxMemberExpressionSyntax.js +7 -0
  320. package/esm5/lib/FilterSyntaxMethodCallExpressionSyntax.js +7 -0
  321. package/esm5/lib/FilterSyntaxNullExpressionSyntax.js +7 -0
  322. package/esm5/lib/FilterSyntaxParenthesisExpressionSyntax.js +7 -0
  323. package/esm5/lib/FilterSyntaxParseResult.js +41 -0
  324. package/esm5/lib/FilterSyntaxParser.js +756 -0
  325. package/esm5/lib/FilterSyntaxPrimitiveValueExpressionSyntax.js +7 -0
  326. package/esm5/lib/FilterSyntaxPrintingHelper.js +55 -0
  327. package/esm5/lib/{DataSeriesAdapterCachedProvider.js → FilterSyntaxToken.js} +6 -7
  328. package/esm5/lib/FilterSyntaxTokenType.js +11 -0
  329. package/esm5/lib/FilterSyntaxUnaryOperatorExpressionSyntax.js +7 -0
  330. package/esm5/lib/FilterSyntaxVisitor.js +7 -0
  331. package/esm5/lib/FinalValueLayerDescription.js +42 -42
  332. package/esm5/lib/FinancialChartDescription.js +181 -181
  333. package/esm5/lib/FinancialIndicatorDescription.js +24 -24
  334. package/esm5/lib/FinancialOverlayDescription.js +3 -3
  335. package/esm5/lib/FinancialPriceSeriesDescription.js +48 -48
  336. package/esm5/lib/FinancialSeriesDescription.js +102 -42
  337. package/esm5/lib/FinancialSeriesDescriptionMetadata.js +6 -1
  338. package/esm5/lib/FlatDataProviderJoinCollisionType.js +37 -0
  339. package/esm5/lib/FlatDataProviderJoinType.js +29 -0
  340. package/esm5/lib/FlatDataProvider_combined.js +462 -135
  341. package/esm5/lib/FontDefaults.js +5 -5
  342. package/esm5/lib/ForceIndexIndicatorDescription.js +3 -3
  343. package/esm5/lib/FullStochasticOscillatorIndicatorDescription.js +9 -9
  344. package/esm5/lib/GeographicContourLineSeriesDescription.js +15 -15
  345. package/esm5/lib/GeographicHighDensityScatterSeriesDescription.js +33 -33
  346. package/esm5/lib/GeographicMapImageryDescription_combined.js +41 -41
  347. package/esm5/lib/GeographicMapSeriesHostDescription.js +6 -6
  348. package/esm5/lib/GeographicMarkerSeriesDescription.js +33 -33
  349. package/esm5/lib/GeographicPolylineSeriesDescription.js +18 -18
  350. package/esm5/lib/GeographicProportionalSymbolSeriesDescription.js +54 -54
  351. package/esm5/lib/GeographicScatterAreaSeriesDescription.js +12 -12
  352. package/esm5/lib/GeographicShapeSeriesBaseDescription.js +30 -30
  353. package/esm5/lib/GeographicShapeSeriesDescription.js +51 -51
  354. package/esm5/lib/GeographicSymbolSeriesDescription.js +27 -27
  355. package/esm5/lib/GeographicTileSeriesDescription.js +6 -6
  356. package/esm5/lib/GeographicXYTriangulatingSeriesDescription.js +18 -18
  357. package/esm5/lib/HashSet$1.js +1 -1
  358. package/esm5/lib/HighDensityScatterSeriesDescription.js +51 -51
  359. package/esm5/lib/HorizontalAnchoredCategorySeriesDescription.js +6 -6
  360. package/esm5/lib/HorizontalRangeCategorySeriesDescription.js +18 -18
  361. package/esm5/lib/HorizontalStackedSeriesBaseDescription.js +6 -6
  362. package/esm5/lib/IDataSeriesAdapterRule_combined.js +382 -228
  363. package/esm5/lib/IDataSourceClonableDataProvider.js +11 -0
  364. package/esm5/lib/IDataSourceDataProvider_combined.js +22 -14
  365. package/esm5/lib/IDataSourceLocalDataProvider.js +2 -1
  366. package/esm5/lib/IPlatformAPIHelperImpl.js +11 -0
  367. package/esm5/lib/IgcDropdownBridge.js +8 -1
  368. package/esm5/lib/ImageCapturedEventArgsDescription.js +31 -0
  369. package/esm5/lib/ImageCapturedEventArgsDescriptionMetadata.js +40 -0
  370. package/esm5/lib/ItemToolTipLayerDescription.js +12 -12
  371. package/esm5/lib/KeyFrameAnimationTimeline_combined.js +1 -1
  372. package/esm5/lib/LineSeriesDescription.js +3 -3
  373. package/esm5/lib/LocalDataSource_combined.js +81 -73
  374. package/esm5/lib/MarkerSeriesDescription.js +30 -30
  375. package/esm5/lib/MoneyFlowIndexIndicatorDescription.js +3 -3
  376. package/esm5/lib/MovingAverageConvergenceDivergenceIndicatorDescription.js +9 -9
  377. package/esm5/lib/PagedDataSource.js +6 -6
  378. package/esm5/lib/PercentagePriceOscillatorIndicatorDescription.js +6 -6
  379. package/esm5/lib/PercentageVolumeOscillatorIndicatorDescription.js +6 -6
  380. package/esm5/lib/PlatformAPIHelper.js +177 -0
  381. package/esm5/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +5 -0
  382. package/esm5/lib/PolarAreaSeriesDescription.js +3 -3
  383. package/esm5/lib/PolarBaseDescription.js +98 -74
  384. package/esm5/lib/PolarBaseDescriptionMetadata.js +2 -0
  385. package/esm5/lib/PolarLineSeriesDescription.js +3 -3
  386. package/esm5/lib/PolarSplineAreaSeriesDescription.js +3 -3
  387. package/esm5/lib/PolarSplineSeriesDescription.js +3 -3
  388. package/esm5/lib/PopupView_combined.js +738 -590
  389. package/esm5/lib/PriceChannelOverlayDescription.js +3 -3
  390. package/esm5/lib/PrimitiveAppearanceData.js +14 -1
  391. package/esm5/lib/RadialAreaSeriesDescription.js +3 -3
  392. package/esm5/lib/RadialBaseDescription.js +21 -21
  393. package/esm5/lib/RadialColumnSeriesDescription.js +6 -6
  394. package/esm5/lib/RadialLineSeriesDescription.js +3 -3
  395. package/esm5/lib/RadialPieSeriesDescription.js +6 -6
  396. package/esm5/lib/RangeCategorySeriesDescription.js +30 -6
  397. package/esm5/lib/RangeCategorySeriesDescriptionMetadata.js +2 -0
  398. package/esm5/lib/RangeColumnSeriesDescription.js +6 -6
  399. package/esm5/lib/RateOfChangeAndMomentumIndicatorDescription.js +3 -3
  400. package/esm5/lib/RearrangedListView.js +46 -38
  401. package/esm5/lib/RelativeStrengthIndexIndicatorDescription.js +3 -3
  402. package/esm5/lib/SVGNode_combined.js +2 -2
  403. package/esm5/lib/ScatterAreaSeriesDescription.js +15 -15
  404. package/esm5/lib/ScatterBaseDescription.js +95 -71
  405. package/esm5/lib/ScatterBaseDescriptionMetadata.js +2 -0
  406. package/esm5/lib/ScatterContourSeriesDescription.js +18 -18
  407. package/esm5/lib/ScatterLineSeriesDescription.js +3 -3
  408. package/esm5/lib/ScatterPolygonSeriesDescription.js +36 -36
  409. package/esm5/lib/ScatterPolylineSeriesDescription.js +3 -3
  410. package/esm5/lib/ScatterSplineSeriesDescription.js +3 -3
  411. package/esm5/lib/ScatterTriangulationSeriesDescription.js +39 -39
  412. package/esm5/lib/SeriesDescription.js +352 -184
  413. package/esm5/lib/SeriesDescriptionMetadata.js +16 -0
  414. package/esm5/lib/SeriesLayerDescription.js +56 -0
  415. package/esm5/lib/SeriesLayerDescriptionMetadata.js +42 -0
  416. package/esm5/lib/SeriesLayerPropertyOverlayDescription.js +116 -0
  417. package/esm5/lib/SeriesLayerPropertyOverlayDescriptionMetadata.js +51 -0
  418. package/esm5/lib/SeriesLayerPropertyOverlayValueResolvingEventArgsDescription.js +44 -0
  419. package/esm5/lib/SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata.js +41 -0
  420. package/esm5/lib/SeriesViewerDescription.js +175 -151
  421. package/esm5/lib/ShapeSeriesBaseDescription.js +51 -39
  422. package/esm5/lib/ShapeSeriesBaseDescriptionMetadata.js +1 -0
  423. package/esm5/lib/SimpleCategorySeriesRule.js +11 -5
  424. package/esm5/lib/SimpleFinancialPriceSeriesRule.js +18 -12
  425. package/esm5/lib/SimpleScatterSeriesRule.js +3 -0
  426. package/esm5/lib/SlowStochasticOscillatorIndicatorDescription.js +3 -3
  427. package/esm5/lib/SortDescriptionCollection.js +7 -1
  428. package/esm5/lib/SplineSeriesBaseDescription.js +6 -6
  429. package/esm5/lib/StackedBarSeriesDescription.js +6 -6
  430. package/esm5/lib/StackedColumnSeriesDescription.js +6 -6
  431. package/esm5/lib/StackedFragmentSeriesDescription.js +159 -135
  432. package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +5 -2
  433. package/esm5/lib/StackedSeriesBaseDescription.js +12 -12
  434. package/esm5/lib/StackedSplineAreaSeriesDescription.js +3 -3
  435. package/esm5/lib/StackedSplineSeriesDescription.js +3 -3
  436. package/esm5/lib/StandardDeviationIndicatorDescription.js +3 -3
  437. package/esm5/lib/StochRSIIndicatorDescription.js +3 -3
  438. package/esm5/lib/SubCollectionsRule.js +3 -0
  439. package/esm5/lib/SyncableObservableCollection$2_combined.js +61 -39
  440. package/esm5/lib/TRIXIndicatorDescription.js +3 -3
  441. package/esm5/lib/TestFilterSyntaxVisitor.js +88 -0
  442. package/esm5/lib/TileSeriesDescription.js +3 -3
  443. package/esm5/lib/ToolActionCheckboxDescription.js +3 -3
  444. package/esm5/lib/ToolActionCheckboxInfoDescription.js +3 -3
  445. package/esm5/lib/ToolActionDescription.js +135 -123
  446. package/esm5/lib/ToolActionDescriptionMetadata.js +1 -0
  447. package/esm5/lib/ToolActionGroupHeaderDescription.js +6 -6
  448. package/esm5/lib/ToolActionIconButtonDescription.js +3 -3
  449. package/esm5/lib/ToolActionIconButtonInfoDescription.js +6 -6
  450. package/esm5/lib/ToolActionInfoDescription.js +67 -55
  451. package/esm5/lib/ToolActionInfoDescriptionMetadata.js +1 -0
  452. package/esm5/lib/ToolActionNumberInputDescription.js +3 -3
  453. package/esm5/lib/ToolActionNumberInputInfoDescription.js +3 -3
  454. package/esm5/lib/ToolActionRadioDescription.js +6 -6
  455. package/esm5/lib/ToolActionRadioInfoDescription.js +6 -6
  456. package/esm5/lib/ToolActionSeparatorDescription.js +6 -6
  457. package/esm5/lib/ToolActionSeparatorInfoDescription.js +6 -6
  458. package/esm5/lib/ValueLayerDescription.js +96 -96
  459. package/esm5/lib/ValueOverlayDescription.js +42 -42
  460. package/esm5/lib/VerticalAnchoredCategorySeriesDescription.js +6 -6
  461. package/esm5/lib/VerticalStackedSeriesBaseDescription.js +6 -6
  462. package/esm5/lib/WaterfallSeriesDescription.js +12 -12
  463. package/esm5/lib/WebBaseDateTimeFilteringOperandDescription.js +24 -0
  464. package/esm5/lib/WebBaseDateTimeFilteringOperandDescriptionMetadata.js +48 -0
  465. package/esm5/lib/WebBaseExporterDescriptionMetadata_combined.js +4 -0
  466. package/esm5/lib/WebBooleanFilteringOperandDescription.js +24 -0
  467. package/esm5/lib/WebBooleanFilteringOperandDescriptionMetadata.js +48 -0
  468. package/esm5/lib/WebCellPositionDescription.js +56 -0
  469. package/esm5/lib/WebCellPositionDescriptionMetadata.js +49 -0
  470. package/esm5/lib/WebColumnStateDescription.js +296 -0
  471. package/esm5/lib/WebColumnStateDescriptionMetadata.js +71 -0
  472. package/esm5/lib/WebDateFilteringOperandDescription.js +24 -0
  473. package/esm5/lib/WebDateFilteringOperandDescriptionMetadata.js +48 -0
  474. package/esm5/lib/WebDateSummaryOperandDescription.js +24 -0
  475. package/esm5/lib/WebDateSummaryOperandDescriptionMetadata.js +48 -0
  476. package/esm5/lib/WebDateTimeFilteringOperandDescription.js +24 -0
  477. package/esm5/lib/WebDateTimeFilteringOperandDescriptionMetadata.js +48 -0
  478. package/esm5/lib/WebFilteringOperationDescription.js +15 -3
  479. package/esm5/lib/WebFilteringOperationDescriptionMetadata.js +1 -0
  480. package/esm5/lib/WebGridBaseDirectiveDescription_combined.js +342 -330
  481. package/esm5/lib/WebGridDescription.js +44 -44
  482. package/esm5/lib/WebGridStateBaseDirectiveDescription.js +68 -0
  483. package/esm5/lib/WebGridStateBaseDirectiveDescriptionMetadata.js +7 -0
  484. package/esm5/lib/WebGridStateBaseDirectiveDescriptionMetadata_combined.js +134 -0
  485. package/esm5/lib/WebGridStateBaseDirectiveDescriptionModule.js +24 -0
  486. package/esm5/lib/WebGridStateCollectionDescription.js +68 -0
  487. package/esm5/lib/WebGridStateCollectionDescriptionMetadata.js +52 -0
  488. package/esm5/lib/WebGridStateComponentEventArgsDescription.js +46 -0
  489. package/esm5/lib/WebGridStateComponentEventArgsDescriptionMetadata.js +7 -0
  490. package/esm5/lib/WebGridStateDescription.js +24 -0
  491. package/esm5/lib/WebGridStateDescriptionMetadata.js +7 -0
  492. package/esm5/lib/WebGridStateDescriptionModule.js +26 -0
  493. package/esm5/lib/WebGridStateInfoDescription.js +226 -0
  494. package/esm5/lib/WebGridStateInfoDescriptionMetadata.js +83 -0
  495. package/esm5/lib/WebGridStateOptionsDescription.js +212 -0
  496. package/esm5/lib/WebGridStateOptionsDescriptionMetadata.js +62 -0
  497. package/esm5/lib/WebGroupByResultDescription.js +56 -0
  498. package/esm5/lib/WebGroupByResultDescriptionMetadata.js +51 -0
  499. package/esm5/lib/WebGroupingExpressionDescriptionMetadata.js +1 -0
  500. package/esm5/lib/WebGroupingStateDescription.js +68 -0
  501. package/esm5/lib/WebGroupingStateDescriptionMetadata.js +54 -0
  502. package/esm5/lib/WebNumberFilteringOperandDescription.js +24 -0
  503. package/esm5/lib/WebNumberFilteringOperandDescriptionMetadata.js +48 -0
  504. package/esm5/lib/WebNumberSummaryOperandDescription.js +24 -0
  505. package/esm5/lib/WebNumberSummaryOperandDescriptionMetadata.js +48 -0
  506. package/esm5/lib/WebPagingStateDescription.js +56 -0
  507. package/esm5/lib/WebPagingStateDescriptionMetadata.js +49 -0
  508. package/esm5/lib/WebPivotGridDescription.js +35 -35
  509. package/esm5/lib/WebSortingExpressionDescriptionMetadata.js +1 -0
  510. package/esm5/lib/WebStringFilteringOperandDescription.js +24 -0
  511. package/esm5/lib/WebStringFilteringOperandDescriptionMetadata.js +48 -0
  512. package/esm5/lib/WebSummaryExpressionDescriptionMetadata.js +1 -1
  513. package/esm5/lib/WebSummaryOperandDescriptionMetadata.js +1 -0
  514. package/esm5/lib/WebTimeFilteringOperandDescription.js +24 -0
  515. package/esm5/lib/WebTimeFilteringOperandDescriptionMetadata.js +48 -0
  516. package/esm5/lib/WebTimeSummaryOperandDescription.js +24 -0
  517. package/esm5/lib/WebTimeSummaryOperandDescriptionMetadata.js +48 -0
  518. package/esm5/lib/WebTreeGridDescription.js +27 -27
  519. package/esm5/lib/WilliamsPercentRIndicatorDescription.js +3 -3
  520. package/esm5/lib/XYChartDescription.js +218 -218
  521. package/esm5/lib/igx-popup-component.js +67 -37
  522. package/esm5/public_api.js +83 -1
  523. package/fesm2015/igniteui-angular-core.js +15319 -8961
  524. package/fesm5/igniteui-angular-core.js +13953 -6883
  525. package/lib/AbsoluteVolumeOscillatorIndicatorDescription.d.ts +2 -2
  526. package/lib/AggregatedDataProvider_combined.d.ts +2 -0
  527. package/lib/AnchoredCategorySeriesDescription.d.ts +14 -11
  528. package/lib/AnchoredRadialSeriesDescription.d.ts +13 -10
  529. package/lib/AnnotationLayerDescription.d.ts +21 -21
  530. package/lib/AreaSeriesDescription.d.ts +1 -1
  531. package/lib/ArrayExtension.d.ts +4 -1
  532. package/lib/AverageDirectionalIndexIndicatorDescription.d.ts +1 -1
  533. package/lib/AverageTrueRangeIndicatorDescription.d.ts +1 -1
  534. package/lib/BarSeriesDescription.d.ts +2 -2
  535. package/lib/BollingerBandWidthIndicatorDescription.d.ts +2 -2
  536. package/lib/BollingerBandsOverlayDescription.d.ts +2 -2
  537. package/lib/BrushUtil.d.ts +16 -15
  538. package/lib/BubbleSeriesDescription.d.ts +14 -14
  539. package/lib/CalloutLayerDescription.d.ts +37 -37
  540. package/lib/CaptureImageSettingsDescription.d.ts +17 -0
  541. package/lib/CaptureImageSettingsDescriptionMetadata.d.ts +13 -0
  542. package/lib/CategoryChartDescription.d.ts +49 -43
  543. package/lib/CategoryHighlightLayerDescription.d.ts +3 -3
  544. package/lib/CategoryItemHighlightLayerDescription.d.ts +10 -10
  545. package/lib/CategorySeriesDescription.d.ts +7 -7
  546. package/lib/CategoryToolTipLayerDescription.d.ts +2 -2
  547. package/lib/ChaikinOscillatorIndicatorDescription.d.ts +2 -2
  548. package/lib/ChaikinVolatilityIndicatorDescription.d.ts +1 -1
  549. package/lib/ColumnFragmentDescription.d.ts +2 -2
  550. package/lib/ColumnSeriesDescription.d.ts +3 -3
  551. package/lib/CommodityChannelIndexIndicatorDescription.d.ts +1 -1
  552. package/lib/ContainsPropertyDataSourceFilterExpressionVisitor.d.ts +14 -0
  553. package/lib/CrosshairLayerDescription.d.ts +31 -31
  554. package/lib/DataChartDescription.d.ts +33 -33
  555. package/lib/DataSeries.d.ts +3 -0
  556. package/lib/{DataSeriesAdapterCachedProvider.d.ts → DataSeriesAdapterProviderInfo.d.ts} +6 -2
  557. package/lib/DataSourceLocalDataProvider.d.ts +2 -0
  558. package/lib/DataToolTipLayerDescription.d.ts +128 -128
  559. package/lib/DetrendedPriceOscillatorIndicatorDescription.d.ts +1 -1
  560. package/lib/DomainChartDescription.d.ts +281 -260
  561. package/lib/FastStochasticOscillatorIndicatorDescription.d.ts +1 -1
  562. package/lib/FilterExpressionConversionVisitor.d.ts +36 -0
  563. package/lib/FilterExpressionParsingHelper.d.ts +9 -0
  564. package/lib/FilterExpressionParsingResult.d.ts +10 -0
  565. package/lib/FilterFactory_combined.d.ts +3 -2
  566. package/lib/FilterStringErrorsParsingEventArgsDescription.d.ts +17 -0
  567. package/lib/FilterStringErrorsParsingEventArgsDescriptionMetadata.d.ts +13 -0
  568. package/lib/FilterSyntaxBinaryOperatorExpressionSyntax.d.ts +1 -0
  569. package/lib/FilterSyntaxExpressionSyntax.d.ts +1 -0
  570. package/lib/FilterSyntaxExpressionSyntax_combined.d.ts +98 -0
  571. package/lib/FilterSyntaxIdentifierExpressionSyntax.d.ts +1 -0
  572. package/lib/FilterSyntaxLexer.d.ts +21 -0
  573. package/lib/FilterSyntaxMemberExpressionSyntax.d.ts +1 -0
  574. package/lib/FilterSyntaxMethodCallExpressionSyntax.d.ts +1 -0
  575. package/lib/FilterSyntaxNullExpressionSyntax.d.ts +1 -0
  576. package/lib/FilterSyntaxParenthesisExpressionSyntax.d.ts +1 -0
  577. package/lib/FilterSyntaxParseResult.d.ts +15 -0
  578. package/lib/FilterSyntaxParser.d.ts +49 -0
  579. package/lib/FilterSyntaxPrimitiveValueExpressionSyntax.d.ts +1 -0
  580. package/lib/FilterSyntaxPrintingHelper.d.ts +13 -0
  581. package/lib/FilterSyntaxToken.d.ts +10 -0
  582. package/lib/FilterSyntaxTokenType.d.ts +85 -0
  583. package/lib/FilterSyntaxUnaryOperatorExpressionSyntax.d.ts +1 -0
  584. package/lib/FilterSyntaxVisitor.d.ts +1 -0
  585. package/lib/FinalValueLayerDescription.d.ts +14 -14
  586. package/lib/FinancialChartDescription.d.ts +61 -61
  587. package/lib/FinancialIndicatorDescription.d.ts +8 -8
  588. package/lib/FinancialOverlayDescription.d.ts +1 -1
  589. package/lib/FinancialPriceSeriesDescription.d.ts +16 -16
  590. package/lib/FinancialSeriesDescription.d.ts +29 -14
  591. package/lib/FlatDataProviderJoinCollisionType.d.ts +30 -0
  592. package/lib/FlatDataProviderJoinType.d.ts +22 -0
  593. package/lib/FlatDataProvider_combined.d.ts +60 -29
  594. package/lib/ForceIndexIndicatorDescription.d.ts +1 -1
  595. package/lib/FullStochasticOscillatorIndicatorDescription.d.ts +3 -3
  596. package/lib/GeographicContourLineSeriesDescription.d.ts +5 -5
  597. package/lib/GeographicHighDensityScatterSeriesDescription.d.ts +11 -11
  598. package/lib/GeographicMapImageryDescription_combined.d.ts +14 -14
  599. package/lib/GeographicMapSeriesHostDescription.d.ts +2 -2
  600. package/lib/GeographicMarkerSeriesDescription.d.ts +11 -11
  601. package/lib/GeographicPolylineSeriesDescription.d.ts +6 -6
  602. package/lib/GeographicProportionalSymbolSeriesDescription.d.ts +18 -18
  603. package/lib/GeographicScatterAreaSeriesDescription.d.ts +4 -4
  604. package/lib/GeographicShapeSeriesBaseDescription.d.ts +10 -10
  605. package/lib/GeographicShapeSeriesDescription.d.ts +17 -17
  606. package/lib/GeographicSymbolSeriesDescription.d.ts +9 -9
  607. package/lib/GeographicTileSeriesDescription.d.ts +2 -2
  608. package/lib/GeographicXYTriangulatingSeriesDescription.d.ts +6 -6
  609. package/lib/HighDensityScatterSeriesDescription.d.ts +17 -17
  610. package/lib/HorizontalAnchoredCategorySeriesDescription.d.ts +2 -2
  611. package/lib/HorizontalRangeCategorySeriesDescription.d.ts +6 -6
  612. package/lib/HorizontalStackedSeriesBaseDescription.d.ts +2 -2
  613. package/lib/IDataLegendSeries.d.ts +3 -0
  614. package/lib/IDataLegendTarget.d.ts +1 -0
  615. package/lib/IDataSeriesAdapterRule_combined.d.ts +57 -41
  616. package/lib/IDataSourceClonableDataProvider.d.ts +12 -0
  617. package/lib/IDataSourceDataProvider_combined.d.ts +6 -2
  618. package/lib/IDataSourceLocalDataProvider.d.ts +2 -1
  619. package/lib/IPlatformAPIHelperImpl.d.ts +26 -0
  620. package/lib/ImageCapturedEventArgsDescription.d.ts +11 -0
  621. package/lib/ImageCapturedEventArgsDescriptionMetadata.d.ts +13 -0
  622. package/lib/ItemToolTipLayerDescription.d.ts +4 -4
  623. package/lib/LineSeriesDescription.d.ts +1 -1
  624. package/lib/LocalDataSource_combined.d.ts +19 -18
  625. package/lib/MarkerSeriesDescription.d.ts +10 -10
  626. package/lib/MoneyFlowIndexIndicatorDescription.d.ts +1 -1
  627. package/lib/MovingAverageConvergenceDivergenceIndicatorDescription.d.ts +3 -3
  628. package/lib/PagedDataSource.d.ts +2 -2
  629. package/lib/PercentagePriceOscillatorIndicatorDescription.d.ts +2 -2
  630. package/lib/PercentageVolumeOscillatorIndicatorDescription.d.ts +2 -2
  631. package/lib/PlatformAPIHelper.d.ts +27 -0
  632. package/lib/PolarAreaSeriesDescription.d.ts +1 -1
  633. package/lib/PolarBaseDescription.d.ts +31 -25
  634. package/lib/PolarLineSeriesDescription.d.ts +1 -1
  635. package/lib/PolarSplineAreaSeriesDescription.d.ts +1 -1
  636. package/lib/PolarSplineSeriesDescription.d.ts +1 -1
  637. package/lib/PopupView_combined.d.ts +161 -144
  638. package/lib/PriceChannelOverlayDescription.d.ts +1 -1
  639. package/lib/RadialAreaSeriesDescription.d.ts +1 -1
  640. package/lib/RadialBaseDescription.d.ts +7 -7
  641. package/lib/RadialColumnSeriesDescription.d.ts +2 -2
  642. package/lib/RadialLineSeriesDescription.d.ts +1 -1
  643. package/lib/RadialPieSeriesDescription.d.ts +2 -2
  644. package/lib/RangeCategorySeriesDescription.d.ts +8 -2
  645. package/lib/RangeColumnSeriesDescription.d.ts +2 -2
  646. package/lib/RateOfChangeAndMomentumIndicatorDescription.d.ts +1 -1
  647. package/lib/RelativeStrengthIndexIndicatorDescription.d.ts +1 -1
  648. package/lib/ScatterAreaSeriesDescription.d.ts +5 -5
  649. package/lib/ScatterBaseDescription.d.ts +30 -24
  650. package/lib/ScatterContourSeriesDescription.d.ts +6 -6
  651. package/lib/ScatterLineSeriesDescription.d.ts +1 -1
  652. package/lib/ScatterPolygonSeriesDescription.d.ts +12 -12
  653. package/lib/ScatterPolylineSeriesDescription.d.ts +1 -1
  654. package/lib/ScatterSplineSeriesDescription.d.ts +1 -1
  655. package/lib/ScatterTriangulationSeriesDescription.d.ts +13 -13
  656. package/lib/SeriesDescription.d.ts +108 -64
  657. package/lib/SeriesLayerDescription.d.ts +18 -0
  658. package/lib/SeriesLayerDescriptionMetadata.d.ts +13 -0
  659. package/lib/SeriesLayerPropertyOverlayDescription.d.ts +32 -0
  660. package/lib/SeriesLayerPropertyOverlayDescriptionMetadata.d.ts +13 -0
  661. package/lib/SeriesLayerPropertyOverlayValueResolvingEventArgsDescription.d.ts +14 -0
  662. package/lib/SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata.d.ts +13 -0
  663. package/lib/SeriesViewerDescription.d.ts +60 -54
  664. package/lib/ShapeSeriesBaseDescription.d.ts +16 -13
  665. package/lib/SimpleCategorySeriesRule.d.ts +4 -1
  666. package/lib/SimpleFinancialPriceSeriesRule.d.ts +5 -2
  667. package/lib/SimpleScatterSeriesRule.d.ts +1 -0
  668. package/lib/SlowStochasticOscillatorIndicatorDescription.d.ts +1 -1
  669. package/lib/SortDescriptionCollection.d.ts +3 -1
  670. package/lib/SplineSeriesBaseDescription.d.ts +2 -2
  671. package/lib/StackedBarSeriesDescription.d.ts +2 -2
  672. package/lib/StackedColumnSeriesDescription.d.ts +2 -2
  673. package/lib/StackedFragmentSeriesDescription.d.ts +56 -50
  674. package/lib/StackedSeriesBaseDescription.d.ts +4 -4
  675. package/lib/StackedSplineAreaSeriesDescription.d.ts +1 -1
  676. package/lib/StackedSplineSeriesDescription.d.ts +1 -1
  677. package/lib/StandardDeviationIndicatorDescription.d.ts +1 -1
  678. package/lib/StochRSIIndicatorDescription.d.ts +1 -1
  679. package/lib/SubCollectionsRule.d.ts +1 -0
  680. package/lib/SyncableObservableCollection$2_combined.d.ts +11 -8
  681. package/lib/TRIXIndicatorDescription.d.ts +1 -1
  682. package/lib/TestFilterSyntaxVisitor.d.ts +27 -0
  683. package/lib/TileSeriesDescription.d.ts +1 -1
  684. package/lib/ToolActionCheckboxDescription.d.ts +1 -1
  685. package/lib/ToolActionCheckboxInfoDescription.d.ts +1 -1
  686. package/lib/ToolActionDescription.d.ts +48 -45
  687. package/lib/ToolActionGroupHeaderDescription.d.ts +2 -2
  688. package/lib/ToolActionIconButtonDescription.d.ts +1 -1
  689. package/lib/ToolActionIconButtonInfoDescription.d.ts +2 -2
  690. package/lib/ToolActionInfoDescription.d.ts +23 -20
  691. package/lib/ToolActionNumberInputDescription.d.ts +1 -1
  692. package/lib/ToolActionNumberInputInfoDescription.d.ts +1 -1
  693. package/lib/ToolActionRadioDescription.d.ts +2 -2
  694. package/lib/ToolActionRadioInfoDescription.d.ts +2 -2
  695. package/lib/ToolActionSeparatorDescription.d.ts +2 -2
  696. package/lib/ToolActionSeparatorInfoDescription.d.ts +2 -2
  697. package/lib/ValueLayerDescription.d.ts +32 -32
  698. package/lib/ValueOverlayDescription.d.ts +14 -14
  699. package/lib/VerticalAnchoredCategorySeriesDescription.d.ts +2 -2
  700. package/lib/VerticalStackedSeriesBaseDescription.d.ts +2 -2
  701. package/lib/WaterfallSeriesDescription.d.ts +4 -4
  702. package/lib/WebBaseDateTimeFilteringOperandDescription.d.ts +10 -0
  703. package/lib/WebBaseDateTimeFilteringOperandDescriptionMetadata.d.ts +13 -0
  704. package/lib/WebBooleanFilteringOperandDescription.d.ts +10 -0
  705. package/lib/WebBooleanFilteringOperandDescriptionMetadata.d.ts +13 -0
  706. package/lib/WebCellPositionDescription.d.ts +17 -0
  707. package/lib/WebCellPositionDescriptionMetadata.d.ts +13 -0
  708. package/lib/WebColumnStateDescription.d.ts +77 -0
  709. package/lib/WebColumnStateDescriptionMetadata.d.ts +13 -0
  710. package/lib/WebDateFilteringOperandDescription.d.ts +10 -0
  711. package/lib/WebDateFilteringOperandDescriptionMetadata.d.ts +13 -0
  712. package/lib/WebDateSummaryOperandDescription.d.ts +10 -0
  713. package/lib/WebDateSummaryOperandDescriptionMetadata.d.ts +13 -0
  714. package/lib/WebDateTimeFilteringOperandDescription.d.ts +10 -0
  715. package/lib/WebDateTimeFilteringOperandDescriptionMetadata.d.ts +13 -0
  716. package/lib/WebFilteringOperationDescription.d.ts +4 -1
  717. package/lib/WebGridBaseDirectiveDescription_combined.d.ts +119 -115
  718. package/lib/WebGridDescription.d.ts +16 -16
  719. package/lib/WebGridStateBaseDirectiveDescription.d.ts +21 -0
  720. package/lib/WebGridStateBaseDirectiveDescriptionMetadata.d.ts +1 -0
  721. package/lib/WebGridStateBaseDirectiveDescriptionMetadata_combined.d.ts +33 -0
  722. package/lib/WebGridStateBaseDirectiveDescriptionModule.d.ts +9 -0
  723. package/lib/WebGridStateCollectionDescription.d.ts +21 -0
  724. package/lib/WebGridStateCollectionDescriptionMetadata.d.ts +13 -0
  725. package/lib/WebGridStateComponentEventArgsDescription.d.ts +17 -0
  726. package/lib/WebGridStateComponentEventArgsDescriptionMetadata.d.ts +1 -0
  727. package/lib/WebGridStateDescription.d.ts +10 -0
  728. package/lib/WebGridStateDescriptionMetadata.d.ts +1 -0
  729. package/lib/WebGridStateDescriptionModule.d.ts +9 -0
  730. package/lib/WebGridStateInfoDescription.d.ts +70 -0
  731. package/lib/WebGridStateInfoDescriptionMetadata.d.ts +13 -0
  732. package/lib/WebGridStateOptionsDescription.d.ts +56 -0
  733. package/lib/WebGridStateOptionsDescriptionMetadata.d.ts +13 -0
  734. package/lib/WebGroupByResultDescription.d.ts +18 -0
  735. package/lib/WebGroupByResultDescriptionMetadata.d.ts +13 -0
  736. package/lib/WebGroupingStateDescription.d.ts +22 -0
  737. package/lib/WebGroupingStateDescriptionMetadata.d.ts +13 -0
  738. package/lib/WebNumberFilteringOperandDescription.d.ts +10 -0
  739. package/lib/WebNumberFilteringOperandDescriptionMetadata.d.ts +13 -0
  740. package/lib/WebNumberSummaryOperandDescription.d.ts +10 -0
  741. package/lib/WebNumberSummaryOperandDescriptionMetadata.d.ts +13 -0
  742. package/lib/WebPagingStateDescription.d.ts +17 -0
  743. package/lib/WebPagingStateDescriptionMetadata.d.ts +13 -0
  744. package/lib/WebPivotGridDescription.d.ts +13 -13
  745. package/lib/WebStringFilteringOperandDescription.d.ts +10 -0
  746. package/lib/WebStringFilteringOperandDescriptionMetadata.d.ts +13 -0
  747. package/lib/WebTimeFilteringOperandDescription.d.ts +10 -0
  748. package/lib/WebTimeFilteringOperandDescriptionMetadata.d.ts +13 -0
  749. package/lib/WebTimeSummaryOperandDescription.d.ts +10 -0
  750. package/lib/WebTimeSummaryOperandDescriptionMetadata.d.ts +13 -0
  751. package/lib/WebTreeGridDescription.d.ts +10 -10
  752. package/lib/WilliamsPercentRIndicatorDescription.d.ts +1 -1
  753. package/lib/XYChartDescription.d.ts +76 -76
  754. package/lib/igx-popup-component.d.ts +13 -1
  755. package/package.json +1 -1
  756. package/public_api.d.ts +83 -1
@@ -23,11 +23,12 @@ import { stringEmpty } from "./string";
23
23
  import { OnClosedEventArgs } from "./OnClosedEventArgs";
24
24
  import { MouseEventArgs } from "./MouseEventArgs";
25
25
  import { FocusEventArgs } from "./FocusEventArgs";
26
+ import { PopupAnimation } from "./PopupAnimation";
26
27
  import { List$1 } from "./List$1";
28
+ import { IKeyFrameAnimation_$type } from "./IKeyFrameAnimation";
27
29
  import { AnimationKeyFrameProperty } from "./AnimationKeyFrameProperty";
28
30
  import { TranslateTransform } from "./TranslateTransform";
29
31
  import { OnPopupEventArgs } from "./OnPopupEventArgs";
30
- import { PopupAnimation } from "./PopupAnimation";
31
32
  import { DeviceUtils } from "./DeviceUtils";
32
33
  import { PopupVisualModelExport } from "./PopupVisualModelExport";
33
34
  import { AppearanceHelper } from "./AppearanceHelper";
@@ -39,265 +40,275 @@ export let PopupView = /*@__PURE__*/ (() => {
39
40
  class PopupView extends Base {
40
41
  constructor() {
41
42
  super(...arguments);
42
- this.ad = null;
43
+ this.ag = null;
43
44
  this.f = null;
45
+ this.ao = null;
46
+ this.an = null;
47
+ this.am = null;
48
+ this.aj = null;
44
49
  this.al = null;
45
50
  this.ak = null;
46
- this.aj = null;
47
- this.ag = null;
48
- this.ai = null;
49
- this.ah = null;
50
- this.an = null;
51
+ this.aq = null;
52
+ this.v = 0;
53
+ this.w = 0;
54
+ this.u = 0;
55
+ this.m = false;
56
+ this.x = 0;
51
57
  this.s = 0;
52
58
  this.t = 0;
53
- this.r = 0;
54
- this.l = false;
55
- this.u = 0;
56
- this.p = 0;
57
59
  this.q = 0;
58
- this.n = 0;
59
- this.o = 0;
60
- this.af = null;
61
- this.am = null;
62
- this.bk = new Size(1, 0, 0);
60
+ this.r = 0;
61
+ this.ai = null;
62
+ this.ap = null;
63
+ this.br = new Size(1, 0, 0);
63
64
  this.k = true;
64
- this.m = false;
65
- }
66
- get ac() {
67
- return this.g.a1;
65
+ this.p = false;
68
66
  }
69
- get z() {
70
- return this.ac / 2;
67
+ get af() {
68
+ return this.g.a3;
71
69
  }
72
- get y() {
73
- return this.ac * 1.414;
70
+ get ac() {
71
+ return this.af / 2;
74
72
  }
75
- get x() {
76
- return this.y / 2;
73
+ get ab() {
74
+ return this.af * 1.414;
77
75
  }
78
76
  get aa() {
79
- return (this.bl.width / 2 - this.z);
77
+ return this.ab / 2;
80
78
  }
81
- get ab() {
82
- return (this.bl.height / 2 - this.z);
79
+ get ad() {
80
+ return (this.bs.width / 2 - this.ac);
81
+ }
82
+ get ae() {
83
+ return (this.bs.height / 2 - this.ac);
83
84
  }
84
85
  get g() {
85
86
  return this.f;
86
87
  }
87
- get ae() {
88
- return this.ad;
88
+ get ah() {
89
+ return this.ag;
89
90
  }
90
- a3() {
91
- this.al.setStyleProperty("height", "0%");
92
- this.al.setStyleProperty("width", "0%");
93
- this.ag = this.ad.createElement("div");
94
- this.ag.setStyleProperty("position", "absolute");
95
- this.ag.setStyleProperty("z-index", "10000");
96
- this.ai = this.ad.createElement("div");
97
- this.ai.setStyleProperty("height", 20 * 1.414 / 2 + "px");
98
- this.ah = this.ad.createElement("div");
99
- this.ah.setStyleProperty("position", "relative");
100
- this.ah.setStyleProperty("width", this.ac + "px");
101
- this.ah.setStyleProperty("height", this.ac + "px");
102
- this.ah.setStyleProperty("z-index", "1");
103
- this.ah.setStyleProperty("clip-path", stringFormat("path(\"M0,0l{0},{0}l0,-{0}l-{0},0Z\")", this.ac));
104
- this.ai.append(this.ah);
105
- this.ak = this.ad.createElement("div");
91
+ a6() {
92
+ this.ao.setStyleProperty("height", "0%");
93
+ this.ao.setStyleProperty("width", "0%");
94
+ this.aj = this.ag.createElement("div");
95
+ this.be(this.g.aq);
96
+ this.aj.setStyleProperty("z-index", "10000");
97
+ this.aj.setStyleProperty("inset", "unset");
98
+ this.aj.setStyleProperty("padding", "0px");
99
+ this.aj.setStyleProperty("border-width", "0px");
100
+ this.al = this.ag.createElement("div");
101
+ this.al.setStyleProperty("height", 20 * 1.414 / 2 + "px");
102
+ this.ak = this.ag.createElement("div");
106
103
  this.ak.setStyleProperty("position", "relative");
107
- this.ak.setStyleProperty("overflow", "hidden");
108
- this.ak.setAttribute("key", "popupContentAreaOuter");
109
- this.bb(this.g.aq);
110
- this.ag.listen("mouseenter", runOn(this, this.a4));
111
- this.ag.listen("mouseleave", runOn(this, this.a5));
112
- this.ag.listen("focusin", runOn(this, this.a1));
113
- this.ag.listen("focusout", runOn(this, this.a2));
114
- this.aj = this.ad.createElement("div");
115
- this.aj.setAttribute("key", "popupContentAreaInner");
116
- this.ak.append(this.aj);
117
- this.ag.append(this.ak);
118
- }
119
- bh() {
104
+ this.ak.setStyleProperty("width", this.af + "px");
105
+ this.ak.setStyleProperty("height", this.af + "px");
106
+ this.ak.setStyleProperty("z-index", "1");
107
+ this.ak.setStyleProperty("clip-path", stringFormat("path(\"M0,0l{0},{0}l0,-{0}l-{0},0Z\")", this.af));
108
+ this.al.append(this.ak);
109
+ this.an = this.ag.createElement("div");
110
+ this.an.setStyleProperty("position", "relative");
111
+ this.an.setStyleProperty("overflow", "hidden");
112
+ this.an.setAttribute("key", "popupContentAreaOuter");
113
+ this.bf(this.g.ar);
114
+ this.aj.listen("mouseenter", runOn(this, this.a7));
115
+ this.aj.listen("mouseleave", runOn(this, this.a8));
116
+ this.aj.listen("focusin", runOn(this, this.a4));
117
+ this.aj.listen("focusout", runOn(this, this.a5));
118
+ this.am = this.ag.createElement("div");
119
+ this.am.setAttribute("key", "popupContentAreaInner");
120
+ this.an.append(this.am);
121
+ this.aj.append(this.an);
122
+ }
123
+ bn() {
120
124
  let a = this.g;
121
- let b = ElevationHelper.e(a.a4, a.cm, a.cl, a.ck);
122
- this.ak.setStyleProperty("box-shadow", b);
125
+ let b = ElevationHelper.e(a.a6, a.cv, a.cu, a.ct);
126
+ if (this.l()) {
127
+ this.aj.setStyleProperty("box-shadow", b);
128
+ }
129
+ else {
130
+ this.an.setStyleProperty("box-shadow", b);
131
+ }
123
132
  }
124
- bf() {
125
- if (this.g.cn != null) {
126
- this.ak.setStyleProperty("background-color", this.g.cn._fill);
127
- this.ah.setStyleProperty("background-color", this.g.cn._fill);
133
+ bl() {
134
+ if (this.g.cw != null) {
135
+ this.an.setStyleProperty("background-color", this.g.cw._fill);
136
+ this.ak.setStyleProperty("background-color", this.g.cw._fill);
128
137
  }
129
- if (this.g.cr != null) {
130
- this.ah.setStyleProperty("background-color", this.g.cr._fill);
138
+ if (this.g.c0 != null) {
139
+ this.ak.setStyleProperty("background-color", this.g.c0._fill);
131
140
  }
132
141
  }
133
- bg() {
134
- if (!isNaN_(this.g.ay)) {
135
- NativeUI.o(this.ak, new CornerRadius(0, this.g.ay));
142
+ bm() {
143
+ if (!isNaN_(this.g.a0)) {
144
+ NativeUI.o(this.an, new CornerRadius(0, this.g.a0));
136
145
  }
137
146
  }
138
- bi() {
139
- if (null == this.al) {
147
+ bo() {
148
+ if (null == this.ao) {
140
149
  return;
141
150
  }
142
- this.bh();
143
- this.bf();
144
- this.bg();
151
+ this.be(this.g.aq);
152
+ this.bn();
153
+ this.bl();
154
+ this.bm();
155
+ }
156
+ a7(a) {
157
+ this.g.cb();
158
+ }
159
+ a8(a) {
160
+ this.g.cc();
145
161
  }
146
162
  a4(a) {
147
- this.g.b5();
163
+ this.g.b9();
148
164
  }
149
165
  a5(a) {
150
- this.g.b6();
151
- }
152
- a1(a) {
153
- this.g.b3();
154
- }
155
- a2(a) {
156
- this.g.b4(a.originalEvent.relatedTarget);
157
- }
158
- aq() {
159
- if (null != this.ag) {
160
- this.bi();
161
- this.ak.setStyleProperty("height", "0px");
162
- let a = this.ag.getNativeElement();
163
- if (false == this.l) {
164
- this.ai.remove();
165
- if (this.g.as) {
166
- let b = this.g.s();
166
+ this.g.ca(a.originalEvent.relatedTarget);
167
+ }
168
+ o() {
169
+ return (HTMLElement.prototype.hasOwnProperty("popover"));
170
+ }
171
+ l() {
172
+ return this.o() && this.g.ax;
173
+ }
174
+ at() {
175
+ if (null != this.aj) {
176
+ this.bo();
177
+ this.an.setStyleProperty("height", "0px");
178
+ let a = this.aj.getNativeElement();
179
+ if (false == this.m) {
180
+ this.al.remove();
181
+ if (this.g.at) {
182
+ let b = this.g.t();
167
183
  if (b == 1) {
168
- this.ag.setStyleProperty("display", "block");
169
- let c = this.ag.getNativeElement();
170
- let d = this.ai.getNativeElement();
171
- let e = this.ak.getNativeElement();
184
+ this.aj.setStyleProperty("display", "block");
185
+ let c = this.aj.getNativeElement();
186
+ let d = this.al.getNativeElement();
187
+ let e = this.an.getNativeElement();
172
188
  c.insertBefore(d, e);
173
189
  }
174
190
  else if (b == 2) {
175
- this.ag.setStyleProperty("display", "block");
176
- this.ag.append(this.ai);
191
+ this.aj.setStyleProperty("display", "block");
192
+ this.aj.append(this.al);
177
193
  }
178
194
  else if (b == 3) {
179
- this.ag.setStyleProperty("display", "flex");
180
- let f = this.ag.getNativeElement();
181
- let g = this.ai.getNativeElement();
182
- let h = this.ak.getNativeElement();
195
+ this.aj.setStyleProperty("display", "flex");
196
+ let f = this.aj.getNativeElement();
197
+ let g = this.al.getNativeElement();
198
+ let h = this.an.getNativeElement();
183
199
  f.insertBefore(g, h);
184
- this.ai.setStyleProperty("height", "unset");
185
- this.ai.setStyleProperty("width", 20 * 1.414 / 2 + "px");
200
+ this.al.setStyleProperty("height", "unset");
201
+ this.al.setStyleProperty("width", 20 * 1.414 / 2 + "px");
186
202
  }
187
203
  else if (b == 4) {
188
- this.ag.setStyleProperty("display", "flex");
189
- this.ag.append(this.ai);
190
- this.ai.setStyleProperty("height", "unset");
191
- this.ai.setStyleProperty("width", 20 * 1.414 / 2 + "px");
204
+ this.aj.setStyleProperty("display", "flex");
205
+ this.aj.append(this.al);
206
+ this.al.setStyleProperty("height", "unset");
207
+ this.al.setStyleProperty("width", 20 * 1.414 / 2 + "px");
192
208
  }
193
209
  }
194
- document.body.appendChild(a);
195
- this.l = true;
210
+ if (this.g.bd != null) {
211
+ this.g.bd.appendChild(a);
212
+ }
213
+ else {
214
+ document.body.appendChild(a);
215
+ }
216
+ this.m = true;
196
217
  if (this.k) {
197
- this.ay();
218
+ this.a1();
219
+ }
220
+ this.bh(this.g.ax);
221
+ if (this.l()) {
222
+ a.showPopover();
198
223
  }
199
224
  }
200
225
  }
201
226
  }
202
- ar(a, b) {
203
- this.ag.setStyleProperty("top", PopupView.ao(a.f));
204
- this.ak.setStyleProperty("height", PopupView.ap(a.h));
205
- this.ag.setStyleProperty("top", PopupView.ap(b.b));
206
- this.aj.setStyleProperty("opacity", "1");
207
- this.aj.setStyleProperty("transform", stringEmpty());
208
- this.u = 0;
209
- if (this.m) {
210
- this.be();
227
+ au(a, b) {
228
+ this.aj.setStyleProperty("top", PopupView.ar(a.f));
229
+ this.an.setStyleProperty("height", PopupView.as(a.h));
230
+ this.am.setStyleProperty("top", PopupView.as(b.b));
231
+ this.am.setStyleProperty("opacity", "1");
232
+ this.am.setStyleProperty("transform", stringEmpty());
233
+ this.x = 0;
234
+ if (this.p) {
235
+ this.bk();
211
236
  }
212
- if (this.g.av) {
213
- this.am.observe(this.af.getNativeElement());
237
+ if (this.g.aw) {
238
+ this.ap.observe(this.ai.getNativeElement());
214
239
  }
215
240
  else {
216
- this.am.disconnect();
241
+ this.ap.disconnect();
217
242
  }
218
243
  if (this.g.an) {
219
- this.bc(this.g.ar);
244
+ this.bg(this.g.as);
220
245
  }
221
246
  return {
222
247
  p0: a,
223
248
  p1: b
224
249
  };
225
250
  }
226
- as(a) {
227
- this.u = a;
251
+ av(a) {
252
+ this.x = a;
228
253
  if (this.g.an) {
229
- this.bc(false);
230
- }
231
- if (this.g.as) {
232
- let b = 0;
233
- let c = 0;
234
- switch (this.g.s()) {
235
- case 3:
236
- b = -135;
237
- c = this.z;
238
- this.s = c;
239
- this.t = a / 2 - this.z;
240
- break;
241
- case 4:
242
- b = 45;
243
- c = -this.z;
244
- this.s = c;
245
- this.t = a / 2 - this.z;
246
- break;
247
- }
248
- this.r = b;
249
- this.ah.setStyleProperty("transform", "translate(" + this.s + "px, " + this.t + "px) rotate(" + this.r + "deg)");
254
+ this.bg(false);
250
255
  }
256
+ this.bi(this.bs.width, a);
251
257
  }
252
- a9() {
253
- if (null != this.ag && this.l) {
254
- let a = this.ag.getNativeElement();
255
- document.body.removeChild(a);
256
- this.l = false;
258
+ bc() {
259
+ if (null != this.aj && this.m) {
260
+ let a = this.aj.getNativeElement();
261
+ if (this.g.bd != null) {
262
+ this.g.bd.removeChild(a);
263
+ }
264
+ else {
265
+ document.body.removeChild(a);
266
+ }
267
+ this.m = false;
257
268
  }
258
269
  }
259
- at(a) {
260
- this.af = a;
261
- this.aj.append(this.af);
262
- this.am = new ResizeObserver(runOn(this, this.a0));
270
+ aw(a) {
271
+ this.ai = a;
272
+ this.am.append(this.ai);
273
+ this.ap = new ResizeObserver(runOn(this, this.a3));
263
274
  }
264
- a0(a) {
265
- if (this.l) {
266
- if (this.g.ao() && this.g.o == 0) {
275
+ a3(a) {
276
+ if (this.m) {
277
+ if (this.g.ao() && this.g.p == 0) {
267
278
  return;
268
279
  }
269
- this.g.b0();
280
+ this.g.b6();
270
281
  }
271
282
  }
272
283
  j(a) {
273
- let b = this.ag.getNativeElement();
284
+ let b = this.aj.getNativeElement();
274
285
  return b.contains(a);
275
286
  }
276
- a8(a) {
277
- this.af = null;
278
- this.am.disconnect();
279
- this.am = null;
287
+ bb(a) {
288
+ this.ai = null;
289
+ this.ap.disconnect();
290
+ this.ap = null;
280
291
  a.remove();
281
292
  }
282
293
  d(a) {
283
- return new AnimationKeyFrameEffect(0, this.aj, 0, null, a);
294
+ return new AnimationKeyFrameEffect(0, this.am, 0, null, a);
284
295
  }
285
296
  e(a) {
286
- return new AnimationKeyFrameEffect(0, this.ak, 0, null, a);
297
+ return new AnimationKeyFrameEffect(0, this.an, 0, null, a);
287
298
  }
288
- av() {
299
+ ay() {
289
300
  if (KeyFrameAnimationFactory.h == null) {
290
- KeyFrameAnimationFactory.h = this.ae;
301
+ KeyFrameAnimationFactory.h = this.ah;
291
302
  }
292
303
  }
293
304
  c(a) {
294
- return new AnimationKeyFrameEffect(0, this.ag, 0, null, a);
305
+ return new AnimationKeyFrameEffect(0, this.aj, 0, null, a);
295
306
  }
296
307
  b(a) {
297
- return new AnimationKeyFrameEffect(0, this.ak, 0, null, a);
308
+ return new AnimationKeyFrameEffect(0, this.an, 0, null, a);
298
309
  }
299
310
  a(a) {
300
- return new AnimationKeyFrameEffect(0, this.ag, 0, null, a);
311
+ return new AnimationKeyFrameEffect(0, this.aj, 0, null, a);
301
312
  }
302
313
  i() {
303
314
  return 12;
@@ -305,20 +316,23 @@ export let PopupView = /*@__PURE__*/ (() => {
305
316
  h() {
306
317
  return 11;
307
318
  }
308
- get bl() {
319
+ n() {
320
+ return this.g.bd != null && !this.g.aq && !this.l();
321
+ }
322
+ get bs() {
309
323
  if (this.k) {
310
- this.ay();
324
+ this.a1();
311
325
  }
312
- return this.bk;
326
+ return this.br;
313
327
  }
314
- v(a, b, c) {
328
+ y(a, b, c) {
315
329
  let d;
316
330
  switch (b) {
317
331
  case 3:
318
- d = a.left - (this.bl.width + (this.g.as ? this.x : 0));
332
+ d = (!this.n() ? a.left : 0) - (this.bs.width + (this.g.at ? this.aa : 0));
319
333
  break;
320
334
  case 4:
321
- d = a.right;
335
+ d = !this.n() ? a.right : a.width;
322
336
  break;
323
337
  case 0:
324
338
  case 2:
@@ -326,78 +340,78 @@ export let PopupView = /*@__PURE__*/ (() => {
326
340
  default:
327
341
  switch (c) {
328
342
  case 2:
329
- d = a.right - this.bl.width;
343
+ d = (!this.n() ? a.right : a.width) - this.bs.width;
330
344
  break;
331
345
  case 3:
332
- d = a.right - (a.width / 2) - (this.bl.width / 2);
346
+ d = (!this.n() ? a.right : a.width) - (a.width / 2) - (this.bs.width / 2);
333
347
  break;
334
348
  case 0:
335
349
  case 1:
336
350
  default:
337
- d = a.left;
351
+ d = !this.n() ? a.left : 0;
338
352
  break;
339
353
  }
340
354
  break;
341
355
  }
342
356
  return d;
343
357
  }
344
- w(a, b, c) {
358
+ z(a, b, c) {
345
359
  let d;
346
360
  switch (b) {
347
361
  case 3:
348
362
  case 4:
349
363
  switch (c) {
350
364
  case 2:
351
- d = a.bottom - this.bl.height;
365
+ d = (!this.n() ? a.bottom : 0) - this.bs.height;
352
366
  break;
353
367
  case 3:
354
- d = a.top - (this.bl.height / 2) + (a.height / 2);
368
+ d = (!this.n() ? a.top : -a.height) - (this.bs.height / 2) + (a.height / 2);
355
369
  break;
356
370
  case 0:
357
371
  case 1:
358
372
  default:
359
- d = a.top;
373
+ d = !this.n() ? a.top : -a.height;
360
374
  break;
361
375
  }
362
376
  break;
363
377
  case 2:
364
- d = a.top - (this.bl.height + (this.g.as ? this.x : 0));
378
+ d = (!this.n() ? a.top : -a.height) - (this.bs.height + (this.g.at ? this.aa : 0));
365
379
  break;
366
380
  case 0:
367
381
  case 1:
368
382
  default:
369
- d = a.bottom;
383
+ d = !this.n() ? a.bottom : 0;
370
384
  break;
371
385
  }
372
386
  return d;
373
387
  }
374
- static ap(a) {
388
+ static as(a) {
375
389
  return stringFormat("{0}px", a);
376
390
  }
377
- static ao(a) {
391
+ static ar(a) {
378
392
  return stringFormat("{0}px", a);
379
393
  }
380
- bd() {
381
- if (this.g.q == 1 || this.g.q == 2) {
382
- switch (this.g.i) {
394
+ bj() {
395
+ if (this.g.r == 1 || this.g.r == 2) {
396
+ switch (this.g.j) {
383
397
  case 3:
384
- this.s = this.aa + (this.p - this.n);
398
+ this.v = this.ad + (this.s - this.q);
385
399
  break;
386
400
  }
387
401
  }
388
- else if (this.g.q == 3 || this.g.q == 4) {
389
- switch (this.g.i) {
402
+ else if (this.g.r == 3 || this.g.r == 4) {
403
+ switch (this.g.j) {
390
404
  case 3:
391
- this.t = this.ab + (this.q - this.o);
405
+ this.w = this.ae + (this.t - this.r);
392
406
  break;
393
407
  }
394
408
  }
395
- this.ah.setStyleProperty("transform", "translate(" + this.s + "px, " + this.t + "px) rotate(" + this.r + "deg)");
409
+ this.ak.setStyleProperty("transform", "translate(" + this.v + "px, " + this.w + "px) rotate(" + this.u + "deg)");
396
410
  }
397
- au(a, b, c, d) {
398
- this.p = a;
399
- this.q = b;
400
- if (this.g.q == 1 || this.g.q == 2) {
411
+ ax(a, b, c, d) {
412
+ this.s = a;
413
+ this.t = b;
414
+ if (this.g.r == 1 || this.g.r == 2) {
401
415
  let e = (window.innerWidth);
402
416
  let f = a;
403
417
  let g = f + c;
@@ -408,7 +422,7 @@ export let PopupView = /*@__PURE__*/ (() => {
408
422
  a = f - (g - (e - 5));
409
423
  }
410
424
  }
411
- else if (this.g.q == 3 || this.g.q == 4) {
425
+ else if (this.g.r == 3 || this.g.r == 4) {
412
426
  let h = (window.innerHeight);
413
427
  let i = b;
414
428
  let j = i + d;
@@ -424,161 +438,216 @@ export let PopupView = /*@__PURE__*/ (() => {
424
438
  p1: b
425
439
  };
426
440
  }
427
- bj(a, b, c) {
428
- let d = this.w(a, b, c);
429
- let e = this.v(a, b, c);
430
- let f = this.au(e, d, this.bl.width, this.bl.height);
431
- e = f.p0;
432
- d = f.p1;
433
- this.ba(e, d);
441
+ bq(a, b, c) {
442
+ let d = this.z(a, b, c);
443
+ let e = this.y(a, b, c);
444
+ if (this.g.bd == null) {
445
+ let f = this.ax(e, d, this.bs.width, this.bs.height);
446
+ e = f.p0;
447
+ d = f.p1;
448
+ }
449
+ this.bd(e, d);
434
450
  if (b == 2 || c == 2) {
435
451
  let g = 10;
436
452
  while (g > 0) {
437
- let h = this.w(a, b, c);
438
- let i = this.v(a, b, c);
439
- let j = this.au(i, h, this.bl.width, this.bl.height);
440
- i = j.p0;
441
- h = j.p1;
453
+ let h = this.z(a, b, c);
454
+ let i = this.y(a, b, c);
455
+ if (this.g.bd == null) {
456
+ let j = this.ax(i, h, this.bs.width, this.bs.height);
457
+ i = j.p0;
458
+ h = j.p1;
459
+ }
442
460
  if (h == d && i == e) {
443
461
  g = 0;
444
462
  break;
445
463
  }
446
464
  d = h;
447
465
  e = i;
448
- this.ba(e, d);
466
+ this.bd(e, d);
449
467
  g--;
450
468
  }
451
469
  }
452
- this.bd();
453
- return new Rect(0, e, d, this.bl.width, this.bl.height);
470
+ this.bj();
471
+ return new Rect(0, e, d, this.bs.width, this.bs.height);
454
472
  }
455
- ay() {
456
- if (this.l) {
457
- this.ak.setStyleProperty("width", stringEmpty());
458
- this.ak.setStyleProperty("height", stringEmpty());
459
- this.ag.setStyleProperty("width", stringEmpty());
460
- this.ag.setStyleProperty("height", stringEmpty());
461
- this.bk = new Size(1, this.aj.outerWidth(), this.aj.outerHeight());
473
+ bp(a, b, c) {
474
+ let d = new Rect(4);
475
+ let target_ = a;
476
+ if ((target_.getBoundingClientRect)) {
477
+ let bRect_ = target_.getBoundingClientRect();
478
+ d.left = (bRect_.left);
479
+ d.top = (bRect_.top);
480
+ d.width = (bRect_.width);
481
+ d.height = (bRect_.height);
482
+ }
483
+ let e = this.bq(d, b, c);
484
+ return e;
485
+ }
486
+ a1() {
487
+ if (this.m) {
488
+ this.an.setStyleProperty("width", stringEmpty());
489
+ this.an.setStyleProperty("height", stringEmpty());
490
+ this.aj.setStyleProperty("width", stringEmpty());
491
+ this.aj.setStyleProperty("height", stringEmpty());
492
+ this.aj.setStyleProperty("position", "absolute");
493
+ this.br = new Size(1, this.am.outerWidth(), this.am.outerHeight());
462
494
  this.k = false;
463
- this.be();
495
+ this.bk();
464
496
  }
465
497
  else {
466
498
  this.k = true;
467
499
  }
468
500
  }
469
- ba(a, b) {
501
+ bd(a, b) {
470
502
  let c = stringFormat("{0}px", a);
471
503
  let d = stringFormat("{0}px", b);
472
- this.ag.setStyleProperty("left", c);
473
- this.ag.setStyleProperty("top", d);
474
- this.n = a;
475
- this.o = b;
504
+ this.aj.setStyleProperty("left", c);
505
+ this.aj.setStyleProperty("top", d);
506
+ this.q = a;
507
+ this.r = b;
476
508
  }
477
- a6(a) {
509
+ a9(a) {
478
510
  if (a == null) {
479
- this.ad = null;
480
- if (this.ag != null) {
481
- this.ag.unlistenAll();
511
+ this.ag = null;
512
+ if (this.aj != null) {
513
+ this.aj.unlistenAll();
482
514
  }
483
515
  return;
484
516
  }
485
- this.ad = a;
517
+ this.ag = a;
486
518
  let b = a.rootWrapper;
487
- this.aw(b);
488
- this.ad.getPortal(this.aj, "ChildContent", (c) => {
519
+ this.az(b);
520
+ this.ag.getPortal(this.am, "ChildContent", (c) => {
489
521
  let comp_ = c.componentRef;
490
- this.an = comp_;
522
+ this.aq = comp_;
491
523
  }, true);
492
524
  }
493
- be() {
494
- let a = new Size(1, this.bl.width, this.bl.height);
495
- if (!this.l || !this.g.av) {
525
+ bk() {
526
+ let a = new Size(1, this.bs.width, this.bs.height);
527
+ if (!this.m || !this.g.aw) {
496
528
  a.height = 0;
497
529
  }
498
530
  let b = a.width;
499
531
  let c = a.height;
500
532
  let d = stringFormat("{0}px", b);
501
533
  let e = stringFormat("{0}px", c);
502
- if (this.g.as) {
503
- let f = 0;
504
- let g = 0;
505
- switch (this.g.s()) {
534
+ this.bi(b, c);
535
+ if (this.g.at) {
536
+ switch (this.g.t()) {
506
537
  case 2:
507
- f = 135;
508
- g = -this.z;
509
- this.s = b / 2 - this.z;
510
- this.t = g;
511
538
  d = stringFormat("{0}px", b);
512
- e = stringFormat("{0}px", this.x + c);
539
+ e = stringFormat("{0}px", this.aa + c);
513
540
  break;
514
541
  case 1:
515
- f = -45;
516
- g = this.x - this.z;
517
- this.s = b / 2 - this.z;
518
- this.t = g;
519
542
  d = stringFormat("{0}px", b);
520
- e = stringFormat("{0}px", this.x + c);
543
+ e = stringFormat("{0}px", this.aa + c);
521
544
  break;
522
545
  case 3:
523
- f = -135;
524
- g = this.x - this.z;
525
- this.s = g;
526
- this.t = c / 2 - this.z;
527
- d = stringFormat("{0}px", this.x + b);
546
+ d = stringFormat("{0}px", this.aa + b);
528
547
  e = stringFormat("{0}px", c);
529
548
  break;
530
549
  case 4:
531
- f = 45;
532
- g = -this.z;
533
- this.s = g;
534
- this.t = c / 2 - this.z;
535
- d = stringFormat("{0}px", this.x + b);
550
+ d = stringFormat("{0}px", this.aa + b);
536
551
  e = stringFormat("{0}px", c);
537
552
  break;
538
553
  }
539
- this.r = f;
540
- this.ah.setStyleProperty("transform", "translate(" + this.s + "px, " + this.t + "px) rotate(" + this.r + "deg)");
541
554
  }
542
555
  if (this.f.ao()) {
543
- if (this.u == c) {
556
+ if (this.x == c) {
544
557
  return;
545
558
  }
546
- this.f.bw();
547
- this.m = true;
559
+ this.f.b2();
560
+ this.p = true;
548
561
  return;
549
562
  }
550
- this.m = false;
551
- let h = stringFormat("{0}px", b);
552
- let i = stringFormat("{0}px", c);
553
- this.ak.setStyleProperty("width", h);
554
- this.ak.setStyleProperty("height", i);
555
- this.ag.setStyleProperty("width", d);
556
- this.ag.setStyleProperty("height", e);
563
+ this.p = false;
564
+ let f = stringFormat("{0}px", b);
565
+ let g = stringFormat("{0}px", c);
566
+ this.an.setStyleProperty("width", f);
567
+ this.an.setStyleProperty("height", g);
568
+ if (!this.l()) {
569
+ if (this.g.bd != null) {
570
+ e = "0px";
571
+ }
572
+ this.aj.setStyleProperty("width", d);
573
+ this.aj.setStyleProperty("height", e);
574
+ }
575
+ this.be(this.g.aq);
557
576
  }
558
- aw(a) {
559
- this.al = a;
560
- this.a3();
577
+ bi(a, b) {
578
+ if (this.g.at) {
579
+ let c = 0;
580
+ let d = 0;
581
+ switch (this.g.t()) {
582
+ case 2:
583
+ c = 135;
584
+ d = -this.ac;
585
+ this.v = a / 2 - this.ac;
586
+ this.w = d;
587
+ break;
588
+ case 1:
589
+ c = -45;
590
+ d = this.aa - this.ac;
591
+ this.v = a / 2 - this.ac;
592
+ this.w = d;
593
+ break;
594
+ case 3:
595
+ c = -135;
596
+ d = this.aa - this.ac;
597
+ this.v = d;
598
+ this.w = b / 2 - this.ac;
599
+ break;
600
+ case 4:
601
+ c = 45;
602
+ d = -this.ac;
603
+ this.v = d;
604
+ this.w = b / 2 - this.ac;
605
+ break;
606
+ }
607
+ this.u = c;
608
+ this.ak.setStyleProperty("transform", "translate(" + this.v + "px, " + this.w + "px) rotate(" + this.u + "deg)");
609
+ }
610
+ }
611
+ az(a) {
612
+ this.ao = a;
613
+ this.a6();
561
614
  }
562
- ax(a) {
615
+ a0(a) {
563
616
  this.f = a;
564
617
  }
565
- az() {
618
+ a2() {
566
619
  }
567
- a7() {
568
- this.aq();
569
- if (this.g.av) {
620
+ ba() {
621
+ this.at();
622
+ if (this.g.aw) {
570
623
  return;
571
624
  }
572
- this.be();
625
+ this.bk();
573
626
  }
574
- bc(a) {
575
- if (this.ag != null) {
576
- this.ag.setStyleProperty("pointer-events", a ? "auto" : "none");
627
+ bg(a) {
628
+ if (this.aj != null) {
629
+ this.aj.setStyleProperty("pointer-events", a ? "auto" : "none");
577
630
  }
578
631
  }
579
- bb(a) {
580
- if (this.ag != null) {
581
- this.ag.setAttribute("tabindex", a ? "-1" : "");
632
+ bf(a) {
633
+ if (this.aj != null) {
634
+ this.aj.setAttribute("tabindex", a ? "-1" : "");
635
+ }
636
+ }
637
+ be(a) {
638
+ if (this.aj != null) {
639
+ this.aj.setStyleProperty("position", a ? "fixed" : this.g.bd != null ? "relative" : "absolute");
640
+ }
641
+ }
642
+ bh(a) {
643
+ if (this.aj != null && this.o()) {
644
+ let b = this.aj.getNativeElement();
645
+ if (a) {
646
+ b.popover = "manual";
647
+ }
648
+ else {
649
+ b.popover = undefined;
650
+ }
582
651
  }
583
652
  }
584
653
  }
@@ -592,13 +661,12 @@ export let Popup = /*@__PURE__*/ (() => {
592
661
  class Popup extends Base {
593
662
  constructor() {
594
663
  super();
595
- this.p = 0;
596
- this.h = 0;
597
- this.az = 0;
598
- this.cu = null;
599
- this.cs = null;
600
- this.aa = null;
601
- this.ab = null;
664
+ this.q = 0;
665
+ this.i = 0;
666
+ this.a1 = 0;
667
+ this.c3 = null;
668
+ this.c1 = null;
669
+ this.bb = null;
602
670
  this.onClosed = null;
603
671
  this.onPopup = null;
604
672
  this.propertyChanged = null;
@@ -606,69 +674,77 @@ export let Popup = /*@__PURE__*/ (() => {
606
674
  this.popupMouseLeave = null;
607
675
  this.popupGotFocus = null;
608
676
  this.popupLostFocus = null;
609
- this.v = null;
610
- this.ag = false;
611
- this.a5 = 50;
677
+ this.w = null;
678
+ this.af = false;
679
+ this.a7 = 50;
612
680
  this.ak = true;
613
- this.n = 0;
614
- this.a3 = -1;
615
- this.a2 = Popup.a7;
616
- this.au = false;
617
- this.ch = Popup.cq;
618
- this.cg = Popup.cp;
619
- this.cf = Popup.co;
620
- this.ci = null;
621
- this.aw = 0;
622
- this.ah = true;
623
- this.ae = false;
681
+ this.o = 0;
682
+ this.a5 = -1;
683
+ this.a4 = Popup.a9;
684
+ this.av = false;
685
+ this.cq = Popup.cz;
686
+ this.cp = Popup.cy;
687
+ this.co = Popup.cx;
688
+ this.cr = null;
689
+ this.ay = 0;
690
+ this.ag = true;
691
+ this.ac = false;
692
+ this.ah = false;
693
+ this.s = 0;
694
+ this.cs = null;
695
+ this.az = 20;
624
696
  this.ai = false;
625
- this.r = 0;
626
- this.cj = null;
627
- this.ax = 20;
697
+ this.ad = false;
698
+ this.ae = false;
628
699
  this.aj = false;
629
- this.af = false;
630
- this.j = null;
631
- let a = this.u();
632
- this.v = a;
633
- a.ax(this);
700
+ this.k = null;
701
+ let a = this.v();
702
+ this.w = a;
703
+ a.a0(this);
634
704
  }
635
- get cv() {
636
- return this.cu;
705
+ get c4() {
706
+ return this.c3;
637
707
  }
638
- get ct() {
639
- return this.cs;
708
+ get c2() {
709
+ return this.c1;
640
710
  }
641
- get q() {
642
- return this.p;
711
+ get r() {
712
+ return this.q;
643
713
  }
644
- get i() {
645
- return this.h;
714
+ set r(a) {
715
+ this.q = a;
646
716
  }
647
- get a0() {
648
- return this.az;
717
+ get j() {
718
+ return this.i;
719
+ }
720
+ get a2() {
721
+ return this.a1;
649
722
  }
650
- b7(a, b, c) {
723
+ get bd() {
724
+ return this.bb;
725
+ }
726
+ cd(a, b, c) {
651
727
  if (this.propertyChanged != null) {
652
728
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
653
729
  }
654
- this.b9(a, b, c);
730
+ this.cg(a, b, c);
655
731
  }
656
- b5() {
732
+ cb() {
657
733
  if (this.popupMouseEnter != null) {
658
734
  this.popupMouseEnter(this, new MouseEventArgs());
659
735
  }
660
736
  }
661
- b6() {
737
+ cc() {
662
738
  if (this.popupMouseLeave != null) {
663
739
  this.popupMouseLeave(this, new MouseEventArgs());
664
740
  }
665
741
  }
666
- b3() {
742
+ b9() {
667
743
  if (this.popupGotFocus != null) {
668
744
  this.popupGotFocus(this, new FocusEventArgs());
669
745
  }
670
746
  }
671
- b4(a) {
747
+ ca(a) {
672
748
  if (this.popupLostFocus != null) {
673
749
  this.popupLostFocus(this, ((() => {
674
750
  let $ret = new FocusEventArgs();
@@ -677,24 +753,24 @@ export let Popup = /*@__PURE__*/ (() => {
677
753
  })()));
678
754
  }
679
755
  }
680
- get aq() {
681
- return this.ag;
756
+ get ar() {
757
+ return this.af;
682
758
  }
683
- set aq(a) {
684
- let b = this.ag;
685
- this.ag = a;
686
- if (b != this.ag) {
687
- this.b7("IsFocusable", b, this.ag);
759
+ set ar(a) {
760
+ let b = this.af;
761
+ this.af = a;
762
+ if (b != this.af) {
763
+ this.cd("IsFocusable", b, this.af);
688
764
  }
689
765
  }
690
- get a6() {
691
- return this.a5;
766
+ get a8() {
767
+ return this.a7;
692
768
  }
693
- set a6(a) {
694
- let b = this.a5;
695
- this.a5 = a;
696
- if (b != this.a5) {
697
- this.b7("AnimationDuration", b, a);
769
+ set a8(a) {
770
+ let b = this.a7;
771
+ this.a7 = a;
772
+ if (b != this.a7) {
773
+ this.cd("AnimationDuration", b, a);
698
774
  }
699
775
  }
700
776
  get al() {
@@ -704,176 +780,197 @@ export let Popup = /*@__PURE__*/ (() => {
704
780
  let b = this.ak;
705
781
  this.ak = a;
706
782
  if (b != this.ak) {
707
- this.b7("AnimationEnabled", b, a);
783
+ this.cd("AnimationEnabled", b, a);
708
784
  }
709
785
  }
710
- get o() {
711
- return this.n;
786
+ get p() {
787
+ return this.o;
712
788
  }
713
- set o(a) {
714
- let b = this.n;
715
- this.n = a;
716
- if (b != this.n) {
717
- this.b7("AnimationType", enumGetBox(PopupAnimationType_$type, b), enumGetBox(PopupAnimationType_$type, this.n));
789
+ set p(a) {
790
+ let b = this.o;
791
+ this.o = a;
792
+ if (b != this.o) {
793
+ this.cd("AnimationType", enumGetBox(PopupAnimationType_$type, b), enumGetBox(PopupAnimationType_$type, this.o));
718
794
  }
719
795
  }
720
- get a8() {
721
- return this.a3;
796
+ get ba() {
797
+ return this.a5;
722
798
  }
723
- set a8(a) {
724
- let b = this.a3;
725
- this.a3 = a;
726
- if (b != this.a3) {
727
- this.b7("Elevation", b, a);
799
+ set ba(a) {
800
+ let b = this.a5;
801
+ this.a5 = a;
802
+ if (b != this.a5) {
803
+ this.cd("Elevation", b, a);
728
804
  }
729
805
  }
730
- get a4() {
731
- return this.a2;
806
+ get a6() {
807
+ return this.a4;
732
808
  }
733
- set a4(a) {
734
- let b = this.a2;
735
- this.a2 = a;
736
- if (b != this.a2) {
737
- this.b7("ActualElevation", b, a);
809
+ set a6(a) {
810
+ let b = this.a4;
811
+ this.a4 = a;
812
+ if (b != this.a4) {
813
+ this.cd("ActualElevation", b, a);
738
814
  }
739
815
  }
740
- get av() {
741
- return this.au;
816
+ get aw() {
817
+ return this.av;
742
818
  }
743
- get cm() {
744
- return this.ch;
819
+ get cv() {
820
+ return this.cq;
745
821
  }
746
- set cm(a) {
747
- let b = this.ch;
748
- this.ch = a;
749
- if (b != this.ch) {
750
- this.b7("ActualUmbraShadowColor", b, a);
822
+ set cv(a) {
823
+ let b = this.cq;
824
+ this.cq = a;
825
+ if (b != this.cq) {
826
+ this.cd("ActualUmbraShadowColor", b, a);
751
827
  }
752
828
  }
753
- get cl() {
754
- return this.cg;
829
+ get cu() {
830
+ return this.cp;
755
831
  }
756
- set cl(a) {
757
- let b = this.cg;
758
- this.cg = a;
759
- if (b != this.cg) {
760
- this.b7("ActualPenumbraShadowColor", b, a);
832
+ set cu(a) {
833
+ let b = this.cp;
834
+ this.cp = a;
835
+ if (b != this.cp) {
836
+ this.cd("ActualPenumbraShadowColor", b, a);
761
837
  }
762
838
  }
763
- get ck() {
764
- return this.cf;
839
+ get ct() {
840
+ return this.co;
765
841
  }
766
- set ck(a) {
767
- let b = this.cf;
768
- this.cf = a;
769
- if (b != this.cf) {
770
- this.b7("ActualAmbientShadowColor", b, a);
842
+ set ct(a) {
843
+ let b = this.co;
844
+ this.co = a;
845
+ if (b != this.co) {
846
+ this.cd("ActualAmbientShadowColor", b, a);
771
847
  }
772
848
  }
773
- get cn() {
774
- return this.ci;
849
+ get cw() {
850
+ return this.cr;
775
851
  }
776
- set cn(a) {
777
- let b = this.ci;
778
- this.ci = a;
779
- if (b != this.ci) {
780
- this.b7("Background", b, this.ci);
852
+ set cw(a) {
853
+ let b = this.cr;
854
+ this.cr = a;
855
+ if (b != this.cr) {
856
+ this.cd("Background", b, this.cr);
781
857
  }
782
858
  }
783
- get ay() {
784
- return this.aw;
859
+ get a0() {
860
+ return this.ay;
785
861
  }
786
- set ay(a) {
787
- let b = this.aw;
788
- this.aw = a;
789
- if (b != this.aw) {
790
- this.b7("CornerRadius", b, this.aw);
862
+ set a0(a) {
863
+ let b = this.ay;
864
+ this.ay = a;
865
+ if (b != this.ay) {
866
+ this.cd("CornerRadius", b, this.ay);
791
867
  }
792
868
  }
793
- get ar() {
794
- return this.ah;
869
+ get as() {
870
+ return this.ag;
795
871
  }
796
- set ar(a) {
797
- let b = this.ah;
798
- this.ah = a;
799
- if (b != this.ah) {
800
- this.b7("IsHitTestVisible", b, this.ah);
872
+ set as(a) {
873
+ let b = this.ag;
874
+ this.ag = a;
875
+ if (b != this.ag) {
876
+ this.cd("IsHitTestVisible", b, this.ag);
801
877
  }
802
878
  }
803
879
  get an() {
804
- return this.ae;
880
+ return this.ac;
805
881
  }
806
882
  set an(a) {
807
- let b = this.ae;
808
- this.ae = a;
809
- if (b != this.ae) {
810
- this.b7("DisableHitTestDuringAnimation", b, this.ae);
883
+ let b = this.ac;
884
+ this.ac = a;
885
+ if (b != this.ac) {
886
+ this.cd("DisableHitTestDuringAnimation", b, this.ac);
811
887
  }
812
888
  }
813
- get as() {
814
- return this.ai;
889
+ get at() {
890
+ return this.ah;
815
891
  }
816
- set as(a) {
817
- let b = this.ai;
818
- this.ai = a;
819
- if (b != this.ai) {
820
- this.b7("IsPointerEnabled", b, this.ai);
892
+ set at(a) {
893
+ let b = this.ah;
894
+ this.ah = a;
895
+ if (b != this.ah) {
896
+ this.cd("IsPointerEnabled", b, this.ah);
821
897
  }
822
898
  }
823
- get t() {
824
- return this.r;
899
+ get u() {
900
+ return this.s;
825
901
  }
826
- set t(a) {
827
- let b = this.r;
828
- this.r = a;
829
- if (b != this.r) {
830
- this.b7("PointerPosition", enumGetBox(PopupPointerPosition_$type, b), enumGetBox(PopupPointerPosition_$type, this.r));
902
+ set u(a) {
903
+ let b = this.s;
904
+ this.s = a;
905
+ if (b != this.s) {
906
+ this.cd("PointerPosition", enumGetBox(PopupPointerPosition_$type, b), enumGetBox(PopupPointerPosition_$type, this.s));
831
907
  }
832
908
  }
833
- get cr() {
834
- return this.cj;
909
+ get c0() {
910
+ return this.cs;
835
911
  }
836
- set cr(a) {
837
- let b = this.cj;
838
- this.cj = a;
839
- if (b != this.cj) {
840
- this.b7("PointerBackground", b, this.cj);
912
+ set c0(a) {
913
+ let b = this.cs;
914
+ this.cs = a;
915
+ if (b != this.cs) {
916
+ this.cd("PointerBackground", b, this.cs);
841
917
  }
842
918
  }
843
- get a1() {
844
- return this.ax;
919
+ get a3() {
920
+ return this.az;
845
921
  }
846
- set a1(a) {
847
- let b = this.ax;
848
- this.ax = a;
849
- if (b != this.ax) {
850
- this.b7("PointerSize", b, this.ax);
922
+ set a3(a) {
923
+ let b = this.az;
924
+ this.az = a;
925
+ if (b != this.az) {
926
+ this.cd("PointerSize", b, this.az);
851
927
  }
852
928
  }
853
- get at() {
854
- return this.aj;
929
+ get au() {
930
+ return this.ai;
855
931
  }
856
- set at(a) {
857
- this.aj = a;
932
+ set au(a) {
933
+ this.ai = a;
858
934
  }
859
935
  get ap() {
860
- return this.af;
936
+ return this.ad;
861
937
  }
862
938
  set ap(a) {
863
- this.af = a;
939
+ this.ad = a;
940
+ }
941
+ get aq() {
942
+ return this.ae;
943
+ }
944
+ set aq(a) {
945
+ let b = this.ae;
946
+ this.ae = a;
947
+ if (b != this.ae) {
948
+ this.cd("IsFixed", b, this.ae);
949
+ }
864
950
  }
865
- u() {
951
+ get ax() {
952
+ return this.aj;
953
+ }
954
+ set ax(a) {
955
+ let b = this.aj;
956
+ this.aj = a;
957
+ if (b != this.aj) {
958
+ this.cd("UseTopLayer", b, this.aj);
959
+ }
960
+ }
961
+ v() {
866
962
  return new PopupView();
867
963
  }
868
- b9(a, b, c) {
964
+ cg(a, b, c) {
869
965
  switch (a) {
870
966
  case "IsShown":
871
- if (false == this.av) {
872
- this.v.a9();
967
+ if (false == this.aw) {
968
+ this.w.bc();
969
+ this.bb = null;
873
970
  }
874
971
  break;
875
972
  case "Elevation":
876
- this.a4 = this.a8 == -1 ? Popup.a7 : this.a8;
973
+ this.a6 = this.ba == -1 ? Popup.a9 : this.ba;
877
974
  break;
878
975
  case "ActualElevation":
879
976
  case "ActualUmbraShadowColor":
@@ -881,35 +978,40 @@ export let Popup = /*@__PURE__*/ (() => {
881
978
  case "ActualAmbientShadowColor":
882
979
  case "Background":
883
980
  case "CornerRadius":
884
- this.v.bi();
981
+ this.w.bo();
885
982
  break;
886
983
  case "AnimationEnabled":
887
984
  if (false == this.al) {
888
- this.bw();
985
+ this.b2();
889
986
  }
890
987
  break;
891
988
  case "IsHitTestVisible":
892
- this.v.bc(this.ar);
989
+ this.w.bg(this.as);
893
990
  break;
894
991
  case "IsFocusable":
895
- this.v.bb(this.aq);
992
+ this.w.bf(this.ar);
993
+ break;
994
+ case "IsFixed":
995
+ this.w.be(this.aq);
996
+ break;
997
+ case "UseTopLayer":
998
+ this.w.bh(this.ax);
896
999
  break;
897
1000
  }
898
1001
  }
899
- bw() {
1002
+ b2() {
900
1003
  if (this.ao()) {
901
- if (null != this.ab && this.ab.playState == 1) {
902
- this.ab.cancel();
903
- }
904
- if (null != this.aa && this.aa.playState == 1) {
905
- this.aa.cancel();
1004
+ for (let a = 0; a < this.k.a.count; a++) {
1005
+ if (this.k.a._inner[a].playState == 1) {
1006
+ this.k.a._inner[a].cancel();
1007
+ }
906
1008
  }
907
1009
  }
908
1010
  }
909
- y(a) {
910
- let b = this.f(a);
911
- let c = a ? this.b() : this.a();
912
- let d = this.v.d(c);
1011
+ z(a) {
1012
+ let b = this.g(a);
1013
+ let c = a ? this.c() : this.b();
1014
+ let d = this.w.d(c);
913
1015
  let e = new List$1(AnimationKeyFrameProperty.$, 0);
914
1016
  let f = new List$1(AnimationKeyFrameProperty.$, 0);
915
1017
  let g = new TranslateTransform();
@@ -924,52 +1026,60 @@ export let Popup = /*@__PURE__*/ (() => {
924
1026
  d.m(...f.toArray());
925
1027
  return KeyFrameAnimationFactory.f.c(d);
926
1028
  }
927
- z(a) {
928
- let b = this.g(a);
929
- this.v.as(b.h);
930
- let c = a ? this.b() : this.a();
931
- let d = this.v.e(c);
932
- let e = new List$1(AnimationKeyFrameProperty.$, 0);
1029
+ a(a) {
1030
+ let b = new List$1(IKeyFrameAnimation_$type, 0);
1031
+ let c = this.h(a);
1032
+ this.w.av(c.h);
1033
+ let d = a ? this.c() : this.b();
1034
+ let e = this.w.e(d);
933
1035
  let f = new List$1(AnimationKeyFrameProperty.$, 0);
934
- let g = new AnimationKeyFrameProperty(10, b.g);
935
- let h = new AnimationKeyFrameProperty(10, b.h);
936
- e.add(g);
1036
+ let g = new List$1(AnimationKeyFrameProperty.$, 0);
1037
+ let h = new AnimationKeyFrameProperty(10, c.g);
1038
+ let i = new AnimationKeyFrameProperty(10, c.h);
937
1039
  f.add(h);
938
- if (this.p == 2) {
939
- let i = b.c;
940
- let j = b.f;
941
- let k = new AnimationKeyFrameProperty(12, i);
942
- let l = new AnimationKeyFrameProperty(12, j);
943
- e.add(k);
944
- f.add(l);
945
- }
946
- d.m(...e.toArray());
947
- d.m(...f.toArray());
948
- return KeyFrameAnimationFactory.f.c(d);
1040
+ g.add(i);
1041
+ e.m(...f.toArray());
1042
+ e.m(...g.toArray());
1043
+ b.add(KeyFrameAnimationFactory.f.c(e));
1044
+ if (this.q == 2) {
1045
+ let j = c.c;
1046
+ let k = c.f;
1047
+ let l = this.w.c(d);
1048
+ let m = new List$1(AnimationKeyFrameProperty.$, 0);
1049
+ let n = new List$1(AnimationKeyFrameProperty.$, 0);
1050
+ let o = new AnimationKeyFrameProperty(12, j);
1051
+ let p = new AnimationKeyFrameProperty(12, k);
1052
+ m.add(o);
1053
+ n.add(p);
1054
+ l.m(...m.toArray());
1055
+ l.m(...n.toArray());
1056
+ b.add(KeyFrameAnimationFactory.f.c(l));
1057
+ }
1058
+ return b.toArray();
949
1059
  }
950
- a() {
1060
+ b() {
951
1061
  let a = new AnimationKeyFrameEffectTiming();
952
- a.g = this.a6;
1062
+ a.g = this.a8;
953
1063
  a.b = 3;
954
1064
  return a;
955
1065
  }
956
- b() {
1066
+ c() {
957
1067
  let a = new AnimationKeyFrameEffectTiming();
958
- a.g = this.a6;
1068
+ a.g = this.a8;
959
1069
  a.b = 3;
960
1070
  return a;
961
1071
  }
962
- bz() {
963
- this.v.av();
1072
+ b5() {
1073
+ this.w.ay();
964
1074
  }
965
- f(a) {
966
- let b = truncate(this.v.bl.height);
1075
+ g(a) {
1076
+ let b = truncate(this.w.bs.height);
967
1077
  if (b <= 0) {
968
1078
  b = 500;
969
1079
  }
970
1080
  let c = a ? -b : 0;
971
1081
  let d = a ? 0 : -b;
972
- if (this.p == 2) {
1082
+ if (this.q == 2) {
973
1083
  c = 0;
974
1084
  d = 0;
975
1085
  }
@@ -981,35 +1091,35 @@ export let Popup = /*@__PURE__*/ (() => {
981
1091
  })());
982
1092
  return e;
983
1093
  }
984
- g(a) {
985
- let b = truncate(this.v.bl.height);
1094
+ h(a) {
1095
+ let b = truncate(this.w.bs.height);
986
1096
  if (b <= 0) {
987
1097
  b = 500;
988
1098
  }
989
1099
  let c = a ? 0 : b;
990
1100
  let d = a ? b : 0;
991
- let e = this.cu.top;
992
- let f = this.cu.top;
993
- let g = this.cu.left;
1101
+ let e = this.c3.top;
1102
+ let f = this.c3.top;
1103
+ let g = this.c3.left;
994
1104
  let h = g;
995
- switch (this.p) {
1105
+ switch (this.q) {
996
1106
  case 2:
997
- e = a ? this.cu.bottom : this.cu.top;
998
- f = a ? this.cu.top : this.cu.bottom;
999
- g = this.cu.left;
1107
+ e = a ? this.c3.bottom : this.c3.top;
1108
+ f = a ? this.c3.top : this.c3.bottom;
1109
+ g = this.c3.left;
1000
1110
  h = g;
1001
1111
  break;
1002
1112
  case 1:
1003
- e = this.cu.top;
1004
- f = this.cu.top;
1005
- g = this.cu.left;
1113
+ e = this.c3.top;
1114
+ f = this.c3.top;
1115
+ g = this.c3.left;
1006
1116
  h = g;
1007
1117
  break;
1008
1118
  case 3:
1009
1119
  case 4:
1010
- e = this.cu.top;
1120
+ e = this.c3.top;
1011
1121
  f = e;
1012
- g = this.cu.left;
1122
+ g = this.c3.left;
1013
1123
  h = g;
1014
1124
  break;
1015
1125
  }
@@ -1026,59 +1136,79 @@ export let Popup = /*@__PURE__*/ (() => {
1026
1136
  return i;
1027
1137
  }
1028
1138
  ao() {
1029
- if (null == this.ab && null == this.aa) {
1139
+ if (this.k == null) {
1030
1140
  return false;
1031
1141
  }
1032
- if (null != this.ab && this.ab.playState == 1) {
1033
- return true;
1034
- }
1035
- if (null != this.aa && this.aa.playState == 1) {
1036
- return true;
1142
+ for (let a = 0; a < this.k.a.count; a++) {
1143
+ if (this.k.a._inner[a].playState == 1) {
1144
+ return true;
1145
+ }
1037
1146
  }
1038
1147
  return false;
1039
1148
  }
1040
- b0() {
1041
- this.v.ay();
1149
+ b6() {
1150
+ this.w.a1();
1151
+ if (this.aw) {
1152
+ if (this.bd != null) {
1153
+ this.c3 = this.w.bp(this.bd, this.q, this.i);
1154
+ }
1155
+ else {
1156
+ this.c3 = this.w.bq(this.c1, this.q, this.i);
1157
+ }
1158
+ }
1159
+ }
1160
+ cf(a, b, c) {
1161
+ this.c1 = a;
1162
+ this.q = b;
1163
+ this.i = c;
1164
+ this.a1 = 0;
1165
+ this.w.ba();
1166
+ this.c3 = this.w.bq(a, b, c);
1167
+ }
1168
+ ce(a, b, c) {
1169
+ this.bb = a;
1170
+ this.q = b;
1171
+ this.i = c;
1172
+ this.a1 = 0;
1173
+ this.w.ba();
1174
+ this.c3 = this.w.bp(a, b, c);
1175
+ }
1176
+ ck(a, b, c) {
1042
1177
  if (this.av) {
1043
- this.cu = this.v.bj(this.cs, this.p, this.h);
1178
+ this.av = false;
1179
+ this.cd("IsShown", true, this.av);
1044
1180
  }
1181
+ this.cf(a, b, c);
1182
+ this.cl(true);
1045
1183
  }
1046
- b8(a, b, c) {
1047
- this.cs = a;
1048
- this.p = b;
1049
- this.h = c;
1050
- this.az = 0;
1051
- this.v.a7();
1052
- this.cu = this.v.bj(a, b, c);
1053
- }
1054
- cc(a, b, c) {
1055
- if (this.au) {
1056
- this.au = false;
1057
- this.b7("IsShown", true, this.au);
1184
+ cj(a, b, c) {
1185
+ if (this.av) {
1186
+ this.av = false;
1187
+ this.cd("IsShown", true, this.av);
1058
1188
  }
1059
- this.b8(a, b, c);
1060
- this.cd(true);
1189
+ this.ce(a, b, c);
1190
+ this.cl(true);
1061
1191
  }
1062
- cd(a) {
1063
- this.bw();
1064
- let b = this.au;
1192
+ cl(a) {
1193
+ this.b2();
1194
+ let b = this.av;
1195
+ this.av = a;
1065
1196
  this.au = a;
1066
- this.at = a;
1067
1197
  this.ap = !a;
1068
- let c = this.g(a);
1069
- let d = this.f(a);
1198
+ let c = this.h(a);
1199
+ let d = this.g(a);
1070
1200
  if (false == this.al) {
1071
- let e = this.v.ar(c, d);
1201
+ let e = this.w.au(c, d);
1072
1202
  c = e.p0;
1073
1203
  d = e.p1;
1074
1204
  return;
1075
1205
  }
1076
- this.bz();
1077
- this.j = this.k(this.o, this.au);
1078
- this.j.d(() => {
1079
- this.j.c();
1080
- this.b7("IsShown", b, this.au);
1081
- if (this.au) {
1206
+ this.b5();
1207
+ this.k = this.l(this.p, this.av);
1208
+ this.k.d(() => {
1209
+ this.k.c();
1210
+ this.cd("IsShown", b, this.av);
1211
+ if (this.av) {
1082
1212
  if (this.onPopup != null) {
1083
1213
  this.onPopup(this, new OnPopupEventArgs());
1084
1214
  }
@@ -1088,65 +1218,68 @@ export let Popup = /*@__PURE__*/ (() => {
1088
1218
  this.onClosed(this, new OnClosedEventArgs());
1089
1219
  }
1090
1220
  }
1091
- this.at = false;
1221
+ this.au = false;
1092
1222
  this.ap = false;
1093
- let f = this.v.ar(c, d);
1223
+ let f = this.w.au(c, d);
1094
1224
  c = f.p0;
1095
1225
  d = f.p1;
1096
1226
  });
1097
1227
  }
1098
- k(a, b) {
1228
+ l(a, b) {
1099
1229
  switch (a) {
1100
- case 0: return this.m(b);
1101
- case 1: return this.l(b);
1102
- default: return this.m(b);
1230
+ case 0: return this.n(b);
1231
+ case 1: return this.m(b);
1232
+ default: return this.n(b);
1103
1233
  }
1104
1234
  }
1105
- m(a) {
1106
- let b = this.y(a);
1107
- let c = this.z(a);
1235
+ n(a) {
1236
+ let b = this.z(a);
1237
+ let c = this.a(a);
1108
1238
  let d = new PopupAnimation();
1109
1239
  d.a.add(b);
1110
- d.a.add(c);
1240
+ for (let f = 0; f < c.length; f++) {
1241
+ let e = c[f];
1242
+ d.a.add(e);
1243
+ }
1111
1244
  return d;
1112
1245
  }
1113
- l(a) {
1114
- let b = this.g(a);
1115
- this.v.as(a ? b.h : b.g);
1116
- let c = this.b();
1117
- let d = this.v.c(c);
1246
+ m(a) {
1247
+ let b = this.h(a);
1248
+ this.w.av(a ? b.h : b.g);
1249
+ let c = this.c();
1250
+ let d = this.w.c(c);
1118
1251
  let e = DeviceUtils.g(30);
1119
- let f = this.v.i();
1252
+ let f = this.w.i();
1120
1253
  let g = b.f - e;
1121
1254
  let h = b.f;
1122
- switch (this.p) {
1255
+ switch (this.q) {
1123
1256
  case 2:
1124
1257
  g = a ? b.f + e : b.c + e;
1125
1258
  h = a ? b.f : b.c;
1126
- f = this.v.i();
1259
+ f = this.w.i();
1127
1260
  break;
1128
1261
  case 1:
1129
1262
  g = b.f - e;
1130
1263
  h = b.f;
1131
- f = this.v.i();
1264
+ f = this.w.i();
1132
1265
  break;
1133
1266
  case 3:
1134
1267
  g = b.d + e;
1135
1268
  h = b.d;
1136
- f = this.v.h();
1269
+ f = this.w.h();
1137
1270
  break;
1138
1271
  case 4:
1139
1272
  g = b.d - e;
1140
1273
  h = b.d;
1141
- f = this.v.h();
1274
+ f = this.w.h();
1142
1275
  break;
1143
1276
  }
1144
1277
  d.m(new AnimationKeyFrameProperty(f, a ? g : h));
1145
1278
  d.m(new AnimationKeyFrameProperty(f, a ? h : g));
1146
- let i = this.v.a(c);
1279
+ let i = this.w.a(c);
1147
1280
  i.m(new AnimationKeyFrameProperty(1, a ? 0 : 1));
1148
1281
  i.m(new AnimationKeyFrameProperty(1, a ? 1 : 0));
1149
- let j = this.v.b(c);
1282
+ let j = this.w.b(c);
1150
1283
  j.m(new AnimationKeyFrameProperty(10, (a ? b.h : b.g)));
1151
1284
  j.m(new AnimationKeyFrameProperty(10, (a ? b.h : b.g)));
1152
1285
  let k = new PopupAnimation();
@@ -1156,55 +1289,58 @@ export let Popup = /*@__PURE__*/ (() => {
1156
1289
  return k;
1157
1290
  }
1158
1291
  contains(a) {
1159
- return this.v.j(a);
1292
+ return this.w.j(a);
1160
1293
  }
1161
1294
  appendPopupContent(a) {
1162
- this.v.at(a);
1295
+ this.w.aw(a);
1163
1296
  }
1164
1297
  removePopupContent(a) {
1165
- this.v.a8(a);
1298
+ this.w.bb(a);
1166
1299
  }
1167
- bx() {
1168
- if (!this.au) {
1300
+ b3() {
1301
+ if (!this.av) {
1169
1302
  return;
1170
1303
  }
1171
- this.cd(false);
1304
+ this.cl(false);
1172
1305
  }
1173
1306
  destroy() {
1174
1307
  this.provideRenderer(null);
1175
1308
  }
1176
1309
  showRelativeToExclusionRect(a, b, c) {
1177
- this.cc(a, b, c);
1310
+ this.ck(a, b, c);
1178
1311
  }
1179
- b1(a) {
1180
- this.cs = a;
1181
- this.cu = this.v.bj(a, this.p, this.h);
1312
+ cn(a, b, c) {
1313
+ this.cj(a, b, c);
1314
+ }
1315
+ b7(a) {
1316
+ this.c1 = a;
1317
+ this.c3 = this.w.bq(a, this.q, this.i);
1182
1318
  }
1183
1319
  notifySizeChanged() {
1184
1320
  }
1185
1321
  provideRenderer(a) {
1186
- this.v.a6(a);
1322
+ this.w.a9(a);
1187
1323
  }
1188
- a9() {
1189
- return this.c();
1324
+ bc() {
1325
+ return this.d();
1190
1326
  }
1191
- bl() {
1192
- let a = this.c();
1327
+ bp() {
1328
+ let a = this.d();
1193
1329
  return a.f();
1194
1330
  }
1195
- c() {
1331
+ d() {
1196
1332
  let a = new PopupVisualModelExport();
1197
- a.e = this.a4;
1198
- a.d = this.av;
1199
- a.c = AppearanceHelper.a(this.cm);
1200
- a.b = AppearanceHelper.a(this.cl);
1201
- a.a = AppearanceHelper.a(this.ck);
1333
+ a.e = this.a6;
1334
+ a.d = this.aw;
1335
+ a.c = AppearanceHelper.a(this.cv);
1336
+ a.b = AppearanceHelper.a(this.cu);
1337
+ a.a = AppearanceHelper.a(this.ct);
1202
1338
  return a;
1203
1339
  }
1204
- s() {
1205
- let a = this.t;
1340
+ t() {
1341
+ let a = this.u;
1206
1342
  if (a == 0) {
1207
- switch (this.q) {
1343
+ switch (this.r) {
1208
1344
  case 4:
1209
1345
  a = 3;
1210
1346
  break;
@@ -1223,9 +1359,9 @@ export let Popup = /*@__PURE__*/ (() => {
1223
1359
  }
1224
1360
  }
1225
1361
  Popup.$t = markType(Popup, 'Popup', Base.$, [INotifyPropertyChanged_$type]);
1226
- Popup.a7 = 2;
1227
- Popup.cq = BrushUtil.g(66, 0, 0, 0);
1228
- Popup.cp = BrushUtil.g(30, 0, 0, 0);
1229
- Popup.co = BrushUtil.g(20, 0, 0, 0);
1362
+ Popup.a9 = 2;
1363
+ Popup.cz = BrushUtil.h(66, 0, 0, 0);
1364
+ Popup.cy = BrushUtil.h(30, 0, 0, 0);
1365
+ Popup.cx = BrushUtil.h(20, 0, 0, 0);
1230
1366
  return Popup;
1231
1367
  })();