@data-fair/lib-common-types 1.16.0 → 1.16.2
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 +1 -1
- package/session/index.js +55 -41
- package/session/schema.js +164 -164
- package/theme/index.js +326 -306
- package/theme/schema.d.ts +384 -0
- package/theme/schema.js +809 -368
package/theme/schema.d.ts
CHANGED
|
@@ -3,6 +3,14 @@ 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
15
|
layout: {
|
|
8
16
|
title: string;
|
|
@@ -23,6 +31,14 @@ declare const _default: {
|
|
|
23
31
|
if: string;
|
|
24
32
|
children: ({
|
|
25
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
|
+
};
|
|
26
42
|
children: ({
|
|
27
43
|
key: string;
|
|
28
44
|
cols: {
|
|
@@ -45,6 +61,14 @@ declare const _default: {
|
|
|
45
61
|
})[];
|
|
46
62
|
} | {
|
|
47
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
|
+
};
|
|
48
72
|
children: ({
|
|
49
73
|
children: string[];
|
|
50
74
|
cols: {
|
|
@@ -73,30 +97,86 @@ declare const _default: {
|
|
|
73
97
|
properties: {
|
|
74
98
|
logo: {
|
|
75
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
|
+
};
|
|
76
108
|
type: string;
|
|
77
109
|
};
|
|
78
110
|
bodyFontFamilyCss: {
|
|
79
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
|
+
};
|
|
80
120
|
layout: {
|
|
81
121
|
comp: string;
|
|
82
122
|
rows: number;
|
|
83
123
|
};
|
|
84
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
|
+
};
|
|
85
133
|
type: string;
|
|
86
134
|
};
|
|
87
135
|
headingFontFamilyCss: {
|
|
88
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
|
+
};
|
|
89
145
|
layout: {
|
|
90
146
|
comp: string;
|
|
91
147
|
rows: number;
|
|
92
148
|
};
|
|
93
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
|
+
};
|
|
94
158
|
type: string;
|
|
95
159
|
};
|
|
96
160
|
assistedMode: {
|
|
97
161
|
type: string;
|
|
98
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
|
+
};
|
|
99
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
|
+
};
|
|
100
180
|
default: boolean;
|
|
101
181
|
};
|
|
102
182
|
assistedModeColors: {
|
|
@@ -105,6 +185,14 @@ declare const _default: {
|
|
|
105
185
|
primary: {
|
|
106
186
|
type: string;
|
|
107
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
|
+
};
|
|
108
196
|
layout: {
|
|
109
197
|
comp: string;
|
|
110
198
|
cols: {
|
|
@@ -116,6 +204,14 @@ declare const _default: {
|
|
|
116
204
|
secondary: {
|
|
117
205
|
type: string;
|
|
118
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
|
+
};
|
|
119
215
|
layout: {
|
|
120
216
|
comp: string;
|
|
121
217
|
cols: {
|
|
@@ -127,6 +223,14 @@ declare const _default: {
|
|
|
127
223
|
accent: {
|
|
128
224
|
type: string;
|
|
129
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
|
+
};
|
|
130
234
|
layout: {
|
|
131
235
|
comp: string;
|
|
132
236
|
cols: {
|
|
@@ -143,6 +247,14 @@ declare const _default: {
|
|
|
143
247
|
dark: {
|
|
144
248
|
type: string;
|
|
145
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
|
+
};
|
|
146
258
|
};
|
|
147
259
|
darkColors: {
|
|
148
260
|
$ref: string;
|
|
@@ -150,6 +262,14 @@ declare const _default: {
|
|
|
150
262
|
hc: {
|
|
151
263
|
type: string;
|
|
152
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
|
+
};
|
|
153
273
|
};
|
|
154
274
|
hcColors: {
|
|
155
275
|
$ref: string;
|
|
@@ -157,6 +277,14 @@ declare const _default: {
|
|
|
157
277
|
hcDark: {
|
|
158
278
|
type: string;
|
|
159
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
|
+
};
|
|
160
288
|
};
|
|
161
289
|
hcDarkColors: {
|
|
162
290
|
$ref: string;
|
|
@@ -171,6 +299,14 @@ declare const _default: {
|
|
|
171
299
|
background: {
|
|
172
300
|
type: string;
|
|
173
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
|
+
};
|
|
174
310
|
layout: {
|
|
175
311
|
comp: string;
|
|
176
312
|
cols: {
|
|
@@ -182,6 +318,14 @@ declare const _default: {
|
|
|
182
318
|
'on-background': {
|
|
183
319
|
type: string;
|
|
184
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
|
+
};
|
|
185
329
|
layout: {
|
|
186
330
|
comp: string;
|
|
187
331
|
cols: {
|
|
@@ -193,6 +337,14 @@ declare const _default: {
|
|
|
193
337
|
surface: {
|
|
194
338
|
type: string;
|
|
195
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
|
+
};
|
|
196
348
|
layout: {
|
|
197
349
|
comp: string;
|
|
198
350
|
cols: {
|
|
@@ -204,6 +356,14 @@ declare const _default: {
|
|
|
204
356
|
'on-surface': {
|
|
205
357
|
type: string;
|
|
206
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
|
+
};
|
|
207
367
|
layout: {
|
|
208
368
|
comp: string;
|
|
209
369
|
cols: {
|
|
@@ -215,6 +375,14 @@ declare const _default: {
|
|
|
215
375
|
primary: {
|
|
216
376
|
type: string;
|
|
217
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
|
+
};
|
|
218
386
|
layout: {
|
|
219
387
|
comp: string;
|
|
220
388
|
cols: {
|
|
@@ -226,6 +394,14 @@ declare const _default: {
|
|
|
226
394
|
'on-primary': {
|
|
227
395
|
type: string;
|
|
228
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
|
+
};
|
|
229
405
|
layout: {
|
|
230
406
|
comp: string;
|
|
231
407
|
cols: {
|
|
@@ -237,6 +413,14 @@ declare const _default: {
|
|
|
237
413
|
'text-primary': {
|
|
238
414
|
type: string;
|
|
239
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
|
+
};
|
|
240
424
|
layout: {
|
|
241
425
|
comp: string;
|
|
242
426
|
cols: {
|
|
@@ -244,11 +428,27 @@ declare const _default: {
|
|
|
244
428
|
lg: number;
|
|
245
429
|
};
|
|
246
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
|
+
};
|
|
247
439
|
};
|
|
248
440
|
};
|
|
249
441
|
secondary: {
|
|
250
442
|
type: string;
|
|
251
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
|
+
};
|
|
252
452
|
layout: {
|
|
253
453
|
comp: string;
|
|
254
454
|
cols: {
|
|
@@ -260,6 +460,14 @@ declare const _default: {
|
|
|
260
460
|
'on-secondary': {
|
|
261
461
|
type: string;
|
|
262
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
|
+
};
|
|
263
471
|
layout: {
|
|
264
472
|
comp: string;
|
|
265
473
|
cols: {
|
|
@@ -271,6 +479,14 @@ declare const _default: {
|
|
|
271
479
|
'text-secondary': {
|
|
272
480
|
type: string;
|
|
273
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
|
+
};
|
|
274
490
|
layout: {
|
|
275
491
|
comp: string;
|
|
276
492
|
cols: {
|
|
@@ -278,11 +494,27 @@ declare const _default: {
|
|
|
278
494
|
lg: number;
|
|
279
495
|
};
|
|
280
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
|
+
};
|
|
281
505
|
};
|
|
282
506
|
};
|
|
283
507
|
accent: {
|
|
284
508
|
type: string;
|
|
285
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
|
+
};
|
|
286
518
|
layout: {
|
|
287
519
|
comp: string;
|
|
288
520
|
cols: {
|
|
@@ -294,6 +526,14 @@ declare const _default: {
|
|
|
294
526
|
'on-accent': {
|
|
295
527
|
type: string;
|
|
296
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
|
+
};
|
|
297
537
|
layout: {
|
|
298
538
|
comp: string;
|
|
299
539
|
cols: {
|
|
@@ -305,6 +545,14 @@ declare const _default: {
|
|
|
305
545
|
'text-accent': {
|
|
306
546
|
type: string;
|
|
307
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
|
+
};
|
|
308
556
|
layout: {
|
|
309
557
|
comp: string;
|
|
310
558
|
cols: {
|
|
@@ -312,11 +560,27 @@ declare const _default: {
|
|
|
312
560
|
lg: number;
|
|
313
561
|
};
|
|
314
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
|
+
};
|
|
315
571
|
};
|
|
316
572
|
};
|
|
317
573
|
info: {
|
|
318
574
|
type: string;
|
|
319
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
|
+
};
|
|
320
584
|
layout: {
|
|
321
585
|
comp: string;
|
|
322
586
|
cols: {
|
|
@@ -328,6 +592,14 @@ declare const _default: {
|
|
|
328
592
|
'on-info': {
|
|
329
593
|
type: string;
|
|
330
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
|
+
};
|
|
331
603
|
layout: {
|
|
332
604
|
comp: string;
|
|
333
605
|
cols: {
|
|
@@ -339,6 +611,14 @@ declare const _default: {
|
|
|
339
611
|
'text-info': {
|
|
340
612
|
type: string;
|
|
341
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
|
+
};
|
|
342
622
|
layout: {
|
|
343
623
|
comp: string;
|
|
344
624
|
cols: {
|
|
@@ -346,11 +626,27 @@ declare const _default: {
|
|
|
346
626
|
lg: number;
|
|
347
627
|
};
|
|
348
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
|
+
};
|
|
349
637
|
};
|
|
350
638
|
};
|
|
351
639
|
success: {
|
|
352
640
|
type: string;
|
|
353
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
|
+
};
|
|
354
650
|
layout: {
|
|
355
651
|
comp: string;
|
|
356
652
|
cols: {
|
|
@@ -362,6 +658,14 @@ declare const _default: {
|
|
|
362
658
|
'on-success': {
|
|
363
659
|
type: string;
|
|
364
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
|
+
};
|
|
365
669
|
layout: {
|
|
366
670
|
comp: string;
|
|
367
671
|
cols: {
|
|
@@ -373,6 +677,14 @@ declare const _default: {
|
|
|
373
677
|
'text-success': {
|
|
374
678
|
type: string;
|
|
375
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
|
+
};
|
|
376
688
|
layout: {
|
|
377
689
|
comp: string;
|
|
378
690
|
cols: {
|
|
@@ -380,11 +692,27 @@ declare const _default: {
|
|
|
380
692
|
lg: number;
|
|
381
693
|
};
|
|
382
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
|
+
};
|
|
383
703
|
};
|
|
384
704
|
};
|
|
385
705
|
error: {
|
|
386
706
|
type: string;
|
|
387
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
|
+
};
|
|
388
716
|
layout: {
|
|
389
717
|
comp: string;
|
|
390
718
|
cols: {
|
|
@@ -396,6 +724,14 @@ declare const _default: {
|
|
|
396
724
|
'on-error': {
|
|
397
725
|
type: string;
|
|
398
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
|
+
};
|
|
399
735
|
layout: {
|
|
400
736
|
comp: string;
|
|
401
737
|
cols: {
|
|
@@ -407,6 +743,14 @@ declare const _default: {
|
|
|
407
743
|
'text-error': {
|
|
408
744
|
type: string;
|
|
409
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
|
+
};
|
|
410
754
|
layout: {
|
|
411
755
|
comp: string;
|
|
412
756
|
cols: {
|
|
@@ -414,11 +758,27 @@ declare const _default: {
|
|
|
414
758
|
lg: number;
|
|
415
759
|
};
|
|
416
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
|
+
};
|
|
417
769
|
};
|
|
418
770
|
};
|
|
419
771
|
warning: {
|
|
420
772
|
type: string;
|
|
421
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
|
+
};
|
|
422
782
|
layout: {
|
|
423
783
|
comp: string;
|
|
424
784
|
cols: {
|
|
@@ -430,6 +790,14 @@ declare const _default: {
|
|
|
430
790
|
'on-warning': {
|
|
431
791
|
type: string;
|
|
432
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
|
+
};
|
|
433
801
|
layout: {
|
|
434
802
|
comp: string;
|
|
435
803
|
cols: {
|
|
@@ -441,6 +809,14 @@ declare const _default: {
|
|
|
441
809
|
'text-warning': {
|
|
442
810
|
type: string;
|
|
443
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
|
+
};
|
|
444
820
|
layout: {
|
|
445
821
|
comp: string;
|
|
446
822
|
cols: {
|
|
@@ -448,6 +824,14 @@ declare const _default: {
|
|
|
448
824
|
lg: number;
|
|
449
825
|
};
|
|
450
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
|
+
};
|
|
451
835
|
};
|
|
452
836
|
};
|
|
453
837
|
admin: {
|