@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.
- package/lib/assets/Designer-bianco.svg +20 -20
- package/lib/assets/Designer-blu.svg +20 -20
- package/lib/assets/Orchestrator-bianco.svg +71 -71
- package/lib/assets/Orchestrator-blu.svg +24 -24
- package/lib/assets/Surfer-bianco.svg +18 -18
- package/lib/assets/Surfer-blu.svg +18 -18
- package/lib/assets/icomoon.svg +96 -96
- package/lib/assets/italy.svg +16 -16
- package/lib/assets/six.svg +3 -48
- package/lib/assets/topmedia-six.svg +65 -65
- package/lib/assets/topmeida-six-bianco.svg +65 -65
- package/lib/components/base/TMPanelManagerMatrix.d.ts +9 -0
- package/lib/components/base/TMPanelManagerMatrix.js +237 -0
- package/lib/components/base/TMPanelManagerMatrixUtils.d.ts +69 -0
- package/lib/components/base/TMPanelManagerMatrixUtils.js +155 -0
- package/lib/components/features/search/TMSavedQuerySelector.js +53 -29
- package/lib/components/features/search/TMTreeSelector.js +2 -1
- package/lib/components/grids/TMRecentsManager.js +10 -2
- package/lib/components/index.d.ts +2 -0
- package/lib/components/index.js +2 -0
- package/lib/components/viewers/TMTidViewer.js +2 -1
- package/lib/helper/SDKUI_Localizator.d.ts +1 -0
- package/lib/helper/SDKUI_Localizator.js +10 -0
- package/package.json +1 -1
- package/lib/assets/six2.svg +0 -4
@@ -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';
|
package/lib/components/index.js
CHANGED
@@ -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";
|