@angular/core 2.0.0-rc.1 → 2.0.0-rc.2

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 (624) hide show
  1. package/{core.umd.js → bundles/core.umd.js} +6402 -4606
  2. package/bundles/core.umd.min.js +6 -0
  3. package/esm/index.d.ts +5 -4
  4. package/esm/index.js +9 -8
  5. package/esm/index.js.map +1 -1
  6. package/esm/private_export.d.ts +96 -11
  7. package/esm/private_export.js +39 -10
  8. package/esm/private_export.js.map +1 -1
  9. package/esm/private_export.metadata.json +1 -1
  10. package/esm/src/animation/active_animation_players_map.d.ts +11 -0
  11. package/esm/src/animation/active_animation_players_map.js +47 -0
  12. package/esm/src/animation/active_animation_players_map.js.map +1 -0
  13. package/esm/src/animation/animation_constants.d.ts +4 -0
  14. package/esm/src/animation/animation_constants.js +5 -0
  15. package/esm/src/animation/animation_constants.js.map +1 -0
  16. package/esm/src/animation/animation_constants.metadata.json +1 -0
  17. package/esm/src/animation/animation_driver.d.ts +9 -0
  18. package/esm/src/animation/animation_driver.js +9 -0
  19. package/esm/src/animation/animation_driver.js.map +1 -0
  20. package/esm/src/animation/animation_group_player.d.ts +18 -0
  21. package/esm/src/animation/animation_group_player.js +60 -0
  22. package/esm/src/animation/animation_group_player.js.map +1 -0
  23. package/esm/src/animation/animation_keyframe.d.ts +6 -0
  24. package/esm/src/animation/animation_keyframe.js +7 -0
  25. package/esm/src/animation/animation_keyframe.js.map +1 -0
  26. package/esm/src/animation/animation_player.d.ts +26 -0
  27. package/esm/src/animation/animation_player.js +30 -0
  28. package/esm/src/animation/animation_player.js.map +1 -0
  29. package/esm/src/animation/animation_sequence_player.d.ts +21 -0
  30. package/esm/src/animation/animation_sequence_player.js +64 -0
  31. package/esm/src/animation/animation_sequence_player.js.map +1 -0
  32. package/esm/src/animation/animation_style_util.d.ts +32 -0
  33. package/esm/src/animation/animation_style_util.js +91 -0
  34. package/esm/src/animation/animation_style_util.js.map +1 -0
  35. package/esm/src/animation/animation_style_util.metadata.json +1 -0
  36. package/esm/src/animation/animation_styles.d.ts +8 -0
  37. package/esm/src/animation/animation_styles.js +6 -0
  38. package/esm/src/animation/animation_styles.js.map +1 -0
  39. package/esm/src/animation/metadata.d.ts +511 -0
  40. package/esm/src/animation/metadata.js +565 -0
  41. package/esm/src/animation/metadata.js.map +1 -0
  42. package/esm/src/animation/metadata.metadata.json +1 -0
  43. package/esm/src/application_common_providers.d.ts +1 -0
  44. package/esm/src/application_common_providers.js +5 -4
  45. package/esm/src/application_common_providers.js.map +1 -1
  46. package/esm/src/application_common_providers.metadata.json +1 -1
  47. package/esm/src/application_ref.d.ts +17 -41
  48. package/esm/src/application_ref.js +32 -23
  49. package/esm/src/application_ref.js.map +1 -1
  50. package/esm/src/application_ref.metadata.json +1 -1
  51. package/esm/src/application_tokens.d.ts +6 -1
  52. package/esm/src/application_tokens.js +9 -4
  53. package/esm/src/application_tokens.js.map +1 -1
  54. package/esm/src/application_tokens.metadata.json +1 -1
  55. package/esm/src/change_detection/change_detection.d.ts +9 -8
  56. package/esm/src/change_detection/change_detection.js +7 -7
  57. package/esm/src/change_detection/change_detection.js.map +1 -1
  58. package/esm/src/change_detection/change_detection.metadata.json +1 -1
  59. package/esm/src/change_detection/change_detection_util.d.ts +3 -1
  60. package/esm/src/change_detection/change_detection_util.js +6 -5
  61. package/esm/src/change_detection/change_detection_util.js.map +1 -1
  62. package/esm/src/change_detection/change_detection_util.metadata.json +1 -1
  63. package/esm/src/change_detection/change_detector_ref.d.ts +3 -0
  64. package/esm/src/change_detection/change_detector_ref.js +3 -0
  65. package/esm/src/change_detection/change_detector_ref.js.map +1 -1
  66. package/esm/src/change_detection/constants.d.ts +1 -0
  67. package/esm/src/change_detection/constants.js +4 -3
  68. package/esm/src/change_detection/constants.js.map +1 -1
  69. package/esm/src/change_detection/constants.metadata.json +1 -1
  70. package/esm/src/change_detection/differs/default_iterable_differ.d.ts +6 -94
  71. package/esm/src/change_detection/differs/default_iterable_differ.js +25 -18
  72. package/esm/src/change_detection/differs/default_iterable_differ.js.map +1 -1
  73. package/esm/src/change_detection/differs/default_keyvalue_differ.d.ts +3 -30
  74. package/esm/src/change_detection/differs/default_keyvalue_differ.js +13 -8
  75. package/esm/src/change_detection/differs/default_keyvalue_differ.js.map +1 -1
  76. package/esm/src/change_detection/differs/iterable_differs.d.ts +4 -1
  77. package/esm/src/change_detection/differs/iterable_differs.js +5 -4
  78. package/esm/src/change_detection/differs/iterable_differs.js.map +1 -1
  79. package/esm/src/change_detection/differs/keyvalue_differs.d.ts +2 -1
  80. package/esm/src/change_detection/differs/keyvalue_differs.js +5 -4
  81. package/esm/src/change_detection/differs/keyvalue_differs.js.map +1 -1
  82. package/esm/src/change_detection/pipe_transform.js.map +1 -1
  83. package/esm/src/change_detection.d.ts +1 -1
  84. package/esm/src/change_detection.js +5 -5
  85. package/esm/src/change_detection.js.map +1 -1
  86. package/esm/src/console.js +2 -1
  87. package/esm/src/console.js.map +1 -1
  88. package/esm/src/console.metadata.json +1 -1
  89. package/esm/src/debug/debug_node.d.ts +20 -2
  90. package/esm/src/debug/debug_node.js +16 -2
  91. package/esm/src/debug/debug_node.js.map +1 -1
  92. package/esm/src/debug/debug_node.metadata.json +1 -0
  93. package/esm/src/debug/debug_renderer.d.ts +10 -6
  94. package/esm/src/debug/debug_renderer.js +13 -2
  95. package/esm/src/debug/debug_renderer.js.map +1 -1
  96. package/esm/src/di/decorators.d.ts +13 -1
  97. package/esm/src/di/decorators.js +7 -1
  98. package/esm/src/di/decorators.js.map +1 -1
  99. package/esm/src/di/decorators.metadata.json +1 -1
  100. package/esm/src/di/forward_ref.d.ts +3 -1
  101. package/esm/src/di/forward_ref.js +3 -1
  102. package/esm/src/di/forward_ref.js.map +1 -1
  103. package/esm/src/di/injector.d.ts +4 -1
  104. package/esm/src/di/injector.js +5 -2
  105. package/esm/src/di/injector.js.map +1 -1
  106. package/esm/src/di/injector.metadata.json +1 -1
  107. package/esm/src/di/metadata.d.ts +8 -1
  108. package/esm/src/di/metadata.js +10 -3
  109. package/esm/src/di/metadata.js.map +1 -1
  110. package/esm/src/di/opaque_token.d.ts +2 -1
  111. package/esm/src/di/opaque_token.js +22 -21
  112. package/esm/src/di/opaque_token.js.map +1 -1
  113. package/esm/src/di/provider.d.ts +11 -10
  114. package/esm/src/di/provider.js +17 -14
  115. package/esm/src/di/provider.js.map +1 -1
  116. package/esm/src/di/provider.metadata.json +1 -0
  117. package/esm/src/di/provider_util.js.map +1 -1
  118. package/esm/src/di/provider_util.metadata.json +1 -0
  119. package/esm/src/di/reflective_exceptions.d.ts +11 -16
  120. package/esm/src/di/reflective_exceptions.js +28 -22
  121. package/esm/src/di/reflective_exceptions.js.map +1 -1
  122. package/esm/src/di/reflective_injector.d.ts +3 -33
  123. package/esm/src/di/reflective_injector.js +10 -7
  124. package/esm/src/di/reflective_injector.js.map +1 -1
  125. package/esm/src/di/reflective_key.d.ts +1 -8
  126. package/esm/src/di/reflective_key.js +3 -2
  127. package/esm/src/di/reflective_key.js.map +1 -1
  128. package/esm/src/di/reflective_provider.d.ts +2 -1
  129. package/esm/src/di/reflective_provider.js +6 -5
  130. package/esm/src/di/reflective_provider.js.map +1 -1
  131. package/esm/src/di/reflective_provider.metadata.json +1 -0
  132. package/esm/src/di.d.ts +2 -2
  133. package/esm/src/di.js +6 -6
  134. package/esm/src/di.js.map +1 -1
  135. package/esm/src/facade/async.d.ts +11 -4
  136. package/esm/src/facade/async.js +25 -15
  137. package/esm/src/facade/async.js.map +1 -1
  138. package/esm/src/facade/base_wrapped_exception.js +4 -4
  139. package/esm/src/facade/base_wrapped_exception.js.map +1 -1
  140. package/esm/src/facade/collection.js +1 -1
  141. package/esm/src/facade/collection.js.map +1 -1
  142. package/esm/src/facade/collection.metadata.json +1 -1
  143. package/esm/src/facade/exception_handler.d.ts +2 -11
  144. package/esm/src/facade/exception_handler.js +8 -7
  145. package/esm/src/facade/exception_handler.js.map +1 -1
  146. package/esm/src/facade/exceptions.d.ts +4 -0
  147. package/esm/src/facade/exceptions.js +6 -2
  148. package/esm/src/facade/exceptions.js.map +1 -1
  149. package/esm/src/facade/exceptions.metadata.json +1 -0
  150. package/esm/src/facade/lang.d.ts +6 -4
  151. package/esm/src/facade/lang.js +12 -11
  152. package/esm/src/facade/lang.js.map +1 -1
  153. package/esm/src/facade/lang.metadata.json +1 -1
  154. package/esm/src/facade/math.d.ts +2 -0
  155. package/esm/src/facade/math.js +4 -0
  156. package/esm/src/facade/math.js.map +1 -0
  157. package/esm/src/facade/math.metadata.json +1 -0
  158. package/esm/src/facade/promise.js.map +1 -1
  159. package/esm/src/linker/component_factory.d.ts +5 -4
  160. package/esm/src/linker/component_factory.js +7 -3
  161. package/esm/src/linker/component_factory.js.map +1 -1
  162. package/esm/src/linker/component_resolver.d.ts +5 -4
  163. package/esm/src/linker/component_resolver.js +12 -7
  164. package/esm/src/linker/component_resolver.js.map +1 -1
  165. package/esm/src/linker/component_resolver.metadata.json +1 -1
  166. package/esm/src/linker/debug_context.js +5 -4
  167. package/esm/src/linker/debug_context.js.map +1 -1
  168. package/esm/src/linker/dynamic_component_loader.d.ts +5 -6
  169. package/esm/src/linker/dynamic_component_loader.js +5 -3
  170. package/esm/src/linker/dynamic_component_loader.js.map +1 -1
  171. package/esm/src/linker/dynamic_component_loader.metadata.json +1 -1
  172. package/esm/src/linker/element.d.ts +3 -3
  173. package/esm/src/linker/element.js +5 -5
  174. package/esm/src/linker/element.js.map +1 -1
  175. package/esm/src/linker/element_injector.js.map +1 -1
  176. package/esm/src/linker/element_ref.d.ts +1 -0
  177. package/esm/src/linker/element_ref.js +5 -5
  178. package/esm/src/linker/element_ref.js.map +1 -1
  179. package/esm/src/linker/exceptions.d.ts +4 -1
  180. package/esm/src/linker/exceptions.js +4 -1
  181. package/esm/src/linker/exceptions.js.map +1 -1
  182. package/esm/src/linker/query_list.d.ts +3 -10
  183. package/esm/src/linker/query_list.js +8 -7
  184. package/esm/src/linker/query_list.js.map +1 -1
  185. package/esm/src/linker/systemjs_component_resolver.d.ts +21 -0
  186. package/esm/src/linker/systemjs_component_resolver.js +44 -0
  187. package/esm/src/linker/systemjs_component_resolver.js.map +1 -0
  188. package/esm/src/linker/template_ref.d.ts +2 -1
  189. package/esm/src/linker/template_ref.js +1 -0
  190. package/esm/src/linker/template_ref.js.map +1 -1
  191. package/esm/src/linker/view.d.ts +12 -1
  192. package/esm/src/linker/view.js +62 -16
  193. package/esm/src/linker/view.js.map +1 -1
  194. package/esm/src/linker/view_container_ref.d.ts +2 -10
  195. package/esm/src/linker/view_container_ref.js +4 -3
  196. package/esm/src/linker/view_container_ref.js.map +1 -1
  197. package/esm/src/linker/view_ref.d.ts +5 -1
  198. package/esm/src/linker/view_ref.js +6 -2
  199. package/esm/src/linker/view_ref.js.map +1 -1
  200. package/esm/src/linker/view_type.js.map +1 -1
  201. package/esm/src/linker/view_utils.d.ts +2 -4
  202. package/esm/src/linker/view_utils.js +21 -21
  203. package/esm/src/linker/view_utils.js.map +1 -1
  204. package/esm/src/linker/view_utils.metadata.json +1 -1
  205. package/esm/src/linker.d.ts +5 -4
  206. package/esm/src/linker.js +5 -4
  207. package/esm/src/linker.js.map +1 -1
  208. package/esm/src/metadata/di.d.ts +8 -1
  209. package/esm/src/metadata/di.js +10 -3
  210. package/esm/src/metadata/di.js.map +1 -1
  211. package/esm/src/metadata/directives.d.ts +104 -20
  212. package/esm/src/metadata/directives.js +25 -19
  213. package/esm/src/metadata/directives.js.map +1 -1
  214. package/esm/src/metadata/lifecycle_hooks.d.ts +46 -31
  215. package/esm/src/metadata/lifecycle_hooks.js +464 -10
  216. package/esm/src/metadata/lifecycle_hooks.js.map +1 -1
  217. package/esm/src/metadata/lifecycle_hooks.metadata.json +1 -1
  218. package/esm/src/metadata/view.d.ts +6 -2
  219. package/esm/src/metadata/view.js +3 -1
  220. package/esm/src/metadata/view.js.map +1 -1
  221. package/esm/src/metadata/view.metadata.json +1 -1
  222. package/esm/src/metadata.d.ts +49 -15
  223. package/esm/src/metadata.js +35 -10
  224. package/esm/src/metadata.js.map +1 -1
  225. package/esm/src/metadata.metadata.json +1 -1
  226. package/esm/src/platform_common_providers.d.ts +1 -0
  227. package/esm/src/platform_common_providers.js +3 -3
  228. package/esm/src/platform_common_providers.js.map +1 -1
  229. package/esm/src/platform_common_providers.metadata.json +1 -1
  230. package/esm/src/platform_directives_and_pipes.d.ts +48 -45
  231. package/esm/src/platform_directives_and_pipes.js +50 -47
  232. package/esm/src/platform_directives_and_pipes.js.map +1 -1
  233. package/esm/src/platform_directives_and_pipes.metadata.json +1 -1
  234. package/esm/src/profile/profile.d.ts +5 -1
  235. package/esm/src/profile/profile.js +4 -0
  236. package/esm/src/profile/profile.js.map +1 -1
  237. package/esm/src/profile/profile.metadata.json +1 -1
  238. package/esm/src/profile/wtf_impl.js +1 -1
  239. package/esm/src/profile/wtf_impl.js.map +1 -1
  240. package/esm/src/profile/wtf_impl.metadata.json +1 -0
  241. package/esm/src/profile/wtf_init.js +2 -2
  242. package/esm/src/profile/wtf_init.js.map +1 -1
  243. package/esm/src/reflection/platform_reflection_capabilities.d.ts +4 -3
  244. package/esm/src/reflection/platform_reflection_capabilities.js.map +1 -1
  245. package/esm/src/reflection/reflection.d.ts +1 -1
  246. package/esm/src/reflection/reflection.js +2 -2
  247. package/esm/src/reflection/reflection.js.map +1 -1
  248. package/esm/src/reflection/reflection.metadata.json +1 -1
  249. package/esm/src/reflection/reflection_capabilities.d.ts +4 -5
  250. package/esm/src/reflection/reflection_capabilities.js +22 -10
  251. package/esm/src/reflection/reflection_capabilities.js.map +1 -1
  252. package/esm/src/reflection/reflector.d.ts +8 -20
  253. package/esm/src/reflection/reflector.js +13 -3
  254. package/esm/src/reflection/reflector.js.map +1 -1
  255. package/esm/src/reflection/reflector_reader.js +3 -3
  256. package/esm/src/reflection/reflector_reader.js.map +1 -1
  257. package/esm/src/reflection/types.js.map +1 -1
  258. package/esm/src/render/api.d.ts +17 -6
  259. package/esm/src/render/api.js +8 -1
  260. package/esm/src/render/api.js.map +1 -1
  261. package/esm/src/render.d.ts +1 -1
  262. package/esm/src/render.js +1 -1
  263. package/esm/src/render.js.map +1 -1
  264. package/esm/src/security.js +6 -6
  265. package/esm/src/security.js.map +1 -1
  266. package/esm/src/testability/testability.d.ts +3 -19
  267. package/esm/src/testability/testability.js +10 -5
  268. package/esm/src/testability/testability.js.map +1 -1
  269. package/esm/src/testability/testability.metadata.json +1 -1
  270. package/esm/src/util/decorators.d.ts +2 -1
  271. package/esm/src/util/decorators.js +10 -9
  272. package/esm/src/util/decorators.js.map +1 -1
  273. package/esm/src/util.js.map +1 -1
  274. package/esm/src/zone/ng_zone.d.ts +6 -17
  275. package/esm/src/zone/ng_zone.js +7 -6
  276. package/esm/src/zone/ng_zone.js.map +1 -1
  277. package/esm/src/zone/ng_zone_impl.d.ts +1 -4
  278. package/esm/src/zone/ng_zone_impl.js +3 -2
  279. package/esm/src/zone/ng_zone_impl.js.map +1 -1
  280. package/esm/src/zone.js.map +1 -1
  281. package/esm/testing/async.js +20 -22
  282. package/esm/testing/async.js.map +1 -1
  283. package/esm/testing/async.metadata.json +1 -0
  284. package/esm/testing/async_test_completer.js.map +1 -1
  285. package/esm/testing/fake_async.d.ts +4 -1
  286. package/esm/testing/fake_async.js +9 -2
  287. package/esm/testing/fake_async.js.map +1 -1
  288. package/esm/testing/lang_utils.js +1 -1
  289. package/esm/testing/lang_utils.js.map +1 -1
  290. package/esm/testing/lang_utils.metadata.json +1 -0
  291. package/esm/testing/logger.js +5 -3
  292. package/esm/testing/logger.js.map +1 -1
  293. package/esm/testing/logger.metadata.json +1 -1
  294. package/esm/testing/mock_application_ref.d.ts +1 -1
  295. package/esm/testing/mock_application_ref.js +1 -0
  296. package/esm/testing/mock_application_ref.js.map +1 -1
  297. package/esm/testing/mock_application_ref.metadata.json +1 -1
  298. package/esm/testing/ng_zone_mock.d.ts +0 -1
  299. package/esm/testing/ng_zone_mock.js +2 -1
  300. package/esm/testing/ng_zone_mock.js.map +1 -1
  301. package/esm/testing/ng_zone_mock.metadata.json +1 -1
  302. package/esm/testing/regexp.js +1 -1
  303. package/esm/testing/regexp.js.map +1 -1
  304. package/esm/testing/regexp.metadata.json +1 -0
  305. package/esm/testing/test_injector.d.ts +6 -12
  306. package/esm/testing/test_injector.js +4 -10
  307. package/esm/testing/test_injector.js.map +1 -1
  308. package/esm/testing/test_injector.metadata.json +1 -0
  309. package/esm/testing/testing.d.ts +2 -2
  310. package/esm/testing/testing.js +2 -2
  311. package/esm/testing/testing.js.map +1 -1
  312. package/esm/testing/testing.metadata.json +1 -1
  313. package/esm/testing.js.map +1 -1
  314. package/index.d.ts +5 -4
  315. package/index.js +10 -8
  316. package/index.js.map +1 -1
  317. package/package.json +5 -1
  318. package/private_export.d.ts +96 -11
  319. package/private_export.js +39 -10
  320. package/private_export.js.map +1 -1
  321. package/private_export.metadata.json +1 -1
  322. package/src/animation/active_animation_players_map.d.ts +11 -0
  323. package/src/animation/active_animation_players_map.js +54 -0
  324. package/src/animation/active_animation_players_map.js.map +1 -0
  325. package/src/animation/animation_constants.d.ts +4 -0
  326. package/src/animation/animation_constants.js +6 -0
  327. package/src/animation/animation_constants.js.map +1 -0
  328. package/src/animation/animation_constants.metadata.json +1 -0
  329. package/src/animation/animation_driver.d.ts +9 -0
  330. package/src/animation/animation_driver.js +25 -0
  331. package/src/animation/animation_driver.js.map +1 -0
  332. package/src/animation/animation_group_player.d.ts +18 -0
  333. package/src/animation/animation_group_player.js +64 -0
  334. package/src/animation/animation_group_player.js.map +1 -0
  335. package/src/animation/animation_keyframe.d.ts +6 -0
  336. package/src/animation/animation_keyframe.js +10 -0
  337. package/src/animation/animation_keyframe.js.map +1 -0
  338. package/src/animation/animation_player.d.ts +26 -0
  339. package/src/animation/animation_player.js +42 -0
  340. package/src/animation/animation_player.js.map +1 -0
  341. package/src/animation/animation_sequence_player.d.ts +21 -0
  342. package/src/animation/animation_sequence_player.js +69 -0
  343. package/src/animation/animation_sequence_player.js.map +1 -0
  344. package/src/animation/animation_style_util.d.ts +32 -0
  345. package/src/animation/animation_style_util.js +99 -0
  346. package/src/animation/animation_style_util.js.map +1 -0
  347. package/src/animation/animation_style_util.metadata.json +1 -0
  348. package/src/animation/animation_styles.d.ts +8 -0
  349. package/src/animation/animation_styles.js +9 -0
  350. package/src/animation/animation_styles.js.map +1 -0
  351. package/src/animation/metadata.d.ts +511 -0
  352. package/src/animation/metadata.js +627 -0
  353. package/src/animation/metadata.js.map +1 -0
  354. package/src/animation/metadata.metadata.json +1 -0
  355. package/src/application_common_providers.d.ts +1 -0
  356. package/src/application_common_providers.js +4 -3
  357. package/src/application_common_providers.js.map +1 -1
  358. package/src/application_common_providers.metadata.json +1 -1
  359. package/src/application_ref.d.ts +17 -41
  360. package/src/application_ref.js +30 -21
  361. package/src/application_ref.js.map +1 -1
  362. package/src/application_ref.metadata.json +1 -1
  363. package/src/application_tokens.d.ts +6 -1
  364. package/src/application_tokens.js +9 -4
  365. package/src/application_tokens.js.map +1 -1
  366. package/src/application_tokens.metadata.json +1 -1
  367. package/src/change_detection/change_detection.d.ts +9 -8
  368. package/src/change_detection/change_detection.js +21 -21
  369. package/src/change_detection/change_detection.js.map +1 -1
  370. package/src/change_detection/change_detection.metadata.json +1 -1
  371. package/src/change_detection/change_detection_util.d.ts +3 -1
  372. package/src/change_detection/change_detection_util.js +6 -5
  373. package/src/change_detection/change_detection_util.js.map +1 -1
  374. package/src/change_detection/change_detection_util.metadata.json +1 -1
  375. package/src/change_detection/change_detector_ref.d.ts +3 -0
  376. package/src/change_detection/change_detector_ref.js +3 -0
  377. package/src/change_detection/change_detector_ref.js.map +1 -1
  378. package/src/change_detection/constants.d.ts +1 -0
  379. package/src/change_detection/constants.js +4 -3
  380. package/src/change_detection/constants.js.map +1 -1
  381. package/src/change_detection/constants.metadata.json +1 -1
  382. package/src/change_detection/differs/default_iterable_differ.d.ts +6 -94
  383. package/src/change_detection/differs/default_iterable_differ.js +25 -18
  384. package/src/change_detection/differs/default_iterable_differ.js.map +1 -1
  385. package/src/change_detection/differs/default_keyvalue_differ.d.ts +3 -30
  386. package/src/change_detection/differs/default_keyvalue_differ.js +13 -8
  387. package/src/change_detection/differs/default_keyvalue_differ.js.map +1 -1
  388. package/src/change_detection/differs/iterable_differs.d.ts +4 -1
  389. package/src/change_detection/differs/iterable_differs.js +4 -3
  390. package/src/change_detection/differs/iterable_differs.js.map +1 -1
  391. package/src/change_detection/differs/keyvalue_differs.d.ts +2 -1
  392. package/src/change_detection/differs/keyvalue_differs.js +4 -3
  393. package/src/change_detection/differs/keyvalue_differs.js.map +1 -1
  394. package/src/change_detection/pipe_transform.js.map +1 -1
  395. package/src/change_detection.d.ts +1 -1
  396. package/src/change_detection.js +9 -9
  397. package/src/change_detection.js.map +1 -1
  398. package/src/console.js +2 -1
  399. package/src/console.js.map +1 -1
  400. package/src/console.metadata.json +1 -1
  401. package/src/debug/debug_node.d.ts +20 -2
  402. package/src/debug/debug_node.js +16 -2
  403. package/src/debug/debug_node.js.map +1 -1
  404. package/src/debug/debug_node.metadata.json +1 -0
  405. package/src/debug/debug_renderer.d.ts +10 -6
  406. package/src/debug/debug_renderer.js +12 -1
  407. package/src/debug/debug_renderer.js.map +1 -1
  408. package/src/di/decorators.d.ts +13 -1
  409. package/src/di/decorators.js +7 -1
  410. package/src/di/decorators.js.map +1 -1
  411. package/src/di/decorators.metadata.json +1 -1
  412. package/src/di/forward_ref.d.ts +3 -1
  413. package/src/di/forward_ref.js +3 -1
  414. package/src/di/forward_ref.js.map +1 -1
  415. package/src/di/injector.d.ts +4 -1
  416. package/src/di/injector.js +5 -2
  417. package/src/di/injector.js.map +1 -1
  418. package/src/di/injector.metadata.json +1 -1
  419. package/src/di/metadata.d.ts +8 -1
  420. package/src/di/metadata.js +10 -3
  421. package/src/di/metadata.js.map +1 -1
  422. package/src/di/opaque_token.d.ts +2 -1
  423. package/src/di/opaque_token.js +22 -21
  424. package/src/di/opaque_token.js.map +1 -1
  425. package/src/di/provider.d.ts +11 -10
  426. package/src/di/provider.js +17 -14
  427. package/src/di/provider.js.map +1 -1
  428. package/src/di/provider.metadata.json +1 -0
  429. package/src/di/provider_util.js.map +1 -1
  430. package/src/di/provider_util.metadata.json +1 -0
  431. package/src/di/reflective_exceptions.d.ts +11 -16
  432. package/src/di/reflective_exceptions.js +28 -22
  433. package/src/di/reflective_exceptions.js.map +1 -1
  434. package/src/di/reflective_injector.d.ts +3 -33
  435. package/src/di/reflective_injector.js +9 -6
  436. package/src/di/reflective_injector.js.map +1 -1
  437. package/src/di/reflective_key.d.ts +1 -8
  438. package/src/di/reflective_key.js +3 -2
  439. package/src/di/reflective_key.js.map +1 -1
  440. package/src/di/reflective_provider.d.ts +2 -1
  441. package/src/di/reflective_provider.js +6 -5
  442. package/src/di/reflective_provider.js.map +1 -1
  443. package/src/di/reflective_provider.metadata.json +1 -0
  444. package/src/di.d.ts +2 -2
  445. package/src/di.js +7 -9
  446. package/src/di.js.map +1 -1
  447. package/src/facade/async.d.ts +11 -4
  448. package/src/facade/async.js +27 -17
  449. package/src/facade/async.js.map +1 -1
  450. package/src/facade/base_wrapped_exception.js +4 -4
  451. package/src/facade/base_wrapped_exception.js.map +1 -1
  452. package/src/facade/collection.js.map +1 -1
  453. package/src/facade/collection.metadata.json +1 -1
  454. package/src/facade/exception_handler.d.ts +2 -11
  455. package/src/facade/exception_handler.js +8 -7
  456. package/src/facade/exception_handler.js.map +1 -1
  457. package/src/facade/exceptions.d.ts +4 -0
  458. package/src/facade/exceptions.js +6 -2
  459. package/src/facade/exceptions.js.map +1 -1
  460. package/src/facade/exceptions.metadata.json +1 -0
  461. package/src/facade/lang.d.ts +6 -4
  462. package/src/facade/lang.js +12 -11
  463. package/src/facade/lang.js.map +1 -1
  464. package/src/facade/lang.metadata.json +1 -1
  465. package/src/facade/math.d.ts +2 -0
  466. package/src/facade/math.js +5 -0
  467. package/src/facade/math.js.map +1 -0
  468. package/src/facade/math.metadata.json +1 -0
  469. package/src/facade/promise.js.map +1 -1
  470. package/src/linker/component_factory.d.ts +5 -4
  471. package/src/linker/component_factory.js +7 -3
  472. package/src/linker/component_factory.js.map +1 -1
  473. package/src/linker/component_resolver.d.ts +5 -4
  474. package/src/linker/component_resolver.js +12 -7
  475. package/src/linker/component_resolver.js.map +1 -1
  476. package/src/linker/component_resolver.metadata.json +1 -1
  477. package/src/linker/debug_context.js +5 -4
  478. package/src/linker/debug_context.js.map +1 -1
  479. package/src/linker/dynamic_component_loader.d.ts +5 -6
  480. package/src/linker/dynamic_component_loader.js +5 -3
  481. package/src/linker/dynamic_component_loader.js.map +1 -1
  482. package/src/linker/dynamic_component_loader.metadata.json +1 -1
  483. package/src/linker/element.d.ts +3 -3
  484. package/src/linker/element.js +5 -5
  485. package/src/linker/element.js.map +1 -1
  486. package/src/linker/element_injector.js.map +1 -1
  487. package/src/linker/element_ref.d.ts +1 -0
  488. package/src/linker/element_ref.js +5 -5
  489. package/src/linker/element_ref.js.map +1 -1
  490. package/src/linker/exceptions.d.ts +4 -1
  491. package/src/linker/exceptions.js +4 -1
  492. package/src/linker/exceptions.js.map +1 -1
  493. package/src/linker/query_list.d.ts +3 -10
  494. package/src/linker/query_list.js +8 -7
  495. package/src/linker/query_list.js.map +1 -1
  496. package/src/linker/systemjs_component_resolver.d.ts +21 -0
  497. package/src/linker/systemjs_component_resolver.js +52 -0
  498. package/src/linker/systemjs_component_resolver.js.map +1 -0
  499. package/src/linker/template_ref.d.ts +2 -1
  500. package/src/linker/template_ref.js +1 -0
  501. package/src/linker/template_ref.js.map +1 -1
  502. package/src/linker/view.d.ts +12 -1
  503. package/src/linker/view.js +65 -15
  504. package/src/linker/view.js.map +1 -1
  505. package/src/linker/view_container_ref.d.ts +2 -10
  506. package/src/linker/view_container_ref.js +4 -3
  507. package/src/linker/view_container_ref.js.map +1 -1
  508. package/src/linker/view_ref.d.ts +5 -1
  509. package/src/linker/view_ref.js +6 -2
  510. package/src/linker/view_ref.js.map +1 -1
  511. package/src/linker/view_type.js.map +1 -1
  512. package/src/linker/view_utils.d.ts +2 -4
  513. package/src/linker/view_utils.js +21 -21
  514. package/src/linker/view_utils.js.map +1 -1
  515. package/src/linker/view_utils.metadata.json +1 -1
  516. package/src/linker.d.ts +5 -4
  517. package/src/linker.js +12 -9
  518. package/src/linker.js.map +1 -1
  519. package/src/metadata/di.d.ts +8 -1
  520. package/src/metadata/di.js +10 -3
  521. package/src/metadata/di.js.map +1 -1
  522. package/src/metadata/directives.d.ts +104 -20
  523. package/src/metadata/directives.js +25 -27
  524. package/src/metadata/directives.js.map +1 -1
  525. package/src/metadata/lifecycle_hooks.d.ts +46 -31
  526. package/src/metadata/lifecycle_hooks.js +496 -10
  527. package/src/metadata/lifecycle_hooks.js.map +1 -1
  528. package/src/metadata/lifecycle_hooks.metadata.json +1 -1
  529. package/src/metadata/view.d.ts +6 -2
  530. package/src/metadata/view.js +3 -1
  531. package/src/metadata/view.js.map +1 -1
  532. package/src/metadata/view.metadata.json +1 -1
  533. package/src/metadata.d.ts +49 -15
  534. package/src/metadata.js +70 -37
  535. package/src/metadata.js.map +1 -1
  536. package/src/metadata.metadata.json +1 -1
  537. package/src/platform_common_providers.d.ts +1 -0
  538. package/src/platform_common_providers.js +3 -3
  539. package/src/platform_common_providers.js.map +1 -1
  540. package/src/platform_common_providers.metadata.json +1 -1
  541. package/src/platform_directives_and_pipes.d.ts +48 -45
  542. package/src/platform_directives_and_pipes.js +50 -47
  543. package/src/platform_directives_and_pipes.js.map +1 -1
  544. package/src/platform_directives_and_pipes.metadata.json +1 -1
  545. package/src/profile/profile.d.ts +5 -1
  546. package/src/profile/profile.js +5 -3
  547. package/src/profile/profile.js.map +1 -1
  548. package/src/profile/profile.metadata.json +1 -1
  549. package/src/profile/wtf_impl.js +1 -1
  550. package/src/profile/wtf_impl.js.map +1 -1
  551. package/src/profile/wtf_impl.metadata.json +1 -0
  552. package/src/profile/wtf_init.js +2 -2
  553. package/src/profile/wtf_init.js.map +1 -1
  554. package/src/reflection/platform_reflection_capabilities.d.ts +4 -3
  555. package/src/reflection/platform_reflection_capabilities.js.map +1 -1
  556. package/src/reflection/reflection.d.ts +1 -1
  557. package/src/reflection/reflection.js +2 -2
  558. package/src/reflection/reflection.js.map +1 -1
  559. package/src/reflection/reflection.metadata.json +1 -1
  560. package/src/reflection/reflection_capabilities.d.ts +4 -5
  561. package/src/reflection/reflection_capabilities.js +24 -10
  562. package/src/reflection/reflection_capabilities.js.map +1 -1
  563. package/src/reflection/reflector.d.ts +8 -20
  564. package/src/reflection/reflector.js +13 -3
  565. package/src/reflection/reflector.js.map +1 -1
  566. package/src/reflection/reflector_reader.js +3 -3
  567. package/src/reflection/reflector_reader.js.map +1 -1
  568. package/src/reflection/types.js.map +1 -1
  569. package/src/render/api.d.ts +17 -6
  570. package/src/render/api.js +8 -1
  571. package/src/render/api.js.map +1 -1
  572. package/src/render.d.ts +1 -1
  573. package/src/render.js +2 -2
  574. package/src/render.js.map +1 -1
  575. package/src/security.js +6 -6
  576. package/src/security.js.map +1 -1
  577. package/src/testability/testability.d.ts +3 -19
  578. package/src/testability/testability.js +10 -5
  579. package/src/testability/testability.js.map +1 -1
  580. package/src/testability/testability.metadata.json +1 -1
  581. package/src/util/decorators.d.ts +2 -1
  582. package/src/util/decorators.js +10 -9
  583. package/src/util/decorators.js.map +1 -1
  584. package/src/util.js.map +1 -1
  585. package/src/zone/ng_zone.d.ts +6 -17
  586. package/src/zone/ng_zone.js +11 -6
  587. package/src/zone/ng_zone.js.map +1 -1
  588. package/src/zone/ng_zone_impl.d.ts +1 -4
  589. package/src/zone/ng_zone_impl.js +3 -2
  590. package/src/zone/ng_zone_impl.js.map +1 -1
  591. package/src/zone.js.map +1 -1
  592. package/testing/async.js +20 -22
  593. package/testing/async.js.map +1 -1
  594. package/testing/async.metadata.json +1 -0
  595. package/testing/async_test_completer.js.map +1 -1
  596. package/testing/fake_async.d.ts +4 -1
  597. package/testing/fake_async.js +10 -2
  598. package/testing/fake_async.js.map +1 -1
  599. package/testing/lang_utils.js +1 -1
  600. package/testing/lang_utils.js.map +1 -1
  601. package/testing/lang_utils.metadata.json +1 -0
  602. package/testing/logger.js +5 -3
  603. package/testing/logger.js.map +1 -1
  604. package/testing/logger.metadata.json +1 -1
  605. package/testing/mock_application_ref.d.ts +1 -1
  606. package/testing/mock_application_ref.js +1 -0
  607. package/testing/mock_application_ref.js.map +1 -1
  608. package/testing/mock_application_ref.metadata.json +1 -1
  609. package/testing/ng_zone_mock.d.ts +0 -1
  610. package/testing/ng_zone_mock.js +2 -1
  611. package/testing/ng_zone_mock.js.map +1 -1
  612. package/testing/ng_zone_mock.metadata.json +1 -1
  613. package/testing/regexp.js +1 -1
  614. package/testing/regexp.js.map +1 -1
  615. package/testing/regexp.metadata.json +1 -0
  616. package/testing/test_injector.d.ts +6 -12
  617. package/testing/test_injector.js +3 -9
  618. package/testing/test_injector.js.map +1 -1
  619. package/testing/test_injector.metadata.json +1 -0
  620. package/testing/testing.d.ts +2 -2
  621. package/testing/testing.js +5 -5
  622. package/testing/testing.js.map +1 -1
  623. package/testing/testing.metadata.json +1 -1
  624. package/testing.js.map +1 -1
@@ -1,25 +1,35 @@
1
+ import { Provider } from './index';
2
+ import { ANY_STATE as ANY_STATE_, DEFAULT_STATE as DEFAULT_STATE_, EMPTY_STATE as EMPTY_STATE_, FILL_STYLE_FLAG as FILL_STYLE_FLAG_ } from './src/animation/animation_constants';
3
+ import { AnimationDriver as AnimationDriver_, NoOpAnimationDriver as NoOpAnimationDriver_ } from './src/animation/animation_driver';
4
+ import { AnimationGroupPlayer as AnimationGroupPlayer_ } from './src/animation/animation_group_player';
5
+ import { AnimationKeyframe as AnimationKeyframe_ } from './src/animation/animation_keyframe';
6
+ import { AnimationPlayer as AnimationPlayer_, NoOpAnimationPlayer as NoOpAnimationPlayer_ } from './src/animation/animation_player';
7
+ import { AnimationSequencePlayer as AnimationSequencePlayer_ } from './src/animation/animation_sequence_player';
8
+ import * as animationUtils from './src/animation/animation_style_util';
9
+ import { AnimationStyles as AnimationStyles_ } from './src/animation/animation_styles';
10
+ import * as change_detection_util from './src/change_detection/change_detection_util';
1
11
  import * as constants from './src/change_detection/constants';
2
- import * as security from './src/security';
12
+ import * as console from './src/console';
13
+ import * as debug from './src/debug/debug_renderer';
14
+ import * as provider_util from './src/di/provider_util';
3
15
  import * as reflective_provider from './src/di/reflective_provider';
4
- import * as lifecycle_hooks from './src/metadata/lifecycle_hooks';
5
- import * as reflector_reader from './src/reflection/reflector_reader';
6
16
  import * as component_resolver from './src/linker/component_resolver';
17
+ import * as debug_context from './src/linker/debug_context';
7
18
  import * as element from './src/linker/element';
19
+ import * as template_ref from './src/linker/template_ref';
8
20
  import * as view from './src/linker/view';
9
21
  import * as view_type from './src/linker/view_type';
10
22
  import * as view_utils from './src/linker/view_utils';
23
+ import * as lifecycle_hooks from './src/metadata/lifecycle_hooks';
11
24
  import * as metadata_view from './src/metadata/view';
12
- import * as debug_context from './src/linker/debug_context';
13
- import * as change_detection_util from './src/change_detection/change_detection_util';
14
- import * as api from './src/render/api';
15
- import * as template_ref from './src/linker/template_ref';
16
25
  import * as wtf_init from './src/profile/wtf_init';
26
+ import * as reflection from './src/reflection/reflection';
27
+ import { Reflector } from './src/reflection/reflection';
17
28
  import * as reflection_capabilities from './src/reflection/reflection_capabilities';
29
+ import * as reflector_reader from './src/reflection/reflector_reader';
30
+ import * as api from './src/render/api';
31
+ import * as security from './src/security';
18
32
  import * as decorators from './src/util/decorators';
19
- import * as debug from './src/debug/debug_renderer';
20
- import * as provider_util from './src/di/provider_util';
21
- import * as console from './src/console';
22
- import { Provider } from './index';
23
33
  export declare namespace __core_private_types__ {
24
34
  var isDefaultChangeDetectionStrategy: typeof constants.isDefaultChangeDetectionStrategy;
25
35
  type ChangeDetectorState = constants.ChangeDetectorState;
@@ -81,6 +91,35 @@ export declare namespace __core_private_types__ {
81
91
  var castByValue: typeof view_utils.castByValue;
82
92
  type Console = console.Console;
83
93
  var Console: typeof console.Console;
94
+ var reflector: typeof reflection.reflector;
95
+ type Reflector = reflection.Reflector;
96
+ var Reflector: typeof reflection.Reflector;
97
+ type NoOpAnimationPlayer = NoOpAnimationPlayer_;
98
+ var NoOpAnimationPlayer: typeof NoOpAnimationPlayer_;
99
+ type AnimationPlayer = AnimationPlayer_;
100
+ var AnimationPlayer: typeof AnimationPlayer_;
101
+ type NoOpAnimationDriver = NoOpAnimationDriver_;
102
+ var NoOpAnimationDriver: typeof NoOpAnimationDriver_;
103
+ type AnimationDriver = AnimationDriver_;
104
+ var AnimationDriver: typeof AnimationDriver_;
105
+ type AnimationSequencePlayer = AnimationSequencePlayer_;
106
+ var AnimationSequencePlayer: typeof AnimationSequencePlayer_;
107
+ type AnimationGroupPlayer = AnimationGroupPlayer_;
108
+ var AnimationGroupPlayer: typeof AnimationGroupPlayer_;
109
+ type AnimationKeyframe = AnimationKeyframe_;
110
+ var AnimationKeyframe: typeof AnimationKeyframe_;
111
+ var prepareFinalAnimationStyles: typeof animationUtils.prepareFinalAnimationStyles;
112
+ var balanceAnimationKeyframes: typeof animationUtils.balanceAnimationKeyframes;
113
+ var flattenStyles: typeof animationUtils.flattenStyles;
114
+ var clearStyles: typeof animationUtils.clearStyles;
115
+ var renderStyles: typeof animationUtils.renderStyles;
116
+ var collectAndResolveStyles: typeof animationUtils.collectAndResolveStyles;
117
+ type AnimationStyles = AnimationStyles_;
118
+ var AnimationStyles: typeof AnimationStyles_;
119
+ var ANY_STATE: typeof ANY_STATE_;
120
+ var DEFAULT_STATE: typeof DEFAULT_STATE_;
121
+ var EMPTY_STATE: typeof EMPTY_STATE_;
122
+ var FILL_STYLE_FLAG: typeof FILL_STYLE_FLAG_;
84
123
  }
85
124
  export declare var __core_private__: {
86
125
  isDefaultChangeDetectionStrategy: (changeDetectionStrategy: constants.ChangeDetectionStrategy) => boolean;
@@ -130,4 +169,50 @@ export declare var __core_private__: {
130
169
  pureProxy10: <P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, R>(fn: (p0: P0, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9) => R) => (p0: P0, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9) => R;
131
170
  castByValue: <T>(input: any, value: T) => T;
132
171
  Console: typeof console.Console;
172
+ reflector: Reflector;
173
+ Reflector: typeof Reflector;
174
+ NoOpAnimationPlayer: typeof NoOpAnimationPlayer_;
175
+ AnimationPlayer: typeof AnimationPlayer_;
176
+ NoOpAnimationDriver: typeof NoOpAnimationDriver_;
177
+ AnimationDriver: typeof AnimationDriver_;
178
+ AnimationSequencePlayer: typeof AnimationSequencePlayer_;
179
+ AnimationGroupPlayer: typeof AnimationGroupPlayer_;
180
+ AnimationKeyframe: typeof AnimationKeyframe_;
181
+ prepareFinalAnimationStyles: (previousStyles: {
182
+ [key: string]: string | number;
183
+ }, newStyles: {
184
+ [key: string]: string | number;
185
+ }, nullValue?: string) => {
186
+ [key: string]: string;
187
+ };
188
+ balanceAnimationKeyframes: (collectedStyles: {
189
+ [key: string]: string | number;
190
+ }, finalStateStyles: {
191
+ [key: string]: string | number;
192
+ }, keyframes: any[]) => any[];
193
+ flattenStyles: (styles: {
194
+ [key: string]: string | number;
195
+ }[]) => {
196
+ [key: string]: string;
197
+ };
198
+ clearStyles: (styles: {
199
+ [key: string]: string | number;
200
+ }) => {
201
+ [key: string]: string;
202
+ };
203
+ renderStyles: (element: any, renderer: any, styles: {
204
+ [key: string]: string | number;
205
+ }) => void;
206
+ collectAndResolveStyles: (collection: {
207
+ [key: string]: string | number;
208
+ }, styles: {
209
+ [key: string]: string | number;
210
+ }[]) => {
211
+ [key: string]: string | number;
212
+ }[];
213
+ AnimationStyles: typeof AnimationStyles_;
214
+ ANY_STATE: string;
215
+ DEFAULT_STATE: string;
216
+ EMPTY_STATE: string;
217
+ FILL_STYLE_FLAG: string;
133
218
  };
@@ -1,24 +1,33 @@
1
+ import { ANY_STATE as ANY_STATE_, DEFAULT_STATE as DEFAULT_STATE_, EMPTY_STATE as EMPTY_STATE_, FILL_STYLE_FLAG as FILL_STYLE_FLAG_ } from './src/animation/animation_constants';
2
+ import { AnimationDriver as AnimationDriver_, NoOpAnimationDriver as NoOpAnimationDriver_ } from './src/animation/animation_driver';
3
+ import { AnimationGroupPlayer as AnimationGroupPlayer_ } from './src/animation/animation_group_player';
4
+ import { AnimationKeyframe as AnimationKeyframe_ } from './src/animation/animation_keyframe';
5
+ import { AnimationPlayer as AnimationPlayer_, NoOpAnimationPlayer as NoOpAnimationPlayer_ } from './src/animation/animation_player';
6
+ import { AnimationSequencePlayer as AnimationSequencePlayer_ } from './src/animation/animation_sequence_player';
7
+ import * as animationUtils from './src/animation/animation_style_util';
8
+ import { AnimationStyles as AnimationStyles_ } from './src/animation/animation_styles';
9
+ import * as change_detection_util from './src/change_detection/change_detection_util';
1
10
  import * as constants from './src/change_detection/constants';
2
- import * as security from './src/security';
11
+ import * as console from './src/console';
12
+ import * as debug from './src/debug/debug_renderer';
13
+ import * as provider_util from './src/di/provider_util';
3
14
  import * as reflective_provider from './src/di/reflective_provider';
4
- import * as lifecycle_hooks from './src/metadata/lifecycle_hooks';
5
- import * as reflector_reader from './src/reflection/reflector_reader';
6
15
  import * as component_resolver from './src/linker/component_resolver';
16
+ import * as debug_context from './src/linker/debug_context';
7
17
  import * as element from './src/linker/element';
18
+ import * as template_ref from './src/linker/template_ref';
8
19
  import * as view from './src/linker/view';
9
20
  import * as view_type from './src/linker/view_type';
10
21
  import * as view_utils from './src/linker/view_utils';
22
+ import * as lifecycle_hooks from './src/metadata/lifecycle_hooks';
11
23
  import * as metadata_view from './src/metadata/view';
12
- import * as debug_context from './src/linker/debug_context';
13
- import * as change_detection_util from './src/change_detection/change_detection_util';
14
- import * as api from './src/render/api';
15
- import * as template_ref from './src/linker/template_ref';
16
24
  import * as wtf_init from './src/profile/wtf_init';
25
+ import * as reflection from './src/reflection/reflection';
17
26
  import * as reflection_capabilities from './src/reflection/reflection_capabilities';
27
+ import * as reflector_reader from './src/reflection/reflector_reader';
28
+ import * as api from './src/render/api';
29
+ import * as security from './src/security';
18
30
  import * as decorators from './src/util/decorators';
19
- import * as debug from './src/debug/debug_renderer';
20
- import * as provider_util from './src/di/provider_util';
21
- import * as console from './src/console';
22
31
  export var __core_private__ = {
23
32
  isDefaultChangeDetectionStrategy: constants.isDefaultChangeDetectionStrategy,
24
33
  ChangeDetectorState: constants.ChangeDetectorState,
@@ -67,5 +76,25 @@ export var __core_private__ = {
67
76
  pureProxy10: view_utils.pureProxy10,
68
77
  castByValue: view_utils.castByValue,
69
78
  Console: console.Console,
79
+ reflector: reflection.reflector,
80
+ Reflector: reflection.Reflector,
81
+ NoOpAnimationPlayer: NoOpAnimationPlayer_,
82
+ AnimationPlayer: AnimationPlayer_,
83
+ NoOpAnimationDriver: NoOpAnimationDriver_,
84
+ AnimationDriver: AnimationDriver_,
85
+ AnimationSequencePlayer: AnimationSequencePlayer_,
86
+ AnimationGroupPlayer: AnimationGroupPlayer_,
87
+ AnimationKeyframe: AnimationKeyframe_,
88
+ prepareFinalAnimationStyles: animationUtils.prepareFinalAnimationStyles,
89
+ balanceAnimationKeyframes: animationUtils.balanceAnimationKeyframes,
90
+ flattenStyles: animationUtils.flattenStyles,
91
+ clearStyles: animationUtils.clearStyles,
92
+ renderStyles: animationUtils.renderStyles,
93
+ collectAndResolveStyles: animationUtils.collectAndResolveStyles,
94
+ AnimationStyles: AnimationStyles_,
95
+ ANY_STATE: ANY_STATE_,
96
+ DEFAULT_STATE: DEFAULT_STATE_,
97
+ EMPTY_STATE: EMPTY_STATE_,
98
+ FILL_STYLE_FLAG: FILL_STYLE_FLAG_
70
99
  };
71
100
  //# sourceMappingURL=private_export.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"private_export.js","sourceRoot":"","sources":["../../../../modules/@angular/core/private_export.ts"],"names":[],"mappings":"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","sourcesContent":["interface DecoratorInvocation {\n type: Function;\n args?: any[];\n }\n import * as constants from './src/change_detection/constants';\nimport * as security from './src/security';\nimport * as reflective_provider from './src/di/reflective_provider';\nimport * as lifecycle_hooks from './src/metadata/lifecycle_hooks';\nimport * as reflector_reader from './src/reflection/reflector_reader';\nimport * as component_resolver from './src/linker/component_resolver';\nimport * as element from './src/linker/element';\nimport * as view from './src/linker/view';\nimport * as view_type from './src/linker/view_type';\nimport * as view_utils from './src/linker/view_utils';\nimport * as metadata_view from './src/metadata/view';\nimport * as debug_context from './src/linker/debug_context';\nimport * as change_detection_util from './src/change_detection/change_detection_util';\nimport * as api from './src/render/api';\nimport * as template_ref from './src/linker/template_ref';\nimport * as wtf_init from './src/profile/wtf_init';\nimport * as reflection_capabilities from './src/reflection/reflection_capabilities';\nimport * as decorators from './src/util/decorators';\nimport * as debug from './src/debug/debug_renderer';\nimport * as provider_util from './src/di/provider_util';\nimport * as console from './src/console';\nimport {Provider} from './index';\n\nexport declare namespace __core_private_types__ {\n export var isDefaultChangeDetectionStrategy: typeof constants.isDefaultChangeDetectionStrategy;\n export type ChangeDetectorState = constants.ChangeDetectorState;\n export var ChangeDetectorState: typeof constants.ChangeDetectorState;\n export var CHANGE_DETECTION_STRATEGY_VALUES: typeof constants.CHANGE_DETECTION_STRATEGY_VALUES;\n export var constructDependencies: typeof reflective_provider.constructDependencies;\n export type LifecycleHooks = lifecycle_hooks.LifecycleHooks;\n export var LifecycleHooks: typeof lifecycle_hooks.LifecycleHooks;\n export var LIFECYCLE_HOOKS_VALUES: typeof lifecycle_hooks.LIFECYCLE_HOOKS_VALUES;\n export type ReflectorReader = reflector_reader.ReflectorReader;\n export var ReflectorReader: typeof reflector_reader.ReflectorReader;\n export var ReflectorComponentResolver: typeof component_resolver.ReflectorComponentResolver;\n export type AppElement = element.AppElement;\n export var AppElement: typeof element.AppElement;\n export var AppView: typeof view.AppView;\n export type DebugAppView<T> = view.DebugAppView<T>;\n export var DebugAppView: typeof view.DebugAppView;\n export type ViewType = view_type.ViewType;\n export var ViewType: typeof view_type.ViewType;\n export var MAX_INTERPOLATION_VALUES: typeof view_utils.MAX_INTERPOLATION_VALUES;\n export var checkBinding: typeof view_utils.checkBinding;\n export var flattenNestedViewRenderNodes: typeof view_utils.flattenNestedViewRenderNodes;\n export var interpolate: typeof view_utils.interpolate;\n export var ViewUtils: typeof view_utils.ViewUtils;\n export var VIEW_ENCAPSULATION_VALUES: typeof metadata_view.VIEW_ENCAPSULATION_VALUES;\n export var DebugContext: typeof debug_context.DebugContext;\n export var StaticNodeDebugInfo: typeof debug_context.StaticNodeDebugInfo;\n export var devModeEqual: typeof change_detection_util.devModeEqual;\n export var uninitialized: typeof change_detection_util.uninitialized;\n export var ValueUnwrapper: typeof change_detection_util.ValueUnwrapper;\n export type RenderDebugInfo = api.RenderDebugInfo;\n export var RenderDebugInfo: typeof api.RenderDebugInfo;\n export var SecurityContext: typeof security.SecurityContext;\n export type SecurityContext = security.SecurityContext;\n export var SanitizationService: typeof security.SanitizationService;\n export type SanitizationService = security.SanitizationService;\n export type TemplateRef_<C> = template_ref.TemplateRef_<C>;\n export var TemplateRef_: typeof template_ref.TemplateRef_;\n export var wtfInit: typeof wtf_init.wtfInit;\n export type ReflectionCapabilities = reflection_capabilities.ReflectionCapabilities;\n export var ReflectionCapabilities: typeof reflection_capabilities.ReflectionCapabilities;\n export var makeDecorator: typeof decorators.makeDecorator;\n export type DebugDomRootRenderer = debug.DebugDomRootRenderer;\n export var DebugDomRootRenderer: typeof debug.DebugDomRootRenderer;\n export var createProvider: typeof provider_util.createProvider;\n export var isProviderLiteral: typeof provider_util.isProviderLiteral;\n export var EMPTY_ARRAY: typeof view_utils.EMPTY_ARRAY;\n export var EMPTY_MAP: typeof view_utils.EMPTY_MAP;\n export var pureProxy1: typeof view_utils.pureProxy1;\n export var pureProxy2: typeof view_utils.pureProxy2;\n export var pureProxy3: typeof view_utils.pureProxy3;\n export var pureProxy4: typeof view_utils.pureProxy4;\n export var pureProxy5: typeof view_utils.pureProxy5;\n export var pureProxy6: typeof view_utils.pureProxy6;\n export var pureProxy7: typeof view_utils.pureProxy7;\n export var pureProxy8: typeof view_utils.pureProxy8;\n export var pureProxy9: typeof view_utils.pureProxy9;\n export var pureProxy10: typeof view_utils.pureProxy10;\n export var castByValue: typeof view_utils.castByValue;\n export type Console = console.Console;\n export var Console: typeof console.Console;\n}\n\nexport var __core_private__ = {\n isDefaultChangeDetectionStrategy: constants.isDefaultChangeDetectionStrategy,\n ChangeDetectorState: constants.ChangeDetectorState,\n CHANGE_DETECTION_STRATEGY_VALUES: constants.CHANGE_DETECTION_STRATEGY_VALUES,\n constructDependencies: reflective_provider.constructDependencies,\n LifecycleHooks: lifecycle_hooks.LifecycleHooks,\n LIFECYCLE_HOOKS_VALUES: lifecycle_hooks.LIFECYCLE_HOOKS_VALUES,\n ReflectorReader: reflector_reader.ReflectorReader,\n ReflectorComponentResolver: component_resolver.ReflectorComponentResolver,\n AppElement: element.AppElement,\n AppView: view.AppView,\n DebugAppView: view.DebugAppView,\n ViewType: view_type.ViewType,\n MAX_INTERPOLATION_VALUES: view_utils.MAX_INTERPOLATION_VALUES,\n checkBinding: view_utils.checkBinding,\n flattenNestedViewRenderNodes: view_utils.flattenNestedViewRenderNodes,\n interpolate: view_utils.interpolate,\n ViewUtils: view_utils.ViewUtils,\n VIEW_ENCAPSULATION_VALUES: metadata_view.VIEW_ENCAPSULATION_VALUES,\n DebugContext: debug_context.DebugContext,\n StaticNodeDebugInfo: debug_context.StaticNodeDebugInfo,\n devModeEqual: change_detection_util.devModeEqual,\n uninitialized: change_detection_util.uninitialized,\n ValueUnwrapper: change_detection_util.ValueUnwrapper,\n RenderDebugInfo: api.RenderDebugInfo,\n SecurityContext: security.SecurityContext,\n SanitizationService: security.SanitizationService,\n TemplateRef_: template_ref.TemplateRef_,\n wtfInit: wtf_init.wtfInit,\n ReflectionCapabilities: reflection_capabilities.ReflectionCapabilities,\n makeDecorator: decorators.makeDecorator,\n DebugDomRootRenderer: debug.DebugDomRootRenderer,\n createProvider: provider_util.createProvider,\n isProviderLiteral: provider_util.isProviderLiteral,\n EMPTY_ARRAY: view_utils.EMPTY_ARRAY,\n EMPTY_MAP: view_utils.EMPTY_MAP,\n pureProxy1: view_utils.pureProxy1,\n pureProxy2: view_utils.pureProxy2,\n pureProxy3: view_utils.pureProxy3,\n pureProxy4: view_utils.pureProxy4,\n pureProxy5: view_utils.pureProxy5,\n pureProxy6: view_utils.pureProxy6,\n pureProxy7: view_utils.pureProxy7,\n pureProxy8: view_utils.pureProxy8,\n pureProxy9: view_utils.pureProxy9,\n pureProxy10: view_utils.pureProxy10,\n castByValue: view_utils.castByValue,\n Console: console.Console,\n};\n"]}
1
+ {"version":3,"file":"private_export.js","sourceRoot":"","sources":["../../../../modules/@angular/core/private_export.ts"],"names":[],"mappings":"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","sourcesContent":["import {Provider} from './index';\nimport {ANY_STATE as ANY_STATE_, DEFAULT_STATE as DEFAULT_STATE_, EMPTY_STATE as EMPTY_STATE_, FILL_STYLE_FLAG as FILL_STYLE_FLAG_} from './src/animation/animation_constants';\nimport {AnimationDriver as AnimationDriver_, NoOpAnimationDriver as NoOpAnimationDriver_} from './src/animation/animation_driver';\nimport {AnimationGroupPlayer as AnimationGroupPlayer_} from './src/animation/animation_group_player';\nimport {AnimationKeyframe as AnimationKeyframe_} from './src/animation/animation_keyframe';\nimport {AnimationPlayer as AnimationPlayer_, NoOpAnimationPlayer as NoOpAnimationPlayer_} from './src/animation/animation_player';\nimport {AnimationSequencePlayer as AnimationSequencePlayer_} from './src/animation/animation_sequence_player';\nimport * as animationUtils from './src/animation/animation_style_util';\nimport {AnimationStyles as AnimationStyles_} from './src/animation/animation_styles';\nimport * as change_detection_util from './src/change_detection/change_detection_util';\nimport * as constants from './src/change_detection/constants';\nimport * as console from './src/console';\nimport * as debug from './src/debug/debug_renderer';\nimport * as provider_util from './src/di/provider_util';\nimport * as reflective_provider from './src/di/reflective_provider';\nimport * as component_resolver from './src/linker/component_resolver';\nimport * as debug_context from './src/linker/debug_context';\nimport * as element from './src/linker/element';\nimport * as template_ref from './src/linker/template_ref';\nimport * as view from './src/linker/view';\nimport * as view_type from './src/linker/view_type';\nimport * as view_utils from './src/linker/view_utils';\nimport * as lifecycle_hooks from './src/metadata/lifecycle_hooks';\nimport * as metadata_view from './src/metadata/view';\nimport * as wtf_init from './src/profile/wtf_init';\nimport * as reflection from './src/reflection/reflection';\n// We need to import this name separately from the above wildcard, because this symbol is exposed.\nimport {Reflector} from './src/reflection/reflection'; // tslint:disable-line\nimport * as reflection_capabilities from './src/reflection/reflection_capabilities';\nimport * as reflector_reader from './src/reflection/reflector_reader';\nimport * as api from './src/render/api';\nimport * as security from './src/security';\nimport * as decorators from './src/util/decorators';\n\nexport declare namespace __core_private_types__ {\n export var isDefaultChangeDetectionStrategy: typeof constants.isDefaultChangeDetectionStrategy;\n export type ChangeDetectorState = constants.ChangeDetectorState;\n export var ChangeDetectorState: typeof constants.ChangeDetectorState;\n export var CHANGE_DETECTION_STRATEGY_VALUES: typeof constants.CHANGE_DETECTION_STRATEGY_VALUES;\n export var constructDependencies: typeof reflective_provider.constructDependencies;\n export type LifecycleHooks = lifecycle_hooks.LifecycleHooks;\n export var LifecycleHooks: typeof lifecycle_hooks.LifecycleHooks;\n export var LIFECYCLE_HOOKS_VALUES: typeof lifecycle_hooks.LIFECYCLE_HOOKS_VALUES;\n export type ReflectorReader = reflector_reader.ReflectorReader;\n export var ReflectorReader: typeof reflector_reader.ReflectorReader;\n export var ReflectorComponentResolver: typeof component_resolver.ReflectorComponentResolver;\n export type AppElement = element.AppElement;\n export var AppElement: typeof element.AppElement;\n export var AppView: typeof view.AppView;\n export type DebugAppView<T> = view.DebugAppView<T>;\n export var DebugAppView: typeof view.DebugAppView;\n export type ViewType = view_type.ViewType;\n export var ViewType: typeof view_type.ViewType;\n export var MAX_INTERPOLATION_VALUES: typeof view_utils.MAX_INTERPOLATION_VALUES;\n export var checkBinding: typeof view_utils.checkBinding;\n export var flattenNestedViewRenderNodes: typeof view_utils.flattenNestedViewRenderNodes;\n export var interpolate: typeof view_utils.interpolate;\n export var ViewUtils: typeof view_utils.ViewUtils;\n export var VIEW_ENCAPSULATION_VALUES: typeof metadata_view.VIEW_ENCAPSULATION_VALUES;\n export var DebugContext: typeof debug_context.DebugContext;\n export var StaticNodeDebugInfo: typeof debug_context.StaticNodeDebugInfo;\n export var devModeEqual: typeof change_detection_util.devModeEqual;\n export var uninitialized: typeof change_detection_util.uninitialized;\n export var ValueUnwrapper: typeof change_detection_util.ValueUnwrapper;\n export type RenderDebugInfo = api.RenderDebugInfo;\n export var RenderDebugInfo: typeof api.RenderDebugInfo;\n export var SecurityContext: typeof security.SecurityContext;\n export type SecurityContext = security.SecurityContext;\n export var SanitizationService: typeof security.SanitizationService;\n export type SanitizationService = security.SanitizationService;\n export type TemplateRef_<C> = template_ref.TemplateRef_<C>;\n export var TemplateRef_: typeof template_ref.TemplateRef_;\n export var wtfInit: typeof wtf_init.wtfInit;\n export type ReflectionCapabilities = reflection_capabilities.ReflectionCapabilities;\n export var ReflectionCapabilities: typeof reflection_capabilities.ReflectionCapabilities;\n export var makeDecorator: typeof decorators.makeDecorator;\n export type DebugDomRootRenderer = debug.DebugDomRootRenderer;\n export var DebugDomRootRenderer: typeof debug.DebugDomRootRenderer;\n export var createProvider: typeof provider_util.createProvider;\n export var isProviderLiteral: typeof provider_util.isProviderLiteral;\n export var EMPTY_ARRAY: typeof view_utils.EMPTY_ARRAY;\n export var EMPTY_MAP: typeof view_utils.EMPTY_MAP;\n export var pureProxy1: typeof view_utils.pureProxy1;\n export var pureProxy2: typeof view_utils.pureProxy2;\n export var pureProxy3: typeof view_utils.pureProxy3;\n export var pureProxy4: typeof view_utils.pureProxy4;\n export var pureProxy5: typeof view_utils.pureProxy5;\n export var pureProxy6: typeof view_utils.pureProxy6;\n export var pureProxy7: typeof view_utils.pureProxy7;\n export var pureProxy8: typeof view_utils.pureProxy8;\n export var pureProxy9: typeof view_utils.pureProxy9;\n export var pureProxy10: typeof view_utils.pureProxy10;\n export var castByValue: typeof view_utils.castByValue;\n export type Console = console.Console;\n export var Console: typeof console.Console;\n export var reflector: typeof reflection.reflector;\n export type Reflector = reflection.Reflector;\n export var Reflector: typeof reflection.Reflector;\n export type NoOpAnimationPlayer = NoOpAnimationPlayer_;\n export var NoOpAnimationPlayer: typeof NoOpAnimationPlayer_;\n export type AnimationPlayer = AnimationPlayer_;\n export var AnimationPlayer: typeof AnimationPlayer_;\n export type NoOpAnimationDriver = NoOpAnimationDriver_;\n export var NoOpAnimationDriver: typeof NoOpAnimationDriver_;\n export type AnimationDriver = AnimationDriver_;\n export var AnimationDriver: typeof AnimationDriver_;\n export type AnimationSequencePlayer = AnimationSequencePlayer_;\n export var AnimationSequencePlayer: typeof AnimationSequencePlayer_;\n export type AnimationGroupPlayer = AnimationGroupPlayer_;\n export var AnimationGroupPlayer: typeof AnimationGroupPlayer_;\n export type AnimationKeyframe = AnimationKeyframe_;\n export var AnimationKeyframe: typeof AnimationKeyframe_;\n export var prepareFinalAnimationStyles: typeof animationUtils.prepareFinalAnimationStyles;\n export var balanceAnimationKeyframes: typeof animationUtils.balanceAnimationKeyframes;\n export var flattenStyles: typeof animationUtils.flattenStyles;\n export var clearStyles: typeof animationUtils.clearStyles;\n export var renderStyles: typeof animationUtils.renderStyles;\n export var collectAndResolveStyles: typeof animationUtils.collectAndResolveStyles;\n export type AnimationStyles = AnimationStyles_;\n export var AnimationStyles: typeof AnimationStyles_;\n export var ANY_STATE: typeof ANY_STATE_;\n export var DEFAULT_STATE: typeof DEFAULT_STATE_;\n export var EMPTY_STATE: typeof EMPTY_STATE_;\n export var FILL_STYLE_FLAG: typeof FILL_STYLE_FLAG_;\n}\n\nexport var __core_private__ = {\n isDefaultChangeDetectionStrategy: constants.isDefaultChangeDetectionStrategy,\n ChangeDetectorState: constants.ChangeDetectorState,\n CHANGE_DETECTION_STRATEGY_VALUES: constants.CHANGE_DETECTION_STRATEGY_VALUES,\n constructDependencies: reflective_provider.constructDependencies,\n LifecycleHooks: lifecycle_hooks.LifecycleHooks,\n LIFECYCLE_HOOKS_VALUES: lifecycle_hooks.LIFECYCLE_HOOKS_VALUES,\n ReflectorReader: reflector_reader.ReflectorReader,\n ReflectorComponentResolver: component_resolver.ReflectorComponentResolver,\n AppElement: element.AppElement,\n AppView: view.AppView,\n DebugAppView: view.DebugAppView,\n ViewType: view_type.ViewType,\n MAX_INTERPOLATION_VALUES: view_utils.MAX_INTERPOLATION_VALUES,\n checkBinding: view_utils.checkBinding,\n flattenNestedViewRenderNodes: view_utils.flattenNestedViewRenderNodes,\n interpolate: view_utils.interpolate,\n ViewUtils: view_utils.ViewUtils,\n VIEW_ENCAPSULATION_VALUES: metadata_view.VIEW_ENCAPSULATION_VALUES,\n DebugContext: debug_context.DebugContext,\n StaticNodeDebugInfo: debug_context.StaticNodeDebugInfo,\n devModeEqual: change_detection_util.devModeEqual,\n uninitialized: change_detection_util.uninitialized,\n ValueUnwrapper: change_detection_util.ValueUnwrapper,\n RenderDebugInfo: api.RenderDebugInfo,\n SecurityContext: security.SecurityContext,\n SanitizationService: security.SanitizationService,\n TemplateRef_: template_ref.TemplateRef_,\n wtfInit: wtf_init.wtfInit,\n ReflectionCapabilities: reflection_capabilities.ReflectionCapabilities,\n makeDecorator: decorators.makeDecorator,\n DebugDomRootRenderer: debug.DebugDomRootRenderer,\n createProvider: provider_util.createProvider,\n isProviderLiteral: provider_util.isProviderLiteral,\n EMPTY_ARRAY: view_utils.EMPTY_ARRAY,\n EMPTY_MAP: view_utils.EMPTY_MAP,\n pureProxy1: view_utils.pureProxy1,\n pureProxy2: view_utils.pureProxy2,\n pureProxy3: view_utils.pureProxy3,\n pureProxy4: view_utils.pureProxy4,\n pureProxy5: view_utils.pureProxy5,\n pureProxy6: view_utils.pureProxy6,\n pureProxy7: view_utils.pureProxy7,\n pureProxy8: view_utils.pureProxy8,\n pureProxy9: view_utils.pureProxy9,\n pureProxy10: view_utils.pureProxy10,\n castByValue: view_utils.castByValue,\n Console: console.Console,\n reflector: reflection.reflector,\n Reflector: reflection.Reflector,\n NoOpAnimationPlayer: NoOpAnimationPlayer_,\n AnimationPlayer: AnimationPlayer_,\n NoOpAnimationDriver: NoOpAnimationDriver_,\n AnimationDriver: AnimationDriver_,\n AnimationSequencePlayer: AnimationSequencePlayer_,\n AnimationGroupPlayer: AnimationGroupPlayer_,\n AnimationKeyframe: AnimationKeyframe_,\n prepareFinalAnimationStyles: animationUtils.prepareFinalAnimationStyles,\n balanceAnimationKeyframes: animationUtils.balanceAnimationKeyframes,\n flattenStyles: animationUtils.flattenStyles,\n clearStyles: animationUtils.clearStyles,\n renderStyles: animationUtils.renderStyles,\n collectAndResolveStyles: animationUtils.collectAndResolveStyles,\n AnimationStyles: AnimationStyles_,\n ANY_STATE: ANY_STATE_,\n DEFAULT_STATE: DEFAULT_STATE_,\n EMPTY_STATE: EMPTY_STATE_,\n FILL_STYLE_FLAG: FILL_STYLE_FLAG_\n};\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
@@ -1 +1 @@
1
- {"__symbolic":"module","metadata":{"___core_private__":{"isDefaultChangeDetectionStrategy":{"__symbolic":"reference","name":"isDefaultChangeDetectionStrategy","module":"./src/change_detection/constants"},"ChangeDetectorState":{"__symbolic":"reference","name":"ChangeDetectorState","module":"./src/change_detection/constants"},"CHANGE_DETECTION_STRATEGY_VALUES":{"__symbolic":"reference","name":"CHANGE_DETECTION_STRATEGY_VALUES","module":"./src/change_detection/constants"},"constructDependencies":{"__symbolic":"reference","name":"constructDependencies","module":"./src/di/reflective_provider"},"LifecycleHooks":{"__symbolic":"reference","name":"LifecycleHooks","module":"./src/metadata/lifecycle_hooks"},"LIFECYCLE_HOOKS_VALUES":{"__symbolic":"reference","name":"LIFECYCLE_HOOKS_VALUES","module":"./src/metadata/lifecycle_hooks"},"ReflectorReader":{"__symbolic":"reference","name":"ReflectorReader","module":"./src/reflection/reflector_reader"},"ReflectorComponentResolver":{"__symbolic":"reference","name":"ReflectorComponentResolver","module":"./src/linker/component_resolver"},"AppElement":{"__symbolic":"reference","name":"AppElement","module":"./src/linker/element"},"AppView":{"__symbolic":"reference","name":"AppView","module":"./src/linker/view"},"DebugAppView":{"__symbolic":"reference","name":"DebugAppView","module":"./src/linker/view"},"ViewType":{"__symbolic":"reference","name":"ViewType","module":"./src/linker/view_type"},"MAX_INTERPOLATION_VALUES":{"__symbolic":"reference","name":"MAX_INTERPOLATION_VALUES","module":"./src/linker/view_utils"},"checkBinding":{"__symbolic":"reference","name":"checkBinding","module":"./src/linker/view_utils"},"flattenNestedViewRenderNodes":{"__symbolic":"reference","name":"flattenNestedViewRenderNodes","module":"./src/linker/view_utils"},"interpolate":{"__symbolic":"reference","name":"interpolate","module":"./src/linker/view_utils"},"ViewUtils":{"__symbolic":"reference","name":"ViewUtils","module":"./src/linker/view_utils"},"VIEW_ENCAPSULATION_VALUES":{"__symbolic":"reference","name":"VIEW_ENCAPSULATION_VALUES","module":"./src/metadata/view"},"DebugContext":{"__symbolic":"reference","name":"DebugContext","module":"./src/linker/debug_context"},"StaticNodeDebugInfo":{"__symbolic":"reference","name":"StaticNodeDebugInfo","module":"./src/linker/debug_context"},"devModeEqual":{"__symbolic":"reference","name":"devModeEqual","module":"./src/change_detection/change_detection_util"},"uninitialized":{"__symbolic":"reference","name":"uninitialized","module":"./src/change_detection/change_detection_util"},"ValueUnwrapper":{"__symbolic":"reference","name":"ValueUnwrapper","module":"./src/change_detection/change_detection_util"},"RenderDebugInfo":{"__symbolic":"reference","name":"RenderDebugInfo","module":"./src/render/api"},"SecurityContext":{"__symbolic":"reference","name":"SecurityContext","module":"./src/security"},"SanitizationService":{"__symbolic":"reference","name":"SanitizationService","module":"./src/security"},"TemplateRef_":{"__symbolic":"reference","name":"TemplateRef_","module":"./src/linker/template_ref"},"wtfInit":{"__symbolic":"reference","name":"wtfInit","module":"./src/profile/wtf_init"},"ReflectionCapabilities":{"__symbolic":"reference","name":"ReflectionCapabilities","module":"./src/reflection/reflection_capabilities"},"makeDecorator":{"__symbolic":"reference","name":"makeDecorator","module":"./src/util/decorators"},"DebugDomRootRenderer":{"__symbolic":"reference","name":"DebugDomRootRenderer","module":"./src/debug/debug_renderer"},"createProvider":{"__symbolic":"reference","name":"createProvider","module":"./src/di/provider_util"},"isProviderLiteral":{"__symbolic":"reference","name":"isProviderLiteral","module":"./src/di/provider_util"},"EMPTY_ARRAY":{"__symbolic":"reference","name":"EMPTY_ARRAY","module":"./src/linker/view_utils"},"EMPTY_MAP":{"__symbolic":"reference","name":"EMPTY_MAP","module":"./src/linker/view_utils"},"pureProxy1":{"__symbolic":"reference","name":"pureProxy1","module":"./src/linker/view_utils"},"pureProxy2":{"__symbolic":"reference","name":"pureProxy2","module":"./src/linker/view_utils"},"pureProxy3":{"__symbolic":"reference","name":"pureProxy3","module":"./src/linker/view_utils"},"pureProxy4":{"__symbolic":"reference","name":"pureProxy4","module":"./src/linker/view_utils"},"pureProxy5":{"__symbolic":"reference","name":"pureProxy5","module":"./src/linker/view_utils"},"pureProxy6":{"__symbolic":"reference","name":"pureProxy6","module":"./src/linker/view_utils"},"pureProxy7":{"__symbolic":"reference","name":"pureProxy7","module":"./src/linker/view_utils"},"pureProxy8":{"__symbolic":"reference","name":"pureProxy8","module":"./src/linker/view_utils"},"pureProxy9":{"__symbolic":"reference","name":"pureProxy9","module":"./src/linker/view_utils"},"pureProxy10":{"__symbolic":"reference","name":"pureProxy10","module":"./src/linker/view_utils"},"castByValue":{"__symbolic":"reference","name":"castByValue","module":"./src/linker/view_utils"},"Console":{"__symbolic":"reference","name":"Console","module":"./src/console"}}}}
1
+ {"__symbolic":"module","version":1,"metadata":{"___core_private__":{"isDefaultChangeDetectionStrategy":{"__symbolic":"reference","module":"./src/change_detection/constants","name":"isDefaultChangeDetectionStrategy"},"ChangeDetectorState":{"__symbolic":"reference","module":"./src/change_detection/constants","name":"ChangeDetectorState"},"CHANGE_DETECTION_STRATEGY_VALUES":{"__symbolic":"reference","module":"./src/change_detection/constants","name":"CHANGE_DETECTION_STRATEGY_VALUES"},"constructDependencies":{"__symbolic":"reference","module":"./src/di/reflective_provider","name":"constructDependencies"},"LifecycleHooks":{"__symbolic":"reference","module":"./src/metadata/lifecycle_hooks","name":"LifecycleHooks"},"LIFECYCLE_HOOKS_VALUES":{"__symbolic":"reference","module":"./src/metadata/lifecycle_hooks","name":"LIFECYCLE_HOOKS_VALUES"},"ReflectorReader":{"__symbolic":"reference","module":"./src/reflection/reflector_reader","name":"ReflectorReader"},"ReflectorComponentResolver":{"__symbolic":"reference","module":"./src/linker/component_resolver","name":"ReflectorComponentResolver"},"AppElement":{"__symbolic":"reference","module":"./src/linker/element","name":"AppElement"},"AppView":{"__symbolic":"reference","module":"./src/linker/view","name":"AppView"},"DebugAppView":{"__symbolic":"reference","module":"./src/linker/view","name":"DebugAppView"},"ViewType":{"__symbolic":"reference","module":"./src/linker/view_type","name":"ViewType"},"MAX_INTERPOLATION_VALUES":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"MAX_INTERPOLATION_VALUES"},"checkBinding":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"checkBinding"},"flattenNestedViewRenderNodes":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"flattenNestedViewRenderNodes"},"interpolate":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"interpolate"},"ViewUtils":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"ViewUtils"},"VIEW_ENCAPSULATION_VALUES":{"__symbolic":"reference","module":"./src/metadata/view","name":"VIEW_ENCAPSULATION_VALUES"},"DebugContext":{"__symbolic":"reference","module":"./src/linker/debug_context","name":"DebugContext"},"StaticNodeDebugInfo":{"__symbolic":"reference","module":"./src/linker/debug_context","name":"StaticNodeDebugInfo"},"devModeEqual":{"__symbolic":"reference","module":"./src/change_detection/change_detection_util","name":"devModeEqual"},"uninitialized":{"__symbolic":"reference","module":"./src/change_detection/change_detection_util","name":"uninitialized"},"ValueUnwrapper":{"__symbolic":"reference","module":"./src/change_detection/change_detection_util","name":"ValueUnwrapper"},"RenderDebugInfo":{"__symbolic":"reference","module":"./src/render/api","name":"RenderDebugInfo"},"SecurityContext":{"__symbolic":"reference","module":"./src/security","name":"SecurityContext"},"SanitizationService":{"__symbolic":"reference","module":"./src/security","name":"SanitizationService"},"TemplateRef_":{"__symbolic":"reference","module":"./src/linker/template_ref","name":"TemplateRef_"},"wtfInit":{"__symbolic":"reference","module":"./src/profile/wtf_init","name":"wtfInit"},"ReflectionCapabilities":{"__symbolic":"reference","module":"./src/reflection/reflection_capabilities","name":"ReflectionCapabilities"},"makeDecorator":{"__symbolic":"reference","module":"./src/util/decorators","name":"makeDecorator"},"DebugDomRootRenderer":{"__symbolic":"reference","module":"./src/debug/debug_renderer","name":"DebugDomRootRenderer"},"createProvider":{"__symbolic":"reference","module":"./src/di/provider_util","name":"createProvider"},"isProviderLiteral":{"__symbolic":"reference","module":"./src/di/provider_util","name":"isProviderLiteral"},"EMPTY_ARRAY":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"EMPTY_ARRAY"},"EMPTY_MAP":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"EMPTY_MAP"},"pureProxy1":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy1"},"pureProxy2":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy2"},"pureProxy3":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy3"},"pureProxy4":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy4"},"pureProxy5":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy5"},"pureProxy6":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy6"},"pureProxy7":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy7"},"pureProxy8":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy8"},"pureProxy9":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy9"},"pureProxy10":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"pureProxy10"},"castByValue":{"__symbolic":"reference","module":"./src/linker/view_utils","name":"castByValue"},"Console":{"__symbolic":"reference","module":"./src/console","name":"Console"},"reflector":{"__symbolic":"reference","module":"./src/reflection/reflection","name":"reflector"},"Reflector":{"__symbolic":"reference","module":"./src/reflection/reflection","name":"Reflector"},"NoOpAnimationPlayer":{"__symbolic":"reference","module":"./src/animation/animation_player","name":"NoOpAnimationPlayer"},"AnimationPlayer":{"__symbolic":"reference","module":"./src/animation/animation_player","name":"AnimationPlayer"},"NoOpAnimationDriver":{"__symbolic":"reference","module":"./src/animation/animation_driver","name":"NoOpAnimationDriver"},"AnimationDriver":{"__symbolic":"reference","module":"./src/animation/animation_driver","name":"AnimationDriver"},"AnimationSequencePlayer":{"__symbolic":"reference","module":"./src/animation/animation_sequence_player","name":"AnimationSequencePlayer"},"AnimationGroupPlayer":{"__symbolic":"reference","module":"./src/animation/animation_group_player","name":"AnimationGroupPlayer"},"AnimationKeyframe":{"__symbolic":"reference","module":"./src/animation/animation_keyframe","name":"AnimationKeyframe"},"prepareFinalAnimationStyles":{"__symbolic":"reference","module":"./src/animation/animation_style_util","name":"prepareFinalAnimationStyles"},"balanceAnimationKeyframes":{"__symbolic":"reference","module":"./src/animation/animation_style_util","name":"balanceAnimationKeyframes"},"flattenStyles":{"__symbolic":"reference","module":"./src/animation/animation_style_util","name":"flattenStyles"},"clearStyles":{"__symbolic":"reference","module":"./src/animation/animation_style_util","name":"clearStyles"},"renderStyles":{"__symbolic":"reference","module":"./src/animation/animation_style_util","name":"renderStyles"},"collectAndResolveStyles":{"__symbolic":"reference","module":"./src/animation/animation_style_util","name":"collectAndResolveStyles"},"AnimationStyles":{"__symbolic":"reference","module":"./src/animation/animation_styles","name":"AnimationStyles"},"ANY_STATE":{"__symbolic":"reference","module":"./src/animation/animation_constants","name":"ANY_STATE"},"DEFAULT_STATE":{"__symbolic":"reference","module":"./src/animation/animation_constants","name":"DEFAULT_STATE"},"EMPTY_STATE":{"__symbolic":"reference","module":"./src/animation/animation_constants","name":"EMPTY_STATE"},"FILL_STYLE_FLAG":{"__symbolic":"reference","module":"./src/animation/animation_constants","name":"FILL_STYLE_FLAG"}}}}
@@ -0,0 +1,11 @@
1
+ import { AnimationPlayer } from './animation_player';
2
+ export declare class ActiveAnimationPlayersMap {
3
+ private _map;
4
+ private _allPlayers;
5
+ readonly length: number;
6
+ find(element: any, animationName: string): AnimationPlayer;
7
+ findAllPlayersByElement(element: any): AnimationPlayer[];
8
+ set(element: any, animationName: string, player: AnimationPlayer): void;
9
+ getAllPlayers(): AnimationPlayer[];
10
+ remove(element: any, animationName: string): void;
11
+ }
@@ -0,0 +1,47 @@
1
+ import { ListWrapper, Map, StringMapWrapper } from '../facade/collection';
2
+ import { isPresent } from '../facade/lang';
3
+ export class ActiveAnimationPlayersMap {
4
+ constructor() {
5
+ this._map = new Map();
6
+ this._allPlayers = [];
7
+ }
8
+ get length() { return this.getAllPlayers().length; }
9
+ find(element, animationName) {
10
+ var playersByAnimation = this._map.get(element);
11
+ if (isPresent(playersByAnimation)) {
12
+ return playersByAnimation[animationName];
13
+ }
14
+ }
15
+ findAllPlayersByElement(element) {
16
+ var players = [];
17
+ StringMapWrapper.forEach(this._map.get(element), (player /** TODO #9100 */) => players.push(player));
18
+ return players;
19
+ }
20
+ set(element, animationName, player) {
21
+ var playersByAnimation = this._map.get(element);
22
+ if (!isPresent(playersByAnimation)) {
23
+ playersByAnimation = {};
24
+ }
25
+ var existingEntry = playersByAnimation[animationName];
26
+ if (isPresent(existingEntry)) {
27
+ this.remove(element, animationName);
28
+ }
29
+ playersByAnimation[animationName] = player;
30
+ this._allPlayers.push(player);
31
+ this._map.set(element, playersByAnimation);
32
+ }
33
+ getAllPlayers() { return this._allPlayers; }
34
+ remove(element, animationName) {
35
+ var playersByAnimation = this._map.get(element);
36
+ if (isPresent(playersByAnimation)) {
37
+ var player = playersByAnimation[animationName];
38
+ delete playersByAnimation[animationName];
39
+ var index = this._allPlayers.indexOf(player);
40
+ ListWrapper.removeAt(this._allPlayers, index);
41
+ if (StringMapWrapper.isEmpty(playersByAnimation)) {
42
+ this._map.delete(element);
43
+ }
44
+ }
45
+ }
46
+ }
47
+ //# sourceMappingURL=active_animation_players_map.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"active_animation_players_map.js","sourceRoot":"","sources":["../../../../../../modules/@angular/core/src/animation/active_animation_players_map.ts"],"names":[],"mappings":"OAAO,EAAC,WAAW,EAAE,GAAG,EAAE,gBAAgB,EAAC,MAAM,sBAAsB;OAChE,EAAC,SAAS,EAAC,MAAM,gBAAgB;AAIxC;IAAA;QACU,SAAI,GAAG,IAAI,GAAG,EAAyC,CAAC;QACxD,gBAAW,GAAsB,EAAE,CAAC;IA+C9C,CAAC;IA7CC,IAAI,MAAM,KAAa,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAE5D,IAAI,CAAC,OAAY,EAAE,aAAqB;QACtC,IAAI,kBAAkB,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QAChD,EAAE,CAAC,CAAC,SAAS,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC;YAClC,MAAM,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC;QAC3C,CAAC;IACH,CAAC;IAED,uBAAuB,CAAC,OAAY;QAClC,IAAI,OAAO,GAA4B,EAAE,CAAC;QAC1C,gBAAgB,CAAC,OAAO,CACpB,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,MAAW,CAAC,iBAAiB,KAAK,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;QACrF,MAAM,CAAC,OAAO,CAAC;IACjB,CAAC;IAED,GAAG,CAAC,OAAY,EAAE,aAAqB,EAAE,MAAuB;QAC9D,IAAI,kBAAkB,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QAChD,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC;YACnC,kBAAkB,GAAG,EAAE,CAAC;QAC1B,CAAC;QACD,IAAI,aAAa,GAAG,kBAAkB,CAAC,aAAa,CAAC,CAAC;QACtD,EAAE,CAAC,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;QACtC,CAAC;QACD,kBAAkB,CAAC,aAAa,CAAC,GAAG,MAAM,CAAC;QAC3C,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC9B,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC;IAC7C,CAAC;IAED,aAAa,KAAwB,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;IAE/D,MAAM,CAAC,OAAY,EAAE,aAAqB;QACxC,IAAI,kBAAkB,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QAChD,EAAE,CAAC,CAAC,SAAS,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC;YAClC,IAAI,MAAM,GAAG,kBAAkB,CAAC,aAAa,CAAC,CAAC;YAC/C,OAAO,kBAAkB,CAAC,aAAa,CAAC,CAAC;YACzC,IAAI,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;YAC7C,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC;YAE9C,EAAE,CAAC,CAAC,gBAAgB,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC;gBACjD,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAC5B,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAAA","sourcesContent":["import {ListWrapper, Map, StringMapWrapper} from '../facade/collection';\nimport {isPresent} from '../facade/lang';\n\nimport {AnimationPlayer} from './animation_player';\n\nexport class ActiveAnimationPlayersMap {\n private _map = new Map<any, {[key: string]: AnimationPlayer}>();\n private _allPlayers: AnimationPlayer[] = [];\n\n get length(): number { return this.getAllPlayers().length; }\n\n find(element: any, animationName: string): AnimationPlayer {\n var playersByAnimation = this._map.get(element);\n if (isPresent(playersByAnimation)) {\n return playersByAnimation[animationName];\n }\n }\n\n findAllPlayersByElement(element: any): AnimationPlayer[] {\n var players: any[] /** TODO #9100 */ = [];\n StringMapWrapper.forEach(\n this._map.get(element), (player: any /** TODO #9100 */) => players.push(player));\n return players;\n }\n\n set(element: any, animationName: string, player: AnimationPlayer): void {\n var playersByAnimation = this._map.get(element);\n if (!isPresent(playersByAnimation)) {\n playersByAnimation = {};\n }\n var existingEntry = playersByAnimation[animationName];\n if (isPresent(existingEntry)) {\n this.remove(element, animationName);\n }\n playersByAnimation[animationName] = player;\n this._allPlayers.push(player);\n this._map.set(element, playersByAnimation);\n }\n\n getAllPlayers(): AnimationPlayer[] { return this._allPlayers; }\n\n remove(element: any, animationName: string): void {\n var playersByAnimation = this._map.get(element);\n if (isPresent(playersByAnimation)) {\n var player = playersByAnimation[animationName];\n delete playersByAnimation[animationName];\n var index = this._allPlayers.indexOf(player);\n ListWrapper.removeAt(this._allPlayers, index);\n\n if (StringMapWrapper.isEmpty(playersByAnimation)) {\n this._map.delete(element);\n }\n }\n }\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const FILL_STYLE_FLAG: string;
2
+ export declare const ANY_STATE: string;
3
+ export declare const DEFAULT_STATE: string;
4
+ export declare const EMPTY_STATE: string;
@@ -0,0 +1,5 @@
1
+ export const FILL_STYLE_FLAG = 'true'; // TODO (matsko): change to boolean
2
+ export const ANY_STATE = '*';
3
+ export const DEFAULT_STATE = '*';
4
+ export const EMPTY_STATE = 'void';
5
+ //# sourceMappingURL=animation_constants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"animation_constants.js","sourceRoot":"","sources":["../../../../../../modules/@angular/core/src/animation/animation_constants.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,eAAe,GAAG,MAAM,CAAC,CAAE,mCAAmC;AAC3E,OAAO,MAAM,SAAS,GAAG,GAAG,CAAC;AAC7B,OAAO,MAAM,aAAa,GAAG,GAAG,CAAC;AACjC,OAAO,MAAM,WAAW,GAAG,MAAM,CAAC","sourcesContent":["export const FILL_STYLE_FLAG = 'true'; // TODO (matsko): change to boolean\nexport const ANY_STATE = '*';\nexport const DEFAULT_STATE = '*';\nexport const EMPTY_STATE = 'void';\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
@@ -0,0 +1 @@
1
+ {"__symbolic":"module","version":1,"metadata":{"FILL_STYLE_FLAG":"true","ANY_STATE":"*","DEFAULT_STATE":"*","EMPTY_STATE":"void"}}
@@ -0,0 +1,9 @@
1
+ import { AnimationKeyframe } from './animation_keyframe';
2
+ import { AnimationPlayer } from './animation_player';
3
+ import { AnimationStyles } from './animation_styles';
4
+ export declare abstract class AnimationDriver {
5
+ abstract animate(element: any, startingStyles: AnimationStyles, keyframes: AnimationKeyframe[], duration: number, delay: number, easing: string): AnimationPlayer;
6
+ }
7
+ export declare class NoOpAnimationDriver extends AnimationDriver {
8
+ animate(element: any, startingStyles: AnimationStyles, keyframes: AnimationKeyframe[], duration: number, delay: number, easing: string): AnimationPlayer;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { NoOpAnimationPlayer } from './animation_player';
2
+ export class AnimationDriver {
3
+ }
4
+ export class NoOpAnimationDriver extends AnimationDriver {
5
+ animate(element, startingStyles, keyframes, duration, delay, easing) {
6
+ return new NoOpAnimationPlayer();
7
+ }
8
+ }
9
+ //# sourceMappingURL=animation_driver.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"animation_driver.js","sourceRoot":"","sources":["../../../../../../modules/@angular/core/src/animation/animation_driver.ts"],"names":[],"mappings":"OACO,EAAkB,mBAAmB,EAAC,MAAM,oBAAoB;AAGvE;AAIA,CAAC;AAED,yCAAyC,eAAe;IACtD,OAAO,CACH,OAAY,EAAE,cAA+B,EAAE,SAA8B,EAC7E,QAAgB,EAAE,KAAa,EAAE,MAAc;QACjD,MAAM,CAAC,IAAI,mBAAmB,EAAE,CAAC;IACnC,CAAC;AACH,CAAC;AAAA","sourcesContent":["import {AnimationKeyframe} from './animation_keyframe';\nimport {AnimationPlayer, NoOpAnimationPlayer} from './animation_player';\nimport {AnimationStyles} from './animation_styles';\n\nexport abstract class AnimationDriver {\n abstract animate(\n element: any, startingStyles: AnimationStyles, keyframes: AnimationKeyframe[],\n duration: number, delay: number, easing: string): AnimationPlayer;\n}\n\nexport class NoOpAnimationDriver extends AnimationDriver {\n animate(\n element: any, startingStyles: AnimationStyles, keyframes: AnimationKeyframe[],\n duration: number, delay: number, easing: string): AnimationPlayer {\n return new NoOpAnimationPlayer();\n }\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
@@ -0,0 +1,18 @@
1
+ import { AnimationPlayer } from './animation_player';
2
+ export declare class AnimationGroupPlayer implements AnimationPlayer {
3
+ private _players;
4
+ private _subscriptions;
5
+ private _finished;
6
+ parentPlayer: AnimationPlayer;
7
+ constructor(_players: AnimationPlayer[]);
8
+ private _onFinish();
9
+ onDone(fn: Function): void;
10
+ play(): void;
11
+ pause(): void;
12
+ restart(): void;
13
+ finish(): void;
14
+ destroy(): void;
15
+ reset(): void;
16
+ setPosition(p: any): void;
17
+ getPosition(): number;
18
+ }
@@ -0,0 +1,60 @@
1
+ import { isPresent, scheduleMicroTask } from '../facade/lang';
2
+ import { Math } from '../facade/math';
3
+ export class AnimationGroupPlayer {
4
+ constructor(_players) {
5
+ this._players = _players;
6
+ this._subscriptions = [];
7
+ this._finished = false;
8
+ this.parentPlayer = null;
9
+ var count = 0;
10
+ var total = this._players.length;
11
+ if (total == 0) {
12
+ scheduleMicroTask(() => this._onFinish());
13
+ }
14
+ else {
15
+ this._players.forEach(player => {
16
+ player.parentPlayer = this;
17
+ player.onDone(() => {
18
+ if (++count >= total) {
19
+ this._onFinish();
20
+ }
21
+ });
22
+ });
23
+ }
24
+ }
25
+ _onFinish() {
26
+ if (!this._finished) {
27
+ this._finished = true;
28
+ if (!isPresent(this.parentPlayer)) {
29
+ this.destroy();
30
+ }
31
+ this._subscriptions.forEach(subscription => subscription());
32
+ this._subscriptions = [];
33
+ }
34
+ }
35
+ onDone(fn) { this._subscriptions.push(fn); }
36
+ play() { this._players.forEach(player => player.play()); }
37
+ pause() { this._players.forEach(player => player.pause()); }
38
+ restart() { this._players.forEach(player => player.restart()); }
39
+ finish() {
40
+ this._onFinish();
41
+ this._players.forEach(player => player.finish());
42
+ }
43
+ destroy() {
44
+ this._onFinish();
45
+ this._players.forEach(player => player.destroy());
46
+ }
47
+ reset() { this._players.forEach(player => player.reset()); }
48
+ setPosition(p /** TODO #9100 */) {
49
+ this._players.forEach(player => { player.setPosition(p); });
50
+ }
51
+ getPosition() {
52
+ var min = 0;
53
+ this._players.forEach(player => {
54
+ var p = player.getPosition();
55
+ min = Math.min(p, min);
56
+ });
57
+ return min;
58
+ }
59
+ }
60
+ //# sourceMappingURL=animation_group_player.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"animation_group_player.js","sourceRoot":"","sources":["../../../../../../modules/@angular/core/src/animation/animation_group_player.ts"],"names":[],"mappings":"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","sourcesContent":["import {isPresent, scheduleMicroTask} from '../facade/lang';\nimport {Math} from '../facade/math';\n\nimport {AnimationPlayer} from './animation_player';\n\nexport class AnimationGroupPlayer implements AnimationPlayer {\n private _subscriptions: Function[] = [];\n private _finished = false;\n public parentPlayer: AnimationPlayer = null;\n\n constructor(private _players: AnimationPlayer[]) {\n var count = 0;\n var total = this._players.length;\n if (total == 0) {\n scheduleMicroTask(() => this._onFinish());\n } else {\n this._players.forEach(player => {\n player.parentPlayer = this;\n player.onDone(() => {\n if (++count >= total) {\n this._onFinish();\n }\n });\n });\n }\n }\n\n private _onFinish() {\n if (!this._finished) {\n this._finished = true;\n if (!isPresent(this.parentPlayer)) {\n this.destroy();\n }\n this._subscriptions.forEach(subscription => subscription());\n this._subscriptions = [];\n }\n }\n\n onDone(fn: Function): void { this._subscriptions.push(fn); }\n\n play() { this._players.forEach(player => player.play()); }\n\n pause(): void { this._players.forEach(player => player.pause()); }\n\n restart(): void { this._players.forEach(player => player.restart()); }\n\n finish(): void {\n this._onFinish();\n this._players.forEach(player => player.finish());\n }\n\n destroy(): void {\n this._onFinish();\n this._players.forEach(player => player.destroy());\n }\n\n reset(): void { this._players.forEach(player => player.reset()); }\n\n setPosition(p: any /** TODO #9100 */): void {\n this._players.forEach(player => { player.setPosition(p); });\n }\n\n getPosition(): number {\n var min = 0;\n this._players.forEach(player => {\n var p = player.getPosition();\n min = Math.min(p, min);\n });\n return min;\n }\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
@@ -0,0 +1,6 @@
1
+ import { AnimationStyles } from './animation_styles';
2
+ export declare class AnimationKeyframe {
3
+ offset: number;
4
+ styles: AnimationStyles;
5
+ constructor(offset: number, styles: AnimationStyles);
6
+ }
@@ -0,0 +1,7 @@
1
+ export class AnimationKeyframe {
2
+ constructor(offset, styles) {
3
+ this.offset = offset;
4
+ this.styles = styles;
5
+ }
6
+ }
7
+ //# sourceMappingURL=animation_keyframe.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"animation_keyframe.js","sourceRoot":"","sources":["../../../../../../modules/@angular/core/src/animation/animation_keyframe.ts"],"names":[],"mappings":"AAEA;IACE,YAAmB,MAAc,EAAS,MAAuB;QAA9C,WAAM,GAAN,MAAM,CAAQ;QAAS,WAAM,GAAN,MAAM,CAAiB;IAAG,CAAC;AACvE,CAAC;AAAA","sourcesContent":["import {AnimationStyles} from './animation_styles';\n\nexport class AnimationKeyframe {\n constructor(public offset: number, public styles: AnimationStyles) {}\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
@@ -0,0 +1,26 @@
1
+ export declare abstract class AnimationPlayer {
2
+ abstract onDone(fn: Function): void;
3
+ abstract play(): void;
4
+ abstract pause(): void;
5
+ abstract restart(): void;
6
+ abstract finish(): void;
7
+ abstract destroy(): void;
8
+ abstract reset(): void;
9
+ abstract setPosition(p: any): void;
10
+ abstract getPosition(): number;
11
+ parentPlayer: AnimationPlayer;
12
+ }
13
+ export declare class NoOpAnimationPlayer implements AnimationPlayer {
14
+ private _subscriptions;
15
+ parentPlayer: AnimationPlayer;
16
+ constructor();
17
+ onDone(fn: Function): void;
18
+ play(): void;
19
+ pause(): void;
20
+ restart(): void;
21
+ finish(): void;
22
+ destroy(): void;
23
+ reset(): void;
24
+ setPosition(p: any): void;
25
+ getPosition(): number;
26
+ }
@@ -0,0 +1,30 @@
1
+ import { BaseException } from '../facade/exceptions';
2
+ import { scheduleMicroTask } from '../facade/lang';
3
+ export class AnimationPlayer {
4
+ get parentPlayer() { throw new BaseException('NOT IMPLEMENTED: Base Class'); }
5
+ set parentPlayer(player) {
6
+ throw new BaseException('NOT IMPLEMENTED: Base Class');
7
+ }
8
+ }
9
+ export class NoOpAnimationPlayer {
10
+ constructor() {
11
+ this._subscriptions = [];
12
+ this.parentPlayer = null;
13
+ scheduleMicroTask(() => this._onFinish());
14
+ }
15
+ /** @internal */
16
+ _onFinish() {
17
+ this._subscriptions.forEach(entry => { entry(); });
18
+ this._subscriptions = [];
19
+ }
20
+ onDone(fn) { this._subscriptions.push(fn); }
21
+ play() { }
22
+ pause() { }
23
+ restart() { }
24
+ finish() { this._onFinish(); }
25
+ destroy() { }
26
+ reset() { }
27
+ setPosition(p /** TODO #9100 */) { }
28
+ getPosition() { return 0; }
29
+ }
30
+ //# sourceMappingURL=animation_player.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"animation_player.js","sourceRoot":"","sources":["../../../../../../modules/@angular/core/src/animation/animation_player.ts"],"names":[],"mappings":"OAAO,EAAC,aAAa,EAAC,MAAM,sBAAsB;OAC3C,EAAC,iBAAiB,EAAC,MAAM,gBAAgB;AAEhD;IAUE,IAAI,YAAY,KAAsB,MAAM,IAAI,aAAa,CAAC,6BAA6B,CAAC,CAAC,CAAC,CAAC;IAC/F,IAAI,YAAY,CAAC,MAAuB;QACtC,MAAM,IAAI,aAAa,CAAC,6BAA6B,CAAC,CAAC;IACzD,CAAC;AACH,CAAC;AAED;IAGE;QAFQ,mBAAc,GAA4B,EAAE,CAAC;QAC9C,iBAAY,GAAoB,IAAI,CAAC;QAC5B,iBAAiB,CAAC,MAAM,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;IAAC,CAAC;IAC5D,gBAAgB;IAChB,SAAS;QACP,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,KAAK,MAAM,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QACnD,IAAI,CAAC,cAAc,GAAG,EAAE,CAAC;IAC3B,CAAC;IACD,MAAM,CAAC,EAAY,IAAU,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;IAC5D,IAAI,KAAU,CAAC;IACf,KAAK,KAAU,CAAC;IAChB,OAAO,KAAU,CAAC;IAClB,MAAM,KAAW,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;IACpC,OAAO,KAAU,CAAC;IAClB,KAAK,KAAU,CAAC;IAChB,WAAW,CAAC,CAAM,CAAC,iBAAiB,IAAS,CAAC;IAC9C,WAAW,KAAa,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;AACrC,CAAC;AAAA","sourcesContent":["import {BaseException} from '../facade/exceptions';\nimport {scheduleMicroTask} from '../facade/lang';\n\nexport abstract class AnimationPlayer {\n abstract onDone(fn: Function): void;\n abstract play(): void;\n abstract pause(): void;\n abstract restart(): void;\n abstract finish(): void;\n abstract destroy(): void;\n abstract reset(): void;\n abstract setPosition(p: any /** TODO #9100 */): void;\n abstract getPosition(): number;\n get parentPlayer(): AnimationPlayer { throw new BaseException('NOT IMPLEMENTED: Base Class'); }\n set parentPlayer(player: AnimationPlayer) {\n throw new BaseException('NOT IMPLEMENTED: Base Class');\n }\n}\n\nexport class NoOpAnimationPlayer implements AnimationPlayer {\n private _subscriptions: any[] /** TODO #9100 */ = [];\n public parentPlayer: AnimationPlayer = null;\n constructor() { scheduleMicroTask(() => this._onFinish()); }\n /** @internal */\n _onFinish() {\n this._subscriptions.forEach(entry => { entry(); });\n this._subscriptions = [];\n }\n onDone(fn: Function): void { this._subscriptions.push(fn); }\n play(): void {}\n pause(): void {}\n restart(): void {}\n finish(): void { this._onFinish(); }\n destroy(): void {}\n reset(): void {}\n setPosition(p: any /** TODO #9100 */): void {}\n getPosition(): number { return 0; }\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}