mdz-enum 1.4.2 → 1.4.4
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.
- package/README.MD +1 -1
- package/dist/checkout/index.d.ts +28 -28
- package/dist/checkout/index.js +83 -83
- package/dist/commercial/index.d.ts +221 -221
- package/dist/commercial/index.js +532 -532
- package/dist/common/index.d.ts +42 -42
- package/dist/common/index.js +123 -123
- package/dist/config/index.d.ts +137 -137
- package/dist/config/index.js +392 -392
- package/dist/finance/index.d.ts +164 -164
- package/dist/finance/index.js +425 -425
- package/dist/fiscal/index.d.ts +460 -459
- package/dist/fiscal/index.js +1153 -1150
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +243 -237
- package/dist/general/index.js +449 -432
- package/dist/index.d.ts +14 -14
- package/dist/index.js +200 -199
- package/dist/integration/index.d.ts +19 -19
- package/dist/integration/index.js +57 -57
- package/dist/logistics/index.d.ts +119 -119
- package/dist/logistics/index.js +345 -345
- package/dist/marketplace/templates/components/index.d.ts +189 -189
- package/dist/marketplace/templates/components/index.js +201 -201
- package/dist/marketplace/templates/index.d.ts +248 -253
- package/dist/marketplace/templates/index.js +31 -31
- package/dist/marketplace/templates/pages/index.d.ts +89 -89
- package/dist/marketplace/templates/pages/index.js +216 -216
- package/dist/marketplace/templates/reference/index.d.ts +16 -16
- package/dist/marketplace/templates/reference/index.js +18 -18
- package/dist/people/index.d.ts +35 -35
- package/dist/people/index.js +102 -102
- package/dist/platform/index.d.ts +177 -177
- package/dist/platform/index.js +514 -514
- package/dist/reports/index.d.ts +46 -46
- package/dist/reports/index.js +136 -136
- package/package.json +33 -32
|
@@ -1,189 +1,189 @@
|
|
|
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
|
-
};
|
|
12
|
-
DARK: {
|
|
13
|
-
COLOR: {
|
|
14
|
-
KEY: string;
|
|
15
|
-
DEFAULT: string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* Referencia de aparencia do cabeçalho
|
|
21
|
-
*/
|
|
22
|
-
declare const HEADER: {
|
|
23
|
-
/** Cor do cabeçalho */
|
|
24
|
-
LIGHT: {
|
|
25
|
-
COLOR: {
|
|
26
|
-
KEY: string;
|
|
27
|
-
DEFAULT: string;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
DARK: {
|
|
31
|
-
COLOR: {
|
|
32
|
-
KEY: string;
|
|
33
|
-
DEFAULT: string;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
/**
|
|
38
|
-
* Rerefencia de aparencia dos botoes
|
|
39
|
-
*/
|
|
40
|
-
declare const BUTTON: {
|
|
41
|
-
/** Cor de fundo */
|
|
42
|
-
RADIUS: {
|
|
43
|
-
KEY: string;
|
|
44
|
-
DEFAULT: string;
|
|
45
|
-
VALUES: {
|
|
46
|
-
label: string;
|
|
47
|
-
value: string;
|
|
48
|
-
}[];
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
/**
|
|
52
|
-
* Refencia da aparencia do cartao de produtos
|
|
53
|
-
*/
|
|
54
|
-
declare const PRODUCT_CARD: {
|
|
55
|
-
/** Arredondamento */
|
|
56
|
-
RADIUS: {
|
|
57
|
-
KEY: string;
|
|
58
|
-
DEFAULT: string;
|
|
59
|
-
VALUES: {
|
|
60
|
-
label: string;
|
|
61
|
-
value: string;
|
|
62
|
-
}[];
|
|
63
|
-
};
|
|
64
|
-
/** Sombra */
|
|
65
|
-
SHADOW: {
|
|
66
|
-
KEY: string;
|
|
67
|
-
DEFAULT: string;
|
|
68
|
-
VALUES: {
|
|
69
|
-
label: string;
|
|
70
|
-
value: string;
|
|
71
|
-
}[];
|
|
72
|
-
};
|
|
73
|
-
/** Proporcao */
|
|
74
|
-
PROPORTION: {
|
|
75
|
-
KEY: string;
|
|
76
|
-
DEFAULT: string;
|
|
77
|
-
VALUES: {
|
|
78
|
-
label: string;
|
|
79
|
-
value: string;
|
|
80
|
-
}[];
|
|
81
|
-
};
|
|
82
|
-
/** Mostrar botão */
|
|
83
|
-
SHOW_BUTTON: {
|
|
84
|
-
KEY: string;
|
|
85
|
-
DEFAULT: string;
|
|
86
|
-
VALUES: string[];
|
|
87
|
-
};
|
|
88
|
-
};
|
|
89
|
-
/**
|
|
90
|
-
* Refencia da aparencia do botao de compra
|
|
91
|
-
*/
|
|
92
|
-
declare const BUY_BUTTON: {
|
|
93
|
-
/** Fundo botao */
|
|
94
|
-
LIGHT: {
|
|
95
|
-
COLOR: {
|
|
96
|
-
KEY: string;
|
|
97
|
-
DEFAULT: string;
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
|
-
DARK: {
|
|
101
|
-
COLOR: {
|
|
102
|
-
KEY: string;
|
|
103
|
-
DEFAULT: string;
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
|
-
};
|
|
107
|
-
/**
|
|
108
|
-
* Referencia da aparencia do botao de adicionar ao carrinho
|
|
109
|
-
*/
|
|
110
|
-
declare const CART_BUTTON: {
|
|
111
|
-
/** Fundo botao */
|
|
112
|
-
LIGHT: {
|
|
113
|
-
COLOR: {
|
|
114
|
-
KEY: string;
|
|
115
|
-
DEFAULT: string;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
|
-
DARK: {
|
|
119
|
-
COLOR: {
|
|
120
|
-
KEY: string;
|
|
121
|
-
DEFAULT: string;
|
|
122
|
-
};
|
|
123
|
-
};
|
|
124
|
-
};
|
|
125
|
-
/**
|
|
126
|
-
* Referencia da aparencia do logo
|
|
127
|
-
*/
|
|
128
|
-
declare const LOGO: {
|
|
129
|
-
URL: {
|
|
130
|
-
DESKTOP: {
|
|
131
|
-
KEY: string;
|
|
132
|
-
};
|
|
133
|
-
MOBILE: {
|
|
134
|
-
KEY: string;
|
|
135
|
-
};
|
|
136
|
-
};
|
|
137
|
-
FILTER: {
|
|
138
|
-
HEADER: {
|
|
139
|
-
KEY: string;
|
|
140
|
-
DEFAULT: string;
|
|
141
|
-
VALUES: string[];
|
|
142
|
-
};
|
|
143
|
-
FOOTER: {
|
|
144
|
-
KEY: string;
|
|
145
|
-
DEFAULT: string;
|
|
146
|
-
VALUES: string[];
|
|
147
|
-
};
|
|
148
|
-
LOADING: {
|
|
149
|
-
KEY: string;
|
|
150
|
-
DEFAULT: string;
|
|
151
|
-
VALUES: string[];
|
|
152
|
-
};
|
|
153
|
-
};
|
|
154
|
-
TYPE: {
|
|
155
|
-
DESKTOP: {
|
|
156
|
-
KEY: string;
|
|
157
|
-
DEFAULT: string;
|
|
158
|
-
VALUES: string[];
|
|
159
|
-
};
|
|
160
|
-
MOBILE: {
|
|
161
|
-
KEY: string;
|
|
162
|
-
DEFAULT: string;
|
|
163
|
-
VALUES: string[];
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
|
-
SHAPE: {
|
|
167
|
-
RECTANGLE: {
|
|
168
|
-
TEXT: {
|
|
169
|
-
DESKTOP: {
|
|
170
|
-
KEY: string;
|
|
171
|
-
};
|
|
172
|
-
MOBILE: {
|
|
173
|
-
KEY: string;
|
|
174
|
-
};
|
|
175
|
-
};
|
|
176
|
-
};
|
|
177
|
-
SQUARE: {
|
|
178
|
-
TEXT: {
|
|
179
|
-
DESKTOP: {
|
|
180
|
-
KEY: string;
|
|
181
|
-
};
|
|
182
|
-
MOBILE: {
|
|
183
|
-
KEY: string;
|
|
184
|
-
};
|
|
185
|
-
};
|
|
186
|
-
};
|
|
187
|
-
};
|
|
188
|
-
};
|
|
189
|
-
export { PRODUCT_CARD, BUY_BUTTON, LOGO, BUTTON, FOOTER, HEADER, CART_BUTTON };
|
|
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
|
+
};
|
|
12
|
+
DARK: {
|
|
13
|
+
COLOR: {
|
|
14
|
+
KEY: string;
|
|
15
|
+
DEFAULT: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Referencia de aparencia do cabeçalho
|
|
21
|
+
*/
|
|
22
|
+
declare const HEADER: {
|
|
23
|
+
/** Cor do cabeçalho */
|
|
24
|
+
LIGHT: {
|
|
25
|
+
COLOR: {
|
|
26
|
+
KEY: string;
|
|
27
|
+
DEFAULT: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
DARK: {
|
|
31
|
+
COLOR: {
|
|
32
|
+
KEY: string;
|
|
33
|
+
DEFAULT: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Rerefencia de aparencia dos botoes
|
|
39
|
+
*/
|
|
40
|
+
declare const BUTTON: {
|
|
41
|
+
/** Cor de fundo */
|
|
42
|
+
RADIUS: {
|
|
43
|
+
KEY: string;
|
|
44
|
+
DEFAULT: string;
|
|
45
|
+
VALUES: {
|
|
46
|
+
label: string;
|
|
47
|
+
value: string;
|
|
48
|
+
}[];
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Refencia da aparencia do cartao de produtos
|
|
53
|
+
*/
|
|
54
|
+
declare const PRODUCT_CARD: {
|
|
55
|
+
/** Arredondamento */
|
|
56
|
+
RADIUS: {
|
|
57
|
+
KEY: string;
|
|
58
|
+
DEFAULT: string;
|
|
59
|
+
VALUES: {
|
|
60
|
+
label: string;
|
|
61
|
+
value: string;
|
|
62
|
+
}[];
|
|
63
|
+
};
|
|
64
|
+
/** Sombra */
|
|
65
|
+
SHADOW: {
|
|
66
|
+
KEY: string;
|
|
67
|
+
DEFAULT: string;
|
|
68
|
+
VALUES: {
|
|
69
|
+
label: string;
|
|
70
|
+
value: string;
|
|
71
|
+
}[];
|
|
72
|
+
};
|
|
73
|
+
/** Proporcao */
|
|
74
|
+
PROPORTION: {
|
|
75
|
+
KEY: string;
|
|
76
|
+
DEFAULT: string;
|
|
77
|
+
VALUES: {
|
|
78
|
+
label: string;
|
|
79
|
+
value: string;
|
|
80
|
+
}[];
|
|
81
|
+
};
|
|
82
|
+
/** Mostrar botão */
|
|
83
|
+
SHOW_BUTTON: {
|
|
84
|
+
KEY: string;
|
|
85
|
+
DEFAULT: string;
|
|
86
|
+
VALUES: string[];
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Refencia da aparencia do botao de compra
|
|
91
|
+
*/
|
|
92
|
+
declare const BUY_BUTTON: {
|
|
93
|
+
/** Fundo botao */
|
|
94
|
+
LIGHT: {
|
|
95
|
+
COLOR: {
|
|
96
|
+
KEY: string;
|
|
97
|
+
DEFAULT: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
DARK: {
|
|
101
|
+
COLOR: {
|
|
102
|
+
KEY: string;
|
|
103
|
+
DEFAULT: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Referencia da aparencia do botao de adicionar ao carrinho
|
|
109
|
+
*/
|
|
110
|
+
declare const CART_BUTTON: {
|
|
111
|
+
/** Fundo botao */
|
|
112
|
+
LIGHT: {
|
|
113
|
+
COLOR: {
|
|
114
|
+
KEY: string;
|
|
115
|
+
DEFAULT: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
DARK: {
|
|
119
|
+
COLOR: {
|
|
120
|
+
KEY: string;
|
|
121
|
+
DEFAULT: string;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Referencia da aparencia do logo
|
|
127
|
+
*/
|
|
128
|
+
declare const LOGO: {
|
|
129
|
+
URL: {
|
|
130
|
+
DESKTOP: {
|
|
131
|
+
KEY: string;
|
|
132
|
+
};
|
|
133
|
+
MOBILE: {
|
|
134
|
+
KEY: string;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
FILTER: {
|
|
138
|
+
HEADER: {
|
|
139
|
+
KEY: string;
|
|
140
|
+
DEFAULT: string;
|
|
141
|
+
VALUES: string[];
|
|
142
|
+
};
|
|
143
|
+
FOOTER: {
|
|
144
|
+
KEY: string;
|
|
145
|
+
DEFAULT: string;
|
|
146
|
+
VALUES: string[];
|
|
147
|
+
};
|
|
148
|
+
LOADING: {
|
|
149
|
+
KEY: string;
|
|
150
|
+
DEFAULT: string;
|
|
151
|
+
VALUES: string[];
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
TYPE: {
|
|
155
|
+
DESKTOP: {
|
|
156
|
+
KEY: string;
|
|
157
|
+
DEFAULT: string;
|
|
158
|
+
VALUES: string[];
|
|
159
|
+
};
|
|
160
|
+
MOBILE: {
|
|
161
|
+
KEY: string;
|
|
162
|
+
DEFAULT: string;
|
|
163
|
+
VALUES: string[];
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
SHAPE: {
|
|
167
|
+
RECTANGLE: {
|
|
168
|
+
TEXT: {
|
|
169
|
+
DESKTOP: {
|
|
170
|
+
KEY: string;
|
|
171
|
+
};
|
|
172
|
+
MOBILE: {
|
|
173
|
+
KEY: string;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
SQUARE: {
|
|
178
|
+
TEXT: {
|
|
179
|
+
DESKTOP: {
|
|
180
|
+
KEY: string;
|
|
181
|
+
};
|
|
182
|
+
MOBILE: {
|
|
183
|
+
KEY: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
export { PRODUCT_CARD, BUY_BUTTON, LOGO, BUTTON, FOOTER, HEADER, CART_BUTTON };
|