@vscode-elements/elements 2.3.1-pre.2 → 2.3.2-pre.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/README.md +3 -1
- package/custom-elements.json +556 -134
- package/dist/bundled.js +255 -73
- package/dist/includes/VscElement.js +1 -1
- package/dist/includes/VscElement.js.map +1 -1
- package/dist/includes/vscode-select/OptionListController.d.ts +1 -1
- package/dist/includes/vscode-select/OptionListController.d.ts.map +1 -1
- package/dist/includes/vscode-select/OptionListController.js +10 -4
- package/dist/includes/vscode-select/OptionListController.js.map +1 -1
- package/dist/includes/vscode-select/vscode-select-base.d.ts +2 -0
- package/dist/includes/vscode-select/vscode-select-base.d.ts.map +1 -1
- package/dist/includes/vscode-select/vscode-select-base.js +9 -1
- package/dist/includes/vscode-select/vscode-select-base.js.map +1 -1
- package/dist/vscode-button/vscode-button.d.ts +5 -0
- package/dist/vscode-button/vscode-button.d.ts.map +1 -1
- package/dist/vscode-button/vscode-button.js +8 -0
- package/dist/vscode-button/vscode-button.js.map +1 -1
- package/dist/vscode-button/vscode-button.styles.d.ts.map +1 -1
- package/dist/vscode-button/vscode-button.styles.js +11 -0
- package/dist/vscode-button/vscode-button.styles.js.map +1 -1
- package/dist/vscode-collapsible/vscode-collapsible.d.ts +1 -0
- package/dist/vscode-collapsible/vscode-collapsible.d.ts.map +1 -1
- package/dist/vscode-collapsible/vscode-collapsible.js +4 -1
- package/dist/vscode-collapsible/vscode-collapsible.js.map +1 -1
- package/dist/vscode-collapsible/vscode-collapsible.styles.d.ts.map +1 -1
- package/dist/vscode-collapsible/vscode-collapsible.styles.js +4 -0
- package/dist/vscode-collapsible/vscode-collapsible.styles.js.map +1 -1
- package/dist/vscode-split-layout/vscode-split-layout.d.ts +18 -0
- package/dist/vscode-split-layout/vscode-split-layout.d.ts.map +1 -1
- package/dist/vscode-split-layout/vscode-split-layout.js +87 -14
- package/dist/vscode-split-layout/vscode-split-layout.js.map +1 -1
- package/dist/vscode-tree/tree-context.d.ts +1 -0
- package/dist/vscode-tree/tree-context.d.ts.map +1 -1
- package/dist/vscode-tree/tree-context.js.map +1 -1
- package/dist/vscode-tree/vscode-tree.d.ts +1 -1
- package/dist/vscode-tree/vscode-tree.d.ts.map +1 -1
- package/dist/vscode-tree/vscode-tree.js +4 -3
- package/dist/vscode-tree/vscode-tree.js.map +1 -1
- package/dist/vscode-tree/vscode-tree.styles.js +1 -1
- package/dist/vscode-tree/vscode-tree.styles.js.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.d.ts +28 -1
- package/dist/vscode-tree-item/vscode-tree-item.d.ts.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.js +257 -22
- package/dist/vscode-tree-item/vscode-tree-item.js.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.styles.d.ts.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.styles.js +147 -6
- package/dist/vscode-tree-item/vscode-tree-item.styles.js.map +1 -1
- package/package.json +12 -8
- package/vscode.css-custom-data.json +15 -15
- package/vscode.html-custom-data.json +32 -17
package/custom-elements.json
CHANGED
|
@@ -604,6 +604,131 @@
|
|
|
604
604
|
}
|
|
605
605
|
]
|
|
606
606
|
},
|
|
607
|
+
{
|
|
608
|
+
"kind": "javascript-module",
|
|
609
|
+
"path": "src/vscode-badge/vscode-badge.styles.ts",
|
|
610
|
+
"declarations": [
|
|
611
|
+
{
|
|
612
|
+
"kind": "variable",
|
|
613
|
+
"name": "styles",
|
|
614
|
+
"type": {
|
|
615
|
+
"text": "CSSResultGroup"
|
|
616
|
+
},
|
|
617
|
+
"default": "[ defaultStyles, css` :host { display: inline-block; } .root { background-color: var(--vscode-badge-background, #616161); border: 1px solid var(--vscode-contrastBorder, transparent); border-radius: 2px; box-sizing: border-box; color: var(--vscode-badge-foreground, #f8f8f8); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: 11px; font-weight: 400; line-height: 14px; min-width: 18px; padding: 2px 3px; text-align: center; white-space: nowrap; } :host([variant='counter']) .root { border-radius: 11px; line-height: 11px; min-height: 18px; min-width: 18px; padding: 3px 6px; } :host([variant='activity-bar-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 20px; color: var(--vscode-activityBarBadge-foreground, #ffffff); font-size: 9px; font-weight: 600; line-height: 16px; padding: 0 4px; } :host([variant='tab-header-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 10px; color: var(--vscode-activityBarBadge-foreground, #ffffff); line-height: 10px; min-height: 16px; min-width: 16px; padding: 3px 5px; } `, ]"
|
|
618
|
+
}
|
|
619
|
+
],
|
|
620
|
+
"exports": [
|
|
621
|
+
{
|
|
622
|
+
"kind": "js",
|
|
623
|
+
"name": "default",
|
|
624
|
+
"declaration": {
|
|
625
|
+
"name": "styles",
|
|
626
|
+
"module": "src/vscode-badge/vscode-badge.styles.ts"
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
]
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"kind": "javascript-module",
|
|
633
|
+
"path": "src/vscode-badge/vscode-badge.ts",
|
|
634
|
+
"declarations": [
|
|
635
|
+
{
|
|
636
|
+
"kind": "class",
|
|
637
|
+
"description": "Show counts or status information. Badges can also be used within [Textfield](https://vscode-elements.github.io/components/textfield) and [TabHeader](https://vscode-elements.github.io/components/tabs) components.",
|
|
638
|
+
"name": "VscodeBadge",
|
|
639
|
+
"cssProperties": [
|
|
640
|
+
{
|
|
641
|
+
"description": "A sans-serif font type depends on the host OS.",
|
|
642
|
+
"name": "--vscode-font-family",
|
|
643
|
+
"default": "sans-serif"
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"name": "--vscode-contrastBorder",
|
|
647
|
+
"default": "transparent"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"description": "default and counter variant background color",
|
|
651
|
+
"name": "--vscode-badge-background",
|
|
652
|
+
"default": "#616161"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"description": "default and counter variant foreground color",
|
|
656
|
+
"name": "--vscode-badge-foreground",
|
|
657
|
+
"default": "#f8f8f8"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"description": "activity bar variant background color",
|
|
661
|
+
"name": "--vscode-activityBarBadge-background",
|
|
662
|
+
"default": "#0078d4"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"description": "activity bar variant foreground color",
|
|
666
|
+
"name": "--vscode-activityBarBadge-foreground",
|
|
667
|
+
"default": "#ffffff"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"members": [
|
|
671
|
+
{
|
|
672
|
+
"kind": "field",
|
|
673
|
+
"name": "variant",
|
|
674
|
+
"type": {
|
|
675
|
+
"text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
|
|
676
|
+
},
|
|
677
|
+
"default": "'default'",
|
|
678
|
+
"attribute": "variant",
|
|
679
|
+
"reflects": true
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"kind": "field",
|
|
683
|
+
"name": "version",
|
|
684
|
+
"type": {
|
|
685
|
+
"text": "string"
|
|
686
|
+
},
|
|
687
|
+
"description": "VSCode Elements version",
|
|
688
|
+
"readonly": true,
|
|
689
|
+
"inheritedFrom": {
|
|
690
|
+
"name": "VscElement",
|
|
691
|
+
"module": "src/includes/VscElement.ts"
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
"attributes": [
|
|
696
|
+
{
|
|
697
|
+
"name": "variant",
|
|
698
|
+
"type": {
|
|
699
|
+
"text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
|
|
700
|
+
},
|
|
701
|
+
"default": "'default'",
|
|
702
|
+
"fieldName": "variant"
|
|
703
|
+
}
|
|
704
|
+
],
|
|
705
|
+
"superclass": {
|
|
706
|
+
"name": "VscElement",
|
|
707
|
+
"module": "/src/includes/VscElement.js"
|
|
708
|
+
},
|
|
709
|
+
"tagName": "vscode-badge",
|
|
710
|
+
"customElement": true
|
|
711
|
+
}
|
|
712
|
+
],
|
|
713
|
+
"exports": [
|
|
714
|
+
{
|
|
715
|
+
"kind": "js",
|
|
716
|
+
"name": "VscodeBadge",
|
|
717
|
+
"declaration": {
|
|
718
|
+
"name": "VscodeBadge",
|
|
719
|
+
"module": "src/vscode-badge/vscode-badge.ts"
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"kind": "custom-element-definition",
|
|
724
|
+
"name": "vscode-badge",
|
|
725
|
+
"declaration": {
|
|
726
|
+
"name": "VscodeBadge",
|
|
727
|
+
"module": "src/vscode-badge/vscode-badge.ts"
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
]
|
|
731
|
+
},
|
|
607
732
|
{
|
|
608
733
|
"kind": "javascript-module",
|
|
609
734
|
"path": "src/vscode-button/vscode-button.styles.ts",
|
|
@@ -614,7 +739,7 @@
|
|
|
614
739
|
"type": {
|
|
615
740
|
"text": "CSSResultGroup"
|
|
616
741
|
},
|
|
617
|
-
"default": "[ defaultStyles, css` :host { cursor: pointer; display: inline-block; width: auto; } .base { align-items: center; background-color: var(--vscode-button-background, #0078d4); border-bottom-left-radius: var(--vsc-border-left-radius, 2px); border-bottom-right-radius: var(--vsc-border-right-radius, 2px); border-bottom-width: 1px; border-color: var(--vscode-button-border, transparent); border-left-width: var(--vsc-border-left-width, 1px); border-right-width: var(--vsc-border-right-width, 1px); border-style: solid; border-top-left-radius: var(--vsc-border-left-radius, 2px); border-top-right-radius: var(--vsc-border-right-radius, 2px); border-top-width: 1px; box-sizing: border-box; color: var(--vscode-button-foreground, #ffffff); display: flex; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); height: 100%; justify-content: center; line-height: 22px; overflow: hidden; padding: 1px calc(13px + var(--vsc-base-additional-right-padding, 0px)) 1px 13px; position: relative; user-select: none; white-space: nowrap; width: 100%; } .base:after { background-color: var( --vscode-button-separator, rgba(255, 255, 255, 0.4) ); content: var(--vsc-base-after-content); display: var(--vsc-divider-display, none); position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; } :host([secondary]) .base:after { background-color: var(--vscode-button-secondaryForeground, #cccccc); opacity: 0.4; } :host([secondary]) .base { color: var(--vscode-button-secondaryForeground, #cccccc); background-color: var(--vscode-button-secondaryBackground, #313131); border-color: var( --vscode-button-border, var(--vscode-button-secondaryBackground, rgba(255, 255, 255, 0.07)) ); } :host([disabled]) { cursor: default; opacity: 0.4; pointer-events: none; } :host(:hover) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); } :host([disabled]:hover) .base { background-color: var(--vscode-button-background, #0078d4); } :host([secondary]:hover) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:hover) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } :host(:focus), :host(:active) { outline: none; } :host(:focus) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); outline: 1px solid var(--vscode-focusBorder, #0078d4); outline-offset: 2px; } :host([disabled]:focus) .base { background-color: var(--vscode-button-background, #0078d4); outline: 0; } :host([secondary]:focus) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:focus) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } ::slotted(*) { display: inline-block; margin-left: 4px; margin-right: 4px; } ::slotted(*:first-child) { margin-left: 0; } ::slotted(*:last-child) { margin-right: 0; } ::slotted(vscode-icon) { color: inherit; } .content { display: flex; position: relative; width: 100%; height: 100%; padding: 1px 13px; } :host(:empty) .base, .base.icon-only { min-height: 24px; min-width: 26px; padding: 1px 4px; } slot { align-items: center; display: flex; height: 100%; } .has-content-before slot[name='content-before'] { margin-right: 4px; } .has-content-after slot[name='content-after'] { margin-left: 4px; } .icon, .icon-after { color: inherit; display: block; } :host(:not(:empty)) .icon { margin-right: 3px; } :host(:not(:empty)) .icon-after, :host([icon]) .icon-after { margin-left: 3px; } `, ]"
|
|
742
|
+
"default": "[ defaultStyles, css` :host { cursor: pointer; display: inline-block; width: auto; } :host([block]) { display: block; width: 100%; } .base { align-items: center; background-color: var(--vscode-button-background, #0078d4); border-bottom-left-radius: var(--vsc-border-left-radius, 2px); border-bottom-right-radius: var(--vsc-border-right-radius, 2px); border-bottom-width: 1px; border-color: var(--vscode-button-border, transparent); border-left-width: var(--vsc-border-left-width, 1px); border-right-width: var(--vsc-border-right-width, 1px); border-style: solid; border-top-left-radius: var(--vsc-border-left-radius, 2px); border-top-right-radius: var(--vsc-border-right-radius, 2px); border-top-width: 1px; box-sizing: border-box; color: var(--vscode-button-foreground, #ffffff); display: flex; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); height: 100%; justify-content: center; line-height: 22px; overflow: hidden; padding: 1px calc(13px + var(--vsc-base-additional-right-padding, 0px)) 1px 13px; position: relative; user-select: none; white-space: nowrap; width: 100%; } :host([block]) .base { min-height: 28px; text-align: center; width: 100%; } .base:after { background-color: var( --vscode-button-separator, rgba(255, 255, 255, 0.4) ); content: var(--vsc-base-after-content); display: var(--vsc-divider-display, none); position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; } :host([secondary]) .base:after { background-color: var(--vscode-button-secondaryForeground, #cccccc); opacity: 0.4; } :host([secondary]) .base { color: var(--vscode-button-secondaryForeground, #cccccc); background-color: var(--vscode-button-secondaryBackground, #313131); border-color: var( --vscode-button-border, var(--vscode-button-secondaryBackground, rgba(255, 255, 255, 0.07)) ); } :host([disabled]) { cursor: default; opacity: 0.4; pointer-events: none; } :host(:hover) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); } :host([disabled]:hover) .base { background-color: var(--vscode-button-background, #0078d4); } :host([secondary]:hover) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:hover) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } :host(:focus), :host(:active) { outline: none; } :host(:focus) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); outline: 1px solid var(--vscode-focusBorder, #0078d4); outline-offset: 2px; } :host([disabled]:focus) .base { background-color: var(--vscode-button-background, #0078d4); outline: 0; } :host([secondary]:focus) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:focus) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } ::slotted(*) { display: inline-block; margin-left: 4px; margin-right: 4px; } ::slotted(*:first-child) { margin-left: 0; } ::slotted(*:last-child) { margin-right: 0; } ::slotted(vscode-icon) { color: inherit; } .content { display: flex; position: relative; width: 100%; height: 100%; padding: 1px 13px; } :host(:empty) .base, .base.icon-only { min-height: 24px; min-width: 26px; padding: 1px 4px; } slot { align-items: center; display: flex; height: 100%; } .has-content-before slot[name='content-before'] { margin-right: 4px; } .has-content-after slot[name='content-after'] { margin-left: 4px; } .icon, .icon-after { color: inherit; display: block; } :host(:not(:empty)) .icon { margin-right: 3px; } :host(:not(:empty)) .icon-after, :host([icon]) .icon-after { margin-left: 3px; } `, ]"
|
|
618
743
|
}
|
|
619
744
|
],
|
|
620
745
|
"exports": [
|
|
@@ -721,6 +846,17 @@
|
|
|
721
846
|
"attribute": "secondary",
|
|
722
847
|
"reflects": true
|
|
723
848
|
},
|
|
849
|
+
{
|
|
850
|
+
"kind": "field",
|
|
851
|
+
"name": "block",
|
|
852
|
+
"type": {
|
|
853
|
+
"text": "boolean"
|
|
854
|
+
},
|
|
855
|
+
"default": "false",
|
|
856
|
+
"description": "Makes the button fill its container and use VS Code's block sizing,\nsimilar to the Source Control \"Commit\" action.",
|
|
857
|
+
"attribute": "block",
|
|
858
|
+
"reflects": true
|
|
859
|
+
},
|
|
724
860
|
{
|
|
725
861
|
"kind": "field",
|
|
726
862
|
"name": "disabled",
|
|
@@ -971,6 +1107,15 @@
|
|
|
971
1107
|
"description": "Button has a less prominent style.",
|
|
972
1108
|
"fieldName": "secondary"
|
|
973
1109
|
},
|
|
1110
|
+
{
|
|
1111
|
+
"name": "block",
|
|
1112
|
+
"type": {
|
|
1113
|
+
"text": "boolean"
|
|
1114
|
+
},
|
|
1115
|
+
"default": "false",
|
|
1116
|
+
"description": "Makes the button fill its container and use VS Code's block sizing,\nsimilar to the Source Control \"Commit\" action.",
|
|
1117
|
+
"fieldName": "block"
|
|
1118
|
+
},
|
|
974
1119
|
{
|
|
975
1120
|
"name": "disabled",
|
|
976
1121
|
"type": {
|
|
@@ -1099,131 +1244,6 @@
|
|
|
1099
1244
|
}
|
|
1100
1245
|
]
|
|
1101
1246
|
},
|
|
1102
|
-
{
|
|
1103
|
-
"kind": "javascript-module",
|
|
1104
|
-
"path": "src/vscode-badge/vscode-badge.styles.ts",
|
|
1105
|
-
"declarations": [
|
|
1106
|
-
{
|
|
1107
|
-
"kind": "variable",
|
|
1108
|
-
"name": "styles",
|
|
1109
|
-
"type": {
|
|
1110
|
-
"text": "CSSResultGroup"
|
|
1111
|
-
},
|
|
1112
|
-
"default": "[ defaultStyles, css` :host { display: inline-block; } .root { background-color: var(--vscode-badge-background, #616161); border: 1px solid var(--vscode-contrastBorder, transparent); border-radius: 2px; box-sizing: border-box; color: var(--vscode-badge-foreground, #f8f8f8); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: 11px; font-weight: 400; line-height: 14px; min-width: 18px; padding: 2px 3px; text-align: center; white-space: nowrap; } :host([variant='counter']) .root { border-radius: 11px; line-height: 11px; min-height: 18px; min-width: 18px; padding: 3px 6px; } :host([variant='activity-bar-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 20px; color: var(--vscode-activityBarBadge-foreground, #ffffff); font-size: 9px; font-weight: 600; line-height: 16px; padding: 0 4px; } :host([variant='tab-header-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 10px; color: var(--vscode-activityBarBadge-foreground, #ffffff); line-height: 10px; min-height: 16px; min-width: 16px; padding: 3px 5px; } `, ]"
|
|
1113
|
-
}
|
|
1114
|
-
],
|
|
1115
|
-
"exports": [
|
|
1116
|
-
{
|
|
1117
|
-
"kind": "js",
|
|
1118
|
-
"name": "default",
|
|
1119
|
-
"declaration": {
|
|
1120
|
-
"name": "styles",
|
|
1121
|
-
"module": "src/vscode-badge/vscode-badge.styles.ts"
|
|
1122
|
-
}
|
|
1123
|
-
}
|
|
1124
|
-
]
|
|
1125
|
-
},
|
|
1126
|
-
{
|
|
1127
|
-
"kind": "javascript-module",
|
|
1128
|
-
"path": "src/vscode-badge/vscode-badge.ts",
|
|
1129
|
-
"declarations": [
|
|
1130
|
-
{
|
|
1131
|
-
"kind": "class",
|
|
1132
|
-
"description": "Show counts or status information. Badges can also be used within [Textfield](https://vscode-elements.github.io/components/textfield) and [TabHeader](https://vscode-elements.github.io/components/tabs) components.",
|
|
1133
|
-
"name": "VscodeBadge",
|
|
1134
|
-
"cssProperties": [
|
|
1135
|
-
{
|
|
1136
|
-
"description": "A sans-serif font type depends on the host OS.",
|
|
1137
|
-
"name": "--vscode-font-family",
|
|
1138
|
-
"default": "sans-serif"
|
|
1139
|
-
},
|
|
1140
|
-
{
|
|
1141
|
-
"name": "--vscode-contrastBorder",
|
|
1142
|
-
"default": "transparent"
|
|
1143
|
-
},
|
|
1144
|
-
{
|
|
1145
|
-
"description": "default and counter variant background color",
|
|
1146
|
-
"name": "--vscode-badge-background",
|
|
1147
|
-
"default": "#616161"
|
|
1148
|
-
},
|
|
1149
|
-
{
|
|
1150
|
-
"description": "default and counter variant foreground color",
|
|
1151
|
-
"name": "--vscode-badge-foreground",
|
|
1152
|
-
"default": "#f8f8f8"
|
|
1153
|
-
},
|
|
1154
|
-
{
|
|
1155
|
-
"description": "activity bar variant background color",
|
|
1156
|
-
"name": "--vscode-activityBarBadge-background",
|
|
1157
|
-
"default": "#0078d4"
|
|
1158
|
-
},
|
|
1159
|
-
{
|
|
1160
|
-
"description": "activity bar variant foreground color",
|
|
1161
|
-
"name": "--vscode-activityBarBadge-foreground",
|
|
1162
|
-
"default": "#ffffff"
|
|
1163
|
-
}
|
|
1164
|
-
],
|
|
1165
|
-
"members": [
|
|
1166
|
-
{
|
|
1167
|
-
"kind": "field",
|
|
1168
|
-
"name": "variant",
|
|
1169
|
-
"type": {
|
|
1170
|
-
"text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
|
|
1171
|
-
},
|
|
1172
|
-
"default": "'default'",
|
|
1173
|
-
"attribute": "variant",
|
|
1174
|
-
"reflects": true
|
|
1175
|
-
},
|
|
1176
|
-
{
|
|
1177
|
-
"kind": "field",
|
|
1178
|
-
"name": "version",
|
|
1179
|
-
"type": {
|
|
1180
|
-
"text": "string"
|
|
1181
|
-
},
|
|
1182
|
-
"description": "VSCode Elements version",
|
|
1183
|
-
"readonly": true,
|
|
1184
|
-
"inheritedFrom": {
|
|
1185
|
-
"name": "VscElement",
|
|
1186
|
-
"module": "src/includes/VscElement.ts"
|
|
1187
|
-
}
|
|
1188
|
-
}
|
|
1189
|
-
],
|
|
1190
|
-
"attributes": [
|
|
1191
|
-
{
|
|
1192
|
-
"name": "variant",
|
|
1193
|
-
"type": {
|
|
1194
|
-
"text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
|
|
1195
|
-
},
|
|
1196
|
-
"default": "'default'",
|
|
1197
|
-
"fieldName": "variant"
|
|
1198
|
-
}
|
|
1199
|
-
],
|
|
1200
|
-
"superclass": {
|
|
1201
|
-
"name": "VscElement",
|
|
1202
|
-
"module": "/src/includes/VscElement.js"
|
|
1203
|
-
},
|
|
1204
|
-
"tagName": "vscode-badge",
|
|
1205
|
-
"customElement": true
|
|
1206
|
-
}
|
|
1207
|
-
],
|
|
1208
|
-
"exports": [
|
|
1209
|
-
{
|
|
1210
|
-
"kind": "js",
|
|
1211
|
-
"name": "VscodeBadge",
|
|
1212
|
-
"declaration": {
|
|
1213
|
-
"name": "VscodeBadge",
|
|
1214
|
-
"module": "src/vscode-badge/vscode-badge.ts"
|
|
1215
|
-
}
|
|
1216
|
-
},
|
|
1217
|
-
{
|
|
1218
|
-
"kind": "custom-element-definition",
|
|
1219
|
-
"name": "vscode-badge",
|
|
1220
|
-
"declaration": {
|
|
1221
|
-
"name": "VscodeBadge",
|
|
1222
|
-
"module": "src/vscode-badge/vscode-badge.ts"
|
|
1223
|
-
}
|
|
1224
|
-
}
|
|
1225
|
-
]
|
|
1226
|
-
},
|
|
1227
1247
|
{
|
|
1228
1248
|
"kind": "javascript-module",
|
|
1229
1249
|
"path": "src/vscode-button-group/vscode-button-group.styles.ts",
|
|
@@ -2014,7 +2034,7 @@
|
|
|
2014
2034
|
"type": {
|
|
2015
2035
|
"text": "CSSResultGroup"
|
|
2016
2036
|
},
|
|
2017
|
-
"default": "[ defaultStyles, css` .collapsible { background-color: var(--vscode-sideBar-background, #181818); } .collapsible-header { align-items: center; background-color: var(--vscode-sideBarSectionHeader-background, #181818); cursor: pointer; display: flex; height: 22px; line-height: 22px; user-select: none; } .collapsible-header:focus { opacity: 1; outline-offset: -1px; outline-style: solid; outline-width: 1px; outline-color: var(--vscode-focusBorder, #0078d4); } .title { color: var(--vscode-sideBarTitle-foreground, #cccccc); display: block; font-family: var(--vscode-font-family, sans-serif); font-size: 11px; font-weight: 700; margin: 0; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; } .title .description { font-weight: 400; margin-left: 10px; text-transform: none; opacity: 0.6; } .header-icon { color: var(--vscode-icon-foreground, #cccccc); display: block; flex-shrink: 0; margin: 0 3px; } .collapsible.open .header-icon { transform: rotate(90deg); } .header-slots { align-items: center; display: flex; height: 22px; margin-left: auto; margin-right: 4px; } .actions { display: none; } .collapsible.open .actions.always-visible, .collapsible.open:hover .actions { display: block; } .header-slots slot { display: flex; max-height: 22px; overflow: hidden; } .header-slots slot::slotted(div) { align-items: center; display: flex; } .collapsible-body { display: none; overflow: hidden; } .collapsible.open .collapsible-body { display: block; } `, ]"
|
|
2037
|
+
"default": "[ defaultStyles, css` :host { display: block; } .collapsible { background-color: var(--vscode-sideBar-background, #181818); } .collapsible-header { align-items: center; background-color: var(--vscode-sideBarSectionHeader-background, #181818); cursor: pointer; display: flex; height: 22px; line-height: 22px; user-select: none; } .collapsible-header:focus { opacity: 1; outline-offset: -1px; outline-style: solid; outline-width: 1px; outline-color: var(--vscode-focusBorder, #0078d4); } .title { color: var(--vscode-sideBarTitle-foreground, #cccccc); display: block; font-family: var(--vscode-font-family, sans-serif); font-size: 11px; font-weight: 700; margin: 0; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; } .title .description { font-weight: 400; margin-left: 10px; text-transform: none; opacity: 0.6; } .header-icon { color: var(--vscode-icon-foreground, #cccccc); display: block; flex-shrink: 0; margin: 0 3px; } .collapsible.open .header-icon { transform: rotate(90deg); } .header-slots { align-items: center; display: flex; height: 22px; margin-left: auto; margin-right: 4px; } .actions { display: none; } .collapsible.open .actions.always-visible, .collapsible.open:hover .actions { display: block; } .header-slots slot { display: flex; max-height: 22px; overflow: hidden; } .header-slots slot::slotted(div) { align-items: center; display: flex; } .collapsible-body { display: none; overflow: hidden; } .collapsible.open .collapsible-body { display: block; } `, ]"
|
|
2018
2038
|
}
|
|
2019
2039
|
],
|
|
2020
2040
|
"exports": [
|
|
@@ -2164,6 +2184,19 @@
|
|
|
2164
2184
|
}
|
|
2165
2185
|
]
|
|
2166
2186
|
},
|
|
2187
|
+
{
|
|
2188
|
+
"kind": "method",
|
|
2189
|
+
"name": "_onActionClick",
|
|
2190
|
+
"privacy": "private",
|
|
2191
|
+
"parameters": [
|
|
2192
|
+
{
|
|
2193
|
+
"name": "event",
|
|
2194
|
+
"type": {
|
|
2195
|
+
"text": "PointerEvent"
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
]
|
|
2199
|
+
},
|
|
2167
2200
|
{
|
|
2168
2201
|
"kind": "field",
|
|
2169
2202
|
"name": "version",
|
|
@@ -4313,6 +4346,32 @@
|
|
|
4313
4346
|
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
4314
4347
|
}
|
|
4315
4348
|
},
|
|
4349
|
+
{
|
|
4350
|
+
"kind": "field",
|
|
4351
|
+
"name": "_prevXPos",
|
|
4352
|
+
"type": {
|
|
4353
|
+
"text": "number"
|
|
4354
|
+
},
|
|
4355
|
+
"privacy": "private",
|
|
4356
|
+
"default": "0",
|
|
4357
|
+
"inheritedFrom": {
|
|
4358
|
+
"name": "VscodeSelectBase",
|
|
4359
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
4360
|
+
}
|
|
4361
|
+
},
|
|
4362
|
+
{
|
|
4363
|
+
"kind": "field",
|
|
4364
|
+
"name": "_prevYPos",
|
|
4365
|
+
"type": {
|
|
4366
|
+
"text": "number"
|
|
4367
|
+
},
|
|
4368
|
+
"privacy": "private",
|
|
4369
|
+
"default": "0",
|
|
4370
|
+
"inheritedFrom": {
|
|
4371
|
+
"name": "VscodeSelectBase",
|
|
4372
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
4373
|
+
}
|
|
4374
|
+
},
|
|
4316
4375
|
{
|
|
4317
4376
|
"kind": "field",
|
|
4318
4377
|
"name": "_opts",
|
|
@@ -7426,6 +7485,32 @@
|
|
|
7426
7485
|
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
7427
7486
|
}
|
|
7428
7487
|
},
|
|
7488
|
+
{
|
|
7489
|
+
"kind": "field",
|
|
7490
|
+
"name": "_prevXPos",
|
|
7491
|
+
"type": {
|
|
7492
|
+
"text": "number"
|
|
7493
|
+
},
|
|
7494
|
+
"privacy": "private",
|
|
7495
|
+
"default": "0",
|
|
7496
|
+
"inheritedFrom": {
|
|
7497
|
+
"name": "VscodeSelectBase",
|
|
7498
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
7499
|
+
}
|
|
7500
|
+
},
|
|
7501
|
+
{
|
|
7502
|
+
"kind": "field",
|
|
7503
|
+
"name": "_prevYPos",
|
|
7504
|
+
"type": {
|
|
7505
|
+
"text": "number"
|
|
7506
|
+
},
|
|
7507
|
+
"privacy": "private",
|
|
7508
|
+
"default": "0",
|
|
7509
|
+
"inheritedFrom": {
|
|
7510
|
+
"name": "VscodeSelectBase",
|
|
7511
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
7512
|
+
}
|
|
7513
|
+
},
|
|
7429
7514
|
{
|
|
7430
7515
|
"kind": "field",
|
|
7431
7516
|
"name": "_opts",
|
|
@@ -8497,8 +8582,42 @@
|
|
|
8497
8582
|
"type": {
|
|
8498
8583
|
"text": "FixedPaneType"
|
|
8499
8584
|
},
|
|
8500
|
-
"privacy": "private",
|
|
8501
|
-
"default": "'none'"
|
|
8585
|
+
"privacy": "private",
|
|
8586
|
+
"default": "'none'"
|
|
8587
|
+
},
|
|
8588
|
+
{
|
|
8589
|
+
"kind": "field",
|
|
8590
|
+
"name": "minStart",
|
|
8591
|
+
"description": "Minimum size of the start pane expressed in `px` or `%`.",
|
|
8592
|
+
"type": {
|
|
8593
|
+
"text": "string"
|
|
8594
|
+
},
|
|
8595
|
+
"attribute": "min-start"
|
|
8596
|
+
},
|
|
8597
|
+
{
|
|
8598
|
+
"kind": "field",
|
|
8599
|
+
"name": "_minStart",
|
|
8600
|
+
"type": {
|
|
8601
|
+
"text": "string | undefined"
|
|
8602
|
+
},
|
|
8603
|
+
"privacy": "private"
|
|
8604
|
+
},
|
|
8605
|
+
{
|
|
8606
|
+
"kind": "field",
|
|
8607
|
+
"name": "minEnd",
|
|
8608
|
+
"description": "Minimum size of the end pane expressed in `px` or `%`.",
|
|
8609
|
+
"type": {
|
|
8610
|
+
"text": "string"
|
|
8611
|
+
},
|
|
8612
|
+
"attribute": "min-end"
|
|
8613
|
+
},
|
|
8614
|
+
{
|
|
8615
|
+
"kind": "field",
|
|
8616
|
+
"name": "_minEnd",
|
|
8617
|
+
"type": {
|
|
8618
|
+
"text": "string | undefined"
|
|
8619
|
+
},
|
|
8620
|
+
"privacy": "private"
|
|
8502
8621
|
},
|
|
8503
8622
|
{
|
|
8504
8623
|
"kind": "field",
|
|
@@ -8633,6 +8752,72 @@
|
|
|
8633
8752
|
"name": "_initFixedPane",
|
|
8634
8753
|
"privacy": "private"
|
|
8635
8754
|
},
|
|
8755
|
+
{
|
|
8756
|
+
"kind": "method",
|
|
8757
|
+
"name": "_applyMinSizeConstraints",
|
|
8758
|
+
"privacy": "private"
|
|
8759
|
+
},
|
|
8760
|
+
{
|
|
8761
|
+
"kind": "method",
|
|
8762
|
+
"name": "_resolveMinSizePx",
|
|
8763
|
+
"privacy": "private",
|
|
8764
|
+
"return": {
|
|
8765
|
+
"type": {
|
|
8766
|
+
"text": "number"
|
|
8767
|
+
}
|
|
8768
|
+
},
|
|
8769
|
+
"parameters": [
|
|
8770
|
+
{
|
|
8771
|
+
"name": "value",
|
|
8772
|
+
"type": {
|
|
8773
|
+
"text": "string | undefined"
|
|
8774
|
+
}
|
|
8775
|
+
},
|
|
8776
|
+
{
|
|
8777
|
+
"name": "max",
|
|
8778
|
+
"type": {
|
|
8779
|
+
"text": "number"
|
|
8780
|
+
}
|
|
8781
|
+
}
|
|
8782
|
+
]
|
|
8783
|
+
},
|
|
8784
|
+
{
|
|
8785
|
+
"kind": "method",
|
|
8786
|
+
"name": "_clampHandlePosition",
|
|
8787
|
+
"privacy": "private",
|
|
8788
|
+
"return": {
|
|
8789
|
+
"type": {
|
|
8790
|
+
"text": "number"
|
|
8791
|
+
}
|
|
8792
|
+
},
|
|
8793
|
+
"parameters": [
|
|
8794
|
+
{
|
|
8795
|
+
"name": "value",
|
|
8796
|
+
"type": {
|
|
8797
|
+
"text": "number"
|
|
8798
|
+
}
|
|
8799
|
+
},
|
|
8800
|
+
{
|
|
8801
|
+
"name": "max",
|
|
8802
|
+
"type": {
|
|
8803
|
+
"text": "number"
|
|
8804
|
+
}
|
|
8805
|
+
}
|
|
8806
|
+
]
|
|
8807
|
+
},
|
|
8808
|
+
{
|
|
8809
|
+
"kind": "method",
|
|
8810
|
+
"name": "_updateFixedPaneSize",
|
|
8811
|
+
"privacy": "private",
|
|
8812
|
+
"parameters": [
|
|
8813
|
+
{
|
|
8814
|
+
"name": "max",
|
|
8815
|
+
"type": {
|
|
8816
|
+
"text": "number"
|
|
8817
|
+
}
|
|
8818
|
+
}
|
|
8819
|
+
]
|
|
8820
|
+
},
|
|
8636
8821
|
{
|
|
8637
8822
|
"kind": "field",
|
|
8638
8823
|
"name": "_handleResize",
|
|
@@ -8773,6 +8958,22 @@
|
|
|
8773
8958
|
"text": "'start' | 'end' | 'none'"
|
|
8774
8959
|
},
|
|
8775
8960
|
"fieldName": "fixedPane"
|
|
8961
|
+
},
|
|
8962
|
+
{
|
|
8963
|
+
"name": "min-start",
|
|
8964
|
+
"description": "Minimum size of the start pane expressed in `px` or `%`.",
|
|
8965
|
+
"type": {
|
|
8966
|
+
"text": "string"
|
|
8967
|
+
},
|
|
8968
|
+
"fieldName": "minStart"
|
|
8969
|
+
},
|
|
8970
|
+
{
|
|
8971
|
+
"name": "min-end",
|
|
8972
|
+
"description": "Minimum size of the end pane expressed in `px` or `%`.",
|
|
8973
|
+
"type": {
|
|
8974
|
+
"text": "string"
|
|
8975
|
+
},
|
|
8976
|
+
"fieldName": "minEnd"
|
|
8776
8977
|
}
|
|
8777
8978
|
],
|
|
8778
8979
|
"superclass": {
|
|
@@ -12471,7 +12672,7 @@
|
|
|
12471
12672
|
"text": "TreeContext"
|
|
12472
12673
|
},
|
|
12473
12674
|
"privacy": "private",
|
|
12474
|
-
"default": "{ isShiftPressed: false, activeItem: null, selectedItems: new Set(), allItems: null, itemListUpToDate: false, focusedItem: null, prevFocusedItem: null, hasBranchItem: false, rootElement: this, highlightedItems: new Set(), highlightIndentGuides: () => { this._highlightIndentGuides(); }, emitSelectEvent: () => { this._emitSelectEvent(); }, }"
|
|
12675
|
+
"default": "{ isShiftPressed: false, activeItem: null, selectedItems: new Set(), hoveredItem: null, allItems: null, itemListUpToDate: false, focusedItem: null, prevFocusedItem: null, hasBranchItem: false, rootElement: this, highlightedItems: new Set(), highlightIndentGuides: () => { this._highlightIndentGuides(); }, emitSelectEvent: () => { this._emitSelectEvent(); }, }"
|
|
12475
12676
|
},
|
|
12476
12677
|
{
|
|
12477
12678
|
"kind": "field",
|
|
@@ -12675,7 +12876,7 @@
|
|
|
12675
12876
|
],
|
|
12676
12877
|
"superclass": {
|
|
12677
12878
|
"name": "VscElement",
|
|
12678
|
-
"module": "/src/includes/VscElement"
|
|
12879
|
+
"module": "/src/includes/VscElement.js"
|
|
12679
12880
|
},
|
|
12680
12881
|
"tagName": "vscode-tree",
|
|
12681
12882
|
"customElement": true
|
|
@@ -12726,7 +12927,7 @@
|
|
|
12726
12927
|
"type": {
|
|
12727
12928
|
"text": "CSSResultGroup"
|
|
12728
12929
|
},
|
|
12729
|
-
"default": "[ defaultStyles, css` :host { --hover-outline-color: transparent; --hover-outline-style: solid; --hover-outline-width: 0; --selected-outline-color: transparent; --selected-outline-style: solid; --selected-outline-width: 0; cursor: pointer; display: block; user-select: none; } ::slotted(vscode-icon) { display: block; } .root { display: block; } .wrapper { align-items: flex-start; color: var(--vscode-foreground, #cccccc); display: flex; font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); outline-offset: -1px; padding-right: 12px; } .wrapper:hover { background-color: var(--vscode-list-hoverBackground, #2a2d2e); color: var( --vscode-list-hoverForeground, var(--vscode-foreground, #cccccc) ); } :host([selected]) .wrapper { color: var(--internal-selectionForeground); background-color: var(--internal-selectionBackground); } :host([selected]) ::slotted(vscode-icon) { color: var(--internal-selectionForeground); } :host(:focus) { outline: none; } :host(:focus) .wrapper.active { outline-color: var( --vscode-list-focusAndSelectionOutline, var(--vscode-list-focusOutline, #0078d4) ); outline-style: solid; outline-width: 1px; } .arrow-container { align-items: center; display: var(--vsc-tree-item-arrow-display); height: 22px; justify-content: center; padding-left: 8px; padding-right: 6px; width: 16px; } .arrow-container svg { display: block; fill: var(--vscode-icon-foreground, #cccccc); } .arrow-container.icon-rotated svg { transform: rotate(90deg); } :host([selected]) .arrow-container svg { fill: var(--internal-selectionIconForeground); } .icon-container { align-items: center; display: flex;
|
|
12930
|
+
"default": "[ defaultStyles, css` :host { --hover-outline-color: transparent; --hover-outline-style: solid; --hover-outline-width: 0; --selected-outline-color: transparent; --selected-outline-style: solid; --selected-outline-width: 0; cursor: pointer; display: block; user-select: none; } ::slotted(vscode-icon) { display: block; } .root { display: block; } .wrapper { align-items: flex-start; color: var(--vscode-foreground, #cccccc); display: flex; flex-wrap: nowrap; font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); height: 22px; line-height: 22px; outline-offset: -1px; padding-right: 12px; } .wrapper:hover { background-color: var(--vscode-list-hoverBackground, #2a2d2e); color: var( --vscode-list-hoverForeground, var(--vscode-foreground, #cccccc) ); } :host([selected]) .wrapper { color: var(--internal-selectionForeground); background-color: var(--internal-selectionBackground); } :host([selected]) ::slotted(vscode-icon) { color: var(--internal-selectionForeground); } :host(:focus) { outline: none; } :host(:focus) .wrapper.active { outline-color: var( --vscode-list-focusAndSelectionOutline, var(--vscode-list-focusOutline, #0078d4) ); outline-style: solid; outline-width: 1px; } .arrow-container { align-items: center; display: var(--vsc-tree-item-arrow-display); height: 22px; justify-content: center; padding-left: 8px; padding-right: 6px; width: 16px; } .arrow-container svg { display: block; fill: var(--vscode-icon-foreground, #cccccc); } .arrow-container.icon-rotated svg { transform: rotate(90deg); } :host([selected]) .arrow-container svg { fill: var(--internal-selectionIconForeground); } .icon-container { align-items: center; display: flex; justify-content: center; margin-right: 3px; min-height: 22px; overflow: hidden; } .icon-container slot { display: block; } .icon-container.has-icon { min-width: 22px; max-width: 22px; max-height: 22px; } :host(:is(:--show-actions, :state(show-actions))) .icon-container { overflow: visible; } .children { position: relative; } .children.guide:before { background-color: var( --vscode-tree-inactiveIndentGuidesStroke, rgba(88, 88, 88, 0.4) ); content: ''; display: none; height: 100%; left: var(--indentation-guide-left); pointer-events: none; position: absolute; width: 1px; z-index: 1; } .children.guide.default-guide:before { display: var(--internal-defaultIndentGuideDisplay); } .children.guide.highlighted-guide:before { display: var(--internal-highlightedIndentGuideDisplay); background-color: var(--vscode-tree-indentGuidesStroke, #585858); } .content { display: flex; align-items: center; flex-wrap: nowrap; /* prevent wrapping; allow ellipses via min-width: 0 */ min-width: 0; width: 100%; line-height: 22px; } .label { display: inline-flex; align-items: center; gap: 4px; flex: 0 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .description { color: var(--vscode-foreground, #cccccc); opacity: 0.7; display: none; flex: 0 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .content.has-description .description { display: flex; align-items: center; justify-content: flex-start; flex: 1 1 0%; /* description takes remaining space, yields first when shrinking */ min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-left: 0.5em; } .content.has-description .label { flex: 0 1 auto; /* label only grows when description missing */ } .content:not(.has-description) .label { flex: 1 1 auto; } .label ::slotted(*) { display: inline-block; max-width: 100%; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .description ::slotted(*) { display: inline-block; max-width: 100%; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .actions { align-items: center; align-self: center; display: none; flex: 0 0 auto; gap: 2px; margin-left: auto; min-height: 22px; color: inherit; } .actions ::slotted(*) { align-items: center; display: inline-flex; height: 22px; } .actions ::slotted(button) { cursor: pointer; } .actions ::slotted([hidden]) { display: none !important; } :host( :is( :--has-actions:--show-actions, :--has-actions:state(show-actions), :state(has-actions):--show-actions, :state(has-actions):state(show-actions) ) ) .actions { display: inline-flex; } .decoration { align-items: center; align-self: center; color: inherit; display: none; flex: 0 0 auto; gap: 4px; margin-left: auto; min-height: 22px; } :host(:is(:--has-decoration, :state(has-decoration))) .decoration { display: inline-flex; } :host(:is(:--show-actions, :state(show-actions))) .decoration { margin-left: 6px; } :host([selected]) ::slotted([slot='decoration']), :host([selected]) ::slotted([slot='decoration']) * { color: inherit !important; } :host([selected]) .description { color: var(--internal-selectionForeground, #ffffff); opacity: 0.8; } :host([selected]) :is(:state(focus-visible), :--focus-visible) .description, :host([selected]:focus-within) .description { opacity: 0.95; } :host([branch]) ::slotted(vscode-tree-item) { display: none; } :host([branch][open]) ::slotted(vscode-tree-item) { display: block; } `, ]"
|
|
12730
12931
|
}
|
|
12731
12932
|
],
|
|
12732
12933
|
"exports": [
|
|
@@ -12875,6 +13076,33 @@
|
|
|
12875
13076
|
"privacy": "private",
|
|
12876
13077
|
"default": "false"
|
|
12877
13078
|
},
|
|
13079
|
+
{
|
|
13080
|
+
"kind": "field",
|
|
13081
|
+
"name": "_hasDescriptionSlotContent",
|
|
13082
|
+
"type": {
|
|
13083
|
+
"text": "boolean"
|
|
13084
|
+
},
|
|
13085
|
+
"privacy": "private",
|
|
13086
|
+
"default": "false"
|
|
13087
|
+
},
|
|
13088
|
+
{
|
|
13089
|
+
"kind": "field",
|
|
13090
|
+
"name": "_hasActionsSlotContent",
|
|
13091
|
+
"type": {
|
|
13092
|
+
"text": "boolean"
|
|
13093
|
+
},
|
|
13094
|
+
"privacy": "private",
|
|
13095
|
+
"default": "false"
|
|
13096
|
+
},
|
|
13097
|
+
{
|
|
13098
|
+
"kind": "field",
|
|
13099
|
+
"name": "_hasDecorationSlotContent",
|
|
13100
|
+
"type": {
|
|
13101
|
+
"text": "boolean"
|
|
13102
|
+
},
|
|
13103
|
+
"privacy": "private",
|
|
13104
|
+
"default": "false"
|
|
13105
|
+
},
|
|
12878
13106
|
{
|
|
12879
13107
|
"kind": "field",
|
|
12880
13108
|
"name": "_treeContextState",
|
|
@@ -12882,7 +13110,7 @@
|
|
|
12882
13110
|
"text": "TreeContext"
|
|
12883
13111
|
},
|
|
12884
13112
|
"privacy": "private",
|
|
12885
|
-
"default": "{ isShiftPressed: false, selectedItems: new Set(), allItems: null, itemListUpToDate: false, focusedItem: null, prevFocusedItem: null, hasBranchItem: false, rootElement: null, activeItem: null, }"
|
|
13113
|
+
"default": "{ isShiftPressed: false, selectedItems: new Set(), hoveredItem: null, allItems: null, itemListUpToDate: false, focusedItem: null, prevFocusedItem: null, hasBranchItem: false, rootElement: null, activeItem: null, }"
|
|
12886
13114
|
},
|
|
12887
13115
|
{
|
|
12888
13116
|
"kind": "field",
|
|
@@ -12908,6 +13136,48 @@
|
|
|
12908
13136
|
},
|
|
12909
13137
|
"privacy": "private"
|
|
12910
13138
|
},
|
|
13139
|
+
{
|
|
13140
|
+
"kind": "field",
|
|
13141
|
+
"name": "_descriptionSlotElements",
|
|
13142
|
+
"type": {
|
|
13143
|
+
"text": "Element[]"
|
|
13144
|
+
},
|
|
13145
|
+
"privacy": "private"
|
|
13146
|
+
},
|
|
13147
|
+
{
|
|
13148
|
+
"kind": "field",
|
|
13149
|
+
"name": "_actionsSlotElements",
|
|
13150
|
+
"type": {
|
|
13151
|
+
"text": "Element[]"
|
|
13152
|
+
},
|
|
13153
|
+
"privacy": "private"
|
|
13154
|
+
},
|
|
13155
|
+
{
|
|
13156
|
+
"kind": "field",
|
|
13157
|
+
"name": "_decorationSlotElements",
|
|
13158
|
+
"type": {
|
|
13159
|
+
"text": "Element[]"
|
|
13160
|
+
},
|
|
13161
|
+
"privacy": "private"
|
|
13162
|
+
},
|
|
13163
|
+
{
|
|
13164
|
+
"kind": "field",
|
|
13165
|
+
"name": "_isPointerInside",
|
|
13166
|
+
"type": {
|
|
13167
|
+
"text": "boolean"
|
|
13168
|
+
},
|
|
13169
|
+
"privacy": "private",
|
|
13170
|
+
"default": "false"
|
|
13171
|
+
},
|
|
13172
|
+
{
|
|
13173
|
+
"kind": "field",
|
|
13174
|
+
"name": "_hasKeyboardFocus",
|
|
13175
|
+
"type": {
|
|
13176
|
+
"text": "boolean"
|
|
13177
|
+
},
|
|
13178
|
+
"privacy": "private",
|
|
13179
|
+
"default": "false"
|
|
13180
|
+
},
|
|
12911
13181
|
{
|
|
12912
13182
|
"kind": "method",
|
|
12913
13183
|
"name": "_setAriaExpanded",
|
|
@@ -12932,6 +13202,93 @@
|
|
|
12932
13202
|
}
|
|
12933
13203
|
]
|
|
12934
13204
|
},
|
|
13205
|
+
{
|
|
13206
|
+
"kind": "method",
|
|
13207
|
+
"name": "_refreshDescriptionSlotState",
|
|
13208
|
+
"privacy": "private"
|
|
13209
|
+
},
|
|
13210
|
+
{
|
|
13211
|
+
"kind": "method",
|
|
13212
|
+
"name": "_refreshActionsSlotState",
|
|
13213
|
+
"privacy": "private"
|
|
13214
|
+
},
|
|
13215
|
+
{
|
|
13216
|
+
"kind": "method",
|
|
13217
|
+
"name": "_refreshDecorationSlotState",
|
|
13218
|
+
"privacy": "private"
|
|
13219
|
+
},
|
|
13220
|
+
{
|
|
13221
|
+
"kind": "method",
|
|
13222
|
+
"name": "_setCustomState",
|
|
13223
|
+
"privacy": "private",
|
|
13224
|
+
"parameters": [
|
|
13225
|
+
{
|
|
13226
|
+
"name": "stateName",
|
|
13227
|
+
"type": {
|
|
13228
|
+
"text": "string"
|
|
13229
|
+
}
|
|
13230
|
+
},
|
|
13231
|
+
{
|
|
13232
|
+
"name": "present",
|
|
13233
|
+
"type": {
|
|
13234
|
+
"text": "boolean"
|
|
13235
|
+
}
|
|
13236
|
+
}
|
|
13237
|
+
]
|
|
13238
|
+
},
|
|
13239
|
+
{
|
|
13240
|
+
"kind": "method",
|
|
13241
|
+
"name": "_getActiveElement",
|
|
13242
|
+
"privacy": "private",
|
|
13243
|
+
"return": {
|
|
13244
|
+
"type": {
|
|
13245
|
+
"text": "Element | null"
|
|
13246
|
+
}
|
|
13247
|
+
}
|
|
13248
|
+
},
|
|
13249
|
+
{
|
|
13250
|
+
"kind": "method",
|
|
13251
|
+
"name": "_isActiveElementInActions",
|
|
13252
|
+
"privacy": "private",
|
|
13253
|
+
"return": {
|
|
13254
|
+
"type": {
|
|
13255
|
+
"text": "boolean"
|
|
13256
|
+
}
|
|
13257
|
+
},
|
|
13258
|
+
"parameters": [
|
|
13259
|
+
{
|
|
13260
|
+
"name": "activeElement",
|
|
13261
|
+
"type": {
|
|
13262
|
+
"text": "Element | null"
|
|
13263
|
+
}
|
|
13264
|
+
}
|
|
13265
|
+
]
|
|
13266
|
+
},
|
|
13267
|
+
{
|
|
13268
|
+
"kind": "method",
|
|
13269
|
+
"name": "_updateActionsVisibility",
|
|
13270
|
+
"privacy": "private"
|
|
13271
|
+
},
|
|
13272
|
+
{
|
|
13273
|
+
"kind": "method",
|
|
13274
|
+
"name": "_updateFocusState",
|
|
13275
|
+
"privacy": "private"
|
|
13276
|
+
},
|
|
13277
|
+
{
|
|
13278
|
+
"kind": "method",
|
|
13279
|
+
"name": "_clearHoverState",
|
|
13280
|
+
"privacy": "private"
|
|
13281
|
+
},
|
|
13282
|
+
{
|
|
13283
|
+
"kind": "method",
|
|
13284
|
+
"name": "_adoptHoverFromSibling",
|
|
13285
|
+
"privacy": "private"
|
|
13286
|
+
},
|
|
13287
|
+
{
|
|
13288
|
+
"kind": "method",
|
|
13289
|
+
"name": "_claimHover",
|
|
13290
|
+
"privacy": "private"
|
|
13291
|
+
},
|
|
12935
13292
|
{
|
|
12936
13293
|
"kind": "method",
|
|
12937
13294
|
"name": "_toggleActiveState",
|
|
@@ -12984,6 +13341,21 @@
|
|
|
12984
13341
|
"name": "_handleChildrenSlotChange",
|
|
12985
13342
|
"privacy": "private"
|
|
12986
13343
|
},
|
|
13344
|
+
{
|
|
13345
|
+
"kind": "method",
|
|
13346
|
+
"name": "_handleDescriptionSlotChange",
|
|
13347
|
+
"privacy": "private"
|
|
13348
|
+
},
|
|
13349
|
+
{
|
|
13350
|
+
"kind": "method",
|
|
13351
|
+
"name": "_handleActionsSlotChange",
|
|
13352
|
+
"privacy": "private"
|
|
13353
|
+
},
|
|
13354
|
+
{
|
|
13355
|
+
"kind": "method",
|
|
13356
|
+
"name": "_handleDecorationSlotChange",
|
|
13357
|
+
"privacy": "private"
|
|
13358
|
+
},
|
|
12987
13359
|
{
|
|
12988
13360
|
"kind": "field",
|
|
12989
13361
|
"name": "_handleMainSlotChange",
|
|
@@ -12994,6 +13366,26 @@
|
|
|
12994
13366
|
"name": "_handleComponentFocus",
|
|
12995
13367
|
"privacy": "private"
|
|
12996
13368
|
},
|
|
13369
|
+
{
|
|
13370
|
+
"kind": "field",
|
|
13371
|
+
"name": "_handlePointerEnter",
|
|
13372
|
+
"privacy": "private"
|
|
13373
|
+
},
|
|
13374
|
+
{
|
|
13375
|
+
"kind": "field",
|
|
13376
|
+
"name": "_handlePointerLeave",
|
|
13377
|
+
"privacy": "private"
|
|
13378
|
+
},
|
|
13379
|
+
{
|
|
13380
|
+
"kind": "field",
|
|
13381
|
+
"name": "_handleFocusIn",
|
|
13382
|
+
"privacy": "private"
|
|
13383
|
+
},
|
|
13384
|
+
{
|
|
13385
|
+
"kind": "field",
|
|
13386
|
+
"name": "_handleFocusOut",
|
|
13387
|
+
"privacy": "private"
|
|
13388
|
+
},
|
|
12997
13389
|
{
|
|
12998
13390
|
"kind": "method",
|
|
12999
13391
|
"name": "_handleContentClick",
|
|
@@ -13106,7 +13498,7 @@
|
|
|
13106
13498
|
],
|
|
13107
13499
|
"superclass": {
|
|
13108
13500
|
"name": "VscElement",
|
|
13109
|
-
"module": "/src/includes/VscElement"
|
|
13501
|
+
"module": "/src/includes/VscElement.js"
|
|
13110
13502
|
},
|
|
13111
13503
|
"tagName": "vscode-tree-item",
|
|
13112
13504
|
"customElement": true
|
|
@@ -14221,6 +14613,24 @@
|
|
|
14221
14613
|
},
|
|
14222
14614
|
"privacy": "private"
|
|
14223
14615
|
},
|
|
14616
|
+
{
|
|
14617
|
+
"kind": "field",
|
|
14618
|
+
"name": "_prevXPos",
|
|
14619
|
+
"type": {
|
|
14620
|
+
"text": "number"
|
|
14621
|
+
},
|
|
14622
|
+
"privacy": "private",
|
|
14623
|
+
"default": "0"
|
|
14624
|
+
},
|
|
14625
|
+
{
|
|
14626
|
+
"kind": "field",
|
|
14627
|
+
"name": "_prevYPos",
|
|
14628
|
+
"type": {
|
|
14629
|
+
"text": "number"
|
|
14630
|
+
},
|
|
14631
|
+
"privacy": "private",
|
|
14632
|
+
"default": "0"
|
|
14633
|
+
},
|
|
14224
14634
|
{
|
|
14225
14635
|
"kind": "field",
|
|
14226
14636
|
"name": "_opts",
|
|
@@ -14874,6 +15284,18 @@
|
|
|
14874
15284
|
"name": "VscElement",
|
|
14875
15285
|
"module": "/src/includes/VscElement.js"
|
|
14876
15286
|
}
|
|
15287
|
+
},
|
|
15288
|
+
{
|
|
15289
|
+
"kind": "variable",
|
|
15290
|
+
"name": "value"
|
|
15291
|
+
},
|
|
15292
|
+
{
|
|
15293
|
+
"kind": "variable",
|
|
15294
|
+
"name": "selected"
|
|
15295
|
+
},
|
|
15296
|
+
{
|
|
15297
|
+
"kind": "variable",
|
|
15298
|
+
"name": "active"
|
|
14877
15299
|
}
|
|
14878
15300
|
],
|
|
14879
15301
|
"exports": [
|