@topconsultnpm/sdkui-react 6.20.0-dev3.12 → 6.20.0-dev3.13

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.
@@ -91,10 +91,14 @@ export declare class DevSettings {
91
91
  }
92
92
  export declare class AdvancedSettings {
93
93
  private _expertMode;
94
+ private _scannerLicense;
94
95
  get expertMode(): number;
95
96
  set expertMode(value: number);
97
+ get scannerLicense(): string;
98
+ set scannerLicense(value: string);
96
99
  toJSON(): {
97
100
  expertMode: number;
101
+ scannerLicense: string;
98
102
  };
99
103
  }
100
104
  export declare class CtrlWfSettings {
@@ -130,6 +130,7 @@ export class DevSettings {
130
130
  export class AdvancedSettings {
131
131
  constructor() {
132
132
  this._expertMode = 0;
133
+ this._scannerLicense = '';
133
134
  }
134
135
  get expertMode() {
135
136
  return this._expertMode;
@@ -142,10 +143,17 @@ export class AdvancedSettings {
142
143
  window.dispatchEvent(event);
143
144
  }
144
145
  }
146
+ get scannerLicense() {
147
+ return this._scannerLicense;
148
+ }
149
+ set scannerLicense(value) {
150
+ this._scannerLicense = value;
151
+ }
145
152
  // Override toJSON to control serialization (called by JSON.stringify)
146
153
  toJSON() {
147
154
  return {
148
- expertMode: this._expertMode, // Serialize only the public property
155
+ expertMode: this._expertMode,
156
+ scannerLicense: this._scannerLicense,
149
157
  };
150
158
  }
151
159
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react",
3
- "version": "6.20.0-dev3.12",
3
+ "version": "6.20.0-dev3.13",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",