lean4monaco 1.0.46 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +75 -0
- package/dist/JuliaMono-Regular.ttf +0 -0
- package/dist/css/custom.css +7 -1
- package/dist/infowebview.d.ts +3 -4
- package/dist/infowebview.js +4 -4
- package/dist/lean4-infoview/codicon.ttf +0 -0
- package/dist/lean4-infoview/esm-shims/react-dom.d.ts +5 -0
- package/dist/lean4-infoview/esm-shims/react-jsx-runtime.d.ts +5 -0
- package/dist/lean4-infoview/esm-shims/react.d.ts +5 -0
- package/dist/lean4-infoview/index.css +4161 -0
- package/dist/lean4-infoview/index.d.ts +16 -0
- package/dist/lean4-infoview/index.development.js +37312 -0
- package/dist/lean4-infoview/index.production.min.js +1528 -0
- package/dist/lean4-infoview/infoview/collapsing.d.ts +12 -0
- package/dist/lean4-infoview/infoview/contexts.d.ts +10 -0
- package/dist/lean4-infoview/infoview/editorConnection.d.ts +22 -0
- package/dist/lean4-infoview/infoview/errors.d.ts +14 -0
- package/dist/lean4-infoview/infoview/event.d.ts +33 -0
- package/dist/lean4-infoview/infoview/goalLocation.d.ts +61 -0
- package/dist/lean4-infoview/infoview/goals.d.ts +46 -0
- package/dist/lean4-infoview/infoview/info.d.ts +18 -0
- package/dist/lean4-infoview/infoview/infos.d.ts +2 -0
- package/dist/lean4-infoview/infoview/interactiveCode.d.ts +19 -0
- package/dist/lean4-infoview/infoview/main.d.ts +13 -0
- package/dist/lean4-infoview/infoview/messages.d.ts +19 -0
- package/dist/lean4-infoview/infoview/rpcSessions.d.ts +11 -0
- package/dist/lean4-infoview/infoview/serverVersion.d.ts +10 -0
- package/dist/lean4-infoview/infoview/tooltips.d.ts +32 -0
- package/dist/lean4-infoview/infoview/traceExplorer.d.ts +11 -0
- package/dist/lean4-infoview/infoview/userWidget.d.ts +39 -0
- package/dist/lean4-infoview/infoview/util.d.ts +144 -0
- package/dist/lean4-infoview/loader.d.ts +20 -0
- package/dist/lean4-infoview/loader.development.js +1006 -0
- package/dist/lean4-infoview/loader.production.min.js +1 -0
- package/dist/lean4-infoview/react-dom.development.js +30537 -0
- package/dist/lean4-infoview/react-dom.production.min.js +21 -0
- package/dist/lean4-infoview/react-jsx-runtime.development.js +1362 -0
- package/dist/lean4-infoview/react-jsx-runtime.production.min.js +1 -0
- package/dist/lean4-infoview/react.development.js +2823 -0
- package/dist/lean4-infoview/react.production.min.js +1 -0
- package/dist/leanmonaco.js +5 -4
- package/dist/monaco-lean4/vscode-lean4/package.json +944 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +9 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +20 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.d.ts +12 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.js +40 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +20 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +79 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.d.ts +13 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.js +29 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +28 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +124 -0
- package/dist/monaco-lean4/vscode-lean4/src/config.d.ts +33 -0
- package/dist/monaco-lean4/vscode-lean4/src/config.js +119 -0
- package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +27 -0
- package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +133 -0
- package/dist/monaco-lean4/vscode-lean4/src/infoview.d.ts +69 -0
- package/dist/monaco-lean4/vscode-lean4/src/infoview.js +711 -0
- package/dist/monaco-lean4/vscode-lean4/src/leanclient.d.ts +67 -0
- package/dist/monaco-lean4/vscode-lean4/src/leanclient.js +443 -0
- package/dist/monaco-lean4/vscode-lean4/src/rpc.d.ts +16 -0
- package/dist/monaco-lean4/vscode-lean4/src/rpc.js +102 -0
- package/dist/monaco-lean4/vscode-lean4/src/taskgutter.d.ts +11 -0
- package/dist/monaco-lean4/vscode-lean4/src/taskgutter.js +130 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/batch.d.ts +37 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/batch.js +203 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.d.ts +41 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.js +205 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/converters.d.ts +16 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/converters.js +129 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/elan.d.ts +3 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/elan.js +4 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.d.ts +21 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.js +53 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.d.ts +35 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.js +136 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.d.ts +17 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.js +36 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +37 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.js +210 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/logger.d.ts +7 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/logger.js +20 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.d.ts +24 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.js +110 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.d.ts +9 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.js +125 -0
- package/dist/monacoleanclient.d.ts +1 -2
- package/dist/monacoleanclient.js +3 -3
- package/dist/vscode-lean4/lean4-infoview/package.json +25 -23
- package/dist/vscode-lean4/lean4-infoview/src/infoview/highlightjs.css +210 -0
- package/dist/vscode-lean4/lean4-infoview/tsconfig.json +6 -2
- package/dist/vscode-lean4/lean4-infoview-api/package.json +1 -1
- package/dist/vscode-lean4/lean4-unicode-input/package.json +1 -1
- package/dist/vscode-lean4/lean4-unicode-input/src/abbreviations.json +12 -12
- package/dist/vscode-lean4/lean4-unicode-input-component/package.json +2 -2
- package/dist/vscode-lean4/package-lock.json +6129 -3245
- package/dist/vscode-lean4/vscode-lean4/language-configuration.json +1 -1
- package/dist/vscode-lean4/vscode-lean4/loogleview/static/index.css +19 -16
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-dark.svg +91 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-dark.svg +114 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-light.svg +114 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-dark.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-light.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-dark.svg +100 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-light.svg +100 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-dark.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-light.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-dark.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-light.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-light.svg +91 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-dark.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-light.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-dark.svg +118 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-light.svg +118 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-dark.svg +138 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-dark.svg +160 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-light.svg +160 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-dark.svg +158 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-light.svg +158 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-light.svg +138 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-dark.svg +169 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-light.svg +169 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-dark.svg +147 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-dark.svg +170 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-light.svg +170 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-dark.svg +167 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-light.svg +167 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-light.svg +147 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-dark.svg +179 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-light.svg +179 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-dark.svg +165 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-dark.svg +187 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-light.svg +187 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-dark.svg +185 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-light.svg +185 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-light.svg +165 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-dark.svg +196 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-light.svg +196 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-dark.svg +184 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-dark.svg +206 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-light.svg +206 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-dark.svg +204 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-light.svg +204 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-light.svg +184 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-dark.svg +215 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-light.svg +215 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-dark.svg +132 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-dark.svg +154 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-light.svg +154 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-dark.svg +152 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-light.svg +152 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-light.svg +132 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-dark.svg +163 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-light.svg +163 -0
- package/dist/vscode-lean4/vscode-lean4/moogleview/static/index.css +198 -0
- package/dist/vscode-lean4/vscode-lean4/moogleview/tsconfig.json +10 -0
- package/dist/vscode-lean4/vscode-lean4/package.json +638 -18
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +2 -2
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +2 -2
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +2 -3
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +3 -5
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +1 -2
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +4 -8
- package/dist/vscode-lean4/vscode-lean4/src/config.d.ts +14 -1
- package/dist/vscode-lean4/vscode-lean4/src/config.js +56 -5
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.d.ts +36 -5
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.js +59 -23
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.d.ts +22 -17
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.js +182 -119
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +33 -20
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +235 -89
- package/dist/vscode-lean4/vscode-lean4/src/infoview.d.ts +7 -18
- package/dist/vscode-lean4/vscode-lean4/src/infoview.js +217 -102
- package/dist/vscode-lean4/vscode-lean4/src/leanclient.d.ts +12 -7
- package/dist/vscode-lean4/vscode-lean4/src/leanclient.js +187 -64
- package/dist/vscode-lean4/vscode-lean4/src/taskgutter.d.ts +35 -3
- package/dist/vscode-lean4/vscode-lean4/src/taskgutter.js +533 -93
- package/dist/vscode-lean4/vscode-lean4/src/utils/batch.d.ts +12 -4
- package/dist/vscode-lean4/vscode-lean4/src/utils/batch.js +78 -72
- package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.d.ts +9 -9
- package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.js +121 -77
- package/dist/vscode-lean4/vscode-lean4/src/utils/converters.d.ts +15 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/converters.js +9 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/elan.d.ts +179 -1
- package/dist/vscode-lean4/vscode-lean4/src/utils/elan.js +422 -3
- package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.d.ts +3 -1
- package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.js +11 -11
- package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.d.ts +2 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.js +17 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.d.ts +2 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.js +35 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.d.ts +34 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.js +249 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.d.ts +83 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.js +323 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +41 -12
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.js +245 -128
- package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.d.ts +27 -22
- package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.js +177 -82
- package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.d.ts +11 -4
- package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.js +18 -16
- package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.d.ts +1 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.js +2 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.d.ts +3 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.js +22 -0
- package/dist/vscode-lean4/vscode-lean4/tsconfig.json +2 -1
- package/dist/vscode-lean4/vscode-lean4/webview/tsconfig.json +3 -1
- package/dist/vscode.css +7 -0
- package/package.json +7 -5
package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-light.svg
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg1"
|
|
9
|
+
sodipodi:docname="warning-t-passthrough-light.svg"
|
|
10
|
+
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs1">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath2">
|
|
20
|
+
<rect
|
|
21
|
+
style="fill:none"
|
|
22
|
+
id="rect4"
|
|
23
|
+
width="16"
|
|
24
|
+
height="16"
|
|
25
|
+
x="0"
|
|
26
|
+
y="0" />
|
|
27
|
+
</clipPath>
|
|
28
|
+
<clipPath
|
|
29
|
+
clipPathUnits="userSpaceOnUse"
|
|
30
|
+
id="clipPath4">
|
|
31
|
+
<rect
|
|
32
|
+
style="fill:none"
|
|
33
|
+
id="rect5"
|
|
34
|
+
width="16"
|
|
35
|
+
height="16"
|
|
36
|
+
x="0"
|
|
37
|
+
y="0" />
|
|
38
|
+
</clipPath>
|
|
39
|
+
<clipPath
|
|
40
|
+
clipPathUnits="userSpaceOnUse"
|
|
41
|
+
id="clipPath5">
|
|
42
|
+
<rect
|
|
43
|
+
style="fill:none"
|
|
44
|
+
id="rect6"
|
|
45
|
+
width="16"
|
|
46
|
+
height="16"
|
|
47
|
+
x="0"
|
|
48
|
+
y="0" />
|
|
49
|
+
</clipPath>
|
|
50
|
+
<clipPath
|
|
51
|
+
clipPathUnits="userSpaceOnUse"
|
|
52
|
+
id="clipPath6">
|
|
53
|
+
<rect
|
|
54
|
+
style="fill:none"
|
|
55
|
+
id="rect7"
|
|
56
|
+
width="16"
|
|
57
|
+
height="16"
|
|
58
|
+
x="0"
|
|
59
|
+
y="0" />
|
|
60
|
+
</clipPath>
|
|
61
|
+
<clipPath
|
|
62
|
+
clipPathUnits="userSpaceOnUse"
|
|
63
|
+
id="clipPath15">
|
|
64
|
+
<rect
|
|
65
|
+
style="display:inline;fill:none;stroke-width:1.00098"
|
|
66
|
+
id="rect15"
|
|
67
|
+
width="16"
|
|
68
|
+
height="16"
|
|
69
|
+
x="0"
|
|
70
|
+
y="0" />
|
|
71
|
+
</clipPath>
|
|
72
|
+
<clipPath
|
|
73
|
+
clipPathUnits="userSpaceOnUse"
|
|
74
|
+
id="clipPath14">
|
|
75
|
+
<rect
|
|
76
|
+
style="display:inline;fill:none;stroke-width:1.00098"
|
|
77
|
+
id="rect14"
|
|
78
|
+
width="16"
|
|
79
|
+
height="16"
|
|
80
|
+
x="0"
|
|
81
|
+
y="0" />
|
|
82
|
+
</clipPath>
|
|
83
|
+
<clipPath
|
|
84
|
+
clipPathUnits="userSpaceOnUse"
|
|
85
|
+
id="clipPath13">
|
|
86
|
+
<rect
|
|
87
|
+
style="display:inline;fill:none;stroke-width:1.00098"
|
|
88
|
+
id="rect13"
|
|
89
|
+
width="16"
|
|
90
|
+
height="16"
|
|
91
|
+
x="0"
|
|
92
|
+
y="0" />
|
|
93
|
+
</clipPath>
|
|
94
|
+
<clipPath
|
|
95
|
+
clipPathUnits="userSpaceOnUse"
|
|
96
|
+
id="clipPath12">
|
|
97
|
+
<rect
|
|
98
|
+
style="display:inline;fill:none;stroke-width:1.00098"
|
|
99
|
+
id="rect12"
|
|
100
|
+
width="16"
|
|
101
|
+
height="16"
|
|
102
|
+
x="0"
|
|
103
|
+
y="0" />
|
|
104
|
+
</clipPath>
|
|
105
|
+
</defs>
|
|
106
|
+
<sodipodi:namedview
|
|
107
|
+
id="namedview1"
|
|
108
|
+
pagecolor="#ffffff"
|
|
109
|
+
bordercolor="#000000"
|
|
110
|
+
borderopacity="0.25"
|
|
111
|
+
inkscape:showpageshadow="2"
|
|
112
|
+
inkscape:pageopacity="0.0"
|
|
113
|
+
inkscape:pagecheckerboard="0"
|
|
114
|
+
inkscape:deskcolor="#d1d1d1"
|
|
115
|
+
inkscape:zoom="45.254834"
|
|
116
|
+
inkscape:cx="2.8615728"
|
|
117
|
+
inkscape:cy="8.010194"
|
|
118
|
+
inkscape:window-width="1918"
|
|
119
|
+
inkscape:window-height="2128"
|
|
120
|
+
inkscape:window-x="0"
|
|
121
|
+
inkscape:window-y="0"
|
|
122
|
+
inkscape:window-maximized="0"
|
|
123
|
+
inkscape:current-layer="svg1" />
|
|
124
|
+
<rect
|
|
125
|
+
style="fill:#e51400;fill-opacity:1;stroke-width:1.30379"
|
|
126
|
+
id="rect1-7"
|
|
127
|
+
width="1"
|
|
128
|
+
height="2.3373294"
|
|
129
|
+
x="7.5"
|
|
130
|
+
y="-0.082031257"
|
|
131
|
+
inkscape:transform-center-x="-0.3125"
|
|
132
|
+
inkscape:transform-center-y="3.6613784"
|
|
133
|
+
clip-path="url(#clipPath6)"
|
|
134
|
+
transform="scale(1,1.1935077)" />
|
|
135
|
+
<rect
|
|
136
|
+
style="fill:#e51400;fill-opacity:1;stroke-width:1.45406"
|
|
137
|
+
id="rect3"
|
|
138
|
+
width="5.2857399"
|
|
139
|
+
height="1"
|
|
140
|
+
x="11.357333"
|
|
141
|
+
y="7.5"
|
|
142
|
+
clip-path="url(#clipPath5)"
|
|
143
|
+
transform="matrix(1.0511654,0,0,1,-0.81864564,0)" />
|
|
144
|
+
<rect
|
|
145
|
+
style="fill:#e51400;fill-opacity:1;stroke-width:1.6605"
|
|
146
|
+
id="rect1"
|
|
147
|
+
width="1"
|
|
148
|
+
height="3.7912476"
|
|
149
|
+
x="7.5"
|
|
150
|
+
y="13.002536"
|
|
151
|
+
inkscape:transform-center-x="-0.3125"
|
|
152
|
+
inkscape:transform-center-y="5.676359"
|
|
153
|
+
clip-path="url(#clipPath4)"
|
|
154
|
+
transform="matrix(1,0,0,1.140744,0,-2.2519035)" />
|
|
155
|
+
<path
|
|
156
|
+
fill-rule="evenodd"
|
|
157
|
+
clip-rule="evenodd"
|
|
158
|
+
d="M 7.5699999,0.99447573 H 8.45 l 6.54,12.26000027 -0.44,0.74 H 1.4499999 L 1.01,13.254476 Z m 0.44,1.27999997 -5.72,10.7200003 H 13.71 Z m 0.625,9.7200003 v -1 h -1.25 v 1 z m -1.25,-2.0000003 v -4 h 1.25 v 4 z"
|
|
159
|
+
id="path1"
|
|
160
|
+
style="fill:#bf8803;fill-opacity:1;stroke:none;stroke-opacity:1"
|
|
161
|
+
clip-path="url(#clipPath2)"
|
|
162
|
+
transform="matrix(0.91780769,0,0,0.91780769,0.65753849,0.6159883)" />
|
|
163
|
+
</svg>
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
.loader {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
margin-left: 8px;
|
|
4
|
+
border: 4px solid #f3f3f3; /* Light grey */
|
|
5
|
+
border-top: 4px solid #3498db; /* Blue */
|
|
6
|
+
border-radius: 50%;
|
|
7
|
+
width: 16px;
|
|
8
|
+
height: 16px;
|
|
9
|
+
animation: spin 2s linear infinite;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@keyframes spin {
|
|
13
|
+
0% {
|
|
14
|
+
transform: rotate(0deg);
|
|
15
|
+
}
|
|
16
|
+
100% {
|
|
17
|
+
transform: rotate(360deg);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.hidden {
|
|
22
|
+
display: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.query-label {
|
|
26
|
+
display: block;
|
|
27
|
+
color: var(--vscode-foreground);
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
font-size: var(--vscode-font-size);
|
|
30
|
+
line-height: normal;
|
|
31
|
+
margin-bottom: 2px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.query-container {
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.input-container {
|
|
40
|
+
display: flex;
|
|
41
|
+
justify-content: space-between;
|
|
42
|
+
align-items: center;
|
|
43
|
+
width: 70ch;
|
|
44
|
+
|
|
45
|
+
box-sizing: border-box;
|
|
46
|
+
position: relative;
|
|
47
|
+
flex-direction: row;
|
|
48
|
+
color: var(--vscode-input-foreground);
|
|
49
|
+
background: var(--vscode-input-background);
|
|
50
|
+
border-radius: 2px;
|
|
51
|
+
border: 1px solid var(--vscode-dropdown-border);
|
|
52
|
+
height: 26px;
|
|
53
|
+
min-width: 100px;
|
|
54
|
+
font-family: var(--vscode-font-family);
|
|
55
|
+
outline: none;
|
|
56
|
+
user-select: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.input-container:focus-within:not([disabled]) {
|
|
60
|
+
border-color: var(--vscode-focusBorder);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
[contenteditable='true'].single-line {
|
|
64
|
+
white-space: nowrap;
|
|
65
|
+
width: 60ch;
|
|
66
|
+
overflow: hidden;
|
|
67
|
+
outline: none;
|
|
68
|
+
|
|
69
|
+
height: calc(100% - 4px);
|
|
70
|
+
margin-top: auto;
|
|
71
|
+
margin-bottom: auto;
|
|
72
|
+
border: none;
|
|
73
|
+
padding: 0 9px;
|
|
74
|
+
font-size: var(--vscode-font-size);
|
|
75
|
+
line-height: normal;
|
|
76
|
+
}
|
|
77
|
+
[contenteditable='true'].single-line br {
|
|
78
|
+
display: none;
|
|
79
|
+
}
|
|
80
|
+
[contenteditable='true'].single-line * {
|
|
81
|
+
display: inline;
|
|
82
|
+
white-space: nowrap;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
vscode-button {
|
|
86
|
+
vertical-align: middle;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
body {
|
|
90
|
+
font-family: var(--vscode-font-family);
|
|
91
|
+
font-size: var(--vscode-font-size);
|
|
92
|
+
color: var(--vscode-foreground);
|
|
93
|
+
padding: 10px;
|
|
94
|
+
line-height: 1.6;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
h1,
|
|
98
|
+
h2 {
|
|
99
|
+
color: var(--vscode-foreground);
|
|
100
|
+
font-weight: normal;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.result-item {
|
|
104
|
+
border: 1px solid rgba(209, 213, 219, 0.5);
|
|
105
|
+
border-radius: 0.5rem;
|
|
106
|
+
margin-bottom: 1rem;
|
|
107
|
+
background-color: var(--vscode-editor-background);
|
|
108
|
+
padding: 10px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.result-header {
|
|
112
|
+
cursor: pointer;
|
|
113
|
+
user-select: none;
|
|
114
|
+
padding: 0.625rem 1rem;
|
|
115
|
+
background-color: var(--vscode-editor-background);
|
|
116
|
+
border-bottom: 1px solid var(--vscode-panel-border);
|
|
117
|
+
}
|
|
118
|
+
.result-content {
|
|
119
|
+
display: none;
|
|
120
|
+
margin-top: 10px;
|
|
121
|
+
padding: 1rem;
|
|
122
|
+
}
|
|
123
|
+
.result-content.open {
|
|
124
|
+
display: block;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.result-content.open {
|
|
128
|
+
display: block;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.result-header h3 {
|
|
132
|
+
margin: 0;
|
|
133
|
+
font-size: 0.875rem;
|
|
134
|
+
font-weight: 500;
|
|
135
|
+
font-family: var(--vscode-editor-font-family);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.display-html-container {
|
|
139
|
+
font-family: var(--vscode-editor-font-family);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.display-html-container a {
|
|
143
|
+
text-decoration: none;
|
|
144
|
+
color: var(--vscode-editor-foreground);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.display-html-container a:hover {
|
|
148
|
+
text-decoration: underline;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
vscode-link {
|
|
152
|
+
margin-top: 5px;
|
|
153
|
+
}
|
|
154
|
+
.decl_header {
|
|
155
|
+
display: block;
|
|
156
|
+
margin-bottom: 0.5em;
|
|
157
|
+
color: var(--vscode-editor-foreground);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.decl_kind {
|
|
161
|
+
color: var(--vscode-keyword-foreground);
|
|
162
|
+
font-weight: bold;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.decl_name {
|
|
166
|
+
color: var(--vscode-symbolIcon-functionForeground);
|
|
167
|
+
font-weight: bold;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.name {
|
|
171
|
+
color: var(--vscode-symbolIcon-variableForeground);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.decl_args {
|
|
175
|
+
color: var(--vscode-editor-foreground);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.decl_type {
|
|
179
|
+
color: var(--vscode-symbolIcon-typeParameterForeground);
|
|
180
|
+
text-indent: 20px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.fn {
|
|
184
|
+
color: var(--vscode-symbolIcon-functionForeground);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.impl_arg {
|
|
188
|
+
font-style: italic;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.decl_extends,
|
|
192
|
+
.decl_parent {
|
|
193
|
+
color: var(--vscode-keyword-foreground);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.break_within {
|
|
197
|
+
word-break: break-word;
|
|
198
|
+
}
|