@myissue/vue-website-page-builder 3.3.92 → 3.3.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -54
- package/dist/{ar-7SHqp8Wu.js → ar-B67ZvnES.js} +10 -7
- package/dist/{de-BqPxfNSH.js → de-2iNkasP-.js} +17 -14
- package/dist/{en-DJriivpm.js → en-BkPMvlrf.js} +27 -24
- package/dist/{es-DFK5Ddk2.js → es-CoKtBPFg.js} +21 -18
- package/dist/{fr-8Y1jH_zD.js → fr-Bb-szPYF.js} +19 -16
- package/dist/{hi-CAUlTFgq.js → hi-Z-tSAHna.js} +4 -1
- package/dist/{ja-pz4uHxB3.js → ja-BsFKC04n.js} +12 -9
- package/dist/{pt-DieK86-G.js → pt-CR27KWIb.js} +21 -18
- package/dist/{ru-MPhaLer-.js → ru-CVy3Csm4.js} +16 -13
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +5205 -5121
- package/dist/vue-website-page-builder.umd.cjs +35 -33
- package/dist/{zh-Hans-BEWY32Aq.js → zh-Hans-9bdCn2lI.js} +4 -1
- package/package.json +1 -1
- package/src/Components/Modals/ModalBuilder.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/HTMLEditor.vue +152 -28
- package/src/Components/PageBuilder/EditorMenu/Editables/Margin.vue +6 -0
- package/src/Components/PageBuilder/EditorMenu/Editables/Padding.vue +6 -0
- package/src/Components/PageBuilder/EditorMenu/RightSidebarEditor.vue +1 -1
- package/src/PageBuilder/PageBuilder.vue +2 -2
- package/src/css/style.css +1 -2
- package/src/locales/ar.json +5 -2
- package/src/locales/de.json +4 -1
- package/src/locales/en.json +4 -1
- package/src/locales/es.json +4 -1
- package/src/locales/fr.json +4 -1
- package/src/locales/hi.json +4 -1
- package/src/locales/ja.json +7 -4
- package/src/locales/pt.json +4 -1
- package/src/locales/ru.json +5 -2
- package/src/locales/zh-Hans.json +4 -1
- package/src/services/PageBuilderService.ts +135 -187
- package/src/utils/builder/tailwind-padding-margin.ts +136 -136
package/README.md
CHANGED
|
@@ -11,17 +11,16 @@
|
|
|
11
11
|
- [About](#about)
|
|
12
12
|
- [Real-World Application Example](#real-world-application-example)
|
|
13
13
|
- [Features](#features)
|
|
14
|
-
- [Trusted by Freelancers and Leading Brands](#trusted-by-freelancers-and-leading-brands)
|
|
15
14
|
- [Technical Details](#technical-details)
|
|
16
15
|
- [Documentation](#documentation)
|
|
17
16
|
- [Requirements](#requirements)
|
|
18
17
|
- [Getting Started](#getting-started)
|
|
19
18
|
- [Installation](#installation)
|
|
20
19
|
- [Quick Start](#quick-start)
|
|
20
|
+
- [Initializing the Page Builder](#initializing-the-page-builder)
|
|
21
21
|
- [Nuxt 3 Integration](#nuxt-3-integration)
|
|
22
22
|
- [Create a Nuxt Plugin](#create-a-nuxt-plugin)
|
|
23
23
|
- [Register the Plugin](#register-the-plugin)
|
|
24
|
-
- [Initializing the Page Builder](#initializing-the-page-builder)
|
|
25
24
|
- [Why Use the Shared Instance?](#why-use-the-shared-instance)
|
|
26
25
|
- [Using the Page Builder Component](#using-the-page-builder-component)
|
|
27
26
|
- [Important: CSS Prefixing (`pbx-`)](#important-css-prefixing-pbx-)
|
|
@@ -51,6 +50,7 @@
|
|
|
51
50
|
- [Contributing](#contributing)
|
|
52
51
|
- [Security Vulnerabilities](#security-vulnerabilities)
|
|
53
52
|
- [Get in Touch for Customization or Any Questions](#get-in-touch-for-customization-or-any-questions)
|
|
53
|
+
- [Report Issues or Request Features](#report-issues-or-request-features)
|
|
54
54
|
- [Feedback](#feedback)
|
|
55
55
|
- [Support the Project](#support-the-project)
|
|
56
56
|
- [License](#license)
|
|
@@ -91,9 +91,9 @@ A Page Builder designed for growth. Build your website pages with ready-made com
|
|
|
91
91
|
|
|
92
92
|
## Real-World Application Example
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
From solo freelancers to fast-growing startups and established enterprises, the Page Builder is trusted by teams everywhere. With its intuitive click-and-drop editor, real-time visual editing, and a rich library of reusable components, you can turn ideas into polished pages in minutes. Built for merchants, brands, and agencies, it empowers anyone to create high-impact content.
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
Discover how the Vue Website Page Builder is empowering businesses to create dynamic and responsive web pages. A prime example is [myself.ae](https://www.myself.ae/stores), where the builder is utilized to create engaging and user-friendly online store pages.
|
|
97
97
|
|
|
98
98
|
## Features
|
|
99
99
|
|
|
@@ -120,10 +120,7 @@ The Page Builder is packed with features:
|
|
|
120
120
|
- **Global Page Styling**: Instantly define, update, or clear global styles for the main page wrapper at initialization or dynamically at runtime. Gain full control over fonts, colors, backgrounds, and more for a dynamic user experience.
|
|
121
121
|
- **Tailwind Support**: Fully compatible with Tailwind CSS (with automatic class prefixing to avoid conflicts).
|
|
122
122
|
- **Scoped Styles**: To ensure clean and predictable styling, the builder uses scoped style isolation. There is no risk of style conflicts between the builder and your app.
|
|
123
|
-
|
|
124
|
-
### Trusted by Freelancers and Leading Brands
|
|
125
|
-
|
|
126
|
-
From solo freelancers to fast-growing startups and established enterprises, the Page Builder is trusted by teams everywhere. With its intuitive click-and-drop editor, real-time visual editing, and a rich library of reusable components, you can turn ideas into polished pages in minutes. Built for merchants, brands, and agencies, it empowers anyone to create high-impact content.
|
|
123
|
+
- **HTML Editor**: Access and edit raw HTML directly for full customization and developer-level control.
|
|
127
124
|
|
|
128
125
|
## Technical Details
|
|
129
126
|
|
|
@@ -174,30 +171,6 @@ npm install @myissue/vue-website-page-builder
|
|
|
174
171
|
Get up and running with the Vue Website Page Builder in just a few minutes.
|
|
175
172
|
This section walks you through the essential steps—from installation to rendering your first page—so you can start building beautiful, dynamic content right away.
|
|
176
173
|
|
|
177
|
-
### Nuxt 3 Integration
|
|
178
|
-
|
|
179
|
-
To use `@myissue/vue-website-page-builder` in a Nuxt 3 project, follow these steps:
|
|
180
|
-
|
|
181
|
-
#### Create a Nuxt Plugin
|
|
182
|
-
|
|
183
|
-
```js
|
|
184
|
-
import { defineNuxtPlugin } from '#app'
|
|
185
|
-
import PageBuilder from '@myissue/vue-website-page-builder'
|
|
186
|
-
import '@myissue/vue-website-page-builder/style.css'
|
|
187
|
-
|
|
188
|
-
export default defineNuxtPlugin((nuxtApp) => {
|
|
189
|
-
nuxtApp.vueApp.use(PageBuilder)
|
|
190
|
-
})
|
|
191
|
-
```
|
|
192
|
-
|
|
193
|
-
#### Register the Plugin
|
|
194
|
-
|
|
195
|
-
```js
|
|
196
|
-
export default defineNuxtConfig({
|
|
197
|
-
plugins: ['~/plugins/page-builder.client.ts'],
|
|
198
|
-
})
|
|
199
|
-
```
|
|
200
|
-
|
|
201
174
|
### Initializing the Page Builder
|
|
202
175
|
|
|
203
176
|
To get started with the Page Builder, follow these steps:
|
|
@@ -221,9 +194,33 @@ app.mount('#app')
|
|
|
221
194
|
> **Note:**
|
|
222
195
|
> You only need to import the CSS file once. If you have already imported it in your app entry, you do not need to import it again in individual components.
|
|
223
196
|
|
|
224
|
-
> **Note
|
|
197
|
+
> **Note:**
|
|
225
198
|
> The Page Builder is implemented as a singleton service. This ensures that all page-building logic and state are managed by a single, shared instance throughout your application.
|
|
226
199
|
|
|
200
|
+
### Nuxt 3 Integration
|
|
201
|
+
|
|
202
|
+
To use `@myissue/vue-website-page-builder` in a Nuxt 3 project, follow these steps:
|
|
203
|
+
|
|
204
|
+
#### Create a Nuxt Plugin
|
|
205
|
+
|
|
206
|
+
```typescript
|
|
207
|
+
import { defineNuxtPlugin } from '#app'
|
|
208
|
+
import PageBuilder from '@myissue/vue-website-page-builder'
|
|
209
|
+
import '@myissue/vue-website-page-builder/style.css'
|
|
210
|
+
|
|
211
|
+
export default defineNuxtPlugin((nuxtApp) => {
|
|
212
|
+
nuxtApp.vueApp.use(PageBuilder)
|
|
213
|
+
})
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
#### Register the Plugin
|
|
217
|
+
|
|
218
|
+
```typescript
|
|
219
|
+
export default defineNuxtConfig({
|
|
220
|
+
plugins: ['~/plugins/page-builder.client.ts'],
|
|
221
|
+
})
|
|
222
|
+
```
|
|
223
|
+
|
|
227
224
|
### Why Use the Shared Instance?
|
|
228
225
|
|
|
229
226
|
By always accessing the shared instance, you avoid creating multiple, isolated copies of the builder. This prevents data inconsistencies, synchronization issues, and unpredictable behavior. All components and modules interact with the same centralized service, ensuring that updates and state changes are reflected everywhere in your application.
|
|
@@ -279,7 +276,7 @@ You can use the Page Builder to generate HTML and render it in any frontend fram
|
|
|
279
276
|
|
|
280
277
|
To ensure your content is styled correctly, simply install the Page Builder package in your target project and import its CSS file. All builder and Tailwind-prefixed styles will be applied automatically.
|
|
281
278
|
|
|
282
|
-
```
|
|
279
|
+
```typescript
|
|
283
280
|
import '@myissue/vue-website-page-builder/style.css'
|
|
284
281
|
```
|
|
285
282
|
|
|
@@ -299,11 +296,16 @@ function MyPage({ html }) {
|
|
|
299
296
|
|
|
300
297
|
```vue
|
|
301
298
|
<script setup>
|
|
299
|
+
import { ref } from 'vue'
|
|
302
300
|
import '@myissue/vue-website-page-builder/style.css'
|
|
301
|
+
|
|
302
|
+
const rawHtml = ref('<p>This is content from the page builder.</p>')
|
|
303
303
|
</script>
|
|
304
|
-
```
|
|
305
304
|
|
|
306
|
-
|
|
305
|
+
<template>
|
|
306
|
+
<div v-html="rawHtml"></div>
|
|
307
|
+
</template>
|
|
308
|
+
```
|
|
307
309
|
|
|
308
310
|
> **Note:**
|
|
309
311
|
> You do not need to import any Vue components if you only want to render the HTML. Just import the CSS file.
|
|
@@ -390,7 +392,7 @@ The Page Builder offers robust multilingual support, enabling you to reach a glo
|
|
|
390
392
|
|
|
391
393
|
You can set a default language for your project:
|
|
392
394
|
|
|
393
|
-
```
|
|
395
|
+
```typescript
|
|
394
396
|
userSettings: {
|
|
395
397
|
language: {
|
|
396
398
|
default: 'en',
|
|
@@ -402,7 +404,7 @@ If you prefer to offer only a subset of these languages for users to switch betw
|
|
|
402
404
|
|
|
403
405
|
If you do not provide the `enable` array, the Page Builder will default to showing all supported languages by default.
|
|
404
406
|
|
|
405
|
-
```
|
|
407
|
+
```typescript
|
|
406
408
|
userSettings: {
|
|
407
409
|
language: {
|
|
408
410
|
default: 'en',
|
|
@@ -417,7 +419,7 @@ If you want to completely hide the language selector from the UI (e.g., when onl
|
|
|
417
419
|
|
|
418
420
|
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.
|
|
419
421
|
|
|
420
|
-
```
|
|
422
|
+
```typescript
|
|
421
423
|
userSettings: {
|
|
422
424
|
theme: 'light',
|
|
423
425
|
language: {
|
|
@@ -444,7 +446,7 @@ To get the most up-to-date content, use the same `resourceData` (such as `formTy
|
|
|
444
446
|
|
|
445
447
|
**Example:**
|
|
446
448
|
|
|
447
|
-
```
|
|
449
|
+
```typescript
|
|
448
450
|
const configPageBuilder = {
|
|
449
451
|
updateOrCreate: {
|
|
450
452
|
formType: 'create',
|
|
@@ -481,7 +483,7 @@ After successfully creating or updating a resource (such as a post, article, or
|
|
|
481
483
|
|
|
482
484
|
You can reset the Page Builder’s live DOM, builder state, and clear the draft with:
|
|
483
485
|
|
|
484
|
-
```
|
|
486
|
+
```typescript
|
|
485
487
|
await pageBuilderService.handleFormSubmission()
|
|
486
488
|
```
|
|
487
489
|
|
|
@@ -499,7 +501,7 @@ If you have previously saved or published HTML content (for example, from your d
|
|
|
499
501
|
|
|
500
502
|
1. **Parse your saved HTML** using the builder’s helper method to extract both the components and the global page settings:
|
|
501
503
|
|
|
502
|
-
```
|
|
504
|
+
```typescript
|
|
503
505
|
// yourPageHTML: the full HTML string previously saved from the builder
|
|
504
506
|
const { components, pageSettings } = pageBuilderService.parsePageBuilderHTML(yourPageHTML)
|
|
505
507
|
```
|
|
@@ -631,13 +633,6 @@ const handlePublish = () => {
|
|
|
631
633
|
> **Tip:**
|
|
632
634
|
> You can name your handler function anything you like. This pattern makes it easy to embed the builder in modals, dialogs, or overlays in any Vue app.
|
|
633
635
|
|
|
634
|
-
- `:showPublishButton="true"` — shows a publish button in the Page Builder toolbar.
|
|
635
|
-
- `@handlePublishPageBuilder="yourMethod"` — emits when the close button is clicked, so you can close your modal.
|
|
636
|
-
|
|
637
|
-
> **Tip:**
|
|
638
|
-
> You can name your handler function anything you like.
|
|
639
|
-
> This pattern makes it easy to embed the builder in modals, dialogs, or overlays in any Vue app.
|
|
640
|
-
|
|
641
636
|
## Styling the Main Page Builder Container
|
|
642
637
|
|
|
643
638
|
The Page Builder allows you to define and update global styles for the main wrapper (`#pagebuilder`) at any time. These settings control the overall appearance, including font family, text color, background color, and more. Whether you set them initially in your config or update them dynamically at runtime, your changes are instantly reflected across all sections.
|
|
@@ -716,7 +711,7 @@ If fonts or Material Icons are not displaying correctly, verify that:
|
|
|
716
711
|
|
|
717
712
|
**CSS Import**: You are importing the CSS file:
|
|
718
713
|
|
|
719
|
-
```
|
|
714
|
+
```typescript
|
|
720
715
|
import '@myissue/vue-website-page-builder/style.css'
|
|
721
716
|
```
|
|
722
717
|
|
|
@@ -762,6 +757,12 @@ If you have any questions or if you're looking for customization, feel free to c
|
|
|
762
757
|
- [Email](mailto:qais.wardag@outlook.com)
|
|
763
758
|
- [LinkedIn](https://www.linkedin.com/in/qaiswardag)
|
|
764
759
|
|
|
760
|
+
## Report Issues or Request Features
|
|
761
|
+
|
|
762
|
+
Encountered a bug, have suggestions, or need a new feature? Create a GitHub issue:
|
|
763
|
+
|
|
764
|
+
- [Submit an Issue](https://github.com/qaiswardag/vue-website-page-builder/issues)
|
|
765
|
+
|
|
765
766
|
## Feedback
|
|
766
767
|
|
|
767
768
|
Suggestions or any issues you encounter while using this app. Feel free to reach out.
|
|
@@ -773,7 +774,3 @@ We would greatly appreciate it if you could star the GitHub repository. Starring
|
|
|
773
774
|
## License
|
|
774
775
|
|
|
775
776
|
[MIT License](./LICENSE)
|
|
776
|
-
|
|
777
|
-
```
|
|
778
|
-
|
|
779
|
-
```
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const e = "حفظ", t = "خيارات", o = "الصورة الرمزية", n = "نشر", a = "إغلاق", s = "مكون", i = "أنماط", r = "الطباعة", l = "اختر", d = "الحشو", c = "الهامش", u = "عالمي", p = "محدد", g = "الحدود", m = "شفاف",
|
|
1
|
+
const e = "حفظ", t = "خيارات", o = "الصورة الرمزية", n = "نشر", a = "إغلاق", s = "مكون", i = "أنماط", r = "الطباعة", l = "اختر", d = "الحشو", c = "الهامش", u = "عالمي", p = "محدد", g = "الحدود", m = "شفاف", y = "إضافة", h = "خاصية", T = "قيمة", S = "تحرير", C = "حذف", w = "معاينة", f = "جوال", v = "غامق", b = "قائمة", L = "بحث", H = "أفقي", M = "عمودي", D = "مربع الشكل", B = "صور", k = "السابق", P = "التالي", A = "معلومات", x = "نص", I = "رابط", E = "أنواع", F = "مصفوفة", R = "المحتوى", V = "عنصر", W = "مكون", q = "الكل", U = "صورة", z = {
|
|
2
2
|
"Reset Page": "إعادة تعيين الصفحة",
|
|
3
3
|
"Global Page Styles": "أنماط الصفحة العامة",
|
|
4
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، إنه كل ما تحتاجه - ملفوف في منشئ واحد سلس. قم ببناء صفحات مذهلة في دقائق.",
|
|
@@ -64,11 +64,11 @@ const e = "حفظ", t = "خيارات", o = "الصورة الرمزية", n = "
|
|
|
64
64
|
"Add your CSS.": "أضف CSS الخاص بك.",
|
|
65
65
|
"The pbx- prefix is added automatically.": "يتم إضافة البادئة pbx- تلقائيًا.",
|
|
66
66
|
"Type class": "اكتب الفئة",
|
|
67
|
-
Add:
|
|
67
|
+
Add: y,
|
|
68
68
|
"Inline Styles": "أنماط مضمنة",
|
|
69
69
|
"These are the inline styles applied by the builder. Add your own styles and press Enter to apply them to the selected element.": "هذه هي الأنماط المضمنة التي يطبقها المنشئ. أضف أنماطك الخاصة واضغط على Enter لتطبيقها على العنصر المحدد.",
|
|
70
70
|
"Add your own style.": "أضف نمطك الخاص.",
|
|
71
|
-
property:
|
|
71
|
+
property: h,
|
|
72
72
|
value: T,
|
|
73
73
|
Editing: S,
|
|
74
74
|
"Loading...": "جار التحميل...",
|
|
@@ -161,12 +161,15 @@ const e = "حفظ", t = "خيارات", o = "الصورة الرمزية", n = "
|
|
|
161
161
|
"Four Square Images With Text": "أربع صور مربعة مع نص",
|
|
162
162
|
"Four Square Images": "أربع صور مربعة",
|
|
163
163
|
"Continue Your Work?": "أترغب في متابعة عملك؟",
|
|
164
|
-
"We noticed you have some changes that weren’t saved last time. Would you like to pick up where you left off, or use the version that’s currently loaded from the database?": "لاحظنا
|
|
164
|
+
"We noticed you have some changes that weren’t saved last time. Would you like to pick up where you left off, or use the version that’s currently loaded from the database?": "لاحظنا وجود بعض التغييرات التي لم تُحفظ في المرة السابقة. هل ترغب في المتابعة من حيث توقفت، أم استخدام الإصدار المُحمّل حاليًا من قاعدة البيانات؟",
|
|
165
165
|
"Use Saved Version": "استخدام النسخة المحفوظة",
|
|
166
|
-
"Continue Where I Left Off": "المتابعة من حيث توقفت"
|
|
166
|
+
"Continue Where I Left Off": "المتابعة من حيث توقفت",
|
|
167
|
+
"HTML Editor": "محرر HTML",
|
|
168
|
+
"Gain full control over components by editing the raw HTML.": "احصل على التحكم الكامل في المكونات عن طريق تحرير HTML الخام.",
|
|
169
|
+
"Large Screens Only": "الشاشات الكبيرة فقط"
|
|
167
170
|
};
|
|
168
171
|
export {
|
|
169
|
-
|
|
172
|
+
y as Add,
|
|
170
173
|
q as All,
|
|
171
174
|
v as Bold,
|
|
172
175
|
g as Border,
|
|
@@ -206,6 +209,6 @@ export {
|
|
|
206
209
|
o as avatar,
|
|
207
210
|
s as component,
|
|
208
211
|
z as default,
|
|
209
|
-
|
|
212
|
+
h as property,
|
|
210
213
|
T as value
|
|
211
214
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const e = "Speichern", n = "Optionen", t = "Avatar", i = "Veröffentlichen", r = "Schließen", s = "Komponente", a = "Stile", o = "Typografien", l = "Auswählen", d = "Abstand", u = "Rand", c = "Global", h = "Spezifisch", g = "Rand", m = "Transparent", S = "Hinzufügen", p = "Eigenschaft", f = "Wert", b = "schließen", w = "Bearbeiten", k = "Löschen", y = "Vorschau", T = "Mobil", v = "Fett", B = "Liste", z = "Suche", E = "Querformat", C = "Hochformat",
|
|
1
|
+
const e = "Speichern", n = "Optionen", t = "Avatar", i = "Veröffentlichen", r = "Schließen", s = "Komponente", a = "Stile", o = "Typografien", l = "Auswählen", d = "Abstand", u = "Rand", c = "Global", h = "Spezifisch", g = "Rand", m = "Transparent", S = "Hinzufügen", p = "Eigenschaft", f = "Wert", b = "schließen", w = "Bearbeiten", k = "Löschen", y = "Vorschau", T = "Mobil", v = "Fett", B = "Liste", z = "Suche", E = "Querformat", C = "Hochformat", L = "Quadratisch", D = "Bilder", I = "Zurück", H = "Weiter", M = "Informationen", A = "Text", x = "Link", P = "Typen", K = "Array", R = "Inhalt", V = "Element", W = "Komponente", F = "Alle", q = "Bild", G = {
|
|
2
2
|
"Reset Page": "Seite zurücksetzen",
|
|
3
3
|
"Global Page Styles": "Globale Seitenstile",
|
|
4
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.",
|
|
@@ -109,16 +109,16 @@ const e = "Speichern", n = "Optionen", t = "Avatar", i = "Veröffentlichen", r =
|
|
|
109
109
|
"Search...": "Suchen...",
|
|
110
110
|
Landscape: E,
|
|
111
111
|
Portrait: C,
|
|
112
|
-
Squarish:
|
|
112
|
+
Squarish: L,
|
|
113
113
|
"Total pages": "Gesamtseiten",
|
|
114
|
-
Images:
|
|
114
|
+
Images: D,
|
|
115
115
|
"First page": "Erste Seite",
|
|
116
|
-
Prev:
|
|
117
|
-
Next:
|
|
116
|
+
Prev: I,
|
|
117
|
+
Next: H,
|
|
118
118
|
"By:": "Von:",
|
|
119
119
|
"We did not find any images. Make a new search.": "Wir haben keine Bilder gefunden. Machen Sie eine neue Suche.",
|
|
120
120
|
"No results on current page. Navigate to First Page.": "Keine Ergebnisse auf der aktuellen Seite. Zur ersten Seite navigieren.",
|
|
121
|
-
Information:
|
|
121
|
+
Information: M,
|
|
122
122
|
"From:": "Von:",
|
|
123
123
|
" Select image": " Bild auswählen",
|
|
124
124
|
"Layouts and visual.": "Layouts und visuell.",
|
|
@@ -130,7 +130,7 @@ const e = "Speichern", n = "Optionen", t = "Avatar", i = "Veröffentlichen", r =
|
|
|
130
130
|
"Six Square Images Grid": "Sechs quadratische Bilder im Raster",
|
|
131
131
|
"Three Square Images With Text": "Drei quadratische Bilder mit Text",
|
|
132
132
|
"Three Vertical Images": "Zwei quadratische Bilder mit Text",
|
|
133
|
-
Text:
|
|
133
|
+
Text: A,
|
|
134
134
|
"Header H2": "Überschrift H2",
|
|
135
135
|
"Header H3": "Überschrift H3",
|
|
136
136
|
"YouTube Video": "YouTube-Video",
|
|
@@ -164,7 +164,10 @@ const e = "Speichern", n = "Optionen", t = "Avatar", i = "Veröffentlichen", r =
|
|
|
164
164
|
"Continue Your Work?": "Möchten Sie Ihre Arbeit fortsetzen?",
|
|
165
165
|
"We noticed you have some changes that weren’t saved last time. Would you like to pick up where you left off, or use the version that’s currently loaded from the database?": "Wir haben festgestellt, dass Sie beim letzten Mal einige Änderungen nicht gespeichert haben. Möchten Sie dort weitermachen, wo Sie aufgehört haben, oder die aktuell aus der Datenbank geladene Version verwenden?",
|
|
166
166
|
"Use Saved Version": "Gespeicherte Version verwenden",
|
|
167
|
-
"Continue Where I Left Off": "Dort weitermachen, wo ich aufgehört habe"
|
|
167
|
+
"Continue Where I Left Off": "Dort weitermachen, wo ich aufgehört habe",
|
|
168
|
+
"HTML Editor": "HTML-Editor",
|
|
169
|
+
"Gain full control over components by editing the raw HTML.": "Erhalten Sie die vollständige Kontrolle über Komponenten, indem Sie das reine HTML bearbeiten.",
|
|
170
|
+
"Large Screens Only": "Nur große Bildschirme"
|
|
168
171
|
};
|
|
169
172
|
export {
|
|
170
173
|
S as Add,
|
|
@@ -179,27 +182,27 @@ export {
|
|
|
179
182
|
V as Element,
|
|
180
183
|
c as Global,
|
|
181
184
|
q as Image,
|
|
182
|
-
|
|
183
|
-
|
|
185
|
+
D as Images,
|
|
186
|
+
M as Information,
|
|
184
187
|
E as Landscape,
|
|
185
188
|
x as Link,
|
|
186
189
|
B as List,
|
|
187
190
|
u as Margin,
|
|
188
191
|
T as Mobile,
|
|
189
|
-
|
|
192
|
+
H as Next,
|
|
190
193
|
n as Options,
|
|
191
194
|
d as Padding,
|
|
192
195
|
C as Portrait,
|
|
193
|
-
|
|
196
|
+
I as Prev,
|
|
194
197
|
y as Preview,
|
|
195
198
|
i as Publish,
|
|
196
199
|
e as Save,
|
|
197
200
|
z as Search,
|
|
198
201
|
l as Select,
|
|
199
202
|
h as Specific,
|
|
200
|
-
|
|
203
|
+
L as Squarish,
|
|
201
204
|
a as Styles,
|
|
202
|
-
|
|
205
|
+
A as Text,
|
|
203
206
|
m as Transparent,
|
|
204
207
|
P as Types,
|
|
205
208
|
o as Typographies,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const e = "Save", t = "Options", o = "avatar", n = "Publish", a = "component", i = "Styles", s = "Typographies", r = "Select", l = "Padding", d = "Margin", u = "Global", c = "Specific", p = "Border", g = "Transparent", h = "Add",
|
|
1
|
+
const e = "Save", t = "Options", o = "avatar", n = "Publish", a = "component", i = "Styles", s = "Typographies", r = "Select", l = "Padding", d = "Margin", u = "Global", c = "Specific", p = "Border", g = "Transparent", h = "Add", y = "property", m = "value", f = "Close", w = "Editing", v = "Delete", T = "Preview", b = "Mobile", S = "Bold", C = "Link", B = "List", L = "Search", k = "Landscape", P = "Portrait", H = "Squarish", x = "Images", A = "Prev", M = "Next", I = "Information", D = "Text", E = "Types", F = "array", R = "Content", W = "Element", V = "Component", z = "All", q = "Image", N = {
|
|
2
2
|
"Reset Page": "Reset Page",
|
|
3
3
|
"Global Page Styles": "Global Page Styles",
|
|
4
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.",
|
|
@@ -63,8 +63,8 @@ const e = "Save", t = "Options", o = "avatar", n = "Publish", a = "component", i
|
|
|
63
63
|
"Inline Styles": "Inline Styles",
|
|
64
64
|
"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.",
|
|
65
65
|
"Add your own style.": "Add your own style.",
|
|
66
|
-
property:
|
|
67
|
-
value:
|
|
66
|
+
property: y,
|
|
67
|
+
value: m,
|
|
68
68
|
Close: f,
|
|
69
69
|
Editing: w,
|
|
70
70
|
"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.",
|
|
@@ -105,20 +105,20 @@ const e = "Save", t = "Options", o = "avatar", n = "Publish", a = "component", i
|
|
|
105
105
|
"Reset changes": "Reset changes",
|
|
106
106
|
"Do you want to reset this page?": "Do you want to reset this page?",
|
|
107
107
|
"Are you sure you want to reset this page? This will overwrite your current changes.": "Are you sure you want to reset this page? This will overwrite your current changes.",
|
|
108
|
-
Search:
|
|
108
|
+
Search: L,
|
|
109
109
|
"Search...": "Search...",
|
|
110
|
-
Landscape:
|
|
111
|
-
Portrait:
|
|
112
|
-
Squarish:
|
|
110
|
+
Landscape: k,
|
|
111
|
+
Portrait: P,
|
|
112
|
+
Squarish: H,
|
|
113
113
|
"Total pages": "Total pages",
|
|
114
|
-
Images:
|
|
114
|
+
Images: x,
|
|
115
115
|
"First page": "First page",
|
|
116
|
-
Prev:
|
|
117
|
-
Next:
|
|
116
|
+
Prev: A,
|
|
117
|
+
Next: M,
|
|
118
118
|
"By:": "By:",
|
|
119
119
|
"We did not find any images. Make a new search.": "We did not find any images. Make a new search.",
|
|
120
120
|
"No results on current page. Navigate to First Page.": "No results on current page. Navigate to First Page.",
|
|
121
|
-
Information:
|
|
121
|
+
Information: I,
|
|
122
122
|
"From:": "From:",
|
|
123
123
|
" Select image": " Select image",
|
|
124
124
|
"Layouts and visual.": "Layouts and visual.",
|
|
@@ -132,7 +132,7 @@ const e = "Save", t = "Options", o = "avatar", n = "Publish", a = "component", i
|
|
|
132
132
|
"Four Square Images With Text": "Four Square Images With Text",
|
|
133
133
|
"Three Square Images With Text": "Three Square Images With Text",
|
|
134
134
|
"Three Vertical Images": "Three Vertical Images",
|
|
135
|
-
Text:
|
|
135
|
+
Text: D,
|
|
136
136
|
"Header H2": "Header H2",
|
|
137
137
|
"Header H3": "Header H3",
|
|
138
138
|
"YouTube Video": "YouTube Video",
|
|
@@ -164,7 +164,10 @@ const e = "Save", t = "Options", o = "avatar", n = "Publish", a = "component", i
|
|
|
164
164
|
"Continue Your Work?": "Continue Your Work?",
|
|
165
165
|
"We noticed you have some changes that weren’t saved last time. Would you like to pick up where you left off, or use the version that’s currently loaded from the database?": "We noticed you have some changes that weren’t saved last time. Would you like to pick up where you left off, or use the version that’s currently loaded from the database?",
|
|
166
166
|
"Use Saved Version": "Use Saved Version",
|
|
167
|
-
"Continue Where I Left Off": "Continue Where I Left Off"
|
|
167
|
+
"Continue Where I Left Off": "Continue Where I Left Off",
|
|
168
|
+
"HTML Editor": "HTML Editor",
|
|
169
|
+
"Gain full control over components by editing the raw HTML.": "Gain full control over components by editing the raw HTML.",
|
|
170
|
+
"Large Screens Only": "Large Screens Only"
|
|
168
171
|
};
|
|
169
172
|
export {
|
|
170
173
|
h as Add,
|
|
@@ -179,27 +182,27 @@ export {
|
|
|
179
182
|
W as Element,
|
|
180
183
|
u as Global,
|
|
181
184
|
q as Image,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
+
x as Images,
|
|
186
|
+
I as Information,
|
|
187
|
+
k as Landscape,
|
|
185
188
|
C as Link,
|
|
186
189
|
B as List,
|
|
187
190
|
d as Margin,
|
|
188
191
|
b as Mobile,
|
|
189
|
-
|
|
192
|
+
M as Next,
|
|
190
193
|
t as Options,
|
|
191
194
|
l as Padding,
|
|
192
|
-
|
|
193
|
-
|
|
195
|
+
P as Portrait,
|
|
196
|
+
A as Prev,
|
|
194
197
|
T as Preview,
|
|
195
198
|
n as Publish,
|
|
196
199
|
e as Save,
|
|
197
|
-
|
|
200
|
+
L as Search,
|
|
198
201
|
r as Select,
|
|
199
202
|
c as Specific,
|
|
200
|
-
|
|
203
|
+
H as Squarish,
|
|
201
204
|
i as Styles,
|
|
202
|
-
|
|
205
|
+
D as Text,
|
|
203
206
|
g as Transparent,
|
|
204
207
|
E as Types,
|
|
205
208
|
s as Typographies,
|
|
@@ -207,6 +210,6 @@ export {
|
|
|
207
210
|
o as avatar,
|
|
208
211
|
a as component,
|
|
209
212
|
N as default,
|
|
210
|
-
|
|
211
|
-
|
|
213
|
+
y as property,
|
|
214
|
+
m as value
|
|
212
215
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const e = "Guardar", o = "Opciones", a = "avatar", t = "Publicar", n = "Cerrar", s = "componente", i = "Estilos", r = "Tipografías", l = "Seleccionar", d = "Relleno", c = "Margen", u = "Global", p = "Específico", g = "Borde", m = "Transparente", y = "Agregar", b = "propiedad", h = "valor", f = "Editando",
|
|
1
|
+
const e = "Guardar", o = "Opciones", a = "avatar", t = "Publicar", n = "Cerrar", s = "componente", i = "Estilos", r = "Tipografías", l = "Seleccionar", d = "Relleno", c = "Margen", u = "Global", p = "Específico", g = "Borde", m = "Transparente", y = "Agregar", b = "propiedad", h = "valor", f = "Editando", T = "Eliminar", v = "Vista previa", C = "Móvil", S = "Negrita", E = "Lista", w = "Buscar", L = "Horizontal", D = "Vertical", H = "Cuadrado", A = "Imágenes", x = "Anterior", M = "Siguiente", P = "Información", q = "Texto", B = "Enlace", z = "Tipos", I = "matriz", R = "Contenido", k = "Elemento", V = "Componente", N = "Todos", F = "Imagen", j = {
|
|
2
2
|
"Reset Page": "Restablecer página",
|
|
3
3
|
"Global Page Styles": "Estilos de página globales",
|
|
4
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.",
|
|
@@ -78,9 +78,9 @@ const e = "Guardar", o = "Opciones", a = "avatar", t = "Publicar", n = "Cerrar",
|
|
|
78
78
|
"Default black": "Negro predeterminado",
|
|
79
79
|
"Remove Component?": "¿Eliminar componente?",
|
|
80
80
|
"Are you sure you want to remove this Component?": "¿Estás seguro de que deseas eliminar este componente?",
|
|
81
|
-
Delete:
|
|
81
|
+
Delete: T,
|
|
82
82
|
"Add to the bottom": "Agregar al final",
|
|
83
|
-
Preview:
|
|
83
|
+
Preview: v,
|
|
84
84
|
Mobile: C,
|
|
85
85
|
"Demo Content": "Contenido de demostración",
|
|
86
86
|
"Demo Description": "Descubra el constructor de páginas ligero y gratuito Vue Click & Drop. Cree y mejore experiencias digitales sin esfuerzo con Vue. No todo lo poderoso tiene que ser complejo. Este constructor de páginas minimalista y ligero ofrece una interfaz elegante e intuitiva centrada en la simplicidad y la velocidad. Cree páginas completamente receptivas como listados, tableros de trabajo o publicaciones de blog, y gestione su contenido fácilmente con el constructor de páginas gratuito Click & Drop.",
|
|
@@ -106,18 +106,18 @@ const e = "Guardar", o = "Opciones", a = "avatar", t = "Publicar", n = "Cerrar",
|
|
|
106
106
|
"Are you sure you want to reset this page? This will overwrite your current changes.": "¿Estás seguro de que deseas restablecer esta página? Esto sobrescribirá tus cambios actuales.",
|
|
107
107
|
Search: w,
|
|
108
108
|
"Search...": "Buscar...",
|
|
109
|
-
Landscape:
|
|
110
|
-
Portrait:
|
|
111
|
-
Squarish:
|
|
109
|
+
Landscape: L,
|
|
110
|
+
Portrait: D,
|
|
111
|
+
Squarish: H,
|
|
112
112
|
"Total pages": "Páginas totales",
|
|
113
|
-
Images:
|
|
113
|
+
Images: A,
|
|
114
114
|
"First page": "Primera página",
|
|
115
115
|
Prev: x,
|
|
116
|
-
Next:
|
|
116
|
+
Next: M,
|
|
117
117
|
"By:": "Por:",
|
|
118
118
|
"We did not find any images. Make a new search.": "No encontramos imágenes. Realiza una nueva búsqueda.",
|
|
119
119
|
"No results on current page. Navigate to First Page.": "No hay resultados en la página actual. Navega a la primera página.",
|
|
120
|
-
Information:
|
|
120
|
+
Information: P,
|
|
121
121
|
"From:": "De:",
|
|
122
122
|
" Select image": " Seleccionar imagen",
|
|
123
123
|
"Layouts and visual.": "Diseños y visuales.",
|
|
@@ -164,7 +164,10 @@ const e = "Guardar", o = "Opciones", a = "avatar", t = "Publicar", n = "Cerrar",
|
|
|
164
164
|
"Continue Your Work?": "¿Desea continuar su trabajo?",
|
|
165
165
|
"We noticed you have some changes that weren’t saved last time. Would you like to pick up where you left off, or use the version that’s currently loaded from the database?": "Notamos que tiene algunos cambios que no se guardaron la última vez. ¿Le gustaría continuar donde lo dejó o usar la versión que está cargada actualmente desde la base de datos?",
|
|
166
166
|
"Use Saved Version": "Usar la versión guardada",
|
|
167
|
-
"Continue Where I Left Off": "Continuar donde lo dejé"
|
|
167
|
+
"Continue Where I Left Off": "Continuar donde lo dejé",
|
|
168
|
+
"HTML Editor": "Editor HTML",
|
|
169
|
+
"Gain full control over components by editing the raw HTML.": "Obtenga control total sobre los componentes editando el HTML sin formato.",
|
|
170
|
+
"Large Screens Only": "Solo pantallas grandes"
|
|
168
171
|
};
|
|
169
172
|
export {
|
|
170
173
|
y as Add,
|
|
@@ -174,30 +177,30 @@ export {
|
|
|
174
177
|
n as Close,
|
|
175
178
|
V as Component,
|
|
176
179
|
R as Content,
|
|
177
|
-
|
|
180
|
+
T as Delete,
|
|
178
181
|
f as Editing,
|
|
179
182
|
k as Element,
|
|
180
183
|
u as Global,
|
|
181
184
|
F as Image,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
+
A as Images,
|
|
186
|
+
P as Information,
|
|
187
|
+
L as Landscape,
|
|
185
188
|
B as Link,
|
|
186
189
|
E as List,
|
|
187
190
|
c as Margin,
|
|
188
191
|
C as Mobile,
|
|
189
|
-
|
|
192
|
+
M as Next,
|
|
190
193
|
o as Options,
|
|
191
194
|
d as Padding,
|
|
192
|
-
|
|
195
|
+
D as Portrait,
|
|
193
196
|
x as Prev,
|
|
194
|
-
|
|
197
|
+
v as Preview,
|
|
195
198
|
t as Publish,
|
|
196
199
|
e as Save,
|
|
197
200
|
w as Search,
|
|
198
201
|
l as Select,
|
|
199
202
|
p as Specific,
|
|
200
|
-
|
|
203
|
+
H as Squarish,
|
|
201
204
|
i as Styles,
|
|
202
205
|
q as Text,
|
|
203
206
|
m as Transparent,
|