@topconsultnpm/sdkui-react 6.20.0-dev2.56 → 6.20.0-dev2.57

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.
@@ -17,6 +17,7 @@ export declare class UserSettings {
17
17
  searchSettings: SearchSettings;
18
18
  themeSettings: ThemeSettings;
19
19
  devSettings: DevSettings;
20
+ ctrlWfSettings: CtrlWfSettings;
20
21
  dcmtFormSettings: DcmtFormSettings[];
21
22
  wgDraftCheckoutInfo: CheckoutInfo[];
22
23
  dcmtCheckoutInfo: CheckoutInfo[];
@@ -96,6 +97,9 @@ export declare class AdvancedSettings {
96
97
  expertMode: number;
97
98
  };
98
99
  }
100
+ export declare class CtrlWfSettings {
101
+ detailWIFormWidth: string;
102
+ }
99
103
  export declare class DcmtFormSettings {
100
104
  TID: number | undefined;
101
105
  layout: {
@@ -19,6 +19,7 @@ export class UserSettings {
19
19
  this.searchSettings = new SearchSettings();
20
20
  this.themeSettings = new ThemeSettings(true);
21
21
  this.devSettings = new DevSettings();
22
+ this.ctrlWfSettings = new CtrlWfSettings();
22
23
  this.dcmtFormSettings = [];
23
24
  this.wgDraftCheckoutInfo = [];
24
25
  this.dcmtCheckoutInfo = [];
@@ -148,6 +149,11 @@ export class AdvancedSettings {
148
149
  };
149
150
  }
150
151
  }
152
+ export class CtrlWfSettings {
153
+ constructor() {
154
+ this.detailWIFormWidth = '30';
155
+ }
156
+ }
151
157
  export class DcmtFormSettings {
152
158
  constructor() {
153
159
  this.layout = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react",
3
- "version": "6.20.0-dev2.56",
3
+ "version": "6.20.0-dev2.57",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -40,7 +40,7 @@
40
40
  "lib"
41
41
  ],
42
42
  "dependencies": {
43
- "@topconsultnpm/sdk-ts": "6.20.0-dev2.13",
43
+ "@topconsultnpm/sdk-ts": "6.20.0-dev2.14",
44
44
  "buffer": "^6.0.3",
45
45
  "devextreme": "25.2.4",
46
46
  "devextreme-react": "25.2.4",