index.cjs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. "use strict";
  2. var __defProp = Object.defineProperty;
  3. var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
  4. var __getOwnPropNames = Object.getOwnPropertyNames;
  5. var __hasOwnProp = Object.prototype.hasOwnProperty;
  6. var __export = (target, all) => {
  7. for (var name in all)
  8. __defProp(target, name, { get: all[name], enumerable: true });
  9. };
  10. var __copyProps = (to, from, except, desc) => {
  11. if (from && typeof from === "object" || typeof from === "function") {
  12. for (let key of __getOwnPropNames(from))
  13. if (!__hasOwnProp.call(to, key) && key !== except)
  14. __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  15. }
  16. return to;
  17. };
  18. var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
  19. // src/app-data/index.ts
  20. var app_data_exports = {};
  21. __export(app_data_exports, {
  22. BUILD: () => BUILD,
  23. Env: () => Env,
  24. NAMESPACE: () => NAMESPACE
  25. });
  26. module.exports = __toCommonJS(app_data_exports);
  27. var BUILD = {
  28. allRenderFn: false,
  29. cmpDidLoad: true,
  30. cmpDidUnload: false,
  31. cmpDidUpdate: true,
  32. cmpDidRender: true,
  33. cmpWillLoad: true,
  34. cmpWillUpdate: true,
  35. cmpWillRender: true,
  36. connectedCallback: true,
  37. disconnectedCallback: true,
  38. element: true,
  39. event: true,
  40. hasRenderFn: true,
  41. lifecycle: true,
  42. hostListener: true,
  43. hostListenerTargetWindow: true,
  44. hostListenerTargetDocument: true,
  45. hostListenerTargetBody: true,
  46. hostListenerTargetParent: false,
  47. hostListenerTarget: true,
  48. member: true,
  49. method: true,
  50. mode: true,
  51. observeAttribute: true,
  52. prop: true,
  53. propMutable: true,
  54. reflect: true,
  55. scoped: true,
  56. shadowDom: true,
  57. slot: true,
  58. cssAnnotations: true,
  59. state: true,
  60. style: true,
  61. formAssociated: false,
  62. svg: true,
  63. updatable: true,
  64. vdomAttribute: true,
  65. vdomXlink: true,
  66. vdomClass: true,
  67. vdomFunctional: true,
  68. vdomKey: true,
  69. vdomListener: true,
  70. vdomRef: true,
  71. vdomPropOrAttr: true,
  72. vdomRender: true,
  73. vdomStyle: true,
  74. vdomText: true,
  75. watchCallback: true,
  76. taskQueue: true,
  77. hotModuleReplacement: false,
  78. isDebug: false,
  79. isDev: false,
  80. isTesting: false,
  81. hydrateServerSide: false,
  82. hydrateClientSide: false,
  83. lifecycleDOMEvents: false,
  84. lazyLoad: false,
  85. profile: false,
  86. slotRelocation: true,
  87. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  88. appendChildSlotFix: false,
  89. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  90. cloneNodeFix: false,
  91. hydratedAttribute: false,
  92. hydratedClass: true,
  93. // TODO(STENCIL-1305): remove this option
  94. scriptDataOpts: false,
  95. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  96. scopedSlotTextContentFix: false,
  97. // TODO(STENCIL-854): Remove code related to legacy shadowDomShim field
  98. shadowDomShim: false,
  99. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  100. slotChildNodesFix: false,
  101. invisiblePrehydration: true,
  102. propBoolean: true,
  103. propNumber: true,
  104. propString: true,
  105. constructableCSS: true,
  106. cmpShouldUpdate: true,
  107. devTools: false,
  108. shadowDelegatesFocus: true,
  109. initializeNextTick: false,
  110. asyncLoading: false,
  111. asyncQueue: false,
  112. transformTagName: false,
  113. attachStyles: true,
  114. // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
  115. experimentalSlotFixes: false
  116. };
  117. var Env = {};
  118. var NAMESPACE = (
  119. /* default */
  120. "app"
  121. );
  122. // Annotate the CommonJS export names for ESM import in node:
  123. 0 && (module.exports = {
  124. BUILD,
  125. Env,
  126. NAMESPACE
  127. });