@topconsultnpm/sdkui-react-beta 6.13.12 → 6.13.14

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.
@@ -14,6 +14,8 @@ export * from './base/TMToolbarCard';
14
14
  export * from './base/TMRightSidebar';
15
15
  export * from './base/TMTreeView';
16
16
  export * from './base/TMPanel';
17
+ export { default as TMPanelManagerMatrix } from './base/TMPanelManagerMatrix';
18
+ export * from './base/TMPanelManagerMatrixUtils';
17
19
  export { default as CounterBar } from './base/TMCounterBar';
18
20
  export { default as TMProgressBar } from './base/TMProgressBar';
19
21
  export { default as TMSpinner } from './base/TMSpinner';
@@ -15,6 +15,8 @@ export * from './base/TMToolbarCard';
15
15
  export * from './base/TMRightSidebar';
16
16
  export * from './base/TMTreeView';
17
17
  export * from './base/TMPanel';
18
+ export { default as TMPanelManagerMatrix } from './base/TMPanelManagerMatrix';
19
+ export * from './base/TMPanelManagerMatrixUtils';
18
20
  export { default as CounterBar } from './base/TMCounterBar';
19
21
  export { default as TMProgressBar } from './base/TMProgressBar';
20
22
  export { default as TMSpinner } from './base/TMSpinner';
@@ -297,7 +297,8 @@ const TMTidViewer = ({ tmSession, tid, showIcon = false, color, showId = false,
297
297
  color: color ?? (dtd?.isView ? 'red' : ''),
298
298
  whiteSpace: 'nowrap',
299
299
  overflow: 'hidden',
300
- textOverflow: 'ellipsis'
300
+ textOverflow: 'ellipsis',
301
+ paddingRight: '10px'
301
302
  }, children: displayName() }), showId && _jsx("p", { style: { padding: '0px 3px' }, children: `(TID: ${tid})` })] }));
302
303
  };
303
304
  export default TMTidViewer;
@@ -242,6 +242,7 @@ export declare class SDKUI_Localizator {
242
242
  static get NoDcmtFound(): "Kein Dokument gefunden" | "No documents found" | "Ningún documento encontrado" | "Pas de documents trouvés" | "Nenhum documento encontrado" | "Nessun documento trovato";
243
243
  static get NoMessages(): string;
244
244
  static get NoMessagesFound(): string;
245
+ static get NoPanelSelected(): string;
245
246
  static get NoResultsFound(): string;
246
247
  static get NoneSelection(): "Keine Auswahl" | "No selection" | "Ninguna selección" | "Pas de sélections" | "Nenhuma seleção" | "Nessuna selezione";
247
248
  static get OfSystem(): "Des Systems" | "Of system" | "Del sistema" | "Du système" | "Do sistema" | "Di sistema";
@@ -2371,6 +2371,16 @@ export class SDKUI_Localizator {
2371
2371
  default: return "Nessun messaggio trovato";
2372
2372
  }
2373
2373
  }
2374
+ static get NoPanelSelected() {
2375
+ switch (this._cultureID) {
2376
+ case CultureIDs.De_DE: return "Kein Panel ausgewählt";
2377
+ case CultureIDs.En_US: return "No panel selected";
2378
+ case CultureIDs.Es_ES: return "Ningún panel seleccionado";
2379
+ case CultureIDs.Fr_FR: return "Aucun panneau sélectionné";
2380
+ case CultureIDs.Pt_PT: return "Nenhum painel selecionado";
2381
+ default: return "Nessun pannello selezionato";
2382
+ }
2383
+ }
2374
2384
  static get NoResultsFound() {
2375
2385
  switch (this._cultureID) {
2376
2386
  case CultureIDs.De_DE: return "Kein Ergebnis gefunden";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react-beta",
3
- "version": "6.13.12",
3
+ "version": "6.13.14",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",