@vscode-elements/elements 2.4.0 → 2.4.1-pre.1
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/LICENSE +1 -1
- package/custom-elements.json +1220 -120
- package/dist/bundled.js +163 -164
- package/dist/includes/VscElement.d.ts +1 -0
- package/dist/includes/VscElement.d.ts.map +1 -1
- package/dist/includes/VscElement.js +16 -3
- package/dist/includes/VscElement.js.map +1 -1
- package/dist/includes/helpers.d.ts +1 -0
- package/dist/includes/helpers.d.ts.map +1 -1
- package/dist/includes/helpers.js +3 -0
- package/dist/includes/helpers.js.map +1 -1
- package/dist/includes/sizes.d.ts +12 -0
- package/dist/includes/sizes.d.ts.map +1 -0
- package/dist/includes/sizes.js +30 -0
- package/dist/includes/sizes.js.map +1 -0
- package/dist/includes/vscode-select/vscode-select-base.d.ts.map +1 -1
- package/dist/includes/vscode-select/vscode-select-base.js +1 -4
- package/dist/includes/vscode-select/vscode-select-base.js.map +1 -1
- package/dist/vscode-icon/vscode-icon.d.ts.map +1 -1
- package/dist/vscode-icon/vscode-icon.js +2 -3
- package/dist/vscode-icon/vscode-icon.js.map +1 -1
- package/dist/vscode-table/ColumnResizeController.d.ts +38 -0
- package/dist/vscode-table/ColumnResizeController.d.ts.map +1 -0
- package/dist/vscode-table/ColumnResizeController.js +146 -0
- package/dist/vscode-table/ColumnResizeController.js.map +1 -0
- package/dist/vscode-table/calculations.d.ts +3 -0
- package/dist/vscode-table/calculations.d.ts.map +1 -0
- package/dist/vscode-table/calculations.js +54 -0
- package/dist/vscode-table/calculations.js.map +1 -0
- package/dist/vscode-table/vscode-table.d.ts +11 -14
- package/dist/vscode-table/vscode-table.d.ts.map +1 -1
- package/dist/vscode-table/vscode-table.js +109 -118
- package/dist/vscode-table/vscode-table.js.map +1 -1
- package/dist/vscode-table/vscode-table.styles.d.ts +2 -0
- package/dist/vscode-table/vscode-table.styles.d.ts.map +1 -1
- package/dist/vscode-table/vscode-table.styles.js +6 -5
- package/dist/vscode-table/vscode-table.styles.js.map +1 -1
- package/dist/vscode-table-header-cell/vscode-table-header-cell.d.ts +12 -1
- package/dist/vscode-table-header-cell/vscode-table-header-cell.d.ts.map +1 -1
- package/dist/vscode-table-header-cell/vscode-table-header-cell.js +18 -0
- package/dist/vscode-table-header-cell/vscode-table-header-cell.js.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.d.ts +13 -0
- package/dist/vscode-tree-item/vscode-tree-item.d.ts.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.js +13 -0
- package/dist/vscode-tree-item/vscode-tree-item.js.map +1 -1
- package/package.json +3 -3
- package/vscode.html-custom-data.json +3 -3
- package/dist/vscode-table/helpers.d.ts +0 -2
- package/dist/vscode-table/helpers.d.ts.map +0 -1
- package/dist/vscode-table/helpers.js +0 -20
- package/dist/vscode-table/helpers.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -25,6 +25,18 @@
|
|
|
25
25
|
},
|
|
26
26
|
"description": "VSCode Elements version",
|
|
27
27
|
"readonly": true
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"kind": "method",
|
|
31
|
+
"name": "warn",
|
|
32
|
+
"parameters": [
|
|
33
|
+
{
|
|
34
|
+
"name": "message",
|
|
35
|
+
"type": {
|
|
36
|
+
"text": "string"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
]
|
|
28
40
|
}
|
|
29
41
|
],
|
|
30
42
|
"superclass": {
|
|
@@ -111,6 +123,18 @@
|
|
|
111
123
|
{
|
|
112
124
|
"kind": "function",
|
|
113
125
|
"name": "getDefaultEditorFontStack"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"kind": "function",
|
|
129
|
+
"name": "logMessage",
|
|
130
|
+
"parameters": [
|
|
131
|
+
{
|
|
132
|
+
"name": "msg",
|
|
133
|
+
"type": {
|
|
134
|
+
"text": "string"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
]
|
|
114
138
|
}
|
|
115
139
|
],
|
|
116
140
|
"exports": [
|
|
@@ -145,6 +169,165 @@
|
|
|
145
169
|
"name": "getDefaultEditorFontStack",
|
|
146
170
|
"module": "src/includes/helpers.ts"
|
|
147
171
|
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"kind": "js",
|
|
175
|
+
"name": "logMessage",
|
|
176
|
+
"declaration": {
|
|
177
|
+
"name": "logMessage",
|
|
178
|
+
"module": "src/includes/helpers.ts"
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"kind": "javascript-module",
|
|
185
|
+
"path": "src/includes/sizes.ts",
|
|
186
|
+
"declarations": [
|
|
187
|
+
{
|
|
188
|
+
"kind": "function",
|
|
189
|
+
"name": "px",
|
|
190
|
+
"return": {
|
|
191
|
+
"type": {
|
|
192
|
+
"text": "Px"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"parameters": [
|
|
196
|
+
{
|
|
197
|
+
"name": "value",
|
|
198
|
+
"type": {
|
|
199
|
+
"text": "number"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"kind": "function",
|
|
206
|
+
"name": "percent",
|
|
207
|
+
"return": {
|
|
208
|
+
"type": {
|
|
209
|
+
"text": "Percent"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"parameters": [
|
|
213
|
+
{
|
|
214
|
+
"name": "value",
|
|
215
|
+
"type": {
|
|
216
|
+
"text": "number"
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"kind": "function",
|
|
223
|
+
"name": "toPercent",
|
|
224
|
+
"return": {
|
|
225
|
+
"type": {
|
|
226
|
+
"text": "Percent"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"parameters": [
|
|
230
|
+
{
|
|
231
|
+
"name": "px",
|
|
232
|
+
"type": {
|
|
233
|
+
"text": "Px"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "container",
|
|
238
|
+
"type": {
|
|
239
|
+
"text": "Px"
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"kind": "function",
|
|
246
|
+
"name": "toPx",
|
|
247
|
+
"return": {
|
|
248
|
+
"type": {
|
|
249
|
+
"text": "Px"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"parameters": [
|
|
253
|
+
{
|
|
254
|
+
"name": "p",
|
|
255
|
+
"type": {
|
|
256
|
+
"text": "Percent"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "container",
|
|
261
|
+
"type": {
|
|
262
|
+
"text": "Px"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"kind": "function",
|
|
269
|
+
"name": "parseSizeAttributeToPercent",
|
|
270
|
+
"return": {
|
|
271
|
+
"type": {
|
|
272
|
+
"text": "Percent | null"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"parameters": [
|
|
276
|
+
{
|
|
277
|
+
"name": "raw",
|
|
278
|
+
"type": {
|
|
279
|
+
"text": "string | number"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "base",
|
|
284
|
+
"type": {
|
|
285
|
+
"text": "number"
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
]
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"exports": [
|
|
292
|
+
{
|
|
293
|
+
"kind": "js",
|
|
294
|
+
"name": "px",
|
|
295
|
+
"declaration": {
|
|
296
|
+
"name": "px",
|
|
297
|
+
"module": "src/includes/sizes.ts"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"kind": "js",
|
|
302
|
+
"name": "percent",
|
|
303
|
+
"declaration": {
|
|
304
|
+
"name": "percent",
|
|
305
|
+
"module": "src/includes/sizes.ts"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"kind": "js",
|
|
310
|
+
"name": "toPercent",
|
|
311
|
+
"declaration": {
|
|
312
|
+
"name": "toPercent",
|
|
313
|
+
"module": "src/includes/sizes.ts"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"kind": "js",
|
|
318
|
+
"name": "toPx",
|
|
319
|
+
"declaration": {
|
|
320
|
+
"name": "toPx",
|
|
321
|
+
"module": "src/includes/sizes.ts"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"kind": "js",
|
|
326
|
+
"name": "parseSizeAttributeToPercent",
|
|
327
|
+
"declaration": {
|
|
328
|
+
"name": "parseSizeAttributeToPercent",
|
|
329
|
+
"module": "src/includes/sizes.ts"
|
|
330
|
+
}
|
|
148
331
|
}
|
|
149
332
|
]
|
|
150
333
|
},
|
|
@@ -690,6 +873,22 @@
|
|
|
690
873
|
"name": "VscElement",
|
|
691
874
|
"module": "src/includes/VscElement.ts"
|
|
692
875
|
}
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"kind": "method",
|
|
879
|
+
"name": "warn",
|
|
880
|
+
"parameters": [
|
|
881
|
+
{
|
|
882
|
+
"name": "message",
|
|
883
|
+
"type": {
|
|
884
|
+
"text": "string"
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
],
|
|
888
|
+
"inheritedFrom": {
|
|
889
|
+
"name": "VscElement",
|
|
890
|
+
"module": "src/includes/VscElement.ts"
|
|
891
|
+
}
|
|
693
892
|
}
|
|
694
893
|
],
|
|
695
894
|
"attributes": [
|
|
@@ -1087,6 +1286,22 @@
|
|
|
1087
1286
|
"name": "VscElement",
|
|
1088
1287
|
"module": "src/includes/VscElement.ts"
|
|
1089
1288
|
}
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"kind": "method",
|
|
1292
|
+
"name": "warn",
|
|
1293
|
+
"parameters": [
|
|
1294
|
+
{
|
|
1295
|
+
"name": "message",
|
|
1296
|
+
"type": {
|
|
1297
|
+
"text": "string"
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
],
|
|
1301
|
+
"inheritedFrom": {
|
|
1302
|
+
"name": "VscElement",
|
|
1303
|
+
"module": "src/includes/VscElement.ts"
|
|
1304
|
+
}
|
|
1090
1305
|
}
|
|
1091
1306
|
],
|
|
1092
1307
|
"attributes": [
|
|
@@ -1336,6 +1551,22 @@
|
|
|
1336
1551
|
"name": "VscElement",
|
|
1337
1552
|
"module": "src/includes/VscElement.ts"
|
|
1338
1553
|
}
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"kind": "method",
|
|
1557
|
+
"name": "warn",
|
|
1558
|
+
"parameters": [
|
|
1559
|
+
{
|
|
1560
|
+
"name": "message",
|
|
1561
|
+
"type": {
|
|
1562
|
+
"text": "string"
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1565
|
+
],
|
|
1566
|
+
"inheritedFrom": {
|
|
1567
|
+
"name": "VscElement",
|
|
1568
|
+
"module": "src/includes/VscElement.ts"
|
|
1569
|
+
}
|
|
1339
1570
|
}
|
|
1340
1571
|
],
|
|
1341
1572
|
"superclass": {
|
|
@@ -1773,6 +2004,22 @@
|
|
|
1773
2004
|
"name": "VscElement",
|
|
1774
2005
|
"module": "src/includes/VscElement.ts"
|
|
1775
2006
|
}
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"kind": "method",
|
|
2010
|
+
"name": "warn",
|
|
2011
|
+
"parameters": [
|
|
2012
|
+
{
|
|
2013
|
+
"name": "message",
|
|
2014
|
+
"type": {
|
|
2015
|
+
"text": "string"
|
|
2016
|
+
}
|
|
2017
|
+
}
|
|
2018
|
+
],
|
|
2019
|
+
"inheritedFrom": {
|
|
2020
|
+
"name": "VscElement",
|
|
2021
|
+
"module": "src/includes/VscElement.ts"
|
|
2022
|
+
}
|
|
1776
2023
|
}
|
|
1777
2024
|
],
|
|
1778
2025
|
"events": [
|
|
@@ -1985,6 +2232,22 @@
|
|
|
1985
2232
|
"name": "VscElement",
|
|
1986
2233
|
"module": "src/includes/VscElement.ts"
|
|
1987
2234
|
}
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"kind": "method",
|
|
2238
|
+
"name": "warn",
|
|
2239
|
+
"parameters": [
|
|
2240
|
+
{
|
|
2241
|
+
"name": "message",
|
|
2242
|
+
"type": {
|
|
2243
|
+
"text": "string"
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
],
|
|
2247
|
+
"inheritedFrom": {
|
|
2248
|
+
"name": "VscElement",
|
|
2249
|
+
"module": "src/includes/VscElement.ts"
|
|
2250
|
+
}
|
|
1988
2251
|
}
|
|
1989
2252
|
],
|
|
1990
2253
|
"attributes": [
|
|
@@ -2209,6 +2472,22 @@
|
|
|
2209
2472
|
"name": "VscElement",
|
|
2210
2473
|
"module": "src/includes/VscElement.ts"
|
|
2211
2474
|
}
|
|
2475
|
+
},
|
|
2476
|
+
{
|
|
2477
|
+
"kind": "method",
|
|
2478
|
+
"name": "warn",
|
|
2479
|
+
"parameters": [
|
|
2480
|
+
{
|
|
2481
|
+
"name": "message",
|
|
2482
|
+
"type": {
|
|
2483
|
+
"text": "string"
|
|
2484
|
+
}
|
|
2485
|
+
}
|
|
2486
|
+
],
|
|
2487
|
+
"inheritedFrom": {
|
|
2488
|
+
"name": "VscElement",
|
|
2489
|
+
"module": "src/includes/VscElement.ts"
|
|
2490
|
+
}
|
|
2212
2491
|
}
|
|
2213
2492
|
],
|
|
2214
2493
|
"events": [
|
|
@@ -2535,6 +2814,22 @@
|
|
|
2535
2814
|
"name": "VscElement",
|
|
2536
2815
|
"module": "src/includes/VscElement.ts"
|
|
2537
2816
|
}
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
"kind": "method",
|
|
2820
|
+
"name": "warn",
|
|
2821
|
+
"parameters": [
|
|
2822
|
+
{
|
|
2823
|
+
"name": "message",
|
|
2824
|
+
"type": {
|
|
2825
|
+
"text": "string"
|
|
2826
|
+
}
|
|
2827
|
+
}
|
|
2828
|
+
],
|
|
2829
|
+
"inheritedFrom": {
|
|
2830
|
+
"name": "VscElement",
|
|
2831
|
+
"module": "src/includes/VscElement.ts"
|
|
2832
|
+
}
|
|
2538
2833
|
}
|
|
2539
2834
|
],
|
|
2540
2835
|
"events": [
|
|
@@ -2725,6 +3020,22 @@
|
|
|
2725
3020
|
"name": "VscElement",
|
|
2726
3021
|
"module": "src/includes/VscElement.ts"
|
|
2727
3022
|
}
|
|
3023
|
+
},
|
|
3024
|
+
{
|
|
3025
|
+
"kind": "method",
|
|
3026
|
+
"name": "warn",
|
|
3027
|
+
"parameters": [
|
|
3028
|
+
{
|
|
3029
|
+
"name": "message",
|
|
3030
|
+
"type": {
|
|
3031
|
+
"text": "string"
|
|
3032
|
+
}
|
|
3033
|
+
}
|
|
3034
|
+
],
|
|
3035
|
+
"inheritedFrom": {
|
|
3036
|
+
"name": "VscElement",
|
|
3037
|
+
"module": "src/includes/VscElement.ts"
|
|
3038
|
+
}
|
|
2728
3039
|
}
|
|
2729
3040
|
],
|
|
2730
3041
|
"attributes": [
|
|
@@ -2857,7 +3168,23 @@
|
|
|
2857
3168
|
"name": "VscElement",
|
|
2858
3169
|
"module": "src/includes/VscElement.ts"
|
|
2859
3170
|
}
|
|
2860
|
-
}
|
|
3171
|
+
},
|
|
3172
|
+
{
|
|
3173
|
+
"kind": "method",
|
|
3174
|
+
"name": "warn",
|
|
3175
|
+
"parameters": [
|
|
3176
|
+
{
|
|
3177
|
+
"name": "message",
|
|
3178
|
+
"type": {
|
|
3179
|
+
"text": "string"
|
|
3180
|
+
}
|
|
3181
|
+
}
|
|
3182
|
+
],
|
|
3183
|
+
"inheritedFrom": {
|
|
3184
|
+
"name": "VscElement",
|
|
3185
|
+
"module": "src/includes/VscElement.ts"
|
|
3186
|
+
}
|
|
3187
|
+
}
|
|
2861
3188
|
],
|
|
2862
3189
|
"attributes": [
|
|
2863
3190
|
{
|
|
@@ -3050,6 +3377,22 @@
|
|
|
3050
3377
|
"name": "VscElement",
|
|
3051
3378
|
"module": "src/includes/VscElement.ts"
|
|
3052
3379
|
}
|
|
3380
|
+
},
|
|
3381
|
+
{
|
|
3382
|
+
"kind": "method",
|
|
3383
|
+
"name": "warn",
|
|
3384
|
+
"parameters": [
|
|
3385
|
+
{
|
|
3386
|
+
"name": "message",
|
|
3387
|
+
"type": {
|
|
3388
|
+
"text": "string"
|
|
3389
|
+
}
|
|
3390
|
+
}
|
|
3391
|
+
],
|
|
3392
|
+
"inheritedFrom": {
|
|
3393
|
+
"name": "VscElement",
|
|
3394
|
+
"module": "src/includes/VscElement.ts"
|
|
3395
|
+
}
|
|
3053
3396
|
}
|
|
3054
3397
|
],
|
|
3055
3398
|
"attributes": [
|
|
@@ -3163,6 +3506,22 @@
|
|
|
3163
3506
|
"name": "VscElement",
|
|
3164
3507
|
"module": "src/includes/VscElement.ts"
|
|
3165
3508
|
}
|
|
3509
|
+
},
|
|
3510
|
+
{
|
|
3511
|
+
"kind": "method",
|
|
3512
|
+
"name": "warn",
|
|
3513
|
+
"parameters": [
|
|
3514
|
+
{
|
|
3515
|
+
"name": "message",
|
|
3516
|
+
"type": {
|
|
3517
|
+
"text": "string"
|
|
3518
|
+
}
|
|
3519
|
+
}
|
|
3520
|
+
],
|
|
3521
|
+
"inheritedFrom": {
|
|
3522
|
+
"name": "VscElement",
|
|
3523
|
+
"module": "src/includes/VscElement.ts"
|
|
3524
|
+
}
|
|
3166
3525
|
}
|
|
3167
3526
|
],
|
|
3168
3527
|
"attributes": [
|
|
@@ -3258,6 +3617,22 @@
|
|
|
3258
3617
|
"name": "VscElement",
|
|
3259
3618
|
"module": "src/includes/VscElement.ts"
|
|
3260
3619
|
}
|
|
3620
|
+
},
|
|
3621
|
+
{
|
|
3622
|
+
"kind": "method",
|
|
3623
|
+
"name": "warn",
|
|
3624
|
+
"parameters": [
|
|
3625
|
+
{
|
|
3626
|
+
"name": "message",
|
|
3627
|
+
"type": {
|
|
3628
|
+
"text": "string"
|
|
3629
|
+
}
|
|
3630
|
+
}
|
|
3631
|
+
],
|
|
3632
|
+
"inheritedFrom": {
|
|
3633
|
+
"name": "VscElement",
|
|
3634
|
+
"module": "src/includes/VscElement.ts"
|
|
3635
|
+
}
|
|
3261
3636
|
}
|
|
3262
3637
|
],
|
|
3263
3638
|
"superclass": {
|
|
@@ -3450,6 +3825,22 @@
|
|
|
3450
3825
|
"name": "VscElement",
|
|
3451
3826
|
"module": "src/includes/VscElement.ts"
|
|
3452
3827
|
}
|
|
3828
|
+
},
|
|
3829
|
+
{
|
|
3830
|
+
"kind": "method",
|
|
3831
|
+
"name": "warn",
|
|
3832
|
+
"parameters": [
|
|
3833
|
+
{
|
|
3834
|
+
"name": "message",
|
|
3835
|
+
"type": {
|
|
3836
|
+
"text": "string"
|
|
3837
|
+
}
|
|
3838
|
+
}
|
|
3839
|
+
],
|
|
3840
|
+
"inheritedFrom": {
|
|
3841
|
+
"name": "VscElement",
|
|
3842
|
+
"module": "src/includes/VscElement.ts"
|
|
3843
|
+
}
|
|
3453
3844
|
}
|
|
3454
3845
|
],
|
|
3455
3846
|
"attributes": [
|
|
@@ -3663,6 +4054,22 @@
|
|
|
3663
4054
|
"name": "VscElement",
|
|
3664
4055
|
"module": "src/includes/VscElement.ts"
|
|
3665
4056
|
}
|
|
4057
|
+
},
|
|
4058
|
+
{
|
|
4059
|
+
"kind": "method",
|
|
4060
|
+
"name": "warn",
|
|
4061
|
+
"parameters": [
|
|
4062
|
+
{
|
|
4063
|
+
"name": "message",
|
|
4064
|
+
"type": {
|
|
4065
|
+
"text": "string"
|
|
4066
|
+
}
|
|
4067
|
+
}
|
|
4068
|
+
],
|
|
4069
|
+
"inheritedFrom": {
|
|
4070
|
+
"name": "VscElement",
|
|
4071
|
+
"module": "src/includes/VscElement.ts"
|
|
4072
|
+
}
|
|
3666
4073
|
}
|
|
3667
4074
|
],
|
|
3668
4075
|
"attributes": [
|
|
@@ -4993,6 +5400,22 @@
|
|
|
4993
5400
|
"name": "VscElement",
|
|
4994
5401
|
"module": "src/includes/VscElement.ts"
|
|
4995
5402
|
}
|
|
5403
|
+
},
|
|
5404
|
+
{
|
|
5405
|
+
"kind": "method",
|
|
5406
|
+
"name": "warn",
|
|
5407
|
+
"parameters": [
|
|
5408
|
+
{
|
|
5409
|
+
"name": "message",
|
|
5410
|
+
"type": {
|
|
5411
|
+
"text": "string"
|
|
5412
|
+
}
|
|
5413
|
+
}
|
|
5414
|
+
],
|
|
5415
|
+
"inheritedFrom": {
|
|
5416
|
+
"name": "VscElement",
|
|
5417
|
+
"module": "src/includes/VscElement.ts"
|
|
5418
|
+
}
|
|
4996
5419
|
}
|
|
4997
5420
|
],
|
|
4998
5421
|
"attributes": [
|
|
@@ -5288,6 +5711,22 @@
|
|
|
5288
5711
|
"name": "VscElement",
|
|
5289
5712
|
"module": "src/includes/VscElement.ts"
|
|
5290
5713
|
}
|
|
5714
|
+
},
|
|
5715
|
+
{
|
|
5716
|
+
"kind": "method",
|
|
5717
|
+
"name": "warn",
|
|
5718
|
+
"parameters": [
|
|
5719
|
+
{
|
|
5720
|
+
"name": "message",
|
|
5721
|
+
"type": {
|
|
5722
|
+
"text": "string"
|
|
5723
|
+
}
|
|
5724
|
+
}
|
|
5725
|
+
],
|
|
5726
|
+
"inheritedFrom": {
|
|
5727
|
+
"name": "VscElement",
|
|
5728
|
+
"module": "src/includes/VscElement.ts"
|
|
5729
|
+
}
|
|
5291
5730
|
}
|
|
5292
5731
|
],
|
|
5293
5732
|
"attributes": [
|
|
@@ -5489,6 +5928,22 @@
|
|
|
5489
5928
|
"name": "VscElement",
|
|
5490
5929
|
"module": "src/includes/VscElement.ts"
|
|
5491
5930
|
}
|
|
5931
|
+
},
|
|
5932
|
+
{
|
|
5933
|
+
"kind": "method",
|
|
5934
|
+
"name": "warn",
|
|
5935
|
+
"parameters": [
|
|
5936
|
+
{
|
|
5937
|
+
"name": "message",
|
|
5938
|
+
"type": {
|
|
5939
|
+
"text": "string"
|
|
5940
|
+
}
|
|
5941
|
+
}
|
|
5942
|
+
],
|
|
5943
|
+
"inheritedFrom": {
|
|
5944
|
+
"name": "VscElement",
|
|
5945
|
+
"module": "src/includes/VscElement.ts"
|
|
5946
|
+
}
|
|
5492
5947
|
}
|
|
5493
5948
|
],
|
|
5494
5949
|
"attributes": [
|
|
@@ -5636,6 +6091,22 @@
|
|
|
5636
6091
|
"name": "VscElement",
|
|
5637
6092
|
"module": "src/includes/VscElement.ts"
|
|
5638
6093
|
}
|
|
6094
|
+
},
|
|
6095
|
+
{
|
|
6096
|
+
"kind": "method",
|
|
6097
|
+
"name": "warn",
|
|
6098
|
+
"parameters": [
|
|
6099
|
+
{
|
|
6100
|
+
"name": "message",
|
|
6101
|
+
"type": {
|
|
6102
|
+
"text": "string"
|
|
6103
|
+
}
|
|
6104
|
+
}
|
|
6105
|
+
],
|
|
6106
|
+
"inheritedFrom": {
|
|
6107
|
+
"name": "VscElement",
|
|
6108
|
+
"module": "src/includes/VscElement.ts"
|
|
6109
|
+
}
|
|
5639
6110
|
}
|
|
5640
6111
|
],
|
|
5641
6112
|
"attributes": [
|
|
@@ -6099,6 +6570,22 @@
|
|
|
6099
6570
|
"name": "VscElement",
|
|
6100
6571
|
"module": "src/includes/VscElement.ts"
|
|
6101
6572
|
}
|
|
6573
|
+
},
|
|
6574
|
+
{
|
|
6575
|
+
"kind": "method",
|
|
6576
|
+
"name": "warn",
|
|
6577
|
+
"parameters": [
|
|
6578
|
+
{
|
|
6579
|
+
"name": "message",
|
|
6580
|
+
"type": {
|
|
6581
|
+
"text": "string"
|
|
6582
|
+
}
|
|
6583
|
+
}
|
|
6584
|
+
],
|
|
6585
|
+
"inheritedFrom": {
|
|
6586
|
+
"name": "VscElement",
|
|
6587
|
+
"module": "src/includes/VscElement.ts"
|
|
6588
|
+
}
|
|
6102
6589
|
}
|
|
6103
6590
|
],
|
|
6104
6591
|
"events": [
|
|
@@ -6388,6 +6875,22 @@
|
|
|
6388
6875
|
"name": "VscElement",
|
|
6389
6876
|
"module": "src/includes/VscElement.ts"
|
|
6390
6877
|
}
|
|
6878
|
+
},
|
|
6879
|
+
{
|
|
6880
|
+
"kind": "method",
|
|
6881
|
+
"name": "warn",
|
|
6882
|
+
"parameters": [
|
|
6883
|
+
{
|
|
6884
|
+
"name": "message",
|
|
6885
|
+
"type": {
|
|
6886
|
+
"text": "string"
|
|
6887
|
+
}
|
|
6888
|
+
}
|
|
6889
|
+
],
|
|
6890
|
+
"inheritedFrom": {
|
|
6891
|
+
"name": "VscElement",
|
|
6892
|
+
"module": "src/includes/VscElement.ts"
|
|
6893
|
+
}
|
|
6391
6894
|
}
|
|
6392
6895
|
],
|
|
6393
6896
|
"events": [
|
|
@@ -6870,6 +7373,22 @@
|
|
|
6870
7373
|
"name": "VscElement",
|
|
6871
7374
|
"module": "src/includes/VscElement.ts"
|
|
6872
7375
|
}
|
|
7376
|
+
},
|
|
7377
|
+
{
|
|
7378
|
+
"kind": "method",
|
|
7379
|
+
"name": "warn",
|
|
7380
|
+
"parameters": [
|
|
7381
|
+
{
|
|
7382
|
+
"name": "message",
|
|
7383
|
+
"type": {
|
|
7384
|
+
"text": "string"
|
|
7385
|
+
}
|
|
7386
|
+
}
|
|
7387
|
+
],
|
|
7388
|
+
"inheritedFrom": {
|
|
7389
|
+
"name": "VscElement",
|
|
7390
|
+
"module": "src/includes/VscElement.ts"
|
|
7391
|
+
}
|
|
6873
7392
|
}
|
|
6874
7393
|
],
|
|
6875
7394
|
"attributes": [
|
|
@@ -8183,6 +8702,22 @@
|
|
|
8183
8702
|
"name": "VscElement",
|
|
8184
8703
|
"module": "src/includes/VscElement.ts"
|
|
8185
8704
|
}
|
|
8705
|
+
},
|
|
8706
|
+
{
|
|
8707
|
+
"kind": "method",
|
|
8708
|
+
"name": "warn",
|
|
8709
|
+
"parameters": [
|
|
8710
|
+
{
|
|
8711
|
+
"name": "message",
|
|
8712
|
+
"type": {
|
|
8713
|
+
"text": "string"
|
|
8714
|
+
}
|
|
8715
|
+
}
|
|
8716
|
+
],
|
|
8717
|
+
"inheritedFrom": {
|
|
8718
|
+
"name": "VscElement",
|
|
8719
|
+
"module": "src/includes/VscElement.ts"
|
|
8720
|
+
}
|
|
8186
8721
|
}
|
|
8187
8722
|
],
|
|
8188
8723
|
"attributes": [
|
|
@@ -8905,6 +9440,22 @@
|
|
|
8905
9440
|
"name": "VscElement",
|
|
8906
9441
|
"module": "src/includes/VscElement.ts"
|
|
8907
9442
|
}
|
|
9443
|
+
},
|
|
9444
|
+
{
|
|
9445
|
+
"kind": "method",
|
|
9446
|
+
"name": "warn",
|
|
9447
|
+
"parameters": [
|
|
9448
|
+
{
|
|
9449
|
+
"name": "message",
|
|
9450
|
+
"type": {
|
|
9451
|
+
"text": "string"
|
|
9452
|
+
}
|
|
9453
|
+
}
|
|
9454
|
+
],
|
|
9455
|
+
"inheritedFrom": {
|
|
9456
|
+
"name": "VscElement",
|
|
9457
|
+
"module": "src/includes/VscElement.ts"
|
|
9458
|
+
}
|
|
8908
9459
|
}
|
|
8909
9460
|
],
|
|
8910
9461
|
"attributes": [
|
|
@@ -9115,6 +9666,22 @@
|
|
|
9115
9666
|
"name": "VscElement",
|
|
9116
9667
|
"module": "src/includes/VscElement.ts"
|
|
9117
9668
|
}
|
|
9669
|
+
},
|
|
9670
|
+
{
|
|
9671
|
+
"kind": "method",
|
|
9672
|
+
"name": "warn",
|
|
9673
|
+
"parameters": [
|
|
9674
|
+
{
|
|
9675
|
+
"name": "message",
|
|
9676
|
+
"type": {
|
|
9677
|
+
"text": "string"
|
|
9678
|
+
}
|
|
9679
|
+
}
|
|
9680
|
+
],
|
|
9681
|
+
"inheritedFrom": {
|
|
9682
|
+
"name": "VscElement",
|
|
9683
|
+
"module": "src/includes/VscElement.ts"
|
|
9684
|
+
}
|
|
9118
9685
|
}
|
|
9119
9686
|
],
|
|
9120
9687
|
"attributes": [
|
|
@@ -9239,6 +9806,22 @@
|
|
|
9239
9806
|
"name": "VscElement",
|
|
9240
9807
|
"module": "src/includes/VscElement.ts"
|
|
9241
9808
|
}
|
|
9809
|
+
},
|
|
9810
|
+
{
|
|
9811
|
+
"kind": "method",
|
|
9812
|
+
"name": "warn",
|
|
9813
|
+
"parameters": [
|
|
9814
|
+
{
|
|
9815
|
+
"name": "message",
|
|
9816
|
+
"type": {
|
|
9817
|
+
"text": "string"
|
|
9818
|
+
}
|
|
9819
|
+
}
|
|
9820
|
+
],
|
|
9821
|
+
"inheritedFrom": {
|
|
9822
|
+
"name": "VscElement",
|
|
9823
|
+
"module": "src/includes/VscElement.ts"
|
|
9824
|
+
}
|
|
9242
9825
|
}
|
|
9243
9826
|
],
|
|
9244
9827
|
"attributes": [
|
|
@@ -9289,28 +9872,286 @@
|
|
|
9289
9872
|
},
|
|
9290
9873
|
{
|
|
9291
9874
|
"kind": "javascript-module",
|
|
9292
|
-
"path": "src/vscode-table/
|
|
9875
|
+
"path": "src/vscode-table/ColumnResizeController.ts",
|
|
9293
9876
|
"declarations": [
|
|
9294
9877
|
{
|
|
9295
|
-
"kind": "
|
|
9296
|
-
"
|
|
9297
|
-
"
|
|
9298
|
-
|
|
9299
|
-
"text": "number | null"
|
|
9300
|
-
}
|
|
9301
|
-
},
|
|
9302
|
-
"parameters": [
|
|
9878
|
+
"kind": "class",
|
|
9879
|
+
"description": "",
|
|
9880
|
+
"name": "ColumnResizeController",
|
|
9881
|
+
"members": [
|
|
9303
9882
|
{
|
|
9304
|
-
"
|
|
9883
|
+
"kind": "field",
|
|
9884
|
+
"name": "_host",
|
|
9305
9885
|
"type": {
|
|
9306
|
-
"text": "
|
|
9307
|
-
}
|
|
9886
|
+
"text": "VscodeTable"
|
|
9887
|
+
},
|
|
9888
|
+
"privacy": "private"
|
|
9308
9889
|
},
|
|
9309
9890
|
{
|
|
9310
|
-
"
|
|
9891
|
+
"kind": "field",
|
|
9892
|
+
"name": "_hostWidth",
|
|
9893
|
+
"privacy": "private"
|
|
9894
|
+
},
|
|
9895
|
+
{
|
|
9896
|
+
"kind": "field",
|
|
9897
|
+
"name": "_hostX",
|
|
9898
|
+
"privacy": "private"
|
|
9899
|
+
},
|
|
9900
|
+
{
|
|
9901
|
+
"kind": "field",
|
|
9902
|
+
"name": "_activeSplitter",
|
|
9903
|
+
"type": {
|
|
9904
|
+
"text": "SplitterElement | null"
|
|
9905
|
+
},
|
|
9906
|
+
"privacy": "private",
|
|
9907
|
+
"default": "null"
|
|
9908
|
+
},
|
|
9909
|
+
{
|
|
9910
|
+
"kind": "field",
|
|
9911
|
+
"name": "_columnMinWidths",
|
|
9912
|
+
"privacy": "private",
|
|
9913
|
+
"default": "new Map<number, Percent>()"
|
|
9914
|
+
},
|
|
9915
|
+
{
|
|
9916
|
+
"kind": "field",
|
|
9917
|
+
"name": "_columnWidths",
|
|
9918
|
+
"type": {
|
|
9919
|
+
"text": "Percent[]"
|
|
9920
|
+
},
|
|
9921
|
+
"privacy": "private",
|
|
9922
|
+
"default": "[]"
|
|
9923
|
+
},
|
|
9924
|
+
{
|
|
9925
|
+
"kind": "field",
|
|
9926
|
+
"name": "_dragState",
|
|
9927
|
+
"type": {
|
|
9928
|
+
"text": "{\n splitterIndex: number;\n pointerId: number;\n prevX: Px;\n dragOffset: Px;\n } | null"
|
|
9929
|
+
},
|
|
9930
|
+
"privacy": "private",
|
|
9931
|
+
"default": "null"
|
|
9932
|
+
},
|
|
9933
|
+
{
|
|
9934
|
+
"kind": "field",
|
|
9935
|
+
"name": "_cachedSplitterPositions",
|
|
9936
|
+
"type": {
|
|
9937
|
+
"text": "Percent[] | null"
|
|
9938
|
+
},
|
|
9939
|
+
"privacy": "private",
|
|
9940
|
+
"default": "null"
|
|
9941
|
+
},
|
|
9942
|
+
{
|
|
9943
|
+
"kind": "method",
|
|
9944
|
+
"name": "hostConnected",
|
|
9945
|
+
"return": {
|
|
9946
|
+
"type": {
|
|
9947
|
+
"text": "void"
|
|
9948
|
+
}
|
|
9949
|
+
}
|
|
9950
|
+
},
|
|
9951
|
+
{
|
|
9952
|
+
"kind": "field",
|
|
9953
|
+
"name": "isDragging",
|
|
9954
|
+
"type": {
|
|
9955
|
+
"text": "boolean"
|
|
9956
|
+
},
|
|
9957
|
+
"readonly": true
|
|
9958
|
+
},
|
|
9959
|
+
{
|
|
9960
|
+
"kind": "field",
|
|
9961
|
+
"name": "splitterPositions",
|
|
9962
|
+
"type": {
|
|
9963
|
+
"text": "Percent[]"
|
|
9964
|
+
},
|
|
9965
|
+
"readonly": true
|
|
9966
|
+
},
|
|
9967
|
+
{
|
|
9968
|
+
"kind": "method",
|
|
9969
|
+
"name": "getActiveSplitterCalculatedPosition"
|
|
9970
|
+
},
|
|
9971
|
+
{
|
|
9972
|
+
"kind": "field",
|
|
9973
|
+
"name": "columnWidths",
|
|
9974
|
+
"readonly": true
|
|
9975
|
+
},
|
|
9976
|
+
{
|
|
9977
|
+
"kind": "field",
|
|
9978
|
+
"name": "columnMinWidths",
|
|
9979
|
+
"readonly": true
|
|
9980
|
+
},
|
|
9981
|
+
{
|
|
9982
|
+
"kind": "method",
|
|
9983
|
+
"name": "saveHostDimensions"
|
|
9984
|
+
},
|
|
9985
|
+
{
|
|
9986
|
+
"kind": "method",
|
|
9987
|
+
"name": "setActiveSplitter",
|
|
9988
|
+
"parameters": [
|
|
9989
|
+
{
|
|
9990
|
+
"name": "splitter",
|
|
9991
|
+
"type": {
|
|
9992
|
+
"text": "HTMLElement"
|
|
9993
|
+
}
|
|
9994
|
+
}
|
|
9995
|
+
]
|
|
9996
|
+
},
|
|
9997
|
+
{
|
|
9998
|
+
"kind": "method",
|
|
9999
|
+
"name": "getActiveSplitter"
|
|
10000
|
+
},
|
|
10001
|
+
{
|
|
10002
|
+
"kind": "method",
|
|
10003
|
+
"name": "setColumnMinWidthAt",
|
|
10004
|
+
"parameters": [
|
|
10005
|
+
{
|
|
10006
|
+
"name": "colIndex",
|
|
10007
|
+
"type": {
|
|
10008
|
+
"text": "number"
|
|
10009
|
+
}
|
|
10010
|
+
},
|
|
10011
|
+
{
|
|
10012
|
+
"name": "value",
|
|
10013
|
+
"type": {
|
|
10014
|
+
"text": "Percent"
|
|
10015
|
+
}
|
|
10016
|
+
}
|
|
10017
|
+
]
|
|
10018
|
+
},
|
|
10019
|
+
{
|
|
10020
|
+
"kind": "method",
|
|
10021
|
+
"name": "setColumWidths",
|
|
10022
|
+
"parameters": [
|
|
10023
|
+
{
|
|
10024
|
+
"name": "widths",
|
|
10025
|
+
"type": {
|
|
10026
|
+
"text": "Percent[]"
|
|
10027
|
+
}
|
|
10028
|
+
}
|
|
10029
|
+
]
|
|
10030
|
+
},
|
|
10031
|
+
{
|
|
10032
|
+
"kind": "method",
|
|
10033
|
+
"name": "shouldDrag",
|
|
10034
|
+
"parameters": [
|
|
10035
|
+
{
|
|
10036
|
+
"name": "event",
|
|
10037
|
+
"type": {
|
|
10038
|
+
"text": "PointerEvent"
|
|
10039
|
+
}
|
|
10040
|
+
}
|
|
10041
|
+
]
|
|
10042
|
+
},
|
|
10043
|
+
{
|
|
10044
|
+
"kind": "method",
|
|
10045
|
+
"name": "startDrag",
|
|
10046
|
+
"parameters": [
|
|
10047
|
+
{
|
|
10048
|
+
"name": "event",
|
|
10049
|
+
"type": {
|
|
10050
|
+
"text": "PointerEvent"
|
|
10051
|
+
}
|
|
10052
|
+
}
|
|
10053
|
+
]
|
|
10054
|
+
},
|
|
10055
|
+
{
|
|
10056
|
+
"kind": "method",
|
|
10057
|
+
"name": "drag",
|
|
10058
|
+
"parameters": [
|
|
10059
|
+
{
|
|
10060
|
+
"name": "event",
|
|
10061
|
+
"type": {
|
|
10062
|
+
"text": "PointerEvent"
|
|
10063
|
+
}
|
|
10064
|
+
}
|
|
10065
|
+
]
|
|
10066
|
+
},
|
|
10067
|
+
{
|
|
10068
|
+
"kind": "method",
|
|
10069
|
+
"name": "stopDrag",
|
|
10070
|
+
"parameters": [
|
|
10071
|
+
{
|
|
10072
|
+
"name": "event",
|
|
10073
|
+
"type": {
|
|
10074
|
+
"text": "PointerEvent"
|
|
10075
|
+
}
|
|
10076
|
+
}
|
|
10077
|
+
]
|
|
10078
|
+
},
|
|
10079
|
+
{
|
|
10080
|
+
"kind": "method",
|
|
10081
|
+
"name": "_toPercent",
|
|
10082
|
+
"privacy": "private",
|
|
10083
|
+
"parameters": [
|
|
10084
|
+
{
|
|
10085
|
+
"name": "px",
|
|
10086
|
+
"type": {
|
|
10087
|
+
"text": "Px"
|
|
10088
|
+
}
|
|
10089
|
+
}
|
|
10090
|
+
]
|
|
10091
|
+
},
|
|
10092
|
+
{
|
|
10093
|
+
"kind": "method",
|
|
10094
|
+
"name": "_toPx",
|
|
10095
|
+
"privacy": "private",
|
|
10096
|
+
"parameters": [
|
|
10097
|
+
{
|
|
10098
|
+
"name": "percent",
|
|
10099
|
+
"type": {
|
|
10100
|
+
"text": "Percent"
|
|
10101
|
+
}
|
|
10102
|
+
}
|
|
10103
|
+
]
|
|
10104
|
+
}
|
|
10105
|
+
]
|
|
10106
|
+
}
|
|
10107
|
+
],
|
|
10108
|
+
"exports": [
|
|
10109
|
+
{
|
|
10110
|
+
"kind": "js",
|
|
10111
|
+
"name": "ColumnResizeController",
|
|
10112
|
+
"declaration": {
|
|
10113
|
+
"name": "ColumnResizeController",
|
|
10114
|
+
"module": "src/vscode-table/ColumnResizeController.ts"
|
|
10115
|
+
}
|
|
10116
|
+
}
|
|
10117
|
+
]
|
|
10118
|
+
},
|
|
10119
|
+
{
|
|
10120
|
+
"kind": "javascript-module",
|
|
10121
|
+
"path": "src/vscode-table/calculations.ts",
|
|
10122
|
+
"declarations": [
|
|
10123
|
+
{
|
|
10124
|
+
"kind": "function",
|
|
10125
|
+
"name": "calculateColumnWidths",
|
|
10126
|
+
"return": {
|
|
10127
|
+
"type": {
|
|
10128
|
+
"text": "Percent[]"
|
|
10129
|
+
}
|
|
10130
|
+
},
|
|
10131
|
+
"parameters": [
|
|
10132
|
+
{
|
|
10133
|
+
"name": "widths",
|
|
10134
|
+
"type": {
|
|
10135
|
+
"text": "Percent[]"
|
|
10136
|
+
}
|
|
10137
|
+
},
|
|
10138
|
+
{
|
|
10139
|
+
"name": "splitterIndex",
|
|
9311
10140
|
"type": {
|
|
9312
10141
|
"text": "number"
|
|
9313
10142
|
}
|
|
10143
|
+
},
|
|
10144
|
+
{
|
|
10145
|
+
"name": "delta",
|
|
10146
|
+
"type": {
|
|
10147
|
+
"text": "Percent"
|
|
10148
|
+
}
|
|
10149
|
+
},
|
|
10150
|
+
{
|
|
10151
|
+
"name": "minWidths",
|
|
10152
|
+
"type": {
|
|
10153
|
+
"text": "Map<number, Percent>"
|
|
10154
|
+
}
|
|
9314
10155
|
}
|
|
9315
10156
|
]
|
|
9316
10157
|
}
|
|
@@ -9318,10 +10159,10 @@
|
|
|
9318
10159
|
"exports": [
|
|
9319
10160
|
{
|
|
9320
10161
|
"kind": "js",
|
|
9321
|
-
"name": "
|
|
10162
|
+
"name": "calculateColumnWidths",
|
|
9322
10163
|
"declaration": {
|
|
9323
|
-
"name": "
|
|
9324
|
-
"module": "src/vscode-table/
|
|
10164
|
+
"name": "calculateColumnWidths",
|
|
10165
|
+
"module": "src/vscode-table/calculations.ts"
|
|
9325
10166
|
}
|
|
9326
10167
|
}
|
|
9327
10168
|
]
|
|
@@ -9330,16 +10171,48 @@
|
|
|
9330
10171
|
"kind": "javascript-module",
|
|
9331
10172
|
"path": "src/vscode-table/vscode-table.styles.ts",
|
|
9332
10173
|
"declarations": [
|
|
10174
|
+
{
|
|
10175
|
+
"kind": "variable",
|
|
10176
|
+
"name": "SPLITTER_HIT_WIDTH",
|
|
10177
|
+
"type": {
|
|
10178
|
+
"text": "number"
|
|
10179
|
+
},
|
|
10180
|
+
"default": "5"
|
|
10181
|
+
},
|
|
10182
|
+
{
|
|
10183
|
+
"kind": "variable",
|
|
10184
|
+
"name": "SPLITTER_VISIBLE_WIDTH",
|
|
10185
|
+
"type": {
|
|
10186
|
+
"text": "number"
|
|
10187
|
+
},
|
|
10188
|
+
"default": "1"
|
|
10189
|
+
},
|
|
9333
10190
|
{
|
|
9334
10191
|
"kind": "variable",
|
|
9335
10192
|
"name": "styles",
|
|
9336
10193
|
"type": {
|
|
9337
10194
|
"text": "CSSResultGroup"
|
|
9338
10195
|
},
|
|
9339
|
-
"default": "[ baseStyles, css` :host { display: block; --vsc-row-even-background: transparent; --vsc-row-odd-background: transparent; --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 0; --vsc-row-display: table-row; } :host([bordered]), :host([bordered-rows]) { --vsc-row-border-bottom-width: 1px; } :host([compact]) { --vsc-row-display: block; } :host([bordered][compact]), :host([bordered-rows][compact]) { --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 1px; } :host([zebra]) { --vsc-row-even-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } :host([zebra-odd]) { --vsc-row-odd-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } ::slotted(vscode-table-row) { width: 100%; } .wrapper { height: 100%; max-width: 100%; overflow: hidden; position: relative; width: 100%; } .wrapper.select-disabled { user-select: none; } .wrapper.resize-cursor { cursor: ew-resize; } .wrapper.compact-view .header-slot-wrapper { height: 0; overflow: hidden; } .scrollable { height: 100%; } .scrollable:before { background-color: transparent; content: ''; display: block; height: 1px; position: absolute; width: 100%; } .wrapper:not(.compact-view) .scrollable:not([scrolled]):before { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); } .sash { visibility: hidden; } :host([bordered-columns]) .sash, :host([bordered]) .sash { visibility: visible; } :host([resizable]) .wrapper:hover .sash { visibility: visible; } .sash { height: 100%; position: absolute; top: 0; width: 1px; } .wrapper.compact-view .sash { display: none; } .sash.resizable { cursor: ew-resize; } .sash-visible { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); height: 100
|
|
10196
|
+
"default": "[ baseStyles, css` :host { display: block; --vsc-row-even-background: transparent; --vsc-row-odd-background: transparent; --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 0; --vsc-row-display: table-row; } :host([bordered]), :host([bordered-rows]) { --vsc-row-border-bottom-width: 1px; } :host([compact]) { --vsc-row-display: block; } :host([bordered][compact]), :host([bordered-rows][compact]) { --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 1px; } :host([zebra]) { --vsc-row-even-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } :host([zebra-odd]) { --vsc-row-odd-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } ::slotted(vscode-table-row) { width: 100%; } .wrapper { height: 100%; max-width: 100%; overflow: hidden; position: relative; width: 100%; } .wrapper.select-disabled { user-select: none; } .wrapper.resize-cursor { cursor: ew-resize; } .wrapper.compact-view .header-slot-wrapper { height: 0; overflow: hidden; } .scrollable { height: 100%; } .scrollable:before { background-color: transparent; content: ''; display: block; height: 1px; position: absolute; width: 100%; } .wrapper:not(.compact-view) .scrollable:not([scrolled]):before { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); } .sash { visibility: hidden; } :host([bordered-columns]) .sash, :host([bordered]) .sash { visibility: visible; } :host([resizable]) .wrapper:hover .sash { visibility: visible; } .sash { height: 100%; position: absolute; top: 0; width: 1px; } .wrapper.compact-view .sash { display: none; } .sash.resizable { cursor: ew-resize; } .sash-visible { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); height: calc(100% - 30px); position: absolute; top: 30px; width: ${SPLITTER_VISIBLE_WIDTH}px; } .sash.hover .sash-visible { background-color: var(--vscode-sash-hoverBorder, #0078d4); transition: background-color 50ms linear 300ms; } .sash .sash-clickable { height: 100%; left: ${0 - (SPLITTER_HIT_WIDTH - SPLITTER_VISIBLE_WIDTH) / 2}px; position: absolute; width: ${SPLITTER_HIT_WIDTH}px; } `, ]"
|
|
9340
10197
|
}
|
|
9341
10198
|
],
|
|
9342
10199
|
"exports": [
|
|
10200
|
+
{
|
|
10201
|
+
"kind": "js",
|
|
10202
|
+
"name": "SPLITTER_HIT_WIDTH",
|
|
10203
|
+
"declaration": {
|
|
10204
|
+
"name": "SPLITTER_HIT_WIDTH",
|
|
10205
|
+
"module": "src/vscode-table/vscode-table.styles.ts"
|
|
10206
|
+
}
|
|
10207
|
+
},
|
|
10208
|
+
{
|
|
10209
|
+
"kind": "js",
|
|
10210
|
+
"name": "SPLITTER_VISIBLE_WIDTH",
|
|
10211
|
+
"declaration": {
|
|
10212
|
+
"name": "SPLITTER_VISIBLE_WIDTH",
|
|
10213
|
+
"module": "src/vscode-table/vscode-table.styles.ts"
|
|
10214
|
+
}
|
|
10215
|
+
},
|
|
9343
10216
|
{
|
|
9344
10217
|
"kind": "js",
|
|
9345
10218
|
"name": "default",
|
|
@@ -9486,14 +10359,6 @@
|
|
|
9486
10359
|
"attribute": "zebra-odd",
|
|
9487
10360
|
"reflects": true
|
|
9488
10361
|
},
|
|
9489
|
-
{
|
|
9490
|
-
"kind": "field",
|
|
9491
|
-
"name": "_bodySlot",
|
|
9492
|
-
"type": {
|
|
9493
|
-
"text": "HTMLSlotElement"
|
|
9494
|
-
},
|
|
9495
|
-
"privacy": "private"
|
|
9496
|
-
},
|
|
9497
10362
|
{
|
|
9498
10363
|
"kind": "field",
|
|
9499
10364
|
"name": "_headerElement",
|
|
@@ -9613,24 +10478,6 @@
|
|
|
9613
10478
|
"privacy": "private",
|
|
9614
10479
|
"default": "-1"
|
|
9615
10480
|
},
|
|
9616
|
-
{
|
|
9617
|
-
"kind": "field",
|
|
9618
|
-
"name": "_activeSashCursorOffset",
|
|
9619
|
-
"type": {
|
|
9620
|
-
"text": "number"
|
|
9621
|
-
},
|
|
9622
|
-
"privacy": "private",
|
|
9623
|
-
"default": "0"
|
|
9624
|
-
},
|
|
9625
|
-
{
|
|
9626
|
-
"kind": "field",
|
|
9627
|
-
"name": "_componentX",
|
|
9628
|
-
"type": {
|
|
9629
|
-
"text": "number"
|
|
9630
|
-
},
|
|
9631
|
-
"privacy": "private",
|
|
9632
|
-
"default": "0"
|
|
9633
|
-
},
|
|
9634
10481
|
{
|
|
9635
10482
|
"kind": "field",
|
|
9636
10483
|
"name": "_componentH",
|
|
@@ -9669,22 +10516,6 @@
|
|
|
9669
10516
|
"default": "[]",
|
|
9670
10517
|
"description": "Cached querySelectorAll result. Updated when the body slot changes.\nIt shouldn't be used directly, check the \"_getCellsOfFirstRow\" function."
|
|
9671
10518
|
},
|
|
9672
|
-
{
|
|
9673
|
-
"kind": "field",
|
|
9674
|
-
"name": "_cellsToResize",
|
|
9675
|
-
"type": {
|
|
9676
|
-
"text": "VscodeTableCell[]"
|
|
9677
|
-
},
|
|
9678
|
-
"privacy": "private"
|
|
9679
|
-
},
|
|
9680
|
-
{
|
|
9681
|
-
"kind": "field",
|
|
9682
|
-
"name": "_headerCellsToResize",
|
|
9683
|
-
"type": {
|
|
9684
|
-
"text": "VscodeTableHeaderCell[]"
|
|
9685
|
-
},
|
|
9686
|
-
"privacy": "private"
|
|
9687
|
-
},
|
|
9688
10519
|
{
|
|
9689
10520
|
"kind": "field",
|
|
9690
10521
|
"name": "_prevHeaderHeight",
|
|
@@ -9704,30 +10535,10 @@
|
|
|
9704
10535
|
"default": "0"
|
|
9705
10536
|
},
|
|
9706
10537
|
{
|
|
9707
|
-
"kind": "
|
|
9708
|
-
"name": "
|
|
9709
|
-
"privacy": "private",
|
|
9710
|
-
"parameters": [
|
|
9711
|
-
{
|
|
9712
|
-
"name": "px",
|
|
9713
|
-
"type": {
|
|
9714
|
-
"text": "number"
|
|
9715
|
-
}
|
|
9716
|
-
}
|
|
9717
|
-
]
|
|
9718
|
-
},
|
|
9719
|
-
{
|
|
9720
|
-
"kind": "method",
|
|
9721
|
-
"name": "_percent2Px",
|
|
10538
|
+
"kind": "field",
|
|
10539
|
+
"name": "_columnResizeController",
|
|
9722
10540
|
"privacy": "private",
|
|
9723
|
-
"
|
|
9724
|
-
{
|
|
9725
|
-
"name": "percent",
|
|
9726
|
-
"type": {
|
|
9727
|
-
"text": "number"
|
|
9728
|
-
}
|
|
9729
|
-
}
|
|
9730
|
-
]
|
|
10541
|
+
"default": "new ColumnResizeController(this)"
|
|
9731
10542
|
},
|
|
9732
10543
|
{
|
|
9733
10544
|
"kind": "method",
|
|
@@ -9783,7 +10594,7 @@
|
|
|
9783
10594
|
},
|
|
9784
10595
|
{
|
|
9785
10596
|
"kind": "method",
|
|
9786
|
-
"name": "
|
|
10597
|
+
"name": "_calculateInitialColumnWidths",
|
|
9787
10598
|
"privacy": "private",
|
|
9788
10599
|
"return": {
|
|
9789
10600
|
"type": {
|
|
@@ -9855,6 +10666,19 @@
|
|
|
9855
10666
|
"name": "_toggleCompactView",
|
|
9856
10667
|
"privacy": "private"
|
|
9857
10668
|
},
|
|
10669
|
+
{
|
|
10670
|
+
"kind": "method",
|
|
10671
|
+
"name": "_stopDrag",
|
|
10672
|
+
"privacy": "private",
|
|
10673
|
+
"parameters": [
|
|
10674
|
+
{
|
|
10675
|
+
"name": "event",
|
|
10676
|
+
"type": {
|
|
10677
|
+
"text": "PointerEvent"
|
|
10678
|
+
}
|
|
10679
|
+
}
|
|
10680
|
+
]
|
|
10681
|
+
},
|
|
9858
10682
|
{
|
|
9859
10683
|
"kind": "method",
|
|
9860
10684
|
"name": "_onDefaultSlotChange",
|
|
@@ -9898,59 +10722,46 @@
|
|
|
9898
10722
|
},
|
|
9899
10723
|
{
|
|
9900
10724
|
"kind": "method",
|
|
9901
|
-
"name": "
|
|
9902
|
-
"privacy": "private",
|
|
9903
|
-
"parameters": [
|
|
9904
|
-
{
|
|
9905
|
-
"name": "event",
|
|
9906
|
-
"type": {
|
|
9907
|
-
"text": "MouseEvent"
|
|
9908
|
-
}
|
|
9909
|
-
}
|
|
9910
|
-
]
|
|
9911
|
-
},
|
|
9912
|
-
{
|
|
9913
|
-
"kind": "method",
|
|
9914
|
-
"name": "_updateActiveSashPosition",
|
|
10725
|
+
"name": "_resizeColumns",
|
|
9915
10726
|
"privacy": "private",
|
|
9916
10727
|
"parameters": [
|
|
9917
10728
|
{
|
|
9918
|
-
"name": "
|
|
9919
|
-
"
|
|
9920
|
-
"text": "number"
|
|
9921
|
-
}
|
|
10729
|
+
"name": "resizeBodyCells",
|
|
10730
|
+
"default": "true"
|
|
9922
10731
|
}
|
|
9923
10732
|
]
|
|
9924
10733
|
},
|
|
9925
10734
|
{
|
|
9926
10735
|
"kind": "method",
|
|
9927
|
-
"name": "
|
|
9928
|
-
"privacy": "private",
|
|
9929
|
-
"return": {
|
|
9930
|
-
"type": {
|
|
9931
|
-
"text": "{\n sashPos: number;\n prevSashPos: number;\n nextSashPos: number;\n }"
|
|
9932
|
-
}
|
|
9933
|
-
}
|
|
9934
|
-
},
|
|
9935
|
-
{
|
|
9936
|
-
"kind": "method",
|
|
9937
|
-
"name": "_resizeColumns",
|
|
10736
|
+
"name": "_handleSplitterPointerDown",
|
|
9938
10737
|
"privacy": "private",
|
|
9939
10738
|
"parameters": [
|
|
9940
|
-
{
|
|
9941
|
-
"name": "
|
|
9942
|
-
"
|
|
10739
|
+
{
|
|
10740
|
+
"name": "event",
|
|
10741
|
+
"type": {
|
|
10742
|
+
"text": "PointerEvent"
|
|
10743
|
+
}
|
|
9943
10744
|
}
|
|
9944
10745
|
]
|
|
9945
10746
|
},
|
|
9946
10747
|
{
|
|
9947
10748
|
"kind": "field",
|
|
9948
|
-
"name": "
|
|
10749
|
+
"name": "_handleSplitterPointerMove",
|
|
10750
|
+
"privacy": "private"
|
|
10751
|
+
},
|
|
10752
|
+
{
|
|
10753
|
+
"kind": "field",
|
|
10754
|
+
"name": "_handleSplitterPointerUp",
|
|
10755
|
+
"privacy": "private"
|
|
10756
|
+
},
|
|
10757
|
+
{
|
|
10758
|
+
"kind": "field",
|
|
10759
|
+
"name": "_handleSplitterPointerCancel",
|
|
9949
10760
|
"privacy": "private"
|
|
9950
10761
|
},
|
|
9951
10762
|
{
|
|
9952
10763
|
"kind": "field",
|
|
9953
|
-
"name": "
|
|
10764
|
+
"name": "_handleMinColumnWidthChange",
|
|
9954
10765
|
"privacy": "private"
|
|
9955
10766
|
},
|
|
9956
10767
|
{
|
|
@@ -9965,6 +10776,22 @@
|
|
|
9965
10776
|
"name": "VscElement",
|
|
9966
10777
|
"module": "src/includes/VscElement.ts"
|
|
9967
10778
|
}
|
|
10779
|
+
},
|
|
10780
|
+
{
|
|
10781
|
+
"kind": "method",
|
|
10782
|
+
"name": "warn",
|
|
10783
|
+
"parameters": [
|
|
10784
|
+
{
|
|
10785
|
+
"name": "message",
|
|
10786
|
+
"type": {
|
|
10787
|
+
"text": "string"
|
|
10788
|
+
}
|
|
10789
|
+
}
|
|
10790
|
+
],
|
|
10791
|
+
"inheritedFrom": {
|
|
10792
|
+
"name": "VscElement",
|
|
10793
|
+
"module": "src/includes/VscElement.ts"
|
|
10794
|
+
}
|
|
9968
10795
|
}
|
|
9969
10796
|
],
|
|
9970
10797
|
"attributes": [
|
|
@@ -10135,6 +10962,22 @@
|
|
|
10135
10962
|
"name": "VscElement",
|
|
10136
10963
|
"module": "src/includes/VscElement.ts"
|
|
10137
10964
|
}
|
|
10965
|
+
},
|
|
10966
|
+
{
|
|
10967
|
+
"kind": "method",
|
|
10968
|
+
"name": "warn",
|
|
10969
|
+
"parameters": [
|
|
10970
|
+
{
|
|
10971
|
+
"name": "message",
|
|
10972
|
+
"type": {
|
|
10973
|
+
"text": "string"
|
|
10974
|
+
}
|
|
10975
|
+
}
|
|
10976
|
+
],
|
|
10977
|
+
"inheritedFrom": {
|
|
10978
|
+
"name": "VscElement",
|
|
10979
|
+
"module": "src/includes/VscElement.ts"
|
|
10980
|
+
}
|
|
10138
10981
|
}
|
|
10139
10982
|
],
|
|
10140
10983
|
"superclass": {
|
|
@@ -10248,6 +11091,22 @@
|
|
|
10248
11091
|
"name": "VscElement",
|
|
10249
11092
|
"module": "src/includes/VscElement.ts"
|
|
10250
11093
|
}
|
|
11094
|
+
},
|
|
11095
|
+
{
|
|
11096
|
+
"kind": "method",
|
|
11097
|
+
"name": "warn",
|
|
11098
|
+
"parameters": [
|
|
11099
|
+
{
|
|
11100
|
+
"name": "message",
|
|
11101
|
+
"type": {
|
|
11102
|
+
"text": "string"
|
|
11103
|
+
}
|
|
11104
|
+
}
|
|
11105
|
+
],
|
|
11106
|
+
"inheritedFrom": {
|
|
11107
|
+
"name": "VscElement",
|
|
11108
|
+
"module": "src/includes/VscElement.ts"
|
|
11109
|
+
}
|
|
10251
11110
|
}
|
|
10252
11111
|
],
|
|
10253
11112
|
"attributes": [
|
|
@@ -10349,6 +11208,22 @@
|
|
|
10349
11208
|
"name": "VscElement",
|
|
10350
11209
|
"module": "src/includes/VscElement.ts"
|
|
10351
11210
|
}
|
|
11211
|
+
},
|
|
11212
|
+
{
|
|
11213
|
+
"kind": "method",
|
|
11214
|
+
"name": "warn",
|
|
11215
|
+
"parameters": [
|
|
11216
|
+
{
|
|
11217
|
+
"name": "message",
|
|
11218
|
+
"type": {
|
|
11219
|
+
"text": "string"
|
|
11220
|
+
}
|
|
11221
|
+
}
|
|
11222
|
+
],
|
|
11223
|
+
"inheritedFrom": {
|
|
11224
|
+
"name": "VscElement",
|
|
11225
|
+
"module": "src/includes/VscElement.ts"
|
|
11226
|
+
}
|
|
10352
11227
|
}
|
|
10353
11228
|
],
|
|
10354
11229
|
"superclass": {
|
|
@@ -10425,6 +11300,15 @@
|
|
|
10425
11300
|
}
|
|
10426
11301
|
],
|
|
10427
11302
|
"members": [
|
|
11303
|
+
{
|
|
11304
|
+
"kind": "field",
|
|
11305
|
+
"name": "minWidth",
|
|
11306
|
+
"type": {
|
|
11307
|
+
"text": "string"
|
|
11308
|
+
},
|
|
11309
|
+
"default": "'0'",
|
|
11310
|
+
"attribute": "min-width"
|
|
11311
|
+
},
|
|
10428
11312
|
{
|
|
10429
11313
|
"kind": "field",
|
|
10430
11314
|
"name": "version",
|
|
@@ -10437,6 +11321,32 @@
|
|
|
10437
11321
|
"name": "VscElement",
|
|
10438
11322
|
"module": "src/includes/VscElement.ts"
|
|
10439
11323
|
}
|
|
11324
|
+
},
|
|
11325
|
+
{
|
|
11326
|
+
"kind": "method",
|
|
11327
|
+
"name": "warn",
|
|
11328
|
+
"parameters": [
|
|
11329
|
+
{
|
|
11330
|
+
"name": "message",
|
|
11331
|
+
"type": {
|
|
11332
|
+
"text": "string"
|
|
11333
|
+
}
|
|
11334
|
+
}
|
|
11335
|
+
],
|
|
11336
|
+
"inheritedFrom": {
|
|
11337
|
+
"name": "VscElement",
|
|
11338
|
+
"module": "src/includes/VscElement.ts"
|
|
11339
|
+
}
|
|
11340
|
+
}
|
|
11341
|
+
],
|
|
11342
|
+
"attributes": [
|
|
11343
|
+
{
|
|
11344
|
+
"name": "min-width",
|
|
11345
|
+
"type": {
|
|
11346
|
+
"text": "string"
|
|
11347
|
+
},
|
|
11348
|
+
"default": "'0'",
|
|
11349
|
+
"fieldName": "minWidth"
|
|
10440
11350
|
}
|
|
10441
11351
|
],
|
|
10442
11352
|
"superclass": {
|
|
@@ -10517,6 +11427,22 @@
|
|
|
10517
11427
|
"name": "VscElement",
|
|
10518
11428
|
"module": "src/includes/VscElement.ts"
|
|
10519
11429
|
}
|
|
11430
|
+
},
|
|
11431
|
+
{
|
|
11432
|
+
"kind": "method",
|
|
11433
|
+
"name": "warn",
|
|
11434
|
+
"parameters": [
|
|
11435
|
+
{
|
|
11436
|
+
"name": "message",
|
|
11437
|
+
"type": {
|
|
11438
|
+
"text": "string"
|
|
11439
|
+
}
|
|
11440
|
+
}
|
|
11441
|
+
],
|
|
11442
|
+
"inheritedFrom": {
|
|
11443
|
+
"name": "VscElement",
|
|
11444
|
+
"module": "src/includes/VscElement.ts"
|
|
11445
|
+
}
|
|
10520
11446
|
}
|
|
10521
11447
|
],
|
|
10522
11448
|
"superclass": {
|
|
@@ -10761,6 +11687,22 @@
|
|
|
10761
11687
|
"name": "VscElement",
|
|
10762
11688
|
"module": "src/includes/VscElement.ts"
|
|
10763
11689
|
}
|
|
11690
|
+
},
|
|
11691
|
+
{
|
|
11692
|
+
"kind": "method",
|
|
11693
|
+
"name": "warn",
|
|
11694
|
+
"parameters": [
|
|
11695
|
+
{
|
|
11696
|
+
"name": "message",
|
|
11697
|
+
"type": {
|
|
11698
|
+
"text": "string"
|
|
11699
|
+
}
|
|
11700
|
+
}
|
|
11701
|
+
],
|
|
11702
|
+
"inheritedFrom": {
|
|
11703
|
+
"name": "VscElement",
|
|
11704
|
+
"module": "src/includes/VscElement.ts"
|
|
11705
|
+
}
|
|
10764
11706
|
}
|
|
10765
11707
|
],
|
|
10766
11708
|
"events": [
|
|
@@ -11254,6 +12196,22 @@
|
|
|
11254
12196
|
"name": "VscElement",
|
|
11255
12197
|
"module": "src/includes/VscElement.ts"
|
|
11256
12198
|
}
|
|
12199
|
+
},
|
|
12200
|
+
{
|
|
12201
|
+
"kind": "method",
|
|
12202
|
+
"name": "warn",
|
|
12203
|
+
"parameters": [
|
|
12204
|
+
{
|
|
12205
|
+
"name": "message",
|
|
12206
|
+
"type": {
|
|
12207
|
+
"text": "string"
|
|
12208
|
+
}
|
|
12209
|
+
}
|
|
12210
|
+
],
|
|
12211
|
+
"inheritedFrom": {
|
|
12212
|
+
"name": "VscElement",
|
|
12213
|
+
"module": "src/includes/VscElement.ts"
|
|
12214
|
+
}
|
|
11257
12215
|
}
|
|
11258
12216
|
],
|
|
11259
12217
|
"events": [
|
|
@@ -11871,6 +12829,22 @@
|
|
|
11871
12829
|
"name": "VscElement",
|
|
11872
12830
|
"module": "src/includes/VscElement.ts"
|
|
11873
12831
|
}
|
|
12832
|
+
},
|
|
12833
|
+
{
|
|
12834
|
+
"kind": "method",
|
|
12835
|
+
"name": "warn",
|
|
12836
|
+
"parameters": [
|
|
12837
|
+
{
|
|
12838
|
+
"name": "message",
|
|
12839
|
+
"type": {
|
|
12840
|
+
"text": "string"
|
|
12841
|
+
}
|
|
12842
|
+
}
|
|
12843
|
+
],
|
|
12844
|
+
"inheritedFrom": {
|
|
12845
|
+
"name": "VscElement",
|
|
12846
|
+
"module": "src/includes/VscElement.ts"
|
|
12847
|
+
}
|
|
11874
12848
|
}
|
|
11875
12849
|
],
|
|
11876
12850
|
"events": [
|
|
@@ -12180,6 +13154,22 @@
|
|
|
12180
13154
|
"name": "VscElement",
|
|
12181
13155
|
"module": "src/includes/VscElement.ts"
|
|
12182
13156
|
}
|
|
13157
|
+
},
|
|
13158
|
+
{
|
|
13159
|
+
"kind": "method",
|
|
13160
|
+
"name": "warn",
|
|
13161
|
+
"parameters": [
|
|
13162
|
+
{
|
|
13163
|
+
"name": "message",
|
|
13164
|
+
"type": {
|
|
13165
|
+
"text": "string"
|
|
13166
|
+
}
|
|
13167
|
+
}
|
|
13168
|
+
],
|
|
13169
|
+
"inheritedFrom": {
|
|
13170
|
+
"name": "VscElement",
|
|
13171
|
+
"module": "src/includes/VscElement.ts"
|
|
13172
|
+
}
|
|
12183
13173
|
}
|
|
12184
13174
|
],
|
|
12185
13175
|
"events": [
|
|
@@ -12296,6 +13286,22 @@
|
|
|
12296
13286
|
"name": "VscElement",
|
|
12297
13287
|
"module": "src/includes/VscElement.ts"
|
|
12298
13288
|
}
|
|
13289
|
+
},
|
|
13290
|
+
{
|
|
13291
|
+
"kind": "method",
|
|
13292
|
+
"name": "warn",
|
|
13293
|
+
"parameters": [
|
|
13294
|
+
{
|
|
13295
|
+
"name": "message",
|
|
13296
|
+
"type": {
|
|
13297
|
+
"text": "string"
|
|
13298
|
+
}
|
|
13299
|
+
}
|
|
13300
|
+
],
|
|
13301
|
+
"inheritedFrom": {
|
|
13302
|
+
"name": "VscElement",
|
|
13303
|
+
"module": "src/includes/VscElement.ts"
|
|
13304
|
+
}
|
|
12299
13305
|
}
|
|
12300
13306
|
],
|
|
12301
13307
|
"superclass": {
|
|
@@ -12825,6 +13831,22 @@
|
|
|
12825
13831
|
"name": "VscElement",
|
|
12826
13832
|
"module": "src/includes/VscElement.ts"
|
|
12827
13833
|
}
|
|
13834
|
+
},
|
|
13835
|
+
{
|
|
13836
|
+
"kind": "method",
|
|
13837
|
+
"name": "warn",
|
|
13838
|
+
"parameters": [
|
|
13839
|
+
{
|
|
13840
|
+
"name": "message",
|
|
13841
|
+
"type": {
|
|
13842
|
+
"text": "string"
|
|
13843
|
+
}
|
|
13844
|
+
}
|
|
13845
|
+
],
|
|
13846
|
+
"inheritedFrom": {
|
|
13847
|
+
"name": "VscElement",
|
|
13848
|
+
"module": "src/includes/VscElement.ts"
|
|
13849
|
+
}
|
|
12828
13850
|
}
|
|
12829
13851
|
],
|
|
12830
13852
|
"attributes": [
|
|
@@ -12947,8 +13969,38 @@
|
|
|
12947
13969
|
"declarations": [
|
|
12948
13970
|
{
|
|
12949
13971
|
"kind": "class",
|
|
12950
|
-
"description": "",
|
|
13972
|
+
"description": "Represents an item in a Tree component.",
|
|
12951
13973
|
"name": "VscodeTreeItem",
|
|
13974
|
+
"slots": [
|
|
13975
|
+
{
|
|
13976
|
+
"description": "Main content",
|
|
13977
|
+
"name": ""
|
|
13978
|
+
},
|
|
13979
|
+
{
|
|
13980
|
+
"description": "Custom icon for a closed branch item.",
|
|
13981
|
+
"name": "icon-branch"
|
|
13982
|
+
},
|
|
13983
|
+
{
|
|
13984
|
+
"description": "Custom icon for an opened branch item.",
|
|
13985
|
+
"name": "icon-branch-opened"
|
|
13986
|
+
},
|
|
13987
|
+
{
|
|
13988
|
+
"description": "Custom icon for a leaf item.",
|
|
13989
|
+
"name": "icon-leaf"
|
|
13990
|
+
},
|
|
13991
|
+
{
|
|
13992
|
+
"description": "Description of the item. Displayed with a smaller font size and a less prominent color.",
|
|
13993
|
+
"name": "description"
|
|
13994
|
+
},
|
|
13995
|
+
{
|
|
13996
|
+
"description": "Container for action buttons.",
|
|
13997
|
+
"name": "actions"
|
|
13998
|
+
},
|
|
13999
|
+
{
|
|
14000
|
+
"description": "Container for small decorative elements aligned to the right edge of the item.",
|
|
14001
|
+
"name": "decoration"
|
|
14002
|
+
}
|
|
14003
|
+
],
|
|
12952
14004
|
"members": [
|
|
12953
14005
|
{
|
|
12954
14006
|
"kind": "field",
|
|
@@ -13437,6 +14489,22 @@
|
|
|
13437
14489
|
"name": "VscElement",
|
|
13438
14490
|
"module": "src/includes/VscElement.ts"
|
|
13439
14491
|
}
|
|
14492
|
+
},
|
|
14493
|
+
{
|
|
14494
|
+
"kind": "method",
|
|
14495
|
+
"name": "warn",
|
|
14496
|
+
"parameters": [
|
|
14497
|
+
{
|
|
14498
|
+
"name": "message",
|
|
14499
|
+
"type": {
|
|
14500
|
+
"text": "string"
|
|
14501
|
+
}
|
|
14502
|
+
}
|
|
14503
|
+
],
|
|
14504
|
+
"inheritedFrom": {
|
|
14505
|
+
"name": "VscElement",
|
|
14506
|
+
"module": "src/includes/VscElement.ts"
|
|
14507
|
+
}
|
|
13440
14508
|
}
|
|
13441
14509
|
],
|
|
13442
14510
|
"attributes": [
|
|
@@ -13500,7 +14568,7 @@
|
|
|
13500
14568
|
"name": "VscElement",
|
|
13501
14569
|
"module": "/src/includes/VscElement.js"
|
|
13502
14570
|
},
|
|
13503
|
-
"tagName": "vscode-tree
|
|
14571
|
+
"tagName": "vscode-tree",
|
|
13504
14572
|
"customElement": true
|
|
13505
14573
|
}
|
|
13506
14574
|
],
|
|
@@ -13573,6 +14641,22 @@
|
|
|
13573
14641
|
"name": "VscElement",
|
|
13574
14642
|
"module": "src/includes/VscElement.ts"
|
|
13575
14643
|
}
|
|
14644
|
+
},
|
|
14645
|
+
{
|
|
14646
|
+
"kind": "method",
|
|
14647
|
+
"name": "warn",
|
|
14648
|
+
"parameters": [
|
|
14649
|
+
{
|
|
14650
|
+
"name": "message",
|
|
14651
|
+
"type": {
|
|
14652
|
+
"text": "string"
|
|
14653
|
+
}
|
|
14654
|
+
}
|
|
14655
|
+
],
|
|
14656
|
+
"inheritedFrom": {
|
|
14657
|
+
"name": "VscElement",
|
|
14658
|
+
"module": "src/includes/VscElement.ts"
|
|
14659
|
+
}
|
|
13576
14660
|
}
|
|
13577
14661
|
],
|
|
13578
14662
|
"attributes": [
|
|
@@ -15179,6 +16263,22 @@
|
|
|
15179
16263
|
"name": "VscElement",
|
|
15180
16264
|
"module": "src/includes/VscElement.ts"
|
|
15181
16265
|
}
|
|
16266
|
+
},
|
|
16267
|
+
{
|
|
16268
|
+
"kind": "method",
|
|
16269
|
+
"name": "warn",
|
|
16270
|
+
"parameters": [
|
|
16271
|
+
{
|
|
16272
|
+
"name": "message",
|
|
16273
|
+
"type": {
|
|
16274
|
+
"text": "string"
|
|
16275
|
+
}
|
|
16276
|
+
}
|
|
16277
|
+
],
|
|
16278
|
+
"inheritedFrom": {
|
|
16279
|
+
"name": "VscElement",
|
|
16280
|
+
"module": "src/includes/VscElement.ts"
|
|
16281
|
+
}
|
|
15182
16282
|
}
|
|
15183
16283
|
],
|
|
15184
16284
|
"events": [
|