@data-fair/lib-common-types 1.15.0 → 1.16.1
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/account/index.js +1 -1
- package/account/schema.js +37 -37
- package/application/index.js +1 -1
- package/application/schema.js +124 -124
- package/catalog/index.js +1 -1
- package/catalog/schema.js +180 -180
- package/event/index.js +1 -1
- package/event/schema.js +199 -199
- package/notification/index.js +1 -1
- package/notification/schema.js +83 -83
- package/package.json +2 -1
- package/session/index.js +55 -41
- package/session/schema.js +164 -164
- package/theme/index.d.ts +8 -0
- package/theme/index.js +331 -198
- package/theme/schema.d.ts +557 -86
- package/theme/schema.js +807 -363
package/theme/schema.d.ts
CHANGED
|
@@ -3,97 +3,180 @@ declare const _default: {
|
|
|
3
3
|
'x-exports': string[];
|
|
4
4
|
type: string;
|
|
5
5
|
title: string;
|
|
6
|
+
'x-i18n-title': {
|
|
7
|
+
fr: string;
|
|
8
|
+
en: string;
|
|
9
|
+
es: string;
|
|
10
|
+
it: string;
|
|
11
|
+
pt: string;
|
|
12
|
+
de: string;
|
|
13
|
+
};
|
|
6
14
|
required: string[];
|
|
7
|
-
layout:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
cols: number;
|
|
16
|
-
if: string;
|
|
17
|
-
comp?: undefined;
|
|
18
|
-
children?: undefined;
|
|
19
|
-
} | {
|
|
20
|
-
comp: string;
|
|
21
|
-
if: string;
|
|
22
|
-
children: ({
|
|
23
|
-
title: string;
|
|
24
|
-
children: ({
|
|
25
|
-
key: string;
|
|
26
|
-
cols: {
|
|
27
|
-
sm: number;
|
|
28
|
-
lg: number;
|
|
29
|
-
};
|
|
30
|
-
name?: undefined;
|
|
31
|
-
props?: undefined;
|
|
32
|
-
} | {
|
|
33
|
-
name: string;
|
|
34
|
-
cols: {
|
|
35
|
-
sm: number;
|
|
36
|
-
lg: number;
|
|
37
|
-
};
|
|
38
|
-
props: {
|
|
39
|
-
colorsKey: string;
|
|
40
|
-
dark: boolean;
|
|
41
|
-
};
|
|
42
|
-
key?: undefined;
|
|
43
|
-
})[];
|
|
15
|
+
layout: {
|
|
16
|
+
title: string;
|
|
17
|
+
children: (string | {
|
|
18
|
+
key: string;
|
|
19
|
+
if: string;
|
|
20
|
+
cols?: undefined;
|
|
21
|
+
comp?: undefined;
|
|
22
|
+
children?: undefined;
|
|
44
23
|
} | {
|
|
45
|
-
|
|
24
|
+
key: string;
|
|
25
|
+
cols: number;
|
|
26
|
+
if: string;
|
|
27
|
+
comp?: undefined;
|
|
28
|
+
children?: undefined;
|
|
29
|
+
} | {
|
|
30
|
+
comp: string;
|
|
31
|
+
if: string;
|
|
46
32
|
children: ({
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
33
|
+
title: string;
|
|
34
|
+
'x-i18n-title': {
|
|
35
|
+
fr: string;
|
|
36
|
+
en: string;
|
|
37
|
+
es: string;
|
|
38
|
+
it: string;
|
|
39
|
+
pt: string;
|
|
40
|
+
de: string;
|
|
41
|
+
};
|
|
42
|
+
children: ({
|
|
43
|
+
key: string;
|
|
44
|
+
cols: {
|
|
45
|
+
sm: number;
|
|
46
|
+
lg: number;
|
|
47
|
+
};
|
|
48
|
+
name?: undefined;
|
|
49
|
+
props?: undefined;
|
|
50
|
+
} | {
|
|
51
|
+
name: string;
|
|
52
|
+
cols: {
|
|
53
|
+
sm: number;
|
|
54
|
+
lg: number;
|
|
55
|
+
};
|
|
56
|
+
props: {
|
|
57
|
+
colorsKey: string;
|
|
58
|
+
dark: boolean;
|
|
59
|
+
};
|
|
60
|
+
key?: undefined;
|
|
61
|
+
})[];
|
|
54
62
|
} | {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
};
|
|
64
|
-
children
|
|
63
|
+
title: string;
|
|
64
|
+
'x-i18n-title': {
|
|
65
|
+
fr: string;
|
|
66
|
+
en: string;
|
|
67
|
+
es: string;
|
|
68
|
+
it: string;
|
|
69
|
+
pt: string;
|
|
70
|
+
de: string;
|
|
71
|
+
};
|
|
72
|
+
children: ({
|
|
73
|
+
children: string[];
|
|
74
|
+
cols: {
|
|
75
|
+
sm: number;
|
|
76
|
+
lg: number;
|
|
77
|
+
};
|
|
78
|
+
name?: undefined;
|
|
79
|
+
props?: undefined;
|
|
80
|
+
} | {
|
|
81
|
+
name: string;
|
|
82
|
+
cols: {
|
|
83
|
+
sm: number;
|
|
84
|
+
lg: number;
|
|
85
|
+
};
|
|
86
|
+
props: {
|
|
87
|
+
colorsKey: string;
|
|
88
|
+
dark: boolean;
|
|
89
|
+
};
|
|
90
|
+
children?: undefined;
|
|
91
|
+
})[];
|
|
65
92
|
})[];
|
|
93
|
+
key?: undefined;
|
|
94
|
+
cols?: undefined;
|
|
66
95
|
})[];
|
|
67
|
-
|
|
68
|
-
cols?: undefined;
|
|
69
|
-
})[];
|
|
96
|
+
};
|
|
70
97
|
properties: {
|
|
71
98
|
logo: {
|
|
72
99
|
title: string;
|
|
100
|
+
'x-i18n-title': {
|
|
101
|
+
fr: string;
|
|
102
|
+
en: string;
|
|
103
|
+
es: string;
|
|
104
|
+
it: string;
|
|
105
|
+
pt: string;
|
|
106
|
+
de: string;
|
|
107
|
+
};
|
|
73
108
|
type: string;
|
|
74
109
|
};
|
|
75
110
|
bodyFontFamilyCss: {
|
|
76
111
|
title: string;
|
|
112
|
+
'x-i18n-title': {
|
|
113
|
+
fr: string;
|
|
114
|
+
en: string;
|
|
115
|
+
es: string;
|
|
116
|
+
it: string;
|
|
117
|
+
pt: string;
|
|
118
|
+
de: string;
|
|
119
|
+
};
|
|
77
120
|
layout: {
|
|
78
121
|
comp: string;
|
|
79
122
|
rows: number;
|
|
80
123
|
};
|
|
81
124
|
description: string;
|
|
125
|
+
'x-i18n-description': {
|
|
126
|
+
fr: string;
|
|
127
|
+
en: string;
|
|
128
|
+
es: string;
|
|
129
|
+
it: string;
|
|
130
|
+
pt: string;
|
|
131
|
+
de: string;
|
|
132
|
+
};
|
|
82
133
|
type: string;
|
|
83
134
|
};
|
|
84
135
|
headingFontFamilyCss: {
|
|
85
136
|
title: string;
|
|
137
|
+
'x-i18n-title': {
|
|
138
|
+
fr: string;
|
|
139
|
+
en: string;
|
|
140
|
+
es: string;
|
|
141
|
+
it: string;
|
|
142
|
+
pt: string;
|
|
143
|
+
de: string;
|
|
144
|
+
};
|
|
86
145
|
layout: {
|
|
87
146
|
comp: string;
|
|
88
147
|
rows: number;
|
|
89
148
|
};
|
|
90
149
|
description: string;
|
|
150
|
+
'x-i18n-description': {
|
|
151
|
+
fr: string;
|
|
152
|
+
en: string;
|
|
153
|
+
es: string;
|
|
154
|
+
it: string;
|
|
155
|
+
pt: string;
|
|
156
|
+
de: string;
|
|
157
|
+
};
|
|
91
158
|
type: string;
|
|
92
159
|
};
|
|
93
160
|
assistedMode: {
|
|
94
161
|
type: string;
|
|
95
162
|
title: string;
|
|
163
|
+
'x-i18n-title': {
|
|
164
|
+
fr: string;
|
|
165
|
+
en: string;
|
|
166
|
+
es: string;
|
|
167
|
+
it: string;
|
|
168
|
+
pt: string;
|
|
169
|
+
de: string;
|
|
170
|
+
};
|
|
96
171
|
description: string;
|
|
172
|
+
'x-i18n-description': {
|
|
173
|
+
fr: string;
|
|
174
|
+
en: string;
|
|
175
|
+
es: string;
|
|
176
|
+
it: string;
|
|
177
|
+
pt: string;
|
|
178
|
+
de: string;
|
|
179
|
+
};
|
|
97
180
|
default: boolean;
|
|
98
181
|
};
|
|
99
182
|
assistedModeColors: {
|
|
@@ -102,25 +185,58 @@ declare const _default: {
|
|
|
102
185
|
primary: {
|
|
103
186
|
type: string;
|
|
104
187
|
title: string;
|
|
188
|
+
'x-i18n-title': {
|
|
189
|
+
fr: string;
|
|
190
|
+
en: string;
|
|
191
|
+
es: string;
|
|
192
|
+
it: string;
|
|
193
|
+
pt: string;
|
|
194
|
+
de: string;
|
|
195
|
+
};
|
|
105
196
|
layout: {
|
|
106
197
|
comp: string;
|
|
107
|
-
cols:
|
|
198
|
+
cols: {
|
|
199
|
+
sm: number;
|
|
200
|
+
lg: number;
|
|
201
|
+
};
|
|
108
202
|
};
|
|
109
203
|
};
|
|
110
204
|
secondary: {
|
|
111
205
|
type: string;
|
|
112
206
|
title: string;
|
|
207
|
+
'x-i18n-title': {
|
|
208
|
+
fr: string;
|
|
209
|
+
en: string;
|
|
210
|
+
es: string;
|
|
211
|
+
it: string;
|
|
212
|
+
pt: string;
|
|
213
|
+
de: string;
|
|
214
|
+
};
|
|
113
215
|
layout: {
|
|
114
216
|
comp: string;
|
|
115
|
-
cols:
|
|
217
|
+
cols: {
|
|
218
|
+
sm: number;
|
|
219
|
+
lg: number;
|
|
220
|
+
};
|
|
116
221
|
};
|
|
117
222
|
};
|
|
118
223
|
accent: {
|
|
119
224
|
type: string;
|
|
120
225
|
title: string;
|
|
226
|
+
'x-i18n-title': {
|
|
227
|
+
fr: string;
|
|
228
|
+
en: string;
|
|
229
|
+
es: string;
|
|
230
|
+
it: string;
|
|
231
|
+
pt: string;
|
|
232
|
+
de: string;
|
|
233
|
+
};
|
|
121
234
|
layout: {
|
|
122
235
|
comp: string;
|
|
123
|
-
cols:
|
|
236
|
+
cols: {
|
|
237
|
+
sm: number;
|
|
238
|
+
lg: number;
|
|
239
|
+
};
|
|
124
240
|
};
|
|
125
241
|
};
|
|
126
242
|
};
|
|
@@ -131,6 +247,14 @@ declare const _default: {
|
|
|
131
247
|
dark: {
|
|
132
248
|
type: string;
|
|
133
249
|
title: string;
|
|
250
|
+
'x-i18n-title': {
|
|
251
|
+
fr: string;
|
|
252
|
+
en: string;
|
|
253
|
+
es: string;
|
|
254
|
+
it: string;
|
|
255
|
+
pt: string;
|
|
256
|
+
de: string;
|
|
257
|
+
};
|
|
134
258
|
};
|
|
135
259
|
darkColors: {
|
|
136
260
|
$ref: string;
|
|
@@ -138,6 +262,14 @@ declare const _default: {
|
|
|
138
262
|
hc: {
|
|
139
263
|
type: string;
|
|
140
264
|
title: string;
|
|
265
|
+
'x-i18n-title': {
|
|
266
|
+
fr: string;
|
|
267
|
+
en: string;
|
|
268
|
+
es: string;
|
|
269
|
+
it: string;
|
|
270
|
+
pt: string;
|
|
271
|
+
de: string;
|
|
272
|
+
};
|
|
141
273
|
};
|
|
142
274
|
hcColors: {
|
|
143
275
|
$ref: string;
|
|
@@ -145,6 +277,14 @@ declare const _default: {
|
|
|
145
277
|
hcDark: {
|
|
146
278
|
type: string;
|
|
147
279
|
title: string;
|
|
280
|
+
'x-i18n-title': {
|
|
281
|
+
fr: string;
|
|
282
|
+
en: string;
|
|
283
|
+
es: string;
|
|
284
|
+
it: string;
|
|
285
|
+
pt: string;
|
|
286
|
+
de: string;
|
|
287
|
+
};
|
|
148
288
|
};
|
|
149
289
|
hcDarkColors: {
|
|
150
290
|
$ref: string;
|
|
@@ -159,208 +299,539 @@ declare const _default: {
|
|
|
159
299
|
background: {
|
|
160
300
|
type: string;
|
|
161
301
|
title: string;
|
|
302
|
+
'x-i18n-title': {
|
|
303
|
+
fr: string;
|
|
304
|
+
en: string;
|
|
305
|
+
es: string;
|
|
306
|
+
it: string;
|
|
307
|
+
pt: string;
|
|
308
|
+
de: string;
|
|
309
|
+
};
|
|
162
310
|
layout: {
|
|
163
311
|
comp: string;
|
|
164
|
-
cols:
|
|
312
|
+
cols: {
|
|
313
|
+
sm: number;
|
|
314
|
+
lg: number;
|
|
315
|
+
};
|
|
165
316
|
};
|
|
166
317
|
};
|
|
167
318
|
'on-background': {
|
|
168
319
|
type: string;
|
|
169
320
|
title: string;
|
|
321
|
+
'x-i18n-title': {
|
|
322
|
+
fr: string;
|
|
323
|
+
en: string;
|
|
324
|
+
es: string;
|
|
325
|
+
it: string;
|
|
326
|
+
pt: string;
|
|
327
|
+
de: string;
|
|
328
|
+
};
|
|
170
329
|
layout: {
|
|
171
330
|
comp: string;
|
|
172
|
-
cols:
|
|
331
|
+
cols: {
|
|
332
|
+
sm: number;
|
|
333
|
+
lg: number;
|
|
334
|
+
};
|
|
173
335
|
};
|
|
174
336
|
};
|
|
175
337
|
surface: {
|
|
176
338
|
type: string;
|
|
177
339
|
title: string;
|
|
340
|
+
'x-i18n-title': {
|
|
341
|
+
fr: string;
|
|
342
|
+
en: string;
|
|
343
|
+
es: string;
|
|
344
|
+
it: string;
|
|
345
|
+
pt: string;
|
|
346
|
+
de: string;
|
|
347
|
+
};
|
|
178
348
|
layout: {
|
|
179
349
|
comp: string;
|
|
180
|
-
cols:
|
|
350
|
+
cols: {
|
|
351
|
+
sm: number;
|
|
352
|
+
lg: number;
|
|
353
|
+
};
|
|
181
354
|
};
|
|
182
355
|
};
|
|
183
356
|
'on-surface': {
|
|
184
357
|
type: string;
|
|
185
358
|
title: string;
|
|
359
|
+
'x-i18n-title': {
|
|
360
|
+
fr: string;
|
|
361
|
+
en: string;
|
|
362
|
+
es: string;
|
|
363
|
+
it: string;
|
|
364
|
+
pt: string;
|
|
365
|
+
de: string;
|
|
366
|
+
};
|
|
186
367
|
layout: {
|
|
187
368
|
comp: string;
|
|
188
|
-
cols:
|
|
369
|
+
cols: {
|
|
370
|
+
sm: number;
|
|
371
|
+
lg: number;
|
|
372
|
+
};
|
|
189
373
|
};
|
|
190
374
|
};
|
|
191
375
|
primary: {
|
|
192
376
|
type: string;
|
|
193
377
|
title: string;
|
|
378
|
+
'x-i18n-title': {
|
|
379
|
+
fr: string;
|
|
380
|
+
en: string;
|
|
381
|
+
es: string;
|
|
382
|
+
it: string;
|
|
383
|
+
pt: string;
|
|
384
|
+
de: string;
|
|
385
|
+
};
|
|
194
386
|
layout: {
|
|
195
387
|
comp: string;
|
|
196
|
-
cols:
|
|
388
|
+
cols: {
|
|
389
|
+
sm: number;
|
|
390
|
+
lg: number;
|
|
391
|
+
};
|
|
197
392
|
};
|
|
198
393
|
};
|
|
199
394
|
'on-primary': {
|
|
200
395
|
type: string;
|
|
201
396
|
title: string;
|
|
397
|
+
'x-i18n-title': {
|
|
398
|
+
fr: string;
|
|
399
|
+
en: string;
|
|
400
|
+
es: string;
|
|
401
|
+
it: string;
|
|
402
|
+
pt: string;
|
|
403
|
+
de: string;
|
|
404
|
+
};
|
|
202
405
|
layout: {
|
|
203
406
|
comp: string;
|
|
204
|
-
cols:
|
|
407
|
+
cols: {
|
|
408
|
+
sm: number;
|
|
409
|
+
lg: number;
|
|
410
|
+
};
|
|
205
411
|
};
|
|
206
412
|
};
|
|
207
413
|
'text-primary': {
|
|
208
414
|
type: string;
|
|
209
415
|
title: string;
|
|
416
|
+
'x-i18n-title': {
|
|
417
|
+
fr: string;
|
|
418
|
+
en: string;
|
|
419
|
+
es: string;
|
|
420
|
+
it: string;
|
|
421
|
+
pt: string;
|
|
422
|
+
de: string;
|
|
423
|
+
};
|
|
210
424
|
layout: {
|
|
211
425
|
comp: string;
|
|
212
|
-
cols:
|
|
426
|
+
cols: {
|
|
427
|
+
sm: number;
|
|
428
|
+
lg: number;
|
|
429
|
+
};
|
|
213
430
|
hint: string;
|
|
431
|
+
'x-i18n-hint': {
|
|
432
|
+
fr: string;
|
|
433
|
+
en: string;
|
|
434
|
+
es: string;
|
|
435
|
+
it: string;
|
|
436
|
+
pt: string;
|
|
437
|
+
de: string;
|
|
438
|
+
};
|
|
214
439
|
};
|
|
215
440
|
};
|
|
216
441
|
secondary: {
|
|
217
442
|
type: string;
|
|
218
443
|
title: string;
|
|
444
|
+
'x-i18n-title': {
|
|
445
|
+
fr: string;
|
|
446
|
+
en: string;
|
|
447
|
+
es: string;
|
|
448
|
+
it: string;
|
|
449
|
+
pt: string;
|
|
450
|
+
de: string;
|
|
451
|
+
};
|
|
219
452
|
layout: {
|
|
220
453
|
comp: string;
|
|
221
|
-
cols:
|
|
454
|
+
cols: {
|
|
455
|
+
sm: number;
|
|
456
|
+
lg: number;
|
|
457
|
+
};
|
|
222
458
|
};
|
|
223
459
|
};
|
|
224
460
|
'on-secondary': {
|
|
225
461
|
type: string;
|
|
226
462
|
title: string;
|
|
463
|
+
'x-i18n-title': {
|
|
464
|
+
fr: string;
|
|
465
|
+
en: string;
|
|
466
|
+
es: string;
|
|
467
|
+
it: string;
|
|
468
|
+
pt: string;
|
|
469
|
+
de: string;
|
|
470
|
+
};
|
|
227
471
|
layout: {
|
|
228
472
|
comp: string;
|
|
229
|
-
cols:
|
|
473
|
+
cols: {
|
|
474
|
+
sm: number;
|
|
475
|
+
lg: number;
|
|
476
|
+
};
|
|
230
477
|
};
|
|
231
478
|
};
|
|
232
479
|
'text-secondary': {
|
|
233
480
|
type: string;
|
|
234
481
|
title: string;
|
|
482
|
+
'x-i18n-title': {
|
|
483
|
+
fr: string;
|
|
484
|
+
en: string;
|
|
485
|
+
es: string;
|
|
486
|
+
it: string;
|
|
487
|
+
pt: string;
|
|
488
|
+
de: string;
|
|
489
|
+
};
|
|
235
490
|
layout: {
|
|
236
491
|
comp: string;
|
|
237
|
-
cols:
|
|
492
|
+
cols: {
|
|
493
|
+
sm: number;
|
|
494
|
+
lg: number;
|
|
495
|
+
};
|
|
238
496
|
hint: string;
|
|
497
|
+
'x-i18n-hint': {
|
|
498
|
+
fr: string;
|
|
499
|
+
en: string;
|
|
500
|
+
es: string;
|
|
501
|
+
it: string;
|
|
502
|
+
pt: string;
|
|
503
|
+
de: string;
|
|
504
|
+
};
|
|
239
505
|
};
|
|
240
506
|
};
|
|
241
507
|
accent: {
|
|
242
508
|
type: string;
|
|
243
509
|
title: string;
|
|
510
|
+
'x-i18n-title': {
|
|
511
|
+
fr: string;
|
|
512
|
+
en: string;
|
|
513
|
+
es: string;
|
|
514
|
+
it: string;
|
|
515
|
+
pt: string;
|
|
516
|
+
de: string;
|
|
517
|
+
};
|
|
244
518
|
layout: {
|
|
245
519
|
comp: string;
|
|
246
|
-
cols:
|
|
520
|
+
cols: {
|
|
521
|
+
sm: number;
|
|
522
|
+
lg: number;
|
|
523
|
+
};
|
|
247
524
|
};
|
|
248
525
|
};
|
|
249
526
|
'on-accent': {
|
|
250
527
|
type: string;
|
|
251
528
|
title: string;
|
|
529
|
+
'x-i18n-title': {
|
|
530
|
+
fr: string;
|
|
531
|
+
en: string;
|
|
532
|
+
es: string;
|
|
533
|
+
it: string;
|
|
534
|
+
pt: string;
|
|
535
|
+
de: string;
|
|
536
|
+
};
|
|
252
537
|
layout: {
|
|
253
538
|
comp: string;
|
|
254
|
-
cols:
|
|
539
|
+
cols: {
|
|
540
|
+
sm: number;
|
|
541
|
+
lg: number;
|
|
542
|
+
};
|
|
255
543
|
};
|
|
256
544
|
};
|
|
257
545
|
'text-accent': {
|
|
258
546
|
type: string;
|
|
259
547
|
title: string;
|
|
548
|
+
'x-i18n-title': {
|
|
549
|
+
fr: string;
|
|
550
|
+
en: string;
|
|
551
|
+
es: string;
|
|
552
|
+
it: string;
|
|
553
|
+
pt: string;
|
|
554
|
+
de: string;
|
|
555
|
+
};
|
|
260
556
|
layout: {
|
|
261
557
|
comp: string;
|
|
262
|
-
cols:
|
|
558
|
+
cols: {
|
|
559
|
+
sm: number;
|
|
560
|
+
lg: number;
|
|
561
|
+
};
|
|
263
562
|
hint: string;
|
|
563
|
+
'x-i18n-hint': {
|
|
564
|
+
fr: string;
|
|
565
|
+
en: string;
|
|
566
|
+
es: string;
|
|
567
|
+
it: string;
|
|
568
|
+
pt: string;
|
|
569
|
+
de: string;
|
|
570
|
+
};
|
|
264
571
|
};
|
|
265
572
|
};
|
|
266
573
|
info: {
|
|
267
574
|
type: string;
|
|
268
575
|
title: string;
|
|
576
|
+
'x-i18n-title': {
|
|
577
|
+
fr: string;
|
|
578
|
+
en: string;
|
|
579
|
+
es: string;
|
|
580
|
+
it: string;
|
|
581
|
+
pt: string;
|
|
582
|
+
de: string;
|
|
583
|
+
};
|
|
269
584
|
layout: {
|
|
270
585
|
comp: string;
|
|
271
|
-
cols:
|
|
586
|
+
cols: {
|
|
587
|
+
sm: number;
|
|
588
|
+
lg: number;
|
|
589
|
+
};
|
|
272
590
|
};
|
|
273
591
|
};
|
|
274
592
|
'on-info': {
|
|
275
593
|
type: string;
|
|
276
594
|
title: string;
|
|
595
|
+
'x-i18n-title': {
|
|
596
|
+
fr: string;
|
|
597
|
+
en: string;
|
|
598
|
+
es: string;
|
|
599
|
+
it: string;
|
|
600
|
+
pt: string;
|
|
601
|
+
de: string;
|
|
602
|
+
};
|
|
277
603
|
layout: {
|
|
278
604
|
comp: string;
|
|
279
|
-
cols:
|
|
605
|
+
cols: {
|
|
606
|
+
sm: number;
|
|
607
|
+
lg: number;
|
|
608
|
+
};
|
|
280
609
|
};
|
|
281
610
|
};
|
|
282
611
|
'text-info': {
|
|
283
612
|
type: string;
|
|
284
613
|
title: string;
|
|
614
|
+
'x-i18n-title': {
|
|
615
|
+
fr: string;
|
|
616
|
+
en: string;
|
|
617
|
+
es: string;
|
|
618
|
+
it: string;
|
|
619
|
+
pt: string;
|
|
620
|
+
de: string;
|
|
621
|
+
};
|
|
285
622
|
layout: {
|
|
286
623
|
comp: string;
|
|
287
|
-
cols:
|
|
624
|
+
cols: {
|
|
625
|
+
sm: number;
|
|
626
|
+
lg: number;
|
|
627
|
+
};
|
|
288
628
|
hint: string;
|
|
629
|
+
'x-i18n-hint': {
|
|
630
|
+
fr: string;
|
|
631
|
+
en: string;
|
|
632
|
+
es: string;
|
|
633
|
+
it: string;
|
|
634
|
+
pt: string;
|
|
635
|
+
de: string;
|
|
636
|
+
};
|
|
289
637
|
};
|
|
290
638
|
};
|
|
291
639
|
success: {
|
|
292
640
|
type: string;
|
|
293
641
|
title: string;
|
|
642
|
+
'x-i18n-title': {
|
|
643
|
+
fr: string;
|
|
644
|
+
en: string;
|
|
645
|
+
es: string;
|
|
646
|
+
it: string;
|
|
647
|
+
pt: string;
|
|
648
|
+
de: string;
|
|
649
|
+
};
|
|
294
650
|
layout: {
|
|
295
651
|
comp: string;
|
|
296
|
-
cols:
|
|
652
|
+
cols: {
|
|
653
|
+
sm: number;
|
|
654
|
+
lg: number;
|
|
655
|
+
};
|
|
297
656
|
};
|
|
298
657
|
};
|
|
299
658
|
'on-success': {
|
|
300
659
|
type: string;
|
|
301
660
|
title: string;
|
|
661
|
+
'x-i18n-title': {
|
|
662
|
+
fr: string;
|
|
663
|
+
en: string;
|
|
664
|
+
es: string;
|
|
665
|
+
it: string;
|
|
666
|
+
pt: string;
|
|
667
|
+
de: string;
|
|
668
|
+
};
|
|
302
669
|
layout: {
|
|
303
670
|
comp: string;
|
|
304
|
-
cols:
|
|
671
|
+
cols: {
|
|
672
|
+
sm: number;
|
|
673
|
+
lg: number;
|
|
674
|
+
};
|
|
305
675
|
};
|
|
306
676
|
};
|
|
307
677
|
'text-success': {
|
|
308
678
|
type: string;
|
|
309
679
|
title: string;
|
|
680
|
+
'x-i18n-title': {
|
|
681
|
+
fr: string;
|
|
682
|
+
en: string;
|
|
683
|
+
es: string;
|
|
684
|
+
it: string;
|
|
685
|
+
pt: string;
|
|
686
|
+
de: string;
|
|
687
|
+
};
|
|
310
688
|
layout: {
|
|
311
689
|
comp: string;
|
|
312
|
-
cols:
|
|
690
|
+
cols: {
|
|
691
|
+
sm: number;
|
|
692
|
+
lg: number;
|
|
693
|
+
};
|
|
313
694
|
hint: string;
|
|
695
|
+
'x-i18n-hint': {
|
|
696
|
+
fr: string;
|
|
697
|
+
en: string;
|
|
698
|
+
es: string;
|
|
699
|
+
it: string;
|
|
700
|
+
pt: string;
|
|
701
|
+
de: string;
|
|
702
|
+
};
|
|
314
703
|
};
|
|
315
704
|
};
|
|
316
705
|
error: {
|
|
317
706
|
type: string;
|
|
318
707
|
title: string;
|
|
708
|
+
'x-i18n-title': {
|
|
709
|
+
fr: string;
|
|
710
|
+
en: string;
|
|
711
|
+
es: string;
|
|
712
|
+
it: string;
|
|
713
|
+
pt: string;
|
|
714
|
+
de: string;
|
|
715
|
+
};
|
|
319
716
|
layout: {
|
|
320
717
|
comp: string;
|
|
321
|
-
cols:
|
|
718
|
+
cols: {
|
|
719
|
+
sm: number;
|
|
720
|
+
lg: number;
|
|
721
|
+
};
|
|
322
722
|
};
|
|
323
723
|
};
|
|
324
724
|
'on-error': {
|
|
325
725
|
type: string;
|
|
326
726
|
title: string;
|
|
727
|
+
'x-i18n-title': {
|
|
728
|
+
fr: string;
|
|
729
|
+
en: string;
|
|
730
|
+
es: string;
|
|
731
|
+
it: string;
|
|
732
|
+
pt: string;
|
|
733
|
+
de: string;
|
|
734
|
+
};
|
|
327
735
|
layout: {
|
|
328
736
|
comp: string;
|
|
329
|
-
cols:
|
|
737
|
+
cols: {
|
|
738
|
+
sm: number;
|
|
739
|
+
lg: number;
|
|
740
|
+
};
|
|
330
741
|
};
|
|
331
742
|
};
|
|
332
743
|
'text-error': {
|
|
333
744
|
type: string;
|
|
334
745
|
title: string;
|
|
746
|
+
'x-i18n-title': {
|
|
747
|
+
fr: string;
|
|
748
|
+
en: string;
|
|
749
|
+
es: string;
|
|
750
|
+
it: string;
|
|
751
|
+
pt: string;
|
|
752
|
+
de: string;
|
|
753
|
+
};
|
|
335
754
|
layout: {
|
|
336
755
|
comp: string;
|
|
337
|
-
cols:
|
|
756
|
+
cols: {
|
|
757
|
+
sm: number;
|
|
758
|
+
lg: number;
|
|
759
|
+
};
|
|
338
760
|
hint: string;
|
|
761
|
+
'x-i18n-hint': {
|
|
762
|
+
fr: string;
|
|
763
|
+
en: string;
|
|
764
|
+
es: string;
|
|
765
|
+
it: string;
|
|
766
|
+
pt: string;
|
|
767
|
+
de: string;
|
|
768
|
+
};
|
|
339
769
|
};
|
|
340
770
|
};
|
|
341
771
|
warning: {
|
|
342
772
|
type: string;
|
|
343
773
|
title: string;
|
|
774
|
+
'x-i18n-title': {
|
|
775
|
+
fr: string;
|
|
776
|
+
en: string;
|
|
777
|
+
es: string;
|
|
778
|
+
it: string;
|
|
779
|
+
pt: string;
|
|
780
|
+
de: string;
|
|
781
|
+
};
|
|
344
782
|
layout: {
|
|
345
783
|
comp: string;
|
|
346
|
-
cols:
|
|
784
|
+
cols: {
|
|
785
|
+
sm: number;
|
|
786
|
+
lg: number;
|
|
787
|
+
};
|
|
347
788
|
};
|
|
348
789
|
};
|
|
349
790
|
'on-warning': {
|
|
350
791
|
type: string;
|
|
351
792
|
title: string;
|
|
793
|
+
'x-i18n-title': {
|
|
794
|
+
fr: string;
|
|
795
|
+
en: string;
|
|
796
|
+
es: string;
|
|
797
|
+
it: string;
|
|
798
|
+
pt: string;
|
|
799
|
+
de: string;
|
|
800
|
+
};
|
|
352
801
|
layout: {
|
|
353
802
|
comp: string;
|
|
354
|
-
cols:
|
|
803
|
+
cols: {
|
|
804
|
+
sm: number;
|
|
805
|
+
lg: number;
|
|
806
|
+
};
|
|
355
807
|
};
|
|
356
808
|
};
|
|
357
809
|
'text-warning': {
|
|
358
810
|
type: string;
|
|
359
811
|
title: string;
|
|
812
|
+
'x-i18n-title': {
|
|
813
|
+
fr: string;
|
|
814
|
+
en: string;
|
|
815
|
+
es: string;
|
|
816
|
+
it: string;
|
|
817
|
+
pt: string;
|
|
818
|
+
de: string;
|
|
819
|
+
};
|
|
360
820
|
layout: {
|
|
361
821
|
comp: string;
|
|
362
|
-
cols:
|
|
822
|
+
cols: {
|
|
823
|
+
sm: number;
|
|
824
|
+
lg: number;
|
|
825
|
+
};
|
|
363
826
|
hint: string;
|
|
827
|
+
'x-i18n-hint': {
|
|
828
|
+
fr: string;
|
|
829
|
+
en: string;
|
|
830
|
+
es: string;
|
|
831
|
+
it: string;
|
|
832
|
+
pt: string;
|
|
833
|
+
de: string;
|
|
834
|
+
};
|
|
364
835
|
};
|
|
365
836
|
};
|
|
366
837
|
admin: {
|