sun-form-v3 1.0.77 → 1.0.78

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.
@@ -1,349 +0,0 @@
1
- import { m as s } from "./index-BMOft-Zj.js";
2
- /*!-----------------------------------------------------------------------------
3
- * Copyright (c) Microsoft Corporation. All rights reserved.
4
- * Version: 0.49.0(383fdf3fc0e1e1a024068b8d0fd4f3dcbae74d04)
5
- * Released under the MIT license
6
- * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
7
- *-----------------------------------------------------------------------------*/
8
- var c = Object.defineProperty, a = Object.getOwnPropertyDescriptor, p = Object.getOwnPropertyNames, g = Object.prototype.hasOwnProperty, l = (t, e, o, i) => {
9
- if (e && typeof e == "object" || typeof e == "function")
10
- for (let n of p(e))
11
- !g.call(t, n) && n !== o && c(t, n, { get: () => e[n], enumerable: !(i = a(e, n)) || i.enumerable });
12
- return t;
13
- }, d = (t, e, o) => (l(t, e, "default"), o), r = {};
14
- d(r, s);
15
- var x = {
16
- wordPattern: /(-?\d*\.\d\w*)|([^\`\~\!\@\#\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,
17
- comments: {
18
- lineComment: "//",
19
- blockComment: ["/*", "*/"]
20
- },
21
- brackets: [
22
- ["{", "}"],
23
- ["[", "]"],
24
- ["(", ")"]
25
- ],
26
- onEnterRules: [
27
- {
28
- // e.g. /** | */
29
- beforeText: /^\s*\/\*\*(?!\/)([^\*]|\*(?!\/))*$/,
30
- afterText: /^\s*\*\/$/,
31
- action: {
32
- indentAction: r.languages.IndentAction.IndentOutdent,
33
- appendText: " * "
34
- }
35
- },
36
- {
37
- // e.g. /** ...|
38
- beforeText: /^\s*\/\*\*(?!\/)([^\*]|\*(?!\/))*$/,
39
- action: {
40
- indentAction: r.languages.IndentAction.None,
41
- appendText: " * "
42
- }
43
- },
44
- {
45
- // e.g. * ...|
46
- beforeText: /^(\t|(\ \ ))*\ \*(\ ([^\*]|\*(?!\/))*)?$/,
47
- action: {
48
- indentAction: r.languages.IndentAction.None,
49
- appendText: "* "
50
- }
51
- },
52
- {
53
- // e.g. */|
54
- beforeText: /^(\t|(\ \ ))*\ \*\/\s*$/,
55
- action: {
56
- indentAction: r.languages.IndentAction.None,
57
- removeText: 1
58
- }
59
- }
60
- ],
61
- autoClosingPairs: [
62
- { open: "{", close: "}" },
63
- { open: "[", close: "]" },
64
- { open: "(", close: ")" },
65
- { open: '"', close: '"', notIn: ["string"] },
66
- { open: "'", close: "'", notIn: ["string", "comment"] },
67
- { open: "`", close: "`", notIn: ["string", "comment"] },
68
- { open: "/**", close: " */", notIn: ["string"] }
69
- ],
70
- folding: {
71
- markers: {
72
- start: new RegExp("^\\s*//\\s*#?region\\b"),
73
- end: new RegExp("^\\s*//\\s*#?endregion\\b")
74
- }
75
- }
76
- }, b = {
77
- // Set defaultToken to invalid to see what you do not tokenize yet
78
- defaultToken: "invalid",
79
- tokenPostfix: ".ts",
80
- keywords: [
81
- // Should match the keys of textToKeywordObj in
82
- // https://github.com/microsoft/TypeScript/blob/master/src/compiler/scanner.ts
83
- "abstract",
84
- "any",
85
- "as",
86
- "asserts",
87
- "bigint",
88
- "boolean",
89
- "break",
90
- "case",
91
- "catch",
92
- "class",
93
- "continue",
94
- "const",
95
- "constructor",
96
- "debugger",
97
- "declare",
98
- "default",
99
- "delete",
100
- "do",
101
- "else",
102
- "enum",
103
- "export",
104
- "extends",
105
- "false",
106
- "finally",
107
- "for",
108
- "from",
109
- "function",
110
- "get",
111
- "if",
112
- "implements",
113
- "import",
114
- "in",
115
- "infer",
116
- "instanceof",
117
- "interface",
118
- "is",
119
- "keyof",
120
- "let",
121
- "module",
122
- "namespace",
123
- "never",
124
- "new",
125
- "null",
126
- "number",
127
- "object",
128
- "out",
129
- "package",
130
- "private",
131
- "protected",
132
- "public",
133
- "override",
134
- "readonly",
135
- "require",
136
- "global",
137
- "return",
138
- "satisfies",
139
- "set",
140
- "static",
141
- "string",
142
- "super",
143
- "switch",
144
- "symbol",
145
- "this",
146
- "throw",
147
- "true",
148
- "try",
149
- "type",
150
- "typeof",
151
- "undefined",
152
- "unique",
153
- "unknown",
154
- "var",
155
- "void",
156
- "while",
157
- "with",
158
- "yield",
159
- "async",
160
- "await",
161
- "of"
162
- ],
163
- operators: [
164
- "<=",
165
- ">=",
166
- "==",
167
- "!=",
168
- "===",
169
- "!==",
170
- "=>",
171
- "+",
172
- "-",
173
- "**",
174
- "*",
175
- "/",
176
- "%",
177
- "++",
178
- "--",
179
- "<<",
180
- "</",
181
- ">>",
182
- ">>>",
183
- "&",
184
- "|",
185
- "^",
186
- "!",
187
- "~",
188
- "&&",
189
- "||",
190
- "??",
191
- "?",
192
- ":",
193
- "=",
194
- "+=",
195
- "-=",
196
- "*=",
197
- "**=",
198
- "/=",
199
- "%=",
200
- "<<=",
201
- ">>=",
202
- ">>>=",
203
- "&=",
204
- "|=",
205
- "^=",
206
- "@"
207
- ],
208
- // we include these common regular expressions
209
- symbols: /[=><!~?:&|+\-*\/\^%]+/,
210
- escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
211
- digits: /\d+(_+\d+)*/,
212
- octaldigits: /[0-7]+(_+[0-7]+)*/,
213
- binarydigits: /[0-1]+(_+[0-1]+)*/,
214
- hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,
215
- regexpctl: /[(){}\[\]\$\^|\-*+?\.]/,
216
- regexpesc: /\\(?:[bBdDfnrstvwWn0\\\/]|@regexpctl|c[A-Z]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4})/,
217
- // The main tokenizer for our languages
218
- tokenizer: {
219
- root: [[/[{}]/, "delimiter.bracket"], { include: "common" }],
220
- common: [
221
- // identifiers and keywords
222
- [
223
- /#?[a-z_$][\w$]*/,
224
- {
225
- cases: {
226
- "@keywords": "keyword",
227
- "@default": "identifier"
228
- }
229
- }
230
- ],
231
- [/[A-Z][\w\$]*/, "type.identifier"],
232
- // to show class names nicely
233
- // [/[A-Z][\w\$]*/, 'identifier'],
234
- // whitespace
235
- { include: "@whitespace" },
236
- // regular expression: ensure it is terminated before beginning (otherwise it is an opeator)
237
- [
238
- /\/(?=([^\\\/]|\\.)+\/([dgimsuy]*)(\s*)(\.|;|,|\)|\]|\}|$))/,
239
- { token: "regexp", bracket: "@open", next: "@regexp" }
240
- ],
241
- // delimiters and operators
242
- [/[()\[\]]/, "@brackets"],
243
- [/[<>](?!@symbols)/, "@brackets"],
244
- [/!(?=([^=]|$))/, "delimiter"],
245
- [
246
- /@symbols/,
247
- {
248
- cases: {
249
- "@operators": "delimiter",
250
- "@default": ""
251
- }
252
- }
253
- ],
254
- // numbers
255
- [/(@digits)[eE]([\-+]?(@digits))?/, "number.float"],
256
- [/(@digits)\.(@digits)([eE][\-+]?(@digits))?/, "number.float"],
257
- [/0[xX](@hexdigits)n?/, "number.hex"],
258
- [/0[oO]?(@octaldigits)n?/, "number.octal"],
259
- [/0[bB](@binarydigits)n?/, "number.binary"],
260
- [/(@digits)n?/, "number"],
261
- // delimiter: after number because of .\d floats
262
- [/[;,.]/, "delimiter"],
263
- // strings
264
- [/"([^"\\]|\\.)*$/, "string.invalid"],
265
- // non-teminated string
266
- [/'([^'\\]|\\.)*$/, "string.invalid"],
267
- // non-teminated string
268
- [/"/, "string", "@string_double"],
269
- [/'/, "string", "@string_single"],
270
- [/`/, "string", "@string_backtick"]
271
- ],
272
- whitespace: [
273
- [/[ \t\r\n]+/, ""],
274
- [/\/\*\*(?!\/)/, "comment.doc", "@jsdoc"],
275
- [/\/\*/, "comment", "@comment"],
276
- [/\/\/.*$/, "comment"]
277
- ],
278
- comment: [
279
- [/[^\/*]+/, "comment"],
280
- [/\*\//, "comment", "@pop"],
281
- [/[\/*]/, "comment"]
282
- ],
283
- jsdoc: [
284
- [/[^\/*]+/, "comment.doc"],
285
- [/\*\//, "comment.doc", "@pop"],
286
- [/[\/*]/, "comment.doc"]
287
- ],
288
- // We match regular expression quite precisely
289
- regexp: [
290
- [
291
- /(\{)(\d+(?:,\d*)?)(\})/,
292
- ["regexp.escape.control", "regexp.escape.control", "regexp.escape.control"]
293
- ],
294
- [
295
- /(\[)(\^?)(?=(?:[^\]\\\/]|\\.)+)/,
296
- ["regexp.escape.control", { token: "regexp.escape.control", next: "@regexrange" }]
297
- ],
298
- [/(\()(\?:|\?=|\?!)/, ["regexp.escape.control", "regexp.escape.control"]],
299
- [/[()]/, "regexp.escape.control"],
300
- [/@regexpctl/, "regexp.escape.control"],
301
- [/[^\\\/]/, "regexp"],
302
- [/@regexpesc/, "regexp.escape"],
303
- [/\\\./, "regexp.invalid"],
304
- [/(\/)([dgimsuy]*)/, [{ token: "regexp", bracket: "@close", next: "@pop" }, "keyword.other"]]
305
- ],
306
- regexrange: [
307
- [/-/, "regexp.escape.control"],
308
- [/\^/, "regexp.invalid"],
309
- [/@regexpesc/, "regexp.escape"],
310
- [/[^\]]/, "regexp"],
311
- [
312
- /\]/,
313
- {
314
- token: "regexp.escape.control",
315
- next: "@pop",
316
- bracket: "@close"
317
- }
318
- ]
319
- ],
320
- string_double: [
321
- [/[^\\"]+/, "string"],
322
- [/@escapes/, "string.escape"],
323
- [/\\./, "string.escape.invalid"],
324
- [/"/, "string", "@pop"]
325
- ],
326
- string_single: [
327
- [/[^\\']+/, "string"],
328
- [/@escapes/, "string.escape"],
329
- [/\\./, "string.escape.invalid"],
330
- [/'/, "string", "@pop"]
331
- ],
332
- string_backtick: [
333
- [/\$\{/, { token: "delimiter.bracket", next: "@bracketCounting" }],
334
- [/[^\\`$]+/, "string"],
335
- [/@escapes/, "string.escape"],
336
- [/\\./, "string.escape.invalid"],
337
- [/`/, "string", "@pop"]
338
- ],
339
- bracketCounting: [
340
- [/\{/, "delimiter.bracket", "@bracketCounting"],
341
- [/\}/, "delimiter.bracket", "@pop"],
342
- { include: "common" }
343
- ]
344
- }
345
- };
346
- export {
347
- x as conf,
348
- b as language
349
- };