mdz-enum 1.4.6 → 1.4.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.
@@ -27,11 +27,23 @@ declare const APPEARANCE_PAGES: {
27
27
  KEY: string;
28
28
  DEFAULT: string;
29
29
  };
30
- HOME_PAGE_FEATURED_SELECTED_PRODUCTS: {
30
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
31
31
  KEY: string;
32
32
  DEFAULT: string;
33
33
  };
34
- HOME_PAGE_FEATURED_SELECTED_PRODUCTS_TITLE: {
34
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
35
+ KEY: string;
36
+ DEFAULT: string;
37
+ };
38
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
39
+ KEY: string;
40
+ DEFAULT: string;
41
+ };
42
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
43
+ KEY: string;
44
+ DEFAULT: string;
45
+ };
46
+ HOME_PAGE_FEATURED_PRODUCTS: {
35
47
  KEY: string;
36
48
  DEFAULT: string;
37
49
  };
@@ -24,11 +24,32 @@ declare const HOME_PAGE: {
24
24
  KEY: string;
25
25
  DEFAULT: string;
26
26
  };
27
- HOME_PAGE_FEATURED_SELECTED_PRODUCTS: {
27
+ /**
28
+ * Produtos selecionados (1)
29
+ */
30
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
31
+ KEY: string;
32
+ DEFAULT: string;
33
+ };
34
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
28
35
  KEY: string;
29
36
  DEFAULT: string;
30
37
  };
31
- HOME_PAGE_FEATURED_SELECTED_PRODUCTS_TITLE: {
38
+ /**
39
+ * Produtos selecionados (2)
40
+ */
41
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
42
+ KEY: string;
43
+ DEFAULT: string;
44
+ };
45
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
46
+ KEY: string;
47
+ DEFAULT: string;
48
+ };
49
+ /**
50
+ * Produtos em destaque
51
+ */
52
+ HOME_PAGE_FEATURED_PRODUCTS: {
32
53
  KEY: string;
33
54
  DEFAULT: string;
34
55
  };
@@ -28,12 +28,33 @@ const HOME_PAGE = {
28
28
  KEY: 'home_page_featured_brands_title',
29
29
  DEFAULT: '',
30
30
  },
31
- HOME_PAGE_FEATURED_SELECTED_PRODUCTS: {
32
- KEY: 'home_page_featured_selected_products',
31
+ /**
32
+ * Produtos selecionados (1)
33
+ */
34
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
35
+ KEY: 'home_page_selected_one_products',
36
+ DEFAULT: '',
37
+ },
38
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
39
+ KEY: 'home_page_selected_products_one_title',
33
40
  DEFAULT: '',
34
41
  },
35
- HOME_PAGE_FEATURED_SELECTED_PRODUCTS_TITLE: {
36
- KEY: 'home_page_featured_selected_products_title',
42
+ /**
43
+ * Produtos selecionados (2)
44
+ */
45
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
46
+ KEY: 'home_page_selected_two_products',
47
+ DEFAULT: '',
48
+ },
49
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
50
+ KEY: 'home_page_selected_products_two_title',
51
+ DEFAULT: '',
52
+ },
53
+ /**
54
+ * Produtos em destaque
55
+ */
56
+ HOME_PAGE_FEATURED_PRODUCTS: {
57
+ KEY: 'home_page_featured_products',
37
58
  DEFAULT: '',
38
59
  },
39
60
  BLOCKS: [
@@ -47,7 +68,7 @@ const HOME_PAGE = {
47
68
  },
48
69
  {
49
70
  id: 2,
50
- name: 'Categorias em destaque',
71
+ name: 'Categorias selecionadas',
51
72
  icon: {
52
73
  type: 'Fatypes',
53
74
  size: DEFAULT_ICON_SIZE,
@@ -108,7 +129,7 @@ const HOME_PAGE = {
108
129
  },
109
130
  {
110
131
  id: 7,
111
- name: 'Produtos selecionados',
132
+ name: 'Produtos selecionados (1)',
112
133
  icon: {
113
134
  type: 'FaBagShopping',
114
135
  size: DEFAULT_ICON_SIZE,
@@ -133,7 +154,7 @@ const HOME_PAGE = {
133
154
  },
134
155
  {
135
156
  id: 9,
136
- name: 'Compre por marca',
157
+ name: 'Marcas selecionadas',
137
158
  icon: {
138
159
  type: 'Fatypes',
139
160
  size: DEFAULT_ICON_SIZE,
@@ -142,6 +163,17 @@ const HOME_PAGE = {
142
163
  immutable: false,
143
164
  badge: null,
144
165
  },
166
+ {
167
+ id: 10,
168
+ name: 'Produtos selecionados (2)',
169
+ icon: {
170
+ type: 'FaBagShopping',
171
+ size: DEFAULT_ICON_SIZE,
172
+ },
173
+ enabled: true,
174
+ immutable: false,
175
+ badge: null,
176
+ },
145
177
  ],
146
178
  };
147
179
  exports.HOME_PAGE = HOME_PAGE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {