@veracity/ai 0.0.1

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 (57) hide show
  1. package/dist/ChatCompletionSSE.d.ts +35 -0
  2. package/dist/ChatCompletionSSE.d.ts.map +1 -0
  3. package/dist/Markdown.d.ts +2 -0
  4. package/dist/Markdown.d.ts.map +1 -0
  5. package/dist/SmoothChatCompletionSSE.d.ts +23 -0
  6. package/dist/SmoothChatCompletionSSE.d.ts.map +1 -0
  7. package/dist/components/AIChat/index.d.ts +26 -0
  8. package/dist/components/AIChat/index.d.ts.map +1 -0
  9. package/dist/components/AIChatBubble.d.ts +7 -0
  10. package/dist/components/AIChatBubble.d.ts.map +1 -0
  11. package/dist/components/AIChatMessage.d.ts +22 -0
  12. package/dist/components/AIChatMessage.d.ts.map +1 -0
  13. package/dist/components/AIChatToolCall.d.ts +26 -0
  14. package/dist/components/AIChatToolCall.d.ts.map +1 -0
  15. package/dist/components/AIChatToolCallGroup.d.ts +20 -0
  16. package/dist/components/AIChatToolCallGroup.d.ts.map +1 -0
  17. package/dist/components/Avatar.d.ts +23 -0
  18. package/dist/components/Avatar.d.ts.map +1 -0
  19. package/dist/components/HighlightCode/index.d.ts +11 -0
  20. package/dist/components/HighlightCode/index.d.ts.map +1 -0
  21. package/dist/components/VeracityAvatar.d.ts +3 -0
  22. package/dist/components/VeracityAvatar.d.ts.map +1 -0
  23. package/dist/components/VeracityLogoSquare.d.ts +3 -0
  24. package/dist/components/VeracityLogoSquare.d.ts.map +1 -0
  25. package/dist/components/icons/Check.d.ts +3 -0
  26. package/dist/components/icons/Check.d.ts.map +1 -0
  27. package/dist/components/icons/ExclamationCircle.d.ts +3 -0
  28. package/dist/components/icons/ExclamationCircle.d.ts.map +1 -0
  29. package/dist/components/icons/IconProps.d.ts +12 -0
  30. package/dist/components/icons/IconProps.d.ts.map +1 -0
  31. package/dist/components/icons/InfoCircle.d.ts +3 -0
  32. package/dist/components/icons/InfoCircle.d.ts.map +1 -0
  33. package/dist/components/icons/QuestionCircle.d.ts +3 -0
  34. package/dist/components/icons/QuestionCircle.d.ts.map +1 -0
  35. package/dist/components/icons/Spinner.d.ts +13 -0
  36. package/dist/components/icons/Spinner.d.ts.map +1 -0
  37. package/dist/core-Diwflo5W.js +1077 -0
  38. package/dist/csharp-Cigc7XMa.js +371 -0
  39. package/dist/css-B-yPI1XM.js +719 -0
  40. package/dist/dtos.d.ts +18 -0
  41. package/dist/dtos.d.ts.map +1 -0
  42. package/dist/enums.d.ts +30 -0
  43. package/dist/enums.d.ts.map +1 -0
  44. package/dist/index.d.ts +3 -0
  45. package/dist/index.d.ts.map +1 -0
  46. package/dist/javascript-CDslspYb.js +654 -0
  47. package/dist/python-CzH_tl5q.js +397 -0
  48. package/dist/typescript-Bx5cZccb.js +728 -0
  49. package/dist/utils/CancellationToken.d.ts +16 -0
  50. package/dist/utils/CancellationToken.d.ts.map +1 -0
  51. package/dist/utils/OperationCancelledError.d.ts +5 -0
  52. package/dist/utils/OperationCancelledError.d.ts.map +1 -0
  53. package/dist/utils/createSVGElement.d.ts +2 -0
  54. package/dist/utils/createSVGElement.d.ts.map +1 -0
  55. package/dist/veracity-ai.es.js +4173 -0
  56. package/dist/veracity-ai.umd.js +5 -0
  57. package/package.json +36 -0
@@ -0,0 +1,719 @@
1
+ const s = (t) => ({
2
+ IMPORTANT: {
3
+ scope: "meta",
4
+ begin: "!important"
5
+ },
6
+ BLOCK_COMMENT: t.C_BLOCK_COMMENT_MODE,
7
+ HEXCOLOR: {
8
+ scope: "number",
9
+ begin: /#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/
10
+ },
11
+ FUNCTION_DISPATCH: {
12
+ className: "built_in",
13
+ begin: /[\w-]+(?=\()/
14
+ },
15
+ ATTRIBUTE_SELECTOR_MODE: {
16
+ scope: "selector-attr",
17
+ begin: /\[/,
18
+ end: /\]/,
19
+ illegal: "$",
20
+ contains: [
21
+ t.APOS_STRING_MODE,
22
+ t.QUOTE_STRING_MODE
23
+ ]
24
+ },
25
+ CSS_NUMBER_MODE: {
26
+ scope: "number",
27
+ begin: t.NUMBER_RE + "(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",
28
+ relevance: 0
29
+ },
30
+ CSS_VARIABLE: {
31
+ className: "attr",
32
+ begin: /--[A-Za-z_][A-Za-z0-9_-]*/
33
+ }
34
+ }), d = [
35
+ "a",
36
+ "abbr",
37
+ "address",
38
+ "article",
39
+ "aside",
40
+ "audio",
41
+ "b",
42
+ "blockquote",
43
+ "body",
44
+ "button",
45
+ "canvas",
46
+ "caption",
47
+ "cite",
48
+ "code",
49
+ "dd",
50
+ "del",
51
+ "details",
52
+ "dfn",
53
+ "div",
54
+ "dl",
55
+ "dt",
56
+ "em",
57
+ "fieldset",
58
+ "figcaption",
59
+ "figure",
60
+ "footer",
61
+ "form",
62
+ "h1",
63
+ "h2",
64
+ "h3",
65
+ "h4",
66
+ "h5",
67
+ "h6",
68
+ "header",
69
+ "hgroup",
70
+ "html",
71
+ "i",
72
+ "iframe",
73
+ "img",
74
+ "input",
75
+ "ins",
76
+ "kbd",
77
+ "label",
78
+ "legend",
79
+ "li",
80
+ "main",
81
+ "mark",
82
+ "menu",
83
+ "nav",
84
+ "object",
85
+ "ol",
86
+ "p",
87
+ "q",
88
+ "quote",
89
+ "samp",
90
+ "section",
91
+ "span",
92
+ "strong",
93
+ "summary",
94
+ "sup",
95
+ "table",
96
+ "tbody",
97
+ "td",
98
+ "textarea",
99
+ "tfoot",
100
+ "th",
101
+ "thead",
102
+ "time",
103
+ "tr",
104
+ "ul",
105
+ "var",
106
+ "video"
107
+ ], c = [
108
+ "any-hover",
109
+ "any-pointer",
110
+ "aspect-ratio",
111
+ "color",
112
+ "color-gamut",
113
+ "color-index",
114
+ "device-aspect-ratio",
115
+ "device-height",
116
+ "device-width",
117
+ "display-mode",
118
+ "forced-colors",
119
+ "grid",
120
+ "height",
121
+ "hover",
122
+ "inverted-colors",
123
+ "monochrome",
124
+ "orientation",
125
+ "overflow-block",
126
+ "overflow-inline",
127
+ "pointer",
128
+ "prefers-color-scheme",
129
+ "prefers-contrast",
130
+ "prefers-reduced-motion",
131
+ "prefers-reduced-transparency",
132
+ "resolution",
133
+ "scan",
134
+ "scripting",
135
+ "update",
136
+ "width",
137
+ // TODO: find a better solution?
138
+ "min-width",
139
+ "max-width",
140
+ "min-height",
141
+ "max-height"
142
+ ], b = [
143
+ "active",
144
+ "any-link",
145
+ "blank",
146
+ "checked",
147
+ "current",
148
+ "default",
149
+ "defined",
150
+ "dir",
151
+ // dir()
152
+ "disabled",
153
+ "drop",
154
+ "empty",
155
+ "enabled",
156
+ "first",
157
+ "first-child",
158
+ "first-of-type",
159
+ "fullscreen",
160
+ "future",
161
+ "focus",
162
+ "focus-visible",
163
+ "focus-within",
164
+ "has",
165
+ // has()
166
+ "host",
167
+ // host or host()
168
+ "host-context",
169
+ // host-context()
170
+ "hover",
171
+ "indeterminate",
172
+ "in-range",
173
+ "invalid",
174
+ "is",
175
+ // is()
176
+ "lang",
177
+ // lang()
178
+ "last-child",
179
+ "last-of-type",
180
+ "left",
181
+ "link",
182
+ "local-link",
183
+ "not",
184
+ // not()
185
+ "nth-child",
186
+ // nth-child()
187
+ "nth-col",
188
+ // nth-col()
189
+ "nth-last-child",
190
+ // nth-last-child()
191
+ "nth-last-col",
192
+ // nth-last-col()
193
+ "nth-last-of-type",
194
+ //nth-last-of-type()
195
+ "nth-of-type",
196
+ //nth-of-type()
197
+ "only-child",
198
+ "only-of-type",
199
+ "optional",
200
+ "out-of-range",
201
+ "past",
202
+ "placeholder-shown",
203
+ "read-only",
204
+ "read-write",
205
+ "required",
206
+ "right",
207
+ "root",
208
+ "scope",
209
+ "target",
210
+ "target-within",
211
+ "user-invalid",
212
+ "valid",
213
+ "visited",
214
+ "where"
215
+ // where()
216
+ ], g = [
217
+ "after",
218
+ "backdrop",
219
+ "before",
220
+ "cue",
221
+ "cue-region",
222
+ "first-letter",
223
+ "first-line",
224
+ "grammar-error",
225
+ "marker",
226
+ "part",
227
+ "placeholder",
228
+ "selection",
229
+ "slotted",
230
+ "spelling-error"
231
+ ], m = [
232
+ "align-content",
233
+ "align-items",
234
+ "align-self",
235
+ "all",
236
+ "animation",
237
+ "animation-delay",
238
+ "animation-direction",
239
+ "animation-duration",
240
+ "animation-fill-mode",
241
+ "animation-iteration-count",
242
+ "animation-name",
243
+ "animation-play-state",
244
+ "animation-timing-function",
245
+ "backface-visibility",
246
+ "background",
247
+ "background-attachment",
248
+ "background-blend-mode",
249
+ "background-clip",
250
+ "background-color",
251
+ "background-image",
252
+ "background-origin",
253
+ "background-position",
254
+ "background-repeat",
255
+ "background-size",
256
+ "block-size",
257
+ "border",
258
+ "border-block",
259
+ "border-block-color",
260
+ "border-block-end",
261
+ "border-block-end-color",
262
+ "border-block-end-style",
263
+ "border-block-end-width",
264
+ "border-block-start",
265
+ "border-block-start-color",
266
+ "border-block-start-style",
267
+ "border-block-start-width",
268
+ "border-block-style",
269
+ "border-block-width",
270
+ "border-bottom",
271
+ "border-bottom-color",
272
+ "border-bottom-left-radius",
273
+ "border-bottom-right-radius",
274
+ "border-bottom-style",
275
+ "border-bottom-width",
276
+ "border-collapse",
277
+ "border-color",
278
+ "border-image",
279
+ "border-image-outset",
280
+ "border-image-repeat",
281
+ "border-image-slice",
282
+ "border-image-source",
283
+ "border-image-width",
284
+ "border-inline",
285
+ "border-inline-color",
286
+ "border-inline-end",
287
+ "border-inline-end-color",
288
+ "border-inline-end-style",
289
+ "border-inline-end-width",
290
+ "border-inline-start",
291
+ "border-inline-start-color",
292
+ "border-inline-start-style",
293
+ "border-inline-start-width",
294
+ "border-inline-style",
295
+ "border-inline-width",
296
+ "border-left",
297
+ "border-left-color",
298
+ "border-left-style",
299
+ "border-left-width",
300
+ "border-radius",
301
+ "border-right",
302
+ "border-right-color",
303
+ "border-right-style",
304
+ "border-right-width",
305
+ "border-spacing",
306
+ "border-style",
307
+ "border-top",
308
+ "border-top-color",
309
+ "border-top-left-radius",
310
+ "border-top-right-radius",
311
+ "border-top-style",
312
+ "border-top-width",
313
+ "border-width",
314
+ "bottom",
315
+ "box-decoration-break",
316
+ "box-shadow",
317
+ "box-sizing",
318
+ "break-after",
319
+ "break-before",
320
+ "break-inside",
321
+ "caption-side",
322
+ "caret-color",
323
+ "clear",
324
+ "clip",
325
+ "clip-path",
326
+ "clip-rule",
327
+ "color",
328
+ "column-count",
329
+ "column-fill",
330
+ "column-gap",
331
+ "column-rule",
332
+ "column-rule-color",
333
+ "column-rule-style",
334
+ "column-rule-width",
335
+ "column-span",
336
+ "column-width",
337
+ "columns",
338
+ "contain",
339
+ "content",
340
+ "content-visibility",
341
+ "counter-increment",
342
+ "counter-reset",
343
+ "cue",
344
+ "cue-after",
345
+ "cue-before",
346
+ "cursor",
347
+ "direction",
348
+ "display",
349
+ "empty-cells",
350
+ "filter",
351
+ "flex",
352
+ "flex-basis",
353
+ "flex-direction",
354
+ "flex-flow",
355
+ "flex-grow",
356
+ "flex-shrink",
357
+ "flex-wrap",
358
+ "float",
359
+ "flow",
360
+ "font",
361
+ "font-display",
362
+ "font-family",
363
+ "font-feature-settings",
364
+ "font-kerning",
365
+ "font-language-override",
366
+ "font-size",
367
+ "font-size-adjust",
368
+ "font-smoothing",
369
+ "font-stretch",
370
+ "font-style",
371
+ "font-synthesis",
372
+ "font-variant",
373
+ "font-variant-caps",
374
+ "font-variant-east-asian",
375
+ "font-variant-ligatures",
376
+ "font-variant-numeric",
377
+ "font-variant-position",
378
+ "font-variation-settings",
379
+ "font-weight",
380
+ "gap",
381
+ "glyph-orientation-vertical",
382
+ "grid",
383
+ "grid-area",
384
+ "grid-auto-columns",
385
+ "grid-auto-flow",
386
+ "grid-auto-rows",
387
+ "grid-column",
388
+ "grid-column-end",
389
+ "grid-column-start",
390
+ "grid-gap",
391
+ "grid-row",
392
+ "grid-row-end",
393
+ "grid-row-start",
394
+ "grid-template",
395
+ "grid-template-areas",
396
+ "grid-template-columns",
397
+ "grid-template-rows",
398
+ "hanging-punctuation",
399
+ "height",
400
+ "hyphens",
401
+ "icon",
402
+ "image-orientation",
403
+ "image-rendering",
404
+ "image-resolution",
405
+ "ime-mode",
406
+ "inline-size",
407
+ "isolation",
408
+ "justify-content",
409
+ "left",
410
+ "letter-spacing",
411
+ "line-break",
412
+ "line-height",
413
+ "list-style",
414
+ "list-style-image",
415
+ "list-style-position",
416
+ "list-style-type",
417
+ "margin",
418
+ "margin-block",
419
+ "margin-block-end",
420
+ "margin-block-start",
421
+ "margin-bottom",
422
+ "margin-inline",
423
+ "margin-inline-end",
424
+ "margin-inline-start",
425
+ "margin-left",
426
+ "margin-right",
427
+ "margin-top",
428
+ "marks",
429
+ "mask",
430
+ "mask-border",
431
+ "mask-border-mode",
432
+ "mask-border-outset",
433
+ "mask-border-repeat",
434
+ "mask-border-slice",
435
+ "mask-border-source",
436
+ "mask-border-width",
437
+ "mask-clip",
438
+ "mask-composite",
439
+ "mask-image",
440
+ "mask-mode",
441
+ "mask-origin",
442
+ "mask-position",
443
+ "mask-repeat",
444
+ "mask-size",
445
+ "mask-type",
446
+ "max-block-size",
447
+ "max-height",
448
+ "max-inline-size",
449
+ "max-width",
450
+ "min-block-size",
451
+ "min-height",
452
+ "min-inline-size",
453
+ "min-width",
454
+ "mix-blend-mode",
455
+ "nav-down",
456
+ "nav-index",
457
+ "nav-left",
458
+ "nav-right",
459
+ "nav-up",
460
+ "none",
461
+ "normal",
462
+ "object-fit",
463
+ "object-position",
464
+ "opacity",
465
+ "order",
466
+ "orphans",
467
+ "outline",
468
+ "outline-color",
469
+ "outline-offset",
470
+ "outline-style",
471
+ "outline-width",
472
+ "overflow",
473
+ "overflow-wrap",
474
+ "overflow-x",
475
+ "overflow-y",
476
+ "padding",
477
+ "padding-block",
478
+ "padding-block-end",
479
+ "padding-block-start",
480
+ "padding-bottom",
481
+ "padding-inline",
482
+ "padding-inline-end",
483
+ "padding-inline-start",
484
+ "padding-left",
485
+ "padding-right",
486
+ "padding-top",
487
+ "page-break-after",
488
+ "page-break-before",
489
+ "page-break-inside",
490
+ "pause",
491
+ "pause-after",
492
+ "pause-before",
493
+ "perspective",
494
+ "perspective-origin",
495
+ "pointer-events",
496
+ "position",
497
+ "quotes",
498
+ "resize",
499
+ "rest",
500
+ "rest-after",
501
+ "rest-before",
502
+ "right",
503
+ "row-gap",
504
+ "scroll-margin",
505
+ "scroll-margin-block",
506
+ "scroll-margin-block-end",
507
+ "scroll-margin-block-start",
508
+ "scroll-margin-bottom",
509
+ "scroll-margin-inline",
510
+ "scroll-margin-inline-end",
511
+ "scroll-margin-inline-start",
512
+ "scroll-margin-left",
513
+ "scroll-margin-right",
514
+ "scroll-margin-top",
515
+ "scroll-padding",
516
+ "scroll-padding-block",
517
+ "scroll-padding-block-end",
518
+ "scroll-padding-block-start",
519
+ "scroll-padding-bottom",
520
+ "scroll-padding-inline",
521
+ "scroll-padding-inline-end",
522
+ "scroll-padding-inline-start",
523
+ "scroll-padding-left",
524
+ "scroll-padding-right",
525
+ "scroll-padding-top",
526
+ "scroll-snap-align",
527
+ "scroll-snap-stop",
528
+ "scroll-snap-type",
529
+ "scrollbar-color",
530
+ "scrollbar-gutter",
531
+ "scrollbar-width",
532
+ "shape-image-threshold",
533
+ "shape-margin",
534
+ "shape-outside",
535
+ "speak",
536
+ "speak-as",
537
+ "src",
538
+ // @font-face
539
+ "tab-size",
540
+ "table-layout",
541
+ "text-align",
542
+ "text-align-all",
543
+ "text-align-last",
544
+ "text-combine-upright",
545
+ "text-decoration",
546
+ "text-decoration-color",
547
+ "text-decoration-line",
548
+ "text-decoration-style",
549
+ "text-emphasis",
550
+ "text-emphasis-color",
551
+ "text-emphasis-position",
552
+ "text-emphasis-style",
553
+ "text-indent",
554
+ "text-justify",
555
+ "text-orientation",
556
+ "text-overflow",
557
+ "text-rendering",
558
+ "text-shadow",
559
+ "text-transform",
560
+ "text-underline-position",
561
+ "top",
562
+ "transform",
563
+ "transform-box",
564
+ "transform-origin",
565
+ "transform-style",
566
+ "transition",
567
+ "transition-delay",
568
+ "transition-duration",
569
+ "transition-property",
570
+ "transition-timing-function",
571
+ "unicode-bidi",
572
+ "vertical-align",
573
+ "visibility",
574
+ "voice-balance",
575
+ "voice-duration",
576
+ "voice-family",
577
+ "voice-pitch",
578
+ "voice-range",
579
+ "voice-rate",
580
+ "voice-stress",
581
+ "voice-volume",
582
+ "white-space",
583
+ "widows",
584
+ "width",
585
+ "will-change",
586
+ "word-break",
587
+ "word-spacing",
588
+ "word-wrap",
589
+ "writing-mode",
590
+ "z-index"
591
+ // reverse makes sure longer attributes `font-weight` are matched fully
592
+ // instead of getting false positives on say `font`
593
+ ].reverse();
594
+ function p(t) {
595
+ const r = t.regex, e = s(t), i = { begin: /-(webkit|moz|ms|o)-(?=[a-z])/ }, n = "and or not only", a = /@-?\w[\w]*(-\w+)*/, l = "[a-zA-Z-][a-zA-Z0-9_-]*", o = [
596
+ t.APOS_STRING_MODE,
597
+ t.QUOTE_STRING_MODE
598
+ ];
599
+ return {
600
+ name: "CSS",
601
+ case_insensitive: !0,
602
+ illegal: /[=|'\$]/,
603
+ keywords: { keyframePosition: "from to" },
604
+ classNameAliases: {
605
+ // for visual continuity with `tag {}` and because we
606
+ // don't have a great class for this?
607
+ keyframePosition: "selector-tag"
608
+ },
609
+ contains: [
610
+ e.BLOCK_COMMENT,
611
+ i,
612
+ // to recognize keyframe 40% etc which are outside the scope of our
613
+ // attribute value mode
614
+ e.CSS_NUMBER_MODE,
615
+ {
616
+ className: "selector-id",
617
+ begin: /#[A-Za-z0-9_-]+/,
618
+ relevance: 0
619
+ },
620
+ {
621
+ className: "selector-class",
622
+ begin: "\\." + l,
623
+ relevance: 0
624
+ },
625
+ e.ATTRIBUTE_SELECTOR_MODE,
626
+ {
627
+ className: "selector-pseudo",
628
+ variants: [
629
+ { begin: ":(" + b.join("|") + ")" },
630
+ { begin: ":(:)?(" + g.join("|") + ")" }
631
+ ]
632
+ },
633
+ // we may actually need this (12/2020)
634
+ // { // pseudo-selector params
635
+ // begin: /\(/,
636
+ // end: /\)/,
637
+ // contains: [ hljs.CSS_NUMBER_MODE ]
638
+ // },
639
+ e.CSS_VARIABLE,
640
+ {
641
+ className: "attribute",
642
+ begin: "\\b(" + m.join("|") + ")\\b"
643
+ },
644
+ // attribute values
645
+ {
646
+ begin: /:/,
647
+ end: /[;}{]/,
648
+ contains: [
649
+ e.BLOCK_COMMENT,
650
+ e.HEXCOLOR,
651
+ e.IMPORTANT,
652
+ e.CSS_NUMBER_MODE,
653
+ ...o,
654
+ // needed to highlight these as strings and to avoid issues with
655
+ // illegal characters that might be inside urls that would tigger the
656
+ // languages illegal stack
657
+ {
658
+ begin: /(url|data-uri)\(/,
659
+ end: /\)/,
660
+ relevance: 0,
661
+ // from keywords
662
+ keywords: { built_in: "url data-uri" },
663
+ contains: [
664
+ ...o,
665
+ {
666
+ className: "string",
667
+ // any character other than `)` as in `url()` will be the start
668
+ // of a string, which ends with `)` (from the parent mode)
669
+ begin: /[^)]/,
670
+ endsWithParent: !0,
671
+ excludeEnd: !0
672
+ }
673
+ ]
674
+ },
675
+ e.FUNCTION_DISPATCH
676
+ ]
677
+ },
678
+ {
679
+ begin: r.lookahead(/@/),
680
+ end: "[{;]",
681
+ relevance: 0,
682
+ illegal: /:/,
683
+ // break on Less variables @var: ...
684
+ contains: [
685
+ {
686
+ className: "keyword",
687
+ begin: a
688
+ },
689
+ {
690
+ begin: /\s/,
691
+ endsWithParent: !0,
692
+ excludeEnd: !0,
693
+ relevance: 0,
694
+ keywords: {
695
+ $pattern: /[a-z-]+/,
696
+ keyword: n,
697
+ attribute: c.join(" ")
698
+ },
699
+ contains: [
700
+ {
701
+ begin: /[a-z-]+(?=:)/,
702
+ className: "attribute"
703
+ },
704
+ ...o,
705
+ e.CSS_NUMBER_MODE
706
+ ]
707
+ }
708
+ ]
709
+ },
710
+ {
711
+ className: "selector-tag",
712
+ begin: "\\b(" + d.join("|") + ")\\b"
713
+ }
714
+ ]
715
+ };
716
+ }
717
+ export {
718
+ p as default
719
+ };