mdz-enum 1.5.85 → 1.5.87

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 (40) 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 +232 -232
  5. package/dist/commercial/index.js +564 -564
  6. package/dist/common/index.d.ts +52 -52
  7. package/dist/common/index.js +151 -151
  8. package/dist/config/index.d.ts +176 -176
  9. package/dist/config/index.js +507 -507
  10. package/dist/finance/index.d.ts +172 -171
  11. package/dist/finance/index.js +448 -445
  12. package/dist/fiscal/index.d.ts +491 -486
  13. package/dist/fiscal/index.js +1221 -1207
  14. package/dist/functions.d.ts +11 -11
  15. package/dist/functions.js +74 -74
  16. package/dist/general/index.d.ts +265 -265
  17. package/dist/general/index.js +512 -512
  18. package/dist/index.d.ts +14 -14
  19. package/dist/index.js +221 -220
  20. package/dist/integration/index.d.ts +27 -27
  21. package/dist/integration/index.js +80 -80
  22. package/dist/logistics/index.d.ts +130 -130
  23. package/dist/logistics/index.js +376 -376
  24. package/dist/marketplace/templates/components/index.d.ts +277 -277
  25. package/dist/marketplace/templates/components/index.js +295 -295
  26. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  27. package/dist/marketplace/templates/elements/index.js +35 -35
  28. package/dist/marketplace/templates/index.d.ts +471 -468
  29. package/dist/marketplace/templates/index.js +44 -44
  30. package/dist/marketplace/templates/pages/index.d.ts +207 -207
  31. package/dist/marketplace/templates/pages/index.js +383 -383
  32. package/dist/marketplace/templates/reference/index.d.ts +24 -24
  33. package/dist/marketplace/templates/reference/index.js +26 -26
  34. package/dist/people/index.d.ts +50 -50
  35. package/dist/people/index.js +145 -145
  36. package/dist/platform/index.d.ts +202 -202
  37. package/dist/platform/index.js +585 -585
  38. package/dist/reports/index.d.ts +57 -57
  39. package/dist/reports/index.js +168 -168
  40. package/package.json +33 -33
@@ -1,277 +1,277 @@
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
- /**
255
- * Referencia para faixa de destaque na home.
256
- */
257
- declare const HOME_PAGE_HIGHLIGHT: {
258
- ENABLED: {
259
- KEY: string;
260
- DEFAULT: boolean;
261
- };
262
- LIGHT: {
263
- BACKGROUND_COLOR: {
264
- KEY: string;
265
- DEFAULT: string;
266
- };
267
- TEXT_COLOR: {
268
- KEY: string;
269
- DEFAULT: string;
270
- };
271
- TEXT: {
272
- KEY: string;
273
- DEFAULT: string;
274
- };
275
- };
276
- };
277
- export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, BANNERS_ASPECT_RATIO, 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 BANNERS_ASPECT_RATIO: {
250
+ KEY: string;
251
+ DEFAULT: string;
252
+ VALUES: string[];
253
+ };
254
+ /**
255
+ * Referencia para faixa de destaque na home.
256
+ */
257
+ declare const HOME_PAGE_HIGHLIGHT: {
258
+ ENABLED: {
259
+ KEY: string;
260
+ DEFAULT: boolean;
261
+ };
262
+ LIGHT: {
263
+ BACKGROUND_COLOR: {
264
+ KEY: string;
265
+ DEFAULT: string;
266
+ };
267
+ TEXT_COLOR: {
268
+ KEY: string;
269
+ DEFAULT: string;
270
+ };
271
+ TEXT: {
272
+ KEY: string;
273
+ DEFAULT: string;
274
+ };
275
+ };
276
+ };
277
+ export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA, ENVIAR_PEDIDO_WPP, BANNERS_ASPECT_RATIO, HOME_PAGE_HIGHLIGHT, };