@adminide-stack/core 10.2.2-alpha.2 → 10.2.2-alpha.20
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.
@@ -4,7 +4,7 @@ import { Event } from '@vscode-alt/monaco-editor/esm/vs/base/common/event';
|
|
4
4
|
import { ConfigurationScope } from '@workbench-stack/core/lib/interfaces/configuration/configuration.js';
|
5
5
|
import { EditPresentationTypes } from '@workbench-stack/core/lib/interfaces/configuration/configuration-registry.js';
|
6
6
|
import { IConfigurationDelta, IConfigurationDefaultOverrideValue } from './configuration';
|
7
|
-
import { IConfigurationDefaults, IConfigurationExtensionInfo, IConfigurationNode, IConfigurationNodeContextInput } from 'common
|
7
|
+
import { IConfigurationDefaults, IConfigurationExtensionInfo, IConfigurationNode, IConfigurationNodeContextInput } from 'common';
|
8
8
|
export type PolicyName = string;
|
9
9
|
export interface IPolicy {
|
10
10
|
/**
|
@@ -17,7 +17,7 @@ export interface IPolicy {
|
|
17
17
|
readonly minimumVersion: `${number}.${number}`;
|
18
18
|
}
|
19
19
|
export interface IConfigurationPropertySchema extends IJSONSchema {
|
20
|
-
scope?: ConfigurationScope;
|
20
|
+
scope?: ConfigurationScope | ConfigurationScope[];
|
21
21
|
/**
|
22
22
|
* When restricted, value of this configuration will be read only from trusted sources.
|
23
23
|
* For example, if the workspace is not trusted, then the value of this configuration
|
@@ -66,7 +66,9 @@ export interface IConfigurationPropertySchema extends IJSONSchema {
|
|
66
66
|
* a system-wide policy.
|
67
67
|
*/
|
68
68
|
policy?: IPolicy;
|
69
|
+
settingDependencies?: string[];
|
69
70
|
}
|
71
|
+
export type IConfigurationSchemaMap = Record<string, IConfigurationPropertySchema>;
|
70
72
|
export type IRegisteredConfigurationPropertySchema = IConfigurationPropertySchema & {
|
71
73
|
defaultDefaultValue?: any;
|
72
74
|
source?: IConfigurationExtensionInfo;
|
@@ -3,7 +3,7 @@ export interface IDefaultSettingsSnapshot {
|
|
3
3
|
content?: string;
|
4
4
|
contentWithoutMostCommonlyUsed?: any;
|
5
5
|
allSettingsMap: Map<string, IContributionSettings>;
|
6
|
-
allSettingsGroups:
|
6
|
+
allSettingsGroups: ISettingsGroup[];
|
7
7
|
registeredGroups: ISettingsGroup[];
|
8
8
|
schema?: string;
|
9
9
|
}
|
@@ -1 +1,4 @@
|
|
1
|
+
export { IJSONSchema } from '@vscode-alt/monaco-editor/esm/vs/base/common/jsonSchema.js';
|
1
2
|
export { URI, UriComponents, uriToFsPath } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri.js';
|
3
|
+
export { IJSONSchemaMap } from '@vscode-alt/monaco-editor/esm/vs/base/common/jsonSchema.js';
|
4
|
+
export { IJSONSchemaSnippet } from '@vscode-alt/monaco-editor/esm/vs/base/common/jsonSchema.js';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/core",
|
3
|
-
"version": "10.2.2-alpha.
|
3
|
+
"version": "10.2.2-alpha.20",
|
4
4
|
"description": "AdminIDE core for higher packages to depend on",
|
5
5
|
"license": "UNLICENSED",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"dependencies": {
|
24
24
|
"@vscode-alt/monaco-editor": "^0.21.4",
|
25
25
|
"@workbench-stack/core": "3.9.7",
|
26
|
-
"common": "10.2.2-alpha.
|
26
|
+
"common": "10.2.2-alpha.17",
|
27
27
|
"query-string": "^9.0.0",
|
28
28
|
"sort-keys": "^5.0.0",
|
29
29
|
"vscode-uri": "^3.0.8"
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"publishConfig": {
|
36
36
|
"access": "public"
|
37
37
|
},
|
38
|
-
"gitHead": "
|
38
|
+
"gitHead": "00a66c3b8c29dcada061e05b803c7a61c7a09d01",
|
39
39
|
"typescript": {
|
40
40
|
"definition": "lib/index.d.ts"
|
41
41
|
}
|