@topconsultnpm/sdkui-react 6.20.0-dev2.29 → 6.20.0-dev2.30
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.
|
@@ -16,6 +16,7 @@ export declare class UserSettings {
|
|
|
16
16
|
fullTextSettings: FullTextSettings;
|
|
17
17
|
searchSettings: SearchSettings;
|
|
18
18
|
themeSettings: ThemeSettings;
|
|
19
|
+
devSettings: DevSettings;
|
|
19
20
|
dcmtFormSettings: DcmtFormSettings[];
|
|
20
21
|
wgDraftCheckoutInfo: CheckoutInfo[];
|
|
21
22
|
dcmtCheckoutInfo: CheckoutInfo[];
|
|
@@ -84,6 +85,9 @@ export declare class ArchivingSettings {
|
|
|
84
85
|
export declare class FullTextSettings {
|
|
85
86
|
mruTerms: string[];
|
|
86
87
|
}
|
|
88
|
+
export declare class DevSettings {
|
|
89
|
+
betaFeatures: number;
|
|
90
|
+
}
|
|
87
91
|
export declare class AdvancedSettings {
|
|
88
92
|
private _expertMode;
|
|
89
93
|
get expertMode(): number;
|
|
@@ -18,6 +18,7 @@ export class UserSettings {
|
|
|
18
18
|
this.fullTextSettings = new FullTextSettings();
|
|
19
19
|
this.searchSettings = new SearchSettings();
|
|
20
20
|
this.themeSettings = new ThemeSettings(true);
|
|
21
|
+
this.devSettings = new DevSettings();
|
|
21
22
|
this.dcmtFormSettings = [];
|
|
22
23
|
this.wgDraftCheckoutInfo = [];
|
|
23
24
|
this.dcmtCheckoutInfo = [];
|
|
@@ -120,6 +121,11 @@ export class FullTextSettings {
|
|
|
120
121
|
this.mruTerms = [];
|
|
121
122
|
}
|
|
122
123
|
}
|
|
124
|
+
export class DevSettings {
|
|
125
|
+
constructor() {
|
|
126
|
+
this.betaFeatures = 0;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
123
129
|
export class AdvancedSettings {
|
|
124
130
|
constructor() {
|
|
125
131
|
this._expertMode = 0;
|