@dcodegroup-au/page-builder 0.5.9 → 0.6.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 +168 -0
- package/dist/page-builder.es.js +6106 -5628
- package/dist/page-builder.umd.js +6106 -5628
- package/example/src/App.vue +4 -3
- package/example/src/pages/LandingPage.js +245 -0
- package/package.json +1 -1
- package/src/assets/svg/select-type.svg +4 -0
- package/src/components/PageBuilder.vue +3 -0
- package/src/components/PageRender.vue +4 -0
- package/src/components/builders/Header.vue +18 -0
- package/src/components/builders/HorizontalTabs.vue +21 -0
- package/src/components/presenters/modules/HorizontalTabs.vue +161 -0
- package/src/components/presenters/modules/Paragraph.vue +5 -4
- package/src/components/presenters/modules/StandardHeader.vue +25 -4
- package/src/components/presenters/modules/TestimonialSlider.vue +88 -0
- package/src/components/presenters/modules/TwoColumnsImageContent.vue +18 -3
- package/tailwind.config.js +5 -0
package/dist/page-builder.css
CHANGED
|
@@ -721,12 +721,18 @@ select {
|
|
|
721
721
|
.bottom-0 {
|
|
722
722
|
bottom: 0px;
|
|
723
723
|
}
|
|
724
|
+
.bottom-10 {
|
|
725
|
+
bottom: 2.5rem;
|
|
726
|
+
}
|
|
724
727
|
.left-0 {
|
|
725
728
|
left: 0px;
|
|
726
729
|
}
|
|
727
730
|
.left-1\/2 {
|
|
728
731
|
left: 50%;
|
|
729
732
|
}
|
|
733
|
+
.left-20 {
|
|
734
|
+
left: 5rem;
|
|
735
|
+
}
|
|
730
736
|
.left-5 {
|
|
731
737
|
left: 1.25rem;
|
|
732
738
|
}
|
|
@@ -820,12 +826,21 @@ select {
|
|
|
820
826
|
.\!mt-0 {
|
|
821
827
|
margin-top: 0px !important;
|
|
822
828
|
}
|
|
829
|
+
.-mb-\[140px\] {
|
|
830
|
+
margin-bottom: -140px;
|
|
831
|
+
}
|
|
823
832
|
.-mt-12 {
|
|
824
833
|
margin-top: -3rem;
|
|
825
834
|
}
|
|
826
835
|
.mb-1 {
|
|
827
836
|
margin-bottom: 0.25rem;
|
|
828
837
|
}
|
|
838
|
+
.mb-10 {
|
|
839
|
+
margin-bottom: 2.5rem;
|
|
840
|
+
}
|
|
841
|
+
.mb-12 {
|
|
842
|
+
margin-bottom: 3rem;
|
|
843
|
+
}
|
|
829
844
|
.mb-2 {
|
|
830
845
|
margin-bottom: 0.5rem;
|
|
831
846
|
}
|
|
@@ -835,12 +850,18 @@ select {
|
|
|
835
850
|
.mb-3 {
|
|
836
851
|
margin-bottom: 0.75rem;
|
|
837
852
|
}
|
|
853
|
+
.mb-36 {
|
|
854
|
+
margin-bottom: 9rem;
|
|
855
|
+
}
|
|
838
856
|
.mb-4 {
|
|
839
857
|
margin-bottom: 1rem;
|
|
840
858
|
}
|
|
841
859
|
.mb-6 {
|
|
842
860
|
margin-bottom: 1.5rem;
|
|
843
861
|
}
|
|
862
|
+
.mb-8 {
|
|
863
|
+
margin-bottom: 2rem;
|
|
864
|
+
}
|
|
844
865
|
.mb-\[40px\] {
|
|
845
866
|
margin-bottom: 40px;
|
|
846
867
|
}
|
|
@@ -850,9 +871,15 @@ select {
|
|
|
850
871
|
.mb-\[64px\] {
|
|
851
872
|
margin-bottom: 64px;
|
|
852
873
|
}
|
|
874
|
+
.ml-2 {
|
|
875
|
+
margin-left: 0.5rem;
|
|
876
|
+
}
|
|
853
877
|
.mr-2 {
|
|
854
878
|
margin-right: 0.5rem;
|
|
855
879
|
}
|
|
880
|
+
.mr-3 {
|
|
881
|
+
margin-right: 0.75rem;
|
|
882
|
+
}
|
|
856
883
|
.mr-6 {
|
|
857
884
|
margin-right: 1.5rem;
|
|
858
885
|
}
|
|
@@ -931,6 +958,15 @@ select {
|
|
|
931
958
|
.h-1 {
|
|
932
959
|
height: 0.25rem;
|
|
933
960
|
}
|
|
961
|
+
.h-11 {
|
|
962
|
+
height: 2.75rem;
|
|
963
|
+
}
|
|
964
|
+
.h-12 {
|
|
965
|
+
height: 3rem;
|
|
966
|
+
}
|
|
967
|
+
.h-14 {
|
|
968
|
+
height: 3.5rem;
|
|
969
|
+
}
|
|
934
970
|
.h-3 {
|
|
935
971
|
height: 0.75rem;
|
|
936
972
|
}
|
|
@@ -1031,6 +1067,9 @@ select {
|
|
|
1031
1067
|
.min-h-\[90vh\] {
|
|
1032
1068
|
min-height: 90vh;
|
|
1033
1069
|
}
|
|
1070
|
+
.min-h-full {
|
|
1071
|
+
min-height: 100%;
|
|
1072
|
+
}
|
|
1034
1073
|
.\!w-12 {
|
|
1035
1074
|
width: 3rem !important;
|
|
1036
1075
|
}
|
|
@@ -1052,12 +1091,21 @@ select {
|
|
|
1052
1091
|
.w-10 {
|
|
1053
1092
|
width: 2.5rem;
|
|
1054
1093
|
}
|
|
1094
|
+
.w-12 {
|
|
1095
|
+
width: 3rem;
|
|
1096
|
+
}
|
|
1055
1097
|
.w-2\/3 {
|
|
1056
1098
|
width: 66.666667%;
|
|
1057
1099
|
}
|
|
1100
|
+
.w-2\/5 {
|
|
1101
|
+
width: 40%;
|
|
1102
|
+
}
|
|
1058
1103
|
.w-3 {
|
|
1059
1104
|
width: 0.75rem;
|
|
1060
1105
|
}
|
|
1106
|
+
.w-3\/5 {
|
|
1107
|
+
width: 60%;
|
|
1108
|
+
}
|
|
1061
1109
|
.w-4 {
|
|
1062
1110
|
width: 1rem;
|
|
1063
1111
|
}
|
|
@@ -1094,6 +1142,9 @@ select {
|
|
|
1094
1142
|
.w-\[28px\] {
|
|
1095
1143
|
width: 28px;
|
|
1096
1144
|
}
|
|
1145
|
+
.w-\[30rem\] {
|
|
1146
|
+
width: 30rem;
|
|
1147
|
+
}
|
|
1097
1148
|
.w-\[32px\] {
|
|
1098
1149
|
width: 32px;
|
|
1099
1150
|
}
|
|
@@ -1131,6 +1182,9 @@ select {
|
|
|
1131
1182
|
width: -moz-max-content;
|
|
1132
1183
|
width: max-content;
|
|
1133
1184
|
}
|
|
1185
|
+
.min-w-6 {
|
|
1186
|
+
min-width: 1.5rem;
|
|
1187
|
+
}
|
|
1134
1188
|
.min-w-\[24px\] {
|
|
1135
1189
|
min-width: 24px;
|
|
1136
1190
|
}
|
|
@@ -1152,6 +1206,9 @@ select {
|
|
|
1152
1206
|
.max-w-\[1280px\] {
|
|
1153
1207
|
max-width: 1280px;
|
|
1154
1208
|
}
|
|
1209
|
+
.max-w-\[1400px\] {
|
|
1210
|
+
max-width: 1400px;
|
|
1211
|
+
}
|
|
1155
1212
|
.max-w-\[1632px\] {
|
|
1156
1213
|
max-width: 1632px;
|
|
1157
1214
|
}
|
|
@@ -1173,6 +1230,9 @@ select {
|
|
|
1173
1230
|
.max-w-\[48px\] {
|
|
1174
1231
|
max-width: 48px;
|
|
1175
1232
|
}
|
|
1233
|
+
.max-w-\[51\.25rem\] {
|
|
1234
|
+
max-width: 51.25rem;
|
|
1235
|
+
}
|
|
1176
1236
|
.max-w-\[536px\] {
|
|
1177
1237
|
max-width: 536px;
|
|
1178
1238
|
}
|
|
@@ -1277,6 +1337,9 @@ select {
|
|
|
1277
1337
|
.justify-between {
|
|
1278
1338
|
justify-content: space-between;
|
|
1279
1339
|
}
|
|
1340
|
+
.justify-stretch {
|
|
1341
|
+
justify-content: stretch;
|
|
1342
|
+
}
|
|
1280
1343
|
.\!gap-4 {
|
|
1281
1344
|
gap: 1rem !important;
|
|
1282
1345
|
}
|
|
@@ -1323,6 +1386,21 @@ select {
|
|
|
1323
1386
|
-moz-column-gap: 100px;
|
|
1324
1387
|
column-gap: 100px;
|
|
1325
1388
|
}
|
|
1389
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1390
|
+
--tw-space-x-reverse: 0;
|
|
1391
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1392
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1393
|
+
}
|
|
1394
|
+
.space-x-16 > :not([hidden]) ~ :not([hidden]) {
|
|
1395
|
+
--tw-space-x-reverse: 0;
|
|
1396
|
+
margin-right: calc(4rem * var(--tw-space-x-reverse));
|
|
1397
|
+
margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1398
|
+
}
|
|
1399
|
+
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
|
1400
|
+
--tw-space-x-reverse: 0;
|
|
1401
|
+
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
|
1402
|
+
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1403
|
+
}
|
|
1326
1404
|
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
1327
1405
|
--tw-divide-y-reverse: 0;
|
|
1328
1406
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
@@ -1347,6 +1425,9 @@ select {
|
|
|
1347
1425
|
.rounded {
|
|
1348
1426
|
border-radius: 0.25rem;
|
|
1349
1427
|
}
|
|
1428
|
+
.rounded-3xl {
|
|
1429
|
+
border-radius: 1.5rem;
|
|
1430
|
+
}
|
|
1350
1431
|
.rounded-\[10px\] {
|
|
1351
1432
|
border-radius: 10px;
|
|
1352
1433
|
}
|
|
@@ -1397,12 +1478,18 @@ select {
|
|
|
1397
1478
|
.rounded-bl-\[0px\] {
|
|
1398
1479
|
border-bottom-left-radius: 0px;
|
|
1399
1480
|
}
|
|
1481
|
+
.rounded-br-3xl {
|
|
1482
|
+
border-bottom-right-radius: 1.5rem;
|
|
1483
|
+
}
|
|
1400
1484
|
.rounded-br-\[24px\] {
|
|
1401
1485
|
border-bottom-right-radius: 24px;
|
|
1402
1486
|
}
|
|
1403
1487
|
.rounded-br-\[48px\] {
|
|
1404
1488
|
border-bottom-right-radius: 48px;
|
|
1405
1489
|
}
|
|
1490
|
+
.rounded-tl-3xl {
|
|
1491
|
+
border-top-left-radius: 1.5rem;
|
|
1492
|
+
}
|
|
1406
1493
|
.rounded-tl-\[24px\] {
|
|
1407
1494
|
border-top-left-radius: 24px;
|
|
1408
1495
|
}
|
|
@@ -1532,6 +1619,10 @@ select {
|
|
|
1532
1619
|
--tw-bg-opacity: 1;
|
|
1533
1620
|
background-color: rgb(230 203 219 / var(--tw-bg-opacity, 1));
|
|
1534
1621
|
}
|
|
1622
|
+
.bg-brand-25 {
|
|
1623
|
+
--tw-bg-opacity: 1;
|
|
1624
|
+
background-color: rgb(245 239 243 / var(--tw-bg-opacity, 1));
|
|
1625
|
+
}
|
|
1535
1626
|
.bg-brand-50 {
|
|
1536
1627
|
--tw-bg-opacity: 1;
|
|
1537
1628
|
background-color: rgb(237 222 231 / var(--tw-bg-opacity, 1));
|
|
@@ -1568,6 +1659,10 @@ select {
|
|
|
1568
1659
|
--tw-bg-opacity: 1;
|
|
1569
1660
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1570
1661
|
}
|
|
1662
|
+
.bg-navy-100 {
|
|
1663
|
+
--tw-bg-opacity: 1;
|
|
1664
|
+
background-color: rgb(169 184 198 / var(--tw-bg-opacity, 1));
|
|
1665
|
+
}
|
|
1571
1666
|
.bg-navy-25 {
|
|
1572
1667
|
--tw-bg-opacity: 1;
|
|
1573
1668
|
background-color: rgb(239 242 245 / var(--tw-bg-opacity, 1));
|
|
@@ -1600,6 +1695,10 @@ select {
|
|
|
1600
1695
|
--tw-bg-opacity: 1;
|
|
1601
1696
|
background-color: rgb(251 245 244 / var(--tw-bg-opacity, 1));
|
|
1602
1697
|
}
|
|
1698
|
+
.bg-success-100 {
|
|
1699
|
+
--tw-bg-opacity: 1;
|
|
1700
|
+
background-color: rgb(220 250 230 / var(--tw-bg-opacity, 1));
|
|
1701
|
+
}
|
|
1603
1702
|
.bg-transparent {
|
|
1604
1703
|
background-color: transparent;
|
|
1605
1704
|
}
|
|
@@ -1621,6 +1720,9 @@ select {
|
|
|
1621
1720
|
.p-1 {
|
|
1622
1721
|
padding: 0.25rem;
|
|
1623
1722
|
}
|
|
1723
|
+
.p-10 {
|
|
1724
|
+
padding: 2.5rem;
|
|
1725
|
+
}
|
|
1624
1726
|
.p-16 {
|
|
1625
1727
|
padding: 4rem;
|
|
1626
1728
|
}
|
|
@@ -1647,6 +1749,10 @@ select {
|
|
|
1647
1749
|
padding-left: 0px;
|
|
1648
1750
|
padding-right: 0px;
|
|
1649
1751
|
}
|
|
1752
|
+
.px-1\.5 {
|
|
1753
|
+
padding-left: 0.375rem;
|
|
1754
|
+
padding-right: 0.375rem;
|
|
1755
|
+
}
|
|
1650
1756
|
.px-12 {
|
|
1651
1757
|
padding-left: 3rem;
|
|
1652
1758
|
padding-right: 3rem;
|
|
@@ -1679,6 +1785,10 @@ select {
|
|
|
1679
1785
|
padding-left: 1.5rem;
|
|
1680
1786
|
padding-right: 1.5rem;
|
|
1681
1787
|
}
|
|
1788
|
+
.px-8 {
|
|
1789
|
+
padding-left: 2rem;
|
|
1790
|
+
padding-right: 2rem;
|
|
1791
|
+
}
|
|
1682
1792
|
.px-\[10px\] {
|
|
1683
1793
|
padding-left: 10px;
|
|
1684
1794
|
padding-right: 10px;
|
|
@@ -1771,6 +1881,9 @@ select {
|
|
|
1771
1881
|
.pb-3 {
|
|
1772
1882
|
padding-bottom: 0.75rem;
|
|
1773
1883
|
}
|
|
1884
|
+
.pb-32 {
|
|
1885
|
+
padding-bottom: 8rem;
|
|
1886
|
+
}
|
|
1774
1887
|
.pb-4 {
|
|
1775
1888
|
padding-bottom: 1rem;
|
|
1776
1889
|
}
|
|
@@ -1829,10 +1942,18 @@ select {
|
|
|
1829
1942
|
font-size: 1rem !important;
|
|
1830
1943
|
line-height: 1.5rem !important;
|
|
1831
1944
|
}
|
|
1945
|
+
.text-3xl {
|
|
1946
|
+
font-size: 1.875rem;
|
|
1947
|
+
line-height: 2.25rem;
|
|
1948
|
+
}
|
|
1832
1949
|
.text-4xl {
|
|
1833
1950
|
font-size: 2.25rem;
|
|
1834
1951
|
line-height: 2.5rem;
|
|
1835
1952
|
}
|
|
1953
|
+
.text-5xl {
|
|
1954
|
+
font-size: 3rem;
|
|
1955
|
+
line-height: 1;
|
|
1956
|
+
}
|
|
1836
1957
|
.text-\[13px\] {
|
|
1837
1958
|
font-size: 13px;
|
|
1838
1959
|
}
|
|
@@ -1883,6 +2004,9 @@ select {
|
|
|
1883
2004
|
font-size: 0.75rem;
|
|
1884
2005
|
line-height: 1rem;
|
|
1885
2006
|
}
|
|
2007
|
+
.font-bold {
|
|
2008
|
+
font-weight: 700;
|
|
2009
|
+
}
|
|
1886
2010
|
.font-medium {
|
|
1887
2011
|
font-weight: 500;
|
|
1888
2012
|
}
|
|
@@ -1898,9 +2022,18 @@ select {
|
|
|
1898
2022
|
.italic {
|
|
1899
2023
|
font-style: italic;
|
|
1900
2024
|
}
|
|
2025
|
+
.leading-10 {
|
|
2026
|
+
line-height: 2.5rem;
|
|
2027
|
+
}
|
|
1901
2028
|
.leading-6 {
|
|
1902
2029
|
line-height: 1.5rem;
|
|
1903
2030
|
}
|
|
2031
|
+
.leading-8 {
|
|
2032
|
+
line-height: 2rem;
|
|
2033
|
+
}
|
|
2034
|
+
.leading-9 {
|
|
2035
|
+
line-height: 2.25rem;
|
|
2036
|
+
}
|
|
1904
2037
|
.leading-\[24px\] {
|
|
1905
2038
|
line-height: 24px;
|
|
1906
2039
|
}
|
|
@@ -1972,6 +2105,10 @@ select {
|
|
|
1972
2105
|
--tw-text-opacity: 1;
|
|
1973
2106
|
color: rgb(217 45 32 / var(--tw-text-opacity, 1));
|
|
1974
2107
|
}
|
|
2108
|
+
.text-gray-200 {
|
|
2109
|
+
--tw-text-opacity: 1;
|
|
2110
|
+
color: rgb(229 231 235 / var(--tw-text-opacity, 1));
|
|
2111
|
+
}
|
|
1975
2112
|
.text-gray-400 {
|
|
1976
2113
|
--tw-text-opacity: 1;
|
|
1977
2114
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
@@ -2000,6 +2137,10 @@ select {
|
|
|
2000
2137
|
--tw-text-opacity: 1;
|
|
2001
2138
|
color: rgb(223 229 236 / var(--tw-text-opacity, 1));
|
|
2002
2139
|
}
|
|
2140
|
+
.text-navy-600 {
|
|
2141
|
+
--tw-text-opacity: 1;
|
|
2142
|
+
color: rgb(62 95 126 / var(--tw-text-opacity, 1));
|
|
2143
|
+
}
|
|
2003
2144
|
.text-navy-700 {
|
|
2004
2145
|
--tw-text-opacity: 1;
|
|
2005
2146
|
color: rgb(40 77 112 / var(--tw-text-opacity, 1));
|
|
@@ -2012,10 +2153,18 @@ select {
|
|
|
2012
2153
|
--tw-text-opacity: 1;
|
|
2013
2154
|
color: rgb(185 56 21 / var(--tw-text-opacity, 1));
|
|
2014
2155
|
}
|
|
2156
|
+
.text-success-500 {
|
|
2157
|
+
--tw-text-opacity: 1;
|
|
2158
|
+
color: rgb(23 178 106 / var(--tw-text-opacity, 1));
|
|
2159
|
+
}
|
|
2015
2160
|
.text-white {
|
|
2016
2161
|
--tw-text-opacity: 1;
|
|
2017
2162
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
2018
2163
|
}
|
|
2164
|
+
.text-yellow-100 {
|
|
2165
|
+
--tw-text-opacity: 1;
|
|
2166
|
+
color: rgb(218 170 0 / var(--tw-text-opacity, 1));
|
|
2167
|
+
}
|
|
2019
2168
|
.underline {
|
|
2020
2169
|
text-decoration-line: underline;
|
|
2021
2170
|
}
|
|
@@ -2030,6 +2179,11 @@ select {
|
|
|
2030
2179
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
2031
2180
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2032
2181
|
}
|
|
2182
|
+
.shadow-sm {
|
|
2183
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
2184
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
2185
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2186
|
+
}
|
|
2033
2187
|
.ring {
|
|
2034
2188
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2035
2189
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2698,6 +2852,11 @@ select {
|
|
|
2698
2852
|
border-color: rgb(147 28 97 / var(--tw-border-opacity, 1));
|
|
2699
2853
|
}
|
|
2700
2854
|
|
|
2855
|
+
.hover\:border-gray-400:hover {
|
|
2856
|
+
--tw-border-opacity: 1;
|
|
2857
|
+
border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2701
2860
|
.hover\:\!bg-brand-700:hover {
|
|
2702
2861
|
--tw-bg-opacity: 1 !important;
|
|
2703
2862
|
background-color: rgb(147 28 97 / var(--tw-bg-opacity, 1)) !important;
|
|
@@ -3322,3 +3481,12 @@ select {
|
|
|
3322
3481
|
align-items: center;
|
|
3323
3482
|
text-align: center
|
|
3324
3483
|
}
|
|
3484
|
+
|
|
3485
|
+
.fade-enter-active[data-v-25ca07bb],
|
|
3486
|
+
.fade-leave-active[data-v-25ca07bb] {
|
|
3487
|
+
transition: opacity 0.4s ease;
|
|
3488
|
+
}
|
|
3489
|
+
.fade-enter-from[data-v-25ca07bb],
|
|
3490
|
+
.fade-leave-to[data-v-25ca07bb] {
|
|
3491
|
+
opacity: 0;
|
|
3492
|
+
}
|