mdz-enum 1.5.40 → 1.5.42
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.
|
@@ -80,6 +80,34 @@ declare const HEADER: {
|
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
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
|
+
};
|
|
83
111
|
/**
|
|
84
112
|
* Rerefencia de aparencia dos botoes
|
|
85
113
|
*/
|
|
@@ -207,4 +235,4 @@ declare const COMBINAR_ENTREGA: {
|
|
|
207
235
|
DEFAULT: string;
|
|
208
236
|
VALUES: string[];
|
|
209
237
|
};
|
|
210
|
-
export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA };
|
|
238
|
+
export { PRODUCT_CARD, BUY_BUTTON, BUTTON, FOOTER, HEADER, SUBMENU, CART_BUTTON, COMBINAR_PAYMENT, COMBINAR_ENTREGA };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.COMBINAR_ENTREGA = exports.COMBINAR_PAYMENT = exports.CART_BUTTON = exports.HEADER = exports.FOOTER = exports.BUTTON = exports.BUY_BUTTON = exports.PRODUCT_CARD = void 0;
|
|
3
|
+
exports.COMBINAR_ENTREGA = exports.COMBINAR_PAYMENT = exports.CART_BUTTON = exports.SUBMENU = exports.HEADER = exports.FOOTER = exports.BUTTON = exports.BUY_BUTTON = exports.PRODUCT_CARD = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Referencia de aparencia do rodape
|
|
6
6
|
*/
|
|
@@ -85,6 +85,35 @@ const HEADER = {
|
|
|
85
85
|
},
|
|
86
86
|
};
|
|
87
87
|
exports.HEADER = HEADER;
|
|
88
|
+
const SUBMENU = {
|
|
89
|
+
/** Cor do submenu */
|
|
90
|
+
LIGHT: {
|
|
91
|
+
COLOR: {
|
|
92
|
+
KEY: 'component_submenu_light_color',
|
|
93
|
+
DEFAULT: '#8854D0',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
DARK: {
|
|
97
|
+
COLOR: {
|
|
98
|
+
KEY: 'component_submenu_dark_color',
|
|
99
|
+
DEFAULT: '#8854D0',
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
/** Cor do texto */
|
|
103
|
+
LIGHTTEXT: {
|
|
104
|
+
COLOR: {
|
|
105
|
+
KEY: 'component_submenu_light_text_color',
|
|
106
|
+
DEFAULT: '#ffffff',
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
DARKTEXT: {
|
|
110
|
+
COLOR: {
|
|
111
|
+
KEY: 'component_submenu_dark_text_color',
|
|
112
|
+
DEFAULT: '#ffffff',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
};
|
|
116
|
+
exports.SUBMENU = SUBMENU;
|
|
88
117
|
/**
|
|
89
118
|
* Rerefencia de aparencia dos botoes
|
|
90
119
|
*/
|
|
@@ -267,6 +267,32 @@ declare const APPEARANCE_COMPONENTS: {
|
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
269
|
};
|
|
270
|
+
SUBMENU: {
|
|
271
|
+
LIGHT: {
|
|
272
|
+
COLOR: {
|
|
273
|
+
KEY: string;
|
|
274
|
+
DEFAULT: string;
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
DARK: {
|
|
278
|
+
COLOR: {
|
|
279
|
+
KEY: string;
|
|
280
|
+
DEFAULT: string;
|
|
281
|
+
};
|
|
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
|
+
};
|
|
295
|
+
};
|
|
270
296
|
CART_BUTTON: {
|
|
271
297
|
LIGHT: {
|
|
272
298
|
COLOR: {
|
|
@@ -331,9 +357,6 @@ declare const APPEARANCE_ELEMENTS: {
|
|
|
331
357
|
MOBILE: {
|
|
332
358
|
KEY: string;
|
|
333
359
|
};
|
|
334
|
-
/**
|
|
335
|
-
* Constante de configuração de aparência dos componentes (themes)
|
|
336
|
-
*/
|
|
337
360
|
DESKTOP: {
|
|
338
361
|
KEY: string;
|
|
339
362
|
};
|
|
@@ -26,6 +26,7 @@ const APPEARANCE_COMPONENTS = {
|
|
|
26
26
|
BUY_BUTTON: components_1.BUY_BUTTON,
|
|
27
27
|
FOOTER: components_1.FOOTER,
|
|
28
28
|
HEADER: components_1.HEADER,
|
|
29
|
+
SUBMENU: components_1.SUBMENU,
|
|
29
30
|
CART_BUTTON: components_1.CART_BUTTON,
|
|
30
31
|
COMBINAR_PAYMENT: components_1.COMBINAR_PAYMENT,
|
|
31
32
|
COMBINAR_ENTREGA: components_1.COMBINAR_ENTREGA,
|