mdz-enum 1.4.4 → 1.4.6
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.
- package/README.MD +1 -1
- package/dist/checkout/index.d.ts +28 -28
- package/dist/checkout/index.js +83 -83
- package/dist/commercial/index.d.ts +221 -221
- package/dist/commercial/index.js +532 -532
- package/dist/common/index.d.ts +42 -42
- package/dist/common/index.js +123 -123
- package/dist/config/index.d.ts +137 -137
- package/dist/config/index.js +392 -392
- package/dist/finance/index.d.ts +164 -164
- package/dist/finance/index.js +425 -425
- package/dist/fiscal/index.d.ts +461 -460
- package/dist/fiscal/index.js +1156 -1153
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +243 -243
- package/dist/general/index.js +449 -449
- package/dist/index.d.ts +14 -14
- package/dist/index.js +200 -200
- package/dist/integration/index.d.ts +19 -19
- package/dist/integration/index.js +57 -57
- package/dist/logistics/index.d.ts +119 -119
- package/dist/logistics/index.js +345 -345
- package/dist/marketplace/templates/components/index.d.ts +189 -189
- package/dist/marketplace/templates/components/index.js +201 -201
- package/dist/marketplace/templates/index.d.ts +261 -248
- package/dist/marketplace/templates/index.js +31 -31
- package/dist/marketplace/templates/pages/index.d.ts +97 -89
- package/dist/marketplace/templates/pages/index.js +221 -216
- package/dist/marketplace/templates/reference/index.d.ts +16 -16
- package/dist/marketplace/templates/reference/index.js +18 -18
- package/dist/people/index.d.ts +35 -35
- package/dist/people/index.js +102 -102
- package/dist/platform/index.d.ts +177 -177
- package/dist/platform/index.js +514 -514
- package/dist/reports/index.d.ts +46 -46
- package/dist/reports/index.js +136 -136
- package/package.json +32 -33
|
@@ -1,89 +1,97 @@
|
|
|
1
|
-
/** Referencia da aparencia na pagina inicial */
|
|
2
|
-
declare const HOME_PAGE: {
|
|
3
|
-
ID: number;
|
|
4
|
-
/**
|
|
5
|
-
* Blocos disponiveis na pagina
|
|
6
|
-
*/
|
|
7
|
-
ORDER: {
|
|
8
|
-
KEY: string;
|
|
9
|
-
DEFAULT: string;
|
|
10
|
-
};
|
|
11
|
-
HOME_PAGE_FEATURED_CATEGORY: {
|
|
12
|
-
KEY: string;
|
|
13
|
-
DEFAULT: string;
|
|
14
|
-
};
|
|
15
|
-
HOME_PAGE_FEATURED_CATEGORY_TITLE: {
|
|
16
|
-
KEY: string;
|
|
17
|
-
DEFAULT: string;
|
|
18
|
-
};
|
|
19
|
-
HOME_PAGE_FEATURED_BRANDS: {
|
|
20
|
-
KEY: string;
|
|
21
|
-
DEFAULT: string;
|
|
22
|
-
};
|
|
23
|
-
HOME_PAGE_FEATURED_BRANDS_TITLE: {
|
|
24
|
-
KEY: string;
|
|
25
|
-
DEFAULT: string;
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
};
|
|
89
|
-
|
|
1
|
+
/** Referencia da aparencia na pagina inicial */
|
|
2
|
+
declare const HOME_PAGE: {
|
|
3
|
+
ID: number;
|
|
4
|
+
/**
|
|
5
|
+
* Blocos disponiveis na pagina
|
|
6
|
+
*/
|
|
7
|
+
ORDER: {
|
|
8
|
+
KEY: string;
|
|
9
|
+
DEFAULT: string;
|
|
10
|
+
};
|
|
11
|
+
HOME_PAGE_FEATURED_CATEGORY: {
|
|
12
|
+
KEY: string;
|
|
13
|
+
DEFAULT: string;
|
|
14
|
+
};
|
|
15
|
+
HOME_PAGE_FEATURED_CATEGORY_TITLE: {
|
|
16
|
+
KEY: string;
|
|
17
|
+
DEFAULT: string;
|
|
18
|
+
};
|
|
19
|
+
HOME_PAGE_FEATURED_BRANDS: {
|
|
20
|
+
KEY: string;
|
|
21
|
+
DEFAULT: string;
|
|
22
|
+
};
|
|
23
|
+
HOME_PAGE_FEATURED_BRANDS_TITLE: {
|
|
24
|
+
KEY: string;
|
|
25
|
+
DEFAULT: string;
|
|
26
|
+
};
|
|
27
|
+
HOME_PAGE_FEATURED_SELECTED_PRODUCTS: {
|
|
28
|
+
KEY: string;
|
|
29
|
+
DEFAULT: string;
|
|
30
|
+
};
|
|
31
|
+
HOME_PAGE_FEATURED_SELECTED_PRODUCTS_TITLE: {
|
|
32
|
+
KEY: string;
|
|
33
|
+
DEFAULT: string;
|
|
34
|
+
};
|
|
35
|
+
BLOCKS: ({
|
|
36
|
+
id: number;
|
|
37
|
+
name: string;
|
|
38
|
+
icon: {
|
|
39
|
+
type: string;
|
|
40
|
+
size: number;
|
|
41
|
+
};
|
|
42
|
+
enabled: boolean;
|
|
43
|
+
immutable: boolean;
|
|
44
|
+
badge: null;
|
|
45
|
+
} | {
|
|
46
|
+
id: number;
|
|
47
|
+
name: string;
|
|
48
|
+
icon: {
|
|
49
|
+
type: string;
|
|
50
|
+
size: number;
|
|
51
|
+
};
|
|
52
|
+
enabled: boolean;
|
|
53
|
+
immutable: boolean;
|
|
54
|
+
badge: {
|
|
55
|
+
color: string;
|
|
56
|
+
text: string;
|
|
57
|
+
};
|
|
58
|
+
})[];
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Referencia da aparencia na pagina de produto
|
|
62
|
+
*/
|
|
63
|
+
declare const PRODUCT_PAGE: {
|
|
64
|
+
ID: number;
|
|
65
|
+
/**
|
|
66
|
+
* Blocos disponiveis na pagina
|
|
67
|
+
*/
|
|
68
|
+
ORDER: {
|
|
69
|
+
KEY: string;
|
|
70
|
+
DEFAULT: string;
|
|
71
|
+
};
|
|
72
|
+
BLOCKS: ({
|
|
73
|
+
id: number;
|
|
74
|
+
name: string;
|
|
75
|
+
icon: {
|
|
76
|
+
type: string;
|
|
77
|
+
size: number;
|
|
78
|
+
};
|
|
79
|
+
enabled: boolean;
|
|
80
|
+
immutable: boolean;
|
|
81
|
+
badge: null;
|
|
82
|
+
} | {
|
|
83
|
+
id: number;
|
|
84
|
+
name: string;
|
|
85
|
+
icon: {
|
|
86
|
+
type: string;
|
|
87
|
+
size: number;
|
|
88
|
+
};
|
|
89
|
+
enabled: boolean;
|
|
90
|
+
immutable: boolean;
|
|
91
|
+
badge: {
|
|
92
|
+
color: string;
|
|
93
|
+
text: string;
|
|
94
|
+
};
|
|
95
|
+
})[];
|
|
96
|
+
};
|
|
97
|
+
export { HOME_PAGE, PRODUCT_PAGE };
|
|
@@ -1,216 +1,221 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PRODUCT_PAGE = exports.HOME_PAGE = void 0;
|
|
4
|
-
const DEFAULT_ICON_SIZE = 32;
|
|
5
|
-
/** Referencia da aparencia na pagina inicial */
|
|
6
|
-
const HOME_PAGE = {
|
|
7
|
-
ID: 1,
|
|
8
|
-
/**
|
|
9
|
-
* Blocos disponiveis na pagina
|
|
10
|
-
*/
|
|
11
|
-
ORDER: {
|
|
12
|
-
KEY: 'home_page_blocks',
|
|
13
|
-
DEFAULT: '1,2,3,4,5,6,7,8,9',
|
|
14
|
-
},
|
|
15
|
-
HOME_PAGE_FEATURED_CATEGORY: {
|
|
16
|
-
KEY: 'home_page_featured_categories',
|
|
17
|
-
DEFAULT: '',
|
|
18
|
-
},
|
|
19
|
-
HOME_PAGE_FEATURED_CATEGORY_TITLE: {
|
|
20
|
-
KEY: 'home_page_featured_categories_title',
|
|
21
|
-
DEFAULT: '',
|
|
22
|
-
},
|
|
23
|
-
HOME_PAGE_FEATURED_BRANDS: {
|
|
24
|
-
KEY: 'home_page_featured_brands',
|
|
25
|
-
DEFAULT: '',
|
|
26
|
-
},
|
|
27
|
-
HOME_PAGE_FEATURED_BRANDS_TITLE: {
|
|
28
|
-
KEY: 'home_page_featured_brands_title',
|
|
29
|
-
DEFAULT: '',
|
|
30
|
-
},
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
{
|
|
41
|
-
id:
|
|
42
|
-
name: '
|
|
43
|
-
icon: {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
},
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
},
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PRODUCT_PAGE = exports.HOME_PAGE = void 0;
|
|
4
|
+
const DEFAULT_ICON_SIZE = 32;
|
|
5
|
+
/** Referencia da aparencia na pagina inicial */
|
|
6
|
+
const HOME_PAGE = {
|
|
7
|
+
ID: 1,
|
|
8
|
+
/**
|
|
9
|
+
* Blocos disponiveis na pagina
|
|
10
|
+
*/
|
|
11
|
+
ORDER: {
|
|
12
|
+
KEY: 'home_page_blocks',
|
|
13
|
+
DEFAULT: '1,2,3,4,5,6,7,8,9',
|
|
14
|
+
},
|
|
15
|
+
HOME_PAGE_FEATURED_CATEGORY: {
|
|
16
|
+
KEY: 'home_page_featured_categories',
|
|
17
|
+
DEFAULT: '',
|
|
18
|
+
},
|
|
19
|
+
HOME_PAGE_FEATURED_CATEGORY_TITLE: {
|
|
20
|
+
KEY: 'home_page_featured_categories_title',
|
|
21
|
+
DEFAULT: '',
|
|
22
|
+
},
|
|
23
|
+
HOME_PAGE_FEATURED_BRANDS: {
|
|
24
|
+
KEY: 'home_page_featured_brands',
|
|
25
|
+
DEFAULT: '',
|
|
26
|
+
},
|
|
27
|
+
HOME_PAGE_FEATURED_BRANDS_TITLE: {
|
|
28
|
+
KEY: 'home_page_featured_brands_title',
|
|
29
|
+
DEFAULT: '',
|
|
30
|
+
},
|
|
31
|
+
HOME_PAGE_FEATURED_SELECTED_PRODUCTS: {
|
|
32
|
+
KEY: 'home_page_featured_selected_products',
|
|
33
|
+
DEFAULT: '',
|
|
34
|
+
},
|
|
35
|
+
HOME_PAGE_FEATURED_SELECTED_PRODUCTS_TITLE: {
|
|
36
|
+
KEY: 'home_page_featured_selected_products_title',
|
|
37
|
+
DEFAULT: '',
|
|
38
|
+
},
|
|
39
|
+
BLOCKS: [
|
|
40
|
+
{
|
|
41
|
+
id: 1,
|
|
42
|
+
name: 'Banners principais',
|
|
43
|
+
icon: { type: 'FaImages', size: DEFAULT_ICON_SIZE },
|
|
44
|
+
enabled: true,
|
|
45
|
+
immutable: true,
|
|
46
|
+
badge: null,
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
id: 2,
|
|
50
|
+
name: 'Categorias em destaque',
|
|
51
|
+
icon: {
|
|
52
|
+
type: 'Fatypes',
|
|
53
|
+
size: DEFAULT_ICON_SIZE,
|
|
54
|
+
},
|
|
55
|
+
enabled: true,
|
|
56
|
+
immutable: false,
|
|
57
|
+
badge: null,
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
id: 3,
|
|
61
|
+
name: 'Produtos em promoção',
|
|
62
|
+
icon: {
|
|
63
|
+
type: 'FaBagShopping',
|
|
64
|
+
size: DEFAULT_ICON_SIZE,
|
|
65
|
+
},
|
|
66
|
+
enabled: true,
|
|
67
|
+
immutable: false,
|
|
68
|
+
badge: null,
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
id: 4,
|
|
72
|
+
name: 'Últimos lançamentos',
|
|
73
|
+
icon: {
|
|
74
|
+
type: 'FaBagShopping',
|
|
75
|
+
size: DEFAULT_ICON_SIZE,
|
|
76
|
+
},
|
|
77
|
+
enabled: true,
|
|
78
|
+
immutable: false,
|
|
79
|
+
badge: null,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
id: 5,
|
|
83
|
+
name: 'Produtos mais vendidos',
|
|
84
|
+
icon: {
|
|
85
|
+
type: 'FaBagShopping',
|
|
86
|
+
size: DEFAULT_ICON_SIZE,
|
|
87
|
+
},
|
|
88
|
+
enabled: false,
|
|
89
|
+
immutable: false,
|
|
90
|
+
badge: {
|
|
91
|
+
color: 'info',
|
|
92
|
+
text: 'Em breve',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
id: 6,
|
|
97
|
+
name: 'Produtos mais vistos',
|
|
98
|
+
icon: {
|
|
99
|
+
type: 'FaBagShopping',
|
|
100
|
+
size: DEFAULT_ICON_SIZE,
|
|
101
|
+
},
|
|
102
|
+
enabled: false,
|
|
103
|
+
immutable: false,
|
|
104
|
+
badge: {
|
|
105
|
+
color: 'info',
|
|
106
|
+
text: 'Em breve',
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
id: 7,
|
|
111
|
+
name: 'Produtos selecionados',
|
|
112
|
+
icon: {
|
|
113
|
+
type: 'FaBagShopping',
|
|
114
|
+
size: DEFAULT_ICON_SIZE,
|
|
115
|
+
},
|
|
116
|
+
enabled: true,
|
|
117
|
+
immutable: false,
|
|
118
|
+
badge: null,
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
id: 8,
|
|
122
|
+
name: 'Banners personalizados',
|
|
123
|
+
icon: {
|
|
124
|
+
type: 'FaImages',
|
|
125
|
+
size: DEFAULT_ICON_SIZE,
|
|
126
|
+
},
|
|
127
|
+
enabled: false,
|
|
128
|
+
immutable: false,
|
|
129
|
+
badge: {
|
|
130
|
+
color: 'info',
|
|
131
|
+
text: 'Em breve',
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
id: 9,
|
|
136
|
+
name: 'Compre por marca',
|
|
137
|
+
icon: {
|
|
138
|
+
type: 'Fatypes',
|
|
139
|
+
size: DEFAULT_ICON_SIZE,
|
|
140
|
+
},
|
|
141
|
+
enabled: true,
|
|
142
|
+
immutable: false,
|
|
143
|
+
badge: null,
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
};
|
|
147
|
+
exports.HOME_PAGE = HOME_PAGE;
|
|
148
|
+
/**
|
|
149
|
+
* Referencia da aparencia na pagina de produto
|
|
150
|
+
*/
|
|
151
|
+
const PRODUCT_PAGE = {
|
|
152
|
+
ID: 2,
|
|
153
|
+
/**
|
|
154
|
+
* Blocos disponiveis na pagina
|
|
155
|
+
*/
|
|
156
|
+
ORDER: {
|
|
157
|
+
KEY: 'product_page_blocks',
|
|
158
|
+
DEFAULT: '1,2,3,4,5',
|
|
159
|
+
},
|
|
160
|
+
BLOCKS: [
|
|
161
|
+
{
|
|
162
|
+
id: 1,
|
|
163
|
+
name: 'Detalhes do produto',
|
|
164
|
+
icon: {
|
|
165
|
+
type: 'FaTag',
|
|
166
|
+
size: DEFAULT_ICON_SIZE,
|
|
167
|
+
},
|
|
168
|
+
enabled: true,
|
|
169
|
+
immutable: true,
|
|
170
|
+
badge: null,
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
id: 2,
|
|
174
|
+
name: 'Descrição do produto',
|
|
175
|
+
icon: {
|
|
176
|
+
type: 'Fatypes',
|
|
177
|
+
size: DEFAULT_ICON_SIZE,
|
|
178
|
+
},
|
|
179
|
+
enabled: true,
|
|
180
|
+
immutable: false,
|
|
181
|
+
badge: null,
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: 3,
|
|
185
|
+
name: 'Garantia do produto',
|
|
186
|
+
icon: {
|
|
187
|
+
type: 'FaTimeline',
|
|
188
|
+
size: DEFAULT_ICON_SIZE,
|
|
189
|
+
},
|
|
190
|
+
enabled: true,
|
|
191
|
+
immutable: false,
|
|
192
|
+
badge: null,
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
id: 4,
|
|
196
|
+
name: 'Produtos relacionados',
|
|
197
|
+
icon: {
|
|
198
|
+
type: 'FaBagShopping',
|
|
199
|
+
size: DEFAULT_ICON_SIZE,
|
|
200
|
+
},
|
|
201
|
+
enabled: true,
|
|
202
|
+
immutable: false,
|
|
203
|
+
badge: null,
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
id: 5,
|
|
207
|
+
name: 'Banners personalizados',
|
|
208
|
+
icon: {
|
|
209
|
+
type: 'FaImages',
|
|
210
|
+
size: DEFAULT_ICON_SIZE,
|
|
211
|
+
},
|
|
212
|
+
enabled: false,
|
|
213
|
+
immutable: false,
|
|
214
|
+
badge: {
|
|
215
|
+
color: 'info',
|
|
216
|
+
text: 'Em breve',
|
|
217
|
+
},
|
|
218
|
+
},
|
|
219
|
+
],
|
|
220
|
+
};
|
|
221
|
+
exports.PRODUCT_PAGE = PRODUCT_PAGE;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Referencia de configuracao da aparencia
|
|
3
|
-
*/
|
|
4
|
-
declare const APPEARANCE_REFERENCE: {
|
|
5
|
-
/** Cor primaria */
|
|
6
|
-
PRIMARY_COLOR: {
|
|
7
|
-
KEY: string;
|
|
8
|
-
DEFAULT: string;
|
|
9
|
-
};
|
|
10
|
-
/** Cor secundaria */
|
|
11
|
-
SECONDARY_COLOR: {
|
|
12
|
-
KEY: string;
|
|
13
|
-
DEFAULT: string;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
export default APPEARANCE_REFERENCE;
|
|
1
|
+
/**
|
|
2
|
+
* Referencia de configuracao da aparencia
|
|
3
|
+
*/
|
|
4
|
+
declare const APPEARANCE_REFERENCE: {
|
|
5
|
+
/** Cor primaria */
|
|
6
|
+
PRIMARY_COLOR: {
|
|
7
|
+
KEY: string;
|
|
8
|
+
DEFAULT: string;
|
|
9
|
+
};
|
|
10
|
+
/** Cor secundaria */
|
|
11
|
+
SECONDARY_COLOR: {
|
|
12
|
+
KEY: string;
|
|
13
|
+
DEFAULT: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export default APPEARANCE_REFERENCE;
|