@topconsultnpm/sdkui-react-beta 6.16.4 → 6.16.5

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.
@@ -2506,6 +2506,16 @@ export class SDKUI_Localizator {
2506
2506
  default: return "Caricamento";
2507
2507
  }
2508
2508
  }
2509
+ static get Localization() {
2510
+ switch (this._cultureID) {
2511
+ case CultureIDs.De_DE: return "Lokalisierung";
2512
+ case CultureIDs.En_US: return "Localization";
2513
+ case CultureIDs.Es_ES: return "Localización";
2514
+ case CultureIDs.Fr_FR: return "Localisation";
2515
+ case CultureIDs.Pt_PT: return "Localização";
2516
+ default: return "Localizzazione";
2517
+ }
2518
+ }
2509
2519
  static get LoadingWorkGroups() {
2510
2520
  switch (this._cultureID) {
2511
2521
  case CultureIDs.De_DE: return "Laden von Arbeitsgruppen";
@@ -5275,6 +5285,26 @@ export class SDKUI_Localizator {
5275
5285
  default: return "Diagramma non presente o non valido";
5276
5286
  }
5277
5287
  }
5288
+ static get WorkflowEndInstance() {
5289
+ switch (this._cultureID) {
5290
+ case CultureIDs.De_DE: return "Instanz beenden";
5291
+ case CultureIDs.En_US: return "End instance";
5292
+ case CultureIDs.Es_ES: return "Finalizar instancia";
5293
+ case CultureIDs.Fr_FR: return "Termine l'instance";
5294
+ case CultureIDs.Pt_PT: return "Pare a instância";
5295
+ default: return "Termina istanza";
5296
+ }
5297
+ }
5298
+ static get WorkflowHistWI() {
5299
+ switch (this._cultureID) {
5300
+ case CultureIDs.De_DE: return "Workitems historisieren";
5301
+ case CultureIDs.En_US: return "Historicize workitems";
5302
+ case CultureIDs.Es_ES: return "Incluir en historial los workitem";
5303
+ case CultureIDs.Fr_FR: return "Historiser le workitems";
5304
+ case CultureIDs.Pt_PT: return "Historicize workItem";
5305
+ default: return "Storicizza i workitem";
5306
+ }
5307
+ }
5278
5308
  static get WorkflowNoInstances() {
5279
5309
  switch (this._cultureID) {
5280
5310
  case CultureIDs.De_DE: return "Keine Instanzen aktiv";
@@ -5285,6 +5315,26 @@ export class SDKUI_Localizator {
5285
5315
  default: return "Nessuna istanza in corso";
5286
5316
  }
5287
5317
  }
5318
+ static get WorkflowStartAfterArchive() {
5319
+ switch (this._cultureID) {
5320
+ case CultureIDs.De_DE: return "Starten Sie die Instanz beim Archivieren des Dokuments";
5321
+ case CultureIDs.En_US: return "Start the instance when you archive the document";
5322
+ case CultureIDs.Es_ES: return "Iniciar la instancia cuando se almacena el documento";
5323
+ case CultureIDs.Fr_FR: return "Démarrer l'instance lorsque vous archivez le document";
5324
+ case CultureIDs.Pt_PT: return "Inicie a instância quando você fizer check in no documento";
5325
+ default: return "Avviare l'istanza quando si archivia il documento";
5326
+ }
5327
+ }
5328
+ static get WorkflowStartAfterUpdate() {
5329
+ switch (this._cultureID) {
5330
+ case CultureIDs.De_DE: return "Starten Sie die Instanz beim Bearbeiten der folgenden Methadaten";
5331
+ case CultureIDs.En_US: return "Start the instance when updating the following metadata";
5332
+ case CultureIDs.Es_ES: return "Iniciar la instancia cuando se modifican los siguientes metadatos";
5333
+ case CultureIDs.Fr_FR: return "Démarrer l'instance lors de l'édition des métadonnées suivantes";
5334
+ case CultureIDs.Pt_PT: return "Inicie a instância ao editar os seguintes metadados";
5335
+ default: return "Avviare l'istanza quando si modificano i seguenti metadati";
5336
+ }
5337
+ }
5288
5338
  static get WorkGroup() {
5289
5339
  switch (this._cultureID) {
5290
5340
  case CultureIDs.De_DE: return "Arbeitsgruppe";
@@ -21,8 +21,16 @@ Colors.toolbar_color = '#F0F4FA';
21
21
  Colors.black = '#000000';
22
22
  Colors.white = '#ffffff';
23
23
  class TMColors {
24
- static get primaryColor() { return this._primaryColor; }
25
- static set primaryColor(thePrimaryColor) { this._primaryColor = thePrimaryColor; }
24
+ static get primaryColor() {
25
+ return this._primaryColor;
26
+ }
27
+ static set primaryColor(thePrimaryColor) {
28
+ this._primaryColor = thePrimaryColor;
29
+ // Verifica se il codice sta girando in un ambiente browser e aggiorno la variabile CSS
30
+ if (typeof document !== 'undefined' && this._primaryColor) {
31
+ document.documentElement.style.setProperty('--primary-color', this._primaryColor);
32
+ }
33
+ }
26
34
  static get backgroundColorHeader() { return this._backgroundColorHeader; }
27
35
  static set backgroundColorHeader(theBackgroundColorHeader) { this._backgroundColorHeader = theBackgroundColorHeader; }
28
36
  static get colorHeader() { return this._colorHeader; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react-beta",
3
- "version": "6.16.4",
3
+ "version": "6.16.5",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",