index.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // src/app-data/index.ts
  2. var BUILD = {
  3. allRenderFn: false,
  4. cmpDidLoad: true,
  5. cmpDidUnload: false,
  6. cmpDidUpdate: true,
  7. cmpDidRender: true,
  8. cmpWillLoad: true,
  9. cmpWillUpdate: true,
  10. cmpWillRender: true,
  11. connectedCallback: true,
  12. disconnectedCallback: true,
  13. element: true,
  14. event: true,
  15. hasRenderFn: true,
  16. lifecycle: true,
  17. hostListener: true,
  18. hostListenerTargetWindow: true,
  19. hostListenerTargetDocument: true,
  20. hostListenerTargetBody: true,
  21. hostListenerTargetParent: false,
  22. hostListenerTarget: true,
  23. member: true,
  24. method: true,
  25. mode: true,
  26. observeAttribute: true,
  27. prop: true,
  28. propMutable: true,
  29. reflect: true,
  30. scoped: true,
  31. shadowDom: true,
  32. slot: true,
  33. cssAnnotations: true,
  34. state: true,
  35. style: true,
  36. formAssociated: false,
  37. svg: true,
  38. updatable: true,
  39. vdomAttribute: true,
  40. vdomXlink: true,
  41. vdomClass: true,
  42. vdomFunctional: true,
  43. vdomKey: true,
  44. vdomListener: true,
  45. vdomRef: true,
  46. vdomPropOrAttr: true,
  47. vdomRender: true,
  48. vdomStyle: true,
  49. vdomText: true,
  50. watchCallback: true,
  51. taskQueue: true,
  52. hotModuleReplacement: false,
  53. isDebug: false,
  54. isDev: false,
  55. isTesting: false,
  56. hydrateServerSide: false,
  57. hydrateClientSide: false,
  58. lifecycleDOMEvents: false,
  59. lazyLoad: false,
  60. profile: false,
  61. slotRelocation: true,
  62. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  63. appendChildSlotFix: false,
  64. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  65. cloneNodeFix: false,
  66. hydratedAttribute: false,
  67. hydratedClass: true,
  68. // TODO(STENCIL-1305): remove this option
  69. scriptDataOpts: false,
  70. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  71. scopedSlotTextContentFix: false,
  72. // TODO(STENCIL-854): Remove code related to legacy shadowDomShim field
  73. shadowDomShim: false,
  74. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  75. slotChildNodesFix: false,
  76. invisiblePrehydration: true,
  77. propBoolean: true,
  78. propNumber: true,
  79. propString: true,
  80. constructableCSS: true,
  81. cmpShouldUpdate: true,
  82. devTools: false,
  83. shadowDelegatesFocus: true,
  84. initializeNextTick: false,
  85. asyncLoading: false,
  86. asyncQueue: false,
  87. transformTagName: false,
  88. attachStyles: true,
  89. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  90. experimentalSlotFixes: false
  91. };
  92. var Env = {};
  93. var NAMESPACE = (
  94. /* default */
  95. "app"
  96. );
  97. export {
  98. BUILD,
  99. Env,
  100. NAMESPACE
  101. };