@emailmaker/emailmaker 1.0.107-dev.3 → 1.0.107-dev.4

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.
Files changed (325) hide show
  1. package/README.md +1 -1
  2. package/cli/dist/lib/cli/project.js +2 -16
  3. package/cli/dist/lib/config.js +20 -29
  4. package/cli/dist/lib/local-test.js +3 -19
  5. package/cli/dist/lib/paths.js +11 -0
  6. package/cli/dist/lib/resolveNpmSpawn.d.ts +20 -0
  7. package/cli/dist/lib/resolveNpmSpawn.js +71 -0
  8. package/cli/dist/lib/template-engine/context/pluginPackageJsonData.js +21 -19
  9. package/cli/dist/lib/template-engine/context/standVitePackageJsonData.js +7 -8
  10. package/cli/dist/lib/template-engine/resolveVariantDir.d.ts +5 -1
  11. package/cli/dist/lib/template-engine/resolveVariantDir.js +22 -0
  12. package/cli/dist/lib/templates/shared/i18n.js +2 -2
  13. package/cli/dist/lib/templates/shared/paths.js +3 -4
  14. package/cli/dist/lib/types/package-config.d.ts +1 -0
  15. package/cli/lib/cli/project.ts +2 -18
  16. package/cli/lib/config.ts +19 -30
  17. package/cli/lib/local-test.ts +3 -22
  18. package/cli/lib/paths.ts +15 -0
  19. package/cli/lib/resolveNpmSpawn.ts +72 -0
  20. package/cli/lib/template-engine/buildStandIndexHtml.test.ts +1 -0
  21. package/cli/lib/template-engine/context/pluginPackageJsonData.ts +23 -23
  22. package/cli/lib/template-engine/context/standVitePackageJsonData.ts +7 -12
  23. package/cli/lib/template-engine/pluginEtaParity.test.ts +1 -0
  24. package/cli/lib/template-engine/resolveVariantDir.ts +22 -0
  25. package/cli/lib/template-engine/standAdvancedViteDevHostEta.test.ts +4 -3
  26. package/cli/lib/template-engine/standWebpackDevHostEta.test.ts +7 -6
  27. package/cli/lib/templates/shared/i18n.ts +2 -2
  28. package/cli/lib/templates/shared/paths.ts +3 -4
  29. package/cli/lib/types/package-config.ts +1 -0
  30. package/cli/package.json +1 -1
  31. package/cli/project-templates/plugin/assets/vite/{plugin-build.config.mjs → plugin-build.config.ts} +7 -5
  32. package/cli/project-templates/plugin/assets/vite/{sandbox-build.config.mjs → sandbox-build.config.ts} +7 -5
  33. package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.module.cjs → plugin-build.legacy.module.ts} +20 -7
  34. package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.umd.cjs → plugin-build.legacy.umd.ts} +20 -7
  35. package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.module.cjs → plugin-build.modern.module.ts} +9 -4
  36. package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.umd.cjs → plugin-build.modern.umd.ts} +9 -4
  37. package/cli/project-templates/plugin/assets/webpack/{sandbox-build.config.cjs → sandbox-build.config.ts} +13 -3
  38. package/cli/project-templates/plugin/bundler-vite/release.html.eta +1 -0
  39. package/cli/project-templates/plugin/bundler-webpack/public/release.html.eta +1 -0
  40. package/cli/project-templates/plugin/shared-base/public/demo/product-1.svg +10 -0
  41. package/cli/project-templates/plugin/shared-base/public/demo/product-2.svg +10 -0
  42. package/cli/project-templates/plugin/shared-base/scripts/build-runner.ts +22 -0
  43. package/cli/project-templates/plugin/shared-base/scripts/build-types.ts +17 -0
  44. package/cli/project-templates/plugin/shared-base/scripts/clean.ts +16 -0
  45. package/cli/project-templates/plugin/shared-base/scripts/dev-runner.ts +52 -0
  46. package/cli/project-templates/plugin/shared-base/scripts/npmRun.ts +61 -0
  47. package/cli/project-templates/plugin/shared-base/scripts/release-runner.ts +18 -0
  48. package/cli/project-templates/plugin/shared-base/scripts/scriptRuntime.ts +10 -0
  49. package/cli/project-templates/plugin/shared-base/src/dev/hostApp.tsx.eta +1 -0
  50. package/cli/project-templates/plugin/shared-base/src/dev-release.tsx.eta +1 -0
  51. package/cli/project-templates/plugin/shared-base/src/dev.tsx.eta +1 -1
  52. package/cli/project-templates/shared/partials/plugin-dev-host-app-advanced.eta +93 -0
  53. package/cli/project-templates/shared/partials/plugin-dev-host-app-minimal.eta +54 -0
  54. package/cli/project-templates/shared/partials/plugin-dev-tsx-advanced.eta +3 -2
  55. package/cli/project-templates/shared/partials/plugin-dev-tsx-debug.eta +18 -0
  56. package/cli/project-templates/shared/partials/plugin-dev-tsx-release.eta +33 -0
  57. package/cli/project-templates/shared/partials/plugin-dev-tsx-runtime-helpers.eta +8 -8
  58. package/cli/project-templates/shared/partials/plugin-index-ts.eta +0 -1
  59. package/cli/project-templates/shared/partials/plugin-vite-dev-host.eta +9 -5
  60. package/cli/project-templates/shared/partials/plugin-vite-plugin-build.eta +7 -5
  61. package/cli/project-templates/shared/partials/plugin-vite-release-html.eta +12 -0
  62. package/cli/project-templates/shared/partials/plugin-vite-sandbox-build.eta +7 -5
  63. package/cli/project-templates/shared/partials/plugin-webpack-dev-host-legacy.eta +12 -5
  64. package/cli/project-templates/shared/partials/plugin-webpack-dev-host-modern.eta +13 -6
  65. package/cli/project-templates/shared/partials/plugin-webpack-release-html.eta +12 -0
  66. package/cli/project-templates/shared/partials/plugin-webpack-sandbox-build.eta +13 -3
  67. package/cli/project-templates/shared/partials/plugin-wp-legacy-module.eta +28 -10
  68. package/cli/project-templates/shared/partials/plugin-wp-legacy-umd.eta +28 -10
  69. package/cli/project-templates/shared/partials/plugin-wp-modern-module.eta +9 -4
  70. package/cli/project-templates/shared/partials/plugin-wp-modern-umd.eta +9 -4
  71. package/cli/project-templates/shared/partials/stand-dev-host-vite-memory.eta +3 -3
  72. package/cli/project-templates/shared/partials/stand-dev-host-vite-subpath.eta +8 -4
  73. package/cli/project-templates/shared/partials/stand-dev-host-vite-umd.eta +5 -5
  74. package/cli/project-templates/shared/partials/stand-dev-host-vite.eta +3 -3
  75. package/cli/project-templates/shared/partials/stand-dev-host-webpack-subpath.eta +8 -4
  76. package/cli/project-templates/shared/partials/stand-dev-host-webpack-umd.eta +9 -3
  77. package/cli/project-templates/shared/partials/stand-dev-host-webpack.eta +8 -4
  78. package/cli/project-templates/shared/partials/stand-dev-storage-middleware.eta +370 -0
  79. package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.ts +80 -0
  80. package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.ts.eta +1 -0
  81. package/cli/project-templates/shared/stand-webpack-base/config/lib/{createWebpackStandConfig.cjs → createWebpackStandConfig.ts} +31 -19
  82. package/cli/project-templates/{stand/advanced/umd/vite/config/lib/umdServeMiddleware.mjs → shared/stand-webpack-base/config/lib/umdServeMiddleware.ts} +19 -11
  83. package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.ts.eta +1 -0
  84. package/cli/project-templates/stand/advanced/memory-usage/vite/config/lib/{createMemoryUsageStandConfig.mjs → createMemoryUsageStandConfig.ts} +25 -20
  85. package/cli/project-templates/stand/advanced/umd/vite/config/lib/umdServeMiddleware.ts +68 -0
  86. package/cli/project-templates/stand/react-adapter/webpack/README.md.eta +1 -0
  87. package/cli/project-templates/stand/react-adapter/webpack/config/dev-host.ts.eta +1 -0
  88. package/cli/project-templates/stand/react-adapter/webpack/package.json.eta +1 -0
  89. package/cli/project-templates/stand/react-adapter/webpack/public/index.html.eta +1 -0
  90. package/cli/project-templates/stand/react-adapter/webpack/src/dev/editorConfig.ts.eta +1 -0
  91. package/cli/project-templates/stand/react-adapter/webpack/src/dev/email.html.eta +1 -0
  92. package/cli/project-templates/stand/react-adapter/webpack/src/dev/getAuthToken.ts.eta +1 -0
  93. package/cli/project-templates/stand/react-adapter/webpack/src/dev/oauthCredentials.ts +9 -0
  94. package/cli/project-templates/stand/react-adapter/webpack/src/dev/storageProvider.ts.eta +1 -0
  95. package/cli/project-templates/stand/react-adapter/webpack/src/index.tsx.eta +1 -0
  96. package/cli/scripts/cli-matrix-smoke.ts +19 -10
  97. package/cli/scripts/verify-global-cli.ts +1 -1
  98. package/cli/scripts/vite-plugin-version-matrix.ts +299 -0
  99. package/cli/tsconfig.json +2 -2
  100. package/emailmaker-core.aa9efbce.js +1 -0
  101. package/emailmaker-esm.js +788 -153
  102. package/emailmaker.d.ts +32 -0
  103. package/emailmaker.js +4 -4
  104. package/iframe/js/amp.BGJMqoms.js +1 -1
  105. package/iframe/js/chunk.oX6nCJbK.js +1 -1
  106. package/iframe/js/iframe-eblock.js +1 -1
  107. package/iframe/js/iframe.js +1 -1
  108. package/iframe/js/rules.BSaCN7eK.js +1 -1
  109. package/iframe/js/sanitize-html.Dy7Uwo8P.js +1 -1
  110. package/images/integrations/activecampaign.svg +4 -0
  111. package/images/integrations/bento.svg +9 -0
  112. package/images/integrations/brevo.svg +7 -0
  113. package/images/integrations/campaign_monitor.svg +10 -0
  114. package/images/integrations/constant_contact.svg +24 -0
  115. package/images/integrations/dotdigital.svg +144 -0
  116. package/images/integrations/getresponse.svg +23 -0
  117. package/images/integrations/hubspot.svg +3 -0
  118. package/images/integrations/klaviyo.svg +10 -0
  119. package/images/integrations/mailchimp.svg +9 -0
  120. package/images/integrations/salesforce.svg +20 -0
  121. package/js/browser-image-compression.js +9 -0
  122. package/package.json +2 -5
  123. package/runtime/@ant-design/cssinjs/index.js +1 -1
  124. package/runtime/@ant-design/icons/index.js +1 -1
  125. package/runtime/@ant-design/pro-layout/index.js +1 -1
  126. package/runtime/README.md +13 -13
  127. package/runtime/antd/index.js +1 -1
  128. package/runtime/app-core/index.js +1 -2
  129. package/runtime/classnames/index.js +1 -1
  130. package/runtime/core/index.js +6 -6
  131. package/runtime/dayjs/index.js +1 -1
  132. package/runtime/di/index.js +1 -2
  133. package/runtime/disposable/index.js +1 -2
  134. package/runtime/errors-runtime/index.js +1 -2
  135. package/runtime/guid/index.js +1 -2
  136. package/runtime/index.js +2 -4
  137. package/runtime/package.json +2 -3
  138. package/runtime/prop-types/index.js +1 -1
  139. package/runtime/react/index.js +1 -1
  140. package/runtime/react/jsx-dev-runtime/index.js +1 -1
  141. package/runtime/react/jsx-runtime/index.js +1 -1
  142. package/runtime/react-dom/client/index.js +1 -1
  143. package/runtime/react-dom/index.js +1 -1
  144. package/runtime/react-router-dom/index.js +1 -1
  145. package/runtime/uuid/index.js +1 -1
  146. package/static/amd/{8fc2a596.js → 19aeb269.js} +88 -88
  147. package/static/core/192ec827.js +1 -0
  148. package/static/core/22c1de2e2.js +1 -0
  149. package/static/core/24faedf0.js +1 -0
  150. package/static/core/29231645.js +1 -0
  151. package/static/core/2a3177fc2.js +1 -0
  152. package/static/core/346aabd2.js +3 -0
  153. package/static/core/3b800ed6.js +1 -0
  154. package/static/core/3e840e90.js +1 -0
  155. package/static/core/40cc9fd7.js +1 -0
  156. package/static/core/421bdec22.js +1 -0
  157. package/static/core/4aaa358b2.js +903 -0
  158. package/static/core/50ff48bc.js +4 -0
  159. package/static/core/5282795d2.js +6 -0
  160. package/static/core/563a283d.js +1 -0
  161. package/static/core/5d47e095.js +47 -0
  162. package/static/core/5f574386.js +1 -0
  163. package/static/core/67a41193.js +1 -0
  164. package/static/core/698dace4.js +7 -0
  165. package/static/core/6b648e2d.js +1 -0
  166. package/static/core/7629adfd.js +1 -0
  167. package/static/core/7717f2932.js +3 -0
  168. package/static/core/776cb34a.js +1 -0
  169. package/static/core/78a1e31e.js +1 -0
  170. package/static/core/7d56d643.js +1 -0
  171. package/static/core/841752212.js +40 -0
  172. package/static/core/8477e97e.js +1 -0
  173. package/static/core/8756d562.js +1 -0
  174. package/static/core/91d328d8.js +1 -0
  175. package/static/core/9270dbb6.js +6 -0
  176. package/static/core/96371334.js +566 -0
  177. package/static/core/9b9ddaef2.js +168 -0
  178. package/static/core/af1da4b4.js +1 -0
  179. package/static/core/b5096b152.js +471 -0
  180. package/static/core/bde6775a.js +1 -0
  181. package/static/core/bf1b888c.js +4 -0
  182. package/static/core/cec8d739.js +11 -0
  183. package/static/core/cf45bf332.js +598 -0
  184. package/static/core/cfac3d32.js +1 -0
  185. package/static/core/d21c95cf2.js +1 -0
  186. package/static/core/dbd9ca52.js +1 -0
  187. package/static/core/dc590181.js +1 -0
  188. package/static/core/e0039d55.js +1 -0
  189. package/static/core/e4071c1a.js +4 -0
  190. package/static/core/ef87b75c.js +41 -0
  191. package/static/core/f47701f32.js +20 -0
  192. package/static/core/f83d7ac42.js +3 -0
  193. package/static/core/fcc67e6b.js +1 -0
  194. package/static/core/fd40d85c.js +1 -0
  195. package/static/core/fe638847.js +1 -0
  196. package/static/esm/{e8401d17.js → 203c9644.js} +3 -3
  197. package/static/esm/4b679053.js +27 -0
  198. package/static/esm/{b273a6c2.js → f31a26c6.js} +1 -1
  199. package/static/runtime/disposable-CD74igiJ.js +1 -0
  200. package/static/runtime/guid-C0wuVR8v.js +1 -0
  201. package/vite/index.d.ts +17 -6
  202. package/vite/index.js +315 -270
  203. package/vite/pluginDev/index.d.ts +10 -19
  204. package/vite/pluginDev/index.js +251 -204
  205. package/webpack/index.d.ts +24 -5
  206. package/webpack/index.js +168 -144
  207. package/webpack/pluginDev/index.d.ts +21 -22
  208. package/webpack/pluginDev/index.js +242 -177
  209. package/cli/dist/lib/template-engine/buildStandIndexHtml.test.d.ts +0 -2
  210. package/cli/dist/lib/template-engine/buildStandIndexHtml.test.js +0 -89
  211. package/cli/dist/lib/template-engine/emitEtaTree.test.d.ts +0 -2
  212. package/cli/dist/lib/template-engine/emitEtaTree.test.js +0 -34
  213. package/cli/dist/lib/template-engine/pluginEtaParity.test.d.ts +0 -2
  214. package/cli/dist/lib/template-engine/pluginEtaParity.test.js +0 -105
  215. package/cli/dist/lib/template-engine/resolveVariantDir.test.d.ts +0 -2
  216. package/cli/dist/lib/template-engine/resolveVariantDir.test.js +0 -52
  217. package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.d.ts +0 -2
  218. package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.js +0 -67
  219. package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.d.ts +0 -2
  220. package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.js +0 -83
  221. package/cli/dist/lib/template-engine/storageProviderEta.test.d.ts +0 -2
  222. package/cli/dist/lib/template-engine/storageProviderEta.test.js +0 -26
  223. package/cli/project-templates/plugin/shared-base/scripts/build-types.cjs +0 -8
  224. package/cli/project-templates/plugin/shared-base/scripts/clean.cjs +0 -6
  225. package/cli/project-templates/plugin/shared-base/scripts/dev-runner.cjs +0 -48
  226. package/cli/project-templates/plugin/shared-base/scripts/release-runner.cjs +0 -63
  227. package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.mjs +0 -80
  228. package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.cjs +0 -235
  229. package/cli/project-templates/shared/stand-webpack-base/config/lib/umdServeMiddleware.cjs +0 -38
  230. package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.cjs +0 -235
  231. package/emailmaker-core.80d62b88.js +0 -569
  232. package/runtime/_core/app-core/index.js +0 -1
  233. package/runtime/_core/chunks/app-core-DphKKh8f.js +0 -1
  234. package/runtime/_core/chunks/chunk-oqAt0Dze.js +0 -1
  235. package/runtime/_core/chunks/di-BHUzE57z.js +0 -1
  236. package/runtime/_core/chunks/disposable-PhM3rJkj.js +0 -1
  237. package/runtime/_core/chunks/errors-runtime-VjCOXaQX.js +0 -1
  238. package/runtime/_core/chunks/guid-D2-FTZQG.js +0 -1
  239. package/runtime/_core/di/index.js +0 -1
  240. package/runtime/_core/disposable/index.js +0 -1
  241. package/runtime/_core/errors-runtime/index.js +0 -1
  242. package/runtime/_core/guid/index.js +0 -1
  243. package/runtime/_core/index.js +0 -1
  244. package/shared/hostBootstrap.js +0 -47
  245. package/shared/pluginDevOptions.js +0 -31
  246. package/shared/runtimeManifest.js +0 -72
  247. package/shared/stringCase.js +0 -16
  248. package/static/core/2360f32a.js +0 -3
  249. package/static/core/2687db56.js +0 -3
  250. package/static/core/2b250af6.js +0 -1261
  251. package/static/core/3469930c.js +0 -302
  252. package/static/core/34ce9042.js +0 -201
  253. package/static/core/4091ba5b.js +0 -25
  254. package/static/core/41ce3a6a.js +0 -173
  255. package/static/core/4ac4908c.js +0 -2213
  256. package/static/core/519096c1.js +0 -2597
  257. package/static/core/5fa1772b.js +0 -116550
  258. package/static/core/61312909.js +0 -3
  259. package/static/core/62a98c07.js +0 -75301
  260. package/static/core/6309c0f2.js +0 -3
  261. package/static/core/68d9f440.js +0 -3
  262. package/static/core/73b645ab.js +0 -2
  263. package/static/core/81019351.js +0 -280
  264. package/static/core/835b37ef.js +0 -591
  265. package/static/core/91242fb3.js +0 -3
  266. package/static/core/972b15b0.js +0 -92399
  267. package/static/core/974ef468.js +0 -493
  268. package/static/core/a17614422.js +0 -38078
  269. package/static/core/a2fa7b5b.js +0 -4232
  270. package/static/core/a513adfd.js +0 -89857
  271. package/static/core/a7c73a9b.js +0 -3813
  272. package/static/core/b64c7c90.js +0 -228
  273. package/static/core/cdc9ba92.js +0 -4711
  274. package/static/core/d1db685d.js +0 -2193
  275. package/static/core/d661febc.js +0 -3
  276. package/static/core/d6d2d2d0.js +0 -23
  277. package/static/core/df1a1225.js +0 -607
  278. package/static/core/e5bff179.js +0 -1302
  279. package/static/core/e5d602f5.js +0 -2
  280. package/static/core/eb029366.js +0 -1532
  281. package/static/core/f46c035a.js +0 -2
  282. package/static/core/f8b9d89a.js +0 -461
  283. package/static/core/fd897ad7.js +0 -3
  284. package/static/core/fdd890c7.js +0 -6168
  285. package/static/esm/29eb18ff.js +0 -164
  286. package/vite/mime-types.js +0 -179
  287. package/vite/utils.js +0 -44
  288. /package/cli/project-templates/plugin/bundler-vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  289. /package/cli/project-templates/plugin/bundler-vite/config/{plugin-build.mjs.eta → plugin-build.ts.eta} +0 -0
  290. /package/cli/project-templates/plugin/bundler-vite/config/{sandbox-build.mjs.eta → sandbox-build.ts.eta} +0 -0
  291. /package/cli/project-templates/plugin/bundler-webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  292. /package/cli/project-templates/plugin/bundler-webpack/config/{plugin-build.cjs.eta → plugin-build.ts.eta} +0 -0
  293. /package/cli/project-templates/plugin/bundler-webpack/config/{sandbox-build.cjs.eta → sandbox-build.ts.eta} +0 -0
  294. /package/cli/project-templates/stand/advanced/memory-usage/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  295. /package/cli/project-templates/stand/advanced/shadow-dom/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  296. /package/cli/project-templates/stand/advanced/shadow-dom/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  297. /package/cli/project-templates/stand/advanced/subpath/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  298. /package/cli/project-templates/stand/advanced/subpath/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  299. /package/cli/project-templates/stand/advanced/umd/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  300. /package/cli/project-templates/stand/advanced/umd/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  301. /package/cli/project-templates/stand/closed-loop/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  302. /package/cli/project-templates/stand/closed-loop/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  303. /package/cli/project-templates/stand/oauth/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  304. /package/cli/project-templates/stand/oauth/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  305. /package/cli/project-templates/stand/react-adapter/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  306. /package/iframe/{iframe-eblock.80d62b88.html → iframe-eblock.aa9efbce.html} +0 -0
  307. /package/iframe/{iframe.80d62b88.html → iframe.aa9efbce.html} +0 -0
  308. /package/{runtime/chunks → static/runtime}/DownloadOutlined-a2ZUz7zB.js +0 -0
  309. /package/{runtime/chunks → static/runtime}/chunk-D-iEO58U.js +0 -0
  310. /package/{runtime/chunks → static/runtime}/classnames-DBEldvch.js +0 -0
  311. /package/{runtime/chunks → static/runtime}/client-5XqXGmAI.js +0 -0
  312. /package/{runtime/chunks → static/runtime}/dayjs.min-CO3mzOeV.js +0 -0
  313. /package/{runtime/_core/chunks/defineProperty-BGJFuFMq.js → static/runtime/defineProperty-CGNmw-jw.js} +0 -0
  314. /package/{runtime/chunks → static/runtime}/dist-Cns8cA2n.js +0 -0
  315. /package/{runtime/chunks → static/runtime}/dist-Ct0xRt3Y.js +0 -0
  316. /package/{runtime/chunks → static/runtime}/es-0FFT3fCz.js +0 -0
  317. /package/{runtime/chunks → static/runtime}/es-BwJ3eGbx.js +0 -0
  318. /package/{runtime/chunks → static/runtime}/es-D8EsVtRL.js +0 -0
  319. /package/{runtime/chunks → static/runtime}/es-Da4O25Kw.js +0 -0
  320. /package/{runtime/chunks → static/runtime}/jsx-dev-runtime-V4_MuHNS.js +0 -0
  321. /package/{runtime/chunks → static/runtime}/jsx-runtime-DBeCoE0b.js +0 -0
  322. /package/{runtime/chunks → static/runtime}/objectWithoutProperties-Bk0EDksJ.js +0 -0
  323. /package/{runtime/chunks → static/runtime}/prop-types-DxD5wgQ0.js +0 -0
  324. /package/{runtime/chunks → static/runtime}/react-TEeeBWTl.js +0 -0
  325. /package/{runtime/chunks → static/runtime}/react-dom-BKKa1g6U.js +0 -0
@@ -1,2 +0,0 @@
1
- import { d as e } from "./972b15b0.js";
2
- export default e();
@@ -1,461 +0,0 @@
1
- //#region node_modules/@sentry/core/build/esm/debug-build.js
2
- var e = typeof __SENTRY_DEBUG__ > "u" || __SENTRY_DEBUG__, t = globalThis, n = "9.47.1";
3
- //#endregion
4
- //#region node_modules/@sentry/core/build/esm/carrier.js
5
- function r() {
6
- return i(t), t;
7
- }
8
- function i(e) {
9
- let t = e.__SENTRY__ = e.__SENTRY__ || {};
10
- return t.version = t.version || "9.47.1", t[n] = t["9.47.1"] || {};
11
- }
12
- function a(e, r, i = t) {
13
- let a = i.__SENTRY__ = i.__SENTRY__ || {}, o = a[n] = a["9.47.1"] || {};
14
- return o[e] || (o[e] = r());
15
- }
16
- //#endregion
17
- //#region node_modules/@sentry/core/build/esm/utils/debug-logger.js
18
- var o = "Sentry Logger ", s = {};
19
- function c(e) {
20
- if (!("console" in t)) return e();
21
- let n = t.console, r = {}, i = Object.keys(s);
22
- i.forEach((e) => {
23
- let t = s[e];
24
- r[e] = n[e], n[e] = t;
25
- });
26
- try {
27
- return e();
28
- } finally {
29
- i.forEach((e) => {
30
- n[e] = r[e];
31
- });
32
- }
33
- }
34
- function l() {
35
- g().enabled = !0;
36
- }
37
- function u() {
38
- g().enabled = !1;
39
- }
40
- function d() {
41
- return g().enabled;
42
- }
43
- function f(...e) {
44
- h("log", ...e);
45
- }
46
- function p(...e) {
47
- h("warn", ...e);
48
- }
49
- function m(...e) {
50
- h("error", ...e);
51
- }
52
- function h(n, ...r) {
53
- e && d() && c(() => {
54
- t.console[n](`${o}[${n}]:`, ...r);
55
- });
56
- }
57
- function g() {
58
- return e ? a("loggerSettings", () => ({ enabled: !1 })) : { enabled: !1 };
59
- }
60
- var _ = {
61
- enable: l,
62
- disable: u,
63
- isEnabled: d,
64
- log: f,
65
- warn: p,
66
- error: m
67
- }, v = Object.prototype.toString;
68
- function y(e, t) {
69
- return v.call(e) === `[object ${t}]`;
70
- }
71
- function b(e) {
72
- return y(e, "Object");
73
- }
74
- function x(e) {
75
- return !!(e?.then && typeof e.then == "function");
76
- }
77
- //#endregion
78
- //#region node_modules/@sentry/core/build/esm/utils/string.js
79
- function S(e, t = 0) {
80
- return typeof e != "string" || t === 0 || e.length <= t ? e : `${e.slice(0, t)}...`;
81
- }
82
- //#endregion
83
- //#region node_modules/@sentry/core/build/esm/utils/object.js
84
- function C(t, n, r) {
85
- try {
86
- Object.defineProperty(t, n, {
87
- value: r,
88
- writable: !0,
89
- configurable: !0
90
- });
91
- } catch {
92
- e && _.log(`Failed to add non-enumerable property "${n}" to object`, t);
93
- }
94
- }
95
- //#endregion
96
- //#region node_modules/@sentry/core/build/esm/utils/misc.js
97
- function w() {
98
- let e = t;
99
- return e.crypto || e.msCrypto;
100
- }
101
- function T(e = w()) {
102
- let t = () => Math.random() * 16;
103
- try {
104
- if (e?.randomUUID) return e.randomUUID().replace(/-/g, "");
105
- e?.getRandomValues && (t = () => {
106
- let t = new Uint8Array(1);
107
- return e.getRandomValues(t), t[0];
108
- });
109
- } catch {}
110
- return "10000000100040008000100000000000".replace(/[018]/g, (e) => (e ^ (t() & 15) >> e / 4).toString(16));
111
- }
112
- //#endregion
113
- //#region node_modules/@sentry/core/build/esm/utils/time.js
114
- var E = 1e3;
115
- function D() {
116
- return Date.now() / E;
117
- }
118
- function O() {
119
- let { performance: e } = t;
120
- if (!e?.now || !e.timeOrigin) return D;
121
- let n = e.timeOrigin;
122
- return () => (n + e.now()) / E;
123
- }
124
- var k;
125
- function A() {
126
- return (k ??= O())();
127
- }
128
- //#endregion
129
- //#region node_modules/@sentry/core/build/esm/session.js
130
- function j(e, t = {}) {
131
- if (t.user && (!e.ipAddress && t.user.ip_address && (e.ipAddress = t.user.ip_address), !e.did && !t.did && (e.did = t.user.id || t.user.email || t.user.username)), e.timestamp = t.timestamp || A(), t.abnormal_mechanism && (e.abnormal_mechanism = t.abnormal_mechanism), t.ignoreDuration && (e.ignoreDuration = t.ignoreDuration), t.sid && (e.sid = t.sid.length === 32 ? t.sid : T()), t.init !== void 0 && (e.init = t.init), !e.did && t.did && (e.did = `${t.did}`), typeof t.started == "number" && (e.started = t.started), e.ignoreDuration) e.duration = void 0;
132
- else if (typeof t.duration == "number") e.duration = t.duration;
133
- else {
134
- let t = e.timestamp - e.started;
135
- e.duration = t >= 0 ? t : 0;
136
- }
137
- t.release && (e.release = t.release), t.environment && (e.environment = t.environment), !e.ipAddress && t.ipAddress && (e.ipAddress = t.ipAddress), !e.userAgent && t.userAgent && (e.userAgent = t.userAgent), typeof t.errors == "number" && (e.errors = t.errors), t.status && (e.status = t.status);
138
- }
139
- //#endregion
140
- //#region node_modules/@sentry/core/build/esm/utils/merge.js
141
- function M(e, t, n = 2) {
142
- if (!t || typeof t != "object" || n <= 0) return t;
143
- if (e && Object.keys(t).length === 0) return e;
144
- let r = { ...e };
145
- for (let e in t) Object.prototype.hasOwnProperty.call(t, e) && (r[e] = M(r[e], t[e], n - 1));
146
- return r;
147
- }
148
- //#endregion
149
- //#region node_modules/@sentry/core/build/esm/utils/propagationContext.js
150
- function N() {
151
- return T();
152
- }
153
- //#endregion
154
- //#region node_modules/@sentry/core/build/esm/utils/spanOnScope.js
155
- var P = "_sentrySpan";
156
- function F(e, t) {
157
- t ? C(e, P, t) : delete e[P];
158
- }
159
- function I(e) {
160
- return e[P];
161
- }
162
- //#endregion
163
- //#region node_modules/@sentry/core/build/esm/scope.js
164
- var L = 100, R = class t {
165
- constructor() {
166
- this._notifyingListeners = !1, this._scopeListeners = [], this._eventProcessors = [], this._breadcrumbs = [], this._attachments = [], this._user = {}, this._tags = {}, this._extra = {}, this._contexts = {}, this._sdkProcessingMetadata = {}, this._propagationContext = {
167
- traceId: N(),
168
- sampleRand: Math.random()
169
- };
170
- }
171
- clone() {
172
- let e = new t();
173
- return e._breadcrumbs = [...this._breadcrumbs], e._tags = { ...this._tags }, e._extra = { ...this._extra }, e._contexts = { ...this._contexts }, this._contexts.flags && (e._contexts.flags = { values: [...this._contexts.flags.values] }), e._user = this._user, e._level = this._level, e._session = this._session, e._transactionName = this._transactionName, e._fingerprint = this._fingerprint, e._eventProcessors = [...this._eventProcessors], e._attachments = [...this._attachments], e._sdkProcessingMetadata = { ...this._sdkProcessingMetadata }, e._propagationContext = { ...this._propagationContext }, e._client = this._client, e._lastEventId = this._lastEventId, F(e, I(this)), e;
174
- }
175
- setClient(e) {
176
- this._client = e;
177
- }
178
- setLastEventId(e) {
179
- this._lastEventId = e;
180
- }
181
- getClient() {
182
- return this._client;
183
- }
184
- lastEventId() {
185
- return this._lastEventId;
186
- }
187
- addScopeListener(e) {
188
- this._scopeListeners.push(e);
189
- }
190
- addEventProcessor(e) {
191
- return this._eventProcessors.push(e), this;
192
- }
193
- setUser(e) {
194
- return this._user = e || {
195
- email: void 0,
196
- id: void 0,
197
- ip_address: void 0,
198
- username: void 0
199
- }, this._session && j(this._session, { user: e }), this._notifyScopeListeners(), this;
200
- }
201
- getUser() {
202
- return this._user;
203
- }
204
- setTags(e) {
205
- return this._tags = {
206
- ...this._tags,
207
- ...e
208
- }, this._notifyScopeListeners(), this;
209
- }
210
- setTag(e, t) {
211
- return this._tags = {
212
- ...this._tags,
213
- [e]: t
214
- }, this._notifyScopeListeners(), this;
215
- }
216
- setExtras(e) {
217
- return this._extra = {
218
- ...this._extra,
219
- ...e
220
- }, this._notifyScopeListeners(), this;
221
- }
222
- setExtra(e, t) {
223
- return this._extra = {
224
- ...this._extra,
225
- [e]: t
226
- }, this._notifyScopeListeners(), this;
227
- }
228
- setFingerprint(e) {
229
- return this._fingerprint = e, this._notifyScopeListeners(), this;
230
- }
231
- setLevel(e) {
232
- return this._level = e, this._notifyScopeListeners(), this;
233
- }
234
- setTransactionName(e) {
235
- return this._transactionName = e, this._notifyScopeListeners(), this;
236
- }
237
- setContext(e, t) {
238
- return t === null ? delete this._contexts[e] : this._contexts[e] = t, this._notifyScopeListeners(), this;
239
- }
240
- setSession(e) {
241
- return e ? this._session = e : delete this._session, this._notifyScopeListeners(), this;
242
- }
243
- getSession() {
244
- return this._session;
245
- }
246
- update(e) {
247
- if (!e) return this;
248
- let n = typeof e == "function" ? e(this) : e, { tags: r, extra: i, user: a, contexts: o, level: s, fingerprint: c = [], propagationContext: l } = (n instanceof t ? n.getScopeData() : b(n) ? e : void 0) || {};
249
- return this._tags = {
250
- ...this._tags,
251
- ...r
252
- }, this._extra = {
253
- ...this._extra,
254
- ...i
255
- }, this._contexts = {
256
- ...this._contexts,
257
- ...o
258
- }, a && Object.keys(a).length && (this._user = a), s && (this._level = s), c.length && (this._fingerprint = c), l && (this._propagationContext = l), this;
259
- }
260
- clear() {
261
- return this._breadcrumbs = [], this._tags = {}, this._extra = {}, this._user = {}, this._contexts = {}, this._level = void 0, this._transactionName = void 0, this._fingerprint = void 0, this._session = void 0, F(this, void 0), this._attachments = [], this.setPropagationContext({
262
- traceId: N(),
263
- sampleRand: Math.random()
264
- }), this._notifyScopeListeners(), this;
265
- }
266
- addBreadcrumb(e, t) {
267
- let n = typeof t == "number" ? t : L;
268
- if (n <= 0) return this;
269
- let r = {
270
- timestamp: D(),
271
- ...e,
272
- message: e.message ? S(e.message, 2048) : e.message
273
- };
274
- return this._breadcrumbs.push(r), this._breadcrumbs.length > n && (this._breadcrumbs = this._breadcrumbs.slice(-n), this._client?.recordDroppedEvent("buffer_overflow", "log_item")), this._notifyScopeListeners(), this;
275
- }
276
- getLastBreadcrumb() {
277
- return this._breadcrumbs[this._breadcrumbs.length - 1];
278
- }
279
- clearBreadcrumbs() {
280
- return this._breadcrumbs = [], this._notifyScopeListeners(), this;
281
- }
282
- addAttachment(e) {
283
- return this._attachments.push(e), this;
284
- }
285
- clearAttachments() {
286
- return this._attachments = [], this;
287
- }
288
- getScopeData() {
289
- return {
290
- breadcrumbs: this._breadcrumbs,
291
- attachments: this._attachments,
292
- contexts: this._contexts,
293
- tags: this._tags,
294
- extra: this._extra,
295
- user: this._user,
296
- level: this._level,
297
- fingerprint: this._fingerprint || [],
298
- eventProcessors: this._eventProcessors,
299
- propagationContext: this._propagationContext,
300
- sdkProcessingMetadata: this._sdkProcessingMetadata,
301
- transactionName: this._transactionName,
302
- span: I(this)
303
- };
304
- }
305
- setSDKProcessingMetadata(e) {
306
- return this._sdkProcessingMetadata = M(this._sdkProcessingMetadata, e, 2), this;
307
- }
308
- setPropagationContext(e) {
309
- return this._propagationContext = e, this;
310
- }
311
- getPropagationContext() {
312
- return this._propagationContext;
313
- }
314
- captureException(t, n) {
315
- let r = n?.event_id || T();
316
- if (!this._client) return e && _.warn("No client configured on scope - will not capture exception!"), r;
317
- let i = /* @__PURE__ */ Error("Sentry syntheticException");
318
- return this._client.captureException(t, {
319
- originalException: t,
320
- syntheticException: i,
321
- ...n,
322
- event_id: r
323
- }, this), r;
324
- }
325
- captureMessage(t, n, r) {
326
- let i = r?.event_id || T();
327
- if (!this._client) return e && _.warn("No client configured on scope - will not capture message!"), i;
328
- let a = Error(t);
329
- return this._client.captureMessage(t, n, {
330
- originalException: t,
331
- syntheticException: a,
332
- ...r,
333
- event_id: i
334
- }, this), i;
335
- }
336
- captureEvent(t, n) {
337
- let r = n?.event_id || T();
338
- return this._client ? (this._client.captureEvent(t, {
339
- ...n,
340
- event_id: r
341
- }, this), r) : (e && _.warn("No client configured on scope - will not capture event!"), r);
342
- }
343
- _notifyScopeListeners() {
344
- this._notifyingListeners ||= (this._notifyingListeners = !0, this._scopeListeners.forEach((e) => {
345
- e(this);
346
- }), !1);
347
- }
348
- };
349
- //#endregion
350
- //#region node_modules/@sentry/core/build/esm/defaultScopes.js
351
- function z() {
352
- return a("defaultCurrentScope", () => new R());
353
- }
354
- function B() {
355
- return a("defaultIsolationScope", () => new R());
356
- }
357
- //#endregion
358
- //#region node_modules/@sentry/core/build/esm/asyncContext/stackStrategy.js
359
- var V = class {
360
- constructor(e, t) {
361
- let n;
362
- n = e || new R();
363
- let r;
364
- r = t || new R(), this._stack = [{ scope: n }], this._isolationScope = r;
365
- }
366
- withScope(e) {
367
- let t = this._pushScope(), n;
368
- try {
369
- n = e(t);
370
- } catch (e) {
371
- throw this._popScope(), e;
372
- }
373
- return x(n) ? n.then((e) => (this._popScope(), e), (e) => {
374
- throw this._popScope(), e;
375
- }) : (this._popScope(), n);
376
- }
377
- getClient() {
378
- return this.getStackTop().client;
379
- }
380
- getScope() {
381
- return this.getStackTop().scope;
382
- }
383
- getIsolationScope() {
384
- return this._isolationScope;
385
- }
386
- getStackTop() {
387
- return this._stack[this._stack.length - 1];
388
- }
389
- _pushScope() {
390
- let e = this.getScope().clone();
391
- return this._stack.push({
392
- client: this.getClient(),
393
- scope: e
394
- }), e;
395
- }
396
- _popScope() {
397
- return this._stack.length <= 1 ? !1 : !!this._stack.pop();
398
- }
399
- };
400
- function H() {
401
- let e = i(r());
402
- return e.stack = e.stack || new V(z(), B());
403
- }
404
- function U(e) {
405
- return H().withScope(e);
406
- }
407
- function W(e, t) {
408
- let n = H();
409
- return n.withScope(() => (n.getStackTop().scope = e, t(e)));
410
- }
411
- function G(e) {
412
- return H().withScope(() => e(H().getIsolationScope()));
413
- }
414
- function K() {
415
- return {
416
- withIsolationScope: G,
417
- withScope: U,
418
- withSetScope: W,
419
- withSetIsolationScope: (e, t) => G(t),
420
- getCurrentScope: () => H().getScope(),
421
- getIsolationScope: () => H().getIsolationScope()
422
- };
423
- }
424
- //#endregion
425
- //#region node_modules/@sentry/core/build/esm/asyncContext/index.js
426
- function q(e) {
427
- let t = i(e);
428
- return t.acs ? t.acs : K();
429
- }
430
- //#endregion
431
- //#region node_modules/@sentry/core/build/esm/currentScopes.js
432
- function J() {
433
- return q(r()).getCurrentScope();
434
- }
435
- //#endregion
436
- //#region node_modules/@sentry/core/build/esm/utils/prepareEvent.js
437
- function Y(e) {
438
- if (e) return X(e) || Q(e) ? { captureContext: e } : e;
439
- }
440
- function X(e) {
441
- return e instanceof R || typeof e == "function";
442
- }
443
- var Z = [
444
- "user",
445
- "level",
446
- "extra",
447
- "contexts",
448
- "tags",
449
- "fingerprint",
450
- "propagationContext"
451
- ];
452
- function Q(e) {
453
- return Object.keys(e).some((e) => Z.includes(e));
454
- }
455
- //#endregion
456
- //#region node_modules/@sentry/core/build/esm/exports.js
457
- function $(e, t) {
458
- return J().captureException(e, Y(t));
459
- }
460
- //#endregion
461
- export { $ as t };
@@ -1,3 +0,0 @@
1
- import "./a513adfd.js";
2
- import { Ht as e, Ut as t } from "./fdd890c7.js";
3
- export { e as conf, t as language };