mdz-enum 1.5.29 → 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.
@@ -93,19 +93,6 @@ declare const BUTTON: {
93
93
  value: string;
94
94
  }[];
95
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
- };
109
96
  };
110
97
  /**
111
98
  * Refencia da aparencia do cartao de produtos
@@ -99,19 +99,6 @@ const BUTTON = {
99
99
  { label: 'Quadrado', value: 'none' },
100
100
  ],
101
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
- },
115
102
  };
116
103
  exports.BUTTON = BUTTON;
117
104
  /**
@@ -168,18 +168,6 @@ 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
- };
183
171
  };
184
172
  BUY_BUTTON: {
185
173
  LIGHT: {
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.29",
3
+ "version": "1.5.30",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {