@oneflowui/ui 0.5.1 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/components/Dashboard/charts/BarChart.vue.js +2 -2
  2. package/dist/components/Dashboard/charts/BarChart.vue2.js +11 -8
  3. package/dist/components/Dashboard/charts/PieChart.vue.js +2 -2
  4. package/dist/components/Dashboard/charts/PieChart.vue2.js +8 -5
  5. package/dist/components/Dashboard/index.vue.js +1 -1
  6. package/dist/components/Dashboard/index.vue2.js +20 -25
  7. package/dist/components/editor/RichTextEditor.vue2.js +1 -1
  8. package/dist/components/table/DataTable.vue.js +1 -1
  9. package/dist/components/table/DataTable.vue2.js +134 -135
  10. package/dist/components/table/FieldCell.vue.js +2 -2
  11. package/dist/components/table/FieldCell.vue2.js +16 -15
  12. package/dist/composables/useMarkdown.js +23 -23
  13. package/dist/index.d.ts +1 -5
  14. package/dist/index.js +250 -350
  15. package/dist/plugin.d.ts +5 -0
  16. package/dist/plugin.js +197 -0
  17. package/dist/style.css +1 -1
  18. package/dist/utils/echarts.d.ts +2 -0
  19. package/dist/utils/icon.d.ts +0 -5
  20. package/dist/utils/icon.js +72 -11
  21. package/package.json +2 -3
  22. package/dist/_virtual/_commonjsHelpers.js +0 -6
  23. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/core.js +0 -5
  24. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/bash.js +0 -377
  25. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/css.js +0 -923
  26. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/go.js +0 -151
  27. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/java.js +0 -240
  28. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/javascript.js +0 -658
  29. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/json.js +0 -38
  30. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/markdown.js +0 -216
  31. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/plaintext.js +0 -13
  32. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/python.js +0 -399
  33. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/rust.js +0 -305
  34. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/sql.js +0 -615
  35. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/typescript.js +0 -753
  36. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/xml.js +0 -219
  37. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/yaml.js +0 -183
  38. package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/core.js +0 -1063
@@ -1,658 +0,0 @@
1
- const p = "[A-Za-z$_][0-9A-Za-z$_]*", G = [
2
- "as",
3
- // for exports
4
- "in",
5
- "of",
6
- "if",
7
- "for",
8
- "while",
9
- "finally",
10
- "var",
11
- "new",
12
- "function",
13
- "do",
14
- "return",
15
- "void",
16
- "else",
17
- "break",
18
- "catch",
19
- "instanceof",
20
- "with",
21
- "throw",
22
- "case",
23
- "default",
24
- "try",
25
- "switch",
26
- "continue",
27
- "typeof",
28
- "delete",
29
- "let",
30
- "yield",
31
- "const",
32
- "class",
33
- // JS handles these with a special rule
34
- // "get",
35
- // "set",
36
- "debugger",
37
- "async",
38
- "await",
39
- "static",
40
- "import",
41
- "from",
42
- "export",
43
- "extends",
44
- // It's reached stage 3, which is "recommended for implementation":
45
- "using"
46
- ], K = [
47
- "true",
48
- "false",
49
- "null",
50
- "undefined",
51
- "NaN",
52
- "Infinity"
53
- ], v = [
54
- // Fundamental objects
55
- "Object",
56
- "Function",
57
- "Boolean",
58
- "Symbol",
59
- // numbers and dates
60
- "Math",
61
- "Date",
62
- "Number",
63
- "BigInt",
64
- // text
65
- "String",
66
- "RegExp",
67
- // Indexed collections
68
- "Array",
69
- "Float32Array",
70
- "Float64Array",
71
- "Int8Array",
72
- "Uint8Array",
73
- "Uint8ClampedArray",
74
- "Int16Array",
75
- "Int32Array",
76
- "Uint16Array",
77
- "Uint32Array",
78
- "BigInt64Array",
79
- "BigUint64Array",
80
- // Keyed collections
81
- "Set",
82
- "Map",
83
- "WeakSet",
84
- "WeakMap",
85
- // Structured data
86
- "ArrayBuffer",
87
- "SharedArrayBuffer",
88
- "Atomics",
89
- "DataView",
90
- "JSON",
91
- // Control abstraction objects
92
- "Promise",
93
- "Generator",
94
- "GeneratorFunction",
95
- "AsyncFunction",
96
- // Reflection
97
- "Reflect",
98
- "Proxy",
99
- // Internationalization
100
- "Intl",
101
- // WebAssembly
102
- "WebAssembly"
103
- ], L = [
104
- "Error",
105
- "EvalError",
106
- "InternalError",
107
- "RangeError",
108
- "ReferenceError",
109
- "SyntaxError",
110
- "TypeError",
111
- "URIError"
112
- ], w = [
113
- "setInterval",
114
- "setTimeout",
115
- "clearInterval",
116
- "clearTimeout",
117
- "require",
118
- "exports",
119
- "eval",
120
- "isFinite",
121
- "isNaN",
122
- "parseFloat",
123
- "parseInt",
124
- "decodeURI",
125
- "decodeURIComponent",
126
- "encodeURI",
127
- "encodeURIComponent",
128
- "escape",
129
- "unescape"
130
- ], H = [
131
- "arguments",
132
- "this",
133
- "super",
134
- "console",
135
- "window",
136
- "document",
137
- "localStorage",
138
- "sessionStorage",
139
- "module",
140
- "global"
141
- // Node.js
142
- ], J = [].concat(
143
- w,
144
- v,
145
- L
146
- );
147
- function X(e) {
148
- const t = e.regex, B = (a, { after: r }) => {
149
- const l = "</" + a[0].slice(1);
150
- return a.input.indexOf(l, r) !== -1;
151
- }, n = p, A = {
152
- begin: "<>",
153
- end: "</>"
154
- }, h = /<[A-Za-z0-9\\._:-]+\s*\/>/, o = {
155
- begin: /<[A-Za-z0-9\\._:-]+/,
156
- end: /\/[A-Za-z0-9\\._:-]+>|\/>/,
157
- /**
158
- * @param {RegExpMatchArray} match
159
- * @param {CallbackResponse} response
160
- */
161
- isTrulyOpeningTag: (a, r) => {
162
- const l = a[0].length + a.index, d = a.input[l];
163
- if (
164
- // HTML should not include another raw `<` inside a tag
165
- // nested type?
166
- // `<Array<Array<number>>`, etc.
167
- d === "<" || // the , gives away that this is not HTML
168
- // `<T, A extends keyof T, V>`
169
- d === ","
170
- ) {
171
- r.ignoreMatch();
172
- return;
173
- }
174
- d === ">" && (B(a, { after: l }) || r.ignoreMatch());
175
- let u;
176
- const M = a.input.substring(l);
177
- if (u = M.match(/^\s*=/)) {
178
- r.ignoreMatch();
179
- return;
180
- }
181
- if ((u = M.match(/^\s+extends\s+/)) && u.index === 0) {
182
- r.ignoreMatch();
183
- return;
184
- }
185
- }
186
- }, s = {
187
- $pattern: p,
188
- keyword: G,
189
- literal: K,
190
- built_in: J,
191
- "variable.language": H
192
- }, _ = "[0-9](_?[0-9])*", E = `\\.(${_})`, N = "0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*", S = {
193
- className: "number",
194
- variants: [
195
- // DecimalLiteral
196
- { begin: `(\\b(${N})((${E})|\\.)?|(${E}))[eE][+-]?(${_})\\b` },
197
- { begin: `\\b(${N})\\b((${E})\\b|\\.)?|(${E})\\b` },
198
- // DecimalBigIntegerLiteral
199
- { begin: "\\b(0|[1-9](_?[0-9])*)n\\b" },
200
- // NonDecimalIntegerLiteral
201
- { begin: "\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b" },
202
- { begin: "\\b0[bB][0-1](_?[0-1])*n?\\b" },
203
- { begin: "\\b0[oO][0-7](_?[0-7])*n?\\b" },
204
- // LegacyOctalIntegerLiteral (does not include underscore separators)
205
- // https://tc39.es/ecma262/#sec-additional-syntax-numeric-literals
206
- { begin: "\\b0[0-7]+n?\\b" }
207
- ],
208
- relevance: 0
209
- }, c = {
210
- className: "subst",
211
- begin: "\\$\\{",
212
- end: "\\}",
213
- keywords: s,
214
- contains: []
215
- // defined later
216
- }, m = {
217
- begin: ".?html`",
218
- end: "",
219
- starts: {
220
- end: "`",
221
- returnEnd: !1,
222
- contains: [
223
- e.BACKSLASH_ESCAPE,
224
- c
225
- ],
226
- subLanguage: "xml"
227
- }
228
- }, T = {
229
- begin: ".?css`",
230
- end: "",
231
- starts: {
232
- end: "`",
233
- returnEnd: !1,
234
- contains: [
235
- e.BACKSLASH_ESCAPE,
236
- c
237
- ],
238
- subLanguage: "css"
239
- }
240
- }, f = {
241
- begin: ".?gql`",
242
- end: "",
243
- starts: {
244
- end: "`",
245
- returnEnd: !1,
246
- contains: [
247
- e.BACKSLASH_ESCAPE,
248
- c
249
- ],
250
- subLanguage: "graphql"
251
- }
252
- }, R = {
253
- className: "string",
254
- begin: "`",
255
- end: "`",
256
- contains: [
257
- e.BACKSLASH_ESCAPE,
258
- c
259
- ]
260
- }, g = {
261
- className: "comment",
262
- variants: [
263
- e.COMMENT(
264
- /\/\*\*(?!\/)/,
265
- "\\*/",
266
- {
267
- relevance: 0,
268
- contains: [
269
- {
270
- begin: "(?=@[A-Za-z]+)",
271
- relevance: 0,
272
- contains: [
273
- {
274
- className: "doctag",
275
- begin: "@[A-Za-z]+"
276
- },
277
- {
278
- className: "type",
279
- begin: "\\{",
280
- end: "\\}",
281
- excludeEnd: !0,
282
- excludeBegin: !0,
283
- relevance: 0
284
- },
285
- {
286
- className: "variable",
287
- begin: n + "(?=\\s*(-)|$)",
288
- endsParent: !0,
289
- relevance: 0
290
- },
291
- // eat spaces (not newlines) so we can find
292
- // types or variables
293
- {
294
- begin: /(?=[^\n])\s/,
295
- relevance: 0
296
- }
297
- ]
298
- }
299
- ]
300
- }
301
- ),
302
- e.C_BLOCK_COMMENT_MODE,
303
- e.C_LINE_COMMENT_MODE
304
- ]
305
- }, y = [
306
- e.APOS_STRING_MODE,
307
- e.QUOTE_STRING_MODE,
308
- m,
309
- T,
310
- f,
311
- R,
312
- // Skip numbers when they are part of a variable name
313
- { match: /\$\d+/ },
314
- S
315
- // This is intentional:
316
- // See https://github.com/highlightjs/highlight.js/issues/3288
317
- // hljs.REGEXP_MODE
318
- ];
319
- c.contains = y.concat({
320
- // we need to pair up {} inside our subst to prevent
321
- // it from ending too early by matching another }
322
- begin: /\{/,
323
- end: /\}/,
324
- keywords: s,
325
- contains: [
326
- "self"
327
- ].concat(y)
328
- });
329
- const I = [].concat(g, c.contains), b = I.concat([
330
- // eat recursive parens in sub expressions
331
- {
332
- begin: /(\s*)\(/,
333
- end: /\)/,
334
- keywords: s,
335
- contains: ["self"].concat(I)
336
- }
337
- ]), i = {
338
- className: "params",
339
- // convert this to negative lookbehind in v12
340
- begin: /(\s*)\(/,
341
- // to match the parms with
342
- end: /\)/,
343
- excludeBegin: !0,
344
- excludeEnd: !0,
345
- keywords: s,
346
- contains: b
347
- }, x = {
348
- variants: [
349
- // class Car extends vehicle
350
- {
351
- match: [
352
- /class/,
353
- /\s+/,
354
- n,
355
- /\s+/,
356
- /extends/,
357
- /\s+/,
358
- t.concat(n, "(", t.concat(/\./, n), ")*")
359
- ],
360
- scope: {
361
- 1: "keyword",
362
- 3: "title.class",
363
- 5: "keyword",
364
- 7: "title.class.inherited"
365
- }
366
- },
367
- // class Car
368
- {
369
- match: [
370
- /class/,
371
- /\s+/,
372
- n
373
- ],
374
- scope: {
375
- 1: "keyword",
376
- 3: "title.class"
377
- }
378
- }
379
- ]
380
- }, O = {
381
- relevance: 0,
382
- match: t.either(
383
- // Hard coded exceptions
384
- /\bJSON/,
385
- // Float32Array, OutT
386
- /\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,
387
- // CSSFactory, CSSFactoryT
388
- /\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,
389
- // FPs, FPsT
390
- /\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/
391
- // P
392
- // single letters are not highlighted
393
- // BLAH
394
- // this will be flagged as a UPPER_CASE_CONSTANT instead
395
- ),
396
- className: "title.class",
397
- keywords: {
398
- _: [
399
- // se we still get relevance credit for JS library classes
400
- ...v,
401
- ...L
402
- ]
403
- }
404
- }, U = {
405
- label: "use_strict",
406
- className: "meta",
407
- relevance: 10,
408
- begin: /^\s*['"]use (strict|asm)['"]/
409
- }, D = {
410
- variants: [
411
- {
412
- match: [
413
- /function/,
414
- /\s+/,
415
- n,
416
- /(?=\s*\()/
417
- ]
418
- },
419
- // anonymous function
420
- {
421
- match: [
422
- /function/,
423
- /\s*(?=\()/
424
- ]
425
- }
426
- ],
427
- className: {
428
- 1: "keyword",
429
- 3: "title.function"
430
- },
431
- label: "func.def",
432
- contains: [i],
433
- illegal: /%/
434
- }, k = {
435
- relevance: 0,
436
- match: /\b[A-Z][A-Z_0-9]+\b/,
437
- className: "variable.constant"
438
- };
439
- function P(a) {
440
- return t.concat("(?!", a.join("|"), ")");
441
- }
442
- const $ = {
443
- match: t.concat(
444
- /\b/,
445
- P([
446
- ...w,
447
- "super",
448
- "import"
449
- ].map((a) => `${a}\\s*\\(`)),
450
- n,
451
- t.lookahead(/\s*\(/)
452
- ),
453
- className: "title.function",
454
- relevance: 0
455
- }, Z = {
456
- begin: t.concat(/\./, t.lookahead(
457
- t.concat(n, /(?![0-9A-Za-z$_(])/)
458
- )),
459
- end: n,
460
- excludeBegin: !0,
461
- keywords: "prototype",
462
- className: "property",
463
- relevance: 0
464
- }, F = {
465
- match: [
466
- /get|set/,
467
- /\s+/,
468
- n,
469
- /(?=\()/
470
- ],
471
- className: {
472
- 1: "keyword",
473
- 3: "title.function"
474
- },
475
- contains: [
476
- {
477
- // eat to avoid empty params
478
- begin: /\(\)/
479
- },
480
- i
481
- ]
482
- }, C = "(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|" + e.UNDERSCORE_IDENT_RE + ")\\s*=>", z = {
483
- match: [
484
- /const|var|let/,
485
- /\s+/,
486
- n,
487
- /\s*/,
488
- /=\s*/,
489
- /(async\s*)?/,
490
- // async is optional
491
- t.lookahead(C)
492
- ],
493
- keywords: "async",
494
- className: {
495
- 1: "keyword",
496
- 3: "title.function"
497
- },
498
- contains: [
499
- i
500
- ]
501
- };
502
- return {
503
- name: "JavaScript",
504
- aliases: ["js", "jsx", "mjs", "cjs"],
505
- keywords: s,
506
- // this will be extended by TypeScript
507
- exports: { PARAMS_CONTAINS: b, CLASS_REFERENCE: O },
508
- illegal: /#(?![$_A-z])/,
509
- contains: [
510
- e.SHEBANG({
511
- label: "shebang",
512
- binary: "node",
513
- relevance: 5
514
- }),
515
- U,
516
- e.APOS_STRING_MODE,
517
- e.QUOTE_STRING_MODE,
518
- m,
519
- T,
520
- f,
521
- R,
522
- g,
523
- // Skip numbers when they are part of a variable name
524
- { match: /\$\d+/ },
525
- S,
526
- O,
527
- {
528
- scope: "attr",
529
- match: n + t.lookahead(":"),
530
- relevance: 0
531
- },
532
- z,
533
- {
534
- // "value" container
535
- begin: "(" + e.RE_STARTERS_RE + "|\\b(case|return|throw)\\b)\\s*",
536
- keywords: "return throw case",
537
- relevance: 0,
538
- contains: [
539
- g,
540
- e.REGEXP_MODE,
541
- {
542
- className: "function",
543
- // we have to count the parens to make sure we actually have the
544
- // correct bounding ( ) before the =>. There could be any number of
545
- // sub-expressions inside also surrounded by parens.
546
- begin: C,
547
- returnBegin: !0,
548
- end: "\\s*=>",
549
- contains: [
550
- {
551
- className: "params",
552
- variants: [
553
- {
554
- begin: e.UNDERSCORE_IDENT_RE,
555
- relevance: 0
556
- },
557
- {
558
- className: null,
559
- begin: /\(\s*\)/,
560
- skip: !0
561
- },
562
- {
563
- begin: /(\s*)\(/,
564
- end: /\)/,
565
- excludeBegin: !0,
566
- excludeEnd: !0,
567
- keywords: s,
568
- contains: b
569
- }
570
- ]
571
- }
572
- ]
573
- },
574
- {
575
- // could be a comma delimited list of params to a function call
576
- begin: /,/,
577
- relevance: 0
578
- },
579
- {
580
- match: /\s+/,
581
- relevance: 0
582
- },
583
- {
584
- // JSX
585
- variants: [
586
- { begin: A.begin, end: A.end },
587
- { match: h },
588
- {
589
- begin: o.begin,
590
- // we carefully check the opening tag to see if it truly
591
- // is a tag and not a false positive
592
- "on:begin": o.isTrulyOpeningTag,
593
- end: o.end
594
- }
595
- ],
596
- subLanguage: "xml",
597
- contains: [
598
- {
599
- begin: o.begin,
600
- end: o.end,
601
- skip: !0,
602
- contains: ["self"]
603
- }
604
- ]
605
- }
606
- ]
607
- },
608
- D,
609
- {
610
- // prevent this from getting swallowed up by function
611
- // since they appear "function like"
612
- beginKeywords: "while if switch catch for"
613
- },
614
- {
615
- // we have to count the parens to make sure we actually have the correct
616
- // bounding ( ). There could be any number of sub-expressions inside
617
- // also surrounded by parens.
618
- begin: "\\b(?!function)" + e.UNDERSCORE_IDENT_RE + "\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",
619
- // end parens
620
- returnBegin: !0,
621
- label: "func.def",
622
- contains: [
623
- i,
624
- e.inherit(e.TITLE_MODE, { begin: n, className: "title.function" })
625
- ]
626
- },
627
- // catch ... so it won't trigger the property rule below
628
- {
629
- match: /\.\.\./,
630
- relevance: 0
631
- },
632
- Z,
633
- // hack: prevents detection of keywords in some circumstances
634
- // .keyword()
635
- // $keyword = x
636
- {
637
- match: "\\$" + n,
638
- relevance: 0
639
- },
640
- {
641
- match: [/\bconstructor(?=\s*\()/],
642
- className: { 1: "title.function" },
643
- contains: [i]
644
- },
645
- $,
646
- k,
647
- x,
648
- F,
649
- {
650
- match: /\$[(.]/
651
- // relevance booster for a pattern common to JS libs: `$(something)` and `$.something`
652
- }
653
- ]
654
- };
655
- }
656
- export {
657
- X as default
658
- };
@@ -1,38 +0,0 @@
1
- function c(e) {
2
- const a = {
3
- className: "attr",
4
- begin: /"(\\.|[^\\"\r\n])*"(?=\s*:)/,
5
- relevance: 1.01
6
- }, t = {
7
- match: /[{}[\],:]/,
8
- className: "punctuation",
9
- relevance: 0
10
- }, n = [
11
- "true",
12
- "false",
13
- "null"
14
- ], s = {
15
- scope: "literal",
16
- beginKeywords: n.join(" ")
17
- };
18
- return {
19
- name: "JSON",
20
- aliases: ["jsonc"],
21
- keywords: {
22
- literal: n
23
- },
24
- contains: [
25
- a,
26
- t,
27
- e.QUOTE_STRING_MODE,
28
- s,
29
- e.C_NUMBER_MODE,
30
- e.C_LINE_COMMENT_MODE,
31
- e.C_BLOCK_COMMENT_MODE
32
- ],
33
- illegal: "\\S"
34
- };
35
- }
36
- export {
37
- c as default
38
- };