mdz-enum 1.5.20 → 1.5.21
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.
|
@@ -142,4 +142,17 @@ declare const CART_BUTTON: {
|
|
|
142
142
|
};
|
|
143
143
|
};
|
|
144
144
|
};
|
|
145
|
-
|
|
145
|
+
/**
|
|
146
|
+
* Referencia para modo de pagamento a combinar.
|
|
147
|
+
*/
|
|
148
|
+
declare const COMBINAR_PAYMENT: {
|
|
149
|
+
KEY: string;
|
|
150
|
+
DEFAULT: string;
|
|
151
|
+
VALUES: string[];
|
|
152
|
+
};
|
|
153
|
+
declare const COMBINAR_ENTREGA: {
|
|
154
|
+
KEY: string;
|
|
155
|
+
DEFAULT: string;
|
|
156
|
+
VALUES: string[];
|
|
157
|
+
};
|
|
158
|
+
export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CART_BUTTON = exports.HEADER = exports.FOOTER = exports.BUTTON = exports.BUY_BUTTON = exports.PRODUCT_CARD = void 0;
|
|
3
|
+
exports.COMBINAR_ENTREGA = exports.COMBINAR_PAYMENT = exports.CART_BUTTON = exports.HEADER = exports.FOOTER = exports.BUTTON = exports.BUY_BUTTON = exports.PRODUCT_CARD = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Referencia de aparencia do rodape
|
|
6
6
|
*/
|
|
@@ -154,3 +154,18 @@ const CART_BUTTON = {
|
|
|
154
154
|
},
|
|
155
155
|
};
|
|
156
156
|
exports.CART_BUTTON = CART_BUTTON;
|
|
157
|
+
/**
|
|
158
|
+
* Referencia para modo de pagamento a combinar.
|
|
159
|
+
*/
|
|
160
|
+
const COMBINAR_PAYMENT = {
|
|
161
|
+
KEY: 'combinar_payment_show',
|
|
162
|
+
DEFAULT: 'true',
|
|
163
|
+
VALUES: ['true', 'false'],
|
|
164
|
+
};
|
|
165
|
+
exports.COMBINAR_PAYMENT = COMBINAR_PAYMENT;
|
|
166
|
+
const COMBINAR_ENTREGA = {
|
|
167
|
+
KEY: 'combinar_entrega_show',
|
|
168
|
+
DEFAULT: 'true',
|
|
169
|
+
VALUES: ['true', 'false'],
|
|
170
|
+
};
|
|
171
|
+
exports.COMBINAR_ENTREGA = COMBINAR_ENTREGA;
|
|
@@ -22,9 +22,7 @@ declare const APPEARANCE_PAGES: {
|
|
|
22
22
|
DEFAULT: string;
|
|
23
23
|
};
|
|
24
24
|
HOME_PAGE_BRANDS_TITLE: {
|
|
25
|
-
KEY: string;
|
|
26
|
-
* Constante de configuração de referencia para elementos gerais (any)
|
|
27
|
-
*/
|
|
25
|
+
KEY: string;
|
|
28
26
|
DEFAULT: string;
|
|
29
27
|
};
|
|
30
28
|
HOME_PAGE_SELECTED_PRODUCTS_ONE: {
|
|
@@ -247,6 +245,16 @@ declare const APPEARANCE_COMPONENTS: {
|
|
|
247
245
|
};
|
|
248
246
|
};
|
|
249
247
|
};
|
|
248
|
+
COMBINAR_PAYMENT: {
|
|
249
|
+
KEY: string;
|
|
250
|
+
DEFAULT: string;
|
|
251
|
+
VALUES: string[];
|
|
252
|
+
};
|
|
253
|
+
COMBINAR_ENTREGA: {
|
|
254
|
+
KEY: string;
|
|
255
|
+
DEFAULT: string;
|
|
256
|
+
VALUES: string[];
|
|
257
|
+
};
|
|
250
258
|
};
|
|
251
259
|
/**
|
|
252
260
|
* Constante de configuração de referencia para elementos gerais (any)
|
|
@@ -272,12 +280,12 @@ declare const APPEARANCE_ELEMENTS: {
|
|
|
272
280
|
};
|
|
273
281
|
};
|
|
274
282
|
DESCRIPTION: {
|
|
275
|
-
/**
|
|
276
|
-
* Constante de configuração de aparência dos componentes (themes)
|
|
277
|
-
*/
|
|
278
283
|
MOBILE: {
|
|
279
284
|
KEY: string;
|
|
280
285
|
};
|
|
286
|
+
/**
|
|
287
|
+
* Constante de configuração de aparência dos componentes (themes)
|
|
288
|
+
*/
|
|
281
289
|
DESKTOP: {
|
|
282
290
|
KEY: string;
|
|
283
291
|
};
|
|
@@ -27,6 +27,8 @@ const APPEARANCE_COMPONENTS = {
|
|
|
27
27
|
FOOTER: components_1.FOOTER,
|
|
28
28
|
HEADER: components_1.HEADER,
|
|
29
29
|
CART_BUTTON: components_1.CART_BUTTON,
|
|
30
|
+
COMBINAR_PAYMENT: components_1.COMBINAR_PAYMENT,
|
|
31
|
+
COMBINAR_ENTREGA: components_1.COMBINAR_ENTREGA,
|
|
30
32
|
};
|
|
31
33
|
exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;
|
|
32
34
|
/**
|