@data-fair/lib-common-types 1.17.0 → 1.19.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/package.json +1 -1
- package/theme/.type/index.d.ts +12 -1
- package/theme/index.d.ts +10 -0
- package/theme/index.js +15 -3
- package/theme/schema.d.ts +76 -5
- package/theme/schema.js +81 -16
package/package.json
CHANGED
package/theme/.type/index.d.ts
CHANGED
|
@@ -4,12 +4,17 @@ export const schemaExports: string[]
|
|
|
4
4
|
// see https://github.com/bcherny/json-schema-to-typescript/issues/439 if some types are not exported
|
|
5
5
|
export type URLDUnLogo = string;
|
|
6
6
|
/**
|
|
7
|
-
* Par défaut une police Nunito auto-hébergée est utilisée
|
|
7
|
+
* Par défaut une police Nunito auto-hébergée est utilisée
|
|
8
|
+
*/
|
|
9
|
+
export type NomDePoliceDeCaracteresPourLeCorpsDuTexte = string;
|
|
10
|
+
/**
|
|
11
|
+
* Vous pouvez copier le CSS proposé par une plateforme comme Google Fonts.
|
|
8
12
|
*/
|
|
9
13
|
export type CSSPoliceDeCaracteresPourLeCorpsDuTexte = string;
|
|
10
14
|
/**
|
|
11
15
|
* Renseignez de la même manière que pour le corps de texte, ou laissez vide pour utiliser la police du corps du texte
|
|
12
16
|
*/
|
|
17
|
+
export type NomDePoliceDeCaracteresPourLesTitres = string;
|
|
13
18
|
export type CSSPoliceDeCaracteresPourLesTitres = string;
|
|
14
19
|
/**
|
|
15
20
|
* Si activé vous ne devrez saisir que les couleurs principales du thème, d'autres couleurs seront affectées par défaut et les couleurs de texte seront automatiquement ajustées pour être lisibles sur les couleurs de fond.
|
|
@@ -22,6 +27,8 @@ export type CouleurDeFond = string;
|
|
|
22
27
|
export type CouleurDeTexteSurCouleurDeFond = string;
|
|
23
28
|
export type CouleurDesSurfacesVignettesListesEtc = string;
|
|
24
29
|
export type CouleurDeTexteSurCouleurDesSurfaces = string;
|
|
30
|
+
export type CouleurDesSurfacesAvecContrasteInverse = string;
|
|
31
|
+
export type CouleurDeTexteSurCouleurDesSurfacesAvecContrasteInverse = string;
|
|
25
32
|
export type CouleurPrincipale1 = string;
|
|
26
33
|
export type CouleurDeTexteSurCouleurPrincipale = string;
|
|
27
34
|
export type CouleurDeTextePrincipal = string;
|
|
@@ -49,7 +56,9 @@ export type ProposerCeThemeAuxUtilisateurs2 = boolean;
|
|
|
49
56
|
|
|
50
57
|
export type Theme = {
|
|
51
58
|
logo?: URLDUnLogo;
|
|
59
|
+
bodyFontFamily?: NomDePoliceDeCaracteresPourLeCorpsDuTexte;
|
|
52
60
|
bodyFontFamilyCss?: CSSPoliceDeCaracteresPourLeCorpsDuTexte;
|
|
61
|
+
headingFontFamily?: NomDePoliceDeCaracteresPourLesTitres;
|
|
53
62
|
headingFontFamilyCss?: CSSPoliceDeCaracteresPourLesTitres;
|
|
54
63
|
assistedMode?: ModeDeGestionDesCouleursSimplifie;
|
|
55
64
|
assistedModeColors?: {
|
|
@@ -76,6 +85,8 @@ export type Colors = {
|
|
|
76
85
|
"on-background": CouleurDeTexteSurCouleurDeFond;
|
|
77
86
|
surface: CouleurDesSurfacesVignettesListesEtc;
|
|
78
87
|
"on-surface": CouleurDeTexteSurCouleurDesSurfaces;
|
|
88
|
+
"surface-inverse"?: CouleurDesSurfacesAvecContrasteInverse;
|
|
89
|
+
"on-surface-inverse"?: CouleurDeTexteSurCouleurDesSurfacesAvecContrasteInverse;
|
|
79
90
|
primary: CouleurPrincipale1;
|
|
80
91
|
"on-primary": CouleurDeTexteSurCouleurPrincipale;
|
|
81
92
|
"text-primary"?: CouleurDeTextePrincipal;
|
package/theme/index.d.ts
CHANGED
|
@@ -3,13 +3,17 @@ import tinycolor from 'tinycolor2';
|
|
|
3
3
|
export * from './.type/index.js';
|
|
4
4
|
export declare const defaultTheme: {
|
|
5
5
|
logo: undefined;
|
|
6
|
+
bodyFontFamily: string;
|
|
6
7
|
bodyFontFamilyCss: string;
|
|
8
|
+
headingFontFamily: undefined;
|
|
7
9
|
headingFontFamilyCss: undefined;
|
|
8
10
|
colors: {
|
|
9
11
|
background: string;
|
|
10
12
|
'on-background': string;
|
|
11
13
|
surface: string;
|
|
12
14
|
'on-surface': string;
|
|
15
|
+
'surface-inverse': string;
|
|
16
|
+
'on-surface-inverse': string;
|
|
13
17
|
primary: string;
|
|
14
18
|
'on-primary': string;
|
|
15
19
|
'text-primary': string;
|
|
@@ -41,6 +45,8 @@ export declare const defaultTheme: {
|
|
|
41
45
|
'on-background': string;
|
|
42
46
|
surface: string;
|
|
43
47
|
'on-surface': string;
|
|
48
|
+
'surface-inverse': string;
|
|
49
|
+
'on-surface-inverse': string;
|
|
44
50
|
primary: string;
|
|
45
51
|
'on-primary': string;
|
|
46
52
|
'text-primary': string;
|
|
@@ -72,6 +78,8 @@ export declare const defaultTheme: {
|
|
|
72
78
|
'on-background': string;
|
|
73
79
|
surface: string;
|
|
74
80
|
'on-surface': string;
|
|
81
|
+
'surface-inverse': string;
|
|
82
|
+
'on-surface-inverse': string;
|
|
75
83
|
primary: string;
|
|
76
84
|
'on-primary': string;
|
|
77
85
|
'text-primary': undefined;
|
|
@@ -103,6 +111,8 @@ export declare const defaultTheme: {
|
|
|
103
111
|
'on-background': string;
|
|
104
112
|
surface: string;
|
|
105
113
|
'on-surface': string;
|
|
114
|
+
'surface-inverse': string;
|
|
115
|
+
'on-surface-inverse': string;
|
|
106
116
|
primary: string;
|
|
107
117
|
'on-primary': string;
|
|
108
118
|
'text-primary': string;
|
package/theme/index.js
CHANGED
|
@@ -4,7 +4,9 @@ import tinycolor from 'tinycolor2';
|
|
|
4
4
|
export * from './.type/index.js';
|
|
5
5
|
export const defaultTheme = {
|
|
6
6
|
logo: undefined,
|
|
7
|
-
|
|
7
|
+
bodyFontFamily: 'Nunito',
|
|
8
|
+
bodyFontFamilyCss: "@font-face{font-family:Nunito;font-style:italic;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXX3I6Li01BKofIMNaORs71cA-Bm_i0Dk1.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Nunito;font-style:italic;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXX3I6Li01BKofIMNaHRs71cA-Cznx39fA.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Nunito;font-style:italic;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXX3I6Li01BKofIMNaMRs71cA-CuWrHpFO.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Nunito;font-style:italic;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXX3I6Li01BKofIMNaNRs71cA-D1eeM49Z.woff2) format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Nunito;font-style:italic;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXX3I6Li01BKofIMNaDRs4-BbMn9XSX.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Nunito;font-style:normal;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXV3I6Li01BKofIOOaBXso-BWI5zH9R.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Nunito;font-style:normal;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXV3I6Li01BKofIMeaBXso-C3IBG1kp.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Nunito;font-style:normal;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXV3I6Li01BKofIOuaBXso-B55YuedR.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Nunito;font-style:normal;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXV3I6Li01BKofIO-aBXso-DcJfvmGA.woff2) format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Nunito;font-style:normal;font-weight:200 1000;font-display:swap;src:url({SITE_PATH}/simple-directory/fonts/XRXV3I6Li01BKofINeaB-BaTF6Vo7.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}",
|
|
9
|
+
headingFontFamily: undefined,
|
|
8
10
|
headingFontFamilyCss: undefined,
|
|
9
11
|
colors: {
|
|
10
12
|
// standard vuetify colors, see https://vuetifyjs.com/en/styles/colors/#material-colors
|
|
@@ -12,6 +14,8 @@ export const defaultTheme = {
|
|
|
12
14
|
'on-background': '#424242', // grey-darken-3
|
|
13
15
|
surface: '#FFFFFF',
|
|
14
16
|
'on-surface': '#424242', // grey-darken-3
|
|
17
|
+
'surface-inverse': '#424242', // grey-darken-3
|
|
18
|
+
'on-surface-inverse': '#FFFFFF',
|
|
15
19
|
primary: '#1976D2', // blue-darken-2
|
|
16
20
|
'on-primary': '#FFFFFF',
|
|
17
21
|
'text-primary': '#1565C0',
|
|
@@ -41,8 +45,10 @@ export const defaultTheme = {
|
|
|
41
45
|
darkColors: {
|
|
42
46
|
background: '#121212',
|
|
43
47
|
'on-background': '#FFFFFF', // white
|
|
44
|
-
surface: '#212121',
|
|
48
|
+
surface: '#212121', // grey-darken-4
|
|
45
49
|
'on-surface': '#FFFFFF', // white
|
|
50
|
+
'surface-inverse': '#FAFAFA', // grey-lighten-5
|
|
51
|
+
'on-surface-inverse': '#424242', // grey-darken-3
|
|
46
52
|
primary: '#1976D2', // blue-darken-2
|
|
47
53
|
'on-primary': '#FFFFFF', // white
|
|
48
54
|
'text-primary': '#2196F3', // blue
|
|
@@ -75,6 +81,8 @@ export const defaultTheme = {
|
|
|
75
81
|
'on-background': '#000000',
|
|
76
82
|
surface: '#FFFFFF',
|
|
77
83
|
'on-surface': '#000000',
|
|
84
|
+
'surface-inverse': '#212121', // grey-darken-4
|
|
85
|
+
'on-surface-inverse': '#FFFFFF',
|
|
78
86
|
primary: '#0D47A1', // blue-darken-4
|
|
79
87
|
'on-primary': '#FFFFFF',
|
|
80
88
|
'text-primary': undefined,
|
|
@@ -106,6 +114,8 @@ export const defaultTheme = {
|
|
|
106
114
|
'on-background': '#FFFFFF', // white
|
|
107
115
|
surface: '#121212',
|
|
108
116
|
'on-surface': '#FFFFFF', // white
|
|
117
|
+
'surface-inverse': '#FFFFFF', // white
|
|
118
|
+
'on-surface-inverse': '#000000',
|
|
109
119
|
primary: '#0D47A1', // blue-darken-4
|
|
110
120
|
'on-primary': '#FFFFFF', // white
|
|
111
121
|
'text-primary': '#42A5F5', // blue-lighten-1
|
|
@@ -255,6 +265,7 @@ const messages = {
|
|
|
255
265
|
text: 'de texte',
|
|
256
266
|
background: 'd\'arrière plan',
|
|
257
267
|
surface: 'de surface',
|
|
268
|
+
'surface-inverse': 'de surface avec contraste inversé',
|
|
258
269
|
primary: 'primaire',
|
|
259
270
|
'text-primary': 'texte primaire',
|
|
260
271
|
secondary: 'secondaire',
|
|
@@ -283,6 +294,7 @@ const messages = {
|
|
|
283
294
|
text: 'text',
|
|
284
295
|
background: 'background',
|
|
285
296
|
surface: 'surface',
|
|
297
|
+
'surface-inverse': 'surface with inverted contrast',
|
|
286
298
|
primary: 'primary',
|
|
287
299
|
'text-primary': 'primary text',
|
|
288
300
|
secondary: 'secondary',
|
|
@@ -320,7 +332,7 @@ export function getColorsWarnings(locale, colors, themeName, readableOptions) {
|
|
|
320
332
|
warnings.push(readableWarning(readableOptions, locale, textColor, `text-${color}`, colors.background, 'background', themeName));
|
|
321
333
|
warnings.push(readableWarning(readableOptions, locale, textColor, `text-${color}`, colors.surface, 'surface', themeName));
|
|
322
334
|
}
|
|
323
|
-
for (const color of ['background', 'surface', 'primary', 'secondary', 'accent', 'info', 'success', 'error', 'warning', 'admin']) {
|
|
335
|
+
for (const color of ['background', 'surface', 'surface-inverse', 'primary', 'secondary', 'accent', 'info', 'success', 'error', 'warning', 'admin']) {
|
|
324
336
|
warnings.push(readableWarning(readableOptions, locale, colors[`on-${color}`], 'text', colors[color], color, themeName));
|
|
325
337
|
}
|
|
326
338
|
return warnings.filter(w => w !== undefined);
|
package/theme/schema.d.ts
CHANGED
|
@@ -107,6 +107,27 @@ declare const _default: {
|
|
|
107
107
|
};
|
|
108
108
|
type: string;
|
|
109
109
|
};
|
|
110
|
+
bodyFontFamily: {
|
|
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
|
+
};
|
|
120
|
+
description: string;
|
|
121
|
+
'x-i18n-description': {
|
|
122
|
+
fr: string;
|
|
123
|
+
en: string;
|
|
124
|
+
es: string;
|
|
125
|
+
it: string;
|
|
126
|
+
pt: string;
|
|
127
|
+
de: string;
|
|
128
|
+
};
|
|
129
|
+
type: string;
|
|
130
|
+
};
|
|
110
131
|
bodyFontFamilyCss: {
|
|
111
132
|
title: string;
|
|
112
133
|
'x-i18n-title': {
|
|
@@ -132,7 +153,7 @@ declare const _default: {
|
|
|
132
153
|
};
|
|
133
154
|
type: string;
|
|
134
155
|
};
|
|
135
|
-
|
|
156
|
+
headingFontFamily: {
|
|
136
157
|
title: string;
|
|
137
158
|
'x-i18n-title': {
|
|
138
159
|
fr: string;
|
|
@@ -142,10 +163,6 @@ declare const _default: {
|
|
|
142
163
|
pt: string;
|
|
143
164
|
de: string;
|
|
144
165
|
};
|
|
145
|
-
layout: {
|
|
146
|
-
comp: string;
|
|
147
|
-
rows: number;
|
|
148
|
-
};
|
|
149
166
|
description: string;
|
|
150
167
|
'x-i18n-description': {
|
|
151
168
|
fr: string;
|
|
@@ -157,6 +174,22 @@ declare const _default: {
|
|
|
157
174
|
};
|
|
158
175
|
type: string;
|
|
159
176
|
};
|
|
177
|
+
headingFontFamilyCss: {
|
|
178
|
+
title: string;
|
|
179
|
+
'x-i18n-title': {
|
|
180
|
+
fr: string;
|
|
181
|
+
en: string;
|
|
182
|
+
es: string;
|
|
183
|
+
it: string;
|
|
184
|
+
pt: string;
|
|
185
|
+
de: string;
|
|
186
|
+
};
|
|
187
|
+
layout: {
|
|
188
|
+
comp: string;
|
|
189
|
+
rows: number;
|
|
190
|
+
};
|
|
191
|
+
type: string;
|
|
192
|
+
};
|
|
160
193
|
assistedMode: {
|
|
161
194
|
type: string;
|
|
162
195
|
title: string;
|
|
@@ -372,6 +405,44 @@ declare const _default: {
|
|
|
372
405
|
};
|
|
373
406
|
};
|
|
374
407
|
};
|
|
408
|
+
'surface-inverse': {
|
|
409
|
+
type: string;
|
|
410
|
+
title: string;
|
|
411
|
+
'x-i18n-title': {
|
|
412
|
+
fr: string;
|
|
413
|
+
en: string;
|
|
414
|
+
es: string;
|
|
415
|
+
it: string;
|
|
416
|
+
pt: string;
|
|
417
|
+
de: string;
|
|
418
|
+
};
|
|
419
|
+
layout: {
|
|
420
|
+
comp: string;
|
|
421
|
+
cols: {
|
|
422
|
+
sm: number;
|
|
423
|
+
lg: number;
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
'on-surface-inverse': {
|
|
428
|
+
type: string;
|
|
429
|
+
title: string;
|
|
430
|
+
'x-i18n-title': {
|
|
431
|
+
fr: string;
|
|
432
|
+
en: string;
|
|
433
|
+
es: string;
|
|
434
|
+
it: string;
|
|
435
|
+
pt: string;
|
|
436
|
+
de: string;
|
|
437
|
+
};
|
|
438
|
+
layout: {
|
|
439
|
+
comp: string;
|
|
440
|
+
cols: {
|
|
441
|
+
sm: number;
|
|
442
|
+
lg: number;
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
};
|
|
375
446
|
primary: {
|
|
376
447
|
type: string;
|
|
377
448
|
title: string;
|
package/theme/schema.js
CHANGED
|
@@ -156,6 +156,27 @@ export default {
|
|
|
156
156
|
},
|
|
157
157
|
type: 'string'
|
|
158
158
|
},
|
|
159
|
+
bodyFontFamily: {
|
|
160
|
+
title: 'Nom de police de caractères pour le corps du texte',
|
|
161
|
+
'x-i18n-title': {
|
|
162
|
+
fr: 'Nom de police de caractères pour le corps du texte',
|
|
163
|
+
en: 'Font name for body text',
|
|
164
|
+
es: 'Nombre de fuente para el texto del cuerpo',
|
|
165
|
+
it: 'Nome del carattere per il testo del corpo',
|
|
166
|
+
pt: 'Nome da fonte para o texto do corpo',
|
|
167
|
+
de: 'Schriftartname für den Fließtext'
|
|
168
|
+
},
|
|
169
|
+
description: 'Par défaut une police Nunito auto-hébergée est utilisée',
|
|
170
|
+
'x-i18n-description': {
|
|
171
|
+
fr: 'Par défaut une police Nunito auto-hébergée est utilisée',
|
|
172
|
+
en: 'By default, a self-hosted Nunito font is used',
|
|
173
|
+
es: 'Por defecto se utiliza una fuente Nunito autoalojada',
|
|
174
|
+
it: 'Per impostazione predefinita viene utilizzata una fonte Nunito auto-ospitata',
|
|
175
|
+
pt: 'Por padrão, é usada uma fonte Nunito auto-hospedada',
|
|
176
|
+
de: 'Standardmäßig wird eine selbst gehostete Nunito-Schriftart verwendet'
|
|
177
|
+
},
|
|
178
|
+
type: 'string'
|
|
179
|
+
},
|
|
159
180
|
bodyFontFamilyCss: {
|
|
160
181
|
title: 'CSS police de caractères pour le corps du texte',
|
|
161
182
|
'x-i18n-title': {
|
|
@@ -170,14 +191,35 @@ export default {
|
|
|
170
191
|
comp: 'textarea',
|
|
171
192
|
rows: 3
|
|
172
193
|
},
|
|
173
|
-
description:
|
|
194
|
+
description: 'Vous pouvez copier le CSS proposé par une plateforme comme Google Fonts.',
|
|
195
|
+
'x-i18n-description': {
|
|
196
|
+
fr: 'Vous pouvez copier le CSS proposé par une plateforme comme Google Fonts.',
|
|
197
|
+
en: 'You can copy the CSS proposed by a platform like Google Fonts.',
|
|
198
|
+
es: 'Puede copiar el CSS propuesto por una plataforma como Google Fonts.',
|
|
199
|
+
it: 'Puoi copiare il CSS proposto da una piattaforma come Google Fonts.',
|
|
200
|
+
pt: 'Você pode copiar o CSS proposto por uma plataforma como Google Fonts.',
|
|
201
|
+
de: 'Sie können das von einer Plattform wie Google Fonts vorgeschlagene CSS kopieren.'
|
|
202
|
+
},
|
|
203
|
+
type: 'string'
|
|
204
|
+
},
|
|
205
|
+
headingFontFamily: {
|
|
206
|
+
title: 'Nom de police de caractères pour les titres',
|
|
207
|
+
'x-i18n-title': {
|
|
208
|
+
fr: 'Nom de police de caractères pour les titres',
|
|
209
|
+
en: 'Font name for headings',
|
|
210
|
+
es: 'Nombre de fuente para los títulos',
|
|
211
|
+
it: 'Nome del carattere per le intestazioni',
|
|
212
|
+
pt: 'Nome da fonte para títulos',
|
|
213
|
+
de: 'Schriftartname für Überschriften'
|
|
214
|
+
},
|
|
215
|
+
description: 'Renseignez de la même manière que pour le corps de texte, ou laissez vide pour utiliser la police du corps du texte',
|
|
174
216
|
'x-i18n-description': {
|
|
175
|
-
fr:
|
|
176
|
-
en:
|
|
177
|
-
es:
|
|
178
|
-
it:
|
|
179
|
-
pt:
|
|
180
|
-
de:
|
|
217
|
+
fr: 'Renseignez de la même manière que pour le corps de texte, ou laissez vide pour utiliser la police du corps du texte',
|
|
218
|
+
en: 'Fill in the same way as for the body text, or leave blank to use the body text font',
|
|
219
|
+
es: 'Complete de la misma manera que para el texto del cuerpo, o deje en blanco para usar la fuente del texto del cuerpo',
|
|
220
|
+
it: 'Compilare nello stesso modo del testo del corpo, o lasciare vuoto per utilizzare il carattere del testo del corpo',
|
|
221
|
+
pt: 'Preencha da mesma forma que para o texto do corpo, ou deixe em branco para usar a fonte do texto do corpo',
|
|
222
|
+
de: 'Füllen Sie wie beim Fließtext aus, oder lassen Sie das Feld leer, um die Schriftart des Fließtexts zu verwenden'
|
|
181
223
|
},
|
|
182
224
|
type: 'string'
|
|
183
225
|
},
|
|
@@ -195,15 +237,6 @@ export default {
|
|
|
195
237
|
comp: 'textarea',
|
|
196
238
|
rows: 3
|
|
197
239
|
},
|
|
198
|
-
description: 'Renseignez de la même manière que pour le corps de texte, ou laissez vide pour utiliser la police du corps du texte',
|
|
199
|
-
'x-i18n-description': {
|
|
200
|
-
fr: 'Renseignez de la même manière que pour le corps de texte, ou laissez vide pour utiliser la police du corps du texte',
|
|
201
|
-
en: 'Fill in the same way as for the body text, or leave blank to use the body text font',
|
|
202
|
-
es: 'Complete de la misma manera que para el texto del cuerpo, o deje en blanco para usar la fuente del texto del cuerpo',
|
|
203
|
-
it: 'Compilare nello stesso modo del testo del corpo, o lasciare vuoto per utilizzare il carattere del testo del corpo',
|
|
204
|
-
pt: 'Preencha da mesma forma que para o texto do corpo, ou deixe em branco para usar a fonte do texto do corpo',
|
|
205
|
-
de: 'Füllen Sie wie beim Fließtext aus, oder lassen Sie das Feld leer, um die Schriftart des Fließtexts zu verwenden'
|
|
206
|
-
},
|
|
207
240
|
type: 'string'
|
|
208
241
|
},
|
|
209
242
|
assistedMode: {
|
|
@@ -413,6 +446,38 @@ export default {
|
|
|
413
446
|
cols: { sm: 6, lg: 3 }
|
|
414
447
|
}
|
|
415
448
|
},
|
|
449
|
+
'surface-inverse': {
|
|
450
|
+
type: 'string',
|
|
451
|
+
title: 'Couleur des surfaces avec contraste inversé',
|
|
452
|
+
'x-i18n-title': {
|
|
453
|
+
fr: 'Couleur des surfaces avec contraste inversé',
|
|
454
|
+
en: 'Surface color with inverted contrast',
|
|
455
|
+
es: 'Color de las superficies con contraste invertido',
|
|
456
|
+
it: 'Colore delle superfici con contrasto invertito',
|
|
457
|
+
pt: 'Cor das superfícies com contraste invertido',
|
|
458
|
+
de: 'Oberflächenfarbe mit invertiertem Kontrast'
|
|
459
|
+
},
|
|
460
|
+
layout: {
|
|
461
|
+
comp: 'color-picker',
|
|
462
|
+
cols: { sm: 6, lg: 3 }
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
'on-surface-inverse': {
|
|
466
|
+
type: 'string',
|
|
467
|
+
title: 'Couleur de texte sur couleur des surfaces avec contraste inversé',
|
|
468
|
+
'x-i18n-title': {
|
|
469
|
+
fr: 'Couleur de texte sur couleur des surfaces avec contraste inversé',
|
|
470
|
+
en: 'Text color on surface color with inverted contrast',
|
|
471
|
+
es: 'Color de texto sobre color de superficie con contraste invertido',
|
|
472
|
+
it: 'Colore del testo sul colore della superficie con contrasto invertito',
|
|
473
|
+
pt: 'Cor do texto na cor da superfície com contraste invertido',
|
|
474
|
+
de: 'Textfarbe auf Oberflächenfarbe mit invertiertem Kontrast'
|
|
475
|
+
},
|
|
476
|
+
layout: {
|
|
477
|
+
comp: 'color-picker',
|
|
478
|
+
cols: { sm: 6, lg: 3 }
|
|
479
|
+
}
|
|
480
|
+
},
|
|
416
481
|
primary: {
|
|
417
482
|
type: 'string',
|
|
418
483
|
title: 'Couleur principale',
|