ember-source 7.1.0-alpha.4 → 7.1.0-beta.1
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 -161
- 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/index.js +0 -1
- 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 +2 -19
- 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 +1356 -17
- 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 +1 -1
- package/dist/dev/packages/@ember/debug/lib/deprecate.js +1 -1
- package/dist/dev/packages/@ember/engine/index.js +3 -31
- package/dist/dev/packages/@ember/engine/instance.js +3 -8
- package/dist/dev/packages/@ember/helper/index.js +159 -21
- 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 +591 -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 +13 -24
- package/dist/dev/packages/@ember/routing/router-service.js +9 -18
- 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 +12 -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 -60
- 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 +3 -11
- 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/destroyable/index.js +1 -1
- package/dist/dev/packages/@glimmer/manager/index.js +5 -315
- package/dist/dev/packages/@glimmer/node/index.js +3 -11
- package/dist/dev/packages/@glimmer/opcode-compiler/index.js +2 -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 +15 -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-BAmlf_CN.js +310 -0
- package/dist/dev/packages/shared-chunks/{api-BQMslHhq.js → api-BawZUDYD.js} +5 -6
- 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/assert-Zqc4wiAV.js +6 -0
- 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-QUSl_urU.js} +7043 -235
- 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-BBzF_bI8.js +617 -0
- package/dist/dev/packages/shared-chunks/curried-BZnYakIg.js +5 -0
- package/dist/dev/packages/shared-chunks/{debug-to-string-CFb7h0lY.js → debug-to-string-C6LsA_qz.js} +1 -2
- package/dist/dev/packages/shared-chunks/decorator-B5Uh5NFI.js +135 -0
- package/dist/dev/packages/shared-chunks/element-DQJOvSlQ.js +109 -0
- package/dist/dev/packages/shared-chunks/element-builder--iTIJyCB.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-D5b5QlqE.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-BRRFQJ99.js +192 -0
- package/dist/dev/packages/shared-chunks/helper-Do7NCZHI.js +314 -0
- package/dist/dev/packages/shared-chunks/index-CwnQYqK5.js +2500 -0
- package/dist/dev/packages/shared-chunks/{index-BUPd6pkm.js → index-CyZiGiEI.js} +28 -29
- package/dist/dev/packages/shared-chunks/index-D-xTBV4B.js +220 -0
- 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-CAL-jHZt.js +140 -0
- package/dist/dev/packages/shared-chunks/internal-helper-Ez7zbEIa.js +7 -0
- package/dist/dev/packages/shared-chunks/{neq-DujMPv1k.js → invoke-B8M5fQQS.js} +4 -32
- 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-BueSMv9L.js +253 -0
- package/dist/dev/packages/shared-chunks/opcodes-CplRyHl_.js +50 -0
- package/dist/dev/packages/shared-chunks/or-O0eJQ4K-.js +118 -0
- package/dist/{prod/packages/shared-chunks/program-B7SJZ5NF.js → dev/packages/shared-chunks/program-DzAfcWFj.js} +1 -1
- package/dist/{prod/packages/shared-chunks/program-context-DFiwaPMR.js → dev/packages/shared-chunks/program-context-CadjldRr.js} +4 -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/{prod/packages/shared-chunks/registers-ylirb0dq.js → dev/packages/shared-chunks/registers-C_W2qYHJ.js} +1 -1
- package/dist/{prod/packages/shared-chunks/rehydrate-builder-D3t52iGR.js → dev/packages/shared-chunks/rehydrate-builder-DCyIgnCR.js} +7 -4
- package/dist/dev/packages/shared-chunks/{render-DCchifOK.js → render-CpKaO-BO.js} +512 -16
- package/dist/{prod/packages/shared-chunks/chunk-3SQBS3Y5-Cj4eryg1.js → dev/packages/shared-chunks/runtime-CYyqkz5q-BOdRhmsS.js} +4 -59
- package/dist/{prod/packages/shared-chunks/serialize-builder-iXiRs1Pg.js → dev/packages/shared-chunks/serialize-builder-DxgGRvH_.js} +2 -7
- package/dist/dev/packages/shared-chunks/set_properties-BghuuGJx.js +48 -0
- package/dist/dev/packages/shared-chunks/{setup-registry-DxchCIL2.js → setup-registry-BC5VMvei.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/syscall-ops-BPFtDquC.js +133 -0
- package/dist/dev/packages/shared-chunks/template-BRrQR6KS.js +16 -0
- package/dist/dev/packages/shared-chunks/{template-kM-7TTcc.js → template-R_5UMHhb.js} +1 -1
- package/dist/dev/packages/shared-chunks/template-only-BqOt8bDl.js +78 -0
- package/dist/dev/packages/shared-chunks/textarea-WSlUEr0y.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-CgmHQiwi.js +32 -0
- package/dist/{prod/packages/shared-chunks/on-CersD7PL.js → dev/packages/shared-chunks/untouchable-this-B3DVwpHS.js} +215 -1397
- package/dist/dev/packages/shared-chunks/vm-ops-ImHv0Wtg.js +12 -0
- package/dist/dev/packages/shared-chunks/well-known-_EVO9RaV.js +17 -0
- package/dist/prod/packages/@ember/-internals/container/index.js +4 -315
- package/dist/prod/packages/@ember/-internals/deprecations/index.js +1 -1
- package/dist/prod/packages/@ember/-internals/environment/index.js +3 -158
- package/dist/prod/packages/@ember/-internals/glimmer/index.js +14 -13
- package/dist/prod/packages/@ember/-internals/meta/lib/meta.js +0 -3
- package/dist/prod/packages/@ember/-internals/metal/index.js +18 -13
- package/dist/prod/packages/@ember/-internals/routing/index.js +1 -6
- package/dist/prod/packages/@ember/-internals/runtime/lib/ext/rsvp.js +0 -1
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/-proxy.js +9 -10
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/action_handler.js +1 -6
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/registry_proxy.js +0 -1
- package/dist/prod/packages/@ember/-internals/runtime/lib/mixins/target_action_support.js +2 -6
- package/dist/prod/packages/@ember/-internals/string/index.js +0 -2
- package/dist/prod/packages/@ember/-internals/utils/index.js +32 -30
- package/dist/prod/packages/@ember/-internals/views/index.js +0 -1
- 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 +1 -6
- package/dist/prod/packages/@ember/-internals/views/lib/system/event_dispatcher.js +2 -7
- package/dist/prod/packages/@ember/-internals/views/lib/system/utils.js +1 -2
- package/dist/prod/packages/@ember/-internals/views/lib/views/core_view.js +2 -15
- package/dist/prod/packages/@ember/-internals/views/lib/views/states.js +0 -2
- package/dist/prod/packages/@ember/application/index.js +5 -24
- package/dist/prod/packages/@ember/application/instance.js +5 -18
- package/dist/prod/packages/@ember/application/namespace.js +4 -8
- package/dist/prod/packages/@ember/array/index.js +7 -12
- package/dist/prod/packages/@ember/array/proxy.js +9 -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 +1291 -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 -1
- package/dist/prod/packages/@ember/debug/lib/deprecate.js +1 -1
- package/dist/prod/packages/@ember/engine/index.js +3 -27
- package/dist/prod/packages/@ember/engine/instance.js +3 -9
- package/dist/prod/packages/@ember/helper/index.js +159 -19
- 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 +2 -6
- package/dist/prod/packages/@ember/object/compat.js +3 -7
- package/dist/prod/packages/@ember/object/computed.js +2 -8
- package/dist/prod/packages/@ember/object/core.js +8 -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 +2 -6
- package/dist/prod/packages/@ember/object/lib/computed/computed_macros.js +5 -20
- package/dist/prod/packages/@ember/object/lib/computed/reduce_computed_macros.js +2 -9
- package/dist/prod/packages/@ember/object/mixin.js +6 -9
- package/dist/prod/packages/@ember/object/observable.js +7 -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 +591 -1
- package/dist/prod/packages/@ember/renderer/index.js +1 -12
- package/dist/prod/packages/@ember/routing/history-location.js +0 -1
- package/dist/prod/packages/@ember/routing/index.js +580 -12
- package/dist/prod/packages/@ember/routing/lib/dsl.js +0 -2
- package/dist/prod/packages/@ember/routing/lib/generate_controller.js +1 -6
- package/dist/prod/packages/@ember/routing/lib/routing-service.js +4 -14
- package/dist/prod/packages/@ember/routing/lib/utils.js +1 -6
- package/dist/prod/packages/@ember/routing/none-location.js +0 -1
- package/dist/prod/packages/@ember/routing/route.js +12 -22
- package/dist/prod/packages/@ember/routing/router-service.js +6 -15
- package/dist/prod/packages/@ember/routing/router.js +4 -17
- package/dist/prod/packages/@ember/runloop/index.js +1 -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 +12 -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 +0 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-against-named-outlets.js +0 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-input-helper-without-block.js +0 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/assert-reserved-named-arguments.js +0 -2
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/auto-import-builtins.js +13 -60
- 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 +0 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-in-element.js +0 -1
- package/dist/prod/packages/@ember/template-compiler/lib/plugins/transform-resolutions.js +126 -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 +0 -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 +2 -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 +14 -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 +4 -7
- package/dist/prod/packages/shared-chunks/{alias-BLBQkche.js → alias-DBW_V5vD.js} +7 -6
- package/dist/prod/packages/shared-chunks/api-CM1trl_4.js +289 -0
- package/dist/prod/packages/shared-chunks/{api-B5UrgITK.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-D6Couewv.js} +2 -3
- package/dist/prod/packages/shared-chunks/assert-Zqc4wiAV.js +6 -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-C9rFtQ_x.js +178 -0
- package/dist/prod/packages/shared-chunks/{compiler-Bbki2GT_.js → compiler-c4yUVrl_.js} +7044 -193
- package/dist/prod/packages/shared-chunks/{namespace_search-Dcdalhj6.js → computed-DjCIU_ht.js} +108 -239
- package/dist/prod/packages/shared-chunks/container-BYOnjnwz.js +315 -0
- package/dist/prod/packages/shared-chunks/curly-ZzX43b50.js +545 -0
- package/dist/prod/packages/shared-chunks/curried-BZnYakIg.js +5 -0
- package/dist/prod/packages/shared-chunks/debug-render-tree-CF5O4-WI.js +2049 -0
- package/dist/prod/packages/shared-chunks/{decorator-BdDDBUd2.js → decorator-9ikVwsjY.js} +0 -1
- package/dist/prod/packages/shared-chunks/element-DUOVW5Ho.js +100 -0
- package/dist/prod/packages/shared-chunks/{element-builder-CzXb9l1W.js → element-builder-CnlTPNyw.js} +109 -88
- package/dist/prod/packages/shared-chunks/env-DXxsTFkM.js +158 -0
- package/dist/prod/packages/shared-chunks/events-DYrYz3V8.js +174 -0
- package/dist/prod/packages/shared-chunks/get-t0-itmA-.js +138 -0
- package/dist/prod/packages/shared-chunks/get_properties-Nn08mLAH.js +55 -0
- package/dist/prod/packages/shared-chunks/guid-Cbq2sNV_.js +123 -0
- package/dist/prod/packages/shared-chunks/hash-mcs3pEFO.js +192 -0
- package/dist/prod/packages/shared-chunks/helper-DLjV2ZZW.js +298 -0
- package/dist/prod/packages/shared-chunks/{index-CjaDF9kC.js → index-Bj71BDDA.js} +17 -10
- package/dist/prod/packages/shared-chunks/index-D-xTBV4B.js +220 -0
- package/dist/prod/packages/shared-chunks/index-qDFz6Mfe.js +2322 -0
- package/dist/prod/packages/shared-chunks/{injected_property-CTVs5FPh.js → injected_property--eJunJph.js} +2 -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/{neq-BqdovTuC.js → invoke-Cj5zMqHz.js} +4 -24
- 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-_k-4KK5_.js +59 -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-CDkeR0nI.js +199 -0
- package/dist/prod/packages/shared-chunks/on-B5NVufs_.js +228 -0
- package/dist/prod/packages/shared-chunks/opcodes-CplRyHl_.js +50 -0
- package/dist/prod/packages/shared-chunks/or-3AxY5TPj.js +91 -0
- package/dist/{dev/packages/shared-chunks/program-DfV0v8aa.js → prod/packages/shared-chunks/program-B7CWdS8W.js} +1 -2
- package/dist/{dev/packages/shared-chunks/program-context-sJz0oHOA.js → prod/packages/shared-chunks/program-context-B8HKU7wu.js} +4 -3
- package/dist/prod/packages/shared-chunks/property_get-CAFdpRyu.js +121 -0
- package/dist/prod/packages/shared-chunks/{property_set-B2sZxeCw.js → property_set-BunbMFtp.js} +3 -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/{dev/packages/shared-chunks/registers-ylirb0dq.js → prod/packages/shared-chunks/registers-C_W2qYHJ.js} +1 -1
- package/dist/{dev/packages/shared-chunks/rehydrate-builder-BRH0p0wA.js → prod/packages/shared-chunks/rehydrate-builder-DJ8k-6fg.js} +7 -7
- package/dist/prod/packages/shared-chunks/{render-D78XHdek.js → render-DkJJmoI4.js} +488 -12
- package/dist/{dev/packages/shared-chunks/chunk-3SQBS3Y5-Cj4eryg1.js → prod/packages/shared-chunks/runtime-CYyqkz5q-BOdRhmsS.js} +4 -59
- package/dist/{dev/packages/shared-chunks/serialize-builder-DiO7Ak9_.js → prod/packages/shared-chunks/serialize-builder-R3Ozg0sC.js} +2 -10
- package/dist/prod/packages/shared-chunks/set_properties-LT3RzRmJ.js +48 -0
- package/dist/prod/packages/shared-chunks/{setup-registry-Cs-7NIJU.js → setup-registry-C2KfZJWI.js} +34 -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/syscall-ops-BPFtDquC.js +133 -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-CHqL0Rdh.js +454 -0
- package/dist/prod/packages/shared-chunks/{tracked-Cl5l4v8b.js → tracked-DAVrVqJl.js} +5 -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/vm-ops-ImHv0Wtg.js +12 -0
- package/dist/prod/packages/shared-chunks/well-known-_EVO9RaV.js +17 -0
- package/docs/data.json +1237 -1023
- package/lib/index.js +0 -1
- package/package.json +14 -12
- 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/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/index.d.ts +0 -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 +167 -5
- 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 +7 -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/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/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 +7 -1
- package/dist/dev/packages/@ember/-internals/views/lib/component_lookup.js +0 -14
- package/dist/dev/packages/shared-chunks/assert-CUCJBR2C.js +0 -19
- package/dist/dev/packages/shared-chunks/constants-BbdWMvgs.js +0 -213
- package/dist/dev/packages/shared-chunks/dynamic-CgX8M02_.js +0 -3823
- package/dist/dev/packages/shared-chunks/element-builder-BpJIoi99.js +0 -404
- package/dist/dev/packages/shared-chunks/fragment-Cc5k9Oy4.js +0 -911
- package/dist/dev/packages/shared-chunks/index-RzG0Jvjx.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/@ember/-internals/views/lib/component_lookup.js +0 -14
- package/dist/prod/packages/shared-chunks/constants-DThhT5fu.js +0 -210
- package/dist/prod/packages/shared-chunks/fragment-D7nBU9ae.js +0 -925
- package/dist/prod/packages/shared-chunks/index-r-Dz_hzt.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/types/stable/@ember/-internals/views/lib/component_lookup.d.ts +0 -8
- package/dist/prod/packages/shared-chunks/{collections-GpG8lT2g.js → collections-C3Y8z_9v.js} +9 -9
|
@@ -1,15 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
export { T as ASYNC_OBSERVERS, I as ComputedDescriptor, C as ComputedProperty, D as DEBUG_INJECTION_FUNCTIONS, U as Libraries, O as PROPERTY_DID_CHANGE, P as PROXY_CONTENT, V as SYNC_OBSERVERS, W as TrackedDescriptor, _ as _getPath, X as _getProp, j as activateObserver, E as addListener, u as addObserver, R as autoComputed, w as beginPropertyChanges, S as changeProperties, c as computed, z as defineDecorator, d as defineProperty, y as defineValue, B as descriptorForDecorator, b as descriptorForProperty, v as endPropertyChanges, e as expandProperties, H as flushAsyncObservers, q as hasListeners, h as hasUnknownProperty, l as inject, f as isClassicDecorator, Y as isComputed, i as isElementDescriptor, N as libraries, G as makeComputedDecorator, Z as markObjectAsDirty, x as nativeDescDecorator, n as notifyPropertyChange, Q as objectAt, M as on, F as removeListener, r as removeObserver, A as revalidateObservers, k as sendEvent, s as setClassicDecorator, t as tagForObject, a as tagForProperty, $ as tracked } from '../../../shared-chunks/observers-Bj9qLVau.js';
|
|
1
|
+
export { C as ComputedProperty, P as PROPERTY_DID_CHANGE, i as autoComputed, b as beginPropertyChanges, f as changeProperties, c as computed, h as defineDecorator, d as defineProperty, g as defineValue, a as endPropertyChanges, e as expandProperties, j as isComputed, n as notifyPropertyChange } from '../../../shared-chunks/computed-CJnghmXC.js';
|
|
3
2
|
export { g as getCachedValueFor } from '../../../shared-chunks/computed_cache-DmYKevAP.js';
|
|
4
|
-
export { a as alias } from '../../../shared-chunks/alias-
|
|
3
|
+
export { a as alias } from '../../../shared-chunks/alias-ZcMQckQV.js';
|
|
5
4
|
import { deprecate } from '../../debug/index.js';
|
|
6
|
-
import {
|
|
7
|
-
export { _ as
|
|
8
|
-
|
|
9
|
-
export {
|
|
5
|
+
import { g as get } from '../../../shared-chunks/property_get-CIBS9umw.js';
|
|
6
|
+
export { P as PROXY_CONTENT, _ as _getPath, b as _getProp, h as hasUnknownProperty } from '../../../shared-chunks/property_get-CIBS9umw.js';
|
|
7
|
+
import { s as set } from '../../../shared-chunks/property_set-D3PKyisF.js';
|
|
8
|
+
export { _ as _setProp, t as trySet } from '../../../shared-chunks/property_set-D3PKyisF.js';
|
|
9
|
+
export { c as addArrayObserver, b as arrayContentDidChange, a as arrayContentWillChange, d as removeArrayObserver, r as replace, e as replaceInNativeArray } from '../../../shared-chunks/array-Bh_kUjzy.js';
|
|
10
|
+
export { a as addListener, h as hasListeners, o as on, r as removeListener, s as sendEvent } from '../../../shared-chunks/events-6aFVjD4k.js';
|
|
11
|
+
export { c as ComputedDescriptor, b as descriptorForDecorator, d as descriptorForProperty, a as isClassicDecorator, i as isElementDescriptor, m as makeComputedDecorator, n as nativeDescDecorator, s as setClassicDecorator } from '../../../shared-chunks/decorator-B5Uh5NFI.js';
|
|
12
|
+
export { a as Libraries, L as libraries } from '../../../shared-chunks/libraries-CHBwbR72.js';
|
|
13
|
+
export { g as getProperties } from '../../../shared-chunks/get_properties-CIm8IAtP.js';
|
|
14
|
+
export { s as setProperties } from '../../../shared-chunks/set_properties-BghuuGJx.js';
|
|
15
|
+
export { A as ASYNC_OBSERVERS, S as SYNC_OBSERVERS, a as activateObserver, b as addObserver, f as flushAsyncObservers, r as removeObserver, c as revalidateObservers } from '../../../shared-chunks/observers-C2DurkLG.js';
|
|
16
|
+
export { D as DEBUG_INJECTION_FUNCTIONS, i as inject } from '../../../shared-chunks/injected_property-B4T-FzZZ.js';
|
|
17
|
+
export { m as markObjectAsDirty, o as objectAt, t as tagForObject, a as tagForProperty } from '../../../shared-chunks/chain-tags-D6tuFUj_.js';
|
|
18
|
+
export { T as TrackedDescriptor, t as tracked } from '../../../shared-chunks/tracked-CKE4wnE6.js';
|
|
10
19
|
export { cached } from '../../../@glimmer/tracking/index.js';
|
|
11
|
-
export { createCache, getValue, isConst } from '
|
|
12
|
-
export { N as NAMESPACES, a as NAMESPACES_BY_ID, b as addNamespace, f as findNamespace, c as findNamespaces, i as isNamespaceSearchDisabled, p as processAllNamespaces, d as processNamespace, r as removeNamespace, e as setNamespaceSearchDisabled, s as setUnprocessedMixins } from '../../../shared-chunks/namespace_search-
|
|
20
|
+
export { l as createCache, r as getValue, s as isConst } from '../../../shared-chunks/cache-B7dqAS38.js';
|
|
21
|
+
export { N as NAMESPACES, a as NAMESPACES_BY_ID, b as addNamespace, f as findNamespace, c as findNamespaces, i as isNamespaceSearchDisabled, p as processAllNamespaces, d as processNamespace, r as removeNamespace, e as setNamespaceSearchDisabled, s as setUnprocessedMixins } from '../../../shared-chunks/namespace_search-BfvzEQzN.js';
|
|
13
22
|
|
|
14
23
|
/**
|
|
15
24
|
@module ember
|
|
@@ -1,14 +1,5 @@
|
|
|
1
|
-
import '
|
|
2
|
-
import '../../../shared-chunks/mandatory-setter-DHZe7-kW.js';
|
|
1
|
+
import '../../../shared-chunks/property_get-CIBS9umw.js';
|
|
3
2
|
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 '../../../shared-chunks/observers-Bj9qLVau.js';
|
|
11
|
-
import '../environment/index.js';
|
|
12
3
|
import '../../engine/instance.js';
|
|
13
4
|
import '../../../route-recognizer/index.js';
|
|
14
5
|
import '../../../shared-chunks/rsvp-CnCSY930.js';
|
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
import { meta } from '../../../meta/lib/meta.js';
|
|
2
2
|
import Mixin from '../../../../object/mixin.js';
|
|
3
|
-
import {
|
|
3
|
+
import { g as get } from '../../../../../shared-chunks/property_get-CIBS9umw.js';
|
|
4
|
+
import { s as set } from '../../../../../shared-chunks/property_set-D3PKyisF.js';
|
|
5
|
+
import { d as defineProperty, c as computed } from '../../../../../shared-chunks/computed-CJnghmXC.js';
|
|
6
|
+
import { t as tagForObject, a as tagForProperty } from '../../../../../shared-chunks/chain-tags-D6tuFUj_.js';
|
|
7
|
+
import { s as setProxy, i as isProxy } from '../../../../../shared-chunks/is_proxy-Bzg0d4m4.js';
|
|
8
|
+
import { a as setupMandatorySetter } from '../../../../../shared-chunks/mandatory-setter-BpbAMTzV.js';
|
|
9
|
+
import { i as isObject } from '../../../../../shared-chunks/spec-BXl1reqK.js';
|
|
4
10
|
import '../../../../debug/index.js';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { s as set } from '../../../../../shared-chunks/property_set-DaoZXGM5.js';
|
|
9
|
-
import '../../../environment/index.js';
|
|
10
|
-
import '../../../../../shared-chunks/debug-to-string-CFb7h0lY.js';
|
|
11
|
-
import '../../../../../@glimmer/global-context/index.js';
|
|
12
|
-
import '../../../../../@glimmer/destroyable/index.js';
|
|
13
|
-
import '../../../../../shared-chunks/reference-C3TKDRnP.js';
|
|
14
|
-
import { s as setCustomTagFor } from '../../../../../shared-chunks/args-proxy-DgXMc9b5.js';
|
|
15
|
-
import '../../../../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
11
|
+
import { s as setCustomTagFor } from '../../../../../shared-chunks/args-proxy-BNLuRFlO.js';
|
|
12
|
+
import { U as UPDATE_TAG, j as combine } from '../../../../../shared-chunks/cache-B7dqAS38.js';
|
|
13
|
+
import { a as tagMetaFor, t as tagFor } from '../../../../../shared-chunks/meta-BmRXesrk.js';
|
|
16
14
|
import { assert } from '../../../../debug/lib/assert.js';
|
|
17
15
|
|
|
18
16
|
/**
|
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
import Mixin from '../../../../object/mixin.js';
|
|
2
|
-
import '
|
|
3
|
-
import '../../../../../shared-chunks/mandatory-setter-DHZe7-kW.js';
|
|
2
|
+
import { g as get } from '../../../../../shared-chunks/property_get-CIBS9umw.js';
|
|
4
3
|
import '../../../../debug/index.js';
|
|
5
|
-
import '../../../../../@glimmer/destroyable/index.js';
|
|
6
|
-
import '../../../../../@glimmer/validator/index.js';
|
|
7
|
-
import '../../../../../shared-chunks/debug-to-string-CFb7h0lY.js';
|
|
8
|
-
import '../../../../../@glimmer/global-context/index.js';
|
|
9
|
-
import '../../../../../shared-chunks/reference-C3TKDRnP.js';
|
|
10
|
-
import '../../../../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
11
|
-
import { g as get } from '../../../../../shared-chunks/observers-Bj9qLVau.js';
|
|
12
|
-
import '../../../environment/index.js';
|
|
13
4
|
import { assert } from '../../../../debug/lib/assert.js';
|
|
14
5
|
|
|
15
6
|
/**
|
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
import { context } from '../../../environment/index.js';
|
|
2
|
-
import { g as get
|
|
3
|
-
import '
|
|
4
|
-
import '../../../../debug/index.js';
|
|
5
|
-
import '../../../../../@glimmer/validator/index.js';
|
|
6
|
-
import '../../../../../shared-chunks/mandatory-setter-DHZe7-kW.js';
|
|
7
|
-
import '../../../../../@glimmer/destroyable/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';
|
|
2
|
+
import { g as get } from '../../../../../shared-chunks/property_get-CIBS9umw.js';
|
|
3
|
+
import { c as computed } from '../../../../../shared-chunks/computed-CJnghmXC.js';
|
|
12
4
|
import Mixin from '../../../../object/mixin.js';
|
|
5
|
+
import '../../../../debug/index.js';
|
|
13
6
|
import { assert } from '../../../../debug/lib/assert.js';
|
|
14
7
|
|
|
15
8
|
/**
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
export { m as dictionary } from '../../../shared-chunks/dictionary-gc5gpyOG.js';
|
|
2
|
-
export {
|
|
3
|
-
export { g as
|
|
2
|
+
export { g as getDebugName } from '../../../shared-chunks/get-debug-name-CSniHBsn.js';
|
|
3
|
+
export { G as GUID_KEY, a as generateGuid, g as guidFor, u as uuid } from '../../../shared-chunks/guid-Cbq2sNV_.js';
|
|
4
|
+
export { i as intern } from '../../../shared-chunks/intern-zquhAEIg.js';
|
|
5
|
+
export { R as ROOT, c as checkHasSuper, o as observerListenerMetaFor, a as setListeners, s as setObservers, w as wrap } from '../../../shared-chunks/super-BBBjgF69.js';
|
|
6
|
+
export { l as lookupDescriptor, s as setWithMandatorySetter, a as setupMandatorySetter, t as teardownMandatorySetter } from '../../../shared-chunks/mandatory-setter-BpbAMTzV.js';
|
|
7
|
+
export { g as getName, s as setName } from '../../../shared-chunks/name-Clp4Vsod.js';
|
|
4
8
|
export { t as toString } from '../../../shared-chunks/to-string-C7M8LBLH.js';
|
|
5
|
-
export { i as
|
|
9
|
+
export { i as isObject } from '../../../shared-chunks/spec-BXl1reqK.js';
|
|
10
|
+
export { i as isProxy, s as setProxy } from '../../../shared-chunks/is_proxy-Bzg0d4m4.js';
|
|
6
11
|
export { C as Cache } from '../../../shared-chunks/cache-qDyqAcpg.js';
|
|
7
12
|
|
|
8
13
|
/**
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export { addChildView, clearElementView, clearViewElement, constructStyleDeprecationMessage, getChildViews, getElementView, getRootViews, getViewBoundingClientRect, getViewBounds, getViewClientRects, getViewElement, getViewId, isSimpleClick, setElementView, setViewElement } from './lib/system/utils.js';
|
|
2
2
|
export { default as EventDispatcher } from './lib/system/event_dispatcher.js';
|
|
3
|
-
export { default as ComponentLookup } from './lib/component_lookup.js';
|
|
4
3
|
export { default as CoreView } from './lib/views/core_view.js';
|
|
5
4
|
export { default as ActionSupport } from './lib/mixins/action_support.js';
|
|
6
5
|
export { MUTABLE_CELL } from './lib/compat/attrs.js';
|
|
@@ -1,17 +1,8 @@
|
|
|
1
|
-
import '
|
|
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 { g as get } from '../../../../../shared-chunks/observers-Bj9qLVau.js';
|
|
11
|
-
import '../../../environment/index.js';
|
|
1
|
+
import { g as get } from '../../../../../shared-chunks/property_get-CIBS9umw.js';
|
|
12
2
|
import Mixin from '../../../../object/mixin.js';
|
|
13
|
-
import { assert } from '../../../../debug/lib/assert.js';
|
|
14
3
|
import inspect from '../../../../debug/lib/inspect.js';
|
|
4
|
+
import '../../../../debug/index.js';
|
|
5
|
+
import { assert } from '../../../../debug/lib/assert.js';
|
|
15
6
|
|
|
16
7
|
/**
|
|
17
8
|
@module ember
|
|
@@ -1,16 +1,7 @@
|
|
|
1
1
|
import { getOwner } from '../../../owner/index.js';
|
|
2
2
|
import '../../../../debug/index.js';
|
|
3
|
-
import '
|
|
4
|
-
import '../../../../../shared-chunks/
|
|
5
|
-
import '../../../../../@glimmer/destroyable/index.js';
|
|
6
|
-
import '../../../../../@glimmer/validator/index.js';
|
|
7
|
-
import '../../../../../shared-chunks/debug-to-string-CFb7h0lY.js';
|
|
8
|
-
import '../../../../../@glimmer/global-context/index.js';
|
|
9
|
-
import '../../../../../shared-chunks/reference-C3TKDRnP.js';
|
|
10
|
-
import '../../../../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
11
|
-
import { g as get } from '../../../../../shared-chunks/observers-Bj9qLVau.js';
|
|
12
|
-
import { s as set } from '../../../../../shared-chunks/property_set-DaoZXGM5.js';
|
|
13
|
-
import '../../../environment/index.js';
|
|
3
|
+
import { g as get } from '../../../../../shared-chunks/property_get-CIBS9umw.js';
|
|
4
|
+
import { s as set } from '../../../../../shared-chunks/property_set-D3PKyisF.js';
|
|
14
5
|
import EmberObject from '../../../../object/index.js';
|
|
15
6
|
import { getElementView } from './utils.js';
|
|
16
7
|
import { assert } from '../../../../debug/lib/assert.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getOwner } from '../../../owner/index.js';
|
|
2
|
-
import { g as guidFor } from '../../../../../shared-chunks/
|
|
2
|
+
import { g as guidFor } from '../../../../../shared-chunks/guid-Cbq2sNV_.js';
|
|
3
3
|
import '../../../../debug/index.js';
|
|
4
4
|
import { assert } from '../../../../debug/lib/assert.js';
|
|
5
5
|
|
|
@@ -1,26 +1,9 @@
|
|
|
1
|
-
import '
|
|
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 { l as inject } from '../../../../../shared-chunks/observers-Bj9qLVau.js';
|
|
11
|
-
import '../../../environment/index.js';
|
|
12
|
-
import '../../../runtime/lib/mixins/registry_proxy.js';
|
|
13
|
-
import '../../../runtime/lib/mixins/container_proxy.js';
|
|
14
|
-
import '../../../runtime/lib/mixins/comparable.js';
|
|
1
|
+
import { i as inject } from '../../../../../shared-chunks/injected_property-B4T-FzZZ.js';
|
|
15
2
|
import ActionHandler from '../../../runtime/lib/mixins/action_handler.js';
|
|
16
|
-
import '../../../runtime/lib/mixins/-proxy.js';
|
|
17
|
-
import '../../../../enumerable/mutable.js';
|
|
18
|
-
import '../../../runtime/lib/mixins/target_action_support.js';
|
|
19
|
-
import '../../../runtime/lib/ext/rsvp.js';
|
|
20
3
|
import Evented from '../../../../object/evented.js';
|
|
21
4
|
import { FrameworkObject } from '../../../../object/-internals.js';
|
|
22
5
|
import states from './states.js';
|
|
23
|
-
import { d as decorateFieldV2, i as initializeDeferredDecorator } from '../../../../../shared-chunks/
|
|
6
|
+
import { d as decorateFieldV2, i as initializeDeferredDecorator } from '../../../../../shared-chunks/runtime-CYyqkz5q-BOdRhmsS.js';
|
|
24
7
|
|
|
25
8
|
class CoreView extends FrameworkObject.extend(Evented, ActionHandler) {
|
|
26
9
|
isView = true;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as teardownMandatorySetter } from '../../../../../shared-chunks/mandatory-setter-
|
|
1
|
+
import { t as teardownMandatorySetter } from '../../../../../shared-chunks/mandatory-setter-BpbAMTzV.js';
|
|
2
2
|
import '../../../../debug/index.js';
|
|
3
3
|
import { flaggedInstrument } from '../../../../instrumentation/index.js';
|
|
4
4
|
import { join } from '../../../../runloop/index.js';
|
|
@@ -1,37 +1,19 @@
|
|
|
1
|
+
import { setOwner as setOwner$1 } from '../-internals/owner/index.js';
|
|
1
2
|
import { getOwner as getOwner$1 } from '../owner/index.js';
|
|
2
3
|
import { m as makeDictionary } from '../../shared-chunks/dictionary-gc5gpyOG.js';
|
|
3
|
-
import '../../shared-chunks/
|
|
4
|
-
import { ENV } from '../-internals/environment/index.js';
|
|
4
|
+
import { E as ENV } from '../../shared-chunks/env-g-kaAFLN.js';
|
|
5
5
|
import { h as hasDOM } from '../../shared-chunks/index-BGP1rw3B.js';
|
|
6
6
|
import '../debug/index.js';
|
|
7
7
|
import { schedule, once, join, run } from '../runloop/index.js';
|
|
8
|
-
import '
|
|
9
|
-
import '../../@glimmer/destroyable/index.js';
|
|
10
|
-
import '../../@glimmer/validator/index.js';
|
|
11
|
-
import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
|
|
12
|
-
import '../../@glimmer/global-context/index.js';
|
|
13
|
-
import '../../shared-chunks/reference-C3TKDRnP.js';
|
|
14
|
-
import '../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
15
|
-
import { N as LIBRARIES } from '../../shared-chunks/observers-Bj9qLVau.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
|
-
import '../-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';
|
|
8
|
+
import { L as LIBRARIES } from '../../shared-chunks/libraries-CHBwbR72.js';
|
|
23
9
|
import '../-internals/runtime/lib/ext/rsvp.js';
|
|
24
|
-
import { setOwner as setOwner$1 } from '../-internals/owner/index.js';
|
|
25
10
|
import EventDispatcher from '../-internals/views/lib/system/event_dispatcher.js';
|
|
26
|
-
import '../object/index.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
11
|
import Route from '../routing/route.js';
|
|
31
12
|
import EmberRouter from '../routing/router.js';
|
|
32
13
|
import HashLocation from '../routing/hash-location.js';
|
|
33
14
|
import HistoryLocation from '../routing/history-location.js';
|
|
34
15
|
import NoneLocation from '../routing/none-location.js';
|
|
16
|
+
import '../../shared-chunks/property_get-CIBS9umw.js';
|
|
35
17
|
import '../engine/instance.js';
|
|
36
18
|
import '../../route-recognizer/index.js';
|
|
37
19
|
import { R as RSVP } from '../../shared-chunks/rsvp-CnCSY930.js';
|
|
@@ -42,12 +24,7 @@ import BucketCache from '../routing/lib/cache.js';
|
|
|
42
24
|
import ApplicationInstance from './instance.js';
|
|
43
25
|
import Engine, { buildInitializerMethod } from '../engine/index.js';
|
|
44
26
|
import { privatize } from '../-internals/container/index.js';
|
|
45
|
-
import '../../shared-chunks/
|
|
46
|
-
import '../../shared-chunks/index-BUPd6pkm.js';
|
|
47
|
-
import '../../shared-chunks/index-RzG0Jvjx.js';
|
|
48
|
-
import { s as setupApplicationRegistry } from '../../shared-chunks/setup-registry-DxchCIL2.js';
|
|
49
|
-
import '../../shared-chunks/dynamic-CgX8M02_.js';
|
|
50
|
-
import '../../shared-chunks/constants-BbdWMvgs.js';
|
|
27
|
+
import { s as setupApplicationRegistry } from '../../shared-chunks/setup-registry-BC5VMvei.js';
|
|
51
28
|
import RouterService from '../routing/router-service.js';
|
|
52
29
|
import { assert } from '../debug/lib/assert.js';
|
|
53
30
|
|
|
@@ -1,30 +1,11 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import { g as get } from '../../shared-chunks/property_get-CIBS9umw.js';
|
|
2
|
+
import { s as set } from '../../shared-chunks/property_set-D3PKyisF.js';
|
|
2
3
|
import { h as hasDOM, e as environment } from '../../shared-chunks/index-BGP1rw3B.js';
|
|
3
4
|
import EngineInstance from '../engine/instance.js';
|
|
4
|
-
import '../../shared-chunks/
|
|
5
|
-
import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
|
|
6
|
-
import '../../@glimmer/global-context/index.js';
|
|
7
|
-
import '../../@glimmer/validator/index.js';
|
|
8
|
-
import '../../shared-chunks/reference-C3TKDRnP.js';
|
|
9
|
-
import '../../shared-chunks/index-BUPd6pkm.js';
|
|
10
|
-
import '../../@glimmer/destroyable/index.js';
|
|
11
|
-
import '../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
12
|
-
import { r as renderSettled } from '../../shared-chunks/index-RzG0Jvjx.js';
|
|
13
|
-
import '../-internals/container/index.js';
|
|
5
|
+
import { r as renderSettled } from '../../shared-chunks/index-CwnQYqK5.js';
|
|
14
6
|
import '../debug/index.js';
|
|
15
|
-
import '../../shared-chunks/dynamic-CgX8M02_.js';
|
|
16
|
-
import '../../shared-chunks/constants-BbdWMvgs.js';
|
|
17
|
-
import '../runloop/index.js';
|
|
18
7
|
import EmberRouter from '../routing/router.js';
|
|
19
|
-
import '../../shared-chunks/mandatory-setter-DHZe7-kW.js';
|
|
20
8
|
import EventDispatcher from '../-internals/views/lib/system/event_dispatcher.js';
|
|
21
|
-
import '../-internals/views/lib/views/core_view.js';
|
|
22
|
-
import '../-internals/views/lib/mixins/action_support.js';
|
|
23
|
-
import '../-internals/views/lib/views/states.js';
|
|
24
|
-
import { s as set } from '../../shared-chunks/property_set-DaoZXGM5.js';
|
|
25
|
-
import '../-internals/meta/lib/meta.js';
|
|
26
|
-
import { g as get } from '../../shared-chunks/observers-Bj9qLVau.js';
|
|
27
|
-
import '../-internals/environment/index.js';
|
|
28
9
|
import { assert } from '../debug/lib/assert.js';
|
|
29
10
|
|
|
30
11
|
/**
|
|
@@ -1,15 +1,8 @@
|
|
|
1
|
-
import '
|
|
2
|
-
import { g as
|
|
3
|
-
import { g as getName, s as setName } from '../../shared-chunks/name-
|
|
1
|
+
import { N as NAMESPACES, a as NAMESPACES_BY_ID, p as processAllNamespaces, f as findNamespace, b as addNamespace, c as findNamespaces, d as processNamespace, r as removeNamespace } from '../../shared-chunks/namespace_search-BfvzEQzN.js';
|
|
2
|
+
import { g as get } from '../../shared-chunks/property_get-CIBS9umw.js';
|
|
3
|
+
import { g as getName, s as setName } from '../../shared-chunks/name-Clp4Vsod.js';
|
|
4
|
+
import { g as guidFor } from '../../shared-chunks/guid-Cbq2sNV_.js';
|
|
4
5
|
import '../debug/index.js';
|
|
5
|
-
import '../../@glimmer/destroyable/index.js';
|
|
6
|
-
import '../../@glimmer/validator/index.js';
|
|
7
|
-
import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
|
|
8
|
-
import '../../@glimmer/global-context/index.js';
|
|
9
|
-
import '../../shared-chunks/reference-C3TKDRnP.js';
|
|
10
|
-
import '../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
11
|
-
import { g as get } from '../../shared-chunks/observers-Bj9qLVau.js';
|
|
12
|
-
import { N as NAMESPACES, a as NAMESPACES_BY_ID, p as processAllNamespaces, f as findNamespace, b as addNamespace, c as findNamespaces, d as processNamespace, r as removeNamespace } from '../../shared-chunks/namespace_search-uT8odThF.js';
|
|
13
6
|
import EmberObject from '../object/index.js';
|
|
14
7
|
import { assert } from '../debug/lib/assert.js';
|
|
15
8
|
|
|
@@ -1,22 +1,14 @@
|
|
|
1
|
-
import { g as get,
|
|
2
|
-
import '
|
|
3
|
-
import '
|
|
4
|
-
import '
|
|
5
|
-
import '../../shared-chunks/
|
|
6
|
-
import '../../@glimmer/destroyable/index.js';
|
|
7
|
-
import '../../shared-chunks/debug-to-string-CFb7h0lY.js';
|
|
8
|
-
import '../../@glimmer/global-context/index.js';
|
|
9
|
-
import '../../shared-chunks/reference-C3TKDRnP.js';
|
|
10
|
-
import '../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
11
|
-
import { s as set } from '../../shared-chunks/property_set-DaoZXGM5.js';
|
|
12
|
-
import { e as replaceInNativeArray, r as replace } from '../../shared-chunks/array-D8PfjQHi.js';
|
|
13
|
-
import '../-internals/environment/index.js';
|
|
14
|
-
import '../object/index.js';
|
|
1
|
+
import { g as get, P as PROXY_CONTENT } from '../../shared-chunks/property_get-CIBS9umw.js';
|
|
2
|
+
import { o as objectAt } from '../../shared-chunks/chain-tags-D6tuFUj_.js';
|
|
3
|
+
import { e as replaceInNativeArray, r as replace } from '../../shared-chunks/array-Bh_kUjzy.js';
|
|
4
|
+
import { b as beginPropertyChanges, a as endPropertyChanges, c as computed } from '../../shared-chunks/computed-CJnghmXC.js';
|
|
5
|
+
import { s as set } from '../../shared-chunks/property_set-D3PKyisF.js';
|
|
15
6
|
import Mixin from '../object/mixin.js';
|
|
7
|
+
import '../debug/index.js';
|
|
16
8
|
import Enumerable from '../enumerable/index.js';
|
|
17
9
|
import MutableEnumerable from '../enumerable/mutable.js';
|
|
18
|
-
import typeOf from '../utils/lib/type-of.js';
|
|
19
10
|
import compare from '../utils/lib/compare.js';
|
|
11
|
+
import typeOf from '../utils/lib/type-of.js';
|
|
20
12
|
import Observable from '../object/observable.js';
|
|
21
13
|
import { setEmberArray, isEmberArray } from './-internals.js';
|
|
22
14
|
export { default as makeArray } from './lib/make-array.js';
|
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
import '
|
|
2
|
-
import {
|
|
3
|
-
import '
|
|
4
|
-
import '
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { a as alias } from '../../shared-chunks/alias-CSC0WIbj.js';
|
|
8
|
-
import { r as replace, a as arrayContentWillChange, b as arrayContentDidChange, c as addArrayObserver, d as removeArrayObserver } from '../../shared-chunks/array-D8PfjQHi.js';
|
|
9
|
-
import '../-internals/environment/index.js';
|
|
1
|
+
import { o as objectAt, a as tagForProperty } from '../../shared-chunks/chain-tags-D6tuFUj_.js';
|
|
2
|
+
import { a as alias } from '../../shared-chunks/alias-ZcMQckQV.js';
|
|
3
|
+
import { P as PROPERTY_DID_CHANGE } from '../../shared-chunks/computed-CJnghmXC.js';
|
|
4
|
+
import { r as replace, a as arrayContentWillChange, b as arrayContentDidChange, c as addArrayObserver, d as removeArrayObserver } from '../../shared-chunks/array-Bh_kUjzy.js';
|
|
5
|
+
import { g as get } from '../../shared-chunks/property_get-CIBS9umw.js';
|
|
6
|
+
import { i as isObject } from '../../shared-chunks/spec-BXl1reqK.js';
|
|
10
7
|
import EmberObject from '../object/index.js';
|
|
11
8
|
import EmberArray, { MutableArray } from './index.js';
|
|
12
|
-
import '
|
|
13
|
-
import '
|
|
14
|
-
import '../../shared-chunks/
|
|
15
|
-
import {
|
|
16
|
-
import '../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
9
|
+
import '../debug/index.js';
|
|
10
|
+
import { s as setCustomTagFor } from '../../shared-chunks/args-proxy-BNLuRFlO.js';
|
|
11
|
+
import { k as consumeTag, y as validateTag, z as valueForTag, j as combine } from '../../shared-chunks/cache-B7dqAS38.js';
|
|
12
|
+
import { t as tagFor } from '../../shared-chunks/meta-BmRXesrk.js';
|
|
17
13
|
import { assert } from '../debug/lib/assert.js';
|
|
18
14
|
|
|
19
15
|
/**
|
|
@@ -1,14 +1 @@
|
|
|
1
|
-
|
|
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 '../../shared-chunks/index-BUPd6pkm.js';
|
|
7
|
-
import '../../@glimmer/destroyable/index.js';
|
|
8
|
-
import '../../shared-chunks/capabilities-O_xc7Yqk.js';
|
|
9
|
-
export { H as default, h as helper } from '../../shared-chunks/index-RzG0Jvjx.js';
|
|
10
|
-
import '../-internals/container/index.js';
|
|
11
|
-
import '../debug/index.js';
|
|
12
|
-
import '../../shared-chunks/dynamic-CgX8M02_.js';
|
|
13
|
-
import '../../shared-chunks/constants-BbdWMvgs.js';
|
|
14
|
-
import '../runloop/index.js';
|
|
1
|
+
export { H as default, h as helper } from '../../shared-chunks/helper-Do7NCZHI.js';
|