mdz-enum 1.6.34 → 1.6.35

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 (42) hide show
  1. package/README.MD +7 -7
  2. package/dist/checkout/index.d.ts +33 -33
  3. package/dist/checkout/index.js +97 -97
  4. package/dist/commercial/index.d.ts +245 -243
  5. package/dist/commercial/index.js +601 -595
  6. package/dist/common/index.d.ts +59 -59
  7. package/dist/common/index.js +171 -171
  8. package/dist/config/index.d.ts +182 -182
  9. package/dist/config/index.js +525 -525
  10. package/dist/eva/index.d.ts +142 -142
  11. package/dist/eva/index.js +170 -170
  12. package/dist/finance/index.d.ts +207 -207
  13. package/dist/finance/index.js +549 -549
  14. package/dist/fiscal/index.d.ts +536 -536
  15. package/dist/fiscal/index.js +1356 -1356
  16. package/dist/functions.d.ts +11 -11
  17. package/dist/functions.js +74 -74
  18. package/dist/general/index.d.ts +265 -265
  19. package/dist/general/index.js +512 -512
  20. package/dist/index.d.ts +15 -15
  21. package/dist/index.js +246 -246
  22. package/dist/integration/index.d.ts +27 -27
  23. package/dist/integration/index.js +80 -80
  24. package/dist/logistics/index.d.ts +142 -142
  25. package/dist/logistics/index.js +410 -410
  26. package/dist/marketplace/templates/components/index.d.ts +306 -306
  27. package/dist/marketplace/templates/components/index.js +331 -331
  28. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  29. package/dist/marketplace/templates/elements/index.js +35 -35
  30. package/dist/marketplace/templates/index.d.ts +523 -526
  31. package/dist/marketplace/templates/index.js +48 -48
  32. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  33. package/dist/marketplace/templates/pages/index.js +413 -413
  34. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  35. package/dist/marketplace/templates/reference/index.js +26 -26
  36. package/dist/people/index.d.ts +62 -62
  37. package/dist/people/index.js +180 -180
  38. package/dist/platform/index.d.ts +207 -207
  39. package/dist/platform/index.js +600 -600
  40. package/dist/reports/index.d.ts +95 -95
  41. package/dist/reports/index.js +278 -278
  42. package/package.json +33 -33
@@ -1,306 +1,306 @@
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
- };
111
- /**
112
- * Rerefencia de aparencia dos botoes
113
- */
114
- declare const BUTTON: {
115
- /** Cor de fundo */
116
- RADIUS: {
117
- KEY: string;
118
- DEFAULT: string;
119
- VALUES: {
120
- label: string;
121
- value: string;
122
- }[];
123
- };
124
- };
125
- /**
126
- * Refencia da aparencia do cartao de produtos
127
- */
128
- declare const PRODUCT_CARD: {
129
- /** Arredondamento */
130
- RADIUS: {
131
- KEY: string;
132
- DEFAULT: string;
133
- VALUES: {
134
- label: string;
135
- value: string;
136
- }[];
137
- };
138
- /** Sombra */
139
- SHADOW: {
140
- KEY: string;
141
- DEFAULT: string;
142
- VALUES: {
143
- label: string;
144
- value: string;
145
- }[];
146
- };
147
- /** Proporcao */
148
- PROPORTION: {
149
- KEY: string;
150
- DEFAULT: string;
151
- VALUES: {
152
- label: string;
153
- value: string;
154
- }[];
155
- };
156
- /** Mostrar botão */
157
- SHOW_BUTTON: {
158
- KEY: string;
159
- DEFAULT: string;
160
- VALUES: string[];
161
- };
162
- /** Bordas */
163
- BORDER: {
164
- KEY: string;
165
- DEFAULT: string;
166
- VALUES: string[];
167
- };
168
- };
169
- /**
170
- * Refencia da aparencia do botao de compra
171
- */
172
- declare const BUY_BUTTON: {
173
- /** Fundo botao */
174
- LIGHT: {
175
- COLOR: {
176
- KEY: string;
177
- DEFAULT: string;
178
- };
179
- };
180
- DARK: {
181
- COLOR: {
182
- KEY: string;
183
- DEFAULT: string;
184
- };
185
- };
186
- /** Texto botao */
187
- LIGHTTEXT: {
188
- COLOR: {
189
- KEY: string;
190
- DEFAULT: string;
191
- };
192
- };
193
- DARKTEXT: {
194
- COLOR: {
195
- KEY: string;
196
- DEFAULT: string;
197
- };
198
- };
199
- };
200
- /**
201
- * Referencia da aparencia do botao de adicionar ao carrinho
202
- */
203
- declare const CART_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 para modo de pagamento a combinar.
233
- */
234
- declare const COMBINAR_PAYMENT: {
235
- KEY: string;
236
- DEFAULT: string;
237
- VALUES: string[];
238
- };
239
- declare const COMBINAR_ENTREGA: {
240
- KEY: string;
241
- DEFAULT: string;
242
- VALUES: string[];
243
- };
244
- declare const ENVIAR_PEDIDO_WPP: {
245
- KEY: string;
246
- DEFAULT: string;
247
- VALUES: string[];
248
- };
249
- declare const COM_GRADE: {
250
- KEY: string;
251
- DEFAULT: string;
252
- VALUES: string[];
253
- };
254
- declare const CHECKOUT: {
255
- KEY: string;
256
- DEFAULT: string;
257
- VALUES: {
258
- label: string;
259
- value: string;
260
- }[];
261
- };
262
- declare const FORMATO_EXIBICAO: {
263
- KEY: string;
264
- DEFAULT: string;
265
- VALUES: {
266
- label: string;
267
- value: string;
268
- }[];
269
- };
270
- declare const BANNERS_ASPECT_RATIO: {
271
- KEY: string;
272
- DEFAULT: string;
273
- VALUES: string[];
274
- };
275
- declare const IMAGE_DISPLAY: {
276
- KEY: string;
277
- DEFAULT: string;
278
- VALUES: {
279
- label: string;
280
- value: string;
281
- }[];
282
- };
283
- /**
284
- * Referencia para faixa de destaque na home.
285
- */
286
- declare const HOME_PAGE_HIGHLIGHT: {
287
- ENABLED: {
288
- KEY: string;
289
- DEFAULT: boolean;
290
- };
291
- LIGHT: {
292
- BACKGROUND_COLOR: {
293
- KEY: string;
294
- DEFAULT: string;
295
- };
296
- TEXT_COLOR: {
297
- KEY: string;
298
- DEFAULT: string;
299
- };
300
- TEXT: {
301
- KEY: string;
302
- DEFAULT: string;
303
- };
304
- };
305
- };
306
- export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, 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
+ };
111
+ /**
112
+ * Rerefencia de aparencia dos botoes
113
+ */
114
+ declare const BUTTON: {
115
+ /** Cor de fundo */
116
+ RADIUS: {
117
+ KEY: string;
118
+ DEFAULT: string;
119
+ VALUES: {
120
+ label: string;
121
+ value: string;
122
+ }[];
123
+ };
124
+ };
125
+ /**
126
+ * Refencia da aparencia do cartao de produtos
127
+ */
128
+ declare const PRODUCT_CARD: {
129
+ /** Arredondamento */
130
+ RADIUS: {
131
+ KEY: string;
132
+ DEFAULT: string;
133
+ VALUES: {
134
+ label: string;
135
+ value: string;
136
+ }[];
137
+ };
138
+ /** Sombra */
139
+ SHADOW: {
140
+ KEY: string;
141
+ DEFAULT: string;
142
+ VALUES: {
143
+ label: string;
144
+ value: string;
145
+ }[];
146
+ };
147
+ /** Proporcao */
148
+ PROPORTION: {
149
+ KEY: string;
150
+ DEFAULT: string;
151
+ VALUES: {
152
+ label: string;
153
+ value: string;
154
+ }[];
155
+ };
156
+ /** Mostrar botão */
157
+ SHOW_BUTTON: {
158
+ KEY: string;
159
+ DEFAULT: string;
160
+ VALUES: string[];
161
+ };
162
+ /** Bordas */
163
+ BORDER: {
164
+ KEY: string;
165
+ DEFAULT: string;
166
+ VALUES: string[];
167
+ };
168
+ };
169
+ /**
170
+ * Refencia da aparencia do botao de compra
171
+ */
172
+ declare const BUY_BUTTON: {
173
+ /** Fundo botao */
174
+ LIGHT: {
175
+ COLOR: {
176
+ KEY: string;
177
+ DEFAULT: string;
178
+ };
179
+ };
180
+ DARK: {
181
+ COLOR: {
182
+ KEY: string;
183
+ DEFAULT: string;
184
+ };
185
+ };
186
+ /** Texto botao */
187
+ LIGHTTEXT: {
188
+ COLOR: {
189
+ KEY: string;
190
+ DEFAULT: string;
191
+ };
192
+ };
193
+ DARKTEXT: {
194
+ COLOR: {
195
+ KEY: string;
196
+ DEFAULT: string;
197
+ };
198
+ };
199
+ };
200
+ /**
201
+ * Referencia da aparencia do botao de adicionar ao carrinho
202
+ */
203
+ declare const CART_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 para modo de pagamento a combinar.
233
+ */
234
+ declare const COMBINAR_PAYMENT: {
235
+ KEY: string;
236
+ DEFAULT: string;
237
+ VALUES: string[];
238
+ };
239
+ declare const COMBINAR_ENTREGA: {
240
+ KEY: string;
241
+ DEFAULT: string;
242
+ VALUES: string[];
243
+ };
244
+ declare const ENVIAR_PEDIDO_WPP: {
245
+ KEY: string;
246
+ DEFAULT: string;
247
+ VALUES: string[];
248
+ };
249
+ declare const COM_GRADE: {
250
+ KEY: string;
251
+ DEFAULT: string;
252
+ VALUES: string[];
253
+ };
254
+ declare const CHECKOUT: {
255
+ KEY: string;
256
+ DEFAULT: string;
257
+ VALUES: {
258
+ label: string;
259
+ value: string;
260
+ }[];
261
+ };
262
+ declare const FORMATO_EXIBICAO: {
263
+ KEY: string;
264
+ DEFAULT: string;
265
+ VALUES: {
266
+ label: string;
267
+ value: string;
268
+ }[];
269
+ };
270
+ declare const BANNERS_ASPECT_RATIO: {
271
+ KEY: string;
272
+ DEFAULT: string;
273
+ VALUES: string[];
274
+ };
275
+ declare const IMAGE_DISPLAY: {
276
+ KEY: string;
277
+ DEFAULT: string;
278
+ VALUES: {
279
+ label: string;
280
+ value: string;
281
+ }[];
282
+ };
283
+ /**
284
+ * Referencia para faixa de destaque na home.
285
+ */
286
+ declare const HOME_PAGE_HIGHLIGHT: {
287
+ ENABLED: {
288
+ KEY: string;
289
+ DEFAULT: boolean;
290
+ };
291
+ LIGHT: {
292
+ BACKGROUND_COLOR: {
293
+ KEY: string;
294
+ DEFAULT: string;
295
+ };
296
+ TEXT_COLOR: {
297
+ KEY: string;
298
+ DEFAULT: string;
299
+ };
300
+ TEXT: {
301
+ KEY: string;
302
+ DEFAULT: string;
303
+ };
304
+ };
305
+ };
306
+ export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, COM_GRADE, CHECKOUT, FORMATO_EXIBICAO, BANNERS_ASPECT_RATIO, IMAGE_DISPLAY, HOME_PAGE_HIGHLIGHT, };