@design.estate/dees-catalog 1.0.226 → 1.0.227

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.
@@ -7438,9 +7438,9 @@ var require_sweet_scroll = __commonJS({
7438
7438
  }
7439
7439
  });
7440
7440
 
7441
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/core.js
7441
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.js
7442
7442
  var require_core = __commonJS({
7443
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/core.js"(exports, module) {
7443
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.js"(exports, module) {
7444
7444
  function deepFreeze(obj) {
7445
7445
  if (obj instanceof Map) {
7446
7446
  obj.clear = obj.delete = obj.set = function() {
@@ -7892,28 +7892,18 @@ var require_core = __commonJS({
7892
7892
  relevance: 0
7893
7893
  };
7894
7894
  var REGEXP_MODE = {
7895
- // this outer rule makes sure we actually have a WHOLE regex and not simply
7896
- // an expression such as:
7897
- //
7898
- // 3 / something
7899
- //
7900
- // (which will then blow up when regex's `illegal` sees the newline)
7901
- begin: /(?=\/[^/\n]*\/)/,
7902
- contains: [{
7903
- scope: "regexp",
7904
- begin: /\//,
7905
- end: /\/[gimuy]*/,
7906
- illegal: /\n/,
7907
- contains: [
7908
- BACKSLASH_ESCAPE,
7909
- {
7910
- begin: /\[/,
7911
- end: /\]/,
7912
- relevance: 0,
7913
- contains: [BACKSLASH_ESCAPE]
7914
- }
7915
- ]
7916
- }]
7895
+ scope: "regexp",
7896
+ begin: /\/(?=[^/\n]*\/)/,
7897
+ end: /\/[gimuy]*/,
7898
+ contains: [
7899
+ BACKSLASH_ESCAPE,
7900
+ {
7901
+ begin: /\[/,
7902
+ end: /\]/,
7903
+ relevance: 0,
7904
+ contains: [BACKSLASH_ESCAPE]
7905
+ }
7906
+ ]
7917
7907
  };
7918
7908
  var TITLE_MODE = {
7919
7909
  scope: "title",
@@ -7948,30 +7938,30 @@ var require_core = __commonJS({
7948
7938
  };
7949
7939
  var MODES = /* @__PURE__ */ Object.freeze({
7950
7940
  __proto__: null,
7951
- MATCH_NOTHING_RE,
7952
- IDENT_RE,
7953
- UNDERSCORE_IDENT_RE,
7954
- NUMBER_RE,
7955
- C_NUMBER_RE,
7956
- BINARY_NUMBER_RE,
7957
- RE_STARTERS_RE,
7958
- SHEBANG,
7959
- BACKSLASH_ESCAPE,
7960
7941
  APOS_STRING_MODE,
7961
- QUOTE_STRING_MODE,
7962
- PHRASAL_WORDS_MODE,
7942
+ BACKSLASH_ESCAPE,
7943
+ BINARY_NUMBER_MODE,
7944
+ BINARY_NUMBER_RE,
7963
7945
  COMMENT,
7964
- C_LINE_COMMENT_MODE,
7965
7946
  C_BLOCK_COMMENT_MODE,
7947
+ C_LINE_COMMENT_MODE,
7948
+ C_NUMBER_MODE,
7949
+ C_NUMBER_RE,
7950
+ END_SAME_AS_BEGIN,
7966
7951
  HASH_COMMENT_MODE,
7952
+ IDENT_RE,
7953
+ MATCH_NOTHING_RE,
7954
+ METHOD_GUARD,
7967
7955
  NUMBER_MODE,
7968
- C_NUMBER_MODE,
7969
- BINARY_NUMBER_MODE,
7956
+ NUMBER_RE,
7957
+ PHRASAL_WORDS_MODE,
7958
+ QUOTE_STRING_MODE,
7970
7959
  REGEXP_MODE,
7960
+ RE_STARTERS_RE,
7961
+ SHEBANG,
7971
7962
  TITLE_MODE,
7972
- UNDERSCORE_TITLE_MODE,
7973
- METHOD_GUARD,
7974
- END_SAME_AS_BEGIN
7963
+ UNDERSCORE_IDENT_RE,
7964
+ UNDERSCORE_TITLE_MODE
7975
7965
  });
7976
7966
  function skipIfHasPrecedingDot(match2, response) {
7977
7967
  const before = match2.input[match2.index - 1];
@@ -8370,7 +8360,7 @@ var require_core = __commonJS({
8370
8360
  }
8371
8361
  return mode;
8372
8362
  }
8373
- var version2 = "11.8.0";
8363
+ var version2 = "11.9.0";
8374
8364
  var HTMLInjectionError = class extends Error {
8375
8365
  constructor(reason, html) {
8376
8366
  super(reason);
@@ -8827,6 +8817,10 @@ var require_core = __commonJS({
8827
8817
  "before:highlightElement",
8828
8818
  { el: element, language }
8829
8819
  );
8820
+ if (element.dataset.highlighted) {
8821
+ console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.", element);
8822
+ return;
8823
+ }
8830
8824
  if (element.children.length > 0) {
8831
8825
  if (!options.ignoreUnescapedHTML) {
8832
8826
  console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk.");
@@ -8846,6 +8840,7 @@ var require_core = __commonJS({
8846
8840
  const text2 = node.textContent;
8847
8841
  const result = language ? highlight2(text2, { language, ignoreIllegals: true }) : highlightAuto(text2);
8848
8842
  element.innerHTML = result.value;
8843
+ element.dataset.highlighted = "yes";
8849
8844
  updateClassName(element, language, result.language);
8850
8845
  element.result = {
8851
8846
  language: result.language,
@@ -9025,9 +9020,9 @@ var require_core = __commonJS({
9025
9020
  }
9026
9021
  });
9027
9022
 
9028
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/1c.js
9023
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js
9029
9024
  var require_c = __commonJS({
9030
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/1c.js"(exports, module) {
9025
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js"(exports, module) {
9031
9026
  function _1c(hljs) {
9032
9027
  const UNDERSCORE_IDENT_RE = "[A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_][A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_0-9]+";
9033
9028
  const v7_keywords = "\u0434\u0430\u043B\u0435\u0435 ";
@@ -9172,9 +9167,9 @@ var require_c = __commonJS({
9172
9167
  }
9173
9168
  });
9174
9169
 
9175
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/abnf.js
9170
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js
9176
9171
  var require_abnf = __commonJS({
9177
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/abnf.js"(exports, module) {
9172
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js"(exports, module) {
9178
9173
  function abnf(hljs) {
9179
9174
  const regex = hljs.regex;
9180
9175
  const IDENT = /^[a-zA-Z][a-zA-Z0-9-]*/;
@@ -9242,9 +9237,9 @@ var require_abnf = __commonJS({
9242
9237
  }
9243
9238
  });
9244
9239
 
9245
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/accesslog.js
9240
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js
9246
9241
  var require_accesslog = __commonJS({
9247
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/accesslog.js"(exports, module) {
9242
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js"(exports, module) {
9248
9243
  function accesslog(hljs) {
9249
9244
  const regex = hljs.regex;
9250
9245
  const HTTP_VERBS = [
@@ -9328,9 +9323,9 @@ var require_accesslog = __commonJS({
9328
9323
  }
9329
9324
  });
9330
9325
 
9331
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/actionscript.js
9326
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js
9332
9327
  var require_actionscript = __commonJS({
9333
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/actionscript.js"(exports, module) {
9328
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js"(exports, module) {
9334
9329
  function actionscript(hljs) {
9335
9330
  const regex = hljs.regex;
9336
9331
  const IDENT_RE = /[a-zA-Z_$][a-zA-Z0-9_$]*/;
@@ -9475,9 +9470,9 @@ var require_actionscript = __commonJS({
9475
9470
  }
9476
9471
  });
9477
9472
 
9478
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ada.js
9473
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js
9479
9474
  var require_ada = __commonJS({
9480
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ada.js"(exports, module) {
9475
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js"(exports, module) {
9481
9476
  function ada(hljs) {
9482
9477
  const INTEGER_RE = "\\d(_|\\d)*";
9483
9478
  const EXPONENT_RE = "[eE][-+]?" + INTEGER_RE;
@@ -9702,9 +9697,9 @@ var require_ada = __commonJS({
9702
9697
  }
9703
9698
  });
9704
9699
 
9705
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/angelscript.js
9700
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js
9706
9701
  var require_angelscript = __commonJS({
9707
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/angelscript.js"(exports, module) {
9702
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js"(exports, module) {
9708
9703
  function angelscript(hljs) {
9709
9704
  const builtInTypeMode = {
9710
9705
  className: "built_in",
@@ -9873,9 +9868,9 @@ var require_angelscript = __commonJS({
9873
9868
  }
9874
9869
  });
9875
9870
 
9876
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/apache.js
9871
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js
9877
9872
  var require_apache = __commonJS({
9878
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/apache.js"(exports, module) {
9873
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js"(exports, module) {
9879
9874
  function apache(hljs) {
9880
9875
  const NUMBER_REF = {
9881
9876
  className: "number",
@@ -9968,9 +9963,9 @@ var require_apache = __commonJS({
9968
9963
  }
9969
9964
  });
9970
9965
 
9971
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/applescript.js
9966
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js
9972
9967
  var require_applescript = __commonJS({
9973
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/applescript.js"(exports, module) {
9968
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js"(exports, module) {
9974
9969
  function applescript(hljs) {
9975
9970
  const regex = hljs.regex;
9976
9971
  const STRING = hljs.inherit(
@@ -10094,9 +10089,9 @@ var require_applescript = __commonJS({
10094
10089
  }
10095
10090
  });
10096
10091
 
10097
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/arcade.js
10092
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js
10098
10093
  var require_arcade = __commonJS({
10099
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/arcade.js"(exports, module) {
10094
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js"(exports, module) {
10100
10095
  function arcade(hljs) {
10101
10096
  const IDENT_RE = "[A-Za-z_][0-9A-Za-z_]*";
10102
10097
  const KEYWORDS = {
@@ -10453,9 +10448,9 @@ var require_arcade = __commonJS({
10453
10448
  }
10454
10449
  });
10455
10450
 
10456
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/arduino.js
10451
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js
10457
10452
  var require_arduino = __commonJS({
10458
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/arduino.js"(exports, module) {
10453
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js"(exports, module) {
10459
10454
  function cPlusPlus(hljs) {
10460
10455
  const regex = hljs.regex;
10461
10456
  const C_LINE_COMMENT_MODE = hljs.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }] });
@@ -11382,9 +11377,9 @@ var require_arduino = __commonJS({
11382
11377
  }
11383
11378
  });
11384
11379
 
11385
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/armasm.js
11380
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js
11386
11381
  var require_armasm = __commonJS({
11387
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/armasm.js"(exports, module) {
11382
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js"(exports, module) {
11388
11383
  function armasm(hljs) {
11389
11384
  const COMMENT = { variants: [
11390
11385
  hljs.COMMENT("^[ \\t]*(?=#)", "$", {
@@ -11405,7 +11400,7 @@ var require_armasm = __commonJS({
11405
11400
  // GNU preprocs
11406
11401
  ".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND "
11407
11402
  ),
11408
- built_in: "r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"
11403
+ built_in: "r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 w0 w1 w2 w3 w4 w5 w6 w7 w8 w9 w10 w11 w12 w13 w14 w15 w16 w17 w18 w19 w20 w21 w22 w23 w24 w25 w26 w27 w28 w29 w30 x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 x30 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"
11409
11404
  },
11410
11405
  contains: [
11411
11406
  {
@@ -11475,9 +11470,9 @@ var require_armasm = __commonJS({
11475
11470
  }
11476
11471
  });
11477
11472
 
11478
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/xml.js
11473
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js
11479
11474
  var require_xml = __commonJS({
11480
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/xml.js"(exports, module) {
11475
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js"(exports, module) {
11481
11476
  function xml(hljs) {
11482
11477
  const regex = hljs.regex;
11483
11478
  const TAG_NAME_RE = regex.concat(/[\p{L}_]/u, regex.optional(/[\p{L}0-9_.-]*:/u), /[\p{L}0-9_.-]*/u);
@@ -11706,9 +11701,9 @@ var require_xml = __commonJS({
11706
11701
  }
11707
11702
  });
11708
11703
 
11709
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/asciidoc.js
11704
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js
11710
11705
  var require_asciidoc = __commonJS({
11711
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/asciidoc.js"(exports, module) {
11706
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js"(exports, module) {
11712
11707
  function asciidoc(hljs) {
11713
11708
  const regex = hljs.regex;
11714
11709
  const HORIZONTAL_RULE = {
@@ -11959,9 +11954,9 @@ var require_asciidoc = __commonJS({
11959
11954
  }
11960
11955
  });
11961
11956
 
11962
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/aspectj.js
11957
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js
11963
11958
  var require_aspectj = __commonJS({
11964
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/aspectj.js"(exports, module) {
11959
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js"(exports, module) {
11965
11960
  function aspectj(hljs) {
11966
11961
  const regex = hljs.regex;
11967
11962
  const KEYWORDS = [
@@ -12184,9 +12179,9 @@ var require_aspectj = __commonJS({
12184
12179
  }
12185
12180
  });
12186
12181
 
12187
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/autohotkey.js
12182
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js
12188
12183
  var require_autohotkey = __commonJS({
12189
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/autohotkey.js"(exports, module) {
12184
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js"(exports, module) {
12190
12185
  function autohotkey(hljs) {
12191
12186
  const BACKTICK_ESCAPE = { begin: "`[\\s\\S]" };
12192
12187
  return {
@@ -12256,9 +12251,9 @@ var require_autohotkey = __commonJS({
12256
12251
  }
12257
12252
  });
12258
12253
 
12259
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/autoit.js
12254
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js
12260
12255
  var require_autoit = __commonJS({
12261
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/autoit.js"(exports, module) {
12256
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js"(exports, module) {
12262
12257
  function autoit(hljs) {
12263
12258
  const KEYWORDS = "ByRef Case Const ContinueCase ContinueLoop Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With";
12264
12259
  const DIRECTIVES = [
@@ -12415,9 +12410,9 @@ var require_autoit = __commonJS({
12415
12410
  }
12416
12411
  });
12417
12412
 
12418
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/avrasm.js
12413
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js
12419
12414
  var require_avrasm = __commonJS({
12420
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/avrasm.js"(exports, module) {
12415
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js"(exports, module) {
12421
12416
  function avrasm(hljs) {
12422
12417
  return {
12423
12418
  name: "AVR Assembly",
@@ -12478,9 +12473,9 @@ var require_avrasm = __commonJS({
12478
12473
  }
12479
12474
  });
12480
12475
 
12481
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/awk.js
12476
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js
12482
12477
  var require_awk = __commonJS({
12483
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/awk.js"(exports, module) {
12478
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js"(exports, module) {
12484
12479
  function awk(hljs) {
12485
12480
  const VARIABLE = {
12486
12481
  className: "variable",
@@ -12542,9 +12537,9 @@ var require_awk = __commonJS({
12542
12537
  }
12543
12538
  });
12544
12539
 
12545
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/axapta.js
12540
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js
12546
12541
  var require_axapta = __commonJS({
12547
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/axapta.js"(exports, module) {
12542
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js"(exports, module) {
12548
12543
  function axapta(hljs) {
12549
12544
  const IDENT_RE = hljs.UNDERSCORE_IDENT_RE;
12550
12545
  const BUILT_IN_KEYWORDS = [
@@ -12721,9 +12716,9 @@ var require_axapta = __commonJS({
12721
12716
  }
12722
12717
  });
12723
12718
 
12724
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/bash.js
12719
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js
12725
12720
  var require_bash = __commonJS({
12726
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/bash.js"(exports, module) {
12721
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js"(exports, module) {
12727
12722
  function bash(hljs) {
12728
12723
  const regex = hljs.regex;
12729
12724
  const VAR = {};
@@ -12779,14 +12774,16 @@ var require_bash = __commonJS({
12779
12774
  };
12780
12775
  SUBST.contains.push(QUOTE_STRING);
12781
12776
  const ESCAPED_QUOTE = {
12782
- className: "",
12783
- begin: /\\"/
12777
+ match: /\\"/
12784
12778
  };
12785
12779
  const APOS_STRING = {
12786
12780
  className: "string",
12787
12781
  begin: /'/,
12788
12782
  end: /'/
12789
12783
  };
12784
+ const ESCAPED_APOS = {
12785
+ match: /\\'/
12786
+ };
12790
12787
  const ARITHMETIC = {
12791
12788
  begin: /\$?\(\(/,
12792
12789
  end: /\)\)/,
@@ -13091,6 +13088,7 @@ var require_bash = __commonJS({
13091
13088
  QUOTE_STRING,
13092
13089
  ESCAPED_QUOTE,
13093
13090
  APOS_STRING,
13091
+ ESCAPED_APOS,
13094
13092
  VAR
13095
13093
  ]
13096
13094
  };
@@ -13099,9 +13097,9 @@ var require_bash = __commonJS({
13099
13097
  }
13100
13098
  });
13101
13099
 
13102
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/basic.js
13100
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js
13103
13101
  var require_basic = __commonJS({
13104
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/basic.js"(exports, module) {
13102
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js"(exports, module) {
13105
13103
  function basic(hljs) {
13106
13104
  const KEYWORDS = [
13107
13105
  "ABS",
@@ -13324,9 +13322,9 @@ var require_basic = __commonJS({
13324
13322
  }
13325
13323
  });
13326
13324
 
13327
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/bnf.js
13325
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js
13328
13326
  var require_bnf = __commonJS({
13329
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/bnf.js"(exports, module) {
13327
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js"(exports, module) {
13330
13328
  function bnf(hljs) {
13331
13329
  return {
13332
13330
  name: "Backus\u2013Naur Form",
@@ -13360,9 +13358,9 @@ var require_bnf = __commonJS({
13360
13358
  }
13361
13359
  });
13362
13360
 
13363
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/brainfuck.js
13361
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js
13364
13362
  var require_brainfuck = __commonJS({
13365
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/brainfuck.js"(exports, module) {
13363
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js"(exports, module) {
13366
13364
  function brainfuck(hljs) {
13367
13365
  const LITERAL = {
13368
13366
  className: "literal",
@@ -13412,9 +13410,9 @@ var require_brainfuck = __commonJS({
13412
13410
  }
13413
13411
  });
13414
13412
 
13415
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/c.js
13413
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js
13416
13414
  var require_c2 = __commonJS({
13417
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/c.js"(exports, module) {
13415
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js"(exports, module) {
13418
13416
  function c7(hljs) {
13419
13417
  const regex = hljs.regex;
13420
13418
  const C_LINE_COMMENT_MODE = hljs.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }] });
@@ -13696,9 +13694,9 @@ var require_c2 = __commonJS({
13696
13694
  }
13697
13695
  });
13698
13696
 
13699
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cal.js
13697
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js
13700
13698
  var require_cal = __commonJS({
13701
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cal.js"(exports, module) {
13699
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js"(exports, module) {
13702
13700
  function cal(hljs) {
13703
13701
  const regex = hljs.regex;
13704
13702
  const KEYWORDS = [
@@ -13849,9 +13847,9 @@ var require_cal = __commonJS({
13849
13847
  }
13850
13848
  });
13851
13849
 
13852
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/capnproto.js
13850
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js
13853
13851
  var require_capnproto = __commonJS({
13854
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/capnproto.js"(exports, module) {
13852
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js"(exports, module) {
13855
13853
  function capnproto(hljs) {
13856
13854
  const KEYWORDS = [
13857
13855
  "struct",
@@ -13944,9 +13942,9 @@ var require_capnproto = __commonJS({
13944
13942
  }
13945
13943
  });
13946
13944
 
13947
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ceylon.js
13945
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js
13948
13946
  var require_ceylon = __commonJS({
13949
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ceylon.js"(exports, module) {
13947
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js"(exports, module) {
13950
13948
  function ceylon(hljs) {
13951
13949
  const KEYWORDS = [
13952
13950
  "assembly",
@@ -14077,9 +14075,9 @@ var require_ceylon = __commonJS({
14077
14075
  }
14078
14076
  });
14079
14077
 
14080
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/clean.js
14078
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js
14081
14079
  var require_clean = __commonJS({
14082
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/clean.js"(exports, module) {
14080
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js"(exports, module) {
14083
14081
  function clean(hljs) {
14084
14082
  const KEYWORDS = [
14085
14083
  "if",
@@ -14141,9 +14139,9 @@ var require_clean = __commonJS({
14141
14139
  }
14142
14140
  });
14143
14141
 
14144
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/clojure.js
14142
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js
14145
14143
  var require_clojure = __commonJS({
14146
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/clojure.js"(exports, module) {
14144
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js"(exports, module) {
14147
14145
  function clojure(hljs) {
14148
14146
  const SYMBOLSTART = "a-zA-Z_\\-!.?+*=<>&'";
14149
14147
  const SYMBOL_RE = "[#]?[" + SYMBOLSTART + "][" + SYMBOLSTART + "0-9/;:$#]*";
@@ -14301,9 +14299,9 @@ var require_clojure = __commonJS({
14301
14299
  }
14302
14300
  });
14303
14301
 
14304
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/clojure-repl.js
14302
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js
14305
14303
  var require_clojure_repl = __commonJS({
14306
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/clojure-repl.js"(exports, module) {
14304
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js"(exports, module) {
14307
14305
  function clojureRepl(hljs) {
14308
14306
  return {
14309
14307
  name: "Clojure REPL",
@@ -14323,9 +14321,9 @@ var require_clojure_repl = __commonJS({
14323
14321
  }
14324
14322
  });
14325
14323
 
14326
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cmake.js
14324
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js
14327
14325
  var require_cmake = __commonJS({
14328
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cmake.js"(exports, module) {
14326
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js"(exports, module) {
14329
14327
  function cmake(hljs) {
14330
14328
  return {
14331
14329
  name: "CMake",
@@ -14352,9 +14350,9 @@ var require_cmake = __commonJS({
14352
14350
  }
14353
14351
  });
14354
14352
 
14355
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/coffeescript.js
14353
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js
14356
14354
  var require_coffeescript = __commonJS({
14357
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/coffeescript.js"(exports, module) {
14355
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js"(exports, module) {
14358
14356
  var KEYWORDS = [
14359
14357
  "as",
14360
14358
  // for exports
@@ -14705,9 +14703,9 @@ var require_coffeescript = __commonJS({
14705
14703
  }
14706
14704
  });
14707
14705
 
14708
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/coq.js
14706
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js
14709
14707
  var require_coq = __commonJS({
14710
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/coq.js"(exports, module) {
14708
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js"(exports, module) {
14711
14709
  function coq(hljs) {
14712
14710
  const KEYWORDS = [
14713
14711
  "_|0",
@@ -15149,9 +15147,9 @@ var require_coq = __commonJS({
15149
15147
  }
15150
15148
  });
15151
15149
 
15152
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cos.js
15150
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js
15153
15151
  var require_cos = __commonJS({
15154
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cos.js"(exports, module) {
15152
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js"(exports, module) {
15155
15153
  function cos(hljs) {
15156
15154
  const STRINGS = {
15157
15155
  className: "string",
@@ -15245,9 +15243,9 @@ var require_cos = __commonJS({
15245
15243
  }
15246
15244
  });
15247
15245
 
15248
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cpp.js
15246
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js
15249
15247
  var require_cpp = __commonJS({
15250
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/cpp.js"(exports, module) {
15248
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js"(exports, module) {
15251
15249
  function cpp(hljs) {
15252
15250
  const regex = hljs.regex;
15253
15251
  const C_LINE_COMMENT_MODE = hljs.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }] });
@@ -15784,9 +15782,9 @@ var require_cpp = __commonJS({
15784
15782
  }
15785
15783
  });
15786
15784
 
15787
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/crmsh.js
15785
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js
15788
15786
  var require_crmsh = __commonJS({
15789
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/crmsh.js"(exports, module) {
15787
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js"(exports, module) {
15790
15788
  function crmsh(hljs) {
15791
15789
  const RESOURCES = "primitive rsc_template";
15792
15790
  const COMMANDS = "group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml";
@@ -15875,9 +15873,9 @@ var require_crmsh = __commonJS({
15875
15873
  }
15876
15874
  });
15877
15875
 
15878
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/crystal.js
15876
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js
15879
15877
  var require_crystal = __commonJS({
15880
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/crystal.js"(exports, module) {
15878
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js"(exports, module) {
15881
15879
  function crystal(hljs) {
15882
15880
  const INT_SUFFIX = "(_?[ui](8|16|32|64|128))?";
15883
15881
  const FLOAT_SUFFIX = "(_?f(32|64))?";
@@ -16178,9 +16176,9 @@ var require_crystal = __commonJS({
16178
16176
  }
16179
16177
  });
16180
16178
 
16181
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/csharp.js
16179
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js
16182
16180
  var require_csharp = __commonJS({
16183
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/csharp.js"(exports, module) {
16181
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js"(exports, module) {
16184
16182
  function csharp(hljs) {
16185
16183
  const BUILT_IN_KEYWORDS = [
16186
16184
  "bool",
@@ -16571,9 +16569,9 @@ var require_csharp = __commonJS({
16571
16569
  }
16572
16570
  });
16573
16571
 
16574
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/csp.js
16572
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js
16575
16573
  var require_csp = __commonJS({
16576
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/csp.js"(exports, module) {
16574
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js"(exports, module) {
16577
16575
  function csp(hljs) {
16578
16576
  const KEYWORDS = [
16579
16577
  "base-uri",
@@ -16623,9 +16621,9 @@ var require_csp = __commonJS({
16623
16621
  }
16624
16622
  });
16625
16623
 
16626
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/css.js
16624
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js
16627
16625
  var require_css = __commonJS({
16628
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/css.js"(exports, module) {
16626
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js"(exports, module) {
16629
16627
  var MODES = (hljs) => {
16630
16628
  return {
16631
16629
  IMPORTANT: {
@@ -16658,7 +16656,7 @@ var require_css = __commonJS({
16658
16656
  },
16659
16657
  CSS_VARIABLE: {
16660
16658
  className: "attr",
16661
- begin: /--[A-Za-z][A-Za-z0-9_-]*/
16659
+ begin: /--[A-Za-z_][A-Za-z0-9_-]*/
16662
16660
  }
16663
16661
  };
16664
16662
  };
@@ -17359,9 +17357,9 @@ var require_css = __commonJS({
17359
17357
  }
17360
17358
  });
17361
17359
 
17362
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/d.js
17360
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js
17363
17361
  var require_d = __commonJS({
17364
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/d.js"(exports, module) {
17362
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js"(exports, module) {
17365
17363
  function d4(hljs) {
17366
17364
  const D_KEYWORDS = {
17367
17365
  $pattern: hljs.UNDERSCORE_IDENT_RE,
@@ -17476,9 +17474,9 @@ var require_d = __commonJS({
17476
17474
  }
17477
17475
  });
17478
17476
 
17479
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/markdown.js
17477
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js
17480
17478
  var require_markdown = __commonJS({
17481
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/markdown.js"(exports, module) {
17479
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js"(exports, module) {
17482
17480
  function markdown(hljs) {
17483
17481
  const regex = hljs.regex;
17484
17482
  const INLINE_HTML = {
@@ -17707,9 +17705,9 @@ var require_markdown = __commonJS({
17707
17705
  }
17708
17706
  });
17709
17707
 
17710
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dart.js
17708
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js
17711
17709
  var require_dart = __commonJS({
17712
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dart.js"(exports, module) {
17710
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js"(exports, module) {
17713
17711
  function dart(hljs) {
17714
17712
  const SUBST = {
17715
17713
  className: "subst",
@@ -17958,9 +17956,9 @@ var require_dart = __commonJS({
17958
17956
  }
17959
17957
  });
17960
17958
 
17961
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/delphi.js
17959
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js
17962
17960
  var require_delphi = __commonJS({
17963
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/delphi.js"(exports, module) {
17961
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js"(exports, module) {
17964
17962
  function delphi(hljs) {
17965
17963
  const KEYWORDS = [
17966
17964
  "exports",
@@ -18190,9 +18188,9 @@ var require_delphi = __commonJS({
18190
18188
  }
18191
18189
  });
18192
18190
 
18193
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/diff.js
18191
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js
18194
18192
  var require_diff = __commonJS({
18195
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/diff.js"(exports, module) {
18193
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js"(exports, module) {
18196
18194
  function diff(hljs) {
18197
18195
  const regex = hljs.regex;
18198
18196
  return {
@@ -18248,9 +18246,9 @@ var require_diff = __commonJS({
18248
18246
  }
18249
18247
  });
18250
18248
 
18251
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/django.js
18249
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js
18252
18250
  var require_django = __commonJS({
18253
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/django.js"(exports, module) {
18251
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js"(exports, module) {
18254
18252
  function django(hljs) {
18255
18253
  const FILTER = {
18256
18254
  begin: /\|[A-Za-z]+:?/,
@@ -18299,9 +18297,9 @@ var require_django = __commonJS({
18299
18297
  }
18300
18298
  });
18301
18299
 
18302
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dns.js
18300
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js
18303
18301
  var require_dns = __commonJS({
18304
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dns.js"(exports, module) {
18302
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js"(exports, module) {
18305
18303
  function dns(hljs) {
18306
18304
  const KEYWORDS = [
18307
18305
  "IN",
@@ -18374,9 +18372,9 @@ var require_dns = __commonJS({
18374
18372
  }
18375
18373
  });
18376
18374
 
18377
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dockerfile.js
18375
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js
18378
18376
  var require_dockerfile = __commonJS({
18379
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dockerfile.js"(exports, module) {
18377
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js"(exports, module) {
18380
18378
  function dockerfile(hljs) {
18381
18379
  const KEYWORDS = [
18382
18380
  "from",
@@ -18413,9 +18411,9 @@ var require_dockerfile = __commonJS({
18413
18411
  }
18414
18412
  });
18415
18413
 
18416
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dos.js
18414
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js
18417
18415
  var require_dos = __commonJS({
18418
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dos.js"(exports, module) {
18416
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js"(exports, module) {
18419
18417
  function dos(hljs) {
18420
18418
  const COMMENT = hljs.COMMENT(
18421
18419
  /^\s*@?rem\b/,
@@ -18577,9 +18575,9 @@ var require_dos = __commonJS({
18577
18575
  }
18578
18576
  });
18579
18577
 
18580
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dsconfig.js
18578
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js
18581
18579
  var require_dsconfig = __commonJS({
18582
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dsconfig.js"(exports, module) {
18580
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js"(exports, module) {
18583
18581
  function dsconfig(hljs) {
18584
18582
  const QUOTED_PROPERTY = {
18585
18583
  className: "string",
@@ -18639,9 +18637,9 @@ var require_dsconfig = __commonJS({
18639
18637
  }
18640
18638
  });
18641
18639
 
18642
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dts.js
18640
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js
18643
18641
  var require_dts = __commonJS({
18644
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dts.js"(exports, module) {
18642
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js"(exports, module) {
18645
18643
  function dts(hljs) {
18646
18644
  const STRINGS = {
18647
18645
  className: "string",
@@ -18779,9 +18777,9 @@ var require_dts = __commonJS({
18779
18777
  }
18780
18778
  });
18781
18779
 
18782
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dust.js
18780
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js
18783
18781
  var require_dust = __commonJS({
18784
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/dust.js"(exports, module) {
18782
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js"(exports, module) {
18785
18783
  function dust(hljs) {
18786
18784
  const EXPRESSION_KEYWORDS = "if eq ne lt lte gt gte select default math sep";
18787
18785
  return {
@@ -18821,9 +18819,9 @@ var require_dust = __commonJS({
18821
18819
  }
18822
18820
  });
18823
18821
 
18824
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ebnf.js
18822
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js
18825
18823
  var require_ebnf = __commonJS({
18826
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ebnf.js"(exports, module) {
18824
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js"(exports, module) {
18827
18825
  function ebnf(hljs) {
18828
18826
  const commentMode = hljs.COMMENT(/\(\*/, /\*\)/);
18829
18827
  const nonTerminalMode = {
@@ -18868,9 +18866,9 @@ var require_ebnf = __commonJS({
18868
18866
  }
18869
18867
  });
18870
18868
 
18871
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/elixir.js
18869
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js
18872
18870
  var require_elixir = __commonJS({
18873
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/elixir.js"(exports, module) {
18871
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js"(exports, module) {
18874
18872
  function elixir(hljs) {
18875
18873
  const regex = hljs.regex;
18876
18874
  const ELIXIR_IDENT_RE = "[a-zA-Z_][a-zA-Z0-9_.]*(!|\\?)?";
@@ -19145,9 +19143,9 @@ var require_elixir = __commonJS({
19145
19143
  }
19146
19144
  });
19147
19145
 
19148
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/elm.js
19146
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js
19149
19147
  var require_elm = __commonJS({
19150
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/elm.js"(exports, module) {
19148
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js"(exports, module) {
19151
19149
  function elm(hljs) {
19152
19150
  const COMMENT = { variants: [
19153
19151
  hljs.COMMENT("--", "$"),
@@ -19278,9 +19276,9 @@ var require_elm = __commonJS({
19278
19276
  }
19279
19277
  });
19280
19278
 
19281
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ruby.js
19279
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js
19282
19280
  var require_ruby = __commonJS({
19283
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ruby.js"(exports, module) {
19281
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js"(exports, module) {
19284
19282
  function ruby(hljs) {
19285
19283
  const regex = hljs.regex;
19286
19284
  const RUBY_METHOD_RE = "([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)";
@@ -19696,9 +19694,9 @@ var require_ruby = __commonJS({
19696
19694
  }
19697
19695
  });
19698
19696
 
19699
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/erb.js
19697
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js
19700
19698
  var require_erb = __commonJS({
19701
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/erb.js"(exports, module) {
19699
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js"(exports, module) {
19702
19700
  function erb(hljs) {
19703
19701
  return {
19704
19702
  name: "ERB",
@@ -19719,9 +19717,9 @@ var require_erb = __commonJS({
19719
19717
  }
19720
19718
  });
19721
19719
 
19722
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/erlang-repl.js
19720
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js
19723
19721
  var require_erlang_repl = __commonJS({
19724
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/erlang-repl.js"(exports, module) {
19722
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js"(exports, module) {
19725
19723
  function erlangRepl(hljs) {
19726
19724
  const regex = hljs.regex;
19727
19725
  return {
@@ -19769,9 +19767,9 @@ var require_erlang_repl = __commonJS({
19769
19767
  }
19770
19768
  });
19771
19769
 
19772
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/erlang.js
19770
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js
19773
19771
  var require_erlang = __commonJS({
19774
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/erlang.js"(exports, module) {
19772
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js"(exports, module) {
19775
19773
  function erlang(hljs) {
19776
19774
  const BASIC_ATOM_RE = "[a-z'][a-zA-Z0-9_']*";
19777
19775
  const FUNCTION_NAME_RE = "(" + BASIC_ATOM_RE + ":" + BASIC_ATOM_RE + "|" + BASIC_ATOM_RE + ")";
@@ -19949,9 +19947,9 @@ var require_erlang = __commonJS({
19949
19947
  }
19950
19948
  });
19951
19949
 
19952
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/excel.js
19950
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js
19953
19951
  var require_excel = __commonJS({
19954
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/excel.js"(exports, module) {
19952
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js"(exports, module) {
19955
19953
  function excel(hljs) {
19956
19954
  const BUILT_INS = [
19957
19955
  "ABS",
@@ -20493,9 +20491,9 @@ var require_excel = __commonJS({
20493
20491
  }
20494
20492
  });
20495
20493
 
20496
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/fix.js
20494
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js
20497
20495
  var require_fix = __commonJS({
20498
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/fix.js"(exports, module) {
20496
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js"(exports, module) {
20499
20497
  function fix(hljs) {
20500
20498
  return {
20501
20499
  name: "FIX",
@@ -20531,9 +20529,9 @@ var require_fix = __commonJS({
20531
20529
  }
20532
20530
  });
20533
20531
 
20534
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/flix.js
20532
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js
20535
20533
  var require_flix = __commonJS({
20536
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/flix.js"(exports, module) {
20534
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js"(exports, module) {
20537
20535
  function flix(hljs) {
20538
20536
  const CHAR = {
20539
20537
  className: "string",
@@ -20603,9 +20601,9 @@ var require_flix = __commonJS({
20603
20601
  }
20604
20602
  });
20605
20603
 
20606
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/fortran.js
20604
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js
20607
20605
  var require_fortran = __commonJS({
20608
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/fortran.js"(exports, module) {
20606
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js"(exports, module) {
20609
20607
  function fortran(hljs) {
20610
20608
  const regex = hljs.regex;
20611
20609
  const PARAMS = {
@@ -21167,9 +21165,9 @@ var require_fortran = __commonJS({
21167
21165
  }
21168
21166
  });
21169
21167
 
21170
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/fsharp.js
21168
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js
21171
21169
  var require_fsharp = __commonJS({
21172
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/fsharp.js"(exports, module) {
21170
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js"(exports, module) {
21173
21171
  function escape2(value) {
21174
21172
  return new RegExp(value.replace(/[-/\\^$*+?.()|[\]{}]/g, "\\$&"), "m");
21175
21173
  }
@@ -21740,9 +21738,9 @@ var require_fsharp = __commonJS({
21740
21738
  }
21741
21739
  });
21742
21740
 
21743
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gams.js
21741
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js
21744
21742
  var require_gams = __commonJS({
21745
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gams.js"(exports, module) {
21743
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js"(exports, module) {
21746
21744
  function gams(hljs) {
21747
21745
  const regex = hljs.regex;
21748
21746
  const KEYWORDS = {
@@ -21898,9 +21896,9 @@ var require_gams = __commonJS({
21898
21896
  }
21899
21897
  });
21900
21898
 
21901
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gauss.js
21899
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js
21902
21900
  var require_gauss = __commonJS({
21903
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gauss.js"(exports, module) {
21901
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js"(exports, module) {
21904
21902
  function gauss(hljs) {
21905
21903
  const KEYWORDS = {
21906
21904
  keyword: "bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new open output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint ne ge le gt lt and xor or not eq eqv",
@@ -22090,9 +22088,9 @@ var require_gauss = __commonJS({
22090
22088
  }
22091
22089
  });
22092
22090
 
22093
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gcode.js
22091
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js
22094
22092
  var require_gcode = __commonJS({
22095
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gcode.js"(exports, module) {
22093
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js"(exports, module) {
22096
22094
  function gcode(hljs) {
22097
22095
  const GCODE_IDENT_RE = "[A-Z_][A-Z0-9_.]*";
22098
22096
  const GCODE_CLOSE_RE = "%";
@@ -22166,9 +22164,9 @@ var require_gcode = __commonJS({
22166
22164
  }
22167
22165
  });
22168
22166
 
22169
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gherkin.js
22167
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js
22170
22168
  var require_gherkin = __commonJS({
22171
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gherkin.js"(exports, module) {
22169
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js"(exports, module) {
22172
22170
  function gherkin(hljs) {
22173
22171
  return {
22174
22172
  name: "Gherkin",
@@ -22213,9 +22211,9 @@ var require_gherkin = __commonJS({
22213
22211
  }
22214
22212
  });
22215
22213
 
22216
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/glsl.js
22214
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js
22217
22215
  var require_glsl = __commonJS({
22218
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/glsl.js"(exports, module) {
22216
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js"(exports, module) {
22219
22217
  function glsl(hljs) {
22220
22218
  return {
22221
22219
  name: "GLSL",
@@ -22248,9 +22246,9 @@ var require_glsl = __commonJS({
22248
22246
  }
22249
22247
  });
22250
22248
 
22251
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gml.js
22249
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js
22252
22250
  var require_gml = __commonJS({
22253
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gml.js"(exports, module) {
22251
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js"(exports, module) {
22254
22252
  function gml(hljs) {
22255
22253
  const KEYWORDS = [
22256
22254
  "#endregion",
@@ -25060,9 +25058,9 @@ var require_gml = __commonJS({
25060
25058
  }
25061
25059
  });
25062
25060
 
25063
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/go.js
25061
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js
25064
25062
  var require_go = __commonJS({
25065
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/go.js"(exports, module) {
25063
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js"(exports, module) {
25066
25064
  function go(hljs) {
25067
25065
  const LITERALS = [
25068
25066
  "true",
@@ -25199,9 +25197,9 @@ var require_go = __commonJS({
25199
25197
  }
25200
25198
  });
25201
25199
 
25202
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/golo.js
25200
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js
25203
25201
  var require_golo = __commonJS({
25204
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/golo.js"(exports, module) {
25202
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js"(exports, module) {
25205
25203
  function golo(hljs) {
25206
25204
  const KEYWORDS = [
25207
25205
  "println",
@@ -25276,9 +25274,9 @@ var require_golo = __commonJS({
25276
25274
  }
25277
25275
  });
25278
25276
 
25279
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gradle.js
25277
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js
25280
25278
  var require_gradle = __commonJS({
25281
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/gradle.js"(exports, module) {
25279
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js"(exports, module) {
25282
25280
  function gradle(hljs) {
25283
25281
  const KEYWORDS = [
25284
25282
  "task",
@@ -25462,9 +25460,9 @@ var require_gradle = __commonJS({
25462
25460
  }
25463
25461
  });
25464
25462
 
25465
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/graphql.js
25463
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js
25466
25464
  var require_graphql = __commonJS({
25467
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/graphql.js"(exports, module) {
25465
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js"(exports, module) {
25468
25466
  function graphql(hljs) {
25469
25467
  const regex = hljs.regex;
25470
25468
  const GQL_NAME = /[_A-Za-z][_0-9A-Za-z]*/;
@@ -25537,9 +25535,9 @@ var require_graphql = __commonJS({
25537
25535
  }
25538
25536
  });
25539
25537
 
25540
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/groovy.js
25538
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js
25541
25539
  var require_groovy = __commonJS({
25542
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/groovy.js"(exports, module) {
25540
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js"(exports, module) {
25543
25541
  function variants(variants2, obj = {}) {
25544
25542
  obj.variants = variants2;
25545
25543
  return obj;
@@ -25600,7 +25598,7 @@ var require_groovy = __commonJS({
25600
25598
  );
25601
25599
  const CLASS_DEFINITION = {
25602
25600
  match: [
25603
- /(class|interface|trait|enum|extends|implements)/,
25601
+ /(class|interface|trait|enum|record|extends|implements)/,
25604
25602
  /\s+/,
25605
25603
  hljs.UNDERSCORE_IDENT_RE
25606
25604
  ],
@@ -25660,7 +25658,8 @@ var require_groovy = __commonJS({
25660
25658
  "import",
25661
25659
  "package",
25662
25660
  "return",
25663
- "instanceof"
25661
+ "instanceof",
25662
+ "var"
25664
25663
  ];
25665
25664
  return {
25666
25665
  name: "Groovy",
@@ -25721,9 +25720,9 @@ var require_groovy = __commonJS({
25721
25720
  }
25722
25721
  });
25723
25722
 
25724
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/haml.js
25723
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js
25725
25724
  var require_haml = __commonJS({
25726
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/haml.js"(exports, module) {
25725
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js"(exports, module) {
25727
25726
  function haml(hljs) {
25728
25727
  return {
25729
25728
  name: "HAML",
@@ -25830,9 +25829,9 @@ var require_haml = __commonJS({
25830
25829
  }
25831
25830
  });
25832
25831
 
25833
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/handlebars.js
25832
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js
25834
25833
  var require_handlebars = __commonJS({
25835
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/handlebars.js"(exports, module) {
25834
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js"(exports, module) {
25836
25835
  function handlebars(hljs) {
25837
25836
  const regex = hljs.regex;
25838
25837
  const BUILT_INS = {
@@ -26065,12 +26064,28 @@ var require_handlebars = __commonJS({
26065
26064
  }
26066
26065
  });
26067
26066
 
26068
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/haskell.js
26067
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js
26069
26068
  var require_haskell = __commonJS({
26070
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/haskell.js"(exports, module) {
26069
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js"(exports, module) {
26071
26070
  function haskell(hljs) {
26071
+ const decimalDigits = "([0-9]_*)+";
26072
+ const hexDigits = "([0-9a-fA-F]_*)+";
26073
+ const binaryDigits = "([01]_*)+";
26074
+ const octalDigits = "([0-7]_*)+";
26075
+ const ascSymbol = "[!#$%&*+.\\/<=>?@\\\\^~-]";
26076
+ const uniSymbol = "(\\p{S}|\\p{P})";
26077
+ const special = "[(),;\\[\\]`|{}]";
26078
+ const symbol = `(${ascSymbol}|(?!(${special}|[_:"']))${uniSymbol})`;
26072
26079
  const COMMENT = { variants: [
26073
- hljs.COMMENT("--", "$"),
26080
+ // Double dash forms a valid comment only if it's not part of legal lexeme.
26081
+ // See: Haskell 98 report: https://www.haskell.org/onlinereport/lexemes.html
26082
+ //
26083
+ // The commented code does the job, but we can't use negative lookbehind,
26084
+ // due to poor support by Safari browser.
26085
+ // > hljs.COMMENT(`(?<!${symbol})--+(?!${symbol})`, '$'),
26086
+ // So instead, we'll add a no-markup rule before the COMMENT rule in the rules list
26087
+ // to match the problematic infix operators that contain double dash.
26088
+ hljs.COMMENT("--+", "$"),
26074
26089
  hljs.COMMENT(
26075
26090
  /\{-/,
26076
26091
  /-\}/,
@@ -26113,10 +26128,6 @@ var require_haskell = __commonJS({
26113
26128
  end: /\}/,
26114
26129
  contains: LIST.contains
26115
26130
  };
26116
- const decimalDigits = "([0-9]_*)+";
26117
- const hexDigits = "([0-9a-fA-F]_*)+";
26118
- const binaryDigits = "([01]_*)+";
26119
- const octalDigits = "([0-7]_*)+";
26120
26131
  const NUMBER = {
26121
26132
  className: "number",
26122
26133
  relevance: 0,
@@ -26135,6 +26146,7 @@ var require_haskell = __commonJS({
26135
26146
  name: "Haskell",
26136
26147
  aliases: ["hs"],
26137
26148
  keywords: "let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",
26149
+ unicodeRegex: true,
26138
26150
  contains: [
26139
26151
  // Top-level constructions.
26140
26152
  {
@@ -26233,6 +26245,8 @@ var require_haskell = __commonJS({
26233
26245
  NUMBER,
26234
26246
  CONSTRUCTOR,
26235
26247
  hljs.inherit(hljs.TITLE_MODE, { begin: "^[_a-z][\\w']*" }),
26248
+ // No markup, prevents infix operators from being recognized as comments.
26249
+ { begin: `(?!-)${symbol}--+|--+(?!-)${symbol}` },
26236
26250
  COMMENT,
26237
26251
  {
26238
26252
  // No markup, relevance booster
@@ -26245,16 +26259,18 @@ var require_haskell = __commonJS({
26245
26259
  }
26246
26260
  });
26247
26261
 
26248
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/haxe.js
26262
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js
26249
26263
  var require_haxe = __commonJS({
26250
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/haxe.js"(exports, module) {
26264
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js"(exports, module) {
26251
26265
  function haxe(hljs) {
26266
+ const IDENT_RE = "[a-zA-Z_$][a-zA-Z0-9_$]*";
26267
+ const HAXE_NUMBER_RE = /(-?)(\b0[xX][a-fA-F0-9_]+|(\b\d+(\.[\d_]*)?|\.[\d_]+)(([eE][-+]?\d+)|i32|u32|i64|f64)?)/;
26252
26268
  const HAXE_BASIC_TYPES = "Int Float String Bool Dynamic Void Array ";
26253
26269
  return {
26254
26270
  name: "Haxe",
26255
26271
  aliases: ["hx"],
26256
26272
  keywords: {
26257
- keyword: "break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while " + HAXE_BASIC_TYPES,
26273
+ keyword: "abstract break case cast catch continue default do dynamic else enum extern final for function here if import in inline is macro never new override package private get set public return static super switch this throw trace try typedef untyped using var while " + HAXE_BASIC_TYPES,
26258
26274
  built_in: "trace this",
26259
26275
  literal: "true false null _"
26260
26276
  },
@@ -26269,13 +26285,13 @@ var require_haxe = __commonJS({
26269
26285
  {
26270
26286
  className: "subst",
26271
26287
  // interpolation
26272
- begin: "\\$\\{",
26273
- end: "\\}"
26288
+ begin: /\$\{/,
26289
+ end: /\}/
26274
26290
  },
26275
26291
  {
26276
26292
  className: "subst",
26277
26293
  // interpolation
26278
- begin: "\\$",
26294
+ begin: /\$/,
26279
26295
  end: /\W\}/
26280
26296
  }
26281
26297
  ]
@@ -26283,12 +26299,21 @@ var require_haxe = __commonJS({
26283
26299
  hljs.QUOTE_STRING_MODE,
26284
26300
  hljs.C_LINE_COMMENT_MODE,
26285
26301
  hljs.C_BLOCK_COMMENT_MODE,
26286
- hljs.C_NUMBER_MODE,
26302
+ {
26303
+ className: "number",
26304
+ begin: HAXE_NUMBER_RE,
26305
+ relevance: 0
26306
+ },
26307
+ {
26308
+ className: "variable",
26309
+ begin: "\\$" + IDENT_RE
26310
+ },
26287
26311
  {
26288
26312
  className: "meta",
26289
26313
  // compiler meta
26290
- begin: "@:",
26291
- end: "$"
26314
+ begin: /@:?/,
26315
+ end: /\(|$/,
26316
+ excludeEnd: true
26292
26317
  },
26293
26318
  {
26294
26319
  className: "meta",
@@ -26300,8 +26325,8 @@ var require_haxe = __commonJS({
26300
26325
  {
26301
26326
  className: "type",
26302
26327
  // function types
26303
- begin: ":[ ]*",
26304
- end: "[^A-Za-z0-9_ \\->]",
26328
+ begin: /:[ \t]*/,
26329
+ end: /[^A-Za-z0-9_ \t\->]/,
26305
26330
  excludeBegin: true,
26306
26331
  excludeEnd: true,
26307
26332
  relevance: 0
@@ -26309,50 +26334,50 @@ var require_haxe = __commonJS({
26309
26334
  {
26310
26335
  className: "type",
26311
26336
  // types
26312
- begin: ":[ ]*",
26313
- end: "\\W",
26337
+ begin: /:[ \t]*/,
26338
+ end: /\W/,
26314
26339
  excludeBegin: true,
26315
26340
  excludeEnd: true
26316
26341
  },
26317
26342
  {
26318
26343
  className: "type",
26319
26344
  // instantiation
26320
- begin: "new *",
26321
- end: "\\W",
26345
+ begin: /new */,
26346
+ end: /\W/,
26322
26347
  excludeBegin: true,
26323
26348
  excludeEnd: true
26324
26349
  },
26325
26350
  {
26326
- className: "class",
26351
+ className: "title.class",
26327
26352
  // enums
26328
26353
  beginKeywords: "enum",
26329
- end: "\\{",
26354
+ end: /\{/,
26330
26355
  contains: [hljs.TITLE_MODE]
26331
26356
  },
26332
26357
  {
26333
- className: "class",
26358
+ className: "title.class",
26334
26359
  // abstracts
26335
- beginKeywords: "abstract",
26336
- end: "[\\{$]",
26360
+ begin: "\\babstract\\b(?=\\s*" + hljs.IDENT_RE + "\\s*\\()",
26361
+ end: /[\{$]/,
26337
26362
  contains: [
26338
26363
  {
26339
26364
  className: "type",
26340
- begin: "\\(",
26341
- end: "\\)",
26365
+ begin: /\(/,
26366
+ end: /\)/,
26342
26367
  excludeBegin: true,
26343
26368
  excludeEnd: true
26344
26369
  },
26345
26370
  {
26346
26371
  className: "type",
26347
- begin: "from +",
26348
- end: "\\W",
26372
+ begin: /from +/,
26373
+ end: /\W/,
26349
26374
  excludeBegin: true,
26350
26375
  excludeEnd: true
26351
26376
  },
26352
26377
  {
26353
26378
  className: "type",
26354
- begin: "to +",
26355
- end: "\\W",
26379
+ begin: /to +/,
26380
+ end: /\W/,
26356
26381
  excludeBegin: true,
26357
26382
  excludeEnd: true
26358
26383
  },
@@ -26361,16 +26386,16 @@ var require_haxe = __commonJS({
26361
26386
  keywords: { keyword: "abstract from to" }
26362
26387
  },
26363
26388
  {
26364
- className: "class",
26389
+ className: "title.class",
26365
26390
  // classes
26366
- begin: "\\b(class|interface) +",
26367
- end: "[\\{$]",
26391
+ begin: /\b(class|interface) +/,
26392
+ end: /[\{$]/,
26368
26393
  excludeEnd: true,
26369
26394
  keywords: "class interface",
26370
26395
  contains: [
26371
26396
  {
26372
26397
  className: "keyword",
26373
- begin: "\\b(extends|implements) +",
26398
+ begin: /\b(extends|implements) +/,
26374
26399
  keywords: "extends implements",
26375
26400
  contains: [
26376
26401
  {
@@ -26384,11 +26409,11 @@ var require_haxe = __commonJS({
26384
26409
  ]
26385
26410
  },
26386
26411
  {
26387
- className: "function",
26412
+ className: "title.function",
26388
26413
  beginKeywords: "function",
26389
- end: "\\(",
26414
+ end: /\(/,
26390
26415
  excludeEnd: true,
26391
- illegal: "\\S",
26416
+ illegal: /\S/,
26392
26417
  contains: [hljs.TITLE_MODE]
26393
26418
  }
26394
26419
  ],
@@ -26399,9 +26424,9 @@ var require_haxe = __commonJS({
26399
26424
  }
26400
26425
  });
26401
26426
 
26402
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/hsp.js
26427
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js
26403
26428
  var require_hsp = __commonJS({
26404
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/hsp.js"(exports, module) {
26429
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js"(exports, module) {
26405
26430
  function hsp(hljs) {
26406
26431
  return {
26407
26432
  name: "HSP",
@@ -26451,9 +26476,9 @@ var require_hsp = __commonJS({
26451
26476
  }
26452
26477
  });
26453
26478
 
26454
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/http.js
26479
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js
26455
26480
  var require_http = __commonJS({
26456
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/http.js"(exports, module) {
26481
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js"(exports, module) {
26457
26482
  function http(hljs) {
26458
26483
  const regex = hljs.regex;
26459
26484
  const VERSION2 = "HTTP/([32]|1\\.[01])";
@@ -26544,9 +26569,9 @@ var require_http = __commonJS({
26544
26569
  }
26545
26570
  });
26546
26571
 
26547
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/hy.js
26572
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js
26548
26573
  var require_hy = __commonJS({
26549
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/hy.js"(exports, module) {
26574
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js"(exports, module) {
26550
26575
  function hy(hljs) {
26551
26576
  const SYMBOLSTART = "a-zA-Z_\\-!.?+*=<>&#'";
26552
26577
  const SYMBOL_RE = "[" + SYMBOLSTART + "][" + SYMBOLSTART + "0-9/;:]*";
@@ -26647,9 +26672,9 @@ var require_hy = __commonJS({
26647
26672
  }
26648
26673
  });
26649
26674
 
26650
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/inform7.js
26675
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js
26651
26676
  var require_inform7 = __commonJS({
26652
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/inform7.js"(exports, module) {
26677
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js"(exports, module) {
26653
26678
  function inform7(hljs) {
26654
26679
  const START_BRACKET = "\\[";
26655
26680
  const END_BRACKET = "\\]";
@@ -26709,9 +26734,9 @@ var require_inform7 = __commonJS({
26709
26734
  }
26710
26735
  });
26711
26736
 
26712
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ini.js
26737
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js
26713
26738
  var require_ini = __commonJS({
26714
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ini.js"(exports, module) {
26739
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js"(exports, module) {
26715
26740
  function ini(hljs) {
26716
26741
  const regex = hljs.regex;
26717
26742
  const NUMBERS = {
@@ -26830,9 +26855,9 @@ var require_ini = __commonJS({
26830
26855
  }
26831
26856
  });
26832
26857
 
26833
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/irpf90.js
26858
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js
26834
26859
  var require_irpf90 = __commonJS({
26835
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/irpf90.js"(exports, module) {
26860
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js"(exports, module) {
26836
26861
  function irpf90(hljs) {
26837
26862
  const regex = hljs.regex;
26838
26863
  const PARAMS = {
@@ -26889,9 +26914,9 @@ var require_irpf90 = __commonJS({
26889
26914
  }
26890
26915
  });
26891
26916
 
26892
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/isbl.js
26917
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js
26893
26918
  var require_isbl = __commonJS({
26894
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/isbl.js"(exports, module) {
26919
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js"(exports, module) {
26895
26920
  function isbl(hljs) {
26896
26921
  const UNDERSCORE_IDENT_RE = "[A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_!][A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_0-9]*";
26897
26922
  const FUNCTION_NAME_IDENT_RE = "[A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_][A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_0-9]*";
@@ -27151,9 +27176,9 @@ var require_isbl = __commonJS({
27151
27176
  }
27152
27177
  });
27153
27178
 
27154
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/java.js
27179
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js
27155
27180
  var require_java = __commonJS({
27156
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/java.js"(exports, module) {
27181
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js"(exports, module) {
27157
27182
  var decimalDigits = "[0-9](_*[0-9])*";
27158
27183
  var frac = `\\.(${decimalDigits})`;
27159
27184
  var hexDigits = "[0-9a-fA-F](_*[0-9a-fA-F])*";
@@ -27409,9 +27434,9 @@ var require_java = __commonJS({
27409
27434
  }
27410
27435
  });
27411
27436
 
27412
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/javascript.js
27437
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js
27413
27438
  var require_javascript = __commonJS({
27414
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/javascript.js"(exports, module) {
27439
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js"(exports, module) {
27415
27440
  var IDENT_RE = "[A-Za-z$_][0-9A-Za-z$_]*";
27416
27441
  var KEYWORDS = [
27417
27442
  "as",
@@ -28111,9 +28136,9 @@ var require_javascript = __commonJS({
28111
28136
  }
28112
28137
  });
28113
28138
 
28114
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/jboss-cli.js
28139
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js
28115
28140
  var require_jboss_cli = __commonJS({
28116
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/jboss-cli.js"(exports, module) {
28141
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js"(exports, module) {
28117
28142
  function jbossCli(hljs) {
28118
28143
  const PARAM = {
28119
28144
  begin: /[\w-]+ *=/,
@@ -28169,9 +28194,9 @@ var require_jboss_cli = __commonJS({
28169
28194
  }
28170
28195
  });
28171
28196
 
28172
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/json.js
28197
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js
28173
28198
  var require_json = __commonJS({
28174
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/json.js"(exports, module) {
28199
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js"(exports, module) {
28175
28200
  function json(hljs) {
28176
28201
  const ATTRIBUTE = {
28177
28202
  className: "attr",
@@ -28213,9 +28238,9 @@ var require_json = __commonJS({
28213
28238
  }
28214
28239
  });
28215
28240
 
28216
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/julia.js
28241
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js
28217
28242
  var require_julia = __commonJS({
28218
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/julia.js"(exports, module) {
28243
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js"(exports, module) {
28219
28244
  function julia(hljs) {
28220
28245
  const VARIABLE_NAME_RE = "[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*";
28221
28246
  const KEYWORD_LIST = [
@@ -28587,9 +28612,9 @@ var require_julia = __commonJS({
28587
28612
  }
28588
28613
  });
28589
28614
 
28590
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/julia-repl.js
28615
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js
28591
28616
  var require_julia_repl = __commonJS({
28592
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/julia-repl.js"(exports, module) {
28617
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js"(exports, module) {
28593
28618
  function juliaRepl(hljs) {
28594
28619
  return {
28595
28620
  name: "Julia REPL",
@@ -28618,9 +28643,9 @@ var require_julia_repl = __commonJS({
28618
28643
  }
28619
28644
  });
28620
28645
 
28621
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/kotlin.js
28646
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js
28622
28647
  var require_kotlin = __commonJS({
28623
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/kotlin.js"(exports, module) {
28648
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js"(exports, module) {
28624
28649
  var decimalDigits = "[0-9](_*[0-9])*";
28625
28650
  var frac = `\\.(${decimalDigits})`;
28626
28651
  var hexDigits = "[0-9a-fA-F](_*[0-9a-fA-F])*";
@@ -28878,9 +28903,9 @@ var require_kotlin = __commonJS({
28878
28903
  }
28879
28904
  });
28880
28905
 
28881
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lasso.js
28906
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js
28882
28907
  var require_lasso = __commonJS({
28883
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lasso.js"(exports, module) {
28908
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js"(exports, module) {
28884
28909
  function lasso(hljs) {
28885
28910
  const LASSO_IDENT_RE = "[a-zA-Z_][\\w.]*";
28886
28911
  const LASSO_ANGLE_RE = "<\\?(lasso(script)?|=)";
@@ -29028,9 +29053,9 @@ var require_lasso = __commonJS({
29028
29053
  }
29029
29054
  });
29030
29055
 
29031
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/latex.js
29056
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js
29032
29057
  var require_latex = __commonJS({
29033
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/latex.js"(exports, module) {
29058
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js"(exports, module) {
29034
29059
  function latex(hljs) {
29035
29060
  const regex = hljs.regex;
29036
29061
  const KNOWN_CONTROL_WORDS = regex.either(...[
@@ -29304,9 +29329,9 @@ var require_latex = __commonJS({
29304
29329
  }
29305
29330
  });
29306
29331
 
29307
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ldif.js
29332
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js
29308
29333
  var require_ldif = __commonJS({
29309
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ldif.js"(exports, module) {
29334
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js"(exports, module) {
29310
29335
  function ldif(hljs) {
29311
29336
  return {
29312
29337
  name: "LDIF",
@@ -29332,46 +29357,93 @@ var require_ldif = __commonJS({
29332
29357
  }
29333
29358
  });
29334
29359
 
29335
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/leaf.js
29360
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js
29336
29361
  var require_leaf = __commonJS({
29337
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/leaf.js"(exports, module) {
29362
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js"(exports, module) {
29338
29363
  function leaf(hljs) {
29364
+ const IDENT = /([A-Za-z_][A-Za-z_0-9]*)?/;
29365
+ const LITERALS = [
29366
+ "true",
29367
+ "false",
29368
+ "in"
29369
+ ];
29370
+ const PARAMS = {
29371
+ scope: "params",
29372
+ begin: /\(/,
29373
+ end: /\)(?=\:?)/,
29374
+ endsParent: true,
29375
+ relevance: 7,
29376
+ contains: [
29377
+ {
29378
+ scope: "string",
29379
+ begin: '"',
29380
+ end: '"'
29381
+ },
29382
+ {
29383
+ scope: "keyword",
29384
+ match: LITERALS.join("|")
29385
+ },
29386
+ {
29387
+ scope: "variable",
29388
+ match: /[A-Za-z_][A-Za-z_0-9]*/
29389
+ },
29390
+ {
29391
+ scope: "operator",
29392
+ match: /\+|\-|\*|\/|\%|\=\=|\=|\!|\>|\<|\&\&|\|\|/
29393
+ }
29394
+ ]
29395
+ };
29396
+ const INSIDE_DISPATCH = {
29397
+ match: [
29398
+ IDENT,
29399
+ /(?=\()/
29400
+ ],
29401
+ scope: {
29402
+ 1: "keyword"
29403
+ },
29404
+ contains: [PARAMS]
29405
+ };
29406
+ PARAMS.contains.unshift(INSIDE_DISPATCH);
29339
29407
  return {
29340
29408
  name: "Leaf",
29341
29409
  contains: [
29410
+ // #ident():
29342
29411
  {
29343
- className: "function",
29344
- begin: "#+[A-Za-z_0-9]*\\(",
29345
- end: / \{/,
29346
- returnBegin: true,
29347
- excludeEnd: true,
29412
+ match: [
29413
+ /#+/,
29414
+ IDENT,
29415
+ /(?=\()/
29416
+ ],
29417
+ scope: {
29418
+ 1: "punctuation",
29419
+ 2: "keyword"
29420
+ },
29421
+ // will start up after the ending `)` match from line ~44
29422
+ // just to grab the trailing `:` if we can match it
29423
+ starts: {
29424
+ contains: [
29425
+ {
29426
+ match: /\:/,
29427
+ scope: "punctuation"
29428
+ }
29429
+ ]
29430
+ },
29348
29431
  contains: [
29349
- {
29350
- className: "keyword",
29351
- begin: "#+"
29352
- },
29353
- {
29354
- className: "title",
29355
- begin: "[A-Za-z_][A-Za-z_0-9]*"
29356
- },
29357
- {
29358
- className: "params",
29359
- begin: "\\(",
29360
- end: "\\)",
29361
- endsParent: true,
29362
- contains: [
29363
- {
29364
- className: "string",
29365
- begin: '"',
29366
- end: '"'
29367
- },
29368
- {
29369
- className: "variable",
29370
- begin: "[A-Za-z_][A-Za-z_0-9]*"
29371
- }
29372
- ]
29373
- }
29432
+ PARAMS
29374
29433
  ]
29434
+ },
29435
+ // #ident or #ident:
29436
+ {
29437
+ match: [
29438
+ /#+/,
29439
+ IDENT,
29440
+ /:?/
29441
+ ],
29442
+ scope: {
29443
+ 1: "punctuation",
29444
+ 2: "keyword",
29445
+ 3: "punctuation"
29446
+ }
29375
29447
  }
29376
29448
  ]
29377
29449
  };
@@ -29380,9 +29452,9 @@ var require_leaf = __commonJS({
29380
29452
  }
29381
29453
  });
29382
29454
 
29383
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/less.js
29455
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js
29384
29456
  var require_less = __commonJS({
29385
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/less.js"(exports, module) {
29457
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js"(exports, module) {
29386
29458
  var MODES = (hljs) => {
29387
29459
  return {
29388
29460
  IMPORTANT: {
@@ -29415,7 +29487,7 @@ var require_less = __commonJS({
29415
29487
  },
29416
29488
  CSS_VARIABLE: {
29417
29489
  className: "attr",
29418
- begin: /--[A-Za-z][A-Za-z0-9_-]*/
29490
+ begin: /--[A-Za-z_][A-Za-z0-9_-]*/
29419
29491
  }
29420
29492
  };
29421
29493
  };
@@ -30197,9 +30269,9 @@ var require_less = __commonJS({
30197
30269
  }
30198
30270
  });
30199
30271
 
30200
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lisp.js
30272
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js
30201
30273
  var require_lisp = __commonJS({
30202
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lisp.js"(exports, module) {
30274
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js"(exports, module) {
30203
30275
  function lisp(hljs) {
30204
30276
  const LISP_IDENT_RE = "[a-zA-Z_\\-+\\*\\/<=>&#][a-zA-Z0-9_\\-+*\\/<=>&#!]*";
30205
30277
  const MEC_RE = "\\|[^]*?\\|";
@@ -30334,9 +30406,9 @@ var require_lisp = __commonJS({
30334
30406
  }
30335
30407
  });
30336
30408
 
30337
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/livecodeserver.js
30409
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js
30338
30410
  var require_livecodeserver = __commonJS({
30339
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/livecodeserver.js"(exports, module) {
30411
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js"(exports, module) {
30340
30412
  function livecodeserver(hljs) {
30341
30413
  const VARIABLE = {
30342
30414
  className: "variable",
@@ -30433,9 +30505,9 @@ var require_livecodeserver = __commonJS({
30433
30505
  }
30434
30506
  });
30435
30507
 
30436
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/livescript.js
30508
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js
30437
30509
  var require_livescript = __commonJS({
30438
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/livescript.js"(exports, module) {
30510
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js"(exports, module) {
30439
30511
  var KEYWORDS = [
30440
30512
  "as",
30441
30513
  // for exports
@@ -30797,9 +30869,9 @@ var require_livescript = __commonJS({
30797
30869
  }
30798
30870
  });
30799
30871
 
30800
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/llvm.js
30872
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js
30801
30873
  var require_llvm = __commonJS({
30802
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/llvm.js"(exports, module) {
30874
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js"(exports, module) {
30803
30875
  function llvm(hljs) {
30804
30876
  const regex = hljs.regex;
30805
30877
  const IDENT_RE = /([-a-zA-Z$._][\w$.-]*)/;
@@ -30888,9 +30960,9 @@ var require_llvm = __commonJS({
30888
30960
  }
30889
30961
  });
30890
30962
 
30891
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lsl.js
30963
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js
30892
30964
  var require_lsl = __commonJS({
30893
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lsl.js"(exports, module) {
30965
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js"(exports, module) {
30894
30966
  function lsl(hljs) {
30895
30967
  const LSL_STRING_ESCAPE_CHARS = {
30896
30968
  className: "subst",
@@ -30956,9 +31028,9 @@ var require_lsl = __commonJS({
30956
31028
  }
30957
31029
  });
30958
31030
 
30959
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lua.js
31031
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js
30960
31032
  var require_lua = __commonJS({
30961
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/lua.js"(exports, module) {
31033
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js"(exports, module) {
30962
31034
  function lua(hljs) {
30963
31035
  const OPENING_LONG_BRACKET = "\\[=*\\[";
30964
31036
  const CLOSING_LONG_BRACKET = "\\]=*\\]";
@@ -31021,9 +31093,9 @@ var require_lua = __commonJS({
31021
31093
  }
31022
31094
  });
31023
31095
 
31024
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/makefile.js
31096
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js
31025
31097
  var require_makefile = __commonJS({
31026
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/makefile.js"(exports, module) {
31098
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js"(exports, module) {
31027
31099
  function makefile(hljs) {
31028
31100
  const VARIABLE = {
31029
31101
  className: "variable",
@@ -31093,9 +31165,9 @@ var require_makefile = __commonJS({
31093
31165
  }
31094
31166
  });
31095
31167
 
31096
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mathematica.js
31168
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js
31097
31169
  var require_mathematica = __commonJS({
31098
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mathematica.js"(exports, module) {
31170
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js"(exports, module) {
31099
31171
  var SYSTEM_SYMBOLS = [
31100
31172
  "AASTriangle",
31101
31173
  "AbelianGroup",
@@ -38431,9 +38503,9 @@ var require_mathematica = __commonJS({
38431
38503
  }
38432
38504
  });
38433
38505
 
38434
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/matlab.js
38506
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js
38435
38507
  var require_matlab = __commonJS({
38436
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/matlab.js"(exports, module) {
38508
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js"(exports, module) {
38437
38509
  function matlab(hljs) {
38438
38510
  const TRANSPOSE_RE = "('|\\.')+";
38439
38511
  const TRANSPOSE = {
@@ -38512,9 +38584,9 @@ var require_matlab = __commonJS({
38512
38584
  }
38513
38585
  });
38514
38586
 
38515
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/maxima.js
38587
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js
38516
38588
  var require_maxima = __commonJS({
38517
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/maxima.js"(exports, module) {
38589
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js"(exports, module) {
38518
38590
  function maxima(hljs) {
38519
38591
  const KEYWORDS = "if then else elseif for thru do while unless step in and or not";
38520
38592
  const LITERALS = "true false unknown inf minf ind und %e %i %pi %phi %gamma";
@@ -38571,9 +38643,9 @@ var require_maxima = __commonJS({
38571
38643
  }
38572
38644
  });
38573
38645
 
38574
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mel.js
38646
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js
38575
38647
  var require_mel = __commonJS({
38576
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mel.js"(exports, module) {
38648
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js"(exports, module) {
38577
38649
  function mel(hljs) {
38578
38650
  return {
38579
38651
  name: "MEL",
@@ -38602,9 +38674,9 @@ var require_mel = __commonJS({
38602
38674
  }
38603
38675
  });
38604
38676
 
38605
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mercury.js
38677
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js
38606
38678
  var require_mercury = __commonJS({
38607
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mercury.js"(exports, module) {
38679
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js"(exports, module) {
38608
38680
  function mercury(hljs) {
38609
38681
  const KEYWORDS = {
38610
38682
  keyword: "module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure",
@@ -38685,9 +38757,9 @@ var require_mercury = __commonJS({
38685
38757
  }
38686
38758
  });
38687
38759
 
38688
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mipsasm.js
38760
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js
38689
38761
  var require_mipsasm = __commonJS({
38690
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mipsasm.js"(exports, module) {
38762
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js"(exports, module) {
38691
38763
  function mipsasm(hljs) {
38692
38764
  return {
38693
38765
  name: "MIPS Assembly",
@@ -38766,9 +38838,9 @@ var require_mipsasm = __commonJS({
38766
38838
  }
38767
38839
  });
38768
38840
 
38769
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mizar.js
38841
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js
38770
38842
  var require_mizar = __commonJS({
38771
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mizar.js"(exports, module) {
38843
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js"(exports, module) {
38772
38844
  function mizar(hljs) {
38773
38845
  return {
38774
38846
  name: "Mizar",
@@ -38780,9 +38852,9 @@ var require_mizar = __commonJS({
38780
38852
  }
38781
38853
  });
38782
38854
 
38783
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/perl.js
38855
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js
38784
38856
  var require_perl = __commonJS({
38785
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/perl.js"(exports, module) {
38857
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js"(exports, module) {
38786
38858
  function perl(hljs) {
38787
38859
  const regex = hljs.regex;
38788
38860
  const KEYWORDS = [
@@ -39236,9 +39308,9 @@ var require_perl = __commonJS({
39236
39308
  }
39237
39309
  });
39238
39310
 
39239
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mojolicious.js
39311
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js
39240
39312
  var require_mojolicious = __commonJS({
39241
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/mojolicious.js"(exports, module) {
39313
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js"(exports, module) {
39242
39314
  function mojolicious(hljs) {
39243
39315
  return {
39244
39316
  name: "Mojolicious",
@@ -39269,9 +39341,9 @@ var require_mojolicious = __commonJS({
39269
39341
  }
39270
39342
  });
39271
39343
 
39272
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/monkey.js
39344
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js
39273
39345
  var require_monkey = __commonJS({
39274
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/monkey.js"(exports, module) {
39346
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js"(exports, module) {
39275
39347
  function monkey(hljs) {
39276
39348
  const NUMBER = {
39277
39349
  className: "number",
@@ -39449,9 +39521,9 @@ var require_monkey = __commonJS({
39449
39521
  }
39450
39522
  });
39451
39523
 
39452
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/moonscript.js
39524
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js
39453
39525
  var require_moonscript = __commonJS({
39454
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/moonscript.js"(exports, module) {
39526
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js"(exports, module) {
39455
39527
  function moonscript(hljs) {
39456
39528
  const KEYWORDS = {
39457
39529
  keyword: (
@@ -39589,9 +39661,9 @@ var require_moonscript = __commonJS({
39589
39661
  }
39590
39662
  });
39591
39663
 
39592
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/n1ql.js
39664
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js
39593
39665
  var require_n1ql = __commonJS({
39594
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/n1ql.js"(exports, module) {
39666
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js"(exports, module) {
39595
39667
  function n1ql(hljs) {
39596
39668
  const KEYWORDS = [
39597
39669
  "all",
@@ -39945,9 +40017,9 @@ var require_n1ql = __commonJS({
39945
40017
  }
39946
40018
  });
39947
40019
 
39948
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nestedtext.js
40020
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js
39949
40021
  var require_nestedtext = __commonJS({
39950
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nestedtext.js"(exports, module) {
40022
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js"(exports, module) {
39951
40023
  function nestedtext(hljs) {
39952
40024
  const NESTED = {
39953
40025
  match: [
@@ -40026,9 +40098,9 @@ var require_nestedtext = __commonJS({
40026
40098
  }
40027
40099
  });
40028
40100
 
40029
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nginx.js
40101
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js
40030
40102
  var require_nginx = __commonJS({
40031
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nginx.js"(exports, module) {
40103
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js"(exports, module) {
40032
40104
  function nginx(hljs) {
40033
40105
  const regex = hljs.regex;
40034
40106
  const VAR = {
@@ -40174,9 +40246,9 @@ var require_nginx = __commonJS({
40174
40246
  }
40175
40247
  });
40176
40248
 
40177
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nim.js
40249
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js
40178
40250
  var require_nim = __commonJS({
40179
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nim.js"(exports, module) {
40251
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js"(exports, module) {
40180
40252
  function nim(hljs) {
40181
40253
  const TYPES = [
40182
40254
  "int",
@@ -40358,9 +40430,9 @@ var require_nim = __commonJS({
40358
40430
  }
40359
40431
  });
40360
40432
 
40361
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nix.js
40433
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js
40362
40434
  var require_nix = __commonJS({
40363
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nix.js"(exports, module) {
40435
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js"(exports, module) {
40364
40436
  function nix(hljs) {
40365
40437
  const KEYWORDS = {
40366
40438
  keyword: [
@@ -40450,9 +40522,9 @@ var require_nix = __commonJS({
40450
40522
  }
40451
40523
  });
40452
40524
 
40453
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/node-repl.js
40525
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js
40454
40526
  var require_node_repl = __commonJS({
40455
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/node-repl.js"(exports, module) {
40527
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js"(exports, module) {
40456
40528
  function nodeRepl(hljs) {
40457
40529
  return {
40458
40530
  name: "Node REPL",
@@ -40480,9 +40552,9 @@ var require_node_repl = __commonJS({
40480
40552
  }
40481
40553
  });
40482
40554
 
40483
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nsis.js
40555
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js
40484
40556
  var require_nsis = __commonJS({
40485
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/nsis.js"(exports, module) {
40557
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js"(exports, module) {
40486
40558
  function nsis(hljs) {
40487
40559
  const regex = hljs.regex;
40488
40560
  const LANGUAGE_CONSTANTS = [
@@ -40588,6 +40660,7 @@ var require_nsis = __commonJS({
40588
40660
  "addincludedir",
40589
40661
  "addplugindir",
40590
40662
  "appendfile",
40663
+ "assert",
40591
40664
  "cd",
40592
40665
  "define",
40593
40666
  "delfile",
@@ -41014,9 +41087,9 @@ var require_nsis = __commonJS({
41014
41087
  }
41015
41088
  });
41016
41089
 
41017
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/objectivec.js
41090
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js
41018
41091
  var require_objectivec = __commonJS({
41019
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/objectivec.js"(exports, module) {
41092
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js"(exports, module) {
41020
41093
  function objectivec(hljs) {
41021
41094
  const API_CLASS = {
41022
41095
  className: "built_in",
@@ -41262,9 +41335,9 @@ var require_objectivec = __commonJS({
41262
41335
  }
41263
41336
  });
41264
41337
 
41265
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ocaml.js
41338
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js
41266
41339
  var require_ocaml = __commonJS({
41267
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ocaml.js"(exports, module) {
41340
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js"(exports, module) {
41268
41341
  function ocaml(hljs) {
41269
41342
  return {
41270
41343
  name: "OCaml",
@@ -41333,9 +41406,9 @@ var require_ocaml = __commonJS({
41333
41406
  }
41334
41407
  });
41335
41408
 
41336
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/openscad.js
41409
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js
41337
41410
  var require_openscad = __commonJS({
41338
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/openscad.js"(exports, module) {
41411
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js"(exports, module) {
41339
41412
  function openscad(hljs) {
41340
41413
  const SPECIAL_VARS = {
41341
41414
  className: "keyword",
@@ -41407,9 +41480,9 @@ var require_openscad = __commonJS({
41407
41480
  }
41408
41481
  });
41409
41482
 
41410
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/oxygene.js
41483
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js
41411
41484
  var require_oxygene = __commonJS({
41412
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/oxygene.js"(exports, module) {
41485
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js"(exports, module) {
41413
41486
  function oxygene(hljs) {
41414
41487
  const OXYGENE_KEYWORDS = {
41415
41488
  $pattern: /\.?\w+/,
@@ -41481,9 +41554,9 @@ var require_oxygene = __commonJS({
41481
41554
  }
41482
41555
  });
41483
41556
 
41484
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/parser3.js
41557
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js
41485
41558
  var require_parser3 = __commonJS({
41486
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/parser3.js"(exports, module) {
41559
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js"(exports, module) {
41487
41560
  function parser3(hljs) {
41488
41561
  const CURLY_SUBCOMMENT = hljs.COMMENT(
41489
41562
  /\{/,
@@ -41533,9 +41606,9 @@ var require_parser3 = __commonJS({
41533
41606
  }
41534
41607
  });
41535
41608
 
41536
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/pf.js
41609
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js
41537
41610
  var require_pf = __commonJS({
41538
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/pf.js"(exports, module) {
41611
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js"(exports, module) {
41539
41612
  function pf(hljs) {
41540
41613
  const MACRO = {
41541
41614
  className: "variable",
@@ -41574,9 +41647,9 @@ var require_pf = __commonJS({
41574
41647
  }
41575
41648
  });
41576
41649
 
41577
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/pgsql.js
41650
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js
41578
41651
  var require_pgsql = __commonJS({
41579
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/pgsql.js"(exports, module) {
41652
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js"(exports, module) {
41580
41653
  function pgsql(hljs) {
41581
41654
  const COMMENT_MODE = hljs.COMMENT("--", "$");
41582
41655
  const UNQUOTED_IDENT = "[a-zA-Z_][a-zA-Z_0-9$]*";
@@ -41859,9 +41932,9 @@ var require_pgsql = __commonJS({
41859
41932
  }
41860
41933
  });
41861
41934
 
41862
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/php.js
41935
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js
41863
41936
  var require_php = __commonJS({
41864
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/php.js"(exports, module) {
41937
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js"(exports, module) {
41865
41938
  function php(hljs) {
41866
41939
  const regex = hljs.regex;
41867
41940
  const NOT_PERL_ETC = /(?![A-Za-z0-9])(?![$])/;
@@ -42452,9 +42525,9 @@ var require_php = __commonJS({
42452
42525
  }
42453
42526
  });
42454
42527
 
42455
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/php-template.js
42528
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js
42456
42529
  var require_php_template = __commonJS({
42457
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/php-template.js"(exports, module) {
42530
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js"(exports, module) {
42458
42531
  function phpTemplate(hljs) {
42459
42532
  return {
42460
42533
  name: "PHP template",
@@ -42503,9 +42576,9 @@ var require_php_template = __commonJS({
42503
42576
  }
42504
42577
  });
42505
42578
 
42506
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/plaintext.js
42579
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js
42507
42580
  var require_plaintext = __commonJS({
42508
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/plaintext.js"(exports, module) {
42581
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js"(exports, module) {
42509
42582
  function plaintext(hljs) {
42510
42583
  return {
42511
42584
  name: "Plain text",
@@ -42520,9 +42593,9 @@ var require_plaintext = __commonJS({
42520
42593
  }
42521
42594
  });
42522
42595
 
42523
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/pony.js
42596
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js
42524
42597
  var require_pony = __commonJS({
42525
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/pony.js"(exports, module) {
42598
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js"(exports, module) {
42526
42599
  function pony(hljs) {
42527
42600
  const KEYWORDS = {
42528
42601
  keyword: "actor addressof and as be break class compile_error compile_intrinsic consume continue delegate digestof do else elseif embed end error for fun if ifdef in interface is isnt lambda let match new not object or primitive recover repeat return struct then trait try type until use var where while with xor",
@@ -42581,9 +42654,9 @@ var require_pony = __commonJS({
42581
42654
  }
42582
42655
  });
42583
42656
 
42584
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/powershell.js
42657
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js
42585
42658
  var require_powershell = __commonJS({
42586
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/powershell.js"(exports, module) {
42659
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js"(exports, module) {
42587
42660
  function powershell(hljs) {
42588
42661
  const TYPES = [
42589
42662
  "string",
@@ -42842,9 +42915,9 @@ var require_powershell = __commonJS({
42842
42915
  }
42843
42916
  });
42844
42917
 
42845
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/processing.js
42918
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js
42846
42919
  var require_processing = __commonJS({
42847
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/processing.js"(exports, module) {
42920
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js"(exports, module) {
42848
42921
  function processing(hljs) {
42849
42922
  const regex = hljs.regex;
42850
42923
  const BUILT_INS = [
@@ -43273,9 +43346,9 @@ var require_processing = __commonJS({
43273
43346
  }
43274
43347
  });
43275
43348
 
43276
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/profile.js
43349
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js
43277
43350
  var require_profile = __commonJS({
43278
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/profile.js"(exports, module) {
43351
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js"(exports, module) {
43279
43352
  function profile(hljs) {
43280
43353
  return {
43281
43354
  name: "Python profiler",
@@ -43315,9 +43388,9 @@ var require_profile = __commonJS({
43315
43388
  }
43316
43389
  });
43317
43390
 
43318
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/prolog.js
43391
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js
43319
43392
  var require_prolog = __commonJS({
43320
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/prolog.js"(exports, module) {
43393
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js"(exports, module) {
43321
43394
  function prolog(hljs) {
43322
43395
  const ATOM = {
43323
43396
  begin: /[a-z][A-Za-z0-9_]*/,
@@ -43397,9 +43470,9 @@ var require_prolog = __commonJS({
43397
43470
  }
43398
43471
  });
43399
43472
 
43400
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/properties.js
43473
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js
43401
43474
  var require_properties = __commonJS({
43402
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/properties.js"(exports, module) {
43475
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js"(exports, module) {
43403
43476
  function properties(hljs) {
43404
43477
  const WS0 = "[ \\t\\f]*";
43405
43478
  const WS1 = "[ \\t\\f]+";
@@ -43458,9 +43531,9 @@ var require_properties = __commonJS({
43458
43531
  }
43459
43532
  });
43460
43533
 
43461
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/protobuf.js
43534
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js
43462
43535
  var require_protobuf = __commonJS({
43463
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/protobuf.js"(exports, module) {
43536
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js"(exports, module) {
43464
43537
  function protobuf(hljs) {
43465
43538
  const KEYWORDS = [
43466
43539
  "package",
@@ -43535,9 +43608,9 @@ var require_protobuf = __commonJS({
43535
43608
  }
43536
43609
  });
43537
43610
 
43538
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/puppet.js
43611
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js
43539
43612
  var require_puppet = __commonJS({
43540
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/puppet.js"(exports, module) {
43613
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js"(exports, module) {
43541
43614
  function puppet(hljs) {
43542
43615
  const PUPPET_KEYWORDS = {
43543
43616
  keyword: (
@@ -43651,9 +43724,9 @@ var require_puppet = __commonJS({
43651
43724
  }
43652
43725
  });
43653
43726
 
43654
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/purebasic.js
43727
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js
43655
43728
  var require_purebasic = __commonJS({
43656
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/purebasic.js"(exports, module) {
43729
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js"(exports, module) {
43657
43730
  function purebasic(hljs) {
43658
43731
  const STRINGS = {
43659
43732
  // PB IDE color: #0080FF (Azure Radiance)
@@ -43715,9 +43788,9 @@ var require_purebasic = __commonJS({
43715
43788
  }
43716
43789
  });
43717
43790
 
43718
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/python.js
43791
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js
43719
43792
  var require_python = __commonJS({
43720
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/python.js"(exports, module) {
43793
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js"(exports, module) {
43721
43794
  function python(hljs) {
43722
43795
  const regex = hljs.regex;
43723
43796
  const IDENT_RE = /[\p{XID_Start}_]\p{XID_Continue}*/u;
@@ -44133,9 +44206,9 @@ var require_python = __commonJS({
44133
44206
  }
44134
44207
  });
44135
44208
 
44136
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/python-repl.js
44209
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js
44137
44210
  var require_python_repl = __commonJS({
44138
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/python-repl.js"(exports, module) {
44211
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js"(exports, module) {
44139
44212
  function pythonRepl(hljs) {
44140
44213
  return {
44141
44214
  aliases: ["pycon"],
@@ -44163,9 +44236,9 @@ var require_python_repl = __commonJS({
44163
44236
  }
44164
44237
  });
44165
44238
 
44166
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/q.js
44239
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js
44167
44240
  var require_q = __commonJS({
44168
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/q.js"(exports, module) {
44241
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js"(exports, module) {
44169
44242
  function q(hljs) {
44170
44243
  const KEYWORDS = {
44171
44244
  $pattern: /(`?)[A-Za-z0-9_]+\b/,
@@ -44192,9 +44265,9 @@ var require_q = __commonJS({
44192
44265
  }
44193
44266
  });
44194
44267
 
44195
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/qml.js
44268
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js
44196
44269
  var require_qml = __commonJS({
44197
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/qml.js"(exports, module) {
44270
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js"(exports, module) {
44198
44271
  function qml(hljs) {
44199
44272
  const regex = hljs.regex;
44200
44273
  const KEYWORDS = {
@@ -44345,9 +44418,9 @@ var require_qml = __commonJS({
44345
44418
  }
44346
44419
  });
44347
44420
 
44348
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/r.js
44421
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js
44349
44422
  var require_r = __commonJS({
44350
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/r.js"(exports, module) {
44423
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js"(exports, module) {
44351
44424
  function r6(hljs) {
44352
44425
  const regex = hljs.regex;
44353
44426
  const IDENT_RE = /(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/;
@@ -44560,276 +44633,143 @@ var require_r = __commonJS({
44560
44633
  }
44561
44634
  });
44562
44635
 
44563
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/reasonml.js
44636
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js
44564
44637
  var require_reasonml = __commonJS({
44565
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/reasonml.js"(exports, module) {
44638
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js"(exports, module) {
44566
44639
  function reasonml(hljs) {
44567
- function orReValues(ops2) {
44568
- return ops2.map(function(op) {
44569
- return op.split("").map(function(char) {
44570
- return "\\" + char;
44571
- }).join("");
44572
- }).join("|");
44573
- }
44574
- const RE_IDENT = "~?[a-z$_][0-9a-zA-Z$_]*";
44575
- const RE_MODULE_IDENT = "`?[A-Z$_][0-9a-zA-Z$_]*";
44576
- const RE_PARAM_TYPEPARAM = "'?[a-z$_][0-9a-z$_]*";
44577
- const RE_PARAM_TYPE = "\\s*:\\s*[a-z$_][0-9a-z$_]*(\\(\\s*(" + RE_PARAM_TYPEPARAM + "\\s*(," + RE_PARAM_TYPEPARAM + "\\s*)*)?\\))?";
44578
- const RE_PARAM = RE_IDENT + "(" + RE_PARAM_TYPE + "){0,2}";
44579
- const RE_OPERATOR = "(" + orReValues([
44580
- "||",
44581
- "++",
44582
- "**",
44583
- "+.",
44584
- "*",
44585
- "/",
44586
- "*.",
44587
- "/.",
44588
- "..."
44589
- ]) + "|\\|>|&&|==|===)";
44590
- const RE_OPERATOR_SPACED = "\\s+" + RE_OPERATOR + "\\s+";
44591
- const KEYWORDS = {
44592
- keyword: "and as asr assert begin class constraint do done downto else end exception external for fun function functor if in include inherit initializer land lazy let lor lsl lsr lxor match method mod module mutable new nonrec object of open or private rec sig struct then to try type val virtual when while with",
44593
- built_in: "array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 ref string unit ",
44594
- literal: "true false"
44595
- };
44596
- const RE_NUMBER = "\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)";
44597
- const NUMBER_MODE = {
44598
- className: "number",
44599
- relevance: 0,
44600
- variants: [
44601
- { begin: RE_NUMBER },
44602
- { begin: "\\(-" + RE_NUMBER + "\\)" }
44603
- ]
44604
- };
44605
- const OPERATOR_MODE = {
44606
- className: "operator",
44607
- relevance: 0,
44608
- begin: RE_OPERATOR
44609
- };
44610
- const LIST_CONTENTS_MODES = [
44611
- {
44612
- className: "identifier",
44613
- relevance: 0,
44614
- begin: RE_IDENT
44615
- },
44616
- OPERATOR_MODE,
44617
- NUMBER_MODE
44618
- ];
44619
- const MODULE_ACCESS_CONTENTS = [
44620
- hljs.QUOTE_STRING_MODE,
44621
- OPERATOR_MODE,
44622
- {
44623
- className: "module",
44624
- begin: "\\b" + RE_MODULE_IDENT,
44625
- returnBegin: true,
44626
- relevance: 0,
44627
- end: ".",
44628
- contains: [
44629
- {
44630
- className: "identifier",
44631
- begin: RE_MODULE_IDENT,
44632
- relevance: 0
44633
- }
44634
- ]
44635
- }
44636
- ];
44637
- const PARAMS_CONTENTS = [
44638
- {
44639
- className: "module",
44640
- begin: "\\b" + RE_MODULE_IDENT,
44641
- returnBegin: true,
44642
- end: ".",
44643
- relevance: 0,
44644
- contains: [
44645
- {
44646
- className: "identifier",
44647
- begin: RE_MODULE_IDENT,
44648
- relevance: 0
44649
- }
44650
- ]
44651
- }
44640
+ const BUILT_IN_TYPES = [
44641
+ "array",
44642
+ "bool",
44643
+ "bytes",
44644
+ "char",
44645
+ "exn|5",
44646
+ "float",
44647
+ "int",
44648
+ "int32",
44649
+ "int64",
44650
+ "list",
44651
+ "lazy_t|5",
44652
+ "nativeint|5",
44653
+ "ref",
44654
+ "string",
44655
+ "unit"
44652
44656
  ];
44653
- const PARAMS_MODE = {
44654
- begin: RE_IDENT,
44655
- end: "(,|\\n|\\))",
44656
- relevance: 0,
44657
- contains: [
44658
- OPERATOR_MODE,
44659
- {
44660
- className: "typing",
44661
- begin: ":",
44662
- end: "(,|\\n)",
44663
- returnBegin: true,
44664
- relevance: 0,
44665
- contains: PARAMS_CONTENTS
44666
- }
44667
- ]
44668
- };
44669
- const FUNCTION_BLOCK_MODE = {
44670
- className: "function",
44671
- relevance: 0,
44672
- keywords: KEYWORDS,
44673
- variants: [
44674
- {
44675
- begin: "\\s(\\(\\.?.*?\\)|" + RE_IDENT + ")\\s*=>",
44676
- end: "\\s*=>",
44677
- returnBegin: true,
44678
- relevance: 0,
44679
- contains: [
44680
- {
44681
- className: "params",
44682
- variants: [
44683
- { begin: RE_IDENT },
44684
- { begin: RE_PARAM },
44685
- { begin: /\(\s*\)/ }
44686
- ]
44687
- }
44688
- ]
44689
- },
44690
- {
44691
- begin: "\\s\\(\\.?[^;\\|]*\\)\\s*=>",
44692
- end: "\\s=>",
44693
- returnBegin: true,
44694
- relevance: 0,
44695
- contains: [
44696
- {
44697
- className: "params",
44698
- relevance: 0,
44699
- variants: [PARAMS_MODE]
44700
- }
44701
- ]
44702
- },
44703
- { begin: "\\(\\.\\s" + RE_IDENT + "\\)\\s*=>" }
44704
- ]
44705
- };
44706
- MODULE_ACCESS_CONTENTS.push(FUNCTION_BLOCK_MODE);
44707
- const CONSTRUCTOR_MODE = {
44708
- className: "constructor",
44709
- begin: RE_MODULE_IDENT + "\\(",
44710
- end: "\\)",
44711
- illegal: "\\n",
44712
- keywords: KEYWORDS,
44713
- contains: [
44714
- hljs.QUOTE_STRING_MODE,
44715
- OPERATOR_MODE,
44716
- {
44717
- className: "params",
44718
- begin: "\\b" + RE_IDENT
44719
- }
44720
- ]
44721
- };
44722
- const PATTERN_MATCH_BLOCK_MODE = {
44723
- className: "pattern-match",
44724
- begin: "\\|",
44725
- returnBegin: true,
44726
- keywords: KEYWORDS,
44727
- end: "=>",
44728
- relevance: 0,
44729
- contains: [
44730
- CONSTRUCTOR_MODE,
44731
- OPERATOR_MODE,
44732
- {
44733
- relevance: 0,
44734
- className: "constructor",
44735
- begin: RE_MODULE_IDENT
44736
- }
44737
- ]
44738
- };
44739
- const MODULE_ACCESS_MODE = {
44740
- className: "module-access",
44741
- keywords: KEYWORDS,
44742
- returnBegin: true,
44743
- variants: [
44744
- { begin: "\\b(" + RE_MODULE_IDENT + "\\.)+" + RE_IDENT },
44745
- {
44746
- begin: "\\b(" + RE_MODULE_IDENT + "\\.)+\\(",
44747
- end: "\\)",
44748
- returnBegin: true,
44749
- contains: [
44750
- FUNCTION_BLOCK_MODE,
44751
- {
44752
- begin: "\\(",
44753
- end: "\\)",
44754
- relevance: 0,
44755
- skip: true
44756
- }
44757
- ].concat(MODULE_ACCESS_CONTENTS)
44758
- },
44759
- {
44760
- begin: "\\b(" + RE_MODULE_IDENT + "\\.)+\\{",
44761
- end: /\}/
44762
- }
44763
- ],
44764
- contains: MODULE_ACCESS_CONTENTS
44765
- };
44766
- PARAMS_CONTENTS.push(MODULE_ACCESS_MODE);
44767
44657
  return {
44768
44658
  name: "ReasonML",
44769
44659
  aliases: ["re"],
44770
- keywords: KEYWORDS,
44771
- illegal: "(:-|:=|\\$\\{|\\+=)",
44660
+ keywords: {
44661
+ $pattern: /[a-z_]\w*!?/,
44662
+ keyword: [
44663
+ "and",
44664
+ "as",
44665
+ "asr",
44666
+ "assert",
44667
+ "begin",
44668
+ "class",
44669
+ "constraint",
44670
+ "do",
44671
+ "done",
44672
+ "downto",
44673
+ "else",
44674
+ "end",
44675
+ "esfun",
44676
+ "exception",
44677
+ "external",
44678
+ "for",
44679
+ "fun",
44680
+ "function",
44681
+ "functor",
44682
+ "if",
44683
+ "in",
44684
+ "include",
44685
+ "inherit",
44686
+ "initializer",
44687
+ "land",
44688
+ "lazy",
44689
+ "let",
44690
+ "lor",
44691
+ "lsl",
44692
+ "lsr",
44693
+ "lxor",
44694
+ "mod",
44695
+ "module",
44696
+ "mutable",
44697
+ "new",
44698
+ "nonrec",
44699
+ "object",
44700
+ "of",
44701
+ "open",
44702
+ "or",
44703
+ "pri",
44704
+ "pub",
44705
+ "rec",
44706
+ "sig",
44707
+ "struct",
44708
+ "switch",
44709
+ "then",
44710
+ "to",
44711
+ "try",
44712
+ "type",
44713
+ "val",
44714
+ "virtual",
44715
+ "when",
44716
+ "while",
44717
+ "with"
44718
+ ],
44719
+ built_in: BUILT_IN_TYPES,
44720
+ literal: ["true", "false"]
44721
+ },
44722
+ illegal: /(:-|:=|\$\{|\+=)/,
44772
44723
  contains: [
44773
- hljs.COMMENT("/\\*", "\\*/", { illegal: "^(#,\\/\\/)" }),
44774
44724
  {
44775
- className: "character",
44776
- begin: "'(\\\\[^']+|[^'])'",
44777
- illegal: "\\n",
44725
+ scope: "literal",
44726
+ match: /\[(\|\|)?\]|\(\)/,
44778
44727
  relevance: 0
44779
44728
  },
44780
- hljs.QUOTE_STRING_MODE,
44729
+ hljs.C_LINE_COMMENT_MODE,
44730
+ hljs.COMMENT(/\/\*/, /\*\//, { illegal: /^(#,\/\/)/ }),
44781
44731
  {
44782
- className: "literal",
44783
- begin: "\\(\\)",
44784
- relevance: 0
44732
+ /* type variable */
44733
+ scope: "symbol",
44734
+ match: /\'[A-Za-z_](?!\')[\w\']*/
44735
+ /* the grammar is ambiguous on how 'a'b should be interpreted but not the compiler */
44785
44736
  },
44786
44737
  {
44787
- className: "literal",
44788
- begin: "\\[\\|",
44789
- end: "\\|\\]",
44790
- relevance: 0,
44791
- contains: LIST_CONTENTS_MODES
44738
+ /* polymorphic variant */
44739
+ scope: "type",
44740
+ match: /`[A-Z][\w\']*/
44792
44741
  },
44793
44742
  {
44794
- className: "literal",
44795
- begin: "\\[",
44796
- end: "\\]",
44797
- relevance: 0,
44798
- contains: LIST_CONTENTS_MODES
44743
+ /* module or constructor */
44744
+ scope: "type",
44745
+ match: /\b[A-Z][\w\']*/,
44746
+ relevance: 0
44799
44747
  },
44800
- CONSTRUCTOR_MODE,
44801
44748
  {
44802
- className: "operator",
44803
- begin: RE_OPERATOR_SPACED,
44804
- illegal: "-->",
44749
+ /* don't color identifiers, but safely catch all identifiers with ' */
44750
+ match: /[a-z_]\w*\'[\w\']*/,
44805
44751
  relevance: 0
44806
44752
  },
44807
- NUMBER_MODE,
44808
- hljs.C_LINE_COMMENT_MODE,
44809
- PATTERN_MATCH_BLOCK_MODE,
44810
- FUNCTION_BLOCK_MODE,
44811
44753
  {
44812
- className: "module-def",
44813
- begin: "\\bmodule\\s+" + RE_IDENT + "\\s+" + RE_MODULE_IDENT + "\\s+=\\s+\\{",
44814
- end: /\}/,
44815
- returnBegin: true,
44816
- keywords: KEYWORDS,
44817
- relevance: 0,
44818
- contains: [
44819
- {
44820
- className: "module",
44821
- relevance: 0,
44822
- begin: RE_MODULE_IDENT
44823
- },
44824
- {
44825
- begin: /\{/,
44826
- end: /\}/,
44827
- relevance: 0,
44828
- skip: true
44829
- }
44830
- ].concat(MODULE_ACCESS_CONTENTS)
44754
+ scope: "operator",
44755
+ match: /\s+(\|\||\+[\+\.]?|\*[\*\/\.]?|\/[\.]?|\.\.\.|\|>|&&|===?)\s+/,
44756
+ relevance: 0
44831
44757
  },
44832
- MODULE_ACCESS_MODE
44758
+ hljs.inherit(hljs.APOS_STRING_MODE, {
44759
+ scope: "string",
44760
+ relevance: 0
44761
+ }),
44762
+ hljs.inherit(hljs.QUOTE_STRING_MODE, { illegal: null }),
44763
+ {
44764
+ scope: "number",
44765
+ variants: [
44766
+ { match: /\b0[xX][a-fA-F0-9_]+[Lln]?/ },
44767
+ { match: /\b0[oO][0-7_]+[Lln]?/ },
44768
+ { match: /\b0[bB][01_]+[Lln]?/ },
44769
+ { match: /\b[0-9][0-9_]*([Lln]|(\.[0-9_]*)?([eE][-+]?[0-9_]+)?)/ }
44770
+ ],
44771
+ relevance: 0
44772
+ }
44833
44773
  ]
44834
44774
  };
44835
44775
  }
@@ -44837,9 +44777,9 @@ var require_reasonml = __commonJS({
44837
44777
  }
44838
44778
  });
44839
44779
 
44840
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/rib.js
44780
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js
44841
44781
  var require_rib = __commonJS({
44842
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/rib.js"(exports, module) {
44782
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js"(exports, module) {
44843
44783
  function rib(hljs) {
44844
44784
  return {
44845
44785
  name: "RenderMan RIB",
@@ -44857,9 +44797,9 @@ var require_rib = __commonJS({
44857
44797
  }
44858
44798
  });
44859
44799
 
44860
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/roboconf.js
44800
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js
44861
44801
  var require_roboconf = __commonJS({
44862
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/roboconf.js"(exports, module) {
44802
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js"(exports, module) {
44863
44803
  function roboconf(hljs) {
44864
44804
  const IDENTIFIER = "[a-zA-Z-_][^\\n{]+\\{";
44865
44805
  const PROPERTY = {
@@ -44931,9 +44871,9 @@ var require_roboconf = __commonJS({
44931
44871
  }
44932
44872
  });
44933
44873
 
44934
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/routeros.js
44874
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js
44935
44875
  var require_routeros = __commonJS({
44936
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/routeros.js"(exports, module) {
44876
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js"(exports, module) {
44937
44877
  function routeros(hljs) {
44938
44878
  const STATEMENTS = "foreach do while for if from to step else on-error and or not in";
44939
44879
  const GLOBAL_COMMANDS = "global local beep delay put len typeof pick log time set find environment terminal error execute parse resolve toarray tobool toid toip toip6 tonum tostr totime";
@@ -45082,9 +45022,9 @@ var require_routeros = __commonJS({
45082
45022
  }
45083
45023
  });
45084
45024
 
45085
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/rsl.js
45025
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js
45086
45026
  var require_rsl = __commonJS({
45087
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/rsl.js"(exports, module) {
45027
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js"(exports, module) {
45088
45028
  function rsl(hljs) {
45089
45029
  const BUILT_INS = [
45090
45030
  "abs",
@@ -45224,9 +45164,9 @@ var require_rsl = __commonJS({
45224
45164
  }
45225
45165
  });
45226
45166
 
45227
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ruleslanguage.js
45167
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js
45228
45168
  var require_ruleslanguage = __commonJS({
45229
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/ruleslanguage.js"(exports, module) {
45169
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js"(exports, module) {
45230
45170
  function ruleslanguage(hljs) {
45231
45171
  return {
45232
45172
  name: "Oracle Rules Language",
@@ -45258,9 +45198,9 @@ var require_ruleslanguage = __commonJS({
45258
45198
  }
45259
45199
  });
45260
45200
 
45261
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/rust.js
45201
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js
45262
45202
  var require_rust = __commonJS({
45263
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/rust.js"(exports, module) {
45203
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js"(exports, module) {
45264
45204
  function rust(hljs) {
45265
45205
  const regex = hljs.regex;
45266
45206
  const FUNCTION_INVOKE = {
@@ -45268,7 +45208,7 @@ var require_rust = __commonJS({
45268
45208
  relevance: 0,
45269
45209
  begin: regex.concat(
45270
45210
  /\b/,
45271
- /(?!let\b)/,
45211
+ /(?!let|for|while|if|else|match\b)/,
45272
45212
  hljs.IDENT_RE,
45273
45213
  regex.lookahead(/\s*\(/)
45274
45214
  )
@@ -45378,6 +45318,7 @@ var require_rust = __commonJS({
45378
45318
  "debug_assert!",
45379
45319
  "debug_assert_eq!",
45380
45320
  "env!",
45321
+ "eprintln!",
45381
45322
  "panic!",
45382
45323
  "file!",
45383
45324
  "format!",
@@ -45558,9 +45499,9 @@ var require_rust = __commonJS({
45558
45499
  }
45559
45500
  });
45560
45501
 
45561
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sas.js
45502
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js
45562
45503
  var require_sas = __commonJS({
45563
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sas.js"(exports, module) {
45504
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js"(exports, module) {
45564
45505
  function sas(hljs) {
45565
45506
  const regex = hljs.regex;
45566
45507
  const SAS_KEYWORDS = [
@@ -46106,9 +46047,9 @@ var require_sas = __commonJS({
46106
46047
  }
46107
46048
  });
46108
46049
 
46109
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scala.js
46050
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js
46110
46051
  var require_scala = __commonJS({
46111
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scala.js"(exports, module) {
46052
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js"(exports, module) {
46112
46053
  function scala(hljs) {
46113
46054
  const regex = hljs.regex;
46114
46055
  const ANNOTATION = {
@@ -46184,7 +46125,11 @@ var require_scala = __commonJS({
46184
46125
  excludeBegin: true,
46185
46126
  excludeEnd: true,
46186
46127
  relevance: 0,
46187
- contains: [TYPE]
46128
+ contains: [
46129
+ TYPE,
46130
+ hljs.C_LINE_COMMENT_MODE,
46131
+ hljs.C_BLOCK_COMMENT_MODE
46132
+ ]
46188
46133
  },
46189
46134
  {
46190
46135
  className: "params",
@@ -46193,7 +46138,11 @@ var require_scala = __commonJS({
46193
46138
  excludeBegin: true,
46194
46139
  excludeEnd: true,
46195
46140
  relevance: 0,
46196
- contains: [TYPE]
46141
+ contains: [
46142
+ TYPE,
46143
+ hljs.C_LINE_COMMENT_MODE,
46144
+ hljs.C_BLOCK_COMMENT_MODE
46145
+ ]
46197
46146
  },
46198
46147
  NAME
46199
46148
  ]
@@ -46245,6 +46194,28 @@ var require_scala = __commonJS({
46245
46194
  ],
46246
46195
  beginScope: { 2: "keyword" }
46247
46196
  };
46197
+ const DIRECTIVE_VALUE = {
46198
+ className: "string",
46199
+ begin: /\S+/
46200
+ };
46201
+ const USING_DIRECTIVE = {
46202
+ begin: [
46203
+ "//>",
46204
+ /\s+/,
46205
+ /using/,
46206
+ /\s+/,
46207
+ /\S+/
46208
+ ],
46209
+ beginScope: {
46210
+ 1: "comment",
46211
+ 3: "keyword",
46212
+ 5: "type"
46213
+ },
46214
+ end: /$/,
46215
+ contains: [
46216
+ DIRECTIVE_VALUE
46217
+ ]
46218
+ };
46248
46219
  return {
46249
46220
  name: "Scala",
46250
46221
  keywords: {
@@ -46252,6 +46223,7 @@ var require_scala = __commonJS({
46252
46223
  keyword: "type yield lazy override def with val var sealed abstract private trait object if then forSome for while do throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit export enum given transparent"
46253
46224
  },
46254
46225
  contains: [
46226
+ USING_DIRECTIVE,
46255
46227
  hljs.C_LINE_COMMENT_MODE,
46256
46228
  hljs.C_BLOCK_COMMENT_MODE,
46257
46229
  STRING,
@@ -46271,9 +46243,9 @@ var require_scala = __commonJS({
46271
46243
  }
46272
46244
  });
46273
46245
 
46274
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scheme.js
46246
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js
46275
46247
  var require_scheme = __commonJS({
46276
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scheme.js"(exports, module) {
46248
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js"(exports, module) {
46277
46249
  function scheme(hljs) {
46278
46250
  const SCHEME_IDENT_RE = "[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+";
46279
46251
  const SCHEME_SIMPLE_NUMBER_RE = "(-|\\+)?\\d+([./]\\d+)?";
@@ -46415,9 +46387,9 @@ var require_scheme = __commonJS({
46415
46387
  }
46416
46388
  });
46417
46389
 
46418
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scilab.js
46390
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js
46419
46391
  var require_scilab = __commonJS({
46420
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scilab.js"(exports, module) {
46392
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js"(exports, module) {
46421
46393
  function scilab(hljs) {
46422
46394
  const COMMON_CONTAINS = [
46423
46395
  hljs.C_NUMBER_MODE,
@@ -46478,9 +46450,9 @@ var require_scilab = __commonJS({
46478
46450
  }
46479
46451
  });
46480
46452
 
46481
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scss.js
46453
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js
46482
46454
  var require_scss = __commonJS({
46483
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/scss.js"(exports, module) {
46455
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js"(exports, module) {
46484
46456
  var MODES = (hljs) => {
46485
46457
  return {
46486
46458
  IMPORTANT: {
@@ -46513,7 +46485,7 @@ var require_scss = __commonJS({
46513
46485
  },
46514
46486
  CSS_VARIABLE: {
46515
46487
  className: "attr",
46516
- begin: /--[A-Za-z][A-Za-z0-9_-]*/
46488
+ begin: /--[A-Za-z_][A-Za-z0-9_-]*/
46517
46489
  }
46518
46490
  };
46519
46491
  };
@@ -47199,9 +47171,9 @@ var require_scss = __commonJS({
47199
47171
  }
47200
47172
  });
47201
47173
 
47202
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/shell.js
47174
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js
47203
47175
  var require_shell = __commonJS({
47204
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/shell.js"(exports, module) {
47176
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js"(exports, module) {
47205
47177
  function shell(hljs) {
47206
47178
  return {
47207
47179
  name: "Shell Session",
@@ -47228,9 +47200,9 @@ var require_shell = __commonJS({
47228
47200
  }
47229
47201
  });
47230
47202
 
47231
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/smali.js
47203
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js
47232
47204
  var require_smali = __commonJS({
47233
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/smali.js"(exports, module) {
47205
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js"(exports, module) {
47234
47206
  function smali(hljs) {
47235
47207
  const smali_instr_low_prio = [
47236
47208
  "add",
@@ -47351,9 +47323,9 @@ var require_smali = __commonJS({
47351
47323
  }
47352
47324
  });
47353
47325
 
47354
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/smalltalk.js
47326
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js
47355
47327
  var require_smalltalk = __commonJS({
47356
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/smalltalk.js"(exports, module) {
47328
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js"(exports, module) {
47357
47329
  function smalltalk(hljs) {
47358
47330
  const VAR_IDENT_RE = "[a-z][a-zA-Z0-9_]*";
47359
47331
  const CHAR = {
@@ -47417,9 +47389,9 @@ var require_smalltalk = __commonJS({
47417
47389
  }
47418
47390
  });
47419
47391
 
47420
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sml.js
47392
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js
47421
47393
  var require_sml = __commonJS({
47422
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sml.js"(exports, module) {
47394
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js"(exports, module) {
47423
47395
  function sml(hljs) {
47424
47396
  return {
47425
47397
  name: "SML (Standard ML)",
@@ -47490,9 +47462,9 @@ var require_sml = __commonJS({
47490
47462
  }
47491
47463
  });
47492
47464
 
47493
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sqf.js
47465
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js
47494
47466
  var require_sqf = __commonJS({
47495
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sqf.js"(exports, module) {
47467
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js"(exports, module) {
47496
47468
  function sqf(hljs) {
47497
47469
  const VARIABLE = {
47498
47470
  className: "variable",
@@ -50105,9 +50077,9 @@ var require_sqf = __commonJS({
50105
50077
  }
50106
50078
  });
50107
50079
 
50108
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sql.js
50080
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js
50109
50081
  var require_sql = __commonJS({
50110
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/sql.js"(exports, module) {
50082
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js"(exports, module) {
50111
50083
  function sql(hljs) {
50112
50084
  const regex = hljs.regex;
50113
50085
  const COMMENT_MODE = hljs.COMMENT("--", "$");
@@ -50748,9 +50720,9 @@ var require_sql = __commonJS({
50748
50720
  }
50749
50721
  });
50750
50722
 
50751
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/stan.js
50723
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js
50752
50724
  var require_stan = __commonJS({
50753
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/stan.js"(exports, module) {
50725
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js"(exports, module) {
50754
50726
  function stan(hljs) {
50755
50727
  const regex = hljs.regex;
50756
50728
  const BLOCKS = [
@@ -50774,16 +50746,20 @@ var require_stan = __commonJS({
50774
50746
  ];
50775
50747
  const TYPES = [
50776
50748
  "array",
50749
+ "tuple",
50777
50750
  "complex",
50778
50751
  "int",
50779
50752
  "real",
50780
50753
  "vector",
50754
+ "complex_vector",
50781
50755
  "ordered",
50782
50756
  "positive_ordered",
50783
50757
  "simplex",
50784
50758
  "unit_vector",
50785
50759
  "row_vector",
50760
+ "complex_row_vector",
50786
50761
  "matrix",
50762
+ "complex_matrix",
50787
50763
  "cholesky_factor_corr|10",
50788
50764
  "cholesky_factor_cov|10",
50789
50765
  "corr_matrix|10",
@@ -50791,8 +50767,6 @@ var require_stan = __commonJS({
50791
50767
  "void"
50792
50768
  ];
50793
50769
  const FUNCTIONS = [
50794
- "Phi",
50795
- "Phi_approx",
50796
50770
  "abs",
50797
50771
  "acos",
50798
50772
  "acosh",
@@ -50810,7 +50784,6 @@ var require_stan = __commonJS({
50810
50784
  "bessel_first_kind",
50811
50785
  "bessel_second_kind",
50812
50786
  "binary_log_loss",
50813
- "binomial_coefficient_log",
50814
50787
  "block",
50815
50788
  "cbrt",
50816
50789
  "ceil",
@@ -50821,37 +50794,48 @@ var require_stan = __commonJS({
50821
50794
  "cols",
50822
50795
  "columns_dot_product",
50823
50796
  "columns_dot_self",
50797
+ "complex_schur_decompose",
50798
+ "complex_schur_decompose_t",
50799
+ "complex_schur_decompose_u",
50824
50800
  "conj",
50825
50801
  "cos",
50826
50802
  "cosh",
50827
50803
  "cov_exp_quad",
50828
50804
  "crossprod",
50805
+ "csr_extract",
50829
50806
  "csr_extract_u",
50830
50807
  "csr_extract_v",
50831
50808
  "csr_extract_w",
50832
50809
  "csr_matrix_times_vector",
50833
50810
  "csr_to_dense_matrix",
50834
50811
  "cumulative_sum",
50812
+ "dae",
50813
+ "dae_tol",
50835
50814
  "determinant",
50836
50815
  "diag_matrix",
50816
+ "diagonal",
50837
50817
  "diag_post_multiply",
50838
50818
  "diag_pre_multiply",
50839
- "diagonal",
50840
50819
  "digamma",
50841
50820
  "dims",
50842
50821
  "distance",
50843
50822
  "dot_product",
50844
50823
  "dot_self",
50824
+ "eigendecompose",
50825
+ "eigendecompose_sym",
50826
+ "eigenvalues",
50845
50827
  "eigenvalues_sym",
50828
+ "eigenvectors",
50846
50829
  "eigenvectors_sym",
50847
50830
  "erf",
50848
50831
  "erfc",
50849
50832
  "exp",
50850
50833
  "exp2",
50851
50834
  "expm1",
50852
- "fabs",
50853
50835
  "falling_factorial",
50854
50836
  "fdim",
50837
+ "fft",
50838
+ "fft2",
50855
50839
  "floor",
50856
50840
  "fma",
50857
50841
  "fmax",
@@ -50861,7 +50845,6 @@ var require_stan = __commonJS({
50861
50845
  "gamma_q",
50862
50846
  "generalized_inverse",
50863
50847
  "get_imag",
50864
- "get_lp",
50865
50848
  "get_real",
50866
50849
  "head",
50867
50850
  "hmm_hidden_state_prob",
@@ -50869,20 +50852,24 @@ var require_stan = __commonJS({
50869
50852
  "hypot",
50870
50853
  "identity_matrix",
50871
50854
  "inc_beta",
50872
- "int_step",
50873
50855
  "integrate_1d",
50874
50856
  "integrate_ode",
50875
50857
  "integrate_ode_adams",
50876
50858
  "integrate_ode_bdf",
50877
50859
  "integrate_ode_rk45",
50860
+ "int_step",
50878
50861
  "inv",
50879
- "inv_Phi",
50880
50862
  "inv_cloglog",
50863
+ "inv_erfc",
50864
+ "inverse",
50865
+ "inverse_spd",
50866
+ "inv_fft",
50867
+ "inv_fft2",
50868
+ "inv_inc_beta",
50881
50869
  "inv_logit",
50870
+ "inv_Phi",
50882
50871
  "inv_sqrt",
50883
50872
  "inv_square",
50884
- "inverse",
50885
- "inverse_spd",
50886
50873
  "is_inf",
50887
50874
  "is_nan",
50888
50875
  "lambert_w0",
@@ -50908,12 +50895,12 @@ var require_stan = __commonJS({
50908
50895
  "log_falling_factorial",
50909
50896
  "log_inv_logit",
50910
50897
  "log_inv_logit_diff",
50898
+ "logit",
50911
50899
  "log_mix",
50912
50900
  "log_modified_bessel_first_kind",
50913
50901
  "log_rising_factorial",
50914
50902
  "log_softmax",
50915
50903
  "log_sum_exp",
50916
- "logit",
50917
50904
  "machine_precision",
50918
50905
  "map_rect",
50919
50906
  "matrix_exp",
@@ -50928,10 +50915,11 @@ var require_stan = __commonJS({
50928
50915
  "min",
50929
50916
  "modified_bessel_first_kind",
50930
50917
  "modified_bessel_second_kind",
50931
- "multiply_log",
50932
50918
  "multiply_lower_tri_self_transpose",
50933
50919
  "negative_infinity",
50934
50920
  "norm",
50921
+ "norm1",
50922
+ "norm2",
50935
50923
  "not_a_number",
50936
50924
  "num_elements",
50937
50925
  "ode_adams",
@@ -50952,14 +50940,18 @@ var require_stan = __commonJS({
50952
50940
  "ones_row_vector",
50953
50941
  "ones_vector",
50954
50942
  "owens_t",
50943
+ "Phi",
50944
+ "Phi_approx",
50955
50945
  "polar",
50956
50946
  "positive_infinity",
50957
50947
  "pow",
50958
50948
  "print",
50959
50949
  "prod",
50960
50950
  "proj",
50951
+ "qr",
50961
50952
  "qr_Q",
50962
50953
  "qr_R",
50954
+ "qr_thin",
50963
50955
  "qr_thin_Q",
50964
50956
  "qr_thin_R",
50965
50957
  "quad_form",
@@ -50999,6 +50991,7 @@ var require_stan = __commonJS({
50999
50991
  "sub_col",
51000
50992
  "sub_row",
51001
50993
  "sum",
50994
+ "svd",
51002
50995
  "svd_U",
51003
50996
  "svd_V",
51004
50997
  "symmetrize_from_lower_tri",
@@ -51011,6 +51004,7 @@ var require_stan = __commonJS({
51011
51004
  "to_array_1d",
51012
51005
  "to_array_2d",
51013
51006
  "to_complex",
51007
+ "to_int",
51014
51008
  "to_matrix",
51015
51009
  "to_row_vector",
51016
51010
  "to_vector",
@@ -51053,18 +51047,22 @@ var require_stan = __commonJS({
51053
51047
  "inv_chi_square",
51054
51048
  "inv_gamma",
51055
51049
  "inv_wishart",
51050
+ "inv_wishart_cholesky",
51056
51051
  "lkj_corr",
51057
51052
  "lkj_corr_cholesky",
51058
51053
  "logistic",
51054
+ "loglogistic",
51059
51055
  "lognormal",
51060
51056
  "multi_gp",
51061
51057
  "multi_gp_cholesky",
51058
+ "multinomial",
51059
+ "multinomial_logit",
51062
51060
  "multi_normal",
51063
51061
  "multi_normal_cholesky",
51064
51062
  "multi_normal_prec",
51063
+ "multi_student_cholesky_t",
51065
51064
  "multi_student_t",
51066
- "multinomial",
51067
- "multinomial_logit",
51065
+ "multi_student_t_cholesky",
51068
51066
  "neg_binomial",
51069
51067
  "neg_binomial_2",
51070
51068
  "neg_binomial_2_log",
@@ -51084,12 +51082,14 @@ var require_stan = __commonJS({
51084
51082
  "skew_double_exponential",
51085
51083
  "skew_normal",
51086
51084
  "std_normal",
51085
+ "std_normal_log",
51087
51086
  "student_t",
51088
51087
  "uniform",
51089
51088
  "von_mises",
51090
51089
  "weibull",
51091
51090
  "wiener",
51092
- "wishart"
51091
+ "wishart",
51092
+ "wishart_cholesky"
51093
51093
  ];
51094
51094
  const BLOCK_COMMENT = hljs.COMMENT(
51095
51095
  /\/\*/,
@@ -51220,9 +51220,9 @@ var require_stan = __commonJS({
51220
51220
  }
51221
51221
  });
51222
51222
 
51223
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/stata.js
51223
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js
51224
51224
  var require_stata = __commonJS({
51225
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/stata.js"(exports, module) {
51225
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js"(exports, module) {
51226
51226
  function stata(hljs) {
51227
51227
  return {
51228
51228
  name: "Stata",
@@ -51263,9 +51263,9 @@ var require_stata = __commonJS({
51263
51263
  }
51264
51264
  });
51265
51265
 
51266
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/step21.js
51266
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js
51267
51267
  var require_step21 = __commonJS({
51268
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/step21.js"(exports, module) {
51268
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js"(exports, module) {
51269
51269
  function step21(hljs) {
51270
51270
  const STEP21_IDENT_RE = "[A-Z_][A-Z0-9_.]*";
51271
51271
  const STEP21_KEYWORDS = {
@@ -51327,9 +51327,9 @@ var require_step21 = __commonJS({
51327
51327
  }
51328
51328
  });
51329
51329
 
51330
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/stylus.js
51330
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js
51331
51331
  var require_stylus = __commonJS({
51332
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/stylus.js"(exports, module) {
51332
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js"(exports, module) {
51333
51333
  var MODES = (hljs) => {
51334
51334
  return {
51335
51335
  IMPORTANT: {
@@ -51362,7 +51362,7 @@ var require_stylus = __commonJS({
51362
51362
  },
51363
51363
  CSS_VARIABLE: {
51364
51364
  className: "attr",
51365
- begin: /--[A-Za-z][A-Za-z0-9_-]*/
51365
+ begin: /--[A-Za-z_][A-Za-z0-9_-]*/
51366
51366
  }
51367
51367
  };
51368
51368
  };
@@ -52097,9 +52097,9 @@ var require_stylus = __commonJS({
52097
52097
  }
52098
52098
  });
52099
52099
 
52100
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/subunit.js
52100
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js
52101
52101
  var require_subunit = __commonJS({
52102
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/subunit.js"(exports, module) {
52102
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js"(exports, module) {
52103
52103
  function subunit(hljs) {
52104
52104
  const DETAILS = {
52105
52105
  className: "string",
@@ -52139,9 +52139,9 @@ var require_subunit = __commonJS({
52139
52139
  }
52140
52140
  });
52141
52141
 
52142
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/swift.js
52142
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js
52143
52143
  var require_swift = __commonJS({
52144
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/swift.js"(exports, module) {
52144
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js"(exports, module) {
52145
52145
  function source(re) {
52146
52146
  if (!re)
52147
52147
  return null;
@@ -52205,13 +52205,21 @@ var require_swift = __commonJS({
52205
52205
  // operator
52206
52206
  "as",
52207
52207
  // operator
52208
+ "borrowing",
52209
+ // contextual
52208
52210
  "break",
52209
52211
  "case",
52210
52212
  "catch",
52211
52213
  "class",
52214
+ "consume",
52215
+ // contextual
52216
+ "consuming",
52217
+ // contextual
52212
52218
  "continue",
52213
52219
  "convenience",
52214
52220
  // contextual
52221
+ "copy",
52222
+ // contextual
52215
52223
  "default",
52216
52224
  "defer",
52217
52225
  "deinit",
@@ -52221,6 +52229,7 @@ var require_swift = __commonJS({
52221
52229
  "do",
52222
52230
  "dynamic",
52223
52231
  // contextual
52232
+ "each",
52224
52233
  "else",
52225
52234
  "enum",
52226
52235
  "extension",
@@ -52255,6 +52264,7 @@ var require_swift = __commonJS({
52255
52264
  "lazy",
52256
52265
  // contextual
52257
52266
  "let",
52267
+ "macro",
52258
52268
  "mutating",
52259
52269
  // contextual
52260
52270
  "nonmutating",
@@ -52348,7 +52358,6 @@ var require_swift = __commonJS({
52348
52358
  "#line",
52349
52359
  "#selector",
52350
52360
  "#sourceLocation",
52351
- "#warn_unqualified_access",
52352
52361
  "#warning"
52353
52362
  ];
52354
52363
  var builtIns = [
@@ -52445,12 +52454,14 @@ var require_swift = __commonJS({
52445
52454
  var identifier = concat2(identifierHead, identifierCharacter, "*");
52446
52455
  var typeIdentifier = concat2(/[A-Z]/, identifierCharacter, "*");
52447
52456
  var keywordAttributes = [
52457
+ "attached",
52448
52458
  "autoclosure",
52449
52459
  concat2(/convention\(/, either("swift", "block", "c"), /\)/),
52450
52460
  "discardableResult",
52451
52461
  "dynamicCallable",
52452
52462
  "dynamicMemberLookup",
52453
52463
  "escaping",
52464
+ "freestanding",
52454
52465
  "frozen",
52455
52466
  "GKInspectable",
52456
52467
  "IBAction",
@@ -52470,10 +52481,13 @@ var require_swift = __commonJS({
52470
52481
  "propertyWrapper",
52471
52482
  "requires_stored_property_inits",
52472
52483
  "resultBuilder",
52484
+ "Sendable",
52473
52485
  "testable",
52474
52486
  "UIApplicationMain",
52487
+ "unchecked",
52475
52488
  "unknown",
52476
- "usableFromInline"
52489
+ "usableFromInline",
52490
+ "warn_unqualified_access"
52477
52491
  ];
52478
52492
  var availabilityKeywords = [
52479
52493
  "iOS",
@@ -52635,6 +52649,45 @@ var require_swift = __commonJS({
52635
52649
  SINGLE_LINE_STRING("###")
52636
52650
  ]
52637
52651
  };
52652
+ const REGEXP_CONTENTS = [
52653
+ hljs.BACKSLASH_ESCAPE,
52654
+ {
52655
+ begin: /\[/,
52656
+ end: /\]/,
52657
+ relevance: 0,
52658
+ contains: [hljs.BACKSLASH_ESCAPE]
52659
+ }
52660
+ ];
52661
+ const BARE_REGEXP_LITERAL = {
52662
+ begin: /\/[^\s](?=[^/\n]*\/)/,
52663
+ end: /\//,
52664
+ contains: REGEXP_CONTENTS
52665
+ };
52666
+ const EXTENDED_REGEXP_LITERAL = (rawDelimiter) => {
52667
+ const begin3 = concat2(rawDelimiter, /\//);
52668
+ const end3 = concat2(/\//, rawDelimiter);
52669
+ return {
52670
+ begin: begin3,
52671
+ end: end3,
52672
+ contains: [
52673
+ ...REGEXP_CONTENTS,
52674
+ {
52675
+ scope: "comment",
52676
+ begin: `#(?!.*${end3})`,
52677
+ end: /$/
52678
+ }
52679
+ ]
52680
+ };
52681
+ };
52682
+ const REGEXP = {
52683
+ scope: "regexp",
52684
+ variants: [
52685
+ EXTENDED_REGEXP_LITERAL("###"),
52686
+ EXTENDED_REGEXP_LITERAL("##"),
52687
+ EXTENDED_REGEXP_LITERAL("#"),
52688
+ BARE_REGEXP_LITERAL
52689
+ ]
52690
+ };
52638
52691
  const QUOTED_IDENTIFIER = { match: concat2(/`/, identifier, /`/) };
52639
52692
  const IMPLICIT_PARAMETER = {
52640
52693
  className: "variable",
@@ -52651,7 +52704,7 @@ var require_swift = __commonJS({
52651
52704
  ];
52652
52705
  const AVAILABLE_ATTRIBUTE = {
52653
52706
  match: /(@|#(un)?)available/,
52654
- className: "keyword",
52707
+ scope: "keyword",
52655
52708
  starts: { contains: [
52656
52709
  {
52657
52710
  begin: /\(/,
@@ -52666,11 +52719,11 @@ var require_swift = __commonJS({
52666
52719
  ] }
52667
52720
  };
52668
52721
  const KEYWORD_ATTRIBUTE = {
52669
- className: "keyword",
52722
+ scope: "keyword",
52670
52723
  match: concat2(/@/, either(...keywordAttributes))
52671
52724
  };
52672
52725
  const USER_DEFINED_ATTRIBUTE = {
52673
- className: "meta",
52726
+ scope: "meta",
52674
52727
  match: concat2(/@/, identifier)
52675
52728
  };
52676
52729
  const ATTRIBUTES = [
@@ -52737,6 +52790,7 @@ var require_swift = __commonJS({
52737
52790
  "self",
52738
52791
  TUPLE_ELEMENT_NAME,
52739
52792
  ...COMMENTS,
52793
+ REGEXP,
52740
52794
  ...KEYWORD_MODES,
52741
52795
  ...BUILT_INS,
52742
52796
  ...OPERATORS,
@@ -52750,6 +52804,7 @@ var require_swift = __commonJS({
52750
52804
  const GENERIC_PARAMETERS = {
52751
52805
  begin: /</,
52752
52806
  end: />/,
52807
+ keywords: "repeat each",
52753
52808
  contains: [
52754
52809
  ...COMMENTS,
52755
52810
  TYPE
@@ -52791,9 +52846,9 @@ var require_swift = __commonJS({
52791
52846
  endsParent: true,
52792
52847
  illegal: /["']/
52793
52848
  };
52794
- const FUNCTION = {
52849
+ const FUNCTION_OR_MACRO = {
52795
52850
  match: [
52796
- /func/,
52851
+ /(func|macro)/,
52797
52852
  /\s+/,
52798
52853
  either(QUOTED_IDENTIFIER.match, identifier, operator)
52799
52854
  ],
@@ -52880,7 +52935,7 @@ var require_swift = __commonJS({
52880
52935
  keywords: KEYWORDS,
52881
52936
  contains: [
52882
52937
  ...COMMENTS,
52883
- FUNCTION,
52938
+ FUNCTION_OR_MACRO,
52884
52939
  INIT_SUBSCRIPT,
52885
52940
  {
52886
52941
  beginKeywords: "struct protocol class extension enum actor",
@@ -52903,6 +52958,7 @@ var require_swift = __commonJS({
52903
52958
  contains: [...COMMENTS],
52904
52959
  relevance: 0
52905
52960
  },
52961
+ REGEXP,
52906
52962
  ...KEYWORD_MODES,
52907
52963
  ...BUILT_INS,
52908
52964
  ...OPERATORS,
@@ -52919,9 +52975,9 @@ var require_swift = __commonJS({
52919
52975
  }
52920
52976
  });
52921
52977
 
52922
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/taggerscript.js
52978
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js
52923
52979
  var require_taggerscript = __commonJS({
52924
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/taggerscript.js"(exports, module) {
52980
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js"(exports, module) {
52925
52981
  function taggerscript(hljs) {
52926
52982
  const NOOP = {
52927
52983
  className: "comment",
@@ -52971,9 +53027,9 @@ var require_taggerscript = __commonJS({
52971
53027
  }
52972
53028
  });
52973
53029
 
52974
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/yaml.js
53030
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js
52975
53031
  var require_yaml = __commonJS({
52976
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/yaml.js"(exports, module) {
53032
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js"(exports, module) {
52977
53033
  function yaml(hljs) {
52978
53034
  const LITERALS = "true false yes no null";
52979
53035
  const URI_CHARACTERS = "[\\w#;/?:@&=+$,.~*'()[\\]]+";
@@ -53160,9 +53216,9 @@ var require_yaml = __commonJS({
53160
53216
  }
53161
53217
  });
53162
53218
 
53163
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/tap.js
53219
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js
53164
53220
  var require_tap = __commonJS({
53165
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/tap.js"(exports, module) {
53221
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js"(exports, module) {
53166
53222
  function tap(hljs) {
53167
53223
  return {
53168
53224
  name: "Test Anything Protocol",
@@ -53204,9 +53260,9 @@ var require_tap = __commonJS({
53204
53260
  }
53205
53261
  });
53206
53262
 
53207
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/tcl.js
53263
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js
53208
53264
  var require_tcl = __commonJS({
53209
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/tcl.js"(exports, module) {
53265
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js"(exports, module) {
53210
53266
  function tcl(hljs) {
53211
53267
  const regex = hljs.regex;
53212
53268
  const TCL_IDENT = /[a-zA-Z_][a-zA-Z0-9_]*/;
@@ -53389,9 +53445,9 @@ var require_tcl = __commonJS({
53389
53445
  }
53390
53446
  });
53391
53447
 
53392
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/thrift.js
53448
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js
53393
53449
  var require_thrift = __commonJS({
53394
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/thrift.js"(exports, module) {
53450
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js"(exports, module) {
53395
53451
  function thrift(hljs) {
53396
53452
  const TYPES = [
53397
53453
  "bool",
@@ -53464,9 +53520,9 @@ var require_thrift = __commonJS({
53464
53520
  }
53465
53521
  });
53466
53522
 
53467
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/tp.js
53523
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js
53468
53524
  var require_tp = __commonJS({
53469
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/tp.js"(exports, module) {
53525
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js"(exports, module) {
53470
53526
  function tp(hljs) {
53471
53527
  const TPID = {
53472
53528
  className: "number",
@@ -53633,9 +53689,9 @@ var require_tp = __commonJS({
53633
53689
  }
53634
53690
  });
53635
53691
 
53636
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/twig.js
53692
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js
53637
53693
  var require_twig = __commonJS({
53638
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/twig.js"(exports, module) {
53694
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js"(exports, module) {
53639
53695
  function twig(hljs) {
53640
53696
  const regex = hljs.regex;
53641
53697
  const FUNCTION_NAMES = [
@@ -53877,9 +53933,9 @@ var require_twig = __commonJS({
53877
53933
  }
53878
53934
  });
53879
53935
 
53880
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/typescript.js
53936
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js
53881
53937
  var require_typescript = __commonJS({
53882
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/typescript.js"(exports, module) {
53938
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js"(exports, module) {
53883
53939
  var IDENT_RE = "[A-Za-z$_][0-9A-Za-z$_]*";
53884
53940
  var KEYWORDS = [
53885
53941
  "as",
@@ -54669,9 +54725,9 @@ var require_typescript = __commonJS({
54669
54725
  }
54670
54726
  });
54671
54727
 
54672
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vala.js
54728
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js
54673
54729
  var require_vala = __commonJS({
54674
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vala.js"(exports, module) {
54730
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js"(exports, module) {
54675
54731
  function vala(hljs) {
54676
54732
  return {
54677
54733
  name: "Vala",
@@ -54715,9 +54771,9 @@ var require_vala = __commonJS({
54715
54771
  }
54716
54772
  });
54717
54773
 
54718
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vbnet.js
54774
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js
54719
54775
  var require_vbnet = __commonJS({
54720
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vbnet.js"(exports, module) {
54776
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js"(exports, module) {
54721
54777
  function vbnet(hljs) {
54722
54778
  const regex = hljs.regex;
54723
54779
  const CHARACTER = {
@@ -54853,9 +54909,9 @@ var require_vbnet = __commonJS({
54853
54909
  }
54854
54910
  });
54855
54911
 
54856
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vbscript.js
54912
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js
54857
54913
  var require_vbscript = __commonJS({
54858
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vbscript.js"(exports, module) {
54914
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js"(exports, module) {
54859
54915
  function vbscript(hljs) {
54860
54916
  const regex = hljs.regex;
54861
54917
  const BUILT_IN_FUNCTIONS = [
@@ -55064,9 +55120,9 @@ var require_vbscript = __commonJS({
55064
55120
  }
55065
55121
  });
55066
55122
 
55067
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vbscript-html.js
55123
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js
55068
55124
  var require_vbscript_html = __commonJS({
55069
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vbscript-html.js"(exports, module) {
55125
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js"(exports, module) {
55070
55126
  function vbscriptHtml(hljs) {
55071
55127
  return {
55072
55128
  name: "VBScript in HTML",
@@ -55084,9 +55140,9 @@ var require_vbscript_html = __commonJS({
55084
55140
  }
55085
55141
  });
55086
55142
 
55087
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/verilog.js
55143
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js
55088
55144
  var require_verilog = __commonJS({
55089
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/verilog.js"(exports, module) {
55145
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js"(exports, module) {
55090
55146
  function verilog(hljs) {
55091
55147
  const regex = hljs.regex;
55092
55148
  const KEYWORDS = {
@@ -55630,9 +55686,9 @@ var require_verilog = __commonJS({
55630
55686
  }
55631
55687
  });
55632
55688
 
55633
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vhdl.js
55689
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js
55634
55690
  var require_vhdl = __commonJS({
55635
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vhdl.js"(exports, module) {
55691
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js"(exports, module) {
55636
55692
  function vhdl(hljs) {
55637
55693
  const INTEGER_RE = "\\d(_|\\d)*";
55638
55694
  const EXPONENT_RE = "[eE][-+]?" + INTEGER_RE;
@@ -55836,9 +55892,9 @@ var require_vhdl = __commonJS({
55836
55892
  }
55837
55893
  });
55838
55894
 
55839
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vim.js
55895
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js
55840
55896
  var require_vim = __commonJS({
55841
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/vim.js"(exports, module) {
55897
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js"(exports, module) {
55842
55898
  function vim(hljs) {
55843
55899
  return {
55844
55900
  name: "Vim Script",
@@ -55912,9 +55968,9 @@ var require_vim = __commonJS({
55912
55968
  }
55913
55969
  });
55914
55970
 
55915
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/wasm.js
55971
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js
55916
55972
  var require_wasm = __commonJS({
55917
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/wasm.js"(exports, module) {
55973
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js"(exports, module) {
55918
55974
  function wasm(hljs) {
55919
55975
  hljs.regex;
55920
55976
  const BLOCK_COMMENT = hljs.COMMENT(/\(;/, /;\)/);
@@ -56038,9 +56094,9 @@ var require_wasm = __commonJS({
56038
56094
  }
56039
56095
  });
56040
56096
 
56041
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/wren.js
56097
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js
56042
56098
  var require_wren = __commonJS({
56043
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/wren.js"(exports, module) {
56099
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js"(exports, module) {
56044
56100
  function wren(hljs) {
56045
56101
  const regex = hljs.regex;
56046
56102
  const IDENT_RE = /[a-zA-Z]\w*/;
@@ -56322,9 +56378,9 @@ var require_wren = __commonJS({
56322
56378
  }
56323
56379
  });
56324
56380
 
56325
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/x86asm.js
56381
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js
56326
56382
  var require_x86asm = __commonJS({
56327
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/x86asm.js"(exports, module) {
56383
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js"(exports, module) {
56328
56384
  function x86asm(hljs) {
56329
56385
  return {
56330
56386
  name: "Intel x86 Assembly",
@@ -56414,9 +56470,9 @@ var require_x86asm = __commonJS({
56414
56470
  }
56415
56471
  });
56416
56472
 
56417
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/xl.js
56473
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js
56418
56474
  var require_xl = __commonJS({
56419
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/xl.js"(exports, module) {
56475
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js"(exports, module) {
56420
56476
  function xl(hljs) {
56421
56477
  const KWS = [
56422
56478
  "if",
@@ -56616,9 +56672,9 @@ var require_xl = __commonJS({
56616
56672
  }
56617
56673
  });
56618
56674
 
56619
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/xquery.js
56675
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js
56620
56676
  var require_xquery = __commonJS({
56621
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/xquery.js"(exports, module) {
56677
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js"(exports, module) {
56622
56678
  function xquery(_hljs) {
56623
56679
  const KEYWORDS = [
56624
56680
  "module",
@@ -56930,7 +56986,8 @@ var require_xquery = __commonJS({
56930
56986
  name: "XQuery",
56931
56987
  aliases: [
56932
56988
  "xpath",
56933
- "xq"
56989
+ "xq",
56990
+ "xqm"
56934
56991
  ],
56935
56992
  case_insensitive: false,
56936
56993
  illegal: /(proc)|(abstract)|(extends)|(until)|(#)/,
@@ -56947,9 +57004,9 @@ var require_xquery = __commonJS({
56947
57004
  }
56948
57005
  });
56949
57006
 
56950
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/zephir.js
57007
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js
56951
57008
  var require_zephir = __commonJS({
56952
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/languages/zephir.js"(exports, module) {
57009
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js"(exports, module) {
56953
57010
  function zephir(hljs) {
56954
57011
  const STRING = {
56955
57012
  className: "string",
@@ -57051,9 +57108,9 @@ var require_zephir = __commonJS({
57051
57108
  }
57052
57109
  });
57053
57110
 
57054
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/index.js
57111
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/index.js
57055
57112
  var require_lib2 = __commonJS({
57056
- "node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/lib/index.js"(exports, module) {
57113
+ "node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/lib/index.js"(exports, module) {
57057
57114
  var hljs = require_core();
57058
57115
  hljs.registerLanguage("1c", require_c());
57059
57116
  hljs.registerLanguage("abnf", require_abnf());
@@ -60199,7 +60256,7 @@ function n5(n9) {
60199
60256
  return (t6, o9) => void 0 !== o9 ? e4(n9, t6, o9) : i3(n9, t6);
60200
60257
  }
60201
60258
 
60202
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/index.js
60259
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/index.js
60203
60260
  var dist_ts_exports26 = {};
60204
60261
  __export(dist_ts_exports26, {
60205
60262
  DomTools: () => DomTools,
@@ -60207,11 +60264,10 @@ __export(dist_ts_exports26, {
60207
60264
  breakpoints: () => domtools_css_breakpoints_exports,
60208
60265
  css: () => domtools_css_exports,
60209
60266
  elementBasic: () => domtools_elementbasic_exports,
60210
- plugins: () => plugins,
60211
- rxjs: () => smartrx_plugins_rxjs_exports
60267
+ plugins: () => plugins
60212
60268
  });
60213
60269
 
60214
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js
60270
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js
60215
60271
  var domtools_elementbasic_exports = {};
60216
60272
  __export(domtools_elementbasic_exports, {
60217
60273
  setup: () => setup,
@@ -60276,7 +60332,7 @@ var Timeout = class {
60276
60332
  }
60277
60333
  };
60278
60334
 
60279
- // node_modules/.pnpm/@api.global+typedrequest@3.0.1/node_modules/@api.global/typedrequest/dist_ts/index.js
60335
+ // node_modules/.pnpm/@api.global+typedrequest@3.0.2/node_modules/@api.global/typedrequest/dist_ts/index.js
60280
60336
  var dist_ts_exports15 = {};
60281
60337
  __export(dist_ts_exports15, {
60282
60338
  TypedHandler: () => TypedHandler,
@@ -60286,7 +60342,7 @@ __export(dist_ts_exports15, {
60286
60342
  TypedTarget: () => TypedTarget
60287
60343
  });
60288
60344
 
60289
- // node_modules/.pnpm/@api.global+typedrequest@3.0.1/node_modules/@api.global/typedrequest/dist_ts/typedrequest.plugins.js
60345
+ // node_modules/.pnpm/@api.global+typedrequest@3.0.2/node_modules/@api.global/typedrequest/dist_ts/typedrequest.plugins.js
60290
60346
  var isounique2 = __toESM(require_dist_ts(), 1);
60291
60347
 
60292
60348
  // node_modules/.pnpm/@push.rocks+lik@6.0.5/node_modules/@push.rocks/lik/dist_ts/index.js
@@ -62443,7 +62499,7 @@ var Tree = class {
62443
62499
  }
62444
62500
  };
62445
62501
 
62446
- // node_modules/.pnpm/@push.rocks+webrequest@3.0.33/node_modules/@push.rocks/webrequest/dist_ts/index.js
62502
+ // node_modules/.pnpm/@push.rocks+webrequest@3.0.34/node_modules/@push.rocks/webrequest/dist_ts/index.js
62447
62503
  var dist_ts_exports13 = {};
62448
62504
  __export(dist_ts_exports13, {
62449
62505
  WebRequest: () => WebRequest
@@ -63674,7 +63730,7 @@ var TypedrequestCache = class {
63674
63730
  }
63675
63731
  };
63676
63732
 
63677
- // node_modules/.pnpm/@push.rocks+webrequest@3.0.33/node_modules/@push.rocks/webrequest/dist_ts/index.js
63733
+ // node_modules/.pnpm/@push.rocks+webrequest@3.0.34/node_modules/@push.rocks/webrequest/dist_ts/index.js
63678
63734
  var WebRequest = class {
63679
63735
  constructor(optionsArg = {}) {
63680
63736
  this.optionsArg = optionsArg;
@@ -63845,7 +63901,7 @@ var WebRequest = class {
63845
63901
  }
63846
63902
  };
63847
63903
 
63848
- // node_modules/.pnpm/@api.global+typedrequest@3.0.1/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedresponseerror.js
63904
+ // node_modules/.pnpm/@api.global+typedrequest@3.0.2/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedresponseerror.js
63849
63905
  var TypedResponseError = class {
63850
63906
  constructor(errorTextArg, errorDataArg) {
63851
63907
  this.errorText = errorTextArg;
@@ -63853,7 +63909,7 @@ var TypedResponseError = class {
63853
63909
  }
63854
63910
  };
63855
63911
 
63856
- // node_modules/.pnpm/@api.global+typedrequest@3.0.1/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedhandler.js
63912
+ // node_modules/.pnpm/@api.global+typedrequest@3.0.2/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedhandler.js
63857
63913
  var TypedHandler = class {
63858
63914
  constructor(methodArg, handlerFunctionArg) {
63859
63915
  this.method = methodArg;
@@ -63889,7 +63945,7 @@ var TypedHandler = class {
63889
63945
  }
63890
63946
  };
63891
63947
 
63892
- // node_modules/.pnpm/@api.global+typedrequest@3.0.1/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedrouter.js
63948
+ // node_modules/.pnpm/@api.global+typedrequest@3.0.2/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedrouter.js
63893
63949
  var TypedRouter = class {
63894
63950
  constructor() {
63895
63951
  this.routerMap = new dist_ts_exports5.ObjectMap();
@@ -63971,7 +64027,7 @@ var TypedRouter = class {
63971
64027
  }
63972
64028
  };
63973
64029
 
63974
- // node_modules/.pnpm/@api.global+typedrequest@3.0.1/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedtarget.js
64030
+ // node_modules/.pnpm/@api.global+typedrequest@3.0.2/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedtarget.js
63975
64031
  var TypedTarget = class {
63976
64032
  constructor(optionsArg) {
63977
64033
  if (optionsArg.postMethodWithTypedRouter && !optionsArg.typedRouterRef) {
@@ -63998,7 +64054,7 @@ var TypedTarget = class {
63998
64054
  }
63999
64055
  };
64000
64056
 
64001
- // node_modules/.pnpm/@api.global+typedrequest@3.0.1/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedrequest.js
64057
+ // node_modules/.pnpm/@api.global+typedrequest@3.0.2/node_modules/@api.global/typedrequest/dist_ts/typedrequest.classes.typedrequest.js
64002
64058
  var webrequestInstance = new dist_ts_exports13.WebRequest();
64003
64059
  var TypedRequest = class {
64004
64060
  /**
@@ -66223,7 +66279,7 @@ var WebSetup = class {
66223
66279
  }
66224
66280
  };
66225
66281
 
66226
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.plugins.js
66282
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.plugins.js
66227
66283
  var import_sweet_scroll = __toESM(require_sweet_scroll(), 1);
66228
66284
  var lik = {
66229
66285
  ObjectMap,
@@ -66231,7 +66287,7 @@ var lik = {
66231
66287
  FastMap
66232
66288
  };
66233
66289
 
66234
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.breakpoints.js
66290
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.breakpoints.js
66235
66291
  var domtools_css_breakpoints_exports = {};
66236
66292
  __export(domtools_css_breakpoints_exports, {
66237
66293
  cssForDesktop: () => cssForDesktop,
@@ -66301,7 +66357,7 @@ var cssForPhone = (cssArg) => {
66301
66357
  `);
66302
66358
  };
66303
66359
 
66304
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.thememanager.js
66360
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.thememanager.js
66305
66361
  var ThemeManager = class {
66306
66362
  constructor(domtoolsRefArg) {
66307
66363
  this.goBrightBoolean = false;
@@ -66344,7 +66400,7 @@ var ThemeManager = class {
66344
66400
  }
66345
66401
  };
66346
66402
 
66347
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.keyboard.js
66403
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.keyboard.js
66348
66404
  var Key;
66349
66405
  (function(Key2) {
66350
66406
  Key2[Key2["Backspace"] = 8] = "Backspace";
@@ -66530,7 +66586,7 @@ var Keyboard = class {
66530
66586
  }
66531
66587
  };
66532
66588
 
66533
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.domtools.js
66589
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.domtools.js
66534
66590
  var DomTools = class {
66535
66591
  // ======
66536
66592
  // STATIC
@@ -66675,7 +66731,7 @@ var DomTools = class {
66675
66731
  }
66676
66732
  };
66677
66733
 
66678
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.basestyles.js
66734
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.basestyles.js
66679
66735
  var scrollBarStyles = (() => {
66680
66736
  const returnStylesOld = navigator.userAgent.indexOf("Mac OS X") === -1 ? i``.cssText : ``;
66681
66737
  const returnStyles = i`
@@ -66710,7 +66766,7 @@ var globalBaseStyles = i`
66710
66766
  ${r(scrollBarStyles)}
66711
66767
  `.cssText;
66712
66768
 
66713
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js
66769
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js
66714
66770
  var staticStyles = i`
66715
66771
  * {
66716
66772
  transition: background 0.1s, color 0.1s;
@@ -66748,7 +66804,7 @@ var setup = async (elementArg, optionsArg = {}) => {
66748
66804
  return domTools;
66749
66805
  };
66750
66806
 
66751
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.js
66807
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.js
66752
66808
  var domtools_css_exports = {};
66753
66809
  __export(domtools_css_exports, {
66754
66810
  cssGridColumns: () => cssGridColumns
@@ -66761,7 +66817,7 @@ var cssGridColumns = (amountOfColumnsArg, gapSizeArg) => {
66761
66817
  return returnString;
66762
66818
  };
66763
66819
 
66764
- // node_modules/.pnpm/@design.estate+dees-domtools@2.0.51/node_modules/@design.estate/dees-domtools/dist_ts/index.js
66820
+ // node_modules/.pnpm/@design.estate+dees-domtools@2.0.52/node_modules/@design.estate/dees-domtools/dist_ts/index.js
66765
66821
  var plugins = {
66766
66822
  smartdelay: dist_ts_exports3,
66767
66823
  smartpromise: dist_ts_exports,
@@ -68855,7 +68911,7 @@ var demoFunc3 = () => x` <style>
68855
68911
  </dees-dataview-codebox>
68856
68912
  </div>`;
68857
68913
 
68858
- // node_modules/.pnpm/highlight.js@11.8.0/node_modules/highlight.js/es/index.js
68914
+ // node_modules/.pnpm/highlight.js@11.9.0/node_modules/highlight.js/es/index.js
68859
68915
  var import_lib = __toESM(require_lib2(), 1);
68860
68916
  var es_default = import_lib.default;
68861
68917
 
@@ -69269,7 +69325,7 @@ var DeesInputCheckbox = class extends DeesElement {
69269
69325
  constructor() {
69270
69326
  super(...arguments);
69271
69327
  // INSTANCE
69272
- this.changeSubject = new smartrx_plugins_rxjs_exports.Subject();
69328
+ this.changeSubject = new plugins.smartrx.rxjs.Subject();
69273
69329
  this.label = "Label";
69274
69330
  this.value = false;
69275
69331
  this.required = false;
@@ -69439,7 +69495,7 @@ var DeesInputText = class extends DeesElement {
69439
69495
  constructor() {
69440
69496
  super(...arguments);
69441
69497
  // INSTANCE
69442
- this.changeSubject = new smartrx_plugins_rxjs_exports.Subject();
69498
+ this.changeSubject = new plugins.smartrx.rxjs.Subject();
69443
69499
  this.value = "";
69444
69500
  this.required = false;
69445
69501
  this.disabled = false;
@@ -69668,7 +69724,7 @@ var DeesInputQuantitySelector = class extends DeesElement {
69668
69724
  constructor() {
69669
69725
  super();
69670
69726
  // INSTANCE
69671
- this.changeSubject = new smartrx_plugins_rxjs_exports.Subject();
69727
+ this.changeSubject = new plugins.smartrx.rxjs.Subject();
69672
69728
  this.label = "Label";
69673
69729
  this.value = 1;
69674
69730
  this.required = false;
@@ -69784,7 +69840,7 @@ var DeesInputRadio = class extends DeesElement {
69784
69840
  constructor() {
69785
69841
  super();
69786
69842
  // INSTANCE
69787
- this.changeSubject = new smartrx_plugins_rxjs_exports.Subject();
69843
+ this.changeSubject = new plugins.smartrx.rxjs.Subject();
69788
69844
  this.label = "Label";
69789
69845
  this.value = false;
69790
69846
  this.required = false;
@@ -70035,7 +70091,7 @@ var DeesTable = class extends DeesElement {
70035
70091
  this.data = [];
70036
70092
  this.disabled = false;
70037
70093
  this.required = false;
70038
- this.changeSubject = new smartrx_plugins_rxjs_exports.Subject();
70094
+ this.changeSubject = new plugins.smartrx.rxjs.Subject();
70039
70095
  this.dataActions = [];
70040
70096
  this.displayFunction = (itemArg) => itemArg;
70041
70097
  this.reverseDisplayFunction = (itemArg) => itemArg;
@@ -71669,7 +71725,7 @@ var DeesInputIban = class extends DeesElement {
71669
71725
  this.label = "";
71670
71726
  this.key = "";
71671
71727
  this.value = "";
71672
- this.changeSubject = new dist_ts_exports26.rxjs.Subject();
71728
+ this.changeSubject = new dist_ts_exports26.plugins.smartrx.rxjs.Subject();
71673
71729
  }
71674
71730
  render() {
71675
71731
  return x`
@@ -71765,7 +71821,7 @@ var DeesForm = class extends DeesElement {
71765
71821
  constructor() {
71766
71822
  super(...arguments);
71767
71823
  this.name = "myform";
71768
- this.changeSubject = new smartrx_plugins_rxjs_exports.Subject();
71824
+ this.changeSubject = new plugins.smartrx.rxjs.Subject();
71769
71825
  this.readyDeferred = plugins.smartpromise.defer();
71770
71826
  }
71771
71827
  render() {
@@ -74888,7 +74944,7 @@ var DeesInputDropdown = class extends DeesElement {
74888
74944
  constructor() {
74889
74945
  super(...arguments);
74890
74946
  // INSTANCE
74891
- this.changeSubject = new smartrx_plugins_rxjs_exports.Subject();
74947
+ this.changeSubject = new plugins.smartrx.rxjs.Subject();
74892
74948
  this.label = "Label";
74893
74949
  this.options = [];
74894
74950
  this.selectedOption = {
@@ -75064,7 +75120,7 @@ var DeesInputFileupload = class extends DeesElement {
75064
75120
  constructor() {
75065
75121
  super();
75066
75122
  // INSTANCE
75067
- this.changeSubject = new dist_ts_exports26.rxjs.Subject();
75123
+ this.changeSubject = new dist_ts_exports26.plugins.smartrx.rxjs.Subject();
75068
75124
  this.label = null;
75069
75125
  this.value = [];
75070
75126
  this.state = "idle";