@vscode-elements/elements 2.3.1-pre.2 → 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 +691 -691
- package/dist/bundled.js +2 -2
- 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/package.json +1 -1
- 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",
|
|
2392
|
+
"type": {
|
|
2393
|
+
"text": "boolean"
|
|
2394
|
+
},
|
|
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
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
"kind": "field",
|
|
2402
|
+
"name": "title",
|
|
2635
2403
|
"type": {
|
|
2636
2404
|
"text": "string"
|
|
2637
2405
|
},
|
|
2638
2406
|
"default": "''",
|
|
2639
|
-
"
|
|
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"
|
|
2640
2410
|
},
|
|
2641
2411
|
{
|
|
2642
2412
|
"kind": "field",
|
|
2643
|
-
"name": "
|
|
2413
|
+
"name": "heading",
|
|
2644
2414
|
"type": {
|
|
2645
2415
|
"text": "string"
|
|
2646
2416
|
},
|
|
2647
2417
|
"default": "''",
|
|
2648
|
-
"
|
|
2418
|
+
"description": "Heading text.",
|
|
2419
|
+
"attribute": "heading"
|
|
2649
2420
|
},
|
|
2650
2421
|
{
|
|
2651
2422
|
"kind": "field",
|
|
2652
|
-
"name": "
|
|
2423
|
+
"name": "description",
|
|
2653
2424
|
"type": {
|
|
2654
2425
|
"text": "string"
|
|
2655
2426
|
},
|
|
2656
2427
|
"default": "''",
|
|
2657
|
-
"
|
|
2428
|
+
"description": "Less prominent text in the header.",
|
|
2429
|
+
"attribute": "description"
|
|
2658
2430
|
},
|
|
2659
2431
|
{
|
|
2660
2432
|
"kind": "field",
|
|
2661
|
-
"name": "
|
|
2433
|
+
"name": "open",
|
|
2662
2434
|
"type": {
|
|
2663
2435
|
"text": "boolean"
|
|
2664
2436
|
},
|
|
2665
2437
|
"default": "false",
|
|
2666
|
-
"attribute": "
|
|
2438
|
+
"attribute": "open",
|
|
2667
2439
|
"reflects": true
|
|
2668
2440
|
},
|
|
2669
2441
|
{
|
|
2670
|
-
"kind": "
|
|
2671
|
-
"name": "
|
|
2672
|
-
"
|
|
2673
|
-
"text": "number"
|
|
2674
|
-
},
|
|
2675
|
-
"default": "0",
|
|
2676
|
-
"attribute": "tabindex"
|
|
2442
|
+
"kind": "method",
|
|
2443
|
+
"name": "_emitToggleEvent",
|
|
2444
|
+
"privacy": "private"
|
|
2677
2445
|
},
|
|
2678
2446
|
{
|
|
2679
2447
|
"kind": "method",
|
|
2680
|
-
"name": "
|
|
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
|
]
|
|
@@ -2992,17 +2787,197 @@
|
|
|
2992
2787
|
},
|
|
2993
2788
|
{
|
|
2994
2789
|
"kind": "field",
|
|
2995
|
-
"name": "_resizeObserverCallbackBound",
|
|
2996
|
-
"privacy": "private"
|
|
2997
|
-
},
|
|
2998
|
-
{
|
|
2999
|
-
"kind": "method",
|
|
3000
|
-
"name": "_activateResponsiveLayout",
|
|
3001
|
-
"privacy": "private"
|
|
2790
|
+
"name": "_resizeObserverCallbackBound",
|
|
2791
|
+
"privacy": "private"
|
|
2792
|
+
},
|
|
2793
|
+
{
|
|
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
|
]
|
|
@@ -5345,225 +5345,78 @@
|
|
|
5345
5345
|
"name": "max",
|
|
5346
5346
|
"type": {
|
|
5347
5347
|
"text": "number"
|
|
5348
|
-
},
|
|
5349
|
-
"default": "100",
|
|
5350
|
-
"description": "Maximum value for determinate mode.",
|
|
5351
|
-
"attribute": "max",
|
|
5352
|
-
"reflects": true
|
|
5353
|
-
},
|
|
5354
|
-
{
|
|
5355
|
-
"kind": "field",
|
|
5356
|
-
"name": "indeterminate",
|
|
5357
|
-
"type": {
|
|
5358
|
-
"text": "boolean"
|
|
5359
|
-
},
|
|
5360
|
-
"default": "false",
|
|
5361
|
-
"description": "Force indeterminate mode even if value is set.",
|
|
5362
|
-
"attribute": "indeterminate",
|
|
5363
|
-
"reflects": true
|
|
5364
|
-
},
|
|
5365
|
-
{
|
|
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
|
-
},
|
|
5375
|
-
{
|
|
5376
|
-
"kind": "field",
|
|
5377
|
-
"name": "_longRunning",
|
|
5378
|
-
"type": {
|
|
5379
|
-
"text": "boolean"
|
|
5380
|
-
},
|
|
5381
|
-
"privacy": "private",
|
|
5382
|
-
"default": "false"
|
|
5383
|
-
},
|
|
5384
|
-
{
|
|
5385
|
-
"kind": "field",
|
|
5386
|
-
"name": "_longRunningHandle",
|
|
5387
|
-
"type": {
|
|
5388
|
-
"text": "ReturnType<typeof setTimeout> | undefined"
|
|
5389
|
-
},
|
|
5390
|
-
"privacy": "private"
|
|
5391
|
-
},
|
|
5392
|
-
{
|
|
5393
|
-
"kind": "field",
|
|
5394
|
-
"name": "_isDeterminate",
|
|
5395
|
-
"type": {
|
|
5396
|
-
"text": "boolean"
|
|
5397
|
-
},
|
|
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
|
-
}
|
|
5420
|
-
},
|
|
5421
|
-
{
|
|
5422
|
-
"kind": "field",
|
|
5423
|
-
"name": "version",
|
|
5424
|
-
"type": {
|
|
5425
|
-
"text": "string"
|
|
5426
|
-
},
|
|
5427
|
-
"description": "VSCode Elements version",
|
|
5428
|
-
"readonly": true,
|
|
5429
|
-
"inheritedFrom": {
|
|
5430
|
-
"name": "VscElement",
|
|
5431
|
-
"module": "src/includes/VscElement.ts"
|
|
5432
|
-
}
|
|
5433
|
-
}
|
|
5434
|
-
],
|
|
5435
|
-
"attributes": [
|
|
5436
|
-
{
|
|
5437
|
-
"name": "value",
|
|
5438
|
-
"type": {
|
|
5439
|
-
"text": "number | undefined"
|
|
5440
|
-
},
|
|
5441
|
-
"description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
|
|
5442
|
-
"fieldName": "value"
|
|
5443
|
-
},
|
|
5444
|
-
{
|
|
5445
|
-
"name": "max",
|
|
5446
|
-
"type": {
|
|
5447
|
-
"text": "number"
|
|
5448
|
-
},
|
|
5449
|
-
"default": "100",
|
|
5450
|
-
"description": "Maximum value for determinate mode.",
|
|
5451
|
-
"fieldName": "max"
|
|
5452
|
-
},
|
|
5453
|
-
{
|
|
5454
|
-
"name": "indeterminate",
|
|
5455
|
-
"type": {
|
|
5456
|
-
"text": "boolean"
|
|
5457
|
-
},
|
|
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"
|
|
5470
|
-
}
|
|
5471
|
-
],
|
|
5472
|
-
"superclass": {
|
|
5473
|
-
"name": "VscElement",
|
|
5474
|
-
"module": "/src/includes/VscElement.js"
|
|
5475
|
-
},
|
|
5476
|
-
"tagName": "vscode-progress-bar",
|
|
5477
|
-
"customElement": true
|
|
5478
|
-
}
|
|
5479
|
-
],
|
|
5480
|
-
"exports": [
|
|
5481
|
-
{
|
|
5482
|
-
"kind": "js",
|
|
5483
|
-
"name": "VscodeProgressBar",
|
|
5484
|
-
"declaration": {
|
|
5485
|
-
"name": "VscodeProgressBar",
|
|
5486
|
-
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5487
|
-
}
|
|
5488
|
-
},
|
|
5489
|
-
{
|
|
5490
|
-
"kind": "custom-element-definition",
|
|
5491
|
-
"name": "vscode-progress-bar",
|
|
5492
|
-
"declaration": {
|
|
5493
|
-
"name": "VscodeProgressBar",
|
|
5494
|
-
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5495
|
-
}
|
|
5496
|
-
}
|
|
5497
|
-
]
|
|
5498
|
-
},
|
|
5499
|
-
{
|
|
5500
|
-
"kind": "javascript-module",
|
|
5501
|
-
"path": "src/vscode-progress-ring/vscode-progress-ring.styles.ts",
|
|
5502
|
-
"declarations": [
|
|
5503
|
-
{
|
|
5504
|
-
"kind": "variable",
|
|
5505
|
-
"name": "styles",
|
|
5506
|
-
"type": {
|
|
5507
|
-
"text": "CSSResultGroup"
|
|
5508
|
-
},
|
|
5509
|
-
"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); } } `, ]"
|
|
5510
|
-
}
|
|
5511
|
-
],
|
|
5512
|
-
"exports": [
|
|
5513
|
-
{
|
|
5514
|
-
"kind": "js",
|
|
5515
|
-
"name": "default",
|
|
5516
|
-
"declaration": {
|
|
5517
|
-
"name": "styles",
|
|
5518
|
-
"module": "src/vscode-progress-ring/vscode-progress-ring.styles.ts"
|
|
5519
|
-
}
|
|
5520
|
-
}
|
|
5521
|
-
]
|
|
5522
|
-
},
|
|
5523
|
-
{
|
|
5524
|
-
"kind": "javascript-module",
|
|
5525
|
-
"path": "src/vscode-progress-ring/vscode-progress-ring.ts",
|
|
5526
|
-
"declarations": [
|
|
5527
|
-
{
|
|
5528
|
-
"kind": "class",
|
|
5529
|
-
"description": "",
|
|
5530
|
-
"name": "VscodeProgressRing",
|
|
5531
|
-
"cssProperties": [
|
|
5532
|
-
{
|
|
5533
|
-
"name": "--vscode-progressBar-background",
|
|
5534
|
-
"default": "#0078d4"
|
|
5535
|
-
}
|
|
5536
|
-
],
|
|
5537
|
-
"members": [
|
|
5348
|
+
},
|
|
5349
|
+
"default": "100",
|
|
5350
|
+
"description": "Maximum value for determinate mode.",
|
|
5351
|
+
"attribute": "max",
|
|
5352
|
+
"reflects": true
|
|
5353
|
+
},
|
|
5538
5354
|
{
|
|
5539
5355
|
"kind": "field",
|
|
5540
|
-
"name": "
|
|
5356
|
+
"name": "indeterminate",
|
|
5541
5357
|
"type": {
|
|
5542
|
-
"text": "
|
|
5358
|
+
"text": "boolean"
|
|
5543
5359
|
},
|
|
5544
|
-
"default": "
|
|
5545
|
-
"
|
|
5360
|
+
"default": "false",
|
|
5361
|
+
"description": "Force indeterminate mode even if value is set.",
|
|
5362
|
+
"attribute": "indeterminate",
|
|
5546
5363
|
"reflects": true
|
|
5547
5364
|
},
|
|
5548
5365
|
{
|
|
5549
5366
|
"kind": "field",
|
|
5550
|
-
"name": "
|
|
5367
|
+
"name": "longRunningThreshold",
|
|
5551
5368
|
"type": {
|
|
5552
|
-
"text": "
|
|
5369
|
+
"text": "number"
|
|
5553
5370
|
},
|
|
5554
|
-
"default": "
|
|
5555
|
-
"
|
|
5556
|
-
"
|
|
5371
|
+
"default": "15000",
|
|
5372
|
+
"description": "Switch to a gentler animation after this many ms in indeterminate mode.",
|
|
5373
|
+
"attribute": "long-running-threshold"
|
|
5557
5374
|
},
|
|
5558
5375
|
{
|
|
5559
5376
|
"kind": "field",
|
|
5560
|
-
"name": "
|
|
5377
|
+
"name": "_longRunning",
|
|
5561
5378
|
"type": {
|
|
5562
|
-
"text": "
|
|
5379
|
+
"text": "boolean"
|
|
5563
5380
|
},
|
|
5564
|
-
"
|
|
5565
|
-
"
|
|
5566
|
-
|
|
5381
|
+
"privacy": "private",
|
|
5382
|
+
"default": "false"
|
|
5383
|
+
},
|
|
5384
|
+
{
|
|
5385
|
+
"kind": "field",
|
|
5386
|
+
"name": "_longRunningHandle",
|
|
5387
|
+
"type": {
|
|
5388
|
+
"text": "ReturnType<typeof setTimeout> | undefined"
|
|
5389
|
+
},
|
|
5390
|
+
"privacy": "private"
|
|
5391
|
+
},
|
|
5392
|
+
{
|
|
5393
|
+
"kind": "field",
|
|
5394
|
+
"name": "_isDeterminate",
|
|
5395
|
+
"type": {
|
|
5396
|
+
"text": "boolean"
|
|
5397
|
+
},
|
|
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
|
+
}
|
|
5567
5420
|
},
|
|
5568
5421
|
{
|
|
5569
5422
|
"kind": "field",
|
|
@@ -5581,53 +5434,64 @@
|
|
|
5581
5434
|
],
|
|
5582
5435
|
"attributes": [
|
|
5583
5436
|
{
|
|
5584
|
-
"name": "
|
|
5437
|
+
"name": "value",
|
|
5585
5438
|
"type": {
|
|
5586
|
-
"text": "
|
|
5439
|
+
"text": "number | undefined"
|
|
5587
5440
|
},
|
|
5588
|
-
"
|
|
5589
|
-
"fieldName": "
|
|
5441
|
+
"description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
|
|
5442
|
+
"fieldName": "value"
|
|
5590
5443
|
},
|
|
5591
5444
|
{
|
|
5592
|
-
"name": "
|
|
5445
|
+
"name": "max",
|
|
5593
5446
|
"type": {
|
|
5594
|
-
"text": "
|
|
5447
|
+
"text": "number"
|
|
5595
5448
|
},
|
|
5596
|
-
"default": "
|
|
5597
|
-
"
|
|
5449
|
+
"default": "100",
|
|
5450
|
+
"description": "Maximum value for determinate mode.",
|
|
5451
|
+
"fieldName": "max"
|
|
5598
5452
|
},
|
|
5599
5453
|
{
|
|
5600
|
-
"name": "
|
|
5454
|
+
"name": "indeterminate",
|
|
5601
5455
|
"type": {
|
|
5602
|
-
"text": "
|
|
5456
|
+
"text": "boolean"
|
|
5603
5457
|
},
|
|
5604
|
-
"default": "
|
|
5605
|
-
"
|
|
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"
|
|
5606
5470
|
}
|
|
5607
5471
|
],
|
|
5608
5472
|
"superclass": {
|
|
5609
5473
|
"name": "VscElement",
|
|
5610
5474
|
"module": "/src/includes/VscElement.js"
|
|
5611
5475
|
},
|
|
5612
|
-
"tagName": "vscode-progress-
|
|
5476
|
+
"tagName": "vscode-progress-bar",
|
|
5613
5477
|
"customElement": true
|
|
5614
5478
|
}
|
|
5615
5479
|
],
|
|
5616
5480
|
"exports": [
|
|
5617
5481
|
{
|
|
5618
5482
|
"kind": "js",
|
|
5619
|
-
"name": "
|
|
5483
|
+
"name": "VscodeProgressBar",
|
|
5620
5484
|
"declaration": {
|
|
5621
|
-
"name": "
|
|
5622
|
-
"module": "src/vscode-progress-
|
|
5485
|
+
"name": "VscodeProgressBar",
|
|
5486
|
+
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5623
5487
|
}
|
|
5624
5488
|
},
|
|
5625
5489
|
{
|
|
5626
5490
|
"kind": "custom-element-definition",
|
|
5627
|
-
"name": "vscode-progress-
|
|
5491
|
+
"name": "vscode-progress-bar",
|
|
5628
5492
|
"declaration": {
|
|
5629
|
-
"name": "
|
|
5630
|
-
"module": "src/vscode-progress-
|
|
5493
|
+
"name": "VscodeProgressBar",
|
|
5494
|
+
"module": "src/vscode-progress-bar/vscode-progress-bar.ts"
|
|
5631
5495
|
}
|
|
5632
5496
|
}
|
|
5633
5497
|
]
|
|
@@ -6182,6 +6046,142 @@
|
|
|
6182
6046
|
}
|
|
6183
6047
|
]
|
|
6184
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
|
+
},
|
|
6185
6185
|
{
|
|
6186
6186
|
"kind": "javascript-module",
|
|
6187
6187
|
"path": "src/vscode-radio-group/vscode-radio-group.styles.ts",
|