@topconsultnpm/sdkui-react-beta 6.8.35 → 6.8.37

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.
Files changed (33) hide show
  1. package/lib/assets/icomoon.svg +96 -96
  2. package/lib/components/base/Styled.d.ts +23 -1920
  3. package/lib/components/base/TMAlert.d.ts +2 -3
  4. package/lib/components/base/TMButton.js +2 -2
  5. package/lib/components/base/TMContextMenuOLD.d.ts +3 -274
  6. package/lib/components/base/TMDropDownMenu.d.ts +0 -1
  7. package/lib/components/base/TMEditorBase.d.ts +0 -1
  8. package/lib/components/base/TMLayout.d.ts +32 -32
  9. package/lib/components/base/TMRightSidebar.d.ts +4 -4
  10. package/lib/components/base/TMTab.d.ts +4 -4
  11. package/lib/components/base/TMVilViewer.d.ts +1 -1
  12. package/lib/components/choosers/TMRelationChooser.d.ts +5 -5
  13. package/lib/components/choosers/TMUserChooser.d.ts +5 -5
  14. package/lib/components/editors/TMEditorStyled.d.ts +21 -22
  15. package/lib/components/editors/TMMetadataEditor.js +1 -1
  16. package/lib/components/editors/TMTreeDropDown.js +2 -1
  17. package/lib/components/forms/TMChooserForm.js +1 -1
  18. package/lib/components/forms/TMLoginForm.d.ts +5 -5
  19. package/lib/components/query/TMQueryEditor.d.ts +8 -550
  20. package/lib/components/query/TMQueryResult.d.ts +5 -5
  21. package/lib/components/query/TMQueryResultForm.d.ts +10 -10
  22. package/lib/components/sidebar/TMHeader.d.ts +2 -2
  23. package/lib/components/viewers/TMDataListItemViewer.d.ts +3 -3
  24. package/lib/components/viewers/TMMidViewer.d.ts +5 -5
  25. package/lib/components/viewers/TMTidViewer.d.ts +5 -5
  26. package/lib/helper/SDKUI_Localizator.d.ts +35 -36
  27. package/lib/helper/SDKUI_Localizator.js +355 -435
  28. package/lib/helper/helpers.d.ts +1 -1
  29. package/lib/hooks/useForm.d.ts +0 -1
  30. package/lib/hooks/useOutsideClick.d.ts +0 -1
  31. package/lib/utils/theme.d.ts +2 -0
  32. package/lib/utils/theme.js +2 -0
  33. package/package.json +2 -2
@@ -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: 'horizontal' | 'vertical', tabletDir: 'horizontal' | 'vertical', mobileDir: 'horizontal' | 'vertical') => 'horizontal' | 'vertical';
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;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { FormModes } from "../ts";
3
2
  import { JobTypes, ObjectClasses, ValidationItem } from "@topconsultnpm/sdk-ts-beta";
4
3
  export declare class SaveFormOptions {
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare const useOutsideClick: (callback: (escPressed?: boolean) => void) => import("react").RefObject<HTMLDivElement>;
3
2
  export declare const useEscapeKeyPress: (callback: () => void) => import("react").RefObject<HTMLDivElement>;
@@ -17,6 +17,8 @@ declare class Colors {
17
17
  static success: string;
18
18
  static neutral: string;
19
19
  static toolbar_color: string;
20
+ static black: string;
21
+ static white: string;
20
22
  }
21
23
  declare class TMColors {
22
24
  static border_normal: string;
@@ -18,6 +18,8 @@ Colors.info = '#679CE8';
18
18
  Colors.success = '#6EB735';
19
19
  Colors.neutral = '#757575';
20
20
  Colors.toolbar_color = '#F0F4FA';
21
+ Colors.black = '#000000';
22
+ Colors.white = '#ffffff';
21
23
  class TMColors {
22
24
  static get primaryColor() { return this._primaryColor; }
23
25
  static set primaryColor(thePrimaryColor) { this._primaryColor = thePrimaryColor; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react-beta",
3
- "version": "6.8.35",
3
+ "version": "6.8.37",
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.8.4",
31
+ "@topconsultnpm/sdk-ts-beta": "^6.8.5",
32
32
  "buffer": "^6.0.3",
33
33
  "devextreme": "24.1.7",
34
34
  "devextreme-react": "24.1.7",