mdz-enum 1.5.28 → 1.5.29

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.
@@ -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
@@ -67,6 +93,19 @@ declare const BUTTON: {
67
93
  value: string;
68
94
  }[];
69
95
  };
96
+ /** cor de texto*/
97
+ LIGHT: {
98
+ COLOR: {
99
+ KEY: string;
100
+ DEFAULT: string;
101
+ };
102
+ };
103
+ DARK: {
104
+ COLOR: {
105
+ KEY: string;
106
+ DEFAULT: string;
107
+ };
108
+ };
70
109
  };
71
110
  /**
72
111
  * Refencia da aparencia do cartao de produtos
@@ -123,6 +162,19 @@ declare const BUY_BUTTON: {
123
162
  DEFAULT: string;
124
163
  };
125
164
  };
165
+ /** Texto botao */
166
+ LIGHTTEXT: {
167
+ COLOR: {
168
+ KEY: string;
169
+ DEFAULT: string;
170
+ };
171
+ };
172
+ DARKTEXT: {
173
+ COLOR: {
174
+ KEY: string;
175
+ DEFAULT: string;
176
+ };
177
+ };
126
178
  };
127
179
  /**
128
180
  * Referencia da aparencia do botao de adicionar ao carrinho
@@ -141,6 +193,19 @@ declare const CART_BUTTON: {
141
193
  DEFAULT: string;
142
194
  };
143
195
  };
196
+ /** Texto botao */
197
+ LIGHTTEXT: {
198
+ COLOR: {
199
+ KEY: string;
200
+ DEFAULT: string;
201
+ };
202
+ };
203
+ DARKTEXT: {
204
+ COLOR: {
205
+ KEY: string;
206
+ DEFAULT: string;
207
+ };
208
+ };
144
209
  };
145
210
  /**
146
211
  * 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
  /**
@@ -73,6 +99,19 @@ const BUTTON = {
73
99
  { label: 'Quadrado', value: 'none' },
74
100
  ],
75
101
  },
102
+ /** cor de texto*/
103
+ LIGHT: {
104
+ COLOR: {
105
+ KEY: 'component_button_color_light',
106
+ DEFAULT: '#8854D0',
107
+ },
108
+ },
109
+ DARK: {
110
+ COLOR: {
111
+ KEY: 'component_button_color_dark',
112
+ DEFAULT: '#8854D0',
113
+ },
114
+ },
76
115
  };
77
116
  exports.BUTTON = BUTTON;
78
117
  /**
@@ -133,6 +172,19 @@ const BUY_BUTTON = {
133
172
  DEFAULT: '#8854D0',
134
173
  },
135
174
  },
175
+ /** Texto botao */
176
+ LIGHTTEXT: {
177
+ COLOR: {
178
+ KEY: 'component_buy_button_text_color_light',
179
+ DEFAULT: '#ffffff',
180
+ },
181
+ },
182
+ DARKTEXT: {
183
+ COLOR: {
184
+ KEY: 'component_buy_button_text_color_dark',
185
+ DEFAULT: '#ffffff',
186
+ },
187
+ },
136
188
  };
137
189
  exports.BUY_BUTTON = BUY_BUTTON;
138
190
  /**
@@ -152,6 +204,19 @@ const CART_BUTTON = {
152
204
  DEFAULT: '#8854D0',
153
205
  },
154
206
  },
207
+ /** Texto botao */
208
+ LIGHTTEXT: {
209
+ COLOR: {
210
+ KEY: 'component_cart_button_text_color_light',
211
+ DEFAULT: '#ffffff',
212
+ },
213
+ },
214
+ DARKTEXT: {
215
+ COLOR: {
216
+ KEY: 'component_cart_button_text_color_dark',
217
+ DEFAULT: '#ffffff',
218
+ },
219
+ },
155
220
  };
156
221
  exports.CART_BUTTON = CART_BUTTON;
157
222
  /**
@@ -168,6 +168,18 @@ declare const APPEARANCE_COMPONENTS: {
168
168
  value: string;
169
169
  }[];
170
170
  };
171
+ LIGHT: {
172
+ COLOR: {
173
+ KEY: string;
174
+ DEFAULT: string;
175
+ };
176
+ };
177
+ DARK: {
178
+ COLOR: {
179
+ KEY: string;
180
+ DEFAULT: string;
181
+ };
182
+ };
171
183
  };
172
184
  BUY_BUTTON: {
173
185
  LIGHT: {
@@ -182,6 +194,18 @@ declare const APPEARANCE_COMPONENTS: {
182
194
  DEFAULT: string;
183
195
  };
184
196
  };
197
+ LIGHTTEXT: {
198
+ COLOR: {
199
+ KEY: string;
200
+ DEFAULT: string;
201
+ };
202
+ };
203
+ DARKTEXT: {
204
+ COLOR: {
205
+ KEY: string;
206
+ DEFAULT: string;
207
+ };
208
+ };
185
209
  };
186
210
  FOOTER: {
187
211
  LIGHT: {
@@ -206,6 +230,18 @@ declare const APPEARANCE_COMPONENTS: {
206
230
  VALUES: string[];
207
231
  };
208
232
  };
233
+ LIGHTTEXT: {
234
+ COLOR: {
235
+ KEY: string;
236
+ DEFAULT: string;
237
+ };
238
+ };
239
+ DARKTEXT: {
240
+ COLOR: {
241
+ KEY: string;
242
+ DEFAULT: string;
243
+ };
244
+ };
209
245
  };
210
246
  HEADER: {
211
247
  LIGHT: {
@@ -230,6 +266,18 @@ declare const APPEARANCE_COMPONENTS: {
230
266
  VALUES: string[];
231
267
  };
232
268
  };
269
+ LIGHTTEXT: {
270
+ COLOR: {
271
+ KEY: string;
272
+ DEFAULT: string;
273
+ };
274
+ };
275
+ DARKTEXT: {
276
+ COLOR: {
277
+ KEY: string;
278
+ DEFAULT: string;
279
+ };
280
+ };
233
281
  };
234
282
  CART_BUTTON: {
235
283
  LIGHT: {
@@ -244,6 +292,18 @@ declare const APPEARANCE_COMPONENTS: {
244
292
  DEFAULT: string;
245
293
  };
246
294
  };
295
+ LIGHTTEXT: {
296
+ COLOR: {
297
+ KEY: string;
298
+ DEFAULT: string;
299
+ };
300
+ };
301
+ DARKTEXT: {
302
+ COLOR: {
303
+ KEY: string;
304
+ DEFAULT: string;
305
+ };
306
+ };
247
307
  };
248
308
  COMBINAR_PAYMENT: {
249
309
  KEY: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.28",
3
+ "version": "1.5.29",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {