@directus/themes 0.1.0 → 0.2.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/dist/index.d.ts +3 -3
- package/dist/index.js +246 -156
- package/dist/schema.d.ts +31 -5
- package/dist/schema.json +159 -18
- package/dist/store.d.ts +150 -0
- package/dist/theme-provider.vue.d.ts +100 -0
- package/dist/use-theme.d.ts +25 -0
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
import type { Static } from '@sinclair/typebox';
|
|
2
|
-
export declare const TypeId: {
|
|
3
|
-
Color: string;
|
|
4
|
-
FontFamily: string;
|
|
5
|
-
};
|
|
6
2
|
export declare const ThemeSchema: import("@sinclair/typebox").TObject<{
|
|
7
3
|
name: import("@sinclair/typebox").TString;
|
|
8
4
|
appearance: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"light">, import("@sinclair/typebox").TLiteral<"dark">]>;
|
|
@@ -35,15 +31,23 @@ export declare const ThemeSchema: import("@sinclair/typebox").TObject<{
|
|
|
35
31
|
fontFamilySansSerif: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
36
32
|
fontFamilySerif: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
37
33
|
fontFamilyMonospace: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
34
|
+
borderRadius: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>, import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>]>;
|
|
35
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
38
36
|
navigation: import("@sinclair/typebox").TObject<{
|
|
39
37
|
background: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
38
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
39
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
40
40
|
project: import("@sinclair/typebox").TObject<{
|
|
41
41
|
background: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
42
42
|
foreground: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
43
43
|
fontFamily: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
44
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
45
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
44
46
|
}>;
|
|
45
47
|
modules: import("@sinclair/typebox").TObject<{
|
|
46
48
|
background: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
49
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
50
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
47
51
|
button: import("@sinclair/typebox").TObject<{
|
|
48
52
|
foreground: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
49
53
|
foregroundHover: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
@@ -66,10 +70,17 @@ export declare const ThemeSchema: import("@sinclair/typebox").TObject<{
|
|
|
66
70
|
backgroundHover: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
67
71
|
backgroundActive: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
68
72
|
fontFamily: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
73
|
+
divider: import("@sinclair/typebox").TObject<{
|
|
74
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
75
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
76
|
+
}>;
|
|
69
77
|
}>;
|
|
70
78
|
}>;
|
|
71
79
|
header: import("@sinclair/typebox").TObject<{
|
|
72
80
|
background: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
81
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
82
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
83
|
+
boxShadow: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
73
84
|
headline: import("@sinclair/typebox").TObject<{
|
|
74
85
|
foreground: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
75
86
|
fontFamily: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
@@ -89,6 +100,12 @@ export declare const ThemeSchema: import("@sinclair/typebox").TObject<{
|
|
|
89
100
|
background: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
90
101
|
foreground: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
91
102
|
foregroundSubdued: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
103
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
104
|
+
borderColorHover: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
105
|
+
borderColorFocus: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
106
|
+
boxShadow: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
107
|
+
boxShadowHover: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
108
|
+
boxShadowFocus: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
92
109
|
}>;
|
|
93
110
|
}>;
|
|
94
111
|
}>;
|
|
@@ -96,6 +113,8 @@ export declare const ThemeSchema: import("@sinclair/typebox").TObject<{
|
|
|
96
113
|
background: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
97
114
|
foreground: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
98
115
|
fontFamily: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
116
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
117
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
99
118
|
section: import("@sinclair/typebox").TObject<{
|
|
100
119
|
toggle: import("@sinclair/typebox").TObject<{
|
|
101
120
|
icon: import("@sinclair/typebox").TObject<{
|
|
@@ -110,6 +129,8 @@ export declare const ThemeSchema: import("@sinclair/typebox").TObject<{
|
|
|
110
129
|
backgroundHover: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
111
130
|
backgroundActive: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
112
131
|
fontFamily: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
132
|
+
borderWidth: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>>;
|
|
133
|
+
borderColor: import("@sinclair/typebox").TRef<import("@sinclair/typebox").TString>;
|
|
113
134
|
}>;
|
|
114
135
|
}>;
|
|
115
136
|
}>;
|
|
@@ -117,7 +138,12 @@ export declare const ThemeSchema: import("@sinclair/typebox").TObject<{
|
|
|
117
138
|
}>;
|
|
118
139
|
export declare const Definitions: {
|
|
119
140
|
$defs: {
|
|
120
|
-
|
|
141
|
+
Color: import("@sinclair/typebox").TString;
|
|
142
|
+
FamilyName: import("@sinclair/typebox").TString;
|
|
143
|
+
Length: import("@sinclair/typebox").TString;
|
|
144
|
+
Percentage: import("@sinclair/typebox").TString;
|
|
145
|
+
LineWidth: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TLiteral<"thin">, import("@sinclair/typebox").TLiteral<"medium">, import("@sinclair/typebox").TLiteral<"thick">]>;
|
|
146
|
+
BoxShadow: import("@sinclair/typebox").TString;
|
|
121
147
|
};
|
|
122
148
|
};
|
|
123
149
|
export type Theme = Static<typeof ThemeSchema>;
|
package/dist/schema.json
CHANGED
|
@@ -92,16 +92,29 @@
|
|
|
92
92
|
"$ref": "Color"
|
|
93
93
|
},
|
|
94
94
|
"fontFamilyDisplay": {
|
|
95
|
-
"$ref": "
|
|
95
|
+
"$ref": "FamilyName"
|
|
96
96
|
},
|
|
97
97
|
"fontFamilySansSerif": {
|
|
98
|
-
"$ref": "
|
|
98
|
+
"$ref": "FamilyName"
|
|
99
99
|
},
|
|
100
100
|
"fontFamilySerif": {
|
|
101
|
-
"$ref": "
|
|
101
|
+
"$ref": "FamilyName"
|
|
102
102
|
},
|
|
103
103
|
"fontFamilyMonospace": {
|
|
104
|
-
"$ref": "
|
|
104
|
+
"$ref": "FamilyName"
|
|
105
|
+
},
|
|
106
|
+
"borderRadius": {
|
|
107
|
+
"anyOf": [
|
|
108
|
+
{
|
|
109
|
+
"$ref": "Length"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"$ref": "Percentage"
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"borderWidth": {
|
|
117
|
+
"$ref": "LineWidth"
|
|
105
118
|
},
|
|
106
119
|
"navigation": {
|
|
107
120
|
"type": "object",
|
|
@@ -109,6 +122,12 @@
|
|
|
109
122
|
"background": {
|
|
110
123
|
"$ref": "Color"
|
|
111
124
|
},
|
|
125
|
+
"borderWidth": {
|
|
126
|
+
"$ref": "LineWidth"
|
|
127
|
+
},
|
|
128
|
+
"borderColor": {
|
|
129
|
+
"$ref": "Color"
|
|
130
|
+
},
|
|
112
131
|
"project": {
|
|
113
132
|
"type": "object",
|
|
114
133
|
"properties": {
|
|
@@ -119,13 +138,21 @@
|
|
|
119
138
|
"$ref": "Color"
|
|
120
139
|
},
|
|
121
140
|
"fontFamily": {
|
|
122
|
-
"$ref": "
|
|
141
|
+
"$ref": "FamilyName"
|
|
142
|
+
},
|
|
143
|
+
"borderWidth": {
|
|
144
|
+
"$ref": "LineWidth"
|
|
145
|
+
},
|
|
146
|
+
"borderColor": {
|
|
147
|
+
"$ref": "Color"
|
|
123
148
|
}
|
|
124
149
|
},
|
|
125
150
|
"required": [
|
|
126
151
|
"background",
|
|
127
152
|
"foreground",
|
|
128
|
-
"fontFamily"
|
|
153
|
+
"fontFamily",
|
|
154
|
+
"borderWidth",
|
|
155
|
+
"borderColor"
|
|
129
156
|
]
|
|
130
157
|
},
|
|
131
158
|
"modules": {
|
|
@@ -134,6 +161,12 @@
|
|
|
134
161
|
"background": {
|
|
135
162
|
"$ref": "Color"
|
|
136
163
|
},
|
|
164
|
+
"borderWidth": {
|
|
165
|
+
"$ref": "LineWidth"
|
|
166
|
+
},
|
|
167
|
+
"borderColor": {
|
|
168
|
+
"$ref": "Color"
|
|
169
|
+
},
|
|
137
170
|
"button": {
|
|
138
171
|
"type": "object",
|
|
139
172
|
"properties": {
|
|
@@ -168,6 +201,8 @@
|
|
|
168
201
|
},
|
|
169
202
|
"required": [
|
|
170
203
|
"background",
|
|
204
|
+
"borderWidth",
|
|
205
|
+
"borderColor",
|
|
171
206
|
"button"
|
|
172
207
|
]
|
|
173
208
|
},
|
|
@@ -212,7 +247,22 @@
|
|
|
212
247
|
"$ref": "Color"
|
|
213
248
|
},
|
|
214
249
|
"fontFamily": {
|
|
215
|
-
"$ref": "
|
|
250
|
+
"$ref": "FamilyName"
|
|
251
|
+
},
|
|
252
|
+
"divider": {
|
|
253
|
+
"type": "object",
|
|
254
|
+
"properties": {
|
|
255
|
+
"borderColor": {
|
|
256
|
+
"$ref": "Color"
|
|
257
|
+
},
|
|
258
|
+
"borderWidth": {
|
|
259
|
+
"$ref": "LineWidth"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"required": [
|
|
263
|
+
"borderColor",
|
|
264
|
+
"borderWidth"
|
|
265
|
+
]
|
|
216
266
|
}
|
|
217
267
|
},
|
|
218
268
|
"required": [
|
|
@@ -223,12 +273,15 @@
|
|
|
223
273
|
"background",
|
|
224
274
|
"backgroundHover",
|
|
225
275
|
"backgroundActive",
|
|
226
|
-
"fontFamily"
|
|
276
|
+
"fontFamily",
|
|
277
|
+
"divider"
|
|
227
278
|
]
|
|
228
279
|
}
|
|
229
280
|
},
|
|
230
281
|
"required": [
|
|
231
282
|
"background",
|
|
283
|
+
"borderWidth",
|
|
284
|
+
"borderColor",
|
|
232
285
|
"project",
|
|
233
286
|
"modules",
|
|
234
287
|
"list"
|
|
@@ -240,6 +293,15 @@
|
|
|
240
293
|
"background": {
|
|
241
294
|
"$ref": "Color"
|
|
242
295
|
},
|
|
296
|
+
"borderWidth": {
|
|
297
|
+
"$ref": "LineWidth"
|
|
298
|
+
},
|
|
299
|
+
"borderColor": {
|
|
300
|
+
"$ref": "Color"
|
|
301
|
+
},
|
|
302
|
+
"boxShadow": {
|
|
303
|
+
"$ref": "BoxShadow"
|
|
304
|
+
},
|
|
243
305
|
"headline": {
|
|
244
306
|
"type": "object",
|
|
245
307
|
"properties": {
|
|
@@ -247,7 +309,7 @@
|
|
|
247
309
|
"$ref": "Color"
|
|
248
310
|
},
|
|
249
311
|
"fontFamily": {
|
|
250
|
-
"$ref": "
|
|
312
|
+
"$ref": "FamilyName"
|
|
251
313
|
}
|
|
252
314
|
},
|
|
253
315
|
"required": [
|
|
@@ -262,7 +324,7 @@
|
|
|
262
324
|
"$ref": "Color"
|
|
263
325
|
},
|
|
264
326
|
"fontFamily": {
|
|
265
|
-
"$ref": "
|
|
327
|
+
"$ref": "FamilyName"
|
|
266
328
|
}
|
|
267
329
|
},
|
|
268
330
|
"required": [
|
|
@@ -273,6 +335,9 @@
|
|
|
273
335
|
},
|
|
274
336
|
"required": [
|
|
275
337
|
"background",
|
|
338
|
+
"borderWidth",
|
|
339
|
+
"borderColor",
|
|
340
|
+
"boxShadow",
|
|
276
341
|
"headline",
|
|
277
342
|
"title"
|
|
278
343
|
]
|
|
@@ -290,7 +355,7 @@
|
|
|
290
355
|
"$ref": "Color"
|
|
291
356
|
},
|
|
292
357
|
"fontFamily": {
|
|
293
|
-
"$ref": "
|
|
358
|
+
"$ref": "FamilyName"
|
|
294
359
|
}
|
|
295
360
|
},
|
|
296
361
|
"required": [
|
|
@@ -309,12 +374,36 @@
|
|
|
309
374
|
},
|
|
310
375
|
"foregroundSubdued": {
|
|
311
376
|
"$ref": "Color"
|
|
377
|
+
},
|
|
378
|
+
"borderColor": {
|
|
379
|
+
"$ref": "Color"
|
|
380
|
+
},
|
|
381
|
+
"borderColorHover": {
|
|
382
|
+
"$ref": "Color"
|
|
383
|
+
},
|
|
384
|
+
"borderColorFocus": {
|
|
385
|
+
"$ref": "Color"
|
|
386
|
+
},
|
|
387
|
+
"boxShadow": {
|
|
388
|
+
"$ref": "BoxShadow"
|
|
389
|
+
},
|
|
390
|
+
"boxShadowHover": {
|
|
391
|
+
"$ref": "BoxShadow"
|
|
392
|
+
},
|
|
393
|
+
"boxShadowFocus": {
|
|
394
|
+
"$ref": "BoxShadow"
|
|
312
395
|
}
|
|
313
396
|
},
|
|
314
397
|
"required": [
|
|
315
398
|
"background",
|
|
316
399
|
"foreground",
|
|
317
|
-
"foregroundSubdued"
|
|
400
|
+
"foregroundSubdued",
|
|
401
|
+
"borderColor",
|
|
402
|
+
"borderColorHover",
|
|
403
|
+
"borderColorFocus",
|
|
404
|
+
"boxShadow",
|
|
405
|
+
"boxShadowHover",
|
|
406
|
+
"boxShadowFocus"
|
|
318
407
|
]
|
|
319
408
|
}
|
|
320
409
|
},
|
|
@@ -338,7 +427,13 @@
|
|
|
338
427
|
"$ref": "Color"
|
|
339
428
|
},
|
|
340
429
|
"fontFamily": {
|
|
341
|
-
"$ref": "
|
|
430
|
+
"$ref": "FamilyName"
|
|
431
|
+
},
|
|
432
|
+
"borderWidth": {
|
|
433
|
+
"$ref": "LineWidth"
|
|
434
|
+
},
|
|
435
|
+
"borderColor": {
|
|
436
|
+
"$ref": "Color"
|
|
342
437
|
},
|
|
343
438
|
"section": {
|
|
344
439
|
"type": "object",
|
|
@@ -384,7 +479,13 @@
|
|
|
384
479
|
"$ref": "Color"
|
|
385
480
|
},
|
|
386
481
|
"fontFamily": {
|
|
387
|
-
"$ref": "
|
|
482
|
+
"$ref": "FamilyName"
|
|
483
|
+
},
|
|
484
|
+
"borderWidth": {
|
|
485
|
+
"$ref": "LineWidth"
|
|
486
|
+
},
|
|
487
|
+
"borderColor": {
|
|
488
|
+
"$ref": "Color"
|
|
388
489
|
}
|
|
389
490
|
},
|
|
390
491
|
"required": [
|
|
@@ -395,7 +496,9 @@
|
|
|
395
496
|
"background",
|
|
396
497
|
"backgroundHover",
|
|
397
498
|
"backgroundActive",
|
|
398
|
-
"fontFamily"
|
|
499
|
+
"fontFamily",
|
|
500
|
+
"borderWidth",
|
|
501
|
+
"borderColor"
|
|
399
502
|
]
|
|
400
503
|
}
|
|
401
504
|
},
|
|
@@ -408,6 +511,8 @@
|
|
|
408
511
|
"background",
|
|
409
512
|
"foreground",
|
|
410
513
|
"fontFamily",
|
|
514
|
+
"borderWidth",
|
|
515
|
+
"borderColor",
|
|
411
516
|
"section"
|
|
412
517
|
]
|
|
413
518
|
}
|
|
@@ -441,6 +546,8 @@
|
|
|
441
546
|
"fontFamilySansSerif",
|
|
442
547
|
"fontFamilySerif",
|
|
443
548
|
"fontFamilyMonospace",
|
|
549
|
+
"borderRadius",
|
|
550
|
+
"borderWidth",
|
|
444
551
|
"navigation",
|
|
445
552
|
"header",
|
|
446
553
|
"form",
|
|
@@ -455,10 +562,44 @@
|
|
|
455
562
|
],
|
|
456
563
|
"$defs": {
|
|
457
564
|
"Color": {
|
|
458
|
-
"$
|
|
565
|
+
"$id": "Color",
|
|
566
|
+
"type": "string"
|
|
567
|
+
},
|
|
568
|
+
"FamilyName": {
|
|
569
|
+
"$id": "FamilyName",
|
|
570
|
+
"type": "string"
|
|
571
|
+
},
|
|
572
|
+
"Length": {
|
|
573
|
+
"$id": "Length",
|
|
574
|
+
"type": "string"
|
|
575
|
+
},
|
|
576
|
+
"Percentage": {
|
|
577
|
+
"$id": "Percentage",
|
|
578
|
+
"type": "string"
|
|
459
579
|
},
|
|
460
|
-
"
|
|
461
|
-
"$
|
|
580
|
+
"LineWidth": {
|
|
581
|
+
"$id": "LineWidth",
|
|
582
|
+
"anyOf": [
|
|
583
|
+
{
|
|
584
|
+
"type": "string"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"const": "thin",
|
|
588
|
+
"type": "string"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"const": "medium",
|
|
592
|
+
"type": "string"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"const": "thick",
|
|
596
|
+
"type": "string"
|
|
597
|
+
}
|
|
598
|
+
]
|
|
599
|
+
},
|
|
600
|
+
"BoxShadow": {
|
|
601
|
+
"$id": "BoxShadow",
|
|
602
|
+
"type": "string"
|
|
462
603
|
}
|
|
463
604
|
}
|
|
464
605
|
}
|