@topconsultnpm/sdkui-react-beta 6.9.62 → 6.9.64
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/icomoon.svg +96 -96
- package/lib/components/base/Styled.d.ts +23 -1920
- package/lib/components/base/TMAlert.d.ts +2 -3
- package/lib/components/base/TMContextMenuOLD.d.ts +3 -274
- package/lib/components/base/TMDropDownMenu.d.ts +0 -1
- package/lib/components/base/TMEditorBase.d.ts +0 -1
- package/lib/components/base/TMLayout.d.ts +32 -32
- package/lib/components/base/TMRightSidebar.d.ts +4 -4
- package/lib/components/base/TMTab.d.ts +4 -4
- package/lib/components/base/TMVilViewer.d.ts +1 -1
- package/lib/components/choosers/TMRelationChooser.d.ts +5 -5
- package/lib/components/choosers/TMUserChooser.d.ts +5 -5
- package/lib/components/editors/TMEditorStyled.d.ts +19 -20
- package/lib/components/forms/TMLoginForm.d.ts +5 -5
- package/lib/components/query/TMQueryEditor.d.ts +8 -550
- package/lib/components/query/TMQueryResult.d.ts +5 -5
- package/lib/components/query/TMQueryResultForm.d.ts +10 -10
- package/lib/components/sidebar/TMHeader.d.ts +2 -2
- package/lib/components/viewers/TMDataListItemViewer.d.ts +3 -3
- package/lib/components/viewers/TMMidViewer.d.ts +5 -5
- package/lib/components/viewers/TMTidViewer.d.ts +5 -5
- package/lib/helper/SDKUI_Localizator.d.ts +3 -0
- package/lib/helper/SDKUI_Localizator.js +30 -0
- package/lib/helper/helpers.d.ts +1 -1
- package/lib/hooks/useForm.d.ts +0 -1
- package/lib/hooks/useOutsideClick.d.ts +0 -1
- package/lib/hooks/useQueryParametersDialog.d.ts +0 -1
- package/package.json +2 -2
|
@@ -3,12 +3,12 @@ import { ITopMediaSession, LayoutModes, MetadataDescriptor } from '@topconsultnp
|
|
|
3
3
|
import { TID_MID } from '../../ts';
|
|
4
4
|
import { DataGridTypes } from 'devextreme-react/cjs/data-grid';
|
|
5
5
|
export declare const TMMidViewer: ({ tmSession, tid_mid, showCompleteName, showIcon, showId, noneSelectionText }: {
|
|
6
|
-
tmSession?: ITopMediaSession
|
|
6
|
+
tmSession?: ITopMediaSession;
|
|
7
7
|
tid_mid: TID_MID | undefined;
|
|
8
|
-
showCompleteName?: boolean
|
|
9
|
-
showIcon?: boolean
|
|
10
|
-
showId?: boolean
|
|
11
|
-
noneSelectionText?: string
|
|
8
|
+
showCompleteName?: boolean;
|
|
9
|
+
showIcon?: boolean;
|
|
10
|
+
showId?: boolean;
|
|
11
|
+
noneSelectionText?: string;
|
|
12
12
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
interface ITMMetadataIcon {
|
|
14
14
|
tid: number | undefined;
|
|
@@ -11,11 +11,11 @@ interface ITMDcmtTypeTooltip {
|
|
|
11
11
|
}
|
|
12
12
|
export declare const TMDcmtTypeTooltip: React.FC<ITMDcmtTypeTooltip>;
|
|
13
13
|
declare const TMTidViewer: ({ tmSession, tid, showIcon, showId, noneSelectionText }: {
|
|
14
|
-
tmSession?: ITopMediaSession
|
|
15
|
-
tid?: number
|
|
16
|
-
showIcon?: boolean
|
|
17
|
-
showId?: boolean
|
|
18
|
-
noneSelectionText?: string
|
|
14
|
+
tmSession?: ITopMediaSession;
|
|
15
|
+
tid?: number;
|
|
16
|
+
showIcon?: boolean;
|
|
17
|
+
showId?: boolean;
|
|
18
|
+
noneSelectionText?: string;
|
|
19
19
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
export default TMTidViewer;
|
|
21
21
|
export declare const cellRenderTID: (data: DataGridTypes.ColumnCellTemplateData, noneSelectionText?: string) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,6 +16,7 @@ export declare class SDKUI_Localizator {
|
|
|
16
16
|
static get AddDefinition(): "Definition hinzufügen" | "Add definition" | "Añadir definición" | "Ajoute la définition" | "Adicionar definição" | "Aggiungi definizione";
|
|
17
17
|
static get AddOrSubstFile(): "Dateien hinzufügen/ersetzen" | "Add/substitute file" | "Añadir/sustituir archivo" | "Ajoute/Remplace le fichier" | "Adicionar / substituir arquivos" | "Aggiungi/sostituisci file";
|
|
18
18
|
static get All(): "Alle" | "All" | "Todos" | "Tous" | "Tutti";
|
|
19
|
+
static get Alphabetic_AToZ(): "Alphabetisch (A-Z)" | "Alphabetical (A-Z)" | "Alfabético (A-Z)" | "Alphabétique (A-Z)" | "Alfabética (A-Z)" | "Alfabetico (A-Z)";
|
|
19
20
|
static get Alls2(): "Alle" | "All" | "Todos" | "Tous" | "Tutte";
|
|
20
21
|
static get AllItems(): "alle Artikel" | "All items" | "Todos los artículos" | "tous les articles" | "todos os artigos" | "tutti gli elementi";
|
|
21
22
|
static get Applied(): string;
|
|
@@ -274,6 +275,8 @@ export declare class SDKUI_Localizator {
|
|
|
274
275
|
static get UserLevelAdminSys(): "Systemadministrator" | "System administrator" | "Administrador de sistema" | "Administrateur de système" | "Administrador do sistema" | "Amministratore di sistema";
|
|
275
276
|
static get UserLevelMember(): "Mitglied" | "Member" | "Miembro" | "Membre" | "Membro";
|
|
276
277
|
static get Value(): "Wert" | "Value" | "Valor" | "Valeur" | "Valore";
|
|
278
|
+
static get ValueAscending(): "Aufsteigend Wert" | "Value ascending" | "Value ascendente" | "Valeur croissant" | "Valor crescente" | "Valore crescente";
|
|
279
|
+
static get ValueDescending(): "Absteigend Wert" | "Value descending" | "Value descendente" | "Valeur décroissant" | "Valor decrescente" | "Valore decrescente";
|
|
277
280
|
static get View_Metadato(): "Anzeige (Methadaten)" | "Visualization (metadata)" | "Visualización (metadato)" | "Visualisation (métadonnée)" | "Display (metadados)" | "Visualizzazione (metadato)";
|
|
278
281
|
static get ViewWithCheckOption(): "Kontrolle über Archivierung und Bearbeitung" | "Check on archive and update" | "Control en almacenamiento y modificación" | "Contrôle de l'archivage et la modifie" | "Controle de arquivamento e edição" | "Controllo su archiviazione e modifica";
|
|
279
282
|
static get Visible(): "Sichtbar" | "Visible" | "Visibles" | "Visibiles" | "Visíveis" | "Visibili";
|
|
@@ -108,6 +108,16 @@ export class SDKUI_Localizator {
|
|
|
108
108
|
default: return "Tutti";
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
|
+
static get Alphabetic_AToZ() {
|
|
112
|
+
switch (this._cultureID) {
|
|
113
|
+
case CultureIDs.De_DE: return "Alphabetisch (A-Z)";
|
|
114
|
+
case CultureIDs.En_US: return "Alphabetical (A-Z)";
|
|
115
|
+
case CultureIDs.Es_ES: return "Alfabético (A-Z)";
|
|
116
|
+
case CultureIDs.Fr_FR: return "Alphabétique (A-Z)";
|
|
117
|
+
case CultureIDs.Pt_PT: return "Alfabética (A-Z)";
|
|
118
|
+
default: return "Alfabetico (A-Z)";
|
|
119
|
+
}
|
|
120
|
+
}
|
|
111
121
|
static get Alls2() {
|
|
112
122
|
switch (this._cultureID) {
|
|
113
123
|
case CultureIDs.De_DE: return "Alle";
|
|
@@ -2698,6 +2708,26 @@ export class SDKUI_Localizator {
|
|
|
2698
2708
|
default: return "Valore";
|
|
2699
2709
|
}
|
|
2700
2710
|
}
|
|
2711
|
+
static get ValueAscending() {
|
|
2712
|
+
switch (this._cultureID) {
|
|
2713
|
+
case CultureIDs.De_DE: return "Aufsteigend Wert";
|
|
2714
|
+
case CultureIDs.En_US: return "Value ascending";
|
|
2715
|
+
case CultureIDs.Es_ES: return "Value ascendente";
|
|
2716
|
+
case CultureIDs.Fr_FR: return "Valeur croissant";
|
|
2717
|
+
case CultureIDs.Pt_PT: return "Valor crescente";
|
|
2718
|
+
default: return "Valore crescente";
|
|
2719
|
+
}
|
|
2720
|
+
}
|
|
2721
|
+
static get ValueDescending() {
|
|
2722
|
+
switch (this._cultureID) {
|
|
2723
|
+
case CultureIDs.De_DE: return "Absteigend Wert";
|
|
2724
|
+
case CultureIDs.En_US: return "Value descending";
|
|
2725
|
+
case CultureIDs.Es_ES: return "Value descendente";
|
|
2726
|
+
case CultureIDs.Fr_FR: return "Valeur décroissant";
|
|
2727
|
+
case CultureIDs.Pt_PT: return "Valor decrescente";
|
|
2728
|
+
default: return "Valore decrescente";
|
|
2729
|
+
}
|
|
2730
|
+
}
|
|
2701
2731
|
static get View_Metadato() {
|
|
2702
2732
|
switch (this._cultureID) {
|
|
2703
2733
|
case CultureIDs.De_DE: return "Anzeige (Methadaten)";
|
package/lib/helper/helpers.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { AppModules, DataColumnDescriptor, ITopMediaSession, QueryDescriptor, Se
|
|
|
4
4
|
import { FormModes, moduleTypes } from "../ts";
|
|
5
5
|
declare const TABLET_WIDTH = 1024;
|
|
6
6
|
declare const MOBILE_WIDTH = 640;
|
|
7
|
-
declare const calcResponsiveDirection: (deviceType: DeviceType, desktopDir:
|
|
7
|
+
declare const calcResponsiveDirection: (deviceType: DeviceType, desktopDir: "horizontal" | "vertical", tabletDir: "horizontal" | "vertical", mobileDir: "horizontal" | "vertical") => "horizontal" | "vertical";
|
|
8
8
|
declare const openApps: (appModule: AppModules, tmSession: ITopMediaSession, appRoutes?: any[]) => Promise<void>;
|
|
9
9
|
export declare const setSDK_GlobalsInfoAsync: (tms: ITopMediaSession | undefined) => Promise<ITopMediaSession>;
|
|
10
10
|
declare const calcResponsiveSizes: (deviceType: DeviceType | undefined, desktopSize: string, tabletSize: string, mobileSize: string) => string;
|
package/lib/hooks/useForm.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { QueryDescriptor, QueryParameterDescriptor } from '@topconsultnpm/sdk-ts-beta';
|
|
3
2
|
export declare const useQueryParametersDialog: () => [(inputQd: QueryDescriptor, lastQdParams?: QueryParameterDescriptor[]) => Promise<QueryParameterDescriptor[]>, () => JSX.Element];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topconsultnpm/sdkui-react-beta",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.64",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"lib"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@topconsultnpm/sdk-ts-beta": "^6.9.
|
|
31
|
+
"@topconsultnpm/sdk-ts-beta": "^6.9.7",
|
|
32
32
|
"buffer": "^6.0.3",
|
|
33
33
|
"devextreme": "24.1.7",
|
|
34
34
|
"devextreme-react": "24.1.7",
|