@g1cloud/page-builder-editor 1.0.0-alpha.81 → 1.0.0-alpha.83
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/css/page-builder-editor.css +14 -9
- package/dist/{PbPropertyEditorColor-D1Et94Ef.js → PbPropertyEditorColor-B2whCX1d.js} +1 -1
- package/dist/{PbPropertyEditorCssLength-vEqAkXLy.js → PbPropertyEditorCssLength-Cq5y3hp5.js} +1 -1
- package/dist/{PbPropertyEditorHtml-BD1ir-xW.js → PbPropertyEditorHtml-DunmjOZP.js} +1 -1
- package/dist/{PbPropertyEditorImage-CrtSHsie.js → PbPropertyEditorImage-CAULnDMs.js} +1 -1
- package/dist/{PbPropertyEditorMultilineText-v01RFbU-.js → PbPropertyEditorMultilineText-CP-gnrl0.js} +1 -1
- package/dist/{PbPropertyEditorText-CDohV0Yq.js → PbPropertyEditorText-BqXqhBvc.js} +1 -1
- package/dist/{PbPropertyEditorYoutube-gZIWmCbS.js → PbPropertyEditorYoutube-BM-3CS85.js} +1 -1
- package/dist/{PbWidgetAddModal-CetSlzPe.js → PbWidgetAddModal-B0EJiVqs.js} +1 -1
- package/dist/{index-tTR7GhuX.js → index-CzWzYmyG.js} +453 -253
- package/dist/page-builder-editor.js +1 -1
- package/dist/page-builder-editor.umd.cjs +445 -245
- package/dist/style.css +14 -9
- package/package.json +3 -3
- package/scss/canvas.scss +1 -0
- package/scss/page-builder-editor.scss +7 -7
- package/scss/property-editor-youtube.scss +2 -2
- package/scss/property-group-editor-media.scss +5 -0
- package/scss/property-localpart.scss +2 -2
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
.pb-editor .pb-editor-body .pb-canvas-wrapper {
|
|
48
48
|
background-color: var(--color-canvas-frame-bg);
|
|
49
49
|
border-top: 1px solid var(--color-canvas-frame-bg);
|
|
50
|
+
border-bottom: 1px solid var(--color-canvas-frame-bg);
|
|
50
51
|
flex-grow: 1;
|
|
51
52
|
min-width: 0;
|
|
52
53
|
width: 0;
|
|
@@ -262,17 +263,21 @@
|
|
|
262
263
|
.pb-editor .pb-editor-body .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-media .input-area {
|
|
263
264
|
height: 24px;
|
|
264
265
|
}
|
|
266
|
+
.pb-editor .pb-editor-body .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-media .url {
|
|
267
|
+
word-break: break-word !important;
|
|
268
|
+
word-wrap: break-word !important;
|
|
269
|
+
}
|
|
265
270
|
.pb-editor .pb-editor-body .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-local-part .title {
|
|
266
271
|
font-weight: 600;
|
|
267
272
|
}
|
|
268
273
|
.pb-editor .pb-editor-body .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-local-part button {
|
|
269
|
-
color:
|
|
274
|
+
color: var(--white);
|
|
270
275
|
border: none;
|
|
271
276
|
padding: 0 4px;
|
|
272
277
|
cursor: pointer;
|
|
273
278
|
line-height: 1;
|
|
274
279
|
height: 24px;
|
|
275
|
-
background-color:
|
|
280
|
+
background-color: var(--primary);
|
|
276
281
|
}
|
|
277
282
|
.pb-editor .pb-editor-body .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-local-part .input-area {
|
|
278
283
|
height: 24px;
|
|
@@ -301,14 +306,14 @@
|
|
|
301
306
|
display: inline-block;
|
|
302
307
|
width: 100px;
|
|
303
308
|
height: 1px;
|
|
304
|
-
background: red;
|
|
309
|
+
background: var(--red);
|
|
305
310
|
position: absolute;
|
|
306
311
|
top: 50%;
|
|
307
312
|
left: 50%;
|
|
308
313
|
transform: translate(-50%, -50%) rotate(45deg);
|
|
309
314
|
}
|
|
310
315
|
.pb-editor .pb-editor-body .pb-color-picker .buttons button.picker-button {
|
|
311
|
-
border: 1px solid
|
|
316
|
+
border: 1px solid var(--border);
|
|
312
317
|
}
|
|
313
318
|
.pb-editor .pb-editor-body .pb-color-picker .buttons button i {
|
|
314
319
|
font-size: 1.4rem;
|
|
@@ -337,7 +342,7 @@
|
|
|
337
342
|
width: 50%;
|
|
338
343
|
}
|
|
339
344
|
.pb-html-editor-modal .preview .content {
|
|
340
|
-
border: solid 1px
|
|
345
|
+
border: solid 1px var(--border);
|
|
341
346
|
}
|
|
342
347
|
.pb-html-editor-modal .preview .content iframe {
|
|
343
348
|
width: 100%;
|
|
@@ -362,24 +367,24 @@
|
|
|
362
367
|
text-align: center;
|
|
363
368
|
}
|
|
364
369
|
.pb-html-editor-modal .buttons button {
|
|
365
|
-
color:
|
|
370
|
+
color: var(--white);
|
|
366
371
|
border: none;
|
|
367
372
|
padding: 4px 12px;
|
|
368
373
|
cursor: pointer;
|
|
369
374
|
line-height: 1;
|
|
370
375
|
height: 28px;
|
|
371
|
-
background-color:
|
|
376
|
+
background-color: var(--primary);
|
|
372
377
|
}
|
|
373
378
|
|
|
374
379
|
.pb-youtube-modal .flex-grow-1.overflow-auto {
|
|
375
380
|
overflow: hidden !important;
|
|
376
381
|
}
|
|
377
382
|
.pb-youtube-modal button {
|
|
378
|
-
color:
|
|
383
|
+
color: var(--white);
|
|
379
384
|
border: none;
|
|
380
385
|
padding: 4px 12px;
|
|
381
386
|
cursor: pointer;
|
|
382
387
|
line-height: 1;
|
|
383
388
|
height: 28px;
|
|
384
|
-
background-color:
|
|
389
|
+
background-color: var(--primary);
|
|
385
390
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createElementBlock, createElementVNode, withDirectives, unref, createVNode } from "vue";
|
|
2
2
|
import { vT, BSTextInput } from "@g1cloud/bluesea";
|
|
3
|
-
import { P as PbColorPicker } from "./index-
|
|
3
|
+
import { P as PbColorPicker } from "./index-CzWzYmyG.js";
|
|
4
4
|
const _hoisted_1 = { class: "property-editor property-editor-color" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _hoisted_3 = { class: "bs-layout-horizontal flex-align-center color" };
|
package/dist/{PbPropertyEditorCssLength-vEqAkXLy.js → PbPropertyEditorCssLength-Cq5y3hp5.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createElementBlock, createElementVNode, withDirectives, unref, createVNode } from "vue";
|
|
2
2
|
import { vT, BSTextInput } from "@g1cloud/bluesea";
|
|
3
|
-
import { t as toCssLength } from "./index-
|
|
3
|
+
import { t as toCssLength } from "./index-CzWzYmyG.js";
|
|
4
4
|
const _hoisted_1 = { class: "property-editor property-editor-number flex-align-center" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createElementBlock, createElementVNode, withDirectives, unref, createTextVNode, defineAsyncComponent } from "vue";
|
|
2
2
|
import { useModal, vT } from "@g1cloud/bluesea";
|
|
3
|
-
import { u as usePageBuilderEditor } from "./index-
|
|
3
|
+
import { u as usePageBuilderEditor } from "./index-CzWzYmyG.js";
|
|
4
4
|
const _hoisted_1 = { class: "property-editor property-editor-html flex-align-center" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, computed, openBlock, createElementBlock, createElementVNode, withDirectives, unref, createTextVNode, toDisplayString, createVNode, createCommentVNode, Fragment } from "vue";
|
|
2
|
-
import { u as usePageBuilderEditor, C as ChangePropertyCommand } from "./index-
|
|
2
|
+
import { u as usePageBuilderEditor, C as ChangePropertyCommand } from "./index-CzWzYmyG.js";
|
|
3
3
|
import { useModal, vT, BSButton, BSMultiLangTextInput, showNotification } from "@g1cloud/bluesea";
|
|
4
4
|
const _hoisted_1 = { class: "property-editor property-editor-image" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
package/dist/{PbPropertyEditorMultilineText-v01RFbU-.js → PbPropertyEditorMultilineText-CP-gnrl0.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, openBlock, createElementBlock, createElementVNode, withDirectives, unref, createBlock } from "vue";
|
|
2
2
|
import { vT, BSMultiLangTextArea, BSTextArea } from "@g1cloud/bluesea";
|
|
3
|
-
import { u as usePageBuilderEditor } from "./index-
|
|
3
|
+
import { u as usePageBuilderEditor } from "./index-CzWzYmyG.js";
|
|
4
4
|
const _hoisted_1 = { class: "property-editor property-editor-multiline-text" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, openBlock, createElementBlock, createElementVNode, withDirectives, unref, createBlock } from "vue";
|
|
2
2
|
import { vT, BSMultiLangTextInput, BSTextInput } from "@g1cloud/bluesea";
|
|
3
|
-
import { u as usePageBuilderEditor } from "./index-
|
|
3
|
+
import { u as usePageBuilderEditor } from "./index-CzWzYmyG.js";
|
|
4
4
|
const _hoisted_1 = { class: "property-editor property-editor-text flex-align-center" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createElementBlock, createElementVNode, withDirectives, unref } from "vue";
|
|
2
2
|
import { useModal, vT } from "@g1cloud/bluesea";
|
|
3
|
-
import { s as selectYoutubeVideo } from "./index-
|
|
3
|
+
import { s as selectYoutubeVideo } from "./index-CzWzYmyG.js";
|
|
4
4
|
const _hoisted_1 = { class: "property-editor property-editor-image flex-align-center" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, openBlock, createBlock, unref, withCtx, createElementVNode, createElementBlock, Fragment, renderList, toDisplayString } from "vue";
|
|
2
2
|
import { useModalHandle, BSModalFrame } from "@g1cloud/bluesea";
|
|
3
|
-
import { w as widgetPartDefinitions } from "./index-
|
|
3
|
+
import { w as widgetPartDefinitions } from "./index-CzWzYmyG.js";
|
|
4
4
|
const _hoisted_1 = { class: "bs-layout-vertical pb-part-add-modal" };
|
|
5
5
|
const _hoisted_2 = { class: "bs-layout-horizontal-wrap ml-16 mb-8 gap-8" };
|
|
6
6
|
const _hoisted_3 = ["onClick", "textContent"];
|