mdz-enum 1.4.0 → 1.4.1

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 (37) 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 +221 -221
  4. package/dist/commercial/index.js +532 -532
  5. package/dist/common/index.d.ts +42 -42
  6. package/dist/common/index.js +123 -123
  7. package/dist/config/index.d.ts +137 -137
  8. package/dist/config/index.js +392 -392
  9. package/dist/finance/index.d.ts +164 -164
  10. package/dist/finance/index.js +425 -425
  11. package/dist/fiscal/index.d.ts +459 -454
  12. package/dist/fiscal/index.js +1150 -1136
  13. package/dist/functions.d.ts +11 -11
  14. package/dist/functions.js +74 -74
  15. package/dist/general/index.d.ts +237 -237
  16. package/dist/general/index.js +432 -432
  17. package/dist/index.d.ts +14 -14
  18. package/dist/index.js +199 -198
  19. package/dist/integration/index.d.ts +19 -19
  20. package/dist/integration/index.js +57 -57
  21. package/dist/logistics/index.d.ts +119 -119
  22. package/dist/logistics/index.js +345 -345
  23. package/dist/marketplace/templates/components/index.d.ts +189 -189
  24. package/dist/marketplace/templates/components/index.js +201 -201
  25. package/dist/marketplace/templates/index.d.ts +240 -245
  26. package/dist/marketplace/templates/index.js +31 -31
  27. package/dist/marketplace/templates/pages/index.d.ts +81 -81
  28. package/dist/marketplace/templates/pages/index.js +197 -197
  29. package/dist/marketplace/templates/reference/index.d.ts +16 -16
  30. package/dist/marketplace/templates/reference/index.js +18 -18
  31. package/dist/people/index.d.ts +35 -35
  32. package/dist/people/index.js +102 -102
  33. package/dist/platform/index.d.ts +177 -177
  34. package/dist/platform/index.js +514 -514
  35. package/dist/reports/index.d.ts +46 -46
  36. package/dist/reports/index.js +136 -136
  37. package/package.json +1 -1
@@ -1,245 +1,240 @@
1
- import APPEARANCE_REFERENCE from './reference';
2
- /**
3
- * Constante de configuração de aparência das páginas
4
- */
5
- declare const APPEARANCE_PAGES: {
6
- HOME_PAGE: {
7
- ID: number;
8
- ORDER: {
9
- KEY: string; /**
10
- * Constante de configuração de aparência das páginas
11
- */
12
- DEFAULT: string;
13
- };
14
- HOME_PAGE_FEATURED_CATEGORY: {
15
- KEY: string;
16
- DEFAULT: string;
17
- };
18
- HOME_PAGE_FEATURED_CATEGORY_TITLE: {
19
- KEY: string;
20
- DEFAULT: string;
21
- };
22
- BLOCKS: ({
23
- id: number;
24
- name: string;
25
- icon: {
26
- type: string;
27
- size: number;
28
- };
29
- enabled: boolean;
30
- immutable: boolean;
31
- badge: null;
32
- } | {
33
- id: number;
34
- name: string;
35
- icon: {
36
- type: string;
37
- size: number;
38
- };
39
- enabled: boolean;
40
- immutable: boolean;
41
- badge: {
42
- color: string;
43
- text: string;
44
- };
45
- })[];
46
- };
47
- PRODUCT_PAGE: {
48
- ID: number;
49
- ORDER: {
50
- KEY: string;
51
- DEFAULT: string;
52
- };
53
- BLOCKS: ({
54
- id: number;
55
- name: string;
56
- icon: {
57
- type: string;
58
- size: number;
59
- };
60
- enabled: boolean;
61
- immutable: boolean;
62
- badge: null;
63
- } | {
64
- id: number;
65
- name: string;
66
- icon: {
67
- type: string;
68
- size: number;
69
- };
70
- enabled: boolean;
71
- immutable: boolean;
72
- badge: {
73
- color: string;
74
- text: string;
75
- };
76
- })[];
77
- };
78
- };
79
- /**
80
- * Constante de configuração de aparência dos componentes
81
- */
82
- declare const APPEARANCE_COMPONENTS: {
83
- PRODUCT_CARD: {
84
- RADIUS: {
85
- KEY: string;
86
- DEFAULT: string;
87
- VALUES: {
88
- label: string;
89
- value: string;
90
- }[];
91
- };
92
- SHADOW: {
93
- KEY: string;
94
- DEFAULT: string;
95
- VALUES: {
96
- label: string;
97
- value: string;
98
- }[];
99
- };
100
- PROPORTION: {
101
- KEY: string;
102
- DEFAULT: string;
103
- VALUES: {
104
- label: string;
105
- value: string;
106
- }[];
107
- };
108
- SHOW_BUTTON: {
109
- KEY: string;
110
- DEFAULT: string;
111
- VALUES: string[];
112
- };
113
- };
114
- BUTTON: {
115
- RADIUS: {
116
- KEY: string;
117
- DEFAULT: string;
118
- VALUES: {
119
- label: string;
120
- value: string;
121
- }[];
122
- };
123
- };
124
- BUY_BUTTON: {
125
- LIGHT: {
126
- COLOR: {
127
- KEY: string;
128
- DEFAULT: string;
129
- };
130
- };
131
- DARK: {
132
- COLOR: {
133
- KEY: string;
134
- DEFAULT: string;
135
- };
136
- };
137
- };
138
- LOGO: {
139
- URL: {
140
- DESKTOP: {
141
- KEY: string;
142
- };
143
- MOBILE: {
144
- KEY: string;
145
- };
146
- };
147
- FILTER: {
148
- HEADER: {
149
- KEY: string;
150
- DEFAULT: string;
151
- VALUES: string[];
152
- };
153
- FOOTER: {
154
- KEY: string;
155
- DEFAULT: string;
156
- VALUES: string[];
157
- };
158
- LOADING: {
159
- KEY: string;
160
- DEFAULT: string;
161
- VALUES: string[];
162
- };
163
- };
164
- TYPE: {
165
- DESKTOP: {
166
- KEY: string;
167
- DEFAULT: string;
168
- VALUES: string[];
169
- };
170
- MOBILE: {
171
- KEY: string;
172
- DEFAULT: string;
173
- VALUES: string[];
174
- };
175
- };
176
- SHAPE: {
177
- RECTANGLE: {
178
- TEXT: {
179
- DESKTOP: {
180
- KEY: string;
181
- };
182
- MOBILE: {
183
- KEY: string;
184
- };
185
- };
186
- };
187
- SQUARE: {
188
- TEXT: {
189
- DESKTOP: {
190
- KEY: string;
191
- };
192
- MOBILE: {
193
- KEY: string;
194
- };
195
- };
196
- };
197
- };
198
- };
199
- FOOTER: {
200
- LIGHT: {
201
- COLOR: {
202
- KEY: string;
203
- DEFAULT: string;
204
- };
205
- };
206
- /**
207
- * Constante de configuração de aparência das páginas
208
- */
209
- DARK: {
210
- COLOR: {
211
- KEY: string;
212
- DEFAULT: string;
213
- };
214
- };
215
- };
216
- HEADER: {
217
- LIGHT: {
218
- COLOR: {
219
- KEY: string;
220
- DEFAULT: string;
221
- };
222
- };
223
- DARK: {
224
- COLOR: {
225
- KEY: string;
226
- DEFAULT: string;
227
- };
228
- };
229
- };
230
- CART_BUTTON: {
231
- LIGHT: {
232
- COLOR: {
233
- KEY: string;
234
- DEFAULT: string;
235
- };
236
- };
237
- DARK: {
238
- COLOR: {
239
- KEY: string;
240
- DEFAULT: string;
241
- };
242
- };
243
- };
244
- };
245
- export { APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_REFERENCE };
1
+ import APPEARANCE_REFERENCE from './reference';
2
+ /**
3
+ * Constante de configuração de aparência das páginas
4
+ */
5
+ declare const APPEARANCE_PAGES: {
6
+ HOME_PAGE: {
7
+ ID: number;
8
+ ORDER: {
9
+ KEY: string;
10
+ DEFAULT: string;
11
+ };
12
+ HOME_PAGE_FEATURED_CATEGORY: {
13
+ KEY: string;
14
+ DEFAULT: string;
15
+ };
16
+ HOME_PAGE_FEATURED_CATEGORY_TITLE: {
17
+ KEY: string;
18
+ DEFAULT: string;
19
+ };
20
+ BLOCKS: ({
21
+ id: number;
22
+ name: string;
23
+ icon: {
24
+ type: string;
25
+ size: number;
26
+ };
27
+ enabled: boolean;
28
+ immutable: boolean;
29
+ badge: null;
30
+ } | {
31
+ id: number;
32
+ name: string;
33
+ icon: {
34
+ type: string;
35
+ size: number;
36
+ };
37
+ enabled: boolean;
38
+ immutable: boolean;
39
+ badge: {
40
+ color: string;
41
+ text: string;
42
+ };
43
+ })[];
44
+ };
45
+ PRODUCT_PAGE: {
46
+ ID: number;
47
+ ORDER: {
48
+ KEY: string;
49
+ DEFAULT: string;
50
+ };
51
+ BLOCKS: ({
52
+ id: number;
53
+ name: string;
54
+ icon: {
55
+ type: string;
56
+ size: number;
57
+ };
58
+ enabled: boolean;
59
+ immutable: boolean;
60
+ badge: null;
61
+ } | {
62
+ id: number;
63
+ name: string;
64
+ icon: {
65
+ type: string;
66
+ size: number;
67
+ };
68
+ enabled: boolean;
69
+ immutable: boolean;
70
+ badge: {
71
+ color: string;
72
+ text: string;
73
+ };
74
+ })[];
75
+ };
76
+ };
77
+ /**
78
+ * Constante de configuração de aparência dos componentes
79
+ */
80
+ declare const APPEARANCE_COMPONENTS: {
81
+ PRODUCT_CARD: {
82
+ RADIUS: {
83
+ KEY: string;
84
+ DEFAULT: string;
85
+ VALUES: {
86
+ label: string;
87
+ value: string;
88
+ }[];
89
+ };
90
+ SHADOW: {
91
+ KEY: string;
92
+ DEFAULT: string;
93
+ VALUES: {
94
+ label: string;
95
+ value: string;
96
+ }[];
97
+ };
98
+ PROPORTION: {
99
+ KEY: string;
100
+ DEFAULT: string;
101
+ VALUES: {
102
+ label: string;
103
+ value: string;
104
+ }[];
105
+ };
106
+ SHOW_BUTTON: {
107
+ KEY: string;
108
+ DEFAULT: string;
109
+ VALUES: string[];
110
+ };
111
+ };
112
+ BUTTON: {
113
+ RADIUS: {
114
+ KEY: string;
115
+ DEFAULT: string;
116
+ VALUES: {
117
+ label: string;
118
+ value: string;
119
+ }[];
120
+ };
121
+ };
122
+ BUY_BUTTON: {
123
+ LIGHT: {
124
+ COLOR: {
125
+ KEY: string;
126
+ DEFAULT: string;
127
+ };
128
+ };
129
+ DARK: {
130
+ COLOR: {
131
+ KEY: string;
132
+ DEFAULT: string;
133
+ };
134
+ };
135
+ };
136
+ LOGO: {
137
+ URL: {
138
+ DESKTOP: {
139
+ KEY: string;
140
+ };
141
+ MOBILE: {
142
+ KEY: string;
143
+ };
144
+ };
145
+ FILTER: {
146
+ HEADER: {
147
+ KEY: string;
148
+ DEFAULT: string;
149
+ VALUES: string[];
150
+ };
151
+ FOOTER: {
152
+ KEY: string;
153
+ DEFAULT: string;
154
+ VALUES: string[];
155
+ };
156
+ LOADING: {
157
+ KEY: string;
158
+ DEFAULT: string;
159
+ VALUES: string[];
160
+ };
161
+ };
162
+ TYPE: {
163
+ DESKTOP: {
164
+ KEY: string;
165
+ DEFAULT: string;
166
+ VALUES: string[];
167
+ };
168
+ MOBILE: {
169
+ KEY: string;
170
+ DEFAULT: string;
171
+ VALUES: string[];
172
+ };
173
+ };
174
+ SHAPE: {
175
+ RECTANGLE: {
176
+ TEXT: {
177
+ DESKTOP: {
178
+ KEY: string;
179
+ };
180
+ MOBILE: {
181
+ KEY: string;
182
+ };
183
+ };
184
+ };
185
+ SQUARE: {
186
+ TEXT: {
187
+ DESKTOP: {
188
+ KEY: string;
189
+ };
190
+ MOBILE: {
191
+ KEY: string;
192
+ };
193
+ };
194
+ };
195
+ };
196
+ };
197
+ FOOTER: {
198
+ LIGHT: {
199
+ COLOR: {
200
+ KEY: string;
201
+ DEFAULT: string;
202
+ };
203
+ };
204
+ DARK: {
205
+ COLOR: {
206
+ KEY: string;
207
+ DEFAULT: string;
208
+ };
209
+ };
210
+ };
211
+ HEADER: {
212
+ LIGHT: {
213
+ COLOR: {
214
+ KEY: string;
215
+ DEFAULT: string;
216
+ };
217
+ };
218
+ DARK: {
219
+ COLOR: {
220
+ KEY: string;
221
+ DEFAULT: string;
222
+ };
223
+ };
224
+ };
225
+ CART_BUTTON: {
226
+ LIGHT: {
227
+ COLOR: {
228
+ KEY: string;
229
+ DEFAULT: string;
230
+ };
231
+ };
232
+ DARK: {
233
+ COLOR: {
234
+ KEY: string;
235
+ DEFAULT: string;
236
+ };
237
+ };
238
+ };
239
+ };
240
+ export { APPEARANCE_PAGES, APPEARANCE_COMPONENTS, APPEARANCE_REFERENCE };
@@ -1,31 +1,31 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.APPEARANCE_REFERENCE = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = void 0;
7
- const pages_1 = require("./pages");
8
- const components_1 = require("./components");
9
- const reference_1 = __importDefault(require("./reference"));
10
- exports.APPEARANCE_REFERENCE = reference_1.default;
11
- /**
12
- * Constante de configuração de aparência das páginas
13
- */
14
- const APPEARANCE_PAGES = {
15
- HOME_PAGE: pages_1.HOME_PAGE,
16
- PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
17
- };
18
- exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
19
- /**
20
- * Constante de configuração de aparência dos componentes
21
- */
22
- const APPEARANCE_COMPONENTS = {
23
- PRODUCT_CARD: components_1.PRODUCT_CARD,
24
- BUTTON: components_1.BUTTON,
25
- BUY_BUTTON: components_1.BUY_BUTTON,
26
- LOGO: components_1.LOGO,
27
- FOOTER: components_1.FOOTER,
28
- HEADER: components_1.HEADER,
29
- CART_BUTTON: components_1.CART_BUTTON,
30
- };
31
- exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.APPEARANCE_REFERENCE = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = void 0;
7
+ const pages_1 = require("./pages");
8
+ const components_1 = require("./components");
9
+ const reference_1 = __importDefault(require("./reference"));
10
+ exports.APPEARANCE_REFERENCE = reference_1.default;
11
+ /**
12
+ * Constante de configuração de aparência das páginas
13
+ */
14
+ const APPEARANCE_PAGES = {
15
+ HOME_PAGE: pages_1.HOME_PAGE,
16
+ PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
17
+ };
18
+ exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
19
+ /**
20
+ * Constante de configuração de aparência dos componentes
21
+ */
22
+ const APPEARANCE_COMPONENTS = {
23
+ PRODUCT_CARD: components_1.PRODUCT_CARD,
24
+ BUTTON: components_1.BUTTON,
25
+ BUY_BUTTON: components_1.BUY_BUTTON,
26
+ LOGO: components_1.LOGO,
27
+ FOOTER: components_1.FOOTER,
28
+ HEADER: components_1.HEADER,
29
+ CART_BUTTON: components_1.CART_BUTTON,
30
+ };
31
+ exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;