@topconsultnpm/sdkui-react 6.19.0-dev1.17 → 6.19.0-dev1.19
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.
|
@@ -44,9 +44,15 @@ const TMBlogCommentForm = (props) => {
|
|
|
44
44
|
vil.push(new ValidationItem(ResultTypes.ERROR, SDKUI_Localizator.Comment, `${SDK_Localizator.RequiredField}`));
|
|
45
45
|
}
|
|
46
46
|
else {
|
|
47
|
-
//
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
// Imposta la lunghezza massima consentita per il commento
|
|
48
|
+
const maxLength = 1000;
|
|
49
|
+
// Calcola la lunghezza effettiva del commento inserito
|
|
50
|
+
const commentLength = comment.length;
|
|
51
|
+
// Calcola di quanto la lunghezza del commento supera il limite massimo
|
|
52
|
+
const exceededLength = commentLength - maxLength;
|
|
53
|
+
// Validate description length (max 1000)
|
|
54
|
+
if (commentLength > maxLength) {
|
|
55
|
+
vil.push(new ValidationItem(ResultTypes.ERROR, SDKUI_Localizator.Comment, `${SDKUI_Localizator.DescriptionLengthExceededMessage.replaceParams(commentLength, maxLength, exceededLength)}`));
|
|
50
56
|
}
|
|
51
57
|
// Detect dangerous HTML tags
|
|
52
58
|
const tagRegex = /<\/?(script|iframe|embed|object|link|style|img|video|audio|svg|form|input|button|textarea|select|pre|function)[^>]*>/gi;
|
|
@@ -307,6 +307,8 @@ export const cellRenderTID = (data, noneSelectionText) => {
|
|
|
307
307
|
};
|
|
308
308
|
export const renderDTDTooltipContent = (dtd) => {
|
|
309
309
|
const mapAccessLevelToLocalizedString = (level) => {
|
|
310
|
+
if (level === undefined || level === null)
|
|
311
|
+
return SDKUI_Localizator.No;
|
|
310
312
|
switch (level) {
|
|
311
313
|
case AccessLevelsEx.Yes || AccessLevels.Yes:
|
|
312
314
|
return SDKUI_Localizator.Yes;
|
|
@@ -319,7 +321,7 @@ export const renderDTDTooltipContent = (dtd) => {
|
|
|
319
321
|
case AccessLevelsEx.None || AccessLevels.None:
|
|
320
322
|
return SDK_Localizator.None;
|
|
321
323
|
default:
|
|
322
|
-
return
|
|
324
|
+
return level.toString();
|
|
323
325
|
}
|
|
324
326
|
};
|
|
325
327
|
return (!dtd ? null
|
|
@@ -132,6 +132,7 @@ export declare class SDKUI_Localizator {
|
|
|
132
132
|
static get DeletionOperationInterrupted(): "Löschvorgang abgebrochen" | "Deletion operation interrupted" | "Operación de eliminación interrumpida" | "Opération de suppression interrompue" | "Operação de exclusão interrompida" | "Operazione di eliminazione interrotta";
|
|
133
133
|
static get Deny(): "Ablehnen" | "Deny" | "Denegar" | "Refuser" | "Negar" | "Negato";
|
|
134
134
|
static get Description(): "Beschreibung" | "Description" | "Descripción" | "Descrição" | "Descrizione";
|
|
135
|
+
static get DescriptionLengthExceededMessage(): "Die Beschreibung ist zu lang: {{0}}/{{1}} Zeichen ({{2}} zu viel)" | "Description is too long: {{0}}/{{1}} characters ({{2}} too many)" | "La descripción es demasiado larga: {{0}}/{{1}} caracteres ({{2}} de más)" | "La description est trop longue : {{0}}/{{1}} caractères ({{2}} en trop)" | "A descrição é demasiado longa: {{0}}/{{1}} caracteres ({{2}} a mais)" | "La descrizione è troppo lunga: {{0}}/{{1}} caratteri ({{2}} in più)";
|
|
135
136
|
static get DescriptionTooLongMessage(): "Die Beschreibung ist zu lang: Maximal {{0}' Zeichen" | "Description is too long: Max {{0}} characters" | "La descripción es demasiado larga: Máximo {{0}} caracteres" | "La description est trop longue : Maximum {{0}} caractères" | "A descrição é demasiado longa: Máximo {{0}} caracteres" | "La descrizione è troppo lunga: Massimo {{0}} caratteri";
|
|
136
137
|
static get Design(): "Design" | "Diseño" | "Conception" | "Projeto" | "Progettazione";
|
|
137
138
|
static get Destination(): "Bestimmung" | "Destination" | "Destino" | "Destinazione";
|
|
@@ -1275,6 +1275,22 @@ export class SDKUI_Localizator {
|
|
|
1275
1275
|
default: return "Descrizione";
|
|
1276
1276
|
}
|
|
1277
1277
|
}
|
|
1278
|
+
static get DescriptionLengthExceededMessage() {
|
|
1279
|
+
switch (this._cultureID) {
|
|
1280
|
+
case CultureIDs.De_DE:
|
|
1281
|
+
return "Die Beschreibung ist zu lang: {{0}}/{{1}} Zeichen ({{2}} zu viel)";
|
|
1282
|
+
case CultureIDs.En_US:
|
|
1283
|
+
return "Description is too long: {{0}}/{{1}} characters ({{2}} too many)";
|
|
1284
|
+
case CultureIDs.Es_ES:
|
|
1285
|
+
return "La descripción es demasiado larga: {{0}}/{{1}} caracteres ({{2}} de más)";
|
|
1286
|
+
case CultureIDs.Fr_FR:
|
|
1287
|
+
return "La description est trop longue : {{0}}/{{1}} caractères ({{2}} en trop)";
|
|
1288
|
+
case CultureIDs.Pt_PT:
|
|
1289
|
+
return "A descrição é demasiado longa: {{0}}/{{1}} caracteres ({{2}} a mais)";
|
|
1290
|
+
default:
|
|
1291
|
+
return "La descrizione è troppo lunga: {{0}}/{{1}} caratteri ({{2}} in più)";
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1278
1294
|
static get DescriptionTooLongMessage() {
|
|
1279
1295
|
switch (this._cultureID) {
|
|
1280
1296
|
case CultureIDs.De_DE: return "Die Beschreibung ist zu lang: Maximal {{0}' Zeichen";
|