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

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.ed344c04.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/50ff48bc.js +4 -0
  158. package/static/core/5282795d2.js +6 -0
  159. package/static/core/555e2e2f2.js +903 -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/c3747df72.js +598 -0
  183. package/static/core/cec8d739.js +11 -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.ed344c04.html} +0 -0
  307. /package/iframe/{iframe.80d62b88.html → iframe.ed344c04.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,1261 +0,0 @@
1
- (function(){try{if(typeof document<`u`){var e=document.createElement(`style`);e.setAttribute(`data-emailmaker`,`true`),e.appendChild(document.createTextNode(`.blocks-app .limits-couter-wrapper{justify-content:space-between;align-items:center;display:flex}.blocks-app .limits-couter-wrapper .limit-counter{pointer-events:none;border-radius:20px;align-items:center;height:34px;margin:15px 16px 15px 0;padding:0 12px;font-size:14px;display:flex}`)),document.head.appendChild(e)}}catch(e){console.error(`vite-plugin-css-injected-by-js`,e)}})();import { s as e } from "./d6d2d2d0.js";
2
- import { Bt as t, wt as n } from "./cdc9ba92.js";
3
- import { Ft as r, I as i, Nt as a } from "./4ac4908c.js";
4
- import { n as o } from "./a2fa7b5b.js";
5
- import { d as s, f as c, l, u } from "./972b15b0.js";
6
- import { At as d, B as f, C as p, Ct as m, D as ee, Dt as te, E as ne, F as re, Ft as ie, G as ae, Gt as oe, H as se, It as ce, J as le, Jt as ue, Kt as de, L as fe, Lt as pe, Mt as me, N as he, Nt as ge, Ot as h, Pt as g, Q as _, Qt as v, R as y, Rt as b, S as x, St as S, T as C, Tt as w, U as T, Ut as E, V as D, Vt as O, W as k, Wt as A, X as j, Xt as M, Yt as N, Z as P, Zt as F, _t as I, at as L, b as _e, et as ve, ft as ye, g as be, gt as xe, h as Se, j as Ce, k as R, kt as we, lt as Te, m as Ee, mt as De, nt as Oe, ot as z, pt as ke, q as Ae, qt as B, st as je, tt as Me, v as Ne, vt as Pe, w as Fe, wt as Ie, x as Le, xt as Re, y as ze, yt as Be, z as Ve } from "./5fa1772b.js";
7
- import { a as V, f as H, i as He, p as Ue, t as U } from "./eb029366.js";
8
- import { v as We, xt as Ge } from "./df1a1225.js";
9
- import { n as Ke } from "./3469930c.js";
10
- //#region src/services/saveFileApi.ts
11
- var W = o({
12
- reducerPath: "saveFileApi",
13
- tagTypes: ["Images"],
14
- baseQuery: a({ baseUrl: "https://app.emailmaker.ru/api/wp-json/save-file/v1/" }),
15
- endpoints: (e) => ({
16
- uploadImage: e.mutation({ queryFn(e, t) {
17
- return r(t).saveFile.upload_create(e, { type: n.FormData });
18
- } }),
19
- sendTestEmail: e.mutation({ queryFn(e, t) {
20
- return r(t).saveFile.send_email_create(e, { type: n.FormData });
21
- } }),
22
- sendLivePreview: e.mutation({ queryFn(e, t) {
23
- return r(t).saveFile.get_link_create(e, { type: n.FormData });
24
- } }),
25
- sendShortLink: e.mutation({ queryFn(e, t) {
26
- return r(t).saveFile.shortener_create(e, { type: n.FormData });
27
- } })
28
- })
29
- }), { useUploadImageMutation: qe, useSendTestEmailMutation: Je, useSendLivePreviewMutation: Ye, useSendShortLinkMutation: Xe } = W;
30
- t();
31
- var G = /* @__PURE__ */ e(u()), K = l(), Ze = () => /* @__PURE__ */ (0, K.jsx)("svg", {
32
- viewBox: "0 0 12 12",
33
- focusable: "false",
34
- "data-icon": "chat-gpt",
35
- width: "1em",
36
- height: "1em",
37
- fill: "currentColor",
38
- "aria-hidden": "true",
39
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M11.1396 4.91121C11.2741 4.50723 11.3208 4.07922 11.2764 3.65577C11.2321 3.23232 11.0979 2.82323 10.8827 2.45587C10.5636 1.90021 10.0763 1.46028 9.49105 1.19955C8.90578 0.938823 8.2528 0.870777 7.62631 1.00523C7.34374 0.68679 6.99643 0.432375 6.60757 0.259023C6.21871 0.0856726 5.79733 -0.00261924 5.3716 5.91632e-05C4.7311 -0.00148674 4.10665 0.200409 3.58828 0.576642C3.06991 0.952872 2.68442 1.484 2.48737 2.09345C2.07011 2.17886 1.67592 2.35242 1.33117 2.60252C0.98642 2.85261 0.699078 3.17346 0.488376 3.5436C0.166798 4.09773 0.02953 4.73964 0.0963679 5.37684C0.163206 6.01401 0.430694 6.61347 0.860259 7.08879C0.725757 7.49277 0.679098 7.92078 0.723405 8.34423C0.767712 8.76768 0.901962 9.17676 1.11717 9.54414C1.43623 10.0998 1.92355 10.5397 2.50882 10.8004C3.09409 11.0611 3.74707 11.1292 4.37353 10.9948C4.6561 11.3132 5.00344 11.5676 5.39227 11.741C5.78113 11.9143 6.20251 12.0026 6.62824 11.9999C7.26907 12.0016 7.89385 11.7996 8.4124 11.4232C8.93098 11.0467 9.31654 10.5152 9.51343 9.90537C9.93067 9.81996 10.3249 9.64641 10.6696 9.3963C11.0144 9.14622 11.3017 8.82534 11.5124 8.4552C11.8336 7.90113 11.9705 7.25937 11.9035 6.62244C11.8365 5.98551 11.569 5.38632 11.1396 4.91121ZM6.6292 11.2155C6.10315 11.2162 5.59363 11.032 5.18968 10.695C5.20789 10.6851 5.23984 10.6676 5.26066 10.6548L7.64998 9.27468C7.70995 9.24057 7.75975 9.1911 7.79425 9.13134C7.82878 9.07158 7.84675 9.00372 7.84633 8.93475V5.56626L8.85625 6.1494C8.86153 6.15204 8.86609 6.15594 8.86954 6.16077C8.87296 6.1656 8.87512 6.17121 8.87587 6.17706V8.96667C8.87512 9.5625 8.63824 10.1337 8.21713 10.5552C7.79602 10.9768 7.225 11.2142 6.6292 11.2155ZM1.79754 9.15192C1.53405 8.69664 1.43908 8.16321 1.52927 7.64496C1.54701 7.65561 1.578 7.67454 1.60024 7.68732L3.98956 9.06744C4.04911 9.10224 4.11685 9.1206 4.18582 9.1206C4.25476 9.1206 4.3225 9.10224 4.38205 9.06744L7.29916 7.38309V8.54937C7.29949 8.55531 7.29835 8.56128 7.29583 8.56668C7.29331 8.57208 7.2895 8.57679 7.28473 8.58036L4.86937 9.97491C4.35274 10.2725 3.73915 10.3529 3.16327 10.1986C2.58738 10.0443 2.09621 9.66789 1.79754 9.15192ZM1.16898 3.93582C1.43133 3.47994 1.8457 3.13092 2.33951 2.94981C2.33951 2.97039 2.33833 3.00684 2.33833 3.03213V5.7924C2.33791 5.86134 2.35586 5.92914 2.39033 5.98887C2.42479 6.04857 2.47454 6.09801 2.53445 6.13212L5.45155 7.81626L4.44166 8.39937C4.43668 8.40267 4.43095 8.40465 4.42501 8.40519C4.41907 8.40573 4.41307 8.4048 4.40758 8.40246L1.992 7.00671C1.47626 6.70803 1.10001 6.21705 0.945726 5.64138C0.791445 5.06574 0.871731 4.45239 1.16898 3.93582ZM9.46636 5.86668L6.54922 4.18233L7.55914 3.59943C7.56412 3.59616 7.56985 3.59415 7.57579 3.59361C7.58173 3.59307 7.5877 3.59403 7.59319 3.59637L10.0088 4.99092C10.3789 5.2047 10.6804 5.51946 10.878 5.89839C11.0757 6.27732 11.1613 6.7047 11.1248 7.13052C11.0884 7.55634 10.9313 7.96296 10.6721 8.30277C10.4129 8.64258 10.0623 8.90151 9.66127 9.04923C9.66127 9.02841 9.66127 8.99199 9.66127 8.96667V6.2064C9.66184 6.13758 9.64408 6.06984 9.60982 6.01014C9.57556 5.95044 9.52606 5.90094 9.46636 5.86668ZM10.4715 4.35384C10.4538 4.34295 10.4228 4.32426 10.4006 4.31151L8.01121 2.93136C7.95166 2.89662 7.88395 2.87829 7.81498 2.87829C7.74604 2.87829 7.6783 2.89662 7.61875 2.93136L4.70164 4.61574V3.44946C4.70131 3.44349 4.70245 3.43755 4.70497 3.43215C4.70749 3.42675 4.7113 3.42204 4.71607 3.41847L7.13143 2.02508C7.50145 1.81171 7.9246 1.70813 8.35135 1.72645C8.7781 1.74477 9.19078 1.88423 9.54118 2.12852C9.89155 2.37282 10.1651 2.71184 10.3299 3.10593C10.4946 3.50001 10.5438 3.93285 10.4715 4.35384ZM4.15258 6.43257L3.14242 5.84943C3.13714 5.84679 3.13255 5.84289 3.12913 5.83806C3.12571 5.83323 3.12352 5.82762 3.1228 5.82174V3.03213C3.12307 2.60489 3.24505 2.18654 3.47443 1.82609C3.70384 1.46563 4.03117 1.17798 4.41811 0.996792C4.80505 0.815607 5.23558 0.748392 5.65933 0.80301C6.08311 0.857628 6.48253 1.03182 6.81088 1.3052C6.79267 1.31514 6.76096 1.33265 6.7399 1.34542L4.35058 2.72555C4.29061 2.75963 4.24084 2.80907 4.20631 2.86878C4.17181 2.92848 4.15384 2.99631 4.15423 3.06525L4.15258 6.43257ZM4.70116 5.24973L6.0004 4.49934L7.29961 5.24925V6.74955L6.0004 7.49949L4.70116 6.74955V5.24973Z" })
40
- }), Qe = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
41
- component: Ze,
42
- ...e
43
- }), $e = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(O, { ...e }), et = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(b, { ...e }), tt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Se, { ...e }), nt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(B, { ...e }), rt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(F, { ...e }), it = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(oe, { ...e }), at = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(L, { ...e }), ot = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Pe, { ...e }), st = () => /* @__PURE__ */ (0, K.jsx)("svg", {
44
- viewBox: "0 0 12 12",
45
- focusable: "false",
46
- "data-icon": "drop-icon",
47
- width: "1em",
48
- height: "1em",
49
- fill: "currentColor",
50
- "aria-hidden": "true",
51
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M6 0L5.61832 0.458015C5.61832 0.458015 4.64123 1.6355 3.64886 3.09924C3.15268 3.83206 2.64123 4.63168 2.25955 5.40458C1.87787 6.17748 1.60306 6.91794 1.60306 7.60305C1.60306 10.0191 3.58397 12 6 12C8.41603 12 10.397 10.0191 10.397 7.60305C10.397 6.91794 10.1221 6.17748 9.74046 5.40458C9.35878 4.63168 8.84733 3.83206 8.35115 3.09924C7.35878 1.6355 6.38168 0.458015 6.38168 0.458015L6 0ZM6 1.57252C6.27291 1.91031 6.78436 2.50954 7.55726 3.64885C8.03817 4.35687 8.50382 5.1374 8.85497 5.84733C9.20611 6.55725 9.41985 7.21374 9.41985 7.60305C9.41985 9.48664 7.88359 11.0229 6 11.0229C4.11642 11.0229 2.58016 9.48664 2.58016 7.60305C2.58016 7.21374 2.7939 6.55725 3.14504 5.84733C3.49619 5.1374 3.96184 4.35687 4.44275 3.64885C5.21565 2.50954 5.7271 1.91031 6 1.57252ZM3.55726 7.60305C3.55726 8.94466 4.6584 10.0458 6 10.0458V9.0687C5.19084 9.0687 4.53436 8.41221 4.53436 7.60305H3.55726Z" })
52
- }), ct = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
53
- component: st,
54
- ...e
55
- }), lt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
56
- viewBox: "0 0 12 12",
57
- focusable: "false",
58
- "data-icon": "dark-white",
59
- width: "1em",
60
- height: "1em",
61
- fill: "currentColor",
62
- "aria-hidden": "true",
63
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M0 6C0 2.68629 2.68629 0 6 0C9.31339 0 12 2.68661 12 6C12 9.31339 9.31339 12 6 12C2.68629 12 0 9.31371 0 6ZM6 10.9821C8.75089 10.9821 10.9821 8.75089 10.9821 6C10.9821 3.24911 8.75089 1.01786 6 1.01786V10.9821Z" })
64
- }), ut = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
65
- component: lt,
66
- ...e
67
- }), dt = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
68
- viewBox: "0 0 12 12",
69
- focusable: "false",
70
- "data-icon": "min-width-icon",
71
- width: "1em",
72
- height: "1em",
73
- fill: "currentColor",
74
- "aria-hidden": "true",
75
- children: [
76
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M1.35714 1.07143H0.607143C0.548214 1.07143 0.5 1.11964 0.5 1.17857V1.92857C0.5 1.9875 0.548214 2.03571 0.607143 2.03571H1.35714C1.41607 2.03571 1.46429 1.9875 1.46429 1.92857V1.17857C1.46429 1.11964 1.41607 1.07143 1.35714 1.07143ZM1.35714 3.29464H0.607143C0.548214 3.29464 0.5 3.34286 0.5 3.40178V4.15178C0.5 4.21071 0.548214 4.25893 0.607143 4.25893H1.35714C1.41607 4.25893 1.46429 4.21071 1.46429 4.15178V3.40178C1.46429 3.34286 1.41607 3.29464 1.35714 3.29464ZM1.35714 7.74107H0.607143C0.548214 7.74107 0.5 7.78928 0.5 7.84821V8.59821C0.5 8.65714 0.548214 8.70536 0.607143 8.70536H1.35714C1.41607 8.70536 1.46429 8.65714 1.46429 8.59821V7.84821C1.46429 7.78928 1.41607 7.74107 1.35714 7.74107ZM1.35714 9.96428H0.607143C0.548214 9.96428 0.5 10.0125 0.5 10.0714V10.8214C0.5 10.8804 0.548214 10.9286 0.607143 10.9286H1.35714C1.41607 10.9286 1.46429 10.8804 1.46429 10.8214V10.0714C1.46429 10.0125 1.41607 9.96428 1.35714 9.96428ZM1.35714 5.51786H0.607143C0.548214 5.51786 0.5 5.56607 0.5 5.625V6.375C0.5 6.43393 0.548214 6.48214 0.607143 6.48214H1.35714C1.41607 6.48214 1.46429 6.43393 1.46429 6.375V5.625C1.46429 5.56607 1.41607 5.51786 1.35714 5.51786Z" }),
77
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M11.3571 1.07143H10.6071C10.5482 1.07143 10.5 1.11964 10.5 1.17857V1.92857C10.5 1.9875 10.5482 2.03571 10.6071 2.03571H11.3571C11.4161 2.03571 11.4643 1.9875 11.4643 1.92857V1.17857C11.4643 1.11964 11.4161 1.07143 11.3571 1.07143ZM11.3571 3.29464H10.6071C10.5482 3.29464 10.5 3.34286 10.5 3.40178V4.15178C10.5 4.21071 10.5482 4.25893 10.6071 4.25893H11.3571C11.4161 4.25893 11.4643 4.21071 11.4643 4.15178V3.40178C11.4643 3.34286 11.4161 3.29464 11.3571 3.29464ZM11.3571 7.74107H10.6071C10.5482 7.74107 10.5 7.78928 10.5 7.84821V8.59821C10.5 8.65714 10.5482 8.70536 10.6071 8.70536H11.3571C11.4161 8.70536 11.4643 8.65714 11.4643 8.59821V7.84821C11.4643 7.78928 11.4161 7.74107 11.3571 7.74107ZM11.3571 9.96428H10.6071C10.5482 9.96428 10.5 10.0125 10.5 10.0714V10.8214C10.5 10.8804 10.5482 10.9286 10.6071 10.9286H11.3571C11.4161 10.9286 11.4643 10.8804 11.4643 10.8214V10.0714C11.4643 10.0125 11.4161 9.96428 11.3571 9.96428ZM11.3571 5.51786H10.6071C10.5482 5.51786 10.5 5.56607 10.5 5.625V6.375C10.5 6.43393 10.5482 6.48214 10.6071 6.48214H11.3571C11.4161 6.48214 11.4643 6.43393 11.4643 6.375V5.625C11.4643 5.56607 11.4161 5.51786 11.3571 5.51786Z" }),
78
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M11 5.51786H8.20535V4.67679C8.20535 4.59644 8.1116 4.5509 8.04865 4.60045L6.33973 5.95045C6.32816 5.95939 6.3188 5.97086 6.31236 5.98397C6.30592 5.99709 6.30257 6.01151 6.30257 6.02612C6.30257 6.04074 6.30592 6.05516 6.31236 6.06827C6.3188 6.08139 6.32816 6.09286 6.33973 6.10179L8.04732 7.45179C8.11026 7.50135 8.20401 7.45715 8.20401 7.37545V6.48215H11V5.51786Z" }),
79
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M1 5.51786H3.79465V4.67679C3.79465 4.59644 3.8884 4.5509 3.95135 4.60045L5.66027 5.95045C5.67184 5.95939 5.6812 5.97086 5.68764 5.98397C5.69408 5.99709 5.69743 6.01151 5.69743 6.02612C5.69743 6.04074 5.69408 6.05516 5.68764 6.06827C5.6812 6.08139 5.67184 6.09286 5.66027 6.10179L3.95268 7.45179C3.88974 7.50135 3.79599 7.45715 3.79599 7.37545V6.48215H1V5.51786Z" })
80
- ]
81
- }), ft = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
82
- component: dt,
83
- ...e
84
- }), pt = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
85
- viewBox: "0 0 12 12",
86
- focusable: "false",
87
- "data-icon": "max-width-icon",
88
- width: "1em",
89
- height: "1em",
90
- fill: "currentColor",
91
- "aria-hidden": "true",
92
- children: [
93
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M1.35714 1.07143H0.607143C0.548214 1.07143 0.5 1.11964 0.5 1.17857V1.92857C0.5 1.9875 0.548214 2.03571 0.607143 2.03571H1.35714C1.41607 2.03571 1.46429 1.9875 1.46429 1.92857V1.17857C1.46429 1.11964 1.41607 1.07143 1.35714 1.07143ZM1.35714 3.29464H0.607143C0.548214 3.29464 0.5 3.34286 0.5 3.40178V4.15178C0.5 4.21071 0.548214 4.25893 0.607143 4.25893H1.35714C1.41607 4.25893 1.46429 4.21071 1.46429 4.15178V3.40178C1.46429 3.34286 1.41607 3.29464 1.35714 3.29464ZM1.35714 7.74107H0.607143C0.548214 7.74107 0.5 7.78928 0.5 7.84821V8.59821C0.5 8.65714 0.548214 8.70536 0.607143 8.70536H1.35714C1.41607 8.70536 1.46429 8.65714 1.46429 8.59821V7.84821C1.46429 7.78928 1.41607 7.74107 1.35714 7.74107ZM1.35714 9.96428H0.607143C0.548214 9.96428 0.5 10.0125 0.5 10.0714V10.8214C0.5 10.8804 0.548214 10.9286 0.607143 10.9286H1.35714C1.41607 10.9286 1.46429 10.8804 1.46429 10.8214V10.0714C1.46429 10.0125 1.41607 9.96428 1.35714 9.96428ZM1.35714 5.51786H0.607143C0.548214 5.51786 0.5 5.56607 0.5 5.625V6.375C0.5 6.43393 0.548214 6.48214 0.607143 6.48214H1.35714C1.41607 6.48214 1.46429 6.43393 1.46429 6.375V5.625C1.46429 5.56607 1.41607 5.51786 1.35714 5.51786Z" }),
94
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M11.3571 1.07143H10.6071C10.5482 1.07143 10.5 1.11964 10.5 1.17857V1.92857C10.5 1.9875 10.5482 2.03571 10.6071 2.03571H11.3571C11.4161 2.03571 11.4643 1.9875 11.4643 1.92857V1.17857C11.4643 1.11964 11.4161 1.07143 11.3571 1.07143ZM11.3571 3.29464H10.6071C10.5482 3.29464 10.5 3.34286 10.5 3.40178V4.15178C10.5 4.21071 10.5482 4.25893 10.6071 4.25893H11.3571C11.4161 4.25893 11.4643 4.21071 11.4643 4.15178V3.40178C11.4643 3.34286 11.4161 3.29464 11.3571 3.29464ZM11.3571 7.74107H10.6071C10.5482 7.74107 10.5 7.78928 10.5 7.84821V8.59821C10.5 8.65714 10.5482 8.70536 10.6071 8.70536H11.3571C11.4161 8.70536 11.4643 8.65714 11.4643 8.59821V7.84821C11.4643 7.78928 11.4161 7.74107 11.3571 7.74107ZM11.3571 9.96428H10.6071C10.5482 9.96428 10.5 10.0125 10.5 10.0714V10.8214C10.5 10.8804 10.5482 10.9286 10.6071 10.9286H11.3571C11.4161 10.9286 11.4643 10.8804 11.4643 10.8214V10.0714C11.4643 10.0125 11.4161 9.96428 11.3571 9.96428ZM11.3571 5.51786H10.6071C10.5482 5.51786 10.5 5.56607 10.5 5.625V6.375C10.5 6.43393 10.5482 6.48214 10.6071 6.48214H11.3571C11.4161 6.48214 11.4643 6.43393 11.4643 6.375V5.625C11.4643 5.56607 11.4161 5.51786 11.3571 5.51786Z" }),
95
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M7.95133 4.54822L9.66026 5.89688C9.70848 5.93572 9.70848 6.01072 9.65758 6.04956L7.94999 7.39956C7.88705 7.44911 7.7933 7.40358 7.7933 7.32322V6.48215H4.20401V7.37545C4.20401 7.45715 4.11026 7.50135 4.04732 7.45179L2.33973 6.10179C2.32816 6.09286 2.3188 6.08139 2.31236 6.06827C2.30592 6.05516 2.30257 6.04074 2.30257 6.02612C2.30257 6.01151 2.30592 5.99709 2.31236 5.98397C2.3188 5.97085 2.32816 5.95939 2.33973 5.95045L4.04865 4.60045C4.1116 4.5509 4.20535 4.59644 4.20535 4.67679V5.51786H7.79464V4.62456C7.79459 4.60637 7.79967 4.58853 7.8093 4.57309C7.81892 4.55766 7.8327 4.54524 7.84906 4.53728C7.86541 4.52931 7.88368 4.52611 7.90177 4.52805C7.91986 4.52998 7.93703 4.53697 7.95133 4.54822Z" })
96
- ]
97
- }), mt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
98
- component: pt,
99
- ...e
100
- }), ht = () => /* @__PURE__ */ (0, K.jsx)("svg", {
101
- viewBox: "0 0 12 12",
102
- focusable: "false",
103
- "data-icon": "bg-position-horizontal",
104
- width: "1em",
105
- height: "1em",
106
- fill: "currentColor",
107
- "aria-hidden": "true",
108
- children: /* @__PURE__ */ (0, K.jsxs)("g", { children: [
109
- /* @__PURE__ */ (0, K.jsx)("path", {
110
- opacity: "0.3",
111
- d: "M10.9286 0.85734H1.07142C0.834371 0.85734 0.642853 1.04886 0.642853 1.28591V11.1431C0.642853 11.3801 0.834371 11.5716 1.07142 11.5716H2.5958C2.65473 11.5716 2.70295 11.5234 2.70295 11.4645V10.7145C2.70295 10.6556 2.65473 10.6073 2.5958 10.6073H1.60714V1.82163H10.3929V5.10734C10.3929 5.16627 10.4411 5.21448 10.5 5.21448H11.25C11.3089 5.21448 11.3571 5.16627 11.3571 5.10734V1.28591C11.3571 1.04886 11.1656 0.85734 10.9286 0.85734Z"
112
- }),
113
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M10.9286 5.95536H3.85715C3.62009 5.95536 3.42857 6.14688 3.42857 6.38393V10.9286C3.42857 11.1656 3.62009 11.3571 3.85715 11.3571H10.9286C11.1656 11.3571 11.3571 11.1656 11.3571 10.9286V6.38393C11.3571 6.14688 11.1656 5.95536 10.9286 5.95536ZM10.3393 10.3393H4.44643V6.97322H10.3393V10.3393Z" }),
114
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M3.15129 3.31274H6.94594V2.47167C6.94594 2.39132 7.03969 2.34578 7.10264 2.39533L8.81157 3.74533C8.82313 3.75427 8.83249 3.76574 8.83893 3.77885C8.84537 3.79197 8.84872 3.80639 8.84872 3.821C8.84872 3.83562 8.84537 3.85004 8.83893 3.86315C8.83249 3.87627 8.82313 3.88774 8.81157 3.89667L7.10398 5.24667C7.04103 5.29623 6.94728 5.25203 6.94728 5.17033V4.27703H3.15129V3.31274Z" })
115
- ] })
116
- }), gt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
117
- component: ht,
118
- ...e
119
- }), _t = () => /* @__PURE__ */ (0, K.jsx)("svg", {
120
- viewBox: "0 0 12 12",
121
- focusable: "false",
122
- "data-icon": "bg-position-vertical",
123
- width: "1em",
124
- height: "1em",
125
- fill: "currentColor",
126
- "aria-hidden": "true",
127
- children: /* @__PURE__ */ (0, K.jsxs)("g", { children: [
128
- /* @__PURE__ */ (0, K.jsx)("path", {
129
- opacity: "0.3",
130
- d: "M0.642854 11.143L0.642854 1.2859C0.642854 1.04885 0.834372 0.85733 1.07143 0.85733L10.9286 0.857331C11.1656 0.857331 11.3571 1.04885 11.3571 1.2859L11.3571 2.81028C11.3571 2.86921 11.3089 2.91742 11.25 2.91742L10.5 2.91742C10.4411 2.91742 10.3929 2.86921 10.3929 2.81028L10.3929 1.82162L1.60714 1.82162L1.60714 10.6073L4.89285 10.6073C4.95178 10.6073 5 10.6555 5 10.7145L5 11.4645C5 11.5234 4.95178 11.5716 4.89285 11.5716L1.07143 11.5716C0.834372 11.5716 0.642854 11.3801 0.642854 11.143Z"
131
- }),
132
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M5.74087 11.1431L5.74088 4.07162C5.74088 3.83457 5.93239 3.64305 6.16945 3.64305L10.7141 3.64305C10.9511 3.64305 11.1427 3.83457 11.1427 4.07162L11.1427 11.1431C11.1427 11.3801 10.9511 11.5716 10.7141 11.5716L6.16945 11.5716C5.93239 11.5716 5.74087 11.3801 5.74087 11.1431ZM10.1248 10.5538L10.1248 4.66091L6.75873 4.66091L6.75873 10.5538L10.1248 10.5538Z" }),
133
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M3.09827 3.36576L3.09827 7.1604L2.2572 7.1604C2.17684 7.1604 2.1313 7.25415 2.18086 7.3171L3.53086 9.02603C3.53979 9.03759 3.55126 9.04695 3.56438 9.0534C3.57749 9.05984 3.59191 9.06319 3.60653 9.06319C3.62114 9.06319 3.63556 9.05984 3.64868 9.0534C3.66179 9.04695 3.67326 9.03759 3.6822 9.02603L5.0322 7.31844C5.08175 7.25549 5.03755 7.16174 4.95586 7.16174L4.06255 7.16174L4.06255 3.36576L3.09827 3.36576Z" })
134
- ] })
135
- }), vt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
136
- component: _t,
137
- ...e
138
- }), yt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
139
- viewBox: "0 0 12 12",
140
- focusable: "false",
141
- "data-icon": "up-to-icon",
142
- width: "1em",
143
- height: "1em",
144
- fill: "currentColor",
145
- "aria-hidden": "true",
146
- children: /* @__PURE__ */ (0, K.jsxs)("g", { children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M11.3571 1.07142L11.3571 10.9286C11.3571 11.1656 11.1656 11.3571 10.9286 11.3571H1.07142C0.834364 11.3571 0.642846 11.1656 0.642846 10.9286V6.10714C0.642846 6.04821 0.69106 6 0.749989 6H1.49999C1.55892 6 1.60713 6.04821 1.60713 6.10714V10.3929H10.3928L10.3928 1.60714L6.10713 1.60714C6.0482 1.60714 5.99999 1.55892 5.99999 1.5V0.749995C5.99999 0.691067 6.0482 0.642853 6.10713 0.642853L10.9286 0.642853C11.1656 0.642853 11.3571 0.834371 11.3571 1.07142Z" }), /* @__PURE__ */ (0, K.jsx)("path", { d: "M1.80978 2.53298L1.11067 3.23209C1.09644 3.24625 1.07852 3.25614 1.05895 3.26062C1.03938 3.2651 1.01894 3.264 0.999964 3.25744C0.980987 3.25088 0.964231 3.23913 0.951603 3.22352C0.938975 3.20791 0.93098 3.18907 0.928529 3.16914L0.647279 0.766466C0.639243 0.698162 0.696833 0.639233 0.766476 0.647269L3.16916 0.928519C3.25755 0.939233 3.29505 1.04772 3.2321 1.11066L2.53032 1.81245L5.96156 5.2437C6.00308 5.28522 6.00308 5.35352 5.96156 5.39504L5.39371 5.96289C5.35219 6.00441 5.28389 6.00441 5.24237 5.96289L1.80978 2.53298Z" })] })
147
- }), bt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
148
- component: yt,
149
- ...e
150
- }), xt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
151
- viewBox: "0 0 12 12",
152
- focusable: "false",
153
- "data-icon": "vertical-offset-icon",
154
- width: "1em",
155
- height: "1em",
156
- fill: "currentColor",
157
- "aria-hidden": "true",
158
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M4.92856 10.4987L4.92856 1.17859C4.92856 1.11966 4.88034 1.07144 4.82141 1.07144L4.01784 1.07144C3.95891 1.07144 3.9107 1.11966 3.9107 1.17859L3.9107 9.28394L1.45981 7.35135C1.39016 7.29644 1.2857 7.346 1.2857 7.43573L1.2857 8.40671C1.2857 8.47234 1.31516 8.53394 1.3674 8.57546L4.23481 10.8362C4.51606 11.0572 4.92856 10.8576 4.92856 10.4987ZM8.08927 10.8214L8.08927 2.71609L10.5402 4.64868C10.6098 4.70359 10.7143 4.65403 10.7143 4.5643L10.7143 3.59332C10.7143 3.52769 10.6848 3.46609 10.6326 3.42457L7.76516 1.16385C7.48391 0.942871 7.07141 1.14243 7.07141 1.50001L7.07141 10.8214C7.07141 10.8804 7.11963 10.9286 7.17856 10.9286L7.98213 10.9286C8.04106 10.9286 8.08927 10.8804 8.08927 10.8214Z" })
159
- }), St = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
160
- component: xt,
161
- ...e
162
- }), Ct = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ue, { ...e }), wt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(M, { ...e }), Tt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(de, { ...e }), Et = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(A, { ...e }), Dt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(E, { ...e }), Ot = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(v, { ...e }), kt = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
163
- viewBox: "0 0 12 12",
164
- focusable: "false",
165
- "data-icon": "mixed-view-icon",
166
- width: "1em",
167
- height: "1em",
168
- fill: "currentColor",
169
- "aria-hidden": "true",
170
- children: [
171
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M12.0357 11.6071L12.0357 4.42857C12.0357 4.19152 11.8442 4 11.6071 4L7.42857 4C7.19151 4 7 4.19152 7 4.42857L7 11.6071C7 11.8442 7.19151 12.0357 7.42857 12.0357L11.6071 12.0357C11.8442 12.0357 12.0357 11.8442 12.0357 11.6071ZM8.01785 11.0179L8.01785 5.01786L11.0178 5.01786L11.0178 11.0179L8.01785 11.0179Z" }),
172
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M6.03571 11.6071L6.0357 6.42857C6.0357 6.19152 5.84419 6 5.60713 6L0.428567 6C0.191514 6 -4.29991e-06 6.19152 -4.31027e-06 6.42857L-4.05979e-06 11.6071C-4.07016e-06 11.8442 0.191514 12.0357 0.428568 12.0357L5.60713 12.0357C5.84419 12.0357 6.03571 11.8442 6.03571 11.6071ZM1.01785 11.0179L1.01785 7.01786L5.01785 7.01786L5.01785 11.0179L1.01785 11.0179Z" }),
173
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M5.99999 5.03571L0.428572 5.03571C0.191518 5.03571 0 4.84419 0 4.60714L2.45825e-06 0.428573C2.43753e-06 0.191519 0.191521 0 0.428574 0H7.60714C7.84419 0 8.03571 0.191518 8.03571 0.428572L8.03571 3H7.01785L7.01786 1.01786L1.01786 1.01786L1.01786 4.01785L5.99999 4.01785V5.03571Z" })
174
- ]
175
- }), At = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
176
- component: kt,
177
- ...e
178
- }), jt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
179
- viewBox: "0 0 12 12",
180
- focusable: "false",
181
- "data-icon": "landscape-view",
182
- width: "1em",
183
- height: "1em",
184
- fill: "currentColor",
185
- "aria-hidden": "true",
186
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M0.392859 10.0357L11.5714 10.0357C11.8085 10.0357 12 9.84419 12 9.60714L12 2.42858C12 2.19152 11.8085 2 11.5714 2L0.392862 2C0.155808 2 -0.0357096 2.19152 -0.0357097 2.42857L-0.0357132 9.60714C-0.0357132 9.84419 0.155805 10.0357 0.392859 10.0357ZM0.982149 3.01786L10.9821 3.01786L10.9821 9.01786L0.982145 9.01786L0.982149 3.01786Z" })
187
- }), Mt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
188
- component: jt,
189
- ...e
190
- }), Nt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
191
- viewBox: "0 0 12 12",
192
- focusable: "false",
193
- "data-icon": "portrait-view",
194
- width: "1em",
195
- height: "1em",
196
- fill: "currentColor",
197
- "aria-hidden": "true",
198
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M10 11.6071L10 0.428574C10 0.191521 9.80848 2.46721e-06 9.57143 2.45684e-06L2.39286 -3.32519e-07C2.15581 -3.42881e-07 1.96429 0.191518 1.96429 0.428571L1.96429 11.6071C1.96429 11.8442 2.15581 12.0357 2.39286 12.0357L9.57143 12.0357C9.80848 12.0357 10 11.8442 10 11.6071ZM2.98215 11.0179L2.98215 1.01786L8.98214 1.01786L8.98214 11.0179L2.98215 11.0179Z" })
199
- }), Pt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
200
- component: Nt,
201
- ...e
202
- }), Ft = () => /* @__PURE__ */ (0, K.jsx)("svg", {
203
- viewBox: "0 0 12 12",
204
- focusable: "false",
205
- "data-icon": "square-view",
206
- width: "1em",
207
- height: "1em",
208
- fill: "currentColor",
209
- "aria-hidden": "true",
210
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M1 1.42857L1 10.5893C1 10.8263 1.19152 11.0179 1.42857 11.0179L10.5605 11.0179C10.7976 11.0179 10.9891 10.8263 10.9891 10.5893L10.9891 1.42857C10.9891 1.19151 10.7976 0.999997 10.5605 0.999997L1.42857 0.999997C1.19152 0.999997 1 1.19151 1 1.42857ZM9.97123 2.01785L9.97123 10L2.01786 10L2.01786 2.01785L9.97123 2.01785Z" })
211
- }), It = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
212
- component: Ft,
213
- ...e
214
- }), Lt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ye, { ...e }), Rt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Re, { ...e }), zt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
215
- viewBox: "0 0 12 12",
216
- focusable: "false",
217
- "data-icon": "crescent-icon",
218
- width: "1em",
219
- height: "1em",
220
- fill: "currentColor",
221
- "aria-hidden": "true",
222
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M6 1C6.112 1 6.22266 1.00383 6.332 1.0115C6.11066 1.48817 6 1.98433 6 2.5C6 2.974 6.0925 3.42717 6.2775 3.8595C6.4625 4.29183 6.71116 4.66417 7.0235 4.9765C7.33583 5.28883 7.70816 5.5375 8.1405 5.7225C8.57283 5.9075 9.026 6 9.5 6C10.0157 6 10.5118 5.88933 10.9885 5.668C10.9962 5.77733 11 5.888 11 6C11 6.453 10.9402 6.89567 10.8205 7.328C10.7008 7.76033 10.5335 8.1595 10.3185 8.5255C10.1035 8.8915 9.8425 9.22816 9.5355 9.5355C9.2285 9.84283 8.89183 10.1038 8.5255 10.3185C8.15916 10.5332 7.76 10.7005 7.328 10.8205C6.896 10.9405 6.45333 11.0003 6 11C5.54666 10.9997 5.104 10.9398 4.672 10.8205C4.24 10.7012 3.84083 10.5338 3.4745 10.3185C3.10817 10.1032 2.7715 9.84216 2.4645 9.5355C2.1575 9.22883 1.8965 8.89216 1.6815 8.5255C1.4665 8.15883 1.29917 7.75967 1.1795 7.328C1.05983 6.89633 1 6.45366 1 6C1 5.54633 1.05983 5.10367 1.1795 4.672C1.29917 4.24033 1.4665 3.84117 1.6815 3.4745C1.8965 3.10783 2.1575 2.77117 2.4645 2.4645C2.7715 2.15783 3.10817 1.89683 3.4745 1.6815C3.84083 1.46617 4.24 1.29883 4.672 1.1795C5.104 1.06017 5.54666 1.00033 6 1ZM5.0155 2.121C4.58583 2.23033 4.1855 2.40733 3.8145 2.652C3.4435 2.89667 3.1245 3.187 2.8575 3.523C2.5905 3.859 2.38083 4.24117 2.2285 4.6695C2.07617 5.09783 2 5.54117 2 5.9995C2 6.54116 2.1055 7.05866 2.3165 7.552C2.5275 8.04533 2.812 8.47116 3.17 8.8295C3.528 9.18783 3.95383 9.47233 4.4475 9.683C4.94116 9.89366 5.45866 9.99916 6 9.9995C6.45833 9.9995 6.90166 9.92333 7.33 9.771C7.75833 9.61866 8.1405 9.409 8.4765 9.142C8.8125 8.875 9.10283 8.556 9.3475 8.185C9.59216 7.814 9.76916 7.41366 9.8785 6.984C9.7665 6.99433 9.64016 6.9995 9.4995 6.9995C8.89016 6.9995 8.30816 6.88033 7.7535 6.642C7.19883 6.40366 6.72033 6.08333 6.318 5.681C5.91566 5.27867 5.59533 4.80017 5.357 4.2455C5.11867 3.69083 4.9995 3.10883 4.9995 2.4995C4.9995 2.35883 5.00516 2.233 5.0155 2.121Z" })
223
- }), Bt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
224
- component: zt,
225
- ...e
226
- }), Vt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
227
- viewBox: "0 0 12 12",
228
- focusable: "false",
229
- "data-icon": "vimeo-icon",
230
- width: "1em",
231
- height: "1em",
232
- fill: "currentColor",
233
- "aria-hidden": "true",
234
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M10.9952 3.66719C10.9513 4.59967 10.2888 5.87689 9.00665 7.49794C7.68113 9.19101 6.55939 10.0376 5.64191 10.0376C5.07348 10.0376 4.59281 9.52102 4.19988 8.48818L3.41305 5.64743C3.12152 4.61411 2.80855 4.09732 2.47363 4.09732C2.40051 4.09732 2.14554 4.24829 1.70874 4.54983L1.25 3.96878C1.73068 3.55248 2.20404 3.13609 2.6701 2.72027C3.31116 2.1748 3.79184 1.88809 4.11213 1.85928C4.86971 1.78774 5.33576 2.29679 5.51077 3.38725C5.69992 4.56414 5.83106 5.29554 5.90419 5.58268C6.12259 6.55838 6.36293 7.04614 6.6252 7.04614C6.82898 7.04614 7.13513 6.73064 7.54268 6.09922C7.95072 5.46781 8.16913 4.98707 8.19838 4.65719C8.25639 4.11172 8.03799 3.83953 7.54268 3.83953C7.30966 3.83953 7.06932 3.88961 6.82167 3.98997C7.30235 2.45487 8.22031 1.70847 9.57508 1.75169C10.5798 1.7805 11.0537 2.41875 10.9952 3.66719Z" })
235
- }), Ht = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
236
- component: Vt,
237
- ...e
238
- }), Ut = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(z, { ...e }), Wt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Le, { ...e }), Gt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
239
- viewBox: "0 0 12 12",
240
- focusable: "false",
241
- "data-icon": "blur-icon",
242
- width: "1em",
243
- height: "1em",
244
- fill: "currentColor",
245
- "aria-hidden": "true",
246
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M0.326321 7.56842C0.235089 7.56842 0.157895 7.53684 0.0947368 7.47368C0.0315789 7.41052 0 7.33333 0 7.24211C0 7.15088 0.0315789 7.07368 0.0947368 7.01053C0.157895 6.94737 0.235089 6.91579 0.326321 6.91579C0.417542 6.91579 0.494731 6.94737 0.557889 7.01053C0.621047 7.07368 0.652626 7.15088 0.652626 7.24211C0.652626 7.33333 0.621047 7.41052 0.557889 7.47368C0.494731 7.53684 0.417542 7.56842 0.326321 7.56842ZM0.326321 5.08421C0.235089 5.08421 0.157895 5.05263 0.0947368 4.98947C0.0315789 4.92632 0 4.84912 0 4.75789C0 4.66667 0.0315789 4.58948 0.0947368 4.52632C0.157895 4.46316 0.235089 4.43158 0.326321 4.43158C0.417542 4.43158 0.494731 4.46316 0.557889 4.52632C0.621047 4.58948 0.652626 4.66667 0.652626 4.75789C0.652626 4.84912 0.621047 4.92632 0.557889 4.98947C0.494731 5.05263 0.417542 5.08421 0.326321 5.08421ZM2.21163 10.4C2.03897 10.4 1.89386 10.3416 1.77632 10.2248C1.65877 10.108 1.59999 9.96325 1.59999 9.79058C1.59999 9.61792 1.6584 9.47281 1.77521 9.35526C1.89201 9.23772 2.03675 9.17894 2.20942 9.17894C2.38208 9.17894 2.52719 9.23735 2.64474 9.35416C2.76228 9.47096 2.82106 9.61569 2.82106 9.78837C2.82106 9.96103 2.76265 10.1061 2.64584 10.2237C2.52904 10.3412 2.38431 10.4 2.21163 10.4ZM2.21163 7.85263C2.03897 7.85263 1.89386 7.79423 1.77632 7.67743C1.65877 7.56062 1.59999 7.41588 1.59999 7.24322C1.59999 7.07054 1.6584 6.92544 1.77521 6.8079C1.89201 6.69035 2.03675 6.63158 2.20942 6.63158C2.38208 6.63158 2.52719 6.68998 2.64474 6.80678C2.76228 6.92359 2.82106 7.06833 2.82106 7.24099C2.82106 7.41366 2.76265 7.55877 2.64584 7.67632C2.52904 7.79386 2.38431 7.85263 2.21163 7.85263ZM2.21163 5.36842C2.03897 5.36842 1.89386 5.31002 1.77632 5.19322C1.65877 5.07641 1.59999 4.93167 1.59999 4.75901C1.59999 4.58634 1.6584 4.44123 1.77521 4.32368C1.89201 4.20614 2.03675 4.14737 2.20942 4.14737C2.38208 4.14737 2.52719 4.20577 2.64474 4.32257C2.76228 4.43938 2.82106 4.58412 2.82106 4.75678C2.82106 4.92946 2.76265 5.07456 2.64584 5.1921C2.52904 5.30965 2.38431 5.36842 2.21163 5.36842ZM2.21163 2.82106C2.03897 2.82106 1.89386 2.76265 1.77632 2.64584C1.65877 2.52904 1.59999 2.38431 1.59999 2.21163C1.59999 2.03897 1.6584 1.89386 1.77521 1.77632C1.89201 1.65877 2.03675 1.59999 2.20942 1.59999C2.38208 1.59999 2.52719 1.6584 2.64474 1.77521C2.76228 1.89201 2.82106 2.03675 2.82106 2.20942C2.82106 2.38208 2.76265 2.52719 2.64584 2.64474C2.52904 2.76228 2.38431 2.82106 2.21163 2.82106ZM4.75789 8.12632C4.51228 8.12632 4.30351 8.04035 4.13158 7.86842C3.95965 7.69649 3.87368 7.48772 3.87368 7.24211C3.87368 6.99649 3.95965 6.78772 4.13158 6.61579C4.30351 6.44386 4.51228 6.3579 4.75789 6.3579C5.00351 6.3579 5.21228 6.44386 5.38421 6.61579C5.55614 6.78772 5.6421 6.99649 5.6421 7.24211C5.6421 7.48772 5.55614 7.69649 5.38421 7.86842C5.21228 8.04035 5.00351 8.12632 4.75789 8.12632ZM4.75789 5.6421C4.51228 5.6421 4.30351 5.55614 4.13158 5.38421C3.95965 5.21228 3.87368 5.00351 3.87368 4.75789C3.87368 4.51228 3.95965 4.30351 4.13158 4.13158C4.30351 3.95965 4.51228 3.87368 4.75789 3.87368C5.00351 3.87368 5.21228 3.95965 5.38421 4.13158C5.55614 4.30351 5.6421 4.51228 5.6421 4.75789C5.6421 5.00351 5.55614 5.21228 5.38421 5.38421C5.21228 5.55614 5.00351 5.6421 4.75789 5.6421ZM4.75901 10.4C4.58634 10.4 4.44123 10.3416 4.32368 10.2248C4.20614 10.108 4.14737 9.96325 4.14737 9.79058C4.14737 9.61792 4.20577 9.47281 4.32257 9.35526C4.43938 9.23772 4.58412 9.17894 4.75678 9.17894C4.92946 9.17894 5.07456 9.23735 5.1921 9.35416C5.30965 9.47096 5.36842 9.61569 5.36842 9.78837C5.36842 9.96103 5.31002 10.1061 5.19322 10.2237C5.07641 10.3412 4.93167 10.4 4.75901 10.4ZM4.75901 2.82106C4.58634 2.82106 4.44123 2.76265 4.32368 2.64584C4.20614 2.52904 4.14737 2.38431 4.14737 2.21163C4.14737 2.03897 4.20577 1.89386 4.32257 1.77632C4.43938 1.65877 4.58412 1.59999 4.75678 1.59999C4.92946 1.59999 5.07456 1.6584 5.1921 1.77521C5.30965 1.89201 5.36842 2.03675 5.36842 2.20942C5.36842 2.38208 5.31002 2.52719 5.19322 2.64474C5.07641 2.76228 4.93167 2.82106 4.75901 2.82106ZM4.75789 12C4.66667 12 4.58948 11.9684 4.52632 11.9053C4.46316 11.8421 4.43158 11.7649 4.43158 11.6737C4.43158 11.5825 4.46316 11.5053 4.52632 11.4421C4.58948 11.379 4.66667 11.3474 4.75789 11.3474C4.84912 11.3474 4.92632 11.379 4.98947 11.4421C5.05263 11.5053 5.08421 11.5825 5.08421 11.6737C5.08421 11.7649 5.05263 11.8421 4.98947 11.9053C4.92632 11.9684 4.84912 12 4.75789 12ZM4.75789 0.652626C4.66667 0.652626 4.58948 0.621047 4.52632 0.55789C4.46316 0.494732 4.43158 0.417542 4.43158 0.326321C4.43158 0.235089 4.46316 0.157895 4.52632 0.0947368C4.58948 0.0315789 4.66667 0 4.75789 0C4.84912 0 4.92632 0.0315789 4.98947 0.0947368C5.05263 0.157895 5.08421 0.235089 5.08421 0.326321C5.08421 0.417542 5.05263 0.494732 4.98947 0.55789C4.92632 0.621047 4.84912 0.652626 4.75789 0.652626ZM7.24211 8.12632C6.99649 8.12632 6.78772 8.04035 6.61579 7.86842C6.44386 7.69649 6.3579 7.48772 6.3579 7.24211C6.3579 6.99649 6.44386 6.78772 6.61579 6.61579C6.78772 6.44386 6.99649 6.3579 7.24211 6.3579C7.48772 6.3579 7.69649 6.44386 7.86842 6.61579C8.04035 6.78772 8.12632 6.99649 8.12632 7.24211C8.12632 7.48772 8.04035 7.69649 7.86842 7.86842C7.69649 8.04035 7.48772 8.12632 7.24211 8.12632ZM7.24211 5.6421C6.99649 5.6421 6.78772 5.55614 6.61579 5.38421C6.44386 5.21228 6.3579 5.00351 6.3579 4.75789C6.3579 4.51228 6.44386 4.30351 6.61579 4.13158C6.78772 3.95965 6.99649 3.87368 7.24211 3.87368C7.48772 3.87368 7.69649 3.95965 7.86842 4.13158C8.04035 4.30351 8.12632 4.51228 8.12632 4.75789C8.12632 5.00351 8.04035 5.21228 7.86842 5.38421C7.69649 5.55614 7.48772 5.6421 7.24211 5.6421ZM7.24322 10.4C7.07054 10.4 6.92544 10.3416 6.8079 10.2248C6.69035 10.108 6.63158 9.96325 6.63158 9.79058C6.63158 9.61792 6.68998 9.47281 6.80678 9.35526C6.92359 9.23772 7.06833 9.17894 7.24099 9.17894C7.41366 9.17894 7.55877 9.23735 7.67632 9.35416C7.79386 9.47096 7.85263 9.61569 7.85263 9.78837C7.85263 9.96103 7.79423 10.1061 7.67743 10.2237C7.56062 10.3412 7.41588 10.4 7.24322 10.4ZM7.24322 2.82106C7.07054 2.82106 6.92544 2.76265 6.8079 2.64584C6.69035 2.52904 6.63158 2.38431 6.63158 2.21163C6.63158 2.03897 6.68998 1.89386 6.80678 1.77632C6.92359 1.65877 7.06833 1.59999 7.24099 1.59999C7.41366 1.59999 7.55877 1.6584 7.67632 1.77521C7.79386 1.89201 7.85263 2.03675 7.85263 2.20942C7.85263 2.38208 7.79423 2.52719 7.67743 2.64474C7.56062 2.76228 7.41588 2.82106 7.24322 2.82106ZM7.30527 12C7.21404 12 7.13684 11.9684 7.07368 11.9053C7.01053 11.8421 6.97895 11.7649 6.97895 11.6737C6.97895 11.5825 7.01053 11.5053 7.07368 11.4421C7.13684 11.379 7.21404 11.3474 7.30527 11.3474C7.39649 11.3474 7.47368 11.379 7.53684 11.4421C7.59999 11.5053 7.63157 11.5825 7.63157 11.6737C7.63157 11.7649 7.59999 11.8421 7.53684 11.9053C7.47368 11.9684 7.39649 12 7.30527 12ZM7.24211 0.652626C7.15088 0.652626 7.07368 0.621047 7.01053 0.55789C6.94737 0.494732 6.91579 0.417542 6.91579 0.326321C6.91579 0.235089 6.94737 0.157895 7.01053 0.0947368C7.07368 0.0315789 7.15088 0 7.24211 0C7.33333 0 7.41052 0.0315789 7.47368 0.0947368C7.53684 0.157895 7.56842 0.235089 7.56842 0.326321C7.56842 0.417542 7.53684 0.494732 7.47368 0.55789C7.41052 0.621047 7.33333 0.652626 7.24211 0.652626ZM9.79058 10.4C9.61792 10.4 9.47281 10.3416 9.35526 10.2248C9.23772 10.108 9.17894 9.96325 9.17894 9.79058C9.17894 9.61792 9.23735 9.47281 9.35416 9.35526C9.47096 9.23772 9.61569 9.17894 9.78837 9.17894C9.96103 9.17894 10.1061 9.23735 10.2237 9.35416C10.3412 9.47096 10.4 9.61569 10.4 9.78837C10.4 9.96103 10.3416 10.1061 10.2248 10.2237C10.108 10.3412 9.96325 10.4 9.79058 10.4ZM9.79058 7.85263C9.61792 7.85263 9.47281 7.79423 9.35526 7.67743C9.23772 7.56062 9.17894 7.41588 9.17894 7.24322C9.17894 7.07054 9.23735 6.92544 9.35416 6.8079C9.47096 6.69035 9.61569 6.63158 9.78837 6.63158C9.96103 6.63158 10.1061 6.68998 10.2237 6.80678C10.3412 6.92359 10.4 7.06833 10.4 7.24099C10.4 7.41366 10.3416 7.55877 10.2248 7.67632C10.108 7.79386 9.96325 7.85263 9.79058 7.85263ZM9.79058 5.36842C9.61792 5.36842 9.47281 5.31002 9.35526 5.19322C9.23772 5.07641 9.17894 4.93167 9.17894 4.75901C9.17894 4.58634 9.23735 4.44123 9.35416 4.32368C9.47096 4.20614 9.61569 4.14737 9.78837 4.14737C9.96103 4.14737 10.1061 4.20577 10.2237 4.32257C10.3412 4.43938 10.4 4.58412 10.4 4.75678C10.4 4.92946 10.3416 5.07456 10.2248 5.1921C10.108 5.30965 9.96325 5.36842 9.79058 5.36842ZM9.79058 2.82106C9.61792 2.82106 9.47281 2.76265 9.35526 2.64584C9.23772 2.52904 9.17894 2.38431 9.17894 2.21163C9.17894 2.03897 9.23735 1.89386 9.35416 1.77632C9.47096 1.65877 9.61569 1.59999 9.78837 1.59999C9.96103 1.59999 10.1061 1.6584 10.2237 1.77521C10.3412 1.89201 10.4 2.03675 10.4 2.20942C10.4 2.38208 10.3416 2.52719 10.2248 2.64474C10.108 2.76228 9.96325 2.82106 9.79058 2.82106ZM11.6737 7.56842C11.5825 7.56842 11.5053 7.53684 11.4421 7.47368C11.379 7.41052 11.3474 7.33333 11.3474 7.24211C11.3474 7.15088 11.379 7.07368 11.4421 7.01053C11.5053 6.94737 11.5825 6.91579 11.6737 6.91579C11.7649 6.91579 11.8421 6.94737 11.9053 7.01053C11.9684 7.07368 12 7.15088 12 7.24211C12 7.33333 11.9684 7.41052 11.9053 7.47368C11.8421 7.53684 11.7649 7.56842 11.6737 7.56842ZM11.6737 5.08421C11.5825 5.08421 11.5053 5.05263 11.4421 4.98947C11.379 4.92632 11.3474 4.84912 11.3474 4.75789C11.3474 4.66667 11.379 4.58948 11.4421 4.52632C11.5053 4.46316 11.5825 4.43158 11.6737 4.43158C11.7649 4.43158 11.8421 4.46316 11.9053 4.52632C11.9684 4.58948 12 4.66667 12 4.75789C12 4.84912 11.9684 4.92632 11.9053 4.98947C11.8421 5.05263 11.7649 5.08421 11.6737 5.08421Z" })
247
- }), Kt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
248
- component: Gt,
249
- ...e
250
- }), qt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
251
- viewBox: "0 0 12 12",
252
- focusable: "false",
253
- "data-icon": "zoom-out-map",
254
- width: "1em",
255
- height: "1em",
256
- fill: "currentColor",
257
- "aria-hidden": "true",
258
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M0.650002 11.35V7.88241H1.64073V9.65585L3.7213 7.57528L4.42472 8.2787L2.34415 10.3593H4.11759V11.35H0.650002ZM7.88241 11.35V10.3593H9.65585L7.58519 8.28861L8.28861 7.58519L10.3593 9.65585V7.88241H11.35V11.35H7.88241ZM3.71139 4.41481L1.64073 2.34415V4.11759H0.650002V0.65H4.11759V1.64073H2.34415L4.41481 3.71139L3.71139 4.41481ZM8.28861 4.41481L7.58519 3.71139L9.65585 1.64073H7.88241V0.65H11.35V4.11759H10.3593V2.34415L8.28861 4.41481Z" })
259
- }), Jt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
260
- component: qt,
261
- ...e
262
- }), Yt = () => /* @__PURE__ */ (0, K.jsx)("svg", {
263
- viewBox: "0 0 12 12",
264
- focusable: "false",
265
- "data-icon": "paragraph-icon",
266
- width: "1em",
267
- height: "1em",
268
- fill: "currentColor",
269
- "aria-hidden": "true",
270
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M5.01104 12V7.61696H4.94805C4.12998 7.61696 3.43412 7.29507 2.86047 6.65128C2.28682 6.00748 2 5.22655 2 4.30848C2 3.39041 2.28682 2.60947 2.86047 1.96568C3.43412 1.32189 4.12998 1 4.94805 1H10V2.10281H8.68975V12H7.70709V2.10281H5.99371V12H5.01104Z" })
271
- }), Xt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
272
- component: Yt,
273
- ...e
274
- }), Zt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(z, { ...e }), Qt = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Fe, { ...e }), $t = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(B, { ...e }), en = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(je, { ...e }), tn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Ie, { ...e }), nn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ee, { ...e }), rn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(_, { ...e }), an = () => /* @__PURE__ */ (0, K.jsx)("svg", {
275
- viewBox: "0 0 30 30",
276
- focusable: "false",
277
- "data-icon": "element-list-ol",
278
- width: "1em",
279
- height: "1em",
280
- fill: "currentColor",
281
- "aria-hidden": "true",
282
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M4.375 26.8749V25.3846H7.5V24.0624H5.625V22.5721H7.5V21.2499H4.375V19.7596H7.93269C8.23238 19.7596 8.48357 19.8609 8.68628 20.0637C8.88901 20.2664 8.99038 20.5176 8.99038 20.8173V22.3077C8.99038 22.6073 8.88901 22.8585 8.68628 23.0613C8.48357 23.264 8.23238 23.3653 7.93269 23.3653C8.23238 23.3653 8.48357 23.4667 8.68628 23.6694C8.88901 23.8721 8.99038 24.1233 8.99038 24.423V25.8173C8.99038 26.1169 8.88901 26.3681 8.68628 26.5708C8.48357 26.7736 8.23238 26.8749 7.93269 26.8749H4.375ZM4.375 18.5577V15.3125C4.375 15.0128 4.47636 14.7616 4.67909 14.5589C4.88182 14.3561 5.13302 14.2548 5.43269 14.2548H7.5V12.9327H4.375V11.4423H7.93269C8.23238 11.4423 8.48357 11.5436 8.68628 11.7464C8.88901 11.9491 8.99038 12.2003 8.99038 12.5V14.6875C8.99038 14.9871 8.88901 15.2383 8.68628 15.4411C8.48357 15.6438 8.23238 15.7452 7.93269 15.7452H5.86537V17.0673H8.99038V18.5577H4.375ZM6.25 10.2404V4.61538H4.375V3.125H7.74038V10.2404H6.25ZM11.6346 23.4374V21.5625H25.6249V23.4374H11.6346ZM11.6346 15.9374V14.0625H25.6249V15.9374H11.6346ZM11.6346 8.43744V6.5625H25.6249V8.43744H11.6346Z" })
283
- }), on = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
284
- component: an,
285
- ...e
286
- }), sn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(S, { ...e }), cn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(R, { ...e }), ln = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ve, { ...e }), un = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ge, { ...e }), dn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(De, { ...e }), fn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
287
- viewBox: "0 0 30 30",
288
- focusable: "false",
289
- "data-icon": "element-text-ai",
290
- width: "1em",
291
- height: "1em",
292
- fill: "currentColor",
293
- "aria-hidden": "true",
294
- children: [
295
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M4.375 22.0865V20.2115H18.1249V22.0865H4.375ZM4.375 15.9807V14.1058H25.6249V15.9807H4.375ZM4.375 9.87497V8H11V9.87497H4.375Z" }),
296
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M17 13C17 13 16.6521 11.5906 16.0308 10.9692C15.4094 10.3479 14 10 14 10C14 10 15.4094 9.65215 16.0308 9.03077C16.6521 8.40939 17 7 17 7C17 7 17.3479 8.40939 17.9692 9.03077C18.5906 9.65215 20 10 20 10C20 10 18.5906 10.3479 17.9692 10.9692C17.3479 11.5906 17 13 17 13Z" }),
297
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M22.5 11C22.5 11 21.8623 8.41612 20.7231 7.27692C19.5839 6.13773 17 5.5 17 5.5C17 5.5 19.5839 4.86227 20.7231 3.72308C21.8623 2.58388 22.5 0 22.5 0C22.5 0 23.1377 2.58388 24.2769 3.72308C25.4161 4.86227 28 5.5 28 5.5C28 5.5 25.4161 6.13773 24.2769 7.27692C23.1377 8.41612 22.5 11 22.5 11Z" }),
298
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M15 5C15 5 14.7681 4.06041 14.3538 3.64615C13.9396 3.2319 13 3 13 3C13 3 13.9396 2.7681 14.3538 2.35385C14.7681 1.93959 15 1 15 1C15 1 15.2319 1.93959 15.6462 2.35385C16.0604 2.7681 17 3 17 3C17 3 16.0604 3.2319 15.6462 3.64615C15.2319 4.06041 15 5 15 5Z" }),
299
- /* @__PURE__ */ (0, K.jsx)("path", { d: "M27 13C27 13 26.7681 12.0604 26.3538 11.6462C25.9396 11.2319 25 11 25 11C25 11 25.9396 10.7681 26.3538 10.3538C26.7681 9.93959 27 9 27 9C27 9 27.2319 9.93959 27.6462 10.3538C28.0604 10.7681 29 11 29 11C29 11 28.0604 11.2319 27.6462 11.6462C27.2319 12.0604 27 13 27 13Z" })
300
- ]
301
- }), pn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
302
- component: fn,
303
- ...e
304
- }), mn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(_e, { ...e }), hn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(C, { ...e }), gn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
305
- viewBox: "0 0 12 12",
306
- focusable: "false",
307
- "data-icon": "typorgaf-icon",
308
- width: "1em",
309
- height: "1em",
310
- fill: "currentColor",
311
- "aria-hidden": "true",
312
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M6.65333 7.21508H5.1671L3.00719 4.63822L5.1671 2H6.65333L4.44481 4.63822L6.65333 7.21508ZM3.64614 7.21508H2.17379L0 4.63822L2.17379 2H3.63919L1.43762 4.63822L3.64614 7.21508Z" }), /* @__PURE__ */ (0, K.jsx)("path", { d: "M12 6.43338L11.1167 9.98246H9.94694L11.069 6.43338H12ZM9.58089 6.43338L8.72148 9.98246H7.52784L8.6419 6.43338H9.58089Z" })]
313
- }), _n = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
314
- component: gn,
315
- ...e
316
- }), q = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
317
- width: "42",
318
- height: "43",
319
- viewBox: "0 0 42 43",
320
- fill: "none",
321
- xmlns: "http://www.w3.org/2000/svg",
322
- children: [
323
- /* @__PURE__ */ (0, K.jsx)("rect", {
324
- x: "0.00830078",
325
- y: "0.173828",
326
- width: "42",
327
- height: "42",
328
- rx: "21",
329
- fill: "#4597F7"
330
- }),
331
- /* @__PURE__ */ (0, K.jsxs)("g", {
332
- clipPath: "url(#clip0_2193_1178)",
333
- children: [/* @__PURE__ */ (0, K.jsx)("path", {
334
- d: "M14.0083 30.1739C13.4583 30.1739 12.9875 29.9781 12.5958 29.5864C12.2041 29.1948 12.0083 28.7239 12.0083 28.1739V14.1739C12.0083 13.6239 12.2041 13.1531 12.5958 12.7614C12.9875 12.3698 13.4583 12.1739 14.0083 12.1739H22.9333L20.9333 14.1739H14.0083V28.1739H28.0083V21.2239L30.0083 19.2239V28.1739C30.0083 28.7239 29.8125 29.1948 29.4208 29.5864C29.0291 29.9781 28.5583 30.1739 28.0083 30.1739H14.0083ZM18.0083 24.1739V19.9239L27.1833 10.7489C27.3833 10.5489 27.6083 10.3989 27.8583 10.2989C28.1083 10.1989 28.3583 10.1489 28.6083 10.1489C28.875 10.1489 29.1291 10.1989 29.3708 10.2989C29.6125 10.3989 29.8333 10.5489 30.0333 10.7489L31.4333 12.1739C31.6166 12.3739 31.7583 12.5948 31.8583 12.8364C31.9583 13.0781 32.0083 13.3239 32.0083 13.5739C32.0083 13.8239 31.9625 14.0698 31.8708 14.3114C31.7791 14.5531 31.6333 14.7739 31.4333 14.9739L22.2583 24.1739H18.0083ZM20.0083 22.1739H21.4083L27.2083 16.3739L26.5083 15.6739L25.7833 14.9739L20.0083 20.7489V22.1739Z",
335
- fill: "white"
336
- }), /* @__PURE__ */ (0, K.jsx)("path", {
337
- d: "M14.0083 30.1739C13.4583 30.1739 12.9875 29.9781 12.5958 29.5864C12.2041 29.1948 12.0083 28.7239 12.0083 28.1739V14.1739C12.0083 13.6239 12.2041 13.1531 12.5958 12.7614C12.9875 12.3698 13.4583 12.1739 14.0083 12.1739H22.9333L20.9333 14.1739H14.0083V28.1739H28.0083V21.2239L30.0083 19.2239V28.1739C30.0083 28.7239 29.8125 29.1948 29.4208 29.5864C29.0291 29.9781 28.5583 30.1739 28.0083 30.1739H14.0083ZM18.0083 24.1739V19.9239L27.1833 10.7489C27.3833 10.5489 27.6083 10.3989 27.8583 10.2989C28.1083 10.1989 28.3583 10.1489 28.6083 10.1489C28.875 10.1489 29.1291 10.1989 29.3708 10.2989C29.6125 10.3989 29.8333 10.5489 30.0333 10.7489L31.4333 12.1739C31.6166 12.3739 31.7583 12.5948 31.8583 12.8364C31.9583 13.0781 32.0083 13.3239 32.0083 13.5739C32.0083 13.8239 31.9625 14.0698 31.8708 14.3114C31.7791 14.5531 31.6333 14.7739 31.4333 14.9739L22.2583 24.1739H18.0083ZM20.0083 22.1739H21.4083L27.2083 16.3739L26.5083 15.6739L25.7833 14.9739L20.0083 20.7489V22.1739Z",
338
- fill: "white"
339
- })]
340
- }),
341
- /* @__PURE__ */ (0, K.jsx)("defs", { children: /* @__PURE__ */ (0, K.jsx)("clipPath", {
342
- id: "clip0_2193_1178",
343
- children: /* @__PURE__ */ (0, K.jsx)("rect", {
344
- width: "24",
345
- height: "24",
346
- fill: "white",
347
- transform: "translate(9.0083 9.17383)"
348
- })
349
- }) })
350
- ]
351
- }), vn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
352
- component: q,
353
- ...e
354
- }), yn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
355
- width: "42",
356
- height: "43",
357
- viewBox: "0 0 42 43",
358
- fill: "none",
359
- xmlns: "http://www.w3.org/2000/svg",
360
- children: [/* @__PURE__ */ (0, K.jsx)("rect", {
361
- x: "0.00830078",
362
- y: "0.173828",
363
- width: "42",
364
- height: "42",
365
- rx: "21",
366
- fill: "#6A32C9"
367
- }), /* @__PURE__ */ (0, K.jsx)("path", {
368
- d: "M12.0083 14.0129C12.0083 13.5629 12.1736 13.1726 12.5041 12.8419C12.8347 12.5114 13.225 12.3462 13.6751 12.3462L18.5083 12.3462L18.5083 14.0129L13.6751 14.0129L13.6751 28.6794L28.3416 28.6794L28.3416 14.0129L23.5083 14.0129L23.5083 12.3462L28.3416 12.3462C28.7916 12.3462 29.1819 12.5114 29.5126 12.8419C29.8431 13.1726 30.0083 13.5629 30.0083 14.0129L30.0083 28.6794C30.0083 29.1294 29.843 29.5198 29.5125 29.8504C29.1819 30.1809 28.7916 30.3462 28.3416 30.3462L13.675 30.3462C13.225 30.3462 12.8347 30.1809 12.5041 29.8504C12.1736 29.5198 12.0083 29.1294 12.0083 28.6794L12.0083 14.0129ZM16.1251 19.7294L17.3583 18.5129L20.1751 21.3294L20.1751 12.3462L21.8416 12.3462L21.8416 21.3294L24.6583 18.5129L25.8916 19.7294L21.0083 24.6129L16.1251 19.7294Z",
369
- fill: "white"
370
- })]
371
- }), bn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
372
- component: yn,
373
- ...e
374
- }), xn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
375
- width: "42",
376
- height: "43",
377
- viewBox: "0 0 42 43",
378
- fill: "none",
379
- xmlns: "http://www.w3.org/2000/svg",
380
- children: [
381
- /* @__PURE__ */ (0, K.jsx)("rect", {
382
- x: "0.00830078",
383
- y: "0.173828",
384
- width: "42",
385
- height: "42",
386
- rx: "21",
387
- fill: "#72C240"
388
- }),
389
- /* @__PURE__ */ (0, K.jsx)("path", {
390
- d: "M15.0669 30.9687C15.0669 30.9687 14.59 28.8216 13.738 27.875C12.886 26.9284 10.9536 26.3984 10.9536 26.3984C10.9536 26.3984 12.886 25.8684 13.738 24.9218C14.59 23.9752 15.0669 21.8281 15.0669 21.8281C15.0669 21.8281 15.5438 23.9752 16.3958 24.9218C17.2478 25.8684 19.1802 26.3984 19.1802 26.3984C19.1802 26.3984 17.2478 26.9284 16.3958 27.875C15.5438 28.8216 15.0669 30.9687 15.0669 30.9687Z",
391
- fill: "white"
392
- }),
393
- /* @__PURE__ */ (0, K.jsx)("path", {
394
- d: "M23.7505 26.0037C23.7505 26.0037 22.9026 22.5682 21.388 21.0536C19.8734 19.539 16.438 18.6912 16.438 18.6912C16.438 18.6912 19.8734 17.8433 21.388 16.3287C22.9026 14.8141 23.7505 11.3787 23.7505 11.3787C23.7505 11.3787 24.5984 14.8141 26.113 16.3287C27.6276 17.8433 31.063 18.6912 31.063 18.6912C31.063 18.6912 27.6276 19.539 26.113 21.0536C24.5984 22.5682 23.7505 26.0037 23.7505 26.0037Z",
395
- fill: "white"
396
- }),
397
- /* @__PURE__ */ (0, K.jsx)("path", {
398
- d: "M13.6958 17.7771C13.6958 17.7771 13.3778 16.2741 12.8099 15.6115C12.2419 14.9488 10.9536 14.5779 10.9536 14.5779C10.9536 14.5779 12.2419 14.2069 12.8099 13.5443C13.3778 12.8816 13.6958 11.3787 13.6958 11.3787C13.6958 11.3787 14.0138 12.8816 14.5817 13.5443C15.1497 14.2069 16.438 14.5779 16.438 14.5779C16.438 14.5779 15.1497 14.9488 14.5817 15.6115C14.0138 16.2741 13.6958 17.7771 13.6958 17.7771Z",
399
- fill: "white"
400
- }),
401
- /* @__PURE__ */ (0, K.jsx)("path", {
402
- d: "M28.7144 30.2357C28.7144 30.2357 28.4494 29.1622 27.9761 28.6889C27.5028 28.2156 26.4293 27.9506 26.4293 27.9506C26.4293 27.9506 27.5028 27.6856 27.9761 27.2123C28.4494 26.739 28.7144 25.6654 28.7144 25.6654C28.7144 25.6654 28.9794 26.739 29.4527 27.2123C29.926 27.6856 30.9996 27.9506 30.9996 27.9506C30.9996 27.9506 29.926 28.2156 29.4527 28.6889C28.9794 29.1622 28.7144 30.2357 28.7144 30.2357Z",
403
- fill: "white"
404
- })
405
- ]
406
- }), Sn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
407
- component: xn,
408
- ...e
409
- }), Cn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
410
- viewBox: "0 0 12 12",
411
- focusable: "false",
412
- "data-icon": "padding-top-bottom-icon",
413
- width: "1em",
414
- height: "1em",
415
- "aria-hidden": "true",
416
- fill: "currentColor",
417
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M7.43866e-05 1.03733V0L12 0.0407197V1.07805L7.43866e-05 1.03733ZM0 11.9593V10.922L12 10.9627V12L0 11.9593Z" }), /* @__PURE__ */ (0, K.jsx)("rect", {
418
- x: "3.5",
419
- y: "3.5",
420
- width: "5",
421
- height: "5",
422
- fill: "none",
423
- stroke: "currentColor"
424
- })]
425
- }), wn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
426
- component: Cn,
427
- ...e
428
- }), Tn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
429
- viewBox: "0 0 12 12",
430
- focusable: "false",
431
- "data-icon": "padding-left-right-icon",
432
- width: "1em",
433
- height: "1em",
434
- "aria-hidden": "true",
435
- fill: "currentColor",
436
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M10.9626 7.43413e-05L11.9999 7.43866e-05L11.9592 12L10.9218 12L10.9626 7.43413e-05ZM0.0405974 -5.22757e-07L1.07792 -4.77414e-07L1.0372 12L-0.00012271 12L0.0405974 -5.22757e-07Z" }), /* @__PURE__ */ (0, K.jsx)("rect", {
437
- x: "8.5",
438
- y: "3.5",
439
- width: "5",
440
- height: "5",
441
- transform: "rotate(90 8.5 3.5)",
442
- fill: "none",
443
- stroke: "currentColor"
444
- })]
445
- }), En = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
446
- component: Tn,
447
- ...e
448
- }), Dn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
449
- viewBox: "0 0 12 12",
450
- focusable: "false",
451
- "data-icon": "padding-switcher",
452
- fill: "currentColor",
453
- width: "1em",
454
- height: "1em",
455
- "aria-hidden": "true",
456
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M10.959 2.00007L11.9999 2.00007L11.959 10L10.9181 10L10.959 2.00007ZM-0.00012207 2L1.04074 2L0.999842 10L-0.041016 10L-0.00012207 2Z" }), /* @__PURE__ */ (0, K.jsx)("path", { d: "M9.99993 10.9797L9.99993 12.0205L1.99995 11.9796L1.99995 10.9387L9.99993 10.9797ZM10 0.0205078L10 1.06137L1.99995 1.02043L1.99995 -0.0204332L10 0.0205078Z" })]
457
- }), On = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
458
- component: Dn,
459
- ...e
460
- }), kn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
461
- viewBox: "0 0 12 12",
462
- focusable: "false",
463
- "data-icon": "padding-top-icon",
464
- width: "1em",
465
- height: "1em",
466
- "aria-hidden": "true",
467
- fill: "currentColor",
468
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M0 1.04086V0L11.9999 0.0408583V1.08172L0 1.04086Z" }), /* @__PURE__ */ (0, K.jsx)("rect", {
469
- x: "3.5",
470
- y: "3.5",
471
- width: "5",
472
- height: "5",
473
- fill: "none",
474
- stroke: "currentColor"
475
- })]
476
- }), An = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
477
- component: kn,
478
- ...e
479
- }), jn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
480
- viewBox: "0 0 12 12",
481
- focusable: "false",
482
- "data-icon": "padding-bottom-icon",
483
- width: "1em",
484
- height: "1em",
485
- "aria-hidden": "true",
486
- fill: "currentColor",
487
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M0 10.9591V12L11.9999 11.9591V10.9183L0 10.9591Z" }), /* @__PURE__ */ (0, K.jsx)("rect", {
488
- x: "0.5",
489
- y: "-0.5",
490
- width: "5",
491
- height: "5",
492
- transform: "matrix(1 0 0 -1 3 8)",
493
- fill: "none",
494
- stroke: "currentColor"
495
- })]
496
- }), Mn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
497
- component: jn,
498
- ...e
499
- }), Nn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
500
- viewBox: "0 0 12 12",
501
- focusable: "false",
502
- "data-icon": "padding-left-icon",
503
- width: "1em",
504
- height: "1em",
505
- "aria-hidden": "true",
506
- fill: "currentColor",
507
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M-8.67844e-05 -4.54974e-08L1.04077 0L0.999913 12L-0.0409456 12L-8.67844e-05 -4.54974e-08Z" }), /* @__PURE__ */ (0, K.jsx)("rect", {
508
- x: "8.5",
509
- y: "3.5",
510
- width: "5",
511
- height: "5",
512
- transform: "rotate(90 8.5 3.5)",
513
- fill: "none",
514
- stroke: "currentColor"
515
- })]
516
- }), Pn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
517
- component: Nn,
518
- ...e
519
- }), Fn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
520
- viewBox: "0 0 12 12",
521
- focusable: "false",
522
- "data-icon": "padding-righr-icon",
523
- width: "1em",
524
- height: "1em",
525
- "aria-hidden": "true",
526
- fill: "currentColor",
527
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M12.0001 -4.54974e-08L10.9592 0L11.0001 12L12.0409 12L12.0001 -4.54974e-08Z" }), /* @__PURE__ */ (0, K.jsx)("rect", {
528
- x: "0.5",
529
- y: "0.5",
530
- width: "5",
531
- height: "5",
532
- transform: "matrix(4.37114e-08 1 1 -4.37114e-08 3 3)",
533
- fill: "none",
534
- stroke: "currentColor"
535
- })]
536
- }), In = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
537
- component: Fn,
538
- ...e
539
- }), Ln = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(me, { ...e }), Rn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(te, { ...e }), zn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Ve, { ...e }), Bn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(y, { ...e }), Vn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(g, { ...e }), Hn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(I, { ...e }), Un = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(he, { ...e }), Wn = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
540
- viewBox: "64 64 896 896",
541
- focusable: "false",
542
- "data-icon": "check-circle",
543
- width: "1em",
544
- height: "1em",
545
- fill: "currentColor",
546
- "aria-hidden": "true",
547
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M699 353h-46.9c-10.2 0-19.9 4.9-25.9 13.3L469 584.3l-71.2-98.8c-6-8.3-15.6-13.3-25.9-13.3H325c-6.5 0-10.3 7.4-6.5 12.7l124.6 172.8a31.8 31.8 0 0051.7 0l210.6-292c3.9-5.3.1-12.7-6.4-12.7z" }), /* @__PURE__ */ (0, K.jsx)("path", { d: "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z" })]
548
- }), Gn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
549
- component: Wn,
550
- ...e
551
- }), Kn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(pe, { ...e }), qn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(R, { ...e }), Jn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(D, { ...e }), Yn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(k, { ...e }), Xn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(f, { ...e }), Zn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ae, { ...e }), Qn = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Ce, { ...e }), $n = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ce, { ...e }), er = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ie, { ...e }), tr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(fe, { ...e }), nr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
552
- viewBox: "64 64 896 896",
553
- focusable: "false",
554
- "data-icon": "border-outer",
555
- width: "1em",
556
- height: "1em",
557
- fill: "currentColor",
558
- "aria-hidden": "true",
559
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656zM484 366h56c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zM302 548h56c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm364 0h56c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-182 0h56c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm0 182h56c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8z" })
560
- }), rr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
561
- component: nr,
562
- ...e
563
- }), ir = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
564
- viewBox: "64 64 896 896",
565
- focusable: "false",
566
- "data-icon": "appstore-add",
567
- width: "1em",
568
- height: "1em",
569
- fill: "currentColor",
570
- "aria-hidden": "true",
571
- children: [/* @__PURE__ */ (0, K.jsx)("defs", { children: /* @__PURE__ */ (0, K.jsx)("style", {}) }), /* @__PURE__ */ (0, K.jsx)("path", { d: "M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H212V212h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H612V212h200v200zm52 132H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H612V612h200v200zM424 712H296V584c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v128H104c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128v128c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V776h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8z" })]
572
- }), ar = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
573
- component: ir,
574
- ...e
575
- }), or = () => /* @__PURE__ */ (0, K.jsx)("svg", {
576
- viewBox: "64 64 896 896",
577
- focusable: "false",
578
- "data-icon": "appstore",
579
- width: "1em",
580
- height: "1em",
581
- fill: "currentColor",
582
- "aria-hidden": "true",
583
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H212V212h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H612V212h200v200zM464 544H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H212V612h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H612V612h200v200z" })
584
- }), sr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
585
- component: or,
586
- ...e
587
- }), cr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
588
- viewBox: "64 64 896 896",
589
- focusable: "false",
590
- "data-icon": "build",
591
- width: "1em",
592
- height: "1em",
593
- fill: "currentColor",
594
- "aria-hidden": "true",
595
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M916 210H376c-17.7 0-32 14.3-32 32v236H108c-17.7 0-32 14.3-32 32v272c0 17.7 14.3 32 32 32h540c17.7 0 32-14.3 32-32V546h236c17.7 0 32-14.3 32-32V242c0-17.7-14.3-32-32-32zm-504 68h200v200H412V278zm-68 468H144V546h200v200zm268 0H412V546h200v200zm268-268H680V278h200v200z" })
596
- }), lr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
597
- component: cr,
598
- ...e
599
- }), ur = () => /* @__PURE__ */ (0, K.jsx)("svg", {
600
- viewBox: "0 0 12 12",
601
- focusable: "false",
602
- "data-icon": "search-outlined",
603
- width: "1em",
604
- height: "1em",
605
- fill: "currentColor",
606
- "aria-hidden": "true",
607
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M10.7667 11.5L6.80463 7.53797C6.49908 7.79599 6.14443 7.99799 5.74069 8.14398C5.33696 8.28997 4.90735 8.36297 4.45186 8.36297C3.34736 8.36297 2.4126 7.98017 1.64756 7.21458C0.88252 6.449 0.5 5.52131 0.5 4.43149C0.5 3.34168 0.882795 2.41397 1.64838 1.64838C2.41396 0.882795 3.34336 0.5 4.43658 0.5C5.52979 0.5 6.45748 0.882795 7.21967 1.64838C7.98187 2.41397 8.36297 3.34219 8.36297 4.43302C8.36297 4.87336 8.29167 5.29553 8.14908 5.69955C8.00649 6.10355 7.79939 6.47531 7.52778 6.81482L11.5 10.7667L10.7667 11.5ZM4.44167 7.34446C5.248 7.34446 5.93337 7.06012 6.4978 6.49144C7.06223 5.92277 7.34444 5.23612 7.34444 4.43149C7.34444 3.62685 7.06223 2.9402 6.4978 2.37153C5.93337 1.80286 5.248 1.51852 4.44167 1.51852C3.62968 1.51852 2.93949 1.80286 2.3711 2.37153C1.80271 2.9402 1.51851 3.62685 1.51851 4.43149C1.51851 5.23612 1.80271 5.92277 2.3711 6.49144C2.93949 7.06012 3.62968 7.34446 4.44167 7.34446Z" })
608
- }), dr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
609
- component: ur,
610
- ...e
611
- }), fr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
612
- viewBox: "0 0 12 12",
613
- focusable: "false",
614
- "data-icon": "close-outlined",
615
- width: "1em",
616
- height: "1em",
617
- fill: "currentColor",
618
- "aria-hidden": "true",
619
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M1.84745 11L1 10.1526L5.15255 6L1 1.84745L1.84745 1L6 5.15255L10.1526 1L11 1.84745L6.84745 6L11 10.1526L10.1526 11L6 6.84745L1.84745 11Z" })
620
- }), pr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
621
- component: fr,
622
- ...e
623
- }), mr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
624
- viewBox: "0 0 12 12",
625
- focusable: "false",
626
- "data-icon": "add-image",
627
- width: "1em",
628
- height: "1em",
629
- fill: "currentColor",
630
- "aria-hidden": "true",
631
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M1.11007 11.9944C0.804799 11.9944 0.543469 11.8858 0.326081 11.6684C0.108694 11.451 0 11.1896 0 10.8844V1.11563C0 0.810353 0.108694 0.549023 0.326081 0.331636C0.543469 0.114248 0.804799 0.0055542 1.11007 0.0055542H7.64848V1.11563H1.11007V10.8844H10.8788V4.35707H11.9889V10.8844C11.9889 11.1896 11.8802 11.451 11.6628 11.6684C11.4454 11.8858 11.1841 11.9944 10.8788 11.9944H1.11007ZM9.54672 3.80204V2.45883H8.20352V1.34876H9.54672V0.0055542H10.6568V1.34876H12V2.45883H10.6568V3.80204H9.54672ZM1.99815 9.30805H9.99074L7.55966 6.06661L5.4838 8.80852L3.9408 6.76596L1.99815 9.30805Z" })
632
- }), hr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
633
- component: mr,
634
- ...e
635
- }), gr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
636
- viewBox: "0 0 12 12",
637
- focusable: "false",
638
- "data-icon": "merge-tags",
639
- width: "1em",
640
- height: "1em",
641
- fill: "currentColor",
642
- "aria-hidden": "true",
643
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M7.2 10.8V9.60001H9C9.17 9.60001 9.3125 9.54251 9.4275 9.42751C9.5425 9.31251 9.6 9.17 9.6 9V7.8C9.6 7.42 9.71 7.07501 9.93 6.76501C10.15 6.45501 10.44 6.235 10.8 6.105V5.895C10.44 5.765 10.15 5.545 9.93 5.235C9.71 4.925 9.6 4.58 9.6 4.2V3C9.6 2.83 9.5425 2.6875 9.4275 2.5725C9.3125 2.4575 9.17 2.4 9 2.4H7.2V1.2H9C9.5 1.2 9.925 1.375 10.275 1.725C10.625 2.075 10.8 2.5 10.8 3V4.2C10.8 4.37 10.8575 4.5125 10.9725 4.6275C11.0875 4.7425 11.23 4.8 11.4 4.8H12V7.2H11.4C11.23 7.2 11.0875 7.25751 10.9725 7.37251C10.8575 7.48751 10.8 7.63 10.8 7.8V9C10.8 9.5 10.625 9.92501 10.275 10.275C9.925 10.625 9.5 10.8 9 10.8H7.2ZM3 10.8C2.5 10.8 2.075 10.625 1.725 10.275C1.375 9.92501 1.2 9.5 1.2 9V7.8C1.2 7.63 1.1425 7.48751 1.0275 7.37251C0.9125 7.25751 0.77 7.2 0.6 7.2H0V4.8H0.6C0.77 4.8 0.9125 4.7425 1.0275 4.6275C1.1425 4.5125 1.2 4.37 1.2 4.2V3C1.2 2.5 1.375 2.075 1.725 1.725C2.075 1.375 2.5 1.2 3 1.2H4.8V2.4H3C2.83 2.4 2.6875 2.4575 2.5725 2.5725C2.4575 2.6875 2.4 2.83 2.4 3V4.2C2.4 4.58 2.29 4.925 2.07 5.235C1.85 5.545 1.56 5.765 1.2 5.895V6.105C1.56 6.235 1.85 6.45501 2.07 6.76501C2.29 7.07501 2.4 7.42 2.4 7.8V9C2.4 9.17 2.4575 9.31251 2.5725 9.42751C2.6875 9.54251 2.83 9.60001 3 9.60001H4.8V10.8H3Z" })
644
- }), _r = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
645
- component: gr,
646
- ...e
647
- }), vr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(x, { ...e }), yr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(T, { ...e }), br = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(p, { ...e }), xr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
648
- viewBox: "0 0 12 12",
649
- focusable: "false",
650
- "data-icon": "email-confirmation",
651
- width: "1em",
652
- height: "1em",
653
- fill: "currentColor",
654
- "aria-hidden": "true",
655
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M8.00198 11.3105L5.85436 9.16288L6.47419 8.54304L8.00198 10.0708L11.1186 6.95415L11.7385 7.574L8.00198 11.3105ZM5.95912 5.48748L10.2718 2.75493H1.64641L5.95912 5.48748ZM5.95912 6.36049L1.61149 3.59303V9.2851H4.74564L5.61864 10.1581H1.61149C1.37577 10.1581 1.17134 10.0715 0.998197 9.8984C0.825052 9.72525 0.73848 9.52081 0.73848 9.2851V2.75493C0.73848 2.51922 0.825052 2.31479 0.998197 2.14165C1.17134 1.9685 1.37577 1.88193 1.61149 1.88193H10.3155C10.5512 1.88193 10.7556 1.9685 10.9288 2.14165C11.1019 2.31479 11.1885 2.51922 11.1885 2.75493V5.64463L10.3155 6.51766V3.59303L5.95912 6.36049Z" })
656
- }), Sr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
657
- component: xr,
658
- ...e
659
- }), Cr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(se, { ...e }), wr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(d, { ...e }), Tr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(w, { ...e }), Er = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(we, { ...e }), Dr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
660
- viewBox: "0 -960 960 960",
661
- focusable: "false",
662
- "data-icon": "button",
663
- width: "1em",
664
- height: "1em",
665
- fill: "currentColor",
666
- "aria-hidden": "true",
667
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M186.666-280q-27 0-46.833-19.833T120-346.666v-266.668q0-27 19.833-46.833T186.666-680h586.668q27 0 46.833 19.833T840-613.334v266.668q0 27-19.833 46.833T773.334-280H186.666Zm0-66.666h586.668v-266.668H186.666v266.668Zm0 0v-266.668 266.668Z" })
668
- }), Or = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
669
- component: Dr,
670
- ...e
671
- }), kr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
672
- viewBox: "0 -960 960 960",
673
- focusable: "false",
674
- "data-icon": "button",
675
- width: "1em",
676
- height: "1em",
677
- fill: "currentColor",
678
- "aria-hidden": "true",
679
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M186.666-120q-27 0-46.833-19.833T120-186.666v-586.668q0-27 19.833-46.833T186.666-840h586.668q27 0 46.833 19.833T840-773.334v586.668q0 27-19.833 46.833T773.334-120H186.666Zm0-66.666h151.001v-151.001H186.666v151.001Zm217.667 0h151.334v-151.001H404.333v151.001Zm218 0h151.001v-151.001H622.333v151.001ZM186.666-404.333h151.001v-151.334H186.666v151.334Zm217.667 0h151.334v-151.334H404.333v151.334Zm218 0h151.001v-151.334H622.333v151.334Zm-435.667-218h151.001v-151.001H186.666v151.001Zm217.667 0h151.334v-151.001H404.333v151.001Zm218 0h151.001v-151.001H622.333v151.001Z" })
680
- }), Ar = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
681
- component: kr,
682
- ...e
683
- }), jr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Ae, { ...e }), Mr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
684
- viewBox: "0 -960 960 960",
685
- focusable: "false",
686
- "data-icon": "button",
687
- width: "1em",
688
- height: "1em",
689
- fill: "currentColor",
690
- "aria-hidden": "true",
691
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M120-120v-175.333L490.667-666l-67.334-66.667 46.667-46L556.667-692l136-136q5-5 11.5-8t13.167-3q6.666 0 13 3 6.333 3 12.333 8L828-742.667q5 6 8 12.333 3 6.334 3 13 0 6.667-3 13.167t-8 11.5L692.333-557 779-469.666l-46.333 46.333L666-490.667 295.333-120H120Zm66.666-66.666h84L618-534.667 534.667-618 186.666-270.666v84Zm457.667-416.667L759-718l-41-41-114.667 114.667 41 41Zm0 0-41-41 41 41Z" })
692
- }), Nr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
693
- component: Mr,
694
- ...e
695
- }), Pr = ({ svgString: e, ...t }) => /* @__PURE__ */ (0, K.jsx)("span", {
696
- role: "img",
697
- dangerouslySetInnerHTML: { __html: e },
698
- ...t
699
- }), Fr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(be, { ...e }), Ir = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(xe, { ...e }), Lr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Oe, { ...e }), Rr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(k, { ...e }), zr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(le, { ...e }), Br = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(N, { ...e }), Vr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ne, { ...e }), Hr = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
700
- viewBox: "0 0 12 12",
701
- focusable: "false",
702
- "data-icon": "replacer",
703
- width: "1em",
704
- height: "1em",
705
- fill: "currentColor",
706
- "aria-hidden": "true",
707
- children: [/* @__PURE__ */ (0, K.jsx)("path", { d: "M8.08337 10V9.16663H9.58337C9.74721 9.16663 9.88538 9.11075 9.99788 8.999C10.1104 8.88717 10.1666 8.74863 10.1666 8.58338V7.41663C10.1666 7.10554 10.2597 6.82637 10.4459 6.57912C10.632 6.33196 10.8722 6.15975 11.1666 6.0625V5.9375C10.8722 5.84583 10.632 5.675 10.4459 5.425C10.2597 5.175 10.1666 4.89446 10.1666 4.58337V3.41663C10.1666 3.25138 10.1108 3.11283 9.999 3.001C9.88717 2.88925 9.74862 2.83337 9.58337 2.83337H8.08337V2H9.58337C9.97779 2 10.3125 2.13775 10.5875 2.41325C10.8625 2.68867 11 3.02313 11 3.41663V4.58337C11 4.74862 11.0559 4.88717 11.1678 4.999C11.2795 5.11075 11.418 5.16663 11.5834 5.16663H12V6.83338H11.5834C11.418 6.83338 11.2795 6.88925 11.1678 7.001C11.0559 7.11283 11 7.25138 11 7.41663V8.58338C11 8.97688 10.8623 9.31133 10.5868 9.58675C10.3113 9.86225 9.97687 10 9.58337 10H8.08337ZM2.41662 10C2.02221 10 1.6875 9.86225 1.4125 9.58675C1.1375 9.31133 1 8.97688 1 8.58338V7.41663C1 7.25138 0.944083 7.11283 0.83225 7.001C0.7205 6.88925 0.581958 6.83338 0.416625 6.83338H0V5.16663H0.416625C0.581958 5.16663 0.7205 5.11075 0.83225 4.999C0.944083 4.88717 1 4.74862 1 4.58337V3.41663C1 3.02313 1.13775 2.68867 1.41325 2.41325C1.68867 2.13775 2.02312 2 2.41662 2H3.91662V2.83337H2.41662C2.25279 2.83337 2.11463 2.88925 2.00213 3.001C1.88963 3.11283 1.83337 3.25138 1.83337 3.41663V4.58337C1.83337 4.89446 1.74029 5.175 1.55413 5.425C1.36804 5.675 1.12779 5.84583 0.833375 5.9375V6.0625C1.12779 6.15975 1.36804 6.33196 1.55413 6.57912C1.74029 6.82637 1.83337 7.10554 1.83337 7.41663V8.58338C1.83337 8.74863 1.88925 8.88717 2.001 8.999C2.11283 9.11075 2.25137 9.16663 2.41662 9.16663H3.91662V10H2.41662Z" }), /* @__PURE__ */ (0, K.jsx)("path", { d: "M6.48214 7.88473V7.13473C6.48214 7.0758 6.43393 7.02759 6.375 7.02759H5.625C5.56607 7.02759 5.51786 7.0758 5.51786 7.13473V7.88473C5.51786 7.94366 5.56607 7.99187 5.625 7.99187H6.375C6.43393 7.99187 6.48214 7.94366 6.48214 7.88473ZM4.25893 7.88473V7.13473C4.25893 7.0758 4.21072 7.02759 4.15179 7.02759H3.40179C3.34286 7.02759 3.29464 7.0758 3.29464 7.13473V7.88473C3.29464 7.94366 3.34286 7.99187 3.40179 7.99187H4.15179C4.21072 7.99187 4.25893 7.94366 4.25893 7.88473ZM8.70536 7.88473V7.13473C8.70536 7.0758 8.65715 7.02759 8.59822 7.02759H7.84822C7.78929 7.02759 7.74107 7.0758 7.74107 7.13473V7.88473C7.74107 7.94366 7.78929 7.99187 7.84822 7.99187H8.59822C8.65715 7.99187 8.70536 7.94366 8.70536 7.88473Z" })]
708
- }), Ur = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
709
- component: Hr,
710
- ...e
711
- }), Wr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
712
- viewBox: "0 0 12 12",
713
- focusable: "false",
714
- "data-icon": "editor-mode",
715
- width: "1em",
716
- height: "1em",
717
- fill: "currentColor",
718
- "aria-hidden": "true",
719
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M1 7.14578V6.10422H5.07403V7.14578H1ZM1 4.59375V3.55203H7.38889V4.59375H1ZM1 2.04172V1H7.38889V2.04172H1ZM6 11V9.07812L9.06944 5.64062C9.15278 5.54688 9.24537 5.47917 9.34722 5.4375C9.44907 5.39583 9.55093 5.375 9.65278 5.375C9.76389 5.375 9.87037 5.39844 9.97222 5.44531C10.0741 5.49219 10.1667 5.5625 10.25 5.65625L10.7639 6.23438C10.8442 6.32812 10.9036 6.43229 10.9421 6.54688C10.9807 6.66146 11 6.77604 11 6.89062C11 7.00521 10.98 7.1224 10.9399 7.24219C10.8997 7.36198 10.8382 7.46875 10.7554 7.5625L7.70833 11H6ZM6.83333 10.0625H7.36111L9.04167 8.15625L8.79167 7.85938L8.52778 7.57812L6.83333 9.46875V10.0625ZM8.79167 7.85938L8.52778 7.57812L9.04167 8.15625L8.79167 7.85938Z" })
720
- }), Gr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
721
- component: Wr,
722
- ...e
723
- }), Kr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
724
- viewBox: "0 0 12 12",
725
- focusable: "false",
726
- "data-icon": "designer-mode",
727
- width: "1em",
728
- height: "1em",
729
- fill: "currentColor",
730
- "aria-hidden": "true",
731
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M6 12C5.18 12 4.405 11.8425 3.675 11.5275C2.945 11.2125 2.3075 10.7825 1.7625 10.2375C1.2175 9.6925 0.7875 9.055 0.4725 8.325C0.1575 7.595 0 6.82 0 6C0 5.1567 0.16085 4.37005 0.48255 3.64005C0.80415 2.91005 1.24245 2.27505 1.79745 1.73505C2.35245 1.19505 3.00165 0.77085 3.74505 0.46245C4.48835 0.15415 5.28335 0 6.13005 0C6.92335 0 7.675 0.13415 8.385 0.40245C9.095 0.67085 9.7175 1.04255 10.2525 1.51755C10.7875 1.99255 11.2125 2.55585 11.5275 3.20745C11.8425 3.85915 12 4.57 12 5.34C12 6.4433 11.6733 7.3058 11.02 7.9275C10.3666 8.5492 9.52665 8.86005 8.50005 8.86005H7.38C7.23 8.86005 7.10585 8.91505 7.00755 9.02505C6.90915 9.13505 6.85995 9.2567 6.85995 9.39C6.85995 9.61 6.9333 9.82085 7.08 10.0225C7.2267 10.2241 7.30005 10.4566 7.30005 10.72C7.30005 11.14 7.1842 11.4584 6.9525 11.6749C6.7208 11.8916 6.4033 12 6 12ZM2.56995 6.46005C2.78995 6.46005 2.9783 6.3817 3.135 6.225C3.2917 6.0683 3.37005 5.87995 3.37005 5.65995C3.37005 5.43995 3.2917 5.25165 3.135 5.09505C2.9783 4.93835 2.78995 4.86 2.56995 4.86C2.34995 4.86 2.16165 4.93835 2.00505 5.09505C1.84835 5.25165 1.77 5.43995 1.77 5.65995C1.77 5.87995 1.84835 6.0683 2.00505 6.225C2.16165 6.3817 2.34995 6.46005 2.56995 6.46005ZM4.42995 3.96C4.64995 3.96 4.8383 3.88165 4.995 3.72495C5.1517 3.56835 5.23005 3.38005 5.23005 3.16005C5.23005 2.94005 5.1517 2.7517 4.995 2.595C4.8383 2.4383 4.64995 2.35995 4.42995 2.35995C4.20995 2.35995 4.02165 2.4383 3.86505 2.595C3.70835 2.7517 3.63 2.94005 3.63 3.16005C3.63 3.38005 3.70835 3.56835 3.86505 3.72495C4.02165 3.88165 4.20995 3.96 4.42995 3.96ZM7.57005 3.96C7.79005 3.96 7.97835 3.88165 8.13495 3.72495C8.29165 3.56835 8.37 3.38005 8.37 3.16005C8.37 2.94005 8.29165 2.7517 8.13495 2.595C7.97835 2.4383 7.79005 2.35995 7.57005 2.35995C7.35005 2.35995 7.1617 2.4383 7.005 2.595C6.8483 2.7517 6.76995 2.94005 6.76995 3.16005C6.76995 3.38005 6.8483 3.56835 7.005 3.72495C7.1617 3.88165 7.35005 3.96 7.57005 3.96ZM9.48 6.46005C9.7 6.46005 9.88835 6.3817 10.045 6.225C10.2016 6.0683 10.28 5.87995 10.28 5.65995C10.28 5.43995 10.2016 5.25165 10.045 5.09505C9.88835 4.93835 9.7 4.86 9.48 4.86C9.26 4.86 9.07165 4.93835 8.91495 5.09505C8.75835 5.25165 8.68005 5.43995 8.68005 5.65995C8.68005 5.87995 8.75835 6.0683 8.91495 6.225C9.07165 6.3817 9.26 6.46005 9.48 6.46005ZM6 11C6.1033 11 6.17915 10.9766 6.22755 10.93C6.27585 10.8833 6.3 10.8133 6.3 10.72C6.3 10.58 6.22665 10.4384 6.07995 10.295C5.93335 10.1517 5.86005 9.88 5.86005 9.48C5.86005 9.0333 6.00835 8.65165 6.30495 8.33505C6.60165 8.01835 6.97335 7.86 7.42005 7.86H8.50005C9.22665 7.86 9.82495 7.6475 10.295 7.2225C10.765 6.7975 11 6.17 11 5.34C11 4.0567 10.5125 3.01255 9.53745 2.20755C8.56245 1.40255 7.42665 1.00005 6.13005 1.00005C4.70335 1.00005 3.49165 1.48335 2.49495 2.44995C1.49835 3.41665 1.00005 4.6 1.00005 6C1.00005 7.3833 1.48755 8.56245 2.46255 9.53745C3.43755 10.5125 4.6167 11 6 11Z" })
732
- }), qr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
733
- component: Kr,
734
- ...e
735
- }), Jr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
736
- viewBox: "0 0 12 12",
737
- focusable: "false",
738
- "data-icon": "clear-chat",
739
- width: "1em",
740
- height: "1em",
741
- fill: "currentColor",
742
- "aria-hidden": "true",
743
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M0 9.5V8.33327H9.33333V9.5H0ZM1.33333 6.58327V5.41672H10.6667V6.58327H1.33333ZM2.66667 3.66672V2.5H12V3.66672H2.66667Z" })
744
- }), Yr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
745
- component: Jr,
746
- ...e
747
- }), Xr = () => /* @__PURE__ */ (0, K.jsx)("svg", {
748
- viewBox: "0 0 12 12",
749
- focusable: "false",
750
- "data-icon": "webhook",
751
- width: "1em",
752
- height: "1em",
753
- fill: "currentColor",
754
- "aria-hidden": "true",
755
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M2.89995 11.7C2.10335 11.7 1.42085 11.4159 0.85245 10.8476C0.28415 10.2792 0 9.59665 0 8.80005C0 8.11005 0.20585 7.50755 0.61755 6.99255C1.02915 6.47755 1.55665 6.14335 2.20005 5.98995V7.035C1.85005 7.1683 1.56255 7.39495 1.33755 7.71495C1.11255 8.03495 1.00005 8.39665 1.00005 8.80005C1.00005 9.32665 1.18505 9.77495 1.55505 10.145C1.92505 10.515 2.37335 10.7 2.89995 10.7C3.42665 10.7 3.875 10.515 4.245 10.145C4.615 9.77495 4.8 9.32665 4.8 8.80005V8.29995H8.46495C8.54495 8.20995 8.6408 8.13745 8.7525 8.08245C8.8642 8.02745 8.98005 7.99995 9.10005 7.99995C9.32335 7.99995 9.5125 8.07745 9.6675 8.23245C9.8225 8.38745 9.9 8.57665 9.9 8.80005C9.9 9.01665 9.8225 9.20415 9.6675 9.36255C9.5125 9.52085 9.32335 9.6 9.10005 9.6C8.98005 9.6 8.8642 9.5725 8.7525 9.5175C8.6408 9.4625 8.54495 9.39 8.46495 9.3H5.76C5.62 9.99 5.28415 10.5625 4.75245 11.0175C4.22085 11.4725 3.60335 11.7 2.89995 11.7ZM9.10005 11.7C8.59335 11.7 8.12915 11.5809 7.70745 11.3426C7.28585 11.1042 6.94505 10.79 6.68505 10.4H8.08005C8.22665 10.5 8.38665 10.575 8.56005 10.625C8.73335 10.675 8.91335 10.7 9.10005 10.7C9.62665 10.7 10.075 10.515 10.445 10.145C10.815 9.77495 11 9.32665 11 8.80005C11 8.27335 10.815 7.825 10.445 7.455C10.075 7.085 9.62665 6.9 9.10005 6.9C8.90665 6.9 8.7283 6.92415 8.565 6.97245C8.4017 7.02085 8.24505 7.09335 8.09505 7.18995L6.195 3.99495C5.9917 3.95495 5.82505 3.8633 5.69505 3.72C5.56505 3.5767 5.50005 3.40335 5.50005 3.19995C5.50005 2.97665 5.5792 2.7875 5.7375 2.6325C5.8958 2.4775 6.0833 2.4 6.3 2.4C6.5233 2.4 6.71245 2.4775 6.86745 2.6325C7.02245 2.7875 7.09995 2.97665 7.09995 3.19995C7.09995 3.24335 7.0983 3.28255 7.095 3.31755C7.0917 3.35255 7.08005 3.4017 7.06005 3.465L8.52495 5.955C8.62495 5.935 8.72495 5.92085 8.82495 5.91255C8.92495 5.90415 9.01665 5.89995 9.10005 5.89995C9.90335 5.89995 10.5875 6.18245 11.1525 6.74745C11.7175 7.31245 12 7.99665 12 8.80005C12 9.59665 11.7175 10.2792 11.1525 10.8476C10.5875 11.4159 9.90335 11.7 9.10005 11.7ZM2.89995 9.6C2.68335 9.6 2.49585 9.52085 2.33745 9.36255C2.17915 9.20415 2.1 9.01665 2.1 8.80005C2.1 8.60665 2.165 8.4383 2.295 8.295C2.425 8.1517 2.58665 8.05505 2.77995 8.00505L4.36005 5.355C4.06335 5.0717 3.82915 4.74585 3.65745 4.37745C3.48585 4.00915 3.40005 3.61665 3.40005 3.19995C3.40005 2.39665 3.6842 1.7125 4.2525 1.1475C4.8208 0.582503 5.5033 0.300003 6.3 0.300003C7.0833 0.300003 7.7558 0.572503 8.3175 1.1175C8.8792 1.6625 9.17335 2.32335 9.19995 3.10005H8.20005C8.18005 2.59335 7.9867 2.16665 7.62 1.81995C7.2533 1.47335 6.8133 1.30005 6.3 1.30005C5.7733 1.30005 5.32495 1.48505 4.95495 1.85505C4.58495 2.22505 4.39995 2.67335 4.39995 3.19995C4.39995 3.62335 4.52495 4.00085 4.77495 4.33245C5.02495 4.66415 5.3433 4.89165 5.73 5.01495L3.645 8.52C3.665 8.5767 3.67915 8.6267 3.68745 8.67C3.69585 8.7133 3.70005 8.75665 3.70005 8.80005C3.70005 9.01665 3.62255 9.20415 3.46755 9.36255C3.31255 9.52085 3.12335 9.6 2.89995 9.6Z" })
756
- }), Zr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
757
- component: Xr,
758
- ...e
759
- }), Qr = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(P, { ...e }), $r = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(j, { ...e }), ei = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Te, { ...e }), ti = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Ne, { ...e }), ni = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Be, { ...e }), ri = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(re, { ...e }), ii = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(h, { ...e }), ai = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ze, { ...e }), oi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(m, { ...e }), si = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(Me, { ...e }), ci = () => /* @__PURE__ */ (0, K.jsx)("svg", {
760
- viewBox: "0 0 30 30",
761
- focusable: "false",
762
- "data-icon": "reload",
763
- width: "1em",
764
- height: "1em",
765
- fill: "currentColor",
766
- "aria-hidden": "true",
767
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M15.0625 24.6874C12.359 24.6874 10.0581 23.7467 8.1599 21.8653C6.26167 19.9839 5.31255 17.6955 5.31255 15V14.0239L3.00002 16.3365L1.68274 15.0192L6.25002 10.4519L10.8173 15.0192L9.50002 16.3365L7.18749 14.0239V15C7.18749 17.1714 7.95192 19.0164 9.48077 20.5348C11.0096 22.0533 12.8702 22.8125 15.0625 22.8125C15.5801 22.8125 16.0974 22.756 16.6142 22.643C17.131 22.5301 17.6354 22.3606 18.1274 22.1346L19.5336 23.5408C18.8301 23.919 18.1038 24.2047 17.3546 24.3978C16.6054 24.5909 15.8414 24.6874 15.0625 24.6874ZM23.75 19.548L19.1827 14.9808L20.5 13.6635L22.8126 15.976V15C22.8126 12.8285 22.0481 10.9835 20.5193 9.46509C18.9904 7.94666 17.1298 7.18744 14.9375 7.18744C14.4199 7.18744 13.9027 7.24393 13.3858 7.35691C12.869 7.46989 12.3646 7.63935 11.8726 7.86531L10.4664 6.45913C11.1699 6.08092 11.8963 5.79526 12.6455 5.60216C13.3947 5.40905 14.1587 5.3125 14.9375 5.3125C17.641 5.3125 19.9419 6.2532 21.8401 8.13459C23.7384 10.016 24.6875 12.3045 24.6875 15V15.976L27 13.6635L28.3173 14.9808L23.75 19.548Z" })
768
- }), li = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
769
- component: ci,
770
- ...e
771
- }), ui = () => /* @__PURE__ */ (0, K.jsx)("svg", {
772
- viewBox: "0 0 12 12",
773
- focusable: "false",
774
- "data-icon": "add-slide",
775
- width: "1em",
776
- height: "1em",
777
- fill: "currentColor",
778
- "aria-hidden": "true",
779
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M6.49995 7.42005H7.5V5.50005H9.42V4.5H7.5V2.58H6.49995V4.5H4.57995V5.50005H6.49995V7.42005ZM3 10C2.73 10 2.49585 9.90085 2.29755 9.70245C2.09915 9.50415 1.99995 9.27 1.99995 9V1.00005C1.99995 0.73005 2.09915 0.49585 2.29755 0.29745C2.49585 0.0991503 2.73 0 3 0H11C11.27 0 11.5041 0.0991503 11.7025 0.29745C11.9008 0.49585 12 0.73005 12 1.00005V9C12 9.27 11.9008 9.50415 11.7025 9.70245C11.5041 9.90085 11.27 10 11 10H3ZM3 9H11V1.00005H3V9ZM1.00005 12C0.73005 12 0.49585 11.9008 0.29745 11.7025C0.09915 11.5041 0 11.27 0 11V1.99995H1.00005V11H10V12H1.00005Z" })
780
- }), di = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
781
- component: ui,
782
- ...e
783
- }), fi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(ke, { ...e }), pi = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
784
- width: "18",
785
- height: "19",
786
- viewBox: "0 0 18 20",
787
- fill: "none",
788
- xmlns: "http://www.w3.org/2000/svg",
789
- children: [/* @__PURE__ */ (0, K.jsx)("rect", {
790
- x: "0.371338",
791
- y: "0.878906",
792
- width: "17.29",
793
- height: "17.29",
794
- rx: "8.645",
795
- fill: "white"
796
- }), /* @__PURE__ */ (0, K.jsx)("path", {
797
- d: "M5.30034 14.1689L4.37134 13.2399L8.08734 9.52391L4.37134 5.80791L5.30034 4.87891L9.01634 8.59491L12.7323 4.87891L13.6613 5.80791L9.94534 9.52391L13.6613 13.2399L12.7323 14.1689L9.01634 10.4529L5.30034 14.1689Z",
798
- fill: "#1677FF"
799
- })]
800
- }), mi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
801
- component: pi,
802
- ...e
803
- }), hi = () => /* @__PURE__ */ (0, K.jsxs)("svg", {
804
- width: "18",
805
- height: "19",
806
- viewBox: "0 0 18 20",
807
- fill: "none",
808
- xmlns: "http://www.w3.org/2000/svg",
809
- children: [/* @__PURE__ */ (0, K.jsx)("rect", {
810
- x: "0.371338",
811
- y: "0.878906",
812
- width: "17.29",
813
- height: "17.29",
814
- rx: "8.645",
815
- fill: "#1F1F1F"
816
- }), /* @__PURE__ */ (0, K.jsx)("path", {
817
- d: "M5.30034 14.1689L4.37134 13.2399L8.08734 9.52391L4.37134 5.80791L5.30034 4.87891L9.01634 8.59491L12.7323 4.87891L13.6613 5.80791L9.94534 9.52391L13.6613 13.2399L12.7323 14.1689L9.01634 10.4529L5.30034 14.1689Z",
818
- fill: "white"
819
- })]
820
- }), gi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
821
- component: hi,
822
- ...e
823
- }), _i = () => /* @__PURE__ */ (0, K.jsx)("svg", {
824
- width: "8",
825
- height: "13",
826
- viewBox: "0 0 8 13",
827
- fill: "none",
828
- xmlns: "http://www.w3.org/2000/svg",
829
- children: /* @__PURE__ */ (0, K.jsx)("path", {
830
- d: "M5.04156 6.58339L0.208313 1.75014L1.39156 0.566895L7.40831 6.58339L1.39156 12.6001L0.208313 11.4169L5.04156 6.58339Z",
831
- fill: "#545456"
832
- })
833
- }), vi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
834
- component: _i,
835
- ...e
836
- }), yi = () => /* @__PURE__ */ (0, K.jsx)("svg", {
837
- xmlns: "http://www.w3.org/2000/svg",
838
- height: "1em",
839
- viewBox: "0 -960 960 960",
840
- width: "1em",
841
- fill: "currentColor",
842
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M760-160v-80q0-17 11.5-28.5T800-280h80v-40H760v-40h120q17 0 28.5 11.5T920-320v40q0 17-11.5 28.5T880-240h-80v40h120v40H760Zm-525-80 185-291-172-269h106l124 200h4l123-200h107L539-531l186 291H618L482-457h-4L342-240H235Z" })
843
- }), bi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
844
- component: yi,
845
- ...e
846
- }), xi = () => /* @__PURE__ */ (0, K.jsx)("svg", {
847
- xmlns: "http://www.w3.org/2000/svg",
848
- height: "1em",
849
- viewBox: "0 -960 960 960",
850
- width: "1em",
851
- fill: "currentColor",
852
- children: /* @__PURE__ */ (0, K.jsx)("path", { d: "M760-600v-80q0-17 11.5-28.5T800-720h80v-40H760v-40h120q17 0 28.5 11.5T920-760v40q0 17-11.5 28.5T880-680h-80v40h120v40H760ZM235-160l185-291-172-269h106l124 200h4l123-200h107L539-451l186 291H618L482-377h-4L342-160H235Z" })
853
- }), Si = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
854
- component: xi,
855
- ...e
856
- }), Ci = () => /* @__PURE__ */ (0, K.jsx)("svg", {
857
- xmlns: "http://www.w3.org/2000/svg",
858
- width: "20",
859
- height: "20",
860
- viewBox: "0 0 20 20",
861
- fill: "none",
862
- style: { overflow: "visible" },
863
- children: /* @__PURE__ */ (0, K.jsxs)("g", {
864
- transform: "translate(-5.5, -4.5)",
865
- children: [/* @__PURE__ */ (0, K.jsx)("rect", {
866
- width: "15",
867
- height: "15",
868
- rx: "5",
869
- fill: "none"
870
- }), /* @__PURE__ */ (0, K.jsx)("path", {
871
- d: "M13.042 24.5V17.625H8.66699V16.375H13.042V9.5H15.1253V16.375H18.8753V12H20.9587V16.375H25.3337V17.625H20.9587V22H18.8753V17.625H15.1253V24.5H13.042Z",
872
- fill: "black"
873
- })]
874
- })
875
- }), wi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
876
- component: Ci,
877
- ...e
878
- }), Ti = () => /* @__PURE__ */ (0, K.jsx)("svg", {
879
- xmlns: "http://www.w3.org/2000/svg",
880
- width: "20",
881
- height: "20",
882
- viewBox: "0 0 20 20",
883
- fill: "none",
884
- style: { overflow: "visible" },
885
- children: /* @__PURE__ */ (0, K.jsxs)("g", {
886
- transform: "translate(-5.5, -4.5)",
887
- children: [/* @__PURE__ */ (0, K.jsx)("rect", {
888
- width: "15",
889
- height: "15",
890
- rx: "5",
891
- fill: "none"
892
- }), /* @__PURE__ */ (0, K.jsx)("path", {
893
- d: "M8.66699 25.3334V24.0834H25.3337V25.3334H8.66699ZM13.042 22.0001V8.66675H15.1253V22.0001H13.042ZM18.8753 22.0001V13.6667H20.9587V22.0001H18.8753Z",
894
- fill: "black"
895
- })]
896
- })
897
- }), Ei = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
898
- component: Ti,
899
- ...e
900
- }), Di = () => /* @__PURE__ */ (0, K.jsx)("svg", {
901
- xmlns: "http://www.w3.org/2000/svg",
902
- width: "20",
903
- height: "20",
904
- viewBox: "0 0 20 20",
905
- fill: "none",
906
- style: { overflow: "visible" },
907
- children: /* @__PURE__ */ (0, K.jsxs)("g", {
908
- transform: "translate(-5.5, -4.5)",
909
- children: [/* @__PURE__ */ (0, K.jsx)("rect", {
910
- width: "15",
911
- height: "15",
912
- rx: "5",
913
- fill: "none"
914
- }), /* @__PURE__ */ (0, K.jsx)("path", {
915
- d: "M13.042 25.3334V12.0001H15.1253V25.3334H13.042ZM18.8753 20.3334V12.0001H20.9587V20.3334H18.8753ZM8.66699 9.91675V8.66675H25.3337V9.91675H8.66699Z",
916
- fill: "black"
917
- })]
918
- })
919
- }), Oi = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
920
- component: Di,
921
- ...e
922
- }), ki = () => /* @__PURE__ */ (0, K.jsx)("svg", {
923
- width: "1em",
924
- height: "1em",
925
- viewBox: "0 0 24 24",
926
- fill: "none",
927
- children: /* @__PURE__ */ (0, K.jsx)("path", {
928
- d: "M2.32698 19.362C2 18.7202 2 17.8802 2 16.2V12V7V6.2C2 5.0799 2 4.51984 2.21799 4.09202C2.40973 3.71569 2.71569 3.40973 3.09202 3.21799C3.51984 3 4.0799 3 5.2 3H9.02229C9.74021 3 10.0992 3 10.4161 3.10931C10.6963 3.20597 10.9516 3.36373 11.1634 3.57116C11.4029 3.80573 11.5634 4.1268 11.8845 4.76892L13 7C15.3333 7 20 7 20 7V12M2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H13.8408C15.3463 21 16.099 21 16.7562 20.7633C17.3371 20.554 17.8617 20.2131 18.2888 19.7672C18.7721 19.2629 19.0778 18.575 19.6892 17.1993L22 12H6L2.32698 19.362Z",
929
- stroke: "currentColor",
930
- strokeWidth: "1.4",
931
- strokeLinecap: "round",
932
- strokeLinejoin: "round"
933
- })
934
- }), Ai = ({ props: e }) => /* @__PURE__ */ (0, K.jsx)(G.default, {
935
- component: ki,
936
- ...e
937
- }), ji = ({ icon: e, ...t }) => {
938
- let n = i();
939
- if (n.icons && n.icons[e]) return /* @__PURE__ */ (0, K.jsx)(Pr, {
940
- svgString: Ke(n.icons[e]),
941
- ...t
942
- });
943
- switch (e) {
944
- case "FolderOpen": return /* @__PURE__ */ (0, K.jsx)(Ai, { props: t });
945
- case "AddSlide": return /* @__PURE__ */ (0, K.jsx)(di, { props: t });
946
- case "AMP": return /* @__PURE__ */ (0, K.jsx)(fi, { props: t });
947
- case "ElementAccordion": return /* @__PURE__ */ (0, K.jsx)(oi, { props: t });
948
- case "Reload": return /* @__PURE__ */ (0, K.jsx)(li, { props: t });
949
- case "Web": return /* @__PURE__ */ (0, K.jsx)(ei, { props: t });
950
- case "Lock": return /* @__PURE__ */ (0, K.jsx)(Qr, { props: t });
951
- case "UnLock": return /* @__PURE__ */ (0, K.jsx)($r, { props: t });
952
- case "DesignerMode": return /* @__PURE__ */ (0, K.jsx)(qr, { props: t });
953
- case "EditorMode": return /* @__PURE__ */ (0, K.jsx)(Gr, { props: t });
954
- case "ClearChat": return /* @__PURE__ */ (0, K.jsx)(Yr, { props: t });
955
- case "Speed": return /* @__PURE__ */ (0, K.jsx)(Vr, { props: t });
956
- case "Justify": return /* @__PURE__ */ (0, K.jsx)(Br, { props: t });
957
- case "Colorize": return /* @__PURE__ */ (0, K.jsx)(Nr, { props: t });
958
- case "Email": return /* @__PURE__ */ (0, K.jsx)(jr, { props: t });
959
- case "Table": return /* @__PURE__ */ (0, K.jsx)(Ar, { props: t });
960
- case "Button": return /* @__PURE__ */ (0, K.jsx)(Or, { props: t });
961
- case "Group": return /* @__PURE__ */ (0, K.jsx)(Er, { props: t });
962
- case "Block": return /* @__PURE__ */ (0, K.jsx)(Tr, { props: t });
963
- case "Column": return /* @__PURE__ */ (0, K.jsx)(wr, { props: t });
964
- case "Atom": return /* @__PURE__ */ (0, K.jsx)(Cr, { props: t });
965
- case "Styles": return /* @__PURE__ */ (0, K.jsx)(et, { props: t });
966
- case "Close": return /* @__PURE__ */ (0, K.jsx)(tt, { props: t });
967
- case "Drop": return /* @__PURE__ */ (0, K.jsx)(ct, { props: t });
968
- case "DarkWhite": return /* @__PURE__ */ (0, K.jsx)(ut, { props: t });
969
- case "MinWidth": return /* @__PURE__ */ (0, K.jsx)(ft, { props: t });
970
- case "MaxWidth": return /* @__PURE__ */ (0, K.jsx)(mt, { props: t });
971
- case "BgPositionHorizontal": return /* @__PURE__ */ (0, K.jsx)(gt, { props: t });
972
- case "BgPositionVertical": return /* @__PURE__ */ (0, K.jsx)(vt, { props: t });
973
- case "UpTo": return /* @__PURE__ */ (0, K.jsx)(bt, { props: t });
974
- case "VerticalOffset": return /* @__PURE__ */ (0, K.jsx)(St, { props: t });
975
- case "AlignHorizontalLeft": return /* @__PURE__ */ (0, K.jsx)(Ct, { props: t });
976
- case "AlignHorizontalCenter": return /* @__PURE__ */ (0, K.jsx)(wt, { props: t });
977
- case "AlignHorizontalRight": return /* @__PURE__ */ (0, K.jsx)(Tt, { props: t });
978
- case "AlignVerticalTop": return /* @__PURE__ */ (0, K.jsx)(Et, { props: t });
979
- case "AlignVerticalCenter": return /* @__PURE__ */ (0, K.jsx)(Dt, { props: t });
980
- case "AlignVerticalBottom": return /* @__PURE__ */ (0, K.jsx)(Ot, { props: t });
981
- case "MixedView": return /* @__PURE__ */ (0, K.jsx)(At, { props: t });
982
- case "LandscapeView": return /* @__PURE__ */ (0, K.jsx)(Mt, { props: t });
983
- case "PortraitView": return /* @__PURE__ */ (0, K.jsx)(Pt, { props: t });
984
- case "SquareView": return /* @__PURE__ */ (0, K.jsx)(It, { props: t });
985
- case "PanelLeft": return /* @__PURE__ */ (0, K.jsx)(Lt, { props: t });
986
- case "Sun": return /* @__PURE__ */ (0, K.jsx)(x, { props: t });
987
- case "Crescent": return /* @__PURE__ */ (0, K.jsx)(Bt, { props: t });
988
- case "Vimeo": return /* @__PURE__ */ (0, K.jsx)(Ht, { props: t });
989
- case "Image": return /* @__PURE__ */ (0, K.jsx)(Ut, { props: t });
990
- case "Blur": return /* @__PURE__ */ (0, K.jsx)(Kt, { props: t });
991
- case "ZoomOutMap": return /* @__PURE__ */ (0, K.jsx)(Jt, { props: t });
992
- case "Paragraph": return /* @__PURE__ */ (0, K.jsx)(Xt, { props: t });
993
- case "ElementImage": return /* @__PURE__ */ (0, K.jsx)(Zt, { props: t });
994
- case "ElementImageAI": return /* @__PURE__ */ (0, K.jsx)(Qt, { props: t });
995
- case "ElementText": return /* @__PURE__ */ (0, K.jsx)($t, { props: t });
996
- case "ElementTitle": return /* @__PURE__ */ (0, K.jsx)(en, { props: t });
997
- case "ElementButton": return /* @__PURE__ */ (0, K.jsx)(tn, { props: t });
998
- case "ElementSpacer": return /* @__PURE__ */ (0, K.jsx)(nn, { props: t });
999
- case "ElementListUL": return /* @__PURE__ */ (0, K.jsx)(rn, { props: t });
1000
- case "ElementListOL": return /* @__PURE__ */ (0, K.jsx)(on, { props: t });
1001
- case "ElementDivider": return /* @__PURE__ */ (0, K.jsx)(sn, { props: t });
1002
- case "ElementSocial": return /* @__PURE__ */ (0, K.jsx)(cn, { props: t });
1003
- case "ElementTable": return /* @__PURE__ */ (0, K.jsx)(ln, { props: t });
1004
- case "ElementCountdown": return /* @__PURE__ */ (0, K.jsx)(un, { props: t });
1005
- case "ElementVideo": return /* @__PURE__ */ (0, K.jsx)(dn, { props: t });
1006
- case "ElementTextAI": return /* @__PURE__ */ (0, K.jsx)(pn, { props: t });
1007
- case "ElementCarousel": return /* @__PURE__ */ (0, K.jsx)(si, { props: t });
1008
- case "ElementForm": return /* @__PURE__ */ (0, K.jsx)(mn, { props: t });
1009
- case "AI": return /* @__PURE__ */ (0, K.jsx)(hn, { props: t });
1010
- case "Typograf": return /* @__PURE__ */ (0, K.jsx)(_n, { props: t });
1011
- case "NewEmail": return /* @__PURE__ */ (0, K.jsx)(vn, { props: t });
1012
- case "Import": return /* @__PURE__ */ (0, K.jsx)(bn, { props: t });
1013
- case "generationAI": return /* @__PURE__ */ (0, K.jsx)(Sn, { props: t });
1014
- case "PaddingTopBottom": return /* @__PURE__ */ (0, K.jsx)(wn, { props: t });
1015
- case "PaddingLeftRight": return /* @__PURE__ */ (0, K.jsx)(En, { props: t });
1016
- case "PaddingSwitcher": return /* @__PURE__ */ (0, K.jsx)(On, { props: t });
1017
- case "PaddingTop": return /* @__PURE__ */ (0, K.jsx)(An, { props: t });
1018
- case "PaddingBottom": return /* @__PURE__ */ (0, K.jsx)(Mn, { props: t });
1019
- case "PaddingLeft": return /* @__PURE__ */ (0, K.jsx)(Pn, { props: t });
1020
- case "PaddingRight": return /* @__PURE__ */ (0, K.jsx)(In, { props: t });
1021
- case "Code": return /* @__PURE__ */ (0, K.jsx)(Ln, { props: t });
1022
- case "GoToParent": return /* @__PURE__ */ (0, K.jsx)(Rn, { props: t });
1023
- case "UndoOutlined": return /* @__PURE__ */ (0, K.jsx)(zn, { props: t });
1024
- case "RedoOutlined": return /* @__PURE__ */ (0, K.jsx)(Bn, { props: t });
1025
- case "HistoryOutlined": return /* @__PURE__ */ (0, K.jsx)(Vn, { props: t });
1026
- case "EyeOutlined": return /* @__PURE__ */ (0, K.jsx)(Hn, { props: t });
1027
- case "SendOutlined": return /* @__PURE__ */ (0, K.jsx)(Un, { props: t });
1028
- case "CheckCircleOutlined": return /* @__PURE__ */ (0, K.jsx)(Gn, { props: t });
1029
- case "CheckCircleVerified": return /* @__PURE__ */ (0, K.jsx)(Kn, { props: t });
1030
- case "ShareAltOutlined": return /* @__PURE__ */ (0, K.jsx)(qn, { props: t });
1031
- case "MobileOutlined": return /* @__PURE__ */ (0, K.jsx)(Jn, { props: t });
1032
- case "DesktopOutlined": return /* @__PURE__ */ (0, K.jsx)(Yn, { props: t });
1033
- case "PlusCircleOutlined": return /* @__PURE__ */ (0, K.jsx)(Xn, { props: t });
1034
- case "CommentOutlined": return /* @__PURE__ */ (0, K.jsx)(Zn, { props: t });
1035
- case "SettingOutlined": return /* @__PURE__ */ (0, K.jsx)(Qn, { props: t });
1036
- case "BorderOuterOutlined": return /* @__PURE__ */ (0, K.jsx)(rr, { props: t });
1037
- case "AppstoreAddOutlined": return /* @__PURE__ */ (0, K.jsx)(ar, { props: t });
1038
- case "AppstoreOutlined": return /* @__PURE__ */ (0, K.jsx)(sr, { props: t });
1039
- case "BuildOutlined": return /* @__PURE__ */ (0, K.jsx)(lr, { props: t });
1040
- case "SearchOutlined": return /* @__PURE__ */ (0, K.jsx)(dr, { props: t });
1041
- case "CloseOutlined": return /* @__PURE__ */ (0, K.jsx)(pr, { props: t });
1042
- case "AddImage": return /* @__PURE__ */ (0, K.jsx)(hr, { props: t });
1043
- case "MergeTags": return /* @__PURE__ */ (0, K.jsx)(_r, { props: t });
1044
- case "ArrowLeftOutlined": return /* @__PURE__ */ (0, K.jsx)($e, { props: t });
1045
- case "ChatGpt": return /* @__PURE__ */ (0, K.jsx)(Qe, { props: t });
1046
- case "LightMode": return /* @__PURE__ */ (0, K.jsx)(vr, { props: t });
1047
- case "DarkMode": return /* @__PURE__ */ (0, K.jsx)(yr, { props: t });
1048
- case "AutoMode": return /* @__PURE__ */ (0, K.jsx)(br, { props: t });
1049
- case "EmailConfirmation": return /* @__PURE__ */ (0, K.jsx)(Sr, { props: t });
1050
- case "SliderGroup": return /* @__PURE__ */ (0, K.jsx)(Fr, { props: t });
1051
- case "SliderTemplates": return /* @__PURE__ */ (0, K.jsx)(Ir, { props: t });
1052
- case "SliderBlocks": return /* @__PURE__ */ (0, K.jsx)(Lr, { props: t });
1053
- case "SliderAdaptive": return /* @__PURE__ */ (0, K.jsx)(Rr, { props: t });
1054
- case "SliderMagic": return /* @__PURE__ */ (0, K.jsx)(zr, { props: t });
1055
- case "Replacer": return /* @__PURE__ */ (0, K.jsx)(Ur, { props: t });
1056
- case "WebHook": return /* @__PURE__ */ (0, K.jsx)(Zr, { props: t });
1057
- case "CloseAll": return /* @__PURE__ */ (0, K.jsx)(gi, { props: t });
1058
- case "CloseTag": return /* @__PURE__ */ (0, K.jsx)(mi, { props: t });
1059
- case "GroupArrow": return /* @__PURE__ */ (0, K.jsx)(vi, { props: t });
1060
- case "Subscript": return /* @__PURE__ */ (0, K.jsx)(bi, { props: t });
1061
- case "Superscript": return /* @__PURE__ */ (0, K.jsx)(Si, { props: t });
1062
- case "DotsHoriz": return /* @__PURE__ */ (0, K.jsx)(Rt, { props: t });
1063
- case "CloudUploadOutlined": return /* @__PURE__ */ (0, K.jsx)(ti, { props: t });
1064
- case "CloudDownloadOutlined": return /* @__PURE__ */ (0, K.jsx)(ni, { props: t });
1065
- case "SaveOutlined": return /* @__PURE__ */ (0, K.jsx)(ri, { props: t });
1066
- case "CopyOutlined": return /* @__PURE__ */ (0, K.jsx)(ii, { props: t });
1067
- case "DeleteOutlined": return /* @__PURE__ */ (0, K.jsx)(ai, { props: t });
1068
- case "Target": return /* @__PURE__ */ (0, K.jsx)(Wt, { props: t });
1069
- case "DownOutlined": return /* @__PURE__ */ (0, K.jsx)($n, { props: t });
1070
- case "RightOutlined": return /* @__PURE__ */ (0, K.jsx)(er, { props: t });
1071
- case "SyncOutlined": return /* @__PURE__ */ (0, K.jsx)(tr, { props: t });
1072
- case "AlignLeftOutlined": return /* @__PURE__ */ (0, K.jsx)(nt, { props: t });
1073
- case "AlignCenterOutlined": return /* @__PURE__ */ (0, K.jsx)(rt, { props: t });
1074
- case "AlignRightOutlined": return /* @__PURE__ */ (0, K.jsx)(it, { props: t });
1075
- case "ImageAdd": return /* @__PURE__ */ (0, K.jsx)(at, { props: t });
1076
- case "Edit": return /* @__PURE__ */ (0, K.jsx)(ot, { props: t });
1077
- case "NewVerticalAlignCenter": return /* @__PURE__ */ (0, K.jsx)(wi, { props: t });
1078
- case "NewVerticalAlignTop": return /* @__PURE__ */ (0, K.jsx)(Oi, { props: t });
1079
- case "NewVerticalAlignBottom": return /* @__PURE__ */ (0, K.jsx)(Ei, { props: t });
1080
- default: return null;
1081
- }
1082
- }, J = /* @__PURE__ */ e(s()), Mi = ({ className: e, style: t, color: n, text: r, bordered: i, ...a }) => {
1083
- let o = r || "";
1084
- return /* @__PURE__ */ (0, K.jsx)(J.Tag, {
1085
- style: t,
1086
- color: n,
1087
- bordered: i,
1088
- className: e,
1089
- ...a,
1090
- children: o
1091
- });
1092
- }, Ni = Ge(), Pi = ({ text: e, counter: t, limits: n, wrapperStyles: r }) => {
1093
- let { __: a, _n: o } = We(), s = (0, Ni.useNavigate)(), c = i(), { token: l } = J.theme.useToken(), u = +n > 0, d = !u || t < +n, f = c.billingPageUrl || "/billing";
1094
- return /* @__PURE__ */ (0, K.jsxs)("div", {
1095
- className: "limits-couter-wrapper",
1096
- style: r,
1097
- children: [/* @__PURE__ */ (0, K.jsx)(Mi, {
1098
- bordered: !1,
1099
- text: t + " " + a("of") + " " + (u ? n : "∞") + " " + (e || o("test", "tests", n)) + " " + o("was used", "were used", t),
1100
- className: "limit-counter",
1101
- style: { color: d ? l.colorText : "white" },
1102
- color: d ? l.colorFillSecondary : "rgb(255, 77, 79)"
1103
- }), u && /* @__PURE__ */ (0, K.jsx)("div", {
1104
- style: {
1105
- fontSize: 14,
1106
- textDecoration: "underline"
1107
- },
1108
- onClick: () => s(f),
1109
- children: a("Need more?")
1110
- })]
1111
- });
1112
- }, Fi = /* @__PURE__ */ e(c()), Y = /* @__PURE__ */ e(Ee());
1113
- function Ii(e, t) {
1114
- let n = document.createElement("input");
1115
- n.type = "file", n.accept = e, n.multiple = !1, n.setAttribute("data-testid", "uploadFile"), n.style.position = "absolute", n.style.opacity = "0", n.style.pointerEvents = "none", document.body.appendChild(n), n.onchange = () => {
1116
- n.files?.length && t(n.files), document.body.removeChild(n);
1117
- }, n.click();
1118
- }
1119
- function Li(e) {
1120
- let t = e.split(".");
1121
- return t[t.length - 1].toLowerCase();
1122
- }
1123
- var X = "index.html";
1124
- function Z(e, t) {
1125
- return e.find(function(e) {
1126
- return e.name.toLowerCase().endsWith(t);
1127
- });
1128
- }
1129
- async function Ri(e, t, n) {
1130
- let { files: r } = await new Fi.default().loadAsync(e), i = Object.keys(r).map((e) => r[e]), a = r[X] || Z(i, X) || Z(i, ".html") || Z(i, ".htm");
1131
- if (a) {
1132
- let e = a.name.split("/"), i = document.location.pathname.split("/"), o = document.location.origin + i.slice(0, i.length - e.length).join("/") + "/", s = await a.async("text"), c = e.slice(0, e.length - 1).join("/");
1133
- return await U(s, async (e) => {
1134
- let i = e.document;
1135
- await H(i, async (e) => {
1136
- e = e.replace("\\", "/"), e.startsWith(".") && (e = e.substring(1)), e.startsWith("/") && (e = e.substring(1)), e.startsWith(o) && (e = e.substring(o.length)), c && !e.match("^(ht|f)tp(s?)://") && (e = `${c}/${e}`);
1137
- let n = r[e];
1138
- if (n) {
1139
- let e = n.name;
1140
- return t(await n.async("blob"), e);
1141
- }
1142
- let i = V(e);
1143
- return t(e, i);
1144
- }), n && n(e);
1145
- });
1146
- }
1147
- }
1148
- async function Q(e, t, n) {
1149
- return await U(e, async (e) => {
1150
- let r = e.document;
1151
- await H(r, async (e) => {
1152
- e = e.replace("\\", "/");
1153
- let n = V(e);
1154
- return t(e, n);
1155
- }), n && n(e);
1156
- });
1157
- }
1158
- async function zi(e, t, n) {
1159
- if (e) switch (Li(e.name)) {
1160
- case "zip": return Ri(e, t, n);
1161
- case "eml": {
1162
- let r = await e.text(), { readEml: i } = await import("./91242fb3.js"), a = i(r);
1163
- if (a instanceof Error) throw console.error("Failed to parse EML file", a), a;
1164
- let o = typeof a == "string" ? a : a.html;
1165
- if (o === void 0) {
1166
- let e = /* @__PURE__ */ Error("Eml does not contain text/html");
1167
- throw console.error(e.message), e;
1168
- }
1169
- return Q(o, t, n);
1170
- }
1171
- default: return Q(await e.text(), t, n);
1172
- }
1173
- }
1174
- async function Bi(e, t) {
1175
- if (typeof e != "string") return e;
1176
- try {
1177
- let n = await t({ url: Ue(e) });
1178
- return n?.data || `${e}`, n?.data || null;
1179
- } catch {
1180
- return null;
1181
- }
1182
- }
1183
- function Vi(e, t) {
1184
- if (!e || typeof e != "string") return `default.${Y.extension(t) || "bin"}`;
1185
- if (e.split(".").length < 2) {
1186
- let n = Y.extension(t);
1187
- if (n) return `${e}.${n}`;
1188
- }
1189
- return e;
1190
- }
1191
- function $(e) {
1192
- if (e && typeof e == "object" && !Array.isArray(e) && "code" in e && "message" in e && e.data) {
1193
- if (e.data.status === 400) return {
1194
- file_url: null,
1195
- error: {
1196
- code: e.code,
1197
- message: e.message,
1198
- status: e.data.status
1199
- }
1200
- };
1201
- if (e.data.file_url) return {
1202
- file_url: e.data.file_url,
1203
- error: null
1204
- };
1205
- }
1206
- if (Array.isArray(e) && e.length > 0) {
1207
- let t = e[0];
1208
- if (t && typeof t == "object") {
1209
- if ("code" in t && "message" in t && t.data?.status === 400) return {
1210
- file_url: null,
1211
- error: {
1212
- code: t.code,
1213
- message: t.message,
1214
- status: t.data.status
1215
- }
1216
- };
1217
- if ("file_url" in t && t.file_url) return {
1218
- file_url: t.file_url,
1219
- error: null
1220
- };
1221
- }
1222
- }
1223
- if (e && typeof e == "object" && !Array.isArray(e) && 0 in e) {
1224
- if (e.data?.status === 400) return {
1225
- file_url: null,
1226
- error: { status: e.data.status }
1227
- };
1228
- if (e[0]?.file_url) return {
1229
- file_url: e[0].file_url,
1230
- error: null
1231
- };
1232
- }
1233
- return {
1234
- file_url: null,
1235
- error: null
1236
- };
1237
- }
1238
- function Hi(e, t) {
1239
- if (!e || e.error) return `${t}`, typeof t == "string" ? t : "";
1240
- let n = $(e.data);
1241
- return n.error ? (`${n.error.status}${t}`, typeof t == "string" ? t : "") : n.file_url ? n.file_url : typeof t == "string" ? t : "";
1242
- }
1243
- var Ui = (e, t, n, r) => async (i, a) => {
1244
- try {
1245
- let o = await Bi(i, e);
1246
- if (!o) return `${i}`, typeof i == "string" ? i : "";
1247
- let s = Vi(a, o.type), c = new File([o], s.toLowerCase());
1248
- return Hi(await t({
1249
- user_id: n.id,
1250
- folder: r.id,
1251
- file: c
1252
- }), i);
1253
- } catch (e) {
1254
- return console.error(`Error processing file upload for url: ${i}`, e), typeof i == "string" ? i : "";
1255
- }
1256
- }, Wi = (e) => (t) => {
1257
- let n = t.document;
1258
- n.title = n?.title || He(e.name)[0];
1259
- };
1260
- //#endregion
1261
- export { Ii as a, W as c, Je as d, qe as f, zi as i, Ye as l, Ui as n, Pi as o, $ as r, ji as s, Wi as t, Xe as u };