mdz-enum 1.5.43 → 1.5.45

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 +28 -28
  2. package/dist/checkout/index.js +83 -83
  3. package/dist/commercial/index.d.ts +227 -227
  4. package/dist/commercial/index.js +549 -549
  5. package/dist/common/index.d.ts +51 -47
  6. package/dist/common/index.js +141 -137
  7. package/dist/config/index.d.ts +167 -167
  8. package/dist/config/index.js +481 -481
  9. package/dist/finance/index.d.ts +170 -170
  10. package/dist/finance/index.js +442 -442
  11. package/dist/fiscal/index.d.ts +479 -479
  12. package/dist/fiscal/index.js +1196 -1196
  13. package/dist/functions.d.ts +11 -11
  14. package/dist/functions.js +74 -74
  15. package/dist/general/index.d.ts +264 -264
  16. package/dist/general/index.js +509 -509
  17. package/dist/index.d.ts +14 -14
  18. package/dist/index.js +216 -215
  19. package/dist/integration/index.d.ts +19 -19
  20. package/dist/integration/index.js +57 -57
  21. package/dist/logistics/index.d.ts +129 -129
  22. package/dist/logistics/index.js +373 -373
  23. package/dist/marketplace/templates/components/index.d.ts +238 -238
  24. package/dist/marketplace/templates/components/index.js +252 -252
  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 +366 -366
  28. package/dist/marketplace/templates/index.js +41 -41
  29. package/dist/marketplace/templates/pages/index.d.ts +140 -140
  30. package/dist/marketplace/templates/pages/index.js +310 -310
  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 +36 -36
  34. package/dist/people/index.js +105 -105
  35. package/dist/platform/index.d.ts +193 -193
  36. package/dist/platform/index.js +558 -558
  37. package/dist/reports/index.d.ts +55 -55
  38. package/dist/reports/index.js +162 -162
  39. package/package.json +1 -1
@@ -1,238 +1,238 @@
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
- };
163
- /**
164
- * Refencia da aparencia do botao de compra
165
- */
166
- declare const BUY_BUTTON: {
167
- /** Fundo botao */
168
- LIGHT: {
169
- COLOR: {
170
- KEY: string;
171
- DEFAULT: string;
172
- };
173
- };
174
- DARK: {
175
- COLOR: {
176
- KEY: string;
177
- DEFAULT: string;
178
- };
179
- };
180
- /** Texto botao */
181
- LIGHTTEXT: {
182
- COLOR: {
183
- KEY: string;
184
- DEFAULT: string;
185
- };
186
- };
187
- DARKTEXT: {
188
- COLOR: {
189
- KEY: string;
190
- DEFAULT: string;
191
- };
192
- };
193
- };
194
- /**
195
- * Referencia da aparencia do botao de adicionar ao carrinho
196
- */
197
- declare const CART_BUTTON: {
198
- /** Fundo botao */
199
- LIGHT: {
200
- COLOR: {
201
- KEY: string;
202
- DEFAULT: string;
203
- };
204
- };
205
- DARK: {
206
- COLOR: {
207
- KEY: string;
208
- DEFAULT: string;
209
- };
210
- };
211
- /** Texto botao */
212
- LIGHTTEXT: {
213
- COLOR: {
214
- KEY: string;
215
- DEFAULT: string;
216
- };
217
- };
218
- DARKTEXT: {
219
- COLOR: {
220
- KEY: string;
221
- DEFAULT: string;
222
- };
223
- };
224
- };
225
- /**
226
- * Referencia para modo de pagamento a combinar.
227
- */
228
- declare const COMBINAR_PAYMENT: {
229
- KEY: string;
230
- DEFAULT: string;
231
- VALUES: string[];
232
- };
233
- declare const COMBINAR_ENTREGA: {
234
- KEY: string;
235
- DEFAULT: string;
236
- VALUES: string[];
237
- };
238
- export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA };
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
+ };
163
+ /**
164
+ * Refencia da aparencia do botao de compra
165
+ */
166
+ declare const BUY_BUTTON: {
167
+ /** Fundo botao */
168
+ LIGHT: {
169
+ COLOR: {
170
+ KEY: string;
171
+ DEFAULT: string;
172
+ };
173
+ };
174
+ DARK: {
175
+ COLOR: {
176
+ KEY: string;
177
+ DEFAULT: string;
178
+ };
179
+ };
180
+ /** Texto botao */
181
+ LIGHTTEXT: {
182
+ COLOR: {
183
+ KEY: string;
184
+ DEFAULT: string;
185
+ };
186
+ };
187
+ DARKTEXT: {
188
+ COLOR: {
189
+ KEY: string;
190
+ DEFAULT: string;
191
+ };
192
+ };
193
+ };
194
+ /**
195
+ * Referencia da aparencia do botao de adicionar ao carrinho
196
+ */
197
+ declare const CART_BUTTON: {
198
+ /** Fundo botao */
199
+ LIGHT: {
200
+ COLOR: {
201
+ KEY: string;
202
+ DEFAULT: string;
203
+ };
204
+ };
205
+ DARK: {
206
+ COLOR: {
207
+ KEY: string;
208
+ DEFAULT: string;
209
+ };
210
+ };
211
+ /** Texto botao */
212
+ LIGHTTEXT: {
213
+ COLOR: {
214
+ KEY: string;
215
+ DEFAULT: string;
216
+ };
217
+ };
218
+ DARKTEXT: {
219
+ COLOR: {
220
+ KEY: string;
221
+ DEFAULT: string;
222
+ };
223
+ };
224
+ };
225
+ /**
226
+ * Referencia para modo de pagamento a combinar.
227
+ */
228
+ declare const COMBINAR_PAYMENT: {
229
+ KEY: string;
230
+ DEFAULT: string;
231
+ VALUES: string[];
232
+ };
233
+ declare const COMBINAR_ENTREGA: {
234
+ KEY: string;
235
+ DEFAULT: string;
236
+ VALUES: string[];
237
+ };
238
+ export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA };