@dcodegroup-au/page-builder 0.5.6 → 0.5.7
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 +20 -1
- package/dist/page-builder.es.js +513 -353
- package/dist/page-builder.umd.js +513 -353
- package/example/src/App.vue +16 -3
- package/example/src/pages/SAEW.js +273 -0
- package/example/src/pages/Vectea2024.js +1 -1
- package/package.json +1 -1
- package/src/components/PageBuilder.vue +7 -0
- package/src/components/builders/Paragraph.vue +41 -2
- package/src/components/common/ItemSelect.vue +22 -0
- package/src/components/common/LinkedTo.vue +6 -4
- package/src/components/presenters/components/CollectionGridPresenter.vue +2 -2
- package/src/components/presenters/modules/BulletPoints.vue +12 -10
- package/src/components/presenters/modules/CollectionGrid.vue +1 -1
- package/src/components/presenters/modules/FAQ.vue +1 -1
- package/src/components/presenters/modules/Paragraph.vue +53 -7
package/dist/page-builder.css
CHANGED
|
@@ -814,6 +814,9 @@ select {
|
|
|
814
814
|
margin-top: 44px;
|
|
815
815
|
margin-bottom: 44px;
|
|
816
816
|
}
|
|
817
|
+
.\!mb-10 {
|
|
818
|
+
margin-bottom: 2.5rem !important;
|
|
819
|
+
}
|
|
817
820
|
.\!mt-0 {
|
|
818
821
|
margin-top: 0px !important;
|
|
819
822
|
}
|
|
@@ -1140,6 +1143,9 @@ select {
|
|
|
1140
1143
|
.min-w-\[50\%\] {
|
|
1141
1144
|
min-width: 50%;
|
|
1142
1145
|
}
|
|
1146
|
+
.\!max-w-full {
|
|
1147
|
+
max-width: 100% !important;
|
|
1148
|
+
}
|
|
1143
1149
|
.max-w-\[1280px\] {
|
|
1144
1150
|
max-width: 1280px;
|
|
1145
1151
|
}
|
|
@@ -1164,6 +1170,9 @@ select {
|
|
|
1164
1170
|
.max-w-\[48px\] {
|
|
1165
1171
|
max-width: 48px;
|
|
1166
1172
|
}
|
|
1173
|
+
.max-w-\[536px\] {
|
|
1174
|
+
max-width: 536px;
|
|
1175
|
+
}
|
|
1167
1176
|
.max-w-\[768px\] {
|
|
1168
1177
|
max-width: 768px;
|
|
1169
1178
|
}
|
|
@@ -1739,6 +1748,9 @@ select {
|
|
|
1739
1748
|
padding-top: 9px;
|
|
1740
1749
|
padding-bottom: 9px;
|
|
1741
1750
|
}
|
|
1751
|
+
.\!pt-0 {
|
|
1752
|
+
padding-top: 0px !important;
|
|
1753
|
+
}
|
|
1742
1754
|
.pb-10 {
|
|
1743
1755
|
padding-bottom: 2.5rem;
|
|
1744
1756
|
}
|
|
@@ -1915,6 +1927,10 @@ select {
|
|
|
1915
1927
|
--tw-text-opacity: 1 !important;
|
|
1916
1928
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1)) !important;
|
|
1917
1929
|
}
|
|
1930
|
+
.\!text-white {
|
|
1931
|
+
--tw-text-opacity: 1 !important;
|
|
1932
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
|
|
1933
|
+
}
|
|
1918
1934
|
.text-blue-500 {
|
|
1919
1935
|
--tw-text-opacity: 1;
|
|
1920
1936
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -1986,6 +2002,9 @@ select {
|
|
|
1986
2002
|
.underline {
|
|
1987
2003
|
text-decoration-line: underline;
|
|
1988
2004
|
}
|
|
2005
|
+
.\!no-underline {
|
|
2006
|
+
text-decoration-line: none !important;
|
|
2007
|
+
}
|
|
1989
2008
|
.opacity-50 {
|
|
1990
2009
|
opacity: 0.5;
|
|
1991
2010
|
}
|
|
@@ -3280,7 +3299,7 @@ select {
|
|
|
3280
3299
|
-webkit-line-clamp: 4; /* Limit the text to 3 lines */
|
|
3281
3300
|
}
|
|
3282
3301
|
|
|
3283
|
-
.card[data-v-
|
|
3302
|
+
.card[data-v-0fff82fb] {
|
|
3284
3303
|
display: flex;
|
|
3285
3304
|
flex-direction: column;
|
|
3286
3305
|
align-items: center;
|