mdz-enum 1.6.79 → 1.6.80

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.
@@ -111,10 +111,31 @@ declare const APPEARANCE_PAGES: {
111
111
  DEFAULT: string;
112
112
  VALUES: string[];
113
113
  };
114
+ HOME_PAGE_BANNERS_COLLECTION_COLUMNS: {
115
+ KEY: string;
116
+ DEFAULT: string;
117
+ VALUES: string[];
118
+ };
119
+ HOME_PAGE_BANNERS_COLLECTION_SIZE: {
120
+ KEY: string;
121
+ DEFAULT: string;
122
+ VALUES: string[];
123
+ };
124
+ HOME_PAGE_BANNERS_COLLECTION_SHAPE: {
125
+ KEY: string;
126
+ DEFAULT: string;
127
+ VALUES: string[];
128
+ };
129
+ HOME_PAGE_BANNERS_COLLECTION_ORIENTATION: {
130
+ KEY: string;
131
+ DEFAULT: string;
132
+ VALUES: string[];
133
+ };
114
134
  BLOCK_IDS: {
115
135
  BANNERS: number;
116
136
  BANNERS_EXTRA_1: number;
117
137
  BANNERS_EXTRA_2: number;
138
+ BANNERS_COLLECTION: number;
118
139
  CATEGORIES: number;
119
140
  PROMOTIONS: number;
120
141
  LATEST: number;
@@ -119,10 +119,31 @@ declare const HOME_PAGE: {
119
119
  DEFAULT: string;
120
120
  VALUES: string[];
121
121
  };
122
+ HOME_PAGE_BANNERS_COLLECTION_COLUMNS: {
123
+ KEY: string;
124
+ DEFAULT: string;
125
+ VALUES: string[];
126
+ };
127
+ HOME_PAGE_BANNERS_COLLECTION_SIZE: {
128
+ KEY: string;
129
+ DEFAULT: string;
130
+ VALUES: string[];
131
+ };
132
+ HOME_PAGE_BANNERS_COLLECTION_SHAPE: {
133
+ KEY: string;
134
+ DEFAULT: string;
135
+ VALUES: string[];
136
+ };
137
+ HOME_PAGE_BANNERS_COLLECTION_ORIENTATION: {
138
+ KEY: string;
139
+ DEFAULT: string;
140
+ VALUES: string[];
141
+ };
122
142
  BLOCK_IDS: {
123
143
  BANNERS: number;
124
144
  BANNERS_EXTRA_1: number;
125
145
  BANNERS_EXTRA_2: number;
146
+ BANNERS_COLLECTION: number;
126
147
  CATEGORIES: number;
127
148
  PROMOTIONS: number;
128
149
  LATEST: number;
@@ -126,10 +126,31 @@ const HOME_PAGE = {
126
126
  DEFAULT: 'horizontal',
127
127
  VALUES: ['horizontal', 'vertical'],
128
128
  },
129
+ HOME_PAGE_BANNERS_COLLECTION_COLUMNS: {
130
+ KEY: 'home_page_banners_collection_columns',
131
+ DEFAULT: '3',
132
+ VALUES: ['1', '2', '3'],
133
+ },
134
+ HOME_PAGE_BANNERS_COLLECTION_SIZE: {
135
+ KEY: 'home_page_banners_collection_size',
136
+ DEFAULT: 'medium',
137
+ VALUES: ['small', 'medium', 'large'],
138
+ },
139
+ HOME_PAGE_BANNERS_COLLECTION_SHAPE: {
140
+ KEY: 'home_page_banners_collection_shape',
141
+ DEFAULT: 'soft',
142
+ VALUES: ['square', 'soft', 'round'],
143
+ },
144
+ HOME_PAGE_BANNERS_COLLECTION_ORIENTATION: {
145
+ KEY: 'home_page_banners_collection_orientation',
146
+ DEFAULT: 'horizontal',
147
+ VALUES: ['horizontal', 'vertical'],
148
+ },
129
149
  BLOCK_IDS: {
130
150
  BANNERS: 1,
131
151
  BANNERS_EXTRA_1: 12,
132
152
  BANNERS_EXTRA_2: 13,
153
+ BANNERS_COLLECTION: 14,
133
154
  CATEGORIES: 2,
134
155
  PROMOTIONS: 3,
135
156
  LATEST: 4,
@@ -168,6 +189,15 @@ const HOME_PAGE = {
168
189
  configurable: true,
169
190
  badge: null,
170
191
  },
192
+ {
193
+ id: 14,
194
+ name: 'Banners de Coleção',
195
+ icon: { type: 'FaImages', size: DEFAULT_ICON_SIZE },
196
+ enabled: true,
197
+ immutable: false,
198
+ configurable: true,
199
+ badge: null,
200
+ },
171
201
  {
172
202
  id: 2,
173
203
  name: 'Categorias selecionadas',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.6.79",
3
+ "version": "1.6.80",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {