@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.
- package/README.md +1 -1
- package/cli/dist/lib/cli/project.js +2 -16
- package/cli/dist/lib/config.js +20 -29
- package/cli/dist/lib/local-test.js +3 -19
- package/cli/dist/lib/paths.js +11 -0
- package/cli/dist/lib/resolveNpmSpawn.d.ts +20 -0
- package/cli/dist/lib/resolveNpmSpawn.js +71 -0
- package/cli/dist/lib/template-engine/context/pluginPackageJsonData.js +21 -19
- package/cli/dist/lib/template-engine/context/standVitePackageJsonData.js +7 -8
- package/cli/dist/lib/template-engine/resolveVariantDir.d.ts +5 -1
- package/cli/dist/lib/template-engine/resolveVariantDir.js +22 -0
- package/cli/dist/lib/templates/shared/i18n.js +2 -2
- package/cli/dist/lib/templates/shared/paths.js +3 -4
- package/cli/dist/lib/types/package-config.d.ts +1 -0
- package/cli/lib/cli/project.ts +2 -18
- package/cli/lib/config.ts +19 -30
- package/cli/lib/local-test.ts +3 -22
- package/cli/lib/paths.ts +15 -0
- package/cli/lib/resolveNpmSpawn.ts +72 -0
- package/cli/lib/template-engine/buildStandIndexHtml.test.ts +1 -0
- package/cli/lib/template-engine/context/pluginPackageJsonData.ts +23 -23
- package/cli/lib/template-engine/context/standVitePackageJsonData.ts +7 -12
- package/cli/lib/template-engine/pluginEtaParity.test.ts +1 -0
- package/cli/lib/template-engine/resolveVariantDir.ts +22 -0
- package/cli/lib/template-engine/standAdvancedViteDevHostEta.test.ts +4 -3
- package/cli/lib/template-engine/standWebpackDevHostEta.test.ts +7 -6
- package/cli/lib/templates/shared/i18n.ts +2 -2
- package/cli/lib/templates/shared/paths.ts +3 -4
- package/cli/lib/types/package-config.ts +1 -0
- package/cli/package.json +1 -1
- package/cli/project-templates/plugin/assets/vite/{plugin-build.config.mjs → plugin-build.config.ts} +7 -5
- package/cli/project-templates/plugin/assets/vite/{sandbox-build.config.mjs → sandbox-build.config.ts} +7 -5
- package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.module.cjs → plugin-build.legacy.module.ts} +20 -7
- package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.umd.cjs → plugin-build.legacy.umd.ts} +20 -7
- package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.module.cjs → plugin-build.modern.module.ts} +9 -4
- package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.umd.cjs → plugin-build.modern.umd.ts} +9 -4
- package/cli/project-templates/plugin/assets/webpack/{sandbox-build.config.cjs → sandbox-build.config.ts} +13 -3
- package/cli/project-templates/plugin/bundler-vite/release.html.eta +1 -0
- package/cli/project-templates/plugin/bundler-webpack/public/release.html.eta +1 -0
- package/cli/project-templates/plugin/shared-base/public/demo/product-1.svg +10 -0
- package/cli/project-templates/plugin/shared-base/public/demo/product-2.svg +10 -0
- package/cli/project-templates/plugin/shared-base/scripts/build-runner.ts +22 -0
- package/cli/project-templates/plugin/shared-base/scripts/build-types.ts +17 -0
- package/cli/project-templates/plugin/shared-base/scripts/clean.ts +16 -0
- package/cli/project-templates/plugin/shared-base/scripts/dev-runner.ts +52 -0
- package/cli/project-templates/plugin/shared-base/scripts/npmRun.ts +61 -0
- package/cli/project-templates/plugin/shared-base/scripts/release-runner.ts +18 -0
- package/cli/project-templates/plugin/shared-base/scripts/scriptRuntime.ts +10 -0
- package/cli/project-templates/plugin/shared-base/src/dev/hostApp.tsx.eta +1 -0
- package/cli/project-templates/plugin/shared-base/src/dev-release.tsx.eta +1 -0
- package/cli/project-templates/plugin/shared-base/src/dev.tsx.eta +1 -1
- package/cli/project-templates/shared/partials/plugin-dev-host-app-advanced.eta +93 -0
- package/cli/project-templates/shared/partials/plugin-dev-host-app-minimal.eta +54 -0
- package/cli/project-templates/shared/partials/plugin-dev-tsx-advanced.eta +3 -2
- package/cli/project-templates/shared/partials/plugin-dev-tsx-debug.eta +18 -0
- package/cli/project-templates/shared/partials/plugin-dev-tsx-release.eta +33 -0
- package/cli/project-templates/shared/partials/plugin-dev-tsx-runtime-helpers.eta +8 -8
- package/cli/project-templates/shared/partials/plugin-index-ts.eta +0 -1
- package/cli/project-templates/shared/partials/plugin-vite-dev-host.eta +9 -5
- package/cli/project-templates/shared/partials/plugin-vite-plugin-build.eta +7 -5
- package/cli/project-templates/shared/partials/plugin-vite-release-html.eta +12 -0
- package/cli/project-templates/shared/partials/plugin-vite-sandbox-build.eta +7 -5
- package/cli/project-templates/shared/partials/plugin-webpack-dev-host-legacy.eta +12 -5
- package/cli/project-templates/shared/partials/plugin-webpack-dev-host-modern.eta +13 -6
- package/cli/project-templates/shared/partials/plugin-webpack-release-html.eta +12 -0
- package/cli/project-templates/shared/partials/plugin-webpack-sandbox-build.eta +13 -3
- package/cli/project-templates/shared/partials/plugin-wp-legacy-module.eta +28 -10
- package/cli/project-templates/shared/partials/plugin-wp-legacy-umd.eta +28 -10
- package/cli/project-templates/shared/partials/plugin-wp-modern-module.eta +9 -4
- package/cli/project-templates/shared/partials/plugin-wp-modern-umd.eta +9 -4
- package/cli/project-templates/shared/partials/stand-dev-host-vite-memory.eta +3 -3
- package/cli/project-templates/shared/partials/stand-dev-host-vite-subpath.eta +8 -4
- package/cli/project-templates/shared/partials/stand-dev-host-vite-umd.eta +5 -5
- package/cli/project-templates/shared/partials/stand-dev-host-vite.eta +3 -3
- package/cli/project-templates/shared/partials/stand-dev-host-webpack-subpath.eta +8 -4
- package/cli/project-templates/shared/partials/stand-dev-host-webpack-umd.eta +9 -3
- package/cli/project-templates/shared/partials/stand-dev-host-webpack.eta +8 -4
- package/cli/project-templates/shared/partials/stand-dev-storage-middleware.eta +370 -0
- package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.ts +80 -0
- package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.ts.eta +1 -0
- package/cli/project-templates/shared/stand-webpack-base/config/lib/{createWebpackStandConfig.cjs → createWebpackStandConfig.ts} +31 -19
- package/cli/project-templates/{stand/advanced/umd/vite/config/lib/umdServeMiddleware.mjs → shared/stand-webpack-base/config/lib/umdServeMiddleware.ts} +19 -11
- package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.ts.eta +1 -0
- package/cli/project-templates/stand/advanced/memory-usage/vite/config/lib/{createMemoryUsageStandConfig.mjs → createMemoryUsageStandConfig.ts} +25 -20
- package/cli/project-templates/stand/advanced/umd/vite/config/lib/umdServeMiddleware.ts +68 -0
- package/cli/project-templates/stand/react-adapter/webpack/README.md.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/config/dev-host.ts.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/package.json.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/public/index.html.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/src/dev/editorConfig.ts.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/src/dev/email.html.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/src/dev/getAuthToken.ts.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/src/dev/oauthCredentials.ts +9 -0
- package/cli/project-templates/stand/react-adapter/webpack/src/dev/storageProvider.ts.eta +1 -0
- package/cli/project-templates/stand/react-adapter/webpack/src/index.tsx.eta +1 -0
- package/cli/scripts/cli-matrix-smoke.ts +19 -10
- package/cli/scripts/verify-global-cli.ts +1 -1
- package/cli/scripts/vite-plugin-version-matrix.ts +299 -0
- package/cli/tsconfig.json +2 -2
- package/emailmaker-core.aa9efbce.js +1 -0
- package/emailmaker-esm.js +788 -153
- package/emailmaker.d.ts +32 -0
- package/emailmaker.js +4 -4
- package/iframe/js/amp.BGJMqoms.js +1 -1
- package/iframe/js/chunk.oX6nCJbK.js +1 -1
- package/iframe/js/iframe-eblock.js +1 -1
- package/iframe/js/iframe.js +1 -1
- package/iframe/js/rules.BSaCN7eK.js +1 -1
- package/iframe/js/sanitize-html.Dy7Uwo8P.js +1 -1
- package/images/integrations/activecampaign.svg +4 -0
- package/images/integrations/bento.svg +9 -0
- package/images/integrations/brevo.svg +7 -0
- package/images/integrations/campaign_monitor.svg +10 -0
- package/images/integrations/constant_contact.svg +24 -0
- package/images/integrations/dotdigital.svg +144 -0
- package/images/integrations/getresponse.svg +23 -0
- package/images/integrations/hubspot.svg +3 -0
- package/images/integrations/klaviyo.svg +10 -0
- package/images/integrations/mailchimp.svg +9 -0
- package/images/integrations/salesforce.svg +20 -0
- package/js/browser-image-compression.js +9 -0
- package/package.json +2 -5
- package/runtime/@ant-design/cssinjs/index.js +1 -1
- package/runtime/@ant-design/icons/index.js +1 -1
- package/runtime/@ant-design/pro-layout/index.js +1 -1
- package/runtime/README.md +13 -13
- package/runtime/antd/index.js +1 -1
- package/runtime/app-core/index.js +1 -2
- package/runtime/classnames/index.js +1 -1
- package/runtime/core/index.js +6 -6
- package/runtime/dayjs/index.js +1 -1
- package/runtime/di/index.js +1 -2
- package/runtime/disposable/index.js +1 -2
- package/runtime/errors-runtime/index.js +1 -2
- package/runtime/guid/index.js +1 -2
- package/runtime/index.js +2 -4
- package/runtime/package.json +2 -3
- package/runtime/prop-types/index.js +1 -1
- package/runtime/react/index.js +1 -1
- package/runtime/react/jsx-dev-runtime/index.js +1 -1
- package/runtime/react/jsx-runtime/index.js +1 -1
- package/runtime/react-dom/client/index.js +1 -1
- package/runtime/react-dom/index.js +1 -1
- package/runtime/react-router-dom/index.js +1 -1
- package/runtime/uuid/index.js +1 -1
- package/static/amd/{8fc2a596.js → 19aeb269.js} +88 -88
- package/static/core/192ec827.js +1 -0
- package/static/core/22c1de2e2.js +1 -0
- package/static/core/24faedf0.js +1 -0
- package/static/core/29231645.js +1 -0
- package/static/core/2a3177fc2.js +1 -0
- package/static/core/346aabd2.js +3 -0
- package/static/core/3b800ed6.js +1 -0
- package/static/core/3e840e90.js +1 -0
- package/static/core/40cc9fd7.js +1 -0
- package/static/core/421bdec22.js +1 -0
- package/static/core/4aaa358b2.js +903 -0
- package/static/core/50ff48bc.js +4 -0
- package/static/core/5282795d2.js +6 -0
- package/static/core/563a283d.js +1 -0
- package/static/core/5d47e095.js +47 -0
- package/static/core/5f574386.js +1 -0
- package/static/core/67a41193.js +1 -0
- package/static/core/698dace4.js +7 -0
- package/static/core/6b648e2d.js +1 -0
- package/static/core/7629adfd.js +1 -0
- package/static/core/7717f2932.js +3 -0
- package/static/core/776cb34a.js +1 -0
- package/static/core/78a1e31e.js +1 -0
- package/static/core/7d56d643.js +1 -0
- package/static/core/841752212.js +40 -0
- package/static/core/8477e97e.js +1 -0
- package/static/core/8756d562.js +1 -0
- package/static/core/91d328d8.js +1 -0
- package/static/core/9270dbb6.js +6 -0
- package/static/core/96371334.js +566 -0
- package/static/core/9b9ddaef2.js +168 -0
- package/static/core/af1da4b4.js +1 -0
- package/static/core/b5096b152.js +471 -0
- package/static/core/bde6775a.js +1 -0
- package/static/core/bf1b888c.js +4 -0
- package/static/core/cec8d739.js +11 -0
- package/static/core/cf45bf332.js +598 -0
- package/static/core/cfac3d32.js +1 -0
- package/static/core/d21c95cf2.js +1 -0
- package/static/core/dbd9ca52.js +1 -0
- package/static/core/dc590181.js +1 -0
- package/static/core/e0039d55.js +1 -0
- package/static/core/e4071c1a.js +4 -0
- package/static/core/ef87b75c.js +41 -0
- package/static/core/f47701f32.js +20 -0
- package/static/core/f83d7ac42.js +3 -0
- package/static/core/fcc67e6b.js +1 -0
- package/static/core/fd40d85c.js +1 -0
- package/static/core/fe638847.js +1 -0
- package/static/esm/{e8401d17.js → 203c9644.js} +3 -3
- package/static/esm/4b679053.js +27 -0
- package/static/esm/{b273a6c2.js → f31a26c6.js} +1 -1
- package/static/runtime/disposable-CD74igiJ.js +1 -0
- package/static/runtime/guid-C0wuVR8v.js +1 -0
- package/vite/index.d.ts +17 -6
- package/vite/index.js +315 -270
- package/vite/pluginDev/index.d.ts +10 -19
- package/vite/pluginDev/index.js +251 -204
- package/webpack/index.d.ts +24 -5
- package/webpack/index.js +168 -144
- package/webpack/pluginDev/index.d.ts +21 -22
- package/webpack/pluginDev/index.js +242 -177
- package/cli/dist/lib/template-engine/buildStandIndexHtml.test.d.ts +0 -2
- package/cli/dist/lib/template-engine/buildStandIndexHtml.test.js +0 -89
- package/cli/dist/lib/template-engine/emitEtaTree.test.d.ts +0 -2
- package/cli/dist/lib/template-engine/emitEtaTree.test.js +0 -34
- package/cli/dist/lib/template-engine/pluginEtaParity.test.d.ts +0 -2
- package/cli/dist/lib/template-engine/pluginEtaParity.test.js +0 -105
- package/cli/dist/lib/template-engine/resolveVariantDir.test.d.ts +0 -2
- package/cli/dist/lib/template-engine/resolveVariantDir.test.js +0 -52
- package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.d.ts +0 -2
- package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.js +0 -67
- package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.d.ts +0 -2
- package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.js +0 -83
- package/cli/dist/lib/template-engine/storageProviderEta.test.d.ts +0 -2
- package/cli/dist/lib/template-engine/storageProviderEta.test.js +0 -26
- package/cli/project-templates/plugin/shared-base/scripts/build-types.cjs +0 -8
- package/cli/project-templates/plugin/shared-base/scripts/clean.cjs +0 -6
- package/cli/project-templates/plugin/shared-base/scripts/dev-runner.cjs +0 -48
- package/cli/project-templates/plugin/shared-base/scripts/release-runner.cjs +0 -63
- package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.mjs +0 -80
- package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.cjs +0 -235
- package/cli/project-templates/shared/stand-webpack-base/config/lib/umdServeMiddleware.cjs +0 -38
- package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.cjs +0 -235
- package/emailmaker-core.80d62b88.js +0 -569
- package/runtime/_core/app-core/index.js +0 -1
- package/runtime/_core/chunks/app-core-DphKKh8f.js +0 -1
- package/runtime/_core/chunks/chunk-oqAt0Dze.js +0 -1
- package/runtime/_core/chunks/di-BHUzE57z.js +0 -1
- package/runtime/_core/chunks/disposable-PhM3rJkj.js +0 -1
- package/runtime/_core/chunks/errors-runtime-VjCOXaQX.js +0 -1
- package/runtime/_core/chunks/guid-D2-FTZQG.js +0 -1
- package/runtime/_core/di/index.js +0 -1
- package/runtime/_core/disposable/index.js +0 -1
- package/runtime/_core/errors-runtime/index.js +0 -1
- package/runtime/_core/guid/index.js +0 -1
- package/runtime/_core/index.js +0 -1
- package/shared/hostBootstrap.js +0 -47
- package/shared/pluginDevOptions.js +0 -31
- package/shared/runtimeManifest.js +0 -72
- package/shared/stringCase.js +0 -16
- package/static/core/2360f32a.js +0 -3
- package/static/core/2687db56.js +0 -3
- package/static/core/2b250af6.js +0 -1261
- package/static/core/3469930c.js +0 -302
- package/static/core/34ce9042.js +0 -201
- package/static/core/4091ba5b.js +0 -25
- package/static/core/41ce3a6a.js +0 -173
- package/static/core/4ac4908c.js +0 -2213
- package/static/core/519096c1.js +0 -2597
- package/static/core/5fa1772b.js +0 -116550
- package/static/core/61312909.js +0 -3
- package/static/core/62a98c07.js +0 -75301
- package/static/core/6309c0f2.js +0 -3
- package/static/core/68d9f440.js +0 -3
- package/static/core/73b645ab.js +0 -2
- package/static/core/81019351.js +0 -280
- package/static/core/835b37ef.js +0 -591
- package/static/core/91242fb3.js +0 -3
- package/static/core/972b15b0.js +0 -92399
- package/static/core/974ef468.js +0 -493
- package/static/core/a17614422.js +0 -38078
- package/static/core/a2fa7b5b.js +0 -4232
- package/static/core/a513adfd.js +0 -89857
- package/static/core/a7c73a9b.js +0 -3813
- package/static/core/b64c7c90.js +0 -228
- package/static/core/cdc9ba92.js +0 -4711
- package/static/core/d1db685d.js +0 -2193
- package/static/core/d661febc.js +0 -3
- package/static/core/d6d2d2d0.js +0 -23
- package/static/core/df1a1225.js +0 -607
- package/static/core/e5bff179.js +0 -1302
- package/static/core/e5d602f5.js +0 -2
- package/static/core/eb029366.js +0 -1532
- package/static/core/f46c035a.js +0 -2
- package/static/core/f8b9d89a.js +0 -461
- package/static/core/fd897ad7.js +0 -3
- package/static/core/fdd890c7.js +0 -6168
- package/static/esm/29eb18ff.js +0 -164
- package/vite/mime-types.js +0 -179
- package/vite/utils.js +0 -44
- /package/cli/project-templates/plugin/bundler-vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/plugin/bundler-vite/config/{plugin-build.mjs.eta → plugin-build.ts.eta} +0 -0
- /package/cli/project-templates/plugin/bundler-vite/config/{sandbox-build.mjs.eta → sandbox-build.ts.eta} +0 -0
- /package/cli/project-templates/plugin/bundler-webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/plugin/bundler-webpack/config/{plugin-build.cjs.eta → plugin-build.ts.eta} +0 -0
- /package/cli/project-templates/plugin/bundler-webpack/config/{sandbox-build.cjs.eta → sandbox-build.ts.eta} +0 -0
- /package/cli/project-templates/stand/advanced/memory-usage/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/advanced/shadow-dom/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/advanced/shadow-dom/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/advanced/subpath/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/advanced/subpath/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/advanced/umd/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/advanced/umd/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/closed-loop/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/closed-loop/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/oauth/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/oauth/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
- /package/cli/project-templates/stand/react-adapter/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
- /package/iframe/{iframe-eblock.80d62b88.html → iframe-eblock.aa9efbce.html} +0 -0
- /package/iframe/{iframe.80d62b88.html → iframe.aa9efbce.html} +0 -0
- /package/{runtime/chunks → static/runtime}/DownloadOutlined-a2ZUz7zB.js +0 -0
- /package/{runtime/chunks → static/runtime}/chunk-D-iEO58U.js +0 -0
- /package/{runtime/chunks → static/runtime}/classnames-DBEldvch.js +0 -0
- /package/{runtime/chunks → static/runtime}/client-5XqXGmAI.js +0 -0
- /package/{runtime/chunks → static/runtime}/dayjs.min-CO3mzOeV.js +0 -0
- /package/{runtime/_core/chunks/defineProperty-BGJFuFMq.js → static/runtime/defineProperty-CGNmw-jw.js} +0 -0
- /package/{runtime/chunks → static/runtime}/dist-Cns8cA2n.js +0 -0
- /package/{runtime/chunks → static/runtime}/dist-Ct0xRt3Y.js +0 -0
- /package/{runtime/chunks → static/runtime}/es-0FFT3fCz.js +0 -0
- /package/{runtime/chunks → static/runtime}/es-BwJ3eGbx.js +0 -0
- /package/{runtime/chunks → static/runtime}/es-D8EsVtRL.js +0 -0
- /package/{runtime/chunks → static/runtime}/es-Da4O25Kw.js +0 -0
- /package/{runtime/chunks → static/runtime}/jsx-dev-runtime-V4_MuHNS.js +0 -0
- /package/{runtime/chunks → static/runtime}/jsx-runtime-DBeCoE0b.js +0 -0
- /package/{runtime/chunks → static/runtime}/objectWithoutProperties-Bk0EDksJ.js +0 -0
- /package/{runtime/chunks → static/runtime}/prop-types-DxD5wgQ0.js +0 -0
- /package/{runtime/chunks → static/runtime}/react-TEeeBWTl.js +0 -0
- /package/{runtime/chunks → static/runtime}/react-dom-BKKa1g6U.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__emailmaker__.define(`static/core/6b648e2d.js`,[`require`,`exports`,`module`,`static/core/91d328d8.js`],function(e,t,n){e(`./91d328d8.js`);var r={items_per_page:`/ page`,jump_to:`Aller à`,jump_to_confirm:`confirmer`,page:`Page`,prev_page:`Page précédente`,next_page:`Page suivante`,prev_5:`5 Pages précédentes`,next_5:`5 Pages suivantes`,prev_3:`3 Pages précédentes`,next_3:`3 Pages suivantes`,page_size:`taille de la page`},i={locale:`fr_FR`,today:`Aujourd'hui`,now:`Maintenant`,backToToday:`Aujourd'hui`,ok:`OK`,clear:`Rétablir`,month:`Mois`,year:`Année`,timeSelect:`Sélectionner l'heure`,dateSelect:`Sélectionner la date`,monthSelect:`Choisissez un mois`,yearSelect:`Choisissez une année`,decadeSelect:`Choisissez une décennie`,yearFormat:`YYYY`,dateFormat:`DD/MM/YYYY`,dayFormat:`DD`,dateTimeFormat:`DD/MM/YYYY HH:mm:ss`,monthBeforeYear:!0,previousMonth:`Mois précédent (PageUp)`,nextMonth:`Mois suivant (PageDown)`,previousYear:`Année précédente (Ctrl + gauche)`,nextYear:`Année prochaine (Ctrl + droite)`,previousDecade:`Décennie précédente`,nextDecade:`Décennie suivante`,previousCentury:`Siècle précédent`,nextCentury:`Siècle suivant`},a={placeholder:`Sélectionner l'heure`,rangePlaceholder:[`Heure de début`,`Heure de fin`]},o={lang:Object.assign({placeholder:`Sélectionner une date`,yearPlaceholder:`Sélectionner une année`,quarterPlaceholder:`Sélectionner un trimestre`,monthPlaceholder:`Sélectionner un mois`,weekPlaceholder:`Sélectionner une semaine`,rangePlaceholder:[`Date de début`,`Date de fin`],rangeYearPlaceholder:[`Année de début`,`Année de fin`],rangeMonthPlaceholder:[`Mois de début`,`Mois de fin`],rangeWeekPlaceholder:[`Semaine de début`,`Semaine de fin`]},i),timePickerLocale:Object.assign({},a)},s=o,c="La valeur du champ ${label} n'est pas valide pour le type ${type}";t.default={locale:`fr`,Pagination:r,DatePicker:o,TimePicker:a,Calendar:s,Table:{filterTitle:`Filtrer`,filterConfirm:`OK`,filterReset:`Réinitialiser`,filterEmptyText:`Aucun filtre`,filterCheckall:`Tout sélectionner`,filterSearchPlaceholder:`Chercher dans les filtres`,emptyText:`Aucune donnée`,selectAll:`Sélectionner la page actuelle`,selectInvert:`Inverser la sélection de la page actuelle`,selectNone:`Désélectionner toutes les données`,selectionAll:`Sélectionner toutes les données`,sortTitle:`Trier`,expand:`Développer la ligne`,collapse:`Réduire la ligne`,triggerDesc:`Trier par ordre décroissant`,triggerAsc:`Trier par ordre croissant`,cancelSort:`Annuler le tri`},Modal:{okText:`OK`,cancelText:`Annuler`,justOkText:`OK`},Tour:{Next:`Étape suivante`,Previous:`Étape précédente`,Finish:`Fin de la visite guidée`},Popconfirm:{okText:`OK`,cancelText:`Annuler`},Transfer:{titles:[``,``],searchPlaceholder:`Rechercher`,itemUnit:`élément`,itemsUnit:`éléments`,remove:`Désélectionner`,selectCurrent:`Sélectionner la page actuelle`,removeCurrent:`Désélectionner la page actuelle`,selectAll:`Sélectionner toutes les données`,removeAll:`Désélectionner toutes les données`,selectInvert:`Inverser la sélection de la page actuelle`},Upload:{uploading:`Téléchargement...`,removeFile:`Effacer le fichier`,uploadError:`Erreur de téléchargement`,previewFile:`Fichier de prévisualisation`,downloadFile:`Télécharger un fichier`},Empty:{description:`Aucune donnée`},Icon:{icon:`icône`},Text:{edit:`Éditer`,copy:`Copier`,copied:`Copie effectuée`,expand:`Développer`},PageHeader:{back:`Retour`},Form:{optional:`(optionnel)`,defaultValidateMessages:{default:"Erreur de validation pour le champ ${label}",required:"Le champ ${label} est obligatoire",enum:"La valeur du champ ${label} doit être parmi [${enum}]",whitespace:"La valeur du champ ${label} ne peut pas être vide",date:{format:"La valeur du champ ${label} n'est pas au format date",parse:"La valeur du champ ${label} ne peut pas être convertie vers une date",invalid:"La valeur du champ ${label} n'est pas une date valide"},types:{string:c,method:c,array:c,object:c,number:c,date:c,boolean:c,integer:c,float:c,regexp:c,email:c,url:c,hex:c},string:{len:"La taille du champ ${label} doit être de ${len} caractères",min:"La taille du champ ${label} doit être au minimum de ${min} caractères",max:"La taille du champ ${label} doit être au maximum de ${max} caractères",range:"La taille du champ ${label} doit être entre ${min} et ${max} caractères"},number:{len:"La valeur du champ ${label} doit être égale à ${len}",min:"La valeur du champ ${label} doit être plus grande que ${min}",max:"La valeur du champ ${label} doit être plus petit que ${max}",range:"La valeur du champ ${label} doit être entre ${min} et ${max}"},array:{len:"La taille du tableau ${label} doit être de ${len}",min:"La taille du tableau ${label} doit être au minimum de ${min}",max:"La taille du tableau ${label} doit être au maximum de ${max}",range:"La taille du tableau ${label} doit être entre ${min}-${max}"},pattern:{mismatch:"La valeur du champ ${label} ne correspond pas au modèle ${pattern}"}}},Image:{preview:`Aperçu`}}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__emailmaker__.define(`static/core/7629adfd.js`,[`require`,`exports`,`module`,`static/core/91d328d8.js`],function(e,t,n){e(`./91d328d8.js`);var r={items_per_page:`/ сторінці`,jump_to:`Перейти`,jump_to_confirm:`підтвердити`,page:``,prev_page:`Попередня сторінка`,next_page:`Наступна сторінка`,prev_5:`Попередні 5 сторінок`,next_5:`Наступні 5 сторінок`,prev_3:`Попередні 3 сторінки`,next_3:`Наступні 3 сторінки`,page_size:`Page Size`},i={locale:`uk_UA`,today:`Сьогодні`,now:`Зараз`,backToToday:`Поточна дата`,ok:`OK`,clear:`Очистити`,month:`Місяць`,year:`Рік`,timeSelect:`Обрати час`,dateSelect:`Обрати дату`,monthSelect:`Обрати місяць`,yearSelect:`Обрати рік`,decadeSelect:`Обрати десятиріччя`,yearFormat:`YYYY`,dateFormat:`D-M-YYYY`,dayFormat:`D`,dateTimeFormat:`D-M-YYYY HH:mm:ss`,monthBeforeYear:!0,previousMonth:`Попередній місяць (PageUp)`,nextMonth:`Наступний місяць (PageDown)`,previousYear:`Попередній рік (Control + left)`,nextYear:`Наступний рік (Control + right)`,previousDecade:`Попереднє десятиріччя`,nextDecade:`Наступне десятиріччя`,previousCentury:`Попереднє століття`,nextCentury:`Наступне століття`},a={placeholder:`Оберіть час`},o={lang:Object.assign({placeholder:`Оберіть дату`,rangePlaceholder:[`Початкова дата`,`Кінцева дата`]},i),timePickerLocale:Object.assign({},a)},s=o,c="${label} не є типом ${type}";t.default={locale:`uk`,Pagination:r,DatePicker:o,TimePicker:a,Calendar:s,global:{placeholder:`Будь ласка, оберіть`},Table:{filterTitle:`Фільтрувати`,filterConfirm:`OK`,filterReset:`Скинути`,filterEmptyText:`Фільтри відсутні`,filterCheckall:`Обрати всі`,filterSearchPlaceholder:`Пошук у фільтрах`,emptyText:`Даних немає`,selectAll:`Обрати всі на сторінці`,selectInvert:`Інвертувати вибір`,selectNone:`Очистити вибір`,selectionAll:`Обрати всі`,sortTitle:`Сортувати`,expand:`Розгорнути рядок`,collapse:`Згорнути рядок`,triggerDesc:`Сортувати за спаданням`,triggerAsc:`Сортувати за зростанням`,cancelSort:`Відмінити сортування`},Tour:{Next:`Далі`,Previous:`Назад`,Finish:`Завершити`},Modal:{okText:`Гаразд`,cancelText:`Скасувати`,justOkText:`Гаразд`},Popconfirm:{okText:`Гаразд`,cancelText:`Скасувати`},Transfer:{titles:[``,``],searchPlaceholder:`Введіть текст для пошуку`,itemUnit:`елем.`,itemsUnit:`елем.`,remove:`Видалити`,selectCurrent:`Вибрати поточну сторінку`,removeCurrent:`Скасувати вибір на сторінці`,selectAll:`Вибрати всі дані`,removeAll:`Скасувати вибір`,selectInvert:`Інвертувати поточну сторінку`},Upload:{uploading:`Завантаження ...`,removeFile:`Видалити файл`,uploadError:`Помилка завантаження`,previewFile:`Попередній перегляд файлу`,downloadFile:`Завантажити файл`},Empty:{description:`Даних немає`},Icon:{icon:`іконка`},Text:{edit:`Редагувати`,copy:`Скопіювати`,copied:`Скопійовано`,expand:`Розширити`},PageHeader:{back:`Назад`},Form:{optional:`(опціонально)`,defaultValidateMessages:{default:"Помилка валідації для поля ${label}",required:"Будь ласка, заповніть ${label}",enum:"Лише одне зі значень [${enum}] доступне для ${label}",whitespace:"Значення у полі ${label} не може бути пробілом",date:{format:"Не валідний формат дати у ${label}",parse:"Значення ${label} не може бути приведене до дати",invalid:"Не валідна дата у ${label}"},types:{string:c,method:c,array:c,object:c,number:c,date:c,boolean:c,integer:c,float:c,regexp:c,email:c,url:c,hex:c},string:{len:"${label} має містити ${len} символів",min:"${label} має містити не менш, ніж ${min} символів",max:"${label} має містити не більш, ніж ${max} символів",range:"${label} має містити ${min}-${max} символів"},number:{len:"${label} має дорівнювати ${len}",min:"${label} має бути не менш, ніж ${min}",max:"${label} має бути не більш, ніж ${max}",range:"${label} має бути в межах ${min}-${max}"},array:{len:"${label} має містити ${len} елементи",min:"${label} має містити не менш, ніж ${min} елементи",max:"${label} має містити не більш, ніж ${max} елементи",range:"Кількість елементів в ${label} має бути в межах ${min}-${max}"},pattern:{mismatch:"${label} не відповідає шаблону ${pattern}"}}},Image:{preview:`Попередній перегляд`},QRCode:{expired:`QR-код закінчився`,refresh:`Оновити`}}});
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
(function(){try{if(typeof document<`u`){var e=document.createElement(`style`);e.setAttribute(`data-emailmaker`,`true`),e.appendChild(document.createTextNode(`.blocks-app .ant-modal.premium-features-modal .ant-modal-content{border-radius:calc(var(--borderRadiusXL) * 2px);padding:20px 19px}.blocks-app .premium-features-modal .modal-title{text-align:center;margin-bottom:0;font-size:32px}.blocks-app .premium-features-modal .ant-carousel .slick-dots li button{opacity:.5;background:#fff}.blocks-app .premium-features-modal .ant-carousel .slick-dots li.slick-active button{opacity:1}.blocks-app .premium-features-modal .modal-subtitle{text-align:center;margin-bottom:20px;font-size:18px}.blocks-app .premium-features-modal .carousel-slider{margin-bottom:20px}.blocks-app .premium-features-modal .slick-list{border-radius:calc(var(--borderRadiusXL) * 1.5px)}.blocks-app .premium-features-modal .slick-slide{padding:0 5px}.blocks-app .premium-features-modal .carousel-slide{border-radius:calc(var(--borderRadiusXL) * 1.5px);justify-content:flex-end;align-items:center;height:480px;display:flex}.blocks-app .premium-features-modal .slide-item-image{width:50%;padding:24px 0 24px 32px}.blocks-app .premium-features-modal .slide-item-image img{border-radius:calc(var(--borderRadiusXL) * 1.3px);width:100%}.blocks-app .premium-features-modal .slide-item-content{width:50%;padding:48px}.blocks-app .premium-features-modal .slide-title{margin-bottom:48px;font-size:50px;font-weight:700;line-height:1}.blocks-app .premium-features-modal .slide-description{font-size:22px}.blocks-app .premium-features-modal .modal-buttons{justify-content:center;gap:10px;display:flex}.blocks-app .premium-features-modal .modal-buttons button{padding:0 30px}`)),document.head.appendChild(e)}}catch(e){console.error(`vite-plugin-css-injected-by-js`,e)}})();__emailmaker__.define(`static/core/7717f2932.js`,[`require`,`exports`,`module`,`static/core/91d328d8.js`,`static/core/5d47e095.js`,`static/core/f83d7ac42.js`,`static/core/40cc9fd7.js`,`react`,`react-router-dom`,`antd`,`react/jsx-runtime`],function(e,t,n){let r=e(`./91d328d8.js`),i=e(`./5d47e095.js`),a=e(`./40cc9fd7.js`),o=e(`./f83d7ac42.js`),s=e(`react`),c=e(`react-router-dom`),l=e(`antd`),u=e(`react/jsx-runtime`);function d(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}var f={read:function(e){return e[0]===`"`&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function p(e,t){function n(n,r,i){if(!(typeof document>`u`)){i=d({},t,i),typeof i.expires==`number`&&(i.expires=new Date(Date.now()+i.expires*864e5)),i.expires&&=i.expires.toUTCString(),n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var a=``;for(var o in i)i[o]&&(a+=`; `+o,i[o]!==!0&&(a+=`=`+i[o].split(`;`)[0]));return document.cookie=n+`=`+e.write(r,n)+a}}function r(t){if(!(typeof document>`u`||arguments.length&&!t)){for(var n=document.cookie?document.cookie.split(`; `):[],r={},i=0;i<n.length;i++){var a=n[i].split(`=`),o=a.slice(1).join(`=`);try{var s=decodeURIComponent(a[0]);if(r[s]=e.read(o,s),t===s)break}catch{}}return t?r[t]:r}}return Object.create({set:n,get:r,remove:function(e,t){n(e,``,d({},t,{expires:-1}))},withAttributes:function(e){return p(this.converter,d({},this.attributes,e))},withConverter:function(e){return p(d({},this.converter,e),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var m=p(f,{path:`/`}),h=r.a(((e,t)=>{(function(n){"use strict";var r=n.setTimeout,i=n.clearTimeout,a=n.XMLHttpRequest,o=n.XDomainRequest,s=n.ActiveXObject,c=n.EventSource,l=n.document,u=n.Promise,d=n.fetch,f=n.Response,p=n.TextDecoder,m=n.TextEncoder,h=n.AbortController;if(typeof window<`u`&&l!==void 0&&!(`readyState`in l)&&l.body==null&&(l.readyState=`loading`,window.addEventListener(`load`,function(e){l.readyState=`complete`},!1)),a==null&&s!=null&&(a=function(){return new s(`Microsoft.XMLHTTP`)}),Object.create??(Object.create=function(e){function t(){}return t.prototype=e,new t}),Date.now||(Date.now=function(){return new Date().getTime()}),h==null){var g=d;d=function(e,t){var n=t.signal;return g(e,{headers:t.headers,credentials:t.credentials,cache:t.cache}).then(function(e){var t=e.body.getReader();return n._reader=t,n._aborted&&n._reader.cancel(),{status:e.status,statusText:e.statusText,headers:e.headers,body:{getReader:function(){return t}}}})},h=function(){this.signal={_reader:null,_aborted:!1},this.abort=function(){this.signal._reader!=null&&this.signal._reader.cancel(),this.signal._aborted=!0}}}function _(){this.bitsNeeded=0,this.codePoint=0}_.prototype.decode=function(e){function t(e,t,n){if(n===1)return e>=128>>t&&e<<t<=2047;if(n===2)return e>=2048>>t&&e<<t<=55295||e>=57344>>t&&e<<t<=65535;if(n===3)return e>=65536>>t&&e<<t<=1114111;throw Error()}function n(e,t){if(e===6)return t>>6>15?3:t>31?2:1;if(e===12)return t>15?3:2;if(e===18)return 3;throw Error()}for(var r=65533,i=``,a=this.bitsNeeded,o=this.codePoint,s=0;s<e.length;s+=1){var c=e[s];a!==0&&(c<128||c>191||!t(o<<6|c&63,a-6,n(a,o)))&&(a=0,o=r,i+=String.fromCharCode(o)),a===0?(c>=0&&c<=127?(a=0,o=c):c>=192&&c<=223?(a=6,o=c&31):c>=224&&c<=239?(a=12,o=c&15):c>=240&&c<=247?(a=18,o=c&7):(a=0,o=r),a!==0&&!t(o,a,n(a,o))&&(a=0,o=r)):(a-=6,o=o<<6|c&63),a===0&&(o<=65535?i+=String.fromCharCode(o):(i+=String.fromCharCode(55296+(o-65535-1>>10)),i+=String.fromCharCode(56320+(o-65535-1&1023))))}return this.bitsNeeded=a,this.codePoint=o,i},(p==null||m==null||!function(){try{return new p().decode(new m().encode(`test`),{stream:!0})===`test`}catch(e){``+e}return!1}())&&(p=_);var v=function(){};function y(e){this.withCredentials=!1,this.readyState=0,this.status=0,this.statusText=``,this.responseText=``,this.onprogress=v,this.onload=v,this.onerror=v,this.onreadystatechange=v,this._contentType=``,this._xhr=e,this._sendTimeout=0,this._abort=v}y.prototype.open=function(e,t){this._abort(!0);var n=this,o=this._xhr,s=1,c=0;this._abort=function(e){n._sendTimeout!==0&&(i(n._sendTimeout),n._sendTimeout=0),(s===1||s===2||s===3)&&(s=4,o.onload=v,o.onerror=v,o.onabort=v,o.onprogress=v,o.onreadystatechange=v,o.abort(),c!==0&&(i(c),c=0),e||(n.readyState=4,n.onabort(null),n.onreadystatechange())),s=0};var l=function(){if(s===1){var e=0,t=``,r=void 0;if(`contentType`in o)e=200,t=`OK`,r=o.contentType;else try{e=o.status,t=o.statusText,r=o.getResponseHeader(`Content-Type`)}catch{e=0,t=``,r=void 0}e!==0&&(s=2,n.readyState=2,n.status=e,n.statusText=t,n._contentType=r,n.onreadystatechange())}},u=function(){if(l(),s===2||s===3){s=3;var e=``;try{e=o.responseText}catch{}n.readyState=3,n.responseText=e,n.onprogress()}},d=function(e,t){if((t==null||t.preventDefault==null)&&(t={preventDefault:v}),u(),s===1||s===2||s===3){if(s=4,c!==0&&(i(c),c=0),n.readyState=4,e===`load`)n.onload(t);else if(e===`error`)n.onerror(t);else if(e===`abort`)n.onabort(t);else throw TypeError();n.onreadystatechange()}},f=function(e){o!=null&&(o.readyState===4?(!(`onload`in o)||!(`onerror`in o)||!(`onabort`in o))&&d(o.responseText===``?`error`:`load`,e):o.readyState===3?`onprogress`in o||u():o.readyState===2&&l())},p=function(){c=r(function(){p()},500),o.readyState===3&&u()};`onload`in o&&(o.onload=function(e){d(`load`,e)}),`onerror`in o&&(o.onerror=function(e){d(`error`,e)}),`onabort`in o&&(o.onabort=function(e){d(`abort`,e)}),`onprogress`in o&&(o.onprogress=u),`onreadystatechange`in o&&(o.onreadystatechange=function(e){f(e)}),(`contentType`in o||!(`ontimeout`in a.prototype))&&(t+=(t.indexOf(`?`)===-1?`?`:`&`)+`padding=true`),o.open(e,t,!0),`readyState`in o&&(c=r(function(){p()},0))},y.prototype.abort=function(){this._abort(!1)},y.prototype.getResponseHeader=function(e){return this._contentType},y.prototype.setRequestHeader=function(e,t){var n=this._xhr;`setRequestHeader`in n&&n.setRequestHeader(e,t)},y.prototype.getAllResponseHeaders=function(){return this._xhr.getAllResponseHeaders==null?``:this._xhr.getAllResponseHeaders()||``},y.prototype.send=function(){if((!(`ontimeout`in a.prototype)||!(`sendAsBinary`in a.prototype)&&!(`mozAnon`in a.prototype))&&l!=null&&l.readyState!=null&&l.readyState!==`complete`){var e=this;e._sendTimeout=r(function(){e._sendTimeout=0,e.send()},4);return}var t=this._xhr;`withCredentials`in t&&(t.withCredentials=this.withCredentials);try{t.send(void 0)}catch(e){throw e}};function b(e){return e.replace(/[A-Z]/g,function(e){return String.fromCharCode(e.charCodeAt(0)+32)})}function x(e){for(var t=Object.create(null),n=e.split(`\r
|
|
2
|
+
`),r=0;r<n.length;r+=1){var i=n[r].split(`: `),a=i.shift(),o=i.join(`: `);t[b(a)]=o}this._map=t}x.prototype.get=function(e){return this._map[b(e)]},a!=null&&a.HEADERS_RECEIVED==null&&(a.HEADERS_RECEIVED=2);function S(){}S.prototype.open=function(e,t,n,r,i,o,s){e.open(`GET`,i);var c=0;for(var l in e.onprogress=function(){var t=e.responseText.slice(c);c+=t.length,n(t)},e.onerror=function(e){e.preventDefault(),r(Error(`NetworkError`))},e.onload=function(){r(null)},e.onabort=function(){r(null)},e.onreadystatechange=function(){if(e.readyState===a.HEADERS_RECEIVED){var n=e.status,r=e.statusText;t(n,r,e.getResponseHeader(`Content-Type`),new x(e.getAllResponseHeaders()))}},e.withCredentials=o,s)Object.prototype.hasOwnProperty.call(s,l)&&e.setRequestHeader(l,s[l]);return e.send(),e};function C(e){this._headers=e}C.prototype.get=function(e){return this._headers.get(e)};function w(){}w.prototype.open=function(e,t,n,r,i,a,o){var s=null,c=new h,l=c.signal,f=new p;return d(i,{headers:o,credentials:a?`include`:`same-origin`,signal:l,cache:`no-store`}).then(function(e){return s=e.body.getReader(),t(e.status,e.statusText,e.headers.get(`Content-Type`),new C(e.headers)),new u(function(e,t){var r=function(){s.read().then(function(t){t.done?e(void 0):(n(f.decode(t.value,{stream:!0})),r())}).catch(function(e){t(e)})};r()})}).catch(function(e){if(e.name!==`AbortError`)return e}).then(function(e){r(e)}),{abort:function(){s?.cancel(),c.abort()}}};function T(){this._listeners=Object.create(null)}function E(e){r(function(){throw e},0)}T.prototype.dispatchEvent=function(e){e.target=this;var t=this._listeners[e.type];if(t!=null)for(var n=t.length,r=0;r<n;r+=1){var i=t[r];try{typeof i.handleEvent==`function`?i.handleEvent(e):i.call(this,e)}catch(e){E(e)}}},T.prototype.addEventListener=function(e,t){e=String(e);var n=this._listeners,r=n[e];r??(r=[],n[e]=r);for(var i=!1,a=0;a<r.length;a+=1)r[a]===t&&(i=!0);i||r.push(t)},T.prototype.removeEventListener=function(e,t){e=String(e);var n=this._listeners,r=n[e];if(r!=null){for(var i=[],a=0;a<r.length;a+=1)r[a]!==t&&i.push(r[a]);i.length===0?delete n[e]:n[e]=i}};function D(e){this.type=e,this.target=void 0}function O(e,t){D.call(this,e),this.data=t.data,this.lastEventId=t.lastEventId}O.prototype=Object.create(D.prototype);function k(e,t){D.call(this,e),this.status=t.status,this.statusText=t.statusText,this.headers=t.headers}k.prototype=Object.create(D.prototype);function A(e,t){D.call(this,e),this.error=t.error}A.prototype=Object.create(D.prototype);var j=-1,M=0,N=1,P=2,F=-1,I=0,L=1,R=2,z=3,B=/^text\/event\-stream(;.*)?$/i,V=1e3,H=18e6,U=function(e,t){var n=e==null?t:parseInt(e,10);return n!==n&&(n=t),W(n)},W=function(e){return Math.min(Math.max(e,V),H)},G=function(e,t,n){try{typeof t==`function`&&t.call(e,n)}catch(e){E(e)}};function K(e,t){T.call(this),t||={},this.onopen=void 0,this.onmessage=void 0,this.onerror=void 0,this.url=void 0,this.readyState=void 0,this.withCredentials=void 0,this.headers=void 0,this._close=void 0,Y(this,e,t)}function q(){return a!=null&&`withCredentials`in a.prototype||o==null?new a:new o}var J=d!=null&&f!=null&&`body`in f.prototype;function Y(e,t,n){t=String(t);var a=!!n.withCredentials,o=n.lastEventIdQueryParameterName||`lastEventId`,s=W(1e3),c=U(n.heartbeatTimeout,45e3),l=``,u=s,d=!1,f=0,p=n.headers||{},m=n.Transport,h=J&&m==null?void 0:new y(m==null?q():new m),g=m!=null&&typeof m!=`string`?new m:h==null?new w:new S,_=void 0,v=0,b=j,x=``,C=``,T=``,E=``,D=I,V=0,H=0,K=function(t,n,r,i){if(b===M)if(t===200&&r!=null&&B.test(r)){b=N,d=Date.now(),u=s,e.readyState=N;var a=new k(`open`,{status:t,statusText:n,headers:i});e.dispatchEvent(a),G(e,e.onopen,a)}else{var o=``;t===200?o=`EventSource's response has a Content-Type specifying an unsupported type: `+(r==null?`-`:r.replace(/\s+/g,` `))+`. Aborting the connection.`:(n&&=n.replace(/\s+/g,` `),o=`EventSource's response has a status `+t+` `+n+` that is not 200. Aborting the connection.`),Z();var a=new k(`error`,{status:t,statusText:n,headers:i});e.dispatchEvent(a),G(e,e.onerror,a),console.error(o)}},Y=function(t){if(b===N){for(var n=-1,a=0;a<t.length;a+=1){var o=t.charCodeAt(a);(o===10||o===13)&&(n=a)}var p=(n===-1?``:E)+t.slice(0,n+1);E=(n===-1?E:``)+t.slice(n+1),t!==``&&(d=Date.now(),f+=t.length);for(var m=0;m<p.length;m+=1){var o=p.charCodeAt(m);if(D===F&&o===10)D=I;else if(D===F&&(D=I),o===13||o===10){if(D!==I){D===L&&(H=m+1);var h=p.slice(V,H-1),g=p.slice(H+(H<m&&p.charCodeAt(H)===32?1:0),m);h===`data`?(x+=`
|
|
3
|
+
`,x+=g):h===`id`?C=g:h===`event`?T=g:h===`retry`?(s=U(g,s),u=s):h===`heartbeatTimeout`&&(c=U(g,c),v!==0&&(i(v),v=r(function(){Q()},c)))}if(D===I){if(x!==``){l=C,T===``&&(T=`message`);var _=new O(T,{data:x.slice(1),lastEventId:C});if(e.dispatchEvent(_),T===`open`?G(e,e.onopen,_):T===`message`?G(e,e.onmessage,_):T===`error`&&G(e,e.onerror,_),b===P)return}x=``,T=``}D=o===13?F:I}else D===I&&(V=m,D=L),D===L?o===58&&(H=m+1,D=R):D===R&&(D=z)}}},X=function(t){if(b===N||b===M){b=j,v!==0&&(i(v),v=0),v=r(function(){Q()},u),u=W(Math.min(s*16,u*2)),e.readyState=M;var n=new A(`error`,{error:t});e.dispatchEvent(n),G(e,e.onerror,n),t!=null&&console.error(t)}},Z=function(){b=P,_!=null&&(_.abort(),_=void 0),v!==0&&(i(v),v=0),e.readyState=P},Q=function(){if(v=0,b!==j){if(!d&&_!=null)X(Error(`No activity within `+c+` milliseconds. `+(b===M?`No response received.`:f+` chars received.`)+` Reconnecting.`)),_!=null&&(_.abort(),_=void 0);else{var n=Math.max((d||Date.now())+c-Date.now(),1);d=!1,v=r(function(){Q()},n)}return}d=!1,f=0,v=r(function(){Q()},c),b=M,x=``,T=``,C=l,E=``,V=0,H=0,D=I;var i=t;if(t.slice(0,5)!==`data:`&&t.slice(0,5)!==`blob:`&&l!==``){var a=t.indexOf(`?`);i=a===-1?t:t.slice(0,a+1)+t.slice(a+1).replace(/(?:^|&)([^=&]*)(?:=[^&]*)?/g,function(e,t){return t===o?``:e}),i+=(t.indexOf(`?`)===-1?`?`:`&`)+o+`=`+encodeURIComponent(l)}var s=e.withCredentials,u={};u.Accept=`text/event-stream`;var p=e.headers;if(p!=null)for(var m in p)Object.prototype.hasOwnProperty.call(p,m)&&(u[m]=p[m]);try{_=g.open(h,K,Y,X,i,s,u)}catch(e){throw Z(),e}};e.url=t,e.readyState=M,e.withCredentials=a,e.headers=p,e._close=Z,Q()}K.prototype=Object.create(T.prototype),K.prototype.CONNECTING=M,K.prototype.OPEN=N,K.prototype.CLOSED=P,K.prototype.close=function(){this._close()},K.CONNECTING=M,K.OPEN=N,K.CLOSED=P,K.prototype.withCredentials=void 0;var X=c;a!=null&&(c==null||!(`withCredentials`in c.prototype))&&(X=K),(function(r){if(typeof t==`object`&&typeof t.exports==`object`){var i=r(e);i!==void 0&&(t.exports=i)}else typeof define==`function`&&define.amd?define([`exports`],r):r(n)})(function(e){e.EventSourcePolyfill=K,e.NativeEventSource=c,e.EventSource=X})})(typeof globalThis>`u`?typeof window<`u`?window:typeof self<`u`?self:e:globalThis)})),g=h(),_=`https://api.unsplash.com`,v=`https://api.giphy.com/v1/gifs`,y=i.Qt({reducerPath:`imageApi`,baseQuery:void 0,endpoints:e=>({getImageInfo:e.query({queryFn:async function(e,t){try{let n=t.getState().configSlice?.config?.imageInfoToolUrl||`https://scr.emcdn.ru/imageinfo`;return{data:await(await fetch(`${n}?url=${encodeURIComponent(e)}`)).json()}}catch{}}}),getSearchImage:e.query({queryFn:async function({query:e,page:t}){let n=e.keywords.replace(/[^\w\d\sа-яёА-ЯЁ]|_/g,``).replace(/[\s_-]+/g,` `);try{let r=`https://api.emailmaker.ru/services/stock_images`?.trim(),i;return i=r?`${r.replace(/\/$/,``)}/search/photos?client_id=HX2_qqq3F3ljmtYtfmb9P6h0dn2u9mnnOl36IdV8el0&lang=ru&per_page=18&query=${encodeURIComponent(n)}&page=${t}`:`https://api.emailmaker.ru/services/agent/photos?client_id=HX2_qqq3F3ljmtYtfmb9P6h0dn2u9mnnOl36IdV8el0&lang=ru&per_page=18&query=${n}&page=${t}&proxy_url=${_}/search`,e.color!==``&&(i+=`&color=${e.color}`),e.orientation!==``&&(i+=`&orientation=${e.orientation}`),{data:await(await fetch(i)).json()}}catch{}}}),getUnsplashImage:e.query({queryFn:async function(e){try{let t=`${e}&client_id=HX2_qqq3F3ljmtYtfmb9P6h0dn2u9mnnOl36IdV8el0`,n=`https://api.emailmaker.ru/services/stock_images`?.trim();if(n)try{let r=new URL(e);if(r.origin===`https://api.unsplash.com`){let e=n.replace(/\/$/,``),i=r.search?r.search.slice(1)+`&`:``;t=`${e}${r.pathname}?${i}client_id=HX2_qqq3F3ljmtYtfmb9P6h0dn2u9mnnOl36IdV8el0`}}catch{}return{data:await(await fetch(t)).json()}}catch{}}}),sendAiImageRequest:e.query({queryFn:async function({body:e},t){try{return await i.Ft(t).saveFile.ai_create(e,{type:i.Pr.FormData})}catch(e){throw Error(e)}}}),getAiImage:e.query({queryFn:async function(e,t){try{return await i.Ft(t).saveFile.ai_status_list(e)}catch{}}}),getAiImageSSE:e.query({queryFn:e=>({data:[]}),async onCacheEntryAdded({task_id:e,entity_id:t,setError:n},r){let{updateCachedData:o,cacheEntryRemoved:s}=r,c=i.Ft(r),l;l=c.baseUrl.indexOf(`dev-`)>=0?c.baseUrl:c.baseUrl.indexOf(`emailmaker`)>=0?i.Tr(i._r.maker):i.Tr(i._r.blocks);let u=i.tr.isPlugin?await i.Rt.getInstance(r,a.n):m.get(i._n.em_token),d=u?{Authorization:`Bearer ${u}`}:{},f=new g.EventSourcePolyfill(` ${l}/ai-generator/v1/ai-status?entity_id=${t}&stream=1&task_id=${e}`,{headers:d});f.onmessage=e=>{let t=JSON.parse(e.data);o(e=>{e.push(t)}),t.progress===100&&f.close()},f.onerror=e=>{f.close()},await s,f.close()}}),getSearchGif:e.query({queryFn:async function({query:e,page:t}){let n=e.keywords.replace(/[^\w\d\sа-яёА-ЯЁ]|_/g,``).replace(/[\s_-]+/g,` `);try{let e=`${v}/search?api_key=Nh77eBlPeMn1ed9MBAvL542NUGeNO26F&q=${n}&limit=25&offset=${t}&lang=en`;return{data:await(await fetch(e)).json()}}catch{}}})})}),{useLazyGetImageInfoQuery:b,useGetImageInfoQuery:x,useGetSearchImageQuery:S,useLazyGetSearchImageQuery:C,useSendAiImageRequestQuery:w,useLazySendAiImageRequestQuery:T,useGetAiImageQuery:E,useLazyGetAiImageQuery:D,useGetUnsplashImageQuery:O,useLazyGetUnsplashImageQuery:k,useGetSearchGifQuery:A,useLazyGetSearchGifQuery:j,useGetAiImageSSEQuery:M,useLazyGetAiImageSSEQuery:N}=y,P=new URLSearchParams(window.location.search),F=P.get(`tag`),I=P.get(`folder`),L=i.Ht({activeModal:``,secondModal:``,projectsTotal:``,projectsTotalPages:``,folders:[],activeTagId:F||null,activeFolderId:I||(F?null:`all`),activeTab:null,activeIntegration:null}),R=`projectsPageSlice`,z=i.ln({name:R,initialState:L,reducers:{openModal(e,t){e.activeModal=t.payload},setActiveTab(e,t){e.activeTab=t.payload},closeModal(e){e.activeModal=``,e.activeIntegration=null},openSecondModal(e,t){e.secondModal=t.payload},closeSecondModal(e){e.secondModal=``},setFolders(e,{payload:t}){e.folders=t},setActiveTagId(e,{payload:t}){e.activeTagId=t},setActiveIntegration(e,t){e.activeIntegration=t.payload}},extraReducers:e=>{e.addMatcher(i.c.endpoints.getProjects.matchFulfilled,(e,{meta:t})=>{let n=t.baseQueryMeta?.response.headers.get(`X-WP-Total`),r=t.baseQueryMeta?.response.headers.get(`X-WP-TotalPages`);e.projectsTotal=n,e.projectsTotalPages=r}),e.addMatcher(i.t.endpoints.getFolders.matchFulfilled,(e,{payload:t})=>{e.folders=t})}}),{openModal:B,setActiveTab:V,closeModal:H,openSecondModal:U,closeSecondModal:W,setFolders:G,setActiveTagId:K,setActiveIntegration:q}=z.actions,J=e=>e[R].activeTab,Y=e=>e[R].activeModal,X=e=>e[R].secondModal,Z=e=>e[R].activeIntegration,Q=`imageSlice`,$=i.ln({name:Q,initialState:i.Ht({currentImage:``,currentBackground:``,currentImageName:``}),reducers:{setCurrentImageName(e,t){e.currentImageName=t.payload},setCurrentImage(e,t){e.currentImage=t.payload},setCurrentBackground(e,t){e.currentBackground=t.payload},clearCurrentImages(e,t){e.currentImage=``,e.currentBackground=``,e.currentImageName=``}}}),{setCurrentImage:ee,setCurrentImageName:te,setCurrentBackground:ne,clearCurrentImages:re}=$.actions,ie=e=>e[Q].currentImage,ae=e=>e[Q].currentImageName,oe=e=>e[Q].currentBackground,se=({open:e,sideOnOk:t,onCancel:n,initialSlide:r=0})=>{let{__:i}=o.v(),a=(0,c.useNavigate)(),[d,f]=(0,s.useState)(r),p=(0,s.useRef)(null),m=o.dt(),h=()=>{t&&t(),a(`/billing`),n(!1)};(0,s.useEffect)(()=>{e&&p.current&&(p.current.goTo(r,!0),f(r))},[e,r]);let g=(0,s.useMemo)(()=>[{image:i(`https://cdn.useblocks.io/1351/241017_18_1sGjUaZ.png`),backgroundColor:`var(--blue-2)`,title:i(`More editing features`),description:i(`Use our visual editor to customize every element to your needs: change borders and their radius, box shadows, paddings, background, and much more.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_J7QtvZ3.png`),backgroundColor:`var(--purple-2)`,title:i(`Work with the HTML code`),description:i(`Edit the HTML version of your email template in the Code mode and see the changes in real time. Builder has no code restrictions — you can create templates of any complexity!`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_2fjDRfL.png`),backgroundColor:`var(--cyan-2)`,title:i(`AI image generation`),description:i(`Generate stunning visuals for your emails with ease. We have trained our AI model to ensure the highest quality images.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_D5C25Zp.png`),backgroundColor:`var(--green-2)`,title:i(`Stock photos and GIFs`),description:i(`Search the vast gallery of stock photos and GIFs to find visuals for any occasion. You can filter the results by image orientation, color scheme, and more.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_NDYloAO.png`),backgroundColor:`var(--magenta-2)`,title:i(`Version history`),description:i(`Check who and when made changes to the email template and, if necessary, restore one of the previous versions.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_g5mVlmh.png`),backgroundColor:`var(--red-2)`,title:i(`Image editor`),description:i(`Want to resize an image, add some text, or apply a filter? No need to leave builder! You can make all the basic changes in our image editor.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_ur8Lh3W.png`),backgroundColor:`var(--orange-2)`,title:i(`Email optimization`),description:i(`Check your email against broken links, missing alt texts, large images, and other issues that might prevent your emails from hitting inboxes.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_S5Pld9p.png`),backgroundColor:`var(--volcano-2)`,title:i(`Team collaboration`),description:i(`Share the project with your team and collaborate in real time. Add comments to individual email blocks and discuss necessary edits right in the builder.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_tGbb2j9.png`),backgroundColor:`var(--geekblue-2)`,title:i(`Email testing`),description:i(`Check how your email appears across various devices and email clients.`)},{image:i(`https://cdn.useblocks.io/1351/241017_18_gDXi4uM.png`),backgroundColor:`var(--geekblue-2)`,title:i(`AI assistant`),description:i(`Let our AI assistant enhance your email template! From creating subject lines and preheaders based on the email copy to generating the whole email with your website in mind!`)}],[i]);return(0,s.useEffect)(()=>{if(e&&p.current){p.current.goTo(r,!0),f(r);let e=g[r];m({event:`open_modal`,action:`open_premium-features_modal`,modal_id:`premium-features`,offer_id:e.title})}},[e,g,r,m]),(0,u.jsxs)(l.Modal,{open:e,footer:null,onCancel:n,centered:!0,closable:!1,className:`premium-features-modal`,classNames:{mask:`premium-features-modal-mask`},styles:{mask:{background:`rgba(0, 0, 0, 0.65)`}},width:1100,style:{maxWidth:`80%`},children:[(0,u.jsx)(l.Carousel,{dots:!0,slidesToShow:1,slidesToScroll:1,autoplay:!0,className:`carousel-slider`,draggable:!0,autoplaySpeed:5e3,initialSlide:d,ref:p,children:g.map((e,t)=>(0,u.jsx)(`div`,{children:(0,u.jsxs)(`div`,{className:`carousel-slide`,style:{background:`${e.backgroundColor}`},children:[(0,u.jsx)(`div`,{className:`slide-item-image`,children:(0,u.jsx)(`img`,{src:e.image,alt:`slide-${t}`})}),(0,u.jsxs)(`div`,{className:`slide-item-content`,children:[(0,u.jsx)(`h3`,{className:`slide-title`,children:e.title}),(0,u.jsx)(`p`,{className:`slide-description`,children:e.description})]})]})},t))}),(0,u.jsx)(`div`,{className:`modal-subtitle`,children:i(`This and other features are available for you on any paid plan.`)}),(0,u.jsxs)(`div`,{className:`modal-buttons`,children:[(0,u.jsx)(l.Button,{size:`large`,onClick:()=>n(!1),children:i(`Cancel`)}),(0,u.jsx)(l.Button,{type:`primary`,size:`large`,onClick:h,style:{padding:`0 30px`},children:i(`Select plan`)})]})]})};function ce(e){return e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,``),e=e.replace(/<\/?(?:script|embed|object|frameset|frame|iframe|applet|meta)[^>]*>/gi,``),e=e.replace(/ on\w+="[^"]*"/g,``),e=e.replace(/ on\w+='[^']*'/g,``),e}var le=()=>i.Rt.useInstance(i.Ar);Object.defineProperty(t,`A`,{enumerable:!0,get:function(){return m}}),Object.defineProperty(t,`C`,{enumerable:!0,get:function(){return N}}),Object.defineProperty(t,`D`,{enumerable:!0,get:function(){return k}}),Object.defineProperty(t,`E`,{enumerable:!0,get:function(){return C}}),Object.defineProperty(t,`O`,{enumerable:!0,get:function(){return T}}),Object.defineProperty(t,`S`,{enumerable:!0,get:function(){return y}}),Object.defineProperty(t,`T`,{enumerable:!0,get:function(){return j}}),Object.defineProperty(t,`_`,{enumerable:!0,get:function(){return Z}}),Object.defineProperty(t,`a`,{enumerable:!0,get:function(){return $}}),Object.defineProperty(t,`b`,{enumerable:!0,get:function(){return X}}),Object.defineProperty(t,`c`,{enumerable:!0,get:function(){return ae}}),Object.defineProperty(t,`d`,{enumerable:!0,get:function(){return te}}),Object.defineProperty(t,`f`,{enumerable:!0,get:function(){return H}}),Object.defineProperty(t,`g`,{enumerable:!0,get:function(){return z}}),Object.defineProperty(t,`h`,{enumerable:!0,get:function(){return U}}),Object.defineProperty(t,`i`,{enumerable:!0,get:function(){return re}}),Object.defineProperty(t,`k`,{enumerable:!0,get:function(){return h}}),Object.defineProperty(t,`l`,{enumerable:!0,get:function(){return ne}}),Object.defineProperty(t,`m`,{enumerable:!0,get:function(){return B}}),Object.defineProperty(t,`n`,{enumerable:!0,get:function(){return ce}}),Object.defineProperty(t,`o`,{enumerable:!0,get:function(){return oe}}),Object.defineProperty(t,`p`,{enumerable:!0,get:function(){return W}}),Object.defineProperty(t,`r`,{enumerable:!0,get:function(){return se}}),Object.defineProperty(t,`s`,{enumerable:!0,get:function(){return ie}}),Object.defineProperty(t,`t`,{enumerable:!0,get:function(){return le}}),Object.defineProperty(t,`u`,{enumerable:!0,get:function(){return ee}}),Object.defineProperty(t,`v`,{enumerable:!0,get:function(){return Y}}),Object.defineProperty(t,`w`,{enumerable:!0,get:function(){return b}}),Object.defineProperty(t,`x`,{enumerable:!0,get:function(){return V}}),Object.defineProperty(t,`y`,{enumerable:!0,get:function(){return J}})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__emailmaker__.define(`static/core/776cb34a.js`,[`require`,`exports`,`module`,`static/core/91d328d8.js`],function(e,t,n){e(`./91d328d8.js`);var r={items_per_page:`/ page`,jump_to:`Go to`,jump_to_confirm:`confirm`,page:`Page`,prev_page:`Previous Page`,next_page:`Next Page`,prev_5:`Previous 5 Pages`,next_5:`Next 5 Pages`,prev_3:`Previous 3 Pages`,next_3:`Next 3 Pages`,page_size:`Page Size`},i={locale:`en_US`,today:`Today`,now:`Now`,backToToday:`Back to today`,ok:`OK`,clear:`Clear`,month:`Month`,year:`Year`,timeSelect:`select time`,dateSelect:`select date`,weekSelect:`Choose a week`,monthSelect:`Choose a month`,yearSelect:`Choose a year`,decadeSelect:`Choose a decade`,yearFormat:`YYYY`,dateFormat:`M/D/YYYY`,dayFormat:`D`,dateTimeFormat:`M/D/YYYY HH:mm:ss`,monthBeforeYear:!0,previousMonth:`Previous month (PageUp)`,nextMonth:`Next month (PageDown)`,previousYear:`Last year (Control + left)`,nextYear:`Next year (Control + right)`,previousDecade:`Last decade`,nextDecade:`Next decade`,previousCentury:`Last century`,nextCentury:`Next century`},a={placeholder:`Select time`,rangePlaceholder:[`Start time`,`End time`]},o={lang:Object.assign({placeholder:`Select date`,yearPlaceholder:`Select year`,quarterPlaceholder:`Select quarter`,monthPlaceholder:`Select month`,weekPlaceholder:`Select week`,rangePlaceholder:[`Start date`,`End date`],rangeYearPlaceholder:[`Start year`,`End year`],rangeQuarterPlaceholder:[`Start quarter`,`End quarter`],rangeMonthPlaceholder:[`Start month`,`End month`],rangeWeekPlaceholder:[`Start week`,`End week`]},i),timePickerLocale:Object.assign({},a)},s=o,c="${label} is not a valid ${type}";t.default={locale:`en`,Pagination:r,DatePicker:o,TimePicker:a,Calendar:s,global:{placeholder:`Please select`},Table:{filterTitle:`Filter menu`,filterConfirm:`OK`,filterReset:`Reset`,filterEmptyText:`No filters`,filterCheckall:`Select all items`,filterSearchPlaceholder:`Search in filters`,emptyText:`No data`,selectAll:`Select current page`,selectInvert:`Invert current page`,selectNone:`Clear all data`,selectionAll:`Select all data`,sortTitle:`Sort`,expand:`Expand row`,collapse:`Collapse row`,triggerDesc:`Click to sort descending`,triggerAsc:`Click to sort ascending`,cancelSort:`Click to cancel sorting`},Tour:{Next:`Next`,Previous:`Previous`,Finish:`Finish`},Modal:{okText:`OK`,cancelText:`Cancel`,justOkText:`OK`},Popconfirm:{okText:`OK`,cancelText:`Cancel`},Transfer:{titles:[``,``],searchPlaceholder:`Search here`,itemUnit:`item`,itemsUnit:`items`,remove:`Remove`,selectCurrent:`Select current page`,removeCurrent:`Remove current page`,selectAll:`Select all data`,removeAll:`Remove all data`,selectInvert:`Invert current page`},Upload:{uploading:`Uploading...`,removeFile:`Remove file`,uploadError:`Upload error`,previewFile:`Preview file`,downloadFile:`Download file`},Empty:{description:`No data`},Icon:{icon:`icon`},Text:{edit:`Edit`,copy:`Copy`,copied:`Copied`,expand:`Expand`},PageHeader:{back:`Back`},Form:{optional:`(optional)`,defaultValidateMessages:{default:"Field validation error for ${label}",required:"Please enter ${label}",enum:"${label} must be one of [${enum}]",whitespace:"${label} cannot be a blank character",date:{format:"${label} date format is invalid",parse:"${label} cannot be converted to a date",invalid:"${label} is an invalid date"},types:{string:c,method:c,array:c,object:c,number:c,date:c,boolean:c,integer:c,float:c,regexp:c,email:c,url:c,hex:c},string:{len:"${label} must be ${len} characters",min:"${label} must be at least ${min} characters",max:"${label} must be up to ${max} characters",range:"${label} must be between ${min}-${max} characters"},number:{len:"${label} must be equal to ${len}",min:"${label} must be minimum ${min}",max:"${label} must be maximum ${max}",range:"${label} must be between ${min}-${max}"},array:{len:"Must be ${len} ${label}",min:"At least ${min} ${label}",max:"At most ${max} ${label}",range:"The amount of ${label} must be between ${min}-${max}"},pattern:{mismatch:"${label} does not match the pattern ${pattern}"}}},Image:{preview:`Preview`},QRCode:{expired:`QR code expired`,refresh:`Refresh`},ColorPicker:{presetEmpty:`Empty`}}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__emailmaker__.define(`static/core/78a1e31e.js`,[`require`,`exports`,`module`,`static/core/91d328d8.js`],function(e,t,n){e(`./91d328d8.js`);var r={items_per_page:`/ 페이지`,jump_to:`이동하기`,jump_to_confirm:`확인하다`,page:`페이지`,prev_page:`이전 페이지`,next_page:`다음 페이지`,prev_5:`이전 5 페이지`,next_5:`다음 5 페이지`,prev_3:`이전 3 페이지`,next_3:`다음 3 페이지`,page_size:`페이지 크기`},i={locale:`ko_KR`,today:`오늘`,now:`현재 시각`,backToToday:`오늘로 돌아가기`,ok:`확인`,clear:`지우기`,month:`월`,year:`년`,timeSelect:`시간 선택`,dateSelect:`날짜 선택`,monthSelect:`달 선택`,yearSelect:`연 선택`,decadeSelect:`연대 선택`,yearFormat:`YYYY년`,dateFormat:`YYYY-MM-DD`,dayFormat:`Do`,dateTimeFormat:`YYYY-MM-DD HH:mm:ss`,monthBeforeYear:!1,previousMonth:`이전 달 (PageUp)`,nextMonth:`다음 달 (PageDown)`,previousYear:`이전 해 (Control + left)`,nextYear:`다음 해 (Control + right)`,previousDecade:`이전 연대`,nextDecade:`다음 연대`,previousCentury:`이전 세기`,nextCentury:`다음 세기`},a={placeholder:`시간 선택`,rangePlaceholder:[`시작 시간`,`종료 시간`]},o={lang:Object.assign({placeholder:`날짜 선택`,rangePlaceholder:[`시작일`,`종료일`]},i),timePickerLocale:Object.assign({},a)},s=o,c="${label} 유효하지 않은 ${type}";t.default={locale:`ko`,Pagination:r,DatePicker:o,TimePicker:a,Calendar:s,global:{placeholder:`선택하세요`},Table:{filterTitle:`필터 메뉴`,filterConfirm:`확인`,filterReset:`초기화`,filterEmptyText:`필터 없음`,filterCheckall:`전체 선택`,filterSearchPlaceholder:`필터 검색`,emptyText:`데이터 없음`,selectAll:`전체 선택`,selectInvert:`선택 반전`,selectNone:`없음`,selectionAll:`전체 선택`,sortTitle:`정렬`,expand:`펼치기`,collapse:`접기`,triggerDesc:`내림차순으로 정렬하기`,triggerAsc:`오름차순으로 정렬하기`,cancelSort:`정렬 취소하기`},Tour:{Next:`다음`,Previous:`이전`,Finish:`종료`},Modal:{okText:`확인`,cancelText:`취소`,justOkText:`확인`},Popconfirm:{okText:`확인`,cancelText:`취소`},Transfer:{titles:[``,``],searchPlaceholder:`여기에 검색하세요`,itemUnit:`개`,itemsUnit:`개`,remove:`삭제`,selectCurrent:`현재 페이지 선택`,removeCurrent:`현재 페이지 삭제`,selectAll:`전체 선택`,removeAll:`전체 삭제`,selectInvert:`선택 반전`},Upload:{uploading:`업로드 중...`,removeFile:`파일 삭제`,uploadError:`업로드 실패`,previewFile:`파일 미리보기`,downloadFile:`파일 다운로드`},Empty:{description:`데이터 없음`},Icon:{icon:`아이콘`},Text:{edit:`수정`,copy:`복사`,copied:`복사 됨`,expand:`확장`},PageHeader:{back:`뒤로`},Form:{optional:`(선택사항)`,defaultValidateMessages:{default:"필드 유효성 검사 오류 ${label}",required:"${label} 값을 입력해 주세요",enum:"${label} [${enum}] 중에 하나여야 합니다",whitespace:"${label} 비워둘 수 없습니다",date:{format:"${label} 유효하지 않은 날짜 형식입니다",parse:"${label} 날짜 형식으로 변환될 수 없습니다",invalid:"${label} 유효하지 않은 날짜입니다"},types:{string:c,method:c,array:c,object:c,number:c,date:c,boolean:c,integer:c,float:c,regexp:c,email:c,url:c,hex:c},string:{len:"${label} ${len}글자여야 합니다",min:"${label} 적어도 ${min}글자 이상이어야 합니다",max:"${label} ${max}글자 이하여야 합니다",range:"${label} ${min}-${max}글자 사이어야 합니다"},number:{len:"${label} 값은 ${len}이어야 합니다",min:"${label} 최솟값은 ${min}입니다",max:"${label} 최댓값은 ${max}입니다",range:"${label} 값은 ${min}-${max} 사이어야 합니다"},array:{len:"${len}이어야 합니다 ${label}",min:"최소 ${min}이어야 합니다 ${label}",max:"최대 ${max}이어야 합니다 ${label}",range:"${label} ${min}-${max} 사이어야 합니다"},pattern:{mismatch:"${label} ${pattern} 패턴과 일치하지 않습니다"}}},Image:{preview:`미리보기`},QRCode:{expired:`만료된 QR 코드`,refresh:`새로고침`},ColorPicker:{presetEmpty:`미정`}}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__emailmaker__.define(`static/core/7d56d643.js`,[`require`,`exports`,`module`,`static/core/91d328d8.js`],function(e,t,n){let r=e(`./91d328d8.js`);var i={items_per_page:`/ стр.`,jump_to:`Перейти`,jump_to_confirm:`подтвердить`,page:`Страница`,prev_page:`Назад`,next_page:`Вперед`,prev_5:`Предыдущие 5`,next_5:`Следующие 5`,prev_3:`Предыдущие 3`,next_3:`Следующие 3`,page_size:`размер страницы`},a={locale:`ru_RU`,today:`Сегодня`,now:`Сейчас`,backToToday:`Текущая дата`,ok:`ОК`,clear:`Очистить`,month:`Месяц`,year:`Год`,timeSelect:`Выбрать время`,dateSelect:`Выбрать дату`,monthSelect:`Выбрать месяц`,yearSelect:`Выбрать год`,decadeSelect:`Выбрать десятилетие`,yearFormat:`YYYY`,dateFormat:`D-M-YYYY`,dayFormat:`D`,dateTimeFormat:`D-M-YYYY HH:mm:ss`,monthBeforeYear:!0,previousMonth:`Предыдущий месяц (PageUp)`,nextMonth:`Следующий месяц (PageDown)`,previousYear:`Предыдущий год (Control + left)`,nextYear:`Следующий год (Control + right)`,previousDecade:`Предыдущее десятилетие`,nextDecade:`Следущее десятилетие`,previousCentury:`Предыдущий век`,nextCentury:`Следующий век`},o={placeholder:`Выберите время`,rangePlaceholder:[`Время начала`,`Время окончания`]},s={lang:Object.assign({placeholder:`Выберите дату`,yearPlaceholder:`Выберите год`,quarterPlaceholder:`Выберите квартал`,monthPlaceholder:`Выберите месяц`,weekPlaceholder:`Выберите неделю`,rangePlaceholder:[`Начальная дата`,`Конечная дата`],rangeYearPlaceholder:[`Начальный год`,`Год окончания`],rangeMonthPlaceholder:[`Начальный месяц`,`Конечный месяц`],rangeWeekPlaceholder:[`Начальная неделя`,`Конечная неделя`]},a),timePickerLocale:Object.assign({},o)},c=s,l=r.s({default:()=>d}),u="${label} не является типом ${type}",d={locale:`ru`,Pagination:i,DatePicker:s,TimePicker:o,Calendar:c,global:{placeholder:`Пожалуйста выберите`},Table:{filterTitle:`Фильтр`,filterConfirm:`OK`,filterReset:`Сбросить`,filterEmptyText:`Без фильтров`,filterCheckall:`Выбрать все элементы`,filterSearchPlaceholder:`Поиск в фильтрах`,emptyText:`Нет данных`,selectAll:`Выбрать всё`,selectInvert:`Инвертировать выбор`,selectNone:`Очистить все данные`,selectionAll:`Выбрать все данные`,sortTitle:`Сортировка`,expand:`Развернуть строку`,collapse:`Свернуть строку`,triggerDesc:`Нажмите для сортировки по убыванию`,triggerAsc:`Нажмите для сортировки по возрастанию`,cancelSort:`Нажмите, чтобы отменить сортировку`},Tour:{Next:`Далее`,Previous:`Назад`,Finish:`Завершить`},Modal:{okText:`OK`,cancelText:`Отмена`,justOkText:`OK`},Popconfirm:{okText:`OK`,cancelText:`Отмена`},Transfer:{titles:[``,``],searchPlaceholder:`Поиск`,itemUnit:`элем.`,itemsUnit:`элем.`,remove:`Удалить`,selectAll:`Выбрать все данные`,selectCurrent:`Выбрать текущую страницу`,selectInvert:`Инвертировать выбор`,removeAll:`Удалить все данные`,removeCurrent:`Удалить текущую страницу`},Upload:{uploading:`Загрузка...`,removeFile:`Удалить файл`,uploadError:`При загрузке произошла ошибка`,previewFile:`Предпросмотр файла`,downloadFile:`Загрузить файл`},Empty:{description:`Нет данных`},Icon:{icon:`иконка`},Text:{edit:`Редактировать`,copy:`Копировать`,copied:`Скопировано`,expand:`Раскрыть`},PageHeader:{back:`Назад`},Form:{optional:`(необязательно)`,defaultValidateMessages:{default:"Ошибка проверки поля ${label}",required:"Пожалуйста, введите ${label}",enum:"${label} должен быть одним из [${enum}]",whitespace:"${label} не может быть пустым",date:{format:"${label} не правильный формат даты",parse:"${label} не может быть преобразовано в дату",invalid:"${label} не является корректной датой"},types:{string:u,method:u,array:u,object:u,number:u,date:u,boolean:u,integer:u,float:u,regexp:u,email:u,url:u,hex:u},string:{len:"${label} должна быть ${len} символов",min:"${label} должна быть больше или равна ${min} символов",max:"${label} должна быть меньше или равна ${max} символов",range:"Длина ${label} должна быть между ${min}-${max} символами"},number:{len:"${label} должна быть равна ${len}",min:"${label} должна быть больше или равна ${min}",max:"${label} должна быть меньше или равна ${max}",range:"${label} должна быть между ${min}-${max}"},array:{len:"Количество элементов ${label} должно быть равно ${len}",min:"Количество элементов ${label} должно быть больше или равно ${min}",max:"Количество элементов ${label} должно быть меньше или равно ${max}",range:"Количество элементов ${label} должно быть между ${min} и ${max}"},pattern:{mismatch:"${label} не соответствует шаблону ${pattern}"}}},Image:{preview:`Предпросмотр`},QRCode:{expired:`QR-код устарел`,refresh:`Обновить`}};Object.defineProperty(t,`n`,{enumerable:!0,get:function(){return l}}),Object.defineProperty(t,`t`,{enumerable:!0,get:function(){return d}})});
|