mdz-enum 1.4.7 → 1.4.8
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.
|
@@ -56,6 +56,7 @@ declare const APPEARANCE_PAGES: {
|
|
|
56
56
|
};
|
|
57
57
|
enabled: boolean;
|
|
58
58
|
immutable: boolean;
|
|
59
|
+
configurable: boolean;
|
|
59
60
|
badge: null;
|
|
60
61
|
} | {
|
|
61
62
|
id: number;
|
|
@@ -66,6 +67,7 @@ declare const APPEARANCE_PAGES: {
|
|
|
66
67
|
};
|
|
67
68
|
enabled: boolean;
|
|
68
69
|
immutable: boolean;
|
|
70
|
+
configurable: boolean;
|
|
69
71
|
badge: {
|
|
70
72
|
color: string;
|
|
71
73
|
text: string;
|
|
@@ -62,6 +62,7 @@ declare const HOME_PAGE: {
|
|
|
62
62
|
};
|
|
63
63
|
enabled: boolean;
|
|
64
64
|
immutable: boolean;
|
|
65
|
+
configurable: boolean;
|
|
65
66
|
badge: null;
|
|
66
67
|
} | {
|
|
67
68
|
id: number;
|
|
@@ -72,6 +73,7 @@ declare const HOME_PAGE: {
|
|
|
72
73
|
};
|
|
73
74
|
enabled: boolean;
|
|
74
75
|
immutable: boolean;
|
|
76
|
+
configurable: boolean;
|
|
75
77
|
badge: {
|
|
76
78
|
color: string;
|
|
77
79
|
text: string;
|
|
@@ -64,6 +64,7 @@ const HOME_PAGE = {
|
|
|
64
64
|
icon: { type: 'FaImages', size: DEFAULT_ICON_SIZE },
|
|
65
65
|
enabled: true,
|
|
66
66
|
immutable: true,
|
|
67
|
+
configurable: true,
|
|
67
68
|
badge: null,
|
|
68
69
|
},
|
|
69
70
|
{
|
|
@@ -75,7 +76,11 @@ const HOME_PAGE = {
|
|
|
75
76
|
},
|
|
76
77
|
enabled: true,
|
|
77
78
|
immutable: false,
|
|
78
|
-
|
|
79
|
+
configurable: true,
|
|
80
|
+
badge: {
|
|
81
|
+
color: 'success',
|
|
82
|
+
text: 'Novo',
|
|
83
|
+
},
|
|
79
84
|
},
|
|
80
85
|
{
|
|
81
86
|
id: 3,
|
|
@@ -86,6 +91,7 @@ const HOME_PAGE = {
|
|
|
86
91
|
},
|
|
87
92
|
enabled: true,
|
|
88
93
|
immutable: false,
|
|
94
|
+
configurable: false,
|
|
89
95
|
badge: null,
|
|
90
96
|
},
|
|
91
97
|
{
|
|
@@ -97,6 +103,7 @@ const HOME_PAGE = {
|
|
|
97
103
|
},
|
|
98
104
|
enabled: true,
|
|
99
105
|
immutable: false,
|
|
106
|
+
configurable: false,
|
|
100
107
|
badge: null,
|
|
101
108
|
},
|
|
102
109
|
{
|
|
@@ -108,6 +115,7 @@ const HOME_PAGE = {
|
|
|
108
115
|
},
|
|
109
116
|
enabled: false,
|
|
110
117
|
immutable: false,
|
|
118
|
+
configurable: false,
|
|
111
119
|
badge: {
|
|
112
120
|
color: 'info',
|
|
113
121
|
text: 'Em breve',
|
|
@@ -122,6 +130,7 @@ const HOME_PAGE = {
|
|
|
122
130
|
},
|
|
123
131
|
enabled: false,
|
|
124
132
|
immutable: false,
|
|
133
|
+
configurable: false,
|
|
125
134
|
badge: {
|
|
126
135
|
color: 'info',
|
|
127
136
|
text: 'Em breve',
|
|
@@ -136,7 +145,11 @@ const HOME_PAGE = {
|
|
|
136
145
|
},
|
|
137
146
|
enabled: true,
|
|
138
147
|
immutable: false,
|
|
139
|
-
|
|
148
|
+
configurable: true,
|
|
149
|
+
badge: {
|
|
150
|
+
color: 'success',
|
|
151
|
+
text: 'Novo',
|
|
152
|
+
},
|
|
140
153
|
},
|
|
141
154
|
{
|
|
142
155
|
id: 8,
|
|
@@ -147,6 +160,7 @@ const HOME_PAGE = {
|
|
|
147
160
|
},
|
|
148
161
|
enabled: false,
|
|
149
162
|
immutable: false,
|
|
163
|
+
configurable: true,
|
|
150
164
|
badge: {
|
|
151
165
|
color: 'info',
|
|
152
166
|
text: 'Em breve',
|
|
@@ -161,7 +175,11 @@ const HOME_PAGE = {
|
|
|
161
175
|
},
|
|
162
176
|
enabled: true,
|
|
163
177
|
immutable: false,
|
|
164
|
-
|
|
178
|
+
configurable: true,
|
|
179
|
+
badge: {
|
|
180
|
+
color: 'success',
|
|
181
|
+
text: 'Novo',
|
|
182
|
+
},
|
|
165
183
|
},
|
|
166
184
|
{
|
|
167
185
|
id: 10,
|
|
@@ -172,7 +190,26 @@ const HOME_PAGE = {
|
|
|
172
190
|
},
|
|
173
191
|
enabled: true,
|
|
174
192
|
immutable: false,
|
|
175
|
-
|
|
193
|
+
configurable: true,
|
|
194
|
+
badge: {
|
|
195
|
+
color: 'success',
|
|
196
|
+
text: 'Novo',
|
|
197
|
+
},
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
id: 11,
|
|
201
|
+
name: 'Produtos em destaque',
|
|
202
|
+
icon: {
|
|
203
|
+
type: 'FaBagShopping',
|
|
204
|
+
size: DEFAULT_ICON_SIZE,
|
|
205
|
+
},
|
|
206
|
+
enabled: true,
|
|
207
|
+
immutable: false,
|
|
208
|
+
configurable: false,
|
|
209
|
+
badge: {
|
|
210
|
+
color: 'success',
|
|
211
|
+
text: 'Novo',
|
|
212
|
+
},
|
|
176
213
|
},
|
|
177
214
|
],
|
|
178
215
|
};
|