@dcodegroup-au/page-builder 0.6.6 → 0.6.8
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/dist/page-builder.css
CHANGED
|
@@ -1075,6 +1075,9 @@ select {
|
|
|
1075
1075
|
.min-h-\[320px\] {
|
|
1076
1076
|
min-height: 320px;
|
|
1077
1077
|
}
|
|
1078
|
+
.min-h-\[48px\] {
|
|
1079
|
+
min-height: 48px;
|
|
1080
|
+
}
|
|
1078
1081
|
.min-h-\[90vh\] {
|
|
1079
1082
|
min-height: 90vh;
|
|
1080
1083
|
}
|
|
@@ -1202,6 +1205,9 @@ select {
|
|
|
1202
1205
|
.min-w-\[480px\] {
|
|
1203
1206
|
min-width: 480px;
|
|
1204
1207
|
}
|
|
1208
|
+
.min-w-\[48px\] {
|
|
1209
|
+
min-width: 48px;
|
|
1210
|
+
}
|
|
1205
1211
|
.min-w-\[50\%\] {
|
|
1206
1212
|
min-width: 50%;
|
|
1207
1213
|
}
|
|
@@ -2835,6 +2841,10 @@ select {
|
|
|
2835
2841
|
font-weight: 400;
|
|
2836
2842
|
}
|
|
2837
2843
|
|
|
2844
|
+
.page-builder .ql-editor, .page-render .ql-editor, .item-edit .ql-editor {
|
|
2845
|
+
overflow: visible;
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2838
2848
|
.page-builder .ql-editor, .page-render .ql-editor, .item-edit .ql-editor {
|
|
2839
2849
|
padding: 0px;
|
|
2840
2850
|
}
|
package/dist/page-builder.es.js
CHANGED
|
@@ -49039,7 +49039,7 @@ const _hoisted_9$b = { class: "text-[36px] text-gray-900 font-semibold" };
|
|
|
49039
49039
|
const _hoisted_10$9 = ["innerHTML"];
|
|
49040
49040
|
const _hoisted_11$8 = {
|
|
49041
49041
|
key: 0,
|
|
49042
|
-
class: "max-w-[48px] w-full max-h-[48px] h-full bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center"
|
|
49042
|
+
class: "max-w-[48px] min-w-[48px] w-full max-h-[48px] min-h-[48px] h-full bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center"
|
|
49043
49043
|
};
|
|
49044
49044
|
const _hoisted_12$6 = { class: "font-semibold text-[20px] text-gray-900" };
|
|
49045
49045
|
const _hoisted_13$4 = ["innerHTML"];
|
package/dist/page-builder.umd.js
CHANGED
|
@@ -49042,7 +49042,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49042
49042
|
const _hoisted_10$9 = ["innerHTML"];
|
|
49043
49043
|
const _hoisted_11$8 = {
|
|
49044
49044
|
key: 0,
|
|
49045
|
-
class: "max-w-[48px] w-full max-h-[48px] h-full bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center"
|
|
49045
|
+
class: "max-w-[48px] min-w-[48px] w-full max-h-[48px] min-h-[48px] h-full bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center"
|
|
49046
49046
|
};
|
|
49047
49047
|
const _hoisted_12$6 = { class: "font-semibold text-[20px] text-gray-900" };
|
|
49048
49048
|
const _hoisted_13$4 = ["innerHTML"];
|
package/package.json
CHANGED
package/src/assets/css/style.css
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}">
|
|
34
34
|
<template v-if="item.title">
|
|
35
35
|
<div v-if="item?.icon"
|
|
36
|
-
class="max-w-[48px] w-full max-h-[48px] h-full bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center">
|
|
36
|
+
class="max-w-[48px] min-w-[48px] w-full max-h-[48px] min-h-[48px] h-full bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center">
|
|
37
37
|
<IconComponent :icon="item.icon" icon-classes="w-5 h-5 text-brand-600"></IconComponent>
|
|
38
38
|
</div>
|
|
39
39
|
<div class="max-w-[324px] ql-editor" :class="{'max-w-full': featureItemsComponent?.has_background}">
|