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.
- package/build-metadata.json +3 -3
- package/dist/dev/packages/@ember/-internals/container/index.js +4 -401
- package/dist/dev/packages/@ember/-internals/deprecations/index.js +1 -1
- package/dist/dev/packages/@ember/-internals/environment/index.js +3 -151
- package/dist/dev/packages/@ember/-internals/glimmer/index.js +14 -15
- package/dist/dev/packages/@ember/-internals/meta/lib/meta.js +0 -1
- package/dist/dev/packages/@ember/-internals/metal/index.js +18 -9
- package/dist/dev/packages/@ember/-internals/routing/index.js +1 -10
- package/dist/dev/packages/@ember/-internals/runtime/lib/mixins/-proxy.js +10 -12
- package/dist/dev/packages/@ember/-internals/runtime/lib/mixins/action_handler.js +1 -10
- package/dist/dev/packages/@ember/-internals/runtime/lib/mixins/target_action_support.js +3 -10
- package/dist/dev/packages/@ember/-internals/string/index.js +0 -1
- package/dist/dev/packages/@ember/-internals/utils/index.js +8 -3
- package/dist/dev/packages/@ember/-internals/views/lib/compat/fallback-view-registry.js +0 -1
- package/dist/dev/packages/@ember/-internals/views/lib/mixins/action_support.js +3 -12
- package/dist/dev/packages/@ember/-internals/views/lib/system/event_dispatcher.js +2 -11
- package/dist/dev/packages/@ember/-internals/views/lib/system/utils.js +1 -1
- package/dist/dev/packages/@ember/-internals/views/lib/views/core_view.js +1 -18
- package/dist/dev/packages/@ember/-internals/views/lib/views/states.js +1 -1
- package/dist/dev/packages/@ember/application/index.js +5 -28
- package/dist/dev/packages/@ember/application/instance.js +3 -22
- package/dist/dev/packages/@ember/application/namespace.js +4 -11
- package/dist/dev/packages/@ember/array/index.js +7 -15
- package/dist/dev/packages/@ember/array/proxy.js +10 -14
- package/dist/dev/packages/@ember/canary-features/index.js +1 -1
- package/dist/dev/packages/@ember/component/helper.js +1 -14
- package/dist/dev/packages/@ember/component/index.js +1355 -16
- package/dist/dev/packages/@ember/component/template-only.js +1 -9
- package/dist/dev/packages/@ember/controller/index.js +3 -19
- package/dist/dev/packages/@ember/debug/container-debug-adapter.js +0 -19
- package/dist/dev/packages/@ember/debug/data-adapter.js +4 -11
- package/dist/dev/packages/@ember/debug/index.js +2 -1
- package/dist/dev/packages/@ember/debug/lib/deprecate.js +1 -1
- package/dist/dev/packages/@ember/engine/index.js +3 -29
- package/dist/dev/packages/@ember/engine/instance.js +3 -8
- package/dist/dev/packages/@ember/helper/index.js +211 -19
- package/dist/dev/packages/@ember/instrumentation/index.js +1 -1
- package/dist/dev/packages/@ember/modifier/index.js +2 -16
- package/dist/dev/packages/@ember/modifier/on.js +1 -9
- package/dist/dev/packages/@ember/object/-internals.js +3 -11
- package/dist/dev/packages/@ember/object/compat.js +3 -10
- package/dist/dev/packages/@ember/object/computed.js +2 -12
- package/dist/dev/packages/@ember/object/core.js +10 -18
- package/dist/dev/packages/@ember/object/evented.js +2 -12
- package/dist/dev/packages/@ember/object/events.js +1 -11
- package/dist/dev/packages/@ember/object/index.js +10 -14
- package/dist/dev/packages/@ember/object/internals.js +1 -1
- package/dist/dev/packages/@ember/object/lib/computed/computed_macros.js +6 -23
- package/dist/dev/packages/@ember/object/lib/computed/reduce_computed_macros.js +3 -12
- package/dist/dev/packages/@ember/object/mixin.js +7 -10
- package/dist/dev/packages/@ember/object/observable.js +8 -12
- package/dist/dev/packages/@ember/object/observers.js +1 -11
- package/dist/dev/packages/@ember/object/promise-proxy-mixin.js +3 -13
- package/dist/dev/packages/@ember/object/proxy.js +0 -7
- package/dist/dev/packages/@ember/reactive/collections.js +589 -1
- package/dist/dev/packages/@ember/renderer/index.js +1 -14
- package/dist/dev/packages/@ember/routing/-internals.js +1 -10
- package/dist/dev/packages/@ember/routing/index.js +614 -14
- package/dist/dev/packages/@ember/routing/lib/generate_controller.js +2 -11
- package/dist/dev/packages/@ember/routing/lib/routing-service.js +7 -17
- package/dist/dev/packages/@ember/routing/lib/utils.js +2 -11
- package/dist/dev/packages/@ember/routing/route.js +12 -23
- package/dist/dev/packages/@ember/routing/router-service.js +8 -17
- package/dist/dev/packages/@ember/routing/router.js +5 -21
- package/dist/dev/packages/@ember/runloop/index.js +1 -10
- package/dist/dev/packages/@ember/service/index.js +1 -11
- package/dist/dev/packages/@ember/template/index.js +1 -14
- package/dist/dev/packages/@ember/template-compiler/lib/compile-options.js +14 -15
- package/dist/dev/packages/@ember/template-compiler/lib/dasherize-component-name.js +0 -1
- package/dist/dev/packages/@ember/template-compiler/lib/plugins/auto-import-builtins.js +13 -42
- package/dist/dev/packages/@ember/template-compiler/lib/plugins/index.js +1 -1
- package/dist/dev/packages/@ember/template-compiler/lib/plugins/transform-resolutions.js +1 -3
- package/dist/dev/packages/@ember/template-compiler/lib/template.js +2 -10
- package/dist/dev/packages/@ember/template-factory/index.js +1 -8
- package/dist/dev/packages/@ember/utils/lib/compare.js +0 -7
- package/dist/dev/packages/@ember/utils/lib/is_empty.js +1 -12
- package/dist/dev/packages/@glimmer/manager/index.js +4 -314
- package/dist/dev/packages/@glimmer/node/index.js +3 -11
- package/dist/dev/packages/@glimmer/opcode-compiler/index.js +5 -7
- package/dist/dev/packages/@glimmer/program/index.js +194 -3
- package/dist/dev/packages/@glimmer/reference/index.js +4 -5
- package/dist/dev/packages/@glimmer/runtime/index.js +17 -10
- package/dist/dev/packages/@glimmer/tracking/index.js +2 -11
- package/dist/dev/packages/@glimmer/tracking/primitives/cache/index.js +1 -11
- package/dist/dev/packages/@glimmer/util/index.js +1 -2
- package/dist/dev/packages/@glimmer/validator/index.js +4 -1253
- package/dist/dev/packages/@glimmer/vm/index.js +1 -1
- package/dist/dev/packages/@glimmer/wire-format/index.js +3 -65
- package/dist/dev/packages/ember/version.js +1 -1
- package/dist/dev/packages/ember-template-compiler/index.js +7 -7
- package/dist/dev/packages/shared-chunks/{alias-CSC0WIbj.js → alias-ZcMQckQV.js} +8 -4
- package/dist/dev/packages/shared-chunks/api-AYt3zE12.js +310 -0
- package/dist/dev/packages/shared-chunks/{api-BqXkkT0p.js → api-WvJPuo9z.js} +4 -5
- package/dist/dev/packages/shared-chunks/{args-proxy-DgXMc9b5.js → args-proxy-BNLuRFlO.js} +2 -4
- package/dist/dev/packages/shared-chunks/{array-D8PfjQHi.js → array-Bh_kUjzy.js} +2 -1
- package/dist/dev/packages/shared-chunks/cache-B7dqAS38.js +596 -0
- package/dist/dev/packages/shared-chunks/{capabilities-O_xc7Yqk.js → capabilities-CZkuOqqC.js} +0 -5
- package/dist/dev/packages/shared-chunks/chain-tags-D6tuFUj_.js +190 -0
- package/dist/dev/packages/shared-chunks/{collections-D_nY_0UJ.js → collections-DPkjqeA3.js} +0 -1
- package/dist/dev/packages/shared-chunks/{compiler-D1leQ3Gl.js → compiler-CXB_8GdR.js} +7043 -234
- package/dist/dev/packages/shared-chunks/computed-CJnghmXC.js +980 -0
- package/dist/dev/packages/shared-chunks/container-BzzHmCNj.js +404 -0
- package/dist/dev/packages/shared-chunks/curly-CvC8E_4-.js +617 -0
- package/dist/dev/packages/shared-chunks/{fragment-Cc5k9Oy4.js → curried-BVwSNqpf.js} +5 -288
- package/dist/dev/packages/shared-chunks/decorator-B5Uh5NFI.js +135 -0
- package/dist/dev/packages/shared-chunks/element-C-QcIABg.js +109 -0
- package/dist/dev/packages/shared-chunks/element-builder-kHVx0F__.js +812 -0
- package/dist/dev/packages/shared-chunks/env-g-kaAFLN.js +161 -0
- package/dist/dev/packages/shared-chunks/events-6aFVjD4k.js +180 -0
- package/dist/dev/packages/shared-chunks/get-CpJjYeJO.js +138 -0
- package/dist/dev/packages/shared-chunks/get-debug-name-CSniHBsn.js +45 -0
- package/dist/dev/packages/shared-chunks/get_properties-CIm8IAtP.js +55 -0
- package/dist/dev/packages/shared-chunks/guid-Cbq2sNV_.js +123 -0
- package/dist/dev/packages/shared-chunks/hash-D3BENmhU.js +192 -0
- package/dist/dev/packages/shared-chunks/helper-DlC4YesW.js +314 -0
- package/dist/dev/packages/shared-chunks/index-CTxkmV78.js +2500 -0
- package/dist/dev/packages/shared-chunks/index-D-xTBV4B.js +220 -0
- package/dist/dev/packages/shared-chunks/{index-BUPd6pkm.js → index-DmGmwWPJ.js} +29 -29
- package/dist/dev/packages/shared-chunks/injected_property-B4T-FzZZ.js +70 -0
- package/dist/dev/packages/shared-chunks/intern-zquhAEIg.js +51 -0
- package/dist/dev/packages/shared-chunks/internal-CbQSKXEm.js +140 -0
- package/dist/dev/packages/shared-chunks/internal-helper-Dsl9_7H_.js +7 -0
- package/dist/dev/packages/shared-chunks/{invoke-CgfoEtMT.js → invoke-B6j6DdDz.js} +3 -7
- package/dist/{prod/packages/shared-chunks/is_proxy-Cr1qlMv_.js → dev/packages/shared-chunks/is_proxy-Bzg0d4m4.js} +1 -1
- package/dist/dev/packages/shared-chunks/libraries-CHBwbR72.js +79 -0
- package/dist/dev/packages/shared-chunks/mandatory-setter-BpbAMTzV.js +107 -0
- package/dist/dev/packages/shared-chunks/meta-BmRXesrk.js +46 -0
- package/dist/{prod/packages/shared-chunks/name-C68GLLO3.js → dev/packages/shared-chunks/name-Clp4Vsod.js} +1 -1
- package/dist/dev/packages/shared-chunks/{namespace_search-uT8odThF.js → namespace_search-BfvzEQzN.js} +1 -2
- package/dist/dev/packages/shared-chunks/normalize-CKySQVU7.js +84 -0
- package/dist/dev/packages/shared-chunks/observers-C2DurkLG.js +199 -0
- package/dist/dev/packages/shared-chunks/on-D8QwT-eN.js +253 -0
- package/dist/dev/packages/shared-chunks/opcode-metadata-9iSW5JGP.js +285 -0
- package/dist/dev/packages/shared-chunks/opcodes-CplRyHl_.js +50 -0
- package/dist/dev/packages/shared-chunks/or-DBU9Ge4r.js +118 -0
- package/dist/{prod/packages/shared-chunks/program-B7SJZ5NF.js → dev/packages/shared-chunks/program-DzAfcWFj.js} +1 -1
- package/dist/dev/packages/shared-chunks/{program-context-sJz0oHOA.js → program-context-CqcQMsfa.js} +3 -3
- package/dist/dev/packages/shared-chunks/property_get-CIBS9umw.js +139 -0
- package/dist/dev/packages/shared-chunks/{property_set-DaoZXGM5.js → property_set-D3PKyisF.js} +4 -2
- package/dist/dev/packages/shared-chunks/props-fiqxqhAH.js +85 -0
- package/dist/dev/packages/shared-chunks/{reference-C3TKDRnP.js → reference-BoPB2LfI.js} +3 -4
- package/dist/dev/packages/shared-chunks/{registers-ylirb0dq.js → registers-DoamZwaG.js} +1 -1
- package/dist/{prod/packages/shared-chunks/rehydrate-builder-CUefZL4I.js → dev/packages/shared-chunks/rehydrate-builder-DdzXTaJk.js} +7 -4
- package/dist/dev/packages/shared-chunks/{render-C1HzKUcM.js → render-DDdabL30.js} +510 -15
- package/dist/{prod/packages/shared-chunks/serialize-builder-DgpXSc2Q.js → dev/packages/shared-chunks/serialize-builder-B3u9Wr3n.js} +2 -7
- package/dist/dev/packages/shared-chunks/set_properties-BghuuGJx.js +48 -0
- package/dist/dev/packages/shared-chunks/{setup-registry-B7-RknRf.js → setup-registry-XxD0xvgf.js} +34 -14
- package/dist/dev/packages/shared-chunks/spec-BXl1reqK.js +16 -0
- package/dist/dev/packages/shared-chunks/super-BBBjgF69.js +91 -0
- package/dist/dev/packages/shared-chunks/template-BRrQR6KS.js +16 -0
- package/dist/dev/packages/shared-chunks/template-only-Yluyu0DY.js +78 -0
- package/dist/dev/packages/shared-chunks/textarea-C0Us0PNJ.js +468 -0
- package/dist/dev/packages/shared-chunks/tracked-CKE4wnE6.js +148 -0
- package/dist/dev/packages/shared-chunks/tracked-data-CGnA4ytZ.js +31 -0
- package/dist/dev/packages/shared-chunks/transform-resolutions-h1ik8gqW.js +645 -0
- package/dist/dev/packages/shared-chunks/unique-id-A83bjEE-.js +32 -0
- package/dist/{prod/packages/shared-chunks/on-CLxdmpmk.js → dev/packages/shared-chunks/untouchable-this-cH6_N2LJ.js} +215 -1397
- package/dist/dev/packages/shared-chunks/well-known-_EVO9RaV.js +17 -0
- package/dist/prod/packages/@ember/-internals/container/index.js +5 -315
- package/dist/prod/packages/@ember/-internals/deprecations/index.js +1 -1
- package/dist/prod/packages/@ember/-internals/environment/index.js +3 -148
- package/dist/prod/packages/@ember/-internals/glimmer/index.js +14 -13
- package/dist/prod/packages/@ember/-internals/meta/lib/meta.js +1 -2
- package/dist/prod/packages/@ember/-internals/metal/index.js +19 -13
- package/dist/prod/packages/@ember/-internals/routing/index.js +2 -6
- package/dist/prod/packages/@ember/-internals/runtime/lib/ext/rsvp.js +1 -1
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/-proxy.js +10 -10
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/action_handler.js +2 -6
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/registry_proxy.js +1 -1
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/target_action_support.js +3 -6
- package/dist/prod/packages/@ember/-internals/string/index.js +0 -2
- package/dist/prod/packages/@ember/-internals/utils/index.js +33 -30
- package/dist/prod/packages/@ember/-internals/views/lib/compat/fallback-view-registry.js +0 -2
- package/dist/prod/packages/@ember/-internals/views/lib/mixins/action_support.js +2 -6
- package/dist/prod/packages/@ember/-internals/views/lib/system/event_dispatcher.js +3 -7
- package/dist/prod/packages/@ember/-internals/views/lib/system/utils.js +2 -2
- package/dist/prod/packages/@ember/-internals/views/lib/views/core_view.js +1 -14
- package/dist/prod/packages/@ember/-internals/views/lib/views/states.js +1 -2
- package/dist/prod/packages/@ember/application/index.js +5 -24
- package/dist/prod/packages/@ember/application/instance.js +6 -18
- package/dist/prod/packages/@ember/application/namespace.js +5 -8
- package/dist/prod/packages/@ember/array/index.js +8 -12
- package/dist/prod/packages/@ember/array/proxy.js +10 -10
- package/dist/prod/packages/@ember/canary-features/index.js +1 -1
- package/dist/prod/packages/@ember/component/helper.js +1 -12
- package/dist/prod/packages/@ember/component/index.js +1292 -15
- package/dist/prod/packages/@ember/component/template-only.js +1 -6
- package/dist/prod/packages/@ember/controller/index.js +3 -16
- package/dist/prod/packages/@ember/debug/container-debug-adapter.js +1 -15
- package/dist/prod/packages/@ember/debug/data-adapter.js +5 -7
- package/dist/prod/packages/@ember/debug/index.js +1 -0
- package/dist/prod/packages/@ember/debug/lib/deprecate.js +1 -1
- package/dist/prod/packages/@ember/engine/index.js +4 -25
- package/dist/prod/packages/@ember/engine/instance.js +4 -9
- package/dist/prod/packages/@ember/helper/index.js +211 -17
- package/dist/prod/packages/@ember/instrumentation/index.js +1 -1
- package/dist/prod/packages/@ember/modifier/index.js +2 -14
- package/dist/prod/packages/@ember/modifier/on.js +1 -6
- package/dist/prod/packages/@ember/object/-internals.js +3 -6
- package/dist/prod/packages/@ember/object/compat.js +4 -7
- package/dist/prod/packages/@ember/object/computed.js +2 -8
- package/dist/prod/packages/@ember/object/core.js +9 -15
- package/dist/prod/packages/@ember/object/evented.js +2 -7
- package/dist/prod/packages/@ember/object/events.js +1 -6
- package/dist/prod/packages/@ember/object/index.js +10 -12
- package/dist/prod/packages/@ember/object/internals.js +3 -6
- package/dist/prod/packages/@ember/object/lib/computed/computed_macros.js +6 -20
- package/dist/prod/packages/@ember/object/lib/computed/reduce_computed_macros.js +3 -9
- package/dist/prod/packages/@ember/object/mixin.js +7 -9
- package/dist/prod/packages/@ember/object/observable.js +8 -9
- package/dist/prod/packages/@ember/object/observers.js +1 -6
- package/dist/prod/packages/@ember/object/promise-proxy-mixin.js +3 -9
- package/dist/prod/packages/@ember/object/proxy.js +0 -7
- package/dist/prod/packages/@ember/reactive/collections.js +589 -1
- package/dist/prod/packages/@ember/renderer/index.js +1 -12
- package/dist/prod/packages/@ember/routing/history-location.js +1 -1
- package/dist/prod/packages/@ember/routing/index.js +581 -12
- package/dist/prod/packages/@ember/routing/lib/dsl.js +1 -1
- package/dist/prod/packages/@ember/routing/lib/generate_controller.js +2 -6
- package/dist/prod/packages/@ember/routing/lib/routing-service.js +5 -14
- package/dist/prod/packages/@ember/routing/lib/utils.js +2 -6
- package/dist/prod/packages/@ember/routing/none-location.js +1 -1
- package/dist/prod/packages/@ember/routing/route.js +12 -21
- package/dist/prod/packages/@ember/routing/router-service.js +6 -14
- package/dist/prod/packages/@ember/routing/router.js +5 -17
- package/dist/prod/packages/@ember/runloop/index.js +2 -6
- package/dist/prod/packages/@ember/service/index.js +1 -7
- package/dist/prod/packages/@ember/template/index.js +1 -12
- package/dist/prod/packages/@ember/template-compiler/lib/compile-options.js +15 -14
- package/dist/prod/packages/@ember/template-compiler/lib/dasherize-component-name.js +0 -2
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-against-attrs.js +1 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-against-named-outlets.js +1 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-input-helper-without-block.js +1 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-reserved-named-arguments.js +1 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/auto-import-builtins.js +13 -42
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/index.js +1 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-each-track-array.js +1 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-in-element.js +1 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-resolutions.js +127 -4
- package/dist/prod/packages/@ember/template-compiler/lib/template.js +2 -7
- package/dist/prod/packages/@ember/template-factory/index.js +1 -5
- package/dist/prod/packages/@ember/utils/lib/compare.js +1 -8
- package/dist/prod/packages/@ember/utils/lib/is_empty.js +1 -7
- package/dist/prod/packages/@glimmer/manager/index.js +4 -292
- package/dist/prod/packages/@glimmer/node/index.js +3 -8
- package/dist/prod/packages/@glimmer/opcode-compiler/index.js +5 -5
- package/dist/prod/packages/@glimmer/program/index.js +194 -3
- package/dist/prod/packages/@glimmer/reference/index.js +4 -4
- package/dist/prod/packages/@glimmer/runtime/index.js +16 -8
- package/dist/prod/packages/@glimmer/tracking/index.js +2 -7
- package/dist/prod/packages/@glimmer/tracking/primitives/cache/index.js +1 -6
- package/dist/prod/packages/@glimmer/util/index.js +2 -2
- package/dist/prod/packages/@glimmer/validator/index.js +5 -1016
- package/dist/prod/packages/@glimmer/vm/index.js +1 -1
- package/dist/prod/packages/@glimmer/wire-format/index.js +3 -65
- package/dist/prod/packages/ember/version.js +1 -1
- package/dist/prod/packages/ember-template-compiler/index.js +5 -7
- package/dist/prod/packages/shared-chunks/{alias-BLBQkche.js → alias-CLuFeKoV.js} +8 -6
- package/dist/prod/packages/shared-chunks/api-CM1trl_4.js +289 -0
- package/dist/prod/packages/shared-chunks/{api-DtWa0ZaF.js → api-zh_k31vb.js} +4 -5
- package/dist/prod/packages/shared-chunks/{args-proxy-Dl0A0YWI.js → args-proxy-BDXbXCF9.js} +2 -2
- package/dist/prod/packages/shared-chunks/{array-kVQfzrQn.js → array-DHdr4__s.js} +3 -3
- package/dist/prod/packages/shared-chunks/assert-CUCJBR2C.js +19 -0
- package/dist/prod/packages/shared-chunks/cache-BIlOoPA7.js +371 -0
- package/dist/prod/packages/shared-chunks/{capabilities-DXA-L0iT.js → capabilities-_5e35539.js} +0 -3
- package/dist/prod/packages/shared-chunks/chain-tags-BJqcuCM1.js +179 -0
- package/dist/prod/packages/shared-chunks/{compiler-Bbki2GT_.js → compiler-DjQtTQGk.js} +7045 -193
- package/dist/prod/packages/shared-chunks/{namespace_search-Dcdalhj6.js → computed-2Udcmflw.js} +109 -239
- package/dist/prod/packages/shared-chunks/container-D5NwW5Fd.js +316 -0
- package/dist/prod/packages/shared-chunks/curly-BsqvV8G0.js +546 -0
- package/dist/prod/packages/shared-chunks/{fragment-D7nBU9ae.js → curried-BVwSNqpf.js} +6 -303
- package/dist/prod/packages/shared-chunks/debug-render-tree-BLtnOSbb.js +2049 -0
- package/dist/prod/packages/shared-chunks/{decorator-BdDDBUd2.js → decorator-DBCISop4.js} +1 -1
- package/dist/prod/packages/shared-chunks/element-BjFr0tO0.js +101 -0
- package/dist/prod/packages/shared-chunks/{element-builder-BmLF0C-1.js → element-builder-BPjq0rxK.js} +109 -88
- package/dist/prod/packages/shared-chunks/env-DXxsTFkM.js +158 -0
- package/dist/prod/packages/shared-chunks/events-970OxD6Q.js +175 -0
- package/dist/prod/packages/shared-chunks/get-D5wxdTkY.js +138 -0
- package/dist/prod/packages/shared-chunks/get_properties-BcAC5sGx.js +55 -0
- package/dist/prod/packages/shared-chunks/guid-Cbq2sNV_.js +123 -0
- package/dist/prod/packages/shared-chunks/hash-DcUe-meU.js +192 -0
- package/dist/prod/packages/shared-chunks/helper-Da672z4a.js +299 -0
- package/dist/prod/packages/shared-chunks/{index-CjaDF9kC.js → index--2U-v2nf.js} +18 -10
- package/dist/prod/packages/shared-chunks/index-D-xTBV4B.js +220 -0
- package/dist/prod/packages/shared-chunks/index-D87qoERP.js +2322 -0
- package/dist/prod/packages/shared-chunks/{injected_property-CTVs5FPh.js → injected_property-D9B-fPiH.js} +3 -3
- package/dist/prod/packages/shared-chunks/intern-zquhAEIg.js +51 -0
- package/dist/prod/packages/shared-chunks/internal-DidurjJB.js +137 -0
- package/dist/prod/packages/shared-chunks/internal-helper-DIbr1RgC.js +7 -0
- package/dist/prod/packages/shared-chunks/{invoke-BdJCXD-b.js → invoke-Dr_CRwA_.js} +3 -5
- package/dist/{dev/packages/shared-chunks/is_proxy-B0smdQy8.js → prod/packages/shared-chunks/is_proxy-Bzg0d4m4.js} +1 -1
- package/dist/prod/packages/shared-chunks/libraries-DaXpIDYN.js +60 -0
- package/dist/prod/packages/shared-chunks/meta-B9mldqPL.js +36 -0
- package/dist/{dev/packages/shared-chunks/name-Z7dpqvzn.js → prod/packages/shared-chunks/name-Clp4Vsod.js} +1 -1
- package/dist/prod/packages/shared-chunks/namespace_search-BfvzEQzN.js +134 -0
- package/dist/prod/packages/shared-chunks/normalize-D9jDJVGg.js +84 -0
- package/dist/prod/packages/shared-chunks/observers-Co4JALkS.js +199 -0
- package/dist/prod/packages/shared-chunks/on-C3ZQiUUD.js +228 -0
- package/dist/prod/packages/shared-chunks/opcode-metadata-9iSW5JGP.js +285 -0
- package/dist/prod/packages/shared-chunks/opcodes-CplRyHl_.js +50 -0
- package/dist/prod/packages/shared-chunks/or-oTVMuHc8.js +91 -0
- package/dist/{dev/packages/shared-chunks/program-DfV0v8aa.js → prod/packages/shared-chunks/program-B7CWdS8W.js} +1 -2
- package/dist/prod/packages/shared-chunks/{program-context-DFiwaPMR.js → program-context-CGMN-aQM.js} +3 -3
- package/dist/prod/packages/shared-chunks/property_get-hWJ0nGhW.js +122 -0
- package/dist/prod/packages/shared-chunks/{property_set-B2sZxeCw.js → property_set-Dj5-ScWk.js} +4 -5
- package/dist/prod/packages/shared-chunks/props-fiqxqhAH.js +85 -0
- package/dist/prod/packages/shared-chunks/{reference-BNqcwZWH.js → reference-BshxG6wn.js} +3 -3
- package/dist/prod/packages/shared-chunks/{registers-ylirb0dq.js → registers-DoamZwaG.js} +1 -1
- package/dist/{dev/packages/shared-chunks/rehydrate-builder-CEk2KOIk.js → prod/packages/shared-chunks/rehydrate-builder-BKg2X6Lo.js} +7 -7
- package/dist/prod/packages/shared-chunks/{render-BlriW61t.js → render-nx5-PsDW.js} +487 -12
- package/dist/{dev/packages/shared-chunks/serialize-builder-CPKxdfiH.js → prod/packages/shared-chunks/serialize-builder-BGbC30SN.js} +2 -10
- package/dist/prod/packages/shared-chunks/set_properties-oPyURk67.js +48 -0
- package/dist/prod/packages/shared-chunks/{setup-registry-DeObnZ2Z.js → setup-registry-TiaKLj5k.js} +35 -13
- package/dist/prod/packages/shared-chunks/spec-BXl1reqK.js +16 -0
- package/dist/prod/packages/shared-chunks/super-BBBjgF69.js +91 -0
- package/dist/prod/packages/shared-chunks/template-BRrQR6KS.js +16 -0
- package/dist/prod/packages/shared-chunks/template-only-BtLl0uH0.js +78 -0
- package/dist/prod/packages/shared-chunks/textarea-CPKZ1c_O.js +455 -0
- package/dist/prod/packages/shared-chunks/{tracked-Cl5l4v8b.js → tracked-CffAABMz.js} +6 -4
- package/dist/prod/packages/shared-chunks/tracked-data-C83f5V5S.js +31 -0
- package/dist/prod/packages/shared-chunks/unique-id-CfHImDRV.js +32 -0
- package/dist/prod/packages/shared-chunks/well-known-_EVO9RaV.js +17 -0
- package/docs/data.json +1368 -1031
- package/package.json +1 -1
- package/types/stable/@ember/-internals/container/lib/registry.d.ts +1 -1
- package/types/stable/@ember/-internals/deprecations/index.d.ts +1 -1
- package/types/stable/@ember/-internals/environment/lib/env.d.ts +11 -0
- package/types/stable/@ember/-internals/glimmer/index.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/component-managers/curly.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/component-managers/mount.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/component-managers/outlet.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/component-managers/route-template.d.ts +2 -2
- package/types/stable/@ember/-internals/glimmer/lib/component.d.ts +9 -7
- package/types/stable/@ember/-internals/glimmer/lib/components/abstract-input.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/dom.d.ts +6 -2
- package/types/stable/@ember/-internals/glimmer/lib/environment.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/helper.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/renderer.d.ts +3 -3
- package/types/stable/@ember/-internals/glimmer/lib/setup-registry.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/utils/bindings.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/utils/curly-component-state-bucket.d.ts +3 -2
- package/types/stable/@ember/-internals/glimmer/lib/utils/iterator.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/utils/managers.d.ts +2 -1
- package/types/stable/@ember/-internals/glimmer/lib/utils/serialization-first-node-helpers.d.ts +1 -1
- package/types/stable/@ember/-internals/glimmer/lib/utils/string.d.ts +1 -1
- package/types/stable/@ember/-internals/meta/lib/meta.d.ts +3 -2
- package/types/stable/@ember/-internals/metal/lib/cache.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/chain-tags.d.ts +3 -2
- package/types/stable/@ember/-internals/metal/lib/computed.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/decorator.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/deprecate_property.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/events.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/observer.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/properties.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/property_events.d.ts +1 -1
- package/types/stable/@ember/-internals/metal/lib/tags.d.ts +2 -1
- package/types/stable/@ember/-internals/runtime/lib/mixins/container_proxy.d.ts +1 -1
- package/types/stable/@ember/-internals/runtime/lib/mixins/registry_proxy.d.ts +1 -1
- package/types/stable/@ember/-internals/utils/lib/is_proxy.d.ts +1 -1
- package/types/stable/@ember/-internals/utils/lib/mandatory-setter.d.ts +1 -1
- package/types/stable/@ember/-internals/views/lib/system/utils.d.ts +1 -1
- package/types/stable/@ember/-internals/views/lib/views/core_view.d.ts +2 -2
- package/types/stable/@ember/-internals/views/lib/views/states.d.ts +1 -1
- package/types/stable/@ember/application/index.d.ts +5 -4
- package/types/stable/@ember/application/instance.d.ts +4 -3
- package/types/stable/@ember/application/namespace.d.ts +1 -1
- package/types/stable/@ember/array/proxy.d.ts +4 -3
- package/types/stable/@ember/component/helper.d.ts +1 -1
- package/types/stable/@ember/component/index.d.ts +6 -3
- package/types/stable/@ember/controller/index.d.ts +2 -2
- package/types/stable/@ember/debug/container-debug-adapter.d.ts +1 -1
- package/types/stable/@ember/engine/index.d.ts +3 -3
- package/types/stable/@ember/engine/instance.d.ts +4 -3
- package/types/stable/@ember/helper/index.d.ts +223 -3
- package/types/stable/@ember/modifier/index.d.ts +1 -1
- package/types/stable/@ember/object/-internals.d.ts +2 -2
- package/types/stable/@ember/object/compat.d.ts +2 -2
- package/types/stable/@ember/object/computed.d.ts +3 -1
- package/types/stable/@ember/object/evented.d.ts +1 -1
- package/types/stable/@ember/object/events.d.ts +1 -1
- package/types/stable/@ember/object/index.d.ts +8 -2
- package/types/stable/@ember/object/lib/computed/computed_macros.d.ts +1 -1
- package/types/stable/@ember/object/mixin.d.ts +1 -1
- package/types/stable/@ember/object/observers.d.ts +1 -1
- package/types/stable/@ember/object/proxy.d.ts +1 -1
- package/types/stable/@ember/reactive/collections.d.ts +6 -6
- package/types/stable/@ember/renderer/index.d.ts +2 -2
- package/types/stable/@ember/routing/index.d.ts +1 -1
- package/types/stable/@ember/routing/lib/controller_for.d.ts +2 -2
- package/types/stable/@ember/routing/route.d.ts +2 -2
- package/types/stable/@ember/routing/router.d.ts +2 -2
- package/types/stable/@ember/service/index.d.ts +1 -1
- package/types/stable/@ember/template/index.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/dasherize-component-name.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/assert-against-attrs.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/assert-against-named-outlets.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/assert-input-helper-without-block.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/assert-reserved-named-arguments.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/auto-import-builtins.d.ts +1 -4
- package/types/stable/@ember/template-compiler/lib/plugins/transform-action-syntax.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/transform-each-in-into-each.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/transform-each-track-array.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/transform-in-element.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/transform-quoted-bindings-into-just-bindings.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/transform-resolutions.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/transform-wrap-mount-and-outlet.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/plugins/utils.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/system/calculate-location-display.d.ts +1 -1
- package/types/stable/@ember/template-compiler/lib/types.d.ts +2 -1
- package/types/stable/@ember/template-factory/index.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/builder/builder-interface.d.ts +2 -2
- package/types/stable/@glimmer/compiler/lib/builder/builder.d.ts +2 -2
- package/types/stable/@glimmer/compiler/lib/compiler.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/context.d.ts +2 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/index.d.ts +2 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/impl.d.ts +2 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/curry.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/dynamic-vars.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/has-block.d.ts +2 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/if-unless.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/keywords/utils/log.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/element/classified.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/element/component.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/element/simple-element.d.ts +2 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/expressions.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/statements.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/1-normalization/visitors/strict-mode.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/2-encoding/expressions.d.ts +1 -1
- package/types/stable/@glimmer/compiler/lib/passes/2-encoding/mir.d.ts +3 -1
- package/types/stable/@glimmer/compiler/lib/shared/result.d.ts +1 -1
- package/types/stable/@glimmer/manager/lib/public/component.d.ts +1 -1
- package/types/stable/@glimmer/manager/lib/util/args-proxy.d.ts +1 -1
- package/types/stable/@glimmer/manager/lib/util/capabilities.d.ts +1 -1
- package/types/stable/@glimmer/node/lib/node-dom-helper.d.ts +1 -1
- package/types/stable/@glimmer/opcode-compiler/lib/opcode-builder/helpers/components.d.ts +1 -1
- package/types/stable/@glimmer/runtime/index.d.ts +9 -4
- package/types/stable/@glimmer/runtime/lib/compiled/expressions/concat.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/compiled/opcodes/-debug-strip.d.ts +4 -3
- package/types/stable/@glimmer/runtime/lib/compiled/opcodes/component.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/compiled/opcodes/dom.d.ts +2 -2
- package/types/stable/@glimmer/runtime/lib/compiled/opcodes/vm.d.ts +2 -2
- package/types/stable/@glimmer/runtime/lib/component/template-only.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/curried-value.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/helpers/and.d.ts +3 -0
- package/types/stable/@glimmer/runtime/lib/helpers/eq.d.ts +8 -0
- package/types/stable/@glimmer/runtime/lib/helpers/gt.d.ts +8 -0
- package/types/stable/@glimmer/runtime/lib/helpers/gte.d.ts +8 -0
- package/types/stable/@glimmer/runtime/lib/helpers/invoke.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/helpers/lt.d.ts +8 -0
- package/types/stable/@glimmer/runtime/lib/helpers/lte.d.ts +8 -0
- package/types/stable/@glimmer/runtime/lib/helpers/neq.d.ts +8 -0
- package/types/stable/@glimmer/runtime/lib/helpers/not.d.ts +3 -0
- package/types/stable/@glimmer/runtime/lib/helpers/or.d.ts +3 -0
- package/types/stable/@glimmer/runtime/lib/opcodes.d.ts +2 -2
- package/types/stable/@glimmer/runtime/lib/references/class-list.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/references/curry-value.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/render.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/scope.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/vm/append.d.ts +3 -2
- package/types/stable/@glimmer/runtime/lib/vm/arguments.d.ts +2 -2
- package/types/stable/@glimmer/runtime/lib/vm/content/text.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/vm/element-builder.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/vm/low-level.d.ts +2 -1
- package/types/stable/@glimmer/runtime/lib/vm/rehydrate-builder.d.ts +1 -1
- package/types/stable/@glimmer/runtime/lib/vm/update.d.ts +2 -1
- package/types/stable/@glimmer/syntax/lib/keywords.d.ts +2 -2
- package/types/stable/@glimmer/tracking/index.d.ts +2 -1
- package/types/stable/@glimmer/tracking/primitives/cache.d.ts +1 -1
- package/types/stable/index.d.ts +9 -0
- package/dist/dev/packages/shared-chunks/constants-p7AL-pog.js +0 -213
- package/dist/dev/packages/shared-chunks/dynamic-BfDKO5NI.js +0 -3823
- package/dist/dev/packages/shared-chunks/element-builder-DO43ztVP.js +0 -404
- package/dist/dev/packages/shared-chunks/index-QZstta6s.js +0 -6306
- package/dist/dev/packages/shared-chunks/mandatory-setter-DHZe7-kW.js +0 -425
- package/dist/dev/packages/shared-chunks/observers-Bj9qLVau.js +0 -2062
- package/dist/dev/packages/shared-chunks/set_properties-kVGzZL_a.js +0 -100
- package/dist/dev/packages/shared-chunks/transform-resolutions-D-YtZ0_g.js +0 -7458
- package/dist/prod/packages/shared-chunks/constants-2M371WiB.js +0 -210
- package/dist/prod/packages/shared-chunks/index-6pnzcm45.js +0 -5931
- package/dist/prod/packages/shared-chunks/observers-tZ2aOzr4.js +0 -714
- package/dist/prod/packages/shared-chunks/set_properties-C1T46IiN.js +0 -101
- package/dist/prod/packages/shared-chunks/super-Cm_a_cLQ.js +0 -275
- package/dist/prod/packages/shared-chunks/transform-resolutions-DR4GLmR2.js +0 -6936
- package/dist/prod/packages/shared-chunks/{collections-GpG8lT2g.js → collections-C3Y8z_9v.js} +9 -9
|
@@ -1,35 +1,26 @@
|
|
|
1
1
|
import { privatize } from '../-internals/container/index.js';
|
|
2
|
+
import { f as flushAsyncObservers, b as addObserver } from '../../shared-chunks/observers-Co4JALkS.js';
|
|
3
|
+
import { d as defineProperty, c as computed } from '../../shared-chunks/computed-2Udcmflw.js';
|
|
4
|
+
import { d as descriptorForProperty } from '../../shared-chunks/decorator-DBCISop4.js';
|
|
2
5
|
import { getOwner } from '../-internals/owner/index.js';
|
|
3
|
-
import '../../shared-chunks/
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import '
|
|
7
|
-
import { isTesting } from '../debug/lib/testing.js';
|
|
8
|
-
import { d as defineProperty, c as computed } from '../../shared-chunks/namespace_search-Dcdalhj6.js';
|
|
9
|
-
import '../../@glimmer/validator/index.js';
|
|
10
|
-
import { b as hasInternalComponentManager } from '../../shared-chunks/api-DtWa0ZaF.js';
|
|
11
|
-
import '../../shared-chunks/reference-BNqcwZWH.js';
|
|
12
|
-
import '../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
13
|
-
import { d as descriptorForProperty } from '../../shared-chunks/decorator-BdDDBUd2.js';
|
|
14
|
-
import { g as get, j as flushAsyncObservers, c as addObserver } from '../../shared-chunks/observers-tZ2aOzr4.js';
|
|
15
|
-
import { s as set } from '../../shared-chunks/property_set-B2sZxeCw.js';
|
|
16
|
-
import { g as getProperties, s as setProperties } from '../../shared-chunks/set_properties-C1T46IiN.js';
|
|
6
|
+
import { g as get } from '../../shared-chunks/property_get-hWJ0nGhW.js';
|
|
7
|
+
import { s as set } from '../../shared-chunks/property_set-Dj5-ScWk.js';
|
|
8
|
+
import { g as getProperties } from '../../shared-chunks/get_properties-BcAC5sGx.js';
|
|
9
|
+
import { s as setProperties } from '../../shared-chunks/set_properties-oPyURk67.js';
|
|
17
10
|
import EmberObject from '../object/index.js';
|
|
18
11
|
import Evented from '../object/evented.js';
|
|
19
12
|
import { A } from '../array/index.js';
|
|
20
|
-
import '../-internals/runtime/lib/mixins/registry_proxy.js';
|
|
21
|
-
import '../-internals/runtime/lib/mixins/container_proxy.js';
|
|
22
|
-
import '../-internals/runtime/lib/mixins/comparable.js';
|
|
23
13
|
import ActionHandler from '../-internals/runtime/lib/mixins/action_handler.js';
|
|
24
|
-
import '../-internals/runtime/lib/mixins/-proxy.js';
|
|
25
|
-
import '../enumerable/mutable.js';
|
|
26
|
-
import '../-internals/runtime/lib/mixins/target_action_support.js';
|
|
27
|
-
import '../-internals/runtime/lib/ext/rsvp.js';
|
|
28
14
|
import typeOf from '../utils/lib/type-of.js';
|
|
15
|
+
import { i as isProxy } from '../../shared-chunks/is_proxy-Bzg0d4m4.js';
|
|
16
|
+
import { l as lookupDescriptor } from '../../shared-chunks/lookup-descriptor-CwcVgaLv.js';
|
|
29
17
|
import '../controller/index.js';
|
|
18
|
+
import { isTesting } from '../debug/lib/testing.js';
|
|
19
|
+
import '../../shared-chunks/env-DXxsTFkM.js';
|
|
30
20
|
import '../engine/instance.js';
|
|
31
21
|
import { dependentKeyCompat } from '../object/compat.js';
|
|
32
22
|
import { once } from '../runloop/index.js';
|
|
23
|
+
import { c as hasInternalComponentManager } from '../../shared-chunks/api-zh_k31vb.js';
|
|
33
24
|
import '../../route-recognizer/index.js';
|
|
34
25
|
import '../../shared-chunks/rsvp-CnCSY930.js';
|
|
35
26
|
import { S as STATE_SYMBOL, P as PARAMS_SYMBOL } from '../../shared-chunks/unrecognized-url-error-DDBwfzdm.js';
|
|
@@ -1,22 +1,14 @@
|
|
|
1
1
|
import { getOwner } from '../-internals/owner/index.js';
|
|
2
2
|
import Evented from '../object/evented.js';
|
|
3
|
-
import '
|
|
4
|
-
import '../../shared-chunks/
|
|
5
|
-
import {
|
|
6
|
-
import '../../shared-chunks/reference-
|
|
7
|
-
import '../../shared-chunks/
|
|
8
|
-
import '../../shared-chunks/
|
|
3
|
+
import '../../shared-chunks/env-DXxsTFkM.js';
|
|
4
|
+
import { a as consumeTag } from '../../shared-chunks/cache-BIlOoPA7.js';
|
|
5
|
+
import { t as tagFor } from '../../shared-chunks/meta-B9mldqPL.js';
|
|
6
|
+
import '../../shared-chunks/reference-BshxG6wn.js';
|
|
7
|
+
import '../../shared-chunks/observers-Co4JALkS.js';
|
|
8
|
+
import '../../shared-chunks/property_get-hWJ0nGhW.js';
|
|
9
9
|
import { readOnly } from '../object/lib/computed/computed_macros.js';
|
|
10
|
-
import '../object/index.js';
|
|
11
10
|
import '../object/core.js';
|
|
12
|
-
import '../-internals/runtime/lib/mixins/registry_proxy.js';
|
|
13
|
-
import '../-internals/runtime/lib/mixins/container_proxy.js';
|
|
14
11
|
import '../-internals/runtime/lib/mixins/comparable.js';
|
|
15
|
-
import '../-internals/runtime/lib/mixins/action_handler.js';
|
|
16
|
-
import '../-internals/runtime/lib/mixins/-proxy.js';
|
|
17
|
-
import '../enumerable/mutable.js';
|
|
18
|
-
import '../-internals/runtime/lib/mixins/target_action_support.js';
|
|
19
|
-
import '../-internals/runtime/lib/ext/rsvp.js';
|
|
20
12
|
import '../array/index.js';
|
|
21
13
|
import Service from '../service/index.js';
|
|
22
14
|
import './router.js';
|
|
@@ -1,28 +1,16 @@
|
|
|
1
1
|
import { privatize } from '../-internals/container/index.js';
|
|
2
|
-
import '../../shared-chunks/
|
|
3
|
-
import '
|
|
4
|
-
import
|
|
2
|
+
import { c as computed } from '../../shared-chunks/computed-2Udcmflw.js';
|
|
3
|
+
import { g as get } from '../../shared-chunks/property_get-hWJ0nGhW.js';
|
|
4
|
+
import { s as set } from '../../shared-chunks/property_set-Dj5-ScWk.js';
|
|
5
5
|
import { getOwner } from '../owner/index.js';
|
|
6
6
|
import DSLImpl from './lib/dsl.js';
|
|
7
7
|
import RouterState from './lib/router_state.js';
|
|
8
8
|
import { resemblesURL, extractRouteArgs, getActiveTargetName, calculateCacheKey } from './lib/utils.js';
|
|
9
|
+
import EmberObject from '../object/index.js';
|
|
9
10
|
import { A } from '../array/index.js';
|
|
10
|
-
import { c as computed } from '../../shared-chunks/namespace_search-Dcdalhj6.js';
|
|
11
|
-
import '../../@glimmer/validator/index.js';
|
|
12
|
-
import '../../shared-chunks/reference-BNqcwZWH.js';
|
|
13
|
-
import '../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
14
|
-
import { g as get } from '../../shared-chunks/observers-tZ2aOzr4.js';
|
|
15
|
-
import { s as set } from '../../shared-chunks/property_set-B2sZxeCw.js';
|
|
16
11
|
import typeOf from '../utils/lib/type-of.js';
|
|
17
|
-
import '../-internals/runtime/lib/mixins/registry_proxy.js';
|
|
18
|
-
import '../-internals/runtime/lib/mixins/container_proxy.js';
|
|
19
|
-
import '../-internals/runtime/lib/mixins/comparable.js';
|
|
20
|
-
import '../-internals/runtime/lib/mixins/action_handler.js';
|
|
21
|
-
import '../-internals/runtime/lib/mixins/-proxy.js';
|
|
22
|
-
import '../enumerable/mutable.js';
|
|
23
|
-
import '../-internals/runtime/lib/mixins/target_action_support.js';
|
|
24
|
-
import '../-internals/runtime/lib/ext/rsvp.js';
|
|
25
12
|
import Evented from '../object/evented.js';
|
|
13
|
+
import '../../shared-chunks/env-DXxsTFkM.js';
|
|
26
14
|
import { run, once, scheduleOnce, cancel } from '../runloop/index.js';
|
|
27
15
|
import { getRenderState, getFullQueryParams, hasDefaultSerialize, defaultSerialize } from './route.js';
|
|
28
16
|
import Router from '../../router_js/index.js';
|
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import '../../shared-chunks/env-DXxsTFkM.js';
|
|
2
2
|
import { onErrorTarget } from '../-internals/error-handling/index.js';
|
|
3
|
-
import '../../shared-chunks/
|
|
4
|
-
import '../../@glimmer/validator/index.js';
|
|
5
|
-
import '../../shared-chunks/reference-BNqcwZWH.js';
|
|
6
|
-
import '../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
7
|
-
import { j as flushAsyncObservers } from '../../shared-chunks/observers-tZ2aOzr4.js';
|
|
3
|
+
import { f as flushAsyncObservers } from '../../shared-chunks/observers-Co4JALkS.js';
|
|
8
4
|
import Backburner from '../../backburner.js/index.js';
|
|
9
5
|
|
|
10
6
|
// Partial types from https://medium.com/codex/currying-in-typescript-ca5226c85b85
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
import { FrameworkObject } from '../object/-internals.js';
|
|
2
2
|
import { deprecateUntil, DEPRECATIONS } from '../-internals/deprecations/index.js';
|
|
3
|
-
import '../../shared-chunks/
|
|
4
|
-
import '../-internals/environment/index.js';
|
|
5
|
-
import '../../@glimmer/validator/index.js';
|
|
6
|
-
import '../../shared-chunks/reference-BNqcwZWH.js';
|
|
7
|
-
import '../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
8
|
-
import '../../shared-chunks/observers-tZ2aOzr4.js';
|
|
9
|
-
import { i as inject$1 } from '../../shared-chunks/injected_property-CTVs5FPh.js';
|
|
3
|
+
import { i as inject$1 } from '../../shared-chunks/injected_property-D9B-fPiH.js';
|
|
10
4
|
|
|
11
5
|
/**
|
|
12
6
|
@module @ember/service
|
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import '../../@glimmer/validator/index.js';
|
|
3
|
-
import '../../shared-chunks/reference-BNqcwZWH.js';
|
|
4
|
-
import '../../shared-chunks/index-CjaDF9kC.js';
|
|
5
|
-
import '../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
6
|
-
export { d as htmlSafe, i as isHTMLSafe, e as isTrustedHTML, t as trustHTML } from '../../shared-chunks/index-6pnzcm45.js';
|
|
7
|
-
import '../-internals/container/index.js';
|
|
8
|
-
import '../../shared-chunks/super-Cm_a_cLQ.js';
|
|
9
|
-
import '../-internals/environment/index.js';
|
|
10
|
-
import '../../shared-chunks/on-CLxdmpmk.js';
|
|
11
|
-
import '../../shared-chunks/constants-2M371WiB.js';
|
|
12
|
-
import '../runloop/index.js';
|
|
1
|
+
export { h as htmlSafe, i as isHTMLSafe, a as isTrustedHTML, t as trustHTML } from '../../shared-chunks/index-D-xTBV4B.js';
|
|
@@ -1,17 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import '
|
|
3
|
-
import '../../../shared-chunks/
|
|
4
|
-
import '../../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
1
|
+
import { o as or, d as not, c as lte, l as lt, b as gte, g as gt, n as neq, a as and, e as eq } from '../../../shared-chunks/or-oTVMuHc8.js';
|
|
2
|
+
import { h as hash, f as fn, a as array } from '../../../shared-chunks/hash-DcUe-meU.js';
|
|
3
|
+
import { e as element } from '../../../shared-chunks/element-BjFr0tO0.js';
|
|
5
4
|
import { on } from '../../modifier/on.js';
|
|
6
|
-
import '../../../shared-chunks/
|
|
7
|
-
import '../../../shared-chunks/index-CjaDF9kC.js';
|
|
8
|
-
import '../../../shared-chunks/index-6pnzcm45.js';
|
|
9
|
-
import '../../-internals/container/index.js';
|
|
10
|
-
import '../../../shared-chunks/super-Cm_a_cLQ.js';
|
|
11
|
-
import '../../-internals/environment/index.js';
|
|
12
|
-
import '../../../shared-chunks/on-CLxdmpmk.js';
|
|
13
|
-
import '../../../shared-chunks/constants-2M371WiB.js';
|
|
14
|
-
import '../../runloop/index.js';
|
|
5
|
+
import '../../../shared-chunks/env-DXxsTFkM.js';
|
|
15
6
|
import { STRICT_MODE_KEYWORDS, STRICT_MODE_TRANSFORMS, RESOLUTION_MODE_TRANSFORMS } from './plugins/index.js';
|
|
16
7
|
import { ALLOWED_GLOBALS } from './plugins/allowed-globals.js';
|
|
17
8
|
import COMPONENT_NAME_SIMPLE_DASHERIZE_CACHE from './dasherize-component-name.js';
|
|
@@ -27,9 +18,19 @@ let USER_PLUGINS = [];
|
|
|
27
18
|
const RUNTIME_KEYWORDS_NAME = '__ember_keywords__';
|
|
28
19
|
const keywords = {
|
|
29
20
|
array,
|
|
21
|
+
eq,
|
|
22
|
+
element,
|
|
23
|
+
and,
|
|
30
24
|
fn,
|
|
31
25
|
hash,
|
|
32
|
-
|
|
26
|
+
neq,
|
|
27
|
+
gt,
|
|
28
|
+
gte,
|
|
29
|
+
lt,
|
|
30
|
+
lte,
|
|
31
|
+
not,
|
|
32
|
+
on,
|
|
33
|
+
or
|
|
33
34
|
};
|
|
34
35
|
function buildCompileOptions(_options) {
|
|
35
36
|
let moduleName = _options.moduleName;
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
import { trackLocals
|
|
1
|
+
import { trackLocals } from './utils.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
@module ember
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
const keywordNames = new Set(['array', 'eq', 'element', 'and', 'fn', 'hash', 'neq', 'gt', 'gte', 'lt', 'lte', 'not', 'on', 'or']);
|
|
8
|
+
const importSource = {
|
|
9
|
+
on: '@ember/modifier'
|
|
10
|
+
};
|
|
11
|
+
|
|
7
12
|
/**
|
|
8
13
|
A Glimmer2 AST transformation that makes importable keywords work
|
|
9
14
|
|
|
@@ -20,56 +25,22 @@ function autoImportBuiltins(env) {
|
|
|
20
25
|
name: 'auto-import-built-ins',
|
|
21
26
|
visitor: {
|
|
22
27
|
...visitor,
|
|
23
|
-
|
|
24
|
-
if (
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
},
|
|
28
|
-
SubExpression(node) {
|
|
29
|
-
if (isArray(node, hasLocal)) {
|
|
30
|
-
rewriteKeyword(env, node, 'array', '@ember/helper');
|
|
31
|
-
}
|
|
32
|
-
if (isFn(node, hasLocal)) {
|
|
33
|
-
rewriteKeyword(env, node, 'fn', '@ember/helper');
|
|
34
|
-
}
|
|
35
|
-
if (isHash(node, hasLocal)) {
|
|
36
|
-
rewriteKeyword(env, node, 'hash', '@ember/helper');
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
MustacheStatement(node) {
|
|
40
|
-
if (isArray(node, hasLocal)) {
|
|
41
|
-
rewriteKeyword(env, node, 'array', '@ember/helper');
|
|
42
|
-
}
|
|
43
|
-
if (isFn(node, hasLocal)) {
|
|
44
|
-
rewriteKeyword(env, node, 'fn', '@ember/helper');
|
|
45
|
-
}
|
|
46
|
-
if (isHash(node, hasLocal)) {
|
|
47
|
-
rewriteKeyword(env, node, 'hash', '@ember/helper');
|
|
48
|
-
}
|
|
28
|
+
PathExpression(node) {
|
|
29
|
+
if (!keywordNames.has(node.original)) return;
|
|
30
|
+
if (hasLocal(node.original)) return;
|
|
31
|
+
rewriteKeyword(env, node, node.original, importSource[node.original] || '@ember/helper');
|
|
49
32
|
}
|
|
50
33
|
}
|
|
51
34
|
};
|
|
52
35
|
}
|
|
53
36
|
function rewriteKeyword(env, node, name, moduleSpecifier) {
|
|
54
37
|
if (env.meta?.jsutils) {
|
|
55
|
-
node.
|
|
56
|
-
name
|
|
38
|
+
node.original = env.meta.jsutils.bindImport(moduleSpecifier, name, node, {
|
|
39
|
+
nameHint: `__keyword__${name}`
|
|
57
40
|
});
|
|
58
41
|
} else if (env.meta?.emberRuntime) {
|
|
59
|
-
node.
|
|
42
|
+
node.original = env.meta.emberRuntime.lookupKeyword(name);
|
|
60
43
|
}
|
|
61
44
|
}
|
|
62
|
-
function isOn(node, hasLocal) {
|
|
63
|
-
return isPath(node.path) && node.path.original === 'on' && !hasLocal('on');
|
|
64
|
-
}
|
|
65
|
-
function isArray(node, hasLocal) {
|
|
66
|
-
return isPath(node.path) && node.path.original === 'array' && !hasLocal('array');
|
|
67
|
-
}
|
|
68
|
-
function isFn(node, hasLocal) {
|
|
69
|
-
return isPath(node.path) && node.path.original === 'fn' && !hasLocal('fn');
|
|
70
|
-
}
|
|
71
|
-
function isHash(node, hasLocal) {
|
|
72
|
-
return isPath(node.path) && node.path.original === 'hash' && !hasLocal('hash');
|
|
73
|
-
}
|
|
74
45
|
|
|
75
46
|
export { autoImportBuiltins as default };
|
|
@@ -7,7 +7,7 @@ import transformEachInIntoEach from './transform-each-in-into-each.js';
|
|
|
7
7
|
import transformEachTrackArray from './transform-each-track-array.js';
|
|
8
8
|
import transformInElement from './transform-in-element.js';
|
|
9
9
|
import transformQuotedBindingsIntoJustBindings from './transform-quoted-bindings-into-just-bindings.js';
|
|
10
|
-
import
|
|
10
|
+
import transformResolutions from './transform-resolutions.js';
|
|
11
11
|
import transformWrapMountAndOutlet from './transform-wrap-mount-and-outlet.js';
|
|
12
12
|
import autoImportBuiltins from './auto-import-builtins.js';
|
|
13
13
|
|
|
@@ -1,4 +1,127 @@
|
|
|
1
|
-
import '
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import '../../../../shared-chunks/env-DXxsTFkM.js';
|
|
2
|
+
import { isPath, trackLocals, isStringLiteral } from './utils.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
@module ember
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
A Glimmer2 AST transformation that replaces all instances of
|
|
10
|
+
|
|
11
|
+
```handlebars
|
|
12
|
+
{{helper "..." ...}}
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
with
|
|
16
|
+
|
|
17
|
+
```handlebars
|
|
18
|
+
{{helper (-resolve "helper:...") ...}}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
and
|
|
22
|
+
|
|
23
|
+
```handlebars
|
|
24
|
+
{{helper ... ...}}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
with
|
|
28
|
+
|
|
29
|
+
```handlebars
|
|
30
|
+
{{helper (-disallow-dynamic-resolution ...) ...}}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
and
|
|
34
|
+
|
|
35
|
+
```handlebars
|
|
36
|
+
{{modifier "..." ...}}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
with
|
|
40
|
+
|
|
41
|
+
```handlebars
|
|
42
|
+
{{modifier (-resolve "modifier:...") ...}}
|
|
43
|
+
```
|
|
44
|
+
and
|
|
45
|
+
|
|
46
|
+
```handlebars
|
|
47
|
+
{{modifier ... ...}}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
with
|
|
51
|
+
|
|
52
|
+
```handlebars
|
|
53
|
+
{{modifier (-disallow-dynamic-resolution ...) ...}}
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
@private
|
|
57
|
+
@class TransformResolutions
|
|
58
|
+
*/
|
|
59
|
+
|
|
60
|
+
const TARGETS = Object.freeze(['helper', 'modifier']);
|
|
61
|
+
function transformResolutions(env) {
|
|
62
|
+
let {
|
|
63
|
+
builders: b
|
|
64
|
+
} = env.syntax;
|
|
65
|
+
let moduleName = env.meta?.moduleName;
|
|
66
|
+
let {
|
|
67
|
+
hasLocal,
|
|
68
|
+
node: tracker
|
|
69
|
+
} = trackLocals(env);
|
|
70
|
+
let seen;
|
|
71
|
+
return {
|
|
72
|
+
name: 'transform-resolutions',
|
|
73
|
+
visitor: {
|
|
74
|
+
Template: {
|
|
75
|
+
enter() {
|
|
76
|
+
seen = new Set();
|
|
77
|
+
},
|
|
78
|
+
exit() {
|
|
79
|
+
seen = undefined;
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
Block: tracker,
|
|
83
|
+
ElementNode: {
|
|
84
|
+
keys: {
|
|
85
|
+
children: tracker
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
MustacheStatement(node) {
|
|
89
|
+
if (seen.has(node)) {
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
if (isPath(node.path) && !isLocalVariable(node.path, hasLocal) && TARGETS.indexOf(node.path.original) !== -1) {
|
|
93
|
+
let result = b.mustache(node.path, transformParams(b, node.params, node.path.original, moduleName, node.loc), node.hash, node.trusting, node.loc, node.strip);
|
|
94
|
+
|
|
95
|
+
// Avoid double/infinite-processing
|
|
96
|
+
seen.add(result);
|
|
97
|
+
return result;
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
SubExpression(node) {
|
|
101
|
+
if (seen.has(node)) {
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
if (isPath(node.path) && !isLocalVariable(node.path, hasLocal) && TARGETS.indexOf(node.path.original) !== -1) {
|
|
105
|
+
let result = b.sexpr(node.path, transformParams(b, node.params, node.path.original, moduleName, node.loc), node.hash, node.loc);
|
|
106
|
+
|
|
107
|
+
// Avoid double/infinite-processing
|
|
108
|
+
seen.add(result);
|
|
109
|
+
return result;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
function isLocalVariable(node, hasLocal) {
|
|
116
|
+
return !(node.head.type === 'ThisHead') && node.tail.length === 1 && hasLocal(node.head.original);
|
|
117
|
+
}
|
|
118
|
+
function transformParams(b, params, type, moduleName, loc) {
|
|
119
|
+
let [first, ...rest] = params;
|
|
120
|
+
if (isStringLiteral(first)) {
|
|
121
|
+
return [b.sexpr(b.path('-resolve', first.loc), [b.string(`${type}:${first.value}`)], undefined, first.loc), ...rest];
|
|
122
|
+
} else {
|
|
123
|
+
return params;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export { transformResolutions as default };
|
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
import './plugins/allowed-globals.js';
|
|
2
2
|
import templateOnly from '../../component/template-only.js';
|
|
3
|
-
import '../../../shared-chunks/
|
|
4
|
-
import '../../../@glimmer/wire-format/index.js';
|
|
5
|
-
import { p as precompile } from '../../../shared-chunks/compiler-Bbki2GT_.js';
|
|
6
|
-
import '../../../@glimmer/validator/index.js';
|
|
7
|
-
import '../../../shared-chunks/reference-BNqcwZWH.js';
|
|
8
|
-
import '../../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
3
|
+
import { p as precompile } from '../../../shared-chunks/compiler-DjQtTQGk.js';
|
|
9
4
|
import { s as setComponentTemplate } from '../../../shared-chunks/template-Dc_cBOoX.js';
|
|
10
|
-
import { t as templateFactory } from '../../../shared-chunks/index-
|
|
5
|
+
import { t as templateFactory } from '../../../shared-chunks/index--2U-v2nf.js';
|
|
11
6
|
import compileOptions, { RUNTIME_KEYWORDS_NAME, keywords } from './compile-options.js';
|
|
12
7
|
|
|
13
8
|
/**
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import '../../@glimmer/validator/index.js';
|
|
3
|
-
import '../../shared-chunks/reference-BNqcwZWH.js';
|
|
4
|
-
export { t as createTemplateFactory } from '../../shared-chunks/index-CjaDF9kC.js';
|
|
5
|
-
import '../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
1
|
+
export { t as createTemplateFactory } from '../../shared-chunks/index--2U-v2nf.js';
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
import typeOf from './type-of.js';
|
|
2
|
-
import '../../-internals/runtime/lib/mixins/registry_proxy.js';
|
|
3
|
-
import '../../-internals/runtime/lib/mixins/container_proxy.js';
|
|
4
2
|
import Comparable from '../../-internals/runtime/lib/mixins/comparable.js';
|
|
5
|
-
import '
|
|
6
|
-
import '../../-internals/runtime/lib/mixins/-proxy.js';
|
|
7
|
-
import '../../enumerable/mutable.js';
|
|
8
|
-
import '../../-internals/runtime/lib/mixins/target_action_support.js';
|
|
9
|
-
import '../../-internals/runtime/lib/ext/rsvp.js';
|
|
10
|
-
import '../../-internals/environment/index.js';
|
|
3
|
+
import '../../../shared-chunks/env-DXxsTFkM.js';
|
|
11
4
|
|
|
12
5
|
const TYPE_ORDER = {
|
|
13
6
|
undefined: 0,
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
import '
|
|
2
|
-
import '../../../shared-chunks/super-Cm_a_cLQ.js';
|
|
3
|
-
import '../../-internals/environment/index.js';
|
|
4
|
-
import '../../../@glimmer/validator/index.js';
|
|
5
|
-
import '../../../shared-chunks/reference-BNqcwZWH.js';
|
|
6
|
-
import '../../../shared-chunks/capabilities-DXA-L0iT.js';
|
|
7
|
-
import { m as hasUnknownProperty, g as get } from '../../../shared-chunks/observers-tZ2aOzr4.js';
|
|
1
|
+
import { h as hasUnknownProperty, g as get } from '../../../shared-chunks/property_get-hWJ0nGhW.js';
|
|
8
2
|
|
|
9
3
|
/**
|
|
10
4
|
@module @ember/utils
|