@dcodegroup-au/page-builder 0.7.9 → 0.8.1
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 +21 -19
- package/dist/page-builder.es.js +149 -111
- package/dist/page-builder.umd.js +149 -111
- package/example/src/App.vue +56 -56
- package/example/src/pages/BestLife.js +1 -0
- package/example/src/pages/Vectea2024.js +1 -1
- package/package.json +1 -1
- package/src/components/builders/VideoGrid.vue +17 -0
- package/src/components/presenters/components/CollectionGridPresenter.vue +38 -17
- package/src/components/presenters/modules/BulletPoints.vue +2 -2
- package/src/components/presenters/modules/Paragraph.vue +10 -3
- package/src/components/presenters/modules/TwoColumnsImageContent.vue +6 -8
package/dist/page-builder.css
CHANGED
|
@@ -1087,9 +1087,6 @@ select {
|
|
|
1087
1087
|
.w-12 {
|
|
1088
1088
|
width: 3rem;
|
|
1089
1089
|
}
|
|
1090
|
-
.w-2\/3 {
|
|
1091
|
-
width: 66.666667%;
|
|
1092
|
-
}
|
|
1093
1090
|
.w-3 {
|
|
1094
1091
|
width: 0.75rem;
|
|
1095
1092
|
}
|
|
@@ -1175,9 +1172,6 @@ select {
|
|
|
1175
1172
|
.min-w-\[24px\] {
|
|
1176
1173
|
min-width: 24px;
|
|
1177
1174
|
}
|
|
1178
|
-
.min-w-\[300px\] {
|
|
1179
|
-
min-width: 300px;
|
|
1180
|
-
}
|
|
1181
1175
|
.min-w-\[400px\] {
|
|
1182
1176
|
min-width: 400px;
|
|
1183
1177
|
}
|
|
@@ -1202,24 +1196,15 @@ select {
|
|
|
1202
1196
|
.max-w-\[1640px\] {
|
|
1203
1197
|
max-width: 1640px;
|
|
1204
1198
|
}
|
|
1205
|
-
.max-w-\[324px\] {
|
|
1206
|
-
max-width: 324px;
|
|
1207
|
-
}
|
|
1208
1199
|
.max-w-\[356px\] {
|
|
1209
1200
|
max-width: 356px;
|
|
1210
1201
|
}
|
|
1211
|
-
.max-w-\[480px\] {
|
|
1212
|
-
max-width: 480px;
|
|
1213
|
-
}
|
|
1214
1202
|
.max-w-\[48px\] {
|
|
1215
1203
|
max-width: 48px;
|
|
1216
1204
|
}
|
|
1217
1205
|
.max-w-\[51\.25rem\] {
|
|
1218
1206
|
max-width: 51.25rem;
|
|
1219
1207
|
}
|
|
1220
|
-
.max-w-\[536px\] {
|
|
1221
|
-
max-width: 536px;
|
|
1222
|
-
}
|
|
1223
1208
|
.max-w-\[768px\] {
|
|
1224
1209
|
max-width: 768px;
|
|
1225
1210
|
}
|
|
@@ -1895,9 +1880,6 @@ select {
|
|
|
1895
1880
|
font-size: 2.25rem;
|
|
1896
1881
|
line-height: 2.5rem;
|
|
1897
1882
|
}
|
|
1898
|
-
.text-\[13px\] {
|
|
1899
|
-
font-size: 13px;
|
|
1900
|
-
}
|
|
1901
1883
|
.text-\[16px\] {
|
|
1902
1884
|
font-size: 16px;
|
|
1903
1885
|
}
|
|
@@ -3197,6 +3179,10 @@ select {
|
|
|
3197
3179
|
width: 560px;
|
|
3198
3180
|
}
|
|
3199
3181
|
|
|
3182
|
+
.md\:max-w-\[324px\] {
|
|
3183
|
+
max-width: 324px;
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3200
3186
|
.md\:grid-cols-2 {
|
|
3201
3187
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3202
3188
|
}
|
|
@@ -3361,6 +3347,10 @@ select {
|
|
|
3361
3347
|
width: 50%;
|
|
3362
3348
|
}
|
|
3363
3349
|
|
|
3350
|
+
.lg\:w-2\/3 {
|
|
3351
|
+
width: 66.666667%;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3364
3354
|
.lg\:w-2\/5 {
|
|
3365
3355
|
width: 40%;
|
|
3366
3356
|
}
|
|
@@ -3373,10 +3363,22 @@ select {
|
|
|
3373
3363
|
width: 350px;
|
|
3374
3364
|
}
|
|
3375
3365
|
|
|
3366
|
+
.lg\:min-w-\[300px\] {
|
|
3367
|
+
min-width: 300px;
|
|
3368
|
+
}
|
|
3369
|
+
|
|
3376
3370
|
.lg\:max-w-\[33\.3\%\] {
|
|
3377
3371
|
max-width: 33.3%;
|
|
3378
3372
|
}
|
|
3379
3373
|
|
|
3374
|
+
.lg\:max-w-\[480px\] {
|
|
3375
|
+
max-width: 480px;
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
.lg\:max-w-\[536px\] {
|
|
3379
|
+
max-width: 536px;
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3380
3382
|
.lg\:max-w-\[882px\] {
|
|
3381
3383
|
max-width: 882px;
|
|
3382
3384
|
}
|
|
@@ -3896,7 +3898,7 @@ select {
|
|
|
3896
3898
|
-webkit-line-clamp: 4; /* Limit the text to 3 lines */
|
|
3897
3899
|
}
|
|
3898
3900
|
|
|
3899
|
-
.card[data-v-
|
|
3901
|
+
.card[data-v-77dcb437] {
|
|
3900
3902
|
display: flex;
|
|
3901
3903
|
flex-direction: column;
|
|
3902
3904
|
align-items: center;
|