mdz-enum 1.5.28 → 1.5.30
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/dist/marketplace/templates/components/index.d.ts +52 -0
- package/dist/marketplace/templates/components/index.js +52 -0
- package/dist/marketplace/templates/index.d.ts +48 -0
- package/dist/marketplace/templates/reference/index.d.ts +8 -0
- package/dist/marketplace/templates/reference/index.js +8 -0
- package/package.json +1 -1
|
@@ -25,6 +25,19 @@ declare const FOOTER: {
|
|
|
25
25
|
VALUES: string[];
|
|
26
26
|
};
|
|
27
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
|
+
};
|
|
28
41
|
};
|
|
29
42
|
/**
|
|
30
43
|
* Referencia de aparencia do cabeçalho
|
|
@@ -53,6 +66,19 @@ declare const HEADER: {
|
|
|
53
66
|
VALUES: string[];
|
|
54
67
|
};
|
|
55
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
|
+
};
|
|
56
82
|
};
|
|
57
83
|
/**
|
|
58
84
|
* Rerefencia de aparencia dos botoes
|
|
@@ -123,6 +149,19 @@ declare const BUY_BUTTON: {
|
|
|
123
149
|
DEFAULT: string;
|
|
124
150
|
};
|
|
125
151
|
};
|
|
152
|
+
/** Texto botao */
|
|
153
|
+
LIGHTTEXT: {
|
|
154
|
+
COLOR: {
|
|
155
|
+
KEY: string;
|
|
156
|
+
DEFAULT: string;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
DARKTEXT: {
|
|
160
|
+
COLOR: {
|
|
161
|
+
KEY: string;
|
|
162
|
+
DEFAULT: string;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
126
165
|
};
|
|
127
166
|
/**
|
|
128
167
|
* Referencia da aparencia do botao de adicionar ao carrinho
|
|
@@ -141,6 +180,19 @@ declare const CART_BUTTON: {
|
|
|
141
180
|
DEFAULT: string;
|
|
142
181
|
};
|
|
143
182
|
};
|
|
183
|
+
/** Texto botao */
|
|
184
|
+
LIGHTTEXT: {
|
|
185
|
+
COLOR: {
|
|
186
|
+
KEY: string;
|
|
187
|
+
DEFAULT: string;
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
DARKTEXT: {
|
|
191
|
+
COLOR: {
|
|
192
|
+
KEY: string;
|
|
193
|
+
DEFAULT: string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
144
196
|
};
|
|
145
197
|
/**
|
|
146
198
|
* Referencia para modo de pagamento a combinar.
|
|
@@ -28,6 +28,19 @@ const FOOTER = {
|
|
|
28
28
|
VALUES: ['light', 'dark', 'none'],
|
|
29
29
|
},
|
|
30
30
|
},
|
|
31
|
+
/** Cor do texto */
|
|
32
|
+
LIGHTTEXT: {
|
|
33
|
+
COLOR: {
|
|
34
|
+
KEY: 'component_footer_light_text_color',
|
|
35
|
+
DEFAULT: '#ffffff',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
DARKTEXT: {
|
|
39
|
+
COLOR: {
|
|
40
|
+
KEY: 'component_footer_dark_text_color',
|
|
41
|
+
DEFAULT: '#ffffff',
|
|
42
|
+
},
|
|
43
|
+
},
|
|
31
44
|
};
|
|
32
45
|
exports.FOOTER = FOOTER;
|
|
33
46
|
/**
|
|
@@ -57,6 +70,19 @@ const HEADER = {
|
|
|
57
70
|
VALUES: ['light', 'dark', 'none'],
|
|
58
71
|
},
|
|
59
72
|
},
|
|
73
|
+
/** Cor do texto */
|
|
74
|
+
LIGHTTEXT: {
|
|
75
|
+
COLOR: {
|
|
76
|
+
KEY: 'component_header_light_text_color',
|
|
77
|
+
DEFAULT: '#ffffff',
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
DARKTEXT: {
|
|
81
|
+
COLOR: {
|
|
82
|
+
KEY: 'component_header_dark_text_color',
|
|
83
|
+
DEFAULT: '#ffffff',
|
|
84
|
+
},
|
|
85
|
+
},
|
|
60
86
|
};
|
|
61
87
|
exports.HEADER = HEADER;
|
|
62
88
|
/**
|
|
@@ -133,6 +159,19 @@ const BUY_BUTTON = {
|
|
|
133
159
|
DEFAULT: '#8854D0',
|
|
134
160
|
},
|
|
135
161
|
},
|
|
162
|
+
/** Texto botao */
|
|
163
|
+
LIGHTTEXT: {
|
|
164
|
+
COLOR: {
|
|
165
|
+
KEY: 'component_buy_button_text_color_light',
|
|
166
|
+
DEFAULT: '#ffffff',
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
DARKTEXT: {
|
|
170
|
+
COLOR: {
|
|
171
|
+
KEY: 'component_buy_button_text_color_dark',
|
|
172
|
+
DEFAULT: '#ffffff',
|
|
173
|
+
},
|
|
174
|
+
},
|
|
136
175
|
};
|
|
137
176
|
exports.BUY_BUTTON = BUY_BUTTON;
|
|
138
177
|
/**
|
|
@@ -152,6 +191,19 @@ const CART_BUTTON = {
|
|
|
152
191
|
DEFAULT: '#8854D0',
|
|
153
192
|
},
|
|
154
193
|
},
|
|
194
|
+
/** Texto botao */
|
|
195
|
+
LIGHTTEXT: {
|
|
196
|
+
COLOR: {
|
|
197
|
+
KEY: 'component_cart_button_text_color_light',
|
|
198
|
+
DEFAULT: '#ffffff',
|
|
199
|
+
},
|
|
200
|
+
},
|
|
201
|
+
DARKTEXT: {
|
|
202
|
+
COLOR: {
|
|
203
|
+
KEY: 'component_cart_button_text_color_dark',
|
|
204
|
+
DEFAULT: '#ffffff',
|
|
205
|
+
},
|
|
206
|
+
},
|
|
155
207
|
};
|
|
156
208
|
exports.CART_BUTTON = CART_BUTTON;
|
|
157
209
|
/**
|
|
@@ -182,6 +182,18 @@ declare const APPEARANCE_COMPONENTS: {
|
|
|
182
182
|
DEFAULT: string;
|
|
183
183
|
};
|
|
184
184
|
};
|
|
185
|
+
LIGHTTEXT: {
|
|
186
|
+
COLOR: {
|
|
187
|
+
KEY: string;
|
|
188
|
+
DEFAULT: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
DARKTEXT: {
|
|
192
|
+
COLOR: {
|
|
193
|
+
KEY: string;
|
|
194
|
+
DEFAULT: string;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
185
197
|
};
|
|
186
198
|
FOOTER: {
|
|
187
199
|
LIGHT: {
|
|
@@ -206,6 +218,18 @@ declare const APPEARANCE_COMPONENTS: {
|
|
|
206
218
|
VALUES: string[];
|
|
207
219
|
};
|
|
208
220
|
};
|
|
221
|
+
LIGHTTEXT: {
|
|
222
|
+
COLOR: {
|
|
223
|
+
KEY: string;
|
|
224
|
+
DEFAULT: string;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
DARKTEXT: {
|
|
228
|
+
COLOR: {
|
|
229
|
+
KEY: string;
|
|
230
|
+
DEFAULT: string;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
209
233
|
};
|
|
210
234
|
HEADER: {
|
|
211
235
|
LIGHT: {
|
|
@@ -230,6 +254,18 @@ declare const APPEARANCE_COMPONENTS: {
|
|
|
230
254
|
VALUES: string[];
|
|
231
255
|
};
|
|
232
256
|
};
|
|
257
|
+
LIGHTTEXT: {
|
|
258
|
+
COLOR: {
|
|
259
|
+
KEY: string;
|
|
260
|
+
DEFAULT: string;
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
DARKTEXT: {
|
|
264
|
+
COLOR: {
|
|
265
|
+
KEY: string;
|
|
266
|
+
DEFAULT: string;
|
|
267
|
+
};
|
|
268
|
+
};
|
|
233
269
|
};
|
|
234
270
|
CART_BUTTON: {
|
|
235
271
|
LIGHT: {
|
|
@@ -244,6 +280,18 @@ declare const APPEARANCE_COMPONENTS: {
|
|
|
244
280
|
DEFAULT: string;
|
|
245
281
|
};
|
|
246
282
|
};
|
|
283
|
+
LIGHTTEXT: {
|
|
284
|
+
COLOR: {
|
|
285
|
+
KEY: string;
|
|
286
|
+
DEFAULT: string;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
DARKTEXT: {
|
|
290
|
+
COLOR: {
|
|
291
|
+
KEY: string;
|
|
292
|
+
DEFAULT: string;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
247
295
|
};
|
|
248
296
|
COMBINAR_PAYMENT: {
|
|
249
297
|
KEY: string;
|
|
@@ -12,5 +12,13 @@ declare const APPEARANCE_REFERENCE: {
|
|
|
12
12
|
KEY: string;
|
|
13
13
|
DEFAULT: string;
|
|
14
14
|
};
|
|
15
|
+
PRIMARY_TEXT_COLOR: {
|
|
16
|
+
KEY: string;
|
|
17
|
+
DEFAULT: string;
|
|
18
|
+
};
|
|
19
|
+
SECONDARY_TEXT_COLOR: {
|
|
20
|
+
KEY: string;
|
|
21
|
+
DEFAULT: string;
|
|
22
|
+
};
|
|
15
23
|
};
|
|
16
24
|
export default APPEARANCE_REFERENCE;
|
|
@@ -14,5 +14,13 @@ const APPEARANCE_REFERENCE = {
|
|
|
14
14
|
KEY: 'color_secondary',
|
|
15
15
|
DEFAULT: '#000000',
|
|
16
16
|
},
|
|
17
|
+
PRIMARY_TEXT_COLOR: {
|
|
18
|
+
KEY: 'color_primary_text',
|
|
19
|
+
DEFAULT: '#ffffff',
|
|
20
|
+
},
|
|
21
|
+
SECONDARY_TEXT_COLOR: {
|
|
22
|
+
KEY: 'color_secondary_text',
|
|
23
|
+
DEFAULT: '#000000',
|
|
24
|
+
},
|
|
17
25
|
};
|
|
18
26
|
exports.default = APPEARANCE_REFERENCE;
|