@designcrowd/library.brand-page 6.0.21 → 6.0.22
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/lib/src/{CreatedOnBrandCrowd-de-de-C52IyXZu.js → CreatedOnBrandCrowd-de-de-BS8dQhaZ.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-en-us-DhTy_dEV.js → CreatedOnBrandCrowd-en-us-45ZyXSxn.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-es-es-BJelIAQ4.js → CreatedOnBrandCrowd-es-es-B1K3Ojw-.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-fr-fr-DwJohy0T.js → CreatedOnBrandCrowd-fr-ca-4v9c20Q9.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-fr-ca-DwJohy0T.js → CreatedOnBrandCrowd-fr-fr-4v9c20Q9.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-pt-pt-CMzKbxdG.js → CreatedOnBrandCrowd-pt-br-BdDmm1GE.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-pt-br-CMzKbxdG.js → CreatedOnBrandCrowd-pt-pt-BdDmm1GE.js} +1 -1
- package/lib/src/{CreatedOnDcom-de-de-DAy1GHrw.js → CreatedOnDcom-de-de-Dc8rOxAE.js} +1 -1
- package/lib/src/{CreatedOnDcom-en-us-CgBDAkJN.js → CreatedOnDcom-en-us-Bq6rusW6.js} +1 -1
- package/lib/src/{CreatedOnDcom-es-es-Ds9d5rem.js → CreatedOnDcom-es-es-C5gNEuoi.js} +1 -1
- package/lib/src/{CreatedOnDcom-fr-ca-CZL0BQ-u.js → CreatedOnDcom-fr-ca-NL2KoADg.js} +1 -1
- package/lib/src/{CreatedOnDcom-fr-fr-BVYh5Wvo.js → CreatedOnDcom-fr-fr-DZaLN0j-.js} +1 -1
- package/lib/src/{CreatedOnDcom-pt-br-1hsWNXfq.js → CreatedOnDcom-pt-br-DXZvo45o.js} +1 -1
- package/lib/src/{CreatedOnDcom-pt-pt-DvM0N-3M.js → CreatedOnDcom-pt-pt-GUJ4aTM2.js} +1 -1
- package/lib/src/brand-page/components/collapsible/Collapsible.mixin.d.ts +11 -0
- package/lib/src/brand-page/components/collapsible/Collapsible.mixin.js +13 -1
- package/lib/src/brand-page/components/contact-form/ContactForm.mixin.d.ts +1 -0
- package/lib/src/brand-page/components/contact-form/ContactForm.mixin.js +12 -3
- package/lib/src/brand-page/components/mailing-list/MailingList.mixin.js +5 -0
- package/lib/src/brand-page/components/payment/Payment.mixin.js +5 -0
- package/lib/src/brand-page/models/index.d.ts +1 -0
- package/lib/src/brand-page/models/payment.model.d.ts +2 -0
- package/lib/src/brand-page/utils/button.util.d.ts +5 -0
- package/lib/src/brand-page/utils/button.util.js +13 -0
- package/lib/src/brand-page/utils/migration/migration-19.d.ts +2 -0
- package/lib/src/brand-page/utils/migration/migration-19.js +41 -0
- package/lib/src/brand-page/utils/migration.util.js +11 -0
- package/lib/src/brand-page/utils/view-model.util.js +1 -0
- package/lib/src/brand-page-maker/assessors/contact-form-visibility.assessor.d.ts +1 -0
- package/lib/src/brand-page-maker/assessors/contact-form-visibility.assessor.js +16 -7
- package/lib/src/brand-page-maker/constants/config-settings-constant.js +40 -3
- package/lib/src/brand-page-maker/default-getters/contact-form-card-color.default-getter.d.ts +8 -0
- package/lib/src/brand-page-maker/default-getters/contact-form-card-color.default-getter.js +16 -0
- package/lib/src/brand-page-maker/default-getters/index.d.ts +1 -0
- package/lib/src/brand-page-maker/default-getters/index.js +1 -0
- package/lib/src/brand-page-maker/models/button-styles-config.js +15 -3
- package/lib/src/brand-page-maker/models/content-settings-configs.d.ts +2 -1
- package/lib/src/brand-page-maker/models/content-settings.js +15 -3
- package/lib/src/css/library.brand-page-brandCrowd.min.css +96 -68
- package/lib/src/css/library.brand-page-brandPage.min.css +96 -68
- package/lib/src/css/library.brand-page-designCom.min.css +96 -68
- package/lib/src/css/library.brand-page-preview.min.css +96 -68
- package/lib/src/index.mjs +1 -1
- package/lib/src/{lib-CK2FPBv5.js → lib-Dh4vrmod.js} +18439 -18090
- package/lib/src/shared/content-settings/components/content-settings-item/ContentSettingsItemField.mixin.js +5 -0
- package/lib/src/shared/content-settings/models.d.ts +1 -0
- package/lib/src/shared/content-settings/store/content-settings-store.js +3 -0
- package/package.json +2 -2
- package/src/brand-page/components/button/ButtonStyleWrapper.vue +112 -44
- package/src/brand-page/components/button/ButtonStyleWrapper.vue.test.ts +167 -0
- package/src/brand-page/components/collapsible/Collapsible.mixin.ts +14 -1
- package/src/brand-page/components/contact-form/ContactForm.mixin.test.ts +18 -0
- package/src/brand-page/components/contact-form/ContactForm.mixin.ts +15 -3
- package/src/brand-page/components/contact-form/ContactForm.vue +97 -36
- package/src/brand-page/components/mailing-list/MailingList.mixin.ts +6 -0
- package/src/brand-page/components/mailing-list/MailingList.vue +18 -10
- package/src/brand-page/components/payment/Payment.mixin.ts +6 -0
- package/src/brand-page/components/payment/Payment.vue +43 -24
- package/src/brand-page/components/payment/RequestPaymentStripe.vue +26 -22
- package/src/brand-page/components/shop/Shop.vue +15 -6
- package/src/brand-page/models/index.ts +1 -0
- package/src/brand-page/models/payment.model.ts +2 -0
- package/src/brand-page/utils/__snapshots__/migration.util.test.ts.snap +3 -3
- package/src/brand-page/utils/button.util.ts +17 -0
- package/src/brand-page/utils/migration/migration-19.test.ts +172 -0
- package/src/brand-page/utils/migration/migration-19.ts +65 -0
- package/src/brand-page/utils/migration.util.ts +12 -0
- package/src/brand-page/utils/view-model.util.ts +1 -0
- package/src/brand-page-maker/assessors/contact-form-visibility.assessor.ts +34 -26
- package/src/brand-page-maker/constants/config-settings-constant.ts +43 -2
- package/src/brand-page-maker/default-getters/contact-form-card-color.default-getter.ts +23 -0
- package/src/brand-page-maker/default-getters/index.ts +1 -0
- package/src/brand-page-maker/models/button-styles-config.ts +15 -3
- package/src/brand-page-maker/models/content-settings-configs.ts +4 -1
- package/src/brand-page-maker/models/content-settings.ts +16 -3
- package/src/shared/content-settings/components/content-settings-item/ContentSettingsItemField.mixin.ts +6 -0
- package/src/shared/content-settings/models.ts +3 -0
- package/src/shared/content-settings/store/content-settings-store.ts +3 -0
- package/src/shared/style-settings/components/StyleSettings.vue +1 -0
- package/lib/src/metadata-builder/builders/reorder-pages-builder.d.ts +0 -13
- package/lib/src/metadata-builder/builders/reorder-pages-builder.js +0 -49
- package/src/metadata-builder/builders/reorder-pages-builder.ts +0 -80
|
@@ -1130,9 +1130,15 @@ a:not(.tw-lowercase) {
|
|
|
1130
1130
|
.tw-min-w-8 {
|
|
1131
1131
|
min-width: 2rem
|
|
1132
1132
|
}
|
|
1133
|
+
.tw-min-w-\[120px\] {
|
|
1134
|
+
min-width: 120px
|
|
1135
|
+
}
|
|
1133
1136
|
.tw-min-w-\[310px\] {
|
|
1134
1137
|
min-width: 310px
|
|
1135
1138
|
}
|
|
1139
|
+
.tw-min-w-full {
|
|
1140
|
+
min-width: 100%
|
|
1141
|
+
}
|
|
1136
1142
|
.tw-max-w-0 {
|
|
1137
1143
|
max-width: 0px
|
|
1138
1144
|
}
|
|
@@ -1472,16 +1478,6 @@ a:not(.tw-lowercase) {
|
|
|
1472
1478
|
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1473
1479
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
1474
1480
|
}
|
|
1475
|
-
.tw-translate-y-\[-10\%\] {
|
|
1476
|
-
--tw-translate-y: -10%;
|
|
1477
|
-
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1478
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
1479
|
-
}
|
|
1480
|
-
.tw-translate-y-\[-4\%\] {
|
|
1481
|
-
--tw-translate-y: -4%;
|
|
1482
|
-
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1483
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
1484
|
-
}
|
|
1485
1481
|
.tw-translate-y-px {
|
|
1486
1482
|
--tw-translate-y: 1px;
|
|
1487
1483
|
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -3055,9 +3051,6 @@ a:not(.tw-lowercase) {
|
|
|
3055
3051
|
.tw-leading-tight {
|
|
3056
3052
|
line-height: 1.25
|
|
3057
3053
|
}
|
|
3058
|
-
.tw-text-\[var\(--icon-color\)\] {
|
|
3059
|
-
color: var(--icon-color)
|
|
3060
|
-
}
|
|
3061
3054
|
.tw-text-black {
|
|
3062
3055
|
--tw-text-opacity: 1;
|
|
3063
3056
|
color: rgb(0 0 0 / var(--tw-text-opacity))
|
|
@@ -5692,39 +5685,72 @@ input[data-v-4cd691db]::-webkit-inner-spin-button {
|
|
|
5692
5685
|
max-height: 45vh;
|
|
5693
5686
|
}
|
|
5694
5687
|
|
|
5695
|
-
.
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
|
-
|
|
5688
|
+
/* Decorative styles on submit buttons render flush at the bottom. Zero the host
|
|
5689
|
+
button's own margins: its decoration is positioned relative to the WRAPPER, so a
|
|
5690
|
+
margin on the button itself shifts it out of alignment with the decoration. The
|
|
5691
|
+
top gap is instead applied to the wrapper (tw-mt-4 above) so the whole decorated
|
|
5692
|
+
unit moves together and stays flush at the container's bottom edge (BP-5800). */
|
|
5693
|
+
.bp-style-wrapper--no-margin[data-v-255edfd5] button {
|
|
5694
|
+
margin-top: 0;
|
|
5695
|
+
margin-bottom: 0;
|
|
5700
5696
|
}
|
|
5701
|
-
|
|
5702
|
-
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
.bp-button-paper-top[data-v-604db8c6] svg,
|
|
5708
|
-
.bp-button-paper-bottom[data-v-604db8c6] svg {
|
|
5709
|
-
width: 100%;
|
|
5710
|
-
height: auto;
|
|
5697
|
+
|
|
5698
|
+
/* Brushstroke: flanking brush-end icons are transformed over the button's
|
|
5699
|
+
left/right edges, so they must not capture clicks (BP-5882). */
|
|
5700
|
+
.bp-icon-brush-left[data-v-255edfd5],
|
|
5701
|
+
.bp-icon-brush-right[data-v-255edfd5] {
|
|
5702
|
+
pointer-events: none;
|
|
5711
5703
|
}
|
|
5712
|
-
.bp-icon-brush-left[data-v-
|
|
5704
|
+
.bp-icon-brush-left[data-v-255edfd5] svg {
|
|
5713
5705
|
-webkit-transform: translateX(-99%);
|
|
5714
5706
|
transform: translateX(-99%);
|
|
5715
5707
|
width: auto;
|
|
5716
5708
|
}
|
|
5717
|
-
.bp-icon-brush-right[data-v-
|
|
5709
|
+
.bp-icon-brush-right[data-v-255edfd5] svg {
|
|
5718
5710
|
width: auto;
|
|
5719
5711
|
}
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
5712
|
+
|
|
5713
|
+
/* Torn-paper: the button-paper icon sits BEHIND the button as its shape. The
|
|
5714
|
+
wrapper is the positioning context; the icon is an inert inset layer that fills
|
|
5715
|
+
the button box exactly (inset:0 + preserveAspectRatio none) without inflating
|
|
5716
|
+
its size or capturing clicks (BP-5882/BP-5883). The button's own fill is made
|
|
5717
|
+
transparent so the icon's colour shows through. */
|
|
5718
|
+
.bp-button-shape[data-v-255edfd5] {
|
|
5719
|
+
position: relative;
|
|
5723
5720
|
}
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5721
|
+
.bp-icon-shape[data-v-255edfd5] {
|
|
5722
|
+
position: absolute;
|
|
5723
|
+
inset: 0;
|
|
5724
|
+
width: 100%;
|
|
5725
|
+
height: 100%;
|
|
5726
|
+
pointer-events: none;
|
|
5727
|
+
}
|
|
5728
|
+
.bp-button-shape[data-v-255edfd5] button,
|
|
5729
|
+
.bp-button-shape[data-v-255edfd5] a {
|
|
5730
|
+
position: relative; /* sit above the inert background */
|
|
5731
|
+
/* !important to override the host button's inline background-color. */
|
|
5732
|
+
background-color: transparent !important;
|
|
5727
5733
|
}
|
|
5734
|
+
/* button-paper ships hardcoded fill="black"; recolour to the button's fill. CSS
|
|
5735
|
+
fill overrides the presentation attribute; clip-path rects are geometric so
|
|
5736
|
+
recolouring them is harmless. */
|
|
5737
|
+
.bp-icon-shape[data-v-255edfd5] path,
|
|
5738
|
+
.bp-icon-shape[data-v-255edfd5] rect {
|
|
5739
|
+
fill: currentColor;
|
|
5740
|
+
}
|
|
5741
|
+
.bp-button-arrow[data-v-255edfd5],
|
|
5742
|
+
.device-wrapper--mobile .bp-button-arrow[data-v-255edfd5] {
|
|
5743
|
+
/* Fixed-px arrowhead (not %) so the chevron is equally sharp at any button
|
|
5744
|
+
width — a %-based point collapses on narrow buttons (e.g. the 120px contact
|
|
5745
|
+
form submit) and only reads as an arrow on wide ones. */
|
|
5746
|
+
clip-path: polygon(
|
|
5747
|
+
12px 100%,
|
|
5748
|
+
0 50%,
|
|
5749
|
+
12px 0,
|
|
5750
|
+
calc(100% - 12px) 0,
|
|
5751
|
+
100% 50%,
|
|
5752
|
+
calc(100% - 12px) 100%
|
|
5753
|
+
);
|
|
5728
5754
|
}
|
|
5729
5755
|
|
|
5730
5756
|
.empty-para[data-v-2520851c] p:empty::after {
|
|
@@ -5838,7 +5864,7 @@ input[data-v-4cd691db]::-webkit-inner-spin-button {
|
|
|
5838
5864
|
text-decoration: underline;
|
|
5839
5865
|
}
|
|
5840
5866
|
|
|
5841
|
-
.form-error[data-v-
|
|
5867
|
+
.form-error[data-v-b7e55081] {
|
|
5842
5868
|
font-size: 0.875rem;
|
|
5843
5869
|
line-height: 1.25rem;
|
|
5844
5870
|
color: #f21b3f
|
|
@@ -6093,14 +6119,10 @@ select[data-v-14e7c7c7] {
|
|
|
6093
6119
|
background-position: right 12px center;
|
|
6094
6120
|
}
|
|
6095
6121
|
|
|
6096
|
-
.form-error[data-v-
|
|
6122
|
+
.form-error[data-v-0cc4cbbd] {
|
|
6097
6123
|
font-size: 0.75rem;
|
|
6098
6124
|
line-height: 1rem;
|
|
6099
|
-
color: #f21b3f
|
|
6100
|
-
}
|
|
6101
|
-
.pay-button-disabled[data-v-7731d899] {
|
|
6102
|
-
opacity: 0.5 !important;
|
|
6103
|
-
pointer-events: none;
|
|
6125
|
+
color: #f21b3f
|
|
6104
6126
|
}
|
|
6105
6127
|
|
|
6106
6128
|
/* TODO: review CSS setup, scoped CSS will not work in slot */
|
|
@@ -6196,53 +6218,59 @@ select[data-v-14e7c7c7] {
|
|
|
6196
6218
|
width: 100%;
|
|
6197
6219
|
}
|
|
6198
6220
|
|
|
6199
|
-
.form-error[data-v-
|
|
6221
|
+
.form-error[data-v-109ad6ae] {
|
|
6200
6222
|
font-size: 0.875rem;
|
|
6201
6223
|
line-height: 1.25rem;
|
|
6202
6224
|
color: #f21b3f;
|
|
6203
6225
|
}
|
|
6204
|
-
.contact-container[data-v-
|
|
6226
|
+
.contact-container[data-v-109ad6ae] {
|
|
6205
6227
|
max-width: var(--brandsite-max-width);
|
|
6206
6228
|
margin: 0 auto;
|
|
6207
6229
|
}
|
|
6208
|
-
.c-text-padding[data-v-
|
|
6230
|
+
.c-text-padding[data-v-109ad6ae] {
|
|
6209
6231
|
padding-left: 1rem;
|
|
6210
6232
|
padding-right: 1rem;
|
|
6211
6233
|
}
|
|
6212
|
-
.device-wrapper--mobile .c-divided-container[data-v-
|
|
6234
|
+
.device-wrapper--mobile .c-divided-container[data-v-109ad6ae] {
|
|
6213
6235
|
-webkit-box-orient: vertical;
|
|
6214
6236
|
-webkit-box-direction: normal;
|
|
6215
6237
|
-ms-flex-direction: column;
|
|
6216
6238
|
flex-direction: column;
|
|
6217
6239
|
}
|
|
6218
|
-
.device-wrapper--mobile .c-divided-container-reverse[data-v-
|
|
6240
|
+
.device-wrapper--mobile .c-divided-container-reverse[data-v-109ad6ae] {
|
|
6219
6241
|
-webkit-box-orient: vertical;
|
|
6220
6242
|
-webkit-box-direction: reverse;
|
|
6221
6243
|
-ms-flex-direction: column-reverse;
|
|
6222
6244
|
flex-direction: column-reverse;
|
|
6223
6245
|
}
|
|
6224
6246
|
@media (max-width: 767px) {
|
|
6225
|
-
.c-button-full[data-v-
|
|
6247
|
+
.c-button-full[data-v-109ad6ae] {
|
|
6248
|
+
width: 100%;
|
|
6249
|
+
}
|
|
6250
|
+
/* Match the button's full-width on published mobile. The maker uses the
|
|
6251
|
+
isMobileDevice prop for this; the renderer has no such state, so the
|
|
6252
|
+
decorative-button wrapper is widened here via the real viewport instead. */
|
|
6253
|
+
[data-v-109ad6ae] .bp-style-wrapper {
|
|
6226
6254
|
width: 100%;
|
|
6227
6255
|
}
|
|
6228
|
-
.c-col-span-2[data-v-
|
|
6256
|
+
.c-col-span-2[data-v-109ad6ae] {
|
|
6229
6257
|
grid-column: span 2 / span 2;
|
|
6230
6258
|
}
|
|
6231
|
-
.c-mobile-padding[data-v-
|
|
6259
|
+
.c-mobile-padding[data-v-109ad6ae] {
|
|
6232
6260
|
padding: 1rem;
|
|
6233
6261
|
}
|
|
6234
|
-
.c-text-padding[data-v-
|
|
6262
|
+
.c-text-padding[data-v-109ad6ae] {
|
|
6235
6263
|
grid-column: span 2 / span 2;
|
|
6236
6264
|
padding-left: 0px;
|
|
6237
6265
|
padding-right: 0px;
|
|
6238
6266
|
}
|
|
6239
|
-
.c-divided-container[data-v-
|
|
6267
|
+
.c-divided-container[data-v-109ad6ae] {
|
|
6240
6268
|
-webkit-box-orient: vertical;
|
|
6241
6269
|
-webkit-box-direction: normal;
|
|
6242
6270
|
-ms-flex-direction: column;
|
|
6243
6271
|
flex-direction: column;
|
|
6244
6272
|
}
|
|
6245
|
-
.c-divided-container-reverse[data-v-
|
|
6273
|
+
.c-divided-container-reverse[data-v-109ad6ae] {
|
|
6246
6274
|
-webkit-box-orient: vertical;
|
|
6247
6275
|
-webkit-box-direction: reverse;
|
|
6248
6276
|
-ms-flex-direction: column-reverse;
|
|
@@ -6250,16 +6278,16 @@ select[data-v-14e7c7c7] {
|
|
|
6250
6278
|
}
|
|
6251
6279
|
}
|
|
6252
6280
|
@media (min-width: 767px) {
|
|
6253
|
-
.c-aspect-square[data-v-
|
|
6281
|
+
.c-aspect-square[data-v-109ad6ae] {
|
|
6254
6282
|
aspect-ratio: 1 / 1;
|
|
6255
6283
|
}
|
|
6256
|
-
.c-divided-container[data-v-
|
|
6284
|
+
.c-divided-container[data-v-109ad6ae] {
|
|
6257
6285
|
-webkit-box-orient: horizontal;
|
|
6258
6286
|
-webkit-box-direction: normal;
|
|
6259
6287
|
-ms-flex-direction: row;
|
|
6260
6288
|
flex-direction: row;
|
|
6261
6289
|
}
|
|
6262
|
-
.c-divided-container-reverse[data-v-
|
|
6290
|
+
.c-divided-container-reverse[data-v-109ad6ae] {
|
|
6263
6291
|
-webkit-box-orient: horizontal;
|
|
6264
6292
|
-webkit-box-direction: reverse;
|
|
6265
6293
|
-ms-flex-direction: row-reverse;
|
|
@@ -6891,44 +6919,44 @@ select[data-v-14e7c7c7] {
|
|
|
6891
6919
|
color: #f21b3f;
|
|
6892
6920
|
}
|
|
6893
6921
|
|
|
6894
|
-
.inner-container[data-v-
|
|
6922
|
+
.inner-container[data-v-c359b5e7] {
|
|
6895
6923
|
max-width: var(--brandsite-max-width);
|
|
6896
6924
|
margin: 0 auto;
|
|
6897
6925
|
}
|
|
6898
|
-
.outer-container[data-v-
|
|
6926
|
+
.outer-container[data-v-c359b5e7] {
|
|
6899
6927
|
padding-left: var(--page-padding);
|
|
6900
6928
|
padding-right: var(--page-padding);
|
|
6901
6929
|
}
|
|
6902
|
-
.modal-cart[data-v-
|
|
6930
|
+
.modal-cart[data-v-c359b5e7] .cart-image {
|
|
6903
6931
|
width: 3rem;
|
|
6904
6932
|
}
|
|
6905
|
-
.modal-cart[data-v-
|
|
6933
|
+
.modal-cart[data-v-c359b5e7] .cart-option {
|
|
6906
6934
|
width: 100%;
|
|
6907
6935
|
}
|
|
6908
|
-
.success-bar-container[data-v-
|
|
6936
|
+
.success-bar-container[data-v-c359b5e7] .tw-bg-success-500 {
|
|
6909
6937
|
--tw-bg-opacity: 1;
|
|
6910
6938
|
background-color: rgb(36 168 16 / var(--tw-bg-opacity));
|
|
6911
6939
|
}
|
|
6912
6940
|
@media (min-width: 640px) {
|
|
6913
|
-
.modal-product-detail[data-v-
|
|
6941
|
+
.modal-product-detail[data-v-c359b5e7] .modal {
|
|
6914
6942
|
min-width: 100vh;
|
|
6915
6943
|
}
|
|
6916
|
-
.modal-cart[data-v-
|
|
6944
|
+
.modal-cart[data-v-c359b5e7] .modal {
|
|
6917
6945
|
min-width: 90vh;
|
|
6918
6946
|
max-height: 90vh;
|
|
6919
6947
|
}
|
|
6920
|
-
.modal-cart[data-v-
|
|
6948
|
+
.modal-cart[data-v-c359b5e7] .cart-image {
|
|
6921
6949
|
width: 8rem;
|
|
6922
6950
|
}
|
|
6923
|
-
.modal-cart[data-v-
|
|
6951
|
+
.modal-cart[data-v-c359b5e7] .cart-option {
|
|
6924
6952
|
width: 75%;
|
|
6925
6953
|
}
|
|
6926
|
-
.success-bar[data-v-
|
|
6954
|
+
.success-bar[data-v-c359b5e7] {
|
|
6927
6955
|
width: 50%;
|
|
6928
6956
|
}
|
|
6929
6957
|
}
|
|
6930
6958
|
@media (max-width: 640px) {
|
|
6931
|
-
.success-bar[data-v-
|
|
6959
|
+
.success-bar[data-v-c359b5e7] {
|
|
6932
6960
|
width: 91.666667%;
|
|
6933
6961
|
}
|
|
6934
6962
|
}
|
|
@@ -1100,9 +1100,15 @@ a.maker-anchor {
|
|
|
1100
1100
|
.bp .tw-min-w-8 {
|
|
1101
1101
|
min-width: 2rem
|
|
1102
1102
|
}
|
|
1103
|
+
.bp .tw-min-w-\[120px\] {
|
|
1104
|
+
min-width: 120px
|
|
1105
|
+
}
|
|
1103
1106
|
.bp .tw-min-w-\[310px\] {
|
|
1104
1107
|
min-width: 310px
|
|
1105
1108
|
}
|
|
1109
|
+
.bp .tw-min-w-full {
|
|
1110
|
+
min-width: 100%
|
|
1111
|
+
}
|
|
1106
1112
|
.bp .tw-max-w-0 {
|
|
1107
1113
|
max-width: 0px
|
|
1108
1114
|
}
|
|
@@ -1442,16 +1448,6 @@ a.maker-anchor {
|
|
|
1442
1448
|
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1443
1449
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
1444
1450
|
}
|
|
1445
|
-
.bp .tw-translate-y-\[-10\%\] {
|
|
1446
|
-
--tw-translate-y: -10%;
|
|
1447
|
-
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1448
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
1449
|
-
}
|
|
1450
|
-
.bp .tw-translate-y-\[-4\%\] {
|
|
1451
|
-
--tw-translate-y: -4%;
|
|
1452
|
-
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1453
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
1454
|
-
}
|
|
1455
1451
|
.bp .tw-translate-y-px {
|
|
1456
1452
|
--tw-translate-y: 1px;
|
|
1457
1453
|
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -3025,9 +3021,6 @@ a.maker-anchor {
|
|
|
3025
3021
|
.bp .tw-leading-tight {
|
|
3026
3022
|
line-height: 1.25
|
|
3027
3023
|
}
|
|
3028
|
-
.bp .tw-text-\[var\(--icon-color\)\] {
|
|
3029
|
-
color: var(--icon-color)
|
|
3030
|
-
}
|
|
3031
3024
|
.bp .tw-text-black {
|
|
3032
3025
|
--tw-text-opacity: 1;
|
|
3033
3026
|
color: rgb(0 0 0 / var(--tw-text-opacity))
|
|
@@ -5662,39 +5655,72 @@ input[data-v-4cd691db]::-webkit-inner-spin-button {
|
|
|
5662
5655
|
max-height: 45vh;
|
|
5663
5656
|
}
|
|
5664
5657
|
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5658
|
+
/* Decorative styles on submit buttons render flush at the bottom. Zero the host
|
|
5659
|
+
button's own margins: its decoration is positioned relative to the WRAPPER, so a
|
|
5660
|
+
margin on the button itself shifts it out of alignment with the decoration. The
|
|
5661
|
+
top gap is instead applied to the wrapper (tw-mt-4 above) so the whole decorated
|
|
5662
|
+
unit moves together and stays flush at the container's bottom edge (BP-5800). */
|
|
5663
|
+
.bp .bp-style-wrapper--no-margin[data-v-255edfd5] button {
|
|
5664
|
+
margin-top: 0;
|
|
5665
|
+
margin-bottom: 0;
|
|
5670
5666
|
}
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
.bp .bp-button-paper-top[data-v-604db8c6] svg,
|
|
5678
|
-
.bp .bp-button-paper-bottom[data-v-604db8c6] svg {
|
|
5679
|
-
width: 100%;
|
|
5680
|
-
height: auto;
|
|
5667
|
+
|
|
5668
|
+
/* Brushstroke: flanking brush-end icons are transformed over the button's
|
|
5669
|
+
left/right edges, so they must not capture clicks (BP-5882). */
|
|
5670
|
+
.bp .bp-icon-brush-left[data-v-255edfd5],
|
|
5671
|
+
.bp .bp-icon-brush-right[data-v-255edfd5] {
|
|
5672
|
+
pointer-events: none;
|
|
5681
5673
|
}
|
|
5682
|
-
.bp .bp-icon-brush-left[data-v-
|
|
5674
|
+
.bp .bp-icon-brush-left[data-v-255edfd5] svg {
|
|
5683
5675
|
-webkit-transform: translateX(-99%);
|
|
5684
5676
|
transform: translateX(-99%);
|
|
5685
5677
|
width: auto;
|
|
5686
5678
|
}
|
|
5687
|
-
.bp .bp-icon-brush-right[data-v-
|
|
5679
|
+
.bp .bp-icon-brush-right[data-v-255edfd5] svg {
|
|
5688
5680
|
width: auto;
|
|
5689
5681
|
}
|
|
5690
|
-
|
|
5691
|
-
|
|
5692
|
-
|
|
5682
|
+
|
|
5683
|
+
/* Torn-paper: the button-paper icon sits BEHIND the button as its shape. The
|
|
5684
|
+
wrapper is the positioning context; the icon is an inert inset layer that fills
|
|
5685
|
+
the button box exactly (inset:0 + preserveAspectRatio none) without inflating
|
|
5686
|
+
its size or capturing clicks (BP-5882/BP-5883). The button's own fill is made
|
|
5687
|
+
transparent so the icon's colour shows through. */
|
|
5688
|
+
.bp .bp-button-shape[data-v-255edfd5] {
|
|
5689
|
+
position: relative;
|
|
5693
5690
|
}
|
|
5694
|
-
|
|
5695
|
-
|
|
5696
|
-
|
|
5691
|
+
.bp .bp-icon-shape[data-v-255edfd5] {
|
|
5692
|
+
position: absolute;
|
|
5693
|
+
inset: 0;
|
|
5694
|
+
width: 100%;
|
|
5695
|
+
height: 100%;
|
|
5696
|
+
pointer-events: none;
|
|
5697
|
+
}
|
|
5698
|
+
.bp .bp-button-shape[data-v-255edfd5] button,
|
|
5699
|
+
.bp .bp-button-shape[data-v-255edfd5] a {
|
|
5700
|
+
position: relative; /* sit above the inert background */
|
|
5701
|
+
/* !important to override the host button's inline background-color. */
|
|
5702
|
+
background-color: transparent !important;
|
|
5697
5703
|
}
|
|
5704
|
+
/* button-paper ships hardcoded fill="black"; recolour to the button's fill. CSS
|
|
5705
|
+
fill overrides the presentation attribute; clip-path rects are geometric so
|
|
5706
|
+
recolouring them is harmless. */
|
|
5707
|
+
.bp .bp-icon-shape[data-v-255edfd5] path,
|
|
5708
|
+
.bp .bp-icon-shape[data-v-255edfd5] rect {
|
|
5709
|
+
fill: currentColor;
|
|
5710
|
+
}
|
|
5711
|
+
.bp .bp-button-arrow[data-v-255edfd5],
|
|
5712
|
+
.bp .device-wrapper--mobile .bp-button-arrow[data-v-255edfd5] {
|
|
5713
|
+
/* Fixed-px arrowhead (not %) so the chevron is equally sharp at any button
|
|
5714
|
+
width — a %-based point collapses on narrow buttons (e.g. the 120px contact
|
|
5715
|
+
form submit) and only reads as an arrow on wide ones. */
|
|
5716
|
+
clip-path: polygon(
|
|
5717
|
+
12px 100%,
|
|
5718
|
+
0 50%,
|
|
5719
|
+
12px 0,
|
|
5720
|
+
calc(100% - 12px) 0,
|
|
5721
|
+
100% 50%,
|
|
5722
|
+
calc(100% - 12px) 100%
|
|
5723
|
+
);
|
|
5698
5724
|
}
|
|
5699
5725
|
|
|
5700
5726
|
.bp .empty-para[data-v-2520851c] p:empty::after {
|
|
@@ -5808,7 +5834,7 @@ input[data-v-4cd691db]::-webkit-inner-spin-button {
|
|
|
5808
5834
|
text-decoration: underline;
|
|
5809
5835
|
}
|
|
5810
5836
|
|
|
5811
|
-
.bp .form-error[data-v-
|
|
5837
|
+
.bp .form-error[data-v-b7e55081] {
|
|
5812
5838
|
font-size: 0.875rem;
|
|
5813
5839
|
line-height: 1.25rem;
|
|
5814
5840
|
color: #f21b3f
|
|
@@ -6063,14 +6089,10 @@ select[data-v-14e7c7c7] {
|
|
|
6063
6089
|
background-position: right 12px center;
|
|
6064
6090
|
}
|
|
6065
6091
|
|
|
6066
|
-
.bp .form-error[data-v-
|
|
6092
|
+
.bp .form-error[data-v-0cc4cbbd] {
|
|
6067
6093
|
font-size: 0.75rem;
|
|
6068
6094
|
line-height: 1rem;
|
|
6069
|
-
color: #f21b3f
|
|
6070
|
-
}
|
|
6071
|
-
.bp .pay-button-disabled[data-v-7731d899] {
|
|
6072
|
-
opacity: 0.5 !important;
|
|
6073
|
-
pointer-events: none;
|
|
6095
|
+
color: #f21b3f
|
|
6074
6096
|
}
|
|
6075
6097
|
|
|
6076
6098
|
/* TODO: review CSS setup, scoped CSS will not work in slot */
|
|
@@ -6166,53 +6188,59 @@ select[data-v-14e7c7c7] {
|
|
|
6166
6188
|
width: 100%;
|
|
6167
6189
|
}
|
|
6168
6190
|
|
|
6169
|
-
.bp .form-error[data-v-
|
|
6191
|
+
.bp .form-error[data-v-109ad6ae] {
|
|
6170
6192
|
font-size: 0.875rem;
|
|
6171
6193
|
line-height: 1.25rem;
|
|
6172
6194
|
color: #f21b3f;
|
|
6173
6195
|
}
|
|
6174
|
-
.bp .contact-container[data-v-
|
|
6196
|
+
.bp .contact-container[data-v-109ad6ae] {
|
|
6175
6197
|
max-width: var(--brandsite-max-width);
|
|
6176
6198
|
margin: 0 auto;
|
|
6177
6199
|
}
|
|
6178
|
-
.bp .c-text-padding[data-v-
|
|
6200
|
+
.bp .c-text-padding[data-v-109ad6ae] {
|
|
6179
6201
|
padding-left: 1rem;
|
|
6180
6202
|
padding-right: 1rem;
|
|
6181
6203
|
}
|
|
6182
|
-
.bp .device-wrapper--mobile .c-divided-container[data-v-
|
|
6204
|
+
.bp .device-wrapper--mobile .c-divided-container[data-v-109ad6ae] {
|
|
6183
6205
|
-webkit-box-orient: vertical;
|
|
6184
6206
|
-webkit-box-direction: normal;
|
|
6185
6207
|
-ms-flex-direction: column;
|
|
6186
6208
|
flex-direction: column;
|
|
6187
6209
|
}
|
|
6188
|
-
.bp .device-wrapper--mobile .c-divided-container-reverse[data-v-
|
|
6210
|
+
.bp .device-wrapper--mobile .c-divided-container-reverse[data-v-109ad6ae] {
|
|
6189
6211
|
-webkit-box-orient: vertical;
|
|
6190
6212
|
-webkit-box-direction: reverse;
|
|
6191
6213
|
-ms-flex-direction: column-reverse;
|
|
6192
6214
|
flex-direction: column-reverse;
|
|
6193
6215
|
}
|
|
6194
6216
|
@media (max-width: 767px) {
|
|
6195
|
-
.bp .c-button-full[data-v-
|
|
6217
|
+
.bp .c-button-full[data-v-109ad6ae] {
|
|
6218
|
+
width: 100%;
|
|
6219
|
+
}
|
|
6220
|
+
/* Match the button's full-width on published mobile. The maker uses the
|
|
6221
|
+
isMobileDevice prop for this; the renderer has no such state, so the
|
|
6222
|
+
decorative-button wrapper is widened here via the real viewport instead. */
|
|
6223
|
+
[data-v-109ad6ae] .bp-style-wrapper {
|
|
6196
6224
|
width: 100%;
|
|
6197
6225
|
}
|
|
6198
|
-
.bp .c-col-span-2[data-v-
|
|
6226
|
+
.bp .c-col-span-2[data-v-109ad6ae] {
|
|
6199
6227
|
grid-column: span 2 / span 2;
|
|
6200
6228
|
}
|
|
6201
|
-
.bp .c-mobile-padding[data-v-
|
|
6229
|
+
.bp .c-mobile-padding[data-v-109ad6ae] {
|
|
6202
6230
|
padding: 1rem;
|
|
6203
6231
|
}
|
|
6204
|
-
.bp .c-text-padding[data-v-
|
|
6232
|
+
.bp .c-text-padding[data-v-109ad6ae] {
|
|
6205
6233
|
grid-column: span 2 / span 2;
|
|
6206
6234
|
padding-left: 0px;
|
|
6207
6235
|
padding-right: 0px;
|
|
6208
6236
|
}
|
|
6209
|
-
.bp .c-divided-container[data-v-
|
|
6237
|
+
.bp .c-divided-container[data-v-109ad6ae] {
|
|
6210
6238
|
-webkit-box-orient: vertical;
|
|
6211
6239
|
-webkit-box-direction: normal;
|
|
6212
6240
|
-ms-flex-direction: column;
|
|
6213
6241
|
flex-direction: column;
|
|
6214
6242
|
}
|
|
6215
|
-
.bp .c-divided-container-reverse[data-v-
|
|
6243
|
+
.bp .c-divided-container-reverse[data-v-109ad6ae] {
|
|
6216
6244
|
-webkit-box-orient: vertical;
|
|
6217
6245
|
-webkit-box-direction: reverse;
|
|
6218
6246
|
-ms-flex-direction: column-reverse;
|
|
@@ -6220,16 +6248,16 @@ select[data-v-14e7c7c7] {
|
|
|
6220
6248
|
}
|
|
6221
6249
|
}
|
|
6222
6250
|
@media (min-width: 767px) {
|
|
6223
|
-
.bp .c-aspect-square[data-v-
|
|
6251
|
+
.bp .c-aspect-square[data-v-109ad6ae] {
|
|
6224
6252
|
aspect-ratio: 1 / 1;
|
|
6225
6253
|
}
|
|
6226
|
-
.bp .c-divided-container[data-v-
|
|
6254
|
+
.bp .c-divided-container[data-v-109ad6ae] {
|
|
6227
6255
|
-webkit-box-orient: horizontal;
|
|
6228
6256
|
-webkit-box-direction: normal;
|
|
6229
6257
|
-ms-flex-direction: row;
|
|
6230
6258
|
flex-direction: row;
|
|
6231
6259
|
}
|
|
6232
|
-
.bp .c-divided-container-reverse[data-v-
|
|
6260
|
+
.bp .c-divided-container-reverse[data-v-109ad6ae] {
|
|
6233
6261
|
-webkit-box-orient: horizontal;
|
|
6234
6262
|
-webkit-box-direction: reverse;
|
|
6235
6263
|
-ms-flex-direction: row-reverse;
|
|
@@ -6861,44 +6889,44 @@ select[data-v-14e7c7c7] {
|
|
|
6861
6889
|
color: #f21b3f;
|
|
6862
6890
|
}
|
|
6863
6891
|
|
|
6864
|
-
.bp .inner-container[data-v-
|
|
6892
|
+
.bp .inner-container[data-v-c359b5e7] {
|
|
6865
6893
|
max-width: var(--brandsite-max-width);
|
|
6866
6894
|
margin: 0 auto;
|
|
6867
6895
|
}
|
|
6868
|
-
.bp .outer-container[data-v-
|
|
6896
|
+
.bp .outer-container[data-v-c359b5e7] {
|
|
6869
6897
|
padding-left: var(--page-padding);
|
|
6870
6898
|
padding-right: var(--page-padding);
|
|
6871
6899
|
}
|
|
6872
|
-
.bp .modal-cart[data-v-
|
|
6900
|
+
.bp .modal-cart[data-v-c359b5e7] .cart-image {
|
|
6873
6901
|
width: 3rem;
|
|
6874
6902
|
}
|
|
6875
|
-
.bp .modal-cart[data-v-
|
|
6903
|
+
.bp .modal-cart[data-v-c359b5e7] .cart-option {
|
|
6876
6904
|
width: 100%;
|
|
6877
6905
|
}
|
|
6878
|
-
.bp .success-bar-container[data-v-
|
|
6906
|
+
.bp .success-bar-container[data-v-c359b5e7] .tw-bg-success-500 {
|
|
6879
6907
|
--tw-bg-opacity: 1;
|
|
6880
6908
|
background-color: rgb(36 168 16 / var(--tw-bg-opacity));
|
|
6881
6909
|
}
|
|
6882
6910
|
@media (min-width: 640px) {
|
|
6883
|
-
.bp .modal-product-detail[data-v-
|
|
6911
|
+
.bp .modal-product-detail[data-v-c359b5e7] .modal {
|
|
6884
6912
|
min-width: 100vh;
|
|
6885
6913
|
}
|
|
6886
|
-
.bp .modal-cart[data-v-
|
|
6914
|
+
.bp .modal-cart[data-v-c359b5e7] .modal {
|
|
6887
6915
|
min-width: 90vh;
|
|
6888
6916
|
max-height: 90vh;
|
|
6889
6917
|
}
|
|
6890
|
-
.bp .modal-cart[data-v-
|
|
6918
|
+
.bp .modal-cart[data-v-c359b5e7] .cart-image {
|
|
6891
6919
|
width: 8rem;
|
|
6892
6920
|
}
|
|
6893
|
-
.bp .modal-cart[data-v-
|
|
6921
|
+
.bp .modal-cart[data-v-c359b5e7] .cart-option {
|
|
6894
6922
|
width: 75%;
|
|
6895
6923
|
}
|
|
6896
|
-
.bp .success-bar[data-v-
|
|
6924
|
+
.bp .success-bar[data-v-c359b5e7] {
|
|
6897
6925
|
width: 50%;
|
|
6898
6926
|
}
|
|
6899
6927
|
}
|
|
6900
6928
|
@media (max-width: 640px) {
|
|
6901
|
-
.bp .success-bar[data-v-
|
|
6929
|
+
.bp .success-bar[data-v-c359b5e7] {
|
|
6902
6930
|
width: 91.666667%;
|
|
6903
6931
|
}
|
|
6904
6932
|
}
|
package/lib/src/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as T, a as E, b as s, c as I, d as S, e as N, f as e, B as A, g as O, h as C, i as t, j as G, k as D, l as P, m as R, n as o, o as L, p as M, q as r, r as n, s as b, t as l, u as F, v as i, w as g, x as c, y as B, z as Y, C as U, D as d, E as u, F as H, G as p, H as y, I as m, J as K, K as k, L as V, M as X, N as v, O as h, P as f, Q as x, R as W, S as z, T as w, U as Z, V as j, W as q, X as J, Y as Q, Z as $, $ as aa, a0 as _a, a1 as Ta, a2 as Ea, a3 as sa, a4 as Ia, a5 as Sa, a6 as Na, a7 as ea, a8 as Aa, a9 as Oa, aa as Ca, ab as ta, ac as Ga, ad as Da, ae as Pa, af as Ra, ag as oa, ah as La, ai as Ma, aj as ra, ak as na, al as ba, am as la, an as Fa, ao as ia, ap as ga, aq as ca, ar as Ba, as as Ya, at as Ua, au as da, av as ua, aw as Ha, ax as pa, ay as ya, az as ma, aA as Ka, aB as ka, aC as Va, aD as Xa, aE as va, aF as ha, aG as fa, aH as xa, aI as Wa, aJ as za, aK as wa, aL as Za, aM as ja, aN as qa, aO as Ja, aP as Qa, aQ as $a, aR as a_, aS as __, aT as T_, aU as E_, aV as s_, aW as I_, aX as S_, aY as N_, aZ as e_, a_ as A_, a$ as O_, b0 as C_, b1 as t_, b2 as G_, b3 as D_, b4 as P_, b5 as R_, b6 as o_, b7 as L_, b8 as M_, b9 as r_, ba as n_, bb as b_, bc as l_, bd as F_, be as i_, bf as g_, bg as c_, bh as B_, bi as Y_, bj as U_, bk as d_, bl as u_, bm as H_, bn as p_, bo as y_, bp as m_, bq as K_, br as k_, bs as V_, bt as X_, bu as v_, bv as h_, bw as f_, bx as x_, by as W_, bz as z_, bA as w_, bB as Z_, bC as j_, bD as q_, bE as J_, bF as Q_, bG as $_, bH as aT, bI as _T, bJ as TT, bK as ET, bL as sT, bM as IT, bN as ST, bO as NT, bP as eT, bQ as AT, bR as OT, bS as CT, bT as tT, bU as GT, bV as DT, bW as PT, bX as RT, bY as oT, bZ as LT, b_ as MT, b$ as rT, c0 as nT, c1 as bT, c2 as lT, c3 as FT, c4 as iT, c5 as gT, c6 as cT, c7 as BT, c8 as YT, c9 as UT, ca as dT, cb as uT, cc as HT, cd as pT, ce as yT, cf as mT, cg as KT, ch as kT, ci as VT, cj as XT, ck as vT, cl as hT, cm as fT, cn as xT, co as WT, cp as zT, cq as wT, cr as ZT, cs as jT } from "./lib-
|
|
1
|
+
import { A as T, a as E, b as s, c as I, d as S, e as N, f as e, B as A, g as O, h as C, i as t, j as G, k as D, l as P, m as R, n as o, o as L, p as M, q as r, r as n, s as b, t as l, u as F, v as i, w as g, x as c, y as B, z as Y, C as U, D as d, E as u, F as H, G as p, H as y, I as m, J as K, K as k, L as V, M as X, N as v, O as h, P as f, Q as x, R as W, S as z, T as w, U as Z, V as j, W as q, X as J, Y as Q, Z as $, $ as aa, a0 as _a, a1 as Ta, a2 as Ea, a3 as sa, a4 as Ia, a5 as Sa, a6 as Na, a7 as ea, a8 as Aa, a9 as Oa, aa as Ca, ab as ta, ac as Ga, ad as Da, ae as Pa, af as Ra, ag as oa, ah as La, ai as Ma, aj as ra, ak as na, al as ba, am as la, an as Fa, ao as ia, ap as ga, aq as ca, ar as Ba, as as Ya, at as Ua, au as da, av as ua, aw as Ha, ax as pa, ay as ya, az as ma, aA as Ka, aB as ka, aC as Va, aD as Xa, aE as va, aF as ha, aG as fa, aH as xa, aI as Wa, aJ as za, aK as wa, aL as Za, aM as ja, aN as qa, aO as Ja, aP as Qa, aQ as $a, aR as a_, aS as __, aT as T_, aU as E_, aV as s_, aW as I_, aX as S_, aY as N_, aZ as e_, a_ as A_, a$ as O_, b0 as C_, b1 as t_, b2 as G_, b3 as D_, b4 as P_, b5 as R_, b6 as o_, b7 as L_, b8 as M_, b9 as r_, ba as n_, bb as b_, bc as l_, bd as F_, be as i_, bf as g_, bg as c_, bh as B_, bi as Y_, bj as U_, bk as d_, bl as u_, bm as H_, bn as p_, bo as y_, bp as m_, bq as K_, br as k_, bs as V_, bt as X_, bu as v_, bv as h_, bw as f_, bx as x_, by as W_, bz as z_, bA as w_, bB as Z_, bC as j_, bD as q_, bE as J_, bF as Q_, bG as $_, bH as aT, bI as _T, bJ as TT, bK as ET, bL as sT, bM as IT, bN as ST, bO as NT, bP as eT, bQ as AT, bR as OT, bS as CT, bT as tT, bU as GT, bV as DT, bW as PT, bX as RT, bY as oT, bZ as LT, b_ as MT, b$ as rT, c0 as nT, c1 as bT, c2 as lT, c3 as FT, c4 as iT, c5 as gT, c6 as cT, c7 as BT, c8 as YT, c9 as UT, ca as dT, cb as uT, cc as HT, cd as pT, ce as yT, cf as mT, cg as KT, ch as kT, ci as VT, cj as XT, ck as vT, cl as hT, cm as fT, cn as xT, co as WT, cp as zT, cq as wT, cr as ZT, cs as jT } from "./lib-Dh4vrmod.js";
|
|
2
2
|
import { U as JT, u as QT } from "./useEventTracker-DmQ6AkNn.js";
|
|
3
3
|
import { createPinia as aE, setActivePinia as _E } from "pinia";
|
|
4
4
|
export {
|