mdz-enum 1.6.79 → 1.6.81

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.
Files changed (43) hide show
  1. package/dist/checkout/index.d.ts +33 -33
  2. package/dist/checkout/index.js +97 -97
  3. package/dist/commercial/index.d.ts +249 -248
  4. package/dist/commercial/index.js +613 -610
  5. package/dist/common/index.d.ts +71 -71
  6. package/dist/common/index.js +205 -205
  7. package/dist/config/index.d.ts +200 -200
  8. package/dist/config/index.js +576 -576
  9. package/dist/eva/index.d.ts +164 -145
  10. package/dist/eva/index.js +233 -179
  11. package/dist/finance/index.d.ts +240 -240
  12. package/dist/finance/index.js +728 -728
  13. package/dist/fiscal/index.d.ts +572 -572
  14. package/dist/fiscal/index.js +1484 -1484
  15. package/dist/functions.d.ts +11 -11
  16. package/dist/functions.js +74 -74
  17. package/dist/general/index.d.ts +265 -265
  18. package/dist/general/index.js +512 -512
  19. package/dist/home/index.d.ts +88 -88
  20. package/dist/home/index.js +268 -268
  21. package/dist/index.d.ts +16 -16
  22. package/dist/index.js +273 -270
  23. package/dist/integration/index.d.ts +37 -37
  24. package/dist/integration/index.js +109 -109
  25. package/dist/logistics/index.d.ts +195 -195
  26. package/dist/logistics/index.js +554 -554
  27. package/dist/marketplace/templates/components/index.d.ts +352 -352
  28. package/dist/marketplace/templates/components/index.js +383 -383
  29. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  30. package/dist/marketplace/templates/elements/index.js +35 -35
  31. package/dist/marketplace/templates/index.d.ts +589 -571
  32. package/dist/marketplace/templates/index.js +49 -49
  33. package/dist/marketplace/templates/pages/index.d.ts +254 -233
  34. package/dist/marketplace/templates/pages/index.js +443 -413
  35. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  36. package/dist/marketplace/templates/reference/index.js +26 -26
  37. package/dist/people/index.d.ts +65 -65
  38. package/dist/people/index.js +189 -189
  39. package/dist/platform/index.d.ts +220 -220
  40. package/dist/platform/index.js +638 -638
  41. package/dist/reports/index.d.ts +103 -103
  42. package/dist/reports/index.js +301 -301
  43. package/package.json +1 -1
@@ -1,352 +1,352 @@
1
- /**
2
- * Referencia de aparencia do rodape
3
- */
4
- declare const FOOTER: {
5
- /** Cor do rodape */
6
- LIGHT: {
7
- COLOR: {
8
- KEY: string;
9
- DEFAULT: string;
10
- };
11
- LOGO_FILTER: {
12
- KEY: string;
13
- DEFAULT: string;
14
- VALUES: string[];
15
- };
16
- };
17
- DARK: {
18
- COLOR: {
19
- KEY: string;
20
- DEFAULT: string;
21
- };
22
- LOGO_FILTER: {
23
- KEY: string;
24
- DEFAULT: string;
25
- VALUES: string[];
26
- };
27
- };
28
- /** Cor do texto */
29
- LIGHTTEXT: {
30
- COLOR: {
31
- KEY: string;
32
- DEFAULT: string;
33
- };
34
- };
35
- DARKTEXT: {
36
- COLOR: {
37
- KEY: string;
38
- DEFAULT: string;
39
- };
40
- };
41
- };
42
- /**
43
- * Referencia de aparencia do cabeçalho
44
- */
45
- declare const HEADER: {
46
- /** Cor do cabeçalho */
47
- LIGHT: {
48
- COLOR: {
49
- KEY: string;
50
- DEFAULT: string;
51
- };
52
- LOGO_FILTER: {
53
- KEY: string;
54
- DEFAULT: string;
55
- VALUES: string[];
56
- };
57
- };
58
- DARK: {
59
- COLOR: {
60
- KEY: string;
61
- DEFAULT: string;
62
- };
63
- LOGO_FILTER: {
64
- KEY: string;
65
- DEFAULT: string;
66
- VALUES: string[];
67
- };
68
- };
69
- /** Cor do texto */
70
- LIGHTTEXT: {
71
- COLOR: {
72
- KEY: string;
73
- DEFAULT: string;
74
- };
75
- };
76
- DARKTEXT: {
77
- COLOR: {
78
- KEY: string;
79
- DEFAULT: string;
80
- };
81
- };
82
- };
83
- declare const SUBMENU: {
84
- /** Cor do submenu */
85
- LIGHT: {
86
- COLOR: {
87
- KEY: string;
88
- DEFAULT: string;
89
- };
90
- };
91
- DARK: {
92
- COLOR: {
93
- KEY: string;
94
- DEFAULT: string;
95
- };
96
- };
97
- /** Cor do texto */
98
- LIGHTTEXT: {
99
- COLOR: {
100
- KEY: string;
101
- DEFAULT: string;
102
- };
103
- };
104
- DARKTEXT: {
105
- COLOR: {
106
- KEY: string;
107
- DEFAULT: string;
108
- };
109
- };
110
- /** Submenu dinâmico: substitui o item "Categorias" */
111
- DYNAMIC: {
112
- ENABLED: {
113
- KEY: string;
114
- DEFAULT: string;
115
- };
116
- MAX_ITEMS: number;
117
- ITEMS: {
118
- POSITION: number;
119
- LABEL: {
120
- KEY: string;
121
- DEFAULT: string;
122
- };
123
- TYPE: {
124
- KEY: string;
125
- DEFAULT: string;
126
- };
127
- ATTRIBUTE_ITEM: {
128
- KEY: string;
129
- DEFAULT: string;
130
- };
131
- COLLECTION: {
132
- KEY: string;
133
- DEFAULT: string;
134
- };
135
- CATEGORY: {
136
- KEY: string;
137
- DEFAULT: string;
138
- };
139
- }[];
140
- };
141
- };
142
- /**
143
- * Rerefencia de aparencia dos botoes
144
- */
145
- declare const BUTTON: {
146
- /** Cor de fundo */
147
- RADIUS: {
148
- KEY: string;
149
- DEFAULT: string;
150
- VALUES: {
151
- label: string;
152
- value: string;
153
- }[];
154
- };
155
- };
156
- /**
157
- * Refencia da aparencia do cartao de produtos
158
- */
159
- declare const PRODUCT_CARD: {
160
- /** Arredondamento */
161
- RADIUS: {
162
- KEY: string;
163
- DEFAULT: string;
164
- VALUES: {
165
- label: string;
166
- value: string;
167
- }[];
168
- };
169
- /** Sombra */
170
- SHADOW: {
171
- KEY: string;
172
- DEFAULT: string;
173
- VALUES: {
174
- label: string;
175
- value: string;
176
- }[];
177
- };
178
- /** Proporcao */
179
- PROPORTION: {
180
- KEY: string;
181
- DEFAULT: string;
182
- VALUES: {
183
- label: string;
184
- value: string;
185
- }[];
186
- };
187
- /** Mostrar botão */
188
- SHOW_BUTTON: {
189
- KEY: string;
190
- DEFAULT: string;
191
- VALUES: string[];
192
- };
193
- /** Bordas */
194
- BORDER: {
195
- KEY: string;
196
- DEFAULT: string;
197
- VALUES: string[];
198
- };
199
- };
200
- /**
201
- * Refencia da aparencia do botao de compra
202
- */
203
- declare const BUY_BUTTON: {
204
- /** Fundo botao */
205
- LIGHT: {
206
- COLOR: {
207
- KEY: string;
208
- DEFAULT: string;
209
- };
210
- };
211
- DARK: {
212
- COLOR: {
213
- KEY: string;
214
- DEFAULT: string;
215
- };
216
- };
217
- /** Texto botao */
218
- LIGHTTEXT: {
219
- COLOR: {
220
- KEY: string;
221
- DEFAULT: string;
222
- };
223
- };
224
- DARKTEXT: {
225
- COLOR: {
226
- KEY: string;
227
- DEFAULT: string;
228
- };
229
- };
230
- };
231
- /**
232
- * Referencia da aparencia do botao de adicionar ao carrinho
233
- */
234
- declare const CART_BUTTON: {
235
- /** Fundo botao */
236
- LIGHT: {
237
- COLOR: {
238
- KEY: string;
239
- DEFAULT: string;
240
- };
241
- };
242
- DARK: {
243
- COLOR: {
244
- KEY: string;
245
- DEFAULT: string;
246
- };
247
- };
248
- /** Texto botao */
249
- LIGHTTEXT: {
250
- COLOR: {
251
- KEY: string;
252
- DEFAULT: string;
253
- };
254
- };
255
- DARKTEXT: {
256
- COLOR: {
257
- KEY: string;
258
- DEFAULT: string;
259
- };
260
- };
261
- };
262
- /**
263
- * Referencia para modo de pagamento a combinar.
264
- */
265
- declare const COMBINAR_PAYMENT: {
266
- KEY: string;
267
- DEFAULT: string;
268
- VALUES: string[];
269
- };
270
- declare const COMBINAR_ENTREGA: {
271
- KEY: string;
272
- DEFAULT: string;
273
- VALUES: string[];
274
- };
275
- declare const ENVIAR_PEDIDO_WPP: {
276
- KEY: string;
277
- DEFAULT: string;
278
- VALUES: string[];
279
- };
280
- declare const LOJA_ATACADISTA: {
281
- ENABLED: {
282
- KEY: string;
283
- DEFAULT: string;
284
- VALUES: string[];
285
- };
286
- MINIMUM_VALUE: {
287
- KEY: string;
288
- DEFAULT: string;
289
- };
290
- MESSAGE: {
291
- KEY: string;
292
- DEFAULT: string;
293
- };
294
- };
295
- declare const COM_GRADE: {
296
- KEY: string;
297
- DEFAULT: string;
298
- VALUES: string[];
299
- };
300
- declare const CHECKOUT: {
301
- KEY: string;
302
- DEFAULT: string;
303
- VALUES: {
304
- label: string;
305
- value: string;
306
- }[];
307
- };
308
- declare const FORMATO_EXIBICAO: {
309
- KEY: string;
310
- DEFAULT: string;
311
- VALUES: {
312
- label: string;
313
- value: string;
314
- }[];
315
- };
316
- declare const BANNERS_ASPECT_RATIO: {
317
- KEY: string;
318
- DEFAULT: string;
319
- VALUES: string[];
320
- };
321
- declare const IMAGE_DISPLAY: {
322
- KEY: string;
323
- DEFAULT: string;
324
- VALUES: {
325
- label: string;
326
- value: string;
327
- }[];
328
- };
329
- /**
330
- * Referencia para faixa de destaque na home.
331
- */
332
- declare const HOME_PAGE_HIGHLIGHT: {
333
- ENABLED: {
334
- KEY: string;
335
- DEFAULT: boolean;
336
- };
337
- LIGHT: {
338
- BACKGROUND_COLOR: {
339
- KEY: string;
340
- DEFAULT: string;
341
- };
342
- TEXT_COLOR: {
343
- KEY: string;
344
- DEFAULT: string;
345
- };
346
- TEXT: {
347
- KEY: string;
348
- DEFAULT: string;
349
- };
350
- };
351
- };
352
- export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, LOJA_ATACADISTA, COM_GRADE, CHECKOUT, FORMATO_EXIBICAO, BANNERS_ASPECT_RATIO, IMAGE_DISPLAY, HOME_PAGE_HIGHLIGHT, };
1
+ /**
2
+ * Referencia de aparencia do rodape
3
+ */
4
+ declare const FOOTER: {
5
+ /** Cor do rodape */
6
+ LIGHT: {
7
+ COLOR: {
8
+ KEY: string;
9
+ DEFAULT: string;
10
+ };
11
+ LOGO_FILTER: {
12
+ KEY: string;
13
+ DEFAULT: string;
14
+ VALUES: string[];
15
+ };
16
+ };
17
+ DARK: {
18
+ COLOR: {
19
+ KEY: string;
20
+ DEFAULT: string;
21
+ };
22
+ LOGO_FILTER: {
23
+ KEY: string;
24
+ DEFAULT: string;
25
+ VALUES: string[];
26
+ };
27
+ };
28
+ /** Cor do texto */
29
+ LIGHTTEXT: {
30
+ COLOR: {
31
+ KEY: string;
32
+ DEFAULT: string;
33
+ };
34
+ };
35
+ DARKTEXT: {
36
+ COLOR: {
37
+ KEY: string;
38
+ DEFAULT: string;
39
+ };
40
+ };
41
+ };
42
+ /**
43
+ * Referencia de aparencia do cabeçalho
44
+ */
45
+ declare const HEADER: {
46
+ /** Cor do cabeçalho */
47
+ LIGHT: {
48
+ COLOR: {
49
+ KEY: string;
50
+ DEFAULT: string;
51
+ };
52
+ LOGO_FILTER: {
53
+ KEY: string;
54
+ DEFAULT: string;
55
+ VALUES: string[];
56
+ };
57
+ };
58
+ DARK: {
59
+ COLOR: {
60
+ KEY: string;
61
+ DEFAULT: string;
62
+ };
63
+ LOGO_FILTER: {
64
+ KEY: string;
65
+ DEFAULT: string;
66
+ VALUES: string[];
67
+ };
68
+ };
69
+ /** Cor do texto */
70
+ LIGHTTEXT: {
71
+ COLOR: {
72
+ KEY: string;
73
+ DEFAULT: string;
74
+ };
75
+ };
76
+ DARKTEXT: {
77
+ COLOR: {
78
+ KEY: string;
79
+ DEFAULT: string;
80
+ };
81
+ };
82
+ };
83
+ declare const SUBMENU: {
84
+ /** Cor do submenu */
85
+ LIGHT: {
86
+ COLOR: {
87
+ KEY: string;
88
+ DEFAULT: string;
89
+ };
90
+ };
91
+ DARK: {
92
+ COLOR: {
93
+ KEY: string;
94
+ DEFAULT: string;
95
+ };
96
+ };
97
+ /** Cor do texto */
98
+ LIGHTTEXT: {
99
+ COLOR: {
100
+ KEY: string;
101
+ DEFAULT: string;
102
+ };
103
+ };
104
+ DARKTEXT: {
105
+ COLOR: {
106
+ KEY: string;
107
+ DEFAULT: string;
108
+ };
109
+ };
110
+ /** Submenu dinâmico: substitui o item "Categorias" */
111
+ DYNAMIC: {
112
+ ENABLED: {
113
+ KEY: string;
114
+ DEFAULT: string;
115
+ };
116
+ MAX_ITEMS: number;
117
+ ITEMS: {
118
+ POSITION: number;
119
+ LABEL: {
120
+ KEY: string;
121
+ DEFAULT: string;
122
+ };
123
+ TYPE: {
124
+ KEY: string;
125
+ DEFAULT: string;
126
+ };
127
+ ATTRIBUTE_ITEM: {
128
+ KEY: string;
129
+ DEFAULT: string;
130
+ };
131
+ COLLECTION: {
132
+ KEY: string;
133
+ DEFAULT: string;
134
+ };
135
+ CATEGORY: {
136
+ KEY: string;
137
+ DEFAULT: string;
138
+ };
139
+ }[];
140
+ };
141
+ };
142
+ /**
143
+ * Rerefencia de aparencia dos botoes
144
+ */
145
+ declare const BUTTON: {
146
+ /** Cor de fundo */
147
+ RADIUS: {
148
+ KEY: string;
149
+ DEFAULT: string;
150
+ VALUES: {
151
+ label: string;
152
+ value: string;
153
+ }[];
154
+ };
155
+ };
156
+ /**
157
+ * Refencia da aparencia do cartao de produtos
158
+ */
159
+ declare const PRODUCT_CARD: {
160
+ /** Arredondamento */
161
+ RADIUS: {
162
+ KEY: string;
163
+ DEFAULT: string;
164
+ VALUES: {
165
+ label: string;
166
+ value: string;
167
+ }[];
168
+ };
169
+ /** Sombra */
170
+ SHADOW: {
171
+ KEY: string;
172
+ DEFAULT: string;
173
+ VALUES: {
174
+ label: string;
175
+ value: string;
176
+ }[];
177
+ };
178
+ /** Proporcao */
179
+ PROPORTION: {
180
+ KEY: string;
181
+ DEFAULT: string;
182
+ VALUES: {
183
+ label: string;
184
+ value: string;
185
+ }[];
186
+ };
187
+ /** Mostrar botão */
188
+ SHOW_BUTTON: {
189
+ KEY: string;
190
+ DEFAULT: string;
191
+ VALUES: string[];
192
+ };
193
+ /** Bordas */
194
+ BORDER: {
195
+ KEY: string;
196
+ DEFAULT: string;
197
+ VALUES: string[];
198
+ };
199
+ };
200
+ /**
201
+ * Refencia da aparencia do botao de compra
202
+ */
203
+ declare const BUY_BUTTON: {
204
+ /** Fundo botao */
205
+ LIGHT: {
206
+ COLOR: {
207
+ KEY: string;
208
+ DEFAULT: string;
209
+ };
210
+ };
211
+ DARK: {
212
+ COLOR: {
213
+ KEY: string;
214
+ DEFAULT: string;
215
+ };
216
+ };
217
+ /** Texto botao */
218
+ LIGHTTEXT: {
219
+ COLOR: {
220
+ KEY: string;
221
+ DEFAULT: string;
222
+ };
223
+ };
224
+ DARKTEXT: {
225
+ COLOR: {
226
+ KEY: string;
227
+ DEFAULT: string;
228
+ };
229
+ };
230
+ };
231
+ /**
232
+ * Referencia da aparencia do botao de adicionar ao carrinho
233
+ */
234
+ declare const CART_BUTTON: {
235
+ /** Fundo botao */
236
+ LIGHT: {
237
+ COLOR: {
238
+ KEY: string;
239
+ DEFAULT: string;
240
+ };
241
+ };
242
+ DARK: {
243
+ COLOR: {
244
+ KEY: string;
245
+ DEFAULT: string;
246
+ };
247
+ };
248
+ /** Texto botao */
249
+ LIGHTTEXT: {
250
+ COLOR: {
251
+ KEY: string;
252
+ DEFAULT: string;
253
+ };
254
+ };
255
+ DARKTEXT: {
256
+ COLOR: {
257
+ KEY: string;
258
+ DEFAULT: string;
259
+ };
260
+ };
261
+ };
262
+ /**
263
+ * Referencia para modo de pagamento a combinar.
264
+ */
265
+ declare const COMBINAR_PAYMENT: {
266
+ KEY: string;
267
+ DEFAULT: string;
268
+ VALUES: string[];
269
+ };
270
+ declare const COMBINAR_ENTREGA: {
271
+ KEY: string;
272
+ DEFAULT: string;
273
+ VALUES: string[];
274
+ };
275
+ declare const ENVIAR_PEDIDO_WPP: {
276
+ KEY: string;
277
+ DEFAULT: string;
278
+ VALUES: string[];
279
+ };
280
+ declare const LOJA_ATACADISTA: {
281
+ ENABLED: {
282
+ KEY: string;
283
+ DEFAULT: string;
284
+ VALUES: string[];
285
+ };
286
+ MINIMUM_VALUE: {
287
+ KEY: string;
288
+ DEFAULT: string;
289
+ };
290
+ MESSAGE: {
291
+ KEY: string;
292
+ DEFAULT: string;
293
+ };
294
+ };
295
+ declare const COM_GRADE: {
296
+ KEY: string;
297
+ DEFAULT: string;
298
+ VALUES: string[];
299
+ };
300
+ declare const CHECKOUT: {
301
+ KEY: string;
302
+ DEFAULT: string;
303
+ VALUES: {
304
+ label: string;
305
+ value: string;
306
+ }[];
307
+ };
308
+ declare const FORMATO_EXIBICAO: {
309
+ KEY: string;
310
+ DEFAULT: string;
311
+ VALUES: {
312
+ label: string;
313
+ value: string;
314
+ }[];
315
+ };
316
+ declare const BANNERS_ASPECT_RATIO: {
317
+ KEY: string;
318
+ DEFAULT: string;
319
+ VALUES: string[];
320
+ };
321
+ declare const IMAGE_DISPLAY: {
322
+ KEY: string;
323
+ DEFAULT: string;
324
+ VALUES: {
325
+ label: string;
326
+ value: string;
327
+ }[];
328
+ };
329
+ /**
330
+ * Referencia para faixa de destaque na home.
331
+ */
332
+ declare const HOME_PAGE_HIGHLIGHT: {
333
+ ENABLED: {
334
+ KEY: string;
335
+ DEFAULT: boolean;
336
+ };
337
+ LIGHT: {
338
+ BACKGROUND_COLOR: {
339
+ KEY: string;
340
+ DEFAULT: string;
341
+ };
342
+ TEXT_COLOR: {
343
+ KEY: string;
344
+ DEFAULT: string;
345
+ };
346
+ TEXT: {
347
+ KEY: string;
348
+ DEFAULT: string;
349
+ };
350
+ };
351
+ };
352
+ export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, LOJA_ATACADISTA, COM_GRADE, CHECKOUT, FORMATO_EXIBICAO, BANNERS_ASPECT_RATIO, IMAGE_DISPLAY, HOME_PAGE_HIGHLIGHT, };