@designcrowd/library.brand-page 6.0.6-undo-6 → 6.0.6-undo-8
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-BfSQG4or.js → CreatedOnBrandCrowd-de-de-DdT7VIEh.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-en-us-CO07UsMZ.js → CreatedOnBrandCrowd-en-us-YSkiGVKr.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-es-es-BElFyN72.js → CreatedOnBrandCrowd-es-es-1EPcCaOy.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-fr-fr-DnTxsYIb.js → CreatedOnBrandCrowd-fr-ca-C8fnEHlw.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-fr-ca-DnTxsYIb.js → CreatedOnBrandCrowd-fr-fr-C8fnEHlw.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-pt-pt-DSMhWz5Z.js → CreatedOnBrandCrowd-pt-br-Dl3Se_ur.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-pt-br-DSMhWz5Z.js → CreatedOnBrandCrowd-pt-pt-Dl3Se_ur.js} +1 -1
- package/lib/src/{CreatedOnDcom-de-de-C2469ycC.js → CreatedOnDcom-de-de-rXbL8YwY.js} +1 -1
- package/lib/src/{CreatedOnDcom-en-us-Cvz7kq6J.js → CreatedOnDcom-en-us-Bm9CAhKw.js} +1 -1
- package/lib/src/{CreatedOnDcom-es-es-BvDTs1Y_.js → CreatedOnDcom-es-es-B8diEgO8.js} +1 -1
- package/lib/src/{CreatedOnDcom-fr-ca-vJ9zwwPI.js → CreatedOnDcom-fr-ca-b6jqk1vU.js} +1 -1
- package/lib/src/{CreatedOnDcom-fr-fr-D90gm3ay.js → CreatedOnDcom-fr-fr-ECBv8SyF.js} +1 -1
- package/lib/src/{CreatedOnDcom-pt-br-C1VGGfTF.js → CreatedOnDcom-pt-br-C7THecsn.js} +1 -1
- package/lib/src/{CreatedOnDcom-pt-pt-DGL1py4g.js → CreatedOnDcom-pt-pt-C7f06hrr.js} +1 -1
- package/lib/src/brand-page-maker/stores/brandpage-maker/brandpage-maker-store.js +65 -54
- package/lib/src/css/library.brand-page-brandCrowd.min.css +13 -13
- package/lib/src/css/library.brand-page-brandPage.min.css +13 -13
- package/lib/src/css/library.brand-page-designCom.min.css +13 -13
- package/lib/src/css/library.brand-page-preview.min.css +13 -13
- package/lib/src/index.mjs +1 -1
- package/lib/src/{lib-nGjOXase.js → lib-DQvE17ni.js} +612 -602
- package/package.json +1 -1
- package/src/brand-page/components/shop/Shop.vue +0 -1
- package/src/brand-page-maker/components/quick-link-bar/RedoButton.vue +9 -1
- package/src/brand-page-maker/components/quick-link-bar/UndoButton.vue +9 -1
- package/src/brand-page-maker/components/quick-link-bar/undo-redo-buttons.test.ts +29 -2
- package/src/brand-page-maker/stores/brandpage-maker/brandpage-maker-store.test.ts +130 -0
- package/src/brand-page-maker/stores/brandpage-maker/brandpage-maker-store.ts +71 -62
|
@@ -634,66 +634,77 @@ export const useBrandPageMakerStore = defineStore('brandPageMaker', {
|
|
|
634
634
|
const logoImage = logoUtil.getLogoImageFromModel(snapshot);
|
|
635
635
|
if (!logoImage)
|
|
636
636
|
return;
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
// Re-derive enableEditMode + templateAsset from the draft registry
|
|
650
|
-
// (append-only for the session) instead of stashing on every entry.
|
|
651
|
-
const draft = logoStore.getLogoDraftAssetByToken(draftToken);
|
|
652
|
-
if (draft) {
|
|
653
|
-
editableLogoStore.setEnableEditMode(!draft.isByo);
|
|
654
|
-
if (draft.templateAsset) {
|
|
655
|
-
logoStore.setLogoTemplateAsset(draft.templateAsset);
|
|
637
|
+
try {
|
|
638
|
+
const draftToken = logoImage.logoDraftToken;
|
|
639
|
+
if (!draftToken)
|
|
640
|
+
return;
|
|
641
|
+
// Re-derive enableEditMode + templateAsset from the draft registry
|
|
642
|
+
// (append-only for the session) instead of stashing on every entry.
|
|
643
|
+
const draft = logoStore.getLogoDraftAssetByToken(draftToken);
|
|
644
|
+
if (draft) {
|
|
645
|
+
editableLogoStore.setEnableEditMode(!draft.isByo);
|
|
646
|
+
if (draft.templateAsset) {
|
|
647
|
+
logoStore.setLogoTemplateAsset(draft.templateAsset);
|
|
648
|
+
}
|
|
656
649
|
}
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
(
|
|
663
|
-
if (logoUnchanged) {
|
|
664
|
-
editableLogoStore.stampLogoBase64IntoBrandPageData();
|
|
665
|
-
return;
|
|
666
|
-
}
|
|
667
|
-
const isByo = !!draft?.isByo;
|
|
668
|
-
if (isByo) {
|
|
669
|
-
// BYO mints a fresh draftToken per upload so the per-token
|
|
670
|
-
// cache always matches; no re-render needed.
|
|
671
|
-
if (editableLogoStore.restoreVariationsForDraftToken(draftToken)) {
|
|
650
|
+
editableLogoStore.setLogoDraftToken(draftToken);
|
|
651
|
+
// No logo change → cache is still correct; just stamp base64 back
|
|
652
|
+
// (snapshot doesn't carry logoImageBase64Url).
|
|
653
|
+
const logoUnchanged = prevDraftToken === draftToken &&
|
|
654
|
+
(logoEditsStr === undefined || logoEditsStr === prevLogoEditsStr);
|
|
655
|
+
if (logoUnchanged) {
|
|
672
656
|
editableLogoStore.stampLogoBase64IntoBrandPageData();
|
|
657
|
+
return;
|
|
673
658
|
}
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
logoEditsStr &&
|
|
683
|
-
logoStore.logoTemplateAsset) {
|
|
684
|
-
// Stamp the cached (pre-undo) base64 onto brandPageData first
|
|
685
|
-
// so the canvas keeps showing the previous logo while the
|
|
686
|
-
// re-render is in flight. Without this the logoImageBase64Url
|
|
687
|
-
// fields are undefined (snapshot is stripped pre-purchase) and
|
|
688
|
-
// the canvas flickers blank for ~500-1500ms.
|
|
689
|
-
editableLogoStore.stampLogoBase64IntoBrandPageData();
|
|
690
|
-
try {
|
|
691
|
-
await editableLogoStore.updateEditableLogoImageUrlAsync();
|
|
659
|
+
const isByo = !!draft?.isByo;
|
|
660
|
+
if (isByo) {
|
|
661
|
+
// BYO mints a fresh draftToken per upload so the per-token
|
|
662
|
+
// cache always matches; no re-render needed.
|
|
663
|
+
if (editableLogoStore.restoreVariationsForDraftToken(draftToken)) {
|
|
664
|
+
editableLogoStore.stampLogoBase64IntoBrandPageData();
|
|
665
|
+
}
|
|
666
|
+
return;
|
|
692
667
|
}
|
|
693
|
-
|
|
694
|
-
|
|
668
|
+
// Designed: draft token is reused across edits, so the cache
|
|
669
|
+
// only holds the latest render. Re-issue fabric-render — same
|
|
670
|
+
// call as the live edit path. Awaited so concurrent undos
|
|
671
|
+
// serialize and the call sits inside the isApplyingSnapshot
|
|
672
|
+
// window (watcher guard suppresses the writeback).
|
|
673
|
+
if (containerStore.isPrePurchase &&
|
|
674
|
+
logoEditsStr &&
|
|
675
|
+
logoStore.logoTemplateAsset) {
|
|
676
|
+
// Stamp the cached (pre-undo) base64 onto brandPageData first
|
|
677
|
+
// so the canvas keeps showing the previous logo while the
|
|
678
|
+
// re-render is in flight. Without this the logoImageBase64Url
|
|
679
|
+
// fields are undefined (snapshot is stripped pre-purchase) and
|
|
680
|
+
// the canvas flickers blank for ~500-1500ms.
|
|
681
|
+
editableLogoStore.stampLogoBase64IntoBrandPageData();
|
|
682
|
+
try {
|
|
683
|
+
await editableLogoStore.updateEditableLogoImageUrlAsync();
|
|
684
|
+
}
|
|
685
|
+
catch (error) {
|
|
686
|
+
console.error('brandpage-maker-store: failed to re-render logo on history apply', error);
|
|
687
|
+
}
|
|
695
688
|
}
|
|
696
689
|
}
|
|
690
|
+
finally {
|
|
691
|
+
// Assign a FRESH object — the same way the upload/selection flows
|
|
692
|
+
// write selectedLogoImage. A setState/$patch here deep-merges into
|
|
693
|
+
// the existing object, so the templates store's deep watcher would
|
|
694
|
+
// receive old === new (same reference), see no logoDraftToken
|
|
695
|
+
// change, and never refetch the template previews (BP-5814).
|
|
696
|
+
//
|
|
697
|
+
// Set LAST — after the branch above has prepared the preview key
|
|
698
|
+
// (BYO cache restore, or the awaited designed re-render that mints
|
|
699
|
+
// the s3 token) — so the watcher always fires with a fetchable key,
|
|
700
|
+
// the same precondition that makes the upload flow work. Firing it
|
|
701
|
+
// before the re-render fetched the template list with the previous
|
|
702
|
+
// render's s3 token: an obsolete list that repainted seconds later
|
|
703
|
+
// (the undo "flash"). The sidebar instead holds the previous
|
|
704
|
+
// previews while the render is in flight, matching the canvas
|
|
705
|
+
// policy above.
|
|
706
|
+
logoSettingsStore.setSelectedLogoImage({ ...logoImage });
|
|
707
|
+
}
|
|
697
708
|
},
|
|
698
709
|
/**
|
|
699
710
|
* Restore the active page after a history apply. The id passed in is
|
|
@@ -6852,44 +6852,44 @@ select[data-v-14e7c7c7] {
|
|
|
6852
6852
|
color: #f21b3f;
|
|
6853
6853
|
}
|
|
6854
6854
|
|
|
6855
|
-
.inner-container[data-v-
|
|
6855
|
+
.inner-container[data-v-24954146] {
|
|
6856
6856
|
max-width: var(--brandsite-max-width);
|
|
6857
6857
|
margin: 0 auto;
|
|
6858
6858
|
}
|
|
6859
|
-
.outer-container[data-v-
|
|
6859
|
+
.outer-container[data-v-24954146] {
|
|
6860
6860
|
padding-left: var(--page-padding);
|
|
6861
6861
|
padding-right: var(--page-padding);
|
|
6862
6862
|
}
|
|
6863
|
-
.modal-cart[data-v-
|
|
6863
|
+
.modal-cart[data-v-24954146] .cart-image {
|
|
6864
6864
|
width: 3rem;
|
|
6865
6865
|
}
|
|
6866
|
-
.modal-cart[data-v-
|
|
6866
|
+
.modal-cart[data-v-24954146] .cart-option {
|
|
6867
6867
|
width: 100%;
|
|
6868
6868
|
}
|
|
6869
|
-
.success-bar-container[data-v-
|
|
6869
|
+
.success-bar-container[data-v-24954146] .tw-bg-success-500 {
|
|
6870
6870
|
--tw-bg-opacity: 1;
|
|
6871
6871
|
background-color: rgb(36 168 16 / var(--tw-bg-opacity));
|
|
6872
6872
|
}
|
|
6873
6873
|
@media (min-width: 640px) {
|
|
6874
|
-
.modal-product-detail[data-v-
|
|
6874
|
+
.modal-product-detail[data-v-24954146] .modal {
|
|
6875
6875
|
min-width: 100vh;
|
|
6876
6876
|
}
|
|
6877
|
-
.modal-cart[data-v-
|
|
6877
|
+
.modal-cart[data-v-24954146] .modal {
|
|
6878
6878
|
min-width: 90vh;
|
|
6879
6879
|
max-height: 90vh;
|
|
6880
6880
|
}
|
|
6881
|
-
.modal-cart[data-v-
|
|
6881
|
+
.modal-cart[data-v-24954146] .cart-image {
|
|
6882
6882
|
width: 8rem;
|
|
6883
6883
|
}
|
|
6884
|
-
.modal-cart[data-v-
|
|
6884
|
+
.modal-cart[data-v-24954146] .cart-option {
|
|
6885
6885
|
width: 75%;
|
|
6886
6886
|
}
|
|
6887
|
-
.success-bar[data-v-
|
|
6887
|
+
.success-bar[data-v-24954146] {
|
|
6888
6888
|
width: 50%;
|
|
6889
6889
|
}
|
|
6890
6890
|
}
|
|
6891
6891
|
@media (max-width: 640px) {
|
|
6892
|
-
.success-bar[data-v-
|
|
6892
|
+
.success-bar[data-v-24954146] {
|
|
6893
6893
|
width: 91.666667%;
|
|
6894
6894
|
}
|
|
6895
6895
|
}
|
|
@@ -9240,12 +9240,12 @@ input.dynamic-width-input[data-v-97be2e87]:focus {
|
|
|
9240
9240
|
background-attachment: scroll !important;
|
|
9241
9241
|
}
|
|
9242
9242
|
|
|
9243
|
-
.c-undo-button-tooltip[data-v-
|
|
9243
|
+
.c-undo-button-tooltip[data-v-9c6ca156] .shared-tooltip__body {
|
|
9244
9244
|
width: auto;
|
|
9245
9245
|
padding: 4px 8px;
|
|
9246
9246
|
}
|
|
9247
9247
|
|
|
9248
|
-
.c-redo-button-tooltip[data-v-
|
|
9248
|
+
.c-redo-button-tooltip[data-v-346c90b7] .shared-tooltip__body {
|
|
9249
9249
|
width: auto;
|
|
9250
9250
|
padding: 4px 8px;
|
|
9251
9251
|
}
|
|
@@ -7463,44 +7463,44 @@ select[data-v-14e7c7c7] {
|
|
|
7463
7463
|
color: #f21b3f;
|
|
7464
7464
|
}
|
|
7465
7465
|
|
|
7466
|
-
.inner-container[data-v-
|
|
7466
|
+
.inner-container[data-v-24954146] {
|
|
7467
7467
|
max-width: var(--brandsite-max-width);
|
|
7468
7468
|
margin: 0 auto;
|
|
7469
7469
|
}
|
|
7470
|
-
.outer-container[data-v-
|
|
7470
|
+
.outer-container[data-v-24954146] {
|
|
7471
7471
|
padding-left: var(--page-padding);
|
|
7472
7472
|
padding-right: var(--page-padding);
|
|
7473
7473
|
}
|
|
7474
|
-
.modal-cart[data-v-
|
|
7474
|
+
.modal-cart[data-v-24954146] .cart-image {
|
|
7475
7475
|
width: 3rem;
|
|
7476
7476
|
}
|
|
7477
|
-
.modal-cart[data-v-
|
|
7477
|
+
.modal-cart[data-v-24954146] .cart-option {
|
|
7478
7478
|
width: 100%;
|
|
7479
7479
|
}
|
|
7480
|
-
.success-bar-container[data-v-
|
|
7480
|
+
.success-bar-container[data-v-24954146] .tw-bg-success-500 {
|
|
7481
7481
|
--tw-bg-opacity: 1;
|
|
7482
7482
|
background-color: rgb(36 168 16 / var(--tw-bg-opacity));
|
|
7483
7483
|
}
|
|
7484
7484
|
@media (min-width: 640px) {
|
|
7485
|
-
.modal-product-detail[data-v-
|
|
7485
|
+
.modal-product-detail[data-v-24954146] .modal {
|
|
7486
7486
|
min-width: 100vh;
|
|
7487
7487
|
}
|
|
7488
|
-
.modal-cart[data-v-
|
|
7488
|
+
.modal-cart[data-v-24954146] .modal {
|
|
7489
7489
|
min-width: 90vh;
|
|
7490
7490
|
max-height: 90vh;
|
|
7491
7491
|
}
|
|
7492
|
-
.modal-cart[data-v-
|
|
7492
|
+
.modal-cart[data-v-24954146] .cart-image {
|
|
7493
7493
|
width: 8rem;
|
|
7494
7494
|
}
|
|
7495
|
-
.modal-cart[data-v-
|
|
7495
|
+
.modal-cart[data-v-24954146] .cart-option {
|
|
7496
7496
|
width: 75%;
|
|
7497
7497
|
}
|
|
7498
|
-
.success-bar[data-v-
|
|
7498
|
+
.success-bar[data-v-24954146] {
|
|
7499
7499
|
width: 50%;
|
|
7500
7500
|
}
|
|
7501
7501
|
}
|
|
7502
7502
|
@media (max-width: 640px) {
|
|
7503
|
-
.success-bar[data-v-
|
|
7503
|
+
.success-bar[data-v-24954146] {
|
|
7504
7504
|
width: 91.666667%;
|
|
7505
7505
|
}
|
|
7506
7506
|
}
|
|
@@ -9851,12 +9851,12 @@ input.dynamic-width-input[data-v-97be2e87]:focus {
|
|
|
9851
9851
|
background-attachment: scroll !important;
|
|
9852
9852
|
}
|
|
9853
9853
|
|
|
9854
|
-
.c-undo-button-tooltip[data-v-
|
|
9854
|
+
.c-undo-button-tooltip[data-v-9c6ca156] .shared-tooltip__body {
|
|
9855
9855
|
width: auto;
|
|
9856
9856
|
padding: 4px 8px;
|
|
9857
9857
|
}
|
|
9858
9858
|
|
|
9859
|
-
.c-redo-button-tooltip[data-v-
|
|
9859
|
+
.c-redo-button-tooltip[data-v-346c90b7] .shared-tooltip__body {
|
|
9860
9860
|
width: auto;
|
|
9861
9861
|
padding: 4px 8px;
|
|
9862
9862
|
}
|
|
@@ -6882,44 +6882,44 @@ select[data-v-14e7c7c7] {
|
|
|
6882
6882
|
color: #f21b3f;
|
|
6883
6883
|
}
|
|
6884
6884
|
|
|
6885
|
-
.inner-container[data-v-
|
|
6885
|
+
.inner-container[data-v-24954146] {
|
|
6886
6886
|
max-width: var(--brandsite-max-width);
|
|
6887
6887
|
margin: 0 auto;
|
|
6888
6888
|
}
|
|
6889
|
-
.outer-container[data-v-
|
|
6889
|
+
.outer-container[data-v-24954146] {
|
|
6890
6890
|
padding-left: var(--page-padding);
|
|
6891
6891
|
padding-right: var(--page-padding);
|
|
6892
6892
|
}
|
|
6893
|
-
.modal-cart[data-v-
|
|
6893
|
+
.modal-cart[data-v-24954146] .cart-image {
|
|
6894
6894
|
width: 3rem;
|
|
6895
6895
|
}
|
|
6896
|
-
.modal-cart[data-v-
|
|
6896
|
+
.modal-cart[data-v-24954146] .cart-option {
|
|
6897
6897
|
width: 100%;
|
|
6898
6898
|
}
|
|
6899
|
-
.success-bar-container[data-v-
|
|
6899
|
+
.success-bar-container[data-v-24954146] .tw-bg-success-500 {
|
|
6900
6900
|
--tw-bg-opacity: 1;
|
|
6901
6901
|
background-color: rgb(36 168 16 / var(--tw-bg-opacity));
|
|
6902
6902
|
}
|
|
6903
6903
|
@media (min-width: 640px) {
|
|
6904
|
-
.modal-product-detail[data-v-
|
|
6904
|
+
.modal-product-detail[data-v-24954146] .modal {
|
|
6905
6905
|
min-width: 100vh;
|
|
6906
6906
|
}
|
|
6907
|
-
.modal-cart[data-v-
|
|
6907
|
+
.modal-cart[data-v-24954146] .modal {
|
|
6908
6908
|
min-width: 90vh;
|
|
6909
6909
|
max-height: 90vh;
|
|
6910
6910
|
}
|
|
6911
|
-
.modal-cart[data-v-
|
|
6911
|
+
.modal-cart[data-v-24954146] .cart-image {
|
|
6912
6912
|
width: 8rem;
|
|
6913
6913
|
}
|
|
6914
|
-
.modal-cart[data-v-
|
|
6914
|
+
.modal-cart[data-v-24954146] .cart-option {
|
|
6915
6915
|
width: 75%;
|
|
6916
6916
|
}
|
|
6917
|
-
.success-bar[data-v-
|
|
6917
|
+
.success-bar[data-v-24954146] {
|
|
6918
6918
|
width: 50%;
|
|
6919
6919
|
}
|
|
6920
6920
|
}
|
|
6921
6921
|
@media (max-width: 640px) {
|
|
6922
|
-
.success-bar[data-v-
|
|
6922
|
+
.success-bar[data-v-24954146] {
|
|
6923
6923
|
width: 91.666667%;
|
|
6924
6924
|
}
|
|
6925
6925
|
}
|
|
@@ -9270,12 +9270,12 @@ input.dynamic-width-input[data-v-97be2e87]:focus {
|
|
|
9270
9270
|
background-attachment: scroll !important;
|
|
9271
9271
|
}
|
|
9272
9272
|
|
|
9273
|
-
.c-undo-button-tooltip[data-v-
|
|
9273
|
+
.c-undo-button-tooltip[data-v-9c6ca156] .shared-tooltip__body {
|
|
9274
9274
|
width: auto;
|
|
9275
9275
|
padding: 4px 8px;
|
|
9276
9276
|
}
|
|
9277
9277
|
|
|
9278
|
-
.c-redo-button-tooltip[data-v-
|
|
9278
|
+
.c-redo-button-tooltip[data-v-346c90b7] .shared-tooltip__body {
|
|
9279
9279
|
width: auto;
|
|
9280
9280
|
padding: 4px 8px;
|
|
9281
9281
|
}
|
|
@@ -6852,44 +6852,44 @@ select[data-v-14e7c7c7] {
|
|
|
6852
6852
|
color: #f21b3f;
|
|
6853
6853
|
}
|
|
6854
6854
|
|
|
6855
|
-
.bp .inner-container[data-v-
|
|
6855
|
+
.bp .inner-container[data-v-24954146] {
|
|
6856
6856
|
max-width: var(--brandsite-max-width);
|
|
6857
6857
|
margin: 0 auto;
|
|
6858
6858
|
}
|
|
6859
|
-
.bp .outer-container[data-v-
|
|
6859
|
+
.bp .outer-container[data-v-24954146] {
|
|
6860
6860
|
padding-left: var(--page-padding);
|
|
6861
6861
|
padding-right: var(--page-padding);
|
|
6862
6862
|
}
|
|
6863
|
-
.bp .modal-cart[data-v-
|
|
6863
|
+
.bp .modal-cart[data-v-24954146] .cart-image {
|
|
6864
6864
|
width: 3rem;
|
|
6865
6865
|
}
|
|
6866
|
-
.bp .modal-cart[data-v-
|
|
6866
|
+
.bp .modal-cart[data-v-24954146] .cart-option {
|
|
6867
6867
|
width: 100%;
|
|
6868
6868
|
}
|
|
6869
|
-
.bp .success-bar-container[data-v-
|
|
6869
|
+
.bp .success-bar-container[data-v-24954146] .tw-bg-success-500 {
|
|
6870
6870
|
--tw-bg-opacity: 1;
|
|
6871
6871
|
background-color: rgb(36 168 16 / var(--tw-bg-opacity));
|
|
6872
6872
|
}
|
|
6873
6873
|
@media (min-width: 640px) {
|
|
6874
|
-
.bp .modal-product-detail[data-v-
|
|
6874
|
+
.bp .modal-product-detail[data-v-24954146] .modal {
|
|
6875
6875
|
min-width: 100vh;
|
|
6876
6876
|
}
|
|
6877
|
-
.bp .modal-cart[data-v-
|
|
6877
|
+
.bp .modal-cart[data-v-24954146] .modal {
|
|
6878
6878
|
min-width: 90vh;
|
|
6879
6879
|
max-height: 90vh;
|
|
6880
6880
|
}
|
|
6881
|
-
.bp .modal-cart[data-v-
|
|
6881
|
+
.bp .modal-cart[data-v-24954146] .cart-image {
|
|
6882
6882
|
width: 8rem;
|
|
6883
6883
|
}
|
|
6884
|
-
.bp .modal-cart[data-v-
|
|
6884
|
+
.bp .modal-cart[data-v-24954146] .cart-option {
|
|
6885
6885
|
width: 75%;
|
|
6886
6886
|
}
|
|
6887
|
-
.bp .success-bar[data-v-
|
|
6887
|
+
.bp .success-bar[data-v-24954146] {
|
|
6888
6888
|
width: 50%;
|
|
6889
6889
|
}
|
|
6890
6890
|
}
|
|
6891
6891
|
@media (max-width: 640px) {
|
|
6892
|
-
.bp .success-bar[data-v-
|
|
6892
|
+
.bp .success-bar[data-v-24954146] {
|
|
6893
6893
|
width: 91.666667%;
|
|
6894
6894
|
}
|
|
6895
6895
|
}
|
|
@@ -9240,12 +9240,12 @@ input.dynamic-width-input[data-v-97be2e87]:focus {
|
|
|
9240
9240
|
background-attachment: scroll !important;
|
|
9241
9241
|
}
|
|
9242
9242
|
|
|
9243
|
-
.bp .c-undo-button-tooltip[data-v-
|
|
9243
|
+
.bp .c-undo-button-tooltip[data-v-9c6ca156] .shared-tooltip__body {
|
|
9244
9244
|
width: auto;
|
|
9245
9245
|
padding: 4px 8px;
|
|
9246
9246
|
}
|
|
9247
9247
|
|
|
9248
|
-
.bp .c-redo-button-tooltip[data-v-
|
|
9248
|
+
.bp .c-redo-button-tooltip[data-v-346c90b7] .shared-tooltip__body {
|
|
9249
9249
|
width: auto;
|
|
9250
9250
|
padding: 4px 8px;
|
|
9251
9251
|
}
|
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 L, o, p as M, q as r, r as n, s as b, t as l, u as F, v as i, w as c, x as g, 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 K, J as m, K as k, L as V, M as X, N as v, O as h, P as f, Q as W, R as x, 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 La, ah as oa, ai as Ma, aj as ra, ak as na, al as ba, am as la, an as Fa, ao as ia, ap as ca, aq as ga, 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 Ka, aA as ma, aB as ka, aC as Va, aD as Xa, aE as va, aF as ha, aG as fa, aH as Wa, aI as xa, 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 L_, b7 as o_, b8 as M_, b9 as r_, ba as n_, bb as b_, bc as l_, bd as F_, be as i_, bf as c_, bg as g_, 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 K_, bq as m_, br as k_, bs as V_, bt as X_, bu as v_, bv as h_, bw as f_, bx as W_, by as x_, 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 LT, bZ as oT, b_ as MT, b$ as rT, c0 as nT, c1 as bT, c2 as lT, c3 as FT, c4 as iT, c5 as cT, c6 as gT, 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 KT, cg as mT, ch as kT, ci as VT, cj as XT, ck as vT, cl as hT, cm as fT, cn as WT, co as xT, cp as zT, cq as wT, cr as ZT, cs as jT, ct as qT, cu 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 L, o, p as M, q as r, r as n, s as b, t as l, u as F, v as i, w as c, x as g, 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 K, J as m, K as k, L as V, M as X, N as v, O as h, P as f, Q as W, R as x, 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 La, ah as oa, ai as Ma, aj as ra, ak as na, al as ba, am as la, an as Fa, ao as ia, ap as ca, aq as ga, 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 Ka, aA as ma, aB as ka, aC as Va, aD as Xa, aE as va, aF as ha, aG as fa, aH as Wa, aI as xa, 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 L_, b7 as o_, b8 as M_, b9 as r_, ba as n_, bb as b_, bc as l_, bd as F_, be as i_, bf as c_, bg as g_, 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 K_, bq as m_, br as k_, bs as V_, bt as X_, bu as v_, bv as h_, bw as f_, bx as W_, by as x_, 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 LT, bZ as oT, b_ as MT, b$ as rT, c0 as nT, c1 as bT, c2 as lT, c3 as FT, c4 as iT, c5 as cT, c6 as gT, 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 KT, cg as mT, ch as kT, ci as VT, cj as XT, ck as vT, cl as hT, cm as fT, cn as WT, co as xT, cp as zT, cq as wT, cr as ZT, cs as jT, ct as qT, cu as JT } from "./lib-DQvE17ni.js";
|
|
2
2
|
import { createPinia as $T, setActivePinia as aE } from "pinia";
|
|
3
3
|
export {
|
|
4
4
|
T as ABOUT_SECTION_SETTINGS_CONFIG,
|