@vscode-elements/elements 2.3.1-pre.1 → 2.3.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/custom-elements.json +704 -681
- package/dist/bundled.js +9 -9
- package/dist/includes/VscElement.js +1 -1
- package/dist/includes/VscElement.js.map +1 -1
- package/dist/includes/vscode-select/OptionListController.d.ts.map +1 -1
- package/dist/includes/vscode-select/OptionListController.js +9 -3
- package/dist/includes/vscode-select/OptionListController.js.map +1 -1
- package/dist/vscode-multi-select/vscode-multi-select.d.ts +1 -0
- package/dist/vscode-multi-select/vscode-multi-select.d.ts.map +1 -1
- package/dist/vscode-multi-select/vscode-multi-select.js +5 -9
- package/dist/vscode-multi-select/vscode-multi-select.js.map +1 -1
- package/dist/vscode-scrollable/vscode-scrollable.d.ts +2 -0
- package/dist/vscode-scrollable/vscode-scrollable.d.ts.map +1 -1
- package/dist/vscode-scrollable/vscode-scrollable.js +7 -0
- package/dist/vscode-scrollable/vscode-scrollable.js.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.d.ts.map +1 -1
- package/dist/vscode-tree-item/vscode-tree-item.js +3 -2
- package/dist/vscode-tree-item/vscode-tree-item.js.map +1 -1
- package/package.json +2 -2
- package/vscode.css-custom-data.json +24 -24
- package/vscode.html-custom-data.json +52 -52
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",
|
|
@@ -1099,131 +1224,6 @@
|
|
|
1099
1224
|
}
|
|
1100
1225
|
]
|
|
1101
1226
|
},
|
|
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
1227
|
{
|
|
1228
1228
|
"kind": "javascript-module",
|
|
1229
1229
|
"path": "src/vscode-button-group/vscode-button-group.styles.ts",
|
|
@@ -2006,7 +2006,7 @@
|
|
|
2006
2006
|
},
|
|
2007
2007
|
{
|
|
2008
2008
|
"kind": "javascript-module",
|
|
2009
|
-
"path": "src/vscode-
|
|
2009
|
+
"path": "src/vscode-context-menu/vscode-context-menu.styles.ts",
|
|
2010
2010
|
"declarations": [
|
|
2011
2011
|
{
|
|
2012
2012
|
"kind": "variable",
|
|
@@ -2014,7 +2014,7 @@
|
|
|
2014
2014
|
"type": {
|
|
2015
2015
|
"text": "CSSResultGroup"
|
|
2016
2016
|
},
|
|
2017
|
-
"default": "[ defaultStyles, css`
|
|
2017
|
+
"default": "[ defaultStyles, css` :host { display: block; position: relative; } .context-menu { background-color: var(--vscode-menu-background, #1f1f1f); border-color: var(--vscode-menu-border, #454545); border-radius: 5px; border-style: solid; border-width: 1px; box-shadow: 0 2px 8px var(--vscode-widget-shadow, rgba(0, 0, 0, 0.36)); color: var(--vscode-menu-foreground, #cccccc); font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); line-height: 1.4em; padding: 4px 0; white-space: nowrap; } .context-menu:focus { outline: 0; } `, ]"
|
|
2018
2018
|
}
|
|
2019
2019
|
],
|
|
2020
2020
|
"exports": [
|
|
@@ -2023,264 +2023,7 @@
|
|
|
2023
2023
|
"name": "default",
|
|
2024
2024
|
"declaration": {
|
|
2025
2025
|
"name": "styles",
|
|
2026
|
-
"module": "src/vscode-
|
|
2027
|
-
}
|
|
2028
|
-
}
|
|
2029
|
-
]
|
|
2030
|
-
},
|
|
2031
|
-
{
|
|
2032
|
-
"kind": "javascript-module",
|
|
2033
|
-
"path": "src/vscode-collapsible/vscode-collapsible.ts",
|
|
2034
|
-
"declarations": [
|
|
2035
|
-
{
|
|
2036
|
-
"kind": "class",
|
|
2037
|
-
"description": "Allows users to reveal or hide related content on a page.",
|
|
2038
|
-
"name": "VscodeCollapsible",
|
|
2039
|
-
"cssProperties": [
|
|
2040
|
-
{
|
|
2041
|
-
"description": "Background color",
|
|
2042
|
-
"name": "--vscode-sideBar-background",
|
|
2043
|
-
"default": "#181818"
|
|
2044
|
-
},
|
|
2045
|
-
{
|
|
2046
|
-
"description": "Focus border color",
|
|
2047
|
-
"name": "--vscode-focusBorder",
|
|
2048
|
-
"default": "#0078d4"
|
|
2049
|
-
},
|
|
2050
|
-
{
|
|
2051
|
-
"description": "Header font family",
|
|
2052
|
-
"name": "--vscode-font-family",
|
|
2053
|
-
"default": "sans-serif"
|
|
2054
|
-
},
|
|
2055
|
-
{
|
|
2056
|
-
"description": "Header background",
|
|
2057
|
-
"name": "--vscode-sideBarSectionHeader-background",
|
|
2058
|
-
"default": "#181818"
|
|
2059
|
-
},
|
|
2060
|
-
{
|
|
2061
|
-
"description": "Arrow icon color",
|
|
2062
|
-
"name": "--vscode-icon-foreground",
|
|
2063
|
-
"default": "#cccccc"
|
|
2064
|
-
},
|
|
2065
|
-
{
|
|
2066
|
-
"description": "Header font color",
|
|
2067
|
-
"name": "--vscode-sideBarTitle-foreground",
|
|
2068
|
-
"default": "#cccccc"
|
|
2069
|
-
}
|
|
2070
|
-
],
|
|
2071
|
-
"cssParts": [
|
|
2072
|
-
{
|
|
2073
|
-
"description": "Container for the toggleable content of the component. The container's overflow content is hidden by default. This CSS part can serve as an escape hatch to modify this behavior.",
|
|
2074
|
-
"name": "body"
|
|
2075
|
-
}
|
|
2076
|
-
],
|
|
2077
|
-
"slots": [
|
|
2078
|
-
{
|
|
2079
|
-
"description": "Main content.",
|
|
2080
|
-
"name": ""
|
|
2081
|
-
},
|
|
2082
|
-
{
|
|
2083
|
-
"description": "You can place any action icon in this slot in the header, but it's also possible to use any HTML element in it. It's only visible when the component is open.",
|
|
2084
|
-
"name": "actions"
|
|
2085
|
-
},
|
|
2086
|
-
{
|
|
2087
|
-
"description": "The elements placed in the decorations slot are always visible.",
|
|
2088
|
-
"name": "decorations"
|
|
2089
|
-
}
|
|
2090
|
-
],
|
|
2091
|
-
"members": [
|
|
2092
|
-
{
|
|
2093
|
-
"kind": "field",
|
|
2094
|
-
"name": "alwaysShowHeaderActions",
|
|
2095
|
-
"type": {
|
|
2096
|
-
"text": "boolean"
|
|
2097
|
-
},
|
|
2098
|
-
"default": "false",
|
|
2099
|
-
"description": "When enabled, header actions are always visible; otherwise, they appear only when the cursor\nhovers over the component. Actions are shown only when the Collapsible component is open. This\nproperty is designed to use the `workbench.view.alwaysShowHeaderActions` setting.",
|
|
2100
|
-
"attribute": "always-show-header-actions",
|
|
2101
|
-
"reflects": true
|
|
2102
|
-
},
|
|
2103
|
-
{
|
|
2104
|
-
"kind": "field",
|
|
2105
|
-
"name": "title",
|
|
2106
|
-
"type": {
|
|
2107
|
-
"text": "string"
|
|
2108
|
-
},
|
|
2109
|
-
"default": "''",
|
|
2110
|
-
"description": "Component heading text",
|
|
2111
|
-
"deprecated": "The `title` is a global HTML attribute and will unintentionally trigger a native\ntooltip on the component. Use the `heading` property instead.",
|
|
2112
|
-
"attribute": "title"
|
|
2113
|
-
},
|
|
2114
|
-
{
|
|
2115
|
-
"kind": "field",
|
|
2116
|
-
"name": "heading",
|
|
2117
|
-
"type": {
|
|
2118
|
-
"text": "string"
|
|
2119
|
-
},
|
|
2120
|
-
"default": "''",
|
|
2121
|
-
"description": "Heading text.",
|
|
2122
|
-
"attribute": "heading"
|
|
2123
|
-
},
|
|
2124
|
-
{
|
|
2125
|
-
"kind": "field",
|
|
2126
|
-
"name": "description",
|
|
2127
|
-
"type": {
|
|
2128
|
-
"text": "string"
|
|
2129
|
-
},
|
|
2130
|
-
"default": "''",
|
|
2131
|
-
"description": "Less prominent text in the header.",
|
|
2132
|
-
"attribute": "description"
|
|
2133
|
-
},
|
|
2134
|
-
{
|
|
2135
|
-
"kind": "field",
|
|
2136
|
-
"name": "open",
|
|
2137
|
-
"type": {
|
|
2138
|
-
"text": "boolean"
|
|
2139
|
-
},
|
|
2140
|
-
"default": "false",
|
|
2141
|
-
"attribute": "open",
|
|
2142
|
-
"reflects": true
|
|
2143
|
-
},
|
|
2144
|
-
{
|
|
2145
|
-
"kind": "method",
|
|
2146
|
-
"name": "_emitToggleEvent",
|
|
2147
|
-
"privacy": "private"
|
|
2148
|
-
},
|
|
2149
|
-
{
|
|
2150
|
-
"kind": "method",
|
|
2151
|
-
"name": "_onHeaderClick",
|
|
2152
|
-
"privacy": "private"
|
|
2153
|
-
},
|
|
2154
|
-
{
|
|
2155
|
-
"kind": "method",
|
|
2156
|
-
"name": "_onHeaderKeyDown",
|
|
2157
|
-
"privacy": "private",
|
|
2158
|
-
"parameters": [
|
|
2159
|
-
{
|
|
2160
|
-
"name": "event",
|
|
2161
|
-
"type": {
|
|
2162
|
-
"text": "KeyboardEvent"
|
|
2163
|
-
}
|
|
2164
|
-
}
|
|
2165
|
-
]
|
|
2166
|
-
},
|
|
2167
|
-
{
|
|
2168
|
-
"kind": "field",
|
|
2169
|
-
"name": "version",
|
|
2170
|
-
"type": {
|
|
2171
|
-
"text": "string"
|
|
2172
|
-
},
|
|
2173
|
-
"description": "VSCode Elements version",
|
|
2174
|
-
"readonly": true,
|
|
2175
|
-
"inheritedFrom": {
|
|
2176
|
-
"name": "VscElement",
|
|
2177
|
-
"module": "src/includes/VscElement.ts"
|
|
2178
|
-
}
|
|
2179
|
-
}
|
|
2180
|
-
],
|
|
2181
|
-
"events": [
|
|
2182
|
-
{
|
|
2183
|
-
"type": {
|
|
2184
|
-
"text": "VscCollapsibleToggleEvent"
|
|
2185
|
-
},
|
|
2186
|
-
"description": "Dispatched when the content visibility is changed.",
|
|
2187
|
-
"name": "vsc-collapsible-toggle"
|
|
2188
|
-
}
|
|
2189
|
-
],
|
|
2190
|
-
"attributes": [
|
|
2191
|
-
{
|
|
2192
|
-
"name": "always-show-header-actions",
|
|
2193
|
-
"type": {
|
|
2194
|
-
"text": "boolean"
|
|
2195
|
-
},
|
|
2196
|
-
"default": "false",
|
|
2197
|
-
"description": "When enabled, header actions are always visible; otherwise, they appear only when the cursor\nhovers over the component. Actions are shown only when the Collapsible component is open. This\nproperty is designed to use the `workbench.view.alwaysShowHeaderActions` setting.",
|
|
2198
|
-
"fieldName": "alwaysShowHeaderActions"
|
|
2199
|
-
},
|
|
2200
|
-
{
|
|
2201
|
-
"name": "title",
|
|
2202
|
-
"type": {
|
|
2203
|
-
"text": "string"
|
|
2204
|
-
},
|
|
2205
|
-
"default": "''",
|
|
2206
|
-
"description": "Component heading text",
|
|
2207
|
-
"deprecated": "The `title` is a global HTML attribute and will unintentionally trigger a native\ntooltip on the component. Use the `heading` property instead.",
|
|
2208
|
-
"fieldName": "title"
|
|
2209
|
-
},
|
|
2210
|
-
{
|
|
2211
|
-
"name": "heading",
|
|
2212
|
-
"type": {
|
|
2213
|
-
"text": "string"
|
|
2214
|
-
},
|
|
2215
|
-
"default": "''",
|
|
2216
|
-
"description": "Heading text.",
|
|
2217
|
-
"fieldName": "heading"
|
|
2218
|
-
},
|
|
2219
|
-
{
|
|
2220
|
-
"name": "description",
|
|
2221
|
-
"type": {
|
|
2222
|
-
"text": "string"
|
|
2223
|
-
},
|
|
2224
|
-
"default": "''",
|
|
2225
|
-
"description": "Less prominent text in the header.",
|
|
2226
|
-
"fieldName": "description"
|
|
2227
|
-
},
|
|
2228
|
-
{
|
|
2229
|
-
"name": "open",
|
|
2230
|
-
"type": {
|
|
2231
|
-
"text": "boolean"
|
|
2232
|
-
},
|
|
2233
|
-
"default": "false",
|
|
2234
|
-
"fieldName": "open"
|
|
2235
|
-
}
|
|
2236
|
-
],
|
|
2237
|
-
"superclass": {
|
|
2238
|
-
"name": "VscElement",
|
|
2239
|
-
"module": "/src/includes/VscElement.js"
|
|
2240
|
-
},
|
|
2241
|
-
"tagName": "vscode-collapsible",
|
|
2242
|
-
"customElement": true
|
|
2243
|
-
}
|
|
2244
|
-
],
|
|
2245
|
-
"exports": [
|
|
2246
|
-
{
|
|
2247
|
-
"kind": "js",
|
|
2248
|
-
"name": "VscodeCollapsible",
|
|
2249
|
-
"declaration": {
|
|
2250
|
-
"name": "VscodeCollapsible",
|
|
2251
|
-
"module": "src/vscode-collapsible/vscode-collapsible.ts"
|
|
2252
|
-
}
|
|
2253
|
-
},
|
|
2254
|
-
{
|
|
2255
|
-
"kind": "custom-element-definition",
|
|
2256
|
-
"name": "vscode-collapsible",
|
|
2257
|
-
"declaration": {
|
|
2258
|
-
"name": "VscodeCollapsible",
|
|
2259
|
-
"module": "src/vscode-collapsible/vscode-collapsible.ts"
|
|
2260
|
-
}
|
|
2261
|
-
}
|
|
2262
|
-
]
|
|
2263
|
-
},
|
|
2264
|
-
{
|
|
2265
|
-
"kind": "javascript-module",
|
|
2266
|
-
"path": "src/vscode-context-menu/vscode-context-menu.styles.ts",
|
|
2267
|
-
"declarations": [
|
|
2268
|
-
{
|
|
2269
|
-
"kind": "variable",
|
|
2270
|
-
"name": "styles",
|
|
2271
|
-
"type": {
|
|
2272
|
-
"text": "CSSResultGroup"
|
|
2273
|
-
},
|
|
2274
|
-
"default": "[ defaultStyles, css` :host { display: block; position: relative; } .context-menu { background-color: var(--vscode-menu-background, #1f1f1f); border-color: var(--vscode-menu-border, #454545); border-radius: 5px; border-style: solid; border-width: 1px; box-shadow: 0 2px 8px var(--vscode-widget-shadow, rgba(0, 0, 0, 0.36)); color: var(--vscode-menu-foreground, #cccccc); font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); line-height: 1.4em; padding: 4px 0; white-space: nowrap; } .context-menu:focus { outline: 0; } `, ]"
|
|
2275
|
-
}
|
|
2276
|
-
],
|
|
2277
|
-
"exports": [
|
|
2278
|
-
{
|
|
2279
|
-
"kind": "js",
|
|
2280
|
-
"name": "default",
|
|
2281
|
-
"declaration": {
|
|
2282
|
-
"name": "styles",
|
|
2283
|
-
"module": "src/vscode-context-menu/vscode-context-menu.styles.ts"
|
|
2026
|
+
"module": "src/vscode-context-menu/vscode-context-menu.styles.ts"
|
|
2284
2027
|
}
|
|
2285
2028
|
}
|
|
2286
2029
|
]
|
|
@@ -2560,7 +2303,7 @@
|
|
|
2560
2303
|
},
|
|
2561
2304
|
{
|
|
2562
2305
|
"kind": "javascript-module",
|
|
2563
|
-
"path": "src/vscode-
|
|
2306
|
+
"path": "src/vscode-collapsible/vscode-collapsible.styles.ts",
|
|
2564
2307
|
"declarations": [
|
|
2565
2308
|
{
|
|
2566
2309
|
"kind": "variable",
|
|
@@ -2568,7 +2311,7 @@
|
|
|
2568
2311
|
"type": {
|
|
2569
2312
|
"text": "CSSResultGroup"
|
|
2570
2313
|
},
|
|
2571
|
-
"default": "[ defaultStyles, css` :
|
|
2314
|
+
"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; } `, ]"
|
|
2572
2315
|
}
|
|
2573
2316
|
],
|
|
2574
2317
|
"exports": [
|
|
@@ -2577,109 +2320,147 @@
|
|
|
2577
2320
|
"name": "default",
|
|
2578
2321
|
"declaration": {
|
|
2579
2322
|
"name": "styles",
|
|
2580
|
-
"module": "src/vscode-
|
|
2323
|
+
"module": "src/vscode-collapsible/vscode-collapsible.styles.ts"
|
|
2581
2324
|
}
|
|
2582
2325
|
}
|
|
2583
2326
|
]
|
|
2584
2327
|
},
|
|
2585
2328
|
{
|
|
2586
2329
|
"kind": "javascript-module",
|
|
2587
|
-
"path": "src/vscode-
|
|
2330
|
+
"path": "src/vscode-collapsible/vscode-collapsible.ts",
|
|
2588
2331
|
"declarations": [
|
|
2589
2332
|
{
|
|
2590
2333
|
"kind": "class",
|
|
2591
|
-
"description": "",
|
|
2592
|
-
"name": "
|
|
2334
|
+
"description": "Allows users to reveal or hide related content on a page.",
|
|
2335
|
+
"name": "VscodeCollapsible",
|
|
2593
2336
|
"cssProperties": [
|
|
2594
2337
|
{
|
|
2595
|
-
"
|
|
2596
|
-
"
|
|
2338
|
+
"description": "Background color",
|
|
2339
|
+
"name": "--vscode-sideBar-background",
|
|
2340
|
+
"default": "#181818"
|
|
2597
2341
|
},
|
|
2598
2342
|
{
|
|
2599
|
-
"
|
|
2600
|
-
"
|
|
2343
|
+
"description": "Focus border color",
|
|
2344
|
+
"name": "--vscode-focusBorder",
|
|
2345
|
+
"default": "#0078d4"
|
|
2601
2346
|
},
|
|
2602
2347
|
{
|
|
2603
|
-
"
|
|
2604
|
-
"
|
|
2348
|
+
"description": "Header font family",
|
|
2349
|
+
"name": "--vscode-font-family",
|
|
2350
|
+
"default": "sans-serif"
|
|
2605
2351
|
},
|
|
2606
2352
|
{
|
|
2607
|
-
"
|
|
2608
|
-
"
|
|
2353
|
+
"description": "Header background",
|
|
2354
|
+
"name": "--vscode-sideBarSectionHeader-background",
|
|
2355
|
+
"default": "#181818"
|
|
2609
2356
|
},
|
|
2610
2357
|
{
|
|
2611
|
-
"
|
|
2612
|
-
"
|
|
2358
|
+
"description": "Arrow icon color",
|
|
2359
|
+
"name": "--vscode-icon-foreground",
|
|
2360
|
+
"default": "#cccccc"
|
|
2613
2361
|
},
|
|
2614
2362
|
{
|
|
2615
|
-
"
|
|
2363
|
+
"description": "Header font color",
|
|
2364
|
+
"name": "--vscode-sideBarTitle-foreground",
|
|
2616
2365
|
"default": "#cccccc"
|
|
2617
|
-
}
|
|
2366
|
+
}
|
|
2367
|
+
],
|
|
2368
|
+
"cssParts": [
|
|
2618
2369
|
{
|
|
2619
|
-
"
|
|
2620
|
-
"
|
|
2370
|
+
"description": "Container for the toggleable content of the component. The container's overflow content is hidden by default. This CSS part can serve as an escape hatch to modify this behavior.",
|
|
2371
|
+
"name": "body"
|
|
2372
|
+
}
|
|
2373
|
+
],
|
|
2374
|
+
"slots": [
|
|
2375
|
+
{
|
|
2376
|
+
"description": "Main content.",
|
|
2377
|
+
"name": ""
|
|
2621
2378
|
},
|
|
2622
2379
|
{
|
|
2623
|
-
"
|
|
2624
|
-
"
|
|
2380
|
+
"description": "You can place any action icon in this slot in the header, but it's also possible to use any HTML element in it. It's only visible when the component is open.",
|
|
2381
|
+
"name": "actions"
|
|
2625
2382
|
},
|
|
2626
2383
|
{
|
|
2627
|
-
"
|
|
2628
|
-
"
|
|
2384
|
+
"description": "The elements placed in the decorations slot are always visible.",
|
|
2385
|
+
"name": "decorations"
|
|
2629
2386
|
}
|
|
2630
2387
|
],
|
|
2631
2388
|
"members": [
|
|
2632
2389
|
{
|
|
2633
2390
|
"kind": "field",
|
|
2634
|
-
"name": "
|
|
2391
|
+
"name": "alwaysShowHeaderActions",
|
|
2635
2392
|
"type": {
|
|
2636
|
-
"text": "
|
|
2393
|
+
"text": "boolean"
|
|
2637
2394
|
},
|
|
2638
|
-
"default": "
|
|
2639
|
-
"
|
|
2395
|
+
"default": "false",
|
|
2396
|
+
"description": "When enabled, header actions are always visible; otherwise, they appear only when the cursor\nhovers over the component. Actions are shown only when the Collapsible component is open. This\nproperty is designed to use the `workbench.view.alwaysShowHeaderActions` setting.",
|
|
2397
|
+
"attribute": "always-show-header-actions",
|
|
2398
|
+
"reflects": true
|
|
2640
2399
|
},
|
|
2641
2400
|
{
|
|
2642
2401
|
"kind": "field",
|
|
2643
|
-
"name": "
|
|
2402
|
+
"name": "title",
|
|
2644
2403
|
"type": {
|
|
2645
2404
|
"text": "string"
|
|
2646
2405
|
},
|
|
2647
2406
|
"default": "''",
|
|
2648
|
-
"
|
|
2407
|
+
"description": "Component heading text",
|
|
2408
|
+
"deprecated": "The `title` is a global HTML attribute and will unintentionally trigger a native\ntooltip on the component. Use the `heading` property instead.",
|
|
2409
|
+
"attribute": "title"
|
|
2649
2410
|
},
|
|
2650
2411
|
{
|
|
2651
2412
|
"kind": "field",
|
|
2652
|
-
"name": "
|
|
2413
|
+
"name": "heading",
|
|
2653
2414
|
"type": {
|
|
2654
2415
|
"text": "string"
|
|
2655
2416
|
},
|
|
2656
2417
|
"default": "''",
|
|
2657
|
-
"
|
|
2418
|
+
"description": "Heading text.",
|
|
2419
|
+
"attribute": "heading"
|
|
2658
2420
|
},
|
|
2659
2421
|
{
|
|
2660
2422
|
"kind": "field",
|
|
2661
|
-
"name": "
|
|
2423
|
+
"name": "description",
|
|
2662
2424
|
"type": {
|
|
2663
|
-
"text": "
|
|
2425
|
+
"text": "string"
|
|
2664
2426
|
},
|
|
2665
|
-
"default": "
|
|
2666
|
-
"
|
|
2667
|
-
"
|
|
2427
|
+
"default": "''",
|
|
2428
|
+
"description": "Less prominent text in the header.",
|
|
2429
|
+
"attribute": "description"
|
|
2668
2430
|
},
|
|
2669
2431
|
{
|
|
2670
2432
|
"kind": "field",
|
|
2671
|
-
"name": "
|
|
2433
|
+
"name": "open",
|
|
2672
2434
|
"type": {
|
|
2673
|
-
"text": "
|
|
2435
|
+
"text": "boolean"
|
|
2674
2436
|
},
|
|
2675
|
-
"default": "
|
|
2676
|
-
"attribute": "
|
|
2437
|
+
"default": "false",
|
|
2438
|
+
"attribute": "open",
|
|
2439
|
+
"reflects": true
|
|
2677
2440
|
},
|
|
2678
2441
|
{
|
|
2679
2442
|
"kind": "method",
|
|
2680
|
-
"name": "
|
|
2443
|
+
"name": "_emitToggleEvent",
|
|
2444
|
+
"privacy": "private"
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"kind": "method",
|
|
2448
|
+
"name": "_onHeaderClick",
|
|
2681
2449
|
"privacy": "private"
|
|
2682
2450
|
},
|
|
2451
|
+
{
|
|
2452
|
+
"kind": "method",
|
|
2453
|
+
"name": "_onHeaderKeyDown",
|
|
2454
|
+
"privacy": "private",
|
|
2455
|
+
"parameters": [
|
|
2456
|
+
{
|
|
2457
|
+
"name": "event",
|
|
2458
|
+
"type": {
|
|
2459
|
+
"text": "KeyboardEvent"
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
]
|
|
2463
|
+
},
|
|
2683
2464
|
{
|
|
2684
2465
|
"kind": "field",
|
|
2685
2466
|
"name": "version",
|
|
@@ -2694,71 +2475,85 @@
|
|
|
2694
2475
|
}
|
|
2695
2476
|
}
|
|
2696
2477
|
],
|
|
2478
|
+
"events": [
|
|
2479
|
+
{
|
|
2480
|
+
"type": {
|
|
2481
|
+
"text": "VscCollapsibleToggleEvent"
|
|
2482
|
+
},
|
|
2483
|
+
"description": "Dispatched when the content visibility is changed.",
|
|
2484
|
+
"name": "vsc-collapsible-toggle"
|
|
2485
|
+
}
|
|
2486
|
+
],
|
|
2697
2487
|
"attributes": [
|
|
2698
2488
|
{
|
|
2699
|
-
"name": "
|
|
2489
|
+
"name": "always-show-header-actions",
|
|
2700
2490
|
"type": {
|
|
2701
|
-
"text": "
|
|
2491
|
+
"text": "boolean"
|
|
2702
2492
|
},
|
|
2703
|
-
"default": "
|
|
2704
|
-
"
|
|
2493
|
+
"default": "false",
|
|
2494
|
+
"description": "When enabled, header actions are always visible; otherwise, they appear only when the cursor\nhovers over the component. Actions are shown only when the Collapsible component is open. This\nproperty is designed to use the `workbench.view.alwaysShowHeaderActions` setting.",
|
|
2495
|
+
"fieldName": "alwaysShowHeaderActions"
|
|
2705
2496
|
},
|
|
2706
2497
|
{
|
|
2707
|
-
"name": "
|
|
2498
|
+
"name": "title",
|
|
2708
2499
|
"type": {
|
|
2709
2500
|
"text": "string"
|
|
2710
2501
|
},
|
|
2711
2502
|
"default": "''",
|
|
2712
|
-
"
|
|
2503
|
+
"description": "Component heading text",
|
|
2504
|
+
"deprecated": "The `title` is a global HTML attribute and will unintentionally trigger a native\ntooltip on the component. Use the `heading` property instead.",
|
|
2505
|
+
"fieldName": "title"
|
|
2713
2506
|
},
|
|
2714
2507
|
{
|
|
2715
|
-
"name": "
|
|
2508
|
+
"name": "heading",
|
|
2716
2509
|
"type": {
|
|
2717
2510
|
"text": "string"
|
|
2718
2511
|
},
|
|
2719
2512
|
"default": "''",
|
|
2720
|
-
"
|
|
2513
|
+
"description": "Heading text.",
|
|
2514
|
+
"fieldName": "heading"
|
|
2721
2515
|
},
|
|
2722
2516
|
{
|
|
2723
|
-
"name": "
|
|
2517
|
+
"name": "description",
|
|
2724
2518
|
"type": {
|
|
2725
|
-
"text": "
|
|
2519
|
+
"text": "string"
|
|
2726
2520
|
},
|
|
2727
|
-
"default": "
|
|
2728
|
-
"
|
|
2521
|
+
"default": "''",
|
|
2522
|
+
"description": "Less prominent text in the header.",
|
|
2523
|
+
"fieldName": "description"
|
|
2729
2524
|
},
|
|
2730
2525
|
{
|
|
2731
|
-
"name": "
|
|
2526
|
+
"name": "open",
|
|
2732
2527
|
"type": {
|
|
2733
|
-
"text": "
|
|
2528
|
+
"text": "boolean"
|
|
2734
2529
|
},
|
|
2735
|
-
"default": "
|
|
2736
|
-
"fieldName": "
|
|
2530
|
+
"default": "false",
|
|
2531
|
+
"fieldName": "open"
|
|
2737
2532
|
}
|
|
2738
2533
|
],
|
|
2739
2534
|
"superclass": {
|
|
2740
2535
|
"name": "VscElement",
|
|
2741
2536
|
"module": "/src/includes/VscElement.js"
|
|
2742
2537
|
},
|
|
2743
|
-
"tagName": "vscode-
|
|
2538
|
+
"tagName": "vscode-collapsible",
|
|
2744
2539
|
"customElement": true
|
|
2745
2540
|
}
|
|
2746
2541
|
],
|
|
2747
2542
|
"exports": [
|
|
2748
2543
|
{
|
|
2749
2544
|
"kind": "js",
|
|
2750
|
-
"name": "
|
|
2545
|
+
"name": "VscodeCollapsible",
|
|
2751
2546
|
"declaration": {
|
|
2752
|
-
"name": "
|
|
2753
|
-
"module": "src/vscode-
|
|
2547
|
+
"name": "VscodeCollapsible",
|
|
2548
|
+
"module": "src/vscode-collapsible/vscode-collapsible.ts"
|
|
2754
2549
|
}
|
|
2755
2550
|
},
|
|
2756
2551
|
{
|
|
2757
2552
|
"kind": "custom-element-definition",
|
|
2758
|
-
"name": "vscode-
|
|
2553
|
+
"name": "vscode-collapsible",
|
|
2759
2554
|
"declaration": {
|
|
2760
|
-
"name": "
|
|
2761
|
-
"module": "src/vscode-
|
|
2555
|
+
"name": "VscodeCollapsible",
|
|
2556
|
+
"module": "src/vscode-collapsible/vscode-collapsible.ts"
|
|
2762
2557
|
}
|
|
2763
2558
|
}
|
|
2764
2559
|
]
|
|
@@ -2996,13 +2791,193 @@
|
|
|
2996
2791
|
"privacy": "private"
|
|
2997
2792
|
},
|
|
2998
2793
|
{
|
|
2999
|
-
"kind": "method",
|
|
3000
|
-
"name": "_activateResponsiveLayout",
|
|
3001
|
-
"privacy": "private"
|
|
2794
|
+
"kind": "method",
|
|
2795
|
+
"name": "_activateResponsiveLayout",
|
|
2796
|
+
"privacy": "private"
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
"kind": "method",
|
|
2800
|
+
"name": "_deactivateResizeObserver",
|
|
2801
|
+
"privacy": "private"
|
|
2802
|
+
},
|
|
2803
|
+
{
|
|
2804
|
+
"kind": "field",
|
|
2805
|
+
"name": "version",
|
|
2806
|
+
"type": {
|
|
2807
|
+
"text": "string"
|
|
2808
|
+
},
|
|
2809
|
+
"description": "VSCode Elements version",
|
|
2810
|
+
"readonly": true,
|
|
2811
|
+
"inheritedFrom": {
|
|
2812
|
+
"name": "VscElement",
|
|
2813
|
+
"module": "src/includes/VscElement.ts"
|
|
2814
|
+
}
|
|
2815
|
+
}
|
|
2816
|
+
],
|
|
2817
|
+
"attributes": [
|
|
2818
|
+
{
|
|
2819
|
+
"name": "responsive",
|
|
2820
|
+
"type": {
|
|
2821
|
+
"text": "boolean"
|
|
2822
|
+
},
|
|
2823
|
+
"fieldName": "responsive"
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
"name": "breakpoint",
|
|
2827
|
+
"type": {
|
|
2828
|
+
"text": "number"
|
|
2829
|
+
},
|
|
2830
|
+
"default": "490",
|
|
2831
|
+
"fieldName": "breakpoint"
|
|
2832
|
+
}
|
|
2833
|
+
],
|
|
2834
|
+
"superclass": {
|
|
2835
|
+
"name": "VscElement",
|
|
2836
|
+
"module": "/src/includes/VscElement.js"
|
|
2837
|
+
},
|
|
2838
|
+
"tagName": "vscode-form-container",
|
|
2839
|
+
"customElement": true
|
|
2840
|
+
}
|
|
2841
|
+
],
|
|
2842
|
+
"exports": [
|
|
2843
|
+
{
|
|
2844
|
+
"kind": "js",
|
|
2845
|
+
"name": "VscodeFormContainer",
|
|
2846
|
+
"declaration": {
|
|
2847
|
+
"name": "VscodeFormContainer",
|
|
2848
|
+
"module": "src/vscode-form-container/vscode-form-container.ts"
|
|
2849
|
+
}
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
"kind": "custom-element-definition",
|
|
2853
|
+
"name": "vscode-form-container",
|
|
2854
|
+
"declaration": {
|
|
2855
|
+
"name": "VscodeFormContainer",
|
|
2856
|
+
"module": "src/vscode-form-container/vscode-form-container.ts"
|
|
2857
|
+
}
|
|
2858
|
+
}
|
|
2859
|
+
]
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
"kind": "javascript-module",
|
|
2863
|
+
"path": "src/vscode-context-menu-item/vscode-context-menu-item.styles.ts",
|
|
2864
|
+
"declarations": [
|
|
2865
|
+
{
|
|
2866
|
+
"kind": "variable",
|
|
2867
|
+
"name": "styles",
|
|
2868
|
+
"type": {
|
|
2869
|
+
"text": "CSSResultGroup"
|
|
2870
|
+
},
|
|
2871
|
+
"default": "[ defaultStyles, css` :host { display: block; outline: none; position: relative; } .context-menu-item { background-color: var(--vscode-menu-background, #1f1f1f); color: var(--vscode-menu-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); line-height: 1.4em; user-select: none; white-space: nowrap; } .ruler { border-bottom: 1px solid var(--vscode-menu-separatorBackground, #454545); display: block; margin: 0 0 4px; padding-top: 4px; width: 100%; } .context-menu-item a { align-items: center; border-color: transparent; border-radius: 3px; border-style: solid; border-width: 1px; box-sizing: border-box; color: var(--vscode-menu-foreground, #cccccc); cursor: pointer; display: flex; flex: 1 1 auto; height: 2em; margin-left: 4px; margin-right: 4px; outline: none; position: relative; text-decoration: inherit; } :host([selected]) .context-menu-item a { background-color: var(--vscode-menu-selectionBackground, #0078d4); border-color: var(--vscode-menu-selectionBorder, transparent); color: var(--vscode-menu-selectionForeground, #ffffff); } .label { background: none; display: flex; flex: 1 1 auto; font-size: 12px; line-height: 1; padding: 0 22px; text-decoration: none; } .keybinding { display: block; flex: 2 1 auto; line-height: 1; padding: 0 22px; text-align: right; } `, ]"
|
|
2872
|
+
}
|
|
2873
|
+
],
|
|
2874
|
+
"exports": [
|
|
2875
|
+
{
|
|
2876
|
+
"kind": "js",
|
|
2877
|
+
"name": "default",
|
|
2878
|
+
"declaration": {
|
|
2879
|
+
"name": "styles",
|
|
2880
|
+
"module": "src/vscode-context-menu-item/vscode-context-menu-item.styles.ts"
|
|
2881
|
+
}
|
|
2882
|
+
}
|
|
2883
|
+
]
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
"kind": "javascript-module",
|
|
2887
|
+
"path": "src/vscode-context-menu-item/vscode-context-menu-item.ts",
|
|
2888
|
+
"declarations": [
|
|
2889
|
+
{
|
|
2890
|
+
"kind": "class",
|
|
2891
|
+
"description": "",
|
|
2892
|
+
"name": "VscodeContextMenuItem",
|
|
2893
|
+
"cssProperties": [
|
|
2894
|
+
{
|
|
2895
|
+
"name": "--vscode-font-family",
|
|
2896
|
+
"default": "sans-serif"
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"name": "--vscode-font-size",
|
|
2900
|
+
"default": "13px"
|
|
2901
|
+
},
|
|
2902
|
+
{
|
|
2903
|
+
"name": "--vscode-font-weight",
|
|
2904
|
+
"default": "normal"
|
|
2905
|
+
},
|
|
2906
|
+
{
|
|
2907
|
+
"name": "--vscode-menu-background",
|
|
2908
|
+
"default": "#1f1f1f"
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"name": "--vscode-menu-selectionBorder",
|
|
2912
|
+
"default": "transparent"
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
"name": "--vscode-menu-foreground",
|
|
2916
|
+
"default": "#cccccc"
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
"name": "--vscode-menu-selectionBackground",
|
|
2920
|
+
"default": "#0078d4"
|
|
2921
|
+
},
|
|
2922
|
+
{
|
|
2923
|
+
"name": "--vscode-menu-selectionForeground",
|
|
2924
|
+
"default": "#ffffff"
|
|
2925
|
+
},
|
|
2926
|
+
{
|
|
2927
|
+
"name": "--vscode-menu-separatorBackground",
|
|
2928
|
+
"default": "#454545"
|
|
2929
|
+
}
|
|
2930
|
+
],
|
|
2931
|
+
"members": [
|
|
2932
|
+
{
|
|
2933
|
+
"kind": "field",
|
|
2934
|
+
"name": "label",
|
|
2935
|
+
"type": {
|
|
2936
|
+
"text": "string"
|
|
2937
|
+
},
|
|
2938
|
+
"default": "''",
|
|
2939
|
+
"attribute": "label"
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
"kind": "field",
|
|
2943
|
+
"name": "keybinding",
|
|
2944
|
+
"type": {
|
|
2945
|
+
"text": "string"
|
|
2946
|
+
},
|
|
2947
|
+
"default": "''",
|
|
2948
|
+
"attribute": "keybinding"
|
|
2949
|
+
},
|
|
2950
|
+
{
|
|
2951
|
+
"kind": "field",
|
|
2952
|
+
"name": "value",
|
|
2953
|
+
"type": {
|
|
2954
|
+
"text": "string"
|
|
2955
|
+
},
|
|
2956
|
+
"default": "''",
|
|
2957
|
+
"attribute": "value"
|
|
2958
|
+
},
|
|
2959
|
+
{
|
|
2960
|
+
"kind": "field",
|
|
2961
|
+
"name": "separator",
|
|
2962
|
+
"type": {
|
|
2963
|
+
"text": "boolean"
|
|
2964
|
+
},
|
|
2965
|
+
"default": "false",
|
|
2966
|
+
"attribute": "separator",
|
|
2967
|
+
"reflects": true
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"kind": "field",
|
|
2971
|
+
"name": "tabindex",
|
|
2972
|
+
"type": {
|
|
2973
|
+
"text": "number"
|
|
2974
|
+
},
|
|
2975
|
+
"default": "0",
|
|
2976
|
+
"attribute": "tabindex"
|
|
3002
2977
|
},
|
|
3003
2978
|
{
|
|
3004
2979
|
"kind": "method",
|
|
3005
|
-
"name": "
|
|
2980
|
+
"name": "onItemClick",
|
|
3006
2981
|
"privacy": "private"
|
|
3007
2982
|
},
|
|
3008
2983
|
{
|
|
@@ -3021,44 +2996,69 @@
|
|
|
3021
2996
|
],
|
|
3022
2997
|
"attributes": [
|
|
3023
2998
|
{
|
|
3024
|
-
"name": "
|
|
2999
|
+
"name": "label",
|
|
3000
|
+
"type": {
|
|
3001
|
+
"text": "string"
|
|
3002
|
+
},
|
|
3003
|
+
"default": "''",
|
|
3004
|
+
"fieldName": "label"
|
|
3005
|
+
},
|
|
3006
|
+
{
|
|
3007
|
+
"name": "keybinding",
|
|
3008
|
+
"type": {
|
|
3009
|
+
"text": "string"
|
|
3010
|
+
},
|
|
3011
|
+
"default": "''",
|
|
3012
|
+
"fieldName": "keybinding"
|
|
3013
|
+
},
|
|
3014
|
+
{
|
|
3015
|
+
"name": "value",
|
|
3016
|
+
"type": {
|
|
3017
|
+
"text": "string"
|
|
3018
|
+
},
|
|
3019
|
+
"default": "''",
|
|
3020
|
+
"fieldName": "value"
|
|
3021
|
+
},
|
|
3022
|
+
{
|
|
3023
|
+
"name": "separator",
|
|
3025
3024
|
"type": {
|
|
3026
3025
|
"text": "boolean"
|
|
3027
3026
|
},
|
|
3028
|
-
"
|
|
3027
|
+
"default": "false",
|
|
3028
|
+
"fieldName": "separator"
|
|
3029
3029
|
},
|
|
3030
3030
|
{
|
|
3031
|
-
"name": "
|
|
3031
|
+
"name": "tabindex",
|
|
3032
3032
|
"type": {
|
|
3033
3033
|
"text": "number"
|
|
3034
3034
|
},
|
|
3035
|
-
"default": "
|
|
3036
|
-
"fieldName": "
|
|
3035
|
+
"default": "0",
|
|
3036
|
+
"fieldName": "tabindex"
|
|
3037
3037
|
}
|
|
3038
3038
|
],
|
|
3039
3039
|
"superclass": {
|
|
3040
3040
|
"name": "VscElement",
|
|
3041
3041
|
"module": "/src/includes/VscElement.js"
|
|
3042
3042
|
},
|
|
3043
|
-
"tagName": "vscode-
|
|
3043
|
+
"tagName": "vscode-context-menu-item",
|
|
3044
3044
|
"customElement": true
|
|
3045
3045
|
}
|
|
3046
3046
|
],
|
|
3047
3047
|
"exports": [
|
|
3048
3048
|
{
|
|
3049
3049
|
"kind": "js",
|
|
3050
|
-
"name": "
|
|
3050
|
+
"name": "VscodeContextMenuItem",
|
|
3051
3051
|
"declaration": {
|
|
3052
|
-
"name": "
|
|
3053
|
-
"module": "src/vscode-
|
|
3052
|
+
"name": "VscodeContextMenuItem",
|
|
3053
|
+
"module": "src/vscode-context-menu-item/vscode-context-menu-item.ts"
|
|
3054
3054
|
}
|
|
3055
3055
|
},
|
|
3056
3056
|
{
|
|
3057
3057
|
"kind": "custom-element-definition",
|
|
3058
|
-
"name": "vscode-
|
|
3058
|
+
"name": "vscode-context-menu-item",
|
|
3059
3059
|
"declaration": {
|
|
3060
|
-
"name": "
|
|
3061
|
-
"module": "src/vscode-
|
|
3060
|
+
"name": "VscodeContextMenuItem",
|
|
3061
|
+
"module": "src/vscode-context-menu-item/vscode-context-menu-item.ts"
|
|
3062
3062
|
}
|
|
3063
3063
|
}
|
|
3064
3064
|
]
|
|
@@ -4080,6 +4080,20 @@
|
|
|
4080
4080
|
}
|
|
4081
4081
|
}
|
|
4082
4082
|
},
|
|
4083
|
+
{
|
|
4084
|
+
"kind": "method",
|
|
4085
|
+
"name": "_onComboboxInputBlur",
|
|
4086
|
+
"privacy": "protected",
|
|
4087
|
+
"return": {
|
|
4088
|
+
"type": {
|
|
4089
|
+
"text": "void"
|
|
4090
|
+
}
|
|
4091
|
+
},
|
|
4092
|
+
"inheritedFrom": {
|
|
4093
|
+
"name": "VscodeSelectBase",
|
|
4094
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
4095
|
+
}
|
|
4096
|
+
},
|
|
4083
4097
|
{
|
|
4084
4098
|
"kind": "method",
|
|
4085
4099
|
"name": "_renderLabel",
|
|
@@ -4774,15 +4788,6 @@
|
|
|
4774
4788
|
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
4775
4789
|
}
|
|
4776
4790
|
},
|
|
4777
|
-
{
|
|
4778
|
-
"kind": "method",
|
|
4779
|
-
"name": "_onComboboxInputBlur",
|
|
4780
|
-
"privacy": "protected",
|
|
4781
|
-
"inheritedFrom": {
|
|
4782
|
-
"name": "VscodeSelectBase",
|
|
4783
|
-
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
4784
|
-
}
|
|
4785
|
-
},
|
|
4786
4791
|
{
|
|
4787
4792
|
"kind": "method",
|
|
4788
4793
|
"name": "_onComboboxInputInput",
|
|
@@ -5358,207 +5363,60 @@
|
|
|
5358
5363
|
"reflects": true
|
|
5359
5364
|
},
|
|
5360
5365
|
{
|
|
5361
|
-
"kind": "field",
|
|
5362
|
-
"name": "longRunningThreshold",
|
|
5363
|
-
"type": {
|
|
5364
|
-
"text": "number"
|
|
5365
|
-
},
|
|
5366
|
-
"default": "15000",
|
|
5367
|
-
"description": "Switch to a gentler animation after this many ms in indeterminate mode.",
|
|
5368
|
-
"attribute": "long-running-threshold"
|
|
5369
|
-
},
|
|
5370
|
-
{
|
|
5371
|
-
"kind": "field",
|
|
5372
|
-
"name": "_longRunning",
|
|
5373
|
-
"type": {
|
|
5374
|
-
"text": "boolean"
|
|
5375
|
-
},
|
|
5376
|
-
"privacy": "private",
|
|
5377
|
-
"default": "false"
|
|
5378
|
-
},
|
|
5379
|
-
{
|
|
5380
|
-
"kind": "field",
|
|
5381
|
-
"name": "_longRunningHandle",
|
|
5382
|
-
"type": {
|
|
5383
|
-
"text": "ReturnType<typeof setTimeout> | undefined"
|
|
5384
|
-
},
|
|
5385
|
-
"privacy": "private"
|
|
5386
|
-
},
|
|
5387
|
-
{
|
|
5388
|
-
"kind": "field",
|
|
5389
|
-
"name": "_isDeterminate",
|
|
5390
|
-
"type": {
|
|
5391
|
-
"text": "boolean"
|
|
5392
|
-
},
|
|
5393
|
-
"privacy": "private",
|
|
5394
|
-
"readonly": true
|
|
5395
|
-
},
|
|
5396
|
-
{
|
|
5397
|
-
"kind": "method",
|
|
5398
|
-
"name": "_maybeStartLongRunningTimer",
|
|
5399
|
-
"privacy": "private",
|
|
5400
|
-
"return": {
|
|
5401
|
-
"type": {
|
|
5402
|
-
"text": "void"
|
|
5403
|
-
}
|
|
5404
|
-
}
|
|
5405
|
-
},
|
|
5406
|
-
{
|
|
5407
|
-
"kind": "method",
|
|
5408
|
-
"name": "_clearLongRunningTimer",
|
|
5409
|
-
"privacy": "private",
|
|
5410
|
-
"return": {
|
|
5411
|
-
"type": {
|
|
5412
|
-
"text": "void"
|
|
5413
|
-
}
|
|
5414
|
-
}
|
|
5415
|
-
},
|
|
5416
|
-
{
|
|
5417
|
-
"kind": "field",
|
|
5418
|
-
"name": "version",
|
|
5419
|
-
"type": {
|
|
5420
|
-
"text": "string"
|
|
5421
|
-
},
|
|
5422
|
-
"description": "VSCode Elements version",
|
|
5423
|
-
"readonly": true,
|
|
5424
|
-
"inheritedFrom": {
|
|
5425
|
-
"name": "VscElement",
|
|
5426
|
-
"module": "src/includes/VscElement.ts"
|
|
5427
|
-
}
|
|
5428
|
-
}
|
|
5429
|
-
],
|
|
5430
|
-
"attributes": [
|
|
5431
|
-
{
|
|
5432
|
-
"name": "value",
|
|
5433
|
-
"type": {
|
|
5434
|
-
"text": "number | undefined"
|
|
5435
|
-
},
|
|
5436
|
-
"description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
|
|
5437
|
-
"fieldName": "value"
|
|
5438
|
-
},
|
|
5439
|
-
{
|
|
5440
|
-
"name": "max",
|
|
5441
|
-
"type": {
|
|
5442
|
-
"text": "number"
|
|
5443
|
-
},
|
|
5444
|
-
"default": "100",
|
|
5445
|
-
"description": "Maximum value for determinate mode.",
|
|
5446
|
-
"fieldName": "max"
|
|
5447
|
-
},
|
|
5448
|
-
{
|
|
5449
|
-
"name": "indeterminate",
|
|
5450
|
-
"type": {
|
|
5451
|
-
"text": "boolean"
|
|
5452
|
-
},
|
|
5453
|
-
"default": "false",
|
|
5454
|
-
"description": "Force indeterminate mode even if value is set.",
|
|
5455
|
-
"fieldName": "indeterminate"
|
|
5456
|
-
},
|
|
5457
|
-
{
|
|
5458
|
-
"name": "long-running-threshold",
|
|
5459
|
-
"type": {
|
|
5460
|
-
"text": "number"
|
|
5461
|
-
},
|
|
5462
|
-
"default": "15000",
|
|
5463
|
-
"description": "Switch to a gentler animation after this many ms in indeterminate mode.",
|
|
5464
|
-
"fieldName": "longRunningThreshold"
|
|
5465
|
-
}
|
|
5466
|
-
],
|
|
5467
|
-
"superclass": {
|
|
5468
|
-
"name": "VscElement",
|
|
5469
|
-
"module": "/src/includes/VscElement.js"
|
|
5470
|
-
},
|
|
5471
|
-
"tagName": "vscode-progress-bar",
|
|
5472
|
-
"customElement": true
|
|
5473
|
-
}
|
|
5474
|
-
],
|
|
5475
|
-
"exports": [
|
|
5476
|
-
{
|
|
5477
|
-
"kind": "js",
|
|
5478
|
-
"name": "VscodeProgressBar",
|
|
5479
|
-
"declaration": {
|
|
5480
|
-
"name": "VscodeProgressBar",
|
|
5481
|
-
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5482
|
-
}
|
|
5483
|
-
},
|
|
5484
|
-
{
|
|
5485
|
-
"kind": "custom-element-definition",
|
|
5486
|
-
"name": "vscode-progress-bar",
|
|
5487
|
-
"declaration": {
|
|
5488
|
-
"name": "VscodeProgressBar",
|
|
5489
|
-
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5490
|
-
}
|
|
5491
|
-
}
|
|
5492
|
-
]
|
|
5493
|
-
},
|
|
5494
|
-
{
|
|
5495
|
-
"kind": "javascript-module",
|
|
5496
|
-
"path": "src/vscode-progress-ring/vscode-progress-ring.styles.ts",
|
|
5497
|
-
"declarations": [
|
|
5498
|
-
{
|
|
5499
|
-
"kind": "variable",
|
|
5500
|
-
"name": "styles",
|
|
5501
|
-
"type": {
|
|
5502
|
-
"text": "CSSResultGroup"
|
|
5503
|
-
},
|
|
5504
|
-
"default": "[ defaultStyles, css` :host { display: block; height: 28px; margin: 0; outline: none; width: 28px; } .progress { height: 100%; width: 100%; } .background { fill: none; stroke: transparent; stroke-width: 2px; } .indeterminate-indicator-1 { fill: none; stroke: var(--vscode-progressBar-background, #0078d4); stroke-width: 2px; stroke-linecap: square; transform-origin: 50% 50%; transform: rotate(-90deg); transition: all 0.2s ease-in-out; animation: spin-infinite 2s linear infinite; } @keyframes spin-infinite { 0% { stroke-dasharray: 0.01px 43.97px; transform: rotate(0deg); } 50% { stroke-dasharray: 21.99px 21.99px; transform: rotate(450deg); } 100% { stroke-dasharray: 0.01px 43.97px; transform: rotate(1080deg); } } `, ]"
|
|
5505
|
-
}
|
|
5506
|
-
],
|
|
5507
|
-
"exports": [
|
|
5508
|
-
{
|
|
5509
|
-
"kind": "js",
|
|
5510
|
-
"name": "default",
|
|
5511
|
-
"declaration": {
|
|
5512
|
-
"name": "styles",
|
|
5513
|
-
"module": "src/vscode-progress-ring/vscode-progress-ring.styles.ts"
|
|
5514
|
-
}
|
|
5515
|
-
}
|
|
5516
|
-
]
|
|
5517
|
-
},
|
|
5518
|
-
{
|
|
5519
|
-
"kind": "javascript-module",
|
|
5520
|
-
"path": "src/vscode-progress-ring/vscode-progress-ring.ts",
|
|
5521
|
-
"declarations": [
|
|
5522
|
-
{
|
|
5523
|
-
"kind": "class",
|
|
5524
|
-
"description": "",
|
|
5525
|
-
"name": "VscodeProgressRing",
|
|
5526
|
-
"cssProperties": [
|
|
5527
|
-
{
|
|
5528
|
-
"name": "--vscode-progressBar-background",
|
|
5529
|
-
"default": "#0078d4"
|
|
5530
|
-
}
|
|
5531
|
-
],
|
|
5532
|
-
"members": [
|
|
5366
|
+
"kind": "field",
|
|
5367
|
+
"name": "longRunningThreshold",
|
|
5368
|
+
"type": {
|
|
5369
|
+
"text": "number"
|
|
5370
|
+
},
|
|
5371
|
+
"default": "15000",
|
|
5372
|
+
"description": "Switch to a gentler animation after this many ms in indeterminate mode.",
|
|
5373
|
+
"attribute": "long-running-threshold"
|
|
5374
|
+
},
|
|
5533
5375
|
{
|
|
5534
5376
|
"kind": "field",
|
|
5535
|
-
"name": "
|
|
5377
|
+
"name": "_longRunning",
|
|
5536
5378
|
"type": {
|
|
5537
|
-
"text": "
|
|
5379
|
+
"text": "boolean"
|
|
5538
5380
|
},
|
|
5539
|
-
"
|
|
5540
|
-
"
|
|
5541
|
-
"reflects": true
|
|
5381
|
+
"privacy": "private",
|
|
5382
|
+
"default": "false"
|
|
5542
5383
|
},
|
|
5543
5384
|
{
|
|
5544
5385
|
"kind": "field",
|
|
5545
|
-
"name": "
|
|
5386
|
+
"name": "_longRunningHandle",
|
|
5546
5387
|
"type": {
|
|
5547
|
-
"text": "
|
|
5388
|
+
"text": "ReturnType<typeof setTimeout> | undefined"
|
|
5548
5389
|
},
|
|
5549
|
-
"
|
|
5550
|
-
"attribute": "aria-live",
|
|
5551
|
-
"reflects": true
|
|
5390
|
+
"privacy": "private"
|
|
5552
5391
|
},
|
|
5553
5392
|
{
|
|
5554
5393
|
"kind": "field",
|
|
5555
|
-
"name": "
|
|
5394
|
+
"name": "_isDeterminate",
|
|
5556
5395
|
"type": {
|
|
5557
|
-
"text": "
|
|
5396
|
+
"text": "boolean"
|
|
5558
5397
|
},
|
|
5559
|
-
"
|
|
5560
|
-
"
|
|
5561
|
-
|
|
5398
|
+
"privacy": "private",
|
|
5399
|
+
"readonly": true
|
|
5400
|
+
},
|
|
5401
|
+
{
|
|
5402
|
+
"kind": "method",
|
|
5403
|
+
"name": "_maybeStartLongRunningTimer",
|
|
5404
|
+
"privacy": "private",
|
|
5405
|
+
"return": {
|
|
5406
|
+
"type": {
|
|
5407
|
+
"text": "void"
|
|
5408
|
+
}
|
|
5409
|
+
}
|
|
5410
|
+
},
|
|
5411
|
+
{
|
|
5412
|
+
"kind": "method",
|
|
5413
|
+
"name": "_clearLongRunningTimer",
|
|
5414
|
+
"privacy": "private",
|
|
5415
|
+
"return": {
|
|
5416
|
+
"type": {
|
|
5417
|
+
"text": "void"
|
|
5418
|
+
}
|
|
5419
|
+
}
|
|
5562
5420
|
},
|
|
5563
5421
|
{
|
|
5564
5422
|
"kind": "field",
|
|
@@ -5576,53 +5434,64 @@
|
|
|
5576
5434
|
],
|
|
5577
5435
|
"attributes": [
|
|
5578
5436
|
{
|
|
5579
|
-
"name": "
|
|
5437
|
+
"name": "value",
|
|
5580
5438
|
"type": {
|
|
5581
|
-
"text": "
|
|
5439
|
+
"text": "number | undefined"
|
|
5582
5440
|
},
|
|
5583
|
-
"
|
|
5584
|
-
"fieldName": "
|
|
5441
|
+
"description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
|
|
5442
|
+
"fieldName": "value"
|
|
5585
5443
|
},
|
|
5586
5444
|
{
|
|
5587
|
-
"name": "
|
|
5445
|
+
"name": "max",
|
|
5588
5446
|
"type": {
|
|
5589
|
-
"text": "
|
|
5447
|
+
"text": "number"
|
|
5590
5448
|
},
|
|
5591
|
-
"default": "
|
|
5592
|
-
"
|
|
5449
|
+
"default": "100",
|
|
5450
|
+
"description": "Maximum value for determinate mode.",
|
|
5451
|
+
"fieldName": "max"
|
|
5593
5452
|
},
|
|
5594
5453
|
{
|
|
5595
|
-
"name": "
|
|
5454
|
+
"name": "indeterminate",
|
|
5596
5455
|
"type": {
|
|
5597
|
-
"text": "
|
|
5456
|
+
"text": "boolean"
|
|
5598
5457
|
},
|
|
5599
|
-
"default": "
|
|
5600
|
-
"
|
|
5458
|
+
"default": "false",
|
|
5459
|
+
"description": "Force indeterminate mode even if value is set.",
|
|
5460
|
+
"fieldName": "indeterminate"
|
|
5461
|
+
},
|
|
5462
|
+
{
|
|
5463
|
+
"name": "long-running-threshold",
|
|
5464
|
+
"type": {
|
|
5465
|
+
"text": "number"
|
|
5466
|
+
},
|
|
5467
|
+
"default": "15000",
|
|
5468
|
+
"description": "Switch to a gentler animation after this many ms in indeterminate mode.",
|
|
5469
|
+
"fieldName": "longRunningThreshold"
|
|
5601
5470
|
}
|
|
5602
5471
|
],
|
|
5603
5472
|
"superclass": {
|
|
5604
5473
|
"name": "VscElement",
|
|
5605
5474
|
"module": "/src/includes/VscElement.js"
|
|
5606
5475
|
},
|
|
5607
|
-
"tagName": "vscode-progress-
|
|
5476
|
+
"tagName": "vscode-progress-bar",
|
|
5608
5477
|
"customElement": true
|
|
5609
5478
|
}
|
|
5610
5479
|
],
|
|
5611
5480
|
"exports": [
|
|
5612
5481
|
{
|
|
5613
5482
|
"kind": "js",
|
|
5614
|
-
"name": "
|
|
5483
|
+
"name": "VscodeProgressBar",
|
|
5615
5484
|
"declaration": {
|
|
5616
|
-
"name": "
|
|
5617
|
-
"module": "src/vscode-progress-
|
|
5485
|
+
"name": "VscodeProgressBar",
|
|
5486
|
+
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5618
5487
|
}
|
|
5619
5488
|
},
|
|
5620
5489
|
{
|
|
5621
5490
|
"kind": "custom-element-definition",
|
|
5622
|
-
"name": "vscode-progress-
|
|
5491
|
+
"name": "vscode-progress-bar",
|
|
5623
5492
|
"declaration": {
|
|
5624
|
-
"name": "
|
|
5625
|
-
"module": "src/vscode-progress-
|
|
5493
|
+
"name": "VscodeProgressBar",
|
|
5494
|
+
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5626
5495
|
}
|
|
5627
5496
|
}
|
|
5628
5497
|
]
|
|
@@ -6177,6 +6046,142 @@
|
|
|
6177
6046
|
}
|
|
6178
6047
|
]
|
|
6179
6048
|
},
|
|
6049
|
+
{
|
|
6050
|
+
"kind": "javascript-module",
|
|
6051
|
+
"path": "src/vscode-progress-ring/vscode-progress-ring.styles.ts",
|
|
6052
|
+
"declarations": [
|
|
6053
|
+
{
|
|
6054
|
+
"kind": "variable",
|
|
6055
|
+
"name": "styles",
|
|
6056
|
+
"type": {
|
|
6057
|
+
"text": "CSSResultGroup"
|
|
6058
|
+
},
|
|
6059
|
+
"default": "[ defaultStyles, css` :host { display: block; height: 28px; margin: 0; outline: none; width: 28px; } .progress { height: 100%; width: 100%; } .background { fill: none; stroke: transparent; stroke-width: 2px; } .indeterminate-indicator-1 { fill: none; stroke: var(--vscode-progressBar-background, #0078d4); stroke-width: 2px; stroke-linecap: square; transform-origin: 50% 50%; transform: rotate(-90deg); transition: all 0.2s ease-in-out; animation: spin-infinite 2s linear infinite; } @keyframes spin-infinite { 0% { stroke-dasharray: 0.01px 43.97px; transform: rotate(0deg); } 50% { stroke-dasharray: 21.99px 21.99px; transform: rotate(450deg); } 100% { stroke-dasharray: 0.01px 43.97px; transform: rotate(1080deg); } } `, ]"
|
|
6060
|
+
}
|
|
6061
|
+
],
|
|
6062
|
+
"exports": [
|
|
6063
|
+
{
|
|
6064
|
+
"kind": "js",
|
|
6065
|
+
"name": "default",
|
|
6066
|
+
"declaration": {
|
|
6067
|
+
"name": "styles",
|
|
6068
|
+
"module": "src/vscode-progress-ring/vscode-progress-ring.styles.ts"
|
|
6069
|
+
}
|
|
6070
|
+
}
|
|
6071
|
+
]
|
|
6072
|
+
},
|
|
6073
|
+
{
|
|
6074
|
+
"kind": "javascript-module",
|
|
6075
|
+
"path": "src/vscode-progress-ring/vscode-progress-ring.ts",
|
|
6076
|
+
"declarations": [
|
|
6077
|
+
{
|
|
6078
|
+
"kind": "class",
|
|
6079
|
+
"description": "",
|
|
6080
|
+
"name": "VscodeProgressRing",
|
|
6081
|
+
"cssProperties": [
|
|
6082
|
+
{
|
|
6083
|
+
"name": "--vscode-progressBar-background",
|
|
6084
|
+
"default": "#0078d4"
|
|
6085
|
+
}
|
|
6086
|
+
],
|
|
6087
|
+
"members": [
|
|
6088
|
+
{
|
|
6089
|
+
"kind": "field",
|
|
6090
|
+
"name": "ariaLabel",
|
|
6091
|
+
"type": {
|
|
6092
|
+
"text": "string"
|
|
6093
|
+
},
|
|
6094
|
+
"default": "'Loading'",
|
|
6095
|
+
"attribute": "aria-label",
|
|
6096
|
+
"reflects": true
|
|
6097
|
+
},
|
|
6098
|
+
{
|
|
6099
|
+
"kind": "field",
|
|
6100
|
+
"name": "ariaLive",
|
|
6101
|
+
"type": {
|
|
6102
|
+
"text": "string"
|
|
6103
|
+
},
|
|
6104
|
+
"default": "'assertive'",
|
|
6105
|
+
"attribute": "aria-live",
|
|
6106
|
+
"reflects": true
|
|
6107
|
+
},
|
|
6108
|
+
{
|
|
6109
|
+
"kind": "field",
|
|
6110
|
+
"name": "role",
|
|
6111
|
+
"type": {
|
|
6112
|
+
"text": "string"
|
|
6113
|
+
},
|
|
6114
|
+
"default": "'alert'",
|
|
6115
|
+
"attribute": "role",
|
|
6116
|
+
"reflects": true
|
|
6117
|
+
},
|
|
6118
|
+
{
|
|
6119
|
+
"kind": "field",
|
|
6120
|
+
"name": "version",
|
|
6121
|
+
"type": {
|
|
6122
|
+
"text": "string"
|
|
6123
|
+
},
|
|
6124
|
+
"description": "VSCode Elements version",
|
|
6125
|
+
"readonly": true,
|
|
6126
|
+
"inheritedFrom": {
|
|
6127
|
+
"name": "VscElement",
|
|
6128
|
+
"module": "src/includes/VscElement.ts"
|
|
6129
|
+
}
|
|
6130
|
+
}
|
|
6131
|
+
],
|
|
6132
|
+
"attributes": [
|
|
6133
|
+
{
|
|
6134
|
+
"name": "aria-label",
|
|
6135
|
+
"type": {
|
|
6136
|
+
"text": "string"
|
|
6137
|
+
},
|
|
6138
|
+
"default": "'Loading'",
|
|
6139
|
+
"fieldName": "ariaLabel"
|
|
6140
|
+
},
|
|
6141
|
+
{
|
|
6142
|
+
"name": "aria-live",
|
|
6143
|
+
"type": {
|
|
6144
|
+
"text": "string"
|
|
6145
|
+
},
|
|
6146
|
+
"default": "'assertive'",
|
|
6147
|
+
"fieldName": "ariaLive"
|
|
6148
|
+
},
|
|
6149
|
+
{
|
|
6150
|
+
"name": "role",
|
|
6151
|
+
"type": {
|
|
6152
|
+
"text": "string"
|
|
6153
|
+
},
|
|
6154
|
+
"default": "'alert'",
|
|
6155
|
+
"fieldName": "role"
|
|
6156
|
+
}
|
|
6157
|
+
],
|
|
6158
|
+
"superclass": {
|
|
6159
|
+
"name": "VscElement",
|
|
6160
|
+
"module": "/src/includes/VscElement.js"
|
|
6161
|
+
},
|
|
6162
|
+
"tagName": "vscode-progress-ring",
|
|
6163
|
+
"customElement": true
|
|
6164
|
+
}
|
|
6165
|
+
],
|
|
6166
|
+
"exports": [
|
|
6167
|
+
{
|
|
6168
|
+
"kind": "js",
|
|
6169
|
+
"name": "VscodeProgressRing",
|
|
6170
|
+
"declaration": {
|
|
6171
|
+
"name": "VscodeProgressRing",
|
|
6172
|
+
"module": "src/vscode-progress-ring/vscode-progress-ring.ts"
|
|
6173
|
+
}
|
|
6174
|
+
},
|
|
6175
|
+
{
|
|
6176
|
+
"kind": "custom-element-definition",
|
|
6177
|
+
"name": "vscode-progress-ring",
|
|
6178
|
+
"declaration": {
|
|
6179
|
+
"name": "VscodeProgressRing",
|
|
6180
|
+
"module": "src/vscode-progress-ring/vscode-progress-ring.ts"
|
|
6181
|
+
}
|
|
6182
|
+
}
|
|
6183
|
+
]
|
|
6184
|
+
},
|
|
6180
6185
|
{
|
|
6181
6186
|
"kind": "javascript-module",
|
|
6182
6187
|
"path": "src/vscode-radio-group/vscode-radio-group.styles.ts",
|
|
@@ -6615,6 +6620,24 @@
|
|
|
6615
6620
|
},
|
|
6616
6621
|
"privacy": "private"
|
|
6617
6622
|
},
|
|
6623
|
+
{
|
|
6624
|
+
"kind": "field",
|
|
6625
|
+
"name": "_componentHeight",
|
|
6626
|
+
"type": {
|
|
6627
|
+
"text": "number"
|
|
6628
|
+
},
|
|
6629
|
+
"privacy": "private",
|
|
6630
|
+
"default": "0"
|
|
6631
|
+
},
|
|
6632
|
+
{
|
|
6633
|
+
"kind": "field",
|
|
6634
|
+
"name": "_contentHeight",
|
|
6635
|
+
"type": {
|
|
6636
|
+
"text": "number"
|
|
6637
|
+
},
|
|
6638
|
+
"privacy": "private",
|
|
6639
|
+
"default": "0"
|
|
6640
|
+
},
|
|
6618
6641
|
{
|
|
6619
6642
|
"kind": "field",
|
|
6620
6643
|
"name": "_scrollThumbStartY",
|