@myissue/vue-website-page-builder 3.3.71 → 3.3.73

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 (57) hide show
  1. package/README.md +65 -6
  2. package/dist/ar-Sg258Eh1.js +110 -0
  3. package/dist/de-DU6Hv8W2.js +112 -0
  4. package/dist/en-B__-m2Os.js +112 -0
  5. package/dist/es-DmzWA1F8.js +112 -0
  6. package/dist/fr-BARDIQ1D.js +112 -0
  7. package/dist/hi-BgQJcRDP.js +112 -0
  8. package/dist/ja-Drg74-B1.js +112 -0
  9. package/dist/pt-D19DpjTw.js +112 -0
  10. package/dist/robots.txt +1 -1
  11. package/dist/ru-D0zybCPa.js +112 -0
  12. package/dist/style.css +1 -0
  13. package/dist/vue-website-page-builder.js +12019 -11855
  14. package/dist/vue-website-page-builder.umd.cjs +47 -46
  15. package/dist/zh-Hans-notf0z2N.js +112 -0
  16. package/package.json +2 -3
  17. package/src/App.vue +17 -1
  18. package/src/Components/PageBuilder/DefaultComponents/DefaultBuilderComponents.vue +10 -4
  19. package/src/Components/PageBuilder/EditorMenu/Editables/BackgroundColorEditor.vue +6 -2
  20. package/src/Components/PageBuilder/EditorMenu/Editables/BorderRadius.vue +23 -13
  21. package/src/Components/PageBuilder/EditorMenu/Editables/Borders.vue +22 -9
  22. package/src/Components/PageBuilder/EditorMenu/Editables/ClassEditor.vue +15 -7
  23. package/src/Components/PageBuilder/EditorMenu/Editables/ComponentTopMenu.vue +10 -6
  24. package/src/Components/PageBuilder/EditorMenu/Editables/ManageBackgroundOpacity.vue +1 -1
  25. package/src/Components/PageBuilder/EditorMenu/Editables/ManageOpacity.vue +1 -1
  26. package/src/Components/PageBuilder/EditorMenu/Editables/Margin.vue +12 -5
  27. package/src/Components/PageBuilder/EditorMenu/Editables/OpacityEditor.vue +4 -1
  28. package/src/Components/PageBuilder/EditorMenu/Editables/Padding.vue +13 -5
  29. package/src/Components/PageBuilder/EditorMenu/Editables/StyleEditor.vue +15 -8
  30. package/src/Components/PageBuilder/EditorMenu/Editables/TextColorEditor.vue +7 -1
  31. package/src/Components/PageBuilder/EditorMenu/Editables/Typography.vue +36 -16
  32. package/src/Components/PageBuilder/EditorMenu/RightSidebarEditor.vue +26 -14
  33. package/src/Components/PageBuilder/ToolbarOption/ToolbarOption.vue +13 -10
  34. package/src/Components/TipTap/TipTapInput.vue +1 -1
  35. package/src/PageBuilder/PageBuilder.vue +115 -19
  36. package/src/composables/builderInstance.ts +4 -7
  37. package/src/composables/useTranslations.ts +28 -0
  38. package/src/css/{app.css → style.css} +16 -0
  39. package/src/index.ts +5 -2
  40. package/src/locales/ar.json +85 -0
  41. package/src/locales/de.json +86 -0
  42. package/src/locales/en.json +93 -0
  43. package/src/locales/es.json +86 -0
  44. package/src/locales/fr.json +86 -0
  45. package/src/locales/hi.json +86 -0
  46. package/src/locales/ja.json +86 -0
  47. package/src/locales/pt.json +92 -0
  48. package/src/locales/ru.json +86 -0
  49. package/src/locales/zh-Hans.json +86 -0
  50. package/src/main.ts +3 -4
  51. package/src/plugin.ts +16 -0
  52. package/src/services/PageBuilderService.ts +67 -28
  53. package/src/stores/page-builder-state.ts +3 -3
  54. package/src/tests/PageBuilderTest.vue +41 -77
  55. package/src/types/index.ts +1 -1
  56. package/src/utils/builder/html-doc-declaration-with-components.ts +1 -1
  57. package/dist/vue-website-page-builder.css +0 -1
package/README.md CHANGED
@@ -23,6 +23,8 @@
23
23
  - [Important: CSS Prefixing (`pbx-`)](#important-css-prefixing-pbx-)
24
24
  - [Rendering HTML Output in Other Frameworks (React, Nuxt, etc.)](#rendering-html-output-in-other-frameworks-react-nuxt-etc)
25
25
  - [Providing Configuration to the Page Builder](#providing-configuration-to-the-page-builder)
26
+ - [Comprehensive Language Support in the Page Builder](#comprehensive-language-support-in-the-page-builder)
27
+ - [Disabling the Language Dropdown](#disabling-the-language-dropdown)
26
28
  - [Local Storage \& Auto-Save](#local-storage--auto-save)
27
29
  - [Retrieving the Latest HTML Content for Form Submission](#retrieving-the-latest-html-content-for-form-submission)
28
30
  - [Resetting the Builder After Successful Resource Creation or Update](#resetting-the-builder-after-successful-resource-creation-or-update)
@@ -167,21 +169,19 @@ This section walks you through the essential steps—from installation to render
167
169
 
168
170
  To get started with the Page Builder, follow these steps:
169
171
 
170
- - **Call `initPageBuilder()` once** in your application entry point (e.g., `main.ts` or `main.js`). This sets up the shared builder instance for your entire app.
172
+ - **Use the Page Builder plugin** in your application entry point (e.g., `main.ts` or `main.js`). This sets up the shared builder instance for your entire app.
171
173
  - **Access the shared builder instance** anywhere in your application using the `getPageBuilder()` composable.
172
174
  - **Import the CSS file once** in your `main.js`, `main.ts`, or root component to ensure proper styling and automatic icon loading.
173
175
 
174
176
  ```typescript
175
177
  import { createApp } from 'vue'
176
178
  import App from './App.vue'
177
- import { initPageBuilder } from '@myissue/vue-website-page-builder'
179
+ import { pageBuilder } from '@myissue/vue-website-page-builder'
178
180
  import '@myissue/vue-website-page-builder/style.css'
179
181
 
180
- // Initialize the shared Page Builder instance
181
- // This must be called once in your app entry point
182
- initPageBuilder()
183
-
182
+ // Use the Page Builder plugin
184
183
  const app = createApp(App)
184
+ app.use(pageBuilder)
185
185
  app.mount('#app')
186
186
  ```
187
187
 
@@ -337,6 +337,65 @@ console.info('You may inspect this result for message, status, or error:', resul
337
337
  </template>
338
338
  ```
339
339
 
340
+ ## Comprehensive Language Support in the Page Builder
341
+
342
+ The Page Builder offers robust multilingual support, enabling you to reach a global audience with ease. By default, it supports the following languages, chosen for their widespread use and strong developer communities:
343
+
344
+ | Language | Code |
345
+ | -------------------- | ------- |
346
+ | English | en |
347
+ | Chinese (Simplified) | zh-Hans |
348
+ | French | fr |
349
+ | Japanese | ja |
350
+ | Russian | ru |
351
+ | Spanish | es |
352
+ | Portuguese (Brazil) | pt |
353
+ | German | de |
354
+ | Arabic | ar |
355
+ | Hindi | hi |
356
+
357
+ You can set a default language for your project:
358
+
359
+ ```js
360
+ userSettings: {
361
+ language: {
362
+ default: 'en',
363
+ enable: ['en', 'zh-Hans', 'fr'],
364
+ },
365
+ },
366
+ ```
367
+
368
+ If you prefer to offer only a subset of these languages for users to switch between, specify them using the `enable` option.
369
+
370
+ If you do not provide the `enable` array, the Page Builder will default to showing all supported languages by default.
371
+
372
+ ```js
373
+ userSettings: {
374
+ language: {
375
+ default: 'en',
376
+ enable: ['en', 'zh-Hans', 'fr'],
377
+ },
378
+ },
379
+ ```
380
+
381
+ #### Disabling the Language Dropdown
382
+
383
+ If you want to completely hide the language selector from the UI (e.g., when only one language is available or you want a fixed language), simply set `disableLanguageDropdown` to `true`.
384
+
385
+ Even when the dropdown is disabled, the default language will still be applied automatically. This gives you full control over localization while keeping the interface simple for your users.
386
+
387
+ ```js
388
+ userSettings: {
389
+ theme: 'light',
390
+ language: {
391
+ default: 'en',
392
+ disableLanguageDropdown: true,
393
+ },
394
+ },
395
+ ```
396
+
397
+ This flexibility allows you to tailor the language experience to your audience’s needs.
398
+
340
399
  ## Local Storage & Auto-Save
341
400
 
342
401
  The Page Builder automatically saves all changes to the browser’s local storage. Every time you add, edit, or delete a component, your progress is preserved—even if you close the browser or navigate away.
@@ -0,0 +1,110 @@
1
+ const e = "حفظ", o = "خيارات", t = "الصورة الرمزية", n = "نشر", a = "إغلاق", i = "مكون", s = "أنماط", r = "الطباعة", l = "اختر", d = "الحشو", p = "الهامش", u = "عالمي", c = "محدد", g = "الحدود", y = "شفاف", h = "إضافة", m = "خاصية", S = "قيمة", C = "تحرير", f = "حذف", w = "معاينة", T = "جوال", b = {
2
+ "Reset Page": "إعادة تعيين الصفحة",
3
+ "Global Page Styles": "أنماط الصفحة العامة",
4
+ "Try the powerful Click & Drop Page Builder—designed for developers and creators who want full control without the hassle. Customize layouts, fonts, and colors. Edit content visually in real time. Add media, embed YouTube videos, or export everything as clean HTML. With responsive editing, local auto-save, Tailwind support, and even Unsplash integration, it's everything you need—wrapped in one seamless builder. Build Stunning Pages in Minutes.": "جرب منشئ الصفحات القوي Click & Drop - المصمم للمطورين والمبدعين الذين يريدون التحكم الكامل دون عناء. قم بتخصيص التخطيطات والخطوط والألوان. قم بتحرير المحتوى بصريًا في الوقت الفعلي. أضف الوسائط، قم بتضمين مقاطع فيديو YouTube، أو قم بتصدير كل شيء كـ HTML نظيف. مع التحرير المتجاوب، الحفظ التلقائي المحلي، دعم Tailwind، وحتى تكامل Unsplash، إنه كل ما تحتاجه - ملفوف في منشئ واحد سلس. قم ببناء صفحات مذهلة في دقائق.",
5
+ "A Page Builder designed for growth. Build your website pages with ready-made components that are fully customizable and always responsive, designed to fit every need. A powerful Page Builder for growing merchants, brands, and agencies.": "منشئ صفحات مصمم للنمو. قم ببناء صفحات موقعك الإلكتروني باستخدام مكونات جاهزة قابلة للتخصيص بالكامل ومتجاوبة دائمًا، مصممة لتلبية كل احتياجاتك. منشئ صفحات قوي للتجار والعلامات التجارية والوكالات المتنامية.",
6
+ "Everything you need. Break free from design limitations": "كل ما تحتاجه. تحرر من قيود التصميم",
7
+ "Bring your vision to life and create impressive pages using a click & drop Page Builder": "حقق رؤيتك واصنع صفحات رائعة باستخدام منشئ الصفحات السحب والإفلات",
8
+ "The web builder for stunning pages. Enable users to design and publish modern pages at any scale. Build responsive pages like listings, jobs or blog posts and manage content easily using the free click & drop Page Builder. Developed with TypeScript, Vue 3, Composition API, Pinia, CSS, Tailwind CSS and HTML.": "منشئ الويب لصفحات مذهلة. يمكن المستخدمين من تصميم ونشر صفحات حديثة على أي نطاق. قم ببناء صفحات متجاوبة مثل القوائم، الوظائف أو منشورات المدونات وأدر المحتوى بسهولة باستخدام منشئ الصفحات السحب والإفلات المجاني. تم تطويره باستخدام TypeScript، Vue 3، Composition API، Pinia، CSS، Tailwind CSS و HTML.",
9
+ "Download or install our powerful, flexible, and easy-to-use free Vue 3 Page Builder via": "قم بتنزيل أو تثبيت منشئ الصفحات المجاني Vue 3 القوي والمرن وسهل الاستخدام عبر",
10
+ Save: e,
11
+ "Add new Components": "إضافة مكونات جديدة",
12
+ Options: o,
13
+ "Config Overview": "نظرة عامة على التكوين",
14
+ "HTML Overview": "نظرة عامة على HTML",
15
+ "Delete Layout": "حذف التخطيط",
16
+ avatar: t,
17
+ Publish: n,
18
+ "Add Components to Page": "إضافة مكونات إلى الصفحة",
19
+ Close: a,
20
+ "Helper Components": "مكونات المساعدة",
21
+ "Click to add": "انقر للإضافة",
22
+ component: i,
23
+ "Layout Components": "مكونات التخطيط",
24
+ "Click to add component": "انقر لإضافة مكون",
25
+ "Remove all Components": "إزالة جميع المكونات",
26
+ "Are you sure you want to remove all Components?": "هل أنت متأكد أنك تريد إزالة جميع المكونات؟",
27
+ Styles: s,
28
+ "Apply styles that affect the entire page. These settings include global font family, text color, background color, and other universal styles that apply to all sections.": "قم بتطبيق الأنماط التي تؤثر على الصفحة بأكملها. تتضمن هذه الإعدادات عائلة الخطوط العامة، ولون النص، ولون الخلفية، والأنماط العامة الأخرى التي تنطبق على جميع الأقسام.",
29
+ "Update Page Styles": "تحديث أنماط الصفحة",
30
+ "Download HTML": "تنزيل HTML",
31
+ "Export the entire page as a standalone HTML file. This includes all sections, content, and applied styles, making it ready for use or integration elsewhere.": "قم بتصدير الصفحة بأكملها كملف HTML مستقل. يتضمن ذلك جميع الأقسام والمحتوى والأنماط المطبقة، مما يجعلها جاهزة للاستخدام أو التكامل في مكان آخر.",
32
+ "Download HTML file": "تنزيل ملف HTML",
33
+ Typographies: r,
34
+ "Font Appearance": "مظهر الخط",
35
+ "Font Size": "حجم الخط",
36
+ Select: l,
37
+ "Font size": "حجم الخط",
38
+ "Font tablet size": "حجم الخط للجهاز اللوحي",
39
+ "Font small screens": "حجم الخط للشاشات الصغيرة",
40
+ "Font weight": "وزن الخط",
41
+ "Font family": "عائلة الخط",
42
+ "Font Style": "نمط الخط",
43
+ "Opacity & Transparency": "الشفافية والعتامة",
44
+ Padding: d,
45
+ "Vertical Padding": "الحشو العمودي",
46
+ "Horizontal Padding": "الحشو الأفقي",
47
+ Margin: p,
48
+ "Vertical Margin": "الهامش العمودي",
49
+ "Horizontal Margin": "الهامش الأفقي",
50
+ "Border Radius": "نصف القطر الحدودي",
51
+ Global: u,
52
+ Specific: c,
53
+ "Border Radius top left": "نصف القطر الحدودي العلوي الأيسر",
54
+ "Border Radius top right": "نصف القطر الحدودي العلوي الأيمن",
55
+ "Border Radius bottom left": "نصف القطر الحدودي السفلي الأيسر",
56
+ "Border Radius bottom right": "نصف القطر الحدودي السفلي الأيمن",
57
+ "Border Style, Width & Color": "نمط الحدود والعرض واللون",
58
+ Border: g,
59
+ "Border Style": "نمط الحدود",
60
+ "Border Width": "عرض الحدود",
61
+ "Border Color": "لون الحدود",
62
+ Transparent: y,
63
+ "Generated CSS": "CSS المُنشأ",
64
+ "This is the CSS applied by the builder. Add your own CSS and press Enter to apply it to the selected element.": "هذا هو CSS الذي يطبقه المنشئ. أضف CSS الخاص بك واضغط Enter لتطبيقه على العنصر المحدد.",
65
+ "Add your CSS.": "أضف CSS الخاص بك.",
66
+ "The pbx- prefix is added automatically.": "يتم إضافة البادئة pbx- تلقائيًا.",
67
+ "Type class": "اكتب الفئة",
68
+ Add: h,
69
+ "Inline Styles": "أنماط مضمنة",
70
+ "These are the inline styles applied by the builder. Add your own styles and press Enter to apply them to the selected element.": "هذه هي الأنماط المضمنة التي يطبقها المنشئ. أضف أنماطك الخاصة واضغط على Enter لتطبيقها على العنصر المحدد.",
71
+ "Add your own style.": "أضف نمطك الخاص.",
72
+ property: m,
73
+ value: S,
74
+ Editing: C,
75
+ "Loading...": "جار التحميل...",
76
+ "Background Color": "لون الخلفية",
77
+ "Text Color": "لون النص",
78
+ "Default black": "أسود افتراضي",
79
+ "Remove Component?": "إزالة المكون؟",
80
+ "Are you sure you want to remove this Component?": "هل أنت متأكد أنك تريد إزالة هذا المكون؟",
81
+ Delete: f,
82
+ "Add to the bottom": "أضف إلى الأسفل",
83
+ Preview: w,
84
+ Mobile: T
85
+ };
86
+ export {
87
+ h as Add,
88
+ g as Border,
89
+ a as Close,
90
+ f as Delete,
91
+ C as Editing,
92
+ u as Global,
93
+ p as Margin,
94
+ T as Mobile,
95
+ o as Options,
96
+ d as Padding,
97
+ w as Preview,
98
+ n as Publish,
99
+ e as Save,
100
+ l as Select,
101
+ c as Specific,
102
+ s as Styles,
103
+ y as Transparent,
104
+ r as Typographies,
105
+ t as avatar,
106
+ i as component,
107
+ b as default,
108
+ m as property,
109
+ S as value
110
+ };
@@ -0,0 +1,112 @@
1
+ const e = "Speichern", n = "Optionen", i = "Avatar", t = "Veröffentlichen", r = "Schließen", a = "Komponente", s = "Stile", o = "Typografien", l = "Auswählen", d = "Abstand", u = "Rand", c = "Global", h = "Spezifisch", g = "Rand", p = "Transparent", S = "Hinzufügen", f = "Eigenschaft", m = "Wert", b = "schließen", y = "Bearbeiten", w = "Löschen", k = "Vorschau", v = "Mobil", B = {
2
+ "Reset Page": "Seite zurücksetzen",
3
+ "Global Page Styles": "Globale Seitenstile",
4
+ "Try the powerful Click & Drop Page Builder—designed for developers and creators who want full control without the hassle. Customize layouts, fonts, and colors. Edit content visually in real time. Add media, embed YouTube videos, or export everything as clean HTML. With responsive editing, local auto-save, Tailwind support, and even Unsplash integration, it's everything you need—wrapped in one seamless builder. Build Stunning Pages in Minutes.": "Probieren Sie den leistungsstarken Click & Drop Page Builder aus – entwickelt für Entwickler und Kreative, die volle Kontrolle ohne Aufwand wünschen. Passen Sie Layouts, Schriftarten und Farben an. Bearbeiten Sie Inhalte visuell in Echtzeit. Fügen Sie Medien hinzu, betten Sie YouTube-Videos ein oder exportieren Sie alles als sauberes HTML. Mit responsiver Bearbeitung, lokalem automatischen Speichern, Tailwind-Unterstützung und sogar Unsplash-Integration ist es alles, was Sie brauchen – verpackt in einem nahtlosen Builder. Erstellen Sie beeindruckende Seiten in Minuten.",
5
+ "A Page Builder designed for growth. Build your website pages with ready-made components that are fully customizable and always responsive, designed to fit every need. A powerful Page Builder for growing merchants, brands, and agencies.": "Ein Seiten-Builder, der für Wachstum entwickelt wurde. Erstellen Sie Ihre Website-Seiten mit vorgefertigten Komponenten, die vollständig anpassbar und immer reaktionsschnell sind, um alle Anforderungen zu erfüllen. Ein leistungsstarker Seiten-Builder für wachsende Händler, Marken und Agenturen.",
6
+ "Everything you need. Break free from design limitations": "Alles, was Sie brauchen. Befreien Sie sich von Designbeschränkungen",
7
+ "Bring your vision to life and create impressive pages using a click & drop Page Builder": "Verwirklichen Sie Ihre Vision und erstellen Sie beeindruckende Seiten mit einem Click & Drop Page Builder",
8
+ "The web builder for stunning pages. Enable users to design and publish modern pages at any scale. Build responsive pages like listings, jobs or blog posts and manage content easily using the free click & drop Page Builder. Developed with TypeScript, Vue 3, Composition API, Pinia, CSS, Tailwind CSS and HTML.": "Der Web-Builder für atemberaubende Seiten. Ermöglichen Sie Benutzern, moderne Seiten in jeder Größenordnung zu entwerfen und zu veröffentlichen. Erstellen Sie responsive Seiten wie Listen, Jobs oder Blog-Posts und verwalten Sie Inhalte einfach mit dem kostenlosen Click & Drop Page Builder. Entwickelt mit TypeScript, Vue 3, Composition API, Pinia, CSS, Tailwind CSS und HTML.",
9
+ "Download or install our powerful, flexible, and easy-to-use free Vue 3 Page Builder via": "Laden Sie den leistungsstarken, flexiblen und benutzerfreundlichen kostenlosen Vue 3 Page Builder herunter oder installieren Sie ihn über",
10
+ Save: e,
11
+ "Add new Components": "Neue Komponenten hinzufügen",
12
+ Options: n,
13
+ "Config Overview": "Konfigurationsübersicht",
14
+ "HTML Overview": "HTML-Übersicht",
15
+ "Delete Layout": "Layout löschen",
16
+ avatar: i,
17
+ Publish: t,
18
+ "Add Components to Page": "Komponenten zur Seite hinzufügen",
19
+ Close: r,
20
+ "Helper Components": "Hilfskomponenten",
21
+ "Click to add": "Klicken, um hinzuzufügen",
22
+ component: a,
23
+ "Layout Components": "Layout-Komponenten",
24
+ "Click to add component": "Klicken, um Komponente hinzuzufügen",
25
+ "Remove all Components": "Alle Komponenten entfernen",
26
+ "Are you sure you want to remove all Components?": "Sind Sie sicher, dass Sie alle Komponenten entfernen möchten?",
27
+ Styles: s,
28
+ "Apply styles that affect the entire page. These settings include global font family, text color, background color, and other universal styles that apply to all sections.": "Wenden Sie Stile an, die die gesamte Seite betreffen. Diese Einstellungen umfassen globale Schriftfamilie, Textfarbe, Hintergrundfarbe und andere universelle Stile, die auf alle Abschnitte angewendet werden.",
29
+ "Update Page Styles": "Seitenstile aktualisieren",
30
+ "Download HTML": "HTML herunterladen",
31
+ "Export the entire page as a standalone HTML file. This includes all sections, content, and applied styles, making it ready for use or integration elsewhere.": "Exportieren Sie die gesamte Seite als eigenständige HTML-Datei. Dies umfasst alle Abschnitte, Inhalte und angewendeten Stile, sodass sie bereit für die Verwendung oder Integration an anderer Stelle ist.",
32
+ "Download HTML file": "HTML-Datei herunterladen",
33
+ Typographies: o,
34
+ "Font Appearance": "Schriftbild",
35
+ "Font Size": "Schriftgröße",
36
+ Select: l,
37
+ "Font size": "Schriftgröße",
38
+ "Font tablet size": "Schriftgröße für Tablets",
39
+ "Font small screens": "Schriftgröße für kleine Bildschirme",
40
+ "Font weight": "Schriftgewicht",
41
+ "Font family": "Schriftfamilie",
42
+ "Font Style": "Schriftstil",
43
+ "Opacity & Transparency": "Deckkraft & Transparenz",
44
+ Padding: d,
45
+ "Vertical Padding": "Vertikaler Abstand",
46
+ "Horizontal Padding": "Horizontaler Abstand",
47
+ Margin: u,
48
+ "Vertical Margin": "Vertikaler Rand",
49
+ "Horizontal Margin": "Horizontaler Rand",
50
+ "Border Radius": "Randradius",
51
+ Global: c,
52
+ Specific: h,
53
+ "Border Radius top left": "Randradius oben links",
54
+ "Border Radius top right": "Randradius oben rechts",
55
+ "Border Radius bottom left": "Randradius unten links",
56
+ "Border Radius bottom right": "Randradius unten rechts",
57
+ "Border Style, Width & Color": "Randstil, Breite & Farbe",
58
+ Border: g,
59
+ "Border Style": "Randstil",
60
+ "Border Width": "Randbreite",
61
+ "Border Color": "Randfarbe",
62
+ Transparent: p,
63
+ "Generated CSS": "Generiertes CSS",
64
+ "This is the CSS applied by the builder. Add your own CSS and press Enter to apply it to the selected element.": "Dies ist das vom Builder angewendete CSS. Fügen Sie Ihr eigenes CSS hinzu und drücken Sie Enter, um es auf das ausgewählte Element anzuwenden.",
65
+ "Add your CSS.": "Fügen Sie Ihr CSS hinzu.",
66
+ "The pbx- prefix is added automatically.": "Das pbx- Präfix wird automatisch hinzugefügt.",
67
+ "Type class": "Klasse eingeben",
68
+ Add: S,
69
+ "Inline Styles": "Inline-Stile",
70
+ "These are the inline styles applied by the builder. Add your own styles and press Enter to apply them to the selected element.": "Dies sind die vom Builder angewendeten Inline-Stile. Fügen Sie Ihre eigenen Stile hinzu und drücken Sie die Eingabetaste, um sie auf das ausgewählte Element anzuwenden.",
71
+ "Add your own style.": "Fügen Sie Ihren eigenen Stil hinzu.",
72
+ property: f,
73
+ value: m,
74
+ close: b,
75
+ Editing: y,
76
+ "Loading...": "Wird geladen...",
77
+ "Background Color": "Hintergrundfarbe",
78
+ "Text Color": "Textfarbe",
79
+ "Default black": "Standard Schwarz",
80
+ "Remove Component?": "Komponente entfernen?",
81
+ "Are you sure you want to remove this Component?": "Sind Sie sicher, dass Sie diese Komponente entfernen möchten?",
82
+ Delete: w,
83
+ "Add to the bottom": "Zum Ende hinzufügen",
84
+ Preview: k,
85
+ Mobile: v
86
+ };
87
+ export {
88
+ S as Add,
89
+ g as Border,
90
+ r as Close,
91
+ w as Delete,
92
+ y as Editing,
93
+ c as Global,
94
+ u as Margin,
95
+ v as Mobile,
96
+ n as Options,
97
+ d as Padding,
98
+ k as Preview,
99
+ t as Publish,
100
+ e as Save,
101
+ l as Select,
102
+ h as Specific,
103
+ s as Styles,
104
+ p as Transparent,
105
+ o as Typographies,
106
+ i as avatar,
107
+ b as close,
108
+ a as component,
109
+ B as default,
110
+ f as property,
111
+ m as value
112
+ };
@@ -0,0 +1,112 @@
1
+ const e = "Save", o = "Options", t = "avatar", n = "Publish", a = "Close", i = "component", s = "Styles", r = "Typographies", l = "Select", d = "Padding", p = "Margin", u = "Global", c = "Specific", g = "Border", y = "Transparent", h = "Add", m = "property", f = "value", w = "close", b = "Editing", v = "Delete", C = "Preview", S = "Mobile", B = {
2
+ "Reset Page": "Reset Page",
3
+ "Global Page Styles": "Global Page Styles",
4
+ "Try the powerful Click & Drop Page Builder—designed for developers and creators who want full control without the hassle. Customize layouts, fonts, and colors. Edit content visually in real time. Add media, embed YouTube videos, or export everything as clean HTML. With responsive editing, local auto-save, Tailwind support, and even Unsplash integration, it's everything you need—wrapped in one seamless builder. Build Stunning Pages in Minutes.": "Try the powerful Click & Drop Page Builder—designed for developers and creators who want full control without the hassle. Customize layouts, fonts, and colors. Edit content visually in real time. Add media, embed YouTube videos, or export everything as clean HTML. With responsive editing, local auto-save, Tailwind support, and even Unsplash integration, it's everything you need—wrapped in one seamless builder. Build Stunning Pages in Minutes.",
5
+ "A Page Builder designed for growth. Build your website pages with ready-made components that are fully customizable and always responsive, designed to fit every need. A powerful Page Builder for growing merchants, brands, and agencies.": "A Page Builder designed for growth. Build your website pages with ready-made components that are fully customizable and always responsive, designed to fit every need. A powerful Page Builder for growing merchants, brands, and agencies.",
6
+ "Everything you need. Break free from design limitations": "Everything you need. Break free from design limitations",
7
+ "Bring your vision to life and create impressive pages using a click & drop Page Builder": "Bring your vision to life and create impressive pages using a click & drop Page Builder",
8
+ "The web builder for stunning pages. Enable users to design and publish modern pages at any scale. Build responsive pages like listings, jobs or blog posts and manage content easily using the free click & drop Page Builder. Developed with TypeScript, Vue 3, Composition API, Pinia, CSS, Tailwind CSS and HTML.": "The web builder for stunning pages. Enable users to design and publish modern pages at any scale. Build responsive pages like listings, jobs or blog posts and manage content easily using the free click & drop Page Builder. Developed with TypeScript, Vue 3, Composition API, Pinia, CSS, Tailwind CSS and HTML.",
9
+ "Download or install our powerful, flexible, and easy-to-use free Vue 3 Page Builder via": "Download or install our powerful, flexible, and easy-to-use free Vue 3 Page Builder via",
10
+ Save: e,
11
+ "Add new Components": "Add new Components",
12
+ Options: o,
13
+ "Config Overview": "Config Overview",
14
+ "HTML Overview": "HTML Overview",
15
+ "Delete Layout": "Delete Layout",
16
+ avatar: t,
17
+ Publish: n,
18
+ "Add Components to Page": "Add Components to Page",
19
+ Close: a,
20
+ "Helper Components": "Helper Components",
21
+ "Click to add": "Click to add",
22
+ component: i,
23
+ "Layout Components": "Layout Components",
24
+ "Click to add component": "Click to add component",
25
+ "Remove all Components": "Remove all Components",
26
+ "Are you sure you want to remove all Components?": "Are you sure you want to remove all Components?",
27
+ Styles: s,
28
+ "Apply styles that affect the entire page. These settings include global font family, text color, background color, and other universal styles that apply to all sections.": "Apply styles that affect the entire page. These settings include global font family, text color, background color, and other universal styles that apply to all sections.",
29
+ "Update Page Styles": "Update Page Styles",
30
+ "Download HTML": "Download HTML",
31
+ "Export the entire page as a standalone HTML file. This includes all sections, content, and applied styles, making it ready for use or integration elsewhere.": "Export the entire page as a standalone HTML file. This includes all sections, content, and applied styles, making it ready for use or integration elsewhere.",
32
+ "Download HTML file": "Download HTML file",
33
+ Typographies: r,
34
+ "Font Appearance": "Font Appearance",
35
+ "Font Size": "Font Size",
36
+ Select: l,
37
+ "Font size": "Font size",
38
+ "Font tablet size": "Font tablet size",
39
+ "Font small screens": "Font small screens",
40
+ "Font weight": "Font weight",
41
+ "Font family": "Font family",
42
+ "Font Style": "Font Style",
43
+ "Opacity & Transparency": "Opacity & Transparency",
44
+ Padding: d,
45
+ "Vertical Padding": "Vertical Padding",
46
+ "Horizontal Padding": "Horizontal Padding",
47
+ Margin: p,
48
+ "Vertical Margin": "Vertical Margin",
49
+ "Horizontal Margin": "Horizontal Margin",
50
+ "Border Radius": "Border Radius",
51
+ Global: u,
52
+ Specific: c,
53
+ "Border Radius top left": "Border Radius top left",
54
+ "Border Radius top right": "Border Radius top right",
55
+ "Border Radius bottom left": "Border Radius bottom left",
56
+ "Border Radius bottom right": "Border Radius bottom right",
57
+ "Border Style, Width & Color": "Border Style, Width & Color",
58
+ Border: g,
59
+ "Border Style": "Border Style",
60
+ "Border Width": "Border Width",
61
+ "Border Color": "Border Color",
62
+ Transparent: y,
63
+ "Generated CSS": "Generated CSS",
64
+ "This is the CSS applied by the builder. Add your own CSS and press Enter to apply it to the selected element.": "This is the CSS applied by the builder. Add your own CSS and press Enter to apply it to the selected element.",
65
+ "Add your CSS.": "Add your CSS.",
66
+ "The pbx- prefix is added automatically.": "The pbx- prefix is added automatically.",
67
+ "Type class": "Type class",
68
+ Add: h,
69
+ "Inline Styles": "Inline Styles",
70
+ "These are the inline styles applied by the builder. Add your own styles and press Enter to apply them to the selected element.": "These are the inline styles applied by the builder. Add your own styles and press Enter to apply them to the selected element.",
71
+ "Add your own style.": "Add your own style.",
72
+ property: m,
73
+ value: f,
74
+ close: w,
75
+ Editing: b,
76
+ "Loading...": "Loading...",
77
+ "Background Color": "Background Color",
78
+ "Text Color": "Text Color",
79
+ "Default black": "Default black",
80
+ "Remove Component?": "Remove Component?",
81
+ "Are you sure you want to remove this Component?": "Are you sure you want to remove this Component?",
82
+ Delete: v,
83
+ "Add to the bottom": "Add to the bottom",
84
+ Preview: C,
85
+ Mobile: S
86
+ };
87
+ export {
88
+ h as Add,
89
+ g as Border,
90
+ a as Close,
91
+ v as Delete,
92
+ b as Editing,
93
+ u as Global,
94
+ p as Margin,
95
+ S as Mobile,
96
+ o as Options,
97
+ d as Padding,
98
+ C as Preview,
99
+ n as Publish,
100
+ e as Save,
101
+ l as Select,
102
+ c as Specific,
103
+ s as Styles,
104
+ y as Transparent,
105
+ r as Typographies,
106
+ t as avatar,
107
+ w as close,
108
+ i as component,
109
+ B as default,
110
+ m as property,
111
+ f as value
112
+ };
@@ -0,0 +1,112 @@
1
+ const e = "Guardar", o = "Opciones", a = "avatar", n = "Publicar", s = "Cerrar", t = "componente", i = "Estilos", r = "Tipografías", l = "Seleccionar", d = "Relleno", c = "Margen", p = "Global", u = "Específico", g = "Borde", m = "Transparente", y = "Agregar", f = "propiedad", b = "valor", h = "cerrar", v = "Editando", C = "Eliminar", T = "Vista previa", S = "Móvil", w = {
2
+ "Reset Page": "Restablecer página",
3
+ "Global Page Styles": "Estilos de página globales",
4
+ "Try the powerful Click & Drop Page Builder—designed for developers and creators who want full control without the hassle. Customize layouts, fonts, and colors. Edit content visually in real time. Add media, embed YouTube videos, or export everything as clean HTML. With responsive editing, local auto-save, Tailwind support, and even Unsplash integration, it's everything you need—wrapped in one seamless builder. Build Stunning Pages in Minutes.": "Pruebe el poderoso Click & Drop Page Builder, diseñado para desarrolladores y creadores que desean un control total sin complicaciones. Personalice diseños, fuentes y colores. Edite contenido visualmente en tiempo real. Agregue medios, incruste videos de YouTube o exporte todo como HTML limpio. Con edición receptiva, guardado automático local, soporte de Tailwind e incluso integración con Unsplash, es todo lo que necesita, envuelto en un constructor perfecto. Cree páginas impresionantes en minutos.",
5
+ "A Page Builder designed for growth. Build your website pages with ready-made components that are fully customizable and always responsive, designed to fit every need. A powerful Page Builder for growing merchants, brands, and agencies.": "Un constructor de páginas diseñado para el crecimiento. Cree las páginas de su sitio web con componentes listos para usar que son totalmente personalizables y siempre receptivos, diseñados para satisfacer todas las necesidades. Un poderoso constructor de páginas para comerciantes, marcas y agencias en crecimiento.",
6
+ "Everything you need. Break free from design limitations": "Todo lo que necesitas. Libérate de las limitaciones de diseño",
7
+ "Bring your vision to life and create impressive pages using a click & drop Page Builder": "Haz realidad tu visión y crea páginas impresionantes usando un constructor de páginas de arrastrar y soltar",
8
+ "The web builder for stunning pages. Enable users to design and publish modern pages at any scale. Build responsive pages like listings, jobs or blog posts and manage content easily using the free click & drop Page Builder. Developed with TypeScript, Vue 3, Composition API, Pinia, CSS, Tailwind CSS and HTML.": "El constructor web para páginas impresionantes. Permita a los usuarios diseñar y publicar páginas modernas a cualquier escala. Cree páginas receptivas como listados, trabajos o publicaciones de blog y gestione el contenido fácilmente utilizando el Page Builder gratuito de arrastrar y soltar. Desarrollado con TypeScript, Vue 3, Composition API, Pinia, CSS, Tailwind CSS y HTML.",
9
+ "Download or install our powerful, flexible, and easy-to-use free Vue 3 Page Builder via": "Descargue o instale nuestro potente, flexible y fácil de usar constructor de páginas Vue 3 gratuito a través de",
10
+ Save: e,
11
+ "Add new Components": "Agregar nuevos componentes",
12
+ Options: o,
13
+ "Config Overview": "Resumen de configuración",
14
+ "HTML Overview": "Resumen de HTML",
15
+ "Delete Layout": "Eliminar diseño",
16
+ avatar: a,
17
+ Publish: n,
18
+ "Add Components to Page": "Agregar componentes a la página",
19
+ Close: s,
20
+ "Helper Components": "Componentes de ayuda",
21
+ "Click to add": "Haga clic para agregar",
22
+ component: t,
23
+ "Layout Components": "Componentes de diseño",
24
+ "Click to add component": "Haga clic para agregar componente",
25
+ "Remove all Components": "Eliminar todos los componentes",
26
+ "Are you sure you want to remove all Components?": "¿Está seguro de que desea eliminar todos los componentes?",
27
+ Styles: i,
28
+ "Apply styles that affect the entire page. These settings include global font family, text color, background color, and other universal styles that apply to all sections.": "Aplicar estilos que afectan a toda la página. Estas configuraciones incluyen familia de fuentes global, color de texto, color de fondo y otros estilos universales que se aplican a todas las secciones.",
29
+ "Update Page Styles": "Actualizar estilos de página",
30
+ "Download HTML": "Descargar HTML",
31
+ "Export the entire page as a standalone HTML file. This includes all sections, content, and applied styles, making it ready for use or integration elsewhere.": "Exportar toda la página como un archivo HTML independiente. Esto incluye todas las secciones, contenido y estilos aplicados, haciéndolo listo para usar o integrar en otro lugar.",
32
+ "Download HTML file": "Descargar archivo HTML",
33
+ Typographies: r,
34
+ "Font Appearance": "Apariencia de fuente",
35
+ "Font Size": "Tamaño de fuente",
36
+ Select: l,
37
+ "Font size": "Tamaño de fuente",
38
+ "Font tablet size": "Tamaño de fuente para tabletas",
39
+ "Font small screens": "Tamaño de fuente para pantallas pequeñas",
40
+ "Font weight": "Peso de fuente",
41
+ "Font family": "Familia de fuente",
42
+ "Font Style": "Estilo de fuente",
43
+ "Opacity & Transparency": "Opacidad y Transparencia",
44
+ Padding: d,
45
+ "Vertical Padding": "Relleno Vertical",
46
+ "Horizontal Padding": "Relleno Horizontal",
47
+ Margin: c,
48
+ "Vertical Margin": "Margen Vertical",
49
+ "Horizontal Margin": "Margen Horizontal",
50
+ "Border Radius": "Radio del borde",
51
+ Global: p,
52
+ Specific: u,
53
+ "Border Radius top left": "Radio del borde superior izquierdo",
54
+ "Border Radius top right": "Radio del borde superior derecho",
55
+ "Border Radius bottom left": "Radio del borde inferior izquierdo",
56
+ "Border Radius bottom right": "Radio del borde inferior derecho",
57
+ "Border Style, Width & Color": "Estilo, ancho y color del borde",
58
+ Border: g,
59
+ "Border Style": "Estilo del borde",
60
+ "Border Width": "Ancho del borde",
61
+ "Border Color": "Color del borde",
62
+ Transparent: m,
63
+ "Generated CSS": "CSS Generado",
64
+ "This is the CSS applied by the builder. Add your own CSS and press Enter to apply it to the selected element.": "Este es el CSS aplicado por el constructor. Agregue su propio CSS y presione Enter para aplicarlo al elemento seleccionado.",
65
+ "Add your CSS.": "Agregue su CSS.",
66
+ "The pbx- prefix is added automatically.": "El prefijo pbx- se agrega automáticamente.",
67
+ "Type class": "Escriba clase",
68
+ Add: y,
69
+ "Inline Styles": "Estilos en línea",
70
+ "These are the inline styles applied by the builder. Add your own styles and press Enter to apply them to the selected element.": "Estos son los estilos en línea aplicados por el constructor. Agregue sus propios estilos y presione Enter para aplicarlos al elemento seleccionado.",
71
+ "Add your own style.": "Agregue su propio estilo.",
72
+ property: f,
73
+ value: b,
74
+ close: h,
75
+ Editing: v,
76
+ "Loading...": "Cargando...",
77
+ "Background Color": "Color de fondo",
78
+ "Text Color": "Color de texto",
79
+ "Default black": "Negro predeterminado",
80
+ "Remove Component?": "¿Eliminar componente?",
81
+ "Are you sure you want to remove this Component?": "¿Estás seguro de que deseas eliminar este componente?",
82
+ Delete: C,
83
+ "Add to the bottom": "Agregar al final",
84
+ Preview: T,
85
+ Mobile: S
86
+ };
87
+ export {
88
+ y as Add,
89
+ g as Border,
90
+ s as Close,
91
+ C as Delete,
92
+ v as Editing,
93
+ p as Global,
94
+ c as Margin,
95
+ S as Mobile,
96
+ o as Options,
97
+ d as Padding,
98
+ T as Preview,
99
+ n as Publish,
100
+ e as Save,
101
+ l as Select,
102
+ u as Specific,
103
+ i as Styles,
104
+ m as Transparent,
105
+ r as Typographies,
106
+ a as avatar,
107
+ h as close,
108
+ t as component,
109
+ w as default,
110
+ f as property,
111
+ b as value
112
+ };