ember-source 7.1.0-alpha.3 → 7.1.0-alpha.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 (484) hide show
  1. package/build-metadata.json +3 -3
  2. package/dist/dev/packages/@ember/-internals/container/index.js +4 -401
  3. package/dist/dev/packages/@ember/-internals/deprecations/index.js +1 -1
  4. package/dist/dev/packages/@ember/-internals/environment/index.js +3 -151
  5. package/dist/dev/packages/@ember/-internals/glimmer/index.js +14 -15
  6. package/dist/dev/packages/@ember/-internals/meta/lib/meta.js +0 -1
  7. package/dist/dev/packages/@ember/-internals/metal/index.js +18 -9
  8. package/dist/dev/packages/@ember/-internals/routing/index.js +1 -10
  9. package/dist/dev/packages/@ember/-internals/runtime/lib/mixins/-proxy.js +10 -12
  10. package/dist/dev/packages/@ember/-internals/runtime/lib/mixins/action_handler.js +1 -10
  11. package/dist/dev/packages/@ember/-internals/runtime/lib/mixins/target_action_support.js +3 -10
  12. package/dist/dev/packages/@ember/-internals/string/index.js +0 -1
  13. package/dist/dev/packages/@ember/-internals/utils/index.js +8 -3
  14. package/dist/dev/packages/@ember/-internals/views/lib/compat/fallback-view-registry.js +0 -1
  15. package/dist/dev/packages/@ember/-internals/views/lib/mixins/action_support.js +3 -12
  16. package/dist/dev/packages/@ember/-internals/views/lib/system/event_dispatcher.js +2 -11
  17. package/dist/dev/packages/@ember/-internals/views/lib/system/utils.js +1 -1
  18. package/dist/dev/packages/@ember/-internals/views/lib/views/core_view.js +1 -18
  19. package/dist/dev/packages/@ember/-internals/views/lib/views/states.js +1 -1
  20. package/dist/dev/packages/@ember/application/index.js +5 -28
  21. package/dist/dev/packages/@ember/application/instance.js +3 -22
  22. package/dist/dev/packages/@ember/application/namespace.js +4 -11
  23. package/dist/dev/packages/@ember/array/index.js +7 -15
  24. package/dist/dev/packages/@ember/array/proxy.js +10 -14
  25. package/dist/dev/packages/@ember/canary-features/index.js +1 -1
  26. package/dist/dev/packages/@ember/component/helper.js +1 -14
  27. package/dist/dev/packages/@ember/component/index.js +1355 -16
  28. package/dist/dev/packages/@ember/component/template-only.js +1 -9
  29. package/dist/dev/packages/@ember/controller/index.js +3 -19
  30. package/dist/dev/packages/@ember/debug/container-debug-adapter.js +0 -19
  31. package/dist/dev/packages/@ember/debug/data-adapter.js +4 -11
  32. package/dist/dev/packages/@ember/debug/index.js +2 -1
  33. package/dist/dev/packages/@ember/debug/lib/deprecate.js +1 -1
  34. package/dist/dev/packages/@ember/engine/index.js +3 -29
  35. package/dist/dev/packages/@ember/engine/instance.js +3 -8
  36. package/dist/dev/packages/@ember/helper/index.js +211 -19
  37. package/dist/dev/packages/@ember/instrumentation/index.js +1 -1
  38. package/dist/dev/packages/@ember/modifier/index.js +2 -16
  39. package/dist/dev/packages/@ember/modifier/on.js +1 -9
  40. package/dist/dev/packages/@ember/object/-internals.js +3 -11
  41. package/dist/dev/packages/@ember/object/compat.js +3 -10
  42. package/dist/dev/packages/@ember/object/computed.js +2 -12
  43. package/dist/dev/packages/@ember/object/core.js +10 -18
  44. package/dist/dev/packages/@ember/object/evented.js +2 -12
  45. package/dist/dev/packages/@ember/object/events.js +1 -11
  46. package/dist/dev/packages/@ember/object/index.js +10 -14
  47. package/dist/dev/packages/@ember/object/internals.js +1 -1
  48. package/dist/dev/packages/@ember/object/lib/computed/computed_macros.js +6 -23
  49. package/dist/dev/packages/@ember/object/lib/computed/reduce_computed_macros.js +3 -12
  50. package/dist/dev/packages/@ember/object/mixin.js +7 -10
  51. package/dist/dev/packages/@ember/object/observable.js +8 -12
  52. package/dist/dev/packages/@ember/object/observers.js +1 -11
  53. package/dist/dev/packages/@ember/object/promise-proxy-mixin.js +3 -13
  54. package/dist/dev/packages/@ember/object/proxy.js +0 -7
  55. package/dist/dev/packages/@ember/reactive/collections.js +589 -1
  56. package/dist/dev/packages/@ember/renderer/index.js +1 -14
  57. package/dist/dev/packages/@ember/routing/-internals.js +1 -10
  58. package/dist/dev/packages/@ember/routing/index.js +614 -14
  59. package/dist/dev/packages/@ember/routing/lib/generate_controller.js +2 -11
  60. package/dist/dev/packages/@ember/routing/lib/routing-service.js +7 -17
  61. package/dist/dev/packages/@ember/routing/lib/utils.js +2 -11
  62. package/dist/dev/packages/@ember/routing/route.js +12 -23
  63. package/dist/dev/packages/@ember/routing/router-service.js +8 -17
  64. package/dist/dev/packages/@ember/routing/router.js +5 -21
  65. package/dist/dev/packages/@ember/runloop/index.js +1 -10
  66. package/dist/dev/packages/@ember/service/index.js +1 -11
  67. package/dist/dev/packages/@ember/template/index.js +1 -14
  68. package/dist/dev/packages/@ember/template-compiler/lib/compile-options.js +14 -15
  69. package/dist/dev/packages/@ember/template-compiler/lib/dasherize-component-name.js +0 -1
  70. package/dist/dev/packages/@ember/template-compiler/lib/plugins/auto-import-builtins.js +13 -42
  71. package/dist/dev/packages/@ember/template-compiler/lib/plugins/index.js +1 -1
  72. package/dist/dev/packages/@ember/template-compiler/lib/plugins/transform-resolutions.js +1 -3
  73. package/dist/dev/packages/@ember/template-compiler/lib/template.js +2 -10
  74. package/dist/dev/packages/@ember/template-factory/index.js +1 -8
  75. package/dist/dev/packages/@ember/utils/lib/compare.js +0 -7
  76. package/dist/dev/packages/@ember/utils/lib/is_empty.js +1 -12
  77. package/dist/dev/packages/@glimmer/manager/index.js +4 -314
  78. package/dist/dev/packages/@glimmer/node/index.js +3 -11
  79. package/dist/dev/packages/@glimmer/opcode-compiler/index.js +5 -7
  80. package/dist/dev/packages/@glimmer/program/index.js +194 -3
  81. package/dist/dev/packages/@glimmer/reference/index.js +4 -5
  82. package/dist/dev/packages/@glimmer/runtime/index.js +17 -10
  83. package/dist/dev/packages/@glimmer/tracking/index.js +2 -11
  84. package/dist/dev/packages/@glimmer/tracking/primitives/cache/index.js +1 -11
  85. package/dist/dev/packages/@glimmer/util/index.js +1 -2
  86. package/dist/dev/packages/@glimmer/validator/index.js +4 -1253
  87. package/dist/dev/packages/@glimmer/vm/index.js +1 -1
  88. package/dist/dev/packages/@glimmer/wire-format/index.js +3 -65
  89. package/dist/dev/packages/ember/version.js +1 -1
  90. package/dist/dev/packages/ember-template-compiler/index.js +7 -7
  91. package/dist/dev/packages/shared-chunks/{alias-CSC0WIbj.js → alias-ZcMQckQV.js} +8 -4
  92. package/dist/dev/packages/shared-chunks/api-AYt3zE12.js +310 -0
  93. package/dist/dev/packages/shared-chunks/{api-BqXkkT0p.js → api-WvJPuo9z.js} +4 -5
  94. package/dist/dev/packages/shared-chunks/{args-proxy-DgXMc9b5.js → args-proxy-BNLuRFlO.js} +2 -4
  95. package/dist/dev/packages/shared-chunks/{array-D8PfjQHi.js → array-Bh_kUjzy.js} +2 -1
  96. package/dist/dev/packages/shared-chunks/cache-B7dqAS38.js +596 -0
  97. package/dist/dev/packages/shared-chunks/{capabilities-O_xc7Yqk.js → capabilities-CZkuOqqC.js} +0 -5
  98. package/dist/dev/packages/shared-chunks/chain-tags-D6tuFUj_.js +190 -0
  99. package/dist/dev/packages/shared-chunks/{collections-D_nY_0UJ.js → collections-DPkjqeA3.js} +0 -1
  100. package/dist/dev/packages/shared-chunks/{compiler-D1leQ3Gl.js → compiler-CXB_8GdR.js} +7043 -234
  101. package/dist/dev/packages/shared-chunks/computed-CJnghmXC.js +980 -0
  102. package/dist/dev/packages/shared-chunks/container-BzzHmCNj.js +404 -0
  103. package/dist/dev/packages/shared-chunks/curly-CvC8E_4-.js +617 -0
  104. package/dist/dev/packages/shared-chunks/{fragment-Cc5k9Oy4.js → curried-BVwSNqpf.js} +5 -288
  105. package/dist/dev/packages/shared-chunks/decorator-B5Uh5NFI.js +135 -0
  106. package/dist/dev/packages/shared-chunks/element-C-QcIABg.js +109 -0
  107. package/dist/dev/packages/shared-chunks/element-builder-kHVx0F__.js +812 -0
  108. package/dist/dev/packages/shared-chunks/env-g-kaAFLN.js +161 -0
  109. package/dist/dev/packages/shared-chunks/events-6aFVjD4k.js +180 -0
  110. package/dist/dev/packages/shared-chunks/get-CpJjYeJO.js +138 -0
  111. package/dist/dev/packages/shared-chunks/get-debug-name-CSniHBsn.js +45 -0
  112. package/dist/dev/packages/shared-chunks/get_properties-CIm8IAtP.js +55 -0
  113. package/dist/dev/packages/shared-chunks/guid-Cbq2sNV_.js +123 -0
  114. package/dist/dev/packages/shared-chunks/hash-D3BENmhU.js +192 -0
  115. package/dist/dev/packages/shared-chunks/helper-DlC4YesW.js +314 -0
  116. package/dist/dev/packages/shared-chunks/index-CTxkmV78.js +2500 -0
  117. package/dist/dev/packages/shared-chunks/index-D-xTBV4B.js +220 -0
  118. package/dist/dev/packages/shared-chunks/{index-BUPd6pkm.js → index-DmGmwWPJ.js} +29 -29
  119. package/dist/dev/packages/shared-chunks/injected_property-B4T-FzZZ.js +70 -0
  120. package/dist/dev/packages/shared-chunks/intern-zquhAEIg.js +51 -0
  121. package/dist/dev/packages/shared-chunks/internal-CbQSKXEm.js +140 -0
  122. package/dist/dev/packages/shared-chunks/internal-helper-Dsl9_7H_.js +7 -0
  123. package/dist/dev/packages/shared-chunks/{invoke-CgfoEtMT.js → invoke-B6j6DdDz.js} +3 -7
  124. package/dist/{prod/packages/shared-chunks/is_proxy-Cr1qlMv_.js → dev/packages/shared-chunks/is_proxy-Bzg0d4m4.js} +1 -1
  125. package/dist/dev/packages/shared-chunks/libraries-CHBwbR72.js +79 -0
  126. package/dist/dev/packages/shared-chunks/mandatory-setter-BpbAMTzV.js +107 -0
  127. package/dist/dev/packages/shared-chunks/meta-BmRXesrk.js +46 -0
  128. package/dist/{prod/packages/shared-chunks/name-C68GLLO3.js → dev/packages/shared-chunks/name-Clp4Vsod.js} +1 -1
  129. package/dist/dev/packages/shared-chunks/{namespace_search-uT8odThF.js → namespace_search-BfvzEQzN.js} +1 -2
  130. package/dist/dev/packages/shared-chunks/normalize-CKySQVU7.js +84 -0
  131. package/dist/dev/packages/shared-chunks/observers-C2DurkLG.js +199 -0
  132. package/dist/dev/packages/shared-chunks/on-D8QwT-eN.js +253 -0
  133. package/dist/dev/packages/shared-chunks/opcode-metadata-9iSW5JGP.js +285 -0
  134. package/dist/dev/packages/shared-chunks/opcodes-CplRyHl_.js +50 -0
  135. package/dist/dev/packages/shared-chunks/or-DBU9Ge4r.js +118 -0
  136. package/dist/{prod/packages/shared-chunks/program-B7SJZ5NF.js → dev/packages/shared-chunks/program-DzAfcWFj.js} +1 -1
  137. package/dist/dev/packages/shared-chunks/{program-context-sJz0oHOA.js → program-context-CqcQMsfa.js} +3 -3
  138. package/dist/dev/packages/shared-chunks/property_get-CIBS9umw.js +139 -0
  139. package/dist/dev/packages/shared-chunks/{property_set-DaoZXGM5.js → property_set-D3PKyisF.js} +4 -2
  140. package/dist/dev/packages/shared-chunks/props-fiqxqhAH.js +85 -0
  141. package/dist/dev/packages/shared-chunks/{reference-C3TKDRnP.js → reference-BoPB2LfI.js} +3 -4
  142. package/dist/dev/packages/shared-chunks/{registers-ylirb0dq.js → registers-DoamZwaG.js} +1 -1
  143. package/dist/{prod/packages/shared-chunks/rehydrate-builder-CUefZL4I.js → dev/packages/shared-chunks/rehydrate-builder-DdzXTaJk.js} +7 -4
  144. package/dist/dev/packages/shared-chunks/{render-C1HzKUcM.js → render-DDdabL30.js} +510 -15
  145. package/dist/{prod/packages/shared-chunks/serialize-builder-DgpXSc2Q.js → dev/packages/shared-chunks/serialize-builder-B3u9Wr3n.js} +2 -7
  146. package/dist/dev/packages/shared-chunks/set_properties-BghuuGJx.js +48 -0
  147. package/dist/dev/packages/shared-chunks/{setup-registry-B7-RknRf.js → setup-registry-XxD0xvgf.js} +34 -14
  148. package/dist/dev/packages/shared-chunks/spec-BXl1reqK.js +16 -0
  149. package/dist/dev/packages/shared-chunks/super-BBBjgF69.js +91 -0
  150. package/dist/dev/packages/shared-chunks/template-BRrQR6KS.js +16 -0
  151. package/dist/dev/packages/shared-chunks/template-only-Yluyu0DY.js +78 -0
  152. package/dist/dev/packages/shared-chunks/textarea-C0Us0PNJ.js +468 -0
  153. package/dist/dev/packages/shared-chunks/tracked-CKE4wnE6.js +148 -0
  154. package/dist/dev/packages/shared-chunks/tracked-data-CGnA4ytZ.js +31 -0
  155. package/dist/dev/packages/shared-chunks/transform-resolutions-h1ik8gqW.js +645 -0
  156. package/dist/dev/packages/shared-chunks/unique-id-A83bjEE-.js +32 -0
  157. package/dist/{prod/packages/shared-chunks/on-CLxdmpmk.js → dev/packages/shared-chunks/untouchable-this-cH6_N2LJ.js} +215 -1397
  158. package/dist/dev/packages/shared-chunks/well-known-_EVO9RaV.js +17 -0
  159. package/dist/prod/packages/@ember/-internals/container/index.js +5 -315
  160. package/dist/prod/packages/@ember/-internals/deprecations/index.js +1 -1
  161. package/dist/prod/packages/@ember/-internals/environment/index.js +3 -148
  162. package/dist/prod/packages/@ember/-internals/glimmer/index.js +14 -13
  163. package/dist/prod/packages/@ember/-internals/meta/lib/meta.js +1 -2
  164. package/dist/prod/packages/@ember/-internals/metal/index.js +19 -13
  165. package/dist/prod/packages/@ember/-internals/routing/index.js +2 -6
  166. package/dist/prod/packages/@ember/-internals/runtime/lib/ext/rsvp.js +1 -1
  167. package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/-proxy.js +10 -10
  168. package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/action_handler.js +2 -6
  169. package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/registry_proxy.js +1 -1
  170. package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/target_action_support.js +3 -6
  171. package/dist/prod/packages/@ember/-internals/string/index.js +0 -2
  172. package/dist/prod/packages/@ember/-internals/utils/index.js +33 -30
  173. package/dist/prod/packages/@ember/-internals/views/lib/compat/fallback-view-registry.js +0 -2
  174. package/dist/prod/packages/@ember/-internals/views/lib/mixins/action_support.js +2 -6
  175. package/dist/prod/packages/@ember/-internals/views/lib/system/event_dispatcher.js +3 -7
  176. package/dist/prod/packages/@ember/-internals/views/lib/system/utils.js +2 -2
  177. package/dist/prod/packages/@ember/-internals/views/lib/views/core_view.js +1 -14
  178. package/dist/prod/packages/@ember/-internals/views/lib/views/states.js +1 -2
  179. package/dist/prod/packages/@ember/application/index.js +5 -24
  180. package/dist/prod/packages/@ember/application/instance.js +6 -18
  181. package/dist/prod/packages/@ember/application/namespace.js +5 -8
  182. package/dist/prod/packages/@ember/array/index.js +8 -12
  183. package/dist/prod/packages/@ember/array/proxy.js +10 -10
  184. package/dist/prod/packages/@ember/canary-features/index.js +1 -1
  185. package/dist/prod/packages/@ember/component/helper.js +1 -12
  186. package/dist/prod/packages/@ember/component/index.js +1292 -15
  187. package/dist/prod/packages/@ember/component/template-only.js +1 -6
  188. package/dist/prod/packages/@ember/controller/index.js +3 -16
  189. package/dist/prod/packages/@ember/debug/container-debug-adapter.js +1 -15
  190. package/dist/prod/packages/@ember/debug/data-adapter.js +5 -7
  191. package/dist/prod/packages/@ember/debug/index.js +1 -0
  192. package/dist/prod/packages/@ember/debug/lib/deprecate.js +1 -1
  193. package/dist/prod/packages/@ember/engine/index.js +4 -25
  194. package/dist/prod/packages/@ember/engine/instance.js +4 -9
  195. package/dist/prod/packages/@ember/helper/index.js +211 -17
  196. package/dist/prod/packages/@ember/instrumentation/index.js +1 -1
  197. package/dist/prod/packages/@ember/modifier/index.js +2 -14
  198. package/dist/prod/packages/@ember/modifier/on.js +1 -6
  199. package/dist/prod/packages/@ember/object/-internals.js +3 -6
  200. package/dist/prod/packages/@ember/object/compat.js +4 -7
  201. package/dist/prod/packages/@ember/object/computed.js +2 -8
  202. package/dist/prod/packages/@ember/object/core.js +9 -15
  203. package/dist/prod/packages/@ember/object/evented.js +2 -7
  204. package/dist/prod/packages/@ember/object/events.js +1 -6
  205. package/dist/prod/packages/@ember/object/index.js +10 -12
  206. package/dist/prod/packages/@ember/object/internals.js +3 -6
  207. package/dist/prod/packages/@ember/object/lib/computed/computed_macros.js +6 -20
  208. package/dist/prod/packages/@ember/object/lib/computed/reduce_computed_macros.js +3 -9
  209. package/dist/prod/packages/@ember/object/mixin.js +7 -9
  210. package/dist/prod/packages/@ember/object/observable.js +8 -9
  211. package/dist/prod/packages/@ember/object/observers.js +1 -6
  212. package/dist/prod/packages/@ember/object/promise-proxy-mixin.js +3 -9
  213. package/dist/prod/packages/@ember/object/proxy.js +0 -7
  214. package/dist/prod/packages/@ember/reactive/collections.js +589 -1
  215. package/dist/prod/packages/@ember/renderer/index.js +1 -12
  216. package/dist/prod/packages/@ember/routing/history-location.js +1 -1
  217. package/dist/prod/packages/@ember/routing/index.js +581 -12
  218. package/dist/prod/packages/@ember/routing/lib/dsl.js +1 -1
  219. package/dist/prod/packages/@ember/routing/lib/generate_controller.js +2 -6
  220. package/dist/prod/packages/@ember/routing/lib/routing-service.js +5 -14
  221. package/dist/prod/packages/@ember/routing/lib/utils.js +2 -6
  222. package/dist/prod/packages/@ember/routing/none-location.js +1 -1
  223. package/dist/prod/packages/@ember/routing/route.js +12 -21
  224. package/dist/prod/packages/@ember/routing/router-service.js +6 -14
  225. package/dist/prod/packages/@ember/routing/router.js +5 -17
  226. package/dist/prod/packages/@ember/runloop/index.js +2 -6
  227. package/dist/prod/packages/@ember/service/index.js +1 -7
  228. package/dist/prod/packages/@ember/template/index.js +1 -12
  229. package/dist/prod/packages/@ember/template-compiler/lib/compile-options.js +15 -14
  230. package/dist/prod/packages/@ember/template-compiler/lib/dasherize-component-name.js +0 -2
  231. package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-against-attrs.js +1 -1
  232. package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-against-named-outlets.js +1 -1
  233. package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-input-helper-without-block.js +1 -1
  234. package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-reserved-named-arguments.js +1 -1
  235. package/dist/prod/packages/@ember/template-compiler/lib/plugins/auto-import-builtins.js +13 -42
  236. package/dist/prod/packages/@ember/template-compiler/lib/plugins/index.js +1 -1
  237. package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-each-track-array.js +1 -1
  238. package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-in-element.js +1 -1
  239. package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-resolutions.js +127 -4
  240. package/dist/prod/packages/@ember/template-compiler/lib/template.js +2 -7
  241. package/dist/prod/packages/@ember/template-factory/index.js +1 -5
  242. package/dist/prod/packages/@ember/utils/lib/compare.js +1 -8
  243. package/dist/prod/packages/@ember/utils/lib/is_empty.js +1 -7
  244. package/dist/prod/packages/@glimmer/manager/index.js +4 -292
  245. package/dist/prod/packages/@glimmer/node/index.js +3 -8
  246. package/dist/prod/packages/@glimmer/opcode-compiler/index.js +5 -5
  247. package/dist/prod/packages/@glimmer/program/index.js +194 -3
  248. package/dist/prod/packages/@glimmer/reference/index.js +4 -4
  249. package/dist/prod/packages/@glimmer/runtime/index.js +16 -8
  250. package/dist/prod/packages/@glimmer/tracking/index.js +2 -7
  251. package/dist/prod/packages/@glimmer/tracking/primitives/cache/index.js +1 -6
  252. package/dist/prod/packages/@glimmer/util/index.js +2 -2
  253. package/dist/prod/packages/@glimmer/validator/index.js +5 -1016
  254. package/dist/prod/packages/@glimmer/vm/index.js +1 -1
  255. package/dist/prod/packages/@glimmer/wire-format/index.js +3 -65
  256. package/dist/prod/packages/ember/version.js +1 -1
  257. package/dist/prod/packages/ember-template-compiler/index.js +5 -7
  258. package/dist/prod/packages/shared-chunks/{alias-BLBQkche.js → alias-CLuFeKoV.js} +8 -6
  259. package/dist/prod/packages/shared-chunks/api-CM1trl_4.js +289 -0
  260. package/dist/prod/packages/shared-chunks/{api-DtWa0ZaF.js → api-zh_k31vb.js} +4 -5
  261. package/dist/prod/packages/shared-chunks/{args-proxy-Dl0A0YWI.js → args-proxy-BDXbXCF9.js} +2 -2
  262. package/dist/prod/packages/shared-chunks/{array-kVQfzrQn.js → array-DHdr4__s.js} +3 -3
  263. package/dist/prod/packages/shared-chunks/assert-CUCJBR2C.js +19 -0
  264. package/dist/prod/packages/shared-chunks/cache-BIlOoPA7.js +371 -0
  265. package/dist/prod/packages/shared-chunks/{capabilities-DXA-L0iT.js → capabilities-_5e35539.js} +0 -3
  266. package/dist/prod/packages/shared-chunks/chain-tags-BJqcuCM1.js +179 -0
  267. package/dist/prod/packages/shared-chunks/{compiler-Bbki2GT_.js → compiler-DjQtTQGk.js} +7045 -193
  268. package/dist/prod/packages/shared-chunks/{namespace_search-Dcdalhj6.js → computed-2Udcmflw.js} +109 -239
  269. package/dist/prod/packages/shared-chunks/container-D5NwW5Fd.js +316 -0
  270. package/dist/prod/packages/shared-chunks/curly-BsqvV8G0.js +546 -0
  271. package/dist/prod/packages/shared-chunks/{fragment-D7nBU9ae.js → curried-BVwSNqpf.js} +6 -303
  272. package/dist/prod/packages/shared-chunks/debug-render-tree-BLtnOSbb.js +2049 -0
  273. package/dist/prod/packages/shared-chunks/{decorator-BdDDBUd2.js → decorator-DBCISop4.js} +1 -1
  274. package/dist/prod/packages/shared-chunks/element-BjFr0tO0.js +101 -0
  275. package/dist/prod/packages/shared-chunks/{element-builder-BmLF0C-1.js → element-builder-BPjq0rxK.js} +109 -88
  276. package/dist/prod/packages/shared-chunks/env-DXxsTFkM.js +158 -0
  277. package/dist/prod/packages/shared-chunks/events-970OxD6Q.js +175 -0
  278. package/dist/prod/packages/shared-chunks/get-D5wxdTkY.js +138 -0
  279. package/dist/prod/packages/shared-chunks/get_properties-BcAC5sGx.js +55 -0
  280. package/dist/prod/packages/shared-chunks/guid-Cbq2sNV_.js +123 -0
  281. package/dist/prod/packages/shared-chunks/hash-DcUe-meU.js +192 -0
  282. package/dist/prod/packages/shared-chunks/helper-Da672z4a.js +299 -0
  283. package/dist/prod/packages/shared-chunks/{index-CjaDF9kC.js → index--2U-v2nf.js} +18 -10
  284. package/dist/prod/packages/shared-chunks/index-D-xTBV4B.js +220 -0
  285. package/dist/prod/packages/shared-chunks/index-D87qoERP.js +2322 -0
  286. package/dist/prod/packages/shared-chunks/{injected_property-CTVs5FPh.js → injected_property-D9B-fPiH.js} +3 -3
  287. package/dist/prod/packages/shared-chunks/intern-zquhAEIg.js +51 -0
  288. package/dist/prod/packages/shared-chunks/internal-DidurjJB.js +137 -0
  289. package/dist/prod/packages/shared-chunks/internal-helper-DIbr1RgC.js +7 -0
  290. package/dist/prod/packages/shared-chunks/{invoke-BdJCXD-b.js → invoke-Dr_CRwA_.js} +3 -5
  291. package/dist/{dev/packages/shared-chunks/is_proxy-B0smdQy8.js → prod/packages/shared-chunks/is_proxy-Bzg0d4m4.js} +1 -1
  292. package/dist/prod/packages/shared-chunks/libraries-DaXpIDYN.js +60 -0
  293. package/dist/prod/packages/shared-chunks/meta-B9mldqPL.js +36 -0
  294. package/dist/{dev/packages/shared-chunks/name-Z7dpqvzn.js → prod/packages/shared-chunks/name-Clp4Vsod.js} +1 -1
  295. package/dist/prod/packages/shared-chunks/namespace_search-BfvzEQzN.js +134 -0
  296. package/dist/prod/packages/shared-chunks/normalize-D9jDJVGg.js +84 -0
  297. package/dist/prod/packages/shared-chunks/observers-Co4JALkS.js +199 -0
  298. package/dist/prod/packages/shared-chunks/on-C3ZQiUUD.js +228 -0
  299. package/dist/prod/packages/shared-chunks/opcode-metadata-9iSW5JGP.js +285 -0
  300. package/dist/prod/packages/shared-chunks/opcodes-CplRyHl_.js +50 -0
  301. package/dist/prod/packages/shared-chunks/or-oTVMuHc8.js +91 -0
  302. package/dist/{dev/packages/shared-chunks/program-DfV0v8aa.js → prod/packages/shared-chunks/program-B7CWdS8W.js} +1 -2
  303. package/dist/prod/packages/shared-chunks/{program-context-DFiwaPMR.js → program-context-CGMN-aQM.js} +3 -3
  304. package/dist/prod/packages/shared-chunks/property_get-hWJ0nGhW.js +122 -0
  305. package/dist/prod/packages/shared-chunks/{property_set-B2sZxeCw.js → property_set-Dj5-ScWk.js} +4 -5
  306. package/dist/prod/packages/shared-chunks/props-fiqxqhAH.js +85 -0
  307. package/dist/prod/packages/shared-chunks/{reference-BNqcwZWH.js → reference-BshxG6wn.js} +3 -3
  308. package/dist/prod/packages/shared-chunks/{registers-ylirb0dq.js → registers-DoamZwaG.js} +1 -1
  309. package/dist/{dev/packages/shared-chunks/rehydrate-builder-CEk2KOIk.js → prod/packages/shared-chunks/rehydrate-builder-BKg2X6Lo.js} +7 -7
  310. package/dist/prod/packages/shared-chunks/{render-BlriW61t.js → render-nx5-PsDW.js} +487 -12
  311. package/dist/{dev/packages/shared-chunks/serialize-builder-CPKxdfiH.js → prod/packages/shared-chunks/serialize-builder-BGbC30SN.js} +2 -10
  312. package/dist/prod/packages/shared-chunks/set_properties-oPyURk67.js +48 -0
  313. package/dist/prod/packages/shared-chunks/{setup-registry-DeObnZ2Z.js → setup-registry-TiaKLj5k.js} +35 -13
  314. package/dist/prod/packages/shared-chunks/spec-BXl1reqK.js +16 -0
  315. package/dist/prod/packages/shared-chunks/super-BBBjgF69.js +91 -0
  316. package/dist/prod/packages/shared-chunks/template-BRrQR6KS.js +16 -0
  317. package/dist/prod/packages/shared-chunks/template-only-BtLl0uH0.js +78 -0
  318. package/dist/prod/packages/shared-chunks/textarea-CPKZ1c_O.js +455 -0
  319. package/dist/prod/packages/shared-chunks/{tracked-Cl5l4v8b.js → tracked-CffAABMz.js} +6 -4
  320. package/dist/prod/packages/shared-chunks/tracked-data-C83f5V5S.js +31 -0
  321. package/dist/prod/packages/shared-chunks/unique-id-CfHImDRV.js +32 -0
  322. package/dist/prod/packages/shared-chunks/well-known-_EVO9RaV.js +17 -0
  323. package/docs/data.json +1368 -1031
  324. package/package.json +1 -1
  325. package/types/stable/@ember/-internals/container/lib/registry.d.ts +1 -1
  326. package/types/stable/@ember/-internals/deprecations/index.d.ts +1 -1
  327. package/types/stable/@ember/-internals/environment/lib/env.d.ts +11 -0
  328. package/types/stable/@ember/-internals/glimmer/index.d.ts +1 -1
  329. package/types/stable/@ember/-internals/glimmer/lib/component-managers/curly.d.ts +1 -1
  330. package/types/stable/@ember/-internals/glimmer/lib/component-managers/mount.d.ts +1 -1
  331. package/types/stable/@ember/-internals/glimmer/lib/component-managers/outlet.d.ts +1 -1
  332. package/types/stable/@ember/-internals/glimmer/lib/component-managers/route-template.d.ts +2 -2
  333. package/types/stable/@ember/-internals/glimmer/lib/component.d.ts +9 -7
  334. package/types/stable/@ember/-internals/glimmer/lib/components/abstract-input.d.ts +1 -1
  335. package/types/stable/@ember/-internals/glimmer/lib/dom.d.ts +6 -2
  336. package/types/stable/@ember/-internals/glimmer/lib/environment.d.ts +1 -1
  337. package/types/stable/@ember/-internals/glimmer/lib/helper.d.ts +1 -1
  338. package/types/stable/@ember/-internals/glimmer/lib/renderer.d.ts +3 -3
  339. package/types/stable/@ember/-internals/glimmer/lib/setup-registry.d.ts +1 -1
  340. package/types/stable/@ember/-internals/glimmer/lib/utils/bindings.d.ts +1 -1
  341. package/types/stable/@ember/-internals/glimmer/lib/utils/curly-component-state-bucket.d.ts +3 -2
  342. package/types/stable/@ember/-internals/glimmer/lib/utils/iterator.d.ts +1 -1
  343. package/types/stable/@ember/-internals/glimmer/lib/utils/managers.d.ts +2 -1
  344. package/types/stable/@ember/-internals/glimmer/lib/utils/serialization-first-node-helpers.d.ts +1 -1
  345. package/types/stable/@ember/-internals/glimmer/lib/utils/string.d.ts +1 -1
  346. package/types/stable/@ember/-internals/meta/lib/meta.d.ts +3 -2
  347. package/types/stable/@ember/-internals/metal/lib/cache.d.ts +1 -1
  348. package/types/stable/@ember/-internals/metal/lib/chain-tags.d.ts +3 -2
  349. package/types/stable/@ember/-internals/metal/lib/computed.d.ts +1 -1
  350. package/types/stable/@ember/-internals/metal/lib/decorator.d.ts +1 -1
  351. package/types/stable/@ember/-internals/metal/lib/deprecate_property.d.ts +1 -1
  352. package/types/stable/@ember/-internals/metal/lib/events.d.ts +1 -1
  353. package/types/stable/@ember/-internals/metal/lib/observer.d.ts +1 -1
  354. package/types/stable/@ember/-internals/metal/lib/properties.d.ts +1 -1
  355. package/types/stable/@ember/-internals/metal/lib/property_events.d.ts +1 -1
  356. package/types/stable/@ember/-internals/metal/lib/tags.d.ts +2 -1
  357. package/types/stable/@ember/-internals/runtime/lib/mixins/container_proxy.d.ts +1 -1
  358. package/types/stable/@ember/-internals/runtime/lib/mixins/registry_proxy.d.ts +1 -1
  359. package/types/stable/@ember/-internals/utils/lib/is_proxy.d.ts +1 -1
  360. package/types/stable/@ember/-internals/utils/lib/mandatory-setter.d.ts +1 -1
  361. package/types/stable/@ember/-internals/views/lib/system/utils.d.ts +1 -1
  362. package/types/stable/@ember/-internals/views/lib/views/core_view.d.ts +2 -2
  363. package/types/stable/@ember/-internals/views/lib/views/states.d.ts +1 -1
  364. package/types/stable/@ember/application/index.d.ts +5 -4
  365. package/types/stable/@ember/application/instance.d.ts +4 -3
  366. package/types/stable/@ember/application/namespace.d.ts +1 -1
  367. package/types/stable/@ember/array/proxy.d.ts +4 -3
  368. package/types/stable/@ember/component/helper.d.ts +1 -1
  369. package/types/stable/@ember/component/index.d.ts +6 -3
  370. package/types/stable/@ember/controller/index.d.ts +2 -2
  371. package/types/stable/@ember/debug/container-debug-adapter.d.ts +1 -1
  372. package/types/stable/@ember/engine/index.d.ts +3 -3
  373. package/types/stable/@ember/engine/instance.d.ts +4 -3
  374. package/types/stable/@ember/helper/index.d.ts +223 -3
  375. package/types/stable/@ember/modifier/index.d.ts +1 -1
  376. package/types/stable/@ember/object/-internals.d.ts +2 -2
  377. package/types/stable/@ember/object/compat.d.ts +2 -2
  378. package/types/stable/@ember/object/computed.d.ts +3 -1
  379. package/types/stable/@ember/object/evented.d.ts +1 -1
  380. package/types/stable/@ember/object/events.d.ts +1 -1
  381. package/types/stable/@ember/object/index.d.ts +8 -2
  382. package/types/stable/@ember/object/lib/computed/computed_macros.d.ts +1 -1
  383. package/types/stable/@ember/object/mixin.d.ts +1 -1
  384. package/types/stable/@ember/object/observers.d.ts +1 -1
  385. package/types/stable/@ember/object/proxy.d.ts +1 -1
  386. package/types/stable/@ember/reactive/collections.d.ts +6 -6
  387. package/types/stable/@ember/renderer/index.d.ts +2 -2
  388. package/types/stable/@ember/routing/index.d.ts +1 -1
  389. package/types/stable/@ember/routing/lib/controller_for.d.ts +2 -2
  390. package/types/stable/@ember/routing/route.d.ts +2 -2
  391. package/types/stable/@ember/routing/router.d.ts +2 -2
  392. package/types/stable/@ember/service/index.d.ts +1 -1
  393. package/types/stable/@ember/template/index.d.ts +1 -1
  394. package/types/stable/@ember/template-compiler/lib/dasherize-component-name.d.ts +1 -1
  395. package/types/stable/@ember/template-compiler/lib/plugins/assert-against-attrs.d.ts +1 -1
  396. package/types/stable/@ember/template-compiler/lib/plugins/assert-against-named-outlets.d.ts +1 -1
  397. package/types/stable/@ember/template-compiler/lib/plugins/assert-input-helper-without-block.d.ts +1 -1
  398. package/types/stable/@ember/template-compiler/lib/plugins/assert-reserved-named-arguments.d.ts +1 -1
  399. package/types/stable/@ember/template-compiler/lib/plugins/auto-import-builtins.d.ts +1 -4
  400. package/types/stable/@ember/template-compiler/lib/plugins/transform-action-syntax.d.ts +1 -1
  401. package/types/stable/@ember/template-compiler/lib/plugins/transform-each-in-into-each.d.ts +1 -1
  402. package/types/stable/@ember/template-compiler/lib/plugins/transform-each-track-array.d.ts +1 -1
  403. package/types/stable/@ember/template-compiler/lib/plugins/transform-in-element.d.ts +1 -1
  404. package/types/stable/@ember/template-compiler/lib/plugins/transform-quoted-bindings-into-just-bindings.d.ts +1 -1
  405. package/types/stable/@ember/template-compiler/lib/plugins/transform-resolutions.d.ts +1 -1
  406. package/types/stable/@ember/template-compiler/lib/plugins/transform-wrap-mount-and-outlet.d.ts +1 -1
  407. package/types/stable/@ember/template-compiler/lib/plugins/utils.d.ts +1 -1
  408. package/types/stable/@ember/template-compiler/lib/system/calculate-location-display.d.ts +1 -1
  409. package/types/stable/@ember/template-compiler/lib/types.d.ts +2 -1
  410. package/types/stable/@ember/template-factory/index.d.ts +1 -1
  411. package/types/stable/@glimmer/compiler/lib/builder/builder-interface.d.ts +2 -2
  412. package/types/stable/@glimmer/compiler/lib/builder/builder.d.ts +2 -2
  413. package/types/stable/@glimmer/compiler/lib/compiler.d.ts +1 -1
  414. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/context.d.ts +2 -1
  415. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/index.d.ts +2 -1
  416. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/impl.d.ts +2 -1
  417. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/curry.d.ts +1 -1
  418. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/dynamic-vars.d.ts +1 -1
  419. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/has-block.d.ts +2 -1
  420. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/if-unless.d.ts +1 -1
  421. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/log.d.ts +1 -1
  422. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/element/classified.d.ts +1 -1
  423. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/element/component.d.ts +1 -1
  424. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/element/simple-element.d.ts +2 -1
  425. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/expressions.d.ts +1 -1
  426. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/statements.d.ts +1 -1
  427. package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/strict-mode.d.ts +1 -1
  428. package/types/stable/@glimmer/compiler/lib/passes/2-encoding/expressions.d.ts +1 -1
  429. package/types/stable/@glimmer/compiler/lib/passes/2-encoding/mir.d.ts +3 -1
  430. package/types/stable/@glimmer/compiler/lib/shared/result.d.ts +1 -1
  431. package/types/stable/@glimmer/manager/lib/public/component.d.ts +1 -1
  432. package/types/stable/@glimmer/manager/lib/util/args-proxy.d.ts +1 -1
  433. package/types/stable/@glimmer/manager/lib/util/capabilities.d.ts +1 -1
  434. package/types/stable/@glimmer/node/lib/node-dom-helper.d.ts +1 -1
  435. package/types/stable/@glimmer/opcode-compiler/lib/opcode-builder/helpers/components.d.ts +1 -1
  436. package/types/stable/@glimmer/runtime/index.d.ts +9 -4
  437. package/types/stable/@glimmer/runtime/lib/compiled/expressions/concat.d.ts +1 -1
  438. package/types/stable/@glimmer/runtime/lib/compiled/opcodes/-debug-strip.d.ts +4 -3
  439. package/types/stable/@glimmer/runtime/lib/compiled/opcodes/component.d.ts +1 -1
  440. package/types/stable/@glimmer/runtime/lib/compiled/opcodes/dom.d.ts +2 -2
  441. package/types/stable/@glimmer/runtime/lib/compiled/opcodes/vm.d.ts +2 -2
  442. package/types/stable/@glimmer/runtime/lib/component/template-only.d.ts +1 -1
  443. package/types/stable/@glimmer/runtime/lib/curried-value.d.ts +1 -1
  444. package/types/stable/@glimmer/runtime/lib/helpers/and.d.ts +3 -0
  445. package/types/stable/@glimmer/runtime/lib/helpers/eq.d.ts +8 -0
  446. package/types/stable/@glimmer/runtime/lib/helpers/gt.d.ts +8 -0
  447. package/types/stable/@glimmer/runtime/lib/helpers/gte.d.ts +8 -0
  448. package/types/stable/@glimmer/runtime/lib/helpers/invoke.d.ts +1 -1
  449. package/types/stable/@glimmer/runtime/lib/helpers/lt.d.ts +8 -0
  450. package/types/stable/@glimmer/runtime/lib/helpers/lte.d.ts +8 -0
  451. package/types/stable/@glimmer/runtime/lib/helpers/neq.d.ts +8 -0
  452. package/types/stable/@glimmer/runtime/lib/helpers/not.d.ts +3 -0
  453. package/types/stable/@glimmer/runtime/lib/helpers/or.d.ts +3 -0
  454. package/types/stable/@glimmer/runtime/lib/opcodes.d.ts +2 -2
  455. package/types/stable/@glimmer/runtime/lib/references/class-list.d.ts +1 -1
  456. package/types/stable/@glimmer/runtime/lib/references/curry-value.d.ts +1 -1
  457. package/types/stable/@glimmer/runtime/lib/render.d.ts +1 -1
  458. package/types/stable/@glimmer/runtime/lib/scope.d.ts +1 -1
  459. package/types/stable/@glimmer/runtime/lib/vm/append.d.ts +3 -2
  460. package/types/stable/@glimmer/runtime/lib/vm/arguments.d.ts +2 -2
  461. package/types/stable/@glimmer/runtime/lib/vm/content/text.d.ts +1 -1
  462. package/types/stable/@glimmer/runtime/lib/vm/element-builder.d.ts +1 -1
  463. package/types/stable/@glimmer/runtime/lib/vm/low-level.d.ts +2 -1
  464. package/types/stable/@glimmer/runtime/lib/vm/rehydrate-builder.d.ts +1 -1
  465. package/types/stable/@glimmer/runtime/lib/vm/update.d.ts +2 -1
  466. package/types/stable/@glimmer/syntax/lib/keywords.d.ts +2 -2
  467. package/types/stable/@glimmer/tracking/index.d.ts +2 -1
  468. package/types/stable/@glimmer/tracking/primitives/cache.d.ts +1 -1
  469. package/types/stable/index.d.ts +9 -0
  470. package/dist/dev/packages/shared-chunks/constants-p7AL-pog.js +0 -213
  471. package/dist/dev/packages/shared-chunks/dynamic-BfDKO5NI.js +0 -3823
  472. package/dist/dev/packages/shared-chunks/element-builder-DO43ztVP.js +0 -404
  473. package/dist/dev/packages/shared-chunks/index-QZstta6s.js +0 -6306
  474. package/dist/dev/packages/shared-chunks/mandatory-setter-DHZe7-kW.js +0 -425
  475. package/dist/dev/packages/shared-chunks/observers-Bj9qLVau.js +0 -2062
  476. package/dist/dev/packages/shared-chunks/set_properties-kVGzZL_a.js +0 -100
  477. package/dist/dev/packages/shared-chunks/transform-resolutions-D-YtZ0_g.js +0 -7458
  478. package/dist/prod/packages/shared-chunks/constants-2M371WiB.js +0 -210
  479. package/dist/prod/packages/shared-chunks/index-6pnzcm45.js +0 -5931
  480. package/dist/prod/packages/shared-chunks/observers-tZ2aOzr4.js +0 -714
  481. package/dist/prod/packages/shared-chunks/set_properties-C1T46IiN.js +0 -101
  482. package/dist/prod/packages/shared-chunks/super-Cm_a_cLQ.js +0 -275
  483. package/dist/prod/packages/shared-chunks/transform-resolutions-DR4GLmR2.js +0 -6936
  484. package/dist/prod/packages/shared-chunks/{collections-GpG8lT2g.js → collections-C3Y8z_9v.js} +9 -9
@@ -1,12 +1,4 @@
1
- import '../../shared-chunks/fragment-Cc5k9Oy4.js';
2
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
3
- import '../../@glimmer/global-context/index.js';
4
- import '../../@glimmer/validator/index.js';
5
- import '../../shared-chunks/reference-C3TKDRnP.js';
6
- import { z as templateOnlyComponent } from '../../shared-chunks/dynamic-BfDKO5NI.js';
7
- import '../../shared-chunks/constants-p7AL-pog.js';
8
- import '../../@glimmer/destroyable/index.js';
9
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
1
+ import { t as templateOnlyComponent } from '../../shared-chunks/template-only-Yluyu0DY.js';
10
2
 
11
3
  /**
12
4
  @module @ember/component/template-only
@@ -1,26 +1,10 @@
1
1
  import { getOwner } from '../-internals/owner/index.js';
2
- import '../object/index.js';
2
+ import { c as computed } from '../../shared-chunks/computed-CJnghmXC.js';
3
+ import { g as get } from '../../shared-chunks/property_get-CIBS9umw.js';
3
4
  import { FrameworkObject } from '../object/-internals.js';
4
- import { g as get, c as computed, l as inject$1 } from '../../shared-chunks/observers-Bj9qLVau.js';
5
- import '../-internals/meta/lib/meta.js';
6
- import '../debug/index.js';
7
- import '../../@glimmer/validator/index.js';
8
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
9
- import '../../@glimmer/destroyable/index.js';
10
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
11
- import '../../@glimmer/global-context/index.js';
12
- import '../../shared-chunks/reference-C3TKDRnP.js';
13
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
14
- import '../-internals/environment/index.js';
5
+ import { i as inject$1 } from '../../shared-chunks/injected_property-B4T-FzZZ.js';
15
6
  import Mixin from '../object/mixin.js';
16
- import '../-internals/runtime/lib/mixins/registry_proxy.js';
17
- import '../-internals/runtime/lib/mixins/container_proxy.js';
18
- import '../-internals/runtime/lib/mixins/comparable.js';
19
7
  import ActionHandler from '../-internals/runtime/lib/mixins/action_handler.js';
20
- import '../-internals/runtime/lib/mixins/-proxy.js';
21
- import '../enumerable/mutable.js';
22
- import '../-internals/runtime/lib/mixins/target_action_support.js';
23
- import '../-internals/runtime/lib/ext/rsvp.js';
24
8
 
25
9
  const MODEL = Symbol('MODEL');
26
10
 
@@ -1,25 +1,6 @@
1
1
  import { classify, dasherize } from '../-internals/string/index.js';
2
2
  import EmberObject from '../object/index.js';
3
- import '../-internals/meta/lib/meta.js';
4
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
5
- import './index.js';
6
- import '../../@glimmer/destroyable/index.js';
7
- import '../../@glimmer/validator/index.js';
8
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
9
- import '../../@glimmer/global-context/index.js';
10
- import '../../shared-chunks/reference-C3TKDRnP.js';
11
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
12
- import '../../shared-chunks/observers-Bj9qLVau.js';
13
- import '../-internals/environment/index.js';
14
3
  import typeOf from '../utils/lib/type-of.js';
15
- import '../-internals/runtime/lib/mixins/registry_proxy.js';
16
- import '../-internals/runtime/lib/mixins/container_proxy.js';
17
- import '../-internals/runtime/lib/mixins/comparable.js';
18
- import '../-internals/runtime/lib/mixins/action_handler.js';
19
- import '../-internals/runtime/lib/mixins/-proxy.js';
20
- import '../enumerable/mutable.js';
21
- import '../-internals/runtime/lib/mixins/target_action_support.js';
22
- import '../-internals/runtime/lib/ext/rsvp.js';
23
4
  import { getOwner } from '../-internals/owner/index.js';
24
5
  import Namespace from '../application/namespace.js';
25
6
 
@@ -1,20 +1,13 @@
1
1
  import { getOwner } from '../-internals/owner/index.js';
2
2
  import { _backburner, next } from '../runloop/index.js';
3
- import EmberObject from '../object/index.js';
3
+ import { g as get } from '../../shared-chunks/property_get-CIBS9umw.js';
4
4
  import { dasherize } from '../-internals/string/index.js';
5
5
  import Namespace from '../application/namespace.js';
6
+ import EmberObject from '../object/index.js';
6
7
  import { A } from '../array/index.js';
7
- import { createCache, consumeTag, tagFor, untrack, getValue } from '../../@glimmer/validator/index.js';
8
+ import { l as createCache, k as consumeTag, x as untrack, r as getValue } from '../../shared-chunks/cache-B7dqAS38.js';
9
+ import { t as tagFor } from '../../shared-chunks/meta-BmRXesrk.js';
8
10
  import './index.js';
9
- import { g as get } from '../../shared-chunks/observers-Bj9qLVau.js';
10
- import '../-internals/meta/lib/meta.js';
11
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
12
- import '../../@glimmer/destroyable/index.js';
13
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
14
- import '../../@glimmer/global-context/index.js';
15
- import '../../shared-chunks/reference-C3TKDRnP.js';
16
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
17
- import '../-internals/environment/index.js';
18
11
  import { assert } from './lib/assert.js';
19
12
 
20
13
  /**
@@ -1,4 +1,5 @@
1
1
  import { i as isFirefox, a as isChrome } from '../../shared-chunks/index-BGP1rw3B.js';
2
+ import { E as ENV } from '../../shared-chunks/env-g-kaAFLN.js';
2
3
  import defaultDeprecate from './lib/deprecate.js';
3
4
  export { registerHandler as registerDeprecationHandler } from './lib/deprecate.js';
4
5
  import { isTesting } from './lib/testing.js';
@@ -195,7 +196,7 @@ function deprecate(...args) {
195
196
  setDebugFunction('warn', _warn);
196
197
  }
197
198
  let _warnIfUsingStrippedFeatureFlags;
198
- if (!isTesting()) {
199
+ if (!isTesting() && ENV.LOG_INSPECTOR_HINT) {
199
200
  if (typeof window !== 'undefined' && (isFirefox || isChrome) && window.addEventListener) {
200
201
  window.addEventListener('load', () => {
201
202
  if (document.documentElement && document.documentElement.dataset && !document.documentElement.dataset['emberExtension']) {
@@ -1,4 +1,4 @@
1
- import { ENV } from '../../-internals/environment/index.js';
1
+ import { E as ENV } from '../../../shared-chunks/env-g-kaAFLN.js';
2
2
  import { assert } from './assert.js';
3
3
  import { registerHandler as registerHandler$1, invoke } from './handlers.js';
4
4
 
@@ -1,5 +1,4 @@
1
1
  export { getEngineParent, setEngineParent } from './lib/engine-parent.js';
2
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
3
2
  import { canInvoke } from '../-internals/utils/index.js';
4
3
  import Controller from '../controller/index.js';
5
4
  import Namespace from '../application/namespace.js';
@@ -7,41 +6,16 @@ import { Registry } from '../-internals/container/index.js';
7
6
  import DAG from '../../dag-map/index.js';
8
7
  import '../debug/index.js';
9
8
  import ContainerDebugAdapter from '../debug/container-debug-adapter.js';
10
- import '../object/index.js';
9
+ import { g as get } from '../../shared-chunks/property_get-CIBS9umw.js';
10
+ import { s as set } from '../../shared-chunks/property_set-D3PKyisF.js';
11
11
  import EngineInstance from './instance.js';
12
- import '../-internals/meta/lib/meta.js';
13
- import '../../@glimmer/destroyable/index.js';
14
- import '../../@glimmer/validator/index.js';
15
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
16
- import '../../@glimmer/global-context/index.js';
17
- import '../../shared-chunks/reference-C3TKDRnP.js';
18
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
19
- import { g as get } from '../../shared-chunks/observers-Bj9qLVau.js';
20
- import { s as set } from '../../shared-chunks/property_set-DaoZXGM5.js';
21
- import '../-internals/environment/index.js';
22
12
  import '../../route-recognizer/index.js';
23
13
  import '../../shared-chunks/rsvp-CnCSY930.js';
24
14
  import '../../shared-chunks/unrecognized-url-error-B3wUTorp.js';
25
15
  import RoutingService from '../routing/lib/routing-service.js';
26
16
  import ComponentLookup from '../-internals/views/lib/component_lookup.js';
27
- import '../-internals/views/lib/views/core_view.js';
28
- import '../-internals/views/lib/mixins/action_support.js';
29
- import '../-internals/views/lib/views/states.js';
30
- import '../../shared-chunks/fragment-Cc5k9Oy4.js';
31
- import '../../shared-chunks/index-BUPd6pkm.js';
32
- import '../../shared-chunks/index-QZstta6s.js';
33
- import { a as setupEngineRegistry } from '../../shared-chunks/setup-registry-B7-RknRf.js';
34
- import '../../shared-chunks/dynamic-BfDKO5NI.js';
35
- import '../../shared-chunks/constants-p7AL-pog.js';
36
- import '../runloop/index.js';
17
+ import { a as setupEngineRegistry } from '../../shared-chunks/setup-registry-XxD0xvgf.js';
37
18
  import RegistryProxyMixin from '../-internals/runtime/lib/mixins/registry_proxy.js';
38
- import '../-internals/runtime/lib/mixins/container_proxy.js';
39
- import '../-internals/runtime/lib/mixins/comparable.js';
40
- import '../-internals/runtime/lib/mixins/action_handler.js';
41
- import '../-internals/runtime/lib/mixins/-proxy.js';
42
- import '../enumerable/mutable.js';
43
- import '../-internals/runtime/lib/mixins/target_action_support.js';
44
- import '../-internals/runtime/lib/ext/rsvp.js';
45
19
  import { assert } from '../debug/lib/assert.js';
46
20
 
47
21
  function props(obj) {
@@ -1,16 +1,11 @@
1
1
  import EmberObject from '../object/index.js';
2
- import RegistryProxyMixin from '../-internals/runtime/lib/mixins/registry_proxy.js';
3
- import ContainerProxyMixin from '../-internals/runtime/lib/mixins/container_proxy.js';
4
- import '../-internals/runtime/lib/mixins/comparable.js';
5
- import '../-internals/runtime/lib/mixins/action_handler.js';
6
- import '../-internals/runtime/lib/mixins/-proxy.js';
7
- import '../enumerable/mutable.js';
8
- import '../-internals/runtime/lib/mixins/target_action_support.js';
9
2
  import '../-internals/runtime/lib/ext/rsvp.js';
10
3
  import '../debug/index.js';
11
4
  import { Registry, privatize } from '../-internals/container/index.js';
12
- import { g as guidFor } from '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
5
+ import { g as guidFor } from '../../shared-chunks/guid-Cbq2sNV_.js';
13
6
  import { ENGINE_PARENT, getEngineParent, setEngineParent } from './lib/engine-parent.js';
7
+ import ContainerProxyMixin from '../-internals/runtime/lib/mixins/container_proxy.js';
8
+ import RegistryProxyMixin from '../-internals/runtime/lib/mixins/registry_proxy.js';
14
9
  import { isFactory } from '../-internals/owner/index.js';
15
10
  import { assert } from '../debug/lib/assert.js';
16
11
  import { R as RSVP } from '../../shared-chunks/rsvp-CnCSY930.js';
@@ -1,20 +1,11 @@
1
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
2
- import '../../@glimmer/global-context/index.js';
3
- import { c as helperCapabilities } from '../../shared-chunks/api-BqXkkT0p.js';
4
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
5
- import '../../@glimmer/destroyable/index.js';
6
- import '../../@glimmer/validator/index.js';
7
- import '../../shared-chunks/reference-C3TKDRnP.js';
8
- import { setHelperManager as setHelperManager$1 } from '../../@glimmer/manager/index.js';
9
- import '../../shared-chunks/fragment-Cc5k9Oy4.js';
10
- import { i as array$1, k as concat$1, o as fn$1, p as get$1, q as hash$1 } from '../../shared-chunks/dynamic-BfDKO5NI.js';
11
- import '../../shared-chunks/constants-p7AL-pog.js';
12
- import { i as invokeHelper$1 } from '../../shared-chunks/invoke-CgfoEtMT.js';
13
- import '../../shared-chunks/index-BUPd6pkm.js';
14
- import { g as glimmerElement, u as uniqueId$1 } from '../../shared-chunks/index-QZstta6s.js';
15
- import '../-internals/container/index.js';
16
- import '../debug/index.js';
17
- import '../runloop/index.js';
1
+ import { b as setHelperManager$1 } from '../../shared-chunks/api-AYt3zE12.js';
2
+ import { i as helperCapabilities } from '../../shared-chunks/api-WvJPuo9z.js';
3
+ import { i as invokeHelper$1 } from '../../shared-chunks/invoke-B6j6DdDz.js';
4
+ import { a as array$1, f as fn$1, h as hash$1 } from '../../shared-chunks/hash-D3BENmhU.js';
5
+ import { c as concat$1, g as get$1 } from '../../shared-chunks/get-CpJjYeJO.js';
6
+ import { a as and$1, e as eq$1, g as gt$1, b as gte$1, l as lt$1, c as lte$1, n as neq$1, d as not$1, o as or$1 } from '../../shared-chunks/or-DBU9Ge4r.js';
7
+ import { e as element$1 } from '../../shared-chunks/element-C-QcIABg.js';
8
+ import { u as uniqueId$1 } from '../../shared-chunks/unique-id-A83bjEE-.js';
18
9
 
19
10
  /**
20
11
  @module @ember/helper
@@ -466,6 +457,94 @@ const get = get$1;
466
457
  * ```
467
458
  */
468
459
  const fn = fn$1;
460
+ /**
461
+ * The `{{gt}}` helper returns `true` if the first argument is greater than
462
+ * the second argument.
463
+ *
464
+ * ```js
465
+ * import { gt } from '@ember/helper';
466
+ *
467
+ * <template>
468
+ * {{if (gt @score 100) "High score!" "Keep trying"}}
469
+ * </template>
470
+ * ```
471
+ *
472
+ * In strict-mode (gjs/gts) templates, `gt` is available as a keyword and
473
+ * does not need to be imported.
474
+ *
475
+ * @method gt
476
+ * @param {number} left
477
+ * @param {number} right
478
+ * @return {boolean}
479
+ * @private
480
+ */
481
+ const gt = gt$1;
482
+ /**
483
+ * The `{{gte}}` helper returns `true` if the first argument is greater than
484
+ * or equal to the second argument.
485
+ *
486
+ * ```js
487
+ * import { gte } from '@ember/helper';
488
+ *
489
+ * <template>
490
+ * {{if (gte @age 18) "Adult" "Minor"}}
491
+ * </template>
492
+ * ```
493
+ *
494
+ * In strict-mode (gjs/gts) templates, `gte` is available as a keyword and
495
+ * does not need to be imported.
496
+ *
497
+ * @method gte
498
+ * @param {number} left
499
+ * @param {number} right
500
+ * @return {boolean}
501
+ * @private
502
+ */
503
+ const gte = gte$1;
504
+ /**
505
+ * The `{{lt}}` helper returns `true` if the first argument is less than
506
+ * the second argument.
507
+ *
508
+ * ```js
509
+ * import { lt } from '@ember/helper';
510
+ *
511
+ * <template>
512
+ * {{if (lt @temperature 0) "Freezing" "Above zero"}}
513
+ * </template>
514
+ * ```
515
+ *
516
+ * In strict-mode (gjs/gts) templates, `lt` is available as a keyword and
517
+ * does not need to be imported.
518
+ *
519
+ * @method lt
520
+ * @param {number} left
521
+ * @param {number} right
522
+ * @return {boolean}
523
+ * @private
524
+ */
525
+ const lt = lt$1;
526
+ /**
527
+ * The `{{lte}}` helper returns `true` if the first argument is less than
528
+ * or equal to the second argument.
529
+ *
530
+ * ```js
531
+ * import { lte } from '@ember/helper';
532
+ *
533
+ * <template>
534
+ * {{if (lte @count 0) "Empty" "Has items"}}
535
+ * </template>
536
+ * ```
537
+ *
538
+ * In strict-mode (gjs/gts) templates, `lte` is available as a keyword and
539
+ * does not need to be imported.
540
+ *
541
+ * @method lte
542
+ * @param {number} left
543
+ * @param {number} right
544
+ * @return {boolean}
545
+ * @private
546
+ */
547
+ const lte = lte$1;
469
548
  /**
470
549
  * The `element` helper lets you dynamically set the tag name of an element.
471
550
  *
@@ -482,8 +561,12 @@ const fn = fn$1;
482
561
  * When `@tagName` is `"h1"`, this renders `<h1 class="my-element">Hello</h1>`.
483
562
  * When `@tagName` is an empty string, the block content is rendered without a
484
563
  * wrapping element. When `@tagName` is `null` or `undefined`, nothing is rendered.
564
+ *
565
+ * @method element
566
+ * @param {string} tagName
567
+ * @private
485
568
  */
486
- const element = glimmerElement;
569
+ const element = element$1;
487
570
  /**
488
571
  * Use the {{uniqueId}} helper to generate a unique ID string suitable for use as
489
572
  * an ID attribute in the DOM.
@@ -503,7 +586,116 @@ const element = glimmerElement;
503
586
  * ```
504
587
  */
505
588
  const uniqueId = uniqueId$1;
589
+ /**
590
+ * The `{{eq}}` helper returns `true` if its two arguments are strictly equal
591
+ * (`===`). Takes exactly two arguments.
592
+ *
593
+ * ```js
594
+ * import { eq } from '@ember/helper';
595
+ *
596
+ * <template>
597
+ * {{if (eq @status "active") "Active" "Inactive"}}
598
+ * </template>
599
+ * ```
600
+ *
601
+ * In strict-mode (gjs/gts) templates, `eq` is available as a keyword and
602
+ * does not need to be imported.
603
+ *
604
+ * @method eq
605
+ * @param {unknown} left
606
+ * @param {unknown} right
607
+ * @return {boolean}
608
+ * @private
609
+ */
610
+ const eq = eq$1;
611
+ /**
612
+ * The `{{neq}}` helper returns `true` if its two arguments are strictly
613
+ * not equal (`!==`). Takes exactly two arguments.
614
+ *
615
+ * ```js
616
+ * import { neq } from '@ember/helper';
617
+ *
618
+ * <template>
619
+ * {{if (neq @status "active") "Not active" "Active"}}
620
+ * </template>
621
+ * ```
622
+ *
623
+ * In strict-mode (gjs/gts) templates, `neq` is available as a keyword and
624
+ * does not need to be imported.
625
+ *
626
+ * @method neq
627
+ * @param {unknown} left
628
+ * @param {unknown} right
629
+ * @return {boolean}
630
+ * @private
631
+ */
632
+ const neq = neq$1;
633
+ /**
634
+ * The `{{and}}` helper evaluates arguments left to right, returning the first
635
+ * falsy value (using Handlebars truthiness) or the right-most value if all
636
+ * are truthy. Requires at least two arguments.
637
+ *
638
+ * ```js
639
+ * import { and } from '@ember/helper';
640
+ *
641
+ * <template>
642
+ * {{if (and @isAdmin @isLoggedIn) "Welcome, admin!" "Access denied"}}
643
+ * </template>
644
+ * ```
645
+ *
646
+ * In strict-mode (gjs/gts) templates, `and` is available as a keyword and
647
+ * does not need to be imported.
648
+ *
649
+ * @method and
650
+ * @param {unknown} args Two or more values to evaluate
651
+ * @return {unknown} The first falsy value or the last value
652
+ * @private
653
+ */
654
+ const and = and$1;
655
+ /**
656
+ * The `{{or}}` helper evaluates arguments left to right, returning the first
657
+ * truthy value (using Handlebars truthiness) or the right-most value if all
658
+ * are falsy. Requires at least two arguments.
659
+ *
660
+ * ```js
661
+ * import { or } from '@ember/helper';
662
+ *
663
+ * <template>
664
+ * {{if (or @hasAccess @isAdmin) "Welcome!" "No access"}}
665
+ * </template>
666
+ * ```
667
+ *
668
+ * In strict-mode (gjs/gts) templates, `or` is available as a keyword and
669
+ * does not need to be imported.
670
+ *
671
+ * @method or
672
+ * @param {unknown} args Two or more values to evaluate
673
+ * @return {unknown} The first truthy value or the last value
674
+ * @private
675
+ */
676
+ const or = or$1;
677
+ /**
678
+ * The `{{not}}` helper returns the logical negation of its argument using
679
+ * Handlebars truthiness. Takes exactly one argument.
680
+ *
681
+ * ```js
682
+ * import { not } from '@ember/helper';
683
+ *
684
+ * <template>
685
+ * {{if (not @isDisabled) "Enabled" "Disabled"}}
686
+ * </template>
687
+ * ```
688
+ *
689
+ * In strict-mode (gjs/gts) templates, `not` is available as a keyword and
690
+ * does not need to be imported.
691
+ *
692
+ * @method not
693
+ * @param {unknown} value The value to negate
694
+ * @return {boolean}
695
+ * @private
696
+ */
697
+ const not = not$1;
506
698
 
507
699
  /* eslint-enable @typescript-eslint/no-empty-object-type */
508
700
 
509
- export { array, capabilities, concat, element, fn, get, hash, invokeHelper, setHelperManager, uniqueId };
701
+ export { and, array, capabilities, concat, element, eq, fn, get, gt, gte, hash, invokeHelper, lt, lte, neq, not, or, setHelperManager, uniqueId };
@@ -1,4 +1,4 @@
1
- import { ENV } from '../-internals/environment/index.js';
1
+ import { E as ENV } from '../../shared-chunks/env-g-kaAFLN.js';
2
2
  import '../debug/index.js';
3
3
  import { assert } from '../debug/lib/assert.js';
4
4
 
@@ -1,20 +1,6 @@
1
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
2
- import '../../@glimmer/global-context/index.js';
3
- import '../../@glimmer/destroyable/index.js';
4
- import '../../@glimmer/validator/index.js';
5
- import '../../shared-chunks/reference-C3TKDRnP.js';
6
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
7
- import { setModifierManager as setModifierManager$1 } from '../../@glimmer/manager/index.js';
8
- export { modifierCapabilities as capabilities } from '../../@glimmer/manager/index.js';
1
+ import { d as setModifierManager$1 } from '../../shared-chunks/api-AYt3zE12.js';
2
+ export { m as capabilities } from '../../shared-chunks/api-AYt3zE12.js';
9
3
  export { on } from './on.js';
10
- import '../../shared-chunks/fragment-Cc5k9Oy4.js';
11
- import '../../shared-chunks/index-BUPd6pkm.js';
12
- import '../../shared-chunks/index-QZstta6s.js';
13
- import '../-internals/container/index.js';
14
- import '../debug/index.js';
15
- import '../../shared-chunks/dynamic-BfDKO5NI.js';
16
- import '../../shared-chunks/constants-p7AL-pog.js';
17
- import '../runloop/index.js';
18
4
 
19
5
  // NOTE: this uses assignment to *require* that the `glimmerSetModifierManager`
20
6
  // is legally assignable to this type, i.e. that variance is properly upheld.
@@ -1,12 +1,4 @@
1
- import '../../shared-chunks/fragment-Cc5k9Oy4.js';
2
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
3
- import '../../@glimmer/global-context/index.js';
4
- import '../../@glimmer/validator/index.js';
5
- import '../../shared-chunks/reference-C3TKDRnP.js';
6
- import { t as on$1 } from '../../shared-chunks/dynamic-BfDKO5NI.js';
7
- import '../../shared-chunks/constants-p7AL-pog.js';
8
- import '../../@glimmer/destroyable/index.js';
9
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
1
+ import { o as on$1 } from '../../shared-chunks/on-D8QwT-eN.js';
10
2
 
11
3
  // In normal TypeScript, this modifier is essentially an opaque token that just
12
4
  // needs to be importable. Declaring it with a unique interface like this,
@@ -1,15 +1,7 @@
1
- import '../-internals/meta/lib/meta.js';
2
- export { g as guidFor } from '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
3
- import '../debug/index.js';
4
- import '../../@glimmer/destroyable/index.js';
5
- import '../../@glimmer/validator/index.js';
6
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
7
- import '../../@glimmer/global-context/index.js';
8
- import '../../shared-chunks/reference-C3TKDRnP.js';
9
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
10
- import { E as addListener } from '../../shared-chunks/observers-Bj9qLVau.js';
11
1
  export { g as cacheFor } from '../../shared-chunks/computed_cache-DmYKevAP.js';
12
- import '../-internals/environment/index.js';
2
+ export { g as guidFor } from '../../shared-chunks/guid-Cbq2sNV_.js';
3
+ import { a as addListener } from '../../shared-chunks/events-6aFVjD4k.js';
4
+ import '../debug/index.js';
13
5
  import EmberObject from './index.js';
14
6
  import { assert } from '../debug/lib/assert.js';
15
7
 
@@ -1,14 +1,7 @@
1
- import '../-internals/meta/lib/meta.js';
2
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
1
+ import { s as setClassicDecorator, i as isElementDescriptor, d as descriptorForProperty } from '../../shared-chunks/decorator-B5Uh5NFI.js';
3
2
  import '../debug/index.js';
4
- import '../../@glimmer/destroyable/index.js';
5
- import { tagFor, track, updateTag as UPDATE_TAG, consumeTag } from '../../@glimmer/validator/index.js';
6
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
7
- import '../../@glimmer/global-context/index.js';
8
- import '../../shared-chunks/reference-C3TKDRnP.js';
9
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
10
- import { s as setClassicDecorator, i as isElementDescriptor, b as descriptorForProperty } from '../../shared-chunks/observers-Bj9qLVau.js';
11
- import '../-internals/environment/index.js';
3
+ import { w as track, U as UPDATE_TAG, k as consumeTag } from '../../shared-chunks/cache-B7dqAS38.js';
4
+ import { t as tagFor } from '../../shared-chunks/meta-BmRXesrk.js';
12
5
  import { assert } from '../debug/lib/assert.js';
13
6
 
14
7
  let wrapGetterSetter = function (target, key, desc) {
@@ -1,14 +1,4 @@
1
- export { C as default, e as expandProperties } from '../../shared-chunks/observers-Bj9qLVau.js';
2
- import '../-internals/meta/lib/meta.js';
3
- export { a as alias } from '../../shared-chunks/alias-CSC0WIbj.js';
4
- import '../debug/index.js';
5
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
6
- import '../../@glimmer/destroyable/index.js';
7
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
8
- import '../../@glimmer/global-context/index.js';
9
- import '../../@glimmer/validator/index.js';
10
- import '../../shared-chunks/reference-C3TKDRnP.js';
11
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
12
- import '../-internals/environment/index.js';
1
+ export { C as default, e as expandProperties } from '../../shared-chunks/computed-CJnghmXC.js';
2
+ export { a as alias } from '../../shared-chunks/alias-ZcMQckQV.js';
13
3
  export { and, bool, deprecatingAlias, empty, equal, gt, gte, lt, lte, match, none, not, notEmpty, oneWay, or, readOnly, oneWay as reads } from './lib/computed/computed_macros.js';
14
4
  export { collect, filter, filterBy, intersect, map, mapBy, max, min, setDiff, sort, sum, union, uniq, uniqBy } from './lib/computed/reduce_computed_macros.js';
@@ -1,26 +1,18 @@
1
- import { getFactoryFor, setFactoryFor } from '../-internals/container/index.js';
1
+ import { g as getFactoryFor, s as setFactoryFor } from '../../shared-chunks/container-BzzHmCNj.js';
2
2
  import { getOwner } from '../-internals/owner/index.js';
3
- import { g as guidFor } from '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
3
+ import { g as guidFor } from '../../shared-chunks/guid-Cbq2sNV_.js';
4
4
  import { meta } from '../-internals/meta/lib/meta.js';
5
- import '../debug/index.js';
6
- import { registerDestructor, isDestroyed, isDestroying, destroy } from '../../@glimmer/destroyable/index.js';
7
- import '../../@glimmer/validator/index.js';
8
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
9
- import '../../@glimmer/global-context/index.js';
10
- import '../../shared-chunks/reference-C3TKDRnP.js';
11
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
12
- import { h as hasUnknownProperty, P as PROXY_CONTENT, b as descriptorForProperty, f as isClassicDecorator, d as defineProperty, j as activateObserver, k as sendEvent, D as DEBUG_INJECTION_FUNCTIONS } from '../../shared-chunks/observers-Bj9qLVau.js';
13
- import '../-internals/environment/index.js';
5
+ import { h as hasUnknownProperty, P as PROXY_CONTENT } from '../../shared-chunks/property_get-CIBS9umw.js';
6
+ import { s as sendEvent } from '../../shared-chunks/events-6aFVjD4k.js';
7
+ import { a as activateObserver } from '../../shared-chunks/observers-C2DurkLG.js';
8
+ import { d as defineProperty } from '../../shared-chunks/computed-CJnghmXC.js';
9
+ import { d as descriptorForProperty, a as isClassicDecorator } from '../../shared-chunks/decorator-B5Uh5NFI.js';
10
+ import { D as DEBUG_INJECTION_FUNCTIONS } from '../../shared-chunks/injected_property-B4T-FzZZ.js';
14
11
  import Mixin, { applyMixin } from './mixin.js';
15
- import '../-internals/runtime/lib/mixins/registry_proxy.js';
16
- import '../-internals/runtime/lib/mixins/container_proxy.js';
17
- import '../-internals/runtime/lib/mixins/comparable.js';
18
12
  import ActionHandler from '../-internals/runtime/lib/mixins/action_handler.js';
19
- import '../-internals/runtime/lib/mixins/-proxy.js';
20
- import '../enumerable/mutable.js';
21
- import '../-internals/runtime/lib/mixins/target_action_support.js';
22
- import '../-internals/runtime/lib/ext/rsvp.js';
23
13
  import makeArray from '../array/lib/make-array.js';
14
+ import '../debug/index.js';
15
+ import { registerDestructor, isDestroyed, isDestroying, destroy } from '../../@glimmer/destroyable/index.js';
24
16
  import { OWNER } from '../../@glimmer/owner/index.js';
25
17
  import { assert } from '../debug/lib/assert.js';
26
18
 
@@ -1,15 +1,5 @@
1
- import '../-internals/meta/lib/meta.js';
2
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
3
- import '../debug/index.js';
4
- import '../../@glimmer/destroyable/index.js';
5
- import '../../@glimmer/validator/index.js';
6
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
7
- import '../../@glimmer/global-context/index.js';
8
- import '../../shared-chunks/reference-C3TKDRnP.js';
9
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
10
- import { q as hasListeners, F as removeListener, k as sendEvent, E as addListener } from '../../shared-chunks/observers-Bj9qLVau.js';
11
- export { M as on } from '../../shared-chunks/observers-Bj9qLVau.js';
12
- import '../-internals/environment/index.js';
1
+ import { h as hasListeners, r as removeListener, s as sendEvent, a as addListener } from '../../shared-chunks/events-6aFVjD4k.js';
2
+ export { o as on } from '../../shared-chunks/events-6aFVjD4k.js';
13
3
  import Mixin from './mixin.js';
14
4
 
15
5
  /**
@@ -1,11 +1 @@
1
- import '../-internals/meta/lib/meta.js';
2
- import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
3
- import '../debug/index.js';
4
- import '../../@glimmer/destroyable/index.js';
5
- import '../../@glimmer/validator/index.js';
6
- import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
7
- import '../../@glimmer/global-context/index.js';
8
- import '../../shared-chunks/reference-C3TKDRnP.js';
9
- import '../../shared-chunks/capabilities-O_xc7Yqk.js';
10
- export { E as addListener, F as removeListener, k as sendEvent } from '../../shared-chunks/observers-Bj9qLVau.js';
11
- import '../-internals/environment/index.js';
1
+ export { a as addListener, r as removeListener, s as sendEvent } from '../../shared-chunks/events-6aFVjD4k.js';