@vscode-elements/elements 1.6.2 → 1.6.3-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.
Files changed (29) hide show
  1. package/custom-elements.json +195 -37
  2. package/dist/bundled.js +46 -13
  3. package/dist/includes/VscElement.d.ts.map +1 -1
  4. package/dist/includes/VscElement.js +1 -1
  5. package/dist/includes/VscElement.js.map +1 -1
  6. package/dist/includes/vscode-select/styles.d.ts.map +1 -1
  7. package/dist/includes/vscode-select/styles.js +12 -0
  8. package/dist/includes/vscode-select/styles.js.map +1 -1
  9. package/dist/includes/vscode-select/vscode-select-base.d.ts +4 -0
  10. package/dist/includes/vscode-select/vscode-select-base.d.ts.map +1 -1
  11. package/dist/includes/vscode-select/vscode-select-base.js +9 -1
  12. package/dist/includes/vscode-select/vscode-select-base.js.map +1 -1
  13. package/dist/vscode-button/vscode-button.d.ts +16 -0
  14. package/dist/vscode-button/vscode-button.d.ts.map +1 -1
  15. package/dist/vscode-button/vscode-button.js +33 -1
  16. package/dist/vscode-button/vscode-button.js.map +1 -1
  17. package/dist/vscode-button/vscode-button.styles.d.ts.map +1 -1
  18. package/dist/vscode-button/vscode-button.styles.js +17 -2
  19. package/dist/vscode-button/vscode-button.styles.js.map +1 -1
  20. package/dist/vscode-collapsible/vscode-collapsible.d.ts +2 -0
  21. package/dist/vscode-collapsible/vscode-collapsible.d.ts.map +1 -1
  22. package/dist/vscode-collapsible/vscode-collapsible.js +4 -4
  23. package/dist/vscode-collapsible/vscode-collapsible.js.map +1 -1
  24. package/dist/vscode-textfield/vscode-textfield.d.ts.map +1 -1
  25. package/dist/vscode-textfield/vscode-textfield.js +6 -1
  26. package/dist/vscode-textfield/vscode-textfield.js.map +1 -1
  27. package/package.json +2 -2
  28. package/vscode.css-custom-data.json +4 -0
  29. package/vscode.html-custom-data.json +33 -3
@@ -24,7 +24,7 @@
24
24
  "text": "string"
25
25
  },
26
26
  "privacy": "private",
27
- "default": "'1.6.2'"
27
+ "default": "'1.6.3-pre.1'"
28
28
  },
29
29
  {
30
30
  "kind": "field",
@@ -293,7 +293,7 @@
293
293
  "text": "string"
294
294
  },
295
295
  "privacy": "private",
296
- "default": "'1.6.2'",
296
+ "default": "'1.6.3-pre.1'",
297
297
  "inheritedFrom": {
298
298
  "name": "VscElement",
299
299
  "module": "src/includes/VscElement.ts"
@@ -357,7 +357,7 @@
357
357
  "type": {
358
358
  "text": "CSSResultGroup"
359
359
  },
360
- "default": "[ defaultStyles, css` :host { align-items: center; background-color: var(--vscode-button-background); border-color: var(--vscode-button-border, var(--vscode-button-background)); border-style: solid; border-radius: 2px; border-width: 1px; color: var(--vscode-button-foreground); cursor: pointer; display: inline-block; font-family: var(--vscode-font-family); font-size: var(--vscode-font-size); font-weight: var(--vscode-font-weight); line-height: 22px; overflow: hidden; padding: 1px 13px; user-select: none; white-space: nowrap; } :host([secondary]) { color: var(--vscode-button-secondaryForeground); background-color: var(--vscode-button-secondaryBackground); border-color: var(--vscode-button-border, var(--vscode-button-secondaryBackground)); } :host([disabled]) { cursor: default; opacity: 0.4; pointer-events: none; } :host(:hover) { background-color: var(--vscode-button-hoverBackground); } :host([disabled]:hover) { background-color: var(--vscode-button-background); } :host([secondary]:hover) { background-color: var(--vscode-button-secondaryHoverBackground); } :host([secondary][disabled]:hover) { background-color: var(--vscode-button-secondaryBackground); } :host(:focus), :host(:active) { outline: none; } :host(:focus) { background-color: var(--vscode-button-hoverBackground); outline: 1px solid var(--vscode-focusBorder); outline-offset: 2px; } :host([disabled]:focus) { background-color: var(--vscode-button-background); outline: 0; } :host([secondary]:focus) { background-color: var(--vscode-button-secondaryHoverBackground); } :host([secondary][disabled]:focus) { background-color: var(--vscode-button-secondaryBackground); } .wrapper { align-items: center; box-sizing: border-box; display: flex; justify-content: center; position: relative; width: 100%; } slot { display: block; } .icon { color: inherit; display: block; margin-right: 3px; } .icon-after { color: inherit; display: block; margin-left: 3px; } `, ]"
360
+ "default": "[ defaultStyles, css` :host { background-color: var(--vscode-button-background); border-color: var(--vscode-button-border, var(--vscode-button-background)); border-style: solid; border-radius: 2px; border-width: 1px; color: var(--vscode-button-foreground); cursor: pointer; display: inline-block; font-family: var(--vscode-font-family); font-size: var(--vscode-font-size); font-weight: var(--vscode-font-weight); line-height: 22px; overflow: hidden; padding: 1px 13px; user-select: none; white-space: nowrap; } :host([secondary]) { color: var(--vscode-button-secondaryForeground); background-color: var(--vscode-button-secondaryBackground); border-color: var(--vscode-button-border, var(--vscode-button-secondaryBackground)); } :host([disabled]) { cursor: default; opacity: 0.4; pointer-events: none; } :host(:hover) { background-color: var(--vscode-button-hoverBackground); } :host([disabled]:hover) { background-color: var(--vscode-button-background); } :host([secondary]:hover) { background-color: var(--vscode-button-secondaryHoverBackground); } :host([secondary][disabled]:hover) { background-color: var(--vscode-button-secondaryBackground); } :host(:focus), :host(:active) { outline: none; } :host(:focus) { background-color: var(--vscode-button-hoverBackground); outline: 1px solid var(--vscode-focusBorder); outline-offset: 2px; } :host([disabled]:focus) { background-color: var(--vscode-button-background); outline: 0; } :host([secondary]:focus) { background-color: var(--vscode-button-secondaryHoverBackground); } :host([secondary][disabled]:focus) { background-color: var(--vscode-button-secondaryBackground); } ::slotted(*) { display: inline-block; margin-left: 4px; margin-right: 4px; } ::slotted(*:first-child) { margin-left: 0; } ::slotted(vscode-icon) { color: inherit; } .wrapper { align-items: center; box-sizing: border-box; display: flex; justify-content: center; position: relative; width: 100%; } slot { align-items: center; display: flex; height: 100%; } .icon { color: inherit; display: block; margin-right: 3px; } .icon-after { color: inherit; display: block; margin-left: 3px; } `, ]"
361
361
  }
362
362
  ],
363
363
  "exports": [
@@ -457,6 +457,27 @@
457
457
  "description": "A [Codicon](https://microsoft.github.io/vscode-codicons/dist/codicon.html) before the label",
458
458
  "attribute": "icon"
459
459
  },
460
+ {
461
+ "kind": "field",
462
+ "name": "iconSpin",
463
+ "type": {
464
+ "text": "boolean"
465
+ },
466
+ "default": "false",
467
+ "description": "Spin property for the icon",
468
+ "attribute": "icon-spin",
469
+ "reflects": true
470
+ },
471
+ {
472
+ "kind": "field",
473
+ "name": "iconSpinDuration",
474
+ "type": {
475
+ "text": "number | undefined"
476
+ },
477
+ "description": "Duration property for the icon",
478
+ "attribute": "icon-spin-duration",
479
+ "reflects": true
480
+ },
460
481
  {
461
482
  "kind": "field",
462
483
  "name": "iconAfter",
@@ -467,6 +488,27 @@
467
488
  "description": "A [Codicon](https://microsoft.github.io/vscode-codicons/dist/codicon.html) after the label",
468
489
  "attribute": "icon-after"
469
490
  },
491
+ {
492
+ "kind": "field",
493
+ "name": "iconAfterSpin",
494
+ "type": {
495
+ "text": "boolean"
496
+ },
497
+ "default": "false",
498
+ "description": "Spin property for the after icon",
499
+ "attribute": "icon-after-spin",
500
+ "reflects": true
501
+ },
502
+ {
503
+ "kind": "field",
504
+ "name": "iconAfterSpinDuration",
505
+ "type": {
506
+ "text": "number | undefined"
507
+ },
508
+ "description": "Duration property for the after icon",
509
+ "attribute": "icon-after-spin-duration",
510
+ "reflects": true
511
+ },
470
512
  {
471
513
  "kind": "field",
472
514
  "name": "focused",
@@ -579,7 +621,7 @@
579
621
  "text": "string"
580
622
  },
581
623
  "privacy": "private",
582
- "default": "'1.6.2'",
624
+ "default": "'1.6.3-pre.1'",
583
625
  "inheritedFrom": {
584
626
  "name": "VscElement",
585
627
  "module": "src/includes/VscElement.ts"
@@ -641,6 +683,23 @@
641
683
  "description": "A [Codicon](https://microsoft.github.io/vscode-codicons/dist/codicon.html) before the label",
642
684
  "fieldName": "icon"
643
685
  },
686
+ {
687
+ "name": "icon-spin",
688
+ "type": {
689
+ "text": "boolean"
690
+ },
691
+ "default": "false",
692
+ "description": "Spin property for the icon",
693
+ "fieldName": "iconSpin"
694
+ },
695
+ {
696
+ "name": "icon-spin-duration",
697
+ "type": {
698
+ "text": "number | undefined"
699
+ },
700
+ "description": "Duration property for the icon",
701
+ "fieldName": "iconSpinDuration"
702
+ },
644
703
  {
645
704
  "name": "icon-after",
646
705
  "type": {
@@ -650,6 +709,23 @@
650
709
  "description": "A [Codicon](https://microsoft.github.io/vscode-codicons/dist/codicon.html) after the label",
651
710
  "fieldName": "iconAfter"
652
711
  },
712
+ {
713
+ "name": "icon-after-spin",
714
+ "type": {
715
+ "text": "boolean"
716
+ },
717
+ "default": "false",
718
+ "description": "Spin property for the after icon",
719
+ "fieldName": "iconAfterSpin"
720
+ },
721
+ {
722
+ "name": "icon-after-spin-duration",
723
+ "type": {
724
+ "text": "number | undefined"
725
+ },
726
+ "description": "Duration property for the after icon",
727
+ "fieldName": "iconAfterSpinDuration"
728
+ },
653
729
  {
654
730
  "name": "focused",
655
731
  "type": {
@@ -1070,7 +1146,7 @@
1070
1146
  "text": "string"
1071
1147
  },
1072
1148
  "privacy": "private",
1073
- "default": "'1.6.2'",
1149
+ "default": "'1.6.3-pre.1'",
1074
1150
  "inheritedFrom": {
1075
1151
  "name": "VscElement",
1076
1152
  "module": "src/includes/VscElement.ts"
@@ -1285,7 +1361,7 @@
1285
1361
  "text": "string"
1286
1362
  },
1287
1363
  "privacy": "private",
1288
- "default": "'1.6.2'",
1364
+ "default": "'1.6.3-pre.1'",
1289
1365
  "inheritedFrom": {
1290
1366
  "name": "VscElement",
1291
1367
  "module": "src/includes/VscElement.ts"
@@ -1397,6 +1473,12 @@
1397
1473
  "name": "--vscode-sideBarTitle-foreground"
1398
1474
  }
1399
1475
  ],
1476
+ "cssParts": [
1477
+ {
1478
+ "description": "Container for the toggleable content of the component. The container's overflow content is hidden by default. This can serve as an escape hatch to modify this feature.",
1479
+ "name": "body"
1480
+ }
1481
+ ],
1400
1482
  "slots": [
1401
1483
  {
1402
1484
  "description": "Main content.",
@@ -1467,7 +1549,7 @@
1467
1549
  "text": "string"
1468
1550
  },
1469
1551
  "privacy": "private",
1470
- "default": "'1.6.2'",
1552
+ "default": "'1.6.3-pre.1'",
1471
1553
  "inheritedFrom": {
1472
1554
  "name": "VscElement",
1473
1555
  "module": "src/includes/VscElement.ts"
@@ -1770,7 +1852,7 @@
1770
1852
  "text": "string"
1771
1853
  },
1772
1854
  "privacy": "private",
1773
- "default": "'1.6.2'",
1855
+ "default": "'1.6.3-pre.1'",
1774
1856
  "inheritedFrom": {
1775
1857
  "name": "VscElement",
1776
1858
  "module": "src/includes/VscElement.ts"
@@ -1960,7 +2042,7 @@
1960
2042
  "text": "string"
1961
2043
  },
1962
2044
  "privacy": "private",
1963
- "default": "'1.6.2'",
2045
+ "default": "'1.6.3-pre.1'",
1964
2046
  "inheritedFrom": {
1965
2047
  "name": "VscElement",
1966
2048
  "module": "src/includes/VscElement.ts"
@@ -2096,7 +2178,7 @@
2096
2178
  "text": "string"
2097
2179
  },
2098
2180
  "privacy": "private",
2099
- "default": "'1.6.2'",
2181
+ "default": "'1.6.3-pre.1'",
2100
2182
  "inheritedFrom": {
2101
2183
  "name": "VscElement",
2102
2184
  "module": "src/includes/VscElement.ts"
@@ -2314,7 +2396,7 @@
2314
2396
  "text": "string"
2315
2397
  },
2316
2398
  "privacy": "private",
2317
- "default": "'1.6.2'",
2399
+ "default": "'1.6.3-pre.1'",
2318
2400
  "inheritedFrom": {
2319
2401
  "name": "VscElement",
2320
2402
  "module": "src/includes/VscElement.ts"
@@ -2446,7 +2528,7 @@
2446
2528
  "text": "string"
2447
2529
  },
2448
2530
  "privacy": "private",
2449
- "default": "'1.6.2'",
2531
+ "default": "'1.6.3-pre.1'",
2450
2532
  "inheritedFrom": {
2451
2533
  "name": "VscElement",
2452
2534
  "module": "src/includes/VscElement.ts"
@@ -2546,7 +2628,7 @@
2546
2628
  "text": "string"
2547
2629
  },
2548
2630
  "privacy": "private",
2549
- "default": "'1.6.2'",
2631
+ "default": "'1.6.3-pre.1'",
2550
2632
  "inheritedFrom": {
2551
2633
  "name": "VscElement",
2552
2634
  "module": "src/includes/VscElement.ts"
@@ -2744,7 +2826,7 @@
2744
2826
  "text": "string"
2745
2827
  },
2746
2828
  "privacy": "private",
2747
- "default": "'1.6.2'",
2829
+ "default": "'1.6.3-pre.1'",
2748
2830
  "inheritedFrom": {
2749
2831
  "name": "VscElement",
2750
2832
  "module": "src/includes/VscElement.ts"
@@ -2964,7 +3046,7 @@
2964
3046
  "text": "string"
2965
3047
  },
2966
3048
  "privacy": "private",
2967
- "default": "'1.6.2'",
3049
+ "default": "'1.6.3-pre.1'",
2968
3050
  "inheritedFrom": {
2969
3051
  "name": "VscElement",
2970
3052
  "module": "src/includes/VscElement.ts"
@@ -3436,6 +3518,21 @@
3436
3518
  "module": "src/includes/vscode-select/vscode-select-base.ts"
3437
3519
  }
3438
3520
  },
3521
+ {
3522
+ "kind": "field",
3523
+ "name": "position",
3524
+ "type": {
3525
+ "text": "'above' | 'below'"
3526
+ },
3527
+ "default": "'below'",
3528
+ "description": "Position of the options list when visible.",
3529
+ "attribute": "position",
3530
+ "reflects": true,
3531
+ "inheritedFrom": {
3532
+ "name": "VscodeSelectBase",
3533
+ "module": "src/includes/vscode-select/vscode-select-base.ts"
3534
+ }
3535
+ },
3439
3536
  {
3440
3537
  "kind": "field",
3441
3538
  "name": "_assignedOptions",
@@ -4057,7 +4154,7 @@
4057
4154
  "text": "string"
4058
4155
  },
4059
4156
  "privacy": "private",
4060
- "default": "'1.6.2'",
4157
+ "default": "'1.6.3-pre.1'",
4061
4158
  "inheritedFrom": {
4062
4159
  "name": "VscElement",
4063
4160
  "module": "src/includes/VscElement.ts"
@@ -4179,6 +4276,19 @@
4179
4276
  "name": "VscodeSelectBase",
4180
4277
  "module": "src/includes/vscode-select/vscode-select-base.ts"
4181
4278
  }
4279
+ },
4280
+ {
4281
+ "name": "position",
4282
+ "type": {
4283
+ "text": "'above' | 'below'"
4284
+ },
4285
+ "default": "'below'",
4286
+ "description": "Position of the options list when visible.",
4287
+ "fieldName": "position",
4288
+ "inheritedFrom": {
4289
+ "name": "VscodeSelectBase",
4290
+ "module": "src/includes/vscode-select/vscode-select-base.ts"
4291
+ }
4182
4292
  }
4183
4293
  ],
4184
4294
  "superclass": {
@@ -4300,7 +4410,7 @@
4300
4410
  "text": "string"
4301
4411
  },
4302
4412
  "privacy": "private",
4303
- "default": "'1.6.2'",
4413
+ "default": "'1.6.3-pre.1'",
4304
4414
  "inheritedFrom": {
4305
4415
  "name": "VscElement",
4306
4416
  "module": "src/includes/VscElement.ts"
@@ -4448,7 +4558,7 @@
4448
4558
  "text": "string"
4449
4559
  },
4450
4560
  "privacy": "private",
4451
- "default": "'1.6.2'",
4561
+ "default": "'1.6.3-pre.1'",
4452
4562
  "inheritedFrom": {
4453
4563
  "name": "VscElement",
4454
4564
  "module": "src/includes/VscElement.ts"
@@ -4915,7 +5025,7 @@
4915
5025
  "text": "string"
4916
5026
  },
4917
5027
  "privacy": "private",
4918
- "default": "'1.6.2'",
5028
+ "default": "'1.6.3-pre.1'",
4919
5029
  "inheritedFrom": {
4920
5030
  "name": "VscElement",
4921
5031
  "module": "src/includes/VscElement.ts"
@@ -5227,7 +5337,7 @@
5227
5337
  "text": "string"
5228
5338
  },
5229
5339
  "privacy": "private",
5230
- "default": "'1.6.2'",
5340
+ "default": "'1.6.3-pre.1'",
5231
5341
  "inheritedFrom": {
5232
5342
  "name": "VscElement",
5233
5343
  "module": "src/includes/VscElement.ts"
@@ -5609,7 +5719,7 @@
5609
5719
  "text": "string"
5610
5720
  },
5611
5721
  "privacy": "private",
5612
- "default": "'1.6.2'",
5722
+ "default": "'1.6.3-pre.1'",
5613
5723
  "inheritedFrom": {
5614
5724
  "name": "VscElement",
5615
5725
  "module": "src/includes/VscElement.ts"
@@ -6098,6 +6208,21 @@
6098
6208
  "module": "src/includes/vscode-select/vscode-select-base.ts"
6099
6209
  }
6100
6210
  },
6211
+ {
6212
+ "kind": "field",
6213
+ "name": "position",
6214
+ "type": {
6215
+ "text": "'above' | 'below'"
6216
+ },
6217
+ "default": "'below'",
6218
+ "description": "Position of the options list when visible.",
6219
+ "attribute": "position",
6220
+ "reflects": true,
6221
+ "inheritedFrom": {
6222
+ "name": "VscodeSelectBase",
6223
+ "module": "src/includes/vscode-select/vscode-select-base.ts"
6224
+ }
6225
+ },
6101
6226
  {
6102
6227
  "kind": "field",
6103
6228
  "name": "_assignedOptions",
@@ -6677,7 +6802,7 @@
6677
6802
  "text": "string"
6678
6803
  },
6679
6804
  "privacy": "private",
6680
- "default": "'1.6.2'",
6805
+ "default": "'1.6.3-pre.1'",
6681
6806
  "inheritedFrom": {
6682
6807
  "name": "VscElement",
6683
6808
  "module": "src/includes/VscElement.ts"
@@ -6806,6 +6931,19 @@
6806
6931
  "name": "VscodeSelectBase",
6807
6932
  "module": "src/includes/vscode-select/vscode-select-base.ts"
6808
6933
  }
6934
+ },
6935
+ {
6936
+ "name": "position",
6937
+ "type": {
6938
+ "text": "'above' | 'below'"
6939
+ },
6940
+ "default": "'below'",
6941
+ "description": "Position of the options list when visible.",
6942
+ "fieldName": "position",
6943
+ "inheritedFrom": {
6944
+ "name": "VscodeSelectBase",
6945
+ "module": "src/includes/vscode-select/vscode-select-base.ts"
6946
+ }
6809
6947
  }
6810
6948
  ],
6811
6949
  "superclass": {
@@ -7116,7 +7254,7 @@
7116
7254
  "text": "string"
7117
7255
  },
7118
7256
  "privacy": "private",
7119
- "default": "'1.6.2'",
7257
+ "default": "'1.6.3-pre.1'",
7120
7258
  "inheritedFrom": {
7121
7259
  "name": "VscElement",
7122
7260
  "module": "src/includes/VscElement.ts"
@@ -7276,7 +7414,7 @@
7276
7414
  "text": "string"
7277
7415
  },
7278
7416
  "privacy": "private",
7279
- "default": "'1.6.2'",
7417
+ "default": "'1.6.3-pre.1'",
7280
7418
  "inheritedFrom": {
7281
7419
  "name": "VscElement",
7282
7420
  "module": "src/includes/VscElement.ts"
@@ -7408,7 +7546,7 @@
7408
7546
  "text": "string"
7409
7547
  },
7410
7548
  "privacy": "private",
7411
- "default": "'1.6.2'",
7549
+ "default": "'1.6.3-pre.1'",
7412
7550
  "inheritedFrom": {
7413
7551
  "name": "VscElement",
7414
7552
  "module": "src/includes/VscElement.ts"
@@ -8098,7 +8236,7 @@
8098
8236
  "text": "string"
8099
8237
  },
8100
8238
  "privacy": "private",
8101
- "default": "'1.6.2'",
8239
+ "default": "'1.6.3-pre.1'",
8102
8240
  "inheritedFrom": {
8103
8241
  "name": "VscElement",
8104
8242
  "module": "src/includes/VscElement.ts"
@@ -8282,7 +8420,7 @@
8282
8420
  "text": "string"
8283
8421
  },
8284
8422
  "privacy": "private",
8285
- "default": "'1.6.2'",
8423
+ "default": "'1.6.3-pre.1'",
8286
8424
  "inheritedFrom": {
8287
8425
  "name": "VscElement",
8288
8426
  "module": "src/includes/VscElement.ts"
@@ -8401,7 +8539,7 @@
8401
8539
  "text": "string"
8402
8540
  },
8403
8541
  "privacy": "private",
8404
- "default": "'1.6.2'",
8542
+ "default": "'1.6.3-pre.1'",
8405
8543
  "inheritedFrom": {
8406
8544
  "name": "VscElement",
8407
8545
  "module": "src/includes/VscElement.ts"
@@ -8511,7 +8649,7 @@
8511
8649
  "text": "string"
8512
8650
  },
8513
8651
  "privacy": "private",
8514
- "default": "'1.6.2'",
8652
+ "default": "'1.6.3-pre.1'",
8515
8653
  "inheritedFrom": {
8516
8654
  "name": "VscElement",
8517
8655
  "module": "src/includes/VscElement.ts"
@@ -8606,7 +8744,7 @@
8606
8744
  "text": "string"
8607
8745
  },
8608
8746
  "privacy": "private",
8609
- "default": "'1.6.2'",
8747
+ "default": "'1.6.3-pre.1'",
8610
8748
  "inheritedFrom": {
8611
8749
  "name": "VscElement",
8612
8750
  "module": "src/includes/VscElement.ts"
@@ -8695,7 +8833,7 @@
8695
8833
  "text": "string"
8696
8834
  },
8697
8835
  "privacy": "private",
8698
- "default": "'1.6.2'",
8836
+ "default": "'1.6.3-pre.1'",
8699
8837
  "inheritedFrom": {
8700
8838
  "name": "VscElement",
8701
8839
  "module": "src/includes/VscElement.ts"
@@ -8944,7 +9082,7 @@
8944
9082
  "text": "string"
8945
9083
  },
8946
9084
  "privacy": "private",
8947
- "default": "'1.6.2'",
9085
+ "default": "'1.6.3-pre.1'",
8948
9086
  "inheritedFrom": {
8949
9087
  "name": "VscElement",
8950
9088
  "module": "src/includes/VscElement.ts"
@@ -9452,7 +9590,7 @@
9452
9590
  "text": "string"
9453
9591
  },
9454
9592
  "privacy": "private",
9455
- "default": "'1.6.2'",
9593
+ "default": "'1.6.3-pre.1'",
9456
9594
  "inheritedFrom": {
9457
9595
  "name": "VscElement",
9458
9596
  "module": "src/includes/VscElement.ts"
@@ -10077,7 +10215,7 @@
10077
10215
  "text": "string"
10078
10216
  },
10079
10217
  "privacy": "private",
10080
- "default": "'1.6.2'",
10218
+ "default": "'1.6.3-pre.1'",
10081
10219
  "inheritedFrom": {
10082
10220
  "name": "VscElement",
10083
10221
  "module": "src/includes/VscElement.ts"
@@ -10813,7 +10951,7 @@
10813
10951
  "text": "string"
10814
10952
  },
10815
10953
  "privacy": "private",
10816
- "default": "'1.6.2'",
10954
+ "default": "'1.6.3-pre.1'",
10817
10955
  "inheritedFrom": {
10818
10956
  "name": "VscElement",
10819
10957
  "module": "src/includes/VscElement.ts"
@@ -10983,7 +11121,7 @@
10983
11121
  "text": "string"
10984
11122
  },
10985
11123
  "privacy": "private",
10986
- "default": "'1.6.2'",
11124
+ "default": "'1.6.3-pre.1'",
10987
11125
  "inheritedFrom": {
10988
11126
  "name": "VscElement",
10989
11127
  "module": "src/includes/VscElement.ts"
@@ -11483,6 +11621,17 @@
11483
11621
  },
11484
11622
  "attribute": "options"
11485
11623
  },
11624
+ {
11625
+ "kind": "field",
11626
+ "name": "position",
11627
+ "type": {
11628
+ "text": "'above' | 'below'"
11629
+ },
11630
+ "default": "'below'",
11631
+ "description": "Position of the options list when visible.",
11632
+ "attribute": "position",
11633
+ "reflects": true
11634
+ },
11486
11635
  {
11487
11636
  "kind": "field",
11488
11637
  "name": "_assignedOptions",
@@ -11964,7 +12113,7 @@
11964
12113
  "text": "string"
11965
12114
  },
11966
12115
  "privacy": "private",
11967
- "default": "'1.6.2'",
12116
+ "default": "'1.6.3-pre.1'",
11968
12117
  "inheritedFrom": {
11969
12118
  "name": "VscElement",
11970
12119
  "module": "src/includes/VscElement.ts"
@@ -12045,6 +12194,15 @@
12045
12194
  },
12046
12195
  "default": "false",
12047
12196
  "fieldName": "focused"
12197
+ },
12198
+ {
12199
+ "name": "position",
12200
+ "type": {
12201
+ "text": "'above' | 'below'"
12202
+ },
12203
+ "default": "'below'",
12204
+ "description": "Position of the options list when visible.",
12205
+ "fieldName": "position"
12048
12206
  }
12049
12207
  ],
12050
12208
  "superclass": {