mdz-enum 1.6.17 → 1.6.19

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 (39) 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 +237 -237
  4. package/dist/commercial/index.js +578 -578
  5. package/dist/common/index.d.ts +59 -59
  6. package/dist/common/index.js +171 -171
  7. package/dist/config/index.d.ts +181 -181
  8. package/dist/config/index.js +522 -522
  9. package/dist/finance/index.d.ts +177 -177
  10. package/dist/finance/index.js +462 -462
  11. package/dist/fiscal/index.d.ts +536 -536
  12. package/dist/fiscal/index.js +1356 -1356
  13. package/dist/functions.d.ts +11 -11
  14. package/dist/functions.js +74 -74
  15. package/dist/general/index.d.ts +265 -265
  16. package/dist/general/index.js +512 -512
  17. package/dist/index.d.ts +14 -14
  18. package/dist/index.js +232 -232
  19. package/dist/integration/index.d.ts +27 -27
  20. package/dist/integration/index.js +80 -80
  21. package/dist/logistics/index.d.ts +142 -142
  22. package/dist/logistics/index.js +410 -410
  23. package/dist/marketplace/templates/components/index.d.ts +290 -285
  24. package/dist/marketplace/templates/components/index.js +311 -305
  25. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  26. package/dist/marketplace/templates/elements/index.js +35 -35
  27. package/dist/marketplace/templates/index.d.ts +507 -502
  28. package/dist/marketplace/templates/index.js +46 -45
  29. package/dist/marketplace/templates/pages/index.d.ts +233 -233
  30. package/dist/marketplace/templates/pages/index.js +413 -413
  31. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  32. package/dist/marketplace/templates/reference/index.js +26 -26
  33. package/dist/people/index.d.ts +50 -50
  34. package/dist/people/index.js +145 -145
  35. package/dist/platform/index.d.ts +205 -205
  36. package/dist/platform/index.js +594 -594
  37. package/dist/reports/index.d.ts +90 -90
  38. package/dist/reports/index.js +263 -263
  39. package/package.json +2 -3
@@ -1,285 +1,290 @@
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 BANNERS_ASPECT_RATIO: {
250
- KEY: string;
251
- DEFAULT: string;
252
- VALUES: string[];
253
- };
254
- declare const IMAGE_DISPLAY: {
255
- KEY: string;
256
- DEFAULT: string;
257
- VALUES: {
258
- label: string;
259
- value: string;
260
- }[];
261
- };
262
- /**
263
- * Referencia para faixa de destaque na home.
264
- */
265
- declare const HOME_PAGE_HIGHLIGHT: {
266
- ENABLED: {
267
- KEY: string;
268
- DEFAULT: boolean;
269
- };
270
- LIGHT: {
271
- BACKGROUND_COLOR: {
272
- KEY: string;
273
- DEFAULT: string;
274
- };
275
- TEXT_COLOR: {
276
- KEY: string;
277
- DEFAULT: string;
278
- };
279
- TEXT: {
280
- KEY: string;
281
- DEFAULT: string;
282
- };
283
- };
284
- };
285
- export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, 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 BANNERS_ASPECT_RATIO: {
255
+ KEY: string;
256
+ DEFAULT: string;
257
+ VALUES: string[];
258
+ };
259
+ declare const IMAGE_DISPLAY: {
260
+ KEY: string;
261
+ DEFAULT: string;
262
+ VALUES: {
263
+ label: string;
264
+ value: string;
265
+ }[];
266
+ };
267
+ /**
268
+ * Referencia para faixa de destaque na home.
269
+ */
270
+ declare const HOME_PAGE_HIGHLIGHT: {
271
+ ENABLED: {
272
+ KEY: string;
273
+ DEFAULT: boolean;
274
+ };
275
+ LIGHT: {
276
+ BACKGROUND_COLOR: {
277
+ KEY: string;
278
+ DEFAULT: string;
279
+ };
280
+ TEXT_COLOR: {
281
+ KEY: string;
282
+ DEFAULT: string;
283
+ };
284
+ TEXT: {
285
+ KEY: string;
286
+ DEFAULT: string;
287
+ };
288
+ };
289
+ };
290
+ export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, COM_GRADE, BANNERS_ASPECT_RATIO, IMAGE_DISPLAY, HOME_PAGE_HIGHLIGHT, };