@win2win/shared 1.0.174 → 1.0.175
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.
|
@@ -116,6 +116,10 @@ export declare const TEMPLATES: Readonly<{
|
|
|
116
116
|
readonly label: "Buscador de productos";
|
|
117
117
|
readonly params: readonly ["custom"];
|
|
118
118
|
};
|
|
119
|
+
readonly "ecommerce-shopcart": {
|
|
120
|
+
readonly label: "Shopcart de Ecommerce";
|
|
121
|
+
readonly params: readonly ["title", "text", "custom"];
|
|
122
|
+
};
|
|
119
123
|
readonly "ecommerce-catalog": {
|
|
120
124
|
readonly label: "Catálogo de productos";
|
|
121
125
|
readonly params: readonly ["title", "text", "background", "custom"];
|
|
@@ -43,7 +43,7 @@ exports.TEMPLATES = Object.freeze({
|
|
|
43
43
|
"texts-columns",
|
|
44
44
|
"images-columns",
|
|
45
45
|
"secondary-images-columns",
|
|
46
|
-
"secondary-hero"
|
|
46
|
+
"secondary-hero",
|
|
47
47
|
],
|
|
48
48
|
},
|
|
49
49
|
"product-hero-searcher": {
|
|
@@ -165,6 +165,10 @@ exports.TEMPLATES = Object.freeze({
|
|
|
165
165
|
label: "Buscador de productos",
|
|
166
166
|
params: ["custom"],
|
|
167
167
|
},
|
|
168
|
+
"ecommerce-shopcart": {
|
|
169
|
+
label: "Shopcart de Ecommerce",
|
|
170
|
+
params: ["title", "text", "custom"],
|
|
171
|
+
},
|
|
168
172
|
"ecommerce-catalog": {
|
|
169
173
|
label: "Catálogo de productos",
|
|
170
174
|
params: ["title", "text", "background", "custom"],
|
|
@@ -228,6 +232,7 @@ exports.ECOMMERCE_TEMPLATES_LABELS = [
|
|
|
228
232
|
"ecommerce-checkout",
|
|
229
233
|
"ecommerce-categories",
|
|
230
234
|
"ecommerce-highlights",
|
|
235
|
+
"ecommerce-shopcart",
|
|
231
236
|
"widget",
|
|
232
237
|
];
|
|
233
238
|
Object.freeze(exports.ECOMMERCE_TEMPLATES_LABELS);
|
package/package.json
CHANGED