diff --git a/2694.js b/2694.js index cdbcc581..6cd2cee1 100644 --- a/2694.js +++ b/2694.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[2694],{2694:(t,n,e)=>{e.r(n),e.d(n,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n\tglyphMargin: true,\n\tcontextmenu: false,\n});\n\nvar decorations = editor.deltaDecorations(\n\t[],\n\t[\n\t\t{\n\t\t\trange: new monaco.Range(3, 1, 3, 1),\n\t\t\toptions: {\n\t\t\t\tisWholeLine: true,\n\t\t\t\tclassName: "myContentClass",\n\t\t\t\tglyphMarginClassName: "myGlyphMarginClass",\n\t\t\t},\n\t\t},\n\t]\n);\n\n// Add a zone to make hit testing more interesting\nvar viewZoneId = null;\neditor.changeViewZones(function (changeAccessor) {\n\tvar domNode = document.createElement("div");\n\tdomNode.style.background = "lightgreen";\n\tviewZoneId = changeAccessor.addZone({\n\t\tafterLineNumber: 3,\n\t\theightInLines: 3,\n\t\tdomNode: domNode,\n\t});\n});\n\n// Add a content widget (scrolls inline with text)\nvar contentWidget = {\n\tdomNode: null,\n\tgetId: function () {\n\t\treturn "my.content.widget";\n\t},\n\tgetDomNode: function () {\n\t\tif (!this.domNode) {\n\t\t\tthis.domNode = document.createElement("div");\n\t\t\tthis.domNode.innerHTML = "My content widget";\n\t\t\tthis.domNode.style.background = "grey";\n\t\t}\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn {\n\t\t\tposition: {\n\t\t\t\tlineNumber: 7,\n\t\t\t\tcolumn: 8,\n\t\t\t},\n\t\t\tpreference: [\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\n\t\t\t],\n\t\t};\n\t},\n};\neditor.addContentWidget(contentWidget);\n\n// Add an overlay widget\nvar overlayWidget = {\n\tdomNode: null,\n\tgetId: function () {\n\t\treturn "my.overlay.widget";\n\t},\n\tgetDomNode: function () {\n\t\tif (!this.domNode) {\n\t\t\tthis.domNode = document.createElement("div");\n\t\t\tthis.domNode.innerHTML = "My overlay widget";\n\t\t\tthis.domNode.style.background = "grey";\n\t\t\tthis.domNode.style.right = "30px";\n\t\t\tthis.domNode.style.top = "50px";\n\t\t}\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn null;\n\t},\n};\neditor.addOverlayWidget(overlayWidget);\n\nvar output = document.getElementById("output");\nfunction showEvent(str) {\n\twhile (output.childNodes.length > 6) {\n\t\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\n\t}\n\toutput.appendChild(document.createTextNode(str));\n\toutput.appendChild(document.createElement("br"));\n}\n\neditor.onMouseMove(function (e) {\n\tshowEvent("mousemove - " + e.target.toString());\n});\neditor.onMouseDown(function (e) {\n\tshowEvent("mousedown - " + e.target.toString());\n});\neditor.onContextMenu(function (e) {\n\tshowEvent("contextmenu - " + e.target.toString());\n});\neditor.onMouseLeave(function (e) {\n\tshowEvent("mouseleave");\n});\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[2694],{2694:(t,n,e)=>{e.r(n),e.d(n,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n\tglyphMargin: true,\n\tcontextmenu: false,\n});\n\nvar decorations = editor.deltaDecorations(\n\t[],\n\t[\n\t\t{\n\t\t\trange: new monaco.Range(3, 1, 3, 1),\n\t\t\toptions: {\n\t\t\t\tisWholeLine: true,\n\t\t\t\tclassName: "myContentClass",\n\t\t\t\tglyphMarginClassName: "myGlyphMarginClass",\n\t\t\t},\n\t\t},\n\t]\n);\n\n// Add a zone to make hit testing more interesting\nvar viewZoneId = null;\neditor.changeViewZones(function (changeAccessor) {\n\tvar domNode = document.createElement("div");\n\tdomNode.style.background = "lightgreen";\n\tviewZoneId = changeAccessor.addZone({\n\t\tafterLineNumber: 3,\n\t\theightInLines: 3,\n\t\tdomNode: domNode,\n\t});\n});\n\n// Add a content widget (scrolls inline with text)\nvar contentWidget = {\n\tdomNode: (function () {\n\t\tvar domNode = document.createElement("div");\n\t\tdomNode.innerHTML = "My content widget";\n\t\tdomNode.style.background = "grey";\n\t\treturn domNode;\n\t})(),\n\tgetId: function () {\n\t\treturn "my.content.widget";\n\t},\n\tgetDomNode: function () {\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn {\n\t\t\tposition: {\n\t\t\t\tlineNumber: 7,\n\t\t\t\tcolumn: 8,\n\t\t\t},\n\t\t\tpreference: [\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\n\t\t\t],\n\t\t};\n\t},\n};\neditor.addContentWidget(contentWidget);\n\n// Add an overlay widget\nvar overlayWidget = {\n\tdomNode: (function () {\n\t\tvar domNode = document.createElement("div");\n\t\tdomNode.innerHTML = "My overlay widget";\n\t\tdomNode.style.background = "grey";\n\t\tdomNode.style.right = "30px";\n\t\tdomNode.style.top = "50px";\n\t\treturn domNode;\n\t})(),\n\tgetId: function () {\n\t\treturn "my.overlay.widget";\n\t},\n\tgetDomNode: function () {\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn null;\n\t},\n};\neditor.addOverlayWidget(overlayWidget);\n\nvar output = document.getElementById("output");\nfunction showEvent(str) {\n\twhile (output.childNodes.length > 6) {\n\t\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\n\t}\n\toutput.appendChild(document.createTextNode(str));\n\toutput.appendChild(document.createElement("br"));\n}\n\neditor.onMouseMove(function (e) {\n\tshowEvent("mousemove - " + e.target.toString());\n});\neditor.onMouseDown(function (e) {\n\tshowEvent("mousedown - " + e.target.toString());\n});\neditor.onContextMenu(function (e) {\n\tshowEvent("contextmenu - " + e.target.toString());\n});\neditor.onMouseLeave(function (e) {\n\tshowEvent("mouseleave");\n});\n'}}]); //# sourceMappingURL=2694.js.map \ No newline at end of file diff --git a/2694.js.map b/2694.js.map index 183d755e..78138cbc 100644 --- a/2694.js.map +++ b/2694.js.map @@ -1 +1 @@ -{"version":3,"file":"2694.js","mappings":"8IAAA,g6F","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/listening-to-mouse-events/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n\\tglyphMargin: true,\\n\\tcontextmenu: false,\\n});\\n\\nvar decorations = editor.deltaDecorations(\\n\\t[],\\n\\t[\\n\\t\\t{\\n\\t\\t\\trange: new monaco.Range(3, 1, 3, 1),\\n\\t\\t\\toptions: {\\n\\t\\t\\t\\tisWholeLine: true,\\n\\t\\t\\t\\tclassName: \\\"myContentClass\\\",\\n\\t\\t\\t\\tglyphMarginClassName: \\\"myGlyphMarginClass\\\",\\n\\t\\t\\t},\\n\\t\\t},\\n\\t]\\n);\\n\\n// Add a zone to make hit testing more interesting\\nvar viewZoneId = null;\\neditor.changeViewZones(function (changeAccessor) {\\n\\tvar domNode = document.createElement(\\\"div\\\");\\n\\tdomNode.style.background = \\\"lightgreen\\\";\\n\\tviewZoneId = changeAccessor.addZone({\\n\\t\\tafterLineNumber: 3,\\n\\t\\theightInLines: 3,\\n\\t\\tdomNode: domNode,\\n\\t});\\n});\\n\\n// Add a content widget (scrolls inline with text)\\nvar contentWidget = {\\n\\tdomNode: null,\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.content.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\tif (!this.domNode) {\\n\\t\\t\\tthis.domNode = document.createElement(\\\"div\\\");\\n\\t\\t\\tthis.domNode.innerHTML = \\\"My content widget\\\";\\n\\t\\t\\tthis.domNode.style.background = \\\"grey\\\";\\n\\t\\t}\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn {\\n\\t\\t\\tposition: {\\n\\t\\t\\t\\tlineNumber: 7,\\n\\t\\t\\t\\tcolumn: 8,\\n\\t\\t\\t},\\n\\t\\t\\tpreference: [\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\\n\\t\\t\\t],\\n\\t\\t};\\n\\t},\\n};\\neditor.addContentWidget(contentWidget);\\n\\n// Add an overlay widget\\nvar overlayWidget = {\\n\\tdomNode: null,\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.overlay.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\tif (!this.domNode) {\\n\\t\\t\\tthis.domNode = document.createElement(\\\"div\\\");\\n\\t\\t\\tthis.domNode.innerHTML = \\\"My overlay widget\\\";\\n\\t\\t\\tthis.domNode.style.background = \\\"grey\\\";\\n\\t\\t\\tthis.domNode.style.right = \\\"30px\\\";\\n\\t\\t\\tthis.domNode.style.top = \\\"50px\\\";\\n\\t\\t}\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn null;\\n\\t},\\n};\\neditor.addOverlayWidget(overlayWidget);\\n\\nvar output = document.getElementById(\\\"output\\\");\\nfunction showEvent(str) {\\n\\twhile (output.childNodes.length > 6) {\\n\\t\\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\\n\\t}\\n\\toutput.appendChild(document.createTextNode(str));\\n\\toutput.appendChild(document.createElement(\\\"br\\\"));\\n}\\n\\neditor.onMouseMove(function (e) {\\n\\tshowEvent(\\\"mousemove - \\\" + e.target.toString());\\n});\\neditor.onMouseDown(function (e) {\\n\\tshowEvent(\\\"mousedown - \\\" + e.target.toString());\\n});\\neditor.onContextMenu(function (e) {\\n\\tshowEvent(\\\"contextmenu - \\\" + e.target.toString());\\n});\\neditor.onMouseLeave(function (e) {\\n\\tshowEvent(\\\"mouseleave\\\");\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"2694.js","mappings":"8IAAA,43F","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/listening-to-mouse-events/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n\\tglyphMargin: true,\\n\\tcontextmenu: false,\\n});\\n\\nvar decorations = editor.deltaDecorations(\\n\\t[],\\n\\t[\\n\\t\\t{\\n\\t\\t\\trange: new monaco.Range(3, 1, 3, 1),\\n\\t\\t\\toptions: {\\n\\t\\t\\t\\tisWholeLine: true,\\n\\t\\t\\t\\tclassName: \\\"myContentClass\\\",\\n\\t\\t\\t\\tglyphMarginClassName: \\\"myGlyphMarginClass\\\",\\n\\t\\t\\t},\\n\\t\\t},\\n\\t]\\n);\\n\\n// Add a zone to make hit testing more interesting\\nvar viewZoneId = null;\\neditor.changeViewZones(function (changeAccessor) {\\n\\tvar domNode = document.createElement(\\\"div\\\");\\n\\tdomNode.style.background = \\\"lightgreen\\\";\\n\\tviewZoneId = changeAccessor.addZone({\\n\\t\\tafterLineNumber: 3,\\n\\t\\theightInLines: 3,\\n\\t\\tdomNode: domNode,\\n\\t});\\n});\\n\\n// Add a content widget (scrolls inline with text)\\nvar contentWidget = {\\n\\tdomNode: (function () {\\n\\t\\tvar domNode = document.createElement(\\\"div\\\");\\n\\t\\tdomNode.innerHTML = \\\"My content widget\\\";\\n\\t\\tdomNode.style.background = \\\"grey\\\";\\n\\t\\treturn domNode;\\n\\t})(),\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.content.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn {\\n\\t\\t\\tposition: {\\n\\t\\t\\t\\tlineNumber: 7,\\n\\t\\t\\t\\tcolumn: 8,\\n\\t\\t\\t},\\n\\t\\t\\tpreference: [\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\\n\\t\\t\\t],\\n\\t\\t};\\n\\t},\\n};\\neditor.addContentWidget(contentWidget);\\n\\n// Add an overlay widget\\nvar overlayWidget = {\\n\\tdomNode: (function () {\\n\\t\\tvar domNode = document.createElement(\\\"div\\\");\\n\\t\\tdomNode.innerHTML = \\\"My overlay widget\\\";\\n\\t\\tdomNode.style.background = \\\"grey\\\";\\n\\t\\tdomNode.style.right = \\\"30px\\\";\\n\\t\\tdomNode.style.top = \\\"50px\\\";\\n\\t\\treturn domNode;\\n\\t})(),\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.overlay.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn null;\\n\\t},\\n};\\neditor.addOverlayWidget(overlayWidget);\\n\\nvar output = document.getElementById(\\\"output\\\");\\nfunction showEvent(str) {\\n\\twhile (output.childNodes.length > 6) {\\n\\t\\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\\n\\t}\\n\\toutput.appendChild(document.createTextNode(str));\\n\\toutput.appendChild(document.createElement(\\\"br\\\"));\\n}\\n\\neditor.onMouseMove(function (e) {\\n\\tshowEvent(\\\"mousemove - \\\" + e.target.toString());\\n});\\neditor.onMouseDown(function (e) {\\n\\tshowEvent(\\\"mousedown - \\\" + e.target.toString());\\n});\\neditor.onContextMenu(function (e) {\\n\\tshowEvent(\\\"contextmenu - \\\" + e.target.toString());\\n});\\neditor.onMouseLeave(function (e) {\\n\\tshowEvent(\\\"mouseleave\\\");\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/3180.js b/3180.js index 694d1ed9..c66fb9f7 100644 --- a/3180.js +++ b/3180.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3180],{3180:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='const value = `\nconst f = (a, b) => a + b;\n\nconst result = f(2, 5);\n`;\n\nconst editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue,\n\tlanguage: "javascript",\n});\n\nmonaco.languages.registerInlayHintsProvider("javascript", {\n\tprovideInlayHints(model, range, token) {\n\t\treturn [\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\tposition: { column: 13, lineNumber: 4 },\n\t\t\t\ttext: `: Number`,\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\tposition: { column: 13, lineNumber: 2 },\n\t\t\t\ttext: `: Number`,\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\tposition: { column: 16, lineNumber: 2 },\n\t\t\t\ttext: `: Number`,\n\t\t\t\twhitespaceBefore: true, // see difference between a and b parameter\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\tposition: { column: 18, lineNumber: 4 },\n\t\t\t\ttext: `a:`,\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\tposition: { column: 21, lineNumber: 4 },\n\t\t\t\ttext: `b:`,\n\t\t\t\twhitespaceAfter: true, // similar to whitespaceBefore\n\t\t\t},\n\t\t];\n\t},\n});\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3180],{3180:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='const value = `\nconst f = (a, b) => a + b;\n\nconst result = f(2, 5);\n`;\n\nconst editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue,\n\tlanguage: "javascript",\n});\n\nmonaco.languages.registerInlayHintsProvider("javascript", {\n\tprovideInlayHints(model, range, token) {\n\t\treturn {\n\t\t\thints: [\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\t\tposition: { column: 13, lineNumber: 4 },\n\t\t\t\t\tlabel: `: Number`,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\t\tposition: { column: 13, lineNumber: 2 },\n\t\t\t\t\tlabel: `: Number`,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\t\tposition: { column: 16, lineNumber: 2 },\n\t\t\t\t\tlabel: `: Number`,\n\t\t\t\t\twhitespaceBefore: true, // see difference between a and b parameter\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\t\tposition: { column: 18, lineNumber: 4 },\n\t\t\t\t\tlabel: `a:`,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\t\tposition: { column: 21, lineNumber: 4 },\n\t\t\t\t\tlabel: `b:`,\n\t\t\t\t\twhitespaceAfter: true, // similar to whitespaceBefore\n\t\t\t\t},\n\t\t\t],\n\t\t\tdispose: () => {},\n\t\t};\n\t},\n});\n'}}]); //# sourceMappingURL=3180.js.map \ No newline at end of file diff --git a/3180.js.map b/3180.js.map index 92175281..dc315993 100644 --- a/3180.js.map +++ b/3180.js.map @@ -1 +1 @@ -{"version":3,"file":"3180.js","mappings":"8IAAA,ysC","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/inlay-hints-provider-example/sample.js"],"sourcesContent":["export default \"const value = `\\nconst f = (a, b) => a + b;\\n\\nconst result = f(2, 5);\\n`;\\n\\nconst editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nmonaco.languages.registerInlayHintsProvider(\\\"javascript\\\", {\\n\\tprovideInlayHints(model, range, token) {\\n\\t\\treturn [\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\tposition: { column: 13, lineNumber: 4 },\\n\\t\\t\\t\\ttext: `: Number`,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\tposition: { column: 13, lineNumber: 2 },\\n\\t\\t\\t\\ttext: `: Number`,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\tposition: { column: 16, lineNumber: 2 },\\n\\t\\t\\t\\ttext: `: Number`,\\n\\t\\t\\t\\twhitespaceBefore: true, // see difference between a and b parameter\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\tposition: { column: 18, lineNumber: 4 },\\n\\t\\t\\t\\ttext: `a:`,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\tposition: { column: 21, lineNumber: 4 },\\n\\t\\t\\t\\ttext: `b:`,\\n\\t\\t\\t\\twhitespaceAfter: true, // similar to whitespaceBefore\\n\\t\\t\\t},\\n\\t\\t];\\n\\t},\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"3180.js","mappings":"8IAAA,wzC","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/inlay-hints-provider-example/sample.js"],"sourcesContent":["export default \"const value = `\\nconst f = (a, b) => a + b;\\n\\nconst result = f(2, 5);\\n`;\\n\\nconst editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nmonaco.languages.registerInlayHintsProvider(\\\"javascript\\\", {\\n\\tprovideInlayHints(model, range, token) {\\n\\t\\treturn {\\n\\t\\t\\thints: [\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\t\\tposition: { column: 13, lineNumber: 4 },\\n\\t\\t\\t\\t\\tlabel: `: Number`,\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\t\\tposition: { column: 13, lineNumber: 2 },\\n\\t\\t\\t\\t\\tlabel: `: Number`,\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\t\\tposition: { column: 16, lineNumber: 2 },\\n\\t\\t\\t\\t\\tlabel: `: Number`,\\n\\t\\t\\t\\t\\twhitespaceBefore: true, // see difference between a and b parameter\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\t\\tposition: { column: 18, lineNumber: 4 },\\n\\t\\t\\t\\t\\tlabel: `a:`,\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\t\\tposition: { column: 21, lineNumber: 4 },\\n\\t\\t\\t\\t\\tlabel: `b:`,\\n\\t\\t\\t\\t\\twhitespaceAfter: true, // similar to whitespaceBefore\\n\\t\\t\\t\\t},\\n\\t\\t\\t],\\n\\t\\t\\tdispose: () => {},\\n\\t\\t};\\n\\t},\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/3439.js b/3439.js index f12d7aca..a82b51b0 100644 --- a/3439.js +++ b/3439.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3439],{5932:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});const l='// The colorizeElement-function will read the data-lang-attribute\n// from the element to select the correct language mode. In this\n// sample it is text/css.\nmonaco.editor.colorizeElement(document.getElementById("code"));\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3439],{5932:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});const l='// The colorizeElement-function will read the data-lang-attribute\n// from the element to select the correct language mode. In this\n// sample it is text/css.\nmonaco.editor.colorizeElement(document.getElementById("code"), {});\n'}}]); //# sourceMappingURL=3439.js.map \ No newline at end of file diff --git a/3439.js.map b/3439.js.map index 27d722b1..55ee9331 100644 --- a/3439.js.map +++ b/3439.js.map @@ -1 +1 @@ -{"version":3,"file":"3439.js","mappings":"8IAAA,2O","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/syntax-highlighting-for-html-elements/sample.js"],"sourcesContent":["export default \"// The colorizeElement-function will read the data-lang-attribute\\n// from the element to select the correct language mode. In this\\n// sample it is text/css.\\nmonaco.editor.colorizeElement(document.getElementById(\\\"code\\\"));\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"3439.js","mappings":"8IAAA,+O","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/syntax-highlighting-for-html-elements/sample.js"],"sourcesContent":["export default \"// The colorizeElement-function will read the data-lang-attribute\\n// from the element to select the correct language mode. In this\\n// sample it is text/css.\\nmonaco.editor.colorizeElement(document.getElementById(\\\"code\\\"), {});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/7034.js b/7034.js index 916375fe..10e37d58 100644 --- a/7034.js +++ b/7034.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[7034],{7034:(n,t,e)=>{e.r(t),e.d(t,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n\nvar myCondition1 = editor.createContextKey(\n\t/*key name*/ "myCondition1",\n\t/*default value*/ false\n);\nvar myCondition2 = editor.createContextKey(\n\t/*key name*/ "myCondition2",\n\t/*default value*/ false\n);\n\neditor.addCommand(\n\tmonaco.KeyCode.Tab,\n\tfunction () {\n\t\t// services available in `ctx`\n\t\talert("my command is executing!");\n\t},\n\t"myCondition1 && myCondition2"\n);\n\nmyCondition1.set(true);\n\nsetTimeout(function () {\n\talert("now enabling also myCondition2, try pressing Tab!");\n\tmyCondition2.set(true);\n\t// you can use myCondition2.reset() to go back to the default\n}, 2000);\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[7034],{7034:(n,t,e)=>{e.r(t),e.d(t,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n\nvar myCondition1 = editor.createContextKey(\n\t/*key name*/ "myCondition1",\n\t/*default value*/ false\n);\nvar myCondition2 = editor.createContextKey(\n\t/*key name*/ "myCondition2",\n\t/*default value*/ false\n);\n\neditor.addCommand(\n\tmonaco.KeyCode.Tab,\n\tfunction () {\n\t\t// services available in `ctx`\n\t\talert("my command is executing!");\n\t},\n\t"myCondition1 && myCondition2"\n);\n// @ts-ignore\nmyCondition1.set(true);\n\nsetTimeout(function () {\n\talert("now enabling also myCondition2, try pressing Tab!");\n\t// @ts-ignore\n\tmyCondition2.set(true);\n\t// you can use myCondition2.reset() to go back to the default\n}, 2000);\n'}}]); //# sourceMappingURL=7034.js.map \ No newline at end of file diff --git a/7034.js.map b/7034.js.map index f4b9bbe6..25d511bc 100644 --- a/7034.js.map +++ b/7034.js.map @@ -1 +1 @@ -{"version":3,"file":"7034.js","mappings":"8IAAA,w9B","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/adding-a-command-to-an-editor-instance/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nvar myCondition1 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition1\\\",\\n\\t/*default value*/ false\\n);\\nvar myCondition2 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition2\\\",\\n\\t/*default value*/ false\\n);\\n\\neditor.addCommand(\\n\\tmonaco.KeyCode.Tab,\\n\\tfunction () {\\n\\t\\t// services available in `ctx`\\n\\t\\talert(\\\"my command is executing!\\\");\\n\\t},\\n\\t\\\"myCondition1 && myCondition2\\\"\\n);\\n\\nmyCondition1.set(true);\\n\\nsetTimeout(function () {\\n\\talert(\\\"now enabling also myCondition2, try pressing Tab!\\\");\\n\\tmyCondition2.set(true);\\n\\t// you can use myCondition2.reset() to go back to the default\\n}, 2000);\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"7034.js","mappings":"8IAAA,s/B","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/adding-a-command-to-an-editor-instance/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nvar myCondition1 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition1\\\",\\n\\t/*default value*/ false\\n);\\nvar myCondition2 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition2\\\",\\n\\t/*default value*/ false\\n);\\n\\neditor.addCommand(\\n\\tmonaco.KeyCode.Tab,\\n\\tfunction () {\\n\\t\\t// services available in `ctx`\\n\\t\\talert(\\\"my command is executing!\\\");\\n\\t},\\n\\t\\\"myCondition1 && myCondition2\\\"\\n);\\n// @ts-ignore\\nmyCondition1.set(true);\\n\\nsetTimeout(function () {\\n\\talert(\\\"now enabling also myCondition2, try pressing Tab!\\\");\\n\\t// @ts-ignore\\n\\tmyCondition2.set(true);\\n\\t// you can use myCondition2.reset() to go back to the default\\n}, 2000);\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/8470.js b/8470.js index 29185223..0c535a40 100644 --- a/8470.js +++ b/8470.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[8470],{8470:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='// Add additional d.ts files to the JavaScript language service and change.\n// Also change the default compilation options.\n// The sample below shows how a class Facts is declared and introduced\n// to the system and how the compiler is told to use ES6 (target=2).\n\n// validation settings\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\n\tnoSemanticValidation: true,\n\tnoSyntaxValidation: false,\n});\n\n// compiler options\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\n\ttarget: monaco.languages.typescript.ScriptTarget.ES6,\n\tallowNonTsExtensions: true,\n});\n\n// extra libraries\nvar libSource = [\n\t"declare class Facts {",\n\t" /**",\n\t" * Returns the next fact",\n\t" */",\n\t" static next():string",\n\t"}",\n].join("\\n");\nvar libUri = "ts:filename/facts.d.ts";\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\n// When resolving definitions and references, the editor will try to use created models.\n// Creating a model for the library allows "peek definition/references" commands to work with the library.\nmonaco.editor.createModel(libSource, "typescript", monaco.Uri.parse(libUri));\n\nvar jsCode = [\n\t\'"use strict";\',\n\t"",\n\t"class Chuck {",\n\t" greet() {",\n\t" return Facts.next();",\n\t" }",\n\t"}",\n].join("\\n");\n\nmonaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[8470],{8470:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='// Add additional d.ts files to the JavaScript language service and change.\n// Also change the default compilation options.\n// The sample below shows how a class Facts is declared and introduced\n// to the system and how the compiler is told to use ES6 (target=2).\n\n// validation settings\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\n\tnoSemanticValidation: true,\n\tnoSyntaxValidation: false,\n});\n\n// compiler options\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\n\ttarget: monaco.languages.typescript.ScriptTarget.ES2015,\n\tallowNonTsExtensions: true,\n});\n\n// extra libraries\nvar libSource = [\n\t"declare class Facts {",\n\t" /**",\n\t" * Returns the next fact",\n\t" */",\n\t" static next():string",\n\t"}",\n].join("\\n");\nvar libUri = "ts:filename/facts.d.ts";\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\n// When resolving definitions and references, the editor will try to use created models.\n// Creating a model for the library allows "peek definition/references" commands to work with the library.\nmonaco.editor.createModel(libSource, "typescript", monaco.Uri.parse(libUri));\n\nvar jsCode = [\n\t\'"use strict";\',\n\t"",\n\t"class Chuck {",\n\t" greet() {",\n\t" return Facts.next();",\n\t" }",\n\t"}",\n].join("\\n");\n\nmonaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n'}}]); //# sourceMappingURL=8470.js.map \ No newline at end of file diff --git a/8470.js.map b/8470.js.map index 07e150e6..ae6a0e95 100644 --- a/8470.js.map +++ b/8470.js.map @@ -1 +1 @@ -{"version":3,"file":"8470.js","mappings":"8IAAA,28C","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/configure-javascript-defaults/sample.js"],"sourcesContent":["export default \"// Add additional d.ts files to the JavaScript language service and change.\\n// Also change the default compilation options.\\n// The sample below shows how a class Facts is declared and introduced\\n// to the system and how the compiler is told to use ES6 (target=2).\\n\\n// validation settings\\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\\n\\tnoSemanticValidation: true,\\n\\tnoSyntaxValidation: false,\\n});\\n\\n// compiler options\\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\\n\\ttarget: monaco.languages.typescript.ScriptTarget.ES6,\\n\\tallowNonTsExtensions: true,\\n});\\n\\n// extra libraries\\nvar libSource = [\\n\\t\\\"declare class Facts {\\\",\\n\\t\\\" /**\\\",\\n\\t\\\" * Returns the next fact\\\",\\n\\t\\\" */\\\",\\n\\t\\\" static next():string\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\nvar libUri = \\\"ts:filename/facts.d.ts\\\";\\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\\n// When resolving definitions and references, the editor will try to use created models.\\n// Creating a model for the library allows \\\"peek definition/references\\\" commands to work with the library.\\nmonaco.editor.createModel(libSource, \\\"typescript\\\", monaco.Uri.parse(libUri));\\n\\nvar jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"\\\",\\n\\t\\\"class Chuck {\\\",\\n\\t\\\" greet() {\\\",\\n\\t\\\" return Facts.next();\\\",\\n\\t\\\" }\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"8470.js","mappings":"8IAAA,88C","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/configure-javascript-defaults/sample.js"],"sourcesContent":["export default \"// Add additional d.ts files to the JavaScript language service and change.\\n// Also change the default compilation options.\\n// The sample below shows how a class Facts is declared and introduced\\n// to the system and how the compiler is told to use ES6 (target=2).\\n\\n// validation settings\\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\\n\\tnoSemanticValidation: true,\\n\\tnoSyntaxValidation: false,\\n});\\n\\n// compiler options\\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\\n\\ttarget: monaco.languages.typescript.ScriptTarget.ES2015,\\n\\tallowNonTsExtensions: true,\\n});\\n\\n// extra libraries\\nvar libSource = [\\n\\t\\\"declare class Facts {\\\",\\n\\t\\\" /**\\\",\\n\\t\\\" * Returns the next fact\\\",\\n\\t\\\" */\\\",\\n\\t\\\" static next():string\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\nvar libUri = \\\"ts:filename/facts.d.ts\\\";\\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\\n// When resolving definitions and references, the editor will try to use created models.\\n// Creating a model for the library allows \\\"peek definition/references\\\" commands to work with the library.\\nmonaco.editor.createModel(libSource, \\\"typescript\\\", monaco.Uri.parse(libUri));\\n\\nvar jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"\\\",\\n\\t\\\"class Chuck {\\\",\\n\\t\\\" greet() {\\\",\\n\\t\\\" return Facts.next();\\\",\\n\\t\\\" }\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/9311.js b/9311.js index 2eeeb2e4..47a494f8 100644 --- a/9311.js +++ b/9311.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[9311],{9311:(e,n,t)=>{t.r(n),t.d(n,{default:()=>o});const o='// Register a new language\nmonaco.languages.register({ id: "mySpecialLanguage" });\n\n// Register a tokens provider for the language\nmonaco.languages.setMonarchTokensProvider("mySpecialLanguage", {\n\ttokenizer: {\n\t\troot: [\n\t\t\t[/\\[error.*/, "custom-error"],\n\t\t\t[/\\[notice.*/, "custom-notice"],\n\t\t\t[/\\[info.*/, "custom-info"],\n\t\t\t[/\\[[a-zA-Z 0-9:]+\\]/, "custom-date"],\n\t\t],\n\t},\n});\n\n// Define a new theme that contains only rules that match this language\nmonaco.editor.defineTheme("myCoolTheme", {\n\tbase: "vs",\n\tinherit: false,\n\trules: [\n\t\t{ token: "custom-info", foreground: "808080" },\n\t\t{ token: "custom-error", foreground: "ff0000", fontStyle: "bold" },\n\t\t{ token: "custom-notice", foreground: "FFA500" },\n\t\t{ token: "custom-date", foreground: "008800" },\n\t],\n\tcolors: {\n\t\t"editor.foreground": "#000000",\n\t},\n});\n\n// Register a completion item provider for the new language\nmonaco.languages.registerCompletionItemProvider("mySpecialLanguage", {\n\tprovideCompletionItems: () => {\n\t\tvar suggestions = [\n\t\t\t{\n\t\t\t\tlabel: "simpleText",\n\t\t\t\tkind: monaco.languages.CompletionItemKind.Text,\n\t\t\t\tinsertText: "simpleText",\n\t\t\t},\n\t\t\t{\n\t\t\t\tlabel: "testing",\n\t\t\t\tkind: monaco.languages.CompletionItemKind.Keyword,\n\t\t\t\tinsertText: "testing(${1:condition})",\n\t\t\t\tinsertTextRules:\n\t\t\t\t\tmonaco.languages.CompletionItemInsertTextRule\n\t\t\t\t\t\t.InsertAsSnippet,\n\t\t\t},\n\t\t\t{\n\t\t\t\tlabel: "ifelse",\n\t\t\t\tkind: monaco.languages.CompletionItemKind.Snippet,\n\t\t\t\tinsertText: [\n\t\t\t\t\t"if (${1:condition}) {",\n\t\t\t\t\t"\\t$0",\n\t\t\t\t\t"} else {",\n\t\t\t\t\t"\\t",\n\t\t\t\t\t"}",\n\t\t\t\t].join("\\n"),\n\t\t\t\tinsertTextRules:\n\t\t\t\t\tmonaco.languages.CompletionItemInsertTextRule\n\t\t\t\t\t\t.InsertAsSnippet,\n\t\t\t\tdocumentation: "If-Else Statement",\n\t\t\t},\n\t\t];\n\t\treturn { suggestions: suggestions };\n\t},\n});\n\nmonaco.editor.create(document.getElementById("container"), {\n\ttheme: "myCoolTheme",\n\tvalue: getCode(),\n\tlanguage: "mySpecialLanguage",\n});\n\nfunction getCode() {\n\treturn [\n\t\t"[Sun Mar 7 16:02:00 2004] [notice] Apache/1.3.29 (Unix) configured -- resuming normal operations",\n\t\t"[Sun Mar 7 16:02:00 2004] [info] Server built: Feb 27 2004 13:56:37",\n\t\t"[Sun Mar 7 16:02:00 2004] [notice] Accept mutex: sysvsem (Default: sysvsem)",\n\t\t"[Sun Mar 7 16:05:49 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 16:45:56 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:13:50 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:21:44 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:23:53 2004] statistics: Use of uninitialized value in concatenation (.) or string at /home/httpd/twiki/lib/TWiki.pm line 528.",\n\t\t"[Sun Mar 7 17:23:53 2004] statistics: Can\'t create file /home/httpd/twiki/data/Main/WebStatistics.txt - Permission denied",\n\t\t"[Sun Mar 7 17:27:37 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:31:39 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:58:00 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:00:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:10:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:19:01 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:42:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:52:30 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:58:52 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 19:03:58 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 19:08:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:04:35 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:11:33 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:12:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:25:31 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:44:48 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:58:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:16:17 2004] [error] [client xx.xx.xx.xx] File does not exist: /home/httpd/twiki/view/Main/WebHome",\n\t\t"[Sun Mar 7 21:20:14 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:31:12 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:39:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:44:10 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 01:35:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 01:47:06 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 01:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 02:12:24 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 02:54:54 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:46:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:48:18 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:52:17 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:55:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:22:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:24:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:40:32 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:55:40 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 05:22:57 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 05:24:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 05:31:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"<11>httpd[31628]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_inf.html in 29-Mar 15:18:20.50 from xx.xx.xx.xx",\n\t\t"<11>httpd[25859]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_bin/shtml.exe/_vti_rpc in 29-Mar 15:18:20.54 from xx.xx.xx.xx",\n\t].join("\\n");\n}\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[9311],{9311:(e,n,t)=>{t.r(n),t.d(n,{default:()=>o});const o='// Register a new language\nmonaco.languages.register({ id: "mySpecialLanguage" });\n\n// Register a tokens provider for the language\nmonaco.languages.setMonarchTokensProvider("mySpecialLanguage", {\n\ttokenizer: {\n\t\troot: [\n\t\t\t[/\\[error.*/, "custom-error"],\n\t\t\t[/\\[notice.*/, "custom-notice"],\n\t\t\t[/\\[info.*/, "custom-info"],\n\t\t\t[/\\[[a-zA-Z 0-9:]+\\]/, "custom-date"],\n\t\t],\n\t},\n});\n\n// Define a new theme that contains only rules that match this language\nmonaco.editor.defineTheme("myCoolTheme", {\n\tbase: "vs",\n\tinherit: false,\n\trules: [\n\t\t{ token: "custom-info", foreground: "808080" },\n\t\t{ token: "custom-error", foreground: "ff0000", fontStyle: "bold" },\n\t\t{ token: "custom-notice", foreground: "FFA500" },\n\t\t{ token: "custom-date", foreground: "008800" },\n\t],\n\tcolors: {\n\t\t"editor.foreground": "#000000",\n\t},\n});\n\n// Register a completion item provider for the new language\nmonaco.languages.registerCompletionItemProvider("mySpecialLanguage", {\n\tprovideCompletionItems: (model, position) => {\n\t\tvar word = model.getWordUntilPosition(position);\n\t\tvar range = {\n\t\t\tstartLineNumber: position.lineNumber,\n\t\t\tendLineNumber: position.lineNumber,\n\t\t\tstartColumn: word.startColumn,\n\t\t\tendColumn: word.endColumn,\n\t\t};\n\t\tvar suggestions = [\n\t\t\t{\n\t\t\t\tlabel: "simpleText",\n\t\t\t\tkind: monaco.languages.CompletionItemKind.Text,\n\t\t\t\tinsertText: "simpleText",\n\t\t\t\trange: range,\n\t\t\t},\n\t\t\t{\n\t\t\t\tlabel: "testing",\n\t\t\t\tkind: monaco.languages.CompletionItemKind.Keyword,\n\t\t\t\tinsertText: "testing(${1:condition})",\n\t\t\t\tinsertTextRules:\n\t\t\t\t\tmonaco.languages.CompletionItemInsertTextRule\n\t\t\t\t\t\t.InsertAsSnippet,\n\t\t\t\trange: range,\n\t\t\t},\n\t\t\t{\n\t\t\t\tlabel: "ifelse",\n\t\t\t\tkind: monaco.languages.CompletionItemKind.Snippet,\n\t\t\t\tinsertText: [\n\t\t\t\t\t"if (${1:condition}) {",\n\t\t\t\t\t"\\t$0",\n\t\t\t\t\t"} else {",\n\t\t\t\t\t"\\t",\n\t\t\t\t\t"}",\n\t\t\t\t].join("\\n"),\n\t\t\t\tinsertTextRules:\n\t\t\t\t\tmonaco.languages.CompletionItemInsertTextRule\n\t\t\t\t\t\t.InsertAsSnippet,\n\t\t\t\tdocumentation: "If-Else Statement",\n\t\t\t\trange: range,\n\t\t\t},\n\t\t];\n\t\treturn { suggestions: suggestions };\n\t},\n});\n\nmonaco.editor.create(document.getElementById("container"), {\n\ttheme: "myCoolTheme",\n\tvalue: getCode(),\n\tlanguage: "mySpecialLanguage",\n});\n\nfunction getCode() {\n\treturn [\n\t\t"[Sun Mar 7 16:02:00 2004] [notice] Apache/1.3.29 (Unix) configured -- resuming normal operations",\n\t\t"[Sun Mar 7 16:02:00 2004] [info] Server built: Feb 27 2004 13:56:37",\n\t\t"[Sun Mar 7 16:02:00 2004] [notice] Accept mutex: sysvsem (Default: sysvsem)",\n\t\t"[Sun Mar 7 16:05:49 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 16:45:56 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:13:50 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:21:44 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:23:53 2004] statistics: Use of uninitialized value in concatenation (.) or string at /home/httpd/twiki/lib/TWiki.pm line 528.",\n\t\t"[Sun Mar 7 17:23:53 2004] statistics: Can\'t create file /home/httpd/twiki/data/Main/WebStatistics.txt - Permission denied",\n\t\t"[Sun Mar 7 17:27:37 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:31:39 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 17:58:00 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:00:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:10:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:19:01 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:42:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:52:30 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 18:58:52 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 19:03:58 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 19:08:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:04:35 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:11:33 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:12:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:25:31 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:44:48 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 20:58:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:16:17 2004] [error] [client xx.xx.xx.xx] File does not exist: /home/httpd/twiki/view/Main/WebHome",\n\t\t"[Sun Mar 7 21:20:14 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:31:12 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:39:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Sun Mar 7 21:44:10 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 01:35:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 01:47:06 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 01:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 02:12:24 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 02:54:54 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:46:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:48:18 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:52:17 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 03:55:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:22:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:24:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:40:32 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:55:40 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 04:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 05:22:57 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 05:24:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"[Mon Mar 8 05:31:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed",\n\t\t"<11>httpd[31628]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_inf.html in 29-Mar 15:18:20.50 from xx.xx.xx.xx",\n\t\t"<11>httpd[25859]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_bin/shtml.exe/_vti_rpc in 29-Mar 15:18:20.54 from xx.xx.xx.xx",\n\t].join("\\n");\n}\n'}}]); //# sourceMappingURL=9311.js.map \ No newline at end of file diff --git a/9311.js.map b/9311.js.map index 71020bdc..30e28a03 100644 --- a/9311.js.map +++ b/9311.js.map @@ -1 +1 @@ -{"version":3,"file":"9311.js","mappings":"8IAAA,qoS","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/custom-languages/sample.js"],"sourcesContent":["export default \"// Register a new language\\nmonaco.languages.register({ id: \\\"mySpecialLanguage\\\" });\\n\\n// Register a tokens provider for the language\\nmonaco.languages.setMonarchTokensProvider(\\\"mySpecialLanguage\\\", {\\n\\ttokenizer: {\\n\\t\\troot: [\\n\\t\\t\\t[/\\\\[error.*/, \\\"custom-error\\\"],\\n\\t\\t\\t[/\\\\[notice.*/, \\\"custom-notice\\\"],\\n\\t\\t\\t[/\\\\[info.*/, \\\"custom-info\\\"],\\n\\t\\t\\t[/\\\\[[a-zA-Z 0-9:]+\\\\]/, \\\"custom-date\\\"],\\n\\t\\t],\\n\\t},\\n});\\n\\n// Define a new theme that contains only rules that match this language\\nmonaco.editor.defineTheme(\\\"myCoolTheme\\\", {\\n\\tbase: \\\"vs\\\",\\n\\tinherit: false,\\n\\trules: [\\n\\t\\t{ token: \\\"custom-info\\\", foreground: \\\"808080\\\" },\\n\\t\\t{ token: \\\"custom-error\\\", foreground: \\\"ff0000\\\", fontStyle: \\\"bold\\\" },\\n\\t\\t{ token: \\\"custom-notice\\\", foreground: \\\"FFA500\\\" },\\n\\t\\t{ token: \\\"custom-date\\\", foreground: \\\"008800\\\" },\\n\\t],\\n\\tcolors: {\\n\\t\\t\\\"editor.foreground\\\": \\\"#000000\\\",\\n\\t},\\n});\\n\\n// Register a completion item provider for the new language\\nmonaco.languages.registerCompletionItemProvider(\\\"mySpecialLanguage\\\", {\\n\\tprovideCompletionItems: () => {\\n\\t\\tvar suggestions = [\\n\\t\\t\\t{\\n\\t\\t\\t\\tlabel: \\\"simpleText\\\",\\n\\t\\t\\t\\tkind: monaco.languages.CompletionItemKind.Text,\\n\\t\\t\\t\\tinsertText: \\\"simpleText\\\",\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tlabel: \\\"testing\\\",\\n\\t\\t\\t\\tkind: monaco.languages.CompletionItemKind.Keyword,\\n\\t\\t\\t\\tinsertText: \\\"testing(${1:condition})\\\",\\n\\t\\t\\t\\tinsertTextRules:\\n\\t\\t\\t\\t\\tmonaco.languages.CompletionItemInsertTextRule\\n\\t\\t\\t\\t\\t\\t.InsertAsSnippet,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tlabel: \\\"ifelse\\\",\\n\\t\\t\\t\\tkind: monaco.languages.CompletionItemKind.Snippet,\\n\\t\\t\\t\\tinsertText: [\\n\\t\\t\\t\\t\\t\\\"if (${1:condition}) {\\\",\\n\\t\\t\\t\\t\\t\\\"\\\\t$0\\\",\\n\\t\\t\\t\\t\\t\\\"} else {\\\",\\n\\t\\t\\t\\t\\t\\\"\\\\t\\\",\\n\\t\\t\\t\\t\\t\\\"}\\\",\\n\\t\\t\\t\\t].join(\\\"\\\\n\\\"),\\n\\t\\t\\t\\tinsertTextRules:\\n\\t\\t\\t\\t\\tmonaco.languages.CompletionItemInsertTextRule\\n\\t\\t\\t\\t\\t\\t.InsertAsSnippet,\\n\\t\\t\\t\\tdocumentation: \\\"If-Else Statement\\\",\\n\\t\\t\\t},\\n\\t\\t];\\n\\t\\treturn { suggestions: suggestions };\\n\\t},\\n});\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\ttheme: \\\"myCoolTheme\\\",\\n\\tvalue: getCode(),\\n\\tlanguage: \\\"mySpecialLanguage\\\",\\n});\\n\\nfunction getCode() {\\n\\treturn [\\n\\t\\t\\\"[Sun Mar 7 16:02:00 2004] [notice] Apache/1.3.29 (Unix) configured -- resuming normal operations\\\",\\n\\t\\t\\\"[Sun Mar 7 16:02:00 2004] [info] Server built: Feb 27 2004 13:56:37\\\",\\n\\t\\t\\\"[Sun Mar 7 16:02:00 2004] [notice] Accept mutex: sysvsem (Default: sysvsem)\\\",\\n\\t\\t\\\"[Sun Mar 7 16:05:49 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 16:45:56 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:13:50 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:21:44 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:23:53 2004] statistics: Use of uninitialized value in concatenation (.) or string at /home/httpd/twiki/lib/TWiki.pm line 528.\\\",\\n\\t\\t\\\"[Sun Mar 7 17:23:53 2004] statistics: Can't create file /home/httpd/twiki/data/Main/WebStatistics.txt - Permission denied\\\",\\n\\t\\t\\\"[Sun Mar 7 17:27:37 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:31:39 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:58:00 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:00:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:10:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:19:01 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:42:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:52:30 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:58:52 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 19:03:58 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 19:08:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:04:35 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:11:33 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:12:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:25:31 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:44:48 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:58:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:16:17 2004] [error] [client xx.xx.xx.xx] File does not exist: /home/httpd/twiki/view/Main/WebHome\\\",\\n\\t\\t\\\"[Sun Mar 7 21:20:14 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:31:12 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:39:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:44:10 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 01:35:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 01:47:06 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 01:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 02:12:24 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 02:54:54 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:46:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:48:18 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:52:17 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:55:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:22:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:24:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:40:32 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:55:40 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 05:22:57 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 05:24:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 05:31:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"<11>httpd[31628]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_inf.html in 29-Mar 15:18:20.50 from xx.xx.xx.xx\\\",\\n\\t\\t\\\"<11>httpd[25859]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_bin/shtml.exe/_vti_rpc in 29-Mar 15:18:20.54 from xx.xx.xx.xx\\\",\\n\\t].join(\\\"\\\\n\\\");\\n}\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"9311.js","mappings":"8IAAA,08S","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/custom-languages/sample.js"],"sourcesContent":["export default \"// Register a new language\\nmonaco.languages.register({ id: \\\"mySpecialLanguage\\\" });\\n\\n// Register a tokens provider for the language\\nmonaco.languages.setMonarchTokensProvider(\\\"mySpecialLanguage\\\", {\\n\\ttokenizer: {\\n\\t\\troot: [\\n\\t\\t\\t[/\\\\[error.*/, \\\"custom-error\\\"],\\n\\t\\t\\t[/\\\\[notice.*/, \\\"custom-notice\\\"],\\n\\t\\t\\t[/\\\\[info.*/, \\\"custom-info\\\"],\\n\\t\\t\\t[/\\\\[[a-zA-Z 0-9:]+\\\\]/, \\\"custom-date\\\"],\\n\\t\\t],\\n\\t},\\n});\\n\\n// Define a new theme that contains only rules that match this language\\nmonaco.editor.defineTheme(\\\"myCoolTheme\\\", {\\n\\tbase: \\\"vs\\\",\\n\\tinherit: false,\\n\\trules: [\\n\\t\\t{ token: \\\"custom-info\\\", foreground: \\\"808080\\\" },\\n\\t\\t{ token: \\\"custom-error\\\", foreground: \\\"ff0000\\\", fontStyle: \\\"bold\\\" },\\n\\t\\t{ token: \\\"custom-notice\\\", foreground: \\\"FFA500\\\" },\\n\\t\\t{ token: \\\"custom-date\\\", foreground: \\\"008800\\\" },\\n\\t],\\n\\tcolors: {\\n\\t\\t\\\"editor.foreground\\\": \\\"#000000\\\",\\n\\t},\\n});\\n\\n// Register a completion item provider for the new language\\nmonaco.languages.registerCompletionItemProvider(\\\"mySpecialLanguage\\\", {\\n\\tprovideCompletionItems: (model, position) => {\\n\\t\\tvar word = model.getWordUntilPosition(position);\\n\\t\\tvar range = {\\n\\t\\t\\tstartLineNumber: position.lineNumber,\\n\\t\\t\\tendLineNumber: position.lineNumber,\\n\\t\\t\\tstartColumn: word.startColumn,\\n\\t\\t\\tendColumn: word.endColumn,\\n\\t\\t};\\n\\t\\tvar suggestions = [\\n\\t\\t\\t{\\n\\t\\t\\t\\tlabel: \\\"simpleText\\\",\\n\\t\\t\\t\\tkind: monaco.languages.CompletionItemKind.Text,\\n\\t\\t\\t\\tinsertText: \\\"simpleText\\\",\\n\\t\\t\\t\\trange: range,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tlabel: \\\"testing\\\",\\n\\t\\t\\t\\tkind: monaco.languages.CompletionItemKind.Keyword,\\n\\t\\t\\t\\tinsertText: \\\"testing(${1:condition})\\\",\\n\\t\\t\\t\\tinsertTextRules:\\n\\t\\t\\t\\t\\tmonaco.languages.CompletionItemInsertTextRule\\n\\t\\t\\t\\t\\t\\t.InsertAsSnippet,\\n\\t\\t\\t\\trange: range,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tlabel: \\\"ifelse\\\",\\n\\t\\t\\t\\tkind: monaco.languages.CompletionItemKind.Snippet,\\n\\t\\t\\t\\tinsertText: [\\n\\t\\t\\t\\t\\t\\\"if (${1:condition}) {\\\",\\n\\t\\t\\t\\t\\t\\\"\\\\t$0\\\",\\n\\t\\t\\t\\t\\t\\\"} else {\\\",\\n\\t\\t\\t\\t\\t\\\"\\\\t\\\",\\n\\t\\t\\t\\t\\t\\\"}\\\",\\n\\t\\t\\t\\t].join(\\\"\\\\n\\\"),\\n\\t\\t\\t\\tinsertTextRules:\\n\\t\\t\\t\\t\\tmonaco.languages.CompletionItemInsertTextRule\\n\\t\\t\\t\\t\\t\\t.InsertAsSnippet,\\n\\t\\t\\t\\tdocumentation: \\\"If-Else Statement\\\",\\n\\t\\t\\t\\trange: range,\\n\\t\\t\\t},\\n\\t\\t];\\n\\t\\treturn { suggestions: suggestions };\\n\\t},\\n});\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\ttheme: \\\"myCoolTheme\\\",\\n\\tvalue: getCode(),\\n\\tlanguage: \\\"mySpecialLanguage\\\",\\n});\\n\\nfunction getCode() {\\n\\treturn [\\n\\t\\t\\\"[Sun Mar 7 16:02:00 2004] [notice] Apache/1.3.29 (Unix) configured -- resuming normal operations\\\",\\n\\t\\t\\\"[Sun Mar 7 16:02:00 2004] [info] Server built: Feb 27 2004 13:56:37\\\",\\n\\t\\t\\\"[Sun Mar 7 16:02:00 2004] [notice] Accept mutex: sysvsem (Default: sysvsem)\\\",\\n\\t\\t\\\"[Sun Mar 7 16:05:49 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 16:45:56 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:13:50 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:21:44 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:23:53 2004] statistics: Use of uninitialized value in concatenation (.) or string at /home/httpd/twiki/lib/TWiki.pm line 528.\\\",\\n\\t\\t\\\"[Sun Mar 7 17:23:53 2004] statistics: Can't create file /home/httpd/twiki/data/Main/WebStatistics.txt - Permission denied\\\",\\n\\t\\t\\\"[Sun Mar 7 17:27:37 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:31:39 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 17:58:00 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:00:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:10:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:19:01 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:42:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:52:30 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 18:58:52 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 19:03:58 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 19:08:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:04:35 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:11:33 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:12:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:25:31 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:44:48 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 20:58:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:16:17 2004] [error] [client xx.xx.xx.xx] File does not exist: /home/httpd/twiki/view/Main/WebHome\\\",\\n\\t\\t\\\"[Sun Mar 7 21:20:14 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:31:12 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:39:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Sun Mar 7 21:44:10 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 01:35:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 01:47:06 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 01:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 02:12:24 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 02:54:54 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:46:27 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:48:18 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:52:17 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 03:55:09 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:22:55 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:24:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:40:32 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:55:40 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 04:59:13 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 05:22:57 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 05:24:29 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"[Mon Mar 8 05:31:47 2004] [info] [client xx.xx.xx.xx] (104)Connection reset by peer: client stopped connection before send body completed\\\",\\n\\t\\t\\\"<11>httpd[31628]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_inf.html in 29-Mar 15:18:20.50 from xx.xx.xx.xx\\\",\\n\\t\\t\\\"<11>httpd[25859]: [error] [client xx.xx.xx.xx] File does not exist: /usr/local/installed/apache/htdocs/squirrelmail/_vti_bin/shtml.exe/_vti_rpc in 29-Mar 15:18:20.54 from xx.xx.xx.xx\\\",\\n\\t].join(\\\"\\\\n\\\");\\n}\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/9754.js b/9754.js index eac53336..000b2711 100644 --- a/9754.js +++ b/9754.js @@ -1,2 +1,2 @@ -"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[9754],{9754:(o,e,r)=>{r.r(e),r.d(e,{default:()=>t});const t='// The editor colors can be customized through CSS or through JS\n\nmonaco.editor.defineTheme("myTheme", {\n\tbase: "vs",\n\tinherit: true,\n\trules: [{ background: "EDF9FA" }],\n\tcolors: {\n\t\t"editor.foreground": "#000000",\n\t\t"editor.background": "#EDF9FA",\n\t\t"editorCursor.foreground": "#8B0000",\n\t\t"editor.lineHighlightBackground": "#0000FF20",\n\t\t"editorLineNumber.foreground": "#008800",\n\t\t"editor.selectionBackground": "#88000030",\n\t\t"editor.inactiveSelectionBackground": "#88000015",\n\t},\n});\nmonaco.editor.setTheme("myTheme");\n\nmonaco.editor.create(document.getElementById("container"), {\n\tvalue: "My to-do list:\\n* buy milk\\n* buy coffee\\n* write awesome code",\n\tlanguage: "text/plain",\n\tfontFamily: "Arial",\n\tfontSize: 20,\n});\n\n// A list of color names:\n("foreground"); // Overall foreground color. This color is only used if not overridden by a component.\n("errorForeground"); // Overall foreground color for error messages. This color is only used if not overridden by a component.\n("descriptionForeground"); // Foreground color for description text providing additional information, for example for a label.\n("focusBorder"); // Overall border color for focused elements. This color is only used if not overridden by a component.\n("contrastBorder"); // An extra border around elements to separate them from others for greater contrast.\n("contrastActiveBorder"); // An extra border around active elements to separate them from others for greater contrast.\n("selection.background"); // The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor.\n("textSeparator.foreground"); // Color for text separators.\n("textLink.foreground"); // Foreground color for links in text.\n("textLink.activeForeground"); // Foreground color for active links in text.\n("textPreformat.foreground"); // Foreground color for preformatted text segments.\n("textBlockQuote.background"); // Background color for block quotes in text.\n("textBlockQuote.border"); // Border color for block quotes in text.\n("textCodeBlock.background"); // Background color for code blocks in text.\n("widget.shadow"); // Shadow color of widgets such as find/replace inside the editor.\n("input.background"); // Input box background.\n("input.foreground"); // Input box foreground.\n("input.border"); // Input box border.\n("inputOption.activeBorder"); // Border color of activated options in input fields.\n("input.placeholderForeground"); // Input box foreground color for placeholder text.\n("inputValidation.infoBackground"); // Input validation background color for information severity.\n("inputValidation.infoBorder"); // Input validation border color for information severity.\n("inputValidation.warningBackground"); // Input validation background color for information warning.\n("inputValidation.warningBorder"); // Input validation border color for warning severity.\n("inputValidation.errorBackground"); // Input validation background color for error severity.\n("inputValidation.errorBorder"); // Input validation border color for error severity.\n("dropdown.background"); // Dropdown background.\n("dropdown.foreground"); // Dropdown foreground.\n("dropdown.border"); // Dropdown border.\n("list.focusBackground"); // List/Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.focusForeground"); // List/Tree foreground color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.activeSelectionBackground"); // List/Tree background color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.activeSelectionForeground"); // List/Tree foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.inactiveSelectionBackground"); // List/Tree background color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\n("list.inactiveSelectionForeground"); // List/Tree foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\n("list.hoverBackground"); // List/Tree background when hovering over items using the mouse.\n("list.hoverForeground"); // List/Tree foreground when hovering over items using the mouse.\n("list.dropBackground"); // List/Tree drag and drop background when moving items around using the mouse.\n("list.highlightForeground"); // List/Tree foreground color of the match highlights when searching inside the list/tree.\n("pickerGroup.foreground"); // Quick picker color for grouping labels.\n("pickerGroup.border"); // Quick picker color for grouping borders.\n("button.foreground"); // Button foreground color.\n("button.background"); // Button background color.\n("button.hoverBackground"); // Button background color when hovering.\n("badge.background"); // Badge background color. Badges are small information labels, e.g. for search results count.\n("badge.foreground"); // Badge foreground color. Badges are small information labels, e.g. for search results count.\n("scrollbar.shadow"); // Scrollbar shadow to indicate that the view is scrolled.\n("scrollbarSlider.background"); // Slider background color.\n("scrollbarSlider.hoverBackground"); // Slider background color when hovering.\n("scrollbarSlider.activeBackground"); // Slider background color when active.\n("progressBar.background"); // Background color of the progress bar that can show for long running operations.\n("editor.background"); // Editor background color.\n("editor.foreground"); // Editor default foreground color.\n("editorWidget.background"); // Background color of editor widgets, such as find/replace.\n("editorWidget.border"); // Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.\n("editor.selectionBackground"); // Color of the editor selection.\n("editor.selectionForeground"); // Color of the selected text for high contrast.\n("editor.inactiveSelectionBackground"); // Color of the selection in an inactive editor.\n("editor.selectionHighlightBackground"); // Color for regions with the same content as the selection.\n("editor.findMatchBackground"); // Color of the current search match.\n("editor.findMatchHighlightBackground"); // Color of the other search matches.\n("editor.findRangeHighlightBackground"); // Color the range limiting the search.\n("editor.hoverHighlightBackground"); // Highlight below the word for which a hover is shown.\n("editorHoverWidget.background"); // Background color of the editor hover.\n("editorHoverWidget.border"); // Border color of the editor hover.\n("editorLink.activeForeground"); // Color of active links.\n("diffEditor.insertedTextBackground"); // Background color for text that got inserted.\n("diffEditor.removedTextBackground"); // Background color for text that got removed.\n("diffEditor.insertedTextBorder"); // Outline color for the text that got inserted.\n("diffEditor.removedTextBorder"); // Outline color for text that got removed.\n("editorOverviewRuler.currentContentForeground"); // Current overview ruler foreground for inline merge-conflicts.\n("editorOverviewRuler.incomingContentForeground"); // Incoming overview ruler foreground for inline merge-conflicts.\n("editorOverviewRuler.commonContentForeground"); // Common ancestor overview ruler foreground for inline merge-conflicts.\n("editor.lineHighlightBackground"); // Background color for the highlight of line at the cursor position.\n("editor.lineHighlightBorder"); // Background color for the border around the line at the cursor position.\n("editor.rangeHighlightBackground"); // Background color of highlighted ranges, like by quick open and find features.\n("editorCursor.foreground"); // Color of the editor cursor.\n("editorWhitespace.foreground"); // Color of whitespace characters in the editor.\n("editorIndentGuide.background"); // Color of the editor indentation guides.\n("editorLineNumber.foreground"); // Color of editor line numbers.\n("editorLineNumber.activeForeground"); // Color of editor active line number.\n("editorRuler.foreground"); // Color of the editor rulers.\n("editorCodeLens.foreground"); // Foreground color of editor code lenses\n("editorInlayHint.foreground"); // Foreground color of editor inlay hints\n("editorInlayHint.background"); // Background color of editor inlay hints\n("editorBracketMatch.background"); // Background color behind matching brackets\n("editorBracketMatch.border"); // Color for matching brackets boxes\n("editorOverviewRuler.border"); // Color of the overview ruler border.\n("editorGutter.background"); // Background color of the editor gutter. The gutter contains the glyph margins and the line numbers.\n("editorError.foreground"); // Foreground color of error squigglies in the editor.\n("editorError.border"); // Border color of error squigglies in the editor.\n("editorWarning.foreground"); // Foreground color of warning squigglies in the editor.\n("editorWarning.border"); // Border color of warning squigglies in the editor.\n("editorMarkerNavigationError.background"); // Editor marker navigation widget error color.\n("editorMarkerNavigationWarning.background"); // Editor marker navigation widget warning color.\n("editorMarkerNavigation.background"); // Editor marker navigation widget background.\n("editorSuggestWidget.background"); // Background color of the suggest widget.\n("editorSuggestWidget.border"); // Border color of the suggest widget.\n("editorSuggestWidget.foreground"); // Foreground color of the suggest widget.\n("editorSuggestWidget.selectedBackground"); // Background color of the selected entry in the suggest widget.\n("editorSuggestWidget.highlightForeground"); // Color of the match highlights in the suggest widget.\n("editor.wordHighlightBackground"); // Background color of a symbol during read-access, like reading a variable.\n("editor.wordHighlightStrongBackground"); // Background color of a symbol during write-access, like writing to a variable.\n("peekViewTitle.background"); // Background color of the peek view title area.\n("peekViewTitleLabel.foreground"); // Color of the peek view title.\n("peekViewTitleDescription.foreground"); // Color of the peek view title info.\n("peekView.border"); // Color of the peek view borders and arrow.\n("peekViewResult.background"); // Background color of the peek view result list.\n("peekViewResult.lineForeground"); // Foreground color for line nodes in the peek view result list.\n("peekViewResult.fileForeground"); // Foreground color for file nodes in the peek view result list.\n("peekViewResult.selectionBackground"); // Background color of the selected entry in the peek view result list.\n("peekViewResult.selectionForeground"); // Foreground color of the selected entry in the peek view result list.\n("peekViewEditor.background"); // Background color of the peek view editor.\n("peekViewEditorGutter.background"); // Background color of the gutter in the peek view editor.\n("peekViewResult.matchHighlightBackground"); // Match highlight color in the peek view result list.\n("peekViewEditor.matchHighlightBackground"); // Match highlight color in the peek view editor.\n\n/*\nvar colors = require(\'vs/platform/registry/common/platform\').Registry.data.get(\'base.contributions.colors\').colorSchema.properties\nObject.keys(colors).forEach(function(key) {\n var val = colors[key];\n console.log( \'//\' + val.description + \'\\n\' + key);\n})\n*/\n'}}]); +"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[9754],{9754:(o,e,r)=>{r.r(e),r.d(e,{default:()=>t});const t='// The editor colors can be customized through CSS or through JS\n\nmonaco.editor.defineTheme("myTheme", {\n\tbase: "vs",\n\tinherit: true,\n\trules: [],\n\tcolors: {\n\t\t"editor.foreground": "#000000",\n\t\t"editor.background": "#EDF9FA",\n\t\t"editorCursor.foreground": "#8B0000",\n\t\t"editor.lineHighlightBackground": "#0000FF20",\n\t\t"editorLineNumber.foreground": "#008800",\n\t\t"editor.selectionBackground": "#88000030",\n\t\t"editor.inactiveSelectionBackground": "#88000015",\n\t},\n});\nmonaco.editor.setTheme("myTheme");\n\nmonaco.editor.create(document.getElementById("container"), {\n\tvalue: "My to-do list:\\n* buy milk\\n* buy coffee\\n* write awesome code",\n\tlanguage: "text/plain",\n\tfontFamily: "Arial",\n\tfontSize: 20,\n});\n\n// A list of color names:\n("foreground"); // Overall foreground color. This color is only used if not overridden by a component.\n("errorForeground"); // Overall foreground color for error messages. This color is only used if not overridden by a component.\n("descriptionForeground"); // Foreground color for description text providing additional information, for example for a label.\n("focusBorder"); // Overall border color for focused elements. This color is only used if not overridden by a component.\n("contrastBorder"); // An extra border around elements to separate them from others for greater contrast.\n("contrastActiveBorder"); // An extra border around active elements to separate them from others for greater contrast.\n("selection.background"); // The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor.\n("textSeparator.foreground"); // Color for text separators.\n("textLink.foreground"); // Foreground color for links in text.\n("textLink.activeForeground"); // Foreground color for active links in text.\n("textPreformat.foreground"); // Foreground color for preformatted text segments.\n("textBlockQuote.background"); // Background color for block quotes in text.\n("textBlockQuote.border"); // Border color for block quotes in text.\n("textCodeBlock.background"); // Background color for code blocks in text.\n("widget.shadow"); // Shadow color of widgets such as find/replace inside the editor.\n("input.background"); // Input box background.\n("input.foreground"); // Input box foreground.\n("input.border"); // Input box border.\n("inputOption.activeBorder"); // Border color of activated options in input fields.\n("input.placeholderForeground"); // Input box foreground color for placeholder text.\n("inputValidation.infoBackground"); // Input validation background color for information severity.\n("inputValidation.infoBorder"); // Input validation border color for information severity.\n("inputValidation.warningBackground"); // Input validation background color for information warning.\n("inputValidation.warningBorder"); // Input validation border color for warning severity.\n("inputValidation.errorBackground"); // Input validation background color for error severity.\n("inputValidation.errorBorder"); // Input validation border color for error severity.\n("dropdown.background"); // Dropdown background.\n("dropdown.foreground"); // Dropdown foreground.\n("dropdown.border"); // Dropdown border.\n("list.focusBackground"); // List/Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.focusForeground"); // List/Tree foreground color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.activeSelectionBackground"); // List/Tree background color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.activeSelectionForeground"); // List/Tree foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\n("list.inactiveSelectionBackground"); // List/Tree background color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\n("list.inactiveSelectionForeground"); // List/Tree foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\n("list.hoverBackground"); // List/Tree background when hovering over items using the mouse.\n("list.hoverForeground"); // List/Tree foreground when hovering over items using the mouse.\n("list.dropBackground"); // List/Tree drag and drop background when moving items around using the mouse.\n("list.highlightForeground"); // List/Tree foreground color of the match highlights when searching inside the list/tree.\n("pickerGroup.foreground"); // Quick picker color for grouping labels.\n("pickerGroup.border"); // Quick picker color for grouping borders.\n("button.foreground"); // Button foreground color.\n("button.background"); // Button background color.\n("button.hoverBackground"); // Button background color when hovering.\n("badge.background"); // Badge background color. Badges are small information labels, e.g. for search results count.\n("badge.foreground"); // Badge foreground color. Badges are small information labels, e.g. for search results count.\n("scrollbar.shadow"); // Scrollbar shadow to indicate that the view is scrolled.\n("scrollbarSlider.background"); // Slider background color.\n("scrollbarSlider.hoverBackground"); // Slider background color when hovering.\n("scrollbarSlider.activeBackground"); // Slider background color when active.\n("progressBar.background"); // Background color of the progress bar that can show for long running operations.\n("editor.background"); // Editor background color.\n("editor.foreground"); // Editor default foreground color.\n("editorWidget.background"); // Background color of editor widgets, such as find/replace.\n("editorWidget.border"); // Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.\n("editor.selectionBackground"); // Color of the editor selection.\n("editor.selectionForeground"); // Color of the selected text for high contrast.\n("editor.inactiveSelectionBackground"); // Color of the selection in an inactive editor.\n("editor.selectionHighlightBackground"); // Color for regions with the same content as the selection.\n("editor.findMatchBackground"); // Color of the current search match.\n("editor.findMatchHighlightBackground"); // Color of the other search matches.\n("editor.findRangeHighlightBackground"); // Color the range limiting the search.\n("editor.hoverHighlightBackground"); // Highlight below the word for which a hover is shown.\n("editorHoverWidget.background"); // Background color of the editor hover.\n("editorHoverWidget.border"); // Border color of the editor hover.\n("editorLink.activeForeground"); // Color of active links.\n("diffEditor.insertedTextBackground"); // Background color for text that got inserted.\n("diffEditor.removedTextBackground"); // Background color for text that got removed.\n("diffEditor.insertedTextBorder"); // Outline color for the text that got inserted.\n("diffEditor.removedTextBorder"); // Outline color for text that got removed.\n("editorOverviewRuler.currentContentForeground"); // Current overview ruler foreground for inline merge-conflicts.\n("editorOverviewRuler.incomingContentForeground"); // Incoming overview ruler foreground for inline merge-conflicts.\n("editorOverviewRuler.commonContentForeground"); // Common ancestor overview ruler foreground for inline merge-conflicts.\n("editor.lineHighlightBackground"); // Background color for the highlight of line at the cursor position.\n("editor.lineHighlightBorder"); // Background color for the border around the line at the cursor position.\n("editor.rangeHighlightBackground"); // Background color of highlighted ranges, like by quick open and find features.\n("editorCursor.foreground"); // Color of the editor cursor.\n("editorWhitespace.foreground"); // Color of whitespace characters in the editor.\n("editorIndentGuide.background"); // Color of the editor indentation guides.\n("editorLineNumber.foreground"); // Color of editor line numbers.\n("editorLineNumber.activeForeground"); // Color of editor active line number.\n("editorRuler.foreground"); // Color of the editor rulers.\n("editorCodeLens.foreground"); // Foreground color of editor code lenses\n("editorInlayHint.foreground"); // Foreground color of editor inlay hints\n("editorInlayHint.background"); // Background color of editor inlay hints\n("editorBracketMatch.background"); // Background color behind matching brackets\n("editorBracketMatch.border"); // Color for matching brackets boxes\n("editorOverviewRuler.border"); // Color of the overview ruler border.\n("editorGutter.background"); // Background color of the editor gutter. The gutter contains the glyph margins and the line numbers.\n("editorError.foreground"); // Foreground color of error squigglies in the editor.\n("editorError.border"); // Border color of error squigglies in the editor.\n("editorWarning.foreground"); // Foreground color of warning squigglies in the editor.\n("editorWarning.border"); // Border color of warning squigglies in the editor.\n("editorMarkerNavigationError.background"); // Editor marker navigation widget error color.\n("editorMarkerNavigationWarning.background"); // Editor marker navigation widget warning color.\n("editorMarkerNavigation.background"); // Editor marker navigation widget background.\n("editorSuggestWidget.background"); // Background color of the suggest widget.\n("editorSuggestWidget.border"); // Border color of the suggest widget.\n("editorSuggestWidget.foreground"); // Foreground color of the suggest widget.\n("editorSuggestWidget.selectedBackground"); // Background color of the selected entry in the suggest widget.\n("editorSuggestWidget.highlightForeground"); // Color of the match highlights in the suggest widget.\n("editor.wordHighlightBackground"); // Background color of a symbol during read-access, like reading a variable.\n("editor.wordHighlightStrongBackground"); // Background color of a symbol during write-access, like writing to a variable.\n("peekViewTitle.background"); // Background color of the peek view title area.\n("peekViewTitleLabel.foreground"); // Color of the peek view title.\n("peekViewTitleDescription.foreground"); // Color of the peek view title info.\n("peekView.border"); // Color of the peek view borders and arrow.\n("peekViewResult.background"); // Background color of the peek view result list.\n("peekViewResult.lineForeground"); // Foreground color for line nodes in the peek view result list.\n("peekViewResult.fileForeground"); // Foreground color for file nodes in the peek view result list.\n("peekViewResult.selectionBackground"); // Background color of the selected entry in the peek view result list.\n("peekViewResult.selectionForeground"); // Foreground color of the selected entry in the peek view result list.\n("peekViewEditor.background"); // Background color of the peek view editor.\n("peekViewEditorGutter.background"); // Background color of the gutter in the peek view editor.\n("peekViewResult.matchHighlightBackground"); // Match highlight color in the peek view result list.\n("peekViewEditor.matchHighlightBackground"); // Match highlight color in the peek view editor.\n\n/*\nvar colors = require(\'vs/platform/registry/common/platform\').Registry.data.get(\'base.contributions.colors\').colorSchema.properties\nObject.keys(colors).forEach(function(key) {\n var val = colors[key];\n console.log( \'//\' + val.description + \'\\n\' + key);\n})\n*/\n'}}]); //# sourceMappingURL=9754.js.map \ No newline at end of file diff --git a/9754.js.map b/9754.js.map index 2be43897..c3c141d8 100644 --- a/9754.js.map +++ b/9754.js.map @@ -1 +1 @@ -{"version":3,"file":"9754.js","mappings":"8IAAA,giX","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/customizing-the-appearence/exposed-colors/sample.js"],"sourcesContent":["export default \"// The editor colors can be customized through CSS or through JS\\n\\nmonaco.editor.defineTheme(\\\"myTheme\\\", {\\n\\tbase: \\\"vs\\\",\\n\\tinherit: true,\\n\\trules: [{ background: \\\"EDF9FA\\\" }],\\n\\tcolors: {\\n\\t\\t\\\"editor.foreground\\\": \\\"#000000\\\",\\n\\t\\t\\\"editor.background\\\": \\\"#EDF9FA\\\",\\n\\t\\t\\\"editorCursor.foreground\\\": \\\"#8B0000\\\",\\n\\t\\t\\\"editor.lineHighlightBackground\\\": \\\"#0000FF20\\\",\\n\\t\\t\\\"editorLineNumber.foreground\\\": \\\"#008800\\\",\\n\\t\\t\\\"editor.selectionBackground\\\": \\\"#88000030\\\",\\n\\t\\t\\\"editor.inactiveSelectionBackground\\\": \\\"#88000015\\\",\\n\\t},\\n});\\nmonaco.editor.setTheme(\\\"myTheme\\\");\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: \\\"My to-do list:\\\\n* buy milk\\\\n* buy coffee\\\\n* write awesome code\\\",\\n\\tlanguage: \\\"text/plain\\\",\\n\\tfontFamily: \\\"Arial\\\",\\n\\tfontSize: 20,\\n});\\n\\n// A list of color names:\\n(\\\"foreground\\\"); // Overall foreground color. This color is only used if not overridden by a component.\\n(\\\"errorForeground\\\"); // Overall foreground color for error messages. This color is only used if not overridden by a component.\\n(\\\"descriptionForeground\\\"); // Foreground color for description text providing additional information, for example for a label.\\n(\\\"focusBorder\\\"); // Overall border color for focused elements. This color is only used if not overridden by a component.\\n(\\\"contrastBorder\\\"); // An extra border around elements to separate them from others for greater contrast.\\n(\\\"contrastActiveBorder\\\"); // An extra border around active elements to separate them from others for greater contrast.\\n(\\\"selection.background\\\"); // The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor.\\n(\\\"textSeparator.foreground\\\"); // Color for text separators.\\n(\\\"textLink.foreground\\\"); // Foreground color for links in text.\\n(\\\"textLink.activeForeground\\\"); // Foreground color for active links in text.\\n(\\\"textPreformat.foreground\\\"); // Foreground color for preformatted text segments.\\n(\\\"textBlockQuote.background\\\"); // Background color for block quotes in text.\\n(\\\"textBlockQuote.border\\\"); // Border color for block quotes in text.\\n(\\\"textCodeBlock.background\\\"); // Background color for code blocks in text.\\n(\\\"widget.shadow\\\"); // Shadow color of widgets such as find/replace inside the editor.\\n(\\\"input.background\\\"); // Input box background.\\n(\\\"input.foreground\\\"); // Input box foreground.\\n(\\\"input.border\\\"); // Input box border.\\n(\\\"inputOption.activeBorder\\\"); // Border color of activated options in input fields.\\n(\\\"input.placeholderForeground\\\"); // Input box foreground color for placeholder text.\\n(\\\"inputValidation.infoBackground\\\"); // Input validation background color for information severity.\\n(\\\"inputValidation.infoBorder\\\"); // Input validation border color for information severity.\\n(\\\"inputValidation.warningBackground\\\"); // Input validation background color for information warning.\\n(\\\"inputValidation.warningBorder\\\"); // Input validation border color for warning severity.\\n(\\\"inputValidation.errorBackground\\\"); // Input validation background color for error severity.\\n(\\\"inputValidation.errorBorder\\\"); // Input validation border color for error severity.\\n(\\\"dropdown.background\\\"); // Dropdown background.\\n(\\\"dropdown.foreground\\\"); // Dropdown foreground.\\n(\\\"dropdown.border\\\"); // Dropdown border.\\n(\\\"list.focusBackground\\\"); // List/Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.focusForeground\\\"); // List/Tree foreground color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.activeSelectionBackground\\\"); // List/Tree background color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.activeSelectionForeground\\\"); // List/Tree foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.inactiveSelectionBackground\\\"); // List/Tree background color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.inactiveSelectionForeground\\\"); // List/Tree foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.hoverBackground\\\"); // List/Tree background when hovering over items using the mouse.\\n(\\\"list.hoverForeground\\\"); // List/Tree foreground when hovering over items using the mouse.\\n(\\\"list.dropBackground\\\"); // List/Tree drag and drop background when moving items around using the mouse.\\n(\\\"list.highlightForeground\\\"); // List/Tree foreground color of the match highlights when searching inside the list/tree.\\n(\\\"pickerGroup.foreground\\\"); // Quick picker color for grouping labels.\\n(\\\"pickerGroup.border\\\"); // Quick picker color for grouping borders.\\n(\\\"button.foreground\\\"); // Button foreground color.\\n(\\\"button.background\\\"); // Button background color.\\n(\\\"button.hoverBackground\\\"); // Button background color when hovering.\\n(\\\"badge.background\\\"); // Badge background color. Badges are small information labels, e.g. for search results count.\\n(\\\"badge.foreground\\\"); // Badge foreground color. Badges are small information labels, e.g. for search results count.\\n(\\\"scrollbar.shadow\\\"); // Scrollbar shadow to indicate that the view is scrolled.\\n(\\\"scrollbarSlider.background\\\"); // Slider background color.\\n(\\\"scrollbarSlider.hoverBackground\\\"); // Slider background color when hovering.\\n(\\\"scrollbarSlider.activeBackground\\\"); // Slider background color when active.\\n(\\\"progressBar.background\\\"); // Background color of the progress bar that can show for long running operations.\\n(\\\"editor.background\\\"); // Editor background color.\\n(\\\"editor.foreground\\\"); // Editor default foreground color.\\n(\\\"editorWidget.background\\\"); // Background color of editor widgets, such as find/replace.\\n(\\\"editorWidget.border\\\"); // Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.\\n(\\\"editor.selectionBackground\\\"); // Color of the editor selection.\\n(\\\"editor.selectionForeground\\\"); // Color of the selected text for high contrast.\\n(\\\"editor.inactiveSelectionBackground\\\"); // Color of the selection in an inactive editor.\\n(\\\"editor.selectionHighlightBackground\\\"); // Color for regions with the same content as the selection.\\n(\\\"editor.findMatchBackground\\\"); // Color of the current search match.\\n(\\\"editor.findMatchHighlightBackground\\\"); // Color of the other search matches.\\n(\\\"editor.findRangeHighlightBackground\\\"); // Color the range limiting the search.\\n(\\\"editor.hoverHighlightBackground\\\"); // Highlight below the word for which a hover is shown.\\n(\\\"editorHoverWidget.background\\\"); // Background color of the editor hover.\\n(\\\"editorHoverWidget.border\\\"); // Border color of the editor hover.\\n(\\\"editorLink.activeForeground\\\"); // Color of active links.\\n(\\\"diffEditor.insertedTextBackground\\\"); // Background color for text that got inserted.\\n(\\\"diffEditor.removedTextBackground\\\"); // Background color for text that got removed.\\n(\\\"diffEditor.insertedTextBorder\\\"); // Outline color for the text that got inserted.\\n(\\\"diffEditor.removedTextBorder\\\"); // Outline color for text that got removed.\\n(\\\"editorOverviewRuler.currentContentForeground\\\"); // Current overview ruler foreground for inline merge-conflicts.\\n(\\\"editorOverviewRuler.incomingContentForeground\\\"); // Incoming overview ruler foreground for inline merge-conflicts.\\n(\\\"editorOverviewRuler.commonContentForeground\\\"); // Common ancestor overview ruler foreground for inline merge-conflicts.\\n(\\\"editor.lineHighlightBackground\\\"); // Background color for the highlight of line at the cursor position.\\n(\\\"editor.lineHighlightBorder\\\"); // Background color for the border around the line at the cursor position.\\n(\\\"editor.rangeHighlightBackground\\\"); // Background color of highlighted ranges, like by quick open and find features.\\n(\\\"editorCursor.foreground\\\"); // Color of the editor cursor.\\n(\\\"editorWhitespace.foreground\\\"); // Color of whitespace characters in the editor.\\n(\\\"editorIndentGuide.background\\\"); // Color of the editor indentation guides.\\n(\\\"editorLineNumber.foreground\\\"); // Color of editor line numbers.\\n(\\\"editorLineNumber.activeForeground\\\"); // Color of editor active line number.\\n(\\\"editorRuler.foreground\\\"); // Color of the editor rulers.\\n(\\\"editorCodeLens.foreground\\\"); // Foreground color of editor code lenses\\n(\\\"editorInlayHint.foreground\\\"); // Foreground color of editor inlay hints\\n(\\\"editorInlayHint.background\\\"); // Background color of editor inlay hints\\n(\\\"editorBracketMatch.background\\\"); // Background color behind matching brackets\\n(\\\"editorBracketMatch.border\\\"); // Color for matching brackets boxes\\n(\\\"editorOverviewRuler.border\\\"); // Color of the overview ruler border.\\n(\\\"editorGutter.background\\\"); // Background color of the editor gutter. The gutter contains the glyph margins and the line numbers.\\n(\\\"editorError.foreground\\\"); // Foreground color of error squigglies in the editor.\\n(\\\"editorError.border\\\"); // Border color of error squigglies in the editor.\\n(\\\"editorWarning.foreground\\\"); // Foreground color of warning squigglies in the editor.\\n(\\\"editorWarning.border\\\"); // Border color of warning squigglies in the editor.\\n(\\\"editorMarkerNavigationError.background\\\"); // Editor marker navigation widget error color.\\n(\\\"editorMarkerNavigationWarning.background\\\"); // Editor marker navigation widget warning color.\\n(\\\"editorMarkerNavigation.background\\\"); // Editor marker navigation widget background.\\n(\\\"editorSuggestWidget.background\\\"); // Background color of the suggest widget.\\n(\\\"editorSuggestWidget.border\\\"); // Border color of the suggest widget.\\n(\\\"editorSuggestWidget.foreground\\\"); // Foreground color of the suggest widget.\\n(\\\"editorSuggestWidget.selectedBackground\\\"); // Background color of the selected entry in the suggest widget.\\n(\\\"editorSuggestWidget.highlightForeground\\\"); // Color of the match highlights in the suggest widget.\\n(\\\"editor.wordHighlightBackground\\\"); // Background color of a symbol during read-access, like reading a variable.\\n(\\\"editor.wordHighlightStrongBackground\\\"); // Background color of a symbol during write-access, like writing to a variable.\\n(\\\"peekViewTitle.background\\\"); // Background color of the peek view title area.\\n(\\\"peekViewTitleLabel.foreground\\\"); // Color of the peek view title.\\n(\\\"peekViewTitleDescription.foreground\\\"); // Color of the peek view title info.\\n(\\\"peekView.border\\\"); // Color of the peek view borders and arrow.\\n(\\\"peekViewResult.background\\\"); // Background color of the peek view result list.\\n(\\\"peekViewResult.lineForeground\\\"); // Foreground color for line nodes in the peek view result list.\\n(\\\"peekViewResult.fileForeground\\\"); // Foreground color for file nodes in the peek view result list.\\n(\\\"peekViewResult.selectionBackground\\\"); // Background color of the selected entry in the peek view result list.\\n(\\\"peekViewResult.selectionForeground\\\"); // Foreground color of the selected entry in the peek view result list.\\n(\\\"peekViewEditor.background\\\"); // Background color of the peek view editor.\\n(\\\"peekViewEditorGutter.background\\\"); // Background color of the gutter in the peek view editor.\\n(\\\"peekViewResult.matchHighlightBackground\\\"); // Match highlight color in the peek view result list.\\n(\\\"peekViewEditor.matchHighlightBackground\\\"); // Match highlight color in the peek view editor.\\n\\n/*\\nvar colors = require('vs/platform/registry/common/platform').Registry.data.get('base.contributions.colors').colorSchema.properties\\nObject.keys(colors).forEach(function(key) {\\n var val = colors[key];\\n console.log( '//' + val.description + '\\\\n' + key);\\n})\\n*/\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"9754.js","mappings":"8IAAA,wgX","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/customizing-the-appearence/exposed-colors/sample.js"],"sourcesContent":["export default \"// The editor colors can be customized through CSS or through JS\\n\\nmonaco.editor.defineTheme(\\\"myTheme\\\", {\\n\\tbase: \\\"vs\\\",\\n\\tinherit: true,\\n\\trules: [],\\n\\tcolors: {\\n\\t\\t\\\"editor.foreground\\\": \\\"#000000\\\",\\n\\t\\t\\\"editor.background\\\": \\\"#EDF9FA\\\",\\n\\t\\t\\\"editorCursor.foreground\\\": \\\"#8B0000\\\",\\n\\t\\t\\\"editor.lineHighlightBackground\\\": \\\"#0000FF20\\\",\\n\\t\\t\\\"editorLineNumber.foreground\\\": \\\"#008800\\\",\\n\\t\\t\\\"editor.selectionBackground\\\": \\\"#88000030\\\",\\n\\t\\t\\\"editor.inactiveSelectionBackground\\\": \\\"#88000015\\\",\\n\\t},\\n});\\nmonaco.editor.setTheme(\\\"myTheme\\\");\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: \\\"My to-do list:\\\\n* buy milk\\\\n* buy coffee\\\\n* write awesome code\\\",\\n\\tlanguage: \\\"text/plain\\\",\\n\\tfontFamily: \\\"Arial\\\",\\n\\tfontSize: 20,\\n});\\n\\n// A list of color names:\\n(\\\"foreground\\\"); // Overall foreground color. This color is only used if not overridden by a component.\\n(\\\"errorForeground\\\"); // Overall foreground color for error messages. This color is only used if not overridden by a component.\\n(\\\"descriptionForeground\\\"); // Foreground color for description text providing additional information, for example for a label.\\n(\\\"focusBorder\\\"); // Overall border color for focused elements. This color is only used if not overridden by a component.\\n(\\\"contrastBorder\\\"); // An extra border around elements to separate them from others for greater contrast.\\n(\\\"contrastActiveBorder\\\"); // An extra border around active elements to separate them from others for greater contrast.\\n(\\\"selection.background\\\"); // The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor.\\n(\\\"textSeparator.foreground\\\"); // Color for text separators.\\n(\\\"textLink.foreground\\\"); // Foreground color for links in text.\\n(\\\"textLink.activeForeground\\\"); // Foreground color for active links in text.\\n(\\\"textPreformat.foreground\\\"); // Foreground color for preformatted text segments.\\n(\\\"textBlockQuote.background\\\"); // Background color for block quotes in text.\\n(\\\"textBlockQuote.border\\\"); // Border color for block quotes in text.\\n(\\\"textCodeBlock.background\\\"); // Background color for code blocks in text.\\n(\\\"widget.shadow\\\"); // Shadow color of widgets such as find/replace inside the editor.\\n(\\\"input.background\\\"); // Input box background.\\n(\\\"input.foreground\\\"); // Input box foreground.\\n(\\\"input.border\\\"); // Input box border.\\n(\\\"inputOption.activeBorder\\\"); // Border color of activated options in input fields.\\n(\\\"input.placeholderForeground\\\"); // Input box foreground color for placeholder text.\\n(\\\"inputValidation.infoBackground\\\"); // Input validation background color for information severity.\\n(\\\"inputValidation.infoBorder\\\"); // Input validation border color for information severity.\\n(\\\"inputValidation.warningBackground\\\"); // Input validation background color for information warning.\\n(\\\"inputValidation.warningBorder\\\"); // Input validation border color for warning severity.\\n(\\\"inputValidation.errorBackground\\\"); // Input validation background color for error severity.\\n(\\\"inputValidation.errorBorder\\\"); // Input validation border color for error severity.\\n(\\\"dropdown.background\\\"); // Dropdown background.\\n(\\\"dropdown.foreground\\\"); // Dropdown foreground.\\n(\\\"dropdown.border\\\"); // Dropdown border.\\n(\\\"list.focusBackground\\\"); // List/Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.focusForeground\\\"); // List/Tree foreground color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.activeSelectionBackground\\\"); // List/Tree background color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.activeSelectionForeground\\\"); // List/Tree foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.inactiveSelectionBackground\\\"); // List/Tree background color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.inactiveSelectionForeground\\\"); // List/Tree foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.\\n(\\\"list.hoverBackground\\\"); // List/Tree background when hovering over items using the mouse.\\n(\\\"list.hoverForeground\\\"); // List/Tree foreground when hovering over items using the mouse.\\n(\\\"list.dropBackground\\\"); // List/Tree drag and drop background when moving items around using the mouse.\\n(\\\"list.highlightForeground\\\"); // List/Tree foreground color of the match highlights when searching inside the list/tree.\\n(\\\"pickerGroup.foreground\\\"); // Quick picker color for grouping labels.\\n(\\\"pickerGroup.border\\\"); // Quick picker color for grouping borders.\\n(\\\"button.foreground\\\"); // Button foreground color.\\n(\\\"button.background\\\"); // Button background color.\\n(\\\"button.hoverBackground\\\"); // Button background color when hovering.\\n(\\\"badge.background\\\"); // Badge background color. Badges are small information labels, e.g. for search results count.\\n(\\\"badge.foreground\\\"); // Badge foreground color. Badges are small information labels, e.g. for search results count.\\n(\\\"scrollbar.shadow\\\"); // Scrollbar shadow to indicate that the view is scrolled.\\n(\\\"scrollbarSlider.background\\\"); // Slider background color.\\n(\\\"scrollbarSlider.hoverBackground\\\"); // Slider background color when hovering.\\n(\\\"scrollbarSlider.activeBackground\\\"); // Slider background color when active.\\n(\\\"progressBar.background\\\"); // Background color of the progress bar that can show for long running operations.\\n(\\\"editor.background\\\"); // Editor background color.\\n(\\\"editor.foreground\\\"); // Editor default foreground color.\\n(\\\"editorWidget.background\\\"); // Background color of editor widgets, such as find/replace.\\n(\\\"editorWidget.border\\\"); // Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.\\n(\\\"editor.selectionBackground\\\"); // Color of the editor selection.\\n(\\\"editor.selectionForeground\\\"); // Color of the selected text for high contrast.\\n(\\\"editor.inactiveSelectionBackground\\\"); // Color of the selection in an inactive editor.\\n(\\\"editor.selectionHighlightBackground\\\"); // Color for regions with the same content as the selection.\\n(\\\"editor.findMatchBackground\\\"); // Color of the current search match.\\n(\\\"editor.findMatchHighlightBackground\\\"); // Color of the other search matches.\\n(\\\"editor.findRangeHighlightBackground\\\"); // Color the range limiting the search.\\n(\\\"editor.hoverHighlightBackground\\\"); // Highlight below the word for which a hover is shown.\\n(\\\"editorHoverWidget.background\\\"); // Background color of the editor hover.\\n(\\\"editorHoverWidget.border\\\"); // Border color of the editor hover.\\n(\\\"editorLink.activeForeground\\\"); // Color of active links.\\n(\\\"diffEditor.insertedTextBackground\\\"); // Background color for text that got inserted.\\n(\\\"diffEditor.removedTextBackground\\\"); // Background color for text that got removed.\\n(\\\"diffEditor.insertedTextBorder\\\"); // Outline color for the text that got inserted.\\n(\\\"diffEditor.removedTextBorder\\\"); // Outline color for text that got removed.\\n(\\\"editorOverviewRuler.currentContentForeground\\\"); // Current overview ruler foreground for inline merge-conflicts.\\n(\\\"editorOverviewRuler.incomingContentForeground\\\"); // Incoming overview ruler foreground for inline merge-conflicts.\\n(\\\"editorOverviewRuler.commonContentForeground\\\"); // Common ancestor overview ruler foreground for inline merge-conflicts.\\n(\\\"editor.lineHighlightBackground\\\"); // Background color for the highlight of line at the cursor position.\\n(\\\"editor.lineHighlightBorder\\\"); // Background color for the border around the line at the cursor position.\\n(\\\"editor.rangeHighlightBackground\\\"); // Background color of highlighted ranges, like by quick open and find features.\\n(\\\"editorCursor.foreground\\\"); // Color of the editor cursor.\\n(\\\"editorWhitespace.foreground\\\"); // Color of whitespace characters in the editor.\\n(\\\"editorIndentGuide.background\\\"); // Color of the editor indentation guides.\\n(\\\"editorLineNumber.foreground\\\"); // Color of editor line numbers.\\n(\\\"editorLineNumber.activeForeground\\\"); // Color of editor active line number.\\n(\\\"editorRuler.foreground\\\"); // Color of the editor rulers.\\n(\\\"editorCodeLens.foreground\\\"); // Foreground color of editor code lenses\\n(\\\"editorInlayHint.foreground\\\"); // Foreground color of editor inlay hints\\n(\\\"editorInlayHint.background\\\"); // Background color of editor inlay hints\\n(\\\"editorBracketMatch.background\\\"); // Background color behind matching brackets\\n(\\\"editorBracketMatch.border\\\"); // Color for matching brackets boxes\\n(\\\"editorOverviewRuler.border\\\"); // Color of the overview ruler border.\\n(\\\"editorGutter.background\\\"); // Background color of the editor gutter. The gutter contains the glyph margins and the line numbers.\\n(\\\"editorError.foreground\\\"); // Foreground color of error squigglies in the editor.\\n(\\\"editorError.border\\\"); // Border color of error squigglies in the editor.\\n(\\\"editorWarning.foreground\\\"); // Foreground color of warning squigglies in the editor.\\n(\\\"editorWarning.border\\\"); // Border color of warning squigglies in the editor.\\n(\\\"editorMarkerNavigationError.background\\\"); // Editor marker navigation widget error color.\\n(\\\"editorMarkerNavigationWarning.background\\\"); // Editor marker navigation widget warning color.\\n(\\\"editorMarkerNavigation.background\\\"); // Editor marker navigation widget background.\\n(\\\"editorSuggestWidget.background\\\"); // Background color of the suggest widget.\\n(\\\"editorSuggestWidget.border\\\"); // Border color of the suggest widget.\\n(\\\"editorSuggestWidget.foreground\\\"); // Foreground color of the suggest widget.\\n(\\\"editorSuggestWidget.selectedBackground\\\"); // Background color of the selected entry in the suggest widget.\\n(\\\"editorSuggestWidget.highlightForeground\\\"); // Color of the match highlights in the suggest widget.\\n(\\\"editor.wordHighlightBackground\\\"); // Background color of a symbol during read-access, like reading a variable.\\n(\\\"editor.wordHighlightStrongBackground\\\"); // Background color of a symbol during write-access, like writing to a variable.\\n(\\\"peekViewTitle.background\\\"); // Background color of the peek view title area.\\n(\\\"peekViewTitleLabel.foreground\\\"); // Color of the peek view title.\\n(\\\"peekViewTitleDescription.foreground\\\"); // Color of the peek view title info.\\n(\\\"peekView.border\\\"); // Color of the peek view borders and arrow.\\n(\\\"peekViewResult.background\\\"); // Background color of the peek view result list.\\n(\\\"peekViewResult.lineForeground\\\"); // Foreground color for line nodes in the peek view result list.\\n(\\\"peekViewResult.fileForeground\\\"); // Foreground color for file nodes in the peek view result list.\\n(\\\"peekViewResult.selectionBackground\\\"); // Background color of the selected entry in the peek view result list.\\n(\\\"peekViewResult.selectionForeground\\\"); // Foreground color of the selected entry in the peek view result list.\\n(\\\"peekViewEditor.background\\\"); // Background color of the peek view editor.\\n(\\\"peekViewEditorGutter.background\\\"); // Background color of the gutter in the peek view editor.\\n(\\\"peekViewResult.matchHighlightBackground\\\"); // Match highlight color in the peek view result list.\\n(\\\"peekViewEditor.matchHighlightBackground\\\"); // Match highlight color in the peek view editor.\\n\\n/*\\nvar colors = require('vs/platform/registry/common/platform').Registry.data.get('base.contributions.colors').colorSchema.properties\\nObject.keys(colors).forEach(function(key) {\\n var val = colors[key];\\n console.log( '//' + val.description + '\\\\n' + key);\\n})\\n*/\\n\";"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/abap/abap.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/abap/abap.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/abap/abap.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/abap/abap.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/apex/apex.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/apex/apex.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/apex/apex.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/apex/apex.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/azcli/azcli.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/bat/bat.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/bat/bat.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/bat/bat.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/bat/bat.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/bicep/bicep.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/clojure/clojure.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/coffee/coffee.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/cpp/cpp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/csharp/csharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/csp/csp.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/csp/csp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/csp/csp.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/csp/csp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/css/css.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/css/css.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/css/css.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/css/css.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/cypher/cypher.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/dart/dart.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/dart/dart.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/dart/dart.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/dart/dart.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/ecl/ecl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/elixir/elixir.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/flow9/flow9.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/go/go.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/go/go.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/go/go.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/go/go.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/graphql/graphql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/hcl/hcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/html/html.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/html/html.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/html/html.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/html/html.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/ini/ini.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/ini/ini.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/ini/ini.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/ini/ini.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/java/java.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/java/java.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/java/java.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/java/java.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/javascript/javascript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/julia/julia.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/julia/julia.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/julia/julia.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/julia/julia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/less/less.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/less/less.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/less/less.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/less/less.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/lexon/lexon.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/liquid/liquid.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/lua/lua.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/lua/lua.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/lua/lua.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/lua/lua.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/m3/m3.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/m3/m3.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/m3/m3.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/m3/m3.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/markdown/markdown.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/mips/mips.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/mips/mips.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/mips/mips.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/mips/mips.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/msdax/msdax.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/mysql/mysql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/pascal/pascal.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/perl/perl.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/perl/perl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/perl/perl.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/perl/perl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/php/php.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/php/php.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/php/php.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/php/php.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/pla/pla.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/pla/pla.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/pla/pla.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/pla/pla.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/postiats/postiats.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/powershell/powershell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/pug/pug.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/pug/pug.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/pug/pug.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/pug/pug.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/python/python.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/python/python.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/python/python.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/python/python.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/r/r.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/r/r.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/r/r.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/r/r.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/razor/razor.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/razor/razor.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/razor/razor.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/razor/razor.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/redis/redis.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/redis/redis.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/redis/redis.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/redis/redis.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/redshift/redshift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/ruby/ruby.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/rust/rust.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/rust/rust.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/rust/rust.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/rust/rust.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/sb/sb.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/sb/sb.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/sb/sb.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/sb/sb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/scala/scala.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/scala/scala.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/scala/scala.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/scala/scala.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/scheme/scheme.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/scss/scss.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/scss/scss.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/scss/scss.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/scss/scss.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/shell/shell.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/shell/shell.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/shell/shell.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/shell/shell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/solidity/solidity.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/sophia/sophia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/sparql/sparql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/sql/sql.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/sql/sql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/sql/sql.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/sql/sql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/st/st.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/st/st.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/st/st.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/st/st.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/swift/swift.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/swift/swift.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/swift/swift.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/swift/swift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/tcl/tcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/twig/twig.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/twig/twig.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/twig/twig.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/twig/twig.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/typescript/typescript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/vb/vb.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/vb/vb.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/vb/vb.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/vb/vb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/xml/xml.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/xml/xml.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/xml/xml.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/xml/xml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/basic-languages/yaml/yaml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/css/cssMode.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/css/cssMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/css/cssMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/css/cssMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/css/cssWorker.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/css/cssWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/css/cssWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/css/cssWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/css/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/css/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/css/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/css/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/html/htmlMode.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/html/htmlMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/html/htmlMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/html/htmlMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/html/htmlWorker.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/html/htmlWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/html/htmlWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/html/htmlWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/html/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/html/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/html/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/html/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/json/jsonMode.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/json/jsonMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/json/jsonMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/json/jsonMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/json/jsonWorker.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/json/jsonWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/json/jsonWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/json/jsonWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/json/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/json/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/json/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/json/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/typescript/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/typescript/tsMode.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/typescript/tsMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/typescript/tsMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/typescript/tsMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-dev/vs/language/typescript/tsWorker.js.LICENSE.txt b/out/languages/bundled/amd-dev/vs/language/typescript/tsWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-dev/vs/language/typescript/tsWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-dev/vs/language/typescript/tsWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/abap/abap.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/abap/abap.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/abap/abap.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/abap/abap.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/apex/apex.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/apex/apex.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/apex/apex.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/apex/apex.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/azcli/azcli.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/azcli/azcli.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/azcli/azcli.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/azcli/azcli.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/bat/bat.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/bat/bat.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/bat/bat.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/bat/bat.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/bicep/bicep.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/bicep/bicep.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/bicep/bicep.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/bicep/bicep.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/clojure/clojure.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/clojure/clojure.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/clojure/clojure.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/clojure/clojure.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/coffee/coffee.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/coffee/coffee.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/coffee/coffee.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/coffee/coffee.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/cpp/cpp.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/cpp/cpp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/cpp/cpp.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/cpp/cpp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/csharp/csharp.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/csharp/csharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/csharp/csharp.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/csharp/csharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/csp/csp.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/csp/csp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/csp/csp.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/csp/csp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/css/css.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/css/css.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/css/css.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/css/css.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/cypher/cypher.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/cypher/cypher.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/cypher/cypher.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/cypher/cypher.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/dart/dart.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/dart/dart.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/dart/dart.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/dart/dart.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/ecl/ecl.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/ecl/ecl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/ecl/ecl.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/ecl/ecl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/elixir/elixir.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/elixir/elixir.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/elixir/elixir.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/elixir/elixir.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/flow9/flow9.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/flow9/flow9.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/flow9/flow9.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/flow9/flow9.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/go/go.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/go/go.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/go/go.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/go/go.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/graphql/graphql.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/graphql/graphql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/graphql/graphql.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/graphql/graphql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/hcl/hcl.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/hcl/hcl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/hcl/hcl.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/hcl/hcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/html/html.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/html/html.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/html/html.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/html/html.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/ini/ini.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/ini/ini.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/ini/ini.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/ini/ini.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/java/java.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/java/java.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/java/java.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/java/java.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/javascript/javascript.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/javascript/javascript.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/javascript/javascript.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/javascript/javascript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/julia/julia.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/julia/julia.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/julia/julia.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/julia/julia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/less/less.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/less/less.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/less/less.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/less/less.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/lexon/lexon.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/lexon/lexon.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/lexon/lexon.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/lexon/lexon.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/liquid/liquid.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/liquid/liquid.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/liquid/liquid.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/liquid/liquid.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/lua/lua.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/lua/lua.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/lua/lua.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/lua/lua.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/m3/m3.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/m3/m3.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/m3/m3.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/m3/m3.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/markdown/markdown.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/markdown/markdown.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/markdown/markdown.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/markdown/markdown.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/mips/mips.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/mips/mips.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/mips/mips.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/mips/mips.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/msdax/msdax.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/msdax/msdax.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/msdax/msdax.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/msdax/msdax.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/mysql/mysql.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/mysql/mysql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/mysql/mysql.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/mysql/mysql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/pascal/pascal.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/pascal/pascal.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/pascal/pascal.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/pascal/pascal.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/perl/perl.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/perl/perl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/perl/perl.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/perl/perl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/php/php.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/php/php.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/php/php.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/php/php.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/pla/pla.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/pla/pla.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/pla/pla.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/pla/pla.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/postiats/postiats.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/postiats/postiats.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/postiats/postiats.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/postiats/postiats.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/powershell/powershell.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/powershell/powershell.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/powershell/powershell.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/powershell/powershell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/pug/pug.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/pug/pug.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/pug/pug.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/pug/pug.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/python/python.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/python/python.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/python/python.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/python/python.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/r/r.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/r/r.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/r/r.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/r/r.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/razor/razor.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/razor/razor.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/razor/razor.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/razor/razor.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/redis/redis.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/redis/redis.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/redis/redis.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/redis/redis.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/redshift/redshift.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/redshift/redshift.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/redshift/redshift.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/redshift/redshift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/ruby/ruby.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/ruby/ruby.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/ruby/ruby.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/ruby/ruby.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/rust/rust.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/rust/rust.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/rust/rust.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/rust/rust.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/sb/sb.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/sb/sb.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/sb/sb.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/sb/sb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/scala/scala.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/scala/scala.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/scala/scala.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/scala/scala.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/scheme/scheme.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/scheme/scheme.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/scheme/scheme.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/scheme/scheme.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/scss/scss.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/scss/scss.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/scss/scss.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/scss/scss.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/shell/shell.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/shell/shell.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/shell/shell.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/shell/shell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/solidity/solidity.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/solidity/solidity.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/solidity/solidity.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/solidity/solidity.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/sophia/sophia.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/sophia/sophia.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/sophia/sophia.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/sophia/sophia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/sparql/sparql.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/sparql/sparql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/sparql/sparql.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/sparql/sparql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/sql/sql.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/sql/sql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/sql/sql.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/sql/sql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/st/st.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/st/st.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/st/st.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/st/st.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/swift/swift.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/swift/swift.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/swift/swift.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/swift/swift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/tcl/tcl.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/tcl/tcl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/tcl/tcl.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/tcl/tcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/twig/twig.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/twig/twig.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/twig/twig.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/twig/twig.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/typescript/typescript.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/typescript/typescript.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/typescript/typescript.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/typescript/typescript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/vb/vb.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/vb/vb.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/vb/vb.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/vb/vb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/xml/xml.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/xml/xml.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/xml/xml.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/xml/xml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/basic-languages/yaml/yaml.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/basic-languages/yaml/yaml.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/basic-languages/yaml/yaml.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/basic-languages/yaml/yaml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/css/cssMode.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/css/cssMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/css/cssMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/css/cssMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/css/cssWorker.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/css/cssWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/css/cssWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/css/cssWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/css/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/css/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/css/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/css/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/html/htmlMode.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/html/htmlMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/html/htmlMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/html/htmlMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/html/htmlWorker.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/html/htmlWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/html/htmlWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/html/htmlWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/html/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/html/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/html/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/html/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/json/jsonMode.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/json/jsonMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/json/jsonMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/json/jsonMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/json/jsonWorker.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/json/jsonWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/json/jsonWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/json/jsonWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/json/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/json/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/json/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/json/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/typescript/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/typescript/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/typescript/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/typescript/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/typescript/tsMode.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/typescript/tsMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/typescript/tsMode.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/typescript/tsMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/amd-min/vs/language/typescript/tsWorker.js.LICENSE.txt b/out/languages/bundled/amd-min/vs/language/typescript/tsWorker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/amd-min/vs/language/typescript/tsWorker.js.LICENSE.txt +++ b/out/languages/bundled/amd-min/vs/language/typescript/tsWorker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/_.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/_.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/_.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/_.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/abap/abap.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/abap/abap.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/abap/abap.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/abap/abap.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/abap/abap.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/apex/apex.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/apex/apex.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/apex/apex.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/apex/apex.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/apex/apex.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/azcli/azcli.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/bat/bat.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/bat/bat.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/bat/bat.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/bat/bat.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/bat/bat.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/bicep/bicep.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/cameligo/cameligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/clojure/clojure.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/coffee/coffee.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/cpp/cpp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/csharp/csharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/csp/csp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/csp/csp.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/csp/csp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/csp/csp.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/csp/csp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/css/css.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/css/css.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/css/css.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/css/css.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/css/css.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/cypher/cypher.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/dart/dart.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/dart/dart.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/dart/dart.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/dart/dart.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/dart/dart.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/dockerfile/dockerfile.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/ecl/ecl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/elixir/elixir.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/flow9/flow9.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/freemarker2/freemarker2.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/fsharp/fsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/go/go.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/go/go.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/go/go.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/go/go.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/go/go.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/graphql/graphql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/handlebars/handlebars.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/hcl/hcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/html/html.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/html/html.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/html/html.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/html/html.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/html/html.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/ini/ini.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/ini/ini.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/ini/ini.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/ini/ini.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/ini/ini.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/java/java.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/java/java.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/java/java.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/java/java.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/java/java.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/javascript/javascript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/julia/julia.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/julia/julia.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/julia/julia.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/julia/julia.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/julia/julia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/kotlin/kotlin.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/less/less.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/less/less.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/less/less.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/less/less.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/less/less.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/lexon/lexon.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/liquid/liquid.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/lua/lua.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/lua/lua.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/lua/lua.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/lua/lua.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/lua/lua.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/m3/m3.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/m3/m3.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/m3/m3.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/m3/m3.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/m3/m3.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/markdown/markdown.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/mips/mips.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/mips/mips.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/mips/mips.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/mips/mips.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/mips/mips.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/msdax/msdax.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/mysql/mysql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/objective-c/objective-c.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pascal/pascal.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pascaligo/pascaligo.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/perl/perl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/perl/perl.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/perl/perl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/perl/perl.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/perl/perl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pgsql/pgsql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/php/php.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/php/php.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/php/php.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/php/php.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/php/php.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pla/pla.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pla/pla.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pla/pla.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pla/pla.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pla/pla.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/postiats/postiats.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/powerquery/powerquery.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/powershell/powershell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/protobuf/protobuf.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pug/pug.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/pug/pug.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/pug/pug.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/pug/pug.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/pug/pug.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/python/python.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/python/python.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/python/python.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/python/python.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/python/python.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/qsharp/qsharp.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/r/r.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/r/r.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/r/r.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/r/r.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/r/r.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/razor/razor.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/razor/razor.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/razor/razor.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/razor/razor.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/razor/razor.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/redis/redis.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/redis/redis.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/redis/redis.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/redis/redis.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/redis/redis.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/redshift/redshift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/restructuredtext/restructuredtext.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/ruby/ruby.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/rust/rust.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/rust/rust.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/rust/rust.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/rust/rust.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/rust/rust.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sb/sb.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sb/sb.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sb/sb.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sb/sb.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sb/sb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/scala/scala.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/scala/scala.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/scala/scala.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/scala/scala.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/scala/scala.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/scheme/scheme.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/scss/scss.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/scss/scss.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/scss/scss.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/scss/scss.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/scss/scss.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/shell/shell.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/shell/shell.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/shell/shell.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/shell/shell.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/shell/shell.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/solidity/solidity.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sophia/sophia.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sparql/sparql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sql/sql.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/sql/sql.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/sql/sql.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/sql/sql.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/sql/sql.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/st/st.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/st/st.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/st/st.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/st/st.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/st/st.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/swift/swift.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/swift/swift.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/swift/swift.js.LICENSE.txt index 6fd25931..c8c7e224 100644 --- a/out/languages/bundled/esm/vs/basic-languages/swift/swift.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/swift/swift.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/systemverilog/systemverilog.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/tcl/tcl.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/twig/twig.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/twig/twig.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/twig/twig.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/twig/twig.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/twig/twig.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/typescript/typescript.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/vb/vb.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/vb/vb.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/vb/vb.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/vb/vb.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/vb/vb.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/xml/xml.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/xml/xml.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/xml/xml.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/xml/xml.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/xml/xml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt b/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/basic-languages/yaml/yaml.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/css/css.worker.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/css/css.worker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/css/css.worker.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/css/css.worker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/css/cssMode.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/css/cssMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/css/cssMode.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/css/cssMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/css/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/css/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/css/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/css/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/html/html.worker.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/html/html.worker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/html/html.worker.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/html/html.worker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/html/htmlMode.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/html/htmlMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/html/htmlMode.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/html/htmlMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/html/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/html/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/html/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/html/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/json/json.worker.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/json/json.worker.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/json/json.worker.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/json/json.worker.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/json/jsonMode.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/json/jsonMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/json/jsonMode.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/json/jsonMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/json/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/json/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/json/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/json/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/typescript/monaco.contribution.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/typescript/ts.worker.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/typescript/ts.worker.js.LICENSE.txt index 768b66c8..203a7baa 100644 --- a/out/languages/bundled/esm/vs/language/typescript/ts.worker.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/typescript/ts.worker.js.LICENSE.txt @@ -15,7 +15,7 @@ and limitations under the License. /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/ diff --git a/out/languages/bundled/esm/vs/language/typescript/tsMode.js.LICENSE.txt b/out/languages/bundled/esm/vs/language/typescript/tsMode.js.LICENSE.txt index 7a267f26..8e0fcaae 100644 --- a/out/languages/bundled/esm/vs/language/typescript/tsMode.js.LICENSE.txt +++ b/out/languages/bundled/esm/vs/language/typescript/tsMode.js.LICENSE.txt @@ -1,6 +1,6 @@ /*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. - * Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed) + * Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213) * Released under the MIT license * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt *-----------------------------------------------------------------------------*/