@moderneinc/neo-design 2.8.0 → 3.0.0
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/dist/index.d.ts +388 -376
- package/dist/semantic-colors.css +122 -108
- package/dist/semantic-colors.d.ts +194 -182
- package/dist/semantic-colors.js +131 -125
- package/dist/semantic-typography.css +46 -46
- package/dist/semantic-typography.d.ts +58 -58
- package/dist/semantic-typography.js +8 -8
- package/dist/shadows.css +6 -6
- package/dist/shadows.d.ts +62 -62
- package/dist/shadows.js +76 -76
- package/dist/spacing.css +12 -12
- package/dist/spacing.d.ts +24 -24
- package/dist/spacing.js +25 -25
- package/dist/typography.css +24 -24
- package/dist/typography.d.ts +50 -50
- package/dist/typography.js +50 -50
- package/package.json +2 -2
|
@@ -4,151 +4,205 @@
|
|
|
4
4
|
* @generated
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
export type
|
|
7
|
+
export type Icons = {
|
|
8
|
+
hoverBorder: '#dce0ff';
|
|
9
|
+
pressedBackground: '#dce0ff';
|
|
8
10
|
/**
|
|
9
11
|
* @scopes All Fills, Stroke Color
|
|
10
12
|
*/
|
|
11
|
-
|
|
13
|
+
hover: '#1e2ec2';
|
|
12
14
|
/**
|
|
13
15
|
* @scopes All Fills, Stroke Color
|
|
14
16
|
*/
|
|
15
|
-
|
|
17
|
+
hoverBackground: '#f2f3ff';
|
|
16
18
|
/**
|
|
17
19
|
* @scopes All Fills, Stroke Color
|
|
18
20
|
*/
|
|
19
|
-
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
export declare const activity: Activity;
|
|
23
|
-
|
|
24
|
-
export type Border = {
|
|
21
|
+
disabled: '#d1d5db';
|
|
25
22
|
/**
|
|
26
23
|
* @scopes All Fills, Stroke Color
|
|
27
24
|
*/
|
|
28
|
-
|
|
25
|
+
placeholder: '#9ca3af';
|
|
29
26
|
/**
|
|
30
27
|
* @scopes All Fills, Stroke Color
|
|
31
28
|
*/
|
|
32
|
-
|
|
33
|
-
focus: '#3bcca6';
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
export declare const border: Border;
|
|
37
|
-
|
|
38
|
-
export type Buttons = {
|
|
29
|
+
pressed: '#131e7a';
|
|
39
30
|
/**
|
|
40
31
|
* @scopes All Fills, Stroke Color
|
|
41
32
|
*/
|
|
42
|
-
|
|
33
|
+
utility: '#9ca3af';
|
|
43
34
|
/**
|
|
44
35
|
* @scopes All Fills, Stroke Color
|
|
45
36
|
*/
|
|
46
|
-
navigationActive: '#ffffff';
|
|
47
|
-
primary: {
|
|
48
|
-
pressed: '#131e7a';
|
|
49
|
-
default: '#2f42ff';
|
|
50
|
-
hover: '#1e2ec2';
|
|
51
|
-
disabled: '#f3f4f6';
|
|
52
|
-
};
|
|
53
|
-
secondary: {
|
|
54
|
-
defaultBorder: '#b6bfff';
|
|
55
|
-
hoverBackground: '#f2f3ff';
|
|
56
|
-
pressedBackground: '#dce0ff';
|
|
57
|
-
disabledBackground: '#f9fafb';
|
|
58
|
-
defaultBackground: '#ffffff';
|
|
59
37
|
default: '#1f2937';
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
pressed: '#131e7a';
|
|
65
|
-
disabled: '#9ca3af';
|
|
66
|
-
};
|
|
67
|
-
navigation: {
|
|
68
|
-
defaultBorder: '#b6bfff';
|
|
69
|
-
hoverBackground: '#f3f4f6';
|
|
70
|
-
pressedBackground: '#e5e7eb';
|
|
71
|
-
activeBorder: '#2f42ff';
|
|
72
|
-
};
|
|
38
|
+
/**
|
|
39
|
+
* @scopes All Fills, Stroke Color
|
|
40
|
+
*/
|
|
41
|
+
active: '#2f42ff';
|
|
73
42
|
};
|
|
74
43
|
|
|
75
|
-
export declare const
|
|
44
|
+
export declare const icons: Icons;
|
|
76
45
|
|
|
77
|
-
export type
|
|
46
|
+
export type Surfaces = {
|
|
47
|
+
highlightBackground: 'rgba(38, 55, 230, 0)';
|
|
48
|
+
activeHighlight: 'rgba(182, 191, 255, 0.4)';
|
|
78
49
|
/**
|
|
79
50
|
* @scopes All Fills, Stroke Color
|
|
80
51
|
*/
|
|
81
|
-
|
|
52
|
+
page: '#f4f4f4';
|
|
82
53
|
/**
|
|
83
54
|
* @scopes All Fills, Stroke Color
|
|
84
55
|
*/
|
|
85
|
-
|
|
56
|
+
card: '#ffffff';
|
|
86
57
|
/**
|
|
87
58
|
* @scopes All Fills, Stroke Color
|
|
88
59
|
*/
|
|
89
|
-
|
|
60
|
+
cardHeader: '#f3f4f6';
|
|
90
61
|
/**
|
|
91
62
|
* @scopes All Fills, Stroke Color
|
|
92
63
|
*/
|
|
93
|
-
|
|
64
|
+
tabActive: '#f3f4f6';
|
|
94
65
|
/**
|
|
95
66
|
* @scopes All Fills, Stroke Color
|
|
96
67
|
*/
|
|
97
|
-
|
|
68
|
+
listHover: '#f9fafb';
|
|
98
69
|
/**
|
|
99
70
|
* @scopes All Fills, Stroke Color
|
|
100
71
|
*/
|
|
101
|
-
|
|
72
|
+
tableDisabledRow: '#f3f4f6';
|
|
102
73
|
/**
|
|
103
74
|
* @scopes All Fills, Stroke Color
|
|
104
75
|
*/
|
|
105
|
-
|
|
76
|
+
tableBackground: '#ffffff';
|
|
106
77
|
/**
|
|
107
78
|
* @scopes All Fills, Stroke Color
|
|
108
79
|
*/
|
|
109
|
-
|
|
80
|
+
shadowNeutral: 'rgba(31, 41, 55, 0.1)';
|
|
81
|
+
/**
|
|
82
|
+
* @scopes All Fills, Stroke Color
|
|
83
|
+
*/
|
|
84
|
+
shadowPrimary: 'rgba(47, 66, 255, 0.1)';
|
|
85
|
+
/**
|
|
86
|
+
* @scopes All Fills, Stroke Color
|
|
87
|
+
*/
|
|
88
|
+
tooltip: '#4b5563';
|
|
89
|
+
/**
|
|
90
|
+
* @scopes All Fills, Stroke Color
|
|
91
|
+
*/
|
|
92
|
+
scrim: 'rgba(31, 41, 55, 0.2)';
|
|
93
|
+
/**
|
|
94
|
+
* @scopes All Fills, Stroke Color
|
|
95
|
+
*/
|
|
96
|
+
tabSecondaryBackground: '#e5e7eb';
|
|
97
|
+
/**
|
|
98
|
+
* @scopes All Fills, Stroke Color
|
|
99
|
+
*/
|
|
100
|
+
snackbarDarkMode: '#ffffff';
|
|
101
|
+
/**
|
|
102
|
+
* @scopes All Fills, Stroke Color
|
|
103
|
+
*/
|
|
104
|
+
snackbarBrand: '#131e7a';
|
|
105
|
+
/**
|
|
106
|
+
* @scopes All Fills, Stroke Color
|
|
107
|
+
*/
|
|
108
|
+
snackbarLightMode: '#4b5563';
|
|
109
|
+
/**
|
|
110
|
+
* @scopes All Fills, Stroke Color
|
|
111
|
+
*/
|
|
112
|
+
white: '#ffffff';
|
|
113
|
+
/**
|
|
114
|
+
* @scopes All Fills, Stroke Color
|
|
115
|
+
*/
|
|
116
|
+
black: '#000000';
|
|
110
117
|
};
|
|
111
118
|
|
|
112
|
-
export declare const
|
|
119
|
+
export declare const surfaces: Surfaces;
|
|
113
120
|
|
|
114
|
-
export type
|
|
121
|
+
export type Typography = {
|
|
122
|
+
searchInputBackground: '#ffffff';
|
|
123
|
+
linkDefault: '#ffffff';
|
|
124
|
+
linkHover: '#ffffff';
|
|
125
|
+
navigation: {
|
|
126
|
+
search: {
|
|
127
|
+
highlightText: '#1e2ec2';
|
|
128
|
+
highlightBackground: 'rgba(47, 66, 255, 0)';
|
|
129
|
+
inputBackground: '#f2f3ff';
|
|
130
|
+
highlightBackgroundActive: '#b6bfff';
|
|
131
|
+
};
|
|
132
|
+
default: '#1f2937';
|
|
133
|
+
};
|
|
134
|
+
linkVisited: '#ffffff';
|
|
135
|
+
linkWhite: '#ffffff';
|
|
136
|
+
linkWhiteHover: '#ffffff';
|
|
137
|
+
input: {
|
|
138
|
+
placeholder: '#9ca3af';
|
|
139
|
+
default: '#1f2937';
|
|
140
|
+
label: '#1f2937';
|
|
141
|
+
helper: '#4b5563';
|
|
142
|
+
};
|
|
143
|
+
code: {
|
|
144
|
+
primary: '#1f2937';
|
|
145
|
+
secondary: '#9ca3af';
|
|
146
|
+
};
|
|
147
|
+
button: {
|
|
148
|
+
disabled: '#9ca3af';
|
|
149
|
+
};
|
|
150
|
+
tab: {
|
|
151
|
+
inactive: '#4b5563';
|
|
152
|
+
active: '#2f42ff';
|
|
153
|
+
};
|
|
154
|
+
link: {
|
|
155
|
+
primary: '#2f42ff';
|
|
156
|
+
disabled: '#b6bfff';
|
|
157
|
+
default: '#1f2937';
|
|
158
|
+
white: '#ffffff';
|
|
159
|
+
};
|
|
115
160
|
/**
|
|
116
161
|
* @scopes All Fills, Stroke Color
|
|
117
162
|
*/
|
|
118
|
-
|
|
163
|
+
error: '#cb3446';
|
|
119
164
|
/**
|
|
120
165
|
* @scopes All Fills, Stroke Color
|
|
121
166
|
*/
|
|
122
|
-
|
|
167
|
+
success: '#4ca75a';
|
|
123
168
|
/**
|
|
124
169
|
* @scopes All Fills, Stroke Color
|
|
125
170
|
*/
|
|
126
|
-
|
|
171
|
+
warning: '#1f2937';
|
|
127
172
|
/**
|
|
128
173
|
* @scopes All Fills, Stroke Color
|
|
129
174
|
*/
|
|
130
|
-
|
|
175
|
+
tooltip: '#ffffff';
|
|
131
176
|
/**
|
|
132
177
|
* @scopes All Fills, Stroke Color
|
|
133
178
|
*/
|
|
134
|
-
|
|
179
|
+
legal: '#9ca3af';
|
|
135
180
|
/**
|
|
136
181
|
* @scopes All Fills, Stroke Color
|
|
137
182
|
*/
|
|
138
|
-
|
|
183
|
+
bodySecondary: '#6b7280';
|
|
139
184
|
/**
|
|
140
185
|
* @scopes All Fills, Stroke Color
|
|
141
186
|
*/
|
|
142
|
-
|
|
187
|
+
body: '#1f2937';
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
export declare const typography: Typography;
|
|
191
|
+
|
|
192
|
+
export type Border = {
|
|
193
|
+
overlay: 'rgba(255, 255, 255, 0)';
|
|
143
194
|
/**
|
|
144
195
|
* @scopes All Fills, Stroke Color
|
|
145
196
|
*/
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
197
|
+
primary: '#d1d5db';
|
|
198
|
+
/**
|
|
199
|
+
* @scopes All Fills, Stroke Color
|
|
200
|
+
*/
|
|
201
|
+
secondary: '#e5e7eb';
|
|
202
|
+
focus: '#3bcca6';
|
|
149
203
|
};
|
|
150
204
|
|
|
151
|
-
export declare const
|
|
205
|
+
export declare const border: Border;
|
|
152
206
|
|
|
153
207
|
export type Input = {
|
|
154
208
|
/**
|
|
@@ -158,49 +212,49 @@ checkbox: '#d1d5db';
|
|
|
158
212
|
/**
|
|
159
213
|
* @scopes All Fills, Stroke Color
|
|
160
214
|
*/
|
|
161
|
-
|
|
215
|
+
hoverBackground: '#f3f4f6';
|
|
162
216
|
/**
|
|
163
217
|
* @scopes All Fills, Stroke Color
|
|
164
218
|
*/
|
|
165
|
-
|
|
219
|
+
background: '#ffffff';
|
|
166
220
|
/**
|
|
167
221
|
* @scopes All Fills, Stroke Color
|
|
168
222
|
*/
|
|
169
|
-
|
|
223
|
+
disabledBackground: '#f9fafb';
|
|
170
224
|
};
|
|
171
225
|
|
|
172
226
|
export declare const input: Input;
|
|
173
227
|
|
|
174
228
|
export type Status = {
|
|
175
229
|
success: {
|
|
176
|
-
dark: '#2c6c36';
|
|
177
|
-
default: '#4ca75a';
|
|
178
230
|
light: '#f3fff5';
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
dark: '#856000';
|
|
183
|
-
default: '#ffb800';
|
|
184
|
-
light: '#fff8e5';
|
|
185
|
-
transparent: '#ffb800';
|
|
231
|
+
default: '#4ca75a';
|
|
232
|
+
transparent: 'rgba(76, 167, 90, 0.5)';
|
|
233
|
+
dark: '#2c6c36';
|
|
186
234
|
};
|
|
187
235
|
error: {
|
|
188
|
-
dark: '#a92232';
|
|
189
236
|
light: '#ffedef';
|
|
190
237
|
default: '#ed4a5d';
|
|
191
|
-
transparent: '
|
|
238
|
+
transparent: 'rgba(237, 74, 93, 0.5)';
|
|
239
|
+
dark: '#a92232';
|
|
240
|
+
};
|
|
241
|
+
warning: {
|
|
242
|
+
light: '#fff8e5';
|
|
243
|
+
default: '#ffb800';
|
|
244
|
+
transparent: 'rgba(255, 184, 0, 0.5)';
|
|
245
|
+
dark: '#856000';
|
|
192
246
|
};
|
|
193
247
|
info: {
|
|
194
248
|
dark: '#1e2ec2';
|
|
195
249
|
default: '#2f42ff';
|
|
196
250
|
light: '#f2f3ff';
|
|
197
|
-
transparent: '
|
|
251
|
+
transparent: 'rgba(47, 66, 255, 0.5)';
|
|
198
252
|
};
|
|
199
253
|
neutral: {
|
|
200
254
|
dark: '#374151';
|
|
201
255
|
default: '#6b7280';
|
|
202
256
|
light: '#f3f4f6';
|
|
203
|
-
transparent: '
|
|
257
|
+
transparent: 'rgba(107, 114, 128, 0.5)';
|
|
204
258
|
};
|
|
205
259
|
avatar: {
|
|
206
260
|
initials: {
|
|
@@ -217,140 +271,98 @@ background7: '#ffebb7';
|
|
|
217
271
|
|
|
218
272
|
export declare const status: Status;
|
|
219
273
|
|
|
220
|
-
export type
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
/**
|
|
242
|
-
* @scopes All Fills, Stroke Color
|
|
243
|
-
*/
|
|
244
|
-
tabActive: '#f3f4f6';
|
|
245
|
-
/**
|
|
246
|
-
* @scopes All Fills, Stroke Color
|
|
247
|
-
*/
|
|
248
|
-
listHover: '#f9fafb';
|
|
249
|
-
/**
|
|
250
|
-
* @scopes All Fills, Stroke Color
|
|
251
|
-
*/
|
|
252
|
-
tableDisabledRow: '#f3f4f6';
|
|
253
|
-
/**
|
|
254
|
-
* @scopes All Fills, Stroke Color
|
|
255
|
-
*/
|
|
256
|
-
tableBackground: '#ffffff';
|
|
257
|
-
/**
|
|
258
|
-
* @scopes All Fills, Stroke Color
|
|
259
|
-
*/
|
|
260
|
-
tabSecondaryBackground: '#e5e7eb';
|
|
261
|
-
/**
|
|
262
|
-
* @scopes All Fills, Stroke Color
|
|
263
|
-
*/
|
|
264
|
-
shadowNeutral: '#1f2937';
|
|
265
|
-
/**
|
|
266
|
-
* @scopes All Fills, Stroke Color
|
|
267
|
-
*/
|
|
268
|
-
scrim: '#1f2937';
|
|
274
|
+
export type Buttons = {
|
|
275
|
+
primary: {
|
|
276
|
+
hover: '#1e2ec2';
|
|
277
|
+
disabled: '#f3f4f6';
|
|
278
|
+
pressed: '#131e7a';
|
|
279
|
+
default: '#2f42ff';
|
|
280
|
+
};
|
|
281
|
+
secondary: {
|
|
282
|
+
defaultBorder: '#b6bfff';
|
|
283
|
+
hoverBackground: '#f2f3ff';
|
|
284
|
+
pressedBackground: '#dce0ff';
|
|
285
|
+
disabledBackground: '#f9fafb';
|
|
286
|
+
defaultBackground: '#ffffff';
|
|
287
|
+
default: '#1f2937';
|
|
288
|
+
};
|
|
289
|
+
tertiary: {
|
|
290
|
+
default: '#2f42ff';
|
|
291
|
+
hover: '#1e2ec2';
|
|
292
|
+
pressed: '#131e7a';
|
|
293
|
+
disabled: '#9ca3af';
|
|
294
|
+
};
|
|
269
295
|
/**
|
|
270
296
|
* @scopes All Fills, Stroke Color
|
|
271
297
|
*/
|
|
272
|
-
|
|
298
|
+
destructive: '#cb3446';
|
|
273
299
|
/**
|
|
274
300
|
* @scopes All Fills, Stroke Color
|
|
275
301
|
*/
|
|
276
|
-
|
|
302
|
+
navigationActive: '#ffffff';
|
|
303
|
+
navigation: {
|
|
304
|
+
defaultBorder: '#b6bfff';
|
|
305
|
+
hoverBackground: '#f3f4f6';
|
|
306
|
+
pressedBackground: '#e5e7eb';
|
|
307
|
+
activeBorder: '#2f42ff';
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
|
|
311
|
+
export declare const buttons: Buttons;
|
|
312
|
+
|
|
313
|
+
export type Activity = {
|
|
277
314
|
/**
|
|
278
315
|
* @scopes All Fills, Stroke Color
|
|
279
316
|
*/
|
|
280
|
-
|
|
317
|
+
recipeRun: '#992fb9';
|
|
281
318
|
/**
|
|
282
319
|
* @scopes All Fills, Stroke Color
|
|
283
320
|
*/
|
|
284
|
-
|
|
321
|
+
commitJob: '#2f42ff';
|
|
285
322
|
/**
|
|
286
323
|
* @scopes All Fills, Stroke Color
|
|
287
324
|
*/
|
|
288
|
-
|
|
289
|
-
highlightBackground: '#2637e6';
|
|
290
|
-
activeHighlight: '#b6bfff';
|
|
325
|
+
visualization: '#27aa88';
|
|
291
326
|
};
|
|
292
327
|
|
|
293
|
-
export declare const
|
|
328
|
+
export declare const activity: Activity;
|
|
294
329
|
|
|
295
|
-
export type
|
|
330
|
+
export type Data = {
|
|
296
331
|
/**
|
|
297
332
|
* @scopes All Fills, Stroke Color
|
|
298
333
|
*/
|
|
299
|
-
|
|
300
|
-
button: {
|
|
301
|
-
disabled: '#9ca3af';
|
|
302
|
-
};
|
|
303
|
-
input: {
|
|
304
|
-
placeholder: '#9ca3af';
|
|
305
|
-
default: '#1f2937';
|
|
306
|
-
label: '#1f2937';
|
|
307
|
-
helper: '#4b5563';
|
|
308
|
-
};
|
|
309
|
-
code: {
|
|
310
|
-
primary: '#1f2937';
|
|
311
|
-
secondary: '#9ca3af';
|
|
312
|
-
};
|
|
313
|
-
tab: {
|
|
314
|
-
inactive: '#4b5563';
|
|
315
|
-
active: '#2f42ff';
|
|
316
|
-
};
|
|
317
|
-
link: {
|
|
318
|
-
primary: '#2f42ff';
|
|
319
|
-
disabled: '#b6bfff';
|
|
320
|
-
default: '#1f2937';
|
|
321
|
-
white: '#ffffff';
|
|
322
|
-
};
|
|
334
|
+
green: '#4ca75a';
|
|
323
335
|
/**
|
|
324
336
|
* @scopes All Fills, Stroke Color
|
|
325
337
|
*/
|
|
326
|
-
|
|
338
|
+
yellow: '#fdda04';
|
|
327
339
|
/**
|
|
328
340
|
* @scopes All Fills, Stroke Color
|
|
329
341
|
*/
|
|
330
|
-
|
|
342
|
+
orange1: '#ffc008';
|
|
331
343
|
/**
|
|
332
344
|
* @scopes All Fills, Stroke Color
|
|
333
345
|
*/
|
|
334
|
-
|
|
346
|
+
orange2: '#ff9800';
|
|
335
347
|
/**
|
|
336
348
|
* @scopes All Fills, Stroke Color
|
|
337
349
|
*/
|
|
338
|
-
|
|
350
|
+
orange3: '#f9a91b';
|
|
339
351
|
/**
|
|
340
352
|
* @scopes All Fills, Stroke Color
|
|
341
353
|
*/
|
|
342
|
-
|
|
354
|
+
red1: '#ff5c24';
|
|
343
355
|
/**
|
|
344
356
|
* @scopes All Fills, Stroke Color
|
|
345
357
|
*/
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
358
|
+
red2: '#ed4134';
|
|
359
|
+
/**
|
|
360
|
+
* @scopes All Fills, Stroke Color
|
|
361
|
+
*/
|
|
362
|
+
red3: '#cb3446';
|
|
351
363
|
};
|
|
352
364
|
|
|
353
|
-
export declare const
|
|
365
|
+
export declare const data: Data;
|
|
354
366
|
|
|
355
367
|
export type Tab = {
|
|
356
368
|
/**
|
|
@@ -376,15 +388,15 @@ export declare const code: Code;
|
|
|
376
388
|
export declare const brand: '#2f42ff';
|
|
377
389
|
|
|
378
390
|
declare const _default: {
|
|
379
|
-
activity: typeof activity,
|
|
380
|
-
border: typeof border,
|
|
381
|
-
buttons: typeof buttons,
|
|
382
|
-
data: typeof data,
|
|
383
391
|
icons: typeof icons,
|
|
384
|
-
input: typeof input,
|
|
385
|
-
status: typeof status,
|
|
386
392
|
surfaces: typeof surfaces,
|
|
387
393
|
typography: typeof typography,
|
|
394
|
+
border: typeof border,
|
|
395
|
+
input: typeof input,
|
|
396
|
+
status: typeof status,
|
|
397
|
+
buttons: typeof buttons,
|
|
398
|
+
activity: typeof activity,
|
|
399
|
+
data: typeof data,
|
|
388
400
|
tab: typeof tab,
|
|
389
401
|
code: typeof code,
|
|
390
402
|
brand: typeof brand,
|