@next-bricks/vs 0.1.1 → 0.1.2
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/types.json +166 -1
- package/package.json +3 -3
package/dist/types.json
CHANGED
|
@@ -1 +1,166 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"vs.code-editor": {
|
|
3
|
+
"properties": [
|
|
4
|
+
{
|
|
5
|
+
"name": "name",
|
|
6
|
+
"types": {
|
|
7
|
+
"type": "union",
|
|
8
|
+
"types": [
|
|
9
|
+
{
|
|
10
|
+
"type": "keyword",
|
|
11
|
+
"value": "string"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "label",
|
|
18
|
+
"types": {
|
|
19
|
+
"type": "union",
|
|
20
|
+
"types": [
|
|
21
|
+
{
|
|
22
|
+
"type": "keyword",
|
|
23
|
+
"value": "string"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "value",
|
|
30
|
+
"types": {
|
|
31
|
+
"type": "union",
|
|
32
|
+
"types": [
|
|
33
|
+
{
|
|
34
|
+
"type": "keyword",
|
|
35
|
+
"value": "string"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "language",
|
|
42
|
+
"types": {
|
|
43
|
+
"type": "union",
|
|
44
|
+
"types": [
|
|
45
|
+
{
|
|
46
|
+
"type": "keyword",
|
|
47
|
+
"value": "string"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "theme",
|
|
54
|
+
"types": {
|
|
55
|
+
"type": "union",
|
|
56
|
+
"types": [
|
|
57
|
+
{
|
|
58
|
+
"type": "keyword",
|
|
59
|
+
"value": "string"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "required",
|
|
66
|
+
"types": {
|
|
67
|
+
"type": "union",
|
|
68
|
+
"types": [
|
|
69
|
+
{
|
|
70
|
+
"type": "keyword",
|
|
71
|
+
"value": "boolean"
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "readOnly",
|
|
78
|
+
"types": {
|
|
79
|
+
"type": "union",
|
|
80
|
+
"types": [
|
|
81
|
+
{
|
|
82
|
+
"type": "keyword",
|
|
83
|
+
"value": "boolean"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "automaticLayout",
|
|
90
|
+
"types": {
|
|
91
|
+
"type": "union",
|
|
92
|
+
"types": [
|
|
93
|
+
{
|
|
94
|
+
"type": "literal",
|
|
95
|
+
"value": "fit-container"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": "literal",
|
|
99
|
+
"value": "fit-content"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"type": "literal",
|
|
103
|
+
"value": "none"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "minLines",
|
|
110
|
+
"types": {
|
|
111
|
+
"type": "union",
|
|
112
|
+
"types": [
|
|
113
|
+
{
|
|
114
|
+
"type": "keyword",
|
|
115
|
+
"value": "number"
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "maxLines",
|
|
122
|
+
"types": {
|
|
123
|
+
"type": "union",
|
|
124
|
+
"types": [
|
|
125
|
+
{
|
|
126
|
+
"type": "keyword",
|
|
127
|
+
"value": "number"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "height",
|
|
134
|
+
"types": {
|
|
135
|
+
"type": "union",
|
|
136
|
+
"types": [
|
|
137
|
+
{
|
|
138
|
+
"type": "keyword",
|
|
139
|
+
"value": "string"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"type": "keyword",
|
|
143
|
+
"value": "number"
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
"events": [
|
|
150
|
+
{
|
|
151
|
+
"name": "code.change",
|
|
152
|
+
"types": {
|
|
153
|
+
"type": "keyword",
|
|
154
|
+
"value": "string"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "user.input",
|
|
159
|
+
"types": {
|
|
160
|
+
"type": "keyword",
|
|
161
|
+
"value": "string"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-bricks/vs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"homepage": "https://github.com/easyops-cn/next-bricks/tree/master/bricks/vs",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"postpublish": "mv package.json.bak package.json"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@next-core/build-next-bricks": "^1.
|
|
37
|
+
"@next-core/build-next-bricks": "^1.10.0",
|
|
38
38
|
"@next-core/test-next": "^1.0.6",
|
|
39
39
|
"resize-observer-polyfill": "^1.5.1"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "d24d177295f0f3edbf6d28b1d9b6ae87c2f506ec"
|
|
42
42
|
}
|