mdz-enum 1.5.59 → 1.5.60

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.
@@ -258,7 +258,10 @@ declare const BANNERS_ASPECT_RATIO: {
258
258
  * Referencia para faixa de destaque na home.
259
259
  */
260
260
  declare const HOME_PAGE_HIGHLIGHT: {
261
- ENABLED: boolean;
261
+ ENABLED: {
262
+ KEY: string;
263
+ DEFAULT: boolean;
264
+ };
262
265
  LIGHT: {
263
266
  BACKGROUND_COLOR: {
264
267
  KEY: string;
@@ -276,7 +276,10 @@ exports.BANNERS_ASPECT_RATIO = BANNERS_ASPECT_RATIO;
276
276
  * Referencia para faixa de destaque na home.
277
277
  */
278
278
  const HOME_PAGE_HIGHLIGHT = {
279
- ENABLED: false,
279
+ ENABLED: {
280
+ KEY: 'component_highlight_enabled',
281
+ DEFAULT: false,
282
+ },
280
283
  LIGHT: {
281
284
  BACKGROUND_COLOR: {
282
285
  KEY: 'component_highlight_color_light',
@@ -348,7 +348,10 @@ declare const APPEARANCE_COMPONENTS: {
348
348
  VALUES: string[];
349
349
  };
350
350
  HOME_PAGE_HIGHLIGHT: {
351
- ENABLED: boolean;
351
+ ENABLED: {
352
+ KEY: string;
353
+ DEFAULT: boolean;
354
+ };
352
355
  LIGHT: {
353
356
  BACKGROUND_COLOR: {
354
357
  KEY: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.59",
3
+ "version": "1.5.60",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {