-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkendo-swatch.json
449 lines (440 loc) · 16.9 KB
/
kendo-swatch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "kendo-cli://schemas/kendo-swatch.json",
"title": "Kendo Swatch Definition",
"properties": {
"$schema": {
"type": "string"
},
"name": {
"description": "Name of the theme. Used for naming download artifacts.",
"type": "string"
},
"base": {
"description": "Base for the theme. Must be a valid kendo or webui theme name.",
"type": "string",
"enum": [
"@progress/kendo-theme-default",
"@progress/kendo-theme-bootstrap",
"@progress/kendo-theme-material",
"@progress/kendo-theme-classic",
"@progress/kendo-theme-nouvelle",
"@telerik/webui-theme-default",
"@telerik/webui-theme-bootstrap",
"@telerik/webui-theme-material",
"@telerik/webui-theme-glow",
"@telerik/webui-theme-silk"
]
},
"version": {
"description": "Version of the theme to compile against. Note: this is recommended version.",
"markdownDescription": "Version of the theme to compile against.\n\nNote: this is **recommended** version.",
"type": "string"
},
"product": {
"description": "Product for which the theme is for. Either kendo or webui.",
"type": "string",
"enum": [
"kendo",
"webui"
]
},
"hidden": {
"description": "Hides the swatch from themebuilder customization interface. Default is false. Note: this has no effect when uploading a swatch.",
"markdownDescription": "Hides the swatch from themebuilder customization interface. Default is `false`.\n\nNote: this has **no effect** when uploading a swatch.",
"type": "boolean"
},
"previewColors": {
"description": "A list of HEX colors that represents the theme.",
"type": "array",
"items": {
"$ref": "#/$defs/css-color"
},
"minItems": 2,
"maxItems": 8
},
"components": {
"description": "Components to include in the compiled theme. Leave empty for all.",
"$ref": "#/$defs/component-list"
},
"themeBuilder": {
"description": "List of variables to be customized in ThemeBuilder, organized in groups",
"type": "array",
"items": {
"$ref": "#/$defs/group"
}
},
"groups": {
"description": "List of variables to be customized in ThemeBuilder, organized in groups",
"type": "array",
"items": {
"$ref": "#/$defs/group"
}
},
"variables": {
"$ref": "#/$defs/variable-list"
}
},
"additionalProperties": false,
"required": [ "$schema", "name", "base", "product" ],
"oneOf": [
{
"oneOf": [
{ "required": [ "variables" ] },
{ "required": [ "groups" ] },
{ "required": [ "themeBuilder" ] }
]
}
],
"$defs": {
"css-color": { "$ref": "./css-color.json#/$defs/css-color" },
"css-length": { "$ref": "./css-number.json#/$defs/css-length" },
"sass-variable-type": { "$ref": "./sass-variable.json#/$defs/sass-variable-type" },
"component-list": { "$ref": "./kendo-component.json#/$defs/component-list" },
"group": {
"description": "A group of variables",
"type": "object",
"properties": {
"name": {
"description": "Friendly group name. It will be shown as title in the themebuilder.",
"type": "string"
},
"variables": {
"$ref": "#/$defs/variable-list"
},
"hidden": {
"description": "Hides the group from themebuilder customization interface. Default is false. Note: even a group is hidden, the variables will be processed!",
"markdownDescription": "Hides the group from themebuilder customization interface. Default is `false`. \n\nNote: even a group is hidden, the variables will be processed!",
"type": "boolean"
}
},
"additionalProperties": false,
"required": [ "variables" ]
},
"variable-list": {
"description": "A list of variables. Each key refers to a sass variable name without the dollar sign",
"type": "object",
"patternProperties": {
"^[a-zA-Z]": {
"$ref": "#/$defs/variable"
}
},
"additionalProperties": false
},
"variable": {
"description": "An object representation of a variable.",
"type": "object",
"properties": {
"name": {
"description": "Friendly name for variable. Will be shown in Themebuilder as label for editor",
"type": "string"
},
"type": {
"description": "Variable type. One of color, number, boolean or hidden.",
"markdownDescription": "Variable type. One of `color`, `number`, `boolean` or `hidden`.",
"$ref": "#/$defs/variable-type"
},
"value": {},
"hidden": {
"description": "Hides the variable from themebuilder customization interface. Default is false. Note: even a variable is hidden, it will be processed!",
"markdownDescription": "Hides the variable from themebuilder customization interface. Default is `false`. \n\nNote: even a variable is hidden, it will be processed!",
"type": "boolean"
},
"enum": {}
},
"additionalProperties": false,
"required": [ "name", "type", "value" ],
"allOf": [
{
"if": {
"properties": {
"type": { "const": "color" },
"required": [ "type" ]
}
},
"then": {
"properties": {
"value": {
"type": [
"string",
"null"
],
"oneOf": [
{
"$ref": "#/$defs/css-color",
"examples": [
"black",
"#000000",
"#000",
"#000000FF",
"#000f",
"rgb( 0, 0, 0 )",
"rgba( 0, 0, 0, 0 )"
]
},
{
"pattern": "^\\{\\{\\s*([a-zA-z\\d\\-\\_]+)(\\.[a-zA-z\\d\\-\\_]+)*\\s*\\}\\}$",
"examples": [
"{{ base.themeColors.primary }}"
]
}
],
"description": "CSS color or token reference"
}
}
}
},
{
"if": {
"properties": {
"type": { "const": "colorlist" },
"required": [ "type" ]
}
},
"then": {
"properties": {
"value": {
"description": "A specific color from discreet color list.",
"markdownDescription": "A specific color from discreet color list.",
"type": [
"string",
"null"
]
},
"enum": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/$defs/css-color"
},
{
"$ref": "#/$defs/colorlist-tuple"
}
]
}
}
}
}
},
{
"if": {
"properties": {
"type": { "const": "color-mode" },
"required": [ "type" ]
}
},
"then": {
"properties": {
"value": {
"description": "How to apply colors based on intended theme luminocity. One of dark or light.",
"markdownDescription": "How to apply colors based on intended theme luminocity. One of `dark` or `light`.",
"type": [
"string",
"null"
],
"oneOf": [
{
"$ref": "#/$defs/color-modes"
},
{
"type": "null"
}
]
},
"enum": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/$defs/color-modes"
},
{
"$ref": "#/$defs/colormode-tuple"
}
]
}
}
}
}
},
{
"if": {
"properties": {
"type": { "const": "material-colorlist" },
"required": [ "type" ]
}
},
"then": {
"properties": {
"value": {
"description": "A specific color from discreet color list.",
"markdownDescription": "A specific color from discreet color list.",
"type": [
"string",
"null"
]
},
"enum": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/$defs/material-colors"
},
{
"$ref": "#/$defs/material-colorlist-tuple"
}
]
}
}
}
}
},
{
"if": {
"properties": {
"type": { "const": "number" },
"required": [ "type" ]
}
},
"then": {
"properties": {
"value": {
"description": "Valid CSS length or null",
"markdownDescription": "Valid CSS length or `null`. See [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/length).",
"oneOf": [
{
"$ref": "#/$defs/css-length"
},
{
"type": "null"
}
]
}
}
}
},
{
"if": {
"properties": {
"type": { "const": "boolean" },
"required": [ "type" ]
}
},
"then": {
"properties": {
"value": {
"description": "true or false",
"markdownDescription": "`true` or `false`",
"enum": [
true,
false,
null
]
}
}
}
}
]
},
"variable-type": {
"oneOf": [
{
"$ref": "#/$defs/sass-variable-type"
},
{
"type": "string",
"const": "colorlist"
},
{
"type": "string",
"const": "color-mode"
},
{
"type": "string",
"const": "material-colorlist"
}
]
},
"colorlist-tuple": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"$ref": "#/$defs/css-color"
},
"preview": {
"$ref": "#/$defs/css-color"
}
},
"additionalProperties": false,
"required": [ "value" ]
},
"color-modes": {
"type": "string",
"enum": [
"light",
"dark"
]
},
"colormode-tuple": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"$ref": "#/$defs/color-modes"
},
"preview": {
"$ref": "#/$defs/css-color"
}
},
"additionalProperties": false,
"required": [ "value" ]
},
"material-colors": {
"type": "string",
"enum": [
"red",
"pink",
"purple",
"deepPurple",
"indigo",
"blue",
"lightBlue",
"cyan",
"teal",
"green",
"lightGreen",
"lime",
"yellow",
"amber",
"orange",
"deepOrange",
"brown",
"gray",
"blueGray"
]
},
"material-colorlist-tuple": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"$ref": "#/$defs/material-colors"
},
"preview": {
"$ref": "#/$defs/css-color"
}
},
"additionalProperties": false,
"required": [ "value" ]
}
}
}