gridsmith-ui 0.2.16 → 0.2.18

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.
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { cn, GLASS_BACKDROP, lockBodyScroll, unlockBodyScroll, GLASS_OVERLAY, GLASS_DROPDOWN, GLASS_SURFACE } from './chunk-5XIPPVH7.js';
2
- import { Icon } from './chunk-HA6M6FBR.js';
2
+ import { Icon } from './chunk-H2XI6OUB.js';
3
3
  import { __commonJS, __toESM } from './chunk-5WRI5ZAA.js';
4
4
  import * as React6 from 'react';
5
5
  import React6__default, { createContext, forwardRef, useState, useCallback, useRef, useContext, useId, useMemo, useEffect, createElement, Fragment as Fragment$1, useLayoutEffect, isValidElement, cloneElement, useDebugValue, memo, useReducer, useSyncExternalStore as useSyncExternalStore$1, useImperativeHandle } from 'react';
@@ -8,9 +8,9 @@ import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
8
8
  import { useSyncExternalStore } from 'use-sync-external-store/shim/index.js';
9
9
  import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/shim/with-selector.js';
10
10
 
11
- // ../../node_modules/highlight.js/lib/core.js
11
+ // ../../showcase/node_modules/highlight.js/lib/core.js
12
12
  var require_core = __commonJS({
13
- "../../node_modules/highlight.js/lib/core.js"(exports$1, module) {
13
+ "../../showcase/node_modules/highlight.js/lib/core.js"(exports, module) {
14
14
  function deepFreeze(obj) {
15
15
  if (obj instanceof Map) {
16
16
  obj.clear = obj.delete = obj.set = function() {
@@ -2723,12 +2723,13 @@ function isSameDay(a, b) {
2723
2723
  function formatDate(d2) {
2724
2724
  return `${MONTHS[d2.getMonth()].slice(0, 3)} ${d2.getDate()}, ${d2.getFullYear()}`;
2725
2725
  }
2726
- function DatePicker({ value, onChange, placeholder = "Pick a date", disabled, className, ref, container, error = false, label }) {
2726
+ function DatePicker({ value, onChange, placeholder = "Pick a date", disabled, className, ref, container, error = false, label, id }) {
2727
2727
  const [open, setOpen] = useState(false);
2728
2728
  const [viewDate, setViewDate] = useState(() => value ?? /* @__PURE__ */ new Date());
2729
2729
  const triggerRef = useRef(null);
2730
2730
  const panelRef = useRef(null);
2731
- const inputId = useId();
2731
+ const generatedId = useId();
2732
+ const inputId = id ?? generatedId;
2732
2733
  const pos = usePosition(triggerRef, panelRef, open, { side: "bottom", align: "start", offset: 4, flip: true });
2733
2734
  const year = viewDate.getFullYear();
2734
2735
  const month = viewDate.getMonth();
@@ -3205,7 +3206,8 @@ function TimePicker({
3205
3206
  className,
3206
3207
  ref,
3207
3208
  container,
3208
- error = false
3209
+ error = false,
3210
+ id
3209
3211
  }) {
3210
3212
  const [open, setOpen] = useState(false);
3211
3213
  const triggerRef = useRef(null);
@@ -3244,12 +3246,13 @@ function TimePicker({
3244
3246
  /* @__PURE__ */ jsxs(
3245
3247
  "button",
3246
3248
  {
3249
+ id,
3247
3250
  ref: triggerRef,
3248
3251
  onClick: () => !disabled && setOpen(!open),
3249
3252
  disabled,
3250
3253
  "aria-invalid": error || void 0,
3251
3254
  className: cn(
3252
- "inline-flex items-center gap-ds-2 text-sm",
3255
+ "flex w-full items-center gap-ds-2 text-sm",
3253
3256
  "border-[length:var(--ds-border-width)]",
3254
3257
  error ? "border-[var(--ds-status-error)]" : "border-[var(--ds-input-border)]",
3255
3258
  "bg-[var(--ds-input-bg)] rounded-[var(--ds-radius-md)]",
@@ -3349,7 +3352,8 @@ function NumberInput({
3349
3352
  suffix,
3350
3353
  size = "md",
3351
3354
  className,
3352
- error = false
3355
+ error = false,
3356
+ id
3353
3357
  }) {
3354
3358
  const intervalRef = useRef(void 0);
3355
3359
  const timeoutRef = useRef(void 0);
@@ -3401,7 +3405,7 @@ function NumberInput({
3401
3405
  "div",
3402
3406
  {
3403
3407
  className: cn(
3404
- "inline-flex items-center",
3408
+ "flex items-center w-full",
3405
3409
  "border-[length:var(--ds-border-width)]",
3406
3410
  error ? "border-[var(--ds-status-error)]" : "border-[var(--ds-input-border)]",
3407
3411
  "rounded-[var(--ds-radius-md)]",
@@ -3442,6 +3446,7 @@ function NumberInput({
3442
3446
  /* @__PURE__ */ jsx(
3443
3447
  "input",
3444
3448
  {
3449
+ id,
3445
3450
  type: "text",
3446
3451
  inputMode: "decimal",
3447
3452
  "aria-invalid": error || void 0,
@@ -3567,7 +3572,8 @@ function TagInput({
3567
3572
  maxTags = Infinity,
3568
3573
  disabled = false,
3569
3574
  className,
3570
- error = false
3575
+ error = false,
3576
+ id
3571
3577
  }) {
3572
3578
  const [input, setInput] = useState("");
3573
3579
  const inputRef = useRef(null);
@@ -3645,6 +3651,7 @@ function TagInput({
3645
3651
  /* @__PURE__ */ jsx(
3646
3652
  "input",
3647
3653
  {
3654
+ id,
3648
3655
  ref: inputRef,
3649
3656
  type: "text",
3650
3657
  "aria-invalid": error || void 0,
@@ -3682,7 +3689,8 @@ function PinInput({
3682
3689
  disabled = false,
3683
3690
  size = "md",
3684
3691
  className,
3685
- error = false
3692
+ error = false,
3693
+ id
3686
3694
  }) {
3687
3695
  const inputsRef = useRef([]);
3688
3696
  const digits = value.padEnd(length, " ").slice(0, length).split("");
@@ -3743,6 +3751,7 @@ function PinInput({
3743
3751
  children: digits.map((digit, i) => /* @__PURE__ */ jsx(
3744
3752
  "input",
3745
3753
  {
3754
+ id: i === 0 ? id : void 0,
3746
3755
  ref: (el) => {
3747
3756
  inputsRef.current[i] = el;
3748
3757
  },
@@ -30935,7 +30944,7 @@ Extension.create({
30935
30944
  // ../../showcase/node_modules/@tiptap/extension-placeholder/dist/index.js
30936
30945
  var index_default5 = Placeholder;
30937
30946
 
30938
- // ../../node_modules/highlight.js/es/core.js
30947
+ // ../../showcase/node_modules/highlight.js/es/core.js
30939
30948
  var import_core46 = __toESM(require_core(), 1);
30940
30949
  var core_default = import_core46.default;
30941
30950
 
@@ -31687,7 +31696,7 @@ var index_default13 = Superscript;
31687
31696
  // ../../showcase/node_modules/@tiptap/extension-font-family/dist/index.js
31688
31697
  var index_default14 = FontFamily;
31689
31698
 
31690
- // ../../node_modules/highlight.js/es/languages/1c.js
31699
+ // ../../showcase/node_modules/highlight.js/es/languages/1c.js
31691
31700
  function _1c(hljs) {
31692
31701
  const UNDERSCORE_IDENT_RE = "[A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_][A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_0-9]+";
31693
31702
  const v7_keywords = "\u0434\u0430\u043B\u0435\u0435 ";
@@ -31835,7 +31844,7 @@ function _1c(hljs) {
31835
31844
  };
31836
31845
  }
31837
31846
 
31838
- // ../../node_modules/highlight.js/es/languages/abnf.js
31847
+ // ../../showcase/node_modules/highlight.js/es/languages/abnf.js
31839
31848
  function abnf(hljs) {
31840
31849
  const regex = hljs.regex;
31841
31850
  const IDENT = /^[a-zA-Z][a-zA-Z0-9-]*/;
@@ -31900,7 +31909,7 @@ function abnf(hljs) {
31900
31909
  };
31901
31910
  }
31902
31911
 
31903
- // ../../node_modules/highlight.js/es/languages/accesslog.js
31912
+ // ../../showcase/node_modules/highlight.js/es/languages/accesslog.js
31904
31913
  function accesslog(hljs) {
31905
31914
  const regex = hljs.regex;
31906
31915
  const HTTP_VERBS = [
@@ -31981,7 +31990,7 @@ function accesslog(hljs) {
31981
31990
  };
31982
31991
  }
31983
31992
 
31984
- // ../../node_modules/highlight.js/es/languages/actionscript.js
31993
+ // ../../showcase/node_modules/highlight.js/es/languages/actionscript.js
31985
31994
  function actionscript(hljs) {
31986
31995
  const regex = hljs.regex;
31987
31996
  const IDENT_RE3 = /[a-zA-Z_$][a-zA-Z0-9_$]*/;
@@ -32123,7 +32132,7 @@ function actionscript(hljs) {
32123
32132
  };
32124
32133
  }
32125
32134
 
32126
- // ../../node_modules/highlight.js/es/languages/ada.js
32135
+ // ../../showcase/node_modules/highlight.js/es/languages/ada.js
32127
32136
  function ada(hljs) {
32128
32137
  const INTEGER_RE = "\\d(_|\\d)*";
32129
32138
  const EXPONENT_RE = "[eE][-+]?" + INTEGER_RE;
@@ -32345,7 +32354,7 @@ function ada(hljs) {
32345
32354
  };
32346
32355
  }
32347
32356
 
32348
- // ../../node_modules/highlight.js/es/languages/angelscript.js
32357
+ // ../../showcase/node_modules/highlight.js/es/languages/angelscript.js
32349
32358
  function angelscript(hljs) {
32350
32359
  const builtInTypeMode = {
32351
32360
  className: "built_in",
@@ -32511,7 +32520,7 @@ function angelscript(hljs) {
32511
32520
  };
32512
32521
  }
32513
32522
 
32514
- // ../../node_modules/highlight.js/es/languages/apache.js
32523
+ // ../../showcase/node_modules/highlight.js/es/languages/apache.js
32515
32524
  function apache(hljs) {
32516
32525
  const NUMBER_REF = {
32517
32526
  className: "number",
@@ -32605,7 +32614,7 @@ function apache(hljs) {
32605
32614
  };
32606
32615
  }
32607
32616
 
32608
- // ../../node_modules/highlight.js/es/languages/applescript.js
32617
+ // ../../showcase/node_modules/highlight.js/es/languages/applescript.js
32609
32618
  function applescript(hljs) {
32610
32619
  const regex = hljs.regex;
32611
32620
  const STRING = hljs.inherit(
@@ -32726,7 +32735,7 @@ function applescript(hljs) {
32726
32735
  };
32727
32736
  }
32728
32737
 
32729
- // ../../node_modules/highlight.js/es/languages/arcade.js
32738
+ // ../../showcase/node_modules/highlight.js/es/languages/arcade.js
32730
32739
  function arcade(hljs) {
32731
32740
  const regex = hljs.regex;
32732
32741
  const IDENT_RE3 = "[A-Za-z_][0-9A-Za-z_]*";
@@ -33148,7 +33157,7 @@ function arcade(hljs) {
33148
33157
  };
33149
33158
  }
33150
33159
 
33151
- // ../../node_modules/highlight.js/es/languages/armasm.js
33160
+ // ../../showcase/node_modules/highlight.js/es/languages/armasm.js
33152
33161
  function armasm(hljs) {
33153
33162
  const COMMENT = { variants: [
33154
33163
  hljs.COMMENT("^[ \\t]*(?=#)", "$", {
@@ -33236,7 +33245,7 @@ function armasm(hljs) {
33236
33245
  };
33237
33246
  }
33238
33247
 
33239
- // ../../node_modules/highlight.js/es/languages/asciidoc.js
33248
+ // ../../showcase/node_modules/highlight.js/es/languages/asciidoc.js
33240
33249
  function asciidoc(hljs) {
33241
33250
  const regex = hljs.regex;
33242
33251
  const HORIZONTAL_RULE = {
@@ -33484,7 +33493,7 @@ function asciidoc(hljs) {
33484
33493
  };
33485
33494
  }
33486
33495
 
33487
- // ../../node_modules/highlight.js/es/languages/aspectj.js
33496
+ // ../../showcase/node_modules/highlight.js/es/languages/aspectj.js
33488
33497
  function aspectj(hljs) {
33489
33498
  const regex = hljs.regex;
33490
33499
  const KEYWORDS5 = [
@@ -33704,7 +33713,7 @@ function aspectj(hljs) {
33704
33713
  };
33705
33714
  }
33706
33715
 
33707
- // ../../node_modules/highlight.js/es/languages/autohotkey.js
33716
+ // ../../showcase/node_modules/highlight.js/es/languages/autohotkey.js
33708
33717
  function autohotkey(hljs) {
33709
33718
  const BACKTICK_ESCAPE = { begin: "`[\\s\\S]" };
33710
33719
  return {
@@ -33771,7 +33780,7 @@ function autohotkey(hljs) {
33771
33780
  };
33772
33781
  }
33773
33782
 
33774
- // ../../node_modules/highlight.js/es/languages/autoit.js
33783
+ // ../../showcase/node_modules/highlight.js/es/languages/autoit.js
33775
33784
  function autoit(hljs) {
33776
33785
  const KEYWORDS5 = "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";
33777
33786
  const DIRECTIVES = [
@@ -33925,7 +33934,7 @@ function autoit(hljs) {
33925
33934
  };
33926
33935
  }
33927
33936
 
33928
- // ../../node_modules/highlight.js/es/languages/avrasm.js
33937
+ // ../../showcase/node_modules/highlight.js/es/languages/avrasm.js
33929
33938
  function avrasm(hljs) {
33930
33939
  return {
33931
33940
  name: "AVR Assembly",
@@ -33983,7 +33992,7 @@ function avrasm(hljs) {
33983
33992
  };
33984
33993
  }
33985
33994
 
33986
- // ../../node_modules/highlight.js/es/languages/awk.js
33995
+ // ../../showcase/node_modules/highlight.js/es/languages/awk.js
33987
33996
  function awk(hljs) {
33988
33997
  const VARIABLE = {
33989
33998
  className: "variable",
@@ -34042,7 +34051,7 @@ function awk(hljs) {
34042
34051
  };
34043
34052
  }
34044
34053
 
34045
- // ../../node_modules/highlight.js/es/languages/axapta.js
34054
+ // ../../showcase/node_modules/highlight.js/es/languages/axapta.js
34046
34055
  function axapta(hljs) {
34047
34056
  const IDENT_RE3 = hljs.UNDERSCORE_IDENT_RE;
34048
34057
  const BUILT_IN_KEYWORDS = [
@@ -34216,7 +34225,7 @@ function axapta(hljs) {
34216
34225
  };
34217
34226
  }
34218
34227
 
34219
- // ../../node_modules/highlight.js/es/languages/basic.js
34228
+ // ../../showcase/node_modules/highlight.js/es/languages/basic.js
34220
34229
  function basic(hljs) {
34221
34230
  const KEYWORDS5 = [
34222
34231
  "ABS",
@@ -34442,7 +34451,7 @@ function basic(hljs) {
34442
34451
  };
34443
34452
  }
34444
34453
 
34445
- // ../../node_modules/highlight.js/es/languages/bnf.js
34454
+ // ../../showcase/node_modules/highlight.js/es/languages/bnf.js
34446
34455
  function bnf(hljs) {
34447
34456
  return {
34448
34457
  name: "Backus\u2013Naur Form",
@@ -34473,7 +34482,7 @@ function bnf(hljs) {
34473
34482
  };
34474
34483
  }
34475
34484
 
34476
- // ../../node_modules/highlight.js/es/languages/brainfuck.js
34485
+ // ../../showcase/node_modules/highlight.js/es/languages/brainfuck.js
34477
34486
  function brainfuck(hljs) {
34478
34487
  const LITERAL = {
34479
34488
  className: "literal",
@@ -34520,7 +34529,7 @@ function brainfuck(hljs) {
34520
34529
  };
34521
34530
  }
34522
34531
 
34523
- // ../../node_modules/highlight.js/es/languages/cal.js
34532
+ // ../../showcase/node_modules/highlight.js/es/languages/cal.js
34524
34533
  function cal(hljs) {
34525
34534
  const regex = hljs.regex;
34526
34535
  const KEYWORDS5 = [
@@ -34668,7 +34677,7 @@ function cal(hljs) {
34668
34677
  };
34669
34678
  }
34670
34679
 
34671
- // ../../node_modules/highlight.js/es/languages/capnproto.js
34680
+ // ../../showcase/node_modules/highlight.js/es/languages/capnproto.js
34672
34681
  function capnproto(hljs) {
34673
34682
  const KEYWORDS5 = [
34674
34683
  "struct",
@@ -34758,7 +34767,7 @@ function capnproto(hljs) {
34758
34767
  };
34759
34768
  }
34760
34769
 
34761
- // ../../node_modules/highlight.js/es/languages/ceylon.js
34770
+ // ../../showcase/node_modules/highlight.js/es/languages/ceylon.js
34762
34771
  function ceylon(hljs) {
34763
34772
  const KEYWORDS5 = [
34764
34773
  "assembly",
@@ -34886,7 +34895,7 @@ function ceylon(hljs) {
34886
34895
  };
34887
34896
  }
34888
34897
 
34889
- // ../../node_modules/highlight.js/es/languages/clean.js
34898
+ // ../../showcase/node_modules/highlight.js/es/languages/clean.js
34890
34899
  function clean(hljs) {
34891
34900
  const KEYWORDS5 = [
34892
34901
  "if",
@@ -34945,7 +34954,7 @@ function clean(hljs) {
34945
34954
  };
34946
34955
  }
34947
34956
 
34948
- // ../../node_modules/highlight.js/es/languages/clojure.js
34957
+ // ../../showcase/node_modules/highlight.js/es/languages/clojure.js
34949
34958
  function clojure(hljs) {
34950
34959
  const SYMBOLSTART = "a-zA-Z_\\-!.?+*=<>&'";
34951
34960
  const SYMBOL_RE = "[#]?[" + SYMBOLSTART + "][" + SYMBOLSTART + "0-9/;:$#]*";
@@ -35100,7 +35109,7 @@ function clojure(hljs) {
35100
35109
  };
35101
35110
  }
35102
35111
 
35103
- // ../../node_modules/highlight.js/es/languages/clojure-repl.js
35112
+ // ../../showcase/node_modules/highlight.js/es/languages/clojure-repl.js
35104
35113
  function clojureRepl(hljs) {
35105
35114
  return {
35106
35115
  name: "Clojure REPL",
@@ -35117,7 +35126,7 @@ function clojureRepl(hljs) {
35117
35126
  };
35118
35127
  }
35119
35128
 
35120
- // ../../node_modules/highlight.js/es/languages/cmake.js
35129
+ // ../../showcase/node_modules/highlight.js/es/languages/cmake.js
35121
35130
  function cmake(hljs) {
35122
35131
  return {
35123
35132
  name: "CMake",
@@ -35141,7 +35150,7 @@ function cmake(hljs) {
35141
35150
  };
35142
35151
  }
35143
35152
 
35144
- // ../../node_modules/highlight.js/es/languages/coffeescript.js
35153
+ // ../../showcase/node_modules/highlight.js/es/languages/coffeescript.js
35145
35154
  var KEYWORDS = [
35146
35155
  "as",
35147
35156
  // for exports
@@ -35491,7 +35500,7 @@ function coffeescript(hljs) {
35491
35500
  };
35492
35501
  }
35493
35502
 
35494
- // ../../node_modules/highlight.js/es/languages/coq.js
35503
+ // ../../showcase/node_modules/highlight.js/es/languages/coq.js
35495
35504
  function coq(hljs) {
35496
35505
  const KEYWORDS5 = [
35497
35506
  "_|0",
@@ -35930,7 +35939,7 @@ function coq(hljs) {
35930
35939
  };
35931
35940
  }
35932
35941
 
35933
- // ../../node_modules/highlight.js/es/languages/cos.js
35942
+ // ../../showcase/node_modules/highlight.js/es/languages/cos.js
35934
35943
  function cos(hljs) {
35935
35944
  const STRINGS = {
35936
35945
  className: "string",
@@ -36021,7 +36030,7 @@ function cos(hljs) {
36021
36030
  };
36022
36031
  }
36023
36032
 
36024
- // ../../node_modules/highlight.js/es/languages/crmsh.js
36033
+ // ../../showcase/node_modules/highlight.js/es/languages/crmsh.js
36025
36034
  function crmsh(hljs) {
36026
36035
  const RESOURCES = "primitive rsc_template";
36027
36036
  const COMMANDS = "group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml";
@@ -36107,7 +36116,7 @@ function crmsh(hljs) {
36107
36116
  };
36108
36117
  }
36109
36118
 
36110
- // ../../node_modules/highlight.js/es/languages/crystal.js
36119
+ // ../../showcase/node_modules/highlight.js/es/languages/crystal.js
36111
36120
  function crystal(hljs) {
36112
36121
  const INT_SUFFIX = "(_?[ui](8|16|32|64|128))?";
36113
36122
  const FLOAT_SUFFIX = "(_?f(32|64))?";
@@ -36405,7 +36414,7 @@ function crystal(hljs) {
36405
36414
  };
36406
36415
  }
36407
36416
 
36408
- // ../../node_modules/highlight.js/es/languages/csp.js
36417
+ // ../../showcase/node_modules/highlight.js/es/languages/csp.js
36409
36418
  function csp(hljs) {
36410
36419
  const KEYWORDS5 = [
36411
36420
  "base-uri",
@@ -36452,7 +36461,7 @@ function csp(hljs) {
36452
36461
  };
36453
36462
  }
36454
36463
 
36455
- // ../../node_modules/highlight.js/es/languages/d.js
36464
+ // ../../showcase/node_modules/highlight.js/es/languages/d.js
36456
36465
  function d(hljs) {
36457
36466
  const D_KEYWORDS = {
36458
36467
  $pattern: hljs.UNDERSCORE_IDENT_RE,
@@ -36564,7 +36573,7 @@ function d(hljs) {
36564
36573
  };
36565
36574
  }
36566
36575
 
36567
- // ../../node_modules/highlight.js/es/languages/dart.js
36576
+ // ../../showcase/node_modules/highlight.js/es/languages/dart.js
36568
36577
  function dart(hljs) {
36569
36578
  const SUBST = {
36570
36579
  className: "subst",
@@ -36818,7 +36827,7 @@ function dart(hljs) {
36818
36827
  };
36819
36828
  }
36820
36829
 
36821
- // ../../node_modules/highlight.js/es/languages/delphi.js
36830
+ // ../../showcase/node_modules/highlight.js/es/languages/delphi.js
36822
36831
  function delphi(hljs) {
36823
36832
  const KEYWORDS5 = [
36824
36833
  "exports",
@@ -37063,7 +37072,7 @@ function delphi(hljs) {
37063
37072
  };
37064
37073
  }
37065
37074
 
37066
- // ../../node_modules/highlight.js/es/languages/django.js
37075
+ // ../../showcase/node_modules/highlight.js/es/languages/django.js
37067
37076
  function django(hljs) {
37068
37077
  const FILTER = {
37069
37078
  begin: /\|[A-Za-z]+:?/,
@@ -37109,7 +37118,7 @@ function django(hljs) {
37109
37118
  };
37110
37119
  }
37111
37120
 
37112
- // ../../node_modules/highlight.js/es/languages/dns.js
37121
+ // ../../showcase/node_modules/highlight.js/es/languages/dns.js
37113
37122
  function dns(hljs) {
37114
37123
  const KEYWORDS5 = [
37115
37124
  "IN",
@@ -37179,7 +37188,7 @@ function dns(hljs) {
37179
37188
  };
37180
37189
  }
37181
37190
 
37182
- // ../../node_modules/highlight.js/es/languages/dockerfile.js
37191
+ // ../../showcase/node_modules/highlight.js/es/languages/dockerfile.js
37183
37192
  function dockerfile(hljs) {
37184
37193
  const KEYWORDS5 = [
37185
37194
  "from",
@@ -37213,7 +37222,7 @@ function dockerfile(hljs) {
37213
37222
  };
37214
37223
  }
37215
37224
 
37216
- // ../../node_modules/highlight.js/es/languages/dos.js
37225
+ // ../../showcase/node_modules/highlight.js/es/languages/dos.js
37217
37226
  function dos(hljs) {
37218
37227
  const COMMENT = hljs.COMMENT(
37219
37228
  /^\s*@?rem\b/,
@@ -37369,7 +37378,7 @@ function dos(hljs) {
37369
37378
  };
37370
37379
  }
37371
37380
 
37372
- // ../../node_modules/highlight.js/es/languages/dsconfig.js
37381
+ // ../../showcase/node_modules/highlight.js/es/languages/dsconfig.js
37373
37382
  function dsconfig(hljs) {
37374
37383
  const QUOTED_PROPERTY = {
37375
37384
  className: "string",
@@ -37426,7 +37435,7 @@ function dsconfig(hljs) {
37426
37435
  };
37427
37436
  }
37428
37437
 
37429
- // ../../node_modules/highlight.js/es/languages/dts.js
37438
+ // ../../showcase/node_modules/highlight.js/es/languages/dts.js
37430
37439
  function dts(hljs) {
37431
37440
  const STRINGS = {
37432
37441
  className: "string",
@@ -37561,7 +37570,7 @@ function dts(hljs) {
37561
37570
  };
37562
37571
  }
37563
37572
 
37564
- // ../../node_modules/highlight.js/es/languages/dust.js
37573
+ // ../../showcase/node_modules/highlight.js/es/languages/dust.js
37565
37574
  function dust(hljs) {
37566
37575
  const EXPRESSION_KEYWORDS = "if eq ne lt lte gt gte select default math sep";
37567
37576
  return {
@@ -37598,7 +37607,7 @@ function dust(hljs) {
37598
37607
  };
37599
37608
  }
37600
37609
 
37601
- // ../../node_modules/highlight.js/es/languages/ebnf.js
37610
+ // ../../showcase/node_modules/highlight.js/es/languages/ebnf.js
37602
37611
  function ebnf(hljs) {
37603
37612
  const commentMode = hljs.COMMENT(/\(\*/, /\*\)/);
37604
37613
  const nonTerminalMode = {
@@ -37640,7 +37649,7 @@ function ebnf(hljs) {
37640
37649
  };
37641
37650
  }
37642
37651
 
37643
- // ../../node_modules/highlight.js/es/languages/elixir.js
37652
+ // ../../showcase/node_modules/highlight.js/es/languages/elixir.js
37644
37653
  function elixir(hljs) {
37645
37654
  const regex = hljs.regex;
37646
37655
  const ELIXIR_IDENT_RE = "[a-zA-Z_][a-zA-Z0-9_.]*(!|\\?)?";
@@ -37912,7 +37921,7 @@ function elixir(hljs) {
37912
37921
  };
37913
37922
  }
37914
37923
 
37915
- // ../../node_modules/highlight.js/es/languages/elm.js
37924
+ // ../../showcase/node_modules/highlight.js/es/languages/elm.js
37916
37925
  function elm(hljs) {
37917
37926
  const COMMENT = { variants: [
37918
37927
  hljs.COMMENT("--", "$"),
@@ -38040,7 +38049,7 @@ function elm(hljs) {
38040
38049
  };
38041
38050
  }
38042
38051
 
38043
- // ../../node_modules/highlight.js/es/languages/erb.js
38052
+ // ../../showcase/node_modules/highlight.js/es/languages/erb.js
38044
38053
  function erb(hljs) {
38045
38054
  return {
38046
38055
  name: "ERB",
@@ -38058,7 +38067,7 @@ function erb(hljs) {
38058
38067
  };
38059
38068
  }
38060
38069
 
38061
- // ../../node_modules/highlight.js/es/languages/erlang.js
38070
+ // ../../showcase/node_modules/highlight.js/es/languages/erlang.js
38062
38071
  function erlang(hljs) {
38063
38072
  const BASIC_ATOM_RE = "[a-z'][a-zA-Z0-9_']*";
38064
38073
  const FUNCTION_NAME_RE = "(" + BASIC_ATOM_RE + ":" + BASIC_ATOM_RE + "|" + BASIC_ATOM_RE + ")";
@@ -38275,7 +38284,7 @@ function erlang(hljs) {
38275
38284
  };
38276
38285
  }
38277
38286
 
38278
- // ../../node_modules/highlight.js/es/languages/erlang-repl.js
38287
+ // ../../showcase/node_modules/highlight.js/es/languages/erlang-repl.js
38279
38288
  function erlangRepl(hljs) {
38280
38289
  const regex = hljs.regex;
38281
38290
  return {
@@ -38320,7 +38329,7 @@ function erlangRepl(hljs) {
38320
38329
  };
38321
38330
  }
38322
38331
 
38323
- // ../../node_modules/highlight.js/es/languages/excel.js
38332
+ // ../../showcase/node_modules/highlight.js/es/languages/excel.js
38324
38333
  function excel(hljs) {
38325
38334
  const BUILT_INS5 = [
38326
38335
  "ABS",
@@ -38894,7 +38903,7 @@ function excel(hljs) {
38894
38903
  };
38895
38904
  }
38896
38905
 
38897
- // ../../node_modules/highlight.js/es/languages/fix.js
38906
+ // ../../showcase/node_modules/highlight.js/es/languages/fix.js
38898
38907
  function fix(hljs) {
38899
38908
  return {
38900
38909
  name: "FIX",
@@ -38927,7 +38936,7 @@ function fix(hljs) {
38927
38936
  };
38928
38937
  }
38929
38938
 
38930
- // ../../node_modules/highlight.js/es/languages/flix.js
38939
+ // ../../showcase/node_modules/highlight.js/es/languages/flix.js
38931
38940
  function flix(hljs) {
38932
38941
  const CHAR = {
38933
38942
  className: "string",
@@ -38994,7 +39003,7 @@ function flix(hljs) {
38994
39003
  };
38995
39004
  }
38996
39005
 
38997
- // ../../node_modules/highlight.js/es/languages/fortran.js
39006
+ // ../../showcase/node_modules/highlight.js/es/languages/fortran.js
38998
39007
  function fortran(hljs) {
38999
39008
  const regex = hljs.regex;
39000
39009
  const PARAMS = {
@@ -39554,7 +39563,7 @@ function fortran(hljs) {
39554
39563
  };
39555
39564
  }
39556
39565
 
39557
- // ../../node_modules/highlight.js/es/languages/fsharp.js
39566
+ // ../../showcase/node_modules/highlight.js/es/languages/fsharp.js
39558
39567
  function escape(value) {
39559
39568
  return new RegExp(value.replace(/[-/\\^$*+?.()|[\]{}]/g, "\\$&"), "m");
39560
39569
  }
@@ -40120,7 +40129,7 @@ function fsharp(hljs) {
40120
40129
  };
40121
40130
  }
40122
40131
 
40123
- // ../../node_modules/highlight.js/es/languages/gams.js
40132
+ // ../../showcase/node_modules/highlight.js/es/languages/gams.js
40124
40133
  function gams(hljs) {
40125
40134
  const regex = hljs.regex;
40126
40135
  const KEYWORDS5 = {
@@ -40273,7 +40282,7 @@ function gams(hljs) {
40273
40282
  };
40274
40283
  }
40275
40284
 
40276
- // ../../node_modules/highlight.js/es/languages/gauss.js
40285
+ // ../../showcase/node_modules/highlight.js/es/languages/gauss.js
40277
40286
  function gauss(hljs) {
40278
40287
  const KEYWORDS5 = {
40279
40288
  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",
@@ -40460,7 +40469,7 @@ function gauss(hljs) {
40460
40469
  };
40461
40470
  }
40462
40471
 
40463
- // ../../node_modules/highlight.js/es/languages/gcode.js
40472
+ // ../../showcase/node_modules/highlight.js/es/languages/gcode.js
40464
40473
  function gcode(hljs) {
40465
40474
  const regex = hljs.regex;
40466
40475
  const GCODE_KEYWORDS = {
@@ -40622,7 +40631,7 @@ function gcode(hljs) {
40622
40631
  };
40623
40632
  }
40624
40633
 
40625
- // ../../node_modules/highlight.js/es/languages/gherkin.js
40634
+ // ../../showcase/node_modules/highlight.js/es/languages/gherkin.js
40626
40635
  function gherkin(hljs) {
40627
40636
  return {
40628
40637
  name: "Gherkin",
@@ -40664,7 +40673,7 @@ function gherkin(hljs) {
40664
40673
  };
40665
40674
  }
40666
40675
 
40667
- // ../../node_modules/highlight.js/es/languages/glsl.js
40676
+ // ../../showcase/node_modules/highlight.js/es/languages/glsl.js
40668
40677
  function glsl(hljs) {
40669
40678
  return {
40670
40679
  name: "GLSL",
@@ -40694,7 +40703,7 @@ function glsl(hljs) {
40694
40703
  };
40695
40704
  }
40696
40705
 
40697
- // ../../node_modules/highlight.js/es/languages/gml.js
40706
+ // ../../showcase/node_modules/highlight.js/es/languages/gml.js
40698
40707
  function gml(hljs) {
40699
40708
  const KEYWORDS5 = [
40700
40709
  "#endregion",
@@ -43817,7 +43826,7 @@ function gml(hljs) {
43817
43826
  };
43818
43827
  }
43819
43828
 
43820
- // ../../node_modules/highlight.js/es/languages/golo.js
43829
+ // ../../showcase/node_modules/highlight.js/es/languages/golo.js
43821
43830
  function golo(hljs) {
43822
43831
  const KEYWORDS5 = [
43823
43832
  "println",
@@ -43889,7 +43898,7 @@ function golo(hljs) {
43889
43898
  };
43890
43899
  }
43891
43900
 
43892
- // ../../node_modules/highlight.js/es/languages/gradle.js
43901
+ // ../../showcase/node_modules/highlight.js/es/languages/gradle.js
43893
43902
  function gradle(hljs) {
43894
43903
  const KEYWORDS5 = [
43895
43904
  "task",
@@ -44070,7 +44079,7 @@ function gradle(hljs) {
44070
44079
  };
44071
44080
  }
44072
44081
 
44073
- // ../../node_modules/highlight.js/es/languages/groovy.js
44082
+ // ../../showcase/node_modules/highlight.js/es/languages/groovy.js
44074
44083
  function variants(variants2, obj = {}) {
44075
44084
  obj.variants = variants2;
44076
44085
  return obj;
@@ -44250,7 +44259,7 @@ function groovy(hljs) {
44250
44259
  };
44251
44260
  }
44252
44261
 
44253
- // ../../node_modules/highlight.js/es/languages/haml.js
44262
+ // ../../showcase/node_modules/highlight.js/es/languages/haml.js
44254
44263
  function haml(hljs) {
44255
44264
  return {
44256
44265
  name: "HAML",
@@ -44354,7 +44363,7 @@ function haml(hljs) {
44354
44363
  };
44355
44364
  }
44356
44365
 
44357
- // ../../node_modules/highlight.js/es/languages/handlebars.js
44366
+ // ../../showcase/node_modules/highlight.js/es/languages/handlebars.js
44358
44367
  function handlebars(hljs) {
44359
44368
  const regex = hljs.regex;
44360
44369
  const BUILT_INS5 = {
@@ -44584,7 +44593,7 @@ function handlebars(hljs) {
44584
44593
  };
44585
44594
  }
44586
44595
 
44587
- // ../../node_modules/highlight.js/es/languages/haskell.js
44596
+ // ../../showcase/node_modules/highlight.js/es/languages/haskell.js
44588
44597
  function haskell(hljs) {
44589
44598
  const decimalDigits3 = "([0-9]_*)+";
44590
44599
  const hexDigits3 = "([0-9a-fA-F]_*)+";
@@ -44774,7 +44783,7 @@ function haskell(hljs) {
44774
44783
  };
44775
44784
  }
44776
44785
 
44777
- // ../../node_modules/highlight.js/es/languages/haxe.js
44786
+ // ../../showcase/node_modules/highlight.js/es/languages/haxe.js
44778
44787
  function haxe(hljs) {
44779
44788
  const IDENT_RE3 = "[a-zA-Z_$][a-zA-Z0-9_$]*";
44780
44789
  const HAXE_NUMBER_RE = /(-?)(\b0[xX][a-fA-F0-9_]+|(\b\d+(\.[\d_]*)?|\.[\d_]+)(([eE][-+]?\d+)|i32|u32|i64|f64)?)/;
@@ -44934,7 +44943,7 @@ function haxe(hljs) {
44934
44943
  };
44935
44944
  }
44936
44945
 
44937
- // ../../node_modules/highlight.js/es/languages/hsp.js
44946
+ // ../../showcase/node_modules/highlight.js/es/languages/hsp.js
44938
44947
  function hsp(hljs) {
44939
44948
  return {
44940
44949
  name: "HSP",
@@ -44981,7 +44990,7 @@ function hsp(hljs) {
44981
44990
  };
44982
44991
  }
44983
44992
 
44984
- // ../../node_modules/highlight.js/es/languages/http.js
44993
+ // ../../showcase/node_modules/highlight.js/es/languages/http.js
44985
44994
  function http(hljs) {
44986
44995
  const regex = hljs.regex;
44987
44996
  const VERSION = "HTTP/([32]|1\\.[01])";
@@ -45069,7 +45078,7 @@ function http(hljs) {
45069
45078
  };
45070
45079
  }
45071
45080
 
45072
- // ../../node_modules/highlight.js/es/languages/hy.js
45081
+ // ../../showcase/node_modules/highlight.js/es/languages/hy.js
45073
45082
  function hy(hljs) {
45074
45083
  const SYMBOLSTART = "a-zA-Z_\\-!.?+*=<>&#'";
45075
45084
  const SYMBOL_RE = "[" + SYMBOLSTART + "][" + SYMBOLSTART + "0-9/;:]*";
@@ -45167,7 +45176,7 @@ function hy(hljs) {
45167
45176
  };
45168
45177
  }
45169
45178
 
45170
- // ../../node_modules/highlight.js/es/languages/inform7.js
45179
+ // ../../showcase/node_modules/highlight.js/es/languages/inform7.js
45171
45180
  function inform7(hljs) {
45172
45181
  const START_BRACKET = "\\[";
45173
45182
  const END_BRACKET = "\\]";
@@ -45224,7 +45233,7 @@ function inform7(hljs) {
45224
45233
  };
45225
45234
  }
45226
45235
 
45227
- // ../../node_modules/highlight.js/es/languages/irpf90.js
45236
+ // ../../showcase/node_modules/highlight.js/es/languages/irpf90.js
45228
45237
  function irpf90(hljs) {
45229
45238
  const regex = hljs.regex;
45230
45239
  const PARAMS = {
@@ -45278,7 +45287,7 @@ function irpf90(hljs) {
45278
45287
  };
45279
45288
  }
45280
45289
 
45281
- // ../../node_modules/highlight.js/es/languages/isbl.js
45290
+ // ../../showcase/node_modules/highlight.js/es/languages/isbl.js
45282
45291
  function isbl(hljs) {
45283
45292
  const UNDERSCORE_IDENT_RE = "[A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_!][A-Za-z\u0410-\u042F\u0430-\u044F\u0451\u0401_0-9]*";
45284
45293
  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]*";
@@ -45535,7 +45544,7 @@ function isbl(hljs) {
45535
45544
  };
45536
45545
  }
45537
45546
 
45538
- // ../../node_modules/highlight.js/es/languages/jboss-cli.js
45547
+ // ../../showcase/node_modules/highlight.js/es/languages/jboss-cli.js
45539
45548
  function jbossCli(hljs) {
45540
45549
  const PARAM = {
45541
45550
  begin: /[\w-]+ *=/,
@@ -45588,7 +45597,7 @@ function jbossCli(hljs) {
45588
45597
  };
45589
45598
  }
45590
45599
 
45591
- // ../../node_modules/highlight.js/es/languages/julia.js
45600
+ // ../../showcase/node_modules/highlight.js/es/languages/julia.js
45592
45601
  function julia(hljs) {
45593
45602
  const VARIABLE_NAME_RE = "[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*";
45594
45603
  const KEYWORD_LIST = [
@@ -45957,7 +45966,7 @@ function julia(hljs) {
45957
45966
  return DEFAULT;
45958
45967
  }
45959
45968
 
45960
- // ../../node_modules/highlight.js/es/languages/julia-repl.js
45969
+ // ../../showcase/node_modules/highlight.js/es/languages/julia-repl.js
45961
45970
  function juliaRepl(hljs) {
45962
45971
  return {
45963
45972
  name: "Julia REPL",
@@ -45983,7 +45992,7 @@ function juliaRepl(hljs) {
45983
45992
  };
45984
45993
  }
45985
45994
 
45986
- // ../../node_modules/highlight.js/es/languages/lasso.js
45995
+ // ../../showcase/node_modules/highlight.js/es/languages/lasso.js
45987
45996
  function lasso(hljs) {
45988
45997
  const LASSO_IDENT_RE = "[a-zA-Z_][\\w.]*";
45989
45998
  const LASSO_ANGLE_RE = "<\\?(lasso(script)?|=)";
@@ -46128,7 +46137,7 @@ function lasso(hljs) {
46128
46137
  };
46129
46138
  }
46130
46139
 
46131
- // ../../node_modules/highlight.js/es/languages/latex.js
46140
+ // ../../showcase/node_modules/highlight.js/es/languages/latex.js
46132
46141
  function latex(hljs) {
46133
46142
  const regex = hljs.regex;
46134
46143
  const KNOWN_CONTROL_WORDS = regex.either(...[
@@ -46399,7 +46408,7 @@ function latex(hljs) {
46399
46408
  };
46400
46409
  }
46401
46410
 
46402
- // ../../node_modules/highlight.js/es/languages/ldif.js
46411
+ // ../../showcase/node_modules/highlight.js/es/languages/ldif.js
46403
46412
  function ldif(hljs) {
46404
46413
  return {
46405
46414
  name: "LDIF",
@@ -46422,7 +46431,7 @@ function ldif(hljs) {
46422
46431
  };
46423
46432
  }
46424
46433
 
46425
- // ../../node_modules/highlight.js/es/languages/leaf.js
46434
+ // ../../showcase/node_modules/highlight.js/es/languages/leaf.js
46426
46435
  function leaf(hljs) {
46427
46436
  const IDENT = /([A-Za-z_][A-Za-z_0-9]*)?/;
46428
46437
  const LITERALS5 = [
@@ -46512,7 +46521,7 @@ function leaf(hljs) {
46512
46521
  };
46513
46522
  }
46514
46523
 
46515
- // ../../node_modules/highlight.js/es/languages/lisp.js
46524
+ // ../../showcase/node_modules/highlight.js/es/languages/lisp.js
46516
46525
  function lisp(hljs) {
46517
46526
  const LISP_IDENT_RE = "[a-zA-Z_\\-+\\*\\/<=>&#][a-zA-Z0-9_\\-+*\\/<=>&#!]*";
46518
46527
  const MEC_RE = "\\|[^]*?\\|";
@@ -46644,7 +46653,7 @@ function lisp(hljs) {
46644
46653
  };
46645
46654
  }
46646
46655
 
46647
- // ../../node_modules/highlight.js/es/languages/livecodeserver.js
46656
+ // ../../showcase/node_modules/highlight.js/es/languages/livecodeserver.js
46648
46657
  function livecodeserver(hljs) {
46649
46658
  const VARIABLE = {
46650
46659
  className: "variable",
@@ -46738,7 +46747,7 @@ function livecodeserver(hljs) {
46738
46747
  };
46739
46748
  }
46740
46749
 
46741
- // ../../node_modules/highlight.js/es/languages/livescript.js
46750
+ // ../../showcase/node_modules/highlight.js/es/languages/livescript.js
46742
46751
  var KEYWORDS2 = [
46743
46752
  "as",
46744
46753
  // for exports
@@ -47099,7 +47108,7 @@ function livescript(hljs) {
47099
47108
  };
47100
47109
  }
47101
47110
 
47102
- // ../../node_modules/highlight.js/es/languages/llvm.js
47111
+ // ../../showcase/node_modules/highlight.js/es/languages/llvm.js
47103
47112
  function llvm(hljs) {
47104
47113
  const regex = hljs.regex;
47105
47114
  const IDENT_RE3 = /([-a-zA-Z$._][\w$.-]*)/;
@@ -47188,7 +47197,7 @@ function llvm(hljs) {
47188
47197
  };
47189
47198
  }
47190
47199
 
47191
- // ../../node_modules/highlight.js/es/languages/lsl.js
47200
+ // ../../showcase/node_modules/highlight.js/es/languages/lsl.js
47192
47201
  function lsl(hljs) {
47193
47202
  const LSL_STRING_ESCAPE_CHARS = {
47194
47203
  className: "subst",
@@ -47251,7 +47260,7 @@ function lsl(hljs) {
47251
47260
  };
47252
47261
  }
47253
47262
 
47254
- // ../../node_modules/highlight.js/es/languages/mathematica.js
47263
+ // ../../showcase/node_modules/highlight.js/es/languages/mathematica.js
47255
47264
  var SYSTEM_SYMBOLS = [
47256
47265
  "AASTriangle",
47257
47266
  "AbelianGroup",
@@ -54583,7 +54592,7 @@ function mathematica(hljs) {
54583
54592
  };
54584
54593
  }
54585
54594
 
54586
- // ../../node_modules/highlight.js/es/languages/matlab.js
54595
+ // ../../showcase/node_modules/highlight.js/es/languages/matlab.js
54587
54596
  function matlab(hljs) {
54588
54597
  const TRANSPOSE_RE = "('|\\.')+";
54589
54598
  const TRANSPOSE = {
@@ -54659,7 +54668,7 @@ function matlab(hljs) {
54659
54668
  };
54660
54669
  }
54661
54670
 
54662
- // ../../node_modules/highlight.js/es/languages/maxima.js
54671
+ // ../../showcase/node_modules/highlight.js/es/languages/maxima.js
54663
54672
  function maxima(hljs) {
54664
54673
  const KEYWORDS5 = "if then else elseif for thru do while unless step in and or not";
54665
54674
  const LITERALS5 = "true false unknown inf minf ind und %e %i %pi %phi %gamma";
@@ -54713,7 +54722,7 @@ function maxima(hljs) {
54713
54722
  };
54714
54723
  }
54715
54724
 
54716
- // ../../node_modules/highlight.js/es/languages/mel.js
54725
+ // ../../showcase/node_modules/highlight.js/es/languages/mel.js
54717
54726
  function mel(hljs) {
54718
54727
  return {
54719
54728
  name: "MEL",
@@ -54739,7 +54748,7 @@ function mel(hljs) {
54739
54748
  };
54740
54749
  }
54741
54750
 
54742
- // ../../node_modules/highlight.js/es/languages/mercury.js
54751
+ // ../../showcase/node_modules/highlight.js/es/languages/mercury.js
54743
54752
  function mercury(hljs) {
54744
54753
  const KEYWORDS5 = {
54745
54754
  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",
@@ -54817,7 +54826,7 @@ function mercury(hljs) {
54817
54826
  };
54818
54827
  }
54819
54828
 
54820
- // ../../node_modules/highlight.js/es/languages/mipsasm.js
54829
+ // ../../showcase/node_modules/highlight.js/es/languages/mipsasm.js
54821
54830
  function mipsasm(hljs) {
54822
54831
  return {
54823
54832
  name: "MIPS Assembly",
@@ -54893,7 +54902,7 @@ function mipsasm(hljs) {
54893
54902
  };
54894
54903
  }
54895
54904
 
54896
- // ../../node_modules/highlight.js/es/languages/mizar.js
54905
+ // ../../showcase/node_modules/highlight.js/es/languages/mizar.js
54897
54906
  function mizar(hljs) {
54898
54907
  return {
54899
54908
  name: "Mizar",
@@ -54902,7 +54911,7 @@ function mizar(hljs) {
54902
54911
  };
54903
54912
  }
54904
54913
 
54905
- // ../../node_modules/highlight.js/es/languages/mojolicious.js
54914
+ // ../../showcase/node_modules/highlight.js/es/languages/mojolicious.js
54906
54915
  function mojolicious(hljs) {
54907
54916
  return {
54908
54917
  name: "Mojolicious",
@@ -54930,7 +54939,7 @@ function mojolicious(hljs) {
54930
54939
  };
54931
54940
  }
54932
54941
 
54933
- // ../../node_modules/highlight.js/es/languages/monkey.js
54942
+ // ../../showcase/node_modules/highlight.js/es/languages/monkey.js
54934
54943
  function monkey(hljs) {
54935
54944
  const NUMBER = {
54936
54945
  className: "number",
@@ -55105,7 +55114,7 @@ function monkey(hljs) {
55105
55114
  };
55106
55115
  }
55107
55116
 
55108
- // ../../node_modules/highlight.js/es/languages/moonscript.js
55117
+ // ../../showcase/node_modules/highlight.js/es/languages/moonscript.js
55109
55118
  function moonscript(hljs) {
55110
55119
  const KEYWORDS5 = {
55111
55120
  keyword: (
@@ -55240,7 +55249,7 @@ function moonscript(hljs) {
55240
55249
  };
55241
55250
  }
55242
55251
 
55243
- // ../../node_modules/highlight.js/es/languages/n1ql.js
55252
+ // ../../showcase/node_modules/highlight.js/es/languages/n1ql.js
55244
55253
  function n1ql(hljs) {
55245
55254
  const KEYWORDS5 = [
55246
55255
  "all",
@@ -55591,7 +55600,7 @@ function n1ql(hljs) {
55591
55600
  };
55592
55601
  }
55593
55602
 
55594
- // ../../node_modules/highlight.js/es/languages/nestedtext.js
55603
+ // ../../showcase/node_modules/highlight.js/es/languages/nestedtext.js
55595
55604
  function nestedtext(hljs) {
55596
55605
  const NESTED = {
55597
55606
  match: [
@@ -55667,7 +55676,7 @@ function nestedtext(hljs) {
55667
55676
  };
55668
55677
  }
55669
55678
 
55670
- // ../../node_modules/highlight.js/es/languages/nginx.js
55679
+ // ../../showcase/node_modules/highlight.js/es/languages/nginx.js
55671
55680
  function nginx(hljs) {
55672
55681
  const regex = hljs.regex;
55673
55682
  const VAR = {
@@ -55810,7 +55819,7 @@ function nginx(hljs) {
55810
55819
  };
55811
55820
  }
55812
55821
 
55813
- // ../../node_modules/highlight.js/es/languages/nim.js
55822
+ // ../../showcase/node_modules/highlight.js/es/languages/nim.js
55814
55823
  function nim(hljs) {
55815
55824
  const TYPES5 = [
55816
55825
  "int",
@@ -55991,7 +56000,7 @@ function nim(hljs) {
55991
56000
  };
55992
56001
  }
55993
56002
 
55994
- // ../../node_modules/highlight.js/es/languages/nix.js
56003
+ // ../../showcase/node_modules/highlight.js/es/languages/nix.js
55995
56004
  function nix(hljs) {
55996
56005
  const regex = hljs.regex;
55997
56006
  const KEYWORDS5 = {
@@ -56338,7 +56347,7 @@ function nix(hljs) {
56338
56347
  };
56339
56348
  }
56340
56349
 
56341
- // ../../node_modules/highlight.js/es/languages/node-repl.js
56350
+ // ../../showcase/node_modules/highlight.js/es/languages/node-repl.js
56342
56351
  function nodeRepl(hljs) {
56343
56352
  return {
56344
56353
  name: "Node REPL",
@@ -56363,7 +56372,7 @@ function nodeRepl(hljs) {
56363
56372
  };
56364
56373
  }
56365
56374
 
56366
- // ../../node_modules/highlight.js/es/languages/nsis.js
56375
+ // ../../showcase/node_modules/highlight.js/es/languages/nsis.js
56367
56376
  function nsis(hljs) {
56368
56377
  const regex = hljs.regex;
56369
56378
  const LANGUAGE_CONSTANTS = [
@@ -56893,7 +56902,7 @@ function nsis(hljs) {
56893
56902
  };
56894
56903
  }
56895
56904
 
56896
- // ../../node_modules/highlight.js/es/languages/ocaml.js
56905
+ // ../../showcase/node_modules/highlight.js/es/languages/ocaml.js
56897
56906
  function ocaml(hljs) {
56898
56907
  return {
56899
56908
  name: "OCaml",
@@ -56959,7 +56968,7 @@ function ocaml(hljs) {
56959
56968
  };
56960
56969
  }
56961
56970
 
56962
- // ../../node_modules/highlight.js/es/languages/openscad.js
56971
+ // ../../showcase/node_modules/highlight.js/es/languages/openscad.js
56963
56972
  function openscad(hljs) {
56964
56973
  const SPECIAL_VARS = {
56965
56974
  className: "keyword",
@@ -57028,7 +57037,7 @@ function openscad(hljs) {
57028
57037
  };
57029
57038
  }
57030
57039
 
57031
- // ../../node_modules/highlight.js/es/languages/oxygene.js
57040
+ // ../../showcase/node_modules/highlight.js/es/languages/oxygene.js
57032
57041
  function oxygene(hljs) {
57033
57042
  const OXYGENE_KEYWORDS = {
57034
57043
  $pattern: /\.?\w+/,
@@ -57097,7 +57106,7 @@ function oxygene(hljs) {
57097
57106
  };
57098
57107
  }
57099
57108
 
57100
- // ../../node_modules/highlight.js/es/languages/parser3.js
57109
+ // ../../showcase/node_modules/highlight.js/es/languages/parser3.js
57101
57110
  function parser3(hljs) {
57102
57111
  const CURLY_SUBCOMMENT = hljs.COMMENT(
57103
57112
  /\{/,
@@ -57144,7 +57153,7 @@ function parser3(hljs) {
57144
57153
  };
57145
57154
  }
57146
57155
 
57147
- // ../../node_modules/highlight.js/es/languages/pf.js
57156
+ // ../../showcase/node_modules/highlight.js/es/languages/pf.js
57148
57157
  function pf(hljs) {
57149
57158
  const MACRO = {
57150
57159
  className: "variable",
@@ -57180,7 +57189,7 @@ function pf(hljs) {
57180
57189
  };
57181
57190
  }
57182
57191
 
57183
- // ../../node_modules/highlight.js/es/languages/pgsql.js
57192
+ // ../../showcase/node_modules/highlight.js/es/languages/pgsql.js
57184
57193
  function pgsql(hljs) {
57185
57194
  const COMMENT_MODE = hljs.COMMENT("--", "$");
57186
57195
  const UNQUOTED_IDENT = "[a-zA-Z_][a-zA-Z_0-9$]*";
@@ -57460,7 +57469,7 @@ function pgsql(hljs) {
57460
57469
  };
57461
57470
  }
57462
57471
 
57463
- // ../../node_modules/highlight.js/es/languages/pony.js
57472
+ // ../../showcase/node_modules/highlight.js/es/languages/pony.js
57464
57473
  function pony(hljs) {
57465
57474
  const KEYWORDS5 = {
57466
57475
  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",
@@ -57516,7 +57525,7 @@ function pony(hljs) {
57516
57525
  };
57517
57526
  }
57518
57527
 
57519
- // ../../node_modules/highlight.js/es/languages/powershell.js
57528
+ // ../../showcase/node_modules/highlight.js/es/languages/powershell.js
57520
57529
  function powershell(hljs) {
57521
57530
  const TYPES5 = [
57522
57531
  "string",
@@ -57772,7 +57781,7 @@ function powershell(hljs) {
57772
57781
  };
57773
57782
  }
57774
57783
 
57775
- // ../../node_modules/highlight.js/es/languages/processing.js
57784
+ // ../../showcase/node_modules/highlight.js/es/languages/processing.js
57776
57785
  function processing(hljs) {
57777
57786
  const regex = hljs.regex;
57778
57787
  const BUILT_INS5 = [
@@ -58198,7 +58207,7 @@ function processing(hljs) {
58198
58207
  };
58199
58208
  }
58200
58209
 
58201
- // ../../node_modules/highlight.js/es/languages/profile.js
58210
+ // ../../showcase/node_modules/highlight.js/es/languages/profile.js
58202
58211
  function profile(hljs) {
58203
58212
  return {
58204
58213
  name: "Python profiler",
@@ -58235,7 +58244,7 @@ function profile(hljs) {
58235
58244
  };
58236
58245
  }
58237
58246
 
58238
- // ../../node_modules/highlight.js/es/languages/prolog.js
58247
+ // ../../showcase/node_modules/highlight.js/es/languages/prolog.js
58239
58248
  function prolog(hljs) {
58240
58249
  const ATOM = {
58241
58250
  begin: /[a-z][A-Za-z0-9_]*/,
@@ -58312,7 +58321,7 @@ function prolog(hljs) {
58312
58321
  };
58313
58322
  }
58314
58323
 
58315
- // ../../node_modules/highlight.js/es/languages/properties.js
58324
+ // ../../showcase/node_modules/highlight.js/es/languages/properties.js
58316
58325
  function properties(hljs) {
58317
58326
  const WS0 = "[ \\t\\f]*";
58318
58327
  const WS1 = "[ \\t\\f]+";
@@ -58368,7 +58377,7 @@ function properties(hljs) {
58368
58377
  };
58369
58378
  }
58370
58379
 
58371
- // ../../node_modules/highlight.js/es/languages/protobuf.js
58380
+ // ../../showcase/node_modules/highlight.js/es/languages/protobuf.js
58372
58381
  function protobuf(hljs) {
58373
58382
  const KEYWORDS5 = [
58374
58383
  "package",
@@ -58440,7 +58449,7 @@ function protobuf(hljs) {
58440
58449
  };
58441
58450
  }
58442
58451
 
58443
- // ../../node_modules/highlight.js/es/languages/puppet.js
58452
+ // ../../showcase/node_modules/highlight.js/es/languages/puppet.js
58444
58453
  function puppet(hljs) {
58445
58454
  const PUPPET_KEYWORDS = {
58446
58455
  keyword: (
@@ -58551,7 +58560,7 @@ function puppet(hljs) {
58551
58560
  };
58552
58561
  }
58553
58562
 
58554
- // ../../node_modules/highlight.js/es/languages/purebasic.js
58563
+ // ../../showcase/node_modules/highlight.js/es/languages/purebasic.js
58555
58564
  function purebasic(hljs) {
58556
58565
  const STRINGS = {
58557
58566
  // PB IDE color: #0080FF (Azure Radiance)
@@ -58610,7 +58619,7 @@ function purebasic(hljs) {
58610
58619
  };
58611
58620
  }
58612
58621
 
58613
- // ../../node_modules/highlight.js/es/languages/q.js
58622
+ // ../../showcase/node_modules/highlight.js/es/languages/q.js
58614
58623
  function q(hljs) {
58615
58624
  const KEYWORDS5 = {
58616
58625
  $pattern: /(`?)[A-Za-z0-9_]+\b/,
@@ -58634,7 +58643,7 @@ function q(hljs) {
58634
58643
  };
58635
58644
  }
58636
58645
 
58637
- // ../../node_modules/highlight.js/es/languages/qml.js
58646
+ // ../../showcase/node_modules/highlight.js/es/languages/qml.js
58638
58647
  function qml(hljs) {
58639
58648
  const regex = hljs.regex;
58640
58649
  const KEYWORDS5 = {
@@ -58782,7 +58791,7 @@ function qml(hljs) {
58782
58791
  };
58783
58792
  }
58784
58793
 
58785
- // ../../node_modules/highlight.js/es/languages/reasonml.js
58794
+ // ../../showcase/node_modules/highlight.js/es/languages/reasonml.js
58786
58795
  function reasonml(hljs) {
58787
58796
  const BUILT_IN_TYPES = [
58788
58797
  "array",
@@ -58921,7 +58930,7 @@ function reasonml(hljs) {
58921
58930
  };
58922
58931
  }
58923
58932
 
58924
- // ../../node_modules/highlight.js/es/languages/rib.js
58933
+ // ../../showcase/node_modules/highlight.js/es/languages/rib.js
58925
58934
  function rib(hljs) {
58926
58935
  return {
58927
58936
  name: "RenderMan RIB",
@@ -58936,7 +58945,7 @@ function rib(hljs) {
58936
58945
  };
58937
58946
  }
58938
58947
 
58939
- // ../../node_modules/highlight.js/es/languages/roboconf.js
58948
+ // ../../showcase/node_modules/highlight.js/es/languages/roboconf.js
58940
58949
  function roboconf(hljs) {
58941
58950
  const IDENTIFIER = "[a-zA-Z-_][^\\n{]+\\{";
58942
58951
  const PROPERTY = {
@@ -59005,7 +59014,7 @@ function roboconf(hljs) {
59005
59014
  };
59006
59015
  }
59007
59016
 
59008
- // ../../node_modules/highlight.js/es/languages/routeros.js
59017
+ // ../../showcase/node_modules/highlight.js/es/languages/routeros.js
59009
59018
  function routeros(hljs) {
59010
59019
  const STATEMENTS = "foreach do while for if from to step else on-error and or not in";
59011
59020
  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";
@@ -59151,7 +59160,7 @@ function routeros(hljs) {
59151
59160
  };
59152
59161
  }
59153
59162
 
59154
- // ../../node_modules/highlight.js/es/languages/rsl.js
59163
+ // ../../showcase/node_modules/highlight.js/es/languages/rsl.js
59155
59164
  function rsl(hljs) {
59156
59165
  const BUILT_INS5 = [
59157
59166
  "abs",
@@ -59288,7 +59297,7 @@ function rsl(hljs) {
59288
59297
  };
59289
59298
  }
59290
59299
 
59291
- // ../../node_modules/highlight.js/es/languages/ruleslanguage.js
59300
+ // ../../showcase/node_modules/highlight.js/es/languages/ruleslanguage.js
59292
59301
  function ruleslanguage(hljs) {
59293
59302
  return {
59294
59303
  name: "Oracle Rules Language",
@@ -59317,7 +59326,7 @@ function ruleslanguage(hljs) {
59317
59326
  };
59318
59327
  }
59319
59328
 
59320
- // ../../node_modules/highlight.js/es/languages/sas.js
59329
+ // ../../showcase/node_modules/highlight.js/es/languages/sas.js
59321
59330
  function sas(hljs) {
59322
59331
  const regex = hljs.regex;
59323
59332
  const SAS_KEYWORDS = [
@@ -59860,7 +59869,7 @@ function sas(hljs) {
59860
59869
  };
59861
59870
  }
59862
59871
 
59863
- // ../../node_modules/highlight.js/es/languages/scala.js
59872
+ // ../../showcase/node_modules/highlight.js/es/languages/scala.js
59864
59873
  function scala(hljs) {
59865
59874
  const regex = hljs.regex;
59866
59875
  const ANNOTATION = {
@@ -60051,7 +60060,7 @@ function scala(hljs) {
60051
60060
  };
60052
60061
  }
60053
60062
 
60054
- // ../../node_modules/highlight.js/es/languages/scheme.js
60063
+ // ../../showcase/node_modules/highlight.js/es/languages/scheme.js
60055
60064
  function scheme2(hljs) {
60056
60065
  const SCHEME_IDENT_RE = "[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+";
60057
60066
  const SCHEME_SIMPLE_NUMBER_RE = "(-|\\+)?\\d+([./]\\d+)?";
@@ -60190,7 +60199,7 @@ function scheme2(hljs) {
60190
60199
  };
60191
60200
  }
60192
60201
 
60193
- // ../../node_modules/highlight.js/es/languages/scilab.js
60202
+ // ../../showcase/node_modules/highlight.js/es/languages/scilab.js
60194
60203
  function scilab(hljs) {
60195
60204
  const COMMON_CONTAINS = [
60196
60205
  hljs.C_NUMBER_MODE,
@@ -60248,7 +60257,7 @@ function scilab(hljs) {
60248
60257
  };
60249
60258
  }
60250
60259
 
60251
- // ../../node_modules/highlight.js/es/languages/smali.js
60260
+ // ../../showcase/node_modules/highlight.js/es/languages/smali.js
60252
60261
  function smali(hljs) {
60253
60262
  const smali_instr_low_prio = [
60254
60263
  "add",
@@ -60366,7 +60375,7 @@ function smali(hljs) {
60366
60375
  };
60367
60376
  }
60368
60377
 
60369
- // ../../node_modules/highlight.js/es/languages/smalltalk.js
60378
+ // ../../showcase/node_modules/highlight.js/es/languages/smalltalk.js
60370
60379
  function smalltalk(hljs) {
60371
60380
  const VAR_IDENT_RE = "[a-z][a-zA-Z0-9_]*";
60372
60381
  const CHAR = {
@@ -60427,7 +60436,7 @@ function smalltalk(hljs) {
60427
60436
  };
60428
60437
  }
60429
60438
 
60430
- // ../../node_modules/highlight.js/es/languages/sml.js
60439
+ // ../../showcase/node_modules/highlight.js/es/languages/sml.js
60431
60440
  function sml(hljs) {
60432
60441
  return {
60433
60442
  name: "SML (Standard ML)",
@@ -60495,7 +60504,7 @@ function sml(hljs) {
60495
60504
  };
60496
60505
  }
60497
60506
 
60498
- // ../../node_modules/highlight.js/es/languages/sqf.js
60507
+ // ../../showcase/node_modules/highlight.js/es/languages/sqf.js
60499
60508
  function sqf(hljs) {
60500
60509
  const VARIABLE = {
60501
60510
  className: "variable",
@@ -63105,7 +63114,7 @@ function sqf(hljs) {
63105
63114
  };
63106
63115
  }
63107
63116
 
63108
- // ../../node_modules/highlight.js/es/languages/stan.js
63117
+ // ../../showcase/node_modules/highlight.js/es/languages/stan.js
63109
63118
  function stan(hljs) {
63110
63119
  const regex = hljs.regex;
63111
63120
  const BLOCKS = [
@@ -63600,7 +63609,7 @@ function stan(hljs) {
63600
63609
  };
63601
63610
  }
63602
63611
 
63603
- // ../../node_modules/highlight.js/es/languages/stata.js
63612
+ // ../../showcase/node_modules/highlight.js/es/languages/stata.js
63604
63613
  function stata(hljs) {
63605
63614
  return {
63606
63615
  name: "Stata",
@@ -63638,7 +63647,7 @@ function stata(hljs) {
63638
63647
  };
63639
63648
  }
63640
63649
 
63641
- // ../../node_modules/highlight.js/es/languages/step21.js
63650
+ // ../../showcase/node_modules/highlight.js/es/languages/step21.js
63642
63651
  function step21(hljs) {
63643
63652
  const STEP21_IDENT_RE = "[A-Z_][A-Z0-9_.]*";
63644
63653
  const STEP21_KEYWORDS = {
@@ -63697,7 +63706,7 @@ function step21(hljs) {
63697
63706
  };
63698
63707
  }
63699
63708
 
63700
- // ../../node_modules/highlight.js/es/languages/stylus.js
63709
+ // ../../showcase/node_modules/highlight.js/es/languages/stylus.js
63701
63710
  var MODES = (hljs) => {
63702
63711
  return {
63703
63712
  IMPORTANT: {
@@ -64668,7 +64677,7 @@ function stylus(hljs) {
64668
64677
  };
64669
64678
  }
64670
64679
 
64671
- // ../../node_modules/highlight.js/es/languages/subunit.js
64680
+ // ../../showcase/node_modules/highlight.js/es/languages/subunit.js
64672
64681
  function subunit(hljs) {
64673
64682
  const DETAILS = {
64674
64683
  className: "string",
@@ -64705,7 +64714,7 @@ function subunit(hljs) {
64705
64714
  };
64706
64715
  }
64707
64716
 
64708
- // ../../node_modules/highlight.js/es/languages/taggerscript.js
64717
+ // ../../showcase/node_modules/highlight.js/es/languages/taggerscript.js
64709
64718
  function taggerscript(hljs) {
64710
64719
  const NOOP = {
64711
64720
  className: "comment",
@@ -64752,7 +64761,7 @@ function taggerscript(hljs) {
64752
64761
  };
64753
64762
  }
64754
64763
 
64755
- // ../../node_modules/highlight.js/es/languages/tap.js
64764
+ // ../../showcase/node_modules/highlight.js/es/languages/tap.js
64756
64765
  function tap(hljs) {
64757
64766
  return {
64758
64767
  name: "Test Anything Protocol",
@@ -64791,7 +64800,7 @@ function tap(hljs) {
64791
64800
  };
64792
64801
  }
64793
64802
 
64794
- // ../../node_modules/highlight.js/es/languages/tcl.js
64803
+ // ../../showcase/node_modules/highlight.js/es/languages/tcl.js
64795
64804
  function tcl(hljs) {
64796
64805
  const regex = hljs.regex;
64797
64806
  const TCL_IDENT = /[a-zA-Z_][a-zA-Z0-9_]*/;
@@ -64971,7 +64980,7 @@ function tcl(hljs) {
64971
64980
  };
64972
64981
  }
64973
64982
 
64974
- // ../../node_modules/highlight.js/es/languages/thrift.js
64983
+ // ../../showcase/node_modules/highlight.js/es/languages/thrift.js
64975
64984
  function thrift(hljs) {
64976
64985
  const TYPES5 = [
64977
64986
  "bool",
@@ -65041,7 +65050,7 @@ function thrift(hljs) {
65041
65050
  };
65042
65051
  }
65043
65052
 
65044
- // ../../node_modules/highlight.js/es/languages/tp.js
65053
+ // ../../showcase/node_modules/highlight.js/es/languages/tp.js
65045
65054
  function tp(hljs) {
65046
65055
  const TPID = {
65047
65056
  className: "number",
@@ -65205,7 +65214,7 @@ function tp(hljs) {
65205
65214
  };
65206
65215
  }
65207
65216
 
65208
- // ../../node_modules/highlight.js/es/languages/twig.js
65217
+ // ../../showcase/node_modules/highlight.js/es/languages/twig.js
65209
65218
  function twig(hljs) {
65210
65219
  const regex = hljs.regex;
65211
65220
  const FUNCTION_NAMES = [
@@ -65444,7 +65453,7 @@ function twig(hljs) {
65444
65453
  };
65445
65454
  }
65446
65455
 
65447
- // ../../node_modules/highlight.js/es/languages/vala.js
65456
+ // ../../showcase/node_modules/highlight.js/es/languages/vala.js
65448
65457
  function vala(hljs) {
65449
65458
  return {
65450
65459
  name: "Vala",
@@ -65485,7 +65494,7 @@ function vala(hljs) {
65485
65494
  };
65486
65495
  }
65487
65496
 
65488
- // ../../node_modules/highlight.js/es/languages/vbscript.js
65497
+ // ../../showcase/node_modules/highlight.js/es/languages/vbscript.js
65489
65498
  function vbscript(hljs) {
65490
65499
  const regex = hljs.regex;
65491
65500
  const BUILT_IN_FUNCTIONS = [
@@ -65691,7 +65700,7 @@ function vbscript(hljs) {
65691
65700
  };
65692
65701
  }
65693
65702
 
65694
- // ../../node_modules/highlight.js/es/languages/vbscript-html.js
65703
+ // ../../showcase/node_modules/highlight.js/es/languages/vbscript-html.js
65695
65704
  function vbscriptHtml(hljs) {
65696
65705
  return {
65697
65706
  name: "VBScript in HTML",
@@ -65706,7 +65715,7 @@ function vbscriptHtml(hljs) {
65706
65715
  };
65707
65716
  }
65708
65717
 
65709
- // ../../node_modules/highlight.js/es/languages/verilog.js
65718
+ // ../../showcase/node_modules/highlight.js/es/languages/verilog.js
65710
65719
  function verilog(hljs) {
65711
65720
  const regex = hljs.regex;
65712
65721
  const KEYWORDS5 = {
@@ -66247,7 +66256,7 @@ function verilog(hljs) {
66247
66256
  };
66248
66257
  }
66249
66258
 
66250
- // ../../node_modules/highlight.js/es/languages/vhdl.js
66259
+ // ../../showcase/node_modules/highlight.js/es/languages/vhdl.js
66251
66260
  function vhdl(hljs) {
66252
66261
  const INTEGER_RE = "\\d(_|\\d)*";
66253
66262
  const EXPONENT_RE = "[eE][-+]?" + INTEGER_RE;
@@ -66448,7 +66457,7 @@ function vhdl(hljs) {
66448
66457
  };
66449
66458
  }
66450
66459
 
66451
- // ../../node_modules/highlight.js/es/languages/vim.js
66460
+ // ../../showcase/node_modules/highlight.js/es/languages/vim.js
66452
66461
  function vim(hljs) {
66453
66462
  return {
66454
66463
  name: "Vim Script",
@@ -66519,7 +66528,7 @@ function vim(hljs) {
66519
66528
  };
66520
66529
  }
66521
66530
 
66522
- // ../../node_modules/highlight.js/es/languages/wren.js
66531
+ // ../../showcase/node_modules/highlight.js/es/languages/wren.js
66523
66532
  function wren(hljs) {
66524
66533
  const regex = hljs.regex;
66525
66534
  const IDENT_RE3 = /[a-zA-Z]\w*/;
@@ -66798,7 +66807,7 @@ function wren(hljs) {
66798
66807
  };
66799
66808
  }
66800
66809
 
66801
- // ../../node_modules/highlight.js/es/languages/x86asm.js
66810
+ // ../../showcase/node_modules/highlight.js/es/languages/x86asm.js
66802
66811
  function x86asm(hljs) {
66803
66812
  return {
66804
66813
  name: "Intel x86 Assembly",
@@ -66885,7 +66894,7 @@ function x86asm(hljs) {
66885
66894
  };
66886
66895
  }
66887
66896
 
66888
- // ../../node_modules/highlight.js/es/languages/xl.js
66897
+ // ../../showcase/node_modules/highlight.js/es/languages/xl.js
66889
66898
  function xl(hljs) {
66890
66899
  const KWS = [
66891
66900
  "if",
@@ -67082,7 +67091,7 @@ function xl(hljs) {
67082
67091
  };
67083
67092
  }
67084
67093
 
67085
- // ../../node_modules/highlight.js/es/languages/xquery.js
67094
+ // ../../showcase/node_modules/highlight.js/es/languages/xquery.js
67086
67095
  function xquery(_hljs) {
67087
67096
  const KEYWORDS5 = [
67088
67097
  "module",
@@ -67409,7 +67418,7 @@ function xquery(_hljs) {
67409
67418
  };
67410
67419
  }
67411
67420
 
67412
- // ../../node_modules/highlight.js/es/languages/zephir.js
67421
+ // ../../showcase/node_modules/highlight.js/es/languages/zephir.js
67413
67422
  function zephir(hljs) {
67414
67423
  const STRING = {
67415
67424
  className: "string",
@@ -67508,7 +67517,7 @@ function zephir(hljs) {
67508
67517
  };
67509
67518
  }
67510
67519
 
67511
- // ../../node_modules/highlight.js/es/languages/arduino.js
67520
+ // ../../showcase/node_modules/highlight.js/es/languages/arduino.js
67512
67521
  function cPlusPlus(hljs) {
67513
67522
  const regex = hljs.regex;
67514
67523
  const C_LINE_COMMENT_MODE = hljs.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }] });
@@ -68441,7 +68450,7 @@ function arduino(hljs) {
68441
68450
  return ARDUINO;
68442
68451
  }
68443
68452
 
68444
- // ../../node_modules/highlight.js/es/languages/bash.js
68453
+ // ../../showcase/node_modules/highlight.js/es/languages/bash.js
68445
68454
  function bash(hljs) {
68446
68455
  const regex = hljs.regex;
68447
68456
  const VAR = {};
@@ -68835,7 +68844,7 @@ function bash(hljs) {
68835
68844
  };
68836
68845
  }
68837
68846
 
68838
- // ../../node_modules/highlight.js/es/languages/c.js
68847
+ // ../../showcase/node_modules/highlight.js/es/languages/c.js
68839
68848
  function c(hljs) {
68840
68849
  const regex = hljs.regex;
68841
68850
  const C_LINE_COMMENT_MODE = hljs.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }] });
@@ -69129,7 +69138,7 @@ function c(hljs) {
69129
69138
  };
69130
69139
  }
69131
69140
 
69132
- // ../../node_modules/highlight.js/es/languages/cpp.js
69141
+ // ../../showcase/node_modules/highlight.js/es/languages/cpp.js
69133
69142
  function cpp(hljs) {
69134
69143
  const regex = hljs.regex;
69135
69144
  const C_LINE_COMMENT_MODE = hljs.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }] });
@@ -69672,7 +69681,7 @@ function cpp(hljs) {
69672
69681
  };
69673
69682
  }
69674
69683
 
69675
- // ../../node_modules/highlight.js/es/languages/csharp.js
69684
+ // ../../showcase/node_modules/highlight.js/es/languages/csharp.js
69676
69685
  function csharp(hljs) {
69677
69686
  const BUILT_IN_KEYWORDS = [
69678
69687
  "bool",
@@ -70072,7 +70081,7 @@ function csharp(hljs) {
70072
70081
  };
70073
70082
  }
70074
70083
 
70075
- // ../../node_modules/highlight.js/es/languages/css.js
70084
+ // ../../showcase/node_modules/highlight.js/es/languages/css.js
70076
70085
  var MODES2 = (hljs) => {
70077
70086
  return {
70078
70087
  IMPORTANT: {
@@ -71009,7 +71018,7 @@ function css(hljs) {
71009
71018
  };
71010
71019
  }
71011
71020
 
71012
- // ../../node_modules/highlight.js/es/languages/diff.js
71021
+ // ../../showcase/node_modules/highlight.js/es/languages/diff.js
71013
71022
  function diff(hljs) {
71014
71023
  const regex = hljs.regex;
71015
71024
  return {
@@ -71062,7 +71071,7 @@ function diff(hljs) {
71062
71071
  };
71063
71072
  }
71064
71073
 
71065
- // ../../node_modules/highlight.js/es/languages/go.js
71074
+ // ../../showcase/node_modules/highlight.js/es/languages/go.js
71066
71075
  function go(hljs) {
71067
71076
  const LITERALS5 = [
71068
71077
  "true",
@@ -71216,7 +71225,7 @@ function go(hljs) {
71216
71225
  };
71217
71226
  }
71218
71227
 
71219
- // ../../node_modules/highlight.js/es/languages/graphql.js
71228
+ // ../../showcase/node_modules/highlight.js/es/languages/graphql.js
71220
71229
  function graphql(hljs) {
71221
71230
  const regex = hljs.regex;
71222
71231
  const GQL_NAME = /[_A-Za-z][_0-9A-Za-z]*/;
@@ -71286,7 +71295,7 @@ function graphql(hljs) {
71286
71295
  };
71287
71296
  }
71288
71297
 
71289
- // ../../node_modules/highlight.js/es/languages/ini.js
71298
+ // ../../showcase/node_modules/highlight.js/es/languages/ini.js
71290
71299
  function ini(hljs) {
71291
71300
  const regex = hljs.regex;
71292
71301
  const NUMBERS = {
@@ -71402,7 +71411,7 @@ function ini(hljs) {
71402
71411
  };
71403
71412
  }
71404
71413
 
71405
- // ../../node_modules/highlight.js/es/languages/java.js
71414
+ // ../../showcase/node_modules/highlight.js/es/languages/java.js
71406
71415
  var decimalDigits = "[0-9](_*[0-9])*";
71407
71416
  var frac = `\\.(${decimalDigits})`;
71408
71417
  var hexDigits = "[0-9a-fA-F](_*[0-9a-fA-F])*";
@@ -71656,7 +71665,7 @@ function java(hljs) {
71656
71665
  };
71657
71666
  }
71658
71667
 
71659
- // ../../node_modules/highlight.js/es/languages/javascript.js
71668
+ // ../../showcase/node_modules/highlight.js/es/languages/javascript.js
71660
71669
  var IDENT_RE = "[A-Za-z$_][0-9A-Za-z$_]*";
71661
71670
  var KEYWORDS3 = [
71662
71671
  "as",
@@ -72357,7 +72366,7 @@ function javascript(hljs) {
72357
72366
  };
72358
72367
  }
72359
72368
 
72360
- // ../../node_modules/highlight.js/es/languages/json.js
72369
+ // ../../showcase/node_modules/highlight.js/es/languages/json.js
72361
72370
  function json(hljs) {
72362
72371
  const ATTRIBUTE = {
72363
72372
  className: "attr",
@@ -72397,7 +72406,7 @@ function json(hljs) {
72397
72406
  };
72398
72407
  }
72399
72408
 
72400
- // ../../node_modules/highlight.js/es/languages/kotlin.js
72409
+ // ../../showcase/node_modules/highlight.js/es/languages/kotlin.js
72401
72410
  var decimalDigits2 = "[0-9](_*[0-9])*";
72402
72411
  var frac2 = `\\.(${decimalDigits2})`;
72403
72412
  var hexDigits2 = "[0-9a-fA-F](_*[0-9a-fA-F])*";
@@ -72652,7 +72661,7 @@ function kotlin(hljs) {
72652
72661
  };
72653
72662
  }
72654
72663
 
72655
- // ../../node_modules/highlight.js/es/languages/less.js
72664
+ // ../../showcase/node_modules/highlight.js/es/languages/less.js
72656
72665
  var MODES3 = (hljs) => {
72657
72666
  return {
72658
72667
  IMPORTANT: {
@@ -73670,7 +73679,7 @@ function less(hljs) {
73670
73679
  };
73671
73680
  }
73672
73681
 
73673
- // ../../node_modules/highlight.js/es/languages/lua.js
73682
+ // ../../showcase/node_modules/highlight.js/es/languages/lua.js
73674
73683
  function lua(hljs) {
73675
73684
  const OPENING_LONG_BRACKET = "\\[=*\\[";
73676
73685
  const CLOSING_LONG_BRACKET = "\\]=*\\]";
@@ -73731,7 +73740,7 @@ function lua(hljs) {
73731
73740
  };
73732
73741
  }
73733
73742
 
73734
- // ../../node_modules/highlight.js/es/languages/makefile.js
73743
+ // ../../showcase/node_modules/highlight.js/es/languages/makefile.js
73735
73744
  function makefile(hljs) {
73736
73745
  const VARIABLE = {
73737
73746
  className: "variable",
@@ -73802,7 +73811,7 @@ function makefile(hljs) {
73802
73811
  };
73803
73812
  }
73804
73813
 
73805
- // ../../node_modules/highlight.js/es/languages/markdown.js
73814
+ // ../../showcase/node_modules/highlight.js/es/languages/markdown.js
73806
73815
  function markdown(hljs) {
73807
73816
  const regex = hljs.regex;
73808
73817
  const INLINE_HTML = {
@@ -74034,7 +74043,7 @@ function markdown(hljs) {
74034
74043
  };
74035
74044
  }
74036
74045
 
74037
- // ../../node_modules/highlight.js/es/languages/objectivec.js
74046
+ // ../../showcase/node_modules/highlight.js/es/languages/objectivec.js
74038
74047
  function objectivec(hljs) {
74039
74048
  const API_CLASS = {
74040
74049
  className: "built_in",
@@ -74277,7 +74286,7 @@ function objectivec(hljs) {
74277
74286
  };
74278
74287
  }
74279
74288
 
74280
- // ../../node_modules/highlight.js/es/languages/perl.js
74289
+ // ../../showcase/node_modules/highlight.js/es/languages/perl.js
74281
74290
  function perl(hljs) {
74282
74291
  const regex = hljs.regex;
74283
74292
  const KEYWORDS5 = [
@@ -74762,7 +74771,7 @@ function perl(hljs) {
74762
74771
  };
74763
74772
  }
74764
74773
 
74765
- // ../../node_modules/highlight.js/es/languages/php.js
74774
+ // ../../showcase/node_modules/highlight.js/es/languages/php.js
74766
74775
  function php(hljs) {
74767
74776
  const regex = hljs.regex;
74768
74777
  const NOT_PERL_ETC = /(?![A-Za-z0-9])(?![$])/;
@@ -75363,7 +75372,7 @@ function php(hljs) {
75363
75372
  };
75364
75373
  }
75365
75374
 
75366
- // ../../node_modules/highlight.js/es/languages/php-template.js
75375
+ // ../../showcase/node_modules/highlight.js/es/languages/php-template.js
75367
75376
  function phpTemplate(hljs) {
75368
75377
  return {
75369
75378
  name: "PHP template",
@@ -75409,7 +75418,7 @@ function phpTemplate(hljs) {
75409
75418
  };
75410
75419
  }
75411
75420
 
75412
- // ../../node_modules/highlight.js/es/languages/plaintext.js
75421
+ // ../../showcase/node_modules/highlight.js/es/languages/plaintext.js
75413
75422
  function plaintext(hljs) {
75414
75423
  return {
75415
75424
  name: "Plain text",
@@ -75421,7 +75430,7 @@ function plaintext(hljs) {
75421
75430
  };
75422
75431
  }
75423
75432
 
75424
- // ../../node_modules/highlight.js/es/languages/python.js
75433
+ // ../../showcase/node_modules/highlight.js/es/languages/python.js
75425
75434
  function python(hljs) {
75426
75435
  const regex = hljs.regex;
75427
75436
  const IDENT_RE3 = /[\p{XID_Start}_]\p{XID_Continue}*/u;
@@ -75836,7 +75845,7 @@ function python(hljs) {
75836
75845
  };
75837
75846
  }
75838
75847
 
75839
- // ../../node_modules/highlight.js/es/languages/python-repl.js
75848
+ // ../../showcase/node_modules/highlight.js/es/languages/python-repl.js
75840
75849
  function pythonRepl(hljs) {
75841
75850
  return {
75842
75851
  aliases: ["pycon"],
@@ -75861,7 +75870,7 @@ function pythonRepl(hljs) {
75861
75870
  };
75862
75871
  }
75863
75872
 
75864
- // ../../node_modules/highlight.js/es/languages/r.js
75873
+ // ../../showcase/node_modules/highlight.js/es/languages/r.js
75865
75874
  function r(hljs) {
75866
75875
  const regex = hljs.regex;
75867
75876
  const IDENT_RE3 = /(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/;
@@ -76071,7 +76080,7 @@ function r(hljs) {
76071
76080
  };
76072
76081
  }
76073
76082
 
76074
- // ../../node_modules/highlight.js/es/languages/ruby.js
76083
+ // ../../showcase/node_modules/highlight.js/es/languages/ruby.js
76075
76084
  function ruby(hljs) {
76076
76085
  const regex = hljs.regex;
76077
76086
  const RUBY_METHOD_RE = "([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)";
@@ -76484,7 +76493,7 @@ function ruby(hljs) {
76484
76493
  };
76485
76494
  }
76486
76495
 
76487
- // ../../node_modules/highlight.js/es/languages/rust.js
76496
+ // ../../showcase/node_modules/highlight.js/es/languages/rust.js
76488
76497
  function rust(hljs) {
76489
76498
  const regex = hljs.regex;
76490
76499
  const RAW_IDENTIFIER = /(r#)?/;
@@ -76797,7 +76806,7 @@ function rust(hljs) {
76797
76806
  };
76798
76807
  }
76799
76808
 
76800
- // ../../node_modules/highlight.js/es/languages/scss.js
76809
+ // ../../showcase/node_modules/highlight.js/es/languages/scss.js
76801
76810
  var MODES4 = (hljs) => {
76802
76811
  return {
76803
76812
  IMPORTANT: {
@@ -77719,7 +77728,7 @@ function scss(hljs) {
77719
77728
  };
77720
77729
  }
77721
77730
 
77722
- // ../../node_modules/highlight.js/es/languages/shell.js
77731
+ // ../../showcase/node_modules/highlight.js/es/languages/shell.js
77723
77732
  function shell(hljs) {
77724
77733
  return {
77725
77734
  name: "Shell Session",
@@ -77743,7 +77752,7 @@ function shell(hljs) {
77743
77752
  };
77744
77753
  }
77745
77754
 
77746
- // ../../node_modules/highlight.js/es/languages/sql.js
77755
+ // ../../showcase/node_modules/highlight.js/es/languages/sql.js
77747
77756
  function sql(hljs) {
77748
77757
  const regex = hljs.regex;
77749
77758
  const COMMENT_MODE = hljs.COMMENT("--", "$");
@@ -78386,7 +78395,7 @@ function sql(hljs) {
78386
78395
  };
78387
78396
  }
78388
78397
 
78389
- // ../../node_modules/highlight.js/es/languages/swift.js
78398
+ // ../../showcase/node_modules/highlight.js/es/languages/swift.js
78390
78399
  function source2(re2) {
78391
78400
  if (!re2) return null;
78392
78401
  if (typeof re2 === "string") return re2;
@@ -79261,7 +79270,7 @@ function swift(hljs) {
79261
79270
  };
79262
79271
  }
79263
79272
 
79264
- // ../../node_modules/highlight.js/es/languages/typescript.js
79273
+ // ../../showcase/node_modules/highlight.js/es/languages/typescript.js
79265
79274
  var IDENT_RE2 = "[A-Za-z$_][0-9A-Za-z$_]*";
79266
79275
  var KEYWORDS4 = [
79267
79276
  "as",
@@ -80075,7 +80084,7 @@ function typescript(hljs) {
80075
80084
  return tsLanguage;
80076
80085
  }
80077
80086
 
80078
- // ../../node_modules/highlight.js/es/languages/vbnet.js
80087
+ // ../../showcase/node_modules/highlight.js/es/languages/vbnet.js
80079
80088
  function vbnet(hljs) {
80080
80089
  const regex = hljs.regex;
80081
80090
  const CHARACTER = {
@@ -80208,7 +80217,7 @@ function vbnet(hljs) {
80208
80217
  };
80209
80218
  }
80210
80219
 
80211
- // ../../node_modules/highlight.js/es/languages/wasm.js
80220
+ // ../../showcase/node_modules/highlight.js/es/languages/wasm.js
80212
80221
  function wasm(hljs) {
80213
80222
  hljs.regex;
80214
80223
  const BLOCK_COMMENT = hljs.COMMENT(/\(;/, /;\)/);
@@ -80329,7 +80338,7 @@ function wasm(hljs) {
80329
80338
  };
80330
80339
  }
80331
80340
 
80332
- // ../../node_modules/highlight.js/es/languages/xml.js
80341
+ // ../../showcase/node_modules/highlight.js/es/languages/xml.js
80333
80342
  function xml(hljs) {
80334
80343
  const regex = hljs.regex;
80335
80344
  const TAG_NAME_RE = regex.concat(/[\p{L}_]/u, regex.optional(/[\p{L}0-9_.-]*:/u), /[\p{L}0-9_.-]*/u);
@@ -80555,7 +80564,7 @@ function xml(hljs) {
80555
80564
  };
80556
80565
  }
80557
80566
 
80558
- // ../../node_modules/highlight.js/es/languages/yaml.js
80567
+ // ../../showcase/node_modules/highlight.js/es/languages/yaml.js
80559
80568
  function yaml(hljs) {
80560
80569
  const LITERALS5 = "true false yes no null";
80561
80570
  const URI_CHARACTERS = "[\\w#;/?:@&=+$,.~*'()[\\]]+";
@@ -80756,7 +80765,7 @@ function yaml(hljs) {
80756
80765
  };
80757
80766
  }
80758
80767
 
80759
- // ../../node_modules/lowlight/lib/common.js
80768
+ // ../../showcase/node_modules/lowlight/lib/common.js
80760
80769
  var grammars = {
80761
80770
  arduino,
80762
80771
  bash,
@@ -80797,7 +80806,7 @@ var grammars = {
80797
80806
  yaml
80798
80807
  };
80799
80808
 
80800
- // ../../node_modules/lowlight/lib/all.js
80809
+ // ../../showcase/node_modules/lowlight/lib/all.js
80801
80810
  var grammars2 = {
80802
80811
  ...grammars,
80803
80812
  "1c": _1c,
@@ -80957,7 +80966,7 @@ var grammars2 = {
80957
80966
  zephir
80958
80967
  };
80959
80968
 
80960
- // ../../node_modules/lowlight/lib/index.js
80969
+ // ../../showcase/node_modules/lowlight/lib/index.js
80961
80970
  var emptyOptions = {};
80962
80971
  var defaultPrefix = "hljs-";
80963
80972
  function createLowlight(grammars3) {
@@ -83402,7 +83411,7 @@ function DayCellWithPopover({
83402
83411
  offset: 4,
83403
83412
  flip: true
83404
83413
  });
83405
- const hoverTimeout = useRef();
83414
+ const hoverTimeout = useRef(void 0);
83406
83415
  const inMonth = day.getMonth() === month;
83407
83416
  const dayEvents = inMonth ? getEventsForDay(events2, day) : [];
83408
83417
  const today = inMonth && isToday(day);