@dcodegroup-au/page-builder 0.5.8 → 0.5.9
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 +17 -0
- package/dist/page-builder.es.js +3345 -3241
- package/dist/page-builder.umd.js +3345 -3241
- package/example/src/App.vue +3 -2
- package/example/src/pages/AssessmentSupportService.js +120 -0
- package/package.json +1 -1
- package/src/components/PageBuilder.vue +1 -0
- package/src/components/PageRender.vue +2 -0
- package/src/components/builders/Links.vue +1 -1
- package/src/components/helpers/pageBuilderFactory.js +1 -1
- package/src/components/presenters/modules/AccordionPricing.vue +72 -0
- package/src/components/presenters/modules/Paragraph.vue +1 -1
package/dist/page-builder.css
CHANGED
|
@@ -844,6 +844,9 @@ select {
|
|
|
844
844
|
.mb-\[40px\] {
|
|
845
845
|
margin-bottom: 40px;
|
|
846
846
|
}
|
|
847
|
+
.mb-\[48px\] {
|
|
848
|
+
margin-bottom: 48px;
|
|
849
|
+
}
|
|
847
850
|
.mb-\[64px\] {
|
|
848
851
|
margin-bottom: 64px;
|
|
849
852
|
}
|
|
@@ -1325,6 +1328,10 @@ select {
|
|
|
1325
1328
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1326
1329
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1327
1330
|
}
|
|
1331
|
+
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
|
|
1332
|
+
--tw-divide-opacity: 1;
|
|
1333
|
+
border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
|
|
1334
|
+
}
|
|
1328
1335
|
.overflow-auto {
|
|
1329
1336
|
overflow: auto;
|
|
1330
1337
|
}
|
|
@@ -1640,6 +1647,10 @@ select {
|
|
|
1640
1647
|
padding-left: 0px;
|
|
1641
1648
|
padding-right: 0px;
|
|
1642
1649
|
}
|
|
1650
|
+
.px-12 {
|
|
1651
|
+
padding-left: 3rem;
|
|
1652
|
+
padding-right: 3rem;
|
|
1653
|
+
}
|
|
1643
1654
|
.px-2 {
|
|
1644
1655
|
padding-left: 0.5rem;
|
|
1645
1656
|
padding-right: 0.5rem;
|
|
@@ -1825,6 +1836,9 @@ select {
|
|
|
1825
1836
|
.text-\[13px\] {
|
|
1826
1837
|
font-size: 13px;
|
|
1827
1838
|
}
|
|
1839
|
+
.text-\[16px\] {
|
|
1840
|
+
font-size: 16px;
|
|
1841
|
+
}
|
|
1828
1842
|
.text-\[18px\] {
|
|
1829
1843
|
font-size: 18px;
|
|
1830
1844
|
}
|
|
@@ -1837,6 +1851,9 @@ select {
|
|
|
1837
1851
|
.text-\[30px\] {
|
|
1838
1852
|
font-size: 30px;
|
|
1839
1853
|
}
|
|
1854
|
+
.text-\[32px\] {
|
|
1855
|
+
font-size: 32px;
|
|
1856
|
+
}
|
|
1840
1857
|
.text-\[36px\] {
|
|
1841
1858
|
font-size: 36px;
|
|
1842
1859
|
}
|