mdz-enum 1.5.63 → 1.5.64
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 +7 -7
- package/dist/checkout/index.d.ts +28 -28
- package/dist/checkout/index.js +83 -83
- package/dist/commercial/index.d.ts +228 -228
- package/dist/commercial/index.js +552 -552
- package/dist/common/index.d.ts +52 -52
- package/dist/common/index.js +151 -151
- package/dist/config/index.d.ts +167 -167
- package/dist/config/index.js +481 -481
- package/dist/finance/index.d.ts +170 -170
- package/dist/finance/index.js +442 -442
- package/dist/fiscal/index.d.ts +486 -486
- package/dist/fiscal/index.js +1207 -1207
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +264 -264
- package/dist/general/index.js +509 -509
- package/dist/index.d.ts +14 -14
- package/dist/index.js +217 -217
- package/dist/integration/index.d.ts +30 -30
- package/dist/integration/index.js +89 -89
- package/dist/logistics/index.d.ts +130 -130
- package/dist/logistics/index.js +376 -376
- package/dist/marketplace/templates/components/index.d.ts +277 -277
- package/dist/marketplace/templates/components/index.js +295 -295
- package/dist/marketplace/templates/elements/index.d.ts +32 -32
- package/dist/marketplace/templates/elements/index.js +35 -35
- package/dist/marketplace/templates/index.d.ts +401 -401
- package/dist/marketplace/templates/index.js +44 -44
- package/dist/marketplace/templates/pages/index.d.ts +140 -140
- package/dist/marketplace/templates/pages/index.js +310 -310
- package/dist/marketplace/templates/reference/index.d.ts +24 -24
- package/dist/marketplace/templates/reference/index.js +26 -26
- package/dist/people/index.d.ts +42 -42
- package/dist/people/index.js +122 -122
- package/dist/platform/index.d.ts +196 -196
- package/dist/platform/index.js +567 -567
- package/dist/reports/index.d.ts +55 -55
- package/dist/reports/index.js +162 -162
- package/package.json +33 -33
|
@@ -1,295 +1,295 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.HOME_PAGE_HIGHLIGHT = exports.BANNERS_ASPECT_RATIO = exports.ENVIAR_PEDIDO_WPP = exports.COMBINAR_ENTREGA = exports.COMBINAR_PAYMENT = exports.CART_BUTTON = exports.SUBMENU = exports.HEADER = exports.FOOTER = exports.BUTTON = exports.BUY_BUTTON = exports.PRODUCT_CARD = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* Referencia de aparencia do rodape
|
|
6
|
-
*/
|
|
7
|
-
const FOOTER = {
|
|
8
|
-
/** Cor do rodape */
|
|
9
|
-
LIGHT: {
|
|
10
|
-
COLOR: {
|
|
11
|
-
KEY: 'component_footer_light_color',
|
|
12
|
-
DEFAULT: '#8854D0',
|
|
13
|
-
},
|
|
14
|
-
LOGO_FILTER: {
|
|
15
|
-
KEY: 'component_footer_logo_light_filter',
|
|
16
|
-
DEFAULT: 'none',
|
|
17
|
-
VALUES: ['light', 'dark', 'none'],
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
DARK: {
|
|
21
|
-
COLOR: {
|
|
22
|
-
KEY: 'component_footer_dark_color',
|
|
23
|
-
DEFAULT: '#8854D0',
|
|
24
|
-
},
|
|
25
|
-
LOGO_FILTER: {
|
|
26
|
-
KEY: 'component_footer_logo_dark_filter',
|
|
27
|
-
DEFAULT: 'none',
|
|
28
|
-
VALUES: ['light', 'dark', 'none'],
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
/** Cor do texto */
|
|
32
|
-
LIGHTTEXT: {
|
|
33
|
-
COLOR: {
|
|
34
|
-
KEY: 'component_footer_light_text_color',
|
|
35
|
-
DEFAULT: '#ffffff',
|
|
36
|
-
},
|
|
37
|
-
},
|
|
38
|
-
DARKTEXT: {
|
|
39
|
-
COLOR: {
|
|
40
|
-
KEY: 'component_footer_dark_text_color',
|
|
41
|
-
DEFAULT: '#ffffff',
|
|
42
|
-
},
|
|
43
|
-
},
|
|
44
|
-
};
|
|
45
|
-
exports.FOOTER = FOOTER;
|
|
46
|
-
/**
|
|
47
|
-
* Referencia de aparencia do cabeçalho
|
|
48
|
-
*/
|
|
49
|
-
const HEADER = {
|
|
50
|
-
/** Cor do cabeçalho */
|
|
51
|
-
LIGHT: {
|
|
52
|
-
COLOR: {
|
|
53
|
-
KEY: 'component_header_light_color',
|
|
54
|
-
DEFAULT: '#8854D0',
|
|
55
|
-
},
|
|
56
|
-
LOGO_FILTER: {
|
|
57
|
-
KEY: 'component_header_logo_light_filter',
|
|
58
|
-
DEFAULT: 'none',
|
|
59
|
-
VALUES: ['light', 'dark', 'none'],
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
DARK: {
|
|
63
|
-
COLOR: {
|
|
64
|
-
KEY: 'component_header_dark_color',
|
|
65
|
-
DEFAULT: '#8854D0',
|
|
66
|
-
},
|
|
67
|
-
LOGO_FILTER: {
|
|
68
|
-
KEY: 'component_header_logo_dark_filter',
|
|
69
|
-
DEFAULT: 'none',
|
|
70
|
-
VALUES: ['light', 'dark', 'none'],
|
|
71
|
-
},
|
|
72
|
-
},
|
|
73
|
-
/** Cor do texto */
|
|
74
|
-
LIGHTTEXT: {
|
|
75
|
-
COLOR: {
|
|
76
|
-
KEY: 'component_header_light_text_color',
|
|
77
|
-
DEFAULT: '#ffffff',
|
|
78
|
-
},
|
|
79
|
-
},
|
|
80
|
-
DARKTEXT: {
|
|
81
|
-
COLOR: {
|
|
82
|
-
KEY: 'component_header_dark_text_color',
|
|
83
|
-
DEFAULT: '#ffffff',
|
|
84
|
-
},
|
|
85
|
-
},
|
|
86
|
-
};
|
|
87
|
-
exports.HEADER = HEADER;
|
|
88
|
-
const SUBMENU = {
|
|
89
|
-
/** Cor do submenu */
|
|
90
|
-
LIGHT: {
|
|
91
|
-
COLOR: {
|
|
92
|
-
KEY: 'component_submenu_light_color',
|
|
93
|
-
DEFAULT: '#8854D0',
|
|
94
|
-
},
|
|
95
|
-
},
|
|
96
|
-
DARK: {
|
|
97
|
-
COLOR: {
|
|
98
|
-
KEY: 'component_submenu_dark_color',
|
|
99
|
-
DEFAULT: '#8854D0',
|
|
100
|
-
},
|
|
101
|
-
},
|
|
102
|
-
/** Cor do texto */
|
|
103
|
-
LIGHTTEXT: {
|
|
104
|
-
COLOR: {
|
|
105
|
-
KEY: 'component_submenu_light_text_color',
|
|
106
|
-
DEFAULT: '#ffffff',
|
|
107
|
-
},
|
|
108
|
-
},
|
|
109
|
-
DARKTEXT: {
|
|
110
|
-
COLOR: {
|
|
111
|
-
KEY: 'component_submenu_dark_text_color',
|
|
112
|
-
DEFAULT: '#ffffff',
|
|
113
|
-
},
|
|
114
|
-
},
|
|
115
|
-
};
|
|
116
|
-
exports.SUBMENU = SUBMENU;
|
|
117
|
-
/**
|
|
118
|
-
* Rerefencia de aparencia dos botoes
|
|
119
|
-
*/
|
|
120
|
-
const BUTTON = {
|
|
121
|
-
/** Cor de fundo */
|
|
122
|
-
RADIUS: {
|
|
123
|
-
KEY: 'component_button_radius',
|
|
124
|
-
DEFAULT: 'soft',
|
|
125
|
-
VALUES: [
|
|
126
|
-
{ label: 'Suave', value: 'soft' },
|
|
127
|
-
{ label: 'Normal', value: 'normal' },
|
|
128
|
-
{ label: 'Quadrado', value: 'none' },
|
|
129
|
-
],
|
|
130
|
-
},
|
|
131
|
-
};
|
|
132
|
-
exports.BUTTON = BUTTON;
|
|
133
|
-
/**
|
|
134
|
-
* Refencia da aparencia do cartao de produtos
|
|
135
|
-
*/
|
|
136
|
-
const PRODUCT_CARD = {
|
|
137
|
-
/** Arredondamento */
|
|
138
|
-
RADIUS: {
|
|
139
|
-
KEY: 'component_product_card_radius',
|
|
140
|
-
DEFAULT: 'soft',
|
|
141
|
-
VALUES: [
|
|
142
|
-
{ label: 'Suave', value: 'soft' },
|
|
143
|
-
{ label: 'Normal', value: 'normal' },
|
|
144
|
-
{ label: 'Quadrado', value: 'none' },
|
|
145
|
-
],
|
|
146
|
-
},
|
|
147
|
-
/** Sombra */
|
|
148
|
-
SHADOW: {
|
|
149
|
-
KEY: 'component_product_card_shadow',
|
|
150
|
-
DEFAULT: 'soft',
|
|
151
|
-
VALUES: [
|
|
152
|
-
{ label: 'Suave', value: 'soft' },
|
|
153
|
-
{ label: 'Normal', value: 'normal' },
|
|
154
|
-
{ label: 'Nenhuma', value: 'none' },
|
|
155
|
-
],
|
|
156
|
-
},
|
|
157
|
-
/** Proporcao */
|
|
158
|
-
PROPORTION: {
|
|
159
|
-
KEY: 'component_product_card_proportion',
|
|
160
|
-
DEFAULT: '3/4',
|
|
161
|
-
VALUES: [
|
|
162
|
-
{ label: '4/4', value: '4/4' },
|
|
163
|
-
{ label: '3/4', value: '3/4' },
|
|
164
|
-
{ label: '2/3', value: '2/3' },
|
|
165
|
-
],
|
|
166
|
-
},
|
|
167
|
-
/** Mostrar botão */
|
|
168
|
-
SHOW_BUTTON: {
|
|
169
|
-
KEY: 'component_product_card_show_button',
|
|
170
|
-
DEFAULT: 'true',
|
|
171
|
-
VALUES: ['true', 'false'],
|
|
172
|
-
},
|
|
173
|
-
/** Bordas */
|
|
174
|
-
BORDER: {
|
|
175
|
-
KEY: 'component_product_card_border',
|
|
176
|
-
DEFAULT: 'true',
|
|
177
|
-
VALUES: ['true', 'false'],
|
|
178
|
-
},
|
|
179
|
-
};
|
|
180
|
-
exports.PRODUCT_CARD = PRODUCT_CARD;
|
|
181
|
-
/**
|
|
182
|
-
* Refencia da aparencia do botao de compra
|
|
183
|
-
*/
|
|
184
|
-
const BUY_BUTTON = {
|
|
185
|
-
/** Fundo botao */
|
|
186
|
-
LIGHT: {
|
|
187
|
-
COLOR: {
|
|
188
|
-
KEY: 'component_buy_button_color_light',
|
|
189
|
-
DEFAULT: '#8854D0',
|
|
190
|
-
},
|
|
191
|
-
},
|
|
192
|
-
DARK: {
|
|
193
|
-
COLOR: {
|
|
194
|
-
KEY: 'component_buy_button_color_dark',
|
|
195
|
-
DEFAULT: '#8854D0',
|
|
196
|
-
},
|
|
197
|
-
},
|
|
198
|
-
/** Texto botao */
|
|
199
|
-
LIGHTTEXT: {
|
|
200
|
-
COLOR: {
|
|
201
|
-
KEY: 'component_buy_button_text_color_light',
|
|
202
|
-
DEFAULT: '#ffffff',
|
|
203
|
-
},
|
|
204
|
-
},
|
|
205
|
-
DARKTEXT: {
|
|
206
|
-
COLOR: {
|
|
207
|
-
KEY: 'component_buy_button_text_color_dark',
|
|
208
|
-
DEFAULT: '#ffffff',
|
|
209
|
-
},
|
|
210
|
-
},
|
|
211
|
-
};
|
|
212
|
-
exports.BUY_BUTTON = BUY_BUTTON;
|
|
213
|
-
/**
|
|
214
|
-
* Referencia da aparencia do botao de adicionar ao carrinho
|
|
215
|
-
*/
|
|
216
|
-
const CART_BUTTON = {
|
|
217
|
-
/** Fundo botao */
|
|
218
|
-
LIGHT: {
|
|
219
|
-
COLOR: {
|
|
220
|
-
KEY: 'component_cart_button_color_light',
|
|
221
|
-
DEFAULT: '#8854D0',
|
|
222
|
-
},
|
|
223
|
-
},
|
|
224
|
-
DARK: {
|
|
225
|
-
COLOR: {
|
|
226
|
-
KEY: 'component_cart_button_color_dark',
|
|
227
|
-
DEFAULT: '#8854D0',
|
|
228
|
-
},
|
|
229
|
-
},
|
|
230
|
-
/** Texto botao */
|
|
231
|
-
LIGHTTEXT: {
|
|
232
|
-
COLOR: {
|
|
233
|
-
KEY: 'component_cart_button_text_color_light',
|
|
234
|
-
DEFAULT: '#ffffff',
|
|
235
|
-
},
|
|
236
|
-
},
|
|
237
|
-
DARKTEXT: {
|
|
238
|
-
COLOR: {
|
|
239
|
-
KEY: 'component_cart_button_text_color_dark',
|
|
240
|
-
DEFAULT: '#ffffff',
|
|
241
|
-
},
|
|
242
|
-
},
|
|
243
|
-
};
|
|
244
|
-
exports.CART_BUTTON = CART_BUTTON;
|
|
245
|
-
/**
|
|
246
|
-
* Referencia para modo de pagamento a combinar.
|
|
247
|
-
*/
|
|
248
|
-
const COMBINAR_PAYMENT = {
|
|
249
|
-
KEY: 'combinar_payment_show',
|
|
250
|
-
DEFAULT: 'true',
|
|
251
|
-
VALUES: ['true', 'false'],
|
|
252
|
-
};
|
|
253
|
-
exports.COMBINAR_PAYMENT = COMBINAR_PAYMENT;
|
|
254
|
-
const COMBINAR_ENTREGA = {
|
|
255
|
-
KEY: 'combinar_entrega_show',
|
|
256
|
-
DEFAULT: 'true',
|
|
257
|
-
VALUES: ['true', 'false'],
|
|
258
|
-
};
|
|
259
|
-
exports.COMBINAR_ENTREGA = COMBINAR_ENTREGA;
|
|
260
|
-
const ENVIAR_PEDIDO_WPP = {
|
|
261
|
-
KEY: 'enviar_pedido_wpp',
|
|
262
|
-
DEFAULT: 'false',
|
|
263
|
-
VALUES: ['true', 'false'],
|
|
264
|
-
};
|
|
265
|
-
exports.ENVIAR_PEDIDO_WPP = ENVIAR_PEDIDO_WPP;
|
|
266
|
-
const BANNERS_ASPECT_RATIO = {
|
|
267
|
-
KEY: 'banners_aspect_ratio',
|
|
268
|
-
DEFAULT: '16:4',
|
|
269
|
-
VALUES: ['16:4', '16:8'],
|
|
270
|
-
};
|
|
271
|
-
exports.BANNERS_ASPECT_RATIO = BANNERS_ASPECT_RATIO;
|
|
272
|
-
/**
|
|
273
|
-
* Referencia para faixa de destaque na home.
|
|
274
|
-
*/
|
|
275
|
-
const HOME_PAGE_HIGHLIGHT = {
|
|
276
|
-
ENABLED: {
|
|
277
|
-
KEY: 'component_highlight_enabled',
|
|
278
|
-
DEFAULT: false,
|
|
279
|
-
},
|
|
280
|
-
LIGHT: {
|
|
281
|
-
BACKGROUND_COLOR: {
|
|
282
|
-
KEY: 'component_highlight_color_light',
|
|
283
|
-
DEFAULT: '#000000',
|
|
284
|
-
},
|
|
285
|
-
TEXT_COLOR: {
|
|
286
|
-
KEY: 'component_highlight_text_color_light',
|
|
287
|
-
DEFAULT: '#ffffff',
|
|
288
|
-
},
|
|
289
|
-
TEXT: {
|
|
290
|
-
KEY: 'component_highlight_text',
|
|
291
|
-
DEFAULT: '',
|
|
292
|
-
},
|
|
293
|
-
},
|
|
294
|
-
};
|
|
295
|
-
exports.HOME_PAGE_HIGHLIGHT = HOME_PAGE_HIGHLIGHT;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HOME_PAGE_HIGHLIGHT = exports.BANNERS_ASPECT_RATIO = exports.ENVIAR_PEDIDO_WPP = exports.COMBINAR_ENTREGA = exports.COMBINAR_PAYMENT = exports.CART_BUTTON = exports.SUBMENU = exports.HEADER = exports.FOOTER = exports.BUTTON = exports.BUY_BUTTON = exports.PRODUCT_CARD = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Referencia de aparencia do rodape
|
|
6
|
+
*/
|
|
7
|
+
const FOOTER = {
|
|
8
|
+
/** Cor do rodape */
|
|
9
|
+
LIGHT: {
|
|
10
|
+
COLOR: {
|
|
11
|
+
KEY: 'component_footer_light_color',
|
|
12
|
+
DEFAULT: '#8854D0',
|
|
13
|
+
},
|
|
14
|
+
LOGO_FILTER: {
|
|
15
|
+
KEY: 'component_footer_logo_light_filter',
|
|
16
|
+
DEFAULT: 'none',
|
|
17
|
+
VALUES: ['light', 'dark', 'none'],
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
DARK: {
|
|
21
|
+
COLOR: {
|
|
22
|
+
KEY: 'component_footer_dark_color',
|
|
23
|
+
DEFAULT: '#8854D0',
|
|
24
|
+
},
|
|
25
|
+
LOGO_FILTER: {
|
|
26
|
+
KEY: 'component_footer_logo_dark_filter',
|
|
27
|
+
DEFAULT: 'none',
|
|
28
|
+
VALUES: ['light', 'dark', 'none'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
/** Cor do texto */
|
|
32
|
+
LIGHTTEXT: {
|
|
33
|
+
COLOR: {
|
|
34
|
+
KEY: 'component_footer_light_text_color',
|
|
35
|
+
DEFAULT: '#ffffff',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
DARKTEXT: {
|
|
39
|
+
COLOR: {
|
|
40
|
+
KEY: 'component_footer_dark_text_color',
|
|
41
|
+
DEFAULT: '#ffffff',
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
exports.FOOTER = FOOTER;
|
|
46
|
+
/**
|
|
47
|
+
* Referencia de aparencia do cabeçalho
|
|
48
|
+
*/
|
|
49
|
+
const HEADER = {
|
|
50
|
+
/** Cor do cabeçalho */
|
|
51
|
+
LIGHT: {
|
|
52
|
+
COLOR: {
|
|
53
|
+
KEY: 'component_header_light_color',
|
|
54
|
+
DEFAULT: '#8854D0',
|
|
55
|
+
},
|
|
56
|
+
LOGO_FILTER: {
|
|
57
|
+
KEY: 'component_header_logo_light_filter',
|
|
58
|
+
DEFAULT: 'none',
|
|
59
|
+
VALUES: ['light', 'dark', 'none'],
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
DARK: {
|
|
63
|
+
COLOR: {
|
|
64
|
+
KEY: 'component_header_dark_color',
|
|
65
|
+
DEFAULT: '#8854D0',
|
|
66
|
+
},
|
|
67
|
+
LOGO_FILTER: {
|
|
68
|
+
KEY: 'component_header_logo_dark_filter',
|
|
69
|
+
DEFAULT: 'none',
|
|
70
|
+
VALUES: ['light', 'dark', 'none'],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
/** Cor do texto */
|
|
74
|
+
LIGHTTEXT: {
|
|
75
|
+
COLOR: {
|
|
76
|
+
KEY: 'component_header_light_text_color',
|
|
77
|
+
DEFAULT: '#ffffff',
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
DARKTEXT: {
|
|
81
|
+
COLOR: {
|
|
82
|
+
KEY: 'component_header_dark_text_color',
|
|
83
|
+
DEFAULT: '#ffffff',
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
};
|
|
87
|
+
exports.HEADER = HEADER;
|
|
88
|
+
const SUBMENU = {
|
|
89
|
+
/** Cor do submenu */
|
|
90
|
+
LIGHT: {
|
|
91
|
+
COLOR: {
|
|
92
|
+
KEY: 'component_submenu_light_color',
|
|
93
|
+
DEFAULT: '#8854D0',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
DARK: {
|
|
97
|
+
COLOR: {
|
|
98
|
+
KEY: 'component_submenu_dark_color',
|
|
99
|
+
DEFAULT: '#8854D0',
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
/** Cor do texto */
|
|
103
|
+
LIGHTTEXT: {
|
|
104
|
+
COLOR: {
|
|
105
|
+
KEY: 'component_submenu_light_text_color',
|
|
106
|
+
DEFAULT: '#ffffff',
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
DARKTEXT: {
|
|
110
|
+
COLOR: {
|
|
111
|
+
KEY: 'component_submenu_dark_text_color',
|
|
112
|
+
DEFAULT: '#ffffff',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
};
|
|
116
|
+
exports.SUBMENU = SUBMENU;
|
|
117
|
+
/**
|
|
118
|
+
* Rerefencia de aparencia dos botoes
|
|
119
|
+
*/
|
|
120
|
+
const BUTTON = {
|
|
121
|
+
/** Cor de fundo */
|
|
122
|
+
RADIUS: {
|
|
123
|
+
KEY: 'component_button_radius',
|
|
124
|
+
DEFAULT: 'soft',
|
|
125
|
+
VALUES: [
|
|
126
|
+
{ label: 'Suave', value: 'soft' },
|
|
127
|
+
{ label: 'Normal', value: 'normal' },
|
|
128
|
+
{ label: 'Quadrado', value: 'none' },
|
|
129
|
+
],
|
|
130
|
+
},
|
|
131
|
+
};
|
|
132
|
+
exports.BUTTON = BUTTON;
|
|
133
|
+
/**
|
|
134
|
+
* Refencia da aparencia do cartao de produtos
|
|
135
|
+
*/
|
|
136
|
+
const PRODUCT_CARD = {
|
|
137
|
+
/** Arredondamento */
|
|
138
|
+
RADIUS: {
|
|
139
|
+
KEY: 'component_product_card_radius',
|
|
140
|
+
DEFAULT: 'soft',
|
|
141
|
+
VALUES: [
|
|
142
|
+
{ label: 'Suave', value: 'soft' },
|
|
143
|
+
{ label: 'Normal', value: 'normal' },
|
|
144
|
+
{ label: 'Quadrado', value: 'none' },
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
/** Sombra */
|
|
148
|
+
SHADOW: {
|
|
149
|
+
KEY: 'component_product_card_shadow',
|
|
150
|
+
DEFAULT: 'soft',
|
|
151
|
+
VALUES: [
|
|
152
|
+
{ label: 'Suave', value: 'soft' },
|
|
153
|
+
{ label: 'Normal', value: 'normal' },
|
|
154
|
+
{ label: 'Nenhuma', value: 'none' },
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
/** Proporcao */
|
|
158
|
+
PROPORTION: {
|
|
159
|
+
KEY: 'component_product_card_proportion',
|
|
160
|
+
DEFAULT: '3/4',
|
|
161
|
+
VALUES: [
|
|
162
|
+
{ label: '4/4', value: '4/4' },
|
|
163
|
+
{ label: '3/4', value: '3/4' },
|
|
164
|
+
{ label: '2/3', value: '2/3' },
|
|
165
|
+
],
|
|
166
|
+
},
|
|
167
|
+
/** Mostrar botão */
|
|
168
|
+
SHOW_BUTTON: {
|
|
169
|
+
KEY: 'component_product_card_show_button',
|
|
170
|
+
DEFAULT: 'true',
|
|
171
|
+
VALUES: ['true', 'false'],
|
|
172
|
+
},
|
|
173
|
+
/** Bordas */
|
|
174
|
+
BORDER: {
|
|
175
|
+
KEY: 'component_product_card_border',
|
|
176
|
+
DEFAULT: 'true',
|
|
177
|
+
VALUES: ['true', 'false'],
|
|
178
|
+
},
|
|
179
|
+
};
|
|
180
|
+
exports.PRODUCT_CARD = PRODUCT_CARD;
|
|
181
|
+
/**
|
|
182
|
+
* Refencia da aparencia do botao de compra
|
|
183
|
+
*/
|
|
184
|
+
const BUY_BUTTON = {
|
|
185
|
+
/** Fundo botao */
|
|
186
|
+
LIGHT: {
|
|
187
|
+
COLOR: {
|
|
188
|
+
KEY: 'component_buy_button_color_light',
|
|
189
|
+
DEFAULT: '#8854D0',
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
DARK: {
|
|
193
|
+
COLOR: {
|
|
194
|
+
KEY: 'component_buy_button_color_dark',
|
|
195
|
+
DEFAULT: '#8854D0',
|
|
196
|
+
},
|
|
197
|
+
},
|
|
198
|
+
/** Texto botao */
|
|
199
|
+
LIGHTTEXT: {
|
|
200
|
+
COLOR: {
|
|
201
|
+
KEY: 'component_buy_button_text_color_light',
|
|
202
|
+
DEFAULT: '#ffffff',
|
|
203
|
+
},
|
|
204
|
+
},
|
|
205
|
+
DARKTEXT: {
|
|
206
|
+
COLOR: {
|
|
207
|
+
KEY: 'component_buy_button_text_color_dark',
|
|
208
|
+
DEFAULT: '#ffffff',
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
};
|
|
212
|
+
exports.BUY_BUTTON = BUY_BUTTON;
|
|
213
|
+
/**
|
|
214
|
+
* Referencia da aparencia do botao de adicionar ao carrinho
|
|
215
|
+
*/
|
|
216
|
+
const CART_BUTTON = {
|
|
217
|
+
/** Fundo botao */
|
|
218
|
+
LIGHT: {
|
|
219
|
+
COLOR: {
|
|
220
|
+
KEY: 'component_cart_button_color_light',
|
|
221
|
+
DEFAULT: '#8854D0',
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
DARK: {
|
|
225
|
+
COLOR: {
|
|
226
|
+
KEY: 'component_cart_button_color_dark',
|
|
227
|
+
DEFAULT: '#8854D0',
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
/** Texto botao */
|
|
231
|
+
LIGHTTEXT: {
|
|
232
|
+
COLOR: {
|
|
233
|
+
KEY: 'component_cart_button_text_color_light',
|
|
234
|
+
DEFAULT: '#ffffff',
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
DARKTEXT: {
|
|
238
|
+
COLOR: {
|
|
239
|
+
KEY: 'component_cart_button_text_color_dark',
|
|
240
|
+
DEFAULT: '#ffffff',
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
};
|
|
244
|
+
exports.CART_BUTTON = CART_BUTTON;
|
|
245
|
+
/**
|
|
246
|
+
* Referencia para modo de pagamento a combinar.
|
|
247
|
+
*/
|
|
248
|
+
const COMBINAR_PAYMENT = {
|
|
249
|
+
KEY: 'combinar_payment_show',
|
|
250
|
+
DEFAULT: 'true',
|
|
251
|
+
VALUES: ['true', 'false'],
|
|
252
|
+
};
|
|
253
|
+
exports.COMBINAR_PAYMENT = COMBINAR_PAYMENT;
|
|
254
|
+
const COMBINAR_ENTREGA = {
|
|
255
|
+
KEY: 'combinar_entrega_show',
|
|
256
|
+
DEFAULT: 'true',
|
|
257
|
+
VALUES: ['true', 'false'],
|
|
258
|
+
};
|
|
259
|
+
exports.COMBINAR_ENTREGA = COMBINAR_ENTREGA;
|
|
260
|
+
const ENVIAR_PEDIDO_WPP = {
|
|
261
|
+
KEY: 'enviar_pedido_wpp',
|
|
262
|
+
DEFAULT: 'false',
|
|
263
|
+
VALUES: ['true', 'false'],
|
|
264
|
+
};
|
|
265
|
+
exports.ENVIAR_PEDIDO_WPP = ENVIAR_PEDIDO_WPP;
|
|
266
|
+
const BANNERS_ASPECT_RATIO = {
|
|
267
|
+
KEY: 'banners_aspect_ratio',
|
|
268
|
+
DEFAULT: '16:4',
|
|
269
|
+
VALUES: ['16:4', '16:8'],
|
|
270
|
+
};
|
|
271
|
+
exports.BANNERS_ASPECT_RATIO = BANNERS_ASPECT_RATIO;
|
|
272
|
+
/**
|
|
273
|
+
* Referencia para faixa de destaque na home.
|
|
274
|
+
*/
|
|
275
|
+
const HOME_PAGE_HIGHLIGHT = {
|
|
276
|
+
ENABLED: {
|
|
277
|
+
KEY: 'component_highlight_enabled',
|
|
278
|
+
DEFAULT: false,
|
|
279
|
+
},
|
|
280
|
+
LIGHT: {
|
|
281
|
+
BACKGROUND_COLOR: {
|
|
282
|
+
KEY: 'component_highlight_color_light',
|
|
283
|
+
DEFAULT: '#000000',
|
|
284
|
+
},
|
|
285
|
+
TEXT_COLOR: {
|
|
286
|
+
KEY: 'component_highlight_text_color_light',
|
|
287
|
+
DEFAULT: '#ffffff',
|
|
288
|
+
},
|
|
289
|
+
TEXT: {
|
|
290
|
+
KEY: 'component_highlight_text',
|
|
291
|
+
DEFAULT: '',
|
|
292
|
+
},
|
|
293
|
+
},
|
|
294
|
+
};
|
|
295
|
+
exports.HOME_PAGE_HIGHLIGHT = HOME_PAGE_HIGHLIGHT;
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Referencia da aparencia do logo
|
|
3
|
-
*/
|
|
4
|
-
declare const LOGO: {
|
|
5
|
-
URL: {
|
|
6
|
-
DESKTOP: {
|
|
7
|
-
KEY: string;
|
|
8
|
-
};
|
|
9
|
-
MOBILE: {
|
|
10
|
-
KEY: string;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
TYPE: {
|
|
14
|
-
DESKTOP: {
|
|
15
|
-
KEY: string;
|
|
16
|
-
DEFAULT: string;
|
|
17
|
-
};
|
|
18
|
-
MOBILE: {
|
|
19
|
-
KEY: string;
|
|
20
|
-
DEFAULT: string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
DESCRIPTION: {
|
|
24
|
-
MOBILE: {
|
|
25
|
-
KEY: string;
|
|
26
|
-
};
|
|
27
|
-
DESKTOP: {
|
|
28
|
-
KEY: string;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
export { LOGO };
|
|
1
|
+
/**
|
|
2
|
+
* Referencia da aparencia do logo
|
|
3
|
+
*/
|
|
4
|
+
declare const LOGO: {
|
|
5
|
+
URL: {
|
|
6
|
+
DESKTOP: {
|
|
7
|
+
KEY: string;
|
|
8
|
+
};
|
|
9
|
+
MOBILE: {
|
|
10
|
+
KEY: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
TYPE: {
|
|
14
|
+
DESKTOP: {
|
|
15
|
+
KEY: string;
|
|
16
|
+
DEFAULT: string;
|
|
17
|
+
};
|
|
18
|
+
MOBILE: {
|
|
19
|
+
KEY: string;
|
|
20
|
+
DEFAULT: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
DESCRIPTION: {
|
|
24
|
+
MOBILE: {
|
|
25
|
+
KEY: string;
|
|
26
|
+
};
|
|
27
|
+
DESKTOP: {
|
|
28
|
+
KEY: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
export { LOGO };
|