@win2win/shared 1.0.257 → 1.0.259
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/README.md
ADDED
|
@@ -128,6 +128,10 @@ export declare const TEMPLATES: Readonly<{
|
|
|
128
128
|
readonly label: "Catálogo de productos lite";
|
|
129
129
|
readonly params: readonly ["title", "text", "background", "custom", "button"];
|
|
130
130
|
};
|
|
131
|
+
readonly "ecommerce-related-products": {
|
|
132
|
+
readonly label: "Productos relacionados";
|
|
133
|
+
readonly params: readonly ["title", "text", "background", "custom", "button"];
|
|
134
|
+
};
|
|
131
135
|
readonly "ecommerce-banner": {
|
|
132
136
|
readonly label: "Banner para Ecommerce";
|
|
133
137
|
readonly params: readonly ["title", "text", "background", "image", "height", "custom", "button"];
|
|
@@ -206,6 +206,10 @@ exports.TEMPLATES = Object.freeze({
|
|
|
206
206
|
label: "Catálogo de productos lite",
|
|
207
207
|
params: ["title", "text", "background", "custom", "button"],
|
|
208
208
|
},
|
|
209
|
+
"ecommerce-related-products": {
|
|
210
|
+
label: "Productos relacionados",
|
|
211
|
+
params: ["title", "text", "background", "custom", "button"],
|
|
212
|
+
},
|
|
209
213
|
"ecommerce-banner": {
|
|
210
214
|
label: "Banner para Ecommerce",
|
|
211
215
|
params: [
|
|
@@ -256,6 +260,8 @@ exports.PRODUCT_TEMPLATES_LABELS = [
|
|
|
256
260
|
"product-simple-info",
|
|
257
261
|
"product-location",
|
|
258
262
|
"product-description",
|
|
263
|
+
"ecommerce-catalog-lite",
|
|
264
|
+
"ecommerce-related-products",
|
|
259
265
|
"widget",
|
|
260
266
|
];
|
|
261
267
|
Object.freeze(exports.PRODUCT_TEMPLATES_LABELS);
|
|
@@ -263,6 +269,7 @@ exports.ECOMMERCE_TEMPLATES_LABELS = [
|
|
|
263
269
|
"ecommerce-finder",
|
|
264
270
|
"ecommerce-catalog",
|
|
265
271
|
"ecommerce-catalog-lite",
|
|
272
|
+
"ecommerce-related-products",
|
|
266
273
|
"ecommerce-banner",
|
|
267
274
|
"ecommerce-filters",
|
|
268
275
|
"ecommerce-checkout",
|
package/package.json
CHANGED