nodoku-core 0.3.0 → 0.3.12

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.
@@ -1,141 +1,141 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "definitions": {
4
-
5
- "CssProperties": {
6
- "type": "object",
7
- "additionalProperties": {
8
- "type": "string"
9
- }
10
- },
11
-
12
- "ThemeStyle": {
13
- "type": "object",
14
- "properties": {
15
- "base": {
16
- "type": "string"
17
- },
18
- "decoration": {
19
- "type": "string"
20
- }
21
- },
22
- "additionalProperties": false
23
- },
24
-
25
- "ExtendedThemeStyle": {
26
- "allOf": [
27
- {
28
- "$ref": "#/definitions/ThemeStyle"
29
- },
30
- {
31
- "type": "object",
32
- "properties": {
33
- "css": {
34
- "type": "object",
35
- "properties": {
36
- "light": {
37
- "$ref": "#/definitions/CssProperties"
38
- },
39
- "dark": {
40
- "$ref": "#/definitions/CssProperties"
41
- }
42
- },
43
- "additionalProperties": false
44
- }
45
- },
46
- "additionalProperties": false
47
- }
48
- ]
49
- },
50
-
51
- "ImageStyle": {
52
- "allOf": [
53
- {
54
- "$ref": "#/definitions/ThemeStyle"
55
- },
56
- {
57
- "type": "object",
58
- "properties": {
59
- "imageWidth": {
60
- "type": "string"
61
- }
62
- },
63
- "additionalProperties": false
64
- }
65
- ],
66
- "additionalProperties": false
67
- },
68
-
69
-
70
- "RowThemeStyle": {
71
- "allOf": [
72
- {
73
- "$ref": "#/definitions/ThemeStyle"
74
- },
75
- {
76
- "type": "object",
77
- "properties": {
78
- "rowDisplay": {
79
- "type": "string",
80
- "enum": ["flex", "grid"]
81
- },
82
- "componentHolder": {
83
- "$ref": "#/definitions/ThemeStyle"
84
- }
85
- },
86
- "additionalProperties": false
87
- }
88
- ],
89
- "additionalProperties": false
90
- },
91
-
92
-
93
-
94
- "Selector": {
95
- "type": "object",
96
- "properties": {
97
- "namespace": {
98
- "type": "string"
99
- },
100
- "tags": {
101
- "type": "array",
102
- "items": {
103
- "type": "string"
104
- }
105
- },
106
- "attributes": {
107
- "type": "object",
108
- "additionalProperties": {
109
- "type": "string"
110
- }
111
- }
112
- },
113
- "additionalProperties": false,
114
- "additionalItems": false
115
- },
116
- "ContentKey": {
117
- "oneOf": [
118
- {
119
- "type": "object",
120
- "properties": {
121
- "ns": {
122
- "type": "string",
123
- "pattern": "[\\w-]+"
124
- },
125
- "key": {
126
- "type": "string",
127
- "pattern": "[\\w-\\[\\]]+"
128
- }
129
- },
130
- "required": [
131
- "key"
132
- ],
133
- "additionalProperties": false
134
- },
135
- {
136
- "type": "string"
137
- }
138
- ]
139
- }
140
- }
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "definitions": {
4
+
5
+ "CssProperties": {
6
+ "type": "object",
7
+ "additionalProperties": {
8
+ "type": "string"
9
+ }
10
+ },
11
+
12
+ "ThemeStyle": {
13
+ "type": "object",
14
+ "properties": {
15
+ "base": {
16
+ "type": "string"
17
+ },
18
+ "decoration": {
19
+ "type": "string"
20
+ }
21
+ },
22
+ "additionalProperties": false
23
+ },
24
+
25
+ "ExtendedThemeStyle": {
26
+ "allOf": [
27
+ {
28
+ "$ref": "#/definitions/ThemeStyle"
29
+ },
30
+ {
31
+ "type": "object",
32
+ "properties": {
33
+ "css": {
34
+ "type": "object",
35
+ "properties": {
36
+ "light": {
37
+ "$ref": "#/definitions/CssProperties"
38
+ },
39
+ "dark": {
40
+ "$ref": "#/definitions/CssProperties"
41
+ }
42
+ },
43
+ "additionalProperties": false
44
+ }
45
+ },
46
+ "additionalProperties": false
47
+ }
48
+ ]
49
+ },
50
+
51
+ "ImageStyle": {
52
+ "allOf": [
53
+ {
54
+ "$ref": "#/definitions/ThemeStyle"
55
+ },
56
+ {
57
+ "type": "object",
58
+ "properties": {
59
+ "imageWidth": {
60
+ "type": "string"
61
+ }
62
+ },
63
+ "additionalProperties": false
64
+ }
65
+ ],
66
+ "additionalProperties": false
67
+ },
68
+
69
+
70
+ "RowThemeStyle": {
71
+ "allOf": [
72
+ {
73
+ "$ref": "#/definitions/ThemeStyle"
74
+ },
75
+ {
76
+ "type": "object",
77
+ "properties": {
78
+ "rowDisplay": {
79
+ "type": "string",
80
+ "enum": ["flex", "grid"]
81
+ },
82
+ "componentHolder": {
83
+ "$ref": "#/definitions/ThemeStyle"
84
+ }
85
+ },
86
+ "additionalProperties": false
87
+ }
88
+ ],
89
+ "additionalProperties": false
90
+ },
91
+
92
+
93
+
94
+ "Selector": {
95
+ "type": "object",
96
+ "properties": {
97
+ "namespace": {
98
+ "type": "string"
99
+ },
100
+ "tags": {
101
+ "type": "array",
102
+ "items": {
103
+ "type": "string"
104
+ }
105
+ },
106
+ "attributes": {
107
+ "type": "object",
108
+ "additionalProperties": {
109
+ "type": "string"
110
+ }
111
+ }
112
+ },
113
+ "additionalProperties": false,
114
+ "additionalItems": false
115
+ },
116
+ "ContentKey": {
117
+ "oneOf": [
118
+ {
119
+ "type": "object",
120
+ "properties": {
121
+ "ns": {
122
+ "type": "string",
123
+ "pattern": "[\\w-]+"
124
+ },
125
+ "key": {
126
+ "type": "string",
127
+ "pattern": "[\\w-\\[\\]]+"
128
+ }
129
+ },
130
+ "required": [
131
+ "key"
132
+ ],
133
+ "additionalProperties": false
134
+ },
135
+ {
136
+ "type": "string"
137
+ }
138
+ ]
139
+ }
140
+ }
141
141
  }