cloudcommerce 0.0.70 → 0.0.73
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/.eslintrc.cjs +1 -0
- package/CHANGELOG.md +27 -0
- package/package.json +2 -2
- package/packages/api/package.json +1 -1
- package/packages/apps/correios/package.json +1 -1
- package/packages/apps/custom-shipping/package.json +1 -1
- package/packages/apps/discounts/package.json +1 -1
- package/packages/apps/frenet/CHANGELOG.md +1 -0
- package/packages/apps/frenet/README.md +1 -0
- package/packages/apps/frenet/lib/frenet.d.ts +2 -0
- package/packages/apps/frenet/lib/frenet.js +6 -0
- package/packages/apps/frenet/lib/frenet.js.map +1 -0
- package/packages/apps/frenet/lib/index.d.ts +1 -0
- package/packages/apps/frenet/lib/index.js +2 -0
- package/packages/apps/frenet/lib/index.js.map +1 -0
- package/packages/apps/frenet/lib-mjs/calculate-frenet.mjs +152 -0
- package/packages/apps/frenet/package.json +28 -0
- package/packages/apps/frenet/src/frenet.ts +7 -0
- package/packages/apps/frenet/src/index.ts +1 -0
- package/packages/apps/frenet/tsconfig.json +6 -0
- package/packages/apps/tiny-erp/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/config/lib/config.js +9 -8
- package/packages/config/lib/config.js.map +1 -1
- package/packages/config/package.json +1 -1
- package/packages/config/src/config.ts +11 -10
- package/packages/events/package.json +1 -1
- package/packages/firebase/lib/config.d.ts +3 -0
- package/packages/firebase/lib/config.js +3 -0
- package/packages/firebase/lib/config.js.map +1 -1
- package/packages/firebase/package.json +1 -1
- package/packages/firebase/src/config.ts +3 -0
- package/packages/modules/lib/firebase/call-app-module.js +5 -0
- package/packages/modules/lib/firebase/call-app-module.js.map +1 -1
- package/packages/modules/package.json +2 -1
- package/packages/modules/src/firebase/call-app-module.ts +5 -0
- package/packages/passport/package.json +1 -1
- package/packages/ssr/lib/firebase/serve-storefront.js +13 -31
- package/packages/ssr/lib/firebase/serve-storefront.js.map +1 -1
- package/packages/ssr/package.json +1 -1
- package/packages/ssr/src/firebase/serve-storefront.ts +13 -36
- package/packages/storefront/content/blog.json +18 -0
- package/packages/storefront/content/brands.json +24 -0
- package/packages/storefront/content/categories.json +24 -0
- package/packages/storefront/content/code.json +5 -0
- package/packages/storefront/content/collections.json +24 -0
- package/packages/storefront/content/contacts.json +13 -0
- package/packages/storefront/content/footer.json +46 -0
- package/packages/storefront/content/header.json +27 -0
- package/packages/storefront/content/home.json +45 -0
- package/packages/storefront/content/info.json +18 -0
- package/packages/storefront/content/maintenance.json +6 -0
- package/packages/storefront/content/menu.json +6 -0
- package/packages/storefront/content/pages/contato.json +6 -0
- package/packages/storefront/content/pages/entrega.json +6 -0
- package/packages/storefront/content/pages/faq.json +6 -0
- package/packages/storefront/content/pages/pagamentos.json +6 -0
- package/packages/storefront/content/pages/privacidade.json +6 -0
- package/packages/storefront/content/pages/sobre-nos.json +6 -0
- package/packages/storefront/content/pages/termos.json +6 -0
- package/packages/storefront/content/pages/trocas.json +6 -0
- package/packages/storefront/content/posts/esta-loja-e-um-pwa.json +9 -0
- package/packages/storefront/content/products.json +32 -0
- package/packages/storefront/content/search.json +8 -0
- package/packages/storefront/content/settings.json +21 -0
- package/packages/storefront/content/social.json +5 -0
- package/packages/storefront/content/widgets/analytics.json +11 -0
- package/packages/storefront/content/widgets/compre-confie.json +11 -0
- package/packages/storefront/content/widgets/ebit.json +11 -0
- package/packages/storefront/content/widgets/fb-pixel.json +12 -0
- package/packages/storefront/content/widgets/gmc-ratings.json +12 -0
- package/packages/storefront/content/widgets/minicart.json +6 -0
- package/packages/storefront/content/widgets/offers-notification.json +11 -0
- package/packages/storefront/content/widgets/opinioes-verificadas.json +18 -0
- package/packages/storefront/content/widgets/product-card.json +10 -0
- package/packages/storefront/content/widgets/product.json +13 -0
- package/packages/storefront/content/widgets/search-engine.json +8 -0
- package/packages/storefront/content/widgets/search.json +6 -0
- package/packages/storefront/content/widgets/tag-manager.json +12 -0
- package/packages/storefront/content/widgets/tawkto.json +12 -0
- package/packages/storefront/content/widgets/trustvox.json +15 -0
- package/packages/storefront/content/widgets/user.json +5 -0
- package/packages/storefront/dist/client/assets/{index.53a3a3e0.css → _...c08e0a75.css} +1 -1
- package/packages/storefront/dist/client/assets/{404-_...d4aa8aff.css → _...d4aa8aff.css} +0 -0
- package/packages/storefront/dist/client/assets/{404-index.d9230d24.css → fallback-index.d9230d24.css} +0 -0
- package/packages/storefront/dist/client/assets/{_...98510c96.css → fallback.9745a8aa.css} +1 -1
- package/packages/storefront/dist/client/assets/{404.530428e5.css → index.9745690c.css} +1 -1
- package/packages/storefront/dist/server/entry.mjs +370 -115
- package/packages/storefront/package.json +3 -3
- package/packages/storefront/src/env.d.ts +1 -0
- package/packages/storefront/src/{components → lib/components}/Card.astro +0 -0
- package/packages/storefront/src/lib/components/LoginModal.vue +56 -0
- package/packages/storefront/src/{layouts → lib/layouts}/Layout.astro +8 -11
- package/packages/storefront/src/lib/layouts/meta/Head.astro +7 -0
- package/packages/storefront/src/lib/layouts/meta/Json.astro +34 -0
- package/packages/storefront/src/lib/ssr-context.ts +131 -0
- package/packages/storefront/src/lib/views/[...slug].astro +77 -0
- package/packages/storefront/src/lib/views/app/index.astro +0 -0
- package/packages/storefront/src/{pages/404.astro → lib/views/fallback.astro} +6 -1
- package/packages/storefront/src/lib/views/index.astro +87 -0
- package/packages/storefront/src/pages/[...slug].astro +12 -76
- package/packages/storefront/src/pages/fallback.astro +13 -0
- package/packages/storefront/src/pages/index.astro +15 -79
- package/packages/storefront/storefront.config.mjs +23 -6
- package/packages/storefront/tsconfig.json +4 -1
- package/packages/types/package.json +1 -1
- package/turbo.json +0 -6
- package/packages/storefront/src/types.ts +0 -18
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pkg": "@ecomplus/widget-gmc-ratings",
|
|
3
|
+
"active": false,
|
|
4
|
+
"desktopOnly": false,
|
|
5
|
+
"enableCheckout": true,
|
|
6
|
+
"disablePages": true,
|
|
7
|
+
"options": {
|
|
8
|
+
"badgePosition": "BOTTOM_LEFT",
|
|
9
|
+
"dialogPosition": "CENTER_DIALOG"
|
|
10
|
+
},
|
|
11
|
+
"stampsAppend": "src/append/stamps"
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pkg": "@ecomplus/widget-offers-notification",
|
|
3
|
+
"active": true,
|
|
4
|
+
"desktopOnly": false,
|
|
5
|
+
"options": {
|
|
6
|
+
"enableOutOfStock": true,
|
|
7
|
+
"enablePriceChange": true,
|
|
8
|
+
"popupOptions": "location=yes,height=400,width=320,status=yes"
|
|
9
|
+
},
|
|
10
|
+
"productSlots": "src/append/product-slots"
|
|
11
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pkg": "@ecomplus/widget-opinioes-verificadas",
|
|
3
|
+
"active": false,
|
|
4
|
+
"desktopOnly": false,
|
|
5
|
+
"enableCheckout": false,
|
|
6
|
+
"disablePages": true,
|
|
7
|
+
"options": {
|
|
8
|
+
"stamp": "",
|
|
9
|
+
"tagJs": ""
|
|
10
|
+
},
|
|
11
|
+
"headAppend": "src/append/head",
|
|
12
|
+
"bodyAppend": "src/append/body",
|
|
13
|
+
"productCardSlots": "src/append/product-card-slots",
|
|
14
|
+
"productSlots": "src/append/product-slots",
|
|
15
|
+
"productDescriptionAppend": "src/append/product-block",
|
|
16
|
+
"stampsAppend": "src/append/stamps",
|
|
17
|
+
"useJquery": true
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pkg": "@ecomplus/widget-product",
|
|
3
|
+
"active": true,
|
|
4
|
+
"desktopOnly": false,
|
|
5
|
+
"options": {
|
|
6
|
+
"buyText": "",
|
|
7
|
+
"buy": "",
|
|
8
|
+
"strHasQuantitySelector": "_",
|
|
9
|
+
"strHasPromotionTimer": "_",
|
|
10
|
+
"lowQuantityToWarn": 12,
|
|
11
|
+
"maxVariationOptionsBtns": 6
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pkg": "@ecomplus/widget-tag-manager",
|
|
3
|
+
"active": false,
|
|
4
|
+
"desktopOnly": false,
|
|
5
|
+
"enableCheckout": true,
|
|
6
|
+
"options": {
|
|
7
|
+
"gtmContainerId": "",
|
|
8
|
+
"dataLayerVar": "dataLayer"
|
|
9
|
+
},
|
|
10
|
+
"headAppend": "src/append/head",
|
|
11
|
+
"bodyAppend": "src/append/body"
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pkg": "@ecomplus/widget-trustvox",
|
|
3
|
+
"active": false,
|
|
4
|
+
"desktopOnly": false,
|
|
5
|
+
"enableCheckout": false,
|
|
6
|
+
"disablePages": true,
|
|
7
|
+
"options": {
|
|
8
|
+
"trustvoxStoreId": ""
|
|
9
|
+
},
|
|
10
|
+
"bodyAppend": "src/append/body",
|
|
11
|
+
"productDescriptionAppend": "src/append/product-block",
|
|
12
|
+
"productCardSlots": "src/append/product-card-slots",
|
|
13
|
+
"productSlots": "src/append/product-slots",
|
|
14
|
+
"stampsAppend": "src/append/stamps"
|
|
15
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-
|
|
1
|
+
:root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-JWBYURAL){margin:2rem 0}main:where(.astro-JWBYURAL){margin:auto;padding:1em;max-width:60ch}.text-gradient:where(.astro-JWBYURAL){font-weight:900;background-image:var(--astro-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-size:100% 200%;background-position-y:100%;border-radius:.4rem;animation:pulse 4s ease-in-out infinite}@keyframes pulse{0%,to{background-position-y:0%}50%{background-position-y:80%}}.instructions:where(.astro-JWBYURAL){line-height:1.6;margin:1rem 0;background:#4F39FA;padding:1rem;border-radius:.4rem;color:var(--color-bg)}.instructions:where(.astro-JWBYURAL) code:where(.astro-JWBYURAL){font-size:.875em;border:.1em solid var(--color-border);border-radius:4px;padding:.15em .25em}.link-card-grid:where(.astro-JWBYURAL){display:grid;grid-template-columns:repeat(auto-fit,minmax(24ch,1fr));gap:1rem;padding:0}
|
|
File without changes
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-
|
|
1
|
+
:root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-HIITKN5F){margin:2rem 0}main:where(.astro-HIITKN5F){margin:auto;padding:1em;max-width:60ch}.text-gradient:where(.astro-HIITKN5F){font-weight:900;background-image:var(--astro-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-size:100% 200%;background-position-y:100%;border-radius:.4rem;animation:pulse 4s ease-in-out infinite}@keyframes pulse{0%,to{background-position-y:0%}50%{background-position-y:80%}}.instructions:where(.astro-HIITKN5F){line-height:1.6;margin:1rem 0;background:#4F39FA;padding:1rem;border-radius:.4rem;color:var(--color-bg)}.instructions:where(.astro-HIITKN5F) code:where(.astro-HIITKN5F){font-size:.875em;border:.1em solid var(--color-border);border-radius:4px;padding:.15em .25em}.link-card-grid:where(.astro-HIITKN5F){display:grid;grid-template-columns:repeat(auto-fit,minmax(24ch,1fr));gap:1rem;padding:0}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-
|
|
1
|
+
:root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-FWWSR4V6){margin:2rem 0}main:where(.astro-FWWSR4V6){margin:auto;padding:1em;max-width:60ch}.text-gradient:where(.astro-FWWSR4V6){font-weight:900;background-image:var(--astro-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-size:100% 200%;background-position-y:100%;border-radius:.4rem;animation:pulse 4s ease-in-out infinite}@keyframes pulse{0%,to{background-position-y:0%}50%{background-position-y:80%}}.instructions:where(.astro-FWWSR4V6){line-height:1.6;margin:1rem 0;background:#4F39FA;padding:1rem;border-radius:.4rem;color:var(--color-bg)}.instructions:where(.astro-FWWSR4V6) code:where(.astro-FWWSR4V6){font-size:.875em;border:.1em solid var(--color-border);border-radius:4px;padding:.15em .25em}.link-card-grid:where(.astro-FWWSR4V6){display:grid;grid-template-columns:repeat(auto-fit,minmax(24ch,1fr));gap:1rem;padding:0}
|