mdz-enum 1.3.5 → 1.3.7

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.
@@ -82,7 +82,8 @@ declare const PRODUCT_CARD: {
82
82
  /** Mostrar botão */
83
83
  SHOW_BUTTON: {
84
84
  KEY: string;
85
- DEFAULT: boolean;
85
+ DEFAULT: string;
86
+ VALUES: string[];
86
87
  };
87
88
  };
88
89
  /**
@@ -137,14 +138,17 @@ declare const LOGO: {
137
138
  HEADER: {
138
139
  KEY: string;
139
140
  DEFAULT: string;
141
+ VALUES: string[];
140
142
  };
141
143
  FOOTER: {
142
144
  KEY: string;
143
145
  DEFAULT: string;
146
+ VALUES: string[];
144
147
  };
145
148
  LOADING: {
146
149
  KEY: string;
147
150
  DEFAULT: string;
151
+ VALUES: string[];
148
152
  };
149
153
  };
150
154
  TYPE: {
@@ -91,7 +91,8 @@ const PRODUCT_CARD = {
91
91
  /** Mostrar botão */
92
92
  SHOW_BUTTON: {
93
93
  KEY: 'component_product_card_show_button',
94
- DEFAULT: true,
94
+ DEFAULT: 'true',
95
+ VALUES: ['true', 'false'],
95
96
  },
96
97
  };
97
98
  exports.PRODUCT_CARD = PRODUCT_CARD;
@@ -149,14 +150,17 @@ const LOGO = {
149
150
  HEADER: {
150
151
  KEY: 'logo_filter_header',
151
152
  DEFAULT: 'light',
153
+ VALUES: ['light', 'dark', 'none'],
152
154
  },
153
155
  FOOTER: {
154
156
  KEY: 'logo_filter_footer',
155
- DEFAULT: 'light',
157
+ DEFAULT: 'none',
158
+ VALUES: ['light', 'dark', 'none'],
156
159
  },
157
160
  LOADING: {
158
161
  KEY: 'logo_filter_loading',
159
162
  DEFAULT: 'light',
163
+ VALUES: ['light', 'dark', 'none'],
160
164
  },
161
165
  },
162
166
  TYPE: {
@@ -99,7 +99,8 @@ declare const APPEARANCE_COMPONENTS: {
99
99
  };
100
100
  SHOW_BUTTON: {
101
101
  KEY: string;
102
- DEFAULT: boolean;
102
+ DEFAULT: string;
103
+ VALUES: string[];
103
104
  };
104
105
  };
105
106
  BUTTON: {
@@ -139,14 +140,17 @@ declare const APPEARANCE_COMPONENTS: {
139
140
  HEADER: {
140
141
  KEY: string;
141
142
  DEFAULT: string;
143
+ VALUES: string[];
142
144
  };
143
145
  FOOTER: {
144
146
  KEY: string;
145
147
  DEFAULT: string;
148
+ VALUES: string[];
146
149
  };
147
150
  LOADING: {
148
151
  KEY: string;
149
152
  DEFAULT: string;
153
+ VALUES: string[];
150
154
  };
151
155
  };
152
156
  TYPE: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {