@angular/core 16.0.0-next.3 → 16.0.0-next.5

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 (375) hide show
  1. package/{esm2020 → esm2022}/src/application_init.mjs +3 -3
  2. package/{esm2020 → esm2022}/src/application_module.mjs +4 -4
  3. package/esm2022/src/application_ref.mjs +908 -0
  4. package/esm2022/src/application_tokens.mjs +105 -0
  5. package/esm2022/src/change_detection/change_detector_ref.mjs +93 -0
  6. package/esm2022/src/change_detection/differs/iterable_differs.mjs +81 -0
  7. package/esm2022/src/change_detection/differs/keyvalue_differs.mjs +74 -0
  8. package/esm2022/src/compiler/compiler_facade_interface.mjs +29 -0
  9. package/{esm2020 → esm2022}/src/console.mjs +3 -3
  10. package/esm2022/src/core.mjs +56 -0
  11. package/esm2022/src/core_private_export.mjs +39 -0
  12. package/esm2022/src/core_reactivity_export_internal.mjs +12 -0
  13. package/esm2022/src/core_render3_private_export.mjs +37 -0
  14. package/esm2022/src/di/contextual.mjs +54 -0
  15. package/esm2022/src/di/index.mjs +29 -0
  16. package/esm2022/src/di/injector.mjs +62 -0
  17. package/esm2022/src/di/injector_compatibility.mjs +239 -0
  18. package/esm2022/src/di/provider_collection.mjs +279 -0
  19. package/esm2022/src/di/r3_injector.mjs +428 -0
  20. package/esm2022/src/di/reflective_injector.mjs +311 -0
  21. package/{esm2020 → esm2022}/src/errors.mjs +1 -1
  22. package/esm2022/src/hydration/annotate.mjs +426 -0
  23. package/esm2022/src/hydration/api.mjs +143 -0
  24. package/esm2022/src/hydration/cleanup.mjs +103 -0
  25. package/esm2022/src/hydration/compression.mjs +69 -0
  26. package/esm2022/src/hydration/error_handling.mjs +379 -0
  27. package/esm2022/src/hydration/interfaces.mjs +33 -0
  28. package/esm2022/src/hydration/node_lookup_utils.mjs +273 -0
  29. package/esm2022/src/hydration/utils.mjs +219 -0
  30. package/esm2022/src/hydration/views.mjs +84 -0
  31. package/esm2022/src/initial_render_pending_tasks.mjs +75 -0
  32. package/{esm2020 → esm2022}/src/linker/compiler.mjs +5 -5
  33. package/esm2022/src/linker/component_factory_resolver.mjs +42 -0
  34. package/esm2022/src/linker/destroy_ref.mjs +44 -0
  35. package/{esm2020 → esm2022}/src/linker/element_ref.mjs +6 -6
  36. package/esm2022/src/linker/query_list.mjs +169 -0
  37. package/{esm2020 → esm2022}/src/linker/template_ref.mjs +6 -6
  38. package/esm2022/src/linker/view_container_ref.mjs +395 -0
  39. package/esm2022/src/metadata/di.mjs +69 -0
  40. package/esm2022/src/metadata/directives.mjs +116 -0
  41. package/{esm2020 → esm2022}/src/metadata/do_boostrap.mjs +1 -1
  42. package/{esm2020 → esm2022}/src/metadata/ng_module.mjs +2 -2
  43. package/esm2022/src/metadata.mjs +18 -0
  44. package/{esm2020 → esm2022}/src/render/api.mjs +6 -6
  45. package/esm2022/src/render3/component_ref.mjs +386 -0
  46. package/{esm2020 → esm2022}/src/render3/context_discovery.mjs +1 -1
  47. package/esm2022/src/render3/features/standalone_feature.mjs +70 -0
  48. package/esm2022/src/render3/instructions/element.mjs +205 -0
  49. package/{esm2020 → esm2022}/src/render3/instructions/element_container.mjs +2 -5
  50. package/esm2022/src/render3/instructions/element_validation.mjs +271 -0
  51. package/esm2022/src/render3/instructions/listener.mjs +244 -0
  52. package/esm2022/src/render3/instructions/mark_view_dirty.mjs +35 -0
  53. package/esm2022/src/render3/instructions/projection.mjs +121 -0
  54. package/esm2022/src/render3/instructions/shared.mjs +1681 -0
  55. package/{esm2020 → esm2022}/src/render3/instructions/styling.mjs +5 -2
  56. package/esm2022/src/render3/instructions/template.mjs +117 -0
  57. package/esm2022/src/render3/instructions/text.mjs +67 -0
  58. package/esm2022/src/render3/interfaces/public_definitions.mjs +9 -0
  59. package/esm2022/src/render3/interfaces/type_checks.mjs +42 -0
  60. package/esm2022/src/render3/interfaces/view.mjs +49 -0
  61. package/esm2022/src/render3/jit/module.mjs +531 -0
  62. package/esm2022/src/render3/node_manipulation.mjs +960 -0
  63. package/esm2022/src/render3/node_selector_matcher.mjs +426 -0
  64. package/esm2022/src/render3/reactive_lview_consumer.mjs +80 -0
  65. package/esm2022/src/render3/reactivity/effect.mjs +67 -0
  66. package/{esm2020 → esm2022}/src/render3/util/change_detection_utils.mjs +2 -2
  67. package/{esm2020 → esm2022}/src/render3/util/view_utils.mjs +12 -1
  68. package/esm2022/src/render3/view_ref.mjs +307 -0
  69. package/{esm2020 → esm2022}/src/sanitization/sanitizer.mjs +7 -7
  70. package/esm2022/src/signals/index.mjs +15 -0
  71. package/esm2022/src/signals/src/api.mjs +47 -0
  72. package/esm2022/src/signals/src/computed.mjs +139 -0
  73. package/esm2022/src/signals/src/graph.mjs +165 -0
  74. package/esm2022/src/signals/src/signal.mjs +75 -0
  75. package/esm2022/src/signals/src/watch.mjs +62 -0
  76. package/esm2022/src/signals/src/weak_ref.mjs +35 -0
  77. package/{esm2020 → esm2022}/src/testability/testability.mjs +5 -5
  78. package/esm2022/src/transfer_state.mjs +153 -0
  79. package/esm2022/src/util/ng_dev_mode.mjs +79 -0
  80. package/{esm2020 → esm2022}/src/version.mjs +1 -1
  81. package/{esm2020 → esm2022}/testing/src/logger.mjs +4 -4
  82. package/{esm2020 → esm2022}/testing/src/ng_zone_mock.mjs +4 -4
  83. package/{esm2020 → esm2022}/testing/src/test_bed.mjs +2 -2
  84. package/esm2022/testing/src/test_bed_compiler.mjs +846 -0
  85. package/{fesm2020 → fesm2022}/core.mjs +1890 -779
  86. package/fesm2022/core.mjs.map +1 -0
  87. package/{fesm2020 → fesm2022}/testing.mjs +1203 -178
  88. package/fesm2022/testing.mjs.map +1 -0
  89. package/index.d.ts +453 -394
  90. package/package.json +8 -16
  91. package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +694 -0
  92. package/schematics/migrations/guard-and-resolve-interfaces/bundle.js.map +7 -0
  93. package/schematics/migrations/{router-link-with-href → remove-module-id}/bundle.js +153 -155
  94. package/schematics/migrations/remove-module-id/bundle.js.map +7 -0
  95. package/schematics/migrations.json +8 -8
  96. package/schematics/ng-generate/standalone-migration/bundle.js +1082 -619
  97. package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
  98. package/testing/index.d.ts +1 -1
  99. package/esm2020/src/application_ref.mjs +0 -907
  100. package/esm2020/src/application_tokens.mjs +0 -73
  101. package/esm2020/src/change_detection/change_detector_ref.mjs +0 -93
  102. package/esm2020/src/change_detection/differs/iterable_differs.mjs +0 -81
  103. package/esm2020/src/change_detection/differs/keyvalue_differs.mjs +0 -74
  104. package/esm2020/src/compiler/compiler_facade_interface.mjs +0 -29
  105. package/esm2020/src/core.mjs +0 -55
  106. package/esm2020/src/core_private_export.mjs +0 -37
  107. package/esm2020/src/core_reactivity_export_internal.mjs +0 -9
  108. package/esm2020/src/core_render3_private_export.mjs +0 -38
  109. package/esm2020/src/di/contextual.mjs +0 -37
  110. package/esm2020/src/di/index.mjs +0 -29
  111. package/esm2020/src/di/injector.mjs +0 -62
  112. package/esm2020/src/di/injector_compatibility.mjs +0 -236
  113. package/esm2020/src/di/provider_collection.mjs +0 -279
  114. package/esm2020/src/di/r3_injector.mjs +0 -421
  115. package/esm2020/src/di/reflective_injector.mjs +0 -311
  116. package/esm2020/src/hydration/annotate.mjs +0 -271
  117. package/esm2020/src/hydration/api.mjs +0 -128
  118. package/esm2020/src/hydration/cleanup.mjs +0 -50
  119. package/esm2020/src/hydration/error_handling.mjs +0 -37
  120. package/esm2020/src/hydration/interfaces.mjs +0 -17
  121. package/esm2020/src/hydration/node_lookup_utils.mjs +0 -83
  122. package/esm2020/src/hydration/utils.mjs +0 -206
  123. package/esm2020/src/hydration/views.mjs +0 -80
  124. package/esm2020/src/linker/component_factory_resolver.mjs +0 -42
  125. package/esm2020/src/linker/destroy_ref.mjs +0 -41
  126. package/esm2020/src/linker/query_list.mjs +0 -169
  127. package/esm2020/src/linker/view_container_ref.mjs +0 -394
  128. package/esm2020/src/metadata/di.mjs +0 -108
  129. package/esm2020/src/metadata/directives.mjs +0 -111
  130. package/esm2020/src/metadata.mjs +0 -18
  131. package/esm2020/src/render3/component_ref.mjs +0 -377
  132. package/esm2020/src/render3/features/standalone_feature.mjs +0 -70
  133. package/esm2020/src/render3/instructions/element.mjs +0 -198
  134. package/esm2020/src/render3/instructions/element_validation.mjs +0 -271
  135. package/esm2020/src/render3/instructions/listener.mjs +0 -243
  136. package/esm2020/src/render3/instructions/projection.mjs +0 -118
  137. package/esm2020/src/render3/instructions/shared.mjs +0 -1696
  138. package/esm2020/src/render3/instructions/template.mjs +0 -120
  139. package/esm2020/src/render3/instructions/text.mjs +0 -67
  140. package/esm2020/src/render3/interfaces/public_definitions.mjs +0 -9
  141. package/esm2020/src/render3/interfaces/type_checks.mjs +0 -39
  142. package/esm2020/src/render3/interfaces/view.mjs +0 -47
  143. package/esm2020/src/render3/jit/module.mjs +0 -544
  144. package/esm2020/src/render3/node_manipulation.mjs +0 -961
  145. package/esm2020/src/render3/node_selector_matcher.mjs +0 -414
  146. package/esm2020/src/render3/view_ref.mjs +0 -306
  147. package/esm2020/src/signals/index.mjs +0 -15
  148. package/esm2020/src/signals/src/api.mjs +0 -46
  149. package/esm2020/src/signals/src/computed.mjs +0 -142
  150. package/esm2020/src/signals/src/effect.mjs +0 -69
  151. package/esm2020/src/signals/src/graph.mjs +0 -114
  152. package/esm2020/src/signals/src/signal.mjs +0 -78
  153. package/esm2020/src/signals/src/watch.mjs +0 -54
  154. package/esm2020/src/signals/src/weak_ref.mjs +0 -11
  155. package/esm2020/src/transfer_state.mjs +0 -153
  156. package/esm2020/src/util/ng_dev_mode.mjs +0 -78
  157. package/esm2020/testing/src/test_bed_compiler.mjs +0 -841
  158. package/fesm2015/core.mjs +0 -29585
  159. package/fesm2015/core.mjs.map +0 -1
  160. package/fesm2015/testing.mjs +0 -25669
  161. package/fesm2015/testing.mjs.map +0 -1
  162. package/fesm2020/core.mjs.map +0 -1
  163. package/fesm2020/testing.mjs.map +0 -1
  164. package/schematics/migrations/relative-link-resolution/bundle.js +0 -283
  165. package/schematics/migrations/relative-link-resolution/bundle.js.map +0 -7
  166. package/schematics/migrations/router-link-with-href/bundle.js.map +0 -7
  167. /package/{esm2020 → esm2022}/core.mjs +0 -0
  168. /package/{esm2020 → esm2022}/index.mjs +0 -0
  169. /package/{esm2020 → esm2022}/public_api.mjs +0 -0
  170. /package/{esm2020 → esm2022}/src/application_config.mjs +0 -0
  171. /package/{esm2020 → esm2022}/src/change_detection/change_detection.mjs +0 -0
  172. /package/{esm2020 → esm2022}/src/change_detection/constants.mjs +0 -0
  173. /package/{esm2020 → esm2022}/src/change_detection/differs/default_iterable_differ.mjs +0 -0
  174. /package/{esm2020 → esm2022}/src/change_detection/differs/default_keyvalue_differ.mjs +0 -0
  175. /package/{esm2020 → esm2022}/src/change_detection/pipe_transform.mjs +0 -0
  176. /package/{esm2020 → esm2022}/src/change_detection.mjs +0 -0
  177. /package/{esm2020 → esm2022}/src/compiler/compiler_facade.mjs +0 -0
  178. /package/{esm2020 → esm2022}/src/core_reactivity_export.mjs +0 -0
  179. /package/{esm2020 → esm2022}/src/debug/debug_node.mjs +0 -0
  180. /package/{esm2020 → esm2022}/src/di/create_injector.mjs +0 -0
  181. /package/{esm2020 → esm2022}/src/di/forward_ref.mjs +0 -0
  182. /package/{esm2020 → esm2022}/src/di/initializer_token.mjs +0 -0
  183. /package/{esm2020 → esm2022}/src/di/inject_switch.mjs +0 -0
  184. /package/{esm2020 → esm2022}/src/di/injectable.mjs +0 -0
  185. /package/{esm2020 → esm2022}/src/di/injection_token.mjs +0 -0
  186. /package/{esm2020 → esm2022}/src/di/injector_marker.mjs +0 -0
  187. /package/{esm2020 → esm2022}/src/di/injector_token.mjs +0 -0
  188. /package/{esm2020 → esm2022}/src/di/interface/defs.mjs +0 -0
  189. /package/{esm2020 → esm2022}/src/di/interface/injector.mjs +0 -0
  190. /package/{esm2020 → esm2022}/src/di/interface/provider.mjs +0 -0
  191. /package/{esm2020 → esm2022}/src/di/internal_tokens.mjs +0 -0
  192. /package/{esm2020 → esm2022}/src/di/jit/environment.mjs +0 -0
  193. /package/{esm2020 → esm2022}/src/di/jit/injectable.mjs +0 -0
  194. /package/{esm2020 → esm2022}/src/di/jit/util.mjs +0 -0
  195. /package/{esm2020 → esm2022}/src/di/metadata.mjs +0 -0
  196. /package/{esm2020 → esm2022}/src/di/metadata_attr.mjs +0 -0
  197. /package/{esm2020 → esm2022}/src/di/null_injector.mjs +0 -0
  198. /package/{esm2020 → esm2022}/src/di/provider_token.mjs +0 -0
  199. /package/{esm2020 → esm2022}/src/di/reflective_errors.mjs +0 -0
  200. /package/{esm2020 → esm2022}/src/di/reflective_key.mjs +0 -0
  201. /package/{esm2020 → esm2022}/src/di/reflective_provider.mjs +0 -0
  202. /package/{esm2020 → esm2022}/src/di/scope.mjs +0 -0
  203. /package/{esm2020 → esm2022}/src/di.mjs +0 -0
  204. /package/{esm2020 → esm2022}/src/error_details_base_url.mjs +0 -0
  205. /package/{esm2020 → esm2022}/src/error_handler.mjs +0 -0
  206. /package/{esm2020 → esm2022}/src/event_emitter.mjs +0 -0
  207. /package/{esm2020 → esm2022}/src/hydration/skip_hydration.mjs +0 -0
  208. /package/{esm2020 → esm2022}/src/hydration/tokens.mjs +0 -0
  209. /package/{esm2020 → esm2022}/src/i18n/locale_data_api.mjs +0 -0
  210. /package/{esm2020 → esm2022}/src/i18n/locale_en.mjs +0 -0
  211. /package/{esm2020 → esm2022}/src/i18n/localization.mjs +0 -0
  212. /package/{esm2020 → esm2022}/src/i18n/tokens.mjs +0 -0
  213. /package/{esm2020 → esm2022}/src/interface/lifecycle_hooks.mjs +0 -0
  214. /package/{esm2020 → esm2022}/src/interface/simple_change.mjs +0 -0
  215. /package/{esm2020 → esm2022}/src/interface/type.mjs +0 -0
  216. /package/{esm2020 → esm2022}/src/linker/component_factory.mjs +0 -0
  217. /package/{esm2020 → esm2022}/src/linker/ng_module_factory.mjs +0 -0
  218. /package/{esm2020 → esm2022}/src/linker/ng_module_factory_loader.mjs +0 -0
  219. /package/{esm2020 → esm2022}/src/linker/ng_module_factory_loader_impl.mjs +0 -0
  220. /package/{esm2020 → esm2022}/src/linker/ng_module_registration.mjs +0 -0
  221. /package/{esm2020 → esm2022}/src/linker/view_ref.mjs +0 -0
  222. /package/{esm2020 → esm2022}/src/linker.mjs +0 -0
  223. /package/{esm2020 → esm2022}/src/metadata/ng_module_def.mjs +0 -0
  224. /package/{esm2020 → esm2022}/src/metadata/resource_loading.mjs +0 -0
  225. /package/{esm2020 → esm2022}/src/metadata/schema.mjs +0 -0
  226. /package/{esm2020 → esm2022}/src/metadata/view.mjs +0 -0
  227. /package/{esm2020 → esm2022}/src/platform_core_providers.mjs +0 -0
  228. /package/{esm2020 → esm2022}/src/r3_symbols.mjs +0 -0
  229. /package/{esm2020 → esm2022}/src/reflection/platform_reflection_capabilities.mjs +0 -0
  230. /package/{esm2020 → esm2022}/src/reflection/reflection_capabilities.mjs +0 -0
  231. /package/{esm2020 → esm2022}/src/render/api_flags.mjs +0 -0
  232. /package/{esm2020 → esm2022}/src/render.mjs +0 -0
  233. /package/{esm2020 → esm2022}/src/render3/assert.mjs +0 -0
  234. /package/{esm2020 → esm2022}/src/render3/bindings.mjs +0 -0
  235. /package/{esm2020 → esm2022}/src/render3/collect_native_nodes.mjs +0 -0
  236. /package/{esm2020 → esm2022}/src/render3/component.mjs +0 -0
  237. /package/{esm2020 → esm2022}/src/render3/definition.mjs +0 -0
  238. /package/{esm2020 → esm2022}/src/render3/definition_factory.mjs +0 -0
  239. /package/{esm2020 → esm2022}/src/render3/di.mjs +0 -0
  240. /package/{esm2020 → esm2022}/src/render3/di_setup.mjs +0 -0
  241. /package/{esm2020 → esm2022}/src/render3/errors.mjs +0 -0
  242. /package/{esm2020 → esm2022}/src/render3/errors_di.mjs +0 -0
  243. /package/{esm2020 → esm2022}/src/render3/features/copy_definition_feature.mjs +0 -0
  244. /package/{esm2020 → esm2022}/src/render3/features/host_directives_feature.mjs +0 -0
  245. /package/{esm2020 → esm2022}/src/render3/features/inherit_definition_feature.mjs +0 -0
  246. /package/{esm2020 → esm2022}/src/render3/features/ng_onchanges_feature.mjs +0 -0
  247. /package/{esm2020 → esm2022}/src/render3/features/providers_feature.mjs +0 -0
  248. /package/{esm2020 → esm2022}/src/render3/fields.mjs +0 -0
  249. /package/{esm2020 → esm2022}/src/render3/global_utils_api.mjs +0 -0
  250. /package/{esm2020 → esm2022}/src/render3/hooks.mjs +0 -0
  251. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_apply.mjs +0 -0
  252. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_debug.mjs +0 -0
  253. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_insert_before_index.mjs +0 -0
  254. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_locale_id.mjs +0 -0
  255. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_parse.mjs +0 -0
  256. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_postprocess.mjs +0 -0
  257. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_tree_shaking.mjs +0 -0
  258. /package/{esm2020 → esm2022}/src/render3/i18n/i18n_util.mjs +0 -0
  259. /package/{esm2020 → esm2022}/src/render3/index.mjs +0 -0
  260. /package/{esm2020 → esm2022}/src/render3/instructions/advance.mjs +0 -0
  261. /package/{esm2020 → esm2022}/src/render3/instructions/all.mjs +0 -0
  262. /package/{esm2020 → esm2022}/src/render3/instructions/attribute.mjs +0 -0
  263. /package/{esm2020 → esm2022}/src/render3/instructions/attribute_interpolation.mjs +0 -0
  264. /package/{esm2020 → esm2022}/src/render3/instructions/change_detection.mjs +0 -0
  265. /package/{esm2020 → esm2022}/src/render3/instructions/class_map_interpolation.mjs +0 -0
  266. /package/{esm2020 → esm2022}/src/render3/instructions/di.mjs +0 -0
  267. /package/{esm2020 → esm2022}/src/render3/instructions/di_attr.mjs +0 -0
  268. /package/{esm2020 → esm2022}/src/render3/instructions/get_current_view.mjs +0 -0
  269. /package/{esm2020 → esm2022}/src/render3/instructions/host_property.mjs +0 -0
  270. /package/{esm2020 → esm2022}/src/render3/instructions/i18n.mjs +0 -0
  271. /package/{esm2020 → esm2022}/src/render3/instructions/i18n_icu_container_visitor.mjs +0 -0
  272. /package/{esm2020 → esm2022}/src/render3/instructions/interpolation.mjs +0 -0
  273. /package/{esm2020 → esm2022}/src/render3/instructions/namespace.mjs +0 -0
  274. /package/{esm2020 → esm2022}/src/render3/instructions/next_context.mjs +0 -0
  275. /package/{esm2020 → esm2022}/src/render3/instructions/property.mjs +0 -0
  276. /package/{esm2020 → esm2022}/src/render3/instructions/property_interpolation.mjs +0 -0
  277. /package/{esm2020 → esm2022}/src/render3/instructions/storage.mjs +0 -0
  278. /package/{esm2020 → esm2022}/src/render3/instructions/style_map_interpolation.mjs +0 -0
  279. /package/{esm2020 → esm2022}/src/render3/instructions/style_prop_interpolation.mjs +0 -0
  280. /package/{esm2020 → esm2022}/src/render3/instructions/text_interpolation.mjs +0 -0
  281. /package/{esm2020 → esm2022}/src/render3/interfaces/container.mjs +0 -0
  282. /package/{esm2020 → esm2022}/src/render3/interfaces/context.mjs +0 -0
  283. /package/{esm2020 → esm2022}/src/render3/interfaces/definition.mjs +0 -0
  284. /package/{esm2020 → esm2022}/src/render3/interfaces/document.mjs +0 -0
  285. /package/{esm2020 → esm2022}/src/render3/interfaces/i18n.mjs +0 -0
  286. /package/{esm2020 → esm2022}/src/render3/interfaces/injector.mjs +0 -0
  287. /package/{esm2020 → esm2022}/src/render3/interfaces/lview_tracking.mjs +0 -0
  288. /package/{esm2020 → esm2022}/src/render3/interfaces/node.mjs +0 -0
  289. /package/{esm2020 → esm2022}/src/render3/interfaces/projection.mjs +0 -0
  290. /package/{esm2020 → esm2022}/src/render3/interfaces/query.mjs +0 -0
  291. /package/{esm2020 → esm2022}/src/render3/interfaces/renderer.mjs +0 -0
  292. /package/{esm2020 → esm2022}/src/render3/interfaces/renderer_dom.mjs +0 -0
  293. /package/{esm2020 → esm2022}/src/render3/interfaces/sanitization.mjs +0 -0
  294. /package/{esm2020 → esm2022}/src/render3/interfaces/styling.mjs +0 -0
  295. /package/{esm2020 → esm2022}/src/render3/jit/directive.mjs +0 -0
  296. /package/{esm2020 → esm2022}/src/render3/jit/environment.mjs +0 -0
  297. /package/{esm2020 → esm2022}/src/render3/jit/jit_options.mjs +0 -0
  298. /package/{esm2020 → esm2022}/src/render3/jit/module_patch.mjs +0 -0
  299. /package/{esm2020 → esm2022}/src/render3/jit/partial.mjs +0 -0
  300. /package/{esm2020 → esm2022}/src/render3/jit/pipe.mjs +0 -0
  301. /package/{esm2020 → esm2022}/src/render3/jit/util.mjs +0 -0
  302. /package/{esm2020 → esm2022}/src/render3/metadata.mjs +0 -0
  303. /package/{esm2020 → esm2022}/src/render3/namespaces.mjs +0 -0
  304. /package/{esm2020 → esm2022}/src/render3/ng_module_ref.mjs +0 -0
  305. /package/{esm2020 → esm2022}/src/render3/node_assert.mjs +0 -0
  306. /package/{esm2020 → esm2022}/src/render3/node_manipulation_i18n.mjs +0 -0
  307. /package/{esm2020 → esm2022}/src/render3/pipe.mjs +0 -0
  308. /package/{esm2020 → esm2022}/src/render3/profiler.mjs +0 -0
  309. /package/{esm2020 → esm2022}/src/render3/pure_function.mjs +0 -0
  310. /package/{esm2020 → esm2022}/src/render3/query.mjs +0 -0
  311. /package/{esm2020 → esm2022}/src/render3/state.mjs +0 -0
  312. /package/{esm2020 → esm2022}/src/render3/styling/class_differ.mjs +0 -0
  313. /package/{esm2020 → esm2022}/src/render3/styling/static_styling.mjs +0 -0
  314. /package/{esm2020 → esm2022}/src/render3/styling/style_binding_list.mjs +0 -0
  315. /package/{esm2020 → esm2022}/src/render3/styling/styling_parser.mjs +0 -0
  316. /package/{esm2020 → esm2022}/src/render3/tokens.mjs +0 -0
  317. /package/{esm2020 → esm2022}/src/render3/util/attrs_utils.mjs +0 -0
  318. /package/{esm2020 → esm2022}/src/render3/util/discovery_utils.mjs +0 -0
  319. /package/{esm2020 → esm2022}/src/render3/util/global_utils.mjs +0 -0
  320. /package/{esm2020 → esm2022}/src/render3/util/injector_utils.mjs +0 -0
  321. /package/{esm2020 → esm2022}/src/render3/util/misc_utils.mjs +0 -0
  322. /package/{esm2020 → esm2022}/src/render3/util/stringify_utils.mjs +0 -0
  323. /package/{esm2020 → esm2022}/src/render3/util/view_traversal_utils.mjs +0 -0
  324. /package/{esm2020 → esm2022}/src/render3/view_engine_compatibility_prebound.mjs +0 -0
  325. /package/{esm2020 → esm2022}/src/sanitization/bypass.mjs +0 -0
  326. /package/{esm2020 → esm2022}/src/sanitization/html_sanitizer.mjs +0 -0
  327. /package/{esm2020 → esm2022}/src/sanitization/iframe_attrs_validation.mjs +0 -0
  328. /package/{esm2020 → esm2022}/src/sanitization/inert_body.mjs +0 -0
  329. /package/{esm2020 → esm2022}/src/sanitization/sanitization.mjs +0 -0
  330. /package/{esm2020 → esm2022}/src/sanitization/security.mjs +0 -0
  331. /package/{esm2020 → esm2022}/src/sanitization/url_sanitizer.mjs +0 -0
  332. /package/{esm2020 → esm2022}/src/signals/src/untracked.mjs +0 -0
  333. /package/{esm2020 → esm2022}/src/util/array_utils.mjs +0 -0
  334. /package/{esm2020 → esm2022}/src/util/assert.mjs +0 -0
  335. /package/{esm2020 → esm2022}/src/util/char_code.mjs +0 -0
  336. /package/{esm2020 → esm2022}/src/util/closure.mjs +0 -0
  337. /package/{esm2020 → esm2022}/src/util/coercion.mjs +0 -0
  338. /package/{esm2020 → esm2022}/src/util/comparison.mjs +0 -0
  339. /package/{esm2020 → esm2022}/src/util/decorators.mjs +0 -0
  340. /package/{esm2020 → esm2022}/src/util/dom.mjs +0 -0
  341. /package/{esm2020 → esm2022}/src/util/empty.mjs +0 -0
  342. /package/{esm2020 → esm2022}/src/util/errors.mjs +0 -0
  343. /package/{esm2020 → esm2022}/src/util/global.mjs +0 -0
  344. /package/{esm2020 → esm2022}/src/util/is_dev_mode.mjs +0 -0
  345. /package/{esm2020 → esm2022}/src/util/iterable.mjs +0 -0
  346. /package/{esm2020 → esm2022}/src/util/lang.mjs +0 -0
  347. /package/{esm2020 → esm2022}/src/util/microtask.mjs +0 -0
  348. /package/{esm2020 → esm2022}/src/util/ng_i18n_closure_mode.mjs +0 -0
  349. /package/{esm2020 → esm2022}/src/util/ng_jit_mode.mjs +0 -0
  350. /package/{esm2020 → esm2022}/src/util/ng_reflect.mjs +0 -0
  351. /package/{esm2020 → esm2022}/src/util/noop.mjs +0 -0
  352. /package/{esm2020 → esm2022}/src/util/property.mjs +0 -0
  353. /package/{esm2020 → esm2022}/src/util/raf.mjs +0 -0
  354. /package/{esm2020 → esm2022}/src/util/security/trusted_type_defs.mjs +0 -0
  355. /package/{esm2020 → esm2022}/src/util/security/trusted_types.mjs +0 -0
  356. /package/{esm2020 → esm2022}/src/util/security/trusted_types_bypass.mjs +0 -0
  357. /package/{esm2020 → esm2022}/src/util/stringify.mjs +0 -0
  358. /package/{esm2020 → esm2022}/src/view/provider_flags.mjs +0 -0
  359. /package/{esm2020 → esm2022}/src/zone/async-stack-tagging.mjs +0 -0
  360. /package/{esm2020 → esm2022}/src/zone/ng_zone.mjs +0 -0
  361. /package/{esm2020 → esm2022}/src/zone.mjs +0 -0
  362. /package/{esm2020 → esm2022}/testing/index.mjs +0 -0
  363. /package/{esm2020 → esm2022}/testing/public_api.mjs +0 -0
  364. /package/{esm2020 → esm2022}/testing/src/async.mjs +0 -0
  365. /package/{esm2020 → esm2022}/testing/src/component_fixture.mjs +0 -0
  366. /package/{esm2020 → esm2022}/testing/src/fake_async.mjs +0 -0
  367. /package/{esm2020 → esm2022}/testing/src/metadata_override.mjs +0 -0
  368. /package/{esm2020 → esm2022}/testing/src/metadata_overrider.mjs +0 -0
  369. /package/{esm2020 → esm2022}/testing/src/resolvers.mjs +0 -0
  370. /package/{esm2020 → esm2022}/testing/src/styling.mjs +0 -0
  371. /package/{esm2020 → esm2022}/testing/src/test_bed_common.mjs +0 -0
  372. /package/{esm2020 → esm2022}/testing/src/test_hooks.mjs +0 -0
  373. /package/{esm2020 → esm2022}/testing/src/testing.mjs +0 -0
  374. /package/{esm2020 → esm2022}/testing/src/testing_internal.mjs +0 -0
  375. /package/{esm2020 → esm2022}/testing/testing.mjs +0 -0
@@ -38,6 +38,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
38
38
  mod
39
39
  ));
40
40
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
41
+ var __publicField = (obj, key, value) => {
42
+ __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
43
+ return value;
44
+ };
41
45
  var __async = (__this, __arguments, generator) => {
42
46
  return new Promise((resolve6, reject) => {
43
47
  var fulfilled = (value) => {
@@ -59,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
59
63
  });
60
64
  };
61
65
 
62
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
66
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
63
67
  var standalone_migration_exports = {};
64
68
  __export(standalone_migration_exports, {
65
69
  default: () => standalone_migration_default
@@ -67,10 +71,10 @@ __export(standalone_migration_exports, {
67
71
  module.exports = __toCommonJS(standalone_migration_exports);
68
72
  var import_schematics = require("@angular-devkit/schematics");
69
73
 
70
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
74
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
71
75
  var import_typescript = __toESM(require("typescript"), 1);
72
76
 
73
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
77
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
74
78
  var InvalidFileSystem = class {
75
79
  exists(path3) {
76
80
  throw makeError();
@@ -158,7 +162,7 @@ function makeError() {
158
162
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
159
163
  }
160
164
 
161
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
165
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
162
166
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
163
167
  function stripExtension(path3) {
164
168
  return path3.replace(TS_DTS_JS_EXTENSION, "");
@@ -171,7 +175,7 @@ function getSourceFileOrError(program, fileName) {
171
175
  return sf;
172
176
  }
173
177
 
174
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
178
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
175
179
  var fs = new InvalidFileSystem();
176
180
  function getFileSystem() {
177
181
  return fs;
@@ -215,7 +219,7 @@ function toRelativeImport(relativePath) {
215
219
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
216
220
  }
217
221
 
218
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
222
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
219
223
  var LogicalProjectPath = {
220
224
  relativePathBetween: function(from, to) {
221
225
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -261,7 +265,7 @@ function isWithinBasePath(base, path3) {
261
265
  return isLocalRelativePath(relative(base, path3));
262
266
  }
263
267
 
264
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
268
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
265
269
  var import_fs = __toESM(require("fs"), 1);
266
270
  var import_module = __toESM(require("module"), 1);
267
271
  var p = __toESM(require("path"), 1);
@@ -369,7 +373,7 @@ function toggleCase(str) {
369
373
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
370
374
  }
371
375
 
372
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
376
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
373
377
  var _SELECTOR_REGEXP = new RegExp(
374
378
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
375
379
  "g"
@@ -677,7 +681,7 @@ var SelectorContext = class {
677
681
  }
678
682
  };
679
683
 
680
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
684
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
681
685
  var emitDistinctChangesOnlyDefaultValue = true;
682
686
  var ViewEncapsulation;
683
687
  (function(ViewEncapsulation2) {
@@ -740,7 +744,7 @@ function parseSelectorToR3Selector(selector) {
740
744
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
741
745
  }
742
746
 
743
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
747
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
744
748
  var BigInteger = class {
745
749
  static zero() {
746
750
  return new BigInteger([0]);
@@ -832,7 +836,7 @@ var BigIntExponentiation = class {
832
836
  }
833
837
  };
834
838
 
835
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
839
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
836
840
  var textEncoder;
837
841
  function digest(message) {
838
842
  return message.id || computeDigest(message);
@@ -1095,7 +1099,7 @@ function wordsToDecimalString(hi, lo) {
1095
1099
  return decimal.toString();
1096
1100
  }
1097
1101
 
1098
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
1102
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
1099
1103
  var TypeModifier;
1100
1104
  (function(TypeModifier2) {
1101
1105
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -1922,7 +1926,7 @@ function serializeTags(tags) {
1922
1926
  return out;
1923
1927
  }
1924
1928
 
1925
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1929
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1926
1930
  var CONSTANT_PREFIX = "_c";
1927
1931
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
1928
1932
  var KEY_CONTEXT = {};
@@ -2090,211 +2094,562 @@ function isLongStringLiteral(expr) {
2090
2094
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
2091
2095
  }
2092
2096
 
2093
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2097
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2094
2098
  var CORE = "@angular/core";
2095
- var Identifiers = class {
2096
- };
2097
- Identifiers.NEW_METHOD = "factory";
2098
- Identifiers.TRANSFORM_METHOD = "transform";
2099
- Identifiers.PATCH_DEPS = "patchedDeps";
2100
- Identifiers.core = { name: null, moduleName: CORE };
2101
- Identifiers.namespaceHTML = { name: "\u0275\u0275namespaceHTML", moduleName: CORE };
2102
- Identifiers.namespaceMathML = { name: "\u0275\u0275namespaceMathML", moduleName: CORE };
2103
- Identifiers.namespaceSVG = { name: "\u0275\u0275namespaceSVG", moduleName: CORE };
2104
- Identifiers.element = { name: "\u0275\u0275element", moduleName: CORE };
2105
- Identifiers.elementStart = { name: "\u0275\u0275elementStart", moduleName: CORE };
2106
- Identifiers.elementEnd = { name: "\u0275\u0275elementEnd", moduleName: CORE };
2107
- Identifiers.advance = { name: "\u0275\u0275advance", moduleName: CORE };
2108
- Identifiers.syntheticHostProperty = { name: "\u0275\u0275syntheticHostProperty", moduleName: CORE };
2109
- Identifiers.syntheticHostListener = { name: "\u0275\u0275syntheticHostListener", moduleName: CORE };
2110
- Identifiers.attribute = { name: "\u0275\u0275attribute", moduleName: CORE };
2111
- Identifiers.attributeInterpolate1 = { name: "\u0275\u0275attributeInterpolate1", moduleName: CORE };
2112
- Identifiers.attributeInterpolate2 = { name: "\u0275\u0275attributeInterpolate2", moduleName: CORE };
2113
- Identifiers.attributeInterpolate3 = { name: "\u0275\u0275attributeInterpolate3", moduleName: CORE };
2114
- Identifiers.attributeInterpolate4 = { name: "\u0275\u0275attributeInterpolate4", moduleName: CORE };
2115
- Identifiers.attributeInterpolate5 = { name: "\u0275\u0275attributeInterpolate5", moduleName: CORE };
2116
- Identifiers.attributeInterpolate6 = { name: "\u0275\u0275attributeInterpolate6", moduleName: CORE };
2117
- Identifiers.attributeInterpolate7 = { name: "\u0275\u0275attributeInterpolate7", moduleName: CORE };
2118
- Identifiers.attributeInterpolate8 = { name: "\u0275\u0275attributeInterpolate8", moduleName: CORE };
2119
- Identifiers.attributeInterpolateV = { name: "\u0275\u0275attributeInterpolateV", moduleName: CORE };
2120
- Identifiers.classProp = { name: "\u0275\u0275classProp", moduleName: CORE };
2121
- Identifiers.elementContainerStart = { name: "\u0275\u0275elementContainerStart", moduleName: CORE };
2122
- Identifiers.elementContainerEnd = { name: "\u0275\u0275elementContainerEnd", moduleName: CORE };
2123
- Identifiers.elementContainer = { name: "\u0275\u0275elementContainer", moduleName: CORE };
2124
- Identifiers.styleMap = { name: "\u0275\u0275styleMap", moduleName: CORE };
2125
- Identifiers.styleMapInterpolate1 = { name: "\u0275\u0275styleMapInterpolate1", moduleName: CORE };
2126
- Identifiers.styleMapInterpolate2 = { name: "\u0275\u0275styleMapInterpolate2", moduleName: CORE };
2127
- Identifiers.styleMapInterpolate3 = { name: "\u0275\u0275styleMapInterpolate3", moduleName: CORE };
2128
- Identifiers.styleMapInterpolate4 = { name: "\u0275\u0275styleMapInterpolate4", moduleName: CORE };
2129
- Identifiers.styleMapInterpolate5 = { name: "\u0275\u0275styleMapInterpolate5", moduleName: CORE };
2130
- Identifiers.styleMapInterpolate6 = { name: "\u0275\u0275styleMapInterpolate6", moduleName: CORE };
2131
- Identifiers.styleMapInterpolate7 = { name: "\u0275\u0275styleMapInterpolate7", moduleName: CORE };
2132
- Identifiers.styleMapInterpolate8 = { name: "\u0275\u0275styleMapInterpolate8", moduleName: CORE };
2133
- Identifiers.styleMapInterpolateV = { name: "\u0275\u0275styleMapInterpolateV", moduleName: CORE };
2134
- Identifiers.classMap = { name: "\u0275\u0275classMap", moduleName: CORE };
2135
- Identifiers.classMapInterpolate1 = { name: "\u0275\u0275classMapInterpolate1", moduleName: CORE };
2136
- Identifiers.classMapInterpolate2 = { name: "\u0275\u0275classMapInterpolate2", moduleName: CORE };
2137
- Identifiers.classMapInterpolate3 = { name: "\u0275\u0275classMapInterpolate3", moduleName: CORE };
2138
- Identifiers.classMapInterpolate4 = { name: "\u0275\u0275classMapInterpolate4", moduleName: CORE };
2139
- Identifiers.classMapInterpolate5 = { name: "\u0275\u0275classMapInterpolate5", moduleName: CORE };
2140
- Identifiers.classMapInterpolate6 = { name: "\u0275\u0275classMapInterpolate6", moduleName: CORE };
2141
- Identifiers.classMapInterpolate7 = { name: "\u0275\u0275classMapInterpolate7", moduleName: CORE };
2142
- Identifiers.classMapInterpolate8 = { name: "\u0275\u0275classMapInterpolate8", moduleName: CORE };
2143
- Identifiers.classMapInterpolateV = { name: "\u0275\u0275classMapInterpolateV", moduleName: CORE };
2144
- Identifiers.styleProp = { name: "\u0275\u0275styleProp", moduleName: CORE };
2145
- Identifiers.stylePropInterpolate1 = { name: "\u0275\u0275stylePropInterpolate1", moduleName: CORE };
2146
- Identifiers.stylePropInterpolate2 = { name: "\u0275\u0275stylePropInterpolate2", moduleName: CORE };
2147
- Identifiers.stylePropInterpolate3 = { name: "\u0275\u0275stylePropInterpolate3", moduleName: CORE };
2148
- Identifiers.stylePropInterpolate4 = { name: "\u0275\u0275stylePropInterpolate4", moduleName: CORE };
2149
- Identifiers.stylePropInterpolate5 = { name: "\u0275\u0275stylePropInterpolate5", moduleName: CORE };
2150
- Identifiers.stylePropInterpolate6 = { name: "\u0275\u0275stylePropInterpolate6", moduleName: CORE };
2151
- Identifiers.stylePropInterpolate7 = { name: "\u0275\u0275stylePropInterpolate7", moduleName: CORE };
2152
- Identifiers.stylePropInterpolate8 = { name: "\u0275\u0275stylePropInterpolate8", moduleName: CORE };
2153
- Identifiers.stylePropInterpolateV = { name: "\u0275\u0275stylePropInterpolateV", moduleName: CORE };
2154
- Identifiers.nextContext = { name: "\u0275\u0275nextContext", moduleName: CORE };
2155
- Identifiers.resetView = { name: "\u0275\u0275resetView", moduleName: CORE };
2156
- Identifiers.templateCreate = { name: "\u0275\u0275template", moduleName: CORE };
2157
- Identifiers.text = { name: "\u0275\u0275text", moduleName: CORE };
2158
- Identifiers.enableBindings = { name: "\u0275\u0275enableBindings", moduleName: CORE };
2159
- Identifiers.disableBindings = { name: "\u0275\u0275disableBindings", moduleName: CORE };
2160
- Identifiers.getCurrentView = { name: "\u0275\u0275getCurrentView", moduleName: CORE };
2161
- Identifiers.textInterpolate = { name: "\u0275\u0275textInterpolate", moduleName: CORE };
2162
- Identifiers.textInterpolate1 = { name: "\u0275\u0275textInterpolate1", moduleName: CORE };
2163
- Identifiers.textInterpolate2 = { name: "\u0275\u0275textInterpolate2", moduleName: CORE };
2164
- Identifiers.textInterpolate3 = { name: "\u0275\u0275textInterpolate3", moduleName: CORE };
2165
- Identifiers.textInterpolate4 = { name: "\u0275\u0275textInterpolate4", moduleName: CORE };
2166
- Identifiers.textInterpolate5 = { name: "\u0275\u0275textInterpolate5", moduleName: CORE };
2167
- Identifiers.textInterpolate6 = { name: "\u0275\u0275textInterpolate6", moduleName: CORE };
2168
- Identifiers.textInterpolate7 = { name: "\u0275\u0275textInterpolate7", moduleName: CORE };
2169
- Identifiers.textInterpolate8 = { name: "\u0275\u0275textInterpolate8", moduleName: CORE };
2170
- Identifiers.textInterpolateV = { name: "\u0275\u0275textInterpolateV", moduleName: CORE };
2171
- Identifiers.restoreView = { name: "\u0275\u0275restoreView", moduleName: CORE };
2172
- Identifiers.pureFunction0 = { name: "\u0275\u0275pureFunction0", moduleName: CORE };
2173
- Identifiers.pureFunction1 = { name: "\u0275\u0275pureFunction1", moduleName: CORE };
2174
- Identifiers.pureFunction2 = { name: "\u0275\u0275pureFunction2", moduleName: CORE };
2175
- Identifiers.pureFunction3 = { name: "\u0275\u0275pureFunction3", moduleName: CORE };
2176
- Identifiers.pureFunction4 = { name: "\u0275\u0275pureFunction4", moduleName: CORE };
2177
- Identifiers.pureFunction5 = { name: "\u0275\u0275pureFunction5", moduleName: CORE };
2178
- Identifiers.pureFunction6 = { name: "\u0275\u0275pureFunction6", moduleName: CORE };
2179
- Identifiers.pureFunction7 = { name: "\u0275\u0275pureFunction7", moduleName: CORE };
2180
- Identifiers.pureFunction8 = { name: "\u0275\u0275pureFunction8", moduleName: CORE };
2181
- Identifiers.pureFunctionV = { name: "\u0275\u0275pureFunctionV", moduleName: CORE };
2182
- Identifiers.pipeBind1 = { name: "\u0275\u0275pipeBind1", moduleName: CORE };
2183
- Identifiers.pipeBind2 = { name: "\u0275\u0275pipeBind2", moduleName: CORE };
2184
- Identifiers.pipeBind3 = { name: "\u0275\u0275pipeBind3", moduleName: CORE };
2185
- Identifiers.pipeBind4 = { name: "\u0275\u0275pipeBind4", moduleName: CORE };
2186
- Identifiers.pipeBindV = { name: "\u0275\u0275pipeBindV", moduleName: CORE };
2187
- Identifiers.hostProperty = { name: "\u0275\u0275hostProperty", moduleName: CORE };
2188
- Identifiers.property = { name: "\u0275\u0275property", moduleName: CORE };
2189
- Identifiers.propertyInterpolate = { name: "\u0275\u0275propertyInterpolate", moduleName: CORE };
2190
- Identifiers.propertyInterpolate1 = { name: "\u0275\u0275propertyInterpolate1", moduleName: CORE };
2191
- Identifiers.propertyInterpolate2 = { name: "\u0275\u0275propertyInterpolate2", moduleName: CORE };
2192
- Identifiers.propertyInterpolate3 = { name: "\u0275\u0275propertyInterpolate3", moduleName: CORE };
2193
- Identifiers.propertyInterpolate4 = { name: "\u0275\u0275propertyInterpolate4", moduleName: CORE };
2194
- Identifiers.propertyInterpolate5 = { name: "\u0275\u0275propertyInterpolate5", moduleName: CORE };
2195
- Identifiers.propertyInterpolate6 = { name: "\u0275\u0275propertyInterpolate6", moduleName: CORE };
2196
- Identifiers.propertyInterpolate7 = { name: "\u0275\u0275propertyInterpolate7", moduleName: CORE };
2197
- Identifiers.propertyInterpolate8 = { name: "\u0275\u0275propertyInterpolate8", moduleName: CORE };
2198
- Identifiers.propertyInterpolateV = { name: "\u0275\u0275propertyInterpolateV", moduleName: CORE };
2199
- Identifiers.i18n = { name: "\u0275\u0275i18n", moduleName: CORE };
2200
- Identifiers.i18nAttributes = { name: "\u0275\u0275i18nAttributes", moduleName: CORE };
2201
- Identifiers.i18nExp = { name: "\u0275\u0275i18nExp", moduleName: CORE };
2202
- Identifiers.i18nStart = { name: "\u0275\u0275i18nStart", moduleName: CORE };
2203
- Identifiers.i18nEnd = { name: "\u0275\u0275i18nEnd", moduleName: CORE };
2204
- Identifiers.i18nApply = { name: "\u0275\u0275i18nApply", moduleName: CORE };
2205
- Identifiers.i18nPostprocess = { name: "\u0275\u0275i18nPostprocess", moduleName: CORE };
2206
- Identifiers.pipe = { name: "\u0275\u0275pipe", moduleName: CORE };
2207
- Identifiers.projection = { name: "\u0275\u0275projection", moduleName: CORE };
2208
- Identifiers.projectionDef = { name: "\u0275\u0275projectionDef", moduleName: CORE };
2209
- Identifiers.reference = { name: "\u0275\u0275reference", moduleName: CORE };
2210
- Identifiers.inject = { name: "\u0275\u0275inject", moduleName: CORE };
2211
- Identifiers.injectAttribute = { name: "\u0275\u0275injectAttribute", moduleName: CORE };
2212
- Identifiers.directiveInject = { name: "\u0275\u0275directiveInject", moduleName: CORE };
2213
- Identifiers.invalidFactory = { name: "\u0275\u0275invalidFactory", moduleName: CORE };
2214
- Identifiers.invalidFactoryDep = { name: "\u0275\u0275invalidFactoryDep", moduleName: CORE };
2215
- Identifiers.templateRefExtractor = { name: "\u0275\u0275templateRefExtractor", moduleName: CORE };
2216
- Identifiers.forwardRef = { name: "forwardRef", moduleName: CORE };
2217
- Identifiers.resolveForwardRef = { name: "resolveForwardRef", moduleName: CORE };
2218
- Identifiers.\u0275\u0275defineInjectable = { name: "\u0275\u0275defineInjectable", moduleName: CORE };
2219
- Identifiers.declareInjectable = { name: "\u0275\u0275ngDeclareInjectable", moduleName: CORE };
2220
- Identifiers.InjectableDeclaration = { name: "\u0275\u0275InjectableDeclaration", moduleName: CORE };
2221
- Identifiers.resolveWindow = { name: "\u0275\u0275resolveWindow", moduleName: CORE };
2222
- Identifiers.resolveDocument = { name: "\u0275\u0275resolveDocument", moduleName: CORE };
2223
- Identifiers.resolveBody = { name: "\u0275\u0275resolveBody", moduleName: CORE };
2224
- Identifiers.defineComponent = { name: "\u0275\u0275defineComponent", moduleName: CORE };
2225
- Identifiers.declareComponent = { name: "\u0275\u0275ngDeclareComponent", moduleName: CORE };
2226
- Identifiers.setComponentScope = { name: "\u0275\u0275setComponentScope", moduleName: CORE };
2227
- Identifiers.ChangeDetectionStrategy = {
2228
- name: "ChangeDetectionStrategy",
2229
- moduleName: CORE
2230
- };
2231
- Identifiers.ViewEncapsulation = {
2232
- name: "ViewEncapsulation",
2233
- moduleName: CORE
2234
- };
2235
- Identifiers.ComponentDeclaration = {
2236
- name: "\u0275\u0275ComponentDeclaration",
2237
- moduleName: CORE
2238
- };
2239
- Identifiers.FactoryDeclaration = {
2240
- name: "\u0275\u0275FactoryDeclaration",
2241
- moduleName: CORE
2242
- };
2243
- Identifiers.declareFactory = { name: "\u0275\u0275ngDeclareFactory", moduleName: CORE };
2244
- Identifiers.FactoryTarget = { name: "\u0275\u0275FactoryTarget", moduleName: CORE };
2245
- Identifiers.defineDirective = { name: "\u0275\u0275defineDirective", moduleName: CORE };
2246
- Identifiers.declareDirective = { name: "\u0275\u0275ngDeclareDirective", moduleName: CORE };
2247
- Identifiers.DirectiveDeclaration = {
2248
- name: "\u0275\u0275DirectiveDeclaration",
2249
- moduleName: CORE
2250
- };
2251
- Identifiers.InjectorDef = { name: "\u0275\u0275InjectorDef", moduleName: CORE };
2252
- Identifiers.InjectorDeclaration = { name: "\u0275\u0275InjectorDeclaration", moduleName: CORE };
2253
- Identifiers.defineInjector = { name: "\u0275\u0275defineInjector", moduleName: CORE };
2254
- Identifiers.declareInjector = { name: "\u0275\u0275ngDeclareInjector", moduleName: CORE };
2255
- Identifiers.NgModuleDeclaration = {
2256
- name: "\u0275\u0275NgModuleDeclaration",
2257
- moduleName: CORE
2258
- };
2259
- Identifiers.ModuleWithProviders = {
2260
- name: "ModuleWithProviders",
2261
- moduleName: CORE
2262
- };
2263
- Identifiers.defineNgModule = { name: "\u0275\u0275defineNgModule", moduleName: CORE };
2264
- Identifiers.declareNgModule = { name: "\u0275\u0275ngDeclareNgModule", moduleName: CORE };
2265
- Identifiers.setNgModuleScope = { name: "\u0275\u0275setNgModuleScope", moduleName: CORE };
2266
- Identifiers.registerNgModuleType = { name: "\u0275\u0275registerNgModuleType", moduleName: CORE };
2267
- Identifiers.PipeDeclaration = { name: "\u0275\u0275PipeDeclaration", moduleName: CORE };
2268
- Identifiers.definePipe = { name: "\u0275\u0275definePipe", moduleName: CORE };
2269
- Identifiers.declarePipe = { name: "\u0275\u0275ngDeclarePipe", moduleName: CORE };
2270
- Identifiers.declareClassMetadata = { name: "\u0275\u0275ngDeclareClassMetadata", moduleName: CORE };
2271
- Identifiers.setClassMetadata = { name: "\u0275setClassMetadata", moduleName: CORE };
2272
- Identifiers.queryRefresh = { name: "\u0275\u0275queryRefresh", moduleName: CORE };
2273
- Identifiers.viewQuery = { name: "\u0275\u0275viewQuery", moduleName: CORE };
2274
- Identifiers.loadQuery = { name: "\u0275\u0275loadQuery", moduleName: CORE };
2275
- Identifiers.contentQuery = { name: "\u0275\u0275contentQuery", moduleName: CORE };
2276
- Identifiers.NgOnChangesFeature = { name: "\u0275\u0275NgOnChangesFeature", moduleName: CORE };
2277
- Identifiers.InheritDefinitionFeature = { name: "\u0275\u0275InheritDefinitionFeature", moduleName: CORE };
2278
- Identifiers.CopyDefinitionFeature = { name: "\u0275\u0275CopyDefinitionFeature", moduleName: CORE };
2279
- Identifiers.StandaloneFeature = { name: "\u0275\u0275StandaloneFeature", moduleName: CORE };
2280
- Identifiers.ProvidersFeature = { name: "\u0275\u0275ProvidersFeature", moduleName: CORE };
2281
- Identifiers.HostDirectivesFeature = { name: "\u0275\u0275HostDirectivesFeature", moduleName: CORE };
2282
- Identifiers.listener = { name: "\u0275\u0275listener", moduleName: CORE };
2283
- Identifiers.getInheritedFactory = {
2284
- name: "\u0275\u0275getInheritedFactory",
2285
- moduleName: CORE
2286
- };
2287
- Identifiers.sanitizeHtml = { name: "\u0275\u0275sanitizeHtml", moduleName: CORE };
2288
- Identifiers.sanitizeStyle = { name: "\u0275\u0275sanitizeStyle", moduleName: CORE };
2289
- Identifiers.sanitizeResourceUrl = { name: "\u0275\u0275sanitizeResourceUrl", moduleName: CORE };
2290
- Identifiers.sanitizeScript = { name: "\u0275\u0275sanitizeScript", moduleName: CORE };
2291
- Identifiers.sanitizeUrl = { name: "\u0275\u0275sanitizeUrl", moduleName: CORE };
2292
- Identifiers.sanitizeUrlOrResourceUrl = { name: "\u0275\u0275sanitizeUrlOrResourceUrl", moduleName: CORE };
2293
- Identifiers.trustConstantHtml = { name: "\u0275\u0275trustConstantHtml", moduleName: CORE };
2294
- Identifiers.trustConstantResourceUrl = { name: "\u0275\u0275trustConstantResourceUrl", moduleName: CORE };
2295
- Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
2296
-
2297
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
2099
+ var _Identifiers = class {
2100
+ };
2101
+ var Identifiers = _Identifiers;
2102
+ (() => {
2103
+ _Identifiers.NEW_METHOD = "factory";
2104
+ })();
2105
+ (() => {
2106
+ _Identifiers.TRANSFORM_METHOD = "transform";
2107
+ })();
2108
+ (() => {
2109
+ _Identifiers.PATCH_DEPS = "patchedDeps";
2110
+ })();
2111
+ (() => {
2112
+ _Identifiers.core = { name: null, moduleName: CORE };
2113
+ })();
2114
+ (() => {
2115
+ _Identifiers.namespaceHTML = { name: "\u0275\u0275namespaceHTML", moduleName: CORE };
2116
+ })();
2117
+ (() => {
2118
+ _Identifiers.namespaceMathML = { name: "\u0275\u0275namespaceMathML", moduleName: CORE };
2119
+ })();
2120
+ (() => {
2121
+ _Identifiers.namespaceSVG = { name: "\u0275\u0275namespaceSVG", moduleName: CORE };
2122
+ })();
2123
+ (() => {
2124
+ _Identifiers.element = { name: "\u0275\u0275element", moduleName: CORE };
2125
+ })();
2126
+ (() => {
2127
+ _Identifiers.elementStart = { name: "\u0275\u0275elementStart", moduleName: CORE };
2128
+ })();
2129
+ (() => {
2130
+ _Identifiers.elementEnd = { name: "\u0275\u0275elementEnd", moduleName: CORE };
2131
+ })();
2132
+ (() => {
2133
+ _Identifiers.advance = { name: "\u0275\u0275advance", moduleName: CORE };
2134
+ })();
2135
+ (() => {
2136
+ _Identifiers.syntheticHostProperty = { name: "\u0275\u0275syntheticHostProperty", moduleName: CORE };
2137
+ })();
2138
+ (() => {
2139
+ _Identifiers.syntheticHostListener = { name: "\u0275\u0275syntheticHostListener", moduleName: CORE };
2140
+ })();
2141
+ (() => {
2142
+ _Identifiers.attribute = { name: "\u0275\u0275attribute", moduleName: CORE };
2143
+ })();
2144
+ (() => {
2145
+ _Identifiers.attributeInterpolate1 = { name: "\u0275\u0275attributeInterpolate1", moduleName: CORE };
2146
+ })();
2147
+ (() => {
2148
+ _Identifiers.attributeInterpolate2 = { name: "\u0275\u0275attributeInterpolate2", moduleName: CORE };
2149
+ })();
2150
+ (() => {
2151
+ _Identifiers.attributeInterpolate3 = { name: "\u0275\u0275attributeInterpolate3", moduleName: CORE };
2152
+ })();
2153
+ (() => {
2154
+ _Identifiers.attributeInterpolate4 = { name: "\u0275\u0275attributeInterpolate4", moduleName: CORE };
2155
+ })();
2156
+ (() => {
2157
+ _Identifiers.attributeInterpolate5 = { name: "\u0275\u0275attributeInterpolate5", moduleName: CORE };
2158
+ })();
2159
+ (() => {
2160
+ _Identifiers.attributeInterpolate6 = { name: "\u0275\u0275attributeInterpolate6", moduleName: CORE };
2161
+ })();
2162
+ (() => {
2163
+ _Identifiers.attributeInterpolate7 = { name: "\u0275\u0275attributeInterpolate7", moduleName: CORE };
2164
+ })();
2165
+ (() => {
2166
+ _Identifiers.attributeInterpolate8 = { name: "\u0275\u0275attributeInterpolate8", moduleName: CORE };
2167
+ })();
2168
+ (() => {
2169
+ _Identifiers.attributeInterpolateV = { name: "\u0275\u0275attributeInterpolateV", moduleName: CORE };
2170
+ })();
2171
+ (() => {
2172
+ _Identifiers.classProp = { name: "\u0275\u0275classProp", moduleName: CORE };
2173
+ })();
2174
+ (() => {
2175
+ _Identifiers.elementContainerStart = { name: "\u0275\u0275elementContainerStart", moduleName: CORE };
2176
+ })();
2177
+ (() => {
2178
+ _Identifiers.elementContainerEnd = { name: "\u0275\u0275elementContainerEnd", moduleName: CORE };
2179
+ })();
2180
+ (() => {
2181
+ _Identifiers.elementContainer = { name: "\u0275\u0275elementContainer", moduleName: CORE };
2182
+ })();
2183
+ (() => {
2184
+ _Identifiers.styleMap = { name: "\u0275\u0275styleMap", moduleName: CORE };
2185
+ })();
2186
+ (() => {
2187
+ _Identifiers.styleMapInterpolate1 = { name: "\u0275\u0275styleMapInterpolate1", moduleName: CORE };
2188
+ })();
2189
+ (() => {
2190
+ _Identifiers.styleMapInterpolate2 = { name: "\u0275\u0275styleMapInterpolate2", moduleName: CORE };
2191
+ })();
2192
+ (() => {
2193
+ _Identifiers.styleMapInterpolate3 = { name: "\u0275\u0275styleMapInterpolate3", moduleName: CORE };
2194
+ })();
2195
+ (() => {
2196
+ _Identifiers.styleMapInterpolate4 = { name: "\u0275\u0275styleMapInterpolate4", moduleName: CORE };
2197
+ })();
2198
+ (() => {
2199
+ _Identifiers.styleMapInterpolate5 = { name: "\u0275\u0275styleMapInterpolate5", moduleName: CORE };
2200
+ })();
2201
+ (() => {
2202
+ _Identifiers.styleMapInterpolate6 = { name: "\u0275\u0275styleMapInterpolate6", moduleName: CORE };
2203
+ })();
2204
+ (() => {
2205
+ _Identifiers.styleMapInterpolate7 = { name: "\u0275\u0275styleMapInterpolate7", moduleName: CORE };
2206
+ })();
2207
+ (() => {
2208
+ _Identifiers.styleMapInterpolate8 = { name: "\u0275\u0275styleMapInterpolate8", moduleName: CORE };
2209
+ })();
2210
+ (() => {
2211
+ _Identifiers.styleMapInterpolateV = { name: "\u0275\u0275styleMapInterpolateV", moduleName: CORE };
2212
+ })();
2213
+ (() => {
2214
+ _Identifiers.classMap = { name: "\u0275\u0275classMap", moduleName: CORE };
2215
+ })();
2216
+ (() => {
2217
+ _Identifiers.classMapInterpolate1 = { name: "\u0275\u0275classMapInterpolate1", moduleName: CORE };
2218
+ })();
2219
+ (() => {
2220
+ _Identifiers.classMapInterpolate2 = { name: "\u0275\u0275classMapInterpolate2", moduleName: CORE };
2221
+ })();
2222
+ (() => {
2223
+ _Identifiers.classMapInterpolate3 = { name: "\u0275\u0275classMapInterpolate3", moduleName: CORE };
2224
+ })();
2225
+ (() => {
2226
+ _Identifiers.classMapInterpolate4 = { name: "\u0275\u0275classMapInterpolate4", moduleName: CORE };
2227
+ })();
2228
+ (() => {
2229
+ _Identifiers.classMapInterpolate5 = { name: "\u0275\u0275classMapInterpolate5", moduleName: CORE };
2230
+ })();
2231
+ (() => {
2232
+ _Identifiers.classMapInterpolate6 = { name: "\u0275\u0275classMapInterpolate6", moduleName: CORE };
2233
+ })();
2234
+ (() => {
2235
+ _Identifiers.classMapInterpolate7 = { name: "\u0275\u0275classMapInterpolate7", moduleName: CORE };
2236
+ })();
2237
+ (() => {
2238
+ _Identifiers.classMapInterpolate8 = { name: "\u0275\u0275classMapInterpolate8", moduleName: CORE };
2239
+ })();
2240
+ (() => {
2241
+ _Identifiers.classMapInterpolateV = { name: "\u0275\u0275classMapInterpolateV", moduleName: CORE };
2242
+ })();
2243
+ (() => {
2244
+ _Identifiers.styleProp = { name: "\u0275\u0275styleProp", moduleName: CORE };
2245
+ })();
2246
+ (() => {
2247
+ _Identifiers.stylePropInterpolate1 = { name: "\u0275\u0275stylePropInterpolate1", moduleName: CORE };
2248
+ })();
2249
+ (() => {
2250
+ _Identifiers.stylePropInterpolate2 = { name: "\u0275\u0275stylePropInterpolate2", moduleName: CORE };
2251
+ })();
2252
+ (() => {
2253
+ _Identifiers.stylePropInterpolate3 = { name: "\u0275\u0275stylePropInterpolate3", moduleName: CORE };
2254
+ })();
2255
+ (() => {
2256
+ _Identifiers.stylePropInterpolate4 = { name: "\u0275\u0275stylePropInterpolate4", moduleName: CORE };
2257
+ })();
2258
+ (() => {
2259
+ _Identifiers.stylePropInterpolate5 = { name: "\u0275\u0275stylePropInterpolate5", moduleName: CORE };
2260
+ })();
2261
+ (() => {
2262
+ _Identifiers.stylePropInterpolate6 = { name: "\u0275\u0275stylePropInterpolate6", moduleName: CORE };
2263
+ })();
2264
+ (() => {
2265
+ _Identifiers.stylePropInterpolate7 = { name: "\u0275\u0275stylePropInterpolate7", moduleName: CORE };
2266
+ })();
2267
+ (() => {
2268
+ _Identifiers.stylePropInterpolate8 = { name: "\u0275\u0275stylePropInterpolate8", moduleName: CORE };
2269
+ })();
2270
+ (() => {
2271
+ _Identifiers.stylePropInterpolateV = { name: "\u0275\u0275stylePropInterpolateV", moduleName: CORE };
2272
+ })();
2273
+ (() => {
2274
+ _Identifiers.nextContext = { name: "\u0275\u0275nextContext", moduleName: CORE };
2275
+ })();
2276
+ (() => {
2277
+ _Identifiers.resetView = { name: "\u0275\u0275resetView", moduleName: CORE };
2278
+ })();
2279
+ (() => {
2280
+ _Identifiers.templateCreate = { name: "\u0275\u0275template", moduleName: CORE };
2281
+ })();
2282
+ (() => {
2283
+ _Identifiers.text = { name: "\u0275\u0275text", moduleName: CORE };
2284
+ })();
2285
+ (() => {
2286
+ _Identifiers.enableBindings = { name: "\u0275\u0275enableBindings", moduleName: CORE };
2287
+ })();
2288
+ (() => {
2289
+ _Identifiers.disableBindings = { name: "\u0275\u0275disableBindings", moduleName: CORE };
2290
+ })();
2291
+ (() => {
2292
+ _Identifiers.getCurrentView = { name: "\u0275\u0275getCurrentView", moduleName: CORE };
2293
+ })();
2294
+ (() => {
2295
+ _Identifiers.textInterpolate = { name: "\u0275\u0275textInterpolate", moduleName: CORE };
2296
+ })();
2297
+ (() => {
2298
+ _Identifiers.textInterpolate1 = { name: "\u0275\u0275textInterpolate1", moduleName: CORE };
2299
+ })();
2300
+ (() => {
2301
+ _Identifiers.textInterpolate2 = { name: "\u0275\u0275textInterpolate2", moduleName: CORE };
2302
+ })();
2303
+ (() => {
2304
+ _Identifiers.textInterpolate3 = { name: "\u0275\u0275textInterpolate3", moduleName: CORE };
2305
+ })();
2306
+ (() => {
2307
+ _Identifiers.textInterpolate4 = { name: "\u0275\u0275textInterpolate4", moduleName: CORE };
2308
+ })();
2309
+ (() => {
2310
+ _Identifiers.textInterpolate5 = { name: "\u0275\u0275textInterpolate5", moduleName: CORE };
2311
+ })();
2312
+ (() => {
2313
+ _Identifiers.textInterpolate6 = { name: "\u0275\u0275textInterpolate6", moduleName: CORE };
2314
+ })();
2315
+ (() => {
2316
+ _Identifiers.textInterpolate7 = { name: "\u0275\u0275textInterpolate7", moduleName: CORE };
2317
+ })();
2318
+ (() => {
2319
+ _Identifiers.textInterpolate8 = { name: "\u0275\u0275textInterpolate8", moduleName: CORE };
2320
+ })();
2321
+ (() => {
2322
+ _Identifiers.textInterpolateV = { name: "\u0275\u0275textInterpolateV", moduleName: CORE };
2323
+ })();
2324
+ (() => {
2325
+ _Identifiers.restoreView = { name: "\u0275\u0275restoreView", moduleName: CORE };
2326
+ })();
2327
+ (() => {
2328
+ _Identifiers.pureFunction0 = { name: "\u0275\u0275pureFunction0", moduleName: CORE };
2329
+ })();
2330
+ (() => {
2331
+ _Identifiers.pureFunction1 = { name: "\u0275\u0275pureFunction1", moduleName: CORE };
2332
+ })();
2333
+ (() => {
2334
+ _Identifiers.pureFunction2 = { name: "\u0275\u0275pureFunction2", moduleName: CORE };
2335
+ })();
2336
+ (() => {
2337
+ _Identifiers.pureFunction3 = { name: "\u0275\u0275pureFunction3", moduleName: CORE };
2338
+ })();
2339
+ (() => {
2340
+ _Identifiers.pureFunction4 = { name: "\u0275\u0275pureFunction4", moduleName: CORE };
2341
+ })();
2342
+ (() => {
2343
+ _Identifiers.pureFunction5 = { name: "\u0275\u0275pureFunction5", moduleName: CORE };
2344
+ })();
2345
+ (() => {
2346
+ _Identifiers.pureFunction6 = { name: "\u0275\u0275pureFunction6", moduleName: CORE };
2347
+ })();
2348
+ (() => {
2349
+ _Identifiers.pureFunction7 = { name: "\u0275\u0275pureFunction7", moduleName: CORE };
2350
+ })();
2351
+ (() => {
2352
+ _Identifiers.pureFunction8 = { name: "\u0275\u0275pureFunction8", moduleName: CORE };
2353
+ })();
2354
+ (() => {
2355
+ _Identifiers.pureFunctionV = { name: "\u0275\u0275pureFunctionV", moduleName: CORE };
2356
+ })();
2357
+ (() => {
2358
+ _Identifiers.pipeBind1 = { name: "\u0275\u0275pipeBind1", moduleName: CORE };
2359
+ })();
2360
+ (() => {
2361
+ _Identifiers.pipeBind2 = { name: "\u0275\u0275pipeBind2", moduleName: CORE };
2362
+ })();
2363
+ (() => {
2364
+ _Identifiers.pipeBind3 = { name: "\u0275\u0275pipeBind3", moduleName: CORE };
2365
+ })();
2366
+ (() => {
2367
+ _Identifiers.pipeBind4 = { name: "\u0275\u0275pipeBind4", moduleName: CORE };
2368
+ })();
2369
+ (() => {
2370
+ _Identifiers.pipeBindV = { name: "\u0275\u0275pipeBindV", moduleName: CORE };
2371
+ })();
2372
+ (() => {
2373
+ _Identifiers.hostProperty = { name: "\u0275\u0275hostProperty", moduleName: CORE };
2374
+ })();
2375
+ (() => {
2376
+ _Identifiers.property = { name: "\u0275\u0275property", moduleName: CORE };
2377
+ })();
2378
+ (() => {
2379
+ _Identifiers.propertyInterpolate = { name: "\u0275\u0275propertyInterpolate", moduleName: CORE };
2380
+ })();
2381
+ (() => {
2382
+ _Identifiers.propertyInterpolate1 = { name: "\u0275\u0275propertyInterpolate1", moduleName: CORE };
2383
+ })();
2384
+ (() => {
2385
+ _Identifiers.propertyInterpolate2 = { name: "\u0275\u0275propertyInterpolate2", moduleName: CORE };
2386
+ })();
2387
+ (() => {
2388
+ _Identifiers.propertyInterpolate3 = { name: "\u0275\u0275propertyInterpolate3", moduleName: CORE };
2389
+ })();
2390
+ (() => {
2391
+ _Identifiers.propertyInterpolate4 = { name: "\u0275\u0275propertyInterpolate4", moduleName: CORE };
2392
+ })();
2393
+ (() => {
2394
+ _Identifiers.propertyInterpolate5 = { name: "\u0275\u0275propertyInterpolate5", moduleName: CORE };
2395
+ })();
2396
+ (() => {
2397
+ _Identifiers.propertyInterpolate6 = { name: "\u0275\u0275propertyInterpolate6", moduleName: CORE };
2398
+ })();
2399
+ (() => {
2400
+ _Identifiers.propertyInterpolate7 = { name: "\u0275\u0275propertyInterpolate7", moduleName: CORE };
2401
+ })();
2402
+ (() => {
2403
+ _Identifiers.propertyInterpolate8 = { name: "\u0275\u0275propertyInterpolate8", moduleName: CORE };
2404
+ })();
2405
+ (() => {
2406
+ _Identifiers.propertyInterpolateV = { name: "\u0275\u0275propertyInterpolateV", moduleName: CORE };
2407
+ })();
2408
+ (() => {
2409
+ _Identifiers.i18n = { name: "\u0275\u0275i18n", moduleName: CORE };
2410
+ })();
2411
+ (() => {
2412
+ _Identifiers.i18nAttributes = { name: "\u0275\u0275i18nAttributes", moduleName: CORE };
2413
+ })();
2414
+ (() => {
2415
+ _Identifiers.i18nExp = { name: "\u0275\u0275i18nExp", moduleName: CORE };
2416
+ })();
2417
+ (() => {
2418
+ _Identifiers.i18nStart = { name: "\u0275\u0275i18nStart", moduleName: CORE };
2419
+ })();
2420
+ (() => {
2421
+ _Identifiers.i18nEnd = { name: "\u0275\u0275i18nEnd", moduleName: CORE };
2422
+ })();
2423
+ (() => {
2424
+ _Identifiers.i18nApply = { name: "\u0275\u0275i18nApply", moduleName: CORE };
2425
+ })();
2426
+ (() => {
2427
+ _Identifiers.i18nPostprocess = { name: "\u0275\u0275i18nPostprocess", moduleName: CORE };
2428
+ })();
2429
+ (() => {
2430
+ _Identifiers.pipe = { name: "\u0275\u0275pipe", moduleName: CORE };
2431
+ })();
2432
+ (() => {
2433
+ _Identifiers.projection = { name: "\u0275\u0275projection", moduleName: CORE };
2434
+ })();
2435
+ (() => {
2436
+ _Identifiers.projectionDef = { name: "\u0275\u0275projectionDef", moduleName: CORE };
2437
+ })();
2438
+ (() => {
2439
+ _Identifiers.reference = { name: "\u0275\u0275reference", moduleName: CORE };
2440
+ })();
2441
+ (() => {
2442
+ _Identifiers.inject = { name: "\u0275\u0275inject", moduleName: CORE };
2443
+ })();
2444
+ (() => {
2445
+ _Identifiers.injectAttribute = { name: "\u0275\u0275injectAttribute", moduleName: CORE };
2446
+ })();
2447
+ (() => {
2448
+ _Identifiers.directiveInject = { name: "\u0275\u0275directiveInject", moduleName: CORE };
2449
+ })();
2450
+ (() => {
2451
+ _Identifiers.invalidFactory = { name: "\u0275\u0275invalidFactory", moduleName: CORE };
2452
+ })();
2453
+ (() => {
2454
+ _Identifiers.invalidFactoryDep = { name: "\u0275\u0275invalidFactoryDep", moduleName: CORE };
2455
+ })();
2456
+ (() => {
2457
+ _Identifiers.templateRefExtractor = { name: "\u0275\u0275templateRefExtractor", moduleName: CORE };
2458
+ })();
2459
+ (() => {
2460
+ _Identifiers.forwardRef = { name: "forwardRef", moduleName: CORE };
2461
+ })();
2462
+ (() => {
2463
+ _Identifiers.resolveForwardRef = { name: "resolveForwardRef", moduleName: CORE };
2464
+ })();
2465
+ (() => {
2466
+ _Identifiers.\u0275\u0275defineInjectable = { name: "\u0275\u0275defineInjectable", moduleName: CORE };
2467
+ })();
2468
+ (() => {
2469
+ _Identifiers.declareInjectable = { name: "\u0275\u0275ngDeclareInjectable", moduleName: CORE };
2470
+ })();
2471
+ (() => {
2472
+ _Identifiers.InjectableDeclaration = { name: "\u0275\u0275InjectableDeclaration", moduleName: CORE };
2473
+ })();
2474
+ (() => {
2475
+ _Identifiers.resolveWindow = { name: "\u0275\u0275resolveWindow", moduleName: CORE };
2476
+ })();
2477
+ (() => {
2478
+ _Identifiers.resolveDocument = { name: "\u0275\u0275resolveDocument", moduleName: CORE };
2479
+ })();
2480
+ (() => {
2481
+ _Identifiers.resolveBody = { name: "\u0275\u0275resolveBody", moduleName: CORE };
2482
+ })();
2483
+ (() => {
2484
+ _Identifiers.defineComponent = { name: "\u0275\u0275defineComponent", moduleName: CORE };
2485
+ })();
2486
+ (() => {
2487
+ _Identifiers.declareComponent = { name: "\u0275\u0275ngDeclareComponent", moduleName: CORE };
2488
+ })();
2489
+ (() => {
2490
+ _Identifiers.setComponentScope = { name: "\u0275\u0275setComponentScope", moduleName: CORE };
2491
+ })();
2492
+ (() => {
2493
+ _Identifiers.ChangeDetectionStrategy = {
2494
+ name: "ChangeDetectionStrategy",
2495
+ moduleName: CORE
2496
+ };
2497
+ })();
2498
+ (() => {
2499
+ _Identifiers.ViewEncapsulation = {
2500
+ name: "ViewEncapsulation",
2501
+ moduleName: CORE
2502
+ };
2503
+ })();
2504
+ (() => {
2505
+ _Identifiers.ComponentDeclaration = {
2506
+ name: "\u0275\u0275ComponentDeclaration",
2507
+ moduleName: CORE
2508
+ };
2509
+ })();
2510
+ (() => {
2511
+ _Identifiers.FactoryDeclaration = {
2512
+ name: "\u0275\u0275FactoryDeclaration",
2513
+ moduleName: CORE
2514
+ };
2515
+ })();
2516
+ (() => {
2517
+ _Identifiers.declareFactory = { name: "\u0275\u0275ngDeclareFactory", moduleName: CORE };
2518
+ })();
2519
+ (() => {
2520
+ _Identifiers.FactoryTarget = { name: "\u0275\u0275FactoryTarget", moduleName: CORE };
2521
+ })();
2522
+ (() => {
2523
+ _Identifiers.defineDirective = { name: "\u0275\u0275defineDirective", moduleName: CORE };
2524
+ })();
2525
+ (() => {
2526
+ _Identifiers.declareDirective = { name: "\u0275\u0275ngDeclareDirective", moduleName: CORE };
2527
+ })();
2528
+ (() => {
2529
+ _Identifiers.DirectiveDeclaration = {
2530
+ name: "\u0275\u0275DirectiveDeclaration",
2531
+ moduleName: CORE
2532
+ };
2533
+ })();
2534
+ (() => {
2535
+ _Identifiers.InjectorDef = { name: "\u0275\u0275InjectorDef", moduleName: CORE };
2536
+ })();
2537
+ (() => {
2538
+ _Identifiers.InjectorDeclaration = { name: "\u0275\u0275InjectorDeclaration", moduleName: CORE };
2539
+ })();
2540
+ (() => {
2541
+ _Identifiers.defineInjector = { name: "\u0275\u0275defineInjector", moduleName: CORE };
2542
+ })();
2543
+ (() => {
2544
+ _Identifiers.declareInjector = { name: "\u0275\u0275ngDeclareInjector", moduleName: CORE };
2545
+ })();
2546
+ (() => {
2547
+ _Identifiers.NgModuleDeclaration = {
2548
+ name: "\u0275\u0275NgModuleDeclaration",
2549
+ moduleName: CORE
2550
+ };
2551
+ })();
2552
+ (() => {
2553
+ _Identifiers.ModuleWithProviders = {
2554
+ name: "ModuleWithProviders",
2555
+ moduleName: CORE
2556
+ };
2557
+ })();
2558
+ (() => {
2559
+ _Identifiers.defineNgModule = { name: "\u0275\u0275defineNgModule", moduleName: CORE };
2560
+ })();
2561
+ (() => {
2562
+ _Identifiers.declareNgModule = { name: "\u0275\u0275ngDeclareNgModule", moduleName: CORE };
2563
+ })();
2564
+ (() => {
2565
+ _Identifiers.setNgModuleScope = { name: "\u0275\u0275setNgModuleScope", moduleName: CORE };
2566
+ })();
2567
+ (() => {
2568
+ _Identifiers.registerNgModuleType = { name: "\u0275\u0275registerNgModuleType", moduleName: CORE };
2569
+ })();
2570
+ (() => {
2571
+ _Identifiers.PipeDeclaration = { name: "\u0275\u0275PipeDeclaration", moduleName: CORE };
2572
+ })();
2573
+ (() => {
2574
+ _Identifiers.definePipe = { name: "\u0275\u0275definePipe", moduleName: CORE };
2575
+ })();
2576
+ (() => {
2577
+ _Identifiers.declarePipe = { name: "\u0275\u0275ngDeclarePipe", moduleName: CORE };
2578
+ })();
2579
+ (() => {
2580
+ _Identifiers.declareClassMetadata = { name: "\u0275\u0275ngDeclareClassMetadata", moduleName: CORE };
2581
+ })();
2582
+ (() => {
2583
+ _Identifiers.setClassMetadata = { name: "\u0275setClassMetadata", moduleName: CORE };
2584
+ })();
2585
+ (() => {
2586
+ _Identifiers.queryRefresh = { name: "\u0275\u0275queryRefresh", moduleName: CORE };
2587
+ })();
2588
+ (() => {
2589
+ _Identifiers.viewQuery = { name: "\u0275\u0275viewQuery", moduleName: CORE };
2590
+ })();
2591
+ (() => {
2592
+ _Identifiers.loadQuery = { name: "\u0275\u0275loadQuery", moduleName: CORE };
2593
+ })();
2594
+ (() => {
2595
+ _Identifiers.contentQuery = { name: "\u0275\u0275contentQuery", moduleName: CORE };
2596
+ })();
2597
+ (() => {
2598
+ _Identifiers.NgOnChangesFeature = { name: "\u0275\u0275NgOnChangesFeature", moduleName: CORE };
2599
+ })();
2600
+ (() => {
2601
+ _Identifiers.InheritDefinitionFeature = { name: "\u0275\u0275InheritDefinitionFeature", moduleName: CORE };
2602
+ })();
2603
+ (() => {
2604
+ _Identifiers.CopyDefinitionFeature = { name: "\u0275\u0275CopyDefinitionFeature", moduleName: CORE };
2605
+ })();
2606
+ (() => {
2607
+ _Identifiers.StandaloneFeature = { name: "\u0275\u0275StandaloneFeature", moduleName: CORE };
2608
+ })();
2609
+ (() => {
2610
+ _Identifiers.ProvidersFeature = { name: "\u0275\u0275ProvidersFeature", moduleName: CORE };
2611
+ })();
2612
+ (() => {
2613
+ _Identifiers.HostDirectivesFeature = { name: "\u0275\u0275HostDirectivesFeature", moduleName: CORE };
2614
+ })();
2615
+ (() => {
2616
+ _Identifiers.listener = { name: "\u0275\u0275listener", moduleName: CORE };
2617
+ })();
2618
+ (() => {
2619
+ _Identifiers.getInheritedFactory = {
2620
+ name: "\u0275\u0275getInheritedFactory",
2621
+ moduleName: CORE
2622
+ };
2623
+ })();
2624
+ (() => {
2625
+ _Identifiers.sanitizeHtml = { name: "\u0275\u0275sanitizeHtml", moduleName: CORE };
2626
+ })();
2627
+ (() => {
2628
+ _Identifiers.sanitizeStyle = { name: "\u0275\u0275sanitizeStyle", moduleName: CORE };
2629
+ })();
2630
+ (() => {
2631
+ _Identifiers.sanitizeResourceUrl = { name: "\u0275\u0275sanitizeResourceUrl", moduleName: CORE };
2632
+ })();
2633
+ (() => {
2634
+ _Identifiers.sanitizeScript = { name: "\u0275\u0275sanitizeScript", moduleName: CORE };
2635
+ })();
2636
+ (() => {
2637
+ _Identifiers.sanitizeUrl = { name: "\u0275\u0275sanitizeUrl", moduleName: CORE };
2638
+ })();
2639
+ (() => {
2640
+ _Identifiers.sanitizeUrlOrResourceUrl = { name: "\u0275\u0275sanitizeUrlOrResourceUrl", moduleName: CORE };
2641
+ })();
2642
+ (() => {
2643
+ _Identifiers.trustConstantHtml = { name: "\u0275\u0275trustConstantHtml", moduleName: CORE };
2644
+ })();
2645
+ (() => {
2646
+ _Identifiers.trustConstantResourceUrl = { name: "\u0275\u0275trustConstantResourceUrl", moduleName: CORE };
2647
+ })();
2648
+ (() => {
2649
+ _Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
2650
+ })();
2651
+
2652
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
2298
2653
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
2299
2654
  function dashCaseToCamelCase(input) {
2300
2655
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -2382,7 +2737,7 @@ function partitionArray(arr, conditionFn) {
2382
2737
  return [truthy, falsy];
2383
2738
  }
2384
2739
 
2385
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2740
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2386
2741
  var VERSION = 3;
2387
2742
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
2388
2743
  var SourceMapGenerator = class {
@@ -2511,7 +2866,7 @@ function toBase64Digit(value) {
2511
2866
  return B64_DIGITS[value];
2512
2867
  }
2513
2868
 
2514
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
2869
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
2515
2870
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
2516
2871
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
2517
2872
  var _INDENT_WITH = " ";
@@ -2986,7 +3341,7 @@ function _createIndent(count) {
2986
3341
  return res;
2987
3342
  }
2988
3343
 
2989
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
3344
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
2990
3345
  function typeWithParameters(type, numParams) {
2991
3346
  if (numParams === 0) {
2992
3347
  return expressionType(type);
@@ -3054,7 +3409,7 @@ function generateForwardRef(expr) {
3054
3409
  return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
3055
3410
  }
3056
3411
 
3057
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3412
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3058
3413
  var R3FactoryDelegateType;
3059
3414
  (function(R3FactoryDelegateType2) {
3060
3415
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -3199,7 +3554,7 @@ function getInjectFn(target) {
3199
3554
  }
3200
3555
  }
3201
3556
 
3202
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3557
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3203
3558
  var Comment = class {
3204
3559
  constructor(value, sourceSpan) {
3205
3560
  this.value = value;
@@ -3421,7 +3776,7 @@ function visitAll(visitor, nodes) {
3421
3776
  return result;
3422
3777
  }
3423
3778
 
3424
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
3779
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
3425
3780
  var Message = class {
3426
3781
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
3427
3782
  this.nodes = nodes;
@@ -3430,8 +3785,8 @@ var Message = class {
3430
3785
  this.meaning = meaning;
3431
3786
  this.description = description;
3432
3787
  this.customId = customId;
3433
- this.id = this.customId;
3434
3788
  this.legacyIds = [];
3789
+ this.id = this.customId;
3435
3790
  this.messageString = serializeMessage(this.nodes);
3436
3791
  if (nodes.length) {
3437
3792
  this.sources = [{
@@ -3584,7 +3939,7 @@ var LocalizeMessageStringVisitor = class {
3584
3939
  }
3585
3940
  };
3586
3941
 
3587
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
3942
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
3588
3943
  var Serializer = class {
3589
3944
  createNameMapper(message) {
3590
3945
  return null;
@@ -3636,7 +3991,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
3636
3991
  }
3637
3992
  };
3638
3993
 
3639
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
3994
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
3640
3995
  var _Visitor = class {
3641
3996
  visitTag(tag) {
3642
3997
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -3724,7 +4079,7 @@ function escapeXml(text) {
3724
4079
  return _ESCAPED_CHARS.reduce((text2, entry) => text2.replace(entry[0], entry[1]), text);
3725
4080
  }
3726
4081
 
3727
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4082
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
3728
4083
  var _MESSAGES_TAG = "messagebundle";
3729
4084
  var _MESSAGE_TAG = "msg";
3730
4085
  var _PLACEHOLDER_TAG = "ph";
@@ -3867,7 +4222,7 @@ function toPublicName(internalName) {
3867
4222
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
3868
4223
  }
3869
4224
 
3870
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4225
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
3871
4226
  var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
3872
4227
  var TRANSLATION_VAR_PREFIX = "i18n_";
3873
4228
  var I18N_ATTR = "i18n";
@@ -3969,7 +4324,7 @@ function declareI18nVariable(variable2) {
3969
4324
  return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
3970
4325
  }
3971
4326
 
3972
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4327
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
3973
4328
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
3974
4329
  var TEMPORARY_NAME = "_t";
3975
4330
  var CONTEXT_NAME = "ctx";
@@ -4175,7 +4530,7 @@ function getInstructionStatements(instructions) {
4175
4530
  return statements;
4176
4531
  }
4177
4532
 
4178
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4533
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4179
4534
  function compileInjectable(meta, resolveForwardRefs) {
4180
4535
  let result = null;
4181
4536
  const factoryMeta = {
@@ -4264,7 +4619,7 @@ function createFactoryFunction(type) {
4264
4619
  return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
4265
4620
  }
4266
4621
 
4267
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
4622
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
4268
4623
  var UNUSABLE_INTERPOLATION_REGEXPS = [
4269
4624
  /^\s*$/,
4270
4625
  /[<>]/,
@@ -4286,7 +4641,7 @@ function assertInterpolationSymbols(identifier, value) {
4286
4641
  }
4287
4642
  }
4288
4643
 
4289
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
4644
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
4290
4645
  var InterpolationConfig = class {
4291
4646
  static fromArray(markers) {
4292
4647
  if (!markers) {
@@ -4302,7 +4657,7 @@ var InterpolationConfig = class {
4302
4657
  };
4303
4658
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
4304
4659
 
4305
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
4660
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
4306
4661
  var $EOF = 0;
4307
4662
  var $BSPACE = 8;
4308
4663
  var $TAB = 9;
@@ -4383,7 +4738,7 @@ function isQuote(code) {
4383
4738
  return code === $SQ || code === $DQ || code === $BT;
4384
4739
  }
4385
4740
 
4386
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
4741
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
4387
4742
  var ParseLocation = class {
4388
4743
  constructor(file, offset, line, col) {
4389
4744
  this.file = file;
@@ -4530,7 +4885,7 @@ function sanitizeIdentifier(name) {
4530
4885
  return name.replace(/\W/g, "_");
4531
4886
  }
4532
4887
 
4533
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
4888
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
4534
4889
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
4535
4890
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
4536
4891
  constructor() {
@@ -4601,7 +4956,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
4601
4956
  }
4602
4957
  };
4603
4958
 
4604
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
4959
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
4605
4960
  var policy;
4606
4961
  function getPolicy() {
4607
4962
  if (policy === void 0) {
@@ -4638,7 +4993,7 @@ function newTrustedFunctionForJIT(...args) {
4638
4993
  return fn2.bind(_global);
4639
4994
  }
4640
4995
 
4641
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
4996
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
4642
4997
  var JitEvaluator = class {
4643
4998
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
4644
4999
  const converter = new JitEmitterVisitor(refResolver);
@@ -4729,7 +5084,7 @@ function isUseStrictStatement(statement) {
4729
5084
  return statement.isEquivalent(literal("use strict").toStmt());
4730
5085
  }
4731
5086
 
4732
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5087
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
4733
5088
  function compileInjector(meta) {
4734
5089
  const definitionMap = new DefinitionMap();
4735
5090
  if (meta.providers !== null) {
@@ -4746,7 +5101,7 @@ function createInjectorType(meta) {
4746
5101
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
4747
5102
  }
4748
5103
 
4749
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5104
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
4750
5105
  var R3JitReflector = class {
4751
5106
  constructor(context) {
4752
5107
  this.context = context;
@@ -4762,7 +5117,7 @@ var R3JitReflector = class {
4762
5117
  }
4763
5118
  };
4764
5119
 
4765
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5120
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
4766
5121
  var R3SelectorScopeMode;
4767
5122
  (function(R3SelectorScopeMode2) {
4768
5123
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -4875,7 +5230,7 @@ function tupleOfTypes(types) {
4875
5230
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
4876
5231
  }
4877
5232
 
4878
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5233
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
4879
5234
  function compilePipeFromMetadata(metadata) {
4880
5235
  const definitionMapValues = [];
4881
5236
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -4896,7 +5251,7 @@ function createPipeType(metadata) {
4896
5251
  ]));
4897
5252
  }
4898
5253
 
4899
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5254
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
4900
5255
  var R3TemplateDependencyKind;
4901
5256
  (function(R3TemplateDependencyKind2) {
4902
5257
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -4904,7 +5259,7 @@ var R3TemplateDependencyKind;
4904
5259
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
4905
5260
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
4906
5261
 
4907
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
5262
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
4908
5263
  var ParserError = class {
4909
5264
  constructor(message, input, errLocation, ctxLocation) {
4910
5265
  this.input = input;
@@ -5570,10 +5925,13 @@ var BoundElementProperty = class {
5570
5925
  }
5571
5926
  };
5572
5927
 
5573
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
5574
- var EventHandlerVars = class {
5928
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
5929
+ var _EventHandlerVars = class {
5575
5930
  };
5576
- EventHandlerVars.event = variable("$event");
5931
+ var EventHandlerVars = _EventHandlerVars;
5932
+ (() => {
5933
+ _EventHandlerVars.event = variable("$event");
5934
+ })();
5577
5935
  function convertActionBinding(localResolver, implicitReceiver, action, bindingId, baseSourceSpan, implicitReceiverAccesses, globals) {
5578
5936
  if (!localResolver) {
5579
5937
  localResolver = new DefaultLocalResolver(globals);
@@ -6188,7 +6546,7 @@ var BuiltinFunctionCall = class extends Call {
6188
6546
  }
6189
6547
  };
6190
6548
 
6191
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
6549
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
6192
6550
  var _SECURITY_SCHEMA;
6193
6551
  function SECURITY_SCHEMA() {
6194
6552
  if (!_SECURITY_SCHEMA) {
@@ -6246,7 +6604,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
6246
6604
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
6247
6605
  }
6248
6606
 
6249
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
6607
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
6250
6608
  var animationKeywords = /* @__PURE__ */ new Set([
6251
6609
  "inherit",
6252
6610
  "initial",
@@ -6706,7 +7064,7 @@ function repeatGroups(groups, multiples) {
6706
7064
  }
6707
7065
  }
6708
7066
 
6709
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
7067
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
6710
7068
  function parse(value) {
6711
7069
  const styles = [];
6712
7070
  let i = 0;
@@ -6715,7 +7073,6 @@ function parse(value) {
6715
7073
  let valueStart = 0;
6716
7074
  let propStart = 0;
6717
7075
  let currentProp = null;
6718
- let valueHasQuotes = false;
6719
7076
  while (i < value.length) {
6720
7077
  const token = value.charCodeAt(i++);
6721
7078
  switch (token) {
@@ -6726,7 +7083,6 @@ function parse(value) {
6726
7083
  parenDepth--;
6727
7084
  break;
6728
7085
  case 39:
6729
- valueHasQuotes = valueHasQuotes || valueStart > 0;
6730
7086
  if (quote === 0) {
6731
7087
  quote = 39;
6732
7088
  } else if (quote === 39 && value.charCodeAt(i - 1) !== 92) {
@@ -6734,7 +7090,6 @@ function parse(value) {
6734
7090
  }
6735
7091
  break;
6736
7092
  case 34:
6737
- valueHasQuotes = valueHasQuotes || valueStart > 0;
6738
7093
  if (quote === 0) {
6739
7094
  quote = 34;
6740
7095
  } else if (quote === 34 && value.charCodeAt(i - 1) !== 92) {
@@ -6750,39 +7105,27 @@ function parse(value) {
6750
7105
  case 59:
6751
7106
  if (currentProp && valueStart > 0 && parenDepth === 0 && quote === 0) {
6752
7107
  const styleVal = value.substring(valueStart, i - 1).trim();
6753
- styles.push(currentProp, valueHasQuotes ? stripUnnecessaryQuotes(styleVal) : styleVal);
7108
+ styles.push(currentProp, styleVal);
6754
7109
  propStart = i;
6755
7110
  valueStart = 0;
6756
7111
  currentProp = null;
6757
- valueHasQuotes = false;
6758
7112
  }
6759
7113
  break;
6760
7114
  }
6761
7115
  }
6762
7116
  if (currentProp && valueStart) {
6763
7117
  const styleVal = value.slice(valueStart).trim();
6764
- styles.push(currentProp, valueHasQuotes ? stripUnnecessaryQuotes(styleVal) : styleVal);
7118
+ styles.push(currentProp, styleVal);
6765
7119
  }
6766
7120
  return styles;
6767
7121
  }
6768
- function stripUnnecessaryQuotes(value) {
6769
- const qS = value.charCodeAt(0);
6770
- const qE = value.charCodeAt(value.length - 1);
6771
- if (qS == qE && (qS == 39 || qS == 34)) {
6772
- const tempValue = value.substring(1, value.length - 1);
6773
- if (tempValue.indexOf("'") == -1 && tempValue.indexOf('"') == -1) {
6774
- value = tempValue;
6775
- }
6776
- }
6777
- return value;
6778
- }
6779
7122
  function hyphenate(value) {
6780
7123
  return value.replace(/[a-z][A-Z]/g, (v) => {
6781
7124
  return v.charAt(0) + "-" + v.charAt(1);
6782
7125
  }).toLowerCase();
6783
7126
  }
6784
7127
 
6785
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
7128
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
6786
7129
  var IMPORTANT_FLAG = "!important";
6787
7130
  var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
6788
7131
  var StylingBuilder = class {
@@ -7115,7 +7458,7 @@ function isEmptyExpression(ast) {
7115
7458
  return ast instanceof EmptyExpr;
7116
7459
  }
7117
7460
 
7118
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
7461
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
7119
7462
  var TokenType;
7120
7463
  (function(TokenType2) {
7121
7464
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -7476,7 +7819,7 @@ function parseIntAutoRadix(text) {
7476
7819
  return result;
7477
7820
  }
7478
7821
 
7479
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
7822
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
7480
7823
  var SplitInterpolation = class {
7481
7824
  constructor(strings, expressions, offsets) {
7482
7825
  this.strings = strings;
@@ -8132,7 +8475,7 @@ var _ParseAST = class {
8132
8475
  const sourceSpan = this.sourceSpan(keyStart);
8133
8476
  values.push(new PropertyRead(span, sourceSpan, sourceSpan, new ImplicitReceiver(span, sourceSpan), key));
8134
8477
  }
8135
- } while (this.consumeOptionalCharacter($COMMA));
8478
+ } while (this.consumeOptionalCharacter($COMMA) && !this.next.isCharacter($RBRACE));
8136
8479
  this.rbracesExpected--;
8137
8480
  this.expectCharacter($RBRACE);
8138
8481
  }
@@ -8370,7 +8713,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
8370
8713
  return offsetMap;
8371
8714
  }
8372
8715
 
8373
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
8716
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
8374
8717
  var NodeWithI18n = class {
8375
8718
  constructor(sourceSpan, i18n) {
8376
8719
  this.sourceSpan = sourceSpan;
@@ -8458,7 +8801,7 @@ function visitAll2(visitor, nodes, context = null) {
8458
8801
  return result;
8459
8802
  }
8460
8803
 
8461
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
8804
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
8462
8805
  var TagContentType;
8463
8806
  (function(TagContentType2) {
8464
8807
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -8491,11 +8834,11 @@ function mergeNsAndName(prefix, localName) {
8491
8834
  return prefix ? `:${prefix}:${localName}` : localName;
8492
8835
  }
8493
8836
 
8494
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
8837
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
8495
8838
  var ElementSchemaRegistry = class {
8496
8839
  };
8497
8840
 
8498
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
8841
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
8499
8842
  var BOOLEAN = "boolean";
8500
8843
  var NUMBER = "number";
8501
8844
  var STRING = "string";
@@ -8848,7 +9191,7 @@ function _isPixelDimensionStyle(prop) {
8848
9191
  }
8849
9192
  }
8850
9193
 
8851
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
9194
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
8852
9195
  var HtmlTagDefinition = class {
8853
9196
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
8854
9197
  this.closedByChildren = {};
@@ -8966,7 +9309,7 @@ function getHtmlTagDefinition(tagName) {
8966
9309
  return (_b = (_a = TAG_DEFINITIONS[tagName]) != null ? _a : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b : DEFAULT_TAG_DEFINITION;
8967
9310
  }
8968
9311
 
8969
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
9312
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
8970
9313
  var NAMED_ENTITIES = {
8971
9314
  "AElig": "\xC6",
8972
9315
  "AMP": "&",
@@ -11097,7 +11440,7 @@ var NAMED_ENTITIES = {
11097
11440
  var NGSP_UNICODE = "\uE500";
11098
11441
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
11099
11442
 
11100
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
11443
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
11101
11444
  var TokenError = class extends ParseError {
11102
11445
  constructor(errorMsg, tokenType, span) {
11103
11446
  super(span, errorMsg);
@@ -11932,7 +12275,7 @@ var CursorError = class {
11932
12275
  }
11933
12276
  };
11934
12277
 
11935
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
12278
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
11936
12279
  var TreeError = class extends ParseError {
11937
12280
  static create(elementName, span, msg) {
11938
12281
  return new TreeError(elementName, span, msg);
@@ -12259,7 +12602,7 @@ function decodeEntity(match, entity) {
12259
12602
  return match;
12260
12603
  }
12261
12604
 
12262
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
12605
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
12263
12606
  var HtmlParser = class extends Parser2 {
12264
12607
  constructor() {
12265
12608
  super(getHtmlTagDefinition);
@@ -12269,7 +12612,7 @@ var HtmlParser = class extends Parser2 {
12269
12612
  }
12270
12613
  };
12271
12614
 
12272
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
12615
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
12273
12616
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
12274
12617
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
12275
12618
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -12329,7 +12672,7 @@ function visitAllWithSiblings(visitor, nodes) {
12329
12672
  return result;
12330
12673
  }
12331
12674
 
12332
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12675
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12333
12676
  function mapLiteral(obj, quoted = false) {
12334
12677
  return literalMap(Object.keys(obj).map((key) => ({
12335
12678
  key,
@@ -12338,7 +12681,7 @@ function mapLiteral(obj, quoted = false) {
12338
12681
  })));
12339
12682
  }
12340
12683
 
12341
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
12684
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
12342
12685
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
12343
12686
  "iframe|srcdoc",
12344
12687
  "*|innerhtml",
@@ -12353,7 +12696,7 @@ function isTrustedTypesSink(tagName, propName) {
12353
12696
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
12354
12697
  }
12355
12698
 
12356
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
12699
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
12357
12700
  var PROPERTY_PARTS_SEPARATOR = ".";
12358
12701
  var ATTRIBUTE_PREFIX = "attr";
12359
12702
  var CLASS_PREFIX = "class";
@@ -12673,7 +13016,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
12673
13016
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
12674
13017
  }
12675
13018
 
12676
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
13019
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
12677
13020
  function isStyleUrlResolvable(url) {
12678
13021
  if (url == null || url.length === 0 || url[0] == "/")
12679
13022
  return false;
@@ -12682,7 +13025,7 @@ function isStyleUrlResolvable(url) {
12682
13025
  }
12683
13026
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
12684
13027
 
12685
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
13028
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
12686
13029
  var NG_CONTENT_SELECT_ATTR = "select";
12687
13030
  var LINK_ELEMENT = "link";
12688
13031
  var LINK_STYLE_REL_ATTR = "rel";
@@ -12752,7 +13095,7 @@ function normalizeNgContentSelect(selectAttr) {
12752
13095
  return selectAttr;
12753
13096
  }
12754
13097
 
12755
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
13098
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
12756
13099
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
12757
13100
  var KW_BIND_IDX = 1;
12758
13101
  var KW_LET_IDX = 2;
@@ -13100,7 +13443,7 @@ function textContents(node) {
13100
13443
  }
13101
13444
  }
13102
13445
 
13103
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
13446
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
13104
13447
  var TagType;
13105
13448
  (function(TagType2) {
13106
13449
  TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
@@ -13235,7 +13578,7 @@ function serializePlaceholderValue(value) {
13235
13578
  }
13236
13579
  }
13237
13580
 
13238
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
13581
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
13239
13582
  var IcuSerializerVisitor = class {
13240
13583
  visitText(text) {
13241
13584
  return text.value;
@@ -13266,7 +13609,7 @@ function serializeIcuNode(icu) {
13266
13609
  return icu.visit(serializer);
13267
13610
  }
13268
13611
 
13269
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
13612
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
13270
13613
  var TAG_TO_PLACEHOLDER_NAMES = {
13271
13614
  "A": "LINK",
13272
13615
  "B": "BOLD_TEXT",
@@ -13360,7 +13703,7 @@ var PlaceholderRegistry = class {
13360
13703
  }
13361
13704
  };
13362
13705
 
13363
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
13706
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
13364
13707
  var _expParser = new Parser(new Lexer());
13365
13708
  function createI18nMessageFactory(interpolationConfig) {
13366
13709
  const visitor = new _I18nVisitor(_expParser, interpolationConfig);
@@ -13515,14 +13858,14 @@ function extractPlaceholderName(input) {
13515
13858
  return input.split(_CUSTOM_PH_EXP)[2];
13516
13859
  }
13517
13860
 
13518
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
13861
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
13519
13862
  var I18nError = class extends ParseError {
13520
13863
  constructor(span, msg) {
13521
13864
  super(span, msg);
13522
13865
  }
13523
13866
  };
13524
13867
 
13525
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
13868
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
13526
13869
  var setI18nRefs = (htmlNode, i18nNode) => {
13527
13870
  if (htmlNode instanceof NodeWithI18n) {
13528
13871
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -13539,11 +13882,11 @@ var I18nMetaVisitor = class {
13539
13882
  this.enableI18nLegacyMessageIdFormat = enableI18nLegacyMessageIdFormat;
13540
13883
  this.hasI18nMeta = false;
13541
13884
  this._errors = [];
13542
- this._createI18nMessage = createI18nMessageFactory(this.interpolationConfig);
13543
13885
  }
13544
13886
  _generateI18nMessage(nodes, meta = "", visitNodeFn) {
13545
13887
  const { meaning, description, customId } = this._parseMetadata(meta);
13546
- const message = this._createI18nMessage(nodes, meaning, description, customId, visitNodeFn);
13888
+ const createI18nMessage = createI18nMessageFactory(this.interpolationConfig);
13889
+ const message = createI18nMessage(nodes, meaning, description, customId, visitNodeFn);
13547
13890
  this._setMessageId(message, meta);
13548
13891
  this._setLegacyIds(message, meta);
13549
13892
  return message;
@@ -13671,7 +14014,7 @@ function i18nMetaToJSDoc(meta) {
13671
14014
  return jsDocComment(tags);
13672
14015
  }
13673
14016
 
13674
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
14017
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
13675
14018
  var GOOG_GET_MSG = "goog.getMsg";
13676
14019
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
13677
14020
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -13719,7 +14062,7 @@ function serializeI18nMessageForGetMsg(message) {
13719
14062
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
13720
14063
  }
13721
14064
 
13722
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
14065
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
13723
14066
  function createLocalizeStatements(variable2, message, params) {
13724
14067
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
13725
14068
  const sourceSpan = getSourceSpan(message);
@@ -13802,7 +14145,7 @@ function createEmptyMessagePart(location) {
13802
14145
  return new LiteralPiece("", new ParseSourceSpan(location, location));
13803
14146
  }
13804
14147
 
13805
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
14148
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
13806
14149
  var NG_CONTENT_SELECT_ATTR2 = "select";
13807
14150
  var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
13808
14151
  var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
@@ -15104,7 +15447,7 @@ function createClosureModeGuard() {
15104
15447
  return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
15105
15448
  }
15106
15449
 
15107
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
15450
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
15108
15451
  var ATTR_REGEX = /attr\.([^\]]+)/;
15109
15452
  var COMPONENT_VARIABLE = "%COMP%";
15110
15453
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
@@ -15327,7 +15670,15 @@ function createBaseDirectiveTypeParams(meta) {
15327
15670
  }
15328
15671
  function getInputsTypeExpression(meta) {
15329
15672
  return literalMap(Object.keys(meta.inputs).map((key) => {
15330
- return { key, value: literal(meta.inputs[key].bindingPropertyName), quoted: true };
15673
+ const value = meta.inputs[key];
15674
+ return {
15675
+ key,
15676
+ value: literalMap([
15677
+ { key: "alias", value: literal(value.bindingPropertyName), quoted: true },
15678
+ { key: "required", value: literal(value.required), quoted: true }
15679
+ ]),
15680
+ quoted: true
15681
+ };
15331
15682
  }));
15332
15683
  }
15333
15684
  function createDirectiveType(meta) {
@@ -15628,11 +15979,11 @@ function createHostDirectivesMappingArray(mapping) {
15628
15979
  return elements.length > 0 ? literalArr(elements) : null;
15629
15980
  }
15630
15981
 
15631
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
15982
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
15632
15983
  var ResourceLoader = class {
15633
15984
  };
15634
15985
 
15635
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
15986
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
15636
15987
  var CompilerFacadeImpl = class {
15637
15988
  constructor(jitEvaluator = new JitEvaluator()) {
15638
15989
  this.jitEvaluator = jitEvaluator;
@@ -15849,11 +16200,12 @@ function convertDirectiveFacadeToMetadata(facade) {
15849
16200
  propMetadata[field].forEach((ann) => {
15850
16201
  if (isInput(ann)) {
15851
16202
  inputsFromType[field] = {
15852
- bindingPropertyName: ann.bindingPropertyName || field,
15853
- classPropertyName: field
16203
+ bindingPropertyName: ann.alias || field,
16204
+ classPropertyName: field,
16205
+ required: ann.required || false
15854
16206
  };
15855
16207
  } else if (isOutput(ann)) {
15856
- outputsFromType[field] = ann.bindingPropertyName || field;
16208
+ outputsFromType[field] = ann.alias || field;
15857
16209
  }
15858
16210
  });
15859
16211
  }
@@ -16087,7 +16439,7 @@ function isOutput(value) {
16087
16439
  function inputsMappingToInputMetadata(inputs) {
16088
16440
  return Object.keys(inputs).reduce((result, key) => {
16089
16441
  const value = inputs[key];
16090
- result[key] = typeof value === "string" ? { bindingPropertyName: value, classPropertyName: value } : { bindingPropertyName: value[0], classPropertyName: value[1] };
16442
+ result[key] = typeof value === "string" ? { bindingPropertyName: value, classPropertyName: value, required: false } : { bindingPropertyName: value[0], classPropertyName: value[1], required: false };
16091
16443
  return result;
16092
16444
  }, {});
16093
16445
  }
@@ -16095,11 +16447,12 @@ function parseInputsArray(values) {
16095
16447
  return values.reduce((results, value) => {
16096
16448
  if (typeof value === "string") {
16097
16449
  const [bindingPropertyName, classPropertyName] = parseMappingString(value);
16098
- results[classPropertyName] = { bindingPropertyName, classPropertyName };
16450
+ results[classPropertyName] = { bindingPropertyName, classPropertyName, required: false };
16099
16451
  } else {
16100
16452
  results[value.name] = {
16101
16453
  bindingPropertyName: value.alias || value.name,
16102
- classPropertyName: value.name
16454
+ classPropertyName: value.name,
16455
+ required: value.required || false
16103
16456
  };
16104
16457
  }
16105
16458
  return results;
@@ -16107,8 +16460,8 @@ function parseInputsArray(values) {
16107
16460
  }
16108
16461
  function parseMappingStringArray(values) {
16109
16462
  return values.reduce((results, value) => {
16110
- const [publicName, fieldName] = parseMappingString(value);
16111
- results[fieldName] = publicName;
16463
+ const [alias, fieldName] = parseMappingString(value);
16464
+ results[fieldName] = alias;
16112
16465
  return results;
16113
16466
  }, {});
16114
16467
  }
@@ -16143,10 +16496,10 @@ function publishFacade(global2) {
16143
16496
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
16144
16497
  }
16145
16498
 
16146
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
16147
- var VERSION2 = new Version("16.0.0-next.3");
16499
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
16500
+ var VERSION2 = new Version("16.0.0-next.5");
16148
16501
 
16149
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
16502
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
16150
16503
  var _I18N_ATTR = "i18n";
16151
16504
  var _I18N_ATTR_PREFIX = "i18n-";
16152
16505
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -16450,7 +16803,7 @@ function _parseMessageMeta(i18n) {
16450
16803
  return { meaning, description, id: id.trim() };
16451
16804
  }
16452
16805
 
16453
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
16806
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
16454
16807
  var XmlTagDefinition = class {
16455
16808
  constructor() {
16456
16809
  this.closedByParent = false;
@@ -16474,7 +16827,7 @@ function getXmlTagDefinition(tagName) {
16474
16827
  return _TAG_DEFINITION;
16475
16828
  }
16476
16829
 
16477
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
16830
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
16478
16831
  var XmlParser = class extends Parser2 {
16479
16832
  constructor() {
16480
16833
  super(getXmlTagDefinition);
@@ -16484,7 +16837,7 @@ var XmlParser = class extends Parser2 {
16484
16837
  }
16485
16838
  };
16486
16839
 
16487
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
16840
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
16488
16841
  var _VERSION = "1.2";
16489
16842
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
16490
16843
  var _DEFAULT_SOURCE_LANG = "en";
@@ -16724,7 +17077,7 @@ function getCtypeForTag(tag) {
16724
17077
  }
16725
17078
  }
16726
17079
 
16727
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
17080
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
16728
17081
  var _VERSION2 = "2.0";
16729
17082
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
16730
17083
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -17012,7 +17365,7 @@ function getTypeForTag(tag) {
17012
17365
  }
17013
17366
  }
17014
17367
 
17015
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
17368
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
17016
17369
  var MessageBundle = class {
17017
17370
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
17018
17371
  this._htmlParser = _htmlParser;
@@ -17079,7 +17432,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
17079
17432
  }
17080
17433
  };
17081
17434
 
17082
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
17435
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
17083
17436
  var FactoryTarget2;
17084
17437
  (function(FactoryTarget3) {
17085
17438
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -17089,7 +17442,7 @@ var FactoryTarget2;
17089
17442
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
17090
17443
  })(FactoryTarget2 || (FactoryTarget2 = {}));
17091
17444
 
17092
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
17445
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
17093
17446
  var R3TargetBinder = class {
17094
17447
  constructor(directiveMatcher) {
17095
17448
  this.directiveMatcher = directiveMatcher;
@@ -17441,7 +17794,7 @@ function extractTemplateEntities(rootScope) {
17441
17794
  return templateEntities;
17442
17795
  }
17443
17796
 
17444
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
17797
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
17445
17798
  function compileClassMetadata(metadata) {
17446
17799
  var _a, _b;
17447
17800
  const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
@@ -17454,12 +17807,12 @@ function compileClassMetadata(metadata) {
17454
17807
  return iife.callFn([]);
17455
17808
  }
17456
17809
 
17457
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
17810
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
17458
17811
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
17459
17812
  function compileDeclareClassMetadata(metadata) {
17460
17813
  const definitionMap = new DefinitionMap();
17461
17814
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
17462
- definitionMap.set("version", literal("16.0.0-next.3"));
17815
+ definitionMap.set("version", literal("16.0.0-next.5"));
17463
17816
  definitionMap.set("ngImport", importExpr(Identifiers.core));
17464
17817
  definitionMap.set("type", metadata.type);
17465
17818
  definitionMap.set("decorators", metadata.decorators);
@@ -17468,7 +17821,7 @@ function compileDeclareClassMetadata(metadata) {
17468
17821
  return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
17469
17822
  }
17470
17823
 
17471
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
17824
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
17472
17825
  function toOptionalLiteralArray(values, mapper) {
17473
17826
  if (values === null || values.length === 0) {
17474
17827
  return null;
@@ -17516,7 +17869,7 @@ function compileDependency(dep) {
17516
17869
  return depMeta.toLiteralMap();
17517
17870
  }
17518
17871
 
17519
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
17872
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
17520
17873
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
17521
17874
  function compileDeclareDirectiveFromMetadata(meta) {
17522
17875
  const definitionMap = createDirectiveDefinitionMap(meta);
@@ -17528,7 +17881,7 @@ function createDirectiveDefinitionMap(meta) {
17528
17881
  var _a;
17529
17882
  const definitionMap = new DefinitionMap();
17530
17883
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
17531
- definitionMap.set("version", literal("16.0.0-next.3"));
17884
+ definitionMap.set("version", literal("16.0.0-next.5"));
17532
17885
  definitionMap.set("type", meta.internalType);
17533
17886
  if (meta.isStandalone) {
17534
17887
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -17618,7 +17971,7 @@ function createHostDirectives(hostDirectives) {
17618
17971
  return literalArr(expressions);
17619
17972
  }
17620
17973
 
17621
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
17974
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
17622
17975
  function compileDeclareComponentFromMetadata(meta, template, additionalTemplateInfo) {
17623
17976
  const definitionMap = createComponentDefinitionMap(meta, template, additionalTemplateInfo);
17624
17977
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -17705,12 +18058,12 @@ function compileUsedDependenciesMetadata(meta) {
17705
18058
  });
17706
18059
  }
17707
18060
 
17708
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
18061
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
17709
18062
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
17710
18063
  function compileDeclareFactoryFunction(meta) {
17711
18064
  const definitionMap = new DefinitionMap();
17712
18065
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
17713
- definitionMap.set("version", literal("16.0.0-next.3"));
18066
+ definitionMap.set("version", literal("16.0.0-next.5"));
17714
18067
  definitionMap.set("ngImport", importExpr(Identifiers.core));
17715
18068
  definitionMap.set("type", meta.internalType);
17716
18069
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -17722,7 +18075,7 @@ function compileDeclareFactoryFunction(meta) {
17722
18075
  };
17723
18076
  }
17724
18077
 
17725
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
18078
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
17726
18079
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
17727
18080
  function compileDeclareInjectableFromMetadata(meta) {
17728
18081
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -17733,7 +18086,7 @@ function compileDeclareInjectableFromMetadata(meta) {
17733
18086
  function createInjectableDefinitionMap(meta) {
17734
18087
  const definitionMap = new DefinitionMap();
17735
18088
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
17736
- definitionMap.set("version", literal("16.0.0-next.3"));
18089
+ definitionMap.set("version", literal("16.0.0-next.5"));
17737
18090
  definitionMap.set("ngImport", importExpr(Identifiers.core));
17738
18091
  definitionMap.set("type", meta.internalType);
17739
18092
  if (meta.providedIn !== void 0) {
@@ -17760,7 +18113,7 @@ function createInjectableDefinitionMap(meta) {
17760
18113
  return definitionMap;
17761
18114
  }
17762
18115
 
17763
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
18116
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
17764
18117
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
17765
18118
  function compileDeclareInjectorFromMetadata(meta) {
17766
18119
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -17771,7 +18124,7 @@ function compileDeclareInjectorFromMetadata(meta) {
17771
18124
  function createInjectorDefinitionMap(meta) {
17772
18125
  const definitionMap = new DefinitionMap();
17773
18126
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
17774
- definitionMap.set("version", literal("16.0.0-next.3"));
18127
+ definitionMap.set("version", literal("16.0.0-next.5"));
17775
18128
  definitionMap.set("ngImport", importExpr(Identifiers.core));
17776
18129
  definitionMap.set("type", meta.internalType);
17777
18130
  definitionMap.set("providers", meta.providers);
@@ -17781,7 +18134,7 @@ function createInjectorDefinitionMap(meta) {
17781
18134
  return definitionMap;
17782
18135
  }
17783
18136
 
17784
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
18137
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
17785
18138
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
17786
18139
  function compileDeclareNgModuleFromMetadata(meta) {
17787
18140
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -17792,7 +18145,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
17792
18145
  function createNgModuleDefinitionMap(meta) {
17793
18146
  const definitionMap = new DefinitionMap();
17794
18147
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
17795
- definitionMap.set("version", literal("16.0.0-next.3"));
18148
+ definitionMap.set("version", literal("16.0.0-next.5"));
17796
18149
  definitionMap.set("ngImport", importExpr(Identifiers.core));
17797
18150
  definitionMap.set("type", meta.internalType);
17798
18151
  if (meta.bootstrap.length > 0) {
@@ -17816,7 +18169,7 @@ function createNgModuleDefinitionMap(meta) {
17816
18169
  return definitionMap;
17817
18170
  }
17818
18171
 
17819
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
18172
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
17820
18173
  var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
17821
18174
  function compileDeclarePipeFromMetadata(meta) {
17822
18175
  const definitionMap = createPipeDefinitionMap(meta);
@@ -17827,7 +18180,7 @@ function compileDeclarePipeFromMetadata(meta) {
17827
18180
  function createPipeDefinitionMap(meta) {
17828
18181
  const definitionMap = new DefinitionMap();
17829
18182
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
17830
- definitionMap.set("version", literal("16.0.0-next.3"));
18183
+ definitionMap.set("version", literal("16.0.0-next.5"));
17831
18184
  definitionMap.set("ngImport", importExpr(Identifiers.core));
17832
18185
  definitionMap.set("type", meta.internalType);
17833
18186
  if (meta.isStandalone) {
@@ -17840,13 +18193,13 @@ function createPipeDefinitionMap(meta) {
17840
18193
  return definitionMap;
17841
18194
  }
17842
18195
 
17843
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
18196
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
17844
18197
  publishFacade(_global);
17845
18198
 
17846
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
17847
- var VERSION3 = new Version("16.0.0-next.3");
18199
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
18200
+ var VERSION3 = new Version("16.0.0-next.5");
17848
18201
 
17849
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
18202
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
17850
18203
  var EmitFlags;
17851
18204
  (function(EmitFlags2) {
17852
18205
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -17858,13 +18211,13 @@ var EmitFlags;
17858
18211
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
17859
18212
  })(EmitFlags || (EmitFlags = {}));
17860
18213
 
17861
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
18214
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
17862
18215
  var import_typescript2 = __toESM(require("typescript"), 1);
17863
18216
 
17864
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
18217
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
17865
18218
  var import_typescript94 = __toESM(require("typescript"), 1);
17866
18219
 
17867
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
18220
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
17868
18221
  var path = __toESM(require("path"), 1);
17869
18222
  function i18nGetExtension(formatName) {
17870
18223
  const format = formatName.toLowerCase();
@@ -17914,10 +18267,10 @@ function getPathNormalizer(basePath) {
17914
18267
  };
17915
18268
  }
17916
18269
 
17917
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
18270
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
17918
18271
  var import_typescript3 = __toESM(require("typescript"), 1);
17919
18272
 
17920
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
18273
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
17921
18274
  function toNumbers(value) {
17922
18275
  const suffixIndex = value.lastIndexOf("-");
17923
18276
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -17952,7 +18305,7 @@ function compareVersions(v1, v2) {
17952
18305
  return compareNumbers(toNumbers(v1), toNumbers(v2));
17953
18306
  }
17954
18307
 
17955
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
18308
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
17956
18309
  var MIN_TS_VERSION = "4.9.3";
17957
18310
  var MAX_TS_VERSION = "5.1.0";
17958
18311
  var tsVersion = import_typescript3.default.version;
@@ -17965,13 +18318,13 @@ function verifySupportedTypeScriptVersion() {
17965
18318
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
17966
18319
  }
17967
18320
 
17968
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
18321
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
17969
18322
  var import_typescript90 = __toESM(require("typescript"), 1);
17970
18323
 
17971
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
18324
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
17972
18325
  var import_typescript19 = __toESM(require("typescript"), 1);
17973
18326
 
17974
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
18327
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
17975
18328
  var ErrorCode;
17976
18329
  (function(ErrorCode2) {
17977
18330
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -17999,6 +18352,7 @@ var ErrorCode;
17999
18352
  ErrorCode2[ErrorCode2["INJECTABLE_INHERITS_INVALID_CONSTRUCTOR"] = 2016] = "INJECTABLE_INHERITS_INVALID_CONSTRUCTOR";
18000
18353
  ErrorCode2[ErrorCode2["HOST_DIRECTIVE_UNDEFINED_BINDING"] = 2017] = "HOST_DIRECTIVE_UNDEFINED_BINDING";
18001
18354
  ErrorCode2[ErrorCode2["HOST_DIRECTIVE_CONFLICTING_ALIAS"] = 2018] = "HOST_DIRECTIVE_CONFLICTING_ALIAS";
18355
+ ErrorCode2[ErrorCode2["HOST_DIRECTIVE_MISSING_REQUIRED_BINDING"] = 2019] = "HOST_DIRECTIVE_MISSING_REQUIRED_BINDING";
18002
18356
  ErrorCode2[ErrorCode2["SYMBOL_NOT_EXPORTED"] = 3001] = "SYMBOL_NOT_EXPORTED";
18003
18357
  ErrorCode2[ErrorCode2["IMPORT_CYCLE_DETECTED"] = 3003] = "IMPORT_CYCLE_DETECTED";
18004
18358
  ErrorCode2[ErrorCode2["IMPORT_GENERATION_FAILURE"] = 3004] = "IMPORT_GENERATION_FAILURE";
@@ -18027,6 +18381,7 @@ var ErrorCode;
18027
18381
  ErrorCode2[ErrorCode2["WRITE_TO_READ_ONLY_VARIABLE"] = 8005] = "WRITE_TO_READ_ONLY_VARIABLE";
18028
18382
  ErrorCode2[ErrorCode2["DUPLICATE_VARIABLE_DECLARATION"] = 8006] = "DUPLICATE_VARIABLE_DECLARATION";
18029
18383
  ErrorCode2[ErrorCode2["SPLIT_TWO_WAY_BINDING"] = 8007] = "SPLIT_TWO_WAY_BINDING";
18384
+ ErrorCode2[ErrorCode2["MISSING_REQUIRED_INPUTS"] = 8008] = "MISSING_REQUIRED_INPUTS";
18030
18385
  ErrorCode2[ErrorCode2["INVALID_BANANA_IN_BOX"] = 8101] = "INVALID_BANANA_IN_BOX";
18031
18386
  ErrorCode2[ErrorCode2["NULLISH_COALESCING_NOT_NULLABLE"] = 8102] = "NULLISH_COALESCING_NOT_NULLABLE";
18032
18387
  ErrorCode2[ErrorCode2["MISSING_CONTROL_FLOW_DIRECTIVE"] = 8103] = "MISSING_CONTROL_FLOW_DIRECTIVE";
@@ -18034,6 +18389,7 @@ var ErrorCode;
18034
18389
  ErrorCode2[ErrorCode2["MISSING_NGFOROF_LET"] = 8105] = "MISSING_NGFOROF_LET";
18035
18390
  ErrorCode2[ErrorCode2["SUFFIX_NOT_SUPPORTED"] = 8106] = "SUFFIX_NOT_SUPPORTED";
18036
18391
  ErrorCode2[ErrorCode2["OPTIONAL_CHAIN_NOT_NULLABLE"] = 8107] = "OPTIONAL_CHAIN_NOT_NULLABLE";
18392
+ ErrorCode2[ErrorCode2["SKIP_HYDRATION_NOT_STATIC"] = 8108] = "SKIP_HYDRATION_NOT_STATIC";
18037
18393
  ErrorCode2[ErrorCode2["INLINE_TCB_REQUIRED"] = 8900] = "INLINE_TCB_REQUIRED";
18038
18394
  ErrorCode2[ErrorCode2["INLINE_TYPE_CTOR_REQUIRED"] = 8901] = "INLINE_TYPE_CTOR_REQUIRED";
18039
18395
  ErrorCode2[ErrorCode2["INJECTABLE_DUPLICATE_PROV"] = 9001] = "INJECTABLE_DUPLICATE_PROV";
@@ -18041,7 +18397,7 @@ var ErrorCode;
18041
18397
  ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
18042
18398
  })(ErrorCode || (ErrorCode = {}));
18043
18399
 
18044
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
18400
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
18045
18401
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
18046
18402
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
18047
18403
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -18053,15 +18409,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
18053
18409
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
18054
18410
  ]);
18055
18411
 
18056
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18412
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18057
18413
  var import_typescript4 = __toESM(require("typescript"), 1);
18058
18414
 
18059
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
18415
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
18060
18416
  function ngErrorCode(code) {
18061
18417
  return parseInt("-99" + code);
18062
18418
  }
18063
18419
 
18064
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18420
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18065
18421
  var FatalDiagnosticError = class {
18066
18422
  constructor(code, node, message, relatedInformation) {
18067
18423
  this.code = code;
@@ -18117,10 +18473,10 @@ function addDiagnosticChain(messageText, add) {
18117
18473
  return messageText;
18118
18474
  }
18119
18475
 
18120
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
18476
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
18121
18477
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
18122
18478
 
18123
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
18479
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
18124
18480
  var ExtendedTemplateDiagnosticName;
18125
18481
  (function(ExtendedTemplateDiagnosticName2) {
18126
18482
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -18130,9 +18486,10 @@ var ExtendedTemplateDiagnosticName;
18130
18486
  ExtendedTemplateDiagnosticName2["TEXT_ATTRIBUTE_NOT_BINDING"] = "textAttributeNotBinding";
18131
18487
  ExtendedTemplateDiagnosticName2["MISSING_NGFOROF_LET"] = "missingNgForOfLet";
18132
18488
  ExtendedTemplateDiagnosticName2["SUFFIX_NOT_SUPPORTED"] = "suffixNotSupported";
18489
+ ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
18133
18490
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
18134
18491
 
18135
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
18492
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
18136
18493
  var import_typescript5 = __toESM(require("typescript"), 1);
18137
18494
  var Decorator = {
18138
18495
  nodeForError: (decorator) => {
@@ -18167,7 +18524,7 @@ function isConcreteDeclaration(decl) {
18167
18524
  return decl.kind === 0;
18168
18525
  }
18169
18526
 
18170
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
18527
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
18171
18528
  var import_typescript6 = __toESM(require("typescript"), 1);
18172
18529
  function typeToValue(typeNode, checker) {
18173
18530
  if (typeNode === null) {
@@ -18333,10 +18690,10 @@ function extractModuleName(node) {
18333
18690
  return node.moduleSpecifier.text;
18334
18691
  }
18335
18692
 
18336
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18693
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18337
18694
  var import_typescript8 = __toESM(require("typescript"), 1);
18338
18695
 
18339
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
18696
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
18340
18697
  var import_typescript7 = __toESM(require("typescript"), 1);
18341
18698
  function isNamedClassDeclaration(node) {
18342
18699
  return import_typescript7.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -18345,7 +18702,7 @@ function isIdentifier(node) {
18345
18702
  return node !== void 0 && import_typescript7.default.isIdentifier(node);
18346
18703
  }
18347
18704
 
18348
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18705
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18349
18706
  var TypeScriptReflectionHost = class {
18350
18707
  constructor(checker) {
18351
18708
  this.checker = checker;
@@ -18781,13 +19138,13 @@ function getExportedName(decl, originalId) {
18781
19138
  }
18782
19139
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
18783
19140
 
18784
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
19141
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
18785
19142
  var import_typescript18 = __toESM(require("typescript"), 1);
18786
19143
 
18787
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
19144
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
18788
19145
  var import_typescript12 = __toESM(require("typescript"), 1);
18789
19146
 
18790
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
19147
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
18791
19148
  var import_typescript10 = __toESM(require("typescript"), 1);
18792
19149
  var TS = /\.tsx?$/i;
18793
19150
  var D_TS = /\.d\.ts$/i;
@@ -18888,7 +19245,7 @@ function toUnredirectedSourceFile(sf) {
18888
19245
  return redirectInfo.unredirected;
18889
19246
  }
18890
19247
 
18891
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
19248
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
18892
19249
  function findExportedNameOfNode(target, file, reflector) {
18893
19250
  const exports = reflector.getExportsOfModule(file);
18894
19251
  if (exports === null) {
@@ -18908,7 +19265,7 @@ function findExportedNameOfNode(target, file, reflector) {
18908
19265
  return foundExportName;
18909
19266
  }
18910
19267
 
18911
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
19268
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
18912
19269
  var ImportFlags;
18913
19270
  (function(ImportFlags2) {
18914
19271
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -19124,7 +19481,7 @@ var UnifiedModulesStrategy = class {
19124
19481
  }
19125
19482
  };
19126
19483
 
19127
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
19484
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
19128
19485
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
19129
19486
  var UnifiedModulesAliasingHost = class {
19130
19487
  constructor(unifiedModulesHost) {
@@ -19191,7 +19548,7 @@ var AliasStrategy = class {
19191
19548
  }
19192
19549
  };
19193
19550
 
19194
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
19551
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
19195
19552
  function relativePathBetween(from, to) {
19196
19553
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
19197
19554
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -19200,7 +19557,7 @@ function normalizeSeparators2(path3) {
19200
19557
  return path3.replace(/\\/g, "/");
19201
19558
  }
19202
19559
 
19203
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
19560
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
19204
19561
  var NoopImportRewriter = class {
19205
19562
  shouldImportSymbol(symbol, specifier) {
19206
19563
  return true;
@@ -19258,7 +19615,7 @@ function validateAndRewriteCoreSymbol(name) {
19258
19615
  return CORE_SUPPORTED_SYMBOLS.get(name);
19259
19616
  }
19260
19617
 
19261
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
19618
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
19262
19619
  var import_typescript14 = __toESM(require("typescript"), 1);
19263
19620
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
19264
19621
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -19293,7 +19650,7 @@ function throwIncompatibleTransformationContextError() {
19293
19650
  throw Error("Angular compiler is incompatible with this version of the TypeScript compiler.\n\nIf you recently updated TypeScript and this issue surfaces now, consider downgrading.\n\nPlease report an issue on the Angular repositories when this issue surfaces and you are using a supposedly compatible TypeScript version.");
19294
19651
  }
19295
19652
 
19296
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
19653
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
19297
19654
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
19298
19655
  function attachDefaultImportDeclaration(expr, importDecl) {
19299
19656
  expr[DefaultImportDeclaration] = importDecl;
@@ -19334,7 +19691,7 @@ var DefaultImportTracker = class {
19334
19691
  }
19335
19692
  };
19336
19693
 
19337
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
19694
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
19338
19695
  var Reference2 = class {
19339
19696
  constructor(node, bestGuessOwningModule = null) {
19340
19697
  this.node = node;
@@ -19397,7 +19754,7 @@ var Reference2 = class {
19397
19754
  }
19398
19755
  };
19399
19756
 
19400
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
19757
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
19401
19758
  var ModuleResolver = class {
19402
19759
  constructor(program, compilerOptions, host, moduleResolutionCache) {
19403
19760
  this.program = program;
@@ -19414,7 +19771,7 @@ var ModuleResolver = class {
19414
19771
  }
19415
19772
  };
19416
19773
 
19417
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
19774
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
19418
19775
  function valueReferenceToExpression(valueRef) {
19419
19776
  if (valueRef.kind === 2) {
19420
19777
  return null;
@@ -19651,7 +20008,7 @@ function isAbstractClassDeclaration(clazz) {
19651
20008
  return import_typescript18.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript18.default.SyntaxKind.AbstractKeyword) : false;
19652
20009
  }
19653
20010
 
19654
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
20011
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
19655
20012
  function getConstructorDependencies(clazz, reflector, isCore) {
19656
20013
  const deps = [];
19657
20014
  const errors = [];
@@ -19793,10 +20150,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
19793
20150
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
19794
20151
  }
19795
20152
 
19796
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
20153
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
19797
20154
  var import_typescript27 = __toESM(require("typescript"), 1);
19798
20155
 
19799
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
20156
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
19800
20157
  var MetaKind;
19801
20158
  (function(MetaKind2) {
19802
20159
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -19809,10 +20166,10 @@ var MatchSource;
19809
20166
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
19810
20167
  })(MatchSource || (MatchSource = {}));
19811
20168
 
19812
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
20169
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
19813
20170
  var import_typescript22 = __toESM(require("typescript"), 1);
19814
20171
 
19815
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
20172
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
19816
20173
  var ClassPropertyMapping = class {
19817
20174
  constructor(forwardMap) {
19818
20175
  this.forwardMap = forwardMap;
@@ -19890,7 +20247,7 @@ function reverseMapFromForwardMap(forwardMap) {
19890
20247
  return reverseMap;
19891
20248
  }
19892
20249
 
19893
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
20250
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
19894
20251
  var import_typescript20 = __toESM(require("typescript"), 1);
19895
20252
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
19896
20253
  if (!import_typescript20.default.isTupleTypeNode(def)) {
@@ -20072,7 +20429,7 @@ function hasInjectableFields(clazz, host) {
20072
20429
  return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
20073
20430
  }
20074
20431
 
20075
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
20432
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
20076
20433
  var DtsMetadataReader = class {
20077
20434
  constructor(checker, reflector) {
20078
20435
  this.checker = checker;
@@ -20179,6 +20536,16 @@ function readInputsType(type) {
20179
20536
  classPropertyName: member.name.text,
20180
20537
  required: false
20181
20538
  };
20539
+ } else {
20540
+ const config = readMapType(member.type, (innerValue) => {
20541
+ var _a;
20542
+ return (_a = readStringType(innerValue)) != null ? _a : readBooleanType(innerValue);
20543
+ });
20544
+ inputsMap[member.name.text] = {
20545
+ classPropertyName: member.name.text,
20546
+ bindingPropertyName: config.alias,
20547
+ required: config.required
20548
+ };
20182
20549
  }
20183
20550
  }
20184
20551
  }
@@ -20230,7 +20597,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
20230
20597
  return result.length > 0 ? result : null;
20231
20598
  }
20232
20599
 
20233
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
20600
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
20234
20601
  function flattenInheritedDirectiveMetadata(reader, dir) {
20235
20602
  const topMeta = reader.getDirectiveMetadata(dir);
20236
20603
  if (topMeta === null) {
@@ -20287,7 +20654,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
20287
20654
  });
20288
20655
  }
20289
20656
 
20290
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
20657
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
20291
20658
  var LocalMetadataRegistry = class {
20292
20659
  constructor() {
20293
20660
  this.directives = /* @__PURE__ */ new Map();
@@ -20344,7 +20711,7 @@ var CompoundMetadataRegistry = class {
20344
20711
  }
20345
20712
  };
20346
20713
 
20347
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
20714
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
20348
20715
  var ResourceRegistry = class {
20349
20716
  constructor() {
20350
20717
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -20409,7 +20776,7 @@ var ResourceRegistry = class {
20409
20776
  }
20410
20777
  };
20411
20778
 
20412
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
20779
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
20413
20780
  var EMPTY_ARRAY = [];
20414
20781
  var HostDirectivesResolver = class {
20415
20782
  constructor(metaReader) {
@@ -20449,7 +20816,7 @@ var HostDirectivesResolver = class {
20449
20816
  const bindings = source.getByBindingPropertyName(publicName);
20450
20817
  if (bindings !== null) {
20451
20818
  for (const binding of bindings) {
20452
- result[binding.classPropertyName] = valueResolver(allowedProperties[publicName], binding.classPropertyName);
20819
+ result[binding.classPropertyName] = valueResolver(allowedProperties[publicName], binding);
20453
20820
  }
20454
20821
  }
20455
20822
  }
@@ -20458,17 +20825,21 @@ var HostDirectivesResolver = class {
20458
20825
  return result;
20459
20826
  }
20460
20827
  };
20461
- function resolveInput(bindingName, classPropertyName) {
20462
- return { bindingPropertyName: bindingName, classPropertyName, required: false };
20828
+ function resolveInput(bindingName, binding) {
20829
+ return {
20830
+ bindingPropertyName: bindingName,
20831
+ classPropertyName: binding.classPropertyName,
20832
+ required: binding.required
20833
+ };
20463
20834
  }
20464
20835
  function resolveOutput(bindingName) {
20465
20836
  return bindingName;
20466
20837
  }
20467
20838
 
20468
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20839
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20469
20840
  var import_typescript24 = __toESM(require("typescript"), 1);
20470
20841
 
20471
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
20842
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
20472
20843
  var DynamicValue = class {
20473
20844
  constructor(node, reason, code) {
20474
20845
  this.node = node;
@@ -20558,7 +20929,7 @@ var DynamicValue = class {
20558
20929
  }
20559
20930
  };
20560
20931
 
20561
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
20932
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
20562
20933
  var ResolvedModule = class {
20563
20934
  constructor(exports, evaluate) {
20564
20935
  this.exports = exports;
@@ -20588,7 +20959,7 @@ var EnumValue = class {
20588
20959
  var KnownFn = class {
20589
20960
  };
20590
20961
 
20591
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20962
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20592
20963
  function describeResolvedType(value, maxDepth = 1) {
20593
20964
  var _a, _b;
20594
20965
  if (value === null) {
@@ -20717,10 +21088,10 @@ function getContainerNode(node) {
20717
21088
  return node.getSourceFile();
20718
21089
  }
20719
21090
 
20720
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
21091
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
20721
21092
  var import_typescript25 = __toESM(require("typescript"), 1);
20722
21093
 
20723
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
21094
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
20724
21095
  var ArraySliceBuiltinFn = class extends KnownFn {
20725
21096
  constructor(lhs) {
20726
21097
  super();
@@ -20791,7 +21162,7 @@ var ObjectAssignBuiltinFn = class extends KnownFn {
20791
21162
  }
20792
21163
  };
20793
21164
 
20794
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
21165
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
20795
21166
  var AssignHelperFn = class extends ObjectAssignBuiltinFn {
20796
21167
  };
20797
21168
  var SpreadHelperFn = class extends KnownFn {
@@ -20844,7 +21215,7 @@ var ReadHelperFn = class extends KnownFn {
20844
21215
  }
20845
21216
  };
20846
21217
 
20847
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
21218
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
20848
21219
  var jsGlobalObjectValue = /* @__PURE__ */ new Map([["assign", new ObjectAssignBuiltinFn()]]);
20849
21220
  var assignTsHelperFn = new AssignHelperFn();
20850
21221
  var spreadTsHelperFn = new SpreadHelperFn();
@@ -20868,14 +21239,14 @@ function resolveKnownDeclaration(decl) {
20868
21239
  }
20869
21240
  }
20870
21241
 
20871
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
21242
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
20872
21243
  var SyntheticValue = class {
20873
21244
  constructor(value) {
20874
21245
  this.value = value;
20875
21246
  }
20876
21247
  };
20877
21248
 
20878
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
21249
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
20879
21250
  function literalBinaryOp(op) {
20880
21251
  return { op, literal: true };
20881
21252
  }
@@ -21473,7 +21844,7 @@ function owningModule(context, override = null) {
21473
21844
  }
21474
21845
  }
21475
21846
 
21476
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
21847
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
21477
21848
  var PartialEvaluator = class {
21478
21849
  constructor(host, checker, dependencyTracker) {
21479
21850
  this.host = host;
@@ -21493,7 +21864,7 @@ var PartialEvaluator = class {
21493
21864
  }
21494
21865
  };
21495
21866
 
21496
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
21867
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
21497
21868
  function makeDuplicateDeclarationError(node, data, kind) {
21498
21869
  const context = [];
21499
21870
  for (const decl of data) {
@@ -21581,19 +21952,28 @@ function validateHostDirectives(origin, hostDirectives, metaReader) {
21581
21952
  if (hostMeta.isComponent) {
21582
21953
  diagnostics.push(makeDiagnostic(ErrorCode.HOST_DIRECTIVE_COMPONENT, current.directive.getOriginForDiagnostics(origin), `Host directive ${hostMeta.name} cannot be a component`));
21583
21954
  }
21584
- validateHostDirectiveMappings("input", current, hostMeta, origin, diagnostics);
21585
- validateHostDirectiveMappings("output", current, hostMeta, origin, diagnostics);
21955
+ const requiredInputNames = Array.from(hostMeta.inputs).filter((input) => input.required).map((input) => input.classPropertyName);
21956
+ validateHostDirectiveMappings("input", current, hostMeta, origin, diagnostics, requiredInputNames.length > 0 ? new Set(requiredInputNames) : null);
21957
+ validateHostDirectiveMappings("output", current, hostMeta, origin, diagnostics, null);
21586
21958
  }
21587
21959
  return diagnostics;
21588
21960
  }
21589
- function validateHostDirectiveMappings(bindingType, hostDirectiveMeta, meta, origin, diagnostics) {
21961
+ function validateHostDirectiveMappings(bindingType, hostDirectiveMeta, meta, origin, diagnostics, requiredBindings) {
21590
21962
  const className = meta.name;
21591
21963
  const hostDirectiveMappings = bindingType === "input" ? hostDirectiveMeta.inputs : hostDirectiveMeta.outputs;
21592
21964
  const existingBindings = bindingType === "input" ? meta.inputs : meta.outputs;
21965
+ const exposedRequiredBindings = /* @__PURE__ */ new Set();
21593
21966
  for (const publicName in hostDirectiveMappings) {
21594
21967
  if (hostDirectiveMappings.hasOwnProperty(publicName)) {
21595
- if (!existingBindings.hasBindingPropertyName(publicName)) {
21968
+ const bindings = existingBindings.getByBindingPropertyName(publicName);
21969
+ if (bindings === null) {
21596
21970
  diagnostics.push(makeDiagnostic(ErrorCode.HOST_DIRECTIVE_UNDEFINED_BINDING, hostDirectiveMeta.directive.getOriginForDiagnostics(origin), `Directive ${className} does not have an ${bindingType} with a public name of ${publicName}.`));
21971
+ } else if (requiredBindings !== null) {
21972
+ for (const field of bindings) {
21973
+ if (requiredBindings.has(field.classPropertyName)) {
21974
+ exposedRequiredBindings.add(field.classPropertyName);
21975
+ }
21976
+ }
21597
21977
  }
21598
21978
  const remappedPublicName = hostDirectiveMappings[publicName];
21599
21979
  const bindingsForPublicName = existingBindings.getByBindingPropertyName(remappedPublicName);
@@ -21606,6 +21986,18 @@ function validateHostDirectiveMappings(bindingType, hostDirectiveMeta, meta, ori
21606
21986
  }
21607
21987
  }
21608
21988
  }
21989
+ if (requiredBindings !== null && requiredBindings.size !== exposedRequiredBindings.size) {
21990
+ const missingBindings = [];
21991
+ for (const publicName of requiredBindings) {
21992
+ if (!exposedRequiredBindings.has(publicName)) {
21993
+ const name = existingBindings.getByClassPropertyName(publicName);
21994
+ if (name) {
21995
+ missingBindings.push(`'${name.bindingPropertyName}'`);
21996
+ }
21997
+ }
21998
+ }
21999
+ diagnostics.push(makeDiagnostic(ErrorCode.HOST_DIRECTIVE_MISSING_REQUIRED_BINDING, hostDirectiveMeta.directive.getOriginForDiagnostics(origin), `Required ${bindingType}${missingBindings.length === 1 ? "" : "s"} ${missingBindings.join(", ")} from host directive ${className} must be exposed.`));
22000
+ }
21609
22001
  }
21610
22002
  function getUndecoratedClassWithAngularFeaturesDiagnostic(node) {
21611
22003
  return makeDiagnostic(ErrorCode.UNDECORATED_CLASS_USING_ANGULAR_FEATURES, node.name, `Class is using Angular features but is not decorated. Please add an explicit Angular decorator.`);
@@ -21668,7 +22060,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
21668
22060
  return makeDiagnostic(ErrorCode.DIRECTIVE_INHERITS_UNDECORATED_CTOR, node.name, `The ${kind.toLowerCase()} ${node.name.text} inherits its constructor from ${baseClassName}, but the latter does not have an Angular decorator of its own. Dependency injection will not be able to resolve the parameters of ${baseClassName}'s constructor. Either add a @${baseNeedsDecorator} decorator to ${baseClassName}, or add an explicit constructor to ${node.name.text}.`);
21669
22061
  }
21670
22062
 
21671
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
22063
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
21672
22064
  var import_typescript29 = __toESM(require("typescript"), 1);
21673
22065
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
21674
22066
  let resolved = null;
@@ -21701,7 +22093,7 @@ function resolveLiteral(decorator, literalCache) {
21701
22093
  return meta;
21702
22094
  }
21703
22095
 
21704
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
22096
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
21705
22097
  function compileNgFactoryDefField(metadata) {
21706
22098
  const res = compileFactoryFunction(metadata);
21707
22099
  return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
@@ -21711,7 +22103,7 @@ function compileDeclareFactory(metadata) {
21711
22103
  return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
21712
22104
  }
21713
22105
 
21714
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
22106
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
21715
22107
  var InjectableClassRegistry = class {
21716
22108
  constructor(host, isCore) {
21717
22109
  this.host = host;
@@ -21737,7 +22129,7 @@ var InjectableClassRegistry = class {
21737
22129
  }
21738
22130
  };
21739
22131
 
21740
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
22132
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
21741
22133
  var import_typescript30 = __toESM(require("typescript"), 1);
21742
22134
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
21743
22135
  if (!reflection.isClass(clazz)) {
@@ -21823,13 +22215,13 @@ function removeIdentifierReferences(node, name) {
21823
22215
  return result.transformed[0];
21824
22216
  }
21825
22217
 
21826
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
22218
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
21827
22219
  var NoopReferencesRegistry = class {
21828
22220
  add(source, ...references) {
21829
22221
  }
21830
22222
  };
21831
22223
 
21832
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
22224
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
21833
22225
  function extractSchemas(rawExpr, evaluator, context) {
21834
22226
  const schemas = [];
21835
22227
  const result = evaluator.evaluate(rawExpr);
@@ -21858,10 +22250,10 @@ function extractSchemas(rawExpr, evaluator, context) {
21858
22250
  return schemas;
21859
22251
  }
21860
22252
 
21861
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
22253
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
21862
22254
  var import_typescript51 = __toESM(require("typescript"), 1);
21863
22255
 
21864
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
22256
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
21865
22257
  var import_typescript31 = __toESM(require("typescript"), 1);
21866
22258
  var SemanticSymbol = class {
21867
22259
  constructor(decl) {
@@ -21877,7 +22269,7 @@ function getSymbolIdentifier(decl) {
21877
22269
  return decl.name.text;
21878
22270
  }
21879
22271
 
21880
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
22272
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
21881
22273
  var OpaqueSymbol = class extends SemanticSymbol {
21882
22274
  isPublicApiAffected() {
21883
22275
  return false;
@@ -22019,10 +22411,10 @@ function getImportPath(expr) {
22019
22411
  }
22020
22412
  }
22021
22413
 
22022
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22414
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22023
22415
  var import_typescript32 = __toESM(require("typescript"), 1);
22024
22416
 
22025
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
22417
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
22026
22418
  function isSymbolEqual(a, b) {
22027
22419
  if (a.decl === b.decl) {
22028
22420
  return true;
@@ -22072,7 +22464,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
22072
22464
  return true;
22073
22465
  }
22074
22466
 
22075
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22467
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22076
22468
  function extractSemanticTypeParameters(node) {
22077
22469
  if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
22078
22470
  return null;
@@ -22092,7 +22484,7 @@ function isTypeParameterEqual(a, b) {
22092
22484
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
22093
22485
  }
22094
22486
 
22095
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
22487
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
22096
22488
  var PerfPhase;
22097
22489
  (function(PerfPhase2) {
22098
22490
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -22159,7 +22551,7 @@ var PerfCheckpoint;
22159
22551
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
22160
22552
  })(PerfCheckpoint || (PerfCheckpoint = {}));
22161
22553
 
22162
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
22554
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
22163
22555
  var NoopPerfRecorder = class {
22164
22556
  eventCount() {
22165
22557
  }
@@ -22176,7 +22568,7 @@ var NoopPerfRecorder = class {
22176
22568
  };
22177
22569
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
22178
22570
 
22179
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
22571
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
22180
22572
  function mark() {
22181
22573
  return process.hrtime();
22182
22574
  }
@@ -22185,7 +22577,7 @@ function timeSinceInMicros(mark2) {
22185
22577
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
22186
22578
  }
22187
22579
 
22188
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
22580
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
22189
22581
  var ActivePerfRecorder = class {
22190
22582
  static zeroedToNow() {
22191
22583
  return new ActivePerfRecorder(mark());
@@ -22279,14 +22671,14 @@ var DelegatingPerfRecorder = class {
22279
22671
  }
22280
22672
  };
22281
22673
 
22282
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
22674
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
22283
22675
  var ComponentScopeKind;
22284
22676
  (function(ComponentScopeKind2) {
22285
22677
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
22286
22678
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
22287
22679
  })(ComponentScopeKind || (ComponentScopeKind = {}));
22288
22680
 
22289
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
22681
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
22290
22682
  var CompoundComponentScopeReader = class {
22291
22683
  constructor(readers) {
22292
22684
  this.readers = readers;
@@ -22311,7 +22703,7 @@ var CompoundComponentScopeReader = class {
22311
22703
  }
22312
22704
  };
22313
22705
 
22314
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
22706
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
22315
22707
  var MetadataDtsModuleScopeResolver = class {
22316
22708
  constructor(dtsMetaReader, aliasingHost) {
22317
22709
  this.dtsMetaReader = dtsMetaReader;
@@ -22386,10 +22778,10 @@ var MetadataDtsModuleScopeResolver = class {
22386
22778
  }
22387
22779
  };
22388
22780
 
22389
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22781
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22390
22782
  var import_typescript33 = __toESM(require("typescript"), 1);
22391
22783
 
22392
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
22784
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
22393
22785
  function getDiagnosticNode(ref, rawExpr) {
22394
22786
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
22395
22787
  }
@@ -22412,7 +22804,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
22412
22804
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
22413
22805
  }
22414
22806
 
22415
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22807
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22416
22808
  var LocalModuleScopeRegistry = class {
22417
22809
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
22418
22810
  this.localReader = localReader;
@@ -22751,7 +23143,7 @@ function reexportCollision(module3, refA, refB) {
22751
23143
  ]);
22752
23144
  }
22753
23145
 
22754
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
23146
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
22755
23147
  var import_typescript35 = __toESM(require("typescript"), 1);
22756
23148
  var TypeCheckScopeRegistry = class {
22757
23149
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -22819,7 +23211,7 @@ var TypeCheckScopeRegistry = class {
22819
23211
  }
22820
23212
  };
22821
23213
 
22822
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
23214
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
22823
23215
  var CompilationMode;
22824
23216
  (function(CompilationMode2) {
22825
23217
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -22837,7 +23229,7 @@ var HandlerFlags;
22837
23229
  HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
22838
23230
  })(HandlerFlags || (HandlerFlags = {}));
22839
23231
 
22840
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
23232
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
22841
23233
  var import_typescript36 = __toESM(require("typescript"), 1);
22842
23234
  function aliasTransformFactory(exportStatements) {
22843
23235
  return () => {
@@ -22860,10 +23252,10 @@ function aliasTransformFactory(exportStatements) {
22860
23252
  };
22861
23253
  }
22862
23254
 
22863
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
23255
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
22864
23256
  var import_typescript37 = __toESM(require("typescript"), 1);
22865
23257
 
22866
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
23258
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
22867
23259
  var TraitState;
22868
23260
  (function(TraitState2) {
22869
23261
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -22918,7 +23310,7 @@ var TraitImpl = class {
22918
23310
  }
22919
23311
  };
22920
23312
 
22921
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
23313
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
22922
23314
  var TraitCompiler = class {
22923
23315
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
22924
23316
  this.handlers = handlers;
@@ -23362,10 +23754,10 @@ function containsErrors(diagnostics) {
23362
23754
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
23363
23755
  }
23364
23756
 
23365
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
23757
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
23366
23758
  var import_typescript43 = __toESM(require("typescript"), 1);
23367
23759
 
23368
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
23760
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
23369
23761
  var Context = class {
23370
23762
  constructor(isStatement) {
23371
23763
  this.isStatement = isStatement;
@@ -23378,7 +23770,7 @@ var Context = class {
23378
23770
  }
23379
23771
  };
23380
23772
 
23381
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
23773
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
23382
23774
  var import_typescript39 = __toESM(require("typescript"), 1);
23383
23775
  var ImportManager = class {
23384
23776
  constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
@@ -23414,7 +23806,7 @@ var ImportManager = class {
23414
23806
  }
23415
23807
  };
23416
23808
 
23417
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
23809
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
23418
23810
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
23419
23811
  [UnaryOperator.Minus, "-"],
23420
23812
  [UnaryOperator.Plus, "+"]
@@ -23645,7 +24037,7 @@ function createRange(span) {
23645
24037
  };
23646
24038
  }
23647
24039
 
23648
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
24040
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
23649
24041
  var import_typescript40 = __toESM(require("typescript"), 1);
23650
24042
  function translateType(type, imports) {
23651
24043
  return type.visitType(new TypeTranslatorVisitor(imports), new Context(false));
@@ -23820,7 +24212,7 @@ var TypeTranslatorVisitor = class {
23820
24212
  }
23821
24213
  };
23822
24214
 
23823
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
24215
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
23824
24216
  var import_typescript41 = __toESM(require("typescript"), 1);
23825
24217
  var PureAnnotation;
23826
24218
  (function(PureAnnotation2) {
@@ -24003,7 +24395,7 @@ function attachComments(statement, leadingComments) {
24003
24395
  }
24004
24396
  }
24005
24397
 
24006
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
24398
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
24007
24399
  function translateExpression(expression, imports, options = {}) {
24008
24400
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
24009
24401
  }
@@ -24011,7 +24403,7 @@ function translateStatement(statement, imports, options = {}) {
24011
24403
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
24012
24404
  }
24013
24405
 
24014
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
24406
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
24015
24407
  var import_typescript42 = __toESM(require("typescript"), 1);
24016
24408
  function addImports(importManager, sf, extraStatements = []) {
24017
24409
  const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
@@ -24047,7 +24439,7 @@ function isImportStatement(stmt) {
24047
24439
  return import_typescript42.default.isImportDeclaration(stmt) || import_typescript42.default.isImportEqualsDeclaration(stmt) || import_typescript42.default.isNamespaceImport(stmt);
24048
24440
  }
24049
24441
 
24050
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
24442
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
24051
24443
  var DtsTransformRegistry = class {
24052
24444
  constructor() {
24053
24445
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -24192,10 +24584,10 @@ function markForEmitAsSingleLine(node) {
24192
24584
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
24193
24585
  }
24194
24586
 
24195
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24587
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24196
24588
  var import_typescript45 = __toESM(require("typescript"), 1);
24197
24589
 
24198
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
24590
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
24199
24591
  var import_typescript44 = __toESM(require("typescript"), 1);
24200
24592
  function visit(node, visitor, context) {
24201
24593
  return visitor._visit(node, context);
@@ -24256,7 +24648,7 @@ var Visitor = class {
24256
24648
  }
24257
24649
  };
24258
24650
 
24259
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24651
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24260
24652
  var NO_DECORATORS = /* @__PURE__ */ new Set();
24261
24653
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
24262
24654
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -24464,7 +24856,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
24464
24856
  return array;
24465
24857
  }
24466
24858
 
24467
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
24859
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
24468
24860
  var import_typescript46 = __toESM(require("typescript"), 1);
24469
24861
  var EMPTY_OBJECT = {};
24470
24862
  var QUERY_TYPES = /* @__PURE__ */ new Set([
@@ -24802,14 +25194,27 @@ function parseInputsArray2(decoratorMetadata, evaluator) {
24802
25194
  const inputs = {};
24803
25195
  const inputsArray = evaluator.evaluate(inputsField);
24804
25196
  if (!Array.isArray(inputsArray)) {
24805
- throw createValueHasWrongTypeError(inputsField, inputsArray, `Failed to resolve @Directive.inputs to a string array`);
25197
+ throw createValueHasWrongTypeError(inputsField, inputsArray, `Failed to resolve @Directive.inputs to an array`);
24806
25198
  }
24807
- for (const value of inputsArray) {
25199
+ for (let i = 0; i < inputsArray.length; i++) {
25200
+ const value = inputsArray[i];
24808
25201
  if (typeof value === "string") {
24809
- const [bindingPropertyName, fieldName] = parseMappingString2(value);
24810
- inputs[fieldName] = { bindingPropertyName, classPropertyName: fieldName, required: false };
25202
+ const [bindingPropertyName, classPropertyName] = parseMappingString2(value);
25203
+ inputs[classPropertyName] = { bindingPropertyName, classPropertyName, required: false };
25204
+ } else if (value instanceof Map) {
25205
+ const name = value.get("name");
25206
+ const alias = value.get("alias");
25207
+ const required = value.get("required");
25208
+ if (typeof name !== "string") {
25209
+ throw createValueHasWrongTypeError(inputsField, name, `Value at position ${i} of @Directive.inputs array must have a "name" property`);
25210
+ }
25211
+ inputs[name] = {
25212
+ classPropertyName: name,
25213
+ bindingPropertyName: typeof alias === "string" ? alias : name,
25214
+ required: required === true
25215
+ };
24811
25216
  } else {
24812
- throw createValueHasWrongTypeError(inputsField, value, `Failed to resolve @Directive.inputs to a string array`);
25217
+ throw createValueHasWrongTypeError(inputsField, value, `@Directive.inputs array can only contain strings or object literals`);
24813
25218
  }
24814
25219
  }
24815
25220
  return inputs;
@@ -24818,14 +25223,19 @@ function parseInputFields(inputMembers, evaluator) {
24818
25223
  const inputs = {};
24819
25224
  parseDecoratedFields(inputMembers, evaluator, (classPropertyName, options, decorator) => {
24820
25225
  let bindingPropertyName;
25226
+ let required = false;
24821
25227
  if (options === null) {
24822
25228
  bindingPropertyName = classPropertyName;
24823
25229
  } else if (typeof options === "string") {
24824
25230
  bindingPropertyName = options;
25231
+ } else if (options instanceof Map) {
25232
+ const aliasInConfig = options.get("alias");
25233
+ bindingPropertyName = typeof aliasInConfig === "string" ? aliasInConfig : classPropertyName;
25234
+ required = options.get("required") === true;
24825
25235
  } else {
24826
- throw createValueHasWrongTypeError(Decorator.nodeForError(decorator), options, `@${decorator.name} decorator argument must resolve to a string`);
25236
+ throw createValueHasWrongTypeError(Decorator.nodeForError(decorator), options, `@${decorator.name} decorator argument must resolve to a string or an object literal`);
24827
25237
  }
24828
- inputs[classPropertyName] = { bindingPropertyName, classPropertyName, required: false };
25238
+ inputs[classPropertyName] = { bindingPropertyName, classPropertyName, required };
24829
25239
  });
24830
25240
  return inputs;
24831
25241
  }
@@ -24916,7 +25326,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
24916
25326
  };
24917
25327
  }
24918
25328
 
24919
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
25329
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
24920
25330
  var DirectiveSymbol = class extends SemanticSymbol {
24921
25331
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
24922
25332
  super(decl);
@@ -24996,7 +25406,7 @@ function isBaseClassEqual(current, previous) {
24996
25406
  return isSymbolEqual(current, previous);
24997
25407
  }
24998
25408
 
24999
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
25409
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
25000
25410
  var FIELD_DECORATORS = [
25001
25411
  "Input",
25002
25412
  "Output",
@@ -25155,10 +25565,10 @@ var DirectiveDecoratorHandler = class {
25155
25565
  }
25156
25566
  };
25157
25567
 
25158
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25568
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25159
25569
  var import_typescript48 = __toESM(require("typescript"), 1);
25160
25570
 
25161
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
25571
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
25162
25572
  var import_typescript47 = __toESM(require("typescript"), 1);
25163
25573
  function createModuleWithProvidersResolver(reflector, isCore) {
25164
25574
  function _reflectModuleFromTypeParam(type, node) {
@@ -25225,7 +25635,7 @@ function isResolvedModuleWithProviders(sv) {
25225
25635
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
25226
25636
  }
25227
25637
 
25228
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25638
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25229
25639
  var NgModuleSymbol = class extends SemanticSymbol {
25230
25640
  constructor() {
25231
25641
  super(...arguments);
@@ -25721,7 +26131,7 @@ function isSyntheticReference(ref) {
25721
26131
  return ref.synthetic;
25722
26132
  }
25723
26133
 
25724
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
26134
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
25725
26135
  function makeCyclicImportInfo(ref, type, cycle) {
25726
26136
  const name = ref.debugName || "(unknown)";
25727
26137
  const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -25744,7 +26154,7 @@ function checkCustomElementSelectorForErrors(selector) {
25744
26154
  return null;
25745
26155
  }
25746
26156
 
25747
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
26157
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
25748
26158
  var import_typescript50 = __toESM(require("typescript"), 1);
25749
26159
  function getTemplateDeclarationNodeForError(declaration) {
25750
26160
  switch (declaration.isInline) {
@@ -26059,7 +26469,7 @@ function _extractTemplateStyleUrls(template) {
26059
26469
  return template.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
26060
26470
  }
26061
26471
 
26062
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
26472
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
26063
26473
  var ComponentSymbol = class extends DirectiveSymbol {
26064
26474
  constructor() {
26065
26475
  super(...arguments);
@@ -26094,7 +26504,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
26094
26504
  }
26095
26505
  };
26096
26506
 
26097
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
26507
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
26098
26508
  function collectAnimationNames(value, animationTriggerNames) {
26099
26509
  if (value instanceof Map) {
26100
26510
  const name = value.get("name");
@@ -26170,7 +26580,7 @@ function isLikelyModuleWithProviders(value) {
26170
26580
  return false;
26171
26581
  }
26172
26582
 
26173
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
26583
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
26174
26584
  var EMPTY_ARRAY2 = [];
26175
26585
  var ComponentDecoratorHandler = class {
26176
26586
  constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver) {
@@ -26206,13 +26616,13 @@ var ComponentDecoratorHandler = class {
26206
26616
  this.elementSchemaRegistry = new DomElementSchemaRegistry();
26207
26617
  this.preanalyzeTemplateCache = /* @__PURE__ */ new Map();
26208
26618
  this.preanalyzeStylesCache = /* @__PURE__ */ new Map();
26619
+ this.precedence = HandlerPrecedence.PRIMARY;
26620
+ this.name = ComponentDecoratorHandler.name;
26209
26621
  this.extractTemplateOptions = {
26210
26622
  enableI18nLegacyMessageIdFormat: this.enableI18nLegacyMessageIdFormat,
26211
26623
  i18nNormalizeLineEndingsInICUs: this.i18nNormalizeLineEndingsInICUs,
26212
26624
  usePoisonedData: this.usePoisonedData
26213
26625
  };
26214
- this.precedence = HandlerPrecedence.PRIMARY;
26215
- this.name = ComponentDecoratorHandler.name;
26216
26626
  }
26217
26627
  detect(node, decorators) {
26218
26628
  if (!decorators) {
@@ -26816,7 +27226,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
26816
27226
  return diagnostics;
26817
27227
  }
26818
27228
 
26819
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
27229
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
26820
27230
  var import_typescript53 = __toESM(require("typescript"), 1);
26821
27231
  var InjectableDecoratorHandler = class {
26822
27232
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
@@ -27032,7 +27442,7 @@ function getDep(dep, reflector) {
27032
27442
  return meta;
27033
27443
  }
27034
27444
 
27035
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
27445
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
27036
27446
  var import_typescript54 = __toESM(require("typescript"), 1);
27037
27447
  var PipeSymbol = class extends SemanticSymbol {
27038
27448
  constructor(decl, name) {
@@ -27177,7 +27587,7 @@ var PipeDecoratorHandler = class {
27177
27587
  }
27178
27588
  };
27179
27589
 
27180
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
27590
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
27181
27591
  var CycleAnalyzer = class {
27182
27592
  constructor(importGraph) {
27183
27593
  this.importGraph = importGraph;
@@ -27248,7 +27658,7 @@ var Cycle = class {
27248
27658
  }
27249
27659
  };
27250
27660
 
27251
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
27661
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
27252
27662
  var import_typescript55 = __toESM(require("typescript"), 1);
27253
27663
  var ImportGraph = class {
27254
27664
  constructor(checker, perf) {
@@ -27340,7 +27750,7 @@ var Found = class {
27340
27750
  }
27341
27751
  };
27342
27752
 
27343
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
27753
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
27344
27754
  var import_typescript56 = __toESM(require("typescript"), 1);
27345
27755
  var FlatIndexGenerator = class {
27346
27756
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -27365,7 +27775,7 @@ export * from '${relativeEntryPoint}';
27365
27775
  }
27366
27776
  };
27367
27777
 
27368
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
27778
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
27369
27779
  function findFlatIndexEntryPoint(rootFiles) {
27370
27780
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
27371
27781
  let resolvedEntryPoint = null;
@@ -27381,7 +27791,7 @@ function findFlatIndexEntryPoint(rootFiles) {
27381
27791
  return resolvedEntryPoint;
27382
27792
  }
27383
27793
 
27384
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
27794
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
27385
27795
  var import_typescript58 = __toESM(require("typescript"), 1);
27386
27796
  function checkForPrivateExports(entryPoint, checker, refGraph) {
27387
27797
  const diagnostics = [];
@@ -27461,7 +27871,7 @@ function getDescriptorOfDeclaration(decl) {
27461
27871
  }
27462
27872
  }
27463
27873
 
27464
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
27874
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
27465
27875
  var ReferenceGraph = class {
27466
27876
  constructor() {
27467
27877
  this.references = /* @__PURE__ */ new Map();
@@ -27515,7 +27925,7 @@ var ReferenceGraph = class {
27515
27925
  }
27516
27926
  };
27517
27927
 
27518
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
27928
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
27519
27929
  var NgOriginalFile = Symbol("NgOriginalFile");
27520
27930
  var UpdateMode;
27521
27931
  (function(UpdateMode2) {
@@ -27523,13 +27933,13 @@ var UpdateMode;
27523
27933
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
27524
27934
  })(UpdateMode || (UpdateMode = {}));
27525
27935
 
27526
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
27936
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
27527
27937
  var import_typescript62 = __toESM(require("typescript"), 1);
27528
27938
 
27529
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
27939
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
27530
27940
  var import_typescript59 = __toESM(require("typescript"), 1);
27531
27941
 
27532
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
27942
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
27533
27943
  var NgExtension = Symbol("NgExtension");
27534
27944
  function isExtended(sf) {
27535
27945
  return sf[NgExtension] !== void 0;
@@ -27589,13 +27999,13 @@ function retagTsFile(sf) {
27589
27999
  }
27590
28000
  }
27591
28001
 
27592
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
28002
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
27593
28003
  var TS_EXTENSIONS = /\.tsx?$/i;
27594
28004
  function makeShimFileName(fileName, suffix) {
27595
28005
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
27596
28006
  }
27597
28007
 
27598
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
28008
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
27599
28009
  var ShimAdapter = class {
27600
28010
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
27601
28011
  this.delegate = delegate;
@@ -27690,7 +28100,7 @@ var ShimAdapter = class {
27690
28100
  }
27691
28101
  };
27692
28102
 
27693
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
28103
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
27694
28104
  var ShimReferenceTagger = class {
27695
28105
  constructor(shimExtensions) {
27696
28106
  this.tagged = /* @__PURE__ */ new Set();
@@ -27724,7 +28134,7 @@ var ShimReferenceTagger = class {
27724
28134
  }
27725
28135
  };
27726
28136
 
27727
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
28137
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
27728
28138
  var DelegatingCompilerHost = class {
27729
28139
  constructor(delegate) {
27730
28140
  this.delegate = delegate;
@@ -27800,8 +28210,8 @@ var TsCreateProgramDriver = class {
27800
28210
  this.options = options;
27801
28211
  this.shimExtensionPrefixes = shimExtensionPrefixes;
27802
28212
  this.sfMap = /* @__PURE__ */ new Map();
27803
- this.program = this.originalProgram;
27804
28213
  this.supportsInlineOperations = true;
28214
+ this.program = this.originalProgram;
27805
28215
  }
27806
28216
  getProgram() {
27807
28217
  return this.program;
@@ -27837,7 +28247,7 @@ var TsCreateProgramDriver = class {
27837
28247
  }
27838
28248
  };
27839
28249
 
27840
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
28250
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
27841
28251
  var FileDependencyGraph = class {
27842
28252
  constructor() {
27843
28253
  this.nodes = /* @__PURE__ */ new Map();
@@ -27904,7 +28314,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
27904
28314
  return false;
27905
28315
  }
27906
28316
 
27907
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
28317
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
27908
28318
  var IncrementalStateKind;
27909
28319
  (function(IncrementalStateKind2) {
27910
28320
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -27912,7 +28322,7 @@ var IncrementalStateKind;
27912
28322
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
27913
28323
  })(IncrementalStateKind || (IncrementalStateKind = {}));
27914
28324
 
27915
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
28325
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
27916
28326
  var PhaseKind;
27917
28327
  (function(PhaseKind2) {
27918
28328
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -28113,7 +28523,7 @@ function toOriginalSourceFile(sf) {
28113
28523
  }
28114
28524
  }
28115
28525
 
28116
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
28526
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
28117
28527
  var TrackedIncrementalBuildStrategy = class {
28118
28528
  constructor() {
28119
28529
  this.state = null;
@@ -28134,7 +28544,7 @@ var TrackedIncrementalBuildStrategy = class {
28134
28544
  };
28135
28545
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
28136
28546
 
28137
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
28547
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
28138
28548
  var IdentifierKind;
28139
28549
  (function(IdentifierKind2) {
28140
28550
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -28152,7 +28562,7 @@ var AbsoluteSourceSpan2 = class {
28152
28562
  }
28153
28563
  };
28154
28564
 
28155
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
28565
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
28156
28566
  var IndexingContext = class {
28157
28567
  constructor() {
28158
28568
  this.components = /* @__PURE__ */ new Set();
@@ -28162,7 +28572,7 @@ var IndexingContext = class {
28162
28572
  }
28163
28573
  };
28164
28574
 
28165
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
28575
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
28166
28576
  var ExpressionVisitor = class extends RecursiveAstVisitor {
28167
28577
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
28168
28578
  super();
@@ -28398,7 +28808,7 @@ function getTemplateIdentifiers(boundTemplate) {
28398
28808
  return { identifiers: visitor.identifiers, errors: visitor.errors };
28399
28809
  }
28400
28810
 
28401
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
28811
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
28402
28812
  function generateAnalysis(context) {
28403
28813
  const analysis = /* @__PURE__ */ new Map();
28404
28814
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -28434,7 +28844,7 @@ function generateAnalysis(context) {
28434
28844
  return analysis;
28435
28845
  }
28436
28846
 
28437
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
28847
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
28438
28848
  var NgModuleIndexImpl = class {
28439
28849
  constructor(metaReader, localReader) {
28440
28850
  this.metaReader = metaReader;
@@ -28523,7 +28933,7 @@ var NgModuleIndexImpl = class {
28523
28933
  }
28524
28934
  };
28525
28935
 
28526
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
28936
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
28527
28937
  var import_typescript65 = __toESM(require("typescript"), 1);
28528
28938
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
28529
28939
  var RESOURCE_MARKER = ".$ngresource$";
@@ -28671,7 +29081,7 @@ function createLookupResolutionHost(adapter) {
28671
29081
  };
28672
29082
  }
28673
29083
 
28674
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
29084
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
28675
29085
  var StandaloneComponentScopeReader = class {
28676
29086
  constructor(metaReader, localModuleReader, dtsModuleReader) {
28677
29087
  this.metaReader = metaReader;
@@ -28749,21 +29159,21 @@ var StandaloneComponentScopeReader = class {
28749
29159
  }
28750
29160
  };
28751
29161
 
28752
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
29162
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
28753
29163
  var OptimizeFor;
28754
29164
  (function(OptimizeFor2) {
28755
29165
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
28756
29166
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
28757
29167
  })(OptimizeFor || (OptimizeFor = {}));
28758
29168
 
28759
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
29169
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
28760
29170
  var CompletionKind;
28761
29171
  (function(CompletionKind2) {
28762
29172
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
28763
29173
  CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
28764
29174
  })(CompletionKind || (CompletionKind = {}));
28765
29175
 
28766
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
29176
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
28767
29177
  var PotentialImportKind;
28768
29178
  (function(PotentialImportKind2) {
28769
29179
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -28775,7 +29185,7 @@ var PotentialImportMode;
28775
29185
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
28776
29186
  })(PotentialImportMode || (PotentialImportMode = {}));
28777
29187
 
28778
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
29188
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
28779
29189
  var SymbolKind;
28780
29190
  (function(SymbolKind2) {
28781
29191
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -28791,7 +29201,7 @@ var SymbolKind;
28791
29201
  SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
28792
29202
  })(SymbolKind || (SymbolKind = {}));
28793
29203
 
28794
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
29204
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
28795
29205
  var import_typescript66 = __toESM(require("typescript"), 1);
28796
29206
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
28797
29207
  var _a;
@@ -28898,7 +29308,7 @@ function parseTemplateAsSourceFile(fileName, template) {
28898
29308
  return import_typescript66.default.createSourceFile(fileName, template, import_typescript66.default.ScriptTarget.Latest, false, import_typescript66.default.ScriptKind.JSX);
28899
29309
  }
28900
29310
 
28901
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
29311
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
28902
29312
  var TEMPLATE_ID = Symbol("ngTemplateId");
28903
29313
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
28904
29314
  function getTemplateId(clazz) {
@@ -28915,10 +29325,10 @@ function allocateTemplateId(sf) {
28915
29325
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
28916
29326
  }
28917
29327
 
28918
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
29328
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
28919
29329
  var import_typescript68 = __toESM(require("typescript"), 1);
28920
29330
 
28921
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
29331
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
28922
29332
  var import_typescript67 = __toESM(require("typescript"), 1);
28923
29333
  var parseSpanComment = /^(\d+),(\d+)$/;
28924
29334
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -29047,7 +29457,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
29047
29457
  }) || false;
29048
29458
  }
29049
29459
 
29050
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
29460
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
29051
29461
  var CompletionEngine = class {
29052
29462
  constructor(tcb, data, tcbPath, tcbIsShim) {
29053
29463
  this.tcb = tcb;
@@ -29204,10 +29614,10 @@ var CompletionEngine = class {
29204
29614
  }
29205
29615
  };
29206
29616
 
29207
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
29617
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
29208
29618
  var import_typescript83 = __toESM(require("typescript"), 1);
29209
29619
 
29210
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
29620
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
29211
29621
  var import_typescript69 = __toESM(require("typescript"), 1);
29212
29622
  var REGISTRY = new DomElementSchemaRegistry();
29213
29623
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -29259,10 +29669,10 @@ var RegistryDomSchemaChecker = class {
29259
29669
  }
29260
29670
  };
29261
29671
 
29262
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
29672
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
29263
29673
  var import_typescript76 = __toESM(require("typescript"), 1);
29264
29674
 
29265
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
29675
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
29266
29676
  var import_typescript70 = __toESM(require("typescript"), 1);
29267
29677
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
29268
29678
  import_typescript70.default.SyntaxKind.ParenthesizedExpression,
@@ -29336,16 +29746,16 @@ function isAccessExpression(node) {
29336
29746
  return import_typescript70.default.isPropertyAccessExpression(node) || import_typescript70.default.isElementAccessExpression(node);
29337
29747
  }
29338
29748
 
29339
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29749
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29340
29750
  var import_typescript75 = __toESM(require("typescript"), 1);
29341
29751
 
29342
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29752
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29343
29753
  var import_typescript73 = __toESM(require("typescript"), 1);
29344
29754
 
29345
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29755
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29346
29756
  var import_typescript72 = __toESM(require("typescript"), 1);
29347
29757
 
29348
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
29758
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
29349
29759
  var import_typescript71 = __toESM(require("typescript"), 1);
29350
29760
  var INELIGIBLE = {};
29351
29761
  function canEmitType(type, canEmit) {
@@ -29420,7 +29830,7 @@ var TypeEmitter = class {
29420
29830
  }
29421
29831
  };
29422
29832
 
29423
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29833
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29424
29834
  var TypeParameterEmitter = class {
29425
29835
  constructor(typeParameters, reflector) {
29426
29836
  this.typeParameters = typeParameters;
@@ -29497,7 +29907,7 @@ var TypeParameterEmitter = class {
29497
29907
  }
29498
29908
  };
29499
29909
 
29500
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29910
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29501
29911
  var TcbInliningRequirement;
29502
29912
  (function(TcbInliningRequirement2) {
29503
29913
  TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
@@ -29577,7 +29987,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
29577
29987
  return emitter.canEmit((ref) => env.canReferenceType(ref));
29578
29988
  }
29579
29989
 
29580
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29990
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29581
29991
  function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
29582
29992
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
29583
29993
  const rawType = import_typescript75.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -29689,7 +30099,7 @@ function typeParametersWithDefaultTypes(params) {
29689
30099
  });
29690
30100
  }
29691
30101
 
29692
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
30102
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
29693
30103
  var Environment = class {
29694
30104
  constructor(config, importManager, refEmitter, reflector, contextFile) {
29695
30105
  this.config = config;
@@ -29781,7 +30191,7 @@ var Environment = class {
29781
30191
  }
29782
30192
  };
29783
30193
 
29784
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
30194
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
29785
30195
  var import_typescript77 = __toESM(require("typescript"), 1);
29786
30196
  var OutOfBandDiagnosticRecorderImpl = class {
29787
30197
  constructor(resolver) {
@@ -29904,6 +30314,10 @@ Consider enabling the 'strictTemplates' option in your tsconfig.json for better
29904
30314
  }
29905
30315
  this._diagnostics.push(makeTemplateDiagnostic(templateId, mapping, input.keySpan, import_typescript77.default.DiagnosticCategory.Error, ngErrorCode(ErrorCode.SPLIT_TWO_WAY_BINDING), errorMsg, relatedMessages));
29906
30316
  }
30317
+ missingRequiredInputs(templateId, element, directiveName, isComponent, inputAliases) {
30318
+ const message = `Required input${inputAliases.length === 1 ? "" : "s"} ${inputAliases.map((n) => `'${n}'`).join(", ")} from ${isComponent ? "component" : "directive"} ${directiveName} must be specified.`;
30319
+ this._diagnostics.push(makeTemplateDiagnostic(templateId, this.resolver.getSourceMapping(templateId), element.startSourceSpan, import_typescript77.default.DiagnosticCategory.Error, ngErrorCode(ErrorCode.MISSING_REQUIRED_INPUTS), message));
30320
+ }
29907
30321
  };
29908
30322
  function makeInlineDiagnostic(templateId, code, node, messageText, relatedInformation) {
29909
30323
  return __spreadProps(__spreadValues({}, makeDiagnostic(code, node, messageText, relatedInformation)), {
@@ -29912,7 +30326,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
29912
30326
  });
29913
30327
  }
29914
30328
 
29915
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
30329
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
29916
30330
  var import_typescript78 = __toESM(require("typescript"), 1);
29917
30331
  var TypeCheckShimGenerator = class {
29918
30332
  constructor() {
@@ -29930,10 +30344,10 @@ var TypeCheckShimGenerator = class {
29930
30344
  }
29931
30345
  };
29932
30346
 
29933
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
30347
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
29934
30348
  var import_typescript81 = __toESM(require("typescript"), 1);
29935
30349
 
29936
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
30350
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
29937
30351
  var import_typescript79 = __toESM(require("typescript"), 1);
29938
30352
  function wrapForDiagnostics(expr) {
29939
30353
  return import_typescript79.default.factory.createParenthesizedExpression(expr);
@@ -29978,7 +30392,7 @@ function translateDiagnostic(diagnostic, resolver) {
29978
30392
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
29979
30393
  }
29980
30394
 
29981
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
30395
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
29982
30396
  var import_typescript80 = __toESM(require("typescript"), 1);
29983
30397
  var NULL_AS_ANY = import_typescript80.default.factory.createAsExpression(import_typescript80.default.factory.createNull(), import_typescript80.default.factory.createKeywordTypeNode(import_typescript80.default.SyntaxKind.AnyKeyword));
29984
30398
  var UNDEFINED = import_typescript80.default.factory.createIdentifier("undefined");
@@ -30236,9 +30650,9 @@ var AstTranslator = class {
30236
30650
  return tsCastToAny(import_typescript80.default.factory.createCallExpression(import_typescript80.default.factory.createNonNullExpression(expr), void 0, args));
30237
30651
  }
30238
30652
  };
30239
- var VeSafeLhsInferenceBugDetector = class {
30653
+ var _VeSafeLhsInferenceBugDetector = class {
30240
30654
  static veWillInferAnyFor(ast) {
30241
- const visitor = VeSafeLhsInferenceBugDetector.SINGLETON;
30655
+ const visitor = _VeSafeLhsInferenceBugDetector.SINGLETON;
30242
30656
  return ast instanceof Call ? ast.visit(visitor) : ast.receiver.visit(visitor);
30243
30657
  }
30244
30658
  visitUnary(ast) {
@@ -30305,9 +30719,12 @@ var VeSafeLhsInferenceBugDetector = class {
30305
30719
  return false;
30306
30720
  }
30307
30721
  };
30308
- VeSafeLhsInferenceBugDetector.SINGLETON = new VeSafeLhsInferenceBugDetector();
30722
+ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
30723
+ (() => {
30724
+ _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
30725
+ })();
30309
30726
 
30310
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
30727
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
30311
30728
  var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
30312
30729
  constructor(templateId, boundTarget, oob) {
30313
30730
  super();
@@ -30330,7 +30747,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
30330
30747
  }
30331
30748
  };
30332
30749
 
30333
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
30750
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
30334
30751
  var TcbGenericContextBehavior;
30335
30752
  (function(TcbGenericContextBehavior2) {
30336
30753
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -30634,22 +31051,17 @@ var TcbDirectiveCtorOp = class extends TcbOp {
30634
31051
  addExpressionIdentifier(id, ExpressionIdentifier.DIRECTIVE);
30635
31052
  addParseSpanInfo(id, this.node.startSourceSpan || this.node.sourceSpan);
30636
31053
  const genericInputs = /* @__PURE__ */ new Map();
30637
- const inputs = getBoundInputs(this.dir, this.node, this.tcb);
30638
- for (const input of inputs) {
30639
- if (!this.tcb.env.config.checkTypeOfAttributes && input.attribute instanceof TextAttribute) {
31054
+ const boundAttrs = getBoundAttributes(this.dir, this.node);
31055
+ for (const attr of boundAttrs) {
31056
+ if (!this.tcb.env.config.checkTypeOfAttributes && attr.attribute instanceof TextAttribute) {
30640
31057
  continue;
30641
31058
  }
30642
- for (const fieldName of input.fieldNames) {
31059
+ for (const { fieldName } of attr.inputs) {
30643
31060
  if (genericInputs.has(fieldName)) {
30644
31061
  continue;
30645
31062
  }
30646
- const expression = translateInput(input.attribute, this.tcb, this.scope);
30647
- genericInputs.set(fieldName, {
30648
- type: "binding",
30649
- field: fieldName,
30650
- expression,
30651
- sourceSpan: input.attribute.sourceSpan
30652
- });
31063
+ const expression = translateInput(attr.attribute, this.tcb, this.scope);
31064
+ genericInputs.set(fieldName, { type: "binding", field: fieldName, expression, sourceSpan: attr.attribute.sourceSpan });
30653
31065
  }
30654
31066
  }
30655
31067
  for (const { classPropertyName } of this.dir.inputs) {
@@ -30679,12 +31091,16 @@ var TcbDirectiveInputsOp = class extends TcbOp {
30679
31091
  }
30680
31092
  execute() {
30681
31093
  let dirId = null;
30682
- const inputs = getBoundInputs(this.dir, this.node, this.tcb);
30683
- for (const input of inputs) {
30684
- const expr = widenBinding(translateInput(input.attribute, this.tcb, this.scope), this.tcb);
31094
+ const boundAttrs = getBoundAttributes(this.dir, this.node);
31095
+ const seenRequiredInputs = /* @__PURE__ */ new Set();
31096
+ for (const attr of boundAttrs) {
31097
+ const expr = widenBinding(translateInput(attr.attribute, this.tcb, this.scope), this.tcb);
30685
31098
  let assignment = wrapForDiagnostics(expr);
30686
- for (const fieldName of input.fieldNames) {
31099
+ for (const { fieldName, required } of attr.inputs) {
30687
31100
  let target;
31101
+ if (required) {
31102
+ seenRequiredInputs.add(fieldName);
31103
+ }
30688
31104
  if (this.dir.coercedInputFields.has(fieldName)) {
30689
31105
  const dirTypeRef = this.tcb.env.referenceType(this.dir.ref);
30690
31106
  if (!import_typescript81.default.isTypeReferenceNode(dirTypeRef)) {
@@ -30715,19 +31131,31 @@ var TcbDirectiveInputsOp = class extends TcbOp {
30715
31131
  }
30716
31132
  target = this.dir.stringLiteralInputFields.has(fieldName) ? import_typescript81.default.factory.createElementAccessExpression(dirId, import_typescript81.default.factory.createStringLiteral(fieldName)) : import_typescript81.default.factory.createPropertyAccessExpression(dirId, import_typescript81.default.factory.createIdentifier(fieldName));
30717
31133
  }
30718
- if (input.attribute.keySpan !== void 0) {
30719
- addParseSpanInfo(target, input.attribute.keySpan);
31134
+ if (attr.attribute.keySpan !== void 0) {
31135
+ addParseSpanInfo(target, attr.attribute.keySpan);
30720
31136
  }
30721
31137
  assignment = import_typescript81.default.factory.createBinaryExpression(target, import_typescript81.default.SyntaxKind.EqualsToken, assignment);
30722
31138
  }
30723
- addParseSpanInfo(assignment, input.attribute.sourceSpan);
30724
- if (!this.tcb.env.config.checkTypeOfAttributes && input.attribute instanceof TextAttribute) {
31139
+ addParseSpanInfo(assignment, attr.attribute.sourceSpan);
31140
+ if (!this.tcb.env.config.checkTypeOfAttributes && attr.attribute instanceof TextAttribute) {
30725
31141
  markIgnoreDiagnostics(assignment);
30726
31142
  }
30727
31143
  this.scope.addStatement(import_typescript81.default.factory.createExpressionStatement(assignment));
30728
31144
  }
31145
+ this.checkRequiredInputs(seenRequiredInputs);
30729
31146
  return null;
30730
31147
  }
31148
+ checkRequiredInputs(seenRequiredInputs) {
31149
+ const missing = [];
31150
+ for (const input of this.dir.inputs) {
31151
+ if (input.required && !seenRequiredInputs.has(input.classPropertyName)) {
31152
+ missing.push(input.bindingPropertyName);
31153
+ }
31154
+ }
31155
+ if (missing.length > 0) {
31156
+ this.tcb.oobRecorder.missingRequiredInputs(this.tcb.id, this.node, this.dir.name, this.dir.isComponent, missing);
31157
+ }
31158
+ }
30731
31159
  };
30732
31160
  var TcbDirectiveCtorCircularFallbackOp = class extends TcbOp {
30733
31161
  constructor(tcb, scope, node, dir) {
@@ -31326,18 +31754,19 @@ function tcbCallTypeCtor(dir, tcb, inputs) {
31326
31754
  [import_typescript81.default.factory.createObjectLiteralExpression(members)]
31327
31755
  );
31328
31756
  }
31329
- function getBoundInputs(directive, node, tcb) {
31757
+ function getBoundAttributes(directive, node) {
31330
31758
  const boundInputs = [];
31331
31759
  const processAttribute = (attr) => {
31332
31760
  if (attr instanceof BoundAttribute && attr.type !== 0) {
31333
31761
  return;
31334
31762
  }
31335
31763
  const inputs = directive.inputs.getByBindingPropertyName(attr.name);
31336
- if (inputs === null) {
31337
- return;
31764
+ if (inputs !== null) {
31765
+ boundInputs.push({
31766
+ attribute: attr,
31767
+ inputs: inputs.map((input) => ({ fieldName: input.classPropertyName, required: input.required }))
31768
+ });
31338
31769
  }
31339
- const fieldNames = inputs.map((input) => input.classPropertyName);
31340
- boundInputs.push({ attribute: attr, fieldNames });
31341
31770
  };
31342
31771
  node.inputs.forEach(processAttribute);
31343
31772
  node.attributes.forEach(processAttribute);
@@ -31433,7 +31862,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
31433
31862
  }
31434
31863
  };
31435
31864
 
31436
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
31865
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
31437
31866
  var import_typescript82 = __toESM(require("typescript"), 1);
31438
31867
  var TypeCheckFile = class extends Environment {
31439
31868
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -31469,7 +31898,7 @@ var TypeCheckFile = class extends Environment {
31469
31898
  }
31470
31899
  };
31471
31900
 
31472
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
31901
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
31473
31902
  var InliningMode;
31474
31903
  (function(InliningMode2) {
31475
31904
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -31707,7 +32136,7 @@ function splitStringAtPoints(str, points) {
31707
32136
  return splits;
31708
32137
  }
31709
32138
 
31710
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
32139
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
31711
32140
  var LF_CHAR = 10;
31712
32141
  var CR_CHAR = 13;
31713
32142
  var LINE_SEP_CHAR = 8232;
@@ -31748,7 +32177,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
31748
32177
  return low - 1;
31749
32178
  }
31750
32179
 
31751
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
32180
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
31752
32181
  var TemplateSource = class {
31753
32182
  constructor(mapping, file) {
31754
32183
  this.mapping = mapping;
@@ -31799,7 +32228,7 @@ var TemplateSourceManager = class {
31799
32228
  }
31800
32229
  };
31801
32230
 
31802
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
32231
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
31803
32232
  var import_typescript84 = __toESM(require("typescript"), 1);
31804
32233
  var SymbolBuilder = class {
31805
32234
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -32276,7 +32705,7 @@ function sourceSpanEqual(a, b) {
32276
32705
  return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
32277
32706
  }
32278
32707
 
32279
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
32708
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
32280
32709
  var REGISTRY2 = new DomElementSchemaRegistry();
32281
32710
  var TemplateTypeCheckerImpl = class {
32282
32711
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -32969,7 +33398,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
32969
33398
  }
32970
33399
  };
32971
33400
 
32972
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
33401
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
32973
33402
  var TemplateCheckWithVisitor = class {
32974
33403
  run(ctx, component, template) {
32975
33404
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -33045,7 +33474,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor {
33045
33474
  }
33046
33475
  };
33047
33476
 
33048
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
33477
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
33049
33478
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
33050
33479
  constructor() {
33051
33480
  super(...arguments);
@@ -33070,7 +33499,7 @@ var factory = {
33070
33499
  create: () => new InvalidBananaInBoxCheck()
33071
33500
  };
33072
33501
 
33073
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
33502
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
33074
33503
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
33075
33504
  ["ngIf", "NgIf"],
33076
33505
  ["ngFor", "NgFor"],
@@ -33114,7 +33543,7 @@ var factory2 = {
33114
33543
  }
33115
33544
  };
33116
33545
 
33117
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
33546
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
33118
33547
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
33119
33548
  constructor() {
33120
33549
  super(...arguments);
@@ -33146,7 +33575,7 @@ var factory3 = {
33146
33575
  create: () => new MissingNgForOfLetCheck()
33147
33576
  };
33148
33577
 
33149
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
33578
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
33150
33579
  var import_typescript87 = __toESM(require("typescript"), 1);
33151
33580
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
33152
33581
  constructor() {
@@ -33190,7 +33619,7 @@ var factory4 = {
33190
33619
  }
33191
33620
  };
33192
33621
 
33193
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
33622
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
33194
33623
  var import_typescript88 = __toESM(require("typescript"), 1);
33195
33624
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
33196
33625
  constructor() {
@@ -33235,7 +33664,7 @@ var factory5 = {
33235
33664
  }
33236
33665
  };
33237
33666
 
33238
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
33667
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
33239
33668
  var STYLE_SUFFIXES = ["px", "%", "em"];
33240
33669
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
33241
33670
  constructor() {
@@ -33258,7 +33687,7 @@ var factory6 = {
33258
33687
  create: () => new SuffixNotSupportedCheck()
33259
33688
  };
33260
33689
 
33261
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
33690
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
33262
33691
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
33263
33692
  constructor() {
33264
33693
  super(...arguments);
@@ -33296,10 +33725,10 @@ var factory7 = {
33296
33725
  create: () => new TextAttributeNotBindingSpec()
33297
33726
  };
33298
33727
 
33299
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33728
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33300
33729
  var import_typescript89 = __toESM(require("typescript"), 1);
33301
33730
 
33302
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
33731
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
33303
33732
  var DiagnosticCategoryLabel;
33304
33733
  (function(DiagnosticCategoryLabel2) {
33305
33734
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -33307,7 +33736,7 @@ var DiagnosticCategoryLabel;
33307
33736
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
33308
33737
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
33309
33738
 
33310
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33739
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33311
33740
  var ExtendedTemplateCheckerImpl = class {
33312
33741
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
33313
33742
  var _a, _b, _c, _d, _e;
@@ -33359,7 +33788,7 @@ function assertNever(value) {
33359
33788
  ${value}`);
33360
33789
  }
33361
33790
 
33362
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
33791
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
33363
33792
  var ALL_DIAGNOSTIC_FACTORIES = [
33364
33793
  factory,
33365
33794
  factory4,
@@ -33370,7 +33799,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
33370
33799
  factory6
33371
33800
  ];
33372
33801
 
33373
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
33802
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
33374
33803
  var CompilationTicketKind;
33375
33804
  (function(CompilationTicketKind2) {
33376
33805
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -34057,7 +34486,7 @@ function versionMapFromProgram(program, driver) {
34057
34486
  return versions;
34058
34487
  }
34059
34488
 
34060
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
34489
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
34061
34490
  var import_typescript92 = __toESM(require("typescript"), 1);
34062
34491
  var DelegatingCompilerHost2 = class {
34063
34492
  constructor(delegate) {
@@ -34190,7 +34619,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
34190
34619
  }
34191
34620
  };
34192
34621
 
34193
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
34622
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
34194
34623
  var NgtscProgram = class {
34195
34624
  constructor(rootNames, options, delegateHost, oldProgram) {
34196
34625
  this.options = options;
@@ -34408,21 +34837,21 @@ function mergeEmitResults(emitResults) {
34408
34837
  return { diagnostics, emitSkipped, emittedFiles };
34409
34838
  }
34410
34839
 
34411
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
34840
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
34412
34841
  function createProgram({ rootNames, options, host, oldProgram }) {
34413
34842
  return new NgtscProgram(rootNames, options, host, oldProgram);
34414
34843
  }
34415
34844
 
34416
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
34845
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
34417
34846
  var import_typescript96 = __toESM(require("typescript"), 1);
34418
34847
 
34419
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
34848
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
34420
34849
  var import_typescript95 = __toESM(require("typescript"), 1);
34421
34850
 
34422
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
34851
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
34423
34852
  var import_typescript97 = __toESM(require("typescript"), 1);
34424
34853
 
34425
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
34854
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
34426
34855
  var GLOBAL_DEFS_FOR_TERSER = {
34427
34856
  ngDevMode: false,
34428
34857
  ngI18nClosureMode: false
@@ -34431,7 +34860,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
34431
34860
  ngJitMode: false
34432
34861
  });
34433
34862
 
34434
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
34863
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
34435
34864
  var LogLevel;
34436
34865
  (function(LogLevel2) {
34437
34866
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -34440,7 +34869,7 @@ var LogLevel;
34440
34869
  LogLevel2[LogLevel2["error"] = 3] = "error";
34441
34870
  })(LogLevel || (LogLevel = {}));
34442
34871
 
34443
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
34872
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
34444
34873
  var RESET = "\x1B[0m";
34445
34874
  var RED = "\x1B[31m";
34446
34875
  var YELLOW = "\x1B[33m";
@@ -34449,29 +34878,31 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
34449
34878
  var WARN = `${YELLOW}Warning:${RESET}`;
34450
34879
  var ERROR = `${RED}Error:${RESET}`;
34451
34880
 
34452
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
34881
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
34453
34882
  setFileSystem(new NodeJSFileSystem());
34454
34883
 
34455
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
34884
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
34456
34885
  var import_fs2 = require("fs");
34457
34886
  var import_path8 = require("path");
34458
34887
  var import_typescript110 = __toESM(require("typescript"), 1);
34459
34888
 
34460
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
34889
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
34461
34890
  var import_typescript99 = __toESM(require("typescript"), 1);
34462
34891
 
34463
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
34892
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
34464
34893
  var import_path4 = require("path");
34465
34894
  var import_typescript98 = __toESM(require("typescript"), 1);
34466
34895
  var ImportManager2 = class {
34467
34896
  constructor(getUpdateRecorder, printer) {
34897
+ __publicField(this, "getUpdateRecorder");
34898
+ __publicField(this, "printer");
34899
+ __publicField(this, "updatedImports", /* @__PURE__ */ new Map());
34900
+ __publicField(this, "usedIdentifierNames", /* @__PURE__ */ new Map());
34901
+ __publicField(this, "newImports", /* @__PURE__ */ new Map());
34902
+ __publicField(this, "quoteStyles", {});
34903
+ __publicField(this, "importCache", []);
34468
34904
  this.getUpdateRecorder = getUpdateRecorder;
34469
34905
  this.printer = printer;
34470
- this.updatedImports = /* @__PURE__ */ new Map();
34471
- this.usedIdentifierNames = /* @__PURE__ */ new Map();
34472
- this.newImports = /* @__PURE__ */ new Map();
34473
- this.quoteStyles = {};
34474
- this.importCache = [];
34475
34906
  }
34476
34907
  addImportToSourceFile(sourceFile, symbolName, moduleName, alias = null, typeImport = false) {
34477
34908
  const sourceDir = (0, import_path4.dirname)(sourceFile.fileName);
@@ -34642,12 +35073,15 @@ ${text}`;
34642
35073
  }
34643
35074
  };
34644
35075
 
34645
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
35076
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
34646
35077
  var ChangeTracker = class {
34647
35078
  constructor(_printer, _importRemapper) {
35079
+ __publicField(this, "_printer");
35080
+ __publicField(this, "_importRemapper");
35081
+ __publicField(this, "_changes", /* @__PURE__ */ new Map());
35082
+ __publicField(this, "_importManager");
34648
35083
  this._printer = _printer;
34649
35084
  this._importRemapper = _importRemapper;
34650
- this._changes = /* @__PURE__ */ new Map();
34651
35085
  this._importManager = new ImportManager2((currentFile) => ({
34652
35086
  addNewImport: (start, text) => this.insertText(currentFile, start, text),
34653
35087
  updateExistingImport: (namedBindings, text) => this.replaceText(currentFile, namedBindings.getStart(), namedBindings.getWidth(), text)
@@ -34695,7 +35129,7 @@ function normalizePath(path3) {
34695
35129
  return path3.replace(/\\/g, "/");
34696
35130
  }
34697
35131
 
34698
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
35132
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
34699
35133
  var import_core13 = require("@angular-devkit/core");
34700
35134
  function getProjectTsConfigPaths(tree) {
34701
35135
  return __async(this, null, function* () {
@@ -34775,11 +35209,11 @@ function getWorkspace(tree) {
34775
35209
  });
34776
35210
  }
34777
35211
 
34778
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
35212
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
34779
35213
  var import_path5 = require("path");
34780
35214
  var import_typescript101 = __toESM(require("typescript"), 1);
34781
35215
 
34782
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
35216
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
34783
35217
  var path2 = __toESM(require("path"), 1);
34784
35218
  var import_typescript100 = __toESM(require("typescript"), 1);
34785
35219
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -34796,7 +35230,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
34796
35230
  return import_typescript100.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
34797
35231
  }
34798
35232
 
34799
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
35233
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
34800
35234
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
34801
35235
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
34802
35236
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -34825,13 +35259,13 @@ function canMigrateFile(basePath, sourceFile, program) {
34825
35259
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
34826
35260
  }
34827
35261
 
34828
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
35262
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
34829
35263
  var import_typescript106 = __toESM(require("typescript"), 1);
34830
35264
 
34831
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
35265
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
34832
35266
  var import_typescript103 = __toESM(require("typescript"), 1);
34833
35267
 
34834
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
35268
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
34835
35269
  var import_typescript102 = __toESM(require("typescript"), 1);
34836
35270
  function getImportOfIdentifier(typeChecker, node) {
34837
35271
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -34854,19 +35288,26 @@ function getImportOfIdentifier(typeChecker, node) {
34854
35288
  }
34855
35289
  function getImportSpecifier(sourceFile, moduleName, specifierName) {
34856
35290
  var _a;
35291
+ return (_a = getImportSpecifiers(sourceFile, moduleName, [specifierName])[0]) != null ? _a : null;
35292
+ }
35293
+ function getImportSpecifiers(sourceFile, moduleName, specifierNames) {
35294
+ var _a;
35295
+ const matches = [];
34857
35296
  for (const node of sourceFile.statements) {
34858
35297
  if (import_typescript102.default.isImportDeclaration(node) && import_typescript102.default.isStringLiteral(node.moduleSpecifier)) {
34859
35298
  const isMatch = typeof moduleName === "string" ? node.moduleSpecifier.text === moduleName : moduleName.test(node.moduleSpecifier.text);
34860
35299
  const namedBindings = (_a = node.importClause) == null ? void 0 : _a.namedBindings;
34861
35300
  if (isMatch && namedBindings && import_typescript102.default.isNamedImports(namedBindings)) {
34862
- const match = findImportSpecifier(namedBindings.elements, specifierName);
34863
- if (match) {
34864
- return match;
35301
+ for (const specifierName of specifierNames) {
35302
+ const match = findImportSpecifier(namedBindings.elements, specifierName);
35303
+ if (match) {
35304
+ matches.push(match);
35305
+ }
34865
35306
  }
34866
35307
  }
34867
35308
  }
34868
35309
  }
34869
- return null;
35310
+ return matches;
34870
35311
  }
34871
35312
  function findImportSpecifier(nodes, specifierName) {
34872
35313
  return nodes.find((element) => {
@@ -34875,7 +35316,7 @@ function findImportSpecifier(nodes, specifierName) {
34875
35316
  });
34876
35317
  }
34877
35318
 
34878
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
35319
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
34879
35320
  function getCallDecoratorImport(typeChecker, decorator) {
34880
35321
  if (!import_typescript103.default.isCallExpression(decorator.expression) || !import_typescript103.default.isIdentifier(decorator.expression.expression)) {
34881
35322
  return null;
@@ -34884,7 +35325,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
34884
35325
  return getImportOfIdentifier(typeChecker, identifier);
34885
35326
  }
34886
35327
 
34887
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
35328
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
34888
35329
  function getAngularDecorators(typeChecker, decorators) {
34889
35330
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
34890
35331
  node,
@@ -34894,7 +35335,7 @@ function getAngularDecorators(typeChecker, decorators) {
34894
35335
  }));
34895
35336
  }
34896
35337
 
34897
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
35338
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
34898
35339
  var import_typescript104 = __toESM(require("typescript"), 1);
34899
35340
  function closestNode(node, predicate) {
34900
35341
  let current = node.parent;
@@ -34907,12 +35348,12 @@ function closestNode(node, predicate) {
34907
35348
  return null;
34908
35349
  }
34909
35350
 
34910
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
35351
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
34911
35352
  var import_path6 = require("path");
34912
35353
  var import_typescript105 = __toESM(require("typescript"), 1);
34913
35354
  var UniqueItemTracker = class {
34914
35355
  constructor() {
34915
- this._nodes = /* @__PURE__ */ new Map();
35356
+ __publicField(this, "_nodes", /* @__PURE__ */ new Map());
34916
35357
  }
34917
35358
  track(key, item) {
34918
35359
  const set = this._nodes.get(key);
@@ -34931,12 +35372,18 @@ var UniqueItemTracker = class {
34931
35372
  };
34932
35373
  var ReferenceResolver = class {
34933
35374
  constructor(_program, _host, _rootFileNames, _basePath, _excludedFiles) {
35375
+ __publicField(this, "_program");
35376
+ __publicField(this, "_host");
35377
+ __publicField(this, "_rootFileNames");
35378
+ __publicField(this, "_basePath");
35379
+ __publicField(this, "_excludedFiles");
35380
+ __publicField(this, "_languageService");
35381
+ __publicField(this, "_tempOnlyFile", null);
34934
35382
  this._program = _program;
34935
35383
  this._host = _host;
34936
35384
  this._rootFileNames = _rootFileNames;
34937
35385
  this._basePath = _basePath;
34938
35386
  this._excludedFiles = _excludedFiles;
34939
- this._tempOnlyFile = null;
34940
35387
  }
34941
35388
  findReferencesInProject(node) {
34942
35389
  const languageService = this._getLanguageService();
@@ -35077,7 +35524,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
35077
35524
  }));
35078
35525
  }
35079
35526
 
35080
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
35527
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
35081
35528
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
35082
35529
  const filesToRemove = /* @__PURE__ */ new Set();
35083
35530
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -35165,7 +35612,7 @@ function collectRemovalLocations(ngModule, removalLocations, referenceResolver,
35165
35612
  function removeArrayReferences(locations, tracker) {
35166
35613
  for (const [array, toRemove] of locations.getEntries()) {
35167
35614
  const newElements = filterRemovedElements(array.elements, toRemove);
35168
- tracker.replaceNode(array, import_typescript106.default.factory.updateArrayLiteralExpression(array, newElements));
35615
+ tracker.replaceNode(array, import_typescript106.default.factory.updateArrayLiteralExpression(array, import_typescript106.default.factory.createNodeArray(newElements, array.elements.hasTrailingComma)));
35169
35616
  }
35170
35617
  }
35171
35618
  function removeImportReferences(locations, tracker) {
@@ -35276,14 +35723,14 @@ function findNgModuleDecorator(node, typeChecker) {
35276
35723
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
35277
35724
  }
35278
35725
 
35279
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
35726
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
35280
35727
  var import_path7 = require("path");
35281
35728
  var import_typescript109 = __toESM(require("typescript"), 1);
35282
35729
 
35283
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35730
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35284
35731
  var import_typescript108 = __toESM(require("typescript"), 1);
35285
35732
 
35286
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
35733
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
35287
35734
  var import_typescript107 = __toESM(require("typescript"), 1);
35288
35735
  function isReferenceToImport(typeChecker, node, importSpecifier) {
35289
35736
  var _a, _b;
@@ -35292,7 +35739,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
35292
35739
  return !!(((_a = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a[0]) && ((_b = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
35293
35740
  }
35294
35741
 
35295
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35742
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35296
35743
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
35297
35744
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
35298
35745
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -35323,13 +35770,18 @@ function toStandalone(sourceFiles, program, printer, fileImportRemapper, compone
35323
35770
  return tracker.recordChanges();
35324
35771
  }
35325
35772
  function convertNgModuleDeclarationToStandalone(decl, allDeclarations, tracker, typeChecker, importRemapper) {
35773
+ var _a;
35326
35774
  const directiveMeta = typeChecker.getDirectiveMetadata(decl);
35327
35775
  if (directiveMeta && directiveMeta.decorator && !directiveMeta.isStandalone) {
35328
35776
  let decorator = addStandaloneToDecorator(directiveMeta.decorator);
35329
35777
  if (directiveMeta.isComponent) {
35330
35778
  const importsToAdd = getComponentImportExpressions(decl, allDeclarations, tracker, typeChecker, importRemapper);
35331
35779
  if (importsToAdd.length > 0) {
35332
- decorator = addPropertyToAngularDecorator(decorator, import_typescript108.default.factory.createPropertyAssignment("imports", import_typescript108.default.factory.createArrayLiteralExpression(importsToAdd)));
35780
+ const hasTrailingComma = importsToAdd.length > 2 && !!((_a = extractMetadataLiteral(directiveMeta.decorator)) == null ? void 0 : _a.properties.hasTrailingComma);
35781
+ decorator = addPropertyToAngularDecorator(decorator, import_typescript108.default.factory.createPropertyAssignment("imports", import_typescript108.default.factory.createArrayLiteralExpression(
35782
+ import_typescript108.default.factory.createNodeArray(importsToAdd, hasTrailingComma),
35783
+ hasTrailingComma
35784
+ )));
35333
35785
  }
35334
35786
  }
35335
35787
  tracker.replaceNode(directiveMeta.decorator, decorator);
@@ -35388,6 +35840,7 @@ function moveDeclarationsToImports(literal3, allDeclarations, typeChecker, templ
35388
35840
  const declarationsToCopy = [];
35389
35841
  const properties = [];
35390
35842
  const importsProp = findLiteralProperty(literal3, "imports");
35843
+ const hasAnyArrayTrailingComma = literal3.properties.some((prop) => import_typescript108.default.isPropertyAssignment(prop) && import_typescript108.default.isArrayLiteralExpression(prop.initializer) && prop.initializer.elements.hasTrailingComma);
35391
35844
  if (import_typescript108.default.isPropertyAssignment(declarationsProp)) {
35392
35845
  if (import_typescript108.default.isArrayLiteralExpression(declarationsProp.initializer)) {
35393
35846
  for (const el of declarationsProp.initializer.elements) {
@@ -35407,7 +35860,7 @@ function moveDeclarationsToImports(literal3, allDeclarations, typeChecker, templ
35407
35860
  }
35408
35861
  }
35409
35862
  if (!importsProp && declarationsToCopy.length > 0) {
35410
- properties.push(import_typescript108.default.factory.createPropertyAssignment("imports", import_typescript108.default.factory.createArrayLiteralExpression(declarationsToCopy)));
35863
+ properties.push(import_typescript108.default.factory.createPropertyAssignment("imports", import_typescript108.default.factory.createArrayLiteralExpression(import_typescript108.default.factory.createNodeArray(declarationsToCopy, hasAnyArrayTrailingComma && declarationsToCopy.length > 2))));
35411
35864
  }
35412
35865
  for (const prop of literal3.properties) {
35413
35866
  if (!isNamedPropertyAssignment(prop)) {
@@ -35416,23 +35869,27 @@ function moveDeclarationsToImports(literal3, allDeclarations, typeChecker, templ
35416
35869
  }
35417
35870
  if (prop === declarationsProp) {
35418
35871
  if (declarationsToPreserve.length > 0) {
35419
- properties.push(import_typescript108.default.factory.updatePropertyAssignment(prop, prop.name, import_typescript108.default.factory.createArrayLiteralExpression(declarationsToPreserve)));
35872
+ const hasTrailingComma = import_typescript108.default.isArrayLiteralExpression(prop.initializer) ? prop.initializer.elements.hasTrailingComma : hasAnyArrayTrailingComma;
35873
+ properties.push(import_typescript108.default.factory.updatePropertyAssignment(prop, prop.name, import_typescript108.default.factory.createArrayLiteralExpression(import_typescript108.default.factory.createNodeArray(declarationsToPreserve, hasTrailingComma && declarationsToPreserve.length > 2))));
35420
35874
  }
35421
35875
  continue;
35422
35876
  }
35423
35877
  if (prop === importsProp && declarationsToCopy.length > 0) {
35424
35878
  let initializer;
35425
35879
  if (import_typescript108.default.isArrayLiteralExpression(prop.initializer)) {
35426
- initializer = import_typescript108.default.factory.updateArrayLiteralExpression(prop.initializer, [...prop.initializer.elements, ...declarationsToCopy]);
35880
+ initializer = import_typescript108.default.factory.updateArrayLiteralExpression(prop.initializer, import_typescript108.default.factory.createNodeArray([...prop.initializer.elements, ...declarationsToCopy], prop.initializer.elements.hasTrailingComma));
35427
35881
  } else {
35428
- initializer = import_typescript108.default.factory.createArrayLiteralExpression([import_typescript108.default.factory.createSpreadElement(prop.initializer), ...declarationsToCopy]);
35882
+ initializer = import_typescript108.default.factory.createArrayLiteralExpression(import_typescript108.default.factory.createNodeArray(
35883
+ [import_typescript108.default.factory.createSpreadElement(prop.initializer), ...declarationsToCopy],
35884
+ hasAnyArrayTrailingComma && declarationsToCopy.length > 1
35885
+ ));
35429
35886
  }
35430
35887
  properties.push(import_typescript108.default.factory.updatePropertyAssignment(prop, prop.name, initializer));
35431
35888
  continue;
35432
35889
  }
35433
35890
  properties.push(prop);
35434
35891
  }
35435
- tracker.replaceNode(literal3, import_typescript108.default.factory.updateObjectLiteralExpression(literal3, properties), import_typescript108.default.EmitHint.Expression);
35892
+ tracker.replaceNode(literal3, import_typescript108.default.factory.updateObjectLiteralExpression(literal3, import_typescript108.default.factory.createNodeArray(properties, literal3.properties.hasTrailingComma)), import_typescript108.default.EmitHint.Expression);
35436
35893
  }
35437
35894
  function addStandaloneToDecorator(node) {
35438
35895
  return addPropertyToAngularDecorator(node, import_typescript108.default.factory.createPropertyAssignment("standalone", import_typescript108.default.factory.createToken(import_typescript108.default.SyntaxKind.TrueKeyword)));
@@ -35442,14 +35899,16 @@ function addPropertyToAngularDecorator(node, property) {
35442
35899
  return node;
35443
35900
  }
35444
35901
  let literalProperties;
35902
+ let hasTrailingComma = false;
35445
35903
  if (node.expression.arguments.length === 0) {
35446
35904
  literalProperties = [property];
35447
35905
  } else if (import_typescript108.default.isObjectLiteralExpression(node.expression.arguments[0])) {
35906
+ hasTrailingComma = node.expression.arguments[0].properties.hasTrailingComma;
35448
35907
  literalProperties = [...node.expression.arguments[0].properties, property];
35449
35908
  } else {
35450
35909
  return node;
35451
35910
  }
35452
- return import_typescript108.default.factory.createDecorator(import_typescript108.default.factory.createCallExpression(node.expression.expression, node.expression.typeArguments, [import_typescript108.default.factory.createObjectLiteralExpression(literalProperties, literalProperties.length > 1)]));
35911
+ return import_typescript108.default.factory.createDecorator(import_typescript108.default.factory.createCallExpression(node.expression.expression, node.expression.typeArguments, [import_typescript108.default.factory.createObjectLiteralExpression(import_typescript108.default.factory.createNodeArray(literalProperties, hasTrailingComma), literalProperties.length > 1)]));
35453
35912
  }
35454
35913
  function isNamedPropertyAssignment(node) {
35455
35914
  return import_typescript108.default.isPropertyAssignment(node) && node.name && import_typescript108.default.isIdentifier(node.name);
@@ -35556,6 +36015,7 @@ function extractDeclarationsFromModule(ngModule, templateTypeChecker) {
35556
36015
  return metadata ? metadata.declarations.filter((decl) => import_typescript108.default.isClassDeclaration(decl.node)).map((decl) => decl.node) : [];
35557
36016
  }
35558
36017
  function migrateTestDeclarations(testObjects, declarationsOutsideOfTestFiles, tracker, templateTypeChecker, typeChecker) {
36018
+ var _a;
35559
36019
  const { decorators, componentImports } = analyzeTestingModules(testObjects, typeChecker);
35560
36020
  const allDeclarations = new Set(declarationsOutsideOfTestFiles);
35561
36021
  for (const decorator of decorators) {
@@ -35572,7 +36032,9 @@ function migrateTestDeclarations(testObjects, declarationsOutsideOfTestFiles, tr
35572
36032
  allDeclarations.add(closestClass);
35573
36033
  }
35574
36034
  if (importsToAdd && importsToAdd.size > 0) {
35575
- tracker.replaceNode(decorator.node, addPropertyToAngularDecorator(newDecorator, import_typescript108.default.factory.createPropertyAssignment("imports", import_typescript108.default.factory.createArrayLiteralExpression(Array.from(importsToAdd)))));
36035
+ const hasTrailingComma = importsToAdd.size > 2 && !!((_a = extractMetadataLiteral(decorator.node)) == null ? void 0 : _a.properties.hasTrailingComma);
36036
+ const importsArray = import_typescript108.default.factory.createNodeArray(Array.from(importsToAdd), hasTrailingComma);
36037
+ tracker.replaceNode(decorator.node, addPropertyToAngularDecorator(newDecorator, import_typescript108.default.factory.createPropertyAssignment("imports", import_typescript108.default.factory.createArrayLiteralExpression(importsArray))));
35576
36038
  } else {
35577
36039
  tracker.replaceNode(decorator.node, newDecorator);
35578
36040
  }
@@ -35640,7 +36102,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
35640
36102
  return metadata != null && metadata.isStandalone;
35641
36103
  }
35642
36104
 
35643
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
36105
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
35644
36106
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
35645
36107
  const tracker = new ChangeTracker(printer, importRemapper);
35646
36108
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -35757,7 +36219,8 @@ function replaceBootstrapCallExpression(analysis, providers, modules, tracker) {
35757
36219
  combinedProviders.push(import_typescript109.default.factory.createCallExpression(importProvidersExpression, [], modules));
35758
36220
  }
35759
36221
  combinedProviders.push(...providers);
35760
- const initializer = remapDynamicImports(sourceFile.fileName, import_typescript109.default.factory.createArrayLiteralExpression(combinedProviders, combinedProviders.length > 1));
36222
+ const providersArray = import_typescript109.default.factory.createNodeArray(combinedProviders, analysis.metadata.properties.hasTrailingComma && combinedProviders.length > 2);
36223
+ const initializer = remapDynamicImports(sourceFile.fileName, import_typescript109.default.factory.createArrayLiteralExpression(providersArray, combinedProviders.length > 1));
35761
36224
  args.push(import_typescript109.default.factory.createObjectLiteralExpression([import_typescript109.default.factory.createPropertyAssignment("providers", initializer)], true));
35762
36225
  }
35763
36226
  tracker.replaceNode(
@@ -36016,7 +36479,7 @@ function hasImport(program, rootFileNames, moduleName) {
36016
36479
  return false;
36017
36480
  }
36018
36481
 
36019
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
36482
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
36020
36483
  var MigrationMode;
36021
36484
  (function(MigrationMode2) {
36022
36485
  MigrationMode2["toStandalone"] = "convert-to-standalone";