@vscode-elements/elements 1.14.1-pre.2 → 1.14.1-pre.3
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 +431 -331
- package/dist/bundled.js +35 -35
- package/dist/includes/VscElement.js +1 -1
- package/dist/includes/VscElement.js.map +1 -1
- package/dist/includes/vscode-select/helpers.d.ts +2 -0
- package/dist/includes/vscode-select/helpers.d.ts.map +1 -1
- package/dist/includes/vscode-select/helpers.js +26 -0
- package/dist/includes/vscode-select/helpers.js.map +1 -1
- package/dist/includes/vscode-select/vscode-select-base.d.ts +5 -1
- package/dist/includes/vscode-select/vscode-select-base.d.ts.map +1 -1
- package/dist/includes/vscode-select/vscode-select-base.js +27 -6
- package/dist/includes/vscode-select/vscode-select-base.js.map +1 -1
- package/dist/vscode-multi-select/vscode-multi-select.d.ts +1 -1
- package/dist/vscode-multi-select/vscode-multi-select.d.ts.map +1 -1
- package/dist/vscode-multi-select/vscode-multi-select.js.map +1 -1
- package/dist/vscode-single-select/vscode-single-select.d.ts +1 -1
- package/dist/vscode-single-select/vscode-single-select.d.ts.map +1 -1
- package/dist/vscode-single-select/vscode-single-select.js +25 -10
- package/dist/vscode-single-select/vscode-single-select.js.map +1 -1
- package/package.json +1 -1
- package/vscode.css-custom-data.json +7 -7
- package/vscode.html-custom-data.json +13 -13
package/custom-elements.json
CHANGED
|
@@ -1743,311 +1743,6 @@
|
|
|
1743
1743
|
}
|
|
1744
1744
|
]
|
|
1745
1745
|
},
|
|
1746
|
-
{
|
|
1747
|
-
"kind": "javascript-module",
|
|
1748
|
-
"path": "src/vscode-context-menu-item/vscode-context-menu-item.styles.ts",
|
|
1749
|
-
"declarations": [
|
|
1750
|
-
{
|
|
1751
|
-
"kind": "variable",
|
|
1752
|
-
"name": "styles",
|
|
1753
|
-
"type": {
|
|
1754
|
-
"text": "CSSResultGroup"
|
|
1755
|
-
},
|
|
1756
|
-
"default": "[ defaultStyles, css` :host { display: block; 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; outline: none; position: relative; } .context-menu-item { background-color: var(--vscode-menu-background, #1f1f1f); color: var(--vscode-menu-foreground, #cccccc); display: flex; 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; } `, ]"
|
|
1757
|
-
}
|
|
1758
|
-
],
|
|
1759
|
-
"exports": [
|
|
1760
|
-
{
|
|
1761
|
-
"kind": "js",
|
|
1762
|
-
"name": "default",
|
|
1763
|
-
"declaration": {
|
|
1764
|
-
"name": "styles",
|
|
1765
|
-
"module": "src/vscode-context-menu-item/vscode-context-menu-item.styles.ts"
|
|
1766
|
-
}
|
|
1767
|
-
}
|
|
1768
|
-
]
|
|
1769
|
-
},
|
|
1770
|
-
{
|
|
1771
|
-
"kind": "javascript-module",
|
|
1772
|
-
"path": "src/vscode-context-menu-item/vscode-context-menu-item.ts",
|
|
1773
|
-
"declarations": [
|
|
1774
|
-
{
|
|
1775
|
-
"kind": "class",
|
|
1776
|
-
"description": "",
|
|
1777
|
-
"name": "VscodeContextMenuItem",
|
|
1778
|
-
"cssProperties": [
|
|
1779
|
-
{
|
|
1780
|
-
"name": "--vscode-font-family",
|
|
1781
|
-
"default": "sans-serif"
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
"name": "--vscode-font-size",
|
|
1785
|
-
"default": "13px"
|
|
1786
|
-
},
|
|
1787
|
-
{
|
|
1788
|
-
"name": "--vscode-font-weight",
|
|
1789
|
-
"default": "normal"
|
|
1790
|
-
},
|
|
1791
|
-
{
|
|
1792
|
-
"name": "--vscode-menu-background",
|
|
1793
|
-
"default": "#1f1f1f"
|
|
1794
|
-
},
|
|
1795
|
-
{
|
|
1796
|
-
"name": "--vscode-menu-selectionBorder",
|
|
1797
|
-
"default": "transparent"
|
|
1798
|
-
},
|
|
1799
|
-
{
|
|
1800
|
-
"name": "--vscode-menu-foreground",
|
|
1801
|
-
"default": "#cccccc"
|
|
1802
|
-
},
|
|
1803
|
-
{
|
|
1804
|
-
"name": "--vscode-menu-selectionBackground",
|
|
1805
|
-
"default": "#0078d4"
|
|
1806
|
-
},
|
|
1807
|
-
{
|
|
1808
|
-
"name": "--vscode-menu-selectionForeground",
|
|
1809
|
-
"default": "#ffffff"
|
|
1810
|
-
},
|
|
1811
|
-
{
|
|
1812
|
-
"name": "--vscode-menu-separatorBackground",
|
|
1813
|
-
"default": "#454545"
|
|
1814
|
-
}
|
|
1815
|
-
],
|
|
1816
|
-
"members": [
|
|
1817
|
-
{
|
|
1818
|
-
"kind": "field",
|
|
1819
|
-
"name": "label",
|
|
1820
|
-
"type": {
|
|
1821
|
-
"text": "string"
|
|
1822
|
-
},
|
|
1823
|
-
"default": "''",
|
|
1824
|
-
"attribute": "label"
|
|
1825
|
-
},
|
|
1826
|
-
{
|
|
1827
|
-
"kind": "field",
|
|
1828
|
-
"name": "keybinding",
|
|
1829
|
-
"type": {
|
|
1830
|
-
"text": "string"
|
|
1831
|
-
},
|
|
1832
|
-
"default": "''",
|
|
1833
|
-
"attribute": "keybinding"
|
|
1834
|
-
},
|
|
1835
|
-
{
|
|
1836
|
-
"kind": "field",
|
|
1837
|
-
"name": "value",
|
|
1838
|
-
"type": {
|
|
1839
|
-
"text": "string"
|
|
1840
|
-
},
|
|
1841
|
-
"default": "''",
|
|
1842
|
-
"attribute": "value"
|
|
1843
|
-
},
|
|
1844
|
-
{
|
|
1845
|
-
"kind": "field",
|
|
1846
|
-
"name": "separator",
|
|
1847
|
-
"type": {
|
|
1848
|
-
"text": "boolean"
|
|
1849
|
-
},
|
|
1850
|
-
"default": "false",
|
|
1851
|
-
"attribute": "separator",
|
|
1852
|
-
"reflects": true
|
|
1853
|
-
},
|
|
1854
|
-
{
|
|
1855
|
-
"kind": "field",
|
|
1856
|
-
"name": "tabindex",
|
|
1857
|
-
"type": {
|
|
1858
|
-
"text": "number"
|
|
1859
|
-
},
|
|
1860
|
-
"default": "0",
|
|
1861
|
-
"attribute": "tabindex"
|
|
1862
|
-
},
|
|
1863
|
-
{
|
|
1864
|
-
"kind": "method",
|
|
1865
|
-
"name": "onItemClick",
|
|
1866
|
-
"privacy": "private"
|
|
1867
|
-
},
|
|
1868
|
-
{
|
|
1869
|
-
"kind": "field",
|
|
1870
|
-
"name": "version",
|
|
1871
|
-
"type": {
|
|
1872
|
-
"text": "string"
|
|
1873
|
-
},
|
|
1874
|
-
"description": "VSCode Elements version",
|
|
1875
|
-
"readonly": true,
|
|
1876
|
-
"inheritedFrom": {
|
|
1877
|
-
"name": "VscElement",
|
|
1878
|
-
"module": "src/includes/VscElement.ts"
|
|
1879
|
-
}
|
|
1880
|
-
}
|
|
1881
|
-
],
|
|
1882
|
-
"attributes": [
|
|
1883
|
-
{
|
|
1884
|
-
"name": "label",
|
|
1885
|
-
"type": {
|
|
1886
|
-
"text": "string"
|
|
1887
|
-
},
|
|
1888
|
-
"default": "''",
|
|
1889
|
-
"fieldName": "label"
|
|
1890
|
-
},
|
|
1891
|
-
{
|
|
1892
|
-
"name": "keybinding",
|
|
1893
|
-
"type": {
|
|
1894
|
-
"text": "string"
|
|
1895
|
-
},
|
|
1896
|
-
"default": "''",
|
|
1897
|
-
"fieldName": "keybinding"
|
|
1898
|
-
},
|
|
1899
|
-
{
|
|
1900
|
-
"name": "value",
|
|
1901
|
-
"type": {
|
|
1902
|
-
"text": "string"
|
|
1903
|
-
},
|
|
1904
|
-
"default": "''",
|
|
1905
|
-
"fieldName": "value"
|
|
1906
|
-
},
|
|
1907
|
-
{
|
|
1908
|
-
"name": "separator",
|
|
1909
|
-
"type": {
|
|
1910
|
-
"text": "boolean"
|
|
1911
|
-
},
|
|
1912
|
-
"default": "false",
|
|
1913
|
-
"fieldName": "separator"
|
|
1914
|
-
},
|
|
1915
|
-
{
|
|
1916
|
-
"name": "tabindex",
|
|
1917
|
-
"type": {
|
|
1918
|
-
"text": "number"
|
|
1919
|
-
},
|
|
1920
|
-
"default": "0",
|
|
1921
|
-
"fieldName": "tabindex"
|
|
1922
|
-
}
|
|
1923
|
-
],
|
|
1924
|
-
"superclass": {
|
|
1925
|
-
"name": "VscElement",
|
|
1926
|
-
"module": "/src/includes/VscElement.js"
|
|
1927
|
-
},
|
|
1928
|
-
"tagName": "vscode-context-menu-item",
|
|
1929
|
-
"customElement": true
|
|
1930
|
-
}
|
|
1931
|
-
],
|
|
1932
|
-
"exports": [
|
|
1933
|
-
{
|
|
1934
|
-
"kind": "js",
|
|
1935
|
-
"name": "VscodeContextMenuItem",
|
|
1936
|
-
"declaration": {
|
|
1937
|
-
"name": "VscodeContextMenuItem",
|
|
1938
|
-
"module": "src/vscode-context-menu-item/vscode-context-menu-item.ts"
|
|
1939
|
-
}
|
|
1940
|
-
},
|
|
1941
|
-
{
|
|
1942
|
-
"kind": "custom-element-definition",
|
|
1943
|
-
"name": "vscode-context-menu-item",
|
|
1944
|
-
"declaration": {
|
|
1945
|
-
"name": "VscodeContextMenuItem",
|
|
1946
|
-
"module": "src/vscode-context-menu-item/vscode-context-menu-item.ts"
|
|
1947
|
-
}
|
|
1948
|
-
}
|
|
1949
|
-
]
|
|
1950
|
-
},
|
|
1951
|
-
{
|
|
1952
|
-
"kind": "javascript-module",
|
|
1953
|
-
"path": "src/vscode-divider/vscode-divider.styles.ts",
|
|
1954
|
-
"declarations": [
|
|
1955
|
-
{
|
|
1956
|
-
"kind": "variable",
|
|
1957
|
-
"name": "styles",
|
|
1958
|
-
"type": {
|
|
1959
|
-
"text": "CSSResultGroup"
|
|
1960
|
-
},
|
|
1961
|
-
"default": "[ defaultStyles, css` :host { background-color: var(--vscode-foreground, #cccccc); display: block; height: 1px; margin-bottom: 10px; margin-top: 10px; opacity: 0.4; } `, ]"
|
|
1962
|
-
}
|
|
1963
|
-
],
|
|
1964
|
-
"exports": [
|
|
1965
|
-
{
|
|
1966
|
-
"kind": "js",
|
|
1967
|
-
"name": "default",
|
|
1968
|
-
"declaration": {
|
|
1969
|
-
"name": "styles",
|
|
1970
|
-
"module": "src/vscode-divider/vscode-divider.styles.ts"
|
|
1971
|
-
}
|
|
1972
|
-
}
|
|
1973
|
-
]
|
|
1974
|
-
},
|
|
1975
|
-
{
|
|
1976
|
-
"kind": "javascript-module",
|
|
1977
|
-
"path": "src/vscode-divider/vscode-divider.ts",
|
|
1978
|
-
"declarations": [
|
|
1979
|
-
{
|
|
1980
|
-
"kind": "class",
|
|
1981
|
-
"description": "",
|
|
1982
|
-
"name": "VscodeDivider",
|
|
1983
|
-
"cssProperties": [
|
|
1984
|
-
{
|
|
1985
|
-
"name": "--vscode-foreground",
|
|
1986
|
-
"default": "#cccccc"
|
|
1987
|
-
}
|
|
1988
|
-
],
|
|
1989
|
-
"members": [
|
|
1990
|
-
{
|
|
1991
|
-
"kind": "field",
|
|
1992
|
-
"name": "role",
|
|
1993
|
-
"type": {
|
|
1994
|
-
"text": "'separator' | 'presentation'"
|
|
1995
|
-
},
|
|
1996
|
-
"default": "'separator'",
|
|
1997
|
-
"attribute": "role",
|
|
1998
|
-
"reflects": true
|
|
1999
|
-
},
|
|
2000
|
-
{
|
|
2001
|
-
"kind": "field",
|
|
2002
|
-
"name": "version",
|
|
2003
|
-
"type": {
|
|
2004
|
-
"text": "string"
|
|
2005
|
-
},
|
|
2006
|
-
"description": "VSCode Elements version",
|
|
2007
|
-
"readonly": true,
|
|
2008
|
-
"inheritedFrom": {
|
|
2009
|
-
"name": "VscElement",
|
|
2010
|
-
"module": "src/includes/VscElement.ts"
|
|
2011
|
-
}
|
|
2012
|
-
}
|
|
2013
|
-
],
|
|
2014
|
-
"attributes": [
|
|
2015
|
-
{
|
|
2016
|
-
"name": "role",
|
|
2017
|
-
"type": {
|
|
2018
|
-
"text": "'separator' | 'presentation'"
|
|
2019
|
-
},
|
|
2020
|
-
"default": "'separator'",
|
|
2021
|
-
"fieldName": "role"
|
|
2022
|
-
}
|
|
2023
|
-
],
|
|
2024
|
-
"superclass": {
|
|
2025
|
-
"name": "VscElement",
|
|
2026
|
-
"module": "/src/includes/VscElement.js"
|
|
2027
|
-
},
|
|
2028
|
-
"tagName": "vscode-divider",
|
|
2029
|
-
"customElement": true
|
|
2030
|
-
}
|
|
2031
|
-
],
|
|
2032
|
-
"exports": [
|
|
2033
|
-
{
|
|
2034
|
-
"kind": "js",
|
|
2035
|
-
"name": "VscodeDivider",
|
|
2036
|
-
"declaration": {
|
|
2037
|
-
"name": "VscodeDivider",
|
|
2038
|
-
"module": "src/vscode-divider/vscode-divider.ts"
|
|
2039
|
-
}
|
|
2040
|
-
},
|
|
2041
|
-
{
|
|
2042
|
-
"kind": "custom-element-definition",
|
|
2043
|
-
"name": "vscode-divider",
|
|
2044
|
-
"declaration": {
|
|
2045
|
-
"name": "VscodeDivider",
|
|
2046
|
-
"module": "src/vscode-divider/vscode-divider.ts"
|
|
2047
|
-
}
|
|
2048
|
-
}
|
|
2049
|
-
]
|
|
2050
|
-
},
|
|
2051
1746
|
{
|
|
2052
1747
|
"kind": "javascript-module",
|
|
2053
1748
|
"path": "src/vscode-context-menu/vscode-context-menu.styles.ts",
|
|
@@ -2287,7 +1982,204 @@
|
|
|
2287
1982
|
},
|
|
2288
1983
|
{
|
|
2289
1984
|
"kind": "method",
|
|
2290
|
-
"name": "_onItemMouseOut",
|
|
1985
|
+
"name": "_onItemMouseOut",
|
|
1986
|
+
"privacy": "private"
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
"kind": "field",
|
|
1990
|
+
"name": "version",
|
|
1991
|
+
"type": {
|
|
1992
|
+
"text": "string"
|
|
1993
|
+
},
|
|
1994
|
+
"description": "VSCode Elements version",
|
|
1995
|
+
"readonly": true,
|
|
1996
|
+
"inheritedFrom": {
|
|
1997
|
+
"name": "VscElement",
|
|
1998
|
+
"module": "src/includes/VscElement.ts"
|
|
1999
|
+
}
|
|
2000
|
+
}
|
|
2001
|
+
],
|
|
2002
|
+
"events": [
|
|
2003
|
+
{
|
|
2004
|
+
"name": "vsc-select",
|
|
2005
|
+
"type": {
|
|
2006
|
+
"text": "CustomEvent"
|
|
2007
|
+
},
|
|
2008
|
+
"deprecated": "- Renamed to `vsc-context-menu-select`"
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"type": {
|
|
2012
|
+
"text": "VscMenuSelectEvent"
|
|
2013
|
+
},
|
|
2014
|
+
"description": "Emitted when a menu item is clicked",
|
|
2015
|
+
"name": "vsc-menu-select"
|
|
2016
|
+
}
|
|
2017
|
+
],
|
|
2018
|
+
"attributes": [
|
|
2019
|
+
{
|
|
2020
|
+
"name": "prevent-close",
|
|
2021
|
+
"type": {
|
|
2022
|
+
"text": "boolean"
|
|
2023
|
+
},
|
|
2024
|
+
"default": "false",
|
|
2025
|
+
"description": "By default, the menu closes when an item is clicked. This attribute prevents the menu from closing.",
|
|
2026
|
+
"fieldName": "preventClose"
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
"name": "show",
|
|
2030
|
+
"type": {
|
|
2031
|
+
"text": "boolean"
|
|
2032
|
+
},
|
|
2033
|
+
"fieldName": "show"
|
|
2034
|
+
}
|
|
2035
|
+
],
|
|
2036
|
+
"superclass": {
|
|
2037
|
+
"name": "VscElement",
|
|
2038
|
+
"module": "/src/includes/VscElement.js"
|
|
2039
|
+
},
|
|
2040
|
+
"tagName": "vscode-context-menu",
|
|
2041
|
+
"customElement": true
|
|
2042
|
+
}
|
|
2043
|
+
],
|
|
2044
|
+
"exports": [
|
|
2045
|
+
{
|
|
2046
|
+
"kind": "js",
|
|
2047
|
+
"name": "VscodeContextMenu",
|
|
2048
|
+
"declaration": {
|
|
2049
|
+
"name": "VscodeContextMenu",
|
|
2050
|
+
"module": "src/vscode-context-menu/vscode-context-menu.ts"
|
|
2051
|
+
}
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"kind": "custom-element-definition",
|
|
2055
|
+
"name": "vscode-context-menu",
|
|
2056
|
+
"declaration": {
|
|
2057
|
+
"name": "VscodeContextMenu",
|
|
2058
|
+
"module": "src/vscode-context-menu/vscode-context-menu.ts"
|
|
2059
|
+
}
|
|
2060
|
+
}
|
|
2061
|
+
]
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"kind": "javascript-module",
|
|
2065
|
+
"path": "src/vscode-context-menu-item/vscode-context-menu-item.styles.ts",
|
|
2066
|
+
"declarations": [
|
|
2067
|
+
{
|
|
2068
|
+
"kind": "variable",
|
|
2069
|
+
"name": "styles",
|
|
2070
|
+
"type": {
|
|
2071
|
+
"text": "CSSResultGroup"
|
|
2072
|
+
},
|
|
2073
|
+
"default": "[ defaultStyles, css` :host { display: block; 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; outline: none; position: relative; } .context-menu-item { background-color: var(--vscode-menu-background, #1f1f1f); color: var(--vscode-menu-foreground, #cccccc); display: flex; 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; } `, ]"
|
|
2074
|
+
}
|
|
2075
|
+
],
|
|
2076
|
+
"exports": [
|
|
2077
|
+
{
|
|
2078
|
+
"kind": "js",
|
|
2079
|
+
"name": "default",
|
|
2080
|
+
"declaration": {
|
|
2081
|
+
"name": "styles",
|
|
2082
|
+
"module": "src/vscode-context-menu-item/vscode-context-menu-item.styles.ts"
|
|
2083
|
+
}
|
|
2084
|
+
}
|
|
2085
|
+
]
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"kind": "javascript-module",
|
|
2089
|
+
"path": "src/vscode-context-menu-item/vscode-context-menu-item.ts",
|
|
2090
|
+
"declarations": [
|
|
2091
|
+
{
|
|
2092
|
+
"kind": "class",
|
|
2093
|
+
"description": "",
|
|
2094
|
+
"name": "VscodeContextMenuItem",
|
|
2095
|
+
"cssProperties": [
|
|
2096
|
+
{
|
|
2097
|
+
"name": "--vscode-font-family",
|
|
2098
|
+
"default": "sans-serif"
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"name": "--vscode-font-size",
|
|
2102
|
+
"default": "13px"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"name": "--vscode-font-weight",
|
|
2106
|
+
"default": "normal"
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
"name": "--vscode-menu-background",
|
|
2110
|
+
"default": "#1f1f1f"
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"name": "--vscode-menu-selectionBorder",
|
|
2114
|
+
"default": "transparent"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"name": "--vscode-menu-foreground",
|
|
2118
|
+
"default": "#cccccc"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"name": "--vscode-menu-selectionBackground",
|
|
2122
|
+
"default": "#0078d4"
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"name": "--vscode-menu-selectionForeground",
|
|
2126
|
+
"default": "#ffffff"
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"name": "--vscode-menu-separatorBackground",
|
|
2130
|
+
"default": "#454545"
|
|
2131
|
+
}
|
|
2132
|
+
],
|
|
2133
|
+
"members": [
|
|
2134
|
+
{
|
|
2135
|
+
"kind": "field",
|
|
2136
|
+
"name": "label",
|
|
2137
|
+
"type": {
|
|
2138
|
+
"text": "string"
|
|
2139
|
+
},
|
|
2140
|
+
"default": "''",
|
|
2141
|
+
"attribute": "label"
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"kind": "field",
|
|
2145
|
+
"name": "keybinding",
|
|
2146
|
+
"type": {
|
|
2147
|
+
"text": "string"
|
|
2148
|
+
},
|
|
2149
|
+
"default": "''",
|
|
2150
|
+
"attribute": "keybinding"
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"kind": "field",
|
|
2154
|
+
"name": "value",
|
|
2155
|
+
"type": {
|
|
2156
|
+
"text": "string"
|
|
2157
|
+
},
|
|
2158
|
+
"default": "''",
|
|
2159
|
+
"attribute": "value"
|
|
2160
|
+
},
|
|
2161
|
+
{
|
|
2162
|
+
"kind": "field",
|
|
2163
|
+
"name": "separator",
|
|
2164
|
+
"type": {
|
|
2165
|
+
"text": "boolean"
|
|
2166
|
+
},
|
|
2167
|
+
"default": "false",
|
|
2168
|
+
"attribute": "separator",
|
|
2169
|
+
"reflects": true
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"kind": "field",
|
|
2173
|
+
"name": "tabindex",
|
|
2174
|
+
"type": {
|
|
2175
|
+
"text": "number"
|
|
2176
|
+
},
|
|
2177
|
+
"default": "0",
|
|
2178
|
+
"attribute": "tabindex"
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"kind": "method",
|
|
2182
|
+
"name": "onItemClick",
|
|
2291
2183
|
"privacy": "private"
|
|
2292
2184
|
},
|
|
2293
2185
|
{
|
|
@@ -2304,63 +2196,171 @@
|
|
|
2304
2196
|
}
|
|
2305
2197
|
}
|
|
2306
2198
|
],
|
|
2307
|
-
"
|
|
2199
|
+
"attributes": [
|
|
2308
2200
|
{
|
|
2309
|
-
"name": "
|
|
2201
|
+
"name": "label",
|
|
2310
2202
|
"type": {
|
|
2311
|
-
"text": "
|
|
2203
|
+
"text": "string"
|
|
2312
2204
|
},
|
|
2313
|
-
"
|
|
2205
|
+
"default": "''",
|
|
2206
|
+
"fieldName": "label"
|
|
2314
2207
|
},
|
|
2315
2208
|
{
|
|
2209
|
+
"name": "keybinding",
|
|
2316
2210
|
"type": {
|
|
2317
|
-
"text": "
|
|
2211
|
+
"text": "string"
|
|
2318
2212
|
},
|
|
2319
|
-
"
|
|
2320
|
-
"
|
|
2321
|
-
}
|
|
2322
|
-
],
|
|
2323
|
-
"attributes": [
|
|
2213
|
+
"default": "''",
|
|
2214
|
+
"fieldName": "keybinding"
|
|
2215
|
+
},
|
|
2324
2216
|
{
|
|
2325
|
-
"name": "
|
|
2217
|
+
"name": "value",
|
|
2218
|
+
"type": {
|
|
2219
|
+
"text": "string"
|
|
2220
|
+
},
|
|
2221
|
+
"default": "''",
|
|
2222
|
+
"fieldName": "value"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"name": "separator",
|
|
2326
2226
|
"type": {
|
|
2327
2227
|
"text": "boolean"
|
|
2328
2228
|
},
|
|
2329
2229
|
"default": "false",
|
|
2330
|
-
"
|
|
2331
|
-
"fieldName": "preventClose"
|
|
2230
|
+
"fieldName": "separator"
|
|
2332
2231
|
},
|
|
2333
2232
|
{
|
|
2334
|
-
"name": "
|
|
2233
|
+
"name": "tabindex",
|
|
2335
2234
|
"type": {
|
|
2336
|
-
"text": "
|
|
2235
|
+
"text": "number"
|
|
2337
2236
|
},
|
|
2338
|
-
"
|
|
2237
|
+
"default": "0",
|
|
2238
|
+
"fieldName": "tabindex"
|
|
2339
2239
|
}
|
|
2340
2240
|
],
|
|
2341
2241
|
"superclass": {
|
|
2342
2242
|
"name": "VscElement",
|
|
2343
2243
|
"module": "/src/includes/VscElement.js"
|
|
2344
2244
|
},
|
|
2345
|
-
"tagName": "vscode-context-menu",
|
|
2245
|
+
"tagName": "vscode-context-menu-item",
|
|
2346
2246
|
"customElement": true
|
|
2347
2247
|
}
|
|
2348
2248
|
],
|
|
2349
2249
|
"exports": [
|
|
2350
2250
|
{
|
|
2351
2251
|
"kind": "js",
|
|
2352
|
-
"name": "
|
|
2252
|
+
"name": "VscodeContextMenuItem",
|
|
2353
2253
|
"declaration": {
|
|
2354
|
-
"name": "
|
|
2355
|
-
"module": "src/vscode-context-menu/vscode-context-menu.ts"
|
|
2254
|
+
"name": "VscodeContextMenuItem",
|
|
2255
|
+
"module": "src/vscode-context-menu-item/vscode-context-menu-item.ts"
|
|
2356
2256
|
}
|
|
2357
2257
|
},
|
|
2358
2258
|
{
|
|
2359
2259
|
"kind": "custom-element-definition",
|
|
2360
|
-
"name": "vscode-context-menu",
|
|
2260
|
+
"name": "vscode-context-menu-item",
|
|
2361
2261
|
"declaration": {
|
|
2362
|
-
"name": "
|
|
2363
|
-
"module": "src/vscode-context-menu/vscode-context-menu.ts"
|
|
2262
|
+
"name": "VscodeContextMenuItem",
|
|
2263
|
+
"module": "src/vscode-context-menu-item/vscode-context-menu-item.ts"
|
|
2264
|
+
}
|
|
2265
|
+
}
|
|
2266
|
+
]
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
"kind": "javascript-module",
|
|
2270
|
+
"path": "src/vscode-divider/vscode-divider.styles.ts",
|
|
2271
|
+
"declarations": [
|
|
2272
|
+
{
|
|
2273
|
+
"kind": "variable",
|
|
2274
|
+
"name": "styles",
|
|
2275
|
+
"type": {
|
|
2276
|
+
"text": "CSSResultGroup"
|
|
2277
|
+
},
|
|
2278
|
+
"default": "[ defaultStyles, css` :host { background-color: var(--vscode-foreground, #cccccc); display: block; height: 1px; margin-bottom: 10px; margin-top: 10px; opacity: 0.4; } `, ]"
|
|
2279
|
+
}
|
|
2280
|
+
],
|
|
2281
|
+
"exports": [
|
|
2282
|
+
{
|
|
2283
|
+
"kind": "js",
|
|
2284
|
+
"name": "default",
|
|
2285
|
+
"declaration": {
|
|
2286
|
+
"name": "styles",
|
|
2287
|
+
"module": "src/vscode-divider/vscode-divider.styles.ts"
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
]
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"kind": "javascript-module",
|
|
2294
|
+
"path": "src/vscode-divider/vscode-divider.ts",
|
|
2295
|
+
"declarations": [
|
|
2296
|
+
{
|
|
2297
|
+
"kind": "class",
|
|
2298
|
+
"description": "",
|
|
2299
|
+
"name": "VscodeDivider",
|
|
2300
|
+
"cssProperties": [
|
|
2301
|
+
{
|
|
2302
|
+
"name": "--vscode-foreground",
|
|
2303
|
+
"default": "#cccccc"
|
|
2304
|
+
}
|
|
2305
|
+
],
|
|
2306
|
+
"members": [
|
|
2307
|
+
{
|
|
2308
|
+
"kind": "field",
|
|
2309
|
+
"name": "role",
|
|
2310
|
+
"type": {
|
|
2311
|
+
"text": "'separator' | 'presentation'"
|
|
2312
|
+
},
|
|
2313
|
+
"default": "'separator'",
|
|
2314
|
+
"attribute": "role",
|
|
2315
|
+
"reflects": true
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"kind": "field",
|
|
2319
|
+
"name": "version",
|
|
2320
|
+
"type": {
|
|
2321
|
+
"text": "string"
|
|
2322
|
+
},
|
|
2323
|
+
"description": "VSCode Elements version",
|
|
2324
|
+
"readonly": true,
|
|
2325
|
+
"inheritedFrom": {
|
|
2326
|
+
"name": "VscElement",
|
|
2327
|
+
"module": "src/includes/VscElement.ts"
|
|
2328
|
+
}
|
|
2329
|
+
}
|
|
2330
|
+
],
|
|
2331
|
+
"attributes": [
|
|
2332
|
+
{
|
|
2333
|
+
"name": "role",
|
|
2334
|
+
"type": {
|
|
2335
|
+
"text": "'separator' | 'presentation'"
|
|
2336
|
+
},
|
|
2337
|
+
"default": "'separator'",
|
|
2338
|
+
"fieldName": "role"
|
|
2339
|
+
}
|
|
2340
|
+
],
|
|
2341
|
+
"superclass": {
|
|
2342
|
+
"name": "VscElement",
|
|
2343
|
+
"module": "/src/includes/VscElement.js"
|
|
2344
|
+
},
|
|
2345
|
+
"tagName": "vscode-divider",
|
|
2346
|
+
"customElement": true
|
|
2347
|
+
}
|
|
2348
|
+
],
|
|
2349
|
+
"exports": [
|
|
2350
|
+
{
|
|
2351
|
+
"kind": "js",
|
|
2352
|
+
"name": "VscodeDivider",
|
|
2353
|
+
"declaration": {
|
|
2354
|
+
"name": "VscodeDivider",
|
|
2355
|
+
"module": "src/vscode-divider/vscode-divider.ts"
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
"kind": "custom-element-definition",
|
|
2360
|
+
"name": "vscode-divider",
|
|
2361
|
+
"declaration": {
|
|
2362
|
+
"name": "VscodeDivider",
|
|
2363
|
+
"module": "src/vscode-divider/vscode-divider.ts"
|
|
2364
2364
|
}
|
|
2365
2365
|
}
|
|
2366
2366
|
]
|
|
@@ -3449,7 +3449,11 @@
|
|
|
3449
3449
|
{
|
|
3450
3450
|
"kind": "method",
|
|
3451
3451
|
"name": "_manageRequired",
|
|
3452
|
-
"privacy": "
|
|
3452
|
+
"privacy": "protected",
|
|
3453
|
+
"inheritedFrom": {
|
|
3454
|
+
"name": "VscodeSelectBase",
|
|
3455
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
3456
|
+
}
|
|
3453
3457
|
},
|
|
3454
3458
|
{
|
|
3455
3459
|
"kind": "method",
|
|
@@ -3709,6 +3713,19 @@
|
|
|
3709
3713
|
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
3710
3714
|
}
|
|
3711
3715
|
},
|
|
3716
|
+
{
|
|
3717
|
+
"kind": "field",
|
|
3718
|
+
"name": "_firstUpdateCompleted",
|
|
3719
|
+
"type": {
|
|
3720
|
+
"text": "boolean"
|
|
3721
|
+
},
|
|
3722
|
+
"privacy": "protected",
|
|
3723
|
+
"default": "false",
|
|
3724
|
+
"inheritedFrom": {
|
|
3725
|
+
"name": "VscodeSelectBase",
|
|
3726
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
3727
|
+
}
|
|
3728
|
+
},
|
|
3712
3729
|
{
|
|
3713
3730
|
"kind": "field",
|
|
3714
3731
|
"name": "_activeIndex",
|
|
@@ -6359,7 +6376,11 @@
|
|
|
6359
6376
|
{
|
|
6360
6377
|
"kind": "method",
|
|
6361
6378
|
"name": "_manageRequired",
|
|
6362
|
-
"privacy": "
|
|
6379
|
+
"privacy": "protected",
|
|
6380
|
+
"inheritedFrom": {
|
|
6381
|
+
"name": "VscodeSelectBase",
|
|
6382
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
6383
|
+
}
|
|
6363
6384
|
},
|
|
6364
6385
|
{
|
|
6365
6386
|
"kind": "method",
|
|
@@ -6516,6 +6537,19 @@
|
|
|
6516
6537
|
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
6517
6538
|
}
|
|
6518
6539
|
},
|
|
6540
|
+
{
|
|
6541
|
+
"kind": "field",
|
|
6542
|
+
"name": "_firstUpdateCompleted",
|
|
6543
|
+
"type": {
|
|
6544
|
+
"text": "boolean"
|
|
6545
|
+
},
|
|
6546
|
+
"privacy": "protected",
|
|
6547
|
+
"default": "false",
|
|
6548
|
+
"inheritedFrom": {
|
|
6549
|
+
"name": "VscodeSelectBase",
|
|
6550
|
+
"module": "src/includes/vscode-select/vscode-select-base.ts"
|
|
6551
|
+
}
|
|
6552
|
+
},
|
|
6519
6553
|
{
|
|
6520
6554
|
"kind": "field",
|
|
6521
6555
|
"name": "_activeIndex",
|
|
@@ -12216,6 +12250,42 @@
|
|
|
12216
12250
|
}
|
|
12217
12251
|
}
|
|
12218
12252
|
]
|
|
12253
|
+
},
|
|
12254
|
+
{
|
|
12255
|
+
"kind": "function",
|
|
12256
|
+
"name": "findNextSelectableOptionIndex",
|
|
12257
|
+
"parameters": [
|
|
12258
|
+
{
|
|
12259
|
+
"name": "options",
|
|
12260
|
+
"type": {
|
|
12261
|
+
"text": "InternalOption[]"
|
|
12262
|
+
}
|
|
12263
|
+
},
|
|
12264
|
+
{
|
|
12265
|
+
"name": "fromIndex",
|
|
12266
|
+
"type": {
|
|
12267
|
+
"text": "number"
|
|
12268
|
+
}
|
|
12269
|
+
}
|
|
12270
|
+
]
|
|
12271
|
+
},
|
|
12272
|
+
{
|
|
12273
|
+
"kind": "function",
|
|
12274
|
+
"name": "findPrevSelectableOptionIndex",
|
|
12275
|
+
"parameters": [
|
|
12276
|
+
{
|
|
12277
|
+
"name": "options",
|
|
12278
|
+
"type": {
|
|
12279
|
+
"text": "InternalOption[]"
|
|
12280
|
+
}
|
|
12281
|
+
},
|
|
12282
|
+
{
|
|
12283
|
+
"name": "fromIndex",
|
|
12284
|
+
"type": {
|
|
12285
|
+
"text": "number"
|
|
12286
|
+
}
|
|
12287
|
+
}
|
|
12288
|
+
]
|
|
12219
12289
|
}
|
|
12220
12290
|
],
|
|
12221
12291
|
"exports": [
|
|
@@ -12266,6 +12336,22 @@
|
|
|
12266
12336
|
"name": "highlightRanges",
|
|
12267
12337
|
"module": "src/includes/vscode-select/helpers.ts"
|
|
12268
12338
|
}
|
|
12339
|
+
},
|
|
12340
|
+
{
|
|
12341
|
+
"kind": "js",
|
|
12342
|
+
"name": "findNextSelectableOptionIndex",
|
|
12343
|
+
"declaration": {
|
|
12344
|
+
"name": "findNextSelectableOptionIndex",
|
|
12345
|
+
"module": "src/includes/vscode-select/helpers.ts"
|
|
12346
|
+
}
|
|
12347
|
+
},
|
|
12348
|
+
{
|
|
12349
|
+
"kind": "js",
|
|
12350
|
+
"name": "findPrevSelectableOptionIndex",
|
|
12351
|
+
"declaration": {
|
|
12352
|
+
"name": "findPrevSelectableOptionIndex",
|
|
12353
|
+
"module": "src/includes/vscode-select/helpers.ts"
|
|
12354
|
+
}
|
|
12269
12355
|
}
|
|
12270
12356
|
]
|
|
12271
12357
|
},
|
|
@@ -12426,6 +12512,15 @@
|
|
|
12426
12512
|
},
|
|
12427
12513
|
"privacy": "private"
|
|
12428
12514
|
},
|
|
12515
|
+
{
|
|
12516
|
+
"kind": "field",
|
|
12517
|
+
"name": "_firstUpdateCompleted",
|
|
12518
|
+
"type": {
|
|
12519
|
+
"text": "boolean"
|
|
12520
|
+
},
|
|
12521
|
+
"privacy": "protected",
|
|
12522
|
+
"default": "false"
|
|
12523
|
+
},
|
|
12429
12524
|
{
|
|
12430
12525
|
"kind": "field",
|
|
12431
12526
|
"name": "_activeIndex",
|
|
@@ -12584,6 +12679,11 @@
|
|
|
12584
12679
|
"privacy": "protected",
|
|
12585
12680
|
"readonly": true
|
|
12586
12681
|
},
|
|
12682
|
+
{
|
|
12683
|
+
"kind": "method",
|
|
12684
|
+
"name": "_manageRequired",
|
|
12685
|
+
"privacy": "protected"
|
|
12686
|
+
},
|
|
12587
12687
|
{
|
|
12588
12688
|
"kind": "method",
|
|
12589
12689
|
"name": "_setStateFromSlottedElements",
|