123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- // src/app-data/index.ts
- var BUILD = {
- allRenderFn: false,
- cmpDidLoad: true,
- cmpDidUnload: false,
- cmpDidUpdate: true,
- cmpDidRender: true,
- cmpWillLoad: true,
- cmpWillUpdate: true,
- cmpWillRender: true,
- connectedCallback: true,
- disconnectedCallback: true,
- element: true,
- event: true,
- hasRenderFn: true,
- lifecycle: true,
- hostListener: true,
- hostListenerTargetWindow: true,
- hostListenerTargetDocument: true,
- hostListenerTargetBody: true,
- hostListenerTargetParent: false,
- hostListenerTarget: true,
- member: true,
- method: true,
- mode: true,
- observeAttribute: true,
- prop: true,
- propMutable: true,
- reflect: true,
- scoped: true,
- shadowDom: true,
- slot: true,
- cssAnnotations: true,
- state: true,
- style: true,
- formAssociated: false,
- svg: true,
- updatable: true,
- vdomAttribute: true,
- vdomXlink: true,
- vdomClass: true,
- vdomFunctional: true,
- vdomKey: true,
- vdomListener: true,
- vdomRef: true,
- vdomPropOrAttr: true,
- vdomRender: true,
- vdomStyle: true,
- vdomText: true,
- watchCallback: true,
- taskQueue: true,
- hotModuleReplacement: false,
- isDebug: false,
- isDev: false,
- isTesting: false,
- hydrateServerSide: false,
- hydrateClientSide: false,
- lifecycleDOMEvents: false,
- lazyLoad: false,
- profile: false,
- slotRelocation: true,
- // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
- appendChildSlotFix: false,
- // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
- cloneNodeFix: false,
- hydratedAttribute: false,
- hydratedClass: true,
- // TODO(STENCIL-1305): remove this option
- scriptDataOpts: false,
- // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
- scopedSlotTextContentFix: false,
- // TODO(STENCIL-854): Remove code related to legacy shadowDomShim field
- shadowDomShim: false,
- // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
- slotChildNodesFix: false,
- invisiblePrehydration: true,
- propBoolean: true,
- propNumber: true,
- propString: true,
- constructableCSS: true,
- cmpShouldUpdate: true,
- devTools: false,
- shadowDelegatesFocus: true,
- initializeNextTick: false,
- asyncLoading: false,
- asyncQueue: false,
- transformTagName: false,
- attachStyles: true,
- // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
- experimentalSlotFixes: false
- };
- var Env = {};
- var NAMESPACE = (
- /* default */
- "app"
- );
- export {
- BUILD,
- Env,
- NAMESPACE
- };
|