@dcodegroup-au/page-builder 0.7.6 → 0.7.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 +119 -38
- package/dist/page-builder.es.js +61 -50
- package/dist/page-builder.umd.js +61 -50
- package/package.json +1 -1
- package/src/assets/css/style.css +1 -1
- package/src/components/presenters/components/HeaderPresenter.vue +3 -3
- package/src/components/presenters/components/VerticalTabPresenter.vue +22 -13
- package/src/components/presenters/modules/AccordionPricing.vue +1 -1
- package/src/components/presenters/modules/BulletPoints.vue +1 -1
- package/src/components/presenters/modules/FAQ.vue +1 -1
- package/src/components/presenters/modules/LinkCard.vue +1 -1
- package/src/components/presenters/modules/LinkList.vue +1 -1
- package/src/components/presenters/modules/Paragraph.vue +1 -1
- package/src/components/presenters/modules/Timeline.vue +1 -1
- package/src/components/presenters/modules/TwoColumnsImageContent.vue +1 -1
- package/src/components/presenters/modules/VTabs.vue +1 -1
package/dist/page-builder.css
CHANGED
|
@@ -1051,9 +1051,6 @@ select {
|
|
|
1051
1051
|
.max-h-\[196px\] {
|
|
1052
1052
|
max-height: 196px;
|
|
1053
1053
|
}
|
|
1054
|
-
.max-h-\[200px\] {
|
|
1055
|
-
max-height: 200px;
|
|
1056
|
-
}
|
|
1057
1054
|
.max-h-\[48px\] {
|
|
1058
1055
|
max-height: 48px;
|
|
1059
1056
|
}
|
|
@@ -1483,9 +1480,6 @@ select {
|
|
|
1483
1480
|
.border-b {
|
|
1484
1481
|
border-bottom-width: 1px;
|
|
1485
1482
|
}
|
|
1486
|
-
.border-l-4 {
|
|
1487
|
-
border-left-width: 4px;
|
|
1488
|
-
}
|
|
1489
1483
|
.border-t {
|
|
1490
1484
|
border-top-width: 1px;
|
|
1491
1485
|
}
|
|
@@ -1546,6 +1540,10 @@ select {
|
|
|
1546
1540
|
--tw-border-opacity: 1;
|
|
1547
1541
|
border-color: rgb(148 166 184 / var(--tw-border-opacity, 1));
|
|
1548
1542
|
}
|
|
1543
|
+
.border-navy-25 {
|
|
1544
|
+
--tw-border-opacity: 1;
|
|
1545
|
+
border-color: rgb(239 242 245 / var(--tw-border-opacity, 1));
|
|
1546
|
+
}
|
|
1549
1547
|
.border-orange-200 {
|
|
1550
1548
|
--tw-border-opacity: 1;
|
|
1551
1549
|
border-color: rgb(249 219 175 / var(--tw-border-opacity, 1));
|
|
@@ -1689,9 +1687,6 @@ select {
|
|
|
1689
1687
|
.p-1\.5 {
|
|
1690
1688
|
padding: 0.375rem;
|
|
1691
1689
|
}
|
|
1692
|
-
.p-16 {
|
|
1693
|
-
padding: 4rem;
|
|
1694
|
-
}
|
|
1695
1690
|
.p-2 {
|
|
1696
1691
|
padding: 0.5rem;
|
|
1697
1692
|
}
|
|
@@ -1860,9 +1855,6 @@ select {
|
|
|
1860
1855
|
.pl-3 {
|
|
1861
1856
|
padding-left: 0.75rem;
|
|
1862
1857
|
}
|
|
1863
|
-
.pl-4 {
|
|
1864
|
-
padding-left: 1rem;
|
|
1865
|
-
}
|
|
1866
1858
|
.pl-6 {
|
|
1867
1859
|
padding-left: 1.5rem;
|
|
1868
1860
|
}
|
|
@@ -1936,9 +1928,6 @@ select {
|
|
|
1936
1928
|
.text-\[32px\] {
|
|
1937
1929
|
font-size: 32px;
|
|
1938
1930
|
}
|
|
1939
|
-
.text-\[36px\] {
|
|
1940
|
-
font-size: 36px;
|
|
1941
|
-
}
|
|
1942
1931
|
.text-base {
|
|
1943
1932
|
font-size: 1rem;
|
|
1944
1933
|
line-height: 1.5rem;
|
|
@@ -2805,6 +2794,14 @@ select {
|
|
|
2805
2794
|
|
|
2806
2795
|
@media (min-width: 768px) {
|
|
2807
2796
|
|
|
2797
|
+
.pb-container {
|
|
2798
|
+
padding-left: 4rem;
|
|
2799
|
+
padding-right: 4rem;
|
|
2800
|
+
}
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
@media (min-width: 1024px) {
|
|
2804
|
+
|
|
2808
2805
|
.pb-container {
|
|
2809
2806
|
padding-left: 120px;
|
|
2810
2807
|
padding-right: 120px;
|
|
@@ -3042,17 +3039,55 @@ select {
|
|
|
3042
3039
|
|
|
3043
3040
|
@media not all and (min-width: 640px) {
|
|
3044
3041
|
|
|
3042
|
+
.max-sm\:hidden {
|
|
3043
|
+
display: none;
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
.max-sm\:min-h-\[84px\] {
|
|
3047
|
+
min-height: 84px;
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
.max-sm\:grid-cols-2 {
|
|
3051
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
.max-sm\:grid-cols-\[auto_20px\] {
|
|
3055
|
+
grid-template-columns: auto 20px;
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3045
3058
|
.max-sm\:flex-col {
|
|
3046
3059
|
flex-direction: column;
|
|
3047
3060
|
}
|
|
3048
3061
|
|
|
3062
|
+
.max-sm\:rounded-lg {
|
|
3063
|
+
border-radius: 0.5rem;
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
.max-sm\:bg-white {
|
|
3067
|
+
--tw-bg-opacity: 1;
|
|
3068
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
.max-sm\:p-3 {
|
|
3072
|
+
padding: 0.75rem;
|
|
3073
|
+
}
|
|
3074
|
+
|
|
3049
3075
|
.max-sm\:pb-4 {
|
|
3050
3076
|
padding-bottom: 1rem;
|
|
3051
3077
|
}
|
|
3078
|
+
|
|
3079
|
+
.max-sm\:text-gray-900 {
|
|
3080
|
+
--tw-text-opacity: 1;
|
|
3081
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
3082
|
+
}
|
|
3052
3083
|
}
|
|
3053
3084
|
|
|
3054
3085
|
@media (min-width: 640px) {
|
|
3055
3086
|
|
|
3087
|
+
.sm\:mb-2 {
|
|
3088
|
+
margin-bottom: 0.5rem;
|
|
3089
|
+
}
|
|
3090
|
+
|
|
3056
3091
|
.sm\:mt-14 {
|
|
3057
3092
|
margin-top: 3.5rem;
|
|
3058
3093
|
}
|
|
@@ -3064,6 +3099,10 @@ select {
|
|
|
3064
3099
|
-webkit-line-clamp: 3;
|
|
3065
3100
|
}
|
|
3066
3101
|
|
|
3102
|
+
.sm\:hidden {
|
|
3103
|
+
display: none;
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3067
3106
|
.sm\:h-\[240px\] {
|
|
3068
3107
|
height: 240px;
|
|
3069
3108
|
}
|
|
@@ -3080,6 +3119,14 @@ select {
|
|
|
3080
3119
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3081
3120
|
}
|
|
3082
3121
|
|
|
3122
|
+
.sm\:grid-cols-\[auto_240px\] {
|
|
3123
|
+
grid-template-columns: auto 240px;
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
.sm\:border-l-4 {
|
|
3127
|
+
border-left-width: 4px;
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3083
3130
|
.sm\:p-0 {
|
|
3084
3131
|
padding: 0px;
|
|
3085
3132
|
}
|
|
@@ -3094,9 +3141,33 @@ select {
|
|
|
3094
3141
|
padding-right: 1rem;
|
|
3095
3142
|
}
|
|
3096
3143
|
|
|
3144
|
+
.sm\:py-4 {
|
|
3145
|
+
padding-top: 1rem;
|
|
3146
|
+
padding-bottom: 1rem;
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
.sm\:pl-4 {
|
|
3150
|
+
padding-left: 1rem;
|
|
3151
|
+
}
|
|
3152
|
+
|
|
3097
3153
|
.sm\:pt-10 {
|
|
3098
3154
|
padding-top: 2.5rem;
|
|
3099
3155
|
}
|
|
3156
|
+
|
|
3157
|
+
.sm\:text-3xl {
|
|
3158
|
+
font-size: 1.875rem;
|
|
3159
|
+
line-height: 2.25rem;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
.sm\:text-base {
|
|
3163
|
+
font-size: 1rem;
|
|
3164
|
+
line-height: 1.5rem;
|
|
3165
|
+
}
|
|
3166
|
+
|
|
3167
|
+
.sm\:text-lg {
|
|
3168
|
+
font-size: 1.125rem;
|
|
3169
|
+
line-height: 1.75rem;
|
|
3170
|
+
}
|
|
3100
3171
|
}
|
|
3101
3172
|
|
|
3102
3173
|
@media (min-width: 768px) {
|
|
@@ -3121,14 +3192,6 @@ select {
|
|
|
3121
3192
|
height: 806px;
|
|
3122
3193
|
}
|
|
3123
3194
|
|
|
3124
|
-
.md\:max-h-\[387px\] {
|
|
3125
|
-
max-height: 387px;
|
|
3126
|
-
}
|
|
3127
|
-
|
|
3128
|
-
.md\:w-1\/2 {
|
|
3129
|
-
width: 50%;
|
|
3130
|
-
}
|
|
3131
|
-
|
|
3132
3195
|
.md\:w-3\/4 {
|
|
3133
3196
|
width: 75%;
|
|
3134
3197
|
}
|
|
@@ -3281,6 +3344,10 @@ select {
|
|
|
3281
3344
|
height: 872px;
|
|
3282
3345
|
}
|
|
3283
3346
|
|
|
3347
|
+
.lg\:max-h-\[387px\] {
|
|
3348
|
+
max-height: 387px;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3284
3351
|
.lg\:min-h-\[136px\] {
|
|
3285
3352
|
min-height: 136px;
|
|
3286
3353
|
}
|
|
@@ -3355,6 +3422,10 @@ select {
|
|
|
3355
3422
|
border-bottom-left-radius: 48px;
|
|
3356
3423
|
}
|
|
3357
3424
|
|
|
3425
|
+
.lg\:p-16 {
|
|
3426
|
+
padding: 4rem;
|
|
3427
|
+
}
|
|
3428
|
+
|
|
3358
3429
|
.lg\:p-8 {
|
|
3359
3430
|
padding: 2rem;
|
|
3360
3431
|
}
|
|
@@ -3385,6 +3456,11 @@ select {
|
|
|
3385
3456
|
padding-top: 164px;
|
|
3386
3457
|
}
|
|
3387
3458
|
|
|
3459
|
+
.lg\:text-4xl {
|
|
3460
|
+
font-size: 2.25rem;
|
|
3461
|
+
line-height: 2.5rem;
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3388
3464
|
.lg\:text-\[48px\] {
|
|
3389
3465
|
font-size: 48px;
|
|
3390
3466
|
}
|
|
@@ -3394,6 +3470,11 @@ select {
|
|
|
3394
3470
|
line-height: 1.75rem;
|
|
3395
3471
|
}
|
|
3396
3472
|
|
|
3473
|
+
.lg\:text-xl {
|
|
3474
|
+
font-size: 1.25rem;
|
|
3475
|
+
line-height: 1.75rem;
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3397
3478
|
.lg\:leading-\[60px\] {
|
|
3398
3479
|
line-height: 60px;
|
|
3399
3480
|
}
|
|
@@ -3786,12 +3867,12 @@ select {
|
|
|
3786
3867
|
}
|
|
3787
3868
|
}
|
|
3788
3869
|
|
|
3789
|
-
.fade-enter-active[data-v-
|
|
3870
|
+
.fade-enter-active[data-v-85226fd9], .fade-leave-active[data-v-85226fd9] {
|
|
3790
3871
|
transition-property: opacity;
|
|
3791
3872
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3792
3873
|
transition-duration: 300ms
|
|
3793
3874
|
}
|
|
3794
|
-
.fade-enter-from[data-v-
|
|
3875
|
+
.fade-enter-from[data-v-85226fd9], .fade-leave-to[data-v-85226fd9] {
|
|
3795
3876
|
opacity: 0
|
|
3796
3877
|
}
|
|
3797
3878
|
|
|
@@ -3811,58 +3892,58 @@ select {
|
|
|
3811
3892
|
}
|
|
3812
3893
|
|
|
3813
3894
|
@media (min-width: 640px) {
|
|
3814
|
-
.link-card__columns--2[data-v-
|
|
3895
|
+
.link-card__columns--2[data-v-af7a1782] {
|
|
3815
3896
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3816
3897
|
}
|
|
3817
3898
|
}
|
|
3818
3899
|
@media (min-width: 768px) {
|
|
3819
|
-
.link-card__columns--3[data-v-
|
|
3900
|
+
.link-card__columns--3[data-v-af7a1782] {
|
|
3820
3901
|
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
3821
3902
|
}
|
|
3822
3903
|
}
|
|
3823
3904
|
@media (min-width: 640px) {
|
|
3824
|
-
.link-card__columns--4[data-v-
|
|
3905
|
+
.link-card__columns--4[data-v-af7a1782] {
|
|
3825
3906
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3826
3907
|
}
|
|
3827
3908
|
}
|
|
3828
3909
|
@media (min-width: 1024px) {
|
|
3829
|
-
.link-card__columns--4[data-v-
|
|
3910
|
+
.link-card__columns--4[data-v-af7a1782] {
|
|
3830
3911
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
3831
3912
|
}
|
|
3832
3913
|
}
|
|
3833
|
-
.link-card__columns--with-featured-image[data-v-
|
|
3914
|
+
.link-card__columns--with-featured-image[data-v-af7a1782] {
|
|
3834
3915
|
height: -moz-fit-content;
|
|
3835
3916
|
height: fit-content
|
|
3836
3917
|
}
|
|
3837
|
-
.link-card__columns--with-featured-image[data-v-
|
|
3918
|
+
.link-card__columns--with-featured-image[data-v-af7a1782] {
|
|
3838
3919
|
flex-direction: column
|
|
3839
3920
|
}
|
|
3840
|
-
.link-card__columns--with-featured-image.link-card__columns--2[data-v-
|
|
3921
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-af7a1782] {
|
|
3841
3922
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3842
3923
|
}
|
|
3843
3924
|
@media (min-width: 1024px) {
|
|
3844
|
-
.link-card__columns--with-featured-image.link-card__columns--2[data-v-
|
|
3925
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-af7a1782] {
|
|
3845
3926
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3846
3927
|
}
|
|
3847
3928
|
}
|
|
3848
|
-
.link-card__columns--with-featured-image.link-card__columns--3[data-v-
|
|
3929
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-af7a1782] {
|
|
3849
3930
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3850
3931
|
}
|
|
3851
3932
|
@media (min-width: 1280px) {
|
|
3852
|
-
.link-card__columns--with-featured-image.link-card__columns--3[data-v-
|
|
3933
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-af7a1782] {
|
|
3853
3934
|
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
3854
3935
|
}
|
|
3855
3936
|
}
|
|
3856
|
-
.link-card__columns--with-featured-image.link-card__columns--4[data-v-
|
|
3937
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-af7a1782] {
|
|
3857
3938
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3858
3939
|
}
|
|
3859
3940
|
@media (min-width: 1024px) {
|
|
3860
|
-
.link-card__columns--with-featured-image.link-card__columns--4[data-v-
|
|
3941
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-af7a1782] {
|
|
3861
3942
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3862
3943
|
}
|
|
3863
3944
|
}
|
|
3864
3945
|
@media (min-width: 1280px) {
|
|
3865
|
-
.link-card__columns--with-featured-image.link-card__columns--4[data-v-
|
|
3946
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-af7a1782] {
|
|
3866
3947
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
3867
3948
|
}
|
|
3868
3949
|
}
|
package/dist/page-builder.es.js
CHANGED
|
@@ -446,7 +446,7 @@ const _hoisted_6$r = { class: "flex flex-col gap-3" };
|
|
|
446
446
|
const _hoisted_7$q = { class: "flex justify-between" };
|
|
447
447
|
const _hoisted_8$o = { class: "flex flex-col gap-1" };
|
|
448
448
|
const _hoisted_9$n = { class: "font-semibold text-gray-900" };
|
|
449
|
-
const _hoisted_10$
|
|
449
|
+
const _hoisted_10$j = { class: "text-sm text-gray-600" };
|
|
450
450
|
const _hoisted_11$g = ["disabled"];
|
|
451
451
|
const _hoisted_12$d = { class: "flex flex-col gap-3" };
|
|
452
452
|
const _hoisted_13$b = ["onClick"];
|
|
@@ -512,7 +512,7 @@ const _sfc_main$Q = {
|
|
|
512
512
|
createElementVNode("div", _hoisted_7$q, [
|
|
513
513
|
createElementVNode("div", _hoisted_8$o, [
|
|
514
514
|
createElementVNode("div", _hoisted_9$n, toDisplayString(unref(parseName)(unref(type))), 1),
|
|
515
|
-
createElementVNode("div", _hoisted_10$
|
|
515
|
+
createElementVNode("div", _hoisted_10$j, "This " + toDisplayString(unref(singularize)(unref(type))) + " can contain up to " + toDisplayString(dataRef.value.max_items) + " " + toDisplayString(unref(parseName)(unref(type), false)), 1)
|
|
516
516
|
]),
|
|
517
517
|
createElementVNode("div", null, [
|
|
518
518
|
createElementVNode("button", {
|
|
@@ -11699,7 +11699,7 @@ const _hoisted_6$q = {
|
|
|
11699
11699
|
const _hoisted_7$p = { class: "file-upload-preview" };
|
|
11700
11700
|
const _hoisted_8$n = ["src", "title"];
|
|
11701
11701
|
const _hoisted_9$m = ["href"];
|
|
11702
|
-
const _hoisted_10$
|
|
11702
|
+
const _hoisted_10$i = { class: "file-upload-title" };
|
|
11703
11703
|
const _hoisted_11$f = { class: "file-upload-file-remove" };
|
|
11704
11704
|
const _hoisted_12$c = { class: "absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 p-4 rounded-lg flex flex-col justify-center items-center w-full" };
|
|
11705
11705
|
const _sfc_main$O = {
|
|
@@ -11805,7 +11805,7 @@ const _sfc_main$O = {
|
|
|
11805
11805
|
target: "_blank",
|
|
11806
11806
|
class: "link"
|
|
11807
11807
|
}, [
|
|
11808
|
-
createElementVNode("div", _hoisted_10$
|
|
11808
|
+
createElementVNode("div", _hoisted_10$i, toDisplayString(file.value.file_name), 1)
|
|
11809
11809
|
], 8, _hoisted_9$m),
|
|
11810
11810
|
createElementVNode("a", _hoisted_11$f, [
|
|
11811
11811
|
createElementVNode("i", {
|
|
@@ -33924,7 +33924,7 @@ const _hoisted_6$o = { class: "text-sm font-medium text-gray-900" };
|
|
|
33924
33924
|
const _hoisted_7$n = { key: 0 };
|
|
33925
33925
|
const _hoisted_8$l = { key: 1 };
|
|
33926
33926
|
const _hoisted_9$l = { key: 2 };
|
|
33927
|
-
const _hoisted_10$
|
|
33927
|
+
const _hoisted_10$h = { class: "flex max-h-[196px] flex-wrap gap-1.5 overflow-y-auto" };
|
|
33928
33928
|
const __default__ = {
|
|
33929
33929
|
directives: {
|
|
33930
33930
|
clickOutside: useClickOutside
|
|
@@ -34004,7 +34004,7 @@ const _sfc_main$G = /* @__PURE__ */ Object.assign(__default__, {
|
|
|
34004
34004
|
createElementVNode("p", _hoisted_6$o, [
|
|
34005
34005
|
icons2.value.length > 0 && search.value.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_7$n, " Search result ")) : icons2.value.length < 1 && search.value.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_8$l, " No search result ")) : search.value.length < 1 && icons2.value.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_9$l, " Frequently used icons ")) : createCommentVNode("", true)
|
|
34006
34006
|
]),
|
|
34007
|
-
createElementVNode("div", _hoisted_10$
|
|
34007
|
+
createElementVNode("div", _hoisted_10$h, [
|
|
34008
34008
|
(openBlock(true), createElementBlock(Fragment, null, renderList(icons2.value, (icon) => {
|
|
34009
34009
|
return openBlock(), createBlock(_sfc_main$H, {
|
|
34010
34010
|
class: "cursor-pointer rounded p-1 hover:bg-gray-100",
|
|
@@ -45222,7 +45222,7 @@ const _hoisted_6$n = { class: "text-sm text-gray-600 mt-1" };
|
|
|
45222
45222
|
const _hoisted_7$m = { class: "flex flex-col gap-3" };
|
|
45223
45223
|
const _hoisted_8$k = { class: "flex items-center justify-between" };
|
|
45224
45224
|
const _hoisted_9$k = { class: "text-lg font-semibold text-gray-900" };
|
|
45225
|
-
const _hoisted_10$
|
|
45225
|
+
const _hoisted_10$g = { class: "relative flex items-end" };
|
|
45226
45226
|
const _hoisted_11$e = { class: "flex flex-col gap-6" };
|
|
45227
45227
|
const _hoisted_12$b = {
|
|
45228
45228
|
key: 0,
|
|
@@ -45357,7 +45357,7 @@ const _sfc_main$C = {
|
|
|
45357
45357
|
}, [
|
|
45358
45358
|
createElementVNode("div", _hoisted_8$k, [
|
|
45359
45359
|
createElementVNode("div", _hoisted_9$k, " Item #" + toDisplayString(index + 1), 1),
|
|
45360
|
-
createElementVNode("div", _hoisted_10$
|
|
45360
|
+
createElementVNode("div", _hoisted_10$g, [
|
|
45361
45361
|
createVNode(_sfc_main$S, {
|
|
45362
45362
|
onRemoveItem: ($event) => handleDeleteItem(index)
|
|
45363
45363
|
}, null, 8, ["onRemoveItem"])
|
|
@@ -45477,7 +45477,7 @@ const _hoisted_6$m = { class: "flex flex-col gap-3" };
|
|
|
45477
45477
|
const _hoisted_7$l = { class: "flex items-center justify-between" };
|
|
45478
45478
|
const _hoisted_8$j = { class: "text-lg font-semibold text-gray-900" };
|
|
45479
45479
|
const _hoisted_9$j = { class: "relative flex items-end" };
|
|
45480
|
-
const _hoisted_10$
|
|
45480
|
+
const _hoisted_10$f = { class: "flex flex-col gap-6" };
|
|
45481
45481
|
const _hoisted_11$d = { class: "flex flex-col gap-1.5" };
|
|
45482
45482
|
const _hoisted_12$a = ["onUpdate:modelValue"];
|
|
45483
45483
|
const _sfc_main$B = {
|
|
@@ -45560,7 +45560,7 @@ const _sfc_main$B = {
|
|
|
45560
45560
|
}, null, 8, ["onRemoveItem"])
|
|
45561
45561
|
])
|
|
45562
45562
|
]),
|
|
45563
|
-
createElementVNode("div", _hoisted_10$
|
|
45563
|
+
createElementVNode("div", _hoisted_10$f, [
|
|
45564
45564
|
createElementVNode("div", _hoisted_11$d, [
|
|
45565
45565
|
createVNode(unref(VFileUpload), {
|
|
45566
45566
|
name: "image",
|
|
@@ -45765,7 +45765,7 @@ const _hoisted_6$k = { class: "flex flex-col gap-3" };
|
|
|
45765
45765
|
const _hoisted_7$j = { class: "flex items-center justify-between" };
|
|
45766
45766
|
const _hoisted_8$i = { class: "text-lg font-semibold text-gray-900" };
|
|
45767
45767
|
const _hoisted_9$i = { class: "relative flex items-end" };
|
|
45768
|
-
const _hoisted_10$
|
|
45768
|
+
const _hoisted_10$e = { class: "flex flex-col gap-6" };
|
|
45769
45769
|
const _hoisted_11$c = { class: "flex flex-col gap-1.5" };
|
|
45770
45770
|
const _sfc_main$y = {
|
|
45771
45771
|
__name: "VideoGrid",
|
|
@@ -45841,7 +45841,7 @@ const _sfc_main$y = {
|
|
|
45841
45841
|
}, null, 8, ["onRemoveItem"])
|
|
45842
45842
|
])
|
|
45843
45843
|
]),
|
|
45844
|
-
createElementVNode("div", _hoisted_10$
|
|
45844
|
+
createElementVNode("div", _hoisted_10$e, [
|
|
45845
45845
|
createElementVNode("div", _hoisted_11$c, [
|
|
45846
45846
|
createVNode(unref(VFileUpload), {
|
|
45847
45847
|
name: "image",
|
|
@@ -46162,7 +46162,7 @@ const _hoisted_9$h = {
|
|
|
46162
46162
|
key: 0,
|
|
46163
46163
|
class: "flex flex-col gap-2"
|
|
46164
46164
|
};
|
|
46165
|
-
const _hoisted_10$
|
|
46165
|
+
const _hoisted_10$d = ["onClick"];
|
|
46166
46166
|
const _hoisted_11$b = { class: "flex flex-col" };
|
|
46167
46167
|
const _hoisted_12$9 = { class: "text-sm font-medium text-gray-900" };
|
|
46168
46168
|
const _hoisted_13$9 = { class: "flex items-center justify-between gap-3 px-[10px]" };
|
|
@@ -46305,7 +46305,7 @@ const _sfc_main$t = {
|
|
|
46305
46305
|
createElementVNode("div", _hoisted_13$9, [
|
|
46306
46306
|
createVNode(unref(ChevronRight), { class: "h-5 w-5" })
|
|
46307
46307
|
])
|
|
46308
|
-
], 10, _hoisted_10$
|
|
46308
|
+
], 10, _hoisted_10$d);
|
|
46309
46309
|
}), 256))
|
|
46310
46310
|
])) : createCommentVNode("", true)
|
|
46311
46311
|
]);
|
|
@@ -47835,7 +47835,7 @@ const _hoisted_6$i = { class: "text-[30px] lg:text-[48px] font-semibold text-whi
|
|
|
47835
47835
|
const _hoisted_7$h = { class: "max-md:flex-1" };
|
|
47836
47836
|
const _hoisted_8$g = ["innerHTML"];
|
|
47837
47837
|
const _hoisted_9$g = { class: "flex gap-3 md:mt-8 max-sm:flex-col" };
|
|
47838
|
-
const _hoisted_10$
|
|
47838
|
+
const _hoisted_10$c = ["href", "target"];
|
|
47839
47839
|
const _hoisted_11$a = ["href", "target"];
|
|
47840
47840
|
const _hoisted_12$8 = ["src"];
|
|
47841
47841
|
const _hoisted_13$8 = {
|
|
@@ -47895,7 +47895,7 @@ const _sfc_main$s = {
|
|
|
47895
47895
|
target: slide.secondary_button.open_in_new_tab ? "_blank" : ""
|
|
47896
47896
|
}, [
|
|
47897
47897
|
createElementVNode("span", null, toDisplayString(slide.secondary_button.label), 1)
|
|
47898
|
-
], 8, _hoisted_10$
|
|
47898
|
+
], 8, _hoisted_10$c)) : createCommentVNode("", true),
|
|
47899
47899
|
slide.primary_button.show ? (openBlock(), createElementBlock("a", {
|
|
47900
47900
|
key: 1,
|
|
47901
47901
|
class: "flex items-center gap-2 text-navy-800 bg-white text-base font-semibold border border-white px-6 py-2 rounded-full hover:bg-navy-50",
|
|
@@ -48014,15 +48014,15 @@ const _sfc_main$p = {
|
|
|
48014
48014
|
return (_ctx, _cache) => {
|
|
48015
48015
|
var _a, _b, _c, _d, _e, _f, _g;
|
|
48016
48016
|
return openBlock(), createElementBlock("div", {
|
|
48017
|
-
class: normalizeClass(["flex flex-col sm:px-0 px-4", { "items-center": (_a = component.value) == null ? void 0 : _a.center }])
|
|
48017
|
+
class: normalizeClass(["flex flex-col gap-4 sm:px-0 px-4", { "items-center": (_a = component.value) == null ? void 0 : _a.center }])
|
|
48018
48018
|
}, [
|
|
48019
48019
|
((_b = component.value) == null ? void 0 : _b.title) ? (openBlock(), createElementBlock("p", {
|
|
48020
48020
|
key: 0,
|
|
48021
|
-
class: normalizeClass(["
|
|
48021
|
+
class: normalizeClass(["text-2xl sm:text-3xl lg:text-4xl font-semibold text-white", { "!text-gray-900": (_c = component.value) == null ? void 0 : _c.dark }])
|
|
48022
48022
|
}, toDisplayString((_d = component.value) == null ? void 0 : _d.title), 3)) : createCommentVNode("", true),
|
|
48023
48023
|
((_e = component.value) == null ? void 0 : _e.supporting_text) ? (openBlock(), createElementBlock("p", {
|
|
48024
48024
|
key: 1,
|
|
48025
|
-
class: normalizeClass(["text-navy-25 text-
|
|
48025
|
+
class: normalizeClass(["text-navy-25 text-sm sm:text-base lg:text-xl", { "!text-gray-600": (_f = component.value) == null ? void 0 : _f.dark }])
|
|
48026
48026
|
}, toDisplayString((_g = component.value) == null ? void 0 : _g.supporting_text), 3)) : createCommentVNode("", true)
|
|
48027
48027
|
], 2);
|
|
48028
48028
|
};
|
|
@@ -48118,20 +48118,21 @@ const _sfc_main$o = {
|
|
|
48118
48118
|
};
|
|
48119
48119
|
}
|
|
48120
48120
|
};
|
|
48121
|
-
const _hoisted_1$G = { class: "
|
|
48122
|
-
const _hoisted_2$k = { class: "
|
|
48121
|
+
const _hoisted_1$G = { class: "grid sm:grid-cols-[auto_240px] lg:grid-cols-2 justify-center gap-4 items-stretch mt-6 text-left" };
|
|
48122
|
+
const _hoisted_2$k = { class: "grid max-sm:grid-cols-2 gap-4" };
|
|
48123
48123
|
const _hoisted_3$i = ["onClick"];
|
|
48124
|
-
const _hoisted_4$i = { class: "py-4 pl-4 md:pl-6" };
|
|
48125
|
-
const _hoisted_5$h = ["
|
|
48126
|
-
const _hoisted_6$h =
|
|
48127
|
-
const _hoisted_7$g =
|
|
48128
|
-
const _hoisted_8$f =
|
|
48124
|
+
const _hoisted_4$i = { class: "sm:py-4 sm:pl-4 md:pl-6" };
|
|
48125
|
+
const _hoisted_5$h = ["target", "href"];
|
|
48126
|
+
const _hoisted_6$h = ["innerHTML"];
|
|
48127
|
+
const _hoisted_7$g = { class: "max-sm:hidden bg-transparent flex flex-col items-center" };
|
|
48128
|
+
const _hoisted_8$f = ["src"];
|
|
48129
|
+
const _hoisted_9$f = {
|
|
48129
48130
|
key: 1,
|
|
48130
|
-
class: "rounded-[20px] md:rounded-[40px] object-contain
|
|
48131
|
+
class: "rounded-[20px] md:rounded-[40px] object-contain lg:max-h-[387px] w-full",
|
|
48131
48132
|
src: _imports_0,
|
|
48132
48133
|
alt: "No Image Available"
|
|
48133
48134
|
};
|
|
48134
|
-
const
|
|
48135
|
+
const _hoisted_10$b = ["target", "href"];
|
|
48135
48136
|
const _sfc_main$n = {
|
|
48136
48137
|
__name: "VerticalTabPresenter",
|
|
48137
48138
|
props: {
|
|
@@ -48157,27 +48158,37 @@ const _sfc_main$n = {
|
|
|
48157
48158
|
return openBlock(), createElementBlock("div", _hoisted_1$G, [
|
|
48158
48159
|
createElementVNode("div", _hoisted_2$k, [
|
|
48159
48160
|
(openBlock(true), createElementBlock(Fragment, null, renderList(publicTabs.value, (item) => {
|
|
48161
|
+
var _a, _b, _c, _d, _e, _f;
|
|
48160
48162
|
return openBlock(), createElementBlock("div", {
|
|
48161
48163
|
key: item.title
|
|
48162
48164
|
}, [
|
|
48163
48165
|
createElementVNode("div", {
|
|
48164
|
-
class: normalizeClass(["flex-col flex gap-1.5 cursor-pointer
|
|
48165
|
-
onClick:
|
|
48166
|
+
class: normalizeClass(["flex-col flex gap-1.5 cursor-pointer group", { "sm:border-l-4 border-brand-600": selectedItem.value === item, "sm:border-l-4 border-navy-25": selectedItem.value !== item }]),
|
|
48167
|
+
onClick: ($event) => selectItem(item)
|
|
48166
48168
|
}, [
|
|
48167
48169
|
createElementVNode("div", _hoisted_4$i, [
|
|
48170
|
+
createElementVNode("div", {
|
|
48171
|
+
class: normalizeClass([{ "text-gray-900": selectedItem.value === item, "text-gray-600": selectedItem.value !== item }, "max-sm:text-gray-900 max-sm:bg-white max-sm:p-3 max-sm:rounded-lg max-sm:min-h-[84px] text-sm relative sm:text-lg md:text-xl font-semibold sm:mb-2 group-hover:text-gray-900 grid max-sm:grid-cols-[auto_20px] gap-2"])
|
|
48172
|
+
}, [
|
|
48173
|
+
createTextVNode(toDisplayString(item.title) + " ", 1),
|
|
48174
|
+
createVNode(unref(ArrowUpRight), { class: "sm:hidden" }),
|
|
48175
|
+
((_b = (_a = selectedItem.value) == null ? void 0 : _a.primary_button) == null ? void 0 : _b.show) ? (openBlock(), createElementBlock("a", {
|
|
48176
|
+
key: 0,
|
|
48177
|
+
target: ((_d = (_c = selectedItem.value) == null ? void 0 : _c.primary_button) == null ? void 0 : _d.open_in_new_tab) ? "_blank" : "",
|
|
48178
|
+
href: ((_f = (_e = selectedItem.value) == null ? void 0 : _e.primary_button) == null ? void 0 : _f.url.startsWith("http")) ? selectedItem.value.primary_button.url : `//${selectedItem.value.primary_button.url}`,
|
|
48179
|
+
class: "absolute inset-0 sm:hidden z-10"
|
|
48180
|
+
}, null, 8, _hoisted_5$h)) : createCommentVNode("", true)
|
|
48181
|
+
], 2),
|
|
48168
48182
|
createElementVNode("p", {
|
|
48169
|
-
class: normalizeClass([{ "text-gray-
|
|
48170
|
-
}, toDisplayString(item.title), 3),
|
|
48171
|
-
createElementVNode("p", {
|
|
48172
|
-
class: normalizeClass([{ "text-gray-700": selectedItem.value === item, "text-gray-400": selectedItem.value !== item }, "text-sm md:text-md font-normal group-hover:text-gray-700"]),
|
|
48183
|
+
class: normalizeClass([{ "text-gray-700": selectedItem.value === item, "text-gray-400": selectedItem.value !== item }, "max-sm:hidden text-sm md:text-md font-normal group-hover:text-gray-700"]),
|
|
48173
48184
|
innerHTML: item.description
|
|
48174
|
-
}, null, 10,
|
|
48185
|
+
}, null, 10, _hoisted_6$h)
|
|
48175
48186
|
])
|
|
48176
48187
|
], 10, _hoisted_3$i)
|
|
48177
48188
|
]);
|
|
48178
48189
|
}), 128))
|
|
48179
48190
|
]),
|
|
48180
|
-
createElementVNode("div",
|
|
48191
|
+
createElementVNode("div", _hoisted_7$g, [
|
|
48181
48192
|
createVNode(Transition, {
|
|
48182
48193
|
name: "fade",
|
|
48183
48194
|
mode: "out-in"
|
|
@@ -48193,8 +48204,8 @@ const _sfc_main$n = {
|
|
|
48193
48204
|
key: 0,
|
|
48194
48205
|
src: selectedItem.value.featured_image,
|
|
48195
48206
|
alt: "Selected Item Image",
|
|
48196
|
-
class: "rounded-[20px] md:rounded-[40px] object-contain
|
|
48197
|
-
}, null, 8,
|
|
48207
|
+
class: "rounded-[20px] md:rounded-[40px] object-contain lg:max-h-[387px] w-full"
|
|
48208
|
+
}, null, 8, _hoisted_8$f)) : (openBlock(), createElementBlock("img", _hoisted_9$f)),
|
|
48198
48209
|
((_d = (_c = selectedItem.value) == null ? void 0 : _c.primary_button) == null ? void 0 : _d.show) ? (openBlock(), createElementBlock("a", {
|
|
48199
48210
|
key: 2,
|
|
48200
48211
|
class: "text-sm md:text-md font-semibold text-brand-600 flex items-center gap-2 mt-4",
|
|
@@ -48203,7 +48214,7 @@ const _sfc_main$n = {
|
|
|
48203
48214
|
}, [
|
|
48204
48215
|
createTextVNode(toDisplayString(((_j = (_i = selectedItem.value) == null ? void 0 : _i.primary_button) == null ? void 0 : _j.label) ?? "N/A") + " ", 1),
|
|
48205
48216
|
createVNode(unref(ArrowUpRight), { class: "w-4 h-4 md:w-5 md:h-5" })
|
|
48206
|
-
], 8,
|
|
48217
|
+
], 8, _hoisted_10$b)) : createCommentVNode("", true)
|
|
48207
48218
|
]))
|
|
48208
48219
|
];
|
|
48209
48220
|
}),
|
|
@@ -48214,9 +48225,9 @@ const _sfc_main$n = {
|
|
|
48214
48225
|
};
|
|
48215
48226
|
}
|
|
48216
48227
|
};
|
|
48217
|
-
const VVerticalTabPresenter = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-
|
|
48228
|
+
const VVerticalTabPresenter = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-85226fd9"]]);
|
|
48218
48229
|
const _hoisted_1$F = { class: "pb-container" };
|
|
48219
|
-
const _hoisted_2$j = { class: "
|
|
48230
|
+
const _hoisted_2$j = { class: "bg-navy-25 rounded-3xl md:rounded-[48px] py-6 px-4 lg:p-16 text-center" };
|
|
48220
48231
|
const _sfc_main$m = {
|
|
48221
48232
|
__name: "VTabs",
|
|
48222
48233
|
props: {
|
|
@@ -48928,7 +48939,7 @@ const _sfc_main$f = {
|
|
|
48928
48939
|
const _hoisted_1$r = { class: "overflow-hidden mt-4" };
|
|
48929
48940
|
const _hoisted_2$d = {
|
|
48930
48941
|
key: 0,
|
|
48931
|
-
class: "text-
|
|
48942
|
+
class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900"
|
|
48932
48943
|
};
|
|
48933
48944
|
const _hoisted_3$d = { class: "all-unset ql-editor" };
|
|
48934
48945
|
const _hoisted_4$d = ["innerHTML"];
|
|
@@ -49057,7 +49068,7 @@ const _hoisted_8$b = {
|
|
|
49057
49068
|
key: 1,
|
|
49058
49069
|
class: "my-[44px]"
|
|
49059
49070
|
};
|
|
49060
|
-
const _hoisted_9$b = { class: "text-
|
|
49071
|
+
const _hoisted_9$b = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49061
49072
|
const _hoisted_10$8 = ["innerHTML"];
|
|
49062
49073
|
const _hoisted_11$7 = {
|
|
49063
49074
|
key: 0,
|
|
@@ -49218,7 +49229,7 @@ const _hoisted_3$b = {
|
|
|
49218
49229
|
key: 0,
|
|
49219
49230
|
class: "rounded-xl px-[40px] text-center mb-1 max-w-[1280px] mx-auto"
|
|
49220
49231
|
};
|
|
49221
|
-
const _hoisted_4$b = { class: "text-
|
|
49232
|
+
const _hoisted_4$b = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49222
49233
|
const _hoisted_5$b = ["innerHTML"];
|
|
49223
49234
|
const _hoisted_6$b = { key: 1 };
|
|
49224
49235
|
const _hoisted_7$b = { class: "mt-4" };
|
|
@@ -49306,7 +49317,7 @@ const _hoisted_2$a = {
|
|
|
49306
49317
|
key: 0,
|
|
49307
49318
|
class: "rounded-xl px-[40px] text-center mb-6 max-w-[1280px] mx-auto"
|
|
49308
49319
|
};
|
|
49309
|
-
const _hoisted_3$a = { class: "text-
|
|
49320
|
+
const _hoisted_3$a = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49310
49321
|
const _hoisted_4$a = ["innerHTML"];
|
|
49311
49322
|
const _hoisted_5$a = ["src"];
|
|
49312
49323
|
const _hoisted_6$a = {
|
|
@@ -49411,7 +49422,7 @@ const _sfc_main$b = {
|
|
|
49411
49422
|
};
|
|
49412
49423
|
}
|
|
49413
49424
|
};
|
|
49414
|
-
const LinkCard = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-
|
|
49425
|
+
const LinkCard = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-af7a1782"]]);
|
|
49415
49426
|
const _hoisted_1$n = {
|
|
49416
49427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
49417
49428
|
fill: "none",
|
|
@@ -49435,7 +49446,7 @@ const _hoisted_3$9 = {
|
|
|
49435
49446
|
key: 0,
|
|
49436
49447
|
class: "rounded-xl px-[40px] text-center mb-6 max-w-[1280px] mx-auto"
|
|
49437
49448
|
};
|
|
49438
|
-
const _hoisted_4$9 = { class: "text-
|
|
49449
|
+
const _hoisted_4$9 = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49439
49450
|
const _hoisted_5$9 = ["innerHTML"];
|
|
49440
49451
|
const _hoisted_6$9 = ["src"];
|
|
49441
49452
|
const _hoisted_7$9 = {
|
|
@@ -49536,7 +49547,7 @@ const _hoisted_3$8 = {
|
|
|
49536
49547
|
key: 0,
|
|
49537
49548
|
class: "w-[48px] h-[48px] bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center"
|
|
49538
49549
|
};
|
|
49539
|
-
const _hoisted_4$8 = { class: "text-
|
|
49550
|
+
const _hoisted_4$8 = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49540
49551
|
const _hoisted_5$8 = ["innerHTML"];
|
|
49541
49552
|
const _hoisted_6$8 = ["textContent"];
|
|
49542
49553
|
const _hoisted_7$8 = { class: "flex" };
|
|
@@ -49885,7 +49896,7 @@ const _hoisted_2$5 = {
|
|
|
49885
49896
|
key: 0,
|
|
49886
49897
|
class: "px-[40px] text-center mb-6 mx-auto"
|
|
49887
49898
|
};
|
|
49888
|
-
const _hoisted_3$5 = { class: "text-
|
|
49899
|
+
const _hoisted_3$5 = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49889
49900
|
const _hoisted_4$5 = ["innerHTML"];
|
|
49890
49901
|
const _hoisted_5$5 = {
|
|
49891
49902
|
key: 1,
|
|
@@ -50018,7 +50029,7 @@ const _sfc_main$5 = {
|
|
|
50018
50029
|
createElementVNode("div", _hoisted_2$4, [
|
|
50019
50030
|
createElementVNode("div", null, [
|
|
50020
50031
|
createElementVNode("p", {
|
|
50021
|
-
class: "text-
|
|
50032
|
+
class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900 mb-[48px]",
|
|
50022
50033
|
textContent: toDisplayString(pricingComponent.value.title)
|
|
50023
50034
|
}, null, 8, _hoisted_3$4),
|
|
50024
50035
|
createElementVNode("div", _hoisted_4$4, [
|
package/dist/page-builder.umd.js
CHANGED
|
@@ -449,7 +449,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
449
449
|
const _hoisted_7$q = { class: "flex justify-between" };
|
|
450
450
|
const _hoisted_8$o = { class: "flex flex-col gap-1" };
|
|
451
451
|
const _hoisted_9$n = { class: "font-semibold text-gray-900" };
|
|
452
|
-
const _hoisted_10$
|
|
452
|
+
const _hoisted_10$j = { class: "text-sm text-gray-600" };
|
|
453
453
|
const _hoisted_11$g = ["disabled"];
|
|
454
454
|
const _hoisted_12$d = { class: "flex flex-col gap-3" };
|
|
455
455
|
const _hoisted_13$b = ["onClick"];
|
|
@@ -515,7 +515,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
515
515
|
vue.createElementVNode("div", _hoisted_7$q, [
|
|
516
516
|
vue.createElementVNode("div", _hoisted_8$o, [
|
|
517
517
|
vue.createElementVNode("div", _hoisted_9$n, vue.toDisplayString(vue.unref(parseName)(vue.unref(type))), 1),
|
|
518
|
-
vue.createElementVNode("div", _hoisted_10$
|
|
518
|
+
vue.createElementVNode("div", _hoisted_10$j, "This " + vue.toDisplayString(vue.unref(singularize)(vue.unref(type))) + " can contain up to " + vue.toDisplayString(dataRef.value.max_items) + " " + vue.toDisplayString(vue.unref(parseName)(vue.unref(type), false)), 1)
|
|
519
519
|
]),
|
|
520
520
|
vue.createElementVNode("div", null, [
|
|
521
521
|
vue.createElementVNode("button", {
|
|
@@ -11702,7 +11702,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
11702
11702
|
const _hoisted_7$p = { class: "file-upload-preview" };
|
|
11703
11703
|
const _hoisted_8$n = ["src", "title"];
|
|
11704
11704
|
const _hoisted_9$m = ["href"];
|
|
11705
|
-
const _hoisted_10$
|
|
11705
|
+
const _hoisted_10$i = { class: "file-upload-title" };
|
|
11706
11706
|
const _hoisted_11$f = { class: "file-upload-file-remove" };
|
|
11707
11707
|
const _hoisted_12$c = { class: "absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 p-4 rounded-lg flex flex-col justify-center items-center w-full" };
|
|
11708
11708
|
const _sfc_main$O = {
|
|
@@ -11808,7 +11808,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
11808
11808
|
target: "_blank",
|
|
11809
11809
|
class: "link"
|
|
11810
11810
|
}, [
|
|
11811
|
-
vue.createElementVNode("div", _hoisted_10$
|
|
11811
|
+
vue.createElementVNode("div", _hoisted_10$i, vue.toDisplayString(file.value.file_name), 1)
|
|
11812
11812
|
], 8, _hoisted_9$m),
|
|
11813
11813
|
vue.createElementVNode("a", _hoisted_11$f, [
|
|
11814
11814
|
vue.createElementVNode("i", {
|
|
@@ -33927,7 +33927,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
33927
33927
|
const _hoisted_7$n = { key: 0 };
|
|
33928
33928
|
const _hoisted_8$l = { key: 1 };
|
|
33929
33929
|
const _hoisted_9$l = { key: 2 };
|
|
33930
|
-
const _hoisted_10$
|
|
33930
|
+
const _hoisted_10$h = { class: "flex max-h-[196px] flex-wrap gap-1.5 overflow-y-auto" };
|
|
33931
33931
|
const __default__ = {
|
|
33932
33932
|
directives: {
|
|
33933
33933
|
clickOutside: useClickOutside
|
|
@@ -34007,7 +34007,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
34007
34007
|
vue.createElementVNode("p", _hoisted_6$o, [
|
|
34008
34008
|
icons2.value.length > 0 && search.value.length > 0 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_7$n, " Search result ")) : icons2.value.length < 1 && search.value.length > 0 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_8$l, " No search result ")) : search.value.length < 1 && icons2.value.length > 0 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_9$l, " Frequently used icons ")) : vue.createCommentVNode("", true)
|
|
34009
34009
|
]),
|
|
34010
|
-
vue.createElementVNode("div", _hoisted_10$
|
|
34010
|
+
vue.createElementVNode("div", _hoisted_10$h, [
|
|
34011
34011
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(icons2.value, (icon) => {
|
|
34012
34012
|
return vue.openBlock(), vue.createBlock(_sfc_main$H, {
|
|
34013
34013
|
class: "cursor-pointer rounded p-1 hover:bg-gray-100",
|
|
@@ -45225,7 +45225,7 @@ ${escapeText(this.code(index, length))}
|
|
|
45225
45225
|
const _hoisted_7$m = { class: "flex flex-col gap-3" };
|
|
45226
45226
|
const _hoisted_8$k = { class: "flex items-center justify-between" };
|
|
45227
45227
|
const _hoisted_9$k = { class: "text-lg font-semibold text-gray-900" };
|
|
45228
|
-
const _hoisted_10$
|
|
45228
|
+
const _hoisted_10$g = { class: "relative flex items-end" };
|
|
45229
45229
|
const _hoisted_11$e = { class: "flex flex-col gap-6" };
|
|
45230
45230
|
const _hoisted_12$b = {
|
|
45231
45231
|
key: 0,
|
|
@@ -45360,7 +45360,7 @@ ${escapeText(this.code(index, length))}
|
|
|
45360
45360
|
}, [
|
|
45361
45361
|
vue.createElementVNode("div", _hoisted_8$k, [
|
|
45362
45362
|
vue.createElementVNode("div", _hoisted_9$k, " Item #" + vue.toDisplayString(index + 1), 1),
|
|
45363
|
-
vue.createElementVNode("div", _hoisted_10$
|
|
45363
|
+
vue.createElementVNode("div", _hoisted_10$g, [
|
|
45364
45364
|
vue.createVNode(_sfc_main$S, {
|
|
45365
45365
|
onRemoveItem: ($event) => handleDeleteItem(index)
|
|
45366
45366
|
}, null, 8, ["onRemoveItem"])
|
|
@@ -45480,7 +45480,7 @@ ${escapeText(this.code(index, length))}
|
|
|
45480
45480
|
const _hoisted_7$l = { class: "flex items-center justify-between" };
|
|
45481
45481
|
const _hoisted_8$j = { class: "text-lg font-semibold text-gray-900" };
|
|
45482
45482
|
const _hoisted_9$j = { class: "relative flex items-end" };
|
|
45483
|
-
const _hoisted_10$
|
|
45483
|
+
const _hoisted_10$f = { class: "flex flex-col gap-6" };
|
|
45484
45484
|
const _hoisted_11$d = { class: "flex flex-col gap-1.5" };
|
|
45485
45485
|
const _hoisted_12$a = ["onUpdate:modelValue"];
|
|
45486
45486
|
const _sfc_main$B = {
|
|
@@ -45563,7 +45563,7 @@ ${escapeText(this.code(index, length))}
|
|
|
45563
45563
|
}, null, 8, ["onRemoveItem"])
|
|
45564
45564
|
])
|
|
45565
45565
|
]),
|
|
45566
|
-
vue.createElementVNode("div", _hoisted_10$
|
|
45566
|
+
vue.createElementVNode("div", _hoisted_10$f, [
|
|
45567
45567
|
vue.createElementVNode("div", _hoisted_11$d, [
|
|
45568
45568
|
vue.createVNode(vue.unref(VFileUpload), {
|
|
45569
45569
|
name: "image",
|
|
@@ -45768,7 +45768,7 @@ ${escapeText(this.code(index, length))}
|
|
|
45768
45768
|
const _hoisted_7$j = { class: "flex items-center justify-between" };
|
|
45769
45769
|
const _hoisted_8$i = { class: "text-lg font-semibold text-gray-900" };
|
|
45770
45770
|
const _hoisted_9$i = { class: "relative flex items-end" };
|
|
45771
|
-
const _hoisted_10$
|
|
45771
|
+
const _hoisted_10$e = { class: "flex flex-col gap-6" };
|
|
45772
45772
|
const _hoisted_11$c = { class: "flex flex-col gap-1.5" };
|
|
45773
45773
|
const _sfc_main$y = {
|
|
45774
45774
|
__name: "VideoGrid",
|
|
@@ -45844,7 +45844,7 @@ ${escapeText(this.code(index, length))}
|
|
|
45844
45844
|
}, null, 8, ["onRemoveItem"])
|
|
45845
45845
|
])
|
|
45846
45846
|
]),
|
|
45847
|
-
vue.createElementVNode("div", _hoisted_10$
|
|
45847
|
+
vue.createElementVNode("div", _hoisted_10$e, [
|
|
45848
45848
|
vue.createElementVNode("div", _hoisted_11$c, [
|
|
45849
45849
|
vue.createVNode(vue.unref(VFileUpload), {
|
|
45850
45850
|
name: "image",
|
|
@@ -46165,7 +46165,7 @@ ${escapeText(this.code(index, length))}
|
|
|
46165
46165
|
key: 0,
|
|
46166
46166
|
class: "flex flex-col gap-2"
|
|
46167
46167
|
};
|
|
46168
|
-
const _hoisted_10$
|
|
46168
|
+
const _hoisted_10$d = ["onClick"];
|
|
46169
46169
|
const _hoisted_11$b = { class: "flex flex-col" };
|
|
46170
46170
|
const _hoisted_12$9 = { class: "text-sm font-medium text-gray-900" };
|
|
46171
46171
|
const _hoisted_13$9 = { class: "flex items-center justify-between gap-3 px-[10px]" };
|
|
@@ -46308,7 +46308,7 @@ ${escapeText(this.code(index, length))}
|
|
|
46308
46308
|
vue.createElementVNode("div", _hoisted_13$9, [
|
|
46309
46309
|
vue.createVNode(vue.unref(ChevronRight), { class: "h-5 w-5" })
|
|
46310
46310
|
])
|
|
46311
|
-
], 10, _hoisted_10$
|
|
46311
|
+
], 10, _hoisted_10$d);
|
|
46312
46312
|
}), 256))
|
|
46313
46313
|
])) : vue.createCommentVNode("", true)
|
|
46314
46314
|
]);
|
|
@@ -47838,7 +47838,7 @@ ${escapeText(this.code(index, length))}
|
|
|
47838
47838
|
const _hoisted_7$h = { class: "max-md:flex-1" };
|
|
47839
47839
|
const _hoisted_8$g = ["innerHTML"];
|
|
47840
47840
|
const _hoisted_9$g = { class: "flex gap-3 md:mt-8 max-sm:flex-col" };
|
|
47841
|
-
const _hoisted_10$
|
|
47841
|
+
const _hoisted_10$c = ["href", "target"];
|
|
47842
47842
|
const _hoisted_11$a = ["href", "target"];
|
|
47843
47843
|
const _hoisted_12$8 = ["src"];
|
|
47844
47844
|
const _hoisted_13$8 = {
|
|
@@ -47898,7 +47898,7 @@ ${escapeText(this.code(index, length))}
|
|
|
47898
47898
|
target: slide.secondary_button.open_in_new_tab ? "_blank" : ""
|
|
47899
47899
|
}, [
|
|
47900
47900
|
vue.createElementVNode("span", null, vue.toDisplayString(slide.secondary_button.label), 1)
|
|
47901
|
-
], 8, _hoisted_10$
|
|
47901
|
+
], 8, _hoisted_10$c)) : vue.createCommentVNode("", true),
|
|
47902
47902
|
slide.primary_button.show ? (vue.openBlock(), vue.createElementBlock("a", {
|
|
47903
47903
|
key: 1,
|
|
47904
47904
|
class: "flex items-center gap-2 text-navy-800 bg-white text-base font-semibold border border-white px-6 py-2 rounded-full hover:bg-navy-50",
|
|
@@ -48017,15 +48017,15 @@ ${escapeText(this.code(index, length))}
|
|
|
48017
48017
|
return (_ctx, _cache) => {
|
|
48018
48018
|
var _a, _b, _c, _d, _e, _f, _g;
|
|
48019
48019
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
48020
|
-
class: vue.normalizeClass(["flex flex-col sm:px-0 px-4", { "items-center": (_a = component.value) == null ? void 0 : _a.center }])
|
|
48020
|
+
class: vue.normalizeClass(["flex flex-col gap-4 sm:px-0 px-4", { "items-center": (_a = component.value) == null ? void 0 : _a.center }])
|
|
48021
48021
|
}, [
|
|
48022
48022
|
((_b = component.value) == null ? void 0 : _b.title) ? (vue.openBlock(), vue.createElementBlock("p", {
|
|
48023
48023
|
key: 0,
|
|
48024
|
-
class: vue.normalizeClass(["
|
|
48024
|
+
class: vue.normalizeClass(["text-2xl sm:text-3xl lg:text-4xl font-semibold text-white", { "!text-gray-900": (_c = component.value) == null ? void 0 : _c.dark }])
|
|
48025
48025
|
}, vue.toDisplayString((_d = component.value) == null ? void 0 : _d.title), 3)) : vue.createCommentVNode("", true),
|
|
48026
48026
|
((_e = component.value) == null ? void 0 : _e.supporting_text) ? (vue.openBlock(), vue.createElementBlock("p", {
|
|
48027
48027
|
key: 1,
|
|
48028
|
-
class: vue.normalizeClass(["text-navy-25 text-
|
|
48028
|
+
class: vue.normalizeClass(["text-navy-25 text-sm sm:text-base lg:text-xl", { "!text-gray-600": (_f = component.value) == null ? void 0 : _f.dark }])
|
|
48029
48029
|
}, vue.toDisplayString((_g = component.value) == null ? void 0 : _g.supporting_text), 3)) : vue.createCommentVNode("", true)
|
|
48030
48030
|
], 2);
|
|
48031
48031
|
};
|
|
@@ -48121,20 +48121,21 @@ ${escapeText(this.code(index, length))}
|
|
|
48121
48121
|
};
|
|
48122
48122
|
}
|
|
48123
48123
|
};
|
|
48124
|
-
const _hoisted_1$G = { class: "
|
|
48125
|
-
const _hoisted_2$k = { class: "
|
|
48124
|
+
const _hoisted_1$G = { class: "grid sm:grid-cols-[auto_240px] lg:grid-cols-2 justify-center gap-4 items-stretch mt-6 text-left" };
|
|
48125
|
+
const _hoisted_2$k = { class: "grid max-sm:grid-cols-2 gap-4" };
|
|
48126
48126
|
const _hoisted_3$i = ["onClick"];
|
|
48127
|
-
const _hoisted_4$i = { class: "py-4 pl-4 md:pl-6" };
|
|
48128
|
-
const _hoisted_5$h = ["
|
|
48129
|
-
const _hoisted_6$h =
|
|
48130
|
-
const _hoisted_7$g =
|
|
48131
|
-
const _hoisted_8$f =
|
|
48127
|
+
const _hoisted_4$i = { class: "sm:py-4 sm:pl-4 md:pl-6" };
|
|
48128
|
+
const _hoisted_5$h = ["target", "href"];
|
|
48129
|
+
const _hoisted_6$h = ["innerHTML"];
|
|
48130
|
+
const _hoisted_7$g = { class: "max-sm:hidden bg-transparent flex flex-col items-center" };
|
|
48131
|
+
const _hoisted_8$f = ["src"];
|
|
48132
|
+
const _hoisted_9$f = {
|
|
48132
48133
|
key: 1,
|
|
48133
|
-
class: "rounded-[20px] md:rounded-[40px] object-contain
|
|
48134
|
+
class: "rounded-[20px] md:rounded-[40px] object-contain lg:max-h-[387px] w-full",
|
|
48134
48135
|
src: _imports_0,
|
|
48135
48136
|
alt: "No Image Available"
|
|
48136
48137
|
};
|
|
48137
|
-
const
|
|
48138
|
+
const _hoisted_10$b = ["target", "href"];
|
|
48138
48139
|
const _sfc_main$n = {
|
|
48139
48140
|
__name: "VerticalTabPresenter",
|
|
48140
48141
|
props: {
|
|
@@ -48160,27 +48161,37 @@ ${escapeText(this.code(index, length))}
|
|
|
48160
48161
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$G, [
|
|
48161
48162
|
vue.createElementVNode("div", _hoisted_2$k, [
|
|
48162
48163
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(publicTabs.value, (item) => {
|
|
48164
|
+
var _a, _b, _c, _d, _e, _f;
|
|
48163
48165
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
48164
48166
|
key: item.title
|
|
48165
48167
|
}, [
|
|
48166
48168
|
vue.createElementVNode("div", {
|
|
48167
|
-
class: vue.normalizeClass(["flex-col flex gap-1.5 cursor-pointer
|
|
48168
|
-
onClick:
|
|
48169
|
+
class: vue.normalizeClass(["flex-col flex gap-1.5 cursor-pointer group", { "sm:border-l-4 border-brand-600": selectedItem.value === item, "sm:border-l-4 border-navy-25": selectedItem.value !== item }]),
|
|
48170
|
+
onClick: ($event) => selectItem(item)
|
|
48169
48171
|
}, [
|
|
48170
48172
|
vue.createElementVNode("div", _hoisted_4$i, [
|
|
48173
|
+
vue.createElementVNode("div", {
|
|
48174
|
+
class: vue.normalizeClass([{ "text-gray-900": selectedItem.value === item, "text-gray-600": selectedItem.value !== item }, "max-sm:text-gray-900 max-sm:bg-white max-sm:p-3 max-sm:rounded-lg max-sm:min-h-[84px] text-sm relative sm:text-lg md:text-xl font-semibold sm:mb-2 group-hover:text-gray-900 grid max-sm:grid-cols-[auto_20px] gap-2"])
|
|
48175
|
+
}, [
|
|
48176
|
+
vue.createTextVNode(vue.toDisplayString(item.title) + " ", 1),
|
|
48177
|
+
vue.createVNode(vue.unref(ArrowUpRight), { class: "sm:hidden" }),
|
|
48178
|
+
((_b = (_a = selectedItem.value) == null ? void 0 : _a.primary_button) == null ? void 0 : _b.show) ? (vue.openBlock(), vue.createElementBlock("a", {
|
|
48179
|
+
key: 0,
|
|
48180
|
+
target: ((_d = (_c = selectedItem.value) == null ? void 0 : _c.primary_button) == null ? void 0 : _d.open_in_new_tab) ? "_blank" : "",
|
|
48181
|
+
href: ((_f = (_e = selectedItem.value) == null ? void 0 : _e.primary_button) == null ? void 0 : _f.url.startsWith("http")) ? selectedItem.value.primary_button.url : `//${selectedItem.value.primary_button.url}`,
|
|
48182
|
+
class: "absolute inset-0 sm:hidden z-10"
|
|
48183
|
+
}, null, 8, _hoisted_5$h)) : vue.createCommentVNode("", true)
|
|
48184
|
+
], 2),
|
|
48171
48185
|
vue.createElementVNode("p", {
|
|
48172
|
-
class: vue.normalizeClass([{ "text-gray-
|
|
48173
|
-
}, vue.toDisplayString(item.title), 3),
|
|
48174
|
-
vue.createElementVNode("p", {
|
|
48175
|
-
class: vue.normalizeClass([{ "text-gray-700": selectedItem.value === item, "text-gray-400": selectedItem.value !== item }, "text-sm md:text-md font-normal group-hover:text-gray-700"]),
|
|
48186
|
+
class: vue.normalizeClass([{ "text-gray-700": selectedItem.value === item, "text-gray-400": selectedItem.value !== item }, "max-sm:hidden text-sm md:text-md font-normal group-hover:text-gray-700"]),
|
|
48176
48187
|
innerHTML: item.description
|
|
48177
|
-
}, null, 10,
|
|
48188
|
+
}, null, 10, _hoisted_6$h)
|
|
48178
48189
|
])
|
|
48179
48190
|
], 10, _hoisted_3$i)
|
|
48180
48191
|
]);
|
|
48181
48192
|
}), 128))
|
|
48182
48193
|
]),
|
|
48183
|
-
vue.createElementVNode("div",
|
|
48194
|
+
vue.createElementVNode("div", _hoisted_7$g, [
|
|
48184
48195
|
vue.createVNode(vue.Transition, {
|
|
48185
48196
|
name: "fade",
|
|
48186
48197
|
mode: "out-in"
|
|
@@ -48196,8 +48207,8 @@ ${escapeText(this.code(index, length))}
|
|
|
48196
48207
|
key: 0,
|
|
48197
48208
|
src: selectedItem.value.featured_image,
|
|
48198
48209
|
alt: "Selected Item Image",
|
|
48199
|
-
class: "rounded-[20px] md:rounded-[40px] object-contain
|
|
48200
|
-
}, null, 8,
|
|
48210
|
+
class: "rounded-[20px] md:rounded-[40px] object-contain lg:max-h-[387px] w-full"
|
|
48211
|
+
}, null, 8, _hoisted_8$f)) : (vue.openBlock(), vue.createElementBlock("img", _hoisted_9$f)),
|
|
48201
48212
|
((_d = (_c = selectedItem.value) == null ? void 0 : _c.primary_button) == null ? void 0 : _d.show) ? (vue.openBlock(), vue.createElementBlock("a", {
|
|
48202
48213
|
key: 2,
|
|
48203
48214
|
class: "text-sm md:text-md font-semibold text-brand-600 flex items-center gap-2 mt-4",
|
|
@@ -48206,7 +48217,7 @@ ${escapeText(this.code(index, length))}
|
|
|
48206
48217
|
}, [
|
|
48207
48218
|
vue.createTextVNode(vue.toDisplayString(((_j = (_i = selectedItem.value) == null ? void 0 : _i.primary_button) == null ? void 0 : _j.label) ?? "N/A") + " ", 1),
|
|
48208
48219
|
vue.createVNode(vue.unref(ArrowUpRight), { class: "w-4 h-4 md:w-5 md:h-5" })
|
|
48209
|
-
], 8,
|
|
48220
|
+
], 8, _hoisted_10$b)) : vue.createCommentVNode("", true)
|
|
48210
48221
|
]))
|
|
48211
48222
|
];
|
|
48212
48223
|
}),
|
|
@@ -48217,9 +48228,9 @@ ${escapeText(this.code(index, length))}
|
|
|
48217
48228
|
};
|
|
48218
48229
|
}
|
|
48219
48230
|
};
|
|
48220
|
-
const VVerticalTabPresenter = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-
|
|
48231
|
+
const VVerticalTabPresenter = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-85226fd9"]]);
|
|
48221
48232
|
const _hoisted_1$F = { class: "pb-container" };
|
|
48222
|
-
const _hoisted_2$j = { class: "
|
|
48233
|
+
const _hoisted_2$j = { class: "bg-navy-25 rounded-3xl md:rounded-[48px] py-6 px-4 lg:p-16 text-center" };
|
|
48223
48234
|
const _sfc_main$m = {
|
|
48224
48235
|
__name: "VTabs",
|
|
48225
48236
|
props: {
|
|
@@ -48931,7 +48942,7 @@ ${escapeText(this.code(index, length))}
|
|
|
48931
48942
|
const _hoisted_1$r = { class: "overflow-hidden mt-4" };
|
|
48932
48943
|
const _hoisted_2$d = {
|
|
48933
48944
|
key: 0,
|
|
48934
|
-
class: "text-
|
|
48945
|
+
class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900"
|
|
48935
48946
|
};
|
|
48936
48947
|
const _hoisted_3$d = { class: "all-unset ql-editor" };
|
|
48937
48948
|
const _hoisted_4$d = ["innerHTML"];
|
|
@@ -49060,7 +49071,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49060
49071
|
key: 1,
|
|
49061
49072
|
class: "my-[44px]"
|
|
49062
49073
|
};
|
|
49063
|
-
const _hoisted_9$b = { class: "text-
|
|
49074
|
+
const _hoisted_9$b = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49064
49075
|
const _hoisted_10$8 = ["innerHTML"];
|
|
49065
49076
|
const _hoisted_11$7 = {
|
|
49066
49077
|
key: 0,
|
|
@@ -49221,7 +49232,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49221
49232
|
key: 0,
|
|
49222
49233
|
class: "rounded-xl px-[40px] text-center mb-1 max-w-[1280px] mx-auto"
|
|
49223
49234
|
};
|
|
49224
|
-
const _hoisted_4$b = { class: "text-
|
|
49235
|
+
const _hoisted_4$b = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49225
49236
|
const _hoisted_5$b = ["innerHTML"];
|
|
49226
49237
|
const _hoisted_6$b = { key: 1 };
|
|
49227
49238
|
const _hoisted_7$b = { class: "mt-4" };
|
|
@@ -49309,7 +49320,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49309
49320
|
key: 0,
|
|
49310
49321
|
class: "rounded-xl px-[40px] text-center mb-6 max-w-[1280px] mx-auto"
|
|
49311
49322
|
};
|
|
49312
|
-
const _hoisted_3$a = { class: "text-
|
|
49323
|
+
const _hoisted_3$a = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49313
49324
|
const _hoisted_4$a = ["innerHTML"];
|
|
49314
49325
|
const _hoisted_5$a = ["src"];
|
|
49315
49326
|
const _hoisted_6$a = {
|
|
@@ -49414,7 +49425,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49414
49425
|
};
|
|
49415
49426
|
}
|
|
49416
49427
|
};
|
|
49417
|
-
const LinkCard = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-
|
|
49428
|
+
const LinkCard = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-af7a1782"]]);
|
|
49418
49429
|
const _hoisted_1$n = {
|
|
49419
49430
|
xmlns: "http://www.w3.org/2000/svg",
|
|
49420
49431
|
fill: "none",
|
|
@@ -49438,7 +49449,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49438
49449
|
key: 0,
|
|
49439
49450
|
class: "rounded-xl px-[40px] text-center mb-6 max-w-[1280px] mx-auto"
|
|
49440
49451
|
};
|
|
49441
|
-
const _hoisted_4$9 = { class: "text-
|
|
49452
|
+
const _hoisted_4$9 = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49442
49453
|
const _hoisted_5$9 = ["innerHTML"];
|
|
49443
49454
|
const _hoisted_6$9 = ["src"];
|
|
49444
49455
|
const _hoisted_7$9 = {
|
|
@@ -49539,7 +49550,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49539
49550
|
key: 0,
|
|
49540
49551
|
class: "w-[48px] h-[48px] bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center"
|
|
49541
49552
|
};
|
|
49542
|
-
const _hoisted_4$8 = { class: "text-
|
|
49553
|
+
const _hoisted_4$8 = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49543
49554
|
const _hoisted_5$8 = ["innerHTML"];
|
|
49544
49555
|
const _hoisted_6$8 = ["textContent"];
|
|
49545
49556
|
const _hoisted_7$8 = { class: "flex" };
|
|
@@ -49888,7 +49899,7 @@ ${escapeText(this.code(index, length))}
|
|
|
49888
49899
|
key: 0,
|
|
49889
49900
|
class: "px-[40px] text-center mb-6 mx-auto"
|
|
49890
49901
|
};
|
|
49891
|
-
const _hoisted_3$5 = { class: "text-
|
|
49902
|
+
const _hoisted_3$5 = { class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" };
|
|
49892
49903
|
const _hoisted_4$5 = ["innerHTML"];
|
|
49893
49904
|
const _hoisted_5$5 = {
|
|
49894
49905
|
key: 1,
|
|
@@ -50021,7 +50032,7 @@ ${escapeText(this.code(index, length))}
|
|
|
50021
50032
|
vue.createElementVNode("div", _hoisted_2$4, [
|
|
50022
50033
|
vue.createElementVNode("div", null, [
|
|
50023
50034
|
vue.createElementVNode("p", {
|
|
50024
|
-
class: "text-
|
|
50035
|
+
class: "text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900 mb-[48px]",
|
|
50025
50036
|
textContent: vue.toDisplayString(pricingComponent.value.title)
|
|
50026
50037
|
}, null, 8, _hoisted_3$4),
|
|
50027
50038
|
vue.createElementVNode("div", _hoisted_4$4, [
|
package/package.json
CHANGED
package/src/assets/css/style.css
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="flex flex-col sm:px-0 px-4" :class="{'items-center': component?.center}">
|
|
2
|
+
<div class="flex flex-col gap-4 sm:px-0 px-4" :class="{'items-center': component?.center}">
|
|
3
3
|
<p
|
|
4
4
|
v-if="component?.title"
|
|
5
|
-
class="
|
|
5
|
+
class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-white"
|
|
6
6
|
:class="{'!text-gray-900': component?.dark}"
|
|
7
7
|
>{{ component?.title }}</p>
|
|
8
8
|
<p
|
|
9
9
|
v-if="component?.supporting_text"
|
|
10
|
-
class="text-navy-25 text-
|
|
10
|
+
class="text-navy-25 text-sm sm:text-base lg:text-xl"
|
|
11
11
|
:class="{'!text-gray-600': component?.dark}"
|
|
12
12
|
>
|
|
13
13
|
{{ component?.supporting_text }}</p>
|
|
@@ -1,23 +1,32 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="
|
|
2
|
+
<div class="grid sm:grid-cols-[auto_240px] lg:grid-cols-2 justify-center gap-4 items-stretch mt-6 text-left">
|
|
3
3
|
<!-- Left Column: Links -->
|
|
4
|
-
<div class="
|
|
4
|
+
<div class="grid max-sm:grid-cols-2 gap-4">
|
|
5
5
|
<div v-for="item in publicTabs" :key="item.title">
|
|
6
6
|
<div
|
|
7
|
-
class="flex-col flex gap-1.5 cursor-pointer
|
|
8
|
-
:class="{'border-l-4 border-brand-600': selectedItem === item, 'border-l-4 border-
|
|
9
|
-
@click
|
|
7
|
+
class="flex-col flex gap-1.5 cursor-pointer group"
|
|
8
|
+
:class="{'sm:border-l-4 border-brand-600': selectedItem === item, 'sm:border-l-4 border-navy-25': selectedItem !== item}"
|
|
9
|
+
@click="selectItem(item)"
|
|
10
10
|
>
|
|
11
|
-
<div class="py-4 pl-4 md:pl-6">
|
|
12
|
-
<
|
|
11
|
+
<div class="sm:py-4 sm:pl-4 md:pl-6">
|
|
12
|
+
<div
|
|
13
13
|
:class="{'text-gray-900': selectedItem === item, 'text-gray-600': selectedItem !== item}"
|
|
14
|
-
class="text-
|
|
14
|
+
class="max-sm:text-gray-900 max-sm:bg-white max-sm:p-3 max-sm:rounded-lg max-sm:min-h-[84px] text-sm relative
|
|
15
|
+
sm:text-lg md:text-xl font-semibold sm:mb-2 group-hover:text-gray-900 grid max-sm:grid-cols-[auto_20px] gap-2"
|
|
15
16
|
>
|
|
16
17
|
{{ item.title }}
|
|
17
|
-
|
|
18
|
+
|
|
19
|
+
<ArrowUpRight class="sm:hidden" />
|
|
20
|
+
|
|
21
|
+
<a v-if="selectedItem?.primary_button?.show"
|
|
22
|
+
:target="selectedItem?.primary_button?.open_in_new_tab ? '_blank' : ''"
|
|
23
|
+
:href="selectedItem?.primary_button?.url.startsWith('http') ? selectedItem.primary_button.url : `//${selectedItem.primary_button.url}`"
|
|
24
|
+
class="absolute inset-0 sm:hidden z-10"
|
|
25
|
+
></a>
|
|
26
|
+
</div>
|
|
18
27
|
<p
|
|
19
28
|
:class="{'text-gray-700': selectedItem === item, 'text-gray-400': selectedItem !== item}"
|
|
20
|
-
class="text-sm md:text-md font-normal group-hover:text-gray-700"
|
|
29
|
+
class="max-sm:hidden text-sm md:text-md font-normal group-hover:text-gray-700"
|
|
21
30
|
v-html="item.description"
|
|
22
31
|
>
|
|
23
32
|
</p>
|
|
@@ -27,17 +36,17 @@
|
|
|
27
36
|
</div>
|
|
28
37
|
|
|
29
38
|
<!-- Right Column: Image and Button -->
|
|
30
|
-
<div class="
|
|
39
|
+
<div class="max-sm:hidden bg-transparent flex flex-col items-center">
|
|
31
40
|
<transition name="fade" mode="out-in">
|
|
32
41
|
<div class="flex flex-col items-center" :key="selectedItem?.title">
|
|
33
42
|
<img
|
|
34
43
|
v-if="selectedItem?.featured_image"
|
|
35
44
|
:src="selectedItem.featured_image"
|
|
36
45
|
alt="Selected Item Image"
|
|
37
|
-
class="rounded-[20px] md:rounded-[40px] object-contain
|
|
46
|
+
class="rounded-[20px] md:rounded-[40px] object-contain lg:max-h-[387px] w-full"/>
|
|
38
47
|
<img
|
|
39
48
|
v-else
|
|
40
|
-
class="rounded-[20px] md:rounded-[40px] object-contain
|
|
49
|
+
class="rounded-[20px] md:rounded-[40px] object-contain lg:max-h-[387px] w-full"
|
|
41
50
|
src="@/assets/img/no_image_available.jpeg"
|
|
42
51
|
alt="No Image Available">
|
|
43
52
|
<a
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="pb-container py-[40px] flex justify-center gap-[10%]">
|
|
3
3
|
<div class="bg-pale-100 w-full rounded-[20px] p-8 gap-6 grid lg:grid-cols-2">
|
|
4
4
|
<div>
|
|
5
|
-
<p class="text-
|
|
5
|
+
<p class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900 mb-[48px]" v-text="pricingComponent.title"></p>
|
|
6
6
|
<div class="flex flex-col divide-y divide-gray-200 px-6 bg-white rounded-lg md:rounded-2xl overflow-hidden">
|
|
7
7
|
<div v-for="(price, index) in pricingComponent.data"
|
|
8
8
|
class="relative w-full py-6">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
class="w-[48px] h-[48px] bg-brand-100 border-[8px] border-brand-50 rounded-full flex items-center justify-center">
|
|
16
16
|
<IconComponent :icon="headerComponent.icon" icon-classes="w-5 h-5 text-brand-600"></IconComponent>
|
|
17
17
|
</div>
|
|
18
|
-
<h3 class="text-
|
|
18
|
+
<h3 class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900">{{ headerComponent.title }}</h3>
|
|
19
19
|
<p v-if="headerComponent?.supporting_text" class="text-[20px] font-normal mt-2 text-gray-600 leading-[30px]"
|
|
20
20
|
v-html="headerComponent.supporting_text"></p>
|
|
21
21
|
</div>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
:class="{'justify-start md:!px-0 !ml-0': section?.align_left}">
|
|
5
5
|
<div v-for="(header, index) in headerComponents" class="gap-4 max-w-[800px] w-full" :class="{'!max-w-full' : section?.align_left}">
|
|
6
6
|
<div class="px-[40px] text-center mb-6 mx-auto" v-if="header">
|
|
7
|
-
<h3 class="text-
|
|
7
|
+
<h3 class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900">{{ header.title }}</h3>
|
|
8
8
|
<p v-if="header?.supporting_text"
|
|
9
9
|
class="text-[20px] font-normal mt-2 text-gray-600 leading-[30px] max-w-[768px] mx-auto"
|
|
10
10
|
v-html="header.supporting_text"></p>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="link-card overflow-hidden" :class="{'bg-aqua-100 mb-6': !section?.no_background}">
|
|
3
3
|
<div class="pb-container my-[40px]">
|
|
4
4
|
<div class="rounded-xl px-[40px] text-center mb-6 max-w-[1280px] mx-auto" v-if="headerComponent">
|
|
5
|
-
<h3 class="text-
|
|
5
|
+
<h3 class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900">{{ headerComponent.title }}</h3>
|
|
6
6
|
<div v-if="headerComponent?.supporting_text" class="text-[20px] font-normal mt-2 text-gray-600 leading-[30px] max-w-[768px] mx-auto" v-html="headerComponent.supporting_text"></div>
|
|
7
7
|
</div>
|
|
8
8
|
<div v-if="cardComponent" class="flex flex-col md:flex-row w-full" :class="{'gap-8': headerComponent?.featured_image}">
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<div class="pb-container bg-white py-[40px] flex flex-col lg:flex-row gap-8 xl:gap-[10%]">
|
|
4
4
|
<div v-for="(header, index) in headerComponents" class="gap-4" :class="{'lg:w-1/2': section.two_columns}">
|
|
5
5
|
<div class="rounded-xl px-[40px] text-center mb-6 max-w-[1280px] mx-auto" v-if="header">
|
|
6
|
-
<h3 class="text-
|
|
6
|
+
<h3 class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900">{{ header.title }}</h3>
|
|
7
7
|
<p v-if="header?.supporting_text" class="text-[20px] font-normal mt-2 text-gray-600 leading-[30px] max-w-[768px] mx-auto" v-html="header.supporting_text"></p>
|
|
8
8
|
</div>
|
|
9
9
|
<img v-if="header?.featured_image"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="overflow-hidden mt-4">
|
|
3
3
|
<div class="pb-container pt-4 mb-4 flex gap-8 lg:gap-16 items-center flex-col-reverse lg:flex-row" :class="{'[&]:flex-col [&]:lg:flex-row-reverse mt-6 !mb-10': section?.revert, 'justify-center': section?.center, 'md:!px-0 !ml-0 justify-end': section?.align_left }">
|
|
4
4
|
<div class="max-w-[800px] lg:py-4" :class="{'!max-w-full w-full': section?.is_full_width }" v-if="component?.title || component?.paragraph" ref="leftColumn">
|
|
5
|
-
<h3 class="text-
|
|
5
|
+
<h3 class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900" v-if="component?.title">
|
|
6
6
|
{{ component.title }}
|
|
7
7
|
</h3>
|
|
8
8
|
<div class="all-unset ql-editor">
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="overflow-hidden">
|
|
3
3
|
<div class="pb-container mt-[40px]">
|
|
4
4
|
<div class="rounded-xl px-[40px] text-center mb-1 max-w-[1280px] mx-auto" v-if="headerComponent">
|
|
5
|
-
<h3 class="text-
|
|
5
|
+
<h3 class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900">{{ headerComponent.title }}</h3>
|
|
6
6
|
<p v-if="headerComponent?.supporting_text" class="text-[20px] font-normal mt-2 text-gray-600 leading-[30px] max-w-[768px] mx-auto" v-html="headerComponent.supporting_text"></p>
|
|
7
7
|
</div>
|
|
8
8
|
<div v-if="timelineComponent">
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
class="w-full flex-col mb-6"
|
|
20
20
|
:class="{'text-center items-center flex': headerComponent?.text_center}"
|
|
21
21
|
>
|
|
22
|
-
<h3 class="text-
|
|
22
|
+
<h3 class="text-2xl sm:text-3xl lg:text-4xl font-semibold text-gray-900">{{ headerComponent.title }}</h3>
|
|
23
23
|
<p v-if="headerComponent?.supporting_text"
|
|
24
24
|
class="text-[20px] font-normal mt-4 text-gray-600 leading-[30px] max-w-[800px]"
|
|
25
25
|
v-html="headerComponent.supporting_text"></p>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="pb-container">
|
|
3
|
-
<div class="
|
|
3
|
+
<div class="bg-navy-25 rounded-3xl md:rounded-[48px] py-6 px-4 lg:p-16 text-center">
|
|
4
4
|
<div v-for="(component, index) in section.components">
|
|
5
5
|
<component
|
|
6
6
|
:is="currentComponent(component)"
|