UNPKG

ember-source

Version:

A JavaScript framework for creating ambitious web applications

42 lines (38 loc) 2.19 kB
export { t as template, a as templateCacheCounters } from '../../../shared-chunks/index-CyZiGiEI.js'; export { R as RootTemplate, s as setupApplicationRegistry, a as setupEngineRegistry } from '../../../shared-chunks/setup-registry-BQZJfq-Y.js'; export { I as Input, T as Textarea } from '../../../shared-chunks/textarea-lD4apgrP.js'; export { LinkTo } from '../../routing/index.js'; export { default as Component, setComponentManager } from '../../component/index.js'; export { H as Helper, h as helper } from '../../../shared-chunks/helper-BubrhyuN.js'; export { S as SafeString, T as TrustedHTML, h as htmlSafe, i as isHTMLSafe, a as isTrustedHTML, t as trustHTML } from '../../../shared-chunks/index-D-xTBV4B.js'; export { O as OutletView, R as Renderer, _ as _resetRenderers, a as renderComponent, r as renderSettled } from '../../../shared-chunks/index-CL1zjHwo.js'; export { D as DOMChanges } from '../../../shared-chunks/render-CpKaO-BO.js'; export { D as DOMTreeConstruction } from '../../../shared-chunks/element-builder--iTIJyCB.js'; import '../../../@glimmer/destroyable/index.js'; export { i as isSerializationFirstNode } from '../../../shared-chunks/rehydrate-builder-DCyIgnCR.js'; export { NodeDOMTreeConstruction } from '../../../@glimmer/node/index.js'; export { e as element } from '../../../shared-chunks/element-Cf3hqNOD.js'; export { u as uniqueId } from '../../../shared-chunks/unique-id-CgmHQiwi.js'; export { c as componentCapabilities, m as modifierCapabilities } from '../../../shared-chunks/api-BAmlf_CN.js'; // STATE within a module is frowned upon, this exists // to support Ember.TEMPLATES but shield ember internals from this legacy // global API. let TEMPLATES = {}; function setTemplates(templates) { TEMPLATES = templates; } function getTemplates() { return TEMPLATES; } function getTemplate(name) { if (Object.prototype.hasOwnProperty.call(TEMPLATES, name)) { return TEMPLATES[name]; } } function hasTemplate(name) { return Object.prototype.hasOwnProperty.call(TEMPLATES, name); } function setTemplate(name, template) { return TEMPLATES[name] = template; } export { getTemplate, getTemplates, hasTemplate, setTemplate, setTemplates };