@covalent/components 8.15.0-beta.12 → 8.15.0-beta.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/code-editor/code-editor.d.ts +0 -14
  2. package/code-editor/code-editor.d.ts.map +1 -1
  3. package/{code-editor-3a09cbf1.js → code-editor-857a4673.js} +89 -159
  4. package/{code-editor-ce557bd5.mjs → code-editor-caabbe50.mjs} +3141 -3338
  5. package/code-editor.js +1 -1
  6. package/code-editor.mjs +1 -1
  7. package/{html-783f1e7c.mjs → html-707a5945.mjs} +1 -1
  8. package/{html-4fffc46e.js → html-aa904833.js} +1 -1
  9. package/index.js +1 -1
  10. package/index.mjs +1 -1
  11. package/{javascript-4d09cd3c.mjs → javascript-779a52b2.mjs} +2 -2
  12. package/{javascript-90bb18e6.js → javascript-d8dd6c0d.js} +1 -1
  13. package/notebook/notebook.d.ts +14 -1
  14. package/notebook/notebook.d.ts.map +1 -1
  15. package/notebook-cell/notebook-cell.d.ts.map +1 -1
  16. package/notebook-cell.js +8 -5
  17. package/notebook-cell.mjs +12 -9
  18. package/notebook.js +36 -27
  19. package/notebook.mjs +940 -848
  20. package/package.json +1 -1
  21. package/{python-562f8e9b.mjs → python-02ca0307.mjs} +1 -1
  22. package/{python-af3aad7d.js → python-b0bc8e7b.js} +1 -1
  23. package/{typescript-76d039b3.js → typescript-1a78657a.js} +1 -1
  24. package/{typescript-a2a5d6b2.mjs → typescript-ba11dbe7.mjs} +1 -1
  25. package/cpp-642b10c4.mjs +0 -387
  26. package/cpp-7eec3311.js +0 -6
  27. package/csharp-32862cd2.js +0 -6
  28. package/csharp-d987ddad.mjs +0 -320
  29. package/dart-031264ea.js +0 -6
  30. package/dart-5d209f63.mjs +0 -270
  31. package/go-46e3b371.mjs +0 -208
  32. package/go-cdd943fd.js +0 -6
  33. package/java-32d7b433.js +0 -6
  34. package/java-cd017f60.mjs +0 -221
  35. package/kotlin-4b9019e1.js +0 -6
  36. package/kotlin-c6e52a56.mjs +0 -245
  37. package/lua-b46719a9.js +0 -6
  38. package/lua-f159160b.mjs +0 -157
  39. package/php-987b9d87.mjs +0 -471
  40. package/php-a6dcde52.js +0 -6
  41. package/rust-87887495.js +0 -6
  42. package/rust-97f8f6e1.mjs +0 -337
  43. package/scala-c68c650c.mjs +0 -353
  44. package/scala-e8b7bd42.js +0 -6
  45. package/shell-09452d42.mjs +0 -224
  46. package/shell-43cfbe7d.js +0 -6
  47. package/swift-724ff2a3.js +0 -8
  48. package/swift-abdf1835.mjs +0 -315
  49. package/xml-89571455.mjs +0 -100
  50. package/xml-e66929d0.js +0 -6
  51. package/yaml-11a91e71.js +0 -6
  52. package/yaml-4eccd122.mjs +0 -189
@@ -1,245 +0,0 @@
1
- /*!-----------------------------------------------------------------------------
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
4
- * Released under the MIT license
5
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
6
- *-----------------------------------------------------------------------------*/
7
- var e = {
8
- wordPattern: /(-?\d*\.\d\w*)|([^\`\~\!\#\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,
9
- comments: {
10
- lineComment: "//",
11
- blockComment: ["/*", "*/"]
12
- },
13
- brackets: [
14
- ["{", "}"],
15
- ["[", "]"],
16
- ["(", ")"]
17
- ],
18
- autoClosingPairs: [
19
- { open: "{", close: "}" },
20
- { open: "[", close: "]" },
21
- { open: "(", close: ")" },
22
- { open: '"', close: '"' },
23
- { open: "'", close: "'" }
24
- ],
25
- surroundingPairs: [
26
- { open: "{", close: "}" },
27
- { open: "[", close: "]" },
28
- { open: "(", close: ")" },
29
- { open: '"', close: '"' },
30
- { open: "'", close: "'" },
31
- { open: "<", close: ">" }
32
- ],
33
- folding: {
34
- markers: {
35
- start: new RegExp("^\\s*//\\s*(?:(?:#?region\\b)|(?:<editor-fold\\b))"),
36
- end: new RegExp("^\\s*//\\s*(?:(?:#?endregion\\b)|(?:</editor-fold>))")
37
- }
38
- }
39
- }, t = {
40
- defaultToken: "",
41
- tokenPostfix: ".kt",
42
- keywords: [
43
- "as",
44
- "as?",
45
- "break",
46
- "class",
47
- "continue",
48
- "do",
49
- "else",
50
- "false",
51
- "for",
52
- "fun",
53
- "if",
54
- "in",
55
- "!in",
56
- "interface",
57
- "is",
58
- "!is",
59
- "null",
60
- "object",
61
- "package",
62
- "return",
63
- "super",
64
- "this",
65
- "throw",
66
- "true",
67
- "try",
68
- "typealias",
69
- "val",
70
- "var",
71
- "when",
72
- "while",
73
- "by",
74
- "catch",
75
- "constructor",
76
- "delegate",
77
- "dynamic",
78
- "field",
79
- "file",
80
- "finally",
81
- "get",
82
- "import",
83
- "init",
84
- "param",
85
- "property",
86
- "receiver",
87
- "set",
88
- "setparam",
89
- "where",
90
- "actual",
91
- "abstract",
92
- "annotation",
93
- "companion",
94
- "const",
95
- "crossinline",
96
- "data",
97
- "enum",
98
- "expect",
99
- "external",
100
- "final",
101
- "infix",
102
- "inline",
103
- "inner",
104
- "internal",
105
- "lateinit",
106
- "noinline",
107
- "open",
108
- "operator",
109
- "out",
110
- "override",
111
- "private",
112
- "protected",
113
- "public",
114
- "reified",
115
- "sealed",
116
- "suspend",
117
- "tailrec",
118
- "vararg",
119
- "field",
120
- "it"
121
- ],
122
- operators: [
123
- "+",
124
- "-",
125
- "*",
126
- "/",
127
- "%",
128
- "=",
129
- "+=",
130
- "-=",
131
- "*=",
132
- "/=",
133
- "%=",
134
- "++",
135
- "--",
136
- "&&",
137
- "||",
138
- "!",
139
- "==",
140
- "!=",
141
- "===",
142
- "!==",
143
- ">",
144
- "<",
145
- "<=",
146
- ">=",
147
- "[",
148
- "]",
149
- "!!",
150
- "?.",
151
- "?:",
152
- "::",
153
- "..",
154
- ":",
155
- "?",
156
- "->",
157
- "@",
158
- ";",
159
- "$",
160
- "_"
161
- ],
162
- symbols: /[=><!~?:&|+\-*\/\^%]+/,
163
- escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
164
- digits: /\d+(_+\d+)*/,
165
- octaldigits: /[0-7]+(_+[0-7]+)*/,
166
- binarydigits: /[0-1]+(_+[0-1]+)*/,
167
- hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,
168
- tokenizer: {
169
- root: [
170
- [/[A-Z][\w\$]*/, "type.identifier"],
171
- [
172
- /[a-zA-Z_$][\w$]*/,
173
- {
174
- cases: {
175
- "@keywords": { token: "keyword.$0" },
176
- "@default": "identifier"
177
- }
178
- }
179
- ],
180
- { include: "@whitespace" },
181
- [/[{}()\[\]]/, "@brackets"],
182
- [/[<>](?!@symbols)/, "@brackets"],
183
- [
184
- /@symbols/,
185
- {
186
- cases: {
187
- "@operators": "delimiter",
188
- "@default": ""
189
- }
190
- }
191
- ],
192
- [/@\s*[a-zA-Z_\$][\w\$]*/, "annotation"],
193
- [/(@digits)[eE]([\-+]?(@digits))?[fFdD]?/, "number.float"],
194
- [/(@digits)\.(@digits)([eE][\-+]?(@digits))?[fFdD]?/, "number.float"],
195
- [/0[xX](@hexdigits)[Ll]?/, "number.hex"],
196
- [/0(@octaldigits)[Ll]?/, "number.octal"],
197
- [/0[bB](@binarydigits)[Ll]?/, "number.binary"],
198
- [/(@digits)[fFdD]/, "number.float"],
199
- [/(@digits)[lL]?/, "number"],
200
- [/[;,.]/, "delimiter"],
201
- [/"([^"\\]|\\.)*$/, "string.invalid"],
202
- [/"""/, "string", "@multistring"],
203
- [/"/, "string", "@string"],
204
- [/'[^\\']'/, "string"],
205
- [/(')(@escapes)(')/, ["string", "string.escape", "string"]],
206
- [/'/, "string.invalid"]
207
- ],
208
- whitespace: [
209
- [/[ \t\r\n]+/, ""],
210
- [/\/\*\*(?!\/)/, "comment.doc", "@javadoc"],
211
- [/\/\*/, "comment", "@comment"],
212
- [/\/\/.*$/, "comment"]
213
- ],
214
- comment: [
215
- [/[^\/*]+/, "comment"],
216
- [/\/\*/, "comment", "@comment"],
217
- [/\*\//, "comment", "@pop"],
218
- [/[\/*]/, "comment"]
219
- ],
220
- javadoc: [
221
- [/[^\/*]+/, "comment.doc"],
222
- [/\/\*/, "comment.doc", "@push"],
223
- [/\/\*/, "comment.doc.invalid"],
224
- [/\*\//, "comment.doc", "@pop"],
225
- [/[\/*]/, "comment.doc"]
226
- ],
227
- string: [
228
- [/[^\\"]+/, "string"],
229
- [/@escapes/, "string.escape"],
230
- [/\\./, "string.escape.invalid"],
231
- [/"/, "string", "@pop"]
232
- ],
233
- multistring: [
234
- [/[^\\"]+/, "string"],
235
- [/@escapes/, "string.escape"],
236
- [/\\./, "string.escape.invalid"],
237
- [/"""/, "string", "@pop"],
238
- [/./, "string"]
239
- ]
240
- }
241
- };
242
- export {
243
- e as conf,
244
- t as language
245
- };
package/lua-b46719a9.js DELETED
@@ -1,6 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});/*!-----------------------------------------------------------------------------
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
4
- * Released under the MIT license
5
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
6
- *-----------------------------------------------------------------------------*/var e={comments:{lineComment:"--",blockComment:["--[[","]]"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},o={defaultToken:"",tokenPostfix:".lua",keywords:["and","break","do","else","elseif","end","false","for","function","goto","if","in","local","nil","not","or","repeat","return","then","true","until","while"],brackets:[{token:"delimiter.bracket",open:"{",close:"}"},{token:"delimiter.array",open:"[",close:"]"},{token:"delimiter.parenthesis",open:"(",close:")"}],operators:["+","-","*","/","%","^","#","==","~=","<=",">=","<",">","=",";",":",",",".","..","..."],symbols:/[=><!~?:&|+\-*\/\^%]+/,escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,tokenizer:{root:[[/[a-zA-Z_]\w*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":"identifier"}}],{include:"@whitespace"},[/(,)(\s*)([a-zA-Z_]\w*)(\s*)(:)(?!:)/,["delimiter","","key","","delimiter"]],[/({)(\s*)([a-zA-Z_]\w*)(\s*)(:)(?!:)/,["@brackets","","key","","delimiter"]],[/[{}()\[\]]/,"@brackets"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F_]*[0-9a-fA-F]/,"number.hex"],[/\d+?/,"number"],[/[;,.]/,"delimiter"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/'([^'\\]|\\.)*$/,"string.invalid"],[/"/,"string",'@string."'],[/'/,"string","@string.'"]],whitespace:[[/[ \t\r\n]+/,""],[/--\[([=]*)\[/,"comment","@comment.$1"],[/--.*$/,"comment"]],comment:[[/[^\]]+/,"comment"],[/\]([=]*)\]/,{cases:{"$1==$S2":{token:"comment",next:"@pop"},"@default":"comment"}}],[/./,"comment"]],string:[[/[^\\"']+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/["']/,{cases:{"$#==$S2":{token:"string",next:"@pop"},"@default":"string"}}]]}};exports.conf=e;exports.language=o;
package/lua-f159160b.mjs DELETED
@@ -1,157 +0,0 @@
1
- /*!-----------------------------------------------------------------------------
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
4
- * Released under the MIT license
5
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
6
- *-----------------------------------------------------------------------------*/
7
- var e = {
8
- comments: {
9
- lineComment: "--",
10
- blockComment: ["--[[", "]]"]
11
- },
12
- brackets: [
13
- ["{", "}"],
14
- ["[", "]"],
15
- ["(", ")"]
16
- ],
17
- autoClosingPairs: [
18
- { open: "{", close: "}" },
19
- { open: "[", close: "]" },
20
- { open: "(", close: ")" },
21
- { open: '"', close: '"' },
22
- { open: "'", close: "'" }
23
- ],
24
- surroundingPairs: [
25
- { open: "{", close: "}" },
26
- { open: "[", close: "]" },
27
- { open: "(", close: ")" },
28
- { open: '"', close: '"' },
29
- { open: "'", close: "'" }
30
- ]
31
- }, o = {
32
- defaultToken: "",
33
- tokenPostfix: ".lua",
34
- keywords: [
35
- "and",
36
- "break",
37
- "do",
38
- "else",
39
- "elseif",
40
- "end",
41
- "false",
42
- "for",
43
- "function",
44
- "goto",
45
- "if",
46
- "in",
47
- "local",
48
- "nil",
49
- "not",
50
- "or",
51
- "repeat",
52
- "return",
53
- "then",
54
- "true",
55
- "until",
56
- "while"
57
- ],
58
- brackets: [
59
- { token: "delimiter.bracket", open: "{", close: "}" },
60
- { token: "delimiter.array", open: "[", close: "]" },
61
- { token: "delimiter.parenthesis", open: "(", close: ")" }
62
- ],
63
- operators: [
64
- "+",
65
- "-",
66
- "*",
67
- "/",
68
- "%",
69
- "^",
70
- "#",
71
- "==",
72
- "~=",
73
- "<=",
74
- ">=",
75
- "<",
76
- ">",
77
- "=",
78
- ";",
79
- ":",
80
- ",",
81
- ".",
82
- "..",
83
- "..."
84
- ],
85
- symbols: /[=><!~?:&|+\-*\/\^%]+/,
86
- escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
87
- tokenizer: {
88
- root: [
89
- [
90
- /[a-zA-Z_]\w*/,
91
- {
92
- cases: {
93
- "@keywords": { token: "keyword.$0" },
94
- "@default": "identifier"
95
- }
96
- }
97
- ],
98
- { include: "@whitespace" },
99
- [/(,)(\s*)([a-zA-Z_]\w*)(\s*)(:)(?!:)/, ["delimiter", "", "key", "", "delimiter"]],
100
- [/({)(\s*)([a-zA-Z_]\w*)(\s*)(:)(?!:)/, ["@brackets", "", "key", "", "delimiter"]],
101
- [/[{}()\[\]]/, "@brackets"],
102
- [
103
- /@symbols/,
104
- {
105
- cases: {
106
- "@operators": "delimiter",
107
- "@default": ""
108
- }
109
- }
110
- ],
111
- [/\d*\.\d+([eE][\-+]?\d+)?/, "number.float"],
112
- [/0[xX][0-9a-fA-F_]*[0-9a-fA-F]/, "number.hex"],
113
- [/\d+?/, "number"],
114
- [/[;,.]/, "delimiter"],
115
- [/"([^"\\]|\\.)*$/, "string.invalid"],
116
- [/'([^'\\]|\\.)*$/, "string.invalid"],
117
- [/"/, "string", '@string."'],
118
- [/'/, "string", "@string.'"]
119
- ],
120
- whitespace: [
121
- [/[ \t\r\n]+/, ""],
122
- [/--\[([=]*)\[/, "comment", "@comment.$1"],
123
- [/--.*$/, "comment"]
124
- ],
125
- comment: [
126
- [/[^\]]+/, "comment"],
127
- [
128
- /\]([=]*)\]/,
129
- {
130
- cases: {
131
- "$1==$S2": { token: "comment", next: "@pop" },
132
- "@default": "comment"
133
- }
134
- }
135
- ],
136
- [/./, "comment"]
137
- ],
138
- string: [
139
- [/[^\\"']+/, "string"],
140
- [/@escapes/, "string.escape"],
141
- [/\\./, "string.escape.invalid"],
142
- [
143
- /["']/,
144
- {
145
- cases: {
146
- "$#==$S2": { token: "string", next: "@pop" },
147
- "@default": "string"
148
- }
149
- }
150
- ]
151
- ]
152
- }
153
- };
154
- export {
155
- e as conf,
156
- o as language
157
- };