@storm-software/config 1.127.1 → 1.128.0
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.
- package/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/dist/{chunk-63N4QQ4F.cjs → chunk-BWMRPFU3.cjs} +3 -1
- package/dist/chunk-FK3UY2VO.cjs +631 -0
- package/dist/chunk-FYKX55F5.js +631 -0
- package/dist/{chunk-KSQRDQGT.js → chunk-OI57XQ6W.js} +3 -1
- package/dist/constants.cjs +4 -2
- package/dist/constants.d.cts +2 -1
- package/dist/constants.d.ts +2 -1
- package/dist/constants.js +3 -1
- package/dist/define-config.d.cts +18 -14
- package/dist/define-config.d.ts +18 -14
- package/dist/index.cjs +123 -3
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +154 -34
- package/dist/schema.cjs +121 -3
- package/dist/schema.d.cts +476 -380
- package/dist/schema.d.ts +476 -380
- package/dist/schema.js +152 -34
- package/dist/types.d.cts +19 -18
- package/dist/types.d.ts +19 -18
- package/package.json +2 -2
- package/presets/storm-software.json +4 -1
- package/schemas/storm-workspace.schema.json +168 -149
- package/src/constants.d.ts +1 -0
- package/src/define-config.d.ts +18 -15
- package/src/schema.d.ts +476 -380
- package/src/types.d.ts +17 -17
- package/dist/chunk-OOZVCZMK.js +0 -282
- package/dist/chunk-Q4GCJANL.cjs +0 -282
|
@@ -1,42 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo.",
|
|
4
3
|
"type": "object",
|
|
5
4
|
"properties": {
|
|
6
5
|
"$schema": {
|
|
7
|
-
"description": "The URL or file path to the JSON schema file that describes the Storm configuration file",
|
|
8
6
|
"default": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
|
|
7
|
+
"description": "The URL or file path to the JSON schema file that describes the Storm configuration file",
|
|
9
8
|
"type": "string"
|
|
10
9
|
},
|
|
11
10
|
"extends": {
|
|
12
11
|
"description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
|
|
13
12
|
"anyOf": [
|
|
14
13
|
{
|
|
15
|
-
"description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
|
|
16
14
|
"type": "string"
|
|
17
15
|
},
|
|
18
16
|
{
|
|
19
17
|
"type": "array",
|
|
20
18
|
"items": {
|
|
21
|
-
"description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
|
|
22
19
|
"type": "string"
|
|
23
20
|
}
|
|
24
21
|
}
|
|
25
22
|
]
|
|
26
23
|
},
|
|
27
24
|
"name": {
|
|
28
|
-
"
|
|
29
|
-
"
|
|
25
|
+
"type": "string",
|
|
26
|
+
"description": "The name of the workspace/project/service/package/scope using this configuration"
|
|
30
27
|
},
|
|
31
28
|
"namespace": {
|
|
32
|
-
"
|
|
33
|
-
"
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "The namespace of the workspace/project/service/package/scope using this configuration"
|
|
34
31
|
},
|
|
35
32
|
"organization": {
|
|
36
|
-
"description": "The organization of the workspace. This can be a string or an object containing the organization's details",
|
|
37
33
|
"anyOf": [
|
|
38
34
|
{
|
|
39
|
-
"description": "The workspace's organization details",
|
|
40
35
|
"type": "object",
|
|
41
36
|
"properties": {
|
|
42
37
|
"name": {
|
|
@@ -63,22 +58,22 @@
|
|
|
63
58
|
"format": "uri"
|
|
64
59
|
}
|
|
65
60
|
},
|
|
66
|
-
"
|
|
67
|
-
"
|
|
61
|
+
"additionalProperties": false,
|
|
62
|
+
"description": "The workspace's organization details"
|
|
68
63
|
},
|
|
69
64
|
{
|
|
70
|
-
"description": "The organization of the workspace",
|
|
71
65
|
"type": "string"
|
|
72
66
|
}
|
|
73
|
-
]
|
|
67
|
+
],
|
|
68
|
+
"description": "The organization of the workspace. This can be a string or an object containing the organization's details"
|
|
74
69
|
},
|
|
75
70
|
"repository": {
|
|
76
|
-
"
|
|
77
|
-
"
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "The repo URL of the workspace (i.e. the GitHub repository URL)"
|
|
78
73
|
},
|
|
79
74
|
"license": {
|
|
80
|
-
"description": "The license type of the package",
|
|
81
75
|
"default": "Apache-2.0",
|
|
76
|
+
"description": "The license type of the package",
|
|
82
77
|
"type": "string"
|
|
83
78
|
},
|
|
84
79
|
"homepage": {
|
|
@@ -112,8 +107,8 @@
|
|
|
112
107
|
"format": "uri"
|
|
113
108
|
},
|
|
114
109
|
"branch": {
|
|
115
|
-
"description": "The branch of the workspace",
|
|
116
110
|
"default": "main",
|
|
111
|
+
"description": "The branch of the workspace",
|
|
117
112
|
"type": "string"
|
|
118
113
|
},
|
|
119
114
|
"preid": {
|
|
@@ -122,36 +117,52 @@
|
|
|
122
117
|
},
|
|
123
118
|
"owner": {
|
|
124
119
|
"description": "The owner of the package",
|
|
125
|
-
"default": "@storm-software/admin",
|
|
126
120
|
"type": "string"
|
|
127
121
|
},
|
|
128
122
|
"bot": {
|
|
129
|
-
"description": "The workspace's bot user's config used to automated various operations tasks",
|
|
130
123
|
"type": "object",
|
|
131
124
|
"properties": {
|
|
132
125
|
"name": {
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"type": "string"
|
|
126
|
+
"type": "string",
|
|
127
|
+
"description": "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
136
128
|
},
|
|
137
129
|
"email": {
|
|
138
|
-
"description": "The email of the workspace bot",
|
|
139
|
-
"default": "bot@stormsoftware.com",
|
|
140
130
|
"type": "string",
|
|
141
|
-
"
|
|
142
|
-
"pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"
|
|
131
|
+
"description": "The email of the workspace bot"
|
|
143
132
|
}
|
|
144
133
|
},
|
|
145
134
|
"required": ["name", "email"],
|
|
146
|
-
"additionalProperties": false
|
|
135
|
+
"additionalProperties": false,
|
|
136
|
+
"description": "The workspace's bot user's config used to automated various operations tasks"
|
|
147
137
|
},
|
|
148
138
|
"release": {
|
|
149
|
-
"description": "The workspace's release config used during the release process",
|
|
150
139
|
"type": "object",
|
|
151
140
|
"properties": {
|
|
152
141
|
"banner": {
|
|
153
|
-
"
|
|
154
|
-
|
|
142
|
+
"anyOf": [
|
|
143
|
+
{
|
|
144
|
+
"type": "object",
|
|
145
|
+
"properties": {
|
|
146
|
+
"url": {
|
|
147
|
+
"description": "A URL to a banner image used to display the workspace's release",
|
|
148
|
+
"type": "string",
|
|
149
|
+
"format": "uri"
|
|
150
|
+
},
|
|
151
|
+
"alt": {
|
|
152
|
+
"default": "The workspace's banner image",
|
|
153
|
+
"description": "The alt text for the workspace's release banner image",
|
|
154
|
+
"type": "string"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"required": ["alt"],
|
|
158
|
+
"additionalProperties": false,
|
|
159
|
+
"description": "The workspace's banner image used during the release process"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"type": "string",
|
|
163
|
+
"format": "uri"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
155
166
|
},
|
|
156
167
|
"header": {
|
|
157
168
|
"description": "A header message appended to the start of the workspace's release notes",
|
|
@@ -162,60 +173,47 @@
|
|
|
162
173
|
"type": "string"
|
|
163
174
|
}
|
|
164
175
|
},
|
|
165
|
-
"
|
|
176
|
+
"required": ["banner"],
|
|
177
|
+
"additionalProperties": false,
|
|
178
|
+
"description": "The workspace's release config used during the release process"
|
|
166
179
|
},
|
|
167
180
|
"socials": {
|
|
168
|
-
"description": "The workspace's account config used to store various social media links",
|
|
169
181
|
"type": "object",
|
|
170
182
|
"properties": {
|
|
171
183
|
"twitter": {
|
|
172
184
|
"description": "A Twitter/X account associated with the organization/project",
|
|
173
|
-
"default": "StormSoftwareHQ",
|
|
174
185
|
"type": "string"
|
|
175
186
|
},
|
|
176
187
|
"discord": {
|
|
177
188
|
"description": "A Discord account associated with the organization/project",
|
|
178
|
-
"default": "https://discord.gg/MQ6YVzakM5",
|
|
179
189
|
"type": "string"
|
|
180
190
|
},
|
|
181
191
|
"telegram": {
|
|
182
192
|
"description": "A Telegram account associated with the organization/project",
|
|
183
|
-
"default": "https://t.me/storm_software",
|
|
184
193
|
"type": "string"
|
|
185
194
|
},
|
|
186
195
|
"slack": {
|
|
187
196
|
"description": "A Slack account associated with the organization/project",
|
|
188
|
-
"default": "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA",
|
|
189
197
|
"type": "string"
|
|
190
198
|
},
|
|
191
199
|
"medium": {
|
|
192
200
|
"description": "A Medium account associated with the organization/project",
|
|
193
|
-
"default": "https://medium.com/storm-software",
|
|
194
201
|
"type": "string"
|
|
195
202
|
},
|
|
196
203
|
"github": {
|
|
197
204
|
"description": "A GitHub account associated with the organization/project",
|
|
198
|
-
"default": "https://github.com/storm-software",
|
|
199
205
|
"type": "string"
|
|
200
206
|
}
|
|
201
207
|
},
|
|
202
|
-
"
|
|
203
|
-
|
|
204
|
-
"discord",
|
|
205
|
-
"telegram",
|
|
206
|
-
"slack",
|
|
207
|
-
"medium",
|
|
208
|
-
"github"
|
|
209
|
-
],
|
|
210
|
-
"additionalProperties": false
|
|
208
|
+
"additionalProperties": false,
|
|
209
|
+
"description": "The workspace's account config used to store various social media links"
|
|
211
210
|
},
|
|
212
211
|
"error": {
|
|
213
|
-
"description": "The workspace's error config used during the error process",
|
|
214
212
|
"type": "object",
|
|
215
213
|
"properties": {
|
|
216
214
|
"codesFile": {
|
|
217
|
-
"description": "The path to the workspace's error codes JSON file",
|
|
218
215
|
"default": "tools/errors/codes.json",
|
|
216
|
+
"description": "The path to the workspace's error codes JSON file",
|
|
219
217
|
"type": "string"
|
|
220
218
|
},
|
|
221
219
|
"url": {
|
|
@@ -225,24 +223,25 @@
|
|
|
225
223
|
}
|
|
226
224
|
},
|
|
227
225
|
"required": ["codesFile"],
|
|
228
|
-
"additionalProperties": false
|
|
226
|
+
"additionalProperties": false,
|
|
227
|
+
"description": "The workspace's error config used when creating error details during a system error"
|
|
229
228
|
},
|
|
230
229
|
"mode": {
|
|
231
|
-
"description": "The current runtime environment mode for the package",
|
|
232
230
|
"default": "production",
|
|
233
|
-
"
|
|
231
|
+
"description": "The current runtime environment mode for the package",
|
|
232
|
+
"type": "string",
|
|
233
|
+
"enum": ["development", "staging", "production"]
|
|
234
234
|
},
|
|
235
235
|
"workspaceRoot": {
|
|
236
|
-
"
|
|
237
|
-
"
|
|
236
|
+
"type": "string",
|
|
237
|
+
"description": "The root directory of the workspace"
|
|
238
238
|
},
|
|
239
239
|
"skipCache": {
|
|
240
|
-
"description": "Should all known types of workspace caching be skipped?",
|
|
241
240
|
"default": false,
|
|
241
|
+
"description": "Should all known types of workspace caching be skipped?",
|
|
242
242
|
"type": "boolean"
|
|
243
243
|
},
|
|
244
244
|
"directories": {
|
|
245
|
-
"description": "Various directories used by the workspace to store data, cache, and configuration files",
|
|
246
245
|
"type": "object",
|
|
247
246
|
"properties": {
|
|
248
247
|
"cache": {
|
|
@@ -262,37 +261,38 @@
|
|
|
262
261
|
"type": "string"
|
|
263
262
|
},
|
|
264
263
|
"log": {
|
|
265
|
-
"description": "The directory used to store the environment's
|
|
264
|
+
"description": "The directory used to store the environment's log files",
|
|
266
265
|
"type": "string"
|
|
267
266
|
},
|
|
268
267
|
"build": {
|
|
269
|
-
"description": "The directory used to store the workspace's distributable files after a build (relative to the workspace root)",
|
|
270
268
|
"default": "dist",
|
|
269
|
+
"description": "The directory used to store the workspace's distributable files after a build (relative to the workspace root)",
|
|
271
270
|
"type": "string"
|
|
272
271
|
}
|
|
273
272
|
},
|
|
274
273
|
"required": ["build"],
|
|
275
|
-
"additionalProperties": false
|
|
274
|
+
"additionalProperties": false,
|
|
275
|
+
"description": "Various directories used by the workspace to store data, cache, and configuration files"
|
|
276
276
|
},
|
|
277
277
|
"packageManager": {
|
|
278
|
-
"description": "The JavaScript/TypeScript package manager used by the repository",
|
|
279
278
|
"default": "npm",
|
|
279
|
+
"description": "The JavaScript/TypeScript package manager used by the repository",
|
|
280
280
|
"type": "string",
|
|
281
281
|
"enum": ["npm", "yarn", "pnpm", "bun"]
|
|
282
282
|
},
|
|
283
283
|
"timezone": {
|
|
284
|
-
"description": "The default timezone of the workspace",
|
|
285
284
|
"default": "America/New_York",
|
|
285
|
+
"description": "The default timezone of the workspace",
|
|
286
286
|
"type": "string"
|
|
287
287
|
},
|
|
288
288
|
"locale": {
|
|
289
|
-
"description": "The default locale of the workspace",
|
|
290
289
|
"default": "en-US",
|
|
290
|
+
"description": "The default locale of the workspace",
|
|
291
291
|
"type": "string"
|
|
292
292
|
},
|
|
293
293
|
"logLevel": {
|
|
294
|
-
"description": "The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`).",
|
|
295
294
|
"default": "info",
|
|
295
|
+
"description": "The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`).",
|
|
296
296
|
"type": "string",
|
|
297
297
|
"enum": [
|
|
298
298
|
"silent",
|
|
@@ -307,12 +307,13 @@
|
|
|
307
307
|
]
|
|
308
308
|
},
|
|
309
309
|
"skipConfigLogging": {
|
|
310
|
+
"default": true,
|
|
310
311
|
"description": "Should the logging of the current Storm Workspace configuration be skipped?",
|
|
311
312
|
"type": "boolean"
|
|
312
313
|
},
|
|
313
314
|
"registry": {
|
|
314
|
-
"description": "A list of remote registry URLs used by Storm Software",
|
|
315
315
|
"default": {},
|
|
316
|
+
"description": "A list of remote registry URLs used by Storm Software",
|
|
316
317
|
"type": "object",
|
|
317
318
|
"properties": {
|
|
318
319
|
"github": {
|
|
@@ -344,8 +345,8 @@
|
|
|
344
345
|
"additionalProperties": false
|
|
345
346
|
},
|
|
346
347
|
"configFile": {
|
|
347
|
-
"description": "The filepath of the Storm config. When this field is null, no config file was found in the current workspace.",
|
|
348
348
|
"default": null,
|
|
349
|
+
"description": "The filepath of the Storm config. When this field is null, no config file was found in the current workspace.",
|
|
349
350
|
"anyOf": [
|
|
350
351
|
{
|
|
351
352
|
"type": "string"
|
|
@@ -356,33 +357,31 @@
|
|
|
356
357
|
]
|
|
357
358
|
},
|
|
358
359
|
"colors": {
|
|
359
|
-
"description": "Storm theme config values used for styling various package elements",
|
|
360
360
|
"anyOf": [
|
|
361
361
|
{
|
|
362
|
-
"description": "Colors used for various workspace elements",
|
|
363
362
|
"anyOf": [
|
|
364
363
|
{
|
|
365
364
|
"type": "object",
|
|
366
365
|
"properties": {
|
|
367
366
|
"dark": {
|
|
368
|
-
"description": "The dark background color of the workspace",
|
|
369
367
|
"default": "#151718",
|
|
368
|
+
"description": "The dark background color of the workspace",
|
|
370
369
|
"type": "string",
|
|
371
370
|
"minLength": 7,
|
|
372
371
|
"maxLength": 7,
|
|
373
372
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
374
373
|
},
|
|
375
374
|
"light": {
|
|
376
|
-
"description": "The light background color of the workspace",
|
|
377
375
|
"default": "#cbd5e1",
|
|
376
|
+
"description": "The light background color of the workspace",
|
|
378
377
|
"type": "string",
|
|
379
378
|
"minLength": 7,
|
|
380
379
|
"maxLength": 7,
|
|
381
380
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
382
381
|
},
|
|
383
382
|
"brand": {
|
|
384
|
-
"description": "The primary brand specific color of the workspace",
|
|
385
383
|
"default": "#1fb2a6",
|
|
384
|
+
"description": "The primary brand specific color of the workspace",
|
|
386
385
|
"type": "string",
|
|
387
386
|
"minLength": 7,
|
|
388
387
|
"maxLength": 7,
|
|
@@ -403,48 +402,48 @@
|
|
|
403
402
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
404
403
|
},
|
|
405
404
|
"link": {
|
|
406
|
-
"description": "The color used to display hyperlink text",
|
|
407
405
|
"default": "#3fa6ff",
|
|
406
|
+
"description": "The color used to display hyperlink text",
|
|
408
407
|
"type": "string",
|
|
409
408
|
"minLength": 7,
|
|
410
409
|
"maxLength": 7,
|
|
411
410
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
412
411
|
},
|
|
413
412
|
"help": {
|
|
414
|
-
"description": "The second brand specific color of the workspace",
|
|
415
413
|
"default": "#818cf8",
|
|
414
|
+
"description": "The second brand specific color of the workspace",
|
|
416
415
|
"type": "string",
|
|
417
416
|
"minLength": 7,
|
|
418
417
|
"maxLength": 7,
|
|
419
418
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
420
419
|
},
|
|
421
420
|
"success": {
|
|
422
|
-
"description": "The success color of the workspace",
|
|
423
421
|
"default": "#45b27e",
|
|
422
|
+
"description": "The success color of the workspace",
|
|
424
423
|
"type": "string",
|
|
425
424
|
"minLength": 7,
|
|
426
425
|
"maxLength": 7,
|
|
427
426
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
428
427
|
},
|
|
429
428
|
"info": {
|
|
430
|
-
"description": "The informational color of the workspace",
|
|
431
429
|
"default": "#38bdf8",
|
|
430
|
+
"description": "The informational color of the workspace",
|
|
432
431
|
"type": "string",
|
|
433
432
|
"minLength": 7,
|
|
434
433
|
"maxLength": 7,
|
|
435
434
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
436
435
|
},
|
|
437
436
|
"warning": {
|
|
438
|
-
"description": "The warning color of the workspace",
|
|
439
437
|
"default": "#f3d371",
|
|
438
|
+
"description": "The warning color of the workspace",
|
|
440
439
|
"type": "string",
|
|
441
440
|
"minLength": 7,
|
|
442
441
|
"maxLength": 7,
|
|
443
442
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
444
443
|
},
|
|
445
444
|
"danger": {
|
|
446
|
-
"description": "The danger color of the workspace",
|
|
447
445
|
"default": "#d8314a",
|
|
446
|
+
"description": "The danger color of the workspace",
|
|
448
447
|
"type": "string",
|
|
449
448
|
"minLength": 7,
|
|
450
449
|
"maxLength": 7,
|
|
@@ -458,16 +457,16 @@
|
|
|
458
457
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
459
458
|
},
|
|
460
459
|
"positive": {
|
|
461
|
-
"description": "The positive number color of the workspace",
|
|
462
460
|
"default": "#4ade80",
|
|
461
|
+
"description": "The positive number color of the workspace",
|
|
463
462
|
"type": "string",
|
|
464
463
|
"minLength": 7,
|
|
465
464
|
"maxLength": 7,
|
|
466
465
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
467
466
|
},
|
|
468
467
|
"negative": {
|
|
469
|
-
"description": "The negative number color of the workspace",
|
|
470
468
|
"default": "#ef4444",
|
|
469
|
+
"description": "The negative number color of the workspace",
|
|
471
470
|
"type": "string",
|
|
472
471
|
"minLength": 7,
|
|
473
472
|
"maxLength": 7,
|
|
@@ -480,7 +479,8 @@
|
|
|
480
479
|
"type": "string",
|
|
481
480
|
"minLength": 7,
|
|
482
481
|
"maxLength": 7,
|
|
483
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
482
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$",
|
|
483
|
+
"description": "A base schema for describing the format of colors"
|
|
484
484
|
}
|
|
485
485
|
}
|
|
486
486
|
},
|
|
@@ -506,24 +506,24 @@
|
|
|
506
506
|
"type": "object",
|
|
507
507
|
"properties": {
|
|
508
508
|
"foreground": {
|
|
509
|
-
"description": "The light background color of the workspace",
|
|
510
509
|
"default": "#cbd5e1",
|
|
510
|
+
"description": "The light background color of the workspace",
|
|
511
511
|
"type": "string",
|
|
512
512
|
"minLength": 7,
|
|
513
513
|
"maxLength": 7,
|
|
514
514
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
515
515
|
},
|
|
516
516
|
"background": {
|
|
517
|
-
"description": "The dark background color of the workspace",
|
|
518
517
|
"default": "#151718",
|
|
518
|
+
"description": "The dark background color of the workspace",
|
|
519
519
|
"type": "string",
|
|
520
520
|
"minLength": 7,
|
|
521
521
|
"maxLength": 7,
|
|
522
522
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
523
523
|
},
|
|
524
524
|
"brand": {
|
|
525
|
-
"description": "The primary brand specific color of the workspace",
|
|
526
525
|
"default": "#1fb2a6",
|
|
526
|
+
"description": "The primary brand specific color of the workspace",
|
|
527
527
|
"type": "string",
|
|
528
528
|
"minLength": 7,
|
|
529
529
|
"maxLength": 7,
|
|
@@ -544,48 +544,48 @@
|
|
|
544
544
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
545
545
|
},
|
|
546
546
|
"link": {
|
|
547
|
-
"description": "The color used to display hyperlink text",
|
|
548
547
|
"default": "#3fa6ff",
|
|
548
|
+
"description": "The color used to display hyperlink text",
|
|
549
549
|
"type": "string",
|
|
550
550
|
"minLength": 7,
|
|
551
551
|
"maxLength": 7,
|
|
552
552
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
553
553
|
},
|
|
554
554
|
"help": {
|
|
555
|
-
"description": "The second brand specific color of the workspace",
|
|
556
555
|
"default": "#818cf8",
|
|
556
|
+
"description": "The second brand specific color of the workspace",
|
|
557
557
|
"type": "string",
|
|
558
558
|
"minLength": 7,
|
|
559
559
|
"maxLength": 7,
|
|
560
560
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
561
561
|
},
|
|
562
562
|
"success": {
|
|
563
|
-
"description": "The success color of the workspace",
|
|
564
563
|
"default": "#45b27e",
|
|
564
|
+
"description": "The success color of the workspace",
|
|
565
565
|
"type": "string",
|
|
566
566
|
"minLength": 7,
|
|
567
567
|
"maxLength": 7,
|
|
568
568
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
569
569
|
},
|
|
570
570
|
"info": {
|
|
571
|
-
"description": "The informational color of the workspace",
|
|
572
571
|
"default": "#38bdf8",
|
|
572
|
+
"description": "The informational color of the workspace",
|
|
573
573
|
"type": "string",
|
|
574
574
|
"minLength": 7,
|
|
575
575
|
"maxLength": 7,
|
|
576
576
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
577
577
|
},
|
|
578
578
|
"warning": {
|
|
579
|
-
"description": "The warning color of the workspace",
|
|
580
579
|
"default": "#f3d371",
|
|
580
|
+
"description": "The warning color of the workspace",
|
|
581
581
|
"type": "string",
|
|
582
582
|
"minLength": 7,
|
|
583
583
|
"maxLength": 7,
|
|
584
584
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
585
585
|
},
|
|
586
586
|
"danger": {
|
|
587
|
-
"description": "The danger color of the workspace",
|
|
588
587
|
"default": "#d8314a",
|
|
588
|
+
"description": "The danger color of the workspace",
|
|
589
589
|
"type": "string",
|
|
590
590
|
"minLength": 7,
|
|
591
591
|
"maxLength": 7,
|
|
@@ -599,16 +599,16 @@
|
|
|
599
599
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
600
600
|
},
|
|
601
601
|
"positive": {
|
|
602
|
-
"description": "The positive number color of the workspace",
|
|
603
602
|
"default": "#4ade80",
|
|
603
|
+
"description": "The positive number color of the workspace",
|
|
604
604
|
"type": "string",
|
|
605
605
|
"minLength": 7,
|
|
606
606
|
"maxLength": 7,
|
|
607
607
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
608
608
|
},
|
|
609
609
|
"negative": {
|
|
610
|
-
"description": "The negative number color of the workspace",
|
|
611
610
|
"default": "#ef4444",
|
|
611
|
+
"description": "The negative number color of the workspace",
|
|
612
612
|
"type": "string",
|
|
613
613
|
"minLength": 7,
|
|
614
614
|
"maxLength": 7,
|
|
@@ -621,7 +621,8 @@
|
|
|
621
621
|
"type": "string",
|
|
622
622
|
"minLength": 7,
|
|
623
623
|
"maxLength": 7,
|
|
624
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
624
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$",
|
|
625
|
+
"description": "A base schema for describing the format of colors"
|
|
625
626
|
}
|
|
626
627
|
}
|
|
627
628
|
},
|
|
@@ -644,24 +645,24 @@
|
|
|
644
645
|
"type": "object",
|
|
645
646
|
"properties": {
|
|
646
647
|
"foreground": {
|
|
647
|
-
"description": "The dark background color of the workspace",
|
|
648
648
|
"default": "#151718",
|
|
649
|
+
"description": "The dark background color of the workspace",
|
|
649
650
|
"type": "string",
|
|
650
651
|
"minLength": 7,
|
|
651
652
|
"maxLength": 7,
|
|
652
653
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
653
654
|
},
|
|
654
655
|
"background": {
|
|
655
|
-
"description": "The light background color of the workspace",
|
|
656
656
|
"default": "#cbd5e1",
|
|
657
|
+
"description": "The light background color of the workspace",
|
|
657
658
|
"type": "string",
|
|
658
659
|
"minLength": 7,
|
|
659
660
|
"maxLength": 7,
|
|
660
661
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
661
662
|
},
|
|
662
663
|
"brand": {
|
|
663
|
-
"description": "The primary brand specific color of the workspace",
|
|
664
664
|
"default": "#1fb2a6",
|
|
665
|
+
"description": "The primary brand specific color of the workspace",
|
|
665
666
|
"type": "string",
|
|
666
667
|
"minLength": 7,
|
|
667
668
|
"maxLength": 7,
|
|
@@ -682,48 +683,48 @@
|
|
|
682
683
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
683
684
|
},
|
|
684
685
|
"link": {
|
|
685
|
-
"description": "The color used to display hyperlink text",
|
|
686
686
|
"default": "#3fa6ff",
|
|
687
|
+
"description": "The color used to display hyperlink text",
|
|
687
688
|
"type": "string",
|
|
688
689
|
"minLength": 7,
|
|
689
690
|
"maxLength": 7,
|
|
690
691
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
691
692
|
},
|
|
692
693
|
"help": {
|
|
693
|
-
"description": "The second brand specific color of the workspace",
|
|
694
694
|
"default": "#818cf8",
|
|
695
|
+
"description": "The second brand specific color of the workspace",
|
|
695
696
|
"type": "string",
|
|
696
697
|
"minLength": 7,
|
|
697
698
|
"maxLength": 7,
|
|
698
699
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
699
700
|
},
|
|
700
701
|
"success": {
|
|
701
|
-
"description": "The success color of the workspace",
|
|
702
702
|
"default": "#45b27e",
|
|
703
|
+
"description": "The success color of the workspace",
|
|
703
704
|
"type": "string",
|
|
704
705
|
"minLength": 7,
|
|
705
706
|
"maxLength": 7,
|
|
706
707
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
707
708
|
},
|
|
708
709
|
"info": {
|
|
709
|
-
"description": "The informational color of the workspace",
|
|
710
710
|
"default": "#38bdf8",
|
|
711
|
+
"description": "The informational color of the workspace",
|
|
711
712
|
"type": "string",
|
|
712
713
|
"minLength": 7,
|
|
713
714
|
"maxLength": 7,
|
|
714
715
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
715
716
|
},
|
|
716
717
|
"warning": {
|
|
717
|
-
"description": "The warning color of the workspace",
|
|
718
718
|
"default": "#f3d371",
|
|
719
|
+
"description": "The warning color of the workspace",
|
|
719
720
|
"type": "string",
|
|
720
721
|
"minLength": 7,
|
|
721
722
|
"maxLength": 7,
|
|
722
723
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
723
724
|
},
|
|
724
725
|
"danger": {
|
|
725
|
-
"description": "The danger color of the workspace",
|
|
726
726
|
"default": "#d8314a",
|
|
727
|
+
"description": "The danger color of the workspace",
|
|
727
728
|
"type": "string",
|
|
728
729
|
"minLength": 7,
|
|
729
730
|
"maxLength": 7,
|
|
@@ -737,16 +738,16 @@
|
|
|
737
738
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
738
739
|
},
|
|
739
740
|
"positive": {
|
|
740
|
-
"description": "The positive number color of the workspace",
|
|
741
741
|
"default": "#4ade80",
|
|
742
|
+
"description": "The positive number color of the workspace",
|
|
742
743
|
"type": "string",
|
|
743
744
|
"minLength": 7,
|
|
744
745
|
"maxLength": 7,
|
|
745
746
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
746
747
|
},
|
|
747
748
|
"negative": {
|
|
748
|
-
"description": "The negative number color of the workspace",
|
|
749
749
|
"default": "#ef4444",
|
|
750
|
+
"description": "The negative number color of the workspace",
|
|
750
751
|
"type": "string",
|
|
751
752
|
"minLength": 7,
|
|
752
753
|
"maxLength": 7,
|
|
@@ -759,7 +760,8 @@
|
|
|
759
760
|
"type": "string",
|
|
760
761
|
"minLength": 7,
|
|
761
762
|
"maxLength": 7,
|
|
762
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
763
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$",
|
|
764
|
+
"description": "A base schema for describing the format of colors"
|
|
763
765
|
}
|
|
764
766
|
}
|
|
765
767
|
},
|
|
@@ -782,15 +784,23 @@
|
|
|
782
784
|
"required": ["dark", "light"],
|
|
783
785
|
"additionalProperties": false
|
|
784
786
|
}
|
|
785
|
-
]
|
|
787
|
+
],
|
|
788
|
+
"description": "Colors used for various workspace elements"
|
|
786
789
|
},
|
|
787
790
|
{
|
|
788
791
|
"type": "object",
|
|
789
792
|
"propertyNames": {
|
|
790
793
|
"anyOf": [
|
|
791
794
|
{
|
|
792
|
-
"
|
|
793
|
-
|
|
795
|
+
"anyOf": [
|
|
796
|
+
{
|
|
797
|
+
"type": "string",
|
|
798
|
+
"const": "base"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"type": "string"
|
|
802
|
+
}
|
|
803
|
+
]
|
|
794
804
|
},
|
|
795
805
|
{
|
|
796
806
|
"type": "string"
|
|
@@ -798,30 +808,29 @@
|
|
|
798
808
|
]
|
|
799
809
|
},
|
|
800
810
|
"additionalProperties": {
|
|
801
|
-
"description": "Colors used for various workspace elements",
|
|
802
811
|
"anyOf": [
|
|
803
812
|
{
|
|
804
813
|
"type": "object",
|
|
805
814
|
"properties": {
|
|
806
815
|
"dark": {
|
|
807
|
-
"description": "The dark background color of the workspace",
|
|
808
816
|
"default": "#151718",
|
|
817
|
+
"description": "The dark background color of the workspace",
|
|
809
818
|
"type": "string",
|
|
810
819
|
"minLength": 7,
|
|
811
820
|
"maxLength": 7,
|
|
812
821
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
813
822
|
},
|
|
814
823
|
"light": {
|
|
815
|
-
"description": "The light background color of the workspace",
|
|
816
824
|
"default": "#cbd5e1",
|
|
825
|
+
"description": "The light background color of the workspace",
|
|
817
826
|
"type": "string",
|
|
818
827
|
"minLength": 7,
|
|
819
828
|
"maxLength": 7,
|
|
820
829
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
821
830
|
},
|
|
822
831
|
"brand": {
|
|
823
|
-
"description": "The primary brand specific color of the workspace",
|
|
824
832
|
"default": "#1fb2a6",
|
|
833
|
+
"description": "The primary brand specific color of the workspace",
|
|
825
834
|
"type": "string",
|
|
826
835
|
"minLength": 7,
|
|
827
836
|
"maxLength": 7,
|
|
@@ -842,48 +851,48 @@
|
|
|
842
851
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
843
852
|
},
|
|
844
853
|
"link": {
|
|
845
|
-
"description": "The color used to display hyperlink text",
|
|
846
854
|
"default": "#3fa6ff",
|
|
855
|
+
"description": "The color used to display hyperlink text",
|
|
847
856
|
"type": "string",
|
|
848
857
|
"minLength": 7,
|
|
849
858
|
"maxLength": 7,
|
|
850
859
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
851
860
|
},
|
|
852
861
|
"help": {
|
|
853
|
-
"description": "The second brand specific color of the workspace",
|
|
854
862
|
"default": "#818cf8",
|
|
863
|
+
"description": "The second brand specific color of the workspace",
|
|
855
864
|
"type": "string",
|
|
856
865
|
"minLength": 7,
|
|
857
866
|
"maxLength": 7,
|
|
858
867
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
859
868
|
},
|
|
860
869
|
"success": {
|
|
861
|
-
"description": "The success color of the workspace",
|
|
862
870
|
"default": "#45b27e",
|
|
871
|
+
"description": "The success color of the workspace",
|
|
863
872
|
"type": "string",
|
|
864
873
|
"minLength": 7,
|
|
865
874
|
"maxLength": 7,
|
|
866
875
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
867
876
|
},
|
|
868
877
|
"info": {
|
|
869
|
-
"description": "The informational color of the workspace",
|
|
870
878
|
"default": "#38bdf8",
|
|
879
|
+
"description": "The informational color of the workspace",
|
|
871
880
|
"type": "string",
|
|
872
881
|
"minLength": 7,
|
|
873
882
|
"maxLength": 7,
|
|
874
883
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
875
884
|
},
|
|
876
885
|
"warning": {
|
|
877
|
-
"description": "The warning color of the workspace",
|
|
878
886
|
"default": "#f3d371",
|
|
887
|
+
"description": "The warning color of the workspace",
|
|
879
888
|
"type": "string",
|
|
880
889
|
"minLength": 7,
|
|
881
890
|
"maxLength": 7,
|
|
882
891
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
883
892
|
},
|
|
884
893
|
"danger": {
|
|
885
|
-
"description": "The danger color of the workspace",
|
|
886
894
|
"default": "#d8314a",
|
|
895
|
+
"description": "The danger color of the workspace",
|
|
887
896
|
"type": "string",
|
|
888
897
|
"minLength": 7,
|
|
889
898
|
"maxLength": 7,
|
|
@@ -897,16 +906,16 @@
|
|
|
897
906
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
898
907
|
},
|
|
899
908
|
"positive": {
|
|
900
|
-
"description": "The positive number color of the workspace",
|
|
901
909
|
"default": "#4ade80",
|
|
910
|
+
"description": "The positive number color of the workspace",
|
|
902
911
|
"type": "string",
|
|
903
912
|
"minLength": 7,
|
|
904
913
|
"maxLength": 7,
|
|
905
914
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
906
915
|
},
|
|
907
916
|
"negative": {
|
|
908
|
-
"description": "The negative number color of the workspace",
|
|
909
917
|
"default": "#ef4444",
|
|
918
|
+
"description": "The negative number color of the workspace",
|
|
910
919
|
"type": "string",
|
|
911
920
|
"minLength": 7,
|
|
912
921
|
"maxLength": 7,
|
|
@@ -919,7 +928,8 @@
|
|
|
919
928
|
"type": "string",
|
|
920
929
|
"minLength": 7,
|
|
921
930
|
"maxLength": 7,
|
|
922
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
931
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$",
|
|
932
|
+
"description": "A base schema for describing the format of colors"
|
|
923
933
|
}
|
|
924
934
|
}
|
|
925
935
|
},
|
|
@@ -945,24 +955,24 @@
|
|
|
945
955
|
"type": "object",
|
|
946
956
|
"properties": {
|
|
947
957
|
"foreground": {
|
|
948
|
-
"description": "The light background color of the workspace",
|
|
949
958
|
"default": "#cbd5e1",
|
|
959
|
+
"description": "The light background color of the workspace",
|
|
950
960
|
"type": "string",
|
|
951
961
|
"minLength": 7,
|
|
952
962
|
"maxLength": 7,
|
|
953
963
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
954
964
|
},
|
|
955
965
|
"background": {
|
|
956
|
-
"description": "The dark background color of the workspace",
|
|
957
966
|
"default": "#151718",
|
|
967
|
+
"description": "The dark background color of the workspace",
|
|
958
968
|
"type": "string",
|
|
959
969
|
"minLength": 7,
|
|
960
970
|
"maxLength": 7,
|
|
961
971
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
962
972
|
},
|
|
963
973
|
"brand": {
|
|
964
|
-
"description": "The primary brand specific color of the workspace",
|
|
965
974
|
"default": "#1fb2a6",
|
|
975
|
+
"description": "The primary brand specific color of the workspace",
|
|
966
976
|
"type": "string",
|
|
967
977
|
"minLength": 7,
|
|
968
978
|
"maxLength": 7,
|
|
@@ -983,48 +993,48 @@
|
|
|
983
993
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
984
994
|
},
|
|
985
995
|
"link": {
|
|
986
|
-
"description": "The color used to display hyperlink text",
|
|
987
996
|
"default": "#3fa6ff",
|
|
997
|
+
"description": "The color used to display hyperlink text",
|
|
988
998
|
"type": "string",
|
|
989
999
|
"minLength": 7,
|
|
990
1000
|
"maxLength": 7,
|
|
991
1001
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
992
1002
|
},
|
|
993
1003
|
"help": {
|
|
994
|
-
"description": "The second brand specific color of the workspace",
|
|
995
1004
|
"default": "#818cf8",
|
|
1005
|
+
"description": "The second brand specific color of the workspace",
|
|
996
1006
|
"type": "string",
|
|
997
1007
|
"minLength": 7,
|
|
998
1008
|
"maxLength": 7,
|
|
999
1009
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1000
1010
|
},
|
|
1001
1011
|
"success": {
|
|
1002
|
-
"description": "The success color of the workspace",
|
|
1003
1012
|
"default": "#45b27e",
|
|
1013
|
+
"description": "The success color of the workspace",
|
|
1004
1014
|
"type": "string",
|
|
1005
1015
|
"minLength": 7,
|
|
1006
1016
|
"maxLength": 7,
|
|
1007
1017
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1008
1018
|
},
|
|
1009
1019
|
"info": {
|
|
1010
|
-
"description": "The informational color of the workspace",
|
|
1011
1020
|
"default": "#38bdf8",
|
|
1021
|
+
"description": "The informational color of the workspace",
|
|
1012
1022
|
"type": "string",
|
|
1013
1023
|
"minLength": 7,
|
|
1014
1024
|
"maxLength": 7,
|
|
1015
1025
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1016
1026
|
},
|
|
1017
1027
|
"warning": {
|
|
1018
|
-
"description": "The warning color of the workspace",
|
|
1019
1028
|
"default": "#f3d371",
|
|
1029
|
+
"description": "The warning color of the workspace",
|
|
1020
1030
|
"type": "string",
|
|
1021
1031
|
"minLength": 7,
|
|
1022
1032
|
"maxLength": 7,
|
|
1023
1033
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1024
1034
|
},
|
|
1025
1035
|
"danger": {
|
|
1026
|
-
"description": "The danger color of the workspace",
|
|
1027
1036
|
"default": "#d8314a",
|
|
1037
|
+
"description": "The danger color of the workspace",
|
|
1028
1038
|
"type": "string",
|
|
1029
1039
|
"minLength": 7,
|
|
1030
1040
|
"maxLength": 7,
|
|
@@ -1038,16 +1048,16 @@
|
|
|
1038
1048
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1039
1049
|
},
|
|
1040
1050
|
"positive": {
|
|
1041
|
-
"description": "The positive number color of the workspace",
|
|
1042
1051
|
"default": "#4ade80",
|
|
1052
|
+
"description": "The positive number color of the workspace",
|
|
1043
1053
|
"type": "string",
|
|
1044
1054
|
"minLength": 7,
|
|
1045
1055
|
"maxLength": 7,
|
|
1046
1056
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1047
1057
|
},
|
|
1048
1058
|
"negative": {
|
|
1049
|
-
"description": "The negative number color of the workspace",
|
|
1050
1059
|
"default": "#ef4444",
|
|
1060
|
+
"description": "The negative number color of the workspace",
|
|
1051
1061
|
"type": "string",
|
|
1052
1062
|
"minLength": 7,
|
|
1053
1063
|
"maxLength": 7,
|
|
@@ -1060,7 +1070,8 @@
|
|
|
1060
1070
|
"type": "string",
|
|
1061
1071
|
"minLength": 7,
|
|
1062
1072
|
"maxLength": 7,
|
|
1063
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1073
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$",
|
|
1074
|
+
"description": "A base schema for describing the format of colors"
|
|
1064
1075
|
}
|
|
1065
1076
|
}
|
|
1066
1077
|
},
|
|
@@ -1083,24 +1094,24 @@
|
|
|
1083
1094
|
"type": "object",
|
|
1084
1095
|
"properties": {
|
|
1085
1096
|
"foreground": {
|
|
1086
|
-
"description": "The dark background color of the workspace",
|
|
1087
1097
|
"default": "#151718",
|
|
1098
|
+
"description": "The dark background color of the workspace",
|
|
1088
1099
|
"type": "string",
|
|
1089
1100
|
"minLength": 7,
|
|
1090
1101
|
"maxLength": 7,
|
|
1091
1102
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1092
1103
|
},
|
|
1093
1104
|
"background": {
|
|
1094
|
-
"description": "The light background color of the workspace",
|
|
1095
1105
|
"default": "#cbd5e1",
|
|
1106
|
+
"description": "The light background color of the workspace",
|
|
1096
1107
|
"type": "string",
|
|
1097
1108
|
"minLength": 7,
|
|
1098
1109
|
"maxLength": 7,
|
|
1099
1110
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1100
1111
|
},
|
|
1101
1112
|
"brand": {
|
|
1102
|
-
"description": "The primary brand specific color of the workspace",
|
|
1103
1113
|
"default": "#1fb2a6",
|
|
1114
|
+
"description": "The primary brand specific color of the workspace",
|
|
1104
1115
|
"type": "string",
|
|
1105
1116
|
"minLength": 7,
|
|
1106
1117
|
"maxLength": 7,
|
|
@@ -1121,48 +1132,48 @@
|
|
|
1121
1132
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1122
1133
|
},
|
|
1123
1134
|
"link": {
|
|
1124
|
-
"description": "The color used to display hyperlink text",
|
|
1125
1135
|
"default": "#3fa6ff",
|
|
1136
|
+
"description": "The color used to display hyperlink text",
|
|
1126
1137
|
"type": "string",
|
|
1127
1138
|
"minLength": 7,
|
|
1128
1139
|
"maxLength": 7,
|
|
1129
1140
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1130
1141
|
},
|
|
1131
1142
|
"help": {
|
|
1132
|
-
"description": "The second brand specific color of the workspace",
|
|
1133
1143
|
"default": "#818cf8",
|
|
1144
|
+
"description": "The second brand specific color of the workspace",
|
|
1134
1145
|
"type": "string",
|
|
1135
1146
|
"minLength": 7,
|
|
1136
1147
|
"maxLength": 7,
|
|
1137
1148
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1138
1149
|
},
|
|
1139
1150
|
"success": {
|
|
1140
|
-
"description": "The success color of the workspace",
|
|
1141
1151
|
"default": "#45b27e",
|
|
1152
|
+
"description": "The success color of the workspace",
|
|
1142
1153
|
"type": "string",
|
|
1143
1154
|
"minLength": 7,
|
|
1144
1155
|
"maxLength": 7,
|
|
1145
1156
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1146
1157
|
},
|
|
1147
1158
|
"info": {
|
|
1148
|
-
"description": "The informational color of the workspace",
|
|
1149
1159
|
"default": "#38bdf8",
|
|
1160
|
+
"description": "The informational color of the workspace",
|
|
1150
1161
|
"type": "string",
|
|
1151
1162
|
"minLength": 7,
|
|
1152
1163
|
"maxLength": 7,
|
|
1153
1164
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1154
1165
|
},
|
|
1155
1166
|
"warning": {
|
|
1156
|
-
"description": "The warning color of the workspace",
|
|
1157
1167
|
"default": "#f3d371",
|
|
1168
|
+
"description": "The warning color of the workspace",
|
|
1158
1169
|
"type": "string",
|
|
1159
1170
|
"minLength": 7,
|
|
1160
1171
|
"maxLength": 7,
|
|
1161
1172
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1162
1173
|
},
|
|
1163
1174
|
"danger": {
|
|
1164
|
-
"description": "The danger color of the workspace",
|
|
1165
1175
|
"default": "#d8314a",
|
|
1176
|
+
"description": "The danger color of the workspace",
|
|
1166
1177
|
"type": "string",
|
|
1167
1178
|
"minLength": 7,
|
|
1168
1179
|
"maxLength": 7,
|
|
@@ -1176,16 +1187,16 @@
|
|
|
1176
1187
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1177
1188
|
},
|
|
1178
1189
|
"positive": {
|
|
1179
|
-
"description": "The positive number color of the workspace",
|
|
1180
1190
|
"default": "#4ade80",
|
|
1191
|
+
"description": "The positive number color of the workspace",
|
|
1181
1192
|
"type": "string",
|
|
1182
1193
|
"minLength": 7,
|
|
1183
1194
|
"maxLength": 7,
|
|
1184
1195
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1185
1196
|
},
|
|
1186
1197
|
"negative": {
|
|
1187
|
-
"description": "The negative number color of the workspace",
|
|
1188
1198
|
"default": "#ef4444",
|
|
1199
|
+
"description": "The negative number color of the workspace",
|
|
1189
1200
|
"type": "string",
|
|
1190
1201
|
"minLength": 7,
|
|
1191
1202
|
"maxLength": 7,
|
|
@@ -1198,7 +1209,8 @@
|
|
|
1198
1209
|
"type": "string",
|
|
1199
1210
|
"minLength": 7,
|
|
1200
1211
|
"maxLength": 7,
|
|
1201
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1212
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$",
|
|
1213
|
+
"description": "A base schema for describing the format of colors"
|
|
1202
1214
|
}
|
|
1203
1215
|
}
|
|
1204
1216
|
},
|
|
@@ -1221,14 +1233,16 @@
|
|
|
1221
1233
|
"required": ["dark", "light"],
|
|
1222
1234
|
"additionalProperties": false
|
|
1223
1235
|
}
|
|
1224
|
-
]
|
|
1225
|
-
|
|
1236
|
+
],
|
|
1237
|
+
"description": "Colors used for various workspace elements"
|
|
1238
|
+
},
|
|
1239
|
+
"description": "Storm theme config values used for styling various package elements"
|
|
1226
1240
|
}
|
|
1227
1241
|
]
|
|
1228
1242
|
},
|
|
1229
1243
|
"extensions": {
|
|
1230
|
-
"description": "Configuration of each used extension",
|
|
1231
1244
|
"default": {},
|
|
1245
|
+
"description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo.",
|
|
1232
1246
|
"type": "object",
|
|
1233
1247
|
"propertyNames": {
|
|
1234
1248
|
"type": "string"
|
|
@@ -1238,9 +1252,12 @@
|
|
|
1238
1252
|
},
|
|
1239
1253
|
"required": [
|
|
1240
1254
|
"$schema",
|
|
1255
|
+
"name",
|
|
1256
|
+
"namespace",
|
|
1257
|
+
"organization",
|
|
1258
|
+
"repository",
|
|
1241
1259
|
"license",
|
|
1242
1260
|
"branch",
|
|
1243
|
-
"owner",
|
|
1244
1261
|
"bot",
|
|
1245
1262
|
"release",
|
|
1246
1263
|
"socials",
|
|
@@ -1253,6 +1270,7 @@
|
|
|
1253
1270
|
"timezone",
|
|
1254
1271
|
"locale",
|
|
1255
1272
|
"logLevel",
|
|
1273
|
+
"skipConfigLogging",
|
|
1256
1274
|
"registry",
|
|
1257
1275
|
"configFile",
|
|
1258
1276
|
"colors",
|
|
@@ -1260,5 +1278,6 @@
|
|
|
1260
1278
|
],
|
|
1261
1279
|
"additionalProperties": false,
|
|
1262
1280
|
"$id": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
|
|
1263
|
-
"title": "Storm Workspace Configuration JSON Schema"
|
|
1281
|
+
"title": "Storm Workspace Configuration JSON Schema",
|
|
1282
|
+
"description": "This JSON Schema defines the structure of the Storm Workspace configuration file (`storm-workspace.json`). It is used to validate the configuration file and ensure that it adheres to the expected format."
|
|
1264
1283
|
}
|