@alfresco/adf-core 8.4.0-19336680353 → 8.4.0-19363152864

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.
@@ -1535,9 +1535,6 @@
1535
1535
  "type": "string",
1536
1536
  "description": "The client's id as registered with the auth server"
1537
1537
  },
1538
- "secret": {
1539
- "type": "string"
1540
- },
1541
1538
  "redirectUri": {
1542
1539
  "type": "string",
1543
1540
  "description": "The client's redirectUri as registered with the auth server"
@@ -78,6 +78,7 @@
78
78
  "FORM_RENDERER": {
79
79
  "NAMELESS_TASK": "Namenlose Aufgabe",
80
80
  "ROW_LABEL": "Seite {{ number }}",
81
+ "DELETE_ROW": "Zeile löschen",
81
82
  "REMOVE_ROW_DIALOG": {
82
83
  "TITLE": "Zeile löschen",
83
84
  "MESSAGE": "Sind Sie sicher, dass Sie diese Zeile löschen möchten?",
@@ -78,6 +78,7 @@
78
78
  "FORM_RENDERER": {
79
79
  "NAMELESS_TASK": "Tarea sin nombre",
80
80
  "ROW_LABEL": "Fila {{ number }}",
81
+ "DELETE_ROW": "Delete row",
81
82
  "REMOVE_ROW_DIALOG": {
82
83
  "TITLE": "Eliminar la fila",
83
84
  "MESSAGE": "¿Está seguro de que desea eliminar esta fila?",
@@ -78,6 +78,7 @@
78
78
  "FORM_RENDERER": {
79
79
  "NAMELESS_TASK": "Tâche sans nom",
80
80
  "ROW_LABEL": "Ligne {{ number }}",
81
+ "DELETE_ROW": "Delete row",
81
82
  "REMOVE_ROW_DIALOG": {
82
83
  "TITLE": "Supprimer la ligne",
83
84
  "MESSAGE": "Voulez-vous vraiment supprimer cette ligne ?",
@@ -78,6 +78,7 @@
78
78
  "FORM_RENDERER": {
79
79
  "NAMELESS_TASK": "Compito senza nome",
80
80
  "ROW_LABEL": "Riga {{ number }}",
81
+ "DELETE_ROW": "Delete row",
81
82
  "REMOVE_ROW_DIALOG": {
82
83
  "TITLE": "Elimina la riga",
83
84
  "MESSAGE": "Sei sicuro di voler eliminare questa riga?",
@@ -78,6 +78,7 @@
78
78
  "FORM_RENDERER": {
79
79
  "NAMELESS_TASK": "Zadanie bez nazwy",
80
80
  "ROW_LABEL": "Wiersz {{ number }}",
81
+ "DELETE_ROW": "Usuń wiersz",
81
82
  "REMOVE_ROW_DIALOG": {
82
83
  "TITLE": "Usuń wiersz",
83
84
  "MESSAGE": "Czy na pewno chcesz usunąć ten wiersz?",
@@ -427,7 +428,7 @@
427
428
  "COLUMNS": "Kolumny",
428
429
  "SEARCH": "Szukaj",
429
430
  "APPLY": "Zastosuj",
430
- "COLUMNS_VISIBILITY": "Select columns to display"
431
+ "COLUMNS_VISIBILITY": "Wybierz kolumny do wyświetlenia"
431
432
  }
432
433
  },
433
434
  "USER_PROFILE": {
@@ -78,6 +78,7 @@
78
78
  "FORM_RENDERER": {
79
79
  "NAMELESS_TASK": "Tarefa sem nome",
80
80
  "ROW_LABEL": "Linha {{ number }}",
81
+ "DELETE_ROW": "Delete row",
81
82
  "REMOVE_ROW_DIALOG": {
82
83
  "TITLE": "Excluir linha",
83
84
  "MESSAGE": "Tem certeza que deseja excluir esta linha?",
@@ -7588,7 +7588,7 @@ class AuthConfigService {
7588
7588
  postLogoutRedirectUri: this.generatePostLogoutUri(origin, oauth2.redirectUriLogout),
7589
7589
  clientId: oauth2.clientId,
7590
7590
  scope: oauth2.scope,
7591
- dummyClientSecret: oauth2.secret || '',
7591
+ dummyClientSecret: 'dummyClientSecret',
7592
7592
  logoutUrl: oauth2.logoutUrl,
7593
7593
  customQueryParams,
7594
7594
  ...(oauth2.codeFlow && { responseType: 'code' }),