@elmethis/qwik 1.0.0-alpha.25 → 1.0.0-alpha.27

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.
@@ -30,11 +30,11 @@ const v0_9 = require("@a2ui/web_core/v0_9");
30
30
  const basic_catalog = require("@a2ui/web_core/v0_9/basic_catalog");
31
31
  const jsxRuntime = require("@qwik.dev/core/jsx-runtime");
32
32
  const katex = require("katex");
33
+ const core = require("@elmethis/core");
33
34
  const js = require("@mdi/js");
34
35
  const shiki = require("shiki");
35
36
  const ikumaDark = require("@46ki75/ikuma-theme/dark");
36
37
  const ikumaLight = require("@46ki75/ikuma-theme/light");
37
- const core = require("@elmethis/core");
38
38
  const client = require("@ag-ui/client");
39
39
  const core$2 = require("@ag-ui/core");
40
40
  const marked = require("marked");
@@ -44,7 +44,7 @@ const autoAnimate = require("@formkit/auto-animate");
44
44
  const esToolkit = require("es-toolkit");
45
45
  const tab = "_tab_1fco0_14";
46
46
  const active$3 = "_active_1fco0_37";
47
- const styles$T = {
47
+ const styles$R = {
48
48
  "elm-tabs": "_elm-tabs_1fco0_1",
49
49
  "tab-container": "_tab-container_1fco0_14",
50
50
  tab,
@@ -54,18 +54,18 @@ const styles$T = {
54
54
  };
55
55
  const row$2 = "_row_12wiu_5";
56
56
  const open$1 = "_open_12wiu_11";
57
- const column$2 = "_column_12wiu_16";
57
+ const column$1 = "_column_12wiu_16";
58
58
  const both = "_both_12wiu_27";
59
59
  const inner = "_inner_12wiu_44";
60
- const styles$S = {
60
+ const styles$Q = {
61
61
  "elm-collapse": "_elm-collapse_12wiu_1",
62
62
  row: row$2,
63
63
  open: open$1,
64
- column: column$2,
64
+ column: column$1,
65
65
  both,
66
66
  inner
67
67
  };
68
- const _hf0$S = (p0) => ({
68
+ const _hf0$A = (p0) => ({
69
69
  "--elmethis-scoped-transition-timing-function": p0.transitionTimingFunction ?? "ease-in-out"
70
70
  });
71
71
  const ElmCollapse = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
@@ -77,28 +77,28 @@ const ElmCollapse = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
77
77
  ]);
78
78
  return /* @__PURE__ */ core$1._jsxSplit("div", {
79
79
  class: [
80
- styles$S["elm-collapse"],
80
+ styles$Q["elm-collapse"],
81
81
  {
82
- [styles$S["open"]]: _rawProps.isOpen,
83
- [styles$S["row"]]: (_rawProps.direction ?? "row") === "row",
84
- [styles$S["column"]]: (_rawProps.direction ?? "row") === "column",
85
- [styles$S["both"]]: (_rawProps.direction ?? "row") === "both"
82
+ [styles$Q["open"]]: _rawProps.isOpen,
83
+ [styles$Q["row"]]: (_rawProps.direction ?? "row") === "row",
84
+ [styles$Q["column"]]: (_rawProps.direction ?? "row") === "column",
85
+ [styles$Q["both"]]: (_rawProps.direction ?? "row") === "both"
86
86
  },
87
87
  _rawProps.class
88
88
  ],
89
- style: core$1._fnSignal(_hf0$S, [
89
+ style: core$1._fnSignal(_hf0$A, [
90
90
  _rawProps
91
91
  ]),
92
92
  ...core$1._getVarProps(props)
93
93
  }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted("div", null, {
94
- class: styles$S["inner"]
94
+ class: styles$Q["inner"]
95
95
  }, /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "iE_0"), 1, null), 0, "iE_1");
96
96
  }, "ElmCollapse_component_P0XF5bWlJxw"));
97
97
  function useBindableSignal({ signal, defaultValue }) {
98
98
  const internal = core$1.useSignal(defaultValue);
99
99
  return signal ?? internal;
100
100
  }
101
- const _hf0$R = (p0, p1) => p0.selectedValue.value === p1.value;
101
+ const _hf0$z = (p0, p1) => p0.selectedValue.value === p1.value;
102
102
  const ElmTabsContext = core$1.createContextId("elmethis.tabs");
103
103
  const ElmTabs = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
104
104
  const rest = core$1._restProps(props, [
@@ -117,7 +117,7 @@ const ElmTabs = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
117
117
  });
118
118
  return /* @__PURE__ */ core$1._jsxSplit("div", {
119
119
  class: [
120
- styles$T["elm-tabs"],
120
+ styles$R["elm-tabs"],
121
121
  props.class
122
122
  ],
123
123
  ...core$1._getVarProps(rest)
@@ -129,7 +129,7 @@ const ElmTabList = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
129
129
  ]);
130
130
  return /* @__PURE__ */ core$1._jsxSplit("div", {
131
131
  class: [
132
- styles$T["tab-container"],
132
+ styles$R["tab-container"],
133
133
  _rawProps.class
134
134
  ],
135
135
  ...core$1._getVarProps(rest)
@@ -150,9 +150,9 @@ const ElmTab = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inline
150
150
  ]);
151
151
  return /* @__PURE__ */ core$1._jsxSplit("div", {
152
152
  class: [
153
- styles$T["tab"],
153
+ styles$R["tab"],
154
154
  {
155
- [styles$T["active"]]: ctx.selectedValue.value === props.value
155
+ [styles$R["active"]]: ctx.selectedValue.value === props.value
156
156
  },
157
157
  props.class
158
158
  ],
@@ -168,19 +168,19 @@ const ElmTabPanel = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
168
168
  const ctx = core$1.useContext(ElmTabsContext);
169
169
  return /* @__PURE__ */ core$1._jsxSplit("div", {
170
170
  class: [
171
- styles$T["tab-content"],
171
+ styles$R["tab-content"],
172
172
  props.class
173
173
  ],
174
174
  ...core$1._getVarProps(rest)
175
175
  }, core$1._getConstProps(rest), /* @__PURE__ */ core$1._jsxSorted(ElmCollapse, null, {
176
176
  direction: "row",
177
- isOpen: core$1._fnSignal(_hf0$R, [
177
+ isOpen: core$1._fnSignal(_hf0$z, [
178
178
  ctx,
179
179
  props
180
180
  ]),
181
181
  transitionTimingFunction: core$1._wrapProp(ctx, "transitionTimingFunction")
182
182
  }, /* @__PURE__ */ core$1._jsxSorted("div", null, {
183
- class: styles$T["tab-content-inner"]
183
+ class: styles$R["tab-content-inner"]
184
184
  }, /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "lK_6"), 1, null), 1, "lK_7"), 0, "lK_8");
185
185
  }, "ElmTabPanel_component_4GhH207NkRY"));
186
186
  const h1 = "_h1_9vw8y_13";
@@ -189,7 +189,7 @@ const h3 = "_h3_9vw8y_72";
189
189
  const h4 = "_h4_9vw8y_87";
190
190
  const h5 = "_h5_9vw8y_91";
191
191
  const h6 = "_h6_9vw8y_95";
192
- const styles$R = {
192
+ const styles$P = {
193
193
  "elm-heading": "_elm-heading_9vw8y_1",
194
194
  h1,
195
195
  h2,
@@ -203,7 +203,7 @@ const text$2 = "_text_zme4t_1";
203
203
  const textStyles = {
204
204
  text: text$2
205
205
  };
206
- const styles$Q = {
206
+ const styles$O = {
207
207
  "elm-fragment-identifier": "_elm-fragment-identifier_xb2v4_1"
208
208
  };
209
209
  const ElmFragmentIdentifier = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
@@ -224,7 +224,7 @@ const ElmFragmentIdentifier = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ *
224
224
  }, "ElmFragmentIdentifier_component_handleHashClick_0I1su3qeCsY");
225
225
  return /* @__PURE__ */ core$1._jsxSplit("span", {
226
226
  class: [
227
- styles$Q["elm-fragment-identifier"],
227
+ styles$O["elm-fragment-identifier"],
228
228
  _rawProps.class
229
229
  ],
230
230
  "q-e:click": /* @__PURE__ */ core$1.inlinedQrl((_, _1, _rawProps2, handleHashClick2) => handleHashClick2(_rawProps2.id), "ElmFragmentIdentifier_component_span_q_e_click_acZZ1kAS1Ek"),
@@ -254,9 +254,9 @@ const ElmHeading = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
254
254
  const Tag = `h${_rawProps.level}`;
255
255
  return /* @__PURE__ */ core$1._jsxSplit(Tag, {
256
256
  class: [
257
- styles$R["elm-heading"],
257
+ styles$P["elm-heading"],
258
258
  textStyles.text,
259
- styles$R[`h${_rawProps.level}`],
259
+ styles$P[`h${_rawProps.level}`],
260
260
  _rawProps.class
261
261
  ],
262
262
  style: {
@@ -276,7 +276,7 @@ const ElmHeading = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
276
276
  id: core$1._wrapProp(_rawProps, "id")
277
277
  }, null, 3, "sL_1"), 1, "sL_2"),
278
278
  _rawProps.level === 2 && /* @__PURE__ */ core$1._jsxSorted("span", null, {
279
- class: styles$R["h2-underline"],
279
+ class: styles$P["h2-underline"],
280
280
  "aria-hidden": "true"
281
281
  }, null, 3, "sL_3")
282
282
  ], 0, "sL_4");
@@ -284,16 +284,16 @@ const ElmHeading = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
284
284
  const code$1 = "_code_uf3sg_13";
285
285
  const kbd = "_kbd_uf3sg_25";
286
286
  const link$1 = "_link_uf3sg_58";
287
- const styles$P = {
287
+ const styles$N = {
288
288
  "elm-inline-text": "_elm-inline-text_uf3sg_1",
289
289
  code: code$1,
290
290
  kbd,
291
291
  link: link$1
292
292
  };
293
- const styles$O = {
293
+ const styles$M = {
294
294
  "elm-inline-icon": "_elm-inline-icon_1qs0i_1"
295
295
  };
296
- const _hf0$Q = (p0) => p0.width ?? p0.size ?? 16;
296
+ const _hf0$y = (p0) => p0.width ?? p0.size ?? 16;
297
297
  const _hf1$i = (p0) => p0.height ?? p0.size ?? 16;
298
298
  const ElmInlineIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
299
299
  const props = core$1._restProps(_rawProps, [
@@ -306,7 +306,7 @@ const ElmInlineIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
306
306
  ]);
307
307
  return /* @__PURE__ */ core$1._jsxSplit("span", {
308
308
  class: [
309
- styles$O["elm-inline-icon"],
309
+ styles$M["elm-inline-icon"],
310
310
  _rawProps.class
311
311
  ],
312
312
  ...core$1._getVarProps(props)
@@ -316,14 +316,14 @@ const ElmInlineIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
316
316
  _rawProps
317
317
  ]),
318
318
  src: core$1._wrapProp(_rawProps, "src"),
319
- width: core$1._fnSignal(_hf0$Q, [
319
+ width: core$1._fnSignal(_hf0$y, [
320
320
  _rawProps
321
321
  ])
322
322
  }, {
323
- class: styles$O["elm-inline-icon"]
323
+ class: styles$M["elm-inline-icon"]
324
324
  }, null, 3, null), 0, "D4_0");
325
325
  }, "ElmInlineIcon_component_9LkENpSGozA"));
326
- const _hf0$P = (p0) => ({
326
+ const _hf0$x = (p0) => ({
327
327
  ...p0.style,
328
328
  "--elmethis-scoped-color": p0.color,
329
329
  "--elmethis-scoped-font-size": p0.size ?? "1em",
@@ -351,7 +351,7 @@ const ElmInlineText = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
351
351
  vnode = /* @__PURE__ */ core$1._jsxSorted("a", {
352
352
  href: core$1._wrapProp(_rawProps, "href")
353
353
  }, {
354
- class: styles$P.link,
354
+ class: styles$N.link,
355
355
  target: "_blank",
356
356
  rel: "noopener noreferrer"
357
357
  }, [
@@ -363,18 +363,18 @@ const ElmInlineText = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
363
363
  ], 1, "7t_2");
364
364
  }
365
365
  if (_rawProps.kbd ?? false) vnode = /* @__PURE__ */ core$1._jsxSorted("kbd", null, {
366
- class: styles$P.kbd
366
+ class: styles$N.kbd
367
367
  }, vnode, 1, "7t_3");
368
368
  if (_rawProps.strikethrough ?? false) vnode = /* @__PURE__ */ core$1._jsxSorted("del", null, null, vnode, 1, "7t_4");
369
369
  if (_rawProps.italic ?? false) vnode = /* @__PURE__ */ core$1._jsxSorted("em", null, null, vnode, 1, "7t_5");
370
370
  if (_rawProps.underline ?? false) vnode = /* @__PURE__ */ core$1._jsxSorted("ins", null, null, vnode, 1, "7t_6");
371
371
  if (_rawProps.bold ?? false) vnode = /* @__PURE__ */ core$1._jsxSorted("strong", null, null, vnode, 1, "7t_7");
372
372
  if (_rawProps.code ?? false) vnode = /* @__PURE__ */ core$1._jsxSorted("code", null, {
373
- class: styles$P.code
373
+ class: styles$N.code
374
374
  }, vnode, 1, "7t_8");
375
375
  if (_rawProps.ruby) {
376
376
  vnode = /* @__PURE__ */ core$1._jsxSorted("ruby", null, {
377
- class: styles$P["elm-inline-text"]
377
+ class: styles$N["elm-inline-text"]
378
378
  }, [
379
379
  /* @__PURE__ */ core$1._jsxSorted("span", null, null, vnode, 1, null),
380
380
  /* @__PURE__ */ core$1._jsxSorted("rt", null, null, core$1._wrapProp(_rawProps, "ruby"), 1, null)
@@ -382,20 +382,20 @@ const ElmInlineText = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
382
382
  }
383
383
  return /* @__PURE__ */ core$1._jsxSplit("span", {
384
384
  class: [
385
- styles$P["elm-inline-text"],
385
+ styles$N["elm-inline-text"],
386
386
  textStyles.text,
387
387
  _rawProps.class
388
388
  ],
389
- style: core$1._fnSignal(_hf0$P, [
389
+ style: core$1._fnSignal(_hf0$x, [
390
390
  _rawProps
391
391
  ]),
392
392
  ...core$1._getVarProps(rest)
393
393
  }, core$1._getConstProps(rest), vnode, 0, "7t_10");
394
394
  }, "ElmInlineText_component_MdjKbLJ3SR0"));
395
- const styles$N = {
395
+ const styles$L = {
396
396
  "elm-paragraph": "_elm-paragraph_rbsk5_1"
397
397
  };
398
- const _hf0$O = (p0) => ({
398
+ const _hf0$w = (p0) => ({
399
399
  ...p0.style,
400
400
  "--elmethis-scoped-color": p0.color,
401
401
  "--elmethis-scoped-background-color": p0.backgroundColor
@@ -409,11 +409,11 @@ const ElmParagraph = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
409
409
  ]);
410
410
  return /* @__PURE__ */ core$1._jsxSplit("p", {
411
411
  class: [
412
- styles$N["elm-paragraph"],
412
+ styles$L["elm-paragraph"],
413
413
  textStyles.text,
414
414
  _rawProps.class
415
415
  ],
416
- style: core$1._fnSignal(_hf0$O, [
416
+ style: core$1._fnSignal(_hf0$w, [
417
417
  _rawProps
418
418
  ]),
419
419
  ...core$1._getVarProps(props)
@@ -421,7 +421,7 @@ const ElmParagraph = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
421
421
  }, "ElmParagraph_component_dmeJIyB25Lw"));
422
422
  const surface$1 = "_surface_4ps3c_5";
423
423
  const row$1 = "_row_4ps3c_47";
424
- const column$1 = "_column_4ps3c_53";
424
+ const column = "_column_4ps3c_53";
425
425
  const list = "_list_4ps3c_64";
426
426
  const card$1 = "_card_4ps3c_81";
427
427
  const button = "_button_4ps3c_91";
@@ -435,11 +435,11 @@ const slider = "_slider_4ps3c_192";
435
435
  const modal = "_modal_4ps3c_199";
436
436
  const video = "_video_4ps3c_209";
437
437
  const audio = "_audio_4ps3c_210";
438
- const styles$M = {
438
+ const styles$K = {
439
439
  "elm-a2ui": "_elm-a2ui_4ps3c_1",
440
440
  surface: surface$1,
441
441
  row: row$1,
442
- column: column$1,
442
+ column,
443
443
  "child-wrap": "_child-wrap_4ps3c_60",
444
444
  list,
445
445
  "list-horizontal": "_list-horizontal_4ps3c_71",
@@ -533,7 +533,7 @@ function firstChildMargin(index) {
533
533
  marginBlockStart: 0
534
534
  } : void 0;
535
535
  }
536
- const _hf0$N = (p0) => p0.props.min ?? 0;
536
+ const _hf0$v = (p0) => p0.props.min ?? 0;
537
537
  const _hf1$h = (p0) => p0.props.max;
538
538
  const textFieldInputType = {
539
539
  shortText: "text",
@@ -572,28 +572,28 @@ const basicCatalog = new CatalogRenderer([
572
572
  alignItems: alignItemsMap[_rawProps.props.align ?? "center"]
573
573
  }
574
574
  }, {
575
- class: styles$M.row
576
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, {
577
- class: styles$M["child-wrap"]
578
- }, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Lh_3")),
575
+ class: styles$K.row
576
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, {
577
+ class: styles$K["child-wrap"]
578
+ }, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Lh_3")),
579
579
  defineRenderer(basic_catalog.ColumnApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("div", null, {
580
- class: styles$M.column,
580
+ class: styles$K.column,
581
581
  style: {
582
582
  "--margin-block": "2rem"
583
583
  }
584
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, {
585
- class: styles$M["child-wrap"]
586
- }, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Lh_4")),
584
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, {
585
+ class: styles$K["child-wrap"]
586
+ }, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Lh_4")),
587
587
  defineRenderer(basic_catalog.ListApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("div", {
588
588
  class: [
589
- styles$M.list,
590
- _rawProps.props.direction === "horizontal" && styles$M["list-horizontal"]
589
+ styles$K.list,
590
+ _rawProps.props.direction === "horizontal" && styles$K["list-horizontal"]
591
591
  ]
592
- }, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("div", null, {
593
- class: styles$M["list-item"]
594
- }, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Lh_5")),
592
+ }, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("div", null, {
593
+ class: styles$K["list-item"]
594
+ }, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Lh_5")),
595
595
  defineRenderer(basic_catalog.CardApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("div", null, {
596
- class: styles$M.card
596
+ class: styles$K.card
597
597
  }, _rawProps.renderChild(_rawProps.props.child), 1, "Lh_6")),
598
598
  // Rendered as a div-with-role rather than a native <button> because the
599
599
  // A2UI `child` can be any component (Row, Column, Card, etc.), and those
@@ -601,8 +601,8 @@ const basicCatalog = new CatalogRenderer([
601
601
  // SSR validator (Q12).
602
602
  defineRenderer(basic_catalog.ButtonApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("div", {
603
603
  class: [
604
- styles$M.button,
605
- _rawProps.props.variant === "primary" && styles$M["button-primary"]
604
+ styles$K.button,
605
+ _rawProps.props.variant === "primary" && styles$K["button-primary"]
606
606
  ],
607
607
  "q-e:click": _rawProps.props.action ? () => _rawProps.dispatchAction$("action") : void 0,
608
608
  "q-e:keydown": _rawProps.props.action ? (e) => {
@@ -624,7 +624,7 @@ const basicCatalog = new CatalogRenderer([
624
624
  objectFit: objectFitMap[_rawProps.props.fit ?? "cover"]
625
625
  }
626
626
  }, {
627
- class: styles$M.image
627
+ class: styles$K.image
628
628
  }, null, 3, "Lh_8")
629
629
  )),
630
630
  defineRenderer(basic_catalog.IconApi, (_rawProps) => {
@@ -633,13 +633,13 @@ const basicCatalog = new CatalogRenderer([
633
633
  "aria-label": name,
634
634
  "data-icon": name
635
635
  }, {
636
- class: styles$M.icon
636
+ class: styles$K.icon
637
637
  }, null, 3, "Lh_9");
638
638
  }),
639
639
  defineRenderer(basic_catalog.DividerApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("div", {
640
640
  class: [
641
- styles$M.divider,
642
- _rawProps.props.axis === "vertical" && styles$M["divider-vertical"]
641
+ styles$K.divider,
642
+ _rawProps.props.axis === "vertical" && styles$K["divider-vertical"]
643
643
  ]
644
644
  }, {
645
645
  role: "separator"
@@ -648,10 +648,10 @@ const basicCatalog = new CatalogRenderer([
648
648
  const variant = _rawProps.props.variant ?? "shortText";
649
649
  const value = _rawProps.props.value ? _rawProps.resolve(_rawProps.props.value) : "";
650
650
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
651
- class: styles$M["text-field"]
651
+ class: styles$K["text-field"]
652
652
  }, [
653
653
  /* @__PURE__ */ core$1._jsxSorted("label", null, {
654
- class: styles$M.label
654
+ class: styles$K.label
655
655
  }, _rawProps.resolve(_rawProps.props.label), 1, null),
656
656
  variant === "longText" ? /* @__PURE__ */ core$1._jsxSorted("textarea", {
657
657
  "q-e:change": /* @__PURE__ */ core$1.inlinedQrl((_e, el, _rawProps2) => _rawProps2.setBinding$("value", el.value), "basicCatalog_defineRenderer_div_textarea_q_e_change_AvRxzHDOuzE"),
@@ -659,7 +659,7 @@ const basicCatalog = new CatalogRenderer([
659
659
  "q:p": _rawProps,
660
660
  value
661
661
  }, {
662
- class: styles$M.input
662
+ class: styles$K.input
663
663
  }, null, 6, "Lh_11") : /* @__PURE__ */ core$1._jsxSorted("input", {
664
664
  "q-e:change": /* @__PURE__ */ core$1.inlinedQrl((_e, el, _rawProps2) => _rawProps2.setBinding$("value", el.value), "basicCatalog_defineRenderer_div_input_q_e_change_d4MNBikoI0c"),
665
665
  "q-e:input": /* @__PURE__ */ core$1.inlinedQrl((_e, el, _rawProps2) => _rawProps2.setBinding$("value", el.value), "basicCatalog_defineRenderer_div_input_q_e_input_XTp8fL9T8eo"),
@@ -667,14 +667,14 @@ const basicCatalog = new CatalogRenderer([
667
667
  type: textFieldInputType[variant] ?? "text",
668
668
  value
669
669
  }, {
670
- class: styles$M.input
670
+ class: styles$K.input
671
671
  }, null, 6, "Lh_12")
672
672
  ], 1, "Lh_13");
673
673
  }),
674
674
  defineRenderer(basic_catalog.CheckBoxApi, (_rawProps) => {
675
675
  const checked2 = typeof _rawProps.props.value === "boolean" ? _rawProps.props.value : Boolean(_rawProps.ctx.dataContext.resolveDynamicValue(_rawProps.props.value) ?? false);
676
676
  return /* @__PURE__ */ core$1._jsxSorted("label", null, {
677
- class: styles$M.checkbox
677
+ class: styles$K.checkbox
678
678
  }, [
679
679
  /* @__PURE__ */ core$1._jsxSorted("input", {
680
680
  checked: checked2,
@@ -684,7 +684,7 @@ const basicCatalog = new CatalogRenderer([
684
684
  type: "checkbox"
685
685
  }, null, 6, null),
686
686
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
687
- class: styles$M["checkbox-label"]
687
+ class: styles$K["checkbox-label"]
688
688
  }, _rawProps.resolve(_rawProps.props.label), 1, null)
689
689
  ], 1, "Lh_14");
690
690
  }),
@@ -694,7 +694,7 @@ const basicCatalog = new CatalogRenderer([
694
694
  max: core$1._fnSignal(_hf1$h, [
695
695
  _rawProps
696
696
  ]),
697
- min: core$1._fnSignal(_hf0$N, [
697
+ min: core$1._fnSignal(_hf0$v, [
698
698
  _rawProps
699
699
  ]),
700
700
  "q-e:change": /* @__PURE__ */ core$1.inlinedQrl((_e, el, _rawProps2) => _rawProps2.setBinding$("value", Number(el.value)), "basicCatalog_defineRenderer_input_q_e_change_U0Dwvjz0O9o"),
@@ -702,7 +702,7 @@ const basicCatalog = new CatalogRenderer([
702
702
  "q:p": _rawProps,
703
703
  value
704
704
  }, {
705
- class: styles$M.slider,
705
+ class: styles$K.slider,
706
706
  type: "range"
707
707
  }, null, 6, "Lh_15");
708
708
  }),
@@ -717,23 +717,23 @@ const basicCatalog = new CatalogRenderer([
717
717
  }, null, _rawProps.renderChild(tab2.child), 1, idx))
718
718
  ], 1, "Lh_17")),
719
719
  defineRenderer(basic_catalog.ModalApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("div", null, {
720
- class: styles$M.modal
720
+ class: styles$K.modal
721
721
  }, [
722
722
  _rawProps.renderChild(_rawProps.props.trigger),
723
723
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
724
- class: styles$M["modal-content"]
724
+ class: styles$K["modal-content"]
725
725
  }, _rawProps.renderChild(_rawProps.props.content), 1, null)
726
726
  ], 1, "Lh_18")),
727
727
  defineRenderer(basic_catalog.VideoApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("video", {
728
728
  src: _rawProps.resolve(_rawProps.props.url)
729
729
  }, {
730
- class: styles$M.video,
730
+ class: styles$K.video,
731
731
  controls: true
732
732
  }, null, 3, "Lh_19")),
733
733
  defineRenderer(basic_catalog.AudioPlayerApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("audio", {
734
734
  src: _rawProps.resolve(_rawProps.props.url)
735
735
  }, {
736
- class: styles$M.audio,
736
+ class: styles$K.audio,
737
737
  controls: true
738
738
  }, null, 3, "Lh_20")),
739
739
  defineRenderer(basic_catalog.ChoicePickerApi, (_rawProps) => {
@@ -750,15 +750,15 @@ const basicCatalog = new CatalogRenderer([
750
750
  }, "basicCatalog_defineRenderer_div_q_e_change_HaNxxdy0Z1g"),
751
751
  "q:p": _rawProps
752
752
  }, {
753
- class: styles$M["choice-picker"]
753
+ class: styles$K["choice-picker"]
754
754
  }, [
755
755
  _rawProps.props.label ? /* @__PURE__ */ core$1._jsxSorted("span", null, {
756
- class: styles$M["choice-picker-label"]
756
+ class: styles$K["choice-picker-label"]
757
757
  }, _rawProps.resolve(_rawProps.props.label), 1, "Lh_21") : null,
758
758
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
759
- class: styles$M["choice-picker-options"]
759
+ class: styles$K["choice-picker-options"]
760
760
  }, _rawProps.props.options.map((opt) => /* @__PURE__ */ core$1._jsxSorted("label", null, {
761
- class: styles$M["choice-picker-option"]
761
+ class: styles$K["choice-picker-option"]
762
762
  }, [
763
763
  /* @__PURE__ */ core$1._jsxSorted("input", {
764
764
  checked: selected.includes(opt.value),
@@ -775,10 +775,10 @@ const basicCatalog = new CatalogRenderer([
775
775
  const enableTime = _rawProps.props.enableTime ?? false;
776
776
  const inputType = enableDate && enableTime ? "datetime-local" : enableDate ? "date" : enableTime ? "time" : "text";
777
777
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
778
- class: styles$M["datetime-input"]
778
+ class: styles$K["datetime-input"]
779
779
  }, [
780
780
  _rawProps.props.label ? /* @__PURE__ */ core$1._jsxSorted("label", null, {
781
- class: styles$M.label
781
+ class: styles$K.label
782
782
  }, _rawProps.resolve(_rawProps.props.label), 1, "Lh_23") : null,
783
783
  /* @__PURE__ */ core$1._jsxSorted("input", {
784
784
  max: _rawProps.props.max != null ? String(_rawProps.props.max) : void 0,
@@ -789,7 +789,7 @@ const basicCatalog = new CatalogRenderer([
789
789
  type: inputType,
790
790
  value: _rawProps.props.value ? _rawProps.resolve(_rawProps.props.value) : ""
791
791
  }, {
792
- class: styles$M.input
792
+ class: styles$K.input
793
793
  }, null, 6, null)
794
794
  ], 1, "Lh_24");
795
795
  })
@@ -900,7 +900,7 @@ const ComponentHost = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
900
900
  }
901
901
  return [];
902
902
  };
903
- const renderChild = (childId, path2 = props.basePath, childIndex = 0) => (
903
+ const renderChild = (childId, path = props.basePath, childIndex = 0) => (
904
904
  // `key={childId}` is load-bearing: it forces Qwik to unmount the
905
905
  // previous host and mount a fresh one when a parent re-binds a
906
906
  // single-child slot (e.g. Card.child changes "a" → "b"). Without
@@ -913,7 +913,7 @@ const ComponentHost = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
913
913
  // covers the single-child renderers (Card, Modal slots, Button
914
914
  // child, …) and any future custom renderer.
915
915
  /* @__PURE__ */ core$1._jsxSorted(ComponentHost, {
916
- basePath: path2,
916
+ basePath: path,
917
917
  id: childId,
918
918
  index: childIndex
919
919
  }, null, null, 3, childId)
@@ -926,8 +926,8 @@ const ComponentHost = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
926
926
  if (!m) return;
927
927
  const raw = m.properties[propName];
928
928
  if (!raw || typeof raw !== "object" || !("path" in raw)) return;
929
- const path2 = raw.path;
930
- new v0_9.ComponentContext(surface22, idCapture2).dataContext.set(path2, value);
929
+ const path = raw.path;
930
+ new v0_9.ComponentContext(surface22, idCapture2).dataContext.set(path, value);
931
931
  }, "ComponentHost_component_setBinding_CEvXL9spdoU", [
932
932
  idCapture,
933
933
  surface2
@@ -1022,7 +1022,7 @@ const A2uiSurface = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
1022
1022
  core$1.useContextProvider(A2uiSurfaceContext, props.surface);
1023
1023
  core$1.useContextProvider(A2uiAncestorContext, []);
1024
1024
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
1025
- class: styles$M.surface,
1025
+ class: styles$K.surface,
1026
1026
  style: {
1027
1027
  "--elmethis-margin-block-start": "2rem"
1028
1028
  }
@@ -1035,7 +1035,7 @@ const SurfaceView = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
1035
1035
  core$1.useContextProvider(A2uiSurfaceContext, props.surface);
1036
1036
  core$1.useContextProvider(A2uiAncestorContext, []);
1037
1037
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
1038
- class: styles$M.surface,
1038
+ class: styles$K.surface,
1039
1039
  style: {
1040
1040
  "--elmethis-margin-block-start": "2rem"
1041
1041
  }
@@ -1179,7 +1179,7 @@ const ElmA2ui = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
1179
1179
  ]));
1180
1180
  return /* @__PURE__ */ core$1._jsxSorted("div", {
1181
1181
  class: [
1182
- styles$M["elm-a2ui"],
1182
+ styles$K["elm-a2ui"],
1183
1183
  props.class
1184
1184
  ],
1185
1185
  style: core$1._wrapProp(props, "style")
@@ -1187,10 +1187,10 @@ const ElmA2ui = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
1187
1187
  surface: core$1.noSerialize(surface2)
1188
1188
  }, null, null, 3, surface2.id)), 1, "pJ_4");
1189
1189
  }, "ElmA2ui_component_JeVykabE5oE"));
1190
- const styles$L = {
1190
+ const styles$J = {
1191
1191
  "elm-katex": "_elm-katex_189xe_1"
1192
1192
  };
1193
- const _hf0$M = (p0) => p0.value ?? "";
1193
+ const _hf0$u = (p0) => p0.value ?? "";
1194
1194
  const ElmKatex = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
1195
1195
  const rest = core$1._restProps(props, [
1196
1196
  "class",
@@ -1209,10 +1209,10 @@ const ElmKatex = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inli
1209
1209
  return /* @__PURE__ */ core$1._jsxSplit("div", {
1210
1210
  class: [
1211
1211
  textStyles.text,
1212
- props.block ? styles$L["elm-katex"] : void 0,
1212
+ props.block ? styles$J["elm-katex"] : void 0,
1213
1213
  props.class
1214
1214
  ],
1215
- dangerouslySetInnerHTML: core$1._fnSignal(_hf0$M, [
1215
+ dangerouslySetInnerHTML: core$1._fnSignal(_hf0$u, [
1216
1216
  html
1217
1217
  ]),
1218
1218
  ...core$1._getVarProps(rest)
@@ -1221,7 +1221,7 @@ const ElmKatex = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inli
1221
1221
  const caption$1 = "_caption_xdmlc_22";
1222
1222
  const divider$1 = "_divider_xdmlc_33";
1223
1223
  const code = "_code_xdmlc_40";
1224
- const styles$K = {
1224
+ const styles$I = {
1225
1225
  "elm-code-block": "_elm-code-block_xdmlc_1",
1226
1226
  "language-icon": "_language-icon_xdmlc_17",
1227
1227
  caption: caption$1,
@@ -1229,640 +1229,50 @@ const styles$K = {
1229
1229
  divider: divider$1,
1230
1230
  code
1231
1231
  };
1232
- const _hf0$L = (p0) => p0.size ?? 24;
1233
- const Rust = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1234
- const props = core$1._restProps(_rawProps, [
1235
- "size"
1236
- ]);
1237
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1238
- xmlns: "http://www.w3.org/2000/svg",
1239
- viewBox: "0 0 128 128",
1240
- fill: "#a84f33",
1241
- width: core$1._fnSignal(_hf0$L, [
1242
- _rawProps
1243
- ]),
1244
- height: core$1._fnSignal(_hf0$L, [
1245
- _rawProps
1246
- ]),
1247
- ...core$1._getVarProps(props)
1248
- }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted("path", null, {
1249
- d: "M62.96.242c-.232.135-1.203 1.528-2.16 3.097c-2.4 3.94-2.426 3.942-5.65.55c-2.098-2.208-2.605-2.612-3.28-2.607c-.44.002-.995.152-1.235.332s-.916 1.612-1.504 3.183c-1.346 3.6-1.41 3.715-2.156 3.86c-.46.086-1.343-.407-3.463-1.929c-1.565-1.125-3.1-2.045-3.411-2.045c-1.291 0-1.655.706-2.27 4.4c-.78 4.697-.754 4.681-4.988 2.758c-1.71-.776-3.33-1.41-3.603-1.41s-.792.293-1.15.652c-.652.652-.653.655-.475 4.246l.178 3.595l-.68.364c-.602.322-1.017.283-3.684-.348c-3.48-.822-4.216-.8-4.92.15l-.516.693l.692 2.964c.38 1.63.745 3.2.814 3.487c.067.287-.05.746-.26 1.02c-.348.448-.717.49-3.94.44c-5.452-.086-5.761.382-3.51 5.3c.718 1.56 1.305 2.98 1.305 3.15c0 .898-.717 1.224-3.794 1.727c-1.722.28-3.218.51-3.326.51c-.107 0-.43.235-.717.522c-.937.936-.671 1.816 1.453 4.814c2.646 3.735 2.642 3.75-1.73 5.421c-4.971 1.902-5.072 2.37-1.287 5.96c3.525 3.344 3.53 3.295-.461 5.804C.208 62.8.162 62.846.085 63.876c-.093 1.253-.071 1.275 3.538 3.48c3.57 2.18 3.57 2.246.067 5.56C-.078 76.48.038 77 5.013 78.877c4.347 1.64 4.353 1.66 1.702 5.394c-1.502 2.117-1.981 3-1.981 3.653c0 1.223.637 1.535 4.44 2.174c3.206.54 3.92.857 3.92 1.741c0 .182-.588 1.612-1.307 3.177c-2.236 4.87-1.981 5.275 3.31 5.275c4.93 0 4.799-.15 3.737 4.294c-.8 3.35-.813 3.992-.088 4.715c.554.556 1.6.494 4.87-.289c2.499-.596 2.937-.637 3.516-.328l.66.354l-.177 3.594c-.178 3.593-.177 3.595.475 4.248c.358.36.884.652 1.165.652s1.903-.63 3.604-1.404c4.22-1.916 4.194-1.932 4.973 2.75c.617 3.711.977 4.4 2.294 4.4c.327 0 1.83-.88 3.34-1.958c2.654-1.893 3.342-2.19 4.049-1.74c.182.115.89 1.67 1.572 3.455c1.003 2.625 1.37 3.31 1.929 3.576c1.062.51 1.72.1 4.218-2.62c3.016-3.286 3.14-3.27 5.602.72c2.72 4.406 3.424 4.396 6.212-.089c2.402-3.864 2.374-3.862 5.621-.47c2.157 2.25 2.616 2.61 3.343 2.61c.464 0 1.019-.175 1.23-.388c.214-.213.92-1.786 1.568-3.496c.649-1.71 1.321-3.2 1.495-3.31c.687-.436 1.398-.13 4.048 1.752c1.56 1.108 3.028 1.96 3.377 1.96c1.296 0 1.764-.92 2.302-4.535c.46-3.082.554-3.378 1.16-3.685c.596-.302.954-.2 3.75 1.07c1.701.77 3.323 1.402 3.604 1.402s.816-.302 1.184-.672l.672-.67l-.184-3.448c-.177-3.29-.16-3.468.364-3.943c.54-.488.596-.486 3.615.204c3.656.835 4.338.857 5.025.17c.671-.67.664-.818-.254-4.69c-1.03-4.346-1.168-4.19 3.78-4.19c3.374 0 3.75-.049 4.18-.523c.718-.793.547-1.702-.896-4.779c-.729-1.55-1.32-2.96-1.315-3.135c.024-.914.743-1.227 4.065-1.767c2.033-.329 3.553-.71 3.829-.96c.923-.833.584-1.918-1.523-4.873c-2.642-3.703-2.63-3.738 1.599-5.297c5.064-1.866 5.209-2.488 1.419-6.09c-3.51-3.335-3.512-3.317.333-5.677c4.648-2.853 4.655-3.496.082-6.335c-3.933-2.44-3.93-2.406-.405-5.753c3.78-3.593 3.678-4.063-1.295-5.965c-4.388-1.679-4.402-1.72-1.735-5.38c1.588-2.18 1.982-2.903 1.982-3.65c0-1.306-.586-1.598-4.436-2.22c-3.216-.52-3.924-.835-3.924-1.75c0-.174.588-1.574 1.307-3.113c1.406-3.013 1.604-4.22.808-4.94c-.428-.387-1-.443-4.067-.392c-3.208.054-3.618.008-4.063-.439c-.486-.488-.48-.557.278-3.725c.931-3.88.935-3.975.17-4.694c-.777-.73-1.262-.718-4.826.121c-2.597.612-3.027.653-3.617.337l-.67-.36l.185-3.582l.186-3.58l-.67-.67c-.369-.37-.891-.67-1.163-.67c-.27 0-1.884.64-3.583 1.421c-2.838 1.306-3.143 1.393-3.757 1.072c-.612-.32-.714-.637-1.237-3.829c-.603-3.693-.977-4.412-2.288-4.412c-.311 0-1.853.925-3.426 2.055c-2.584 1.856-2.93 2.032-3.574 1.807c-.533-.186-.843-.59-1.221-1.599c-.28-.742-.817-2.172-1.194-3.177c-.762-2.028-1.187-2.482-2.328-2.482c-.637 0-1.213.458-3.28 2.604c-3.25 3.375-3.261 3.374-5.65-.545C66.073 1.78 65.075.382 64.81.24c-.597-.32-1.3-.32-1.85.002m2.96 11.798c2.83 2.014 1.326 6.75-2.144 6.75c-3.368 0-5.064-4.057-2.66-6.36c1.358-1.3 3.304-1.459 4.805-.39m-3.558 12.507c1.855.705 2.616.282 6.852-3.8l3.182-3.07l1.347.18c4.225.56 12.627 4.25 17.455 7.666c4.436 3.14 10.332 9.534 12.845 13.93l.537.942l-2.38 5.364c-1.31 2.95-2.382 5.673-2.382 6.053c0 .878.576 2.267 1.13 2.726c.234.195 2.457 1.265 4.939 2.378l4.51 2.025l.178 1.148c.23 1.495.26 5.167.052 6.21l-.163.816h-2.575c-2.987 0-2.756-.267-2.918 3.396c-.118 2.656-.76 4.124-2.22 5.075c-2.377 1.551-6.304 1.27-7.97-.57c-.255-.284-.752-1.705-1.105-3.16c-1.03-4.254-2.413-6.64-5.193-8.965c-.878-.733-1.595-1.418-1.595-1.522c0-.102.965-.915 2.145-1.803c4.298-3.24 6.77-7.012 7.04-10.747c.519-7.126-5.158-13.767-13.602-15.92c-2.002-.51-2.857-.526-27.624-.526c-14.057 0-25.56-.092-25.56-.204c0-.263 3.125-3.295 4.965-4.816c5.054-4.178 11.618-7.465 18.417-9.22l2.35-.61l3.34 3.387c1.839 1.863 3.64 3.5 4.003 3.637M20.3 46.34c1.539 1.008 2.17 3.54 1.26 5.062c-1.405 2.356-4.966 2.455-6.373.178c-2.046-3.309 1.895-7.349 5.113-5.24m90.672.13c4.026 2.454.906 8.493-3.404 6.586c-2.877-1.273-2.97-5.206-.155-6.64c1.174-.6 2.523-.579 3.56.053M32.163 61.5v15.02h-13.28l-.526-2.285c-1.036-4.5-1.472-9.156-1.211-12.969l.182-2.679l4.565-2.047c2.864-1.283 4.706-2.262 4.943-2.625c1.038-1.584.94-2.715-.518-5.933l-.68-1.502h6.523V61.5M70.39 47.132c2.843.74 4.345 2.245 4.349 4.355c.002 1.55-.765 2.52-2.67 3.38c-1.348.61-1.562.625-10.063.708l-8.686.084v-8.92h7.782c6.078 0 8.112.086 9.288.393m-2.934 21.554c1.41.392 3.076 1.616 3.93 2.888c.898 1.337 1.423 3.076 2.667 8.836c1.05 4.87 1.727 6.46 3.62 8.532c2.345 2.566 1.8 2.466 13.514 2.466c5.61 0 10.198.09 10.198.2c0 .197-3.863 4.764-4.03 4.764c-.048 0-2.066-.422-4.484-.939c-6.829-1.458-7.075-1.287-8.642 6.032l-1.008 4.702l-.91.448c-1.518.75-6.453 2.292-9.01 2.82c-4.228.87-8.828 1.162-12.871.821c-6.893-.585-16.02-3.259-16.377-4.8c-.075-.327-.535-2.443-1.018-4.704c-.485-2.26-1.074-4.404-1.31-4.764c-1.13-1.724-2.318-1.83-7.547-.674c-1.98.44-3.708.796-3.84.796c-.248 0-3.923-4.249-3.923-4.535c0-.09 8.728-.194 19.396-.23l19.395-.066l.07-6.89c.05-4.865-.018-6.997-.23-7.25c-.234-.284-1.485-.358-6.011-.358H53.32v-8.36l6.597.001c3.626.002 7.02.12 7.539.264M37.57 100.02c3.084 1.88 1.605 6.804-2.043 6.8c-3.74 0-5.127-4.88-1.94-6.826c1.055-.643 2.908-.63 3.983.026m56.48.206c1.512 1.108 2.015 3.413 1.079 4.95c-2.46 4.034-8.612.827-6.557-3.419c1.01-2.085 3.695-2.837 5.478-1.53"
1250
- }, null, 3, null), 0, "YT_0");
1251
- }, "Rust_component_FAp1GAc0j08"));
1252
- const _hf0$K = (p0) => p0.size ?? 24;
1253
- const Javascript = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1254
- const props = core$1._restProps(_rawProps, [
1255
- "size"
1256
- ]);
1257
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1258
- xmlns: "http://www.w3.org/2000/svg",
1259
- width: core$1._fnSignal(_hf0$K, [
1260
- _rawProps
1261
- ]),
1262
- height: core$1._fnSignal(_hf0$K, [
1263
- _rawProps
1264
- ]),
1265
- viewBox: "0 0 128 128",
1266
- ...core$1._getVarProps(props)
1267
- }, core$1._getConstProps(props), [
1268
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1269
- fill: "#f0db4f",
1270
- d: "M1.408 1.408h125.184v125.185H1.408z"
1271
- }, null, 3, null),
1272
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1273
- fill: "#323330",
1274
- d: "M116.347 96.736c-.917-5.711-4.641-10.508-15.672-14.981c-3.832-1.761-8.104-3.022-9.377-5.926c-.452-1.69-.512-2.642-.226-3.665c.821-3.32 4.784-4.355 7.925-3.403c2.023.678 3.938 2.237 5.093 4.724c5.402-3.498 5.391-3.475 9.163-5.879c-1.381-2.141-2.118-3.129-3.022-4.045c-3.249-3.629-7.676-5.498-14.756-5.355l-3.688.477c-3.534.893-6.902 2.748-8.877 5.235c-5.926 6.724-4.236 18.492 2.975 23.335c7.104 5.332 17.54 6.545 18.873 11.531c1.297 6.104-4.486 8.08-10.234 7.378c-4.236-.881-6.592-3.034-9.139-6.949c-4.688 2.713-4.688 2.713-9.508 5.485c1.143 2.499 2.344 3.63 4.26 5.795c9.068 9.198 31.76 8.746 35.83-5.176c.165-.478 1.261-3.666.38-8.581M69.462 58.943H57.753l-.048 30.272c0 6.438.333 12.34-.714 14.149c-1.713 3.558-6.152 3.117-8.175 2.427c-2.059-1.012-3.106-2.451-4.319-4.485c-.333-.584-.583-1.036-.667-1.071l-9.52 5.83c1.583 3.249 3.915 6.069 6.902 7.901c4.462 2.678 10.459 3.499 16.731 2.059c4.082-1.189 7.604-3.652 9.448-7.401c2.666-4.915 2.094-10.864 2.07-17.444c.06-10.735.001-21.468.001-32.237"
1275
- }, null, 3, null)
1276
- ], 0, "9U_0");
1277
- }, "Javascript_component_PsVeZ5WAECA"));
1278
- const _hf0$J = (p0) => p0.size ?? 24;
1279
- const Typescript = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1280
- const props = core$1._restProps(_rawProps, [
1281
- "size"
1282
- ]);
1283
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1284
- xmlns: "http://www.w3.org/2000/svg",
1285
- width: core$1._fnSignal(_hf0$J, [
1286
- _rawProps
1287
- ]),
1288
- height: core$1._fnSignal(_hf0$J, [
1289
- _rawProps
1290
- ]),
1291
- viewBox: "0 0 128 128",
1292
- ...core$1._getVarProps(props)
1293
- }, core$1._getConstProps(props), [
1294
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1295
- fill: "#fff",
1296
- d: "M22.67 47h99.67v73.67H22.67z"
1297
- }, null, 3, null),
1298
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1299
- fill: "#007acc",
1300
- d: "M1.5 63.91v62.5h125v-125H1.5zm100.73-5a15.56 15.56 0 0 1 7.82 4.5a20.6 20.6 0 0 1 3 4c0 .16-5.4 3.81-8.69 5.85c-.12.08-.6-.44-1.13-1.23a7.09 7.09 0 0 0-5.87-3.53c-3.79-.26-6.23 1.73-6.21 5a4.6 4.6 0 0 0 .54 2.34c.83 1.73 2.38 2.76 7.24 4.86c8.95 3.85 12.78 6.39 15.16 10c2.66 4 3.25 10.46 1.45 15.24c-2 5.2-6.9 8.73-13.83 9.9a38.3 38.3 0 0 1-9.52-.1a23 23 0 0 1-12.72-6.63c-1.15-1.27-3.39-4.58-3.25-4.82a9 9 0 0 1 1.15-.73L82 101l3.59-2.08l.75 1.11a16.8 16.8 0 0 0 4.74 4.54c4 2.1 9.46 1.81 12.16-.62a5.43 5.43 0 0 0 .69-6.92c-1-1.39-3-2.56-8.59-5c-6.45-2.78-9.23-4.5-11.77-7.24a16.5 16.5 0 0 1-3.43-6.25a25 25 0 0 1-.22-8c1.33-6.23 6-10.58 12.82-11.87a31.7 31.7 0 0 1 9.49.26zm-29.34 5.24v5.12H56.66v46.23H45.15V69.26H28.88v-5a49 49 0 0 1 .12-5.17C29.08 59 39 59 51 59h21.83z"
1301
- }, null, 3, null)
1302
- ], 0, "Os_0");
1303
- }, "Typescript_component_nLU7Qpu0u0k"));
1304
- const path = "_path_1aa0a_1";
1305
- const styles$J = {
1306
- path
1232
+ const _hf0$t = (p0) => p0.icon.viewBox;
1233
+ const _hf1$g = (p0) => p0.size ?? 24;
1234
+ const scopeId = (value, key2, suffix) => key2 === "id" ? `${value}-${suffix}` : value.replace(/url\(#([^)]+)\)/g, `url(#$1-${suffix})`);
1235
+ const renderNode = (node, suffix, key2) => {
1236
+ const attrs = {};
1237
+ for (const [k, v] of Object.entries(node.attrs ?? {})) {
1238
+ attrs[k] = scopeId(v, k, suffix);
1239
+ }
1240
+ const Tag = node.tag;
1241
+ return /* @__PURE__ */ core$1._jsxSplit(Tag, {
1242
+ ...core$1._getVarProps(attrs),
1243
+ ...core$1._getConstProps(attrs)
1244
+ }, {
1245
+ style: core$1._wrapProp(node, "style")
1246
+ }, node.children?.map((child, i) => renderNode(child, suffix, i)), 0, key2);
1307
1247
  };
1308
- const _hf0$I = (p0) => p0.size ?? 24;
1309
- const Bash = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1310
- const props = core$1._restProps(_rawProps, [
1311
- "size"
1312
- ]);
1313
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1314
- xmlns: "http://www.w3.org/2000/svg",
1315
- viewBox: "0 0 128 128",
1316
- width: core$1._fnSignal(_hf0$I, [
1317
- _rawProps
1318
- ]),
1319
- height: core$1._fnSignal(_hf0$I, [
1320
- _rawProps
1321
- ]),
1322
- ...core$1._getVarProps(props)
1323
- }, core$1._getConstProps(props), [
1324
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1325
- fill: "none",
1326
- d: "M4.24 4.24h119.53v119.53H4.24z"
1327
- }, null, 3, null),
1328
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1329
- class: styles$J.path,
1330
- d: "M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2c2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96M79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42c-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6c.06-.06.12-.1.18-.13c.11-.06.22-.07.31-.03c1.14.38 2.59.2 3.99-.5c1.78-.9 2.97-2.72 2.95-4.52c-.02-1.64-.9-2.31-3.05-2.33c-2.74.01-5.3-.53-5.34-4.57c-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44c.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.8.8 0 0 1-.19.14c-.1.05-.19.06-.28.05c-.49-.11-1.65-.36-3.48.56c-1.92.97-2.59 2.64-2.58 3.88c.02 1.48.77 1.93 3.39 1.97c3.49.06 4.99 1.58 5.03 5.09c.05 3.44-1.79 7.15-4.61 9.41m26.34-60.5l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9c-.65.11-1.32.19-1.98.19c-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63c-1.27-2.67-4.09-3.39-7.38-1.47"
1331
- }, null, 3, null),
1332
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1333
- fill: "#4fa847",
1334
- d: "m99.12 90.73l-9.4 5.62c-.25.15-.43.31-.43.61v2.46c0 .3.2.43.45.28l9.54-5.8c.25-.15.29-.42.29-.72v-2.17c0-.3-.2-.42-.45-.28"
1335
- }, null, 3, null)
1336
- ], 0, "Zd_0");
1337
- }, "Bash_component_ZQtXAfkWqew"));
1338
- const _hf0$H = (p0) => p0.size ?? 24;
1339
- const Terraform = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1340
- const props = core$1._restProps(_rawProps, [
1341
- "size"
1342
- ]);
1343
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1344
- xmlns: "http://www.w3.org/2000/svg",
1345
- width: core$1._fnSignal(_hf0$H, [
1346
- _rawProps
1347
- ]),
1348
- height: core$1._fnSignal(_hf0$H, [
1349
- _rawProps
1350
- ]),
1351
- viewBox: "0 0 128 128",
1352
- ...core$1._getVarProps(props)
1353
- }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted("g", null, {
1354
- "fill-rule": "evenodd"
1355
- }, [
1356
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1357
- fill: "#5c4ee5",
1358
- d: "M77.941 44.5v36.836L46.324 62.918V26.082zm0 0"
1359
- }, null, 3, null),
1360
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1361
- fill: "#4040b2",
1362
- d: "m81.41 81.336l31.633-18.418V26.082L81.41 44.5zm0 0"
1363
- }, null, 3, null),
1364
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1365
- fill: "#5c4ee5",
1366
- d: "M11.242 42.36L42.86 60.776V23.941L11.242 5.523zm66.699 43.015L46.324 66.957v36.82l31.617 18.418zm0 0"
1367
- }, null, 3, null)
1368
- ], 3, null), 0, "ph_0");
1369
- }, "Terraform_component_Rcw24hjU5y8"));
1370
- const _hf0$G = (p0) => p0.size ?? 24;
1371
- const Html = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1372
- const props = core$1._restProps(_rawProps, [
1373
- "size"
1374
- ]);
1375
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1376
- xmlns: "http://www.w3.org/2000/svg",
1377
- width: core$1._fnSignal(_hf0$G, [
1378
- _rawProps
1379
- ]),
1380
- height: core$1._fnSignal(_hf0$G, [
1381
- _rawProps
1382
- ]),
1383
- viewBox: "0 0 128 128",
1384
- ...core$1._getVarProps(props)
1385
- }, core$1._getConstProps(props), [
1386
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1387
- fill: "#e44d26",
1388
- d: "M19.037 113.876L9.032 1.661h109.936l-10.016 112.198l-45.019 12.48z"
1389
- }, null, 3, null),
1390
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1391
- fill: "#f16529",
1392
- d: "m64 116.8l36.378-10.086l8.559-95.878H64z"
1393
- }, null, 3, null),
1394
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1395
- fill: "#ebebeb",
1396
- d: "M64 52.455H45.788L44.53 38.361H64V24.599H29.489l.33 3.692l3.382 37.927H64zm0 35.743l-.061.017l-15.327-4.14l-.979-10.975H33.816l1.928 21.609l28.193 7.826l.063-.017z"
1397
- }, null, 3, null),
1398
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1399
- fill: "#fff",
1400
- d: "M63.952 52.455v13.763h16.947l-1.597 17.849l-15.35 4.143v14.319l28.215-7.82l.207-2.325l3.234-36.233l.335-3.696h-3.708zm0-27.856v13.762h33.244l.276-3.092l.628-6.978l.329-3.692z"
1401
- }, null, 3, null)
1402
- ], 0, "69_0");
1403
- }, "Html_component_oech6CSvP0E"));
1404
- const _hf0$F = (p0) => p0.size ?? 24;
1405
- const Css = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1406
- const props = core$1._restProps(_rawProps, [
1407
- "size"
1408
- ]);
1409
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1410
- xmlns: "http://www.w3.org/2000/svg",
1411
- viewBox: "0 0 24 24",
1412
- width: core$1._fnSignal(_hf0$F, [
1413
- _rawProps
1414
- ]),
1415
- height: core$1._fnSignal(_hf0$F, [
1416
- _rawProps
1417
- ]),
1418
- ...core$1._getVarProps(props)
1419
- }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted("path", null, {
1420
- fill: "#3f9de9",
1421
- d: "m5 3l-.65 3.34h13.59L17.5 8.5H3.92l-.66 3.33h13.59l-.76 3.81l-5.48 1.81l-4.75-1.81l.33-1.64H2.85l-.79 4l7.85 3l9.05-3l1.2-6.03l.24-1.21L21.94 3z"
1422
- }, null, 3, null), 0, "0U_0");
1423
- }, "Css_component_Cd0p31J5fL4"));
1424
- const _hf0$E = (p0) => p0.size ?? 24;
1425
- const Npm = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1426
- const props = core$1._restProps(_rawProps, [
1427
- "size"
1428
- ]);
1429
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1430
- xmlns: "http://www.w3.org/2000/svg",
1431
- width: core$1._fnSignal(_hf0$E, [
1432
- _rawProps
1433
- ]),
1434
- height: core$1._fnSignal(_hf0$E, [
1435
- _rawProps
1436
- ]),
1437
- viewBox: "0 0 128 128",
1438
- ...core$1._getVarProps(props)
1439
- }, core$1._getConstProps(props), [
1440
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1441
- fill: "#cb3837",
1442
- d: "M0 7.062C0 3.225 3.225 0 7.062 0h113.88c3.838 0 7.063 3.225 7.063 7.062v113.88c0 3.838-3.225 7.063-7.063 7.063H7.062c-3.837 0-7.062-3.225-7.062-7.063zm23.69 97.518h40.395l.05-58.532h19.494l-.05 58.581h19.543l.05-78.075l-78.075-.1l-.1 78.126z"
1443
- }, null, 3, null),
1444
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1445
- fill: "#fff",
1446
- d: "M25.105 65.52V26.512H40.96c8.72 0 26.274.034 39.008.075l23.153.075v77.866H83.645v-58.54H64.057v58.54H25.105z"
1447
- }, null, 3, null)
1448
- ], 0, "IW_0");
1449
- }, "Npm_component_y4SGkU0mN4s"));
1450
- const _hf0$D = (p0) => p0.size ?? 24;
1451
- const Java = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1452
- const props = core$1._restProps(_rawProps, [
1453
- "size"
1454
- ]);
1455
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1456
- xmlns: "http://www.w3.org/2000/svg",
1457
- width: core$1._fnSignal(_hf0$D, [
1458
- _rawProps
1459
- ]),
1460
- height: core$1._fnSignal(_hf0$D, [
1461
- _rawProps
1462
- ]),
1463
- viewBox: "0 0 128 128",
1464
- ...core$1._getVarProps(props)
1465
- }, core$1._getConstProps(props), [
1466
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1467
- fill: "#0074bd",
1468
- d: "M47.617 98.12s-4.767 2.774 3.397 3.71c9.892 1.13 14.947.968 25.845-1.092c0 0 2.871 1.795 6.873 3.351c-24.439 10.47-55.308-.607-36.115-5.969m-2.988-13.665s-5.348 3.959 2.823 4.805c10.567 1.091 18.91 1.18 33.354-1.6c0 0 1.993 2.025 5.132 3.131c-29.542 8.64-62.446.68-41.309-6.336"
1469
- }, null, 3, null),
1470
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1471
- fill: "#ea2d2e",
1472
- d: "M69.802 61.271c6.025 6.935-1.58 13.17-1.58 13.17s15.289-7.891 8.269-17.777c-6.559-9.215-11.587-13.792 15.635-29.58c0 .001-42.731 10.67-22.324 34.187"
1473
- }, null, 3, null),
1474
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1475
- fill: "#0074bd",
1476
- d: "M102.123 108.229s3.529 2.91-3.888 5.159c-14.102 4.272-58.706 5.56-71.094.171c-4.451-1.938 3.899-4.625 6.526-5.192c2.739-.593 4.303-.485 4.303-.485c-4.953-3.487-32.013 6.85-13.743 9.815c49.821 8.076 90.817-3.637 77.896-9.468M49.912 70.294s-22.686 5.389-8.033 7.348c6.188.828 18.518.638 30.011-.326c9.39-.789 18.813-2.474 18.813-2.474s-3.308 1.419-5.704 3.053c-23.042 6.061-67.544 3.238-54.731-2.958c10.832-5.239 19.644-4.643 19.644-4.643m40.697 22.747c23.421-12.167 12.591-23.86 5.032-22.285c-1.848.385-2.677.72-2.677.72s.688-1.079 2-1.543c14.953-5.255 26.451 15.503-4.823 23.725c0-.002.359-.327.468-.617"
1477
- }, null, 3, null),
1478
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1479
- fill: "#ea2d2e",
1480
- d: "M76.491 1.587S89.459 14.563 64.188 34.51c-20.266 16.006-4.621 25.13-.007 35.559c-11.831-10.673-20.509-20.07-14.688-28.815C58.041 28.42 81.722 22.195 76.491 1.587"
1481
- }, null, 3, null),
1482
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1483
- fill: "#0074bd",
1484
- d: "M52.214 126.021c22.476 1.437 57-.8 57.817-11.436c0 0-1.571 4.032-18.577 7.231c-19.186 3.612-42.854 3.191-56.887.874c0 .001 2.875 2.381 17.647 3.331"
1485
- }, null, 3, null)
1486
- ], 0, "ZF_0");
1487
- }, "Java_component_vsaqvkillVU"));
1488
- const _hf0$C = (p0) => p0.size ?? 24;
1489
- const Kotlin = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1490
- const props = core$1._restProps(_rawProps, [
1491
- "size"
1492
- ]);
1493
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1494
- xmlns: "http://www.w3.org/2000/svg",
1495
- width: core$1._fnSignal(_hf0$C, [
1496
- _rawProps
1497
- ]),
1498
- height: core$1._fnSignal(_hf0$C, [
1499
- _rawProps
1500
- ]),
1501
- viewBox: "0 0 128 128",
1502
- ...core$1._getVarProps(props)
1503
- }, core$1._getConstProps(props), [
1504
- /* @__PURE__ */ core$1._jsxSorted("defs", null, null, /* @__PURE__ */ core$1._jsxSorted("linearGradient", null, {
1505
- id: "deviconKotlin0",
1506
- x1: "500.003",
1507
- x2: "-.097",
1508
- y1: "579.106",
1509
- y2: "1079.206",
1510
- gradientTransform: "translate(15.534 -96.774)scale(.1939)",
1511
- gradientUnits: "userSpaceOnUse"
1512
- }, [
1513
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1514
- offset: ".003",
1515
- "stop-color": "#e44857"
1516
- }, null, 3, null),
1517
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1518
- offset: ".469",
1519
- "stop-color": "#c711e1"
1520
- }, null, 3, null),
1521
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1522
- offset: "1",
1523
- "stop-color": "#7f52ff"
1524
- }, null, 3, null)
1525
- ], 3, null), 3, null),
1526
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1527
- fill: "url(#deviconKotlin0)",
1528
- d: "M112.484 112.484H15.516V15.516h96.968L64 64Zm0 0"
1529
- }, null, 3, null)
1530
- ], 0, "Tq_0");
1531
- }, "Kotlin_component_1pW6m4cmRZQ"));
1532
- const _hf0$B = (p0) => p0.size ?? 24;
1533
- const Go = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1534
- const props = core$1._restProps(_rawProps, [
1535
- "size"
1536
- ]);
1537
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1538
- xmlns: "http://www.w3.org/2000/svg",
1539
- width: core$1._fnSignal(_hf0$B, [
1540
- _rawProps
1541
- ]),
1542
- height: core$1._fnSignal(_hf0$B, [
1543
- _rawProps
1544
- ]),
1545
- viewBox: "0 0 128 128",
1546
- ...core$1._getVarProps(props)
1547
- }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted("g", null, {
1548
- fill: "#00acd7",
1549
- "fill-rule": "evenodd"
1550
- }, [
1551
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1552
- d: "M11.156 54.829c-.243 0-.303-.122-.182-.303l1.273-1.637c.12-.182.424-.303.666-.303H34.55c.243 0 .303.182.182.364l-1.03 1.576c-.121.181-.424.363-.606.363zm-9.152 5.575c-.242 0-.303-.12-.182-.303l1.273-1.636c.121-.182.424-.303.667-.303h27.636c.242 0 .364.182.303.364l-.485 1.454c-.06.243-.303.364-.545.364zM16.67 65.98c-.242 0-.302-.182-.181-.364l.848-1.515c.122-.182.364-.363.607-.363h12.12c.243 0 .364.181.364.424l-.12 1.454c0 .243-.243.425-.425.425zm62.91-12.242c-3.819.97-6.425 1.697-10.182 2.666c-.91.243-.97.303-1.758-.606c-.909-1.03-1.576-1.697-2.848-2.303c-3.819-1.878-7.516-1.333-10.97.91c-4.121 2.666-6.242 6.605-6.182 11.514c.06 4.849 3.394 8.849 8.182 9.516c4.121.545 7.576-.91 10.303-4c.545-.667 1.03-1.394 1.636-2.243H56.064c-1.272 0-1.575-.788-1.151-1.818c.788-1.879 2.242-5.03 3.09-6.606c.183-.364.607-.97 1.516-.97h22.06c-.12 1.637-.12 3.273-.363 4.91c-.667 4.363-2.303 8.363-4.97 11.878c-4.364 5.758-10.06 9.333-17.273 10.303c-5.939.788-11.454-.364-16.302-4c-4.485-3.394-7.03-7.879-7.697-13.454c-.788-6.606 1.151-12.546 5.151-17.758c4.303-5.636 10-9.212 16.97-10.485c5.697-1.03 11.151-.363 16.06 2.97c3.212 2.121 5.515 5.03 7.03 8.545c.364.546.122.849-.606 1.03z"
1553
- }, null, 3, null),
1554
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1555
- "fill-rule": "nonzero",
1556
- d: "M99.64 87.253c-5.515-.122-10.546-1.697-14.788-5.334c-3.576-3.09-5.818-7.03-6.545-11.697c-1.091-6.848.787-12.909 4.909-18.302c4.424-5.819 9.757-8.849 16.97-10.122c6.181-1.09 12-.484 17.272 3.091c4.788 3.273 7.757 7.697 8.545 13.515c1.03 8.182-1.333 14.849-6.97 20.546c-4 4.06-8.909 6.606-14.545 7.757c-1.636.303-3.273.364-4.848.546m14.424-24.485c-.06-.788-.06-1.394-.182-2c-1.09-6-6.606-9.394-12.363-8.06c-5.637 1.272-9.273 4.848-10.606 10.545c-1.091 4.727 1.212 9.515 5.575 11.454c3.334 1.455 6.667 1.273 9.879-.363c4.788-2.485 7.394-6.364 7.697-11.576"
1557
- }, null, 3, null)
1558
- ], 3, null), 0, "go_0");
1559
- }, "Go_component_0UX0vi2zT7c"));
1560
- const _hf0$A = (p0) => p0.size ?? 24;
1561
- const Python = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1562
- const props = core$1._restProps(_rawProps, [
1563
- "size"
1564
- ]);
1565
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1566
- xmlns: "http://www.w3.org/2000/svg",
1567
- width: core$1._fnSignal(_hf0$A, [
1568
- _rawProps
1569
- ]),
1570
- height: core$1._fnSignal(_hf0$A, [
1571
- _rawProps
1572
- ]),
1573
- viewBox: "0 0 128 128",
1574
- ...core$1._getVarProps(props)
1575
- }, core$1._getConstProps(props), [
1576
- /* @__PURE__ */ core$1._jsxSorted("linearGradient", null, {
1577
- id: "deviconPython0",
1578
- x1: "70.252",
1579
- x2: "170.659",
1580
- y1: "1237.476",
1581
- y2: "1151.089",
1582
- gradientTransform: "matrix(.563 0 0 -.568 -29.215 707.817)",
1583
- gradientUnits: "userSpaceOnUse"
1584
- }, [
1585
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1586
- offset: "0",
1587
- "stop-color": "#5a9fd4"
1588
- }, null, 3, null),
1589
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1590
- offset: "1",
1591
- "stop-color": "#306998"
1592
- }, null, 3, null)
1593
- ], 3, null),
1594
- /* @__PURE__ */ core$1._jsxSorted("linearGradient", null, {
1595
- id: "deviconPython1",
1596
- x1: "209.474",
1597
- x2: "173.62",
1598
- y1: "1098.811",
1599
- y2: "1149.537",
1600
- gradientTransform: "matrix(.563 0 0 -.568 -29.215 707.817)",
1601
- gradientUnits: "userSpaceOnUse"
1602
- }, [
1603
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1604
- offset: "0",
1605
- "stop-color": "#ffd43b"
1606
- }, null, 3, null),
1607
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1608
- offset: "1",
1609
- "stop-color": "#ffe873"
1610
- }, null, 3, null)
1611
- ], 3, null),
1612
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1613
- fill: "url(#deviconPython0)",
1614
- d: "M63.391 1.988c-4.222.02-8.252.379-11.8 1.007c-10.45 1.846-12.346 5.71-12.346 12.837v9.411h24.693v3.137H29.977c-7.176 0-13.46 4.313-15.426 12.521c-2.268 9.405-2.368 15.275 0 25.096c1.755 7.311 5.947 12.519 13.124 12.519h8.491V67.234c0-8.151 7.051-15.34 15.426-15.34h24.665c6.866 0 12.346-5.654 12.346-12.548V15.833c0-6.693-5.646-11.72-12.346-12.837c-4.244-.706-8.645-1.027-12.866-1.008M50.037 9.557c2.55 0 4.634 2.117 4.634 4.721c0 2.593-2.083 4.69-4.634 4.69c-2.56 0-4.633-2.097-4.633-4.69c-.001-2.604 2.073-4.721 4.633-4.721",
1615
- transform: "translate(0 10.26)"
1616
- }, null, 3, null),
1617
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1618
- fill: "url(#deviconPython1)",
1619
- d: "M91.682 28.38v10.966c0 8.5-7.208 15.655-15.426 15.655H51.591c-6.756 0-12.346 5.783-12.346 12.549v23.515c0 6.691 5.818 10.628 12.346 12.547c7.816 2.297 15.312 2.713 24.665 0c6.216-1.801 12.346-5.423 12.346-12.547v-9.412H63.938v-3.138h37.012c7.176 0 9.852-5.005 12.348-12.519c2.578-7.735 2.467-15.174 0-25.096c-1.774-7.145-5.161-12.521-12.348-12.521h-9.268zM77.809 87.927c2.561 0 4.634 2.097 4.634 4.692c0 2.602-2.074 4.719-4.634 4.719c-2.55 0-4.633-2.117-4.633-4.719c0-2.595 2.083-4.692 4.633-4.692",
1620
- transform: "translate(0 10.26)"
1621
- }, null, 3, null),
1622
- /* @__PURE__ */ core$1._jsxSorted("radialGradient", null, {
1623
- id: "deviconPython2",
1624
- cx: "1825.678",
1625
- cy: "444.45",
1626
- r: "26.743",
1627
- gradientTransform: "matrix(0 -.24 -1.055 0 532.979 557.576)",
1628
- gradientUnits: "userSpaceOnUse"
1629
- }, [
1630
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1631
- offset: "0",
1632
- "stop-color": "#b8b8b8",
1633
- "stop-opacity": "0.498"
1634
- }, null, 3, null),
1635
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1636
- offset: "1",
1637
- "stop-color": "#7f7f7f",
1638
- "stop-opacity": "0"
1639
- }, null, 3, null)
1640
- ], 3, null),
1641
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1642
- fill: "url(#deviconPython2)",
1643
- d: "M97.309 119.597c0 3.543-14.816 6.416-33.091 6.416c-18.276 0-33.092-2.873-33.092-6.416s14.815-6.417 33.092-6.417c18.275 0 33.091 2.872 33.091 6.417",
1644
- opacity: "0.444"
1645
- }, null, 3, null)
1646
- ], 0, "m7_0");
1647
- }, "Python_component_QseUf5f00nc"));
1648
- const _hf0$z = (p0) => p0.size ?? 24;
1649
- const Sql = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1650
- const props = core$1._restProps(_rawProps, [
1651
- "size"
1652
- ]);
1653
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1654
- xmlns: "http://www.w3.org/2000/svg",
1655
- width: core$1._fnSignal(_hf0$z, [
1656
- _rawProps
1657
- ]),
1658
- height: core$1._fnSignal(_hf0$z, [
1659
- _rawProps
1660
- ]),
1661
- viewBox: "0 0 128 128",
1662
- ...core$1._getVarProps(props)
1663
- }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted("path", null, {
1664
- fill: "#00618a",
1665
- d: "M117.688 98.242c-6.973-.191-12.297.461-16.852 2.379c-1.293.547-3.355.559-3.566 2.18c.711.746.82 1.859 1.387 2.777c1.086 1.754 2.922 4.113 4.559 5.352c1.789 1.348 3.633 2.793 5.551 3.961c3.414 2.082 7.223 3.27 10.504 5.352c1.938 1.23 3.859 2.777 5.75 4.164c.934.684 1.563 1.75 2.773 2.18v-.195c-.637-.812-.801-1.93-1.387-2.777l-2.578-2.578c-2.52-3.344-5.719-6.281-9.117-8.719c-2.711-1.949-8.781-4.578-9.91-7.73l-.199-.199c1.922-.219 4.172-.914 5.949-1.391c2.98-.797 5.645-.59 8.719-1.387l4.164-1.187v-.793c-1.555-1.594-2.664-3.707-4.359-5.152c-4.441-3.781-9.285-7.555-14.273-10.703c-2.766-1.746-6.184-2.883-9.117-4.363c-.988-.496-2.719-.758-3.371-1.586c-1.539-1.961-2.379-4.449-3.566-6.738c-2.488-4.793-4.93-10.023-7.137-15.066c-1.504-3.437-2.484-6.828-4.359-9.91c-9-14.797-18.687-23.73-33.695-32.508c-3.195-1.867-7.039-2.605-11.102-3.57l-6.543-.395c-1.332-.555-2.715-2.184-3.965-2.977C16.977 3.52 4.223-3.312.539 5.672C-1.785 11.34 4.016 16.871 6.09 19.746c1.457 2.012 3.32 4.273 4.359 6.539c.688 1.492.805 2.984 1.391 4.559c1.438 3.883 2.695 8.109 4.559 11.695c.941 1.816 1.98 3.727 3.172 5.352c.727.996 1.98 1.438 2.18 2.973c-1.227 1.715-1.297 4.375-1.984 6.543c-3.098 9.77-1.926 21.91 2.578 29.137c1.383 2.223 4.641 6.98 9.117 5.156c3.918-1.598 3.043-6.539 4.164-10.902c.254-.988.098-1.715.594-2.379v.199l3.57 7.133c2.641 4.254 7.324 8.699 11.297 11.699c2.059 1.555 3.68 4.242 6.344 5.152v-.199h-.199c-.516-.805-1.324-1.137-1.98-1.781c-1.551-1.523-3.277-3.414-4.559-5.156c-3.613-4.902-6.805-10.27-9.711-15.855c-1.391-2.668-2.598-5.609-3.77-8.324c-.453-1.047-.445-2.633-1.387-3.172c-1.281 1.988-3.172 3.598-4.164 5.945c-1.582 3.754-1.789 8.336-2.375 13.082c-.348.125-.195.039-.398.199c-2.762-.668-3.73-3.508-4.758-5.949c-2.594-6.164-3.078-16.09-.793-23.191c.59-1.836 3.262-7.617 2.18-9.316c-.516-1.691-2.219-2.672-3.172-3.965c-1.18-1.598-2.355-3.703-3.172-5.551c-2.125-4.805-3.113-10.203-5.352-15.062c-1.07-2.324-2.875-4.676-4.359-6.738c-1.645-2.289-3.484-3.977-4.758-6.742c-.453-.984-1.066-2.559-.398-3.566c.215-.684.516-.969 1.191-1.191c1.148-.887 4.352.297 5.547.793c3.18 1.32 5.832 2.578 8.527 4.363c1.289.855 2.598 2.512 4.16 2.973h1.785c2.789.641 5.914.195 8.523.988c4.609 1.402 8.738 3.582 12.488 5.949c11.422 7.215 20.766 17.48 27.156 29.734c1.027 1.973 1.473 3.852 2.379 5.945c1.824 4.219 4.125 8.559 5.941 12.688c1.816 4.113 3.582 8.27 6.148 11.695c1.348 1.801 6.551 2.766 8.918 3.766c1.66.699 4.379 1.43 5.949 2.379c3 1.809 5.906 3.965 8.723 5.945c1.402.992 5.73 3.168 5.945 4.957zm-88.605-75.52c-1.453-.027-2.48.156-3.566.395v.199h.195c.695 1.422 1.918 2.34 2.777 3.566l1.98 4.164l.199-.195c1.227-.867 1.789-2.25 1.781-4.363c-.492-.52-.562-1.164-.992-1.785c-.562-.824-1.66-1.289-2.375-1.98zm0 0"
1666
- }, null, 3, null), 0, "j8_0");
1667
- }, "Sql_component_4n1zvVUQlz4"));
1668
- const _hf0$y = (p0) => p0.size ?? 24;
1669
- const Json = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1670
- const props = core$1._restProps(_rawProps, [
1671
- "size"
1672
- ]);
1673
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1674
- xmlns: "http://www.w3.org/2000/svg",
1675
- width: core$1._fnSignal(_hf0$y, [
1676
- _rawProps
1677
- ]),
1678
- height: core$1._fnSignal(_hf0$y, [
1679
- _rawProps
1680
- ]),
1681
- viewBox: "0 0 128 128",
1682
- ...core$1._getVarProps(props)
1683
- }, core$1._getConstProps(props), [
1684
- /* @__PURE__ */ core$1._jsxSorted("linearGradient", null, {
1685
- id: "deviconJson0",
1686
- x1: "-670.564",
1687
- x2: "-583.105",
1688
- y1: "-280.831",
1689
- y2: "-368.306",
1690
- gradientTransform: "matrix(.9988 0 0 -.9987 689.011 -259.008)",
1691
- gradientUnits: "userSpaceOnUse"
1692
- }, [
1693
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1694
- offset: "0"
1695
- }, null, 3, null),
1696
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1697
- offset: "1",
1698
- "stop-color": "#fff"
1699
- }, null, 3, null)
1700
- ], 3, null),
1701
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1702
- fill: "url(#deviconJson0)",
1703
- "fill-rule": "evenodd",
1704
- d: "M63.895 94.303c27.433 37.398 54.281-10.438 54.241-39.205c-.046-34.012-34.518-53.021-54.263-53.021C32.182 2.077 2 28.269 2 64.105C2 103.937 36.596 126 63.873 126c-6.172-.889-26.742-5.296-27.019-52.674c-.186-32.044 10.453-44.846 26.974-39.214c.37.137 18.223 7.18 18.223 30.187c0 22.908-18.156 30.004-18.156 30.004",
1705
- "clip-rule": "evenodd"
1706
- }, null, 3, null),
1707
- /* @__PURE__ */ core$1._jsxSorted("linearGradient", null, {
1708
- id: "deviconJson1",
1709
- x1: "-579.148",
1710
- x2: "-666.607",
1711
- y1: "-364.34",
1712
- y2: "-276.865",
1713
- gradientTransform: "matrix(.9988 0 0 -.9987 689.011 -259.008)",
1714
- gradientUnits: "userSpaceOnUse"
1715
- }, [
1716
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1717
- offset: "0"
1718
- }, null, 3, null),
1719
- /* @__PURE__ */ core$1._jsxSorted("stop", null, {
1720
- offset: "1",
1721
- "stop-color": "#fff"
1722
- }, null, 3, null)
1723
- ], 3, null),
1724
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1725
- fill: "url(#deviconJson1)",
1726
- "fill-rule": "evenodd",
1727
- d: "M63.895 94.303c27.433 37.398 54.281-10.438 54.241-39.205c-.046-34.012-34.518-53.021-54.263-53.021C32.182 2.077 2 28.269 2 64.105C2 103.937 36.596 126 63.873 126c-6.172-.889-26.742-5.296-27.019-52.674c-.186-32.044 10.453-44.846 26.974-39.214c.37.137 18.223 7.18 18.223 30.187c0 22.908-18.156 30.004-18.156 30.004",
1728
- "clip-rule": "evenodd"
1729
- }, null, 3, null)
1730
- ], 0, "AB_0");
1731
- }, "Json_component_fcFOewcgaQQ"));
1732
- const _hf0$x = (p0) => p0.size ?? 24;
1733
- const Lua = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1734
- const props = core$1._restProps(_rawProps, [
1735
- "size"
1736
- ]);
1737
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1738
- xmlns: "http://www.w3.org/2000/svg",
1739
- width: core$1._fnSignal(_hf0$x, [
1740
- _rawProps
1741
- ]),
1742
- height: core$1._fnSignal(_hf0$x, [
1743
- _rawProps
1744
- ]),
1745
- viewBox: "0 0 128 128",
1746
- ...core$1._getVarProps(props)
1747
- }, core$1._getConstProps(props), [
1748
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1749
- fill: "#000080",
1750
- d: "M112.956.708c-7.912 0-14.335 6.424-14.335 14.336s6.424 14.335 14.335 14.335s14.335-6.41 14.335-14.335c0-7.912-6.424-14.336-14.335-14.336M64 15.058c-27.02 0-48.956 21.935-48.956 48.955S36.979 112.97 64 112.97c27.02 0 48.956-21.935 48.956-48.956c0-27.02-21.936-48.956-48.956-48.956"
1751
- }, null, 3, null),
1752
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1753
- fill: "#fff",
1754
- d: "M84.285 29.392c-7.91 0-14.335 6.424-14.335 14.335s6.424 14.336 14.335 14.336s14.336-6.424 14.336-14.336s-6.424-14.335-14.335-14.335zM30.773 56.36v32.119h19.961v-3.611H34.87V56.359Zm57.584 8.37c-3.354 0-6.126.975-7.668 2.692c-1.055 1.19-1.488 2.516-1.582 4.801h3.705c.311-2.826 1.988-4.098 5.423-4.098c3.3 0 5.153 1.231 5.153 3.435v.974c0 1.542-.92 2.205-3.827 2.556c-5.193.663-5.991.839-7.398 1.407c-2.69 1.095-4.057 3.164-4.057 6.166c0 4.193 2.908 6.83 7.574 6.83c2.907 0 5.247-1.014 7.843-3.395c.257 2.34 1.407 3.395 3.787 3.395c.757 0 1.325-.081 2.515-.392v-2.773a3 3 0 0 1-.798.095c-1.284 0-1.988-.663-1.988-1.812V71.032c0-4.098-3.002-6.302-8.682-6.302m-33.742.664V83.19c0 3.84 2.867 6.302 7.357 6.302c3.395 0 5.545-1.19 7.709-4.233v3.219h3.3V65.393h-3.652v13.09c0 4.72-2.475 7.804-6.302 7.804c-2.907 0-4.76-1.772-4.76-4.544v-16.35Zm38.773 11.67v4.139c0 1.244-.365 1.988-1.46 3.002c-1.502 1.366-3.3 2.07-5.464 2.07c-2.867 0-4.544-1.367-4.544-3.706c0-2.42 1.636-3.665 5.558-4.233c3.881-.528 4.68-.703 5.91-1.271z"
1755
- }, null, 3, null),
1756
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1757
- fill: "#808080",
1758
- d: "M61.733 0a64 64 0 0 0-5.57.436l.179 1.458a63 63 0 0 1 5.442-.426zm5.585.046l-.075 1.468a62 62 0 0 1 5.433.52L72.88.578a64 64 0 0 0-5.561-.532Zm-16.665 1.31a63 63 0 0 0-5.409 1.398l.43 1.405a62 62 0 0 1 5.284-1.367Zm27.72.237l-.33 1.431a63 63 0 0 1 5.262 1.455l.452-1.397a64 64 0 0 0-5.384-1.489M39.98 4.623a64 64 0 0 0-5.081 2.323l.668 1.308a62 62 0 0 1 4.964-2.27zm49.012.41l-.573 1.353a63 63 0 0 1 4.929 2.346l.688-1.298a64 64 0 0 0-5.044-2.4ZM30.04 9.706a64 64 0 0 0-4.6 3.17l.886 1.173a63 63 0 0 1 4.494-3.098zm-8.906 6.728a64 64 0 0 0-3.983 3.918l1.075 1.001a63 63 0 0 1 3.891-3.827zm-7.61 8.165a64 64 0 0 0-3.247 4.546l1.231.8a63 63 0 0 1 3.172-4.44zm-6.086 9.357a64 64 0 0 0-2.408 5.042l1.352.574a62 62 0 0 1 2.352-4.925zm113.623.973l-1.31.667a63 63 0 0 1 2.263 4.967l1.362-.55a64 64 0 0 0-2.315-5.083zM3.075 44.23a63 63 0 0 0-1.49 5.385l1.432.328a62 62 0 0 1 1.455-5.26Zm122.166 1.049l-1.404.429a63 63 0 0 1 1.366 5.285l1.437-.306a64 64 0 0 0-1.399-5.409zM.574 55.108a64 64 0 0 0-.528 5.561l1.467.075a63 63 0 0 1 .516-5.434Zm126.988 1.088l-1.458.179a63 63 0 0 1 .428 5.441l1.468-.05a64 64 0 0 0-.438-5.57M1.468 66.205L0 66.255a64 64 0 0 0 .435 5.57l1.458-.179a63 63 0 0 1-.425-5.441m125.018 1.071a63 63 0 0 1-.518 5.434l1.455.203a64 64 0 0 0 .53-5.561zM2.79 77.031l-1.437.304a63 63 0 0 0 1.398 5.41l1.405-.43A62 62 0 0 1 2.79 77.03Zm122.188 1.046a62 62 0 0 1-1.457 5.26l1.397.454a63 63 0 0 0 1.492-5.384zM5.981 87.459l-1.362.551a63 63 0 0 0 2.323 5.082l1.307-.669a62 62 0 0 1-2.268-4.964m115.627.99a62 62 0 0 1-2.354 4.925l1.296.69a64 64 0 0 0 2.41-5.04zM10.944 97.17l-1.245.78a64 64 0 0 0 3.17 4.6l1.172-.885a63 63 0 0 1-3.097-4.495m105.534.904a63 63 0 0 1-3.173 4.44l1.156.906a64 64 0 0 0 3.249-4.545zm-98.96 7.8l-1.092.983a64 64 0 0 0 3.917 3.983l1.002-1.074a63 63 0 0 1-3.827-3.892m92.24.79a63 63 0 0 1-3.893 3.826l.983 1.092a64 64 0 0 0 3.984-3.916zm-84.263 6.648l-.906 1.157a64 64 0 0 0 4.546 3.248l.8-1.232a63 63 0 0 1-4.44-3.173m76.16.654a63 63 0 0 1-4.495 3.096l.78 1.245a64 64 0 0 0 4.6-3.17zm-67.018 5.294l-.691 1.296a64 64 0 0 0 5.04 2.409l.575-1.352a62 62 0 0 1-4.924-2.353m57.775.496a62 62 0 0 1-4.964 2.268l.551 1.362a63 63 0 0 0 5.082-2.322zm-47.74 3.77l-.453 1.396a63 63 0 0 0 5.385 1.49l.329-1.43a62 62 0 0 1-5.26-1.456zm37.632.322a62 62 0 0 1-5.284 1.365l.304 1.437a63 63 0 0 0 5.41-1.398zm-27.003 2.122l-.203 1.455a64 64 0 0 0 5.561.529l.075-1.467a63 63 0 0 1-5.433-.517m16.335.139a63 63 0 0 1-5.442.424l.05 1.468a64 64 0 0 0 5.57-.434z"
1759
- }, null, 3, null)
1760
- ], 0, "et_0");
1761
- }, "Lua_component_Nu4TK4es0Xo"));
1762
- const _hf0$w = (p0) => p0.size ?? 24;
1763
- const Csharp = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1764
- const props = core$1._restProps(_rawProps, [
1765
- "size"
1766
- ]);
1248
+ const LanguageGlyph = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1249
+ const suffix = core$1.useId();
1767
1250
  return /* @__PURE__ */ core$1._jsxSplit("svg", {
1768
1251
  xmlns: "http://www.w3.org/2000/svg",
1769
- viewBox: "0 0 128 128",
1770
- width: core$1._fnSignal(_hf0$w, [
1252
+ viewBox: core$1._fnSignal(_hf0$t, [
1771
1253
  _rawProps
1772
1254
  ]),
1773
- height: core$1._fnSignal(_hf0$w, [
1774
- _rawProps
1775
- ]),
1776
- ...core$1._getVarProps(props)
1777
- }, core$1._getConstProps(props), [
1778
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1779
- fill: "#9b4f96",
1780
- d: "M115.4 30.7L67.1 2.9c-.8-.5-1.9-.7-3.1-.7s-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.4 1 3.5l106.8-62c-.6-1.2-1.5-2.1-2.4-2.7"
1781
- }, null, 3, null),
1782
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1783
- fill: "#68217a",
1784
- d: "M10.7 95.3c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7s2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c0-.9-.1-1.9-.6-2.8z"
1785
- }, null, 3, null),
1786
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1787
- fill: "#fff",
1788
- d: "M85.3 76.1C81.1 83.5 73.1 88.5 64 88.5c-13.5 0-24.5-11-24.5-24.5s11-24.5 24.5-24.5c9.1 0 17.1 5 21.3 12.5l13-7.5c-6.8-11.9-19.6-20-34.3-20c-21.8 0-39.5 17.7-39.5 39.5s17.7 39.5 39.5 39.5c14.6 0 27.4-8 34.2-19.8zM97 66.2l.9-4.3h-4.2v-4.7h5.1L100 51h4.9l-1.2 6.1h3.8l1.2-6.1h4.8l-1.2 6.1h2.4v4.7h-3.3l-.9 4.3h4.2v4.7h-5.1l-1.2 6h-4.9l1.2-6h-3.8l-1.2 6h-4.8l1.2-6h-2.4v-4.7H97zm4.8 0h3.8l.9-4.3h-3.8z"
1789
- }, null, 3, null)
1790
- ], 0, "0a_0");
1791
- }, "Csharp_component_yFicJlZ0ehE"));
1792
- const _hf0$v = (p0) => p0.size ?? 24;
1793
- const Cplusplus = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1794
- const props = core$1._restProps(_rawProps, [
1795
- "size"
1796
- ]);
1797
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1798
- xmlns: "http://www.w3.org/2000/svg",
1799
- viewBox: "0 0 128 128",
1800
- width: core$1._fnSignal(_hf0$v, [
1801
- _rawProps
1802
- ]),
1803
- height: core$1._fnSignal(_hf0$v, [
1804
- _rawProps
1805
- ]),
1806
- ...core$1._getVarProps(props)
1807
- }, core$1._getConstProps(props), [
1808
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1809
- fill: "#00599c",
1810
- d: "M118.766 95.82c.89-1.543 1.441-3.28 1.441-4.843V36.78c0-1.558-.55-3.297-1.441-4.84l-55.32 31.94Zm0 0"
1811
- }, null, 3, null),
1812
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1813
- fill: "#004482",
1814
- d: "m68.36 126.586l46.933-27.094c1.352-.781 2.582-2.129 3.473-3.672l-55.32-31.94L8.12 95.82c.89 1.543 2.121 2.89 3.473 3.672l46.933 27.094c2.703 1.562 7.13 1.562 9.832 0Zm0 0"
1815
- }, null, 3, null),
1816
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1817
- fill: "#659ad2",
1818
- d: "M118.766 31.941c-.891-1.546-2.121-2.894-3.473-3.671L68.359 1.172c-2.703-1.563-7.129-1.563-9.832 0L11.594 28.27C8.89 29.828 6.68 33.66 6.68 36.78v54.196c0 1.562.55 3.3 1.441 4.843L63.445 63.88Zm0 0"
1819
- }, null, 3, null),
1820
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1821
- fill: "#fff",
1822
- d: "M63.445 26.035c-20.867 0-37.843 16.977-37.843 37.844s16.976 37.844 37.843 37.844c13.465 0 26.024-7.247 32.77-18.91L79.84 73.335c-3.38 5.84-9.66 9.465-16.395 9.465c-10.433 0-18.922-8.488-18.922-18.922s8.49-18.922 18.922-18.922c6.73 0 13.017 3.629 16.39 9.465l16.38-9.477c-6.75-11.664-19.305-18.91-32.77-18.91zM92.88 57.57v4.207h-4.207v4.203h4.207v4.207h4.203V65.98h4.203v-4.203h-4.203V57.57zm15.766 0v4.207h-4.204v4.203h4.204v4.207h4.207V65.98h4.203v-4.203h-4.203V57.57z"
1823
- }, null, 3, null)
1824
- ], 0, "n0_0");
1825
- }, "Cplusplus_component_We60oaxTljI"));
1826
- const _hf0$u = (p0) => p0.size ?? 24;
1827
- const C = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1828
- const props = core$1._restProps(_rawProps, [
1829
- "size"
1830
- ]);
1831
- return /* @__PURE__ */ core$1._jsxSplit("svg", {
1832
- xmlns: "http://www.w3.org/2000/svg",
1833
- viewBox: "0 0 128 128",
1834
- width: core$1._fnSignal(_hf0$u, [
1255
+ width: core$1._fnSignal(_hf1$g, [
1835
1256
  _rawProps
1836
1257
  ]),
1837
- height: core$1._fnSignal(_hf0$u, [
1258
+ height: core$1._fnSignal(_hf1$g, [
1838
1259
  _rawProps
1839
1260
  ]),
1840
- ...core$1._getVarProps(props)
1841
- }, core$1._getConstProps(props), [
1842
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1843
- fill: "#659ad3",
1844
- d: "M115.4 30.7L67.1 2.9c-.8-.5-1.9-.7-3.1-.7s-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.4 1 3.5l106.8-62c-.6-1.2-1.5-2.1-2.4-2.7"
1845
- }, null, 3, null),
1846
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1847
- fill: "#03599c",
1848
- d: "M10.7 95.3c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7s2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c0-.9-.1-1.9-.6-2.8z"
1849
- }, null, 3, null),
1850
- /* @__PURE__ */ core$1._jsxSorted("path", null, {
1851
- fill: "#fff",
1852
- d: "M85.3 76.1C81.1 83.5 73.1 88.5 64 88.5c-13.5 0-24.5-11-24.5-24.5s11-24.5 24.5-24.5c9.1 0 17.1 5 21.3 12.5l13-7.5c-6.8-11.9-19.6-20-34.3-20c-21.8 0-39.5 17.7-39.5 39.5s17.7 39.5 39.5 39.5c14.6 0 27.4-8 34.2-19.8z"
1853
- }, null, 3, null)
1854
- ], 0, "gG_0");
1855
- }, "C_component_8furXfuHI4I"));
1856
- const styles$I = {
1261
+ class: core$1._wrapProp(_rawProps, "class"),
1262
+ style: core$1._wrapProp(_rawProps, "style"),
1263
+ ..._rawProps.icon.attrs
1264
+ }, null, _rawProps.icon.children.map((child, i) => renderNode(child, suffix, i)), 0, "d4_0");
1265
+ }, "LanguageGlyph_component_8wkMyHdmoRo"));
1266
+ const styles$H = {
1857
1267
  "elm-mdi-icon": "_elm-mdi-icon_ihskx_1"
1858
1268
  };
1859
- const _hf0$t = (p0) => ({
1269
+ const _hf0$s = (p0) => ({
1860
1270
  "--elmethis-scoped-color": p0.lightColor ?? p0.color ?? "currentColor",
1861
1271
  "--dark-color": p0.darkColor ?? p0.color ?? "currentColor",
1862
1272
  ...p0.style
1863
1273
  });
1864
- const _hf1$g = (p0) => p0.size ?? "1em";
1865
- const _hf2$b = (p0) => p0.color ?? "currentColor";
1274
+ const _hf1$f = (p0) => p0.size ?? "1em";
1275
+ const _hf2$a = (p0) => p0.color ?? "currentColor";
1866
1276
  const ElmMdiIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1867
1277
  const props = core$1._restProps(_rawProps, [
1868
1278
  "class",
@@ -1875,20 +1285,20 @@ const ElmMdiIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
1875
1285
  ]);
1876
1286
  return /* @__PURE__ */ core$1._jsxSplit("svg", {
1877
1287
  class: [
1878
- styles$I["elm-mdi-icon"],
1288
+ styles$H["elm-mdi-icon"],
1879
1289
  _rawProps.class
1880
1290
  ],
1881
- style: core$1._fnSignal(_hf0$t, [
1291
+ style: core$1._fnSignal(_hf0$s, [
1882
1292
  _rawProps
1883
1293
  ]),
1884
- width: core$1._fnSignal(_hf1$g, [
1294
+ width: core$1._fnSignal(_hf1$f, [
1885
1295
  _rawProps
1886
1296
  ]),
1887
- height: core$1._fnSignal(_hf1$g, [
1297
+ height: core$1._fnSignal(_hf1$f, [
1888
1298
  _rawProps
1889
1299
  ]),
1890
1300
  viewBox: "0 0 24 24",
1891
- fill: core$1._fnSignal(_hf2$b, [
1301
+ fill: core$1._fnSignal(_hf2$a, [
1892
1302
  _rawProps
1893
1303
  ]),
1894
1304
  xmlns: "http://www.w3.org/2000/svg",
@@ -1899,100 +1309,27 @@ const ElmMdiIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
1899
1309
  d: core$1._wrapProp(_rawProps, "d")
1900
1310
  }, null, null, 3, null), 0, "IA_0");
1901
1311
  }, "ElmMdiIcon_component_AUxPCIu3tI0"));
1902
- const _hf0$s = (p0) => p0.size ?? 24;
1903
- const normalizeLanguage = (language) => {
1904
- switch (language) {
1905
- case "rust":
1906
- case "rs":
1907
- return "rust";
1908
- case "javascript":
1909
- case "js":
1910
- return "javascript";
1911
- case "typescript":
1912
- case "ts":
1913
- return "typescript";
1914
- case "bash":
1915
- case "sh":
1916
- case "shell":
1917
- return "shell";
1918
- case "tf":
1919
- case "terraform":
1920
- case "hcl":
1921
- return "terraform";
1922
- case "html":
1923
- case "html5":
1924
- return "html";
1925
- case "css":
1926
- case "css3":
1927
- return "css";
1928
- case "npm":
1929
- return "npm";
1930
- case "java":
1931
- return "java";
1932
- case "kotlin":
1933
- case "kt":
1934
- return "kotlin";
1935
- case "go":
1936
- case "golang":
1937
- return "go";
1938
- case "python":
1939
- case "py":
1940
- return "python";
1941
- case "sql":
1942
- return "sql";
1943
- case "json":
1944
- return "json";
1945
- case "lua":
1946
- return "lua";
1947
- case "cs":
1948
- case "c#":
1949
- case "csharp":
1950
- return "csharp";
1951
- case "cpp":
1952
- case "c++":
1953
- return "cpp";
1954
- case "c":
1955
- case "clang":
1956
- return "c";
1957
- default:
1958
- return "file";
1312
+ const _hf0$r = (p0) => p0.size ?? 24;
1313
+ const ElmLanguageIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1314
+ const normalized = core.normalizeLanguage(_rawProps.language);
1315
+ if (normalized === "file") {
1316
+ return /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
1317
+ size: String(_rawProps.size ?? 24)
1318
+ }, {
1319
+ d: js.mdiCodeTags
1320
+ }, null, 3, "bu_0");
1959
1321
  }
1960
- };
1961
- const renderMap = {
1962
- rust: Rust,
1963
- javascript: Javascript,
1964
- typescript: Typescript,
1965
- shell: Bash,
1966
- terraform: Terraform,
1967
- html: Html,
1968
- css: Css,
1969
- npm: Npm,
1970
- java: Java,
1971
- kotlin: Kotlin,
1972
- go: Go,
1973
- python: Python,
1974
- sql: Sql,
1975
- json: Json,
1976
- lua: Lua,
1977
- csharp: Csharp,
1978
- cpp: Cplusplus,
1979
- c: C,
1980
- file: (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
1981
- size: String(_rawProps.size)
1322
+ return /* @__PURE__ */ core$1._jsxSorted(LanguageGlyph, {
1323
+ icon: core.languageIcons[normalized]
1982
1324
  }, {
1983
- d: js.mdiCodeTags
1984
- }, null, 3, "bu_0")
1985
- };
1986
- const ElmLanguageIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
1987
- return /* @__PURE__ */ core$1._jsxSorted(renderMap[normalizeLanguage(_rawProps.language)], null, {
1988
- size: core$1._fnSignal(_hf0$s, [
1325
+ size: core$1._fnSignal(_hf0$r, [
1989
1326
  _rawProps
1990
1327
  ]),
1991
1328
  class: core$1._wrapProp(_rawProps, "class"),
1992
1329
  style: core$1._wrapProp(_rawProps, "style")
1993
1330
  }, null, 3, "bu_1");
1994
1331
  }, "ElmLanguageIcon_component_nXOhYnvIKLk"));
1995
- const styles$H = {
1332
+ const styles$G = {
1996
1333
  "elm-shiki-highlighter": "_elm-shiki-highlighter_j5tas_1"
1997
1334
  };
1998
1335
  const ElmShikiHighlighter = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
@@ -2032,14 +1369,14 @@ const ElmShikiHighlighter = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
2032
1369
  ]));
2033
1370
  return /* @__PURE__ */ core$1._jsxSplit("pre", {
2034
1371
  class: [
2035
- styles$H["elm-shiki-highlighter"],
1372
+ styles$G["elm-shiki-highlighter"],
2036
1373
  _rawProps.class
2037
1374
  ],
2038
1375
  dangerouslySetInnerHTML: core$1._wrapProp(rawHtml),
2039
1376
  ...core$1._getVarProps(props)
2040
1377
  }, core$1._getConstProps(props), null, 0, "ZN_0");
2041
1378
  }, "ElmShikiHighlighter_component_vKuHJZdaUdo"));
2042
- const styles$G = {
1379
+ const styles$F = {
2043
1380
  "use-clipboard": "_use-clipboard_mb0qt_1",
2044
1381
  "use-clipboard-icon-copied": "_use-clipboard-icon-copied_mb0qt_15"
2045
1382
  };
@@ -2078,7 +1415,7 @@ const useClipboard = (options) => {
2078
1415
  const copied2 = core$1._captures[0], copy2 = core$1._captures[1], options2 = core$1._captures[2];
2079
1416
  return /* @__PURE__ */ core$1._jsxSorted("span", {
2080
1417
  class: [
2081
- styles$G["use-clipboard"],
1418
+ styles$F["use-clipboard"],
2082
1419
  options2.class
2083
1420
  ],
2084
1421
  style: core$1._wrapProp(options2, "style")
@@ -2087,7 +1424,7 @@ const useClipboard = (options) => {
2087
1424
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
2088
1425
  class: [
2089
1426
  {
2090
- [styles$G["use-clipboard-icon-copied"]]: copied2.value
1427
+ [styles$F["use-clipboard-icon-copied"]]: copied2.value
2091
1428
  }
2092
1429
  ],
2093
1430
  d: copied2.value ? js.mdiClipboardCheckOutline : js.mdiClipboardOutline
@@ -2104,8 +1441,8 @@ const useClipboard = (options) => {
2104
1441
  copy
2105
1442
  };
2106
1443
  };
2107
- const _hf0$r = (p0) => p0.language ?? "txt";
2108
- const _hf1$f = (p0) => p0.caption || (p0.language ?? "txt");
1444
+ const _hf0$q = (p0) => p0.language ?? "txt";
1445
+ const _hf1$e = (p0) => p0.caption || (p0.language ?? "txt");
2109
1446
  const ElmCodeBlock = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
2110
1447
  const props = core$1._restProps(_rawProps, [
2111
1448
  "class",
@@ -2118,37 +1455,37 @@ const ElmCodeBlock = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
2118
1455
  });
2119
1456
  return /* @__PURE__ */ core$1._jsxSplit("figure", {
2120
1457
  class: [
2121
- styles$K["elm-code-block"],
1458
+ styles$I["elm-code-block"],
2122
1459
  _rawProps.class
2123
1460
  ],
2124
1461
  ...core$1._getVarProps(props)
2125
1462
  }, core$1._getConstProps(props), [
2126
1463
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
2127
- class: styles$K["language-icon"]
1464
+ class: styles$I["language-icon"]
2128
1465
  }, /* @__PURE__ */ core$1._jsxSorted(ElmLanguageIcon, null, {
2129
- language: core$1._fnSignal(_hf0$r, [
1466
+ language: core$1._fnSignal(_hf0$q, [
2130
1467
  _rawProps
2131
1468
  ])
2132
1469
  }, null, 3, "sK_0"), 1, null),
2133
1470
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
2134
- class: styles$K.caption
1471
+ class: styles$I.caption
2135
1472
  }, /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, [
2136
- core$1._fnSignal(_hf1$f, [
1473
+ core$1._fnSignal(_hf1$e, [
2137
1474
  _rawProps
2138
1475
  ]),
2139
1476
  /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "sK_1")
2140
1477
  ], 1, "sK_2"), 1, null),
2141
1478
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2142
- class: styles$K["copy-icon"]
1479
+ class: styles$I["copy-icon"]
2143
1480
  }, /* @__PURE__ */ core$1._jsxSorted(clipboard.CopyButton, null, null, null, 3, "sK_3"), 1, null),
2144
1481
  /* @__PURE__ */ core$1._jsxSorted("hr", null, {
2145
- class: styles$K.divider
1482
+ class: styles$I.divider
2146
1483
  }, null, 3, null),
2147
1484
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2148
- class: styles$K.code
1485
+ class: styles$I.code
2149
1486
  }, /* @__PURE__ */ core$1._jsxSorted(ElmShikiHighlighter, null, {
2150
1487
  code: core$1._wrapProp(_rawProps, "code"),
2151
- language: core$1._fnSignal(_hf0$r, [
1488
+ language: core$1._fnSignal(_hf0$q, [
2152
1489
  _rawProps
2153
1490
  ])
2154
1491
  }, null, 3, "sK_4"), 1, null)
@@ -2156,7 +1493,7 @@ const ElmCodeBlock = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
2156
1493
  }, "ElmCodeBlock_component_rH8kn9Tvguw"));
2157
1494
  const image$2 = "_image_kwjx3_12";
2158
1495
  const fallback$1 = "_fallback_kwjx3_36";
2159
- const styles$F = {
1496
+ const styles$E = {
2160
1497
  "elm-block-image": "_elm-block-image_kwjx3_1",
2161
1498
  "image-container": "_image-container_kwjx3_12",
2162
1499
  image: image$2,
@@ -2164,7 +1501,7 @@ const styles$F = {
2164
1501
  "caption-box": "_caption-box_kwjx3_46",
2165
1502
  "caption-icon": "_caption-icon_kwjx3_57"
2166
1503
  };
2167
- const styles$E = {
1504
+ const styles$D = {
2168
1505
  "elm-rectangle-wave": "_elm-rectangle-wave_70gad_21"
2169
1506
  };
2170
1507
  const ElmRectangleWave = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
@@ -2174,14 +1511,14 @@ const ElmRectangleWave = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ cor
2174
1511
  return /* @__PURE__ */ core$1._jsxSplit("div", {
2175
1512
  "aria-hidden": "true",
2176
1513
  class: [
2177
- styles$E["elm-rectangle-wave"],
1514
+ styles$D["elm-rectangle-wave"],
2178
1515
  _rawProps.class
2179
1516
  ],
2180
1517
  ...core$1._getVarProps(props)
2181
1518
  }, core$1._getConstProps(props), null, 0, "vI_0");
2182
1519
  }, "ElmRectangleWave_component_4z0HAhT3758"));
2183
1520
  const shown = "_shown_12j1m_18";
2184
- const styles$D = {
1521
+ const styles$C = {
2185
1522
  "elm-modal": "_elm-modal_12j1m_1",
2186
1523
  shown
2187
1524
  };
@@ -2228,10 +1565,10 @@ const ElmModal = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inli
2228
1565
  return /* @__PURE__ */ core$1._jsxSplit("dialog", {
2229
1566
  ref: dialogRef,
2230
1567
  class: [
2231
- styles$D["elm-modal"],
1568
+ styles$C["elm-modal"],
2232
1569
  props.class,
2233
1570
  {
2234
- [styles$D["shown"]]: isShown.value
1571
+ [styles$C["shown"]]: isShown.value
2235
1572
  }
2236
1573
  ],
2237
1574
  "q-e:click": handleClose,
@@ -2289,13 +1626,13 @@ const useModal = (options = {}) => {
2289
1626
  toggle
2290
1627
  };
2291
1628
  };
2292
- const _hf0$q = (p0) => p0.alt ?? p0.caption ?? "Image";
2293
- const _hf1$e = (p0, p1) => p0 ? void 0 : p1.srcset;
2294
- const _hf2$a = (p0, p1) => p0 ? void 0 : p1.sizes;
2295
- const _hf3$9 = (p0) => ({
1629
+ const _hf0$p = (p0) => p0.alt ?? p0.caption ?? "Image";
1630
+ const _hf1$d = (p0, p1) => p0 ? void 0 : p1.srcset;
1631
+ const _hf2$9 = (p0, p1) => p0 ? void 0 : p1.sizes;
1632
+ const _hf3$8 = (p0) => ({
2296
1633
  "--elmethis-scoped-opacity": p0.value ? 1 : 0.01
2297
1634
  });
2298
- const _hf4$5 = (p0) => ({
1635
+ const _hf4$4 = (p0) => ({
2299
1636
  "--elmethis-scoped-opacity": p0.value ? 0.01 : 1
2300
1637
  });
2301
1638
  const ElmBlockImage = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
@@ -2345,7 +1682,7 @@ const ElmBlockImage = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
2345
1682
  isLoading
2346
1683
  ]));
2347
1684
  const ImageComponent = (isModal) => /* @__PURE__ */ core$1._jsxSorted("img", {
2348
- alt: core$1._fnSignal(_hf0$q, [
1685
+ alt: core$1._fnSignal(_hf0$p, [
2349
1686
  props
2350
1687
  ]),
2351
1688
  fetchPriority: isModal ? "low" : "auto",
@@ -2355,12 +1692,12 @@ const ElmBlockImage = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
2355
1692
  // Only the inline image owns imgRef; the modal image must not steal it
2356
1693
  // (ElmModal keeps its slot mounted, so both can coexist in the DOM).
2357
1694
  ref: isModal ? void 0 : imgRef,
2358
- sizes: core$1._fnSignal(_hf2$a, [
1695
+ sizes: core$1._fnSignal(_hf2$9, [
2359
1696
  isModal,
2360
1697
  props
2361
1698
  ]),
2362
1699
  src: core$1._wrapProp(props, "src"),
2363
- srcset: core$1._fnSignal(_hf1$e, [
1700
+ srcset: core$1._fnSignal(_hf1$d, [
2364
1701
  isModal,
2365
1702
  props
2366
1703
  ]),
@@ -2371,36 +1708,36 @@ const ElmBlockImage = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
2371
1708
  },
2372
1709
  width: core$1._wrapProp(props, "width")
2373
1710
  }, {
2374
- class: styles$F.image,
1711
+ class: styles$E.image,
2375
1712
  "q-e:load": handleImageLoad
2376
1713
  }, null, 2, "zM_0");
2377
1714
  return /* @__PURE__ */ core$1._jsxSplit("figure", {
2378
1715
  class: [
2379
- styles$F["elm-block-image"],
1716
+ styles$E["elm-block-image"],
2380
1717
  props.class
2381
1718
  ],
2382
1719
  ...core$1._getVarProps(rest)
2383
1720
  }, core$1._getConstProps(rest), [
2384
1721
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2385
- class: styles$F["image-container"],
2386
- style: core$1._fnSignal(_hf3$9, [
1722
+ class: styles$E["image-container"],
1723
+ style: core$1._fnSignal(_hf3$8, [
2387
1724
  isLoading
2388
1725
  ]),
2389
1726
  "q-e:click": handleOpenModal
2390
1727
  }, [
2391
1728
  ImageComponent(false),
2392
1729
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2393
- class: styles$F.fallback
1730
+ class: styles$E.fallback
2394
1731
  }, /* @__PURE__ */ core$1._jsxSorted(ElmRectangleWave, null, null, null, 3, "zM_1"), 1, null)
2395
1732
  ], 1, null),
2396
1733
  props.caption && /* @__PURE__ */ core$1._jsxSorted("figcaption", null, {
2397
- class: styles$F["caption-box"],
2398
- style: core$1._fnSignal(_hf4$5, [
1734
+ class: styles$E["caption-box"],
1735
+ style: core$1._fnSignal(_hf4$4, [
2399
1736
  isLoading
2400
1737
  ])
2401
1738
  }, [
2402
1739
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
2403
- class: styles$F["caption-icon"]
1740
+ class: styles$E["caption-icon"]
2404
1741
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
2405
1742
  d: js.mdiMessageImageOutline,
2406
1743
  size: "1.25rem"
@@ -2412,7 +1749,7 @@ const ElmBlockImage = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
2412
1749
  /* @__PURE__ */ core$1._jsxSorted(modal2.Modal, null, null, modal2.isOpen.value && ImageComponent(true), 1, "zM_5")
2413
1750
  ], 0, "zM_6");
2414
1751
  }, "ElmBlockImage_component_XGyydMLGB8M"));
2415
- const styles$C = {
1752
+ const styles$B = {
2416
1753
  "elm-file": "_elm-file_1oen6_1",
2417
1754
  "file-size": "_file-size_1oen6_13",
2418
1755
  "download-icon": "_download-icon_1oen6_18"
@@ -2450,7 +1787,7 @@ const ElmFile = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
2450
1787
  ]);
2451
1788
  return /* @__PURE__ */ core$1._jsxSplit("div", {
2452
1789
  class: [
2453
- styles$C["elm-file"],
1790
+ styles$B["elm-file"],
2454
1791
  _rawProps.class
2455
1792
  ],
2456
1793
  ...core$1._getVarProps(props)
@@ -2461,10 +1798,10 @@ const ElmFile = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
2461
1798
  }, null, 3, "r0_0"), 1, null),
2462
1799
  /* @__PURE__ */ core$1._jsxSorted("div", null, null, /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, _rawProps.name ?? getLastPathSegmentWithoutQueryOrHash(_rawProps.src), 1, "r0_1"), 1, null),
2463
1800
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2464
- class: styles$C["file-size"]
1801
+ class: styles$B["file-size"]
2465
1802
  }, /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._wrapProp(_rawProps, "filesize"), 1, "r0_2"), 1, null),
2466
1803
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2467
- class: styles$C["download-icon"],
1804
+ class: styles$B["download-icon"],
2468
1805
  "q-e:click": downloadFile
2469
1806
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
2470
1807
  d: js.mdiDownload,
@@ -2478,7 +1815,7 @@ const content$2 = "_content_67069_56";
2478
1815
  const title = "_title_67069_72";
2479
1816
  const description = "_description_67069_76";
2480
1817
  const link = "_link_67069_81";
2481
- const styles$B = {
1818
+ const styles$A = {
2482
1819
  "elm-bookmark": "_elm-bookmark_67069_1",
2483
1820
  container,
2484
1821
  image: image$1,
@@ -2487,7 +1824,7 @@ const styles$B = {
2487
1824
  description,
2488
1825
  link
2489
1826
  };
2490
- const _hf0$p = (p0, p1, p2) => p2.value || p0.image == null ? p1 : {};
1827
+ const _hf0$o = (p0, p1, p2) => p2.value || p0.image == null ? p1 : {};
2491
1828
  const ElmBookmark = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
2492
1829
  const props = core$1._restProps(_rawProps, [
2493
1830
  "class",
@@ -2510,44 +1847,44 @@ const ElmBookmark = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
2510
1847
  };
2511
1848
  return /* @__PURE__ */ core$1._jsxSplit("div", {
2512
1849
  class: [
2513
- styles$B["elm-bookmark"],
1850
+ styles$A["elm-bookmark"],
2514
1851
  _rawProps.class
2515
1852
  ],
2516
1853
  ...core$1._getVarProps(props)
2517
1854
  }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted("a", {
2518
1855
  href: core$1._wrapProp(_rawProps, "url")
2519
1856
  }, {
2520
- class: styles$B.container,
1857
+ class: styles$A.container,
2521
1858
  target: "_blank",
2522
1859
  rel: "noopener noreferrer"
2523
1860
  }, [
2524
1861
  /* @__PURE__ */ core$1._jsxSorted("img", {
2525
1862
  src: core$1._wrapProp(_rawProps, "image"),
2526
- style: core$1._fnSignal(_hf0$p, [
1863
+ style: core$1._fnSignal(_hf0$o, [
2527
1864
  _rawProps,
2528
1865
  hiddenStyle,
2529
1866
  isError
2530
1867
  ])
2531
1868
  }, {
2532
- class: styles$B.image,
1869
+ class: styles$A.image,
2533
1870
  alt: "OGP Image",
2534
1871
  "q-e:error": handleImageOnError
2535
1872
  }, null, 3, null),
2536
1873
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2537
- class: styles$B.content
1874
+ class: styles$A.content
2538
1875
  }, [
2539
1876
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2540
- class: styles$B.title
1877
+ class: styles$A.title
2541
1878
  }, /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
2542
1879
  bold: true
2543
1880
  }, core$1._wrapProp(_rawProps, "title"), 1, "cr_0"), 1, null),
2544
1881
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2545
- class: styles$B.description
1882
+ class: styles$A.description
2546
1883
  }, /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
2547
1884
  size: "0.75rem"
2548
1885
  }, core$1._wrapProp(_rawProps, "description"), 1, "cr_1"), 1, null),
2549
1886
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2550
- class: styles$B.link
1887
+ class: styles$A.link
2551
1888
  }, [
2552
1889
  _rawProps.favicon ? /* @__PURE__ */ core$1._jsxSorted(ElmInlineIcon, null, {
2553
1890
  src: core$1._wrapProp(_rawProps, "favicon")
@@ -2569,7 +1906,7 @@ const chevron$1 = "_chevron_d59g8_50";
2569
1906
  const cross = "_cross_d59g8_63";
2570
1907
  const border = "_border_d59g8_77";
2571
1908
  const content$1 = "_content_d59g8_85";
2572
- const styles$A = {
1909
+ const styles$z = {
2573
1910
  "elm-toggle": "_elm-toggle_d59g8_1",
2574
1911
  open,
2575
1912
  summary: summary$1,
@@ -2580,8 +1917,8 @@ const styles$A = {
2580
1917
  border,
2581
1918
  content: content$1
2582
1919
  };
2583
- const _hf0$o = (p0) => p0.monochrome ? "var(--elmethis-color-neutral-weak)" : "var(--elmethis-color-primary)";
2584
- const _hf1$d = (p0, p1) => p1.monochrome ? "var(--elmethis-color-neutral-weak)" : p0.value ? "var(--elmethis-color-accent-error)" : "var(--elmethis-color-primary)";
1920
+ const _hf0$n = (p0) => p0.monochrome ? "var(--elmethis-color-neutral-weak)" : "var(--elmethis-color-primary)";
1921
+ const _hf1$c = (p0, p1) => p1.monochrome ? "var(--elmethis-color-neutral-weak)" : p0.value ? "var(--elmethis-color-accent-error)" : "var(--elmethis-color-primary)";
2585
1922
  const ElmToggle = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
2586
1923
  const rest = core$1._restProps(props, [
2587
1924
  "class",
@@ -2597,9 +1934,9 @@ const ElmToggle = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
2597
1934
  });
2598
1935
  return /* @__PURE__ */ core$1._jsxSplit("div", {
2599
1936
  class: [
2600
- styles$A["elm-toggle"],
1937
+ styles$z["elm-toggle"],
2601
1938
  {
2602
- [styles$A.open]: isOpen.value
1939
+ [styles$z.open]: isOpen.value
2603
1940
  },
2604
1941
  props.class
2605
1942
  ],
@@ -2614,22 +1951,22 @@ const ElmToggle = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
2614
1951
  isOpen
2615
1952
  ])
2616
1953
  }, {
2617
- class: styles$A.summary,
1954
+ class: styles$z.summary,
2618
1955
  "preventdefault:click": true
2619
1956
  }, [
2620
1957
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2621
- class: styles$A["summary-left"]
1958
+ class: styles$z["summary-left"]
2622
1959
  }, [
2623
1960
  /* @__PURE__ */ core$1._jsxSorted("span", {
2624
1961
  class: [
2625
- styles$A.chevron,
1962
+ styles$z.chevron,
2626
1963
  {
2627
- [styles$A.open]: isOpen.value
1964
+ [styles$z.open]: isOpen.value
2628
1965
  }
2629
1966
  ]
2630
1967
  }, null, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
2631
1968
  d: js.mdiChevronRight,
2632
- color: core$1._fnSignal(_hf0$o, [
1969
+ color: core$1._fnSignal(_hf0$n, [
2633
1970
  props
2634
1971
  ]),
2635
1972
  size: "1rem"
@@ -2639,32 +1976,32 @@ const ElmToggle = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
2639
1976
  }, null, 3, "VD_2"), 1, null)
2640
1977
  ], 1, null),
2641
1978
  /* @__PURE__ */ core$1._jsxSorted("hr", null, {
2642
- class: styles$A.divider
1979
+ class: styles$z.divider
2643
1980
  }, null, 3, null),
2644
1981
  /* @__PURE__ */ core$1._jsxSorted("span", {
2645
1982
  class: [
2646
- styles$A.cross,
1983
+ styles$z.cross,
2647
1984
  {
2648
- [styles$A.open]: isOpen.value
1985
+ [styles$z.open]: isOpen.value
2649
1986
  }
2650
1987
  ]
2651
1988
  }, null, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
2652
1989
  d: js.mdiPlus,
2653
1990
  size: "1rem",
2654
- color: core$1._fnSignal(_hf1$d, [
1991
+ color: core$1._fnSignal(_hf1$c, [
2655
1992
  isOpen,
2656
1993
  props
2657
1994
  ])
2658
1995
  }, null, 3, "VD_3"), 1, null)
2659
1996
  ], 0, null),
2660
1997
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2661
- class: styles$A.border
1998
+ class: styles$z.border
2662
1999
  }, null, 3, null),
2663
2000
  /* @__PURE__ */ core$1._jsxSorted("div", {
2664
2001
  class: [
2665
- styles$A.content,
2002
+ styles$z.content,
2666
2003
  {
2667
- [styles$A.open]: isOpen.value
2004
+ [styles$z.open]: isOpen.value
2668
2005
  }
2669
2006
  ]
2670
2007
  }, null, /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "VD_4"), 1, null)
@@ -2672,7 +2009,7 @@ const ElmToggle = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
2672
2009
  }, "ElmToggle_component_Gna1lAQa8FY"));
2673
2010
  const body$4 = "_body_lqbme_20";
2674
2011
  const icon$3 = "_icon_lqbme_25";
2675
- const styles$z = {
2012
+ const styles$y = {
2676
2013
  "elm-block-quote": "_elm-block-quote_lqbme_1",
2677
2014
  body: body$4,
2678
2015
  icon: icon$3,
@@ -2685,7 +2022,7 @@ const ElmBlockQuote = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
2685
2022
  ]);
2686
2023
  return /* @__PURE__ */ core$1._jsxSplit("blockquote", {
2687
2024
  class: [
2688
- styles$z["elm-block-quote"],
2025
+ styles$y["elm-block-quote"],
2689
2026
  textStyles.text,
2690
2027
  _rawProps.class
2691
2028
  ],
@@ -2693,19 +2030,19 @@ const ElmBlockQuote = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
2693
2030
  }, core$1._getConstProps(props), [
2694
2031
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2695
2032
  class: [
2696
- styles$z.icon,
2697
- styles$z["icon-top-left"]
2033
+ styles$y.icon,
2034
+ styles$y["icon-top-left"]
2698
2035
  ]
2699
2036
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
2700
2037
  d: js.mdiFormatQuoteOpen
2701
2038
  }, null, 3, "Cw_0"), 1, null),
2702
2039
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2703
- class: styles$z.body
2040
+ class: styles$y.body
2704
2041
  }, /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "Cw_1"), 1, null),
2705
2042
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2706
2043
  class: [
2707
- styles$z.icon,
2708
- styles$z["icon-bottom-right"]
2044
+ styles$y.icon,
2045
+ styles$y["icon-bottom-right"]
2709
2046
  ]
2710
2047
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
2711
2048
  d: js.mdiFormatQuoteClose
@@ -2720,7 +2057,7 @@ const tip = "_tip_1xydl_49";
2720
2057
  const important = "_important_1xydl_53";
2721
2058
  const warning = "_warning_1xydl_57";
2722
2059
  const caution = "_caution_1xydl_61";
2723
- const styles$y = {
2060
+ const styles$x = {
2724
2061
  "elm-callout": "_elm-callout_1xydl_1",
2725
2062
  header: header$3,
2726
2063
  content,
@@ -2731,7 +2068,7 @@ const styles$y = {
2731
2068
  warning,
2732
2069
  caution
2733
2070
  };
2734
- const _hf0$n = (p0) => p0.type ?? "note";
2071
+ const _hf0$m = (p0) => p0.type ?? "note";
2735
2072
  const ICON_MAP = Object.freeze({
2736
2073
  note: js.mdiInformation,
2737
2074
  tip: js.mdiLightbulbOn,
@@ -2747,32 +2084,32 @@ const ElmCallout = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
2747
2084
  ]);
2748
2085
  return /* @__PURE__ */ core$1._jsxSplit("aside", {
2749
2086
  class: [
2750
- styles$y["elm-callout"],
2751
- styles$y[_rawProps.type ?? "note"],
2087
+ styles$x["elm-callout"],
2088
+ styles$x[_rawProps.type ?? "note"],
2752
2089
  _rawProps.class
2753
2090
  ],
2754
2091
  style: core$1._wrapProp(_rawProps, "style"),
2755
2092
  ...core$1._getVarProps(props)
2756
2093
  }, core$1._getConstProps(props), [
2757
2094
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2758
- class: styles$y.header
2095
+ class: styles$x.header
2759
2096
  }, [
2760
2097
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
2761
2098
  d: ICON_MAP[_rawProps.type ?? "note"]
2762
2099
  }, {
2763
- class: styles$y.icon,
2100
+ class: styles$x.icon,
2764
2101
  size: "1.25rem"
2765
2102
  }, null, 3, "qp_0"),
2766
- /* @__PURE__ */ core$1._jsxSorted("span", null, null, core$1._fnSignal(_hf0$n, [
2103
+ /* @__PURE__ */ core$1._jsxSorted("span", null, null, core$1._fnSignal(_hf0$m, [
2767
2104
  _rawProps
2768
2105
  ]), 1, null)
2769
2106
  ], 1, null),
2770
2107
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2771
- class: styles$y.content
2108
+ class: styles$x.content
2772
2109
  }, /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "qp_1"), 1, null)
2773
2110
  ], 0, "qp_2");
2774
2111
  }, "ElmCallout_component_vJ404ghu0V8"));
2775
- const styles$x = {
2112
+ const styles$w = {
2776
2113
  "elm-divider": "_elm-divider_8xkqn_1"
2777
2114
  };
2778
2115
  const ElmDivider = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
@@ -2781,7 +2118,7 @@ const ElmDivider = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
2781
2118
  ]);
2782
2119
  return /* @__PURE__ */ core$1._jsxSplit("hr", {
2783
2120
  class: [
2784
- styles$x["elm-divider"],
2121
+ styles$w["elm-divider"],
2785
2122
  _rawProps.class
2786
2123
  ],
2787
2124
  ...core$1._getVarProps(props)
@@ -2789,7 +2126,7 @@ const ElmDivider = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
2789
2126
  }, "ElmDivider_component_SDbNuDT10PU"));
2790
2127
  const bulleted = "_bulleted_n8430_9";
2791
2128
  const numbered = "_numbered_n8430_58";
2792
- const styles$w = {
2129
+ const styles$v = {
2793
2130
  "elm-list": "_elm-list_n8430_1",
2794
2131
  bulleted,
2795
2132
  numbered
@@ -2804,8 +2141,8 @@ const ElmList = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
2804
2141
  return /* @__PURE__ */ core$1._jsxSplit("ol", {
2805
2142
  class: [
2806
2143
  textStyles.text,
2807
- styles$w["elm-list"],
2808
- styles$w.numbered,
2144
+ styles$v["elm-list"],
2145
+ styles$v.numbered,
2809
2146
  _rawProps.class
2810
2147
  ],
2811
2148
  style: core$1._wrapProp(_rawProps, "style"),
@@ -2815,8 +2152,8 @@ const ElmList = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
2815
2152
  return /* @__PURE__ */ core$1._jsxSplit("ul", {
2816
2153
  class: [
2817
2154
  textStyles.text,
2818
- styles$w["elm-list"],
2819
- styles$w.bulleted,
2155
+ styles$v["elm-list"],
2156
+ styles$v.bulleted,
2820
2157
  _rawProps.class
2821
2158
  ],
2822
2159
  style: core$1._wrapProp(_rawProps, "style"),
@@ -2826,7 +2163,7 @@ const ElmList = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlin
2826
2163
  }, "ElmList_component_aFEzPziW6Gs"));
2827
2164
  const caption = "_caption_14qfo_8";
2828
2165
  const spacing = "_spacing_14qfo_25";
2829
- const styles$v = {
2166
+ const styles$u = {
2830
2167
  "elm-table": "_elm-table_14qfo_1",
2831
2168
  caption,
2832
2169
  "caption-inner": "_caption-inner_14qfo_18",
@@ -2851,29 +2188,29 @@ const ElmTable = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inli
2851
2188
  core$1.useContextProvider(HasRowHeaderContext, hasRowHeader);
2852
2189
  return /* @__PURE__ */ core$1._jsxSplit("table", {
2853
2190
  class: [
2854
- styles$v["elm-table"],
2191
+ styles$u["elm-table"],
2855
2192
  textStyles.text,
2856
2193
  props.class
2857
2194
  ],
2858
2195
  ...core$1._getVarProps(rest)
2859
2196
  }, core$1._getConstProps(rest), [
2860
2197
  props.caption && /* @__PURE__ */ core$1._jsxSorted("caption", null, null, /* @__PURE__ */ core$1._jsxSorted("span", null, {
2861
- class: styles$v.caption
2198
+ class: styles$u.caption
2862
2199
  }, [
2863
2200
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
2864
- class: styles$v.spacing
2201
+ class: styles$u.spacing
2865
2202
  }, null, 3, null),
2866
2203
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
2867
- class: styles$v["caption-inner"]
2204
+ class: styles$u["caption-inner"]
2868
2205
  }, /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._wrapProp(props, "caption"), 1, "Yw_0"), 1, null),
2869
2206
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
2870
- class: styles$v.spacing
2207
+ class: styles$u.spacing
2871
2208
  }, null, 3, null)
2872
2209
  ], 1, null), 1, "Yw_1"),
2873
2210
  /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "Yw_2")
2874
2211
  ], 0, "Yw_3");
2875
2212
  }, "ElmTable_component_UT2AChu46oY"));
2876
- const styles$u = {
2213
+ const styles$t = {
2877
2214
  "elm-table-header": "_elm-table-header_jhft7_1"
2878
2215
  };
2879
2216
  const ElmTableHeader = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
@@ -2883,7 +2220,7 @@ const ElmTableHeader = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$
2883
2220
  core$1.useContextProvider(TableSectionContext, "head");
2884
2221
  return /* @__PURE__ */ core$1._jsxSplit("thead", {
2885
2222
  class: [
2886
- styles$u["elm-table-header"],
2223
+ styles$t["elm-table-header"],
2887
2224
  _rawProps.class
2888
2225
  ],
2889
2226
  ...core$1._getVarProps(props)
@@ -2899,7 +2236,7 @@ const ElmTableBody = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
2899
2236
  ...core$1._getVarProps(props)
2900
2237
  }, core$1._getConstProps(props), /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "d6_0"), 0, "d6_1");
2901
2238
  }, "ElmTableBody_component_cc34lI5xf6Y"));
2902
- const styles$t = {
2239
+ const styles$s = {
2903
2240
  "elm-table-row": "_elm-table-row_mkm0q_1"
2904
2241
  };
2905
2242
  const ElmTableRow = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
@@ -2908,7 +2245,7 @@ const ElmTableRow = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
2908
2245
  ]);
2909
2246
  return /* @__PURE__ */ core$1._jsxSplit("tr", {
2910
2247
  class: [
2911
- styles$t["elm-table-row"],
2248
+ styles$s["elm-table-row"],
2912
2249
  _rawProps.class
2913
2250
  ],
2914
2251
  ...core$1._getVarProps(props)
@@ -2916,7 +2253,7 @@ const ElmTableRow = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
2916
2253
  }, "ElmTableRow_component_9imYSdaY9q8"));
2917
2254
  const td = "_td_1a21f_20";
2918
2255
  const th = "_th_1a21f_25";
2919
- const styles$s = {
2256
+ const styles$r = {
2920
2257
  "elm-table-cell": "_elm-table-cell_1a21f_1",
2921
2258
  td,
2922
2259
  th
@@ -2940,8 +2277,8 @@ const ElmTableCell = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
2940
2277
  const scope = props.scope ?? (inHead ? "col" : isRowHeader ? "row" : void 0);
2941
2278
  return renderAsTh ? /* @__PURE__ */ core$1._jsxSplit("th", {
2942
2279
  class: [
2943
- styles$s["elm-table-cell"],
2944
- styles$s.th,
2280
+ styles$r["elm-table-cell"],
2281
+ styles$r.th,
2945
2282
  props.class
2946
2283
  ],
2947
2284
  style: core$1._wrapProp(props, "style"),
@@ -2949,8 +2286,8 @@ const ElmTableCell = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
2949
2286
  ...core$1._getVarProps(rest)
2950
2287
  }, core$1._getConstProps(rest), props.text != null ? props.text : /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "Vm_0"), 0, "Vm_1") : /* @__PURE__ */ core$1._jsxSplit("td", {
2951
2288
  class: [
2952
- styles$s["elm-table-cell"],
2953
- styles$s.td,
2289
+ styles$r["elm-table-cell"],
2290
+ styles$r.td,
2954
2291
  props.class
2955
2292
  ],
2956
2293
  style: core$1._wrapProp(props, "style"),
@@ -2960,7 +2297,7 @@ const ElmTableCell = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
2960
2297
  const message = "_message_xdddx_14";
2961
2298
  const icon$1 = "_icon_xdddx_21";
2962
2299
  const details = "_details_xdddx_25";
2963
- const styles$r = {
2300
+ const styles$q = {
2964
2301
  "elm-unsupported-block": "_elm-unsupported-block_xdddx_1",
2965
2302
  message,
2966
2303
  icon: icon$1,
@@ -2973,43 +2310,43 @@ const ElmUnsupportedBlock = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
2973
2310
  ]);
2974
2311
  return /* @__PURE__ */ core$1._jsxSplit("div", {
2975
2312
  class: [
2976
- styles$r["elm-unsupported-block"],
2313
+ styles$q["elm-unsupported-block"],
2977
2314
  _rawProps.class
2978
2315
  ],
2979
2316
  ...core$1._getVarProps(props)
2980
2317
  }, core$1._getConstProps(props), [
2981
2318
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
2982
- class: styles$r.message
2319
+ class: styles$q.message
2983
2320
  }, [
2984
2321
  /* @__PURE__ */ core$1._jsxSorted("svg", null, {
2985
2322
  viewBox: "0 0 24 24",
2986
2323
  width: "1.25rem",
2987
2324
  height: "1.25rem",
2988
- class: styles$r.icon
2325
+ class: styles$q.icon
2989
2326
  }, /* @__PURE__ */ core$1._jsxSorted("path", null, {
2990
2327
  d: "M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"
2991
2328
  }, null, 3, null), 3, null),
2992
2329
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, "UNSUPPORTED BLOCK", 3, "90_0")
2993
2330
  ], 1, null),
2994
2331
  _rawProps.details && /* @__PURE__ */ core$1._jsxSorted("div", null, {
2995
- class: styles$r.details
2332
+ class: styles$q.details
2996
2333
  }, /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._wrapProp(_rawProps, "details"), 1, "90_1"), 1, "90_2")
2997
2334
  ], 0, "90_3");
2998
2335
  }, "ElmUnsupportedBlock_component_yKqwfnlPSP4"));
2999
- const _hf0$m = (p0) => p0.props.color;
3000
- const _hf1$c = (p0) => p0.props.ruby;
3001
- const _hf10$1 = (p0) => p0.props.width;
3002
- const _hf11$1 = (p0) => p0.props.height;
3003
- const _hf12$1 = (p0) => p0.props.hasRowHeader;
3004
- const _hf13$1 = (p0) => p0.props.isHeader;
3005
- const _hf2$9 = (p0) => p0.props.href;
3006
- const _hf3$8 = (p0) => p0.props.favicon;
3007
- const _hf4$4 = (p0) => p0.props.alt;
3008
- const _hf5$3 = (p0) => p0.props.level;
3009
- const _hf6$2 = (p0) => p0.props.backgroundColor;
3010
- const _hf7$1 = (p0) => p0.props.style ?? "unordered";
3011
- const _hf8$1 = (p0) => p0.props.cite;
3012
- const _hf9$1 = (p0) => p0.props.type;
2336
+ const _hf0$l = (p0) => p0.props.color;
2337
+ const _hf1$b = (p0) => p0.props.ruby;
2338
+ const _hf10 = (p0) => p0.props.width;
2339
+ const _hf11 = (p0) => p0.props.height;
2340
+ const _hf12 = (p0) => p0.props.hasRowHeader;
2341
+ const _hf13 = (p0) => p0.props.isHeader;
2342
+ const _hf2$8 = (p0) => p0.props.href;
2343
+ const _hf3$7 = (p0) => p0.props.favicon;
2344
+ const _hf4$3 = (p0) => p0.props.alt;
2345
+ const _hf5$2 = (p0) => p0.props.level;
2346
+ const _hf6$1 = (p0) => p0.props.backgroundColor;
2347
+ const _hf7 = (p0) => p0.props.style ?? "unordered";
2348
+ const _hf8 = (p0) => p0.props.cite;
2349
+ const _hf9 = (p0) => p0.props.type;
3013
2350
  function extractChildIds(value) {
3014
2351
  if (!Array.isArray(value)) return [];
3015
2352
  return value.filter((id) => typeof id === "string");
@@ -3043,26 +2380,26 @@ const blockCatalog = basicCatalog.extend(
3043
2380
  strikethrough: decoration.includes("strikethrough"),
3044
2381
  underline: decoration.includes("underline")
3045
2382
  }, {
3046
- color: core$1._fnSignal(_hf0$m, [
2383
+ color: core$1._fnSignal(_hf0$l, [
3047
2384
  _rawProps
3048
2385
  ]),
3049
- ruby: core$1._fnSignal(_hf1$c, [
2386
+ ruby: core$1._fnSignal(_hf1$b, [
3050
2387
  _rawProps
3051
2388
  ])
3052
2389
  }, text2, 1, "Fl_1");
3053
2390
  }),
3054
2391
  defineRenderer(core.LinkTextApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
3055
- href: core$1._fnSignal(_hf2$9, [
2392
+ href: core$1._fnSignal(_hf2$8, [
3056
2393
  _rawProps
3057
2394
  ]),
3058
- favicon: core$1._fnSignal(_hf3$8, [
2395
+ favicon: core$1._fnSignal(_hf3$7, [
3059
2396
  _rawProps
3060
2397
  ])
3061
2398
  }, _rawProps.resolve(_rawProps.props.text), 1, "Fl_2")),
3062
2399
  defineRenderer(core.IconApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmInlineIcon, {
3063
2400
  src: _rawProps.resolve(_rawProps.props.src)
3064
2401
  }, {
3065
- alt: core$1._fnSignal(_hf4$4, [
2402
+ alt: core$1._fnSignal(_hf4$3, [
3066
2403
  _rawProps
3067
2404
  ])
3068
2405
  }, null, 3, "Fl_3")),
@@ -3080,55 +2417,55 @@ const blockCatalog = basicCatalog.extend(
3080
2417
  padding: "0.125rem",
3081
2418
  ...firstChildMargin(_rawProps.index)
3082
2419
  }
3083
- }, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_4")),
2420
+ }, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_4")),
3084
2421
  defineRenderer(core.ColumnListApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted("div", {
3085
2422
  style: {
3086
2423
  ...columnListStyle,
3087
2424
  ...firstChildMargin(_rawProps.index)
3088
2425
  }
3089
- }, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_5")),
2426
+ }, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_5")),
3090
2427
  // -------------------------------------------------------------------------
3091
2428
  // Block typography
3092
2429
  // -------------------------------------------------------------------------
3093
2430
  defineRenderer(core.HeadingApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmHeading, {
3094
2431
  style: firstChildMargin(_rawProps.index)
3095
2432
  }, {
3096
- level: core$1._fnSignal(_hf5$3, [
2433
+ level: core$1._fnSignal(_hf5$2, [
3097
2434
  _rawProps
3098
2435
  ])
3099
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_6")),
2436
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_6")),
3100
2437
  defineRenderer(core.ParagraphApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmParagraph, {
3101
2438
  style: firstChildMargin(_rawProps.index)
3102
2439
  }, {
3103
- color: core$1._fnSignal(_hf0$m, [
2440
+ color: core$1._fnSignal(_hf0$l, [
3104
2441
  _rawProps
3105
2442
  ]),
3106
- backgroundColor: core$1._fnSignal(_hf6$2, [
2443
+ backgroundColor: core$1._fnSignal(_hf6$1, [
3107
2444
  _rawProps
3108
2445
  ])
3109
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_7")),
2446
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_7")),
3110
2447
  defineRenderer(core.ListApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmList, {
3111
2448
  style: firstChildMargin(_rawProps.index)
3112
2449
  }, {
3113
- listStyle: core$1._fnSignal(_hf7$1, [
2450
+ listStyle: core$1._fnSignal(_hf7, [
3114
2451
  _rawProps
3115
2452
  ])
3116
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("li", null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_8")),
3117
- defineRenderer(core.ListItemApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_9")),
2453
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("li", null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_8")),
2454
+ defineRenderer(core.ListItemApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_9")),
3118
2455
  defineRenderer(core.BlockQuoteApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmBlockQuote, {
3119
2456
  style: firstChildMargin(_rawProps.index)
3120
2457
  }, {
3121
- cite: core$1._fnSignal(_hf8$1, [
2458
+ cite: core$1._fnSignal(_hf8, [
3122
2459
  _rawProps
3123
2460
  ])
3124
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_10")),
2461
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_10")),
3125
2462
  defineRenderer(core.CalloutApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmCallout, {
3126
2463
  style: firstChildMargin(_rawProps.index)
3127
2464
  }, {
3128
- type: core$1._fnSignal(_hf9$1, [
2465
+ type: core$1._fnSignal(_hf9, [
3129
2466
  _rawProps
3130
2467
  ])
3131
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_11")),
2468
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_11")),
3132
2469
  defineRenderer(core.DividerApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmDivider, {
3133
2470
  style: firstChildMargin(_rawProps.index)
3134
2471
  }, null, null, 3, "Fl_12")),
@@ -3137,8 +2474,8 @@ const blockCatalog = basicCatalog.extend(
3137
2474
  }, null, [
3138
2475
  /* @__PURE__ */ core$1._jsxSorted("div", {
3139
2476
  "q:slot": "summary"
3140
- }, null, _rawProps.childRefs(_rawProps.props.summary).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, null),
3141
- _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`))
2477
+ }, null, _rawProps.childRefs(_rawProps.props.summary).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, null),
2478
+ _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`))
3142
2479
  ], 1, "Fl_13")),
3143
2480
  // -------------------------------------------------------------------------
3144
2481
  // Media / embed
@@ -3163,10 +2500,10 @@ const blockCatalog = basicCatalog.extend(
3163
2500
  srcset: _rawProps.props.srcset ? _rawProps.resolve(_rawProps.props.srcset) : void 0,
3164
2501
  style: firstChildMargin(_rawProps.index)
3165
2502
  }, {
3166
- width: core$1._fnSignal(_hf10$1, [
2503
+ width: core$1._fnSignal(_hf10, [
3167
2504
  _rawProps
3168
2505
  ]),
3169
- height: core$1._fnSignal(_hf11$1, [
2506
+ height: core$1._fnSignal(_hf11, [
3170
2507
  _rawProps
3171
2508
  ]),
3172
2509
  enableModal: true
@@ -3230,20 +2567,20 @@ const blockCatalog = basicCatalog.extend(
3230
2567
  caption: _rawProps.props.caption ? String(_rawProps.props.caption) : void 0,
3231
2568
  style: firstChildMargin(_rawProps.index)
3232
2569
  }, {
3233
- hasRowHeader: core$1._fnSignal(_hf12$1, [
2570
+ hasRowHeader: core$1._fnSignal(_hf12, [
3234
2571
  _rawProps
3235
2572
  ])
3236
2573
  }, [
3237
- _rawProps.props.header && _rawProps.props.header.length > 0 && /* @__PURE__ */ core$1._jsxSorted(ElmTableHeader, null, null, _rawProps.childRefs(_rawProps.props.header).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_22"),
3238
- /* @__PURE__ */ core$1._jsxSorted(ElmTableBody, null, null, _rawProps.childRefs(_rawProps.props.body).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_23")
2574
+ _rawProps.props.header && _rawProps.props.header.length > 0 && /* @__PURE__ */ core$1._jsxSorted(ElmTableHeader, null, null, _rawProps.childRefs(_rawProps.props.header).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_22"),
2575
+ /* @__PURE__ */ core$1._jsxSorted(ElmTableBody, null, null, _rawProps.childRefs(_rawProps.props.body).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_23")
3239
2576
  ], 1, "Fl_24")),
3240
- defineRenderer(core.TableRowApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmTableRow, null, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_25")),
2577
+ defineRenderer(core.TableRowApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmTableRow, null, null, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted(core$1.Fragment, null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_25")),
3241
2578
  defineRenderer(core.TableCellApi, (_rawProps) => /* @__PURE__ */ core$1._jsxSorted(ElmTableCell, null, {
3242
- isHeader: core$1._fnSignal(_hf13$1, [
2579
+ isHeader: core$1._fnSignal(_hf13, [
3243
2580
  _rawProps
3244
2581
  ]),
3245
2582
  columnIndex: core$1._wrapProp(_rawProps, "index")
3246
- }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path: path2 }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path2, i), 1, `${id}:${i}`)), 1, "Fl_26")),
2583
+ }, _rawProps.childRefs(_rawProps.props.children).map(({ id, path }, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, _rawProps.renderChild(id, path, i), 1, `${id}:${i}`)), 1, "Fl_26")),
3247
2584
  // -------------------------------------------------------------------------
3248
2585
  // Fallback
3249
2586
  // -------------------------------------------------------------------------
@@ -3324,7 +2661,7 @@ function compactReasoningMessageEvents(events) {
3324
2661
  function compactEventsExtended(events) {
3325
2662
  return client.compactEvents(compactReasoningMessageEvents(events));
3326
2663
  }
3327
- const styles$q = {
2664
+ const styles$p = {
3328
2665
  "message-content-user-wrapper": "_message-content-user-wrapper_80z92_8",
3329
2666
  "message-content-user-inner": "_message-content-user-inner_80z92_14",
3330
2667
  "message-content-user-content": "_message-content-user-content_80z92_22",
@@ -3381,25 +2718,25 @@ const ElmAgUiEventRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3381
2718
  if (!userMsg) break;
3382
2719
  const contents = userMsg.content;
3383
2720
  const userInputComponent = /* @__PURE__ */ core$1._jsxSorted("div", null, {
3384
- class: styles$q["message-content-user-wrapper"]
2721
+ class: styles$p["message-content-user-wrapper"]
3385
2722
  }, /* @__PURE__ */ core$1._jsxSorted("div", null, {
3386
- class: styles$q["message-content-user-inner"]
2723
+ class: styles$p["message-content-user-inner"]
3387
2724
  }, [
3388
2725
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3389
- class: styles$q["message-content-type"]
2726
+ class: styles$p["message-content-type"]
3390
2727
  }, [
3391
2728
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
3392
- class: styles$q["message-content-icon"],
2729
+ class: styles$p["message-content-icon"],
3393
2730
  d: js.mdiAccount
3394
2731
  }, null, 3, "Ds_3"),
3395
2732
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, "User", 3, "Ds_4"),
3396
2733
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3397
2734
  "aria-hidden": "true",
3398
- class: styles$q["message-content-spacer"]
2735
+ class: styles$p["message-content-spacer"]
3399
2736
  }, null, 3, null)
3400
2737
  ], 1, null),
3401
2738
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3402
- class: styles$q["message-content-user-content"]
2739
+ class: styles$p["message-content-user-content"]
3403
2740
  }, typeof contents === "string" ? /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, contents, 1, "Ds_5") : contents.map((item, i) => /* @__PURE__ */ core$1._jsxSorted("span", null, null, renderInputContent(item), 1, i)), 1, null)
3404
2741
  ], 1, null), 1, "Ds_6");
3405
2742
  components.push(userInputComponent);
@@ -3415,7 +2752,7 @@ const ElmAgUiEventRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3415
2752
  };
3416
2753
  return /* @__PURE__ */ core$1._jsxSorted("div", {
3417
2754
  class: [
3418
- styles$q["elm-my-something"],
2755
+ styles$p["elm-my-something"],
3419
2756
  _rawProps.class
3420
2757
  ],
3421
2758
  style: core$1._wrapProp(_rawProps, "style")
@@ -3423,7 +2760,7 @@ const ElmAgUiEventRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3423
2760
  }, "ElmAgUiEventRenderer_component_ifhto4pMkTc"));
3424
2761
  const card = "_card_1st6f_22";
3425
2762
  const input$1 = "_input_1st6f_33";
3426
- const styles$p = {
2763
+ const styles$o = {
3427
2764
  "elm-ag-ui-input": "_elm-ag-ui-input_1st6f_1",
3428
2765
  "picker-container": "_picker-container_1st6f_9",
3429
2766
  card,
@@ -3436,7 +2773,7 @@ const panel$1 = "_panel_8yo2s_1";
3436
2773
  const empty$1 = "_empty_8yo2s_16";
3437
2774
  const form = "_form_8yo2s_86";
3438
2775
  const error$2 = "_error_8yo2s_135";
3439
- const styles$o = {
2776
+ const styles$n = {
3440
2777
  panel: panel$1,
3441
2778
  empty: empty$1,
3442
2779
  "prompt-row": "_prompt-row_8yo2s_23",
@@ -3459,11 +2796,11 @@ const styles$o = {
3459
2796
  "field-input": "_field-input_8yo2s_157",
3460
2797
  "field-hint": "_field-hint_8yo2s_178"
3461
2798
  };
3462
- const _hf0$l = (p0) => p0.descriptor.name;
3463
- const _hf1$b = (p0) => p0.descriptor.description;
3464
- const _hf2$8 = (p0, p1) => p1.values[p0.name] ?? "";
3465
- const _hf3$7 = (p0) => p0.patternMessage ?? p0.description;
3466
- const _hf4$3 = (p0) => p0.submitting ? "Resolving…" : "Use prompt";
2799
+ const _hf0$k = (p0) => p0.descriptor.name;
2800
+ const _hf1$a = (p0) => p0.descriptor.description;
2801
+ const _hf2$7 = (p0, p1) => p1.values[p0.name] ?? "";
2802
+ const _hf3$6 = (p0) => p0.patternMessage ?? p0.description;
2803
+ const _hf4$2 = (p0) => p0.submitting ? "Resolving…" : "Use prompt";
3467
2804
  const ElmAgUiPromptPicker = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
3468
2805
  const modal2 = useModal({});
3469
2806
  const active2 = core$1.useStore({
@@ -3573,12 +2910,12 @@ const ElmAgUiPromptPicker = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3573
2910
  return /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, [
3574
2911
  /* @__PURE__ */ core$1._jsxSorted("div", {
3575
2912
  class: [
3576
- styles$o.panel,
2913
+ styles$n.panel,
3577
2914
  _rawProps.class
3578
2915
  ],
3579
2916
  style: core$1._wrapProp(_rawProps, "style")
3580
2917
  }, null, _rawProps.prompts.length === 0 ? /* @__PURE__ */ core$1._jsxSorted("div", null, {
3581
- class: styles$o.empty
2918
+ class: styles$n.empty
3582
2919
  }, "No prompts available.", 3, "O0_0") : _rawProps.prompts.map((p, idx) => {
3583
2920
  const qrl_4294901764 = /* @__PURE__ */ core$1.inlinedQrl((_, _1, p2) => {
3584
2921
  const onRowClick$2 = core$1._captures[0];
@@ -3588,41 +2925,41 @@ const ElmAgUiPromptPicker = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3588
2925
  ]);
3589
2926
  return /* @__PURE__ */ core$1._jsxSorted("div", {
3590
2927
  class: [
3591
- styles$o["prompt-row"],
3592
- idx === _rawProps.activeIndex && styles$o["prompt-row-active"]
2928
+ styles$n["prompt-row"],
2929
+ idx === _rawProps.activeIndex && styles$n["prompt-row-active"]
3593
2930
  ],
3594
2931
  "q-e:click": qrl_4294901764,
3595
2932
  "q:p": p
3596
2933
  }, null, [
3597
2934
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3598
- class: styles$o["prompt-head"]
2935
+ class: styles$n["prompt-head"]
3599
2936
  }, /* @__PURE__ */ core$1._jsxSorted("span", null, {
3600
- class: styles$o["prompt-name"]
2937
+ class: styles$n["prompt-name"]
3601
2938
  }, core$1._wrapProp(p, "name"), 1, null), 1, null),
3602
2939
  p.description && /* @__PURE__ */ core$1._jsxSorted("span", null, {
3603
- class: styles$o["prompt-description"]
2940
+ class: styles$n["prompt-description"]
3604
2941
  }, core$1._wrapProp(p, "description"), 1, "O0_1")
3605
2942
  ], 4, p.key);
3606
2943
  }), 1, null),
3607
2944
  /* @__PURE__ */ core$1._jsxSorted(modal2.Modal, null, null, /* @__PURE__ */ core$1._jsxSorted("div", null, {
3608
- class: styles$o["modal-card"]
2945
+ class: styles$n["modal-card"]
3609
2946
  }, active2.descriptor && /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, [
3610
2947
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3611
- class: styles$o["modal-header"]
2948
+ class: styles$n["modal-header"]
3612
2949
  }, [
3613
2950
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
3614
- class: styles$o["modal-title"]
3615
- }, core$1._fnSignal(_hf0$l, [
2951
+ class: styles$n["modal-title"]
2952
+ }, core$1._fnSignal(_hf0$k, [
3616
2953
  active2
3617
2954
  ]), 3, null),
3618
2955
  active2.descriptor.description && /* @__PURE__ */ core$1._jsxSorted("span", null, {
3619
- class: styles$o["modal-description"]
3620
- }, core$1._fnSignal(_hf1$b, [
2956
+ class: styles$n["modal-description"]
2957
+ }, core$1._fnSignal(_hf1$a, [
3621
2958
  active2
3622
2959
  ]), 3, "O0_2")
3623
2960
  ], 1, null),
3624
2961
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3625
- class: styles$o.form
2962
+ class: styles$n.form
3626
2963
  }, [
3627
2964
  (active2.descriptor.arguments ?? []).map((a, idx) => {
3628
2965
  const qrl_4294901765 = /* @__PURE__ */ core$1.inlinedQrl((_, el, a2) => {
@@ -3638,14 +2975,14 @@ const ElmAgUiPromptPicker = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3638
2975
  active2
3639
2976
  ]);
3640
2977
  return /* @__PURE__ */ core$1._jsxSorted("label", null, {
3641
- class: styles$o["field-label"]
2978
+ class: styles$n["field-label"]
3642
2979
  }, [
3643
2980
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
3644
- class: styles$o["field-name"]
2981
+ class: styles$n["field-name"]
3645
2982
  }, [
3646
2983
  core$1._wrapProp(a, "name"),
3647
2984
  a.required && /* @__PURE__ */ core$1._jsxSorted("span", null, {
3648
- class: styles$o["field-required"]
2985
+ class: styles$n["field-required"]
3649
2986
  }, "*", 3, "O0_3")
3650
2987
  ], 1, null),
3651
2988
  a.enum && a.enum.length > 0 ? /* @__PURE__ */ core$1._jsxSorted("select", {
@@ -3653,12 +2990,12 @@ const ElmAgUiPromptPicker = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3653
2990
  "q-e:change": qrl_4294901765,
3654
2991
  "q:p": a,
3655
2992
  ref: idx === 0 ? firstFieldRef : void 0,
3656
- value: core$1._fnSignal(_hf2$8, [
2993
+ value: core$1._fnSignal(_hf2$7, [
3657
2994
  a,
3658
2995
  active2
3659
2996
  ])
3660
2997
  }, {
3661
- class: styles$o["field-input"]
2998
+ class: styles$n["field-input"]
3662
2999
  }, [
3663
3000
  !a.required && /* @__PURE__ */ core$1._jsxSorted("option", null, {
3664
3001
  value: ""
@@ -3678,50 +3015,50 @@ const ElmAgUiPromptPicker = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
3678
3015
  "q-e:input": qrl_4294901766,
3679
3016
  "q:p": a,
3680
3017
  ref: idx === 0 ? firstFieldRef : void 0,
3681
- title: core$1._fnSignal(_hf3$7, [
3018
+ title: core$1._fnSignal(_hf3$6, [
3682
3019
  a
3683
3020
  ]),
3684
- value: core$1._fnSignal(_hf2$8, [
3021
+ value: core$1._fnSignal(_hf2$7, [
3685
3022
  a,
3686
3023
  active2
3687
3024
  ])
3688
3025
  }, {
3689
- class: styles$o["field-input"],
3026
+ class: styles$n["field-input"],
3690
3027
  type: "text"
3691
3028
  }, null, 6, "O0_6"),
3692
3029
  a.enum && a.description && /* @__PURE__ */ core$1._jsxSorted("span", null, {
3693
- class: styles$o["field-hint"]
3030
+ class: styles$n["field-hint"]
3694
3031
  }, core$1._wrapProp(a, "description"), 1, "O0_7")
3695
3032
  ], 1, a.name);
3696
3033
  }),
3697
3034
  active2.error && /* @__PURE__ */ core$1._jsxSorted("div", null, {
3698
- class: styles$o.error
3035
+ class: styles$n.error
3699
3036
  }, core$1._wrapProp(active2, "error"), 3, "O0_8")
3700
3037
  ], 1, null),
3701
3038
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3702
- class: styles$o["form-actions"]
3039
+ class: styles$n["form-actions"]
3703
3040
  }, [
3704
3041
  /* @__PURE__ */ core$1._jsxSorted("button", null, {
3705
3042
  type: "button",
3706
- class: styles$o["cancel-button"],
3043
+ class: styles$n["cancel-button"],
3707
3044
  "q-e:click": onCancel$
3708
3045
  }, "Cancel", 3, null),
3709
3046
  /* @__PURE__ */ core$1._jsxSorted("button", null, {
3710
3047
  type: "button",
3711
- class: styles$o["use-button"],
3048
+ class: styles$n["use-button"],
3712
3049
  disabled: core$1._wrapProp(active2, "submitting"),
3713
3050
  "q-e:click": onSubmit$
3714
- }, core$1._fnSignal(_hf4$3, [
3051
+ }, core$1._fnSignal(_hf4$2, [
3715
3052
  active2
3716
3053
  ]), 3, null)
3717
3054
  ], 3, null)
3718
3055
  ], 1, "O0_9"), 1, null), 1, "O0_10")
3719
3056
  ], 1, "O0_11");
3720
3057
  }, "ElmAgUiPromptPicker_component_rrSAnBfqqKQ"));
3721
- const _hf0$k = (p0, p1, p2) => p0 && (p1.value || p2.value !== null);
3722
- const _hf1$a = (p0, p1, p2) => p2.value !== null ? p1.value : p0.prompts ?? [];
3723
- const _hf2$7 = (p0, p1) => p1.value !== null ? p0.value : void 0;
3724
- const _hf3$6 = (p0) => p0.value ? "Close prompts" : "Open prompts";
3058
+ const _hf0$j = (p0, p1, p2) => p0 && (p1.value || p2.value !== null);
3059
+ const _hf1$9 = (p0, p1, p2) => p2.value !== null ? p1.value : p0.prompts ?? [];
3060
+ const _hf2$6 = (p0, p1) => p1.value !== null ? p0.value : void 0;
3061
+ const _hf3$5 = (p0) => p0.value ? "Close prompts" : "Open prompts";
3725
3062
  const ElmAgUiInput = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
3726
3063
  const textAreaRef = core$1.useSignal();
3727
3064
  const isPickerOpen = core$1.useSignal(false);
@@ -3855,26 +3192,26 @@ const ElmAgUiInput = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
3855
3192
  ]);
3856
3193
  return /* @__PURE__ */ core$1._jsxSorted("div", {
3857
3194
  class: [
3858
- styles$p["elm-ag-ui-input"],
3195
+ styles$o["elm-ag-ui-input"],
3859
3196
  _rawProps.class
3860
3197
  ],
3861
3198
  style: core$1._wrapProp(_rawProps, "style")
3862
3199
  }, null, [
3863
3200
  /* @__PURE__ */ core$1._jsxSorted(ElmCollapse, null, {
3864
- isOpen: core$1._fnSignal(_hf0$k, [
3201
+ isOpen: core$1._fnSignal(_hf0$j, [
3865
3202
  hasPicker,
3866
3203
  isPickerOpen,
3867
3204
  slashRange
3868
3205
  ]),
3869
- class: styles$p["picker-container"]
3206
+ class: styles$o["picker-container"]
3870
3207
  }, /* @__PURE__ */ core$1._jsxSorted(ElmAgUiPromptPicker, null, {
3871
- prompts: core$1._fnSignal(_hf1$a, [
3208
+ prompts: core$1._fnSignal(_hf1$9, [
3872
3209
  _rawProps,
3873
3210
  filteredPrompts,
3874
3211
  slashRange
3875
3212
  ]),
3876
3213
  onPick$: onPickPrompt,
3877
- activeIndex: core$1._fnSignal(_hf2$7, [
3214
+ activeIndex: core$1._fnSignal(_hf2$6, [
3878
3215
  activeIndex,
3879
3216
  slashRange
3880
3217
  ]),
@@ -3882,7 +3219,7 @@ const ElmAgUiInput = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
3882
3219
  }, null, 3, "C8_0"), 1, "C8_1"),
3883
3220
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3884
3221
  class: [
3885
- styles$p["card"],
3222
+ styles$o["card"],
3886
3223
  textStyles["text"]
3887
3224
  ]
3888
3225
  }, [
@@ -3891,12 +3228,12 @@ const ElmAgUiInput = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
3891
3228
  }, {
3892
3229
  name: "prompt",
3893
3230
  "aria-label": "Prompt",
3894
- class: styles$p["input"],
3231
+ class: styles$o["input"],
3895
3232
  "q-e:input": handleInput$,
3896
3233
  "q-e:keydown": handleKeyDown$
3897
3234
  }, null, 3, null),
3898
3235
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
3899
- class: styles$p["button-row"]
3236
+ class: styles$o["button-row"]
3900
3237
  }, [
3901
3238
  hasPicker && /* @__PURE__ */ core$1._jsxSorted("div", {
3902
3239
  "q-e:click": /* @__PURE__ */ core$1.inlinedQrl((_, _1, isPickerOpen2, textAreaRef2) => {
@@ -3915,8 +3252,8 @@ const ElmAgUiInput = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
3915
3252
  textAreaRef
3916
3253
  ]
3917
3254
  }, {
3918
- class: styles$p["plus-button"],
3919
- "aria-label": core$1._fnSignal(_hf3$6, [
3255
+ class: styles$o["plus-button"],
3256
+ "aria-label": core$1._fnSignal(_hf3$5, [
3920
3257
  isPickerOpen
3921
3258
  ])
3922
3259
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
@@ -3928,7 +3265,7 @@ const ElmAgUiInput = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
3928
3265
  /* @__PURE__ */ core$1._jsxSorted("div", {
3929
3266
  "q-e:click": _rawProps.isRunning ? _rawProps.onAbort$ : onSubmit
3930
3267
  }, {
3931
- class: styles$p["submit-button"]
3268
+ class: styles$o["submit-button"]
3932
3269
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
3933
3270
  d: _rawProps.isRunning ? js.mdiStop : js.mdiSend
3934
3271
  }, {
@@ -3939,7 +3276,7 @@ const ElmAgUiInput = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
3939
3276
  ], 1, null)
3940
3277
  ], 1, "C8_5");
3941
3278
  }, "ElmAgUiInput_component_Q6DXfNqyu3E"));
3942
- const styles$n = {
3279
+ const styles$m = {
3943
3280
  "message-content-assistant-wrapper": "_message-content-assistant-wrapper_1jrzm_1",
3944
3281
  "message-content-user-wrapper": "_message-content-user-wrapper_1jrzm_8",
3945
3282
  "message-content-user-inner": "_message-content-user-inner_1jrzm_14",
@@ -3950,10 +3287,10 @@ const styles$n = {
3950
3287
  "clickable-icon": "_clickable-icon_1jrzm_51",
3951
3288
  "reasoning-running": "_reasoning-running_1jrzm_65"
3952
3289
  };
3953
- const styles$m = {
3290
+ const styles$l = {
3954
3291
  "elm-markdown": "_elm-markdown_14gxe_1"
3955
3292
  };
3956
- const _hf0$j = (p0) => p0.ordered ? "ordered" : "unordered";
3293
+ const _hf0$i = (p0) => p0.ordered ? "ordered" : "unordered";
3957
3294
  const renderByToken = (tokens) => {
3958
3295
  const results = [];
3959
3296
  for (let i = 0; i < tokens.length; i++) {
@@ -4034,7 +3371,7 @@ const renderByToken = (tokens) => {
4034
3371
  case "list": {
4035
3372
  const listItems = token.items.map((item, index) => /* @__PURE__ */ core$1._jsxSorted("li", null, null, renderByToken(item.tokens), 1, index));
4036
3373
  results.push(/* @__PURE__ */ core$1._jsxSorted(ElmList, null, {
4037
- listStyle: core$1._fnSignal(_hf0$j, [
3374
+ listStyle: core$1._fnSignal(_hf0$i, [
4038
3375
  token
4039
3376
  ])
4040
3377
  }, listItems, 1, i));
@@ -4108,7 +3445,7 @@ const ElmMarkdown = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
4108
3445
  ]));
4109
3446
  return /* @__PURE__ */ core$1._jsxSplit("div", {
4110
3447
  class: [
4111
- styles$m["elm-markdown"],
3448
+ styles$l["elm-markdown"],
4112
3449
  props.class
4113
3450
  ],
4114
3451
  ...core$1._getVarProps(rest)
@@ -4120,7 +3457,7 @@ const ElmMarkdown = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
4120
3457
  ], 0, "c0_5");
4121
3458
  }, "ElmMarkdown_component_MjKh8ZU4JE4"));
4122
3459
  const summary = "_summary_1ya7x_2";
4123
- const styles$l = {
3460
+ const styles$k = {
4124
3461
  "elm-ag-ui-tool-execution": "_elm-ag-ui-tool-execution_1ya7x_1",
4125
3462
  summary
4126
3463
  };
@@ -4202,7 +3539,7 @@ function useThrottledQueue(minInterval = 200) {
4202
3539
  ]));
4203
3540
  return queueRef;
4204
3541
  }
4205
- const _hf0$i = (p0) => ({
3542
+ const _hf0$h = (p0) => ({
4206
3543
  "--margin-block": "0",
4207
3544
  ...p0.style
4208
3545
  });
@@ -4272,10 +3609,10 @@ const ElmAgUiToolExecution = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4272
3609
  ]));
4273
3610
  return /* @__PURE__ */ core$1._jsxSorted("div", {
4274
3611
  class: [
4275
- styles$l["elm-ag-ui-tool-execution"],
3612
+ styles$k["elm-ag-ui-tool-execution"],
4276
3613
  _rawProps.class
4277
3614
  ],
4278
- style: core$1._fnSignal(_hf0$i, [
3615
+ style: core$1._fnSignal(_hf0$h, [
4279
3616
  _rawProps
4280
3617
  ])
4281
3618
  }, null, /* @__PURE__ */ core$1._jsxSorted(ElmToggle, null, {
@@ -4285,7 +3622,7 @@ const ElmAgUiToolExecution = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4285
3622
  /* @__PURE__ */ core$1._jsxSorted("div", {
4286
3623
  "q:slot": "summary"
4287
3624
  }, {
4288
- class: styles$l.summary
3625
+ class: styles$k.summary
4289
3626
  }, [
4290
3627
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4291
3628
  d: js.mdiHammerScrewdriver,
@@ -4294,7 +3631,7 @@ const ElmAgUiToolExecution = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4294
3631
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._wrapProp(_rawProps, "toolName"), 1, "o2_1")
4295
3632
  ], 1, null),
4296
3633
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4297
- class: styles$l.summary
3634
+ class: styles$k.summary
4298
3635
  }, [
4299
3636
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
4300
3637
  color: _rawProps.toolEventType === core$2.EventType.TOOL_CALL_START ? "var(--elmethis-color-accent-info)" : "var(--elmethis-color-accent-success)"
@@ -4311,7 +3648,7 @@ const ElmAgUiToolExecution = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4311
3648
  /* @__PURE__ */ core$1._jsxSorted("div", {
4312
3649
  "q:slot": "summary"
4313
3650
  }, {
4314
- class: styles$l.summary
3651
+ class: styles$k.summary
4315
3652
  }, [
4316
3653
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4317
3654
  d: js.mdiCodeJson,
@@ -4325,7 +3662,7 @@ const ElmAgUiToolExecution = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4325
3662
  }, null, 3, "o2_6")
4326
3663
  ], 1, "o2_7"),
4327
3664
  _rawProps.toolEventType === core$2.EventType.TOOL_CALL_START ? null : /* @__PURE__ */ core$1._jsxSorted("div", null, {
4328
- class: styles$l.summary
3665
+ class: styles$k.summary
4329
3666
  }, [
4330
3667
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
4331
3668
  color: _rawProps.toolEventType === core$2.EventType.TOOL_CALL_ARGS || _rawProps.toolEventType === core$2.EventType.TOOL_CALL_END ? "var(--elmethis-color-accent-info)" : "var(--elmethis-color-accent-success)"
@@ -4342,7 +3679,7 @@ const ElmAgUiToolExecution = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4342
3679
  /* @__PURE__ */ core$1._jsxSorted("div", {
4343
3680
  "q:slot": "summary"
4344
3681
  }, {
4345
- class: styles$l.summary
3682
+ class: styles$k.summary
4346
3683
  }, [
4347
3684
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4348
3685
  d: js.mdiCodeJson,
@@ -4367,7 +3704,7 @@ const ElmCopyIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
4367
3704
  }, "ElmCopyIcon_component_F4DnU406zxQ"));
4368
3705
  const image = "_image_1io0s_29";
4369
3706
  const text$1 = "_text_1io0s_35";
4370
- const styles$k = {
3707
+ const styles$j = {
4371
3708
  "elm-ag-ui-input-content": "_elm-ag-ui-input-content_1io0s_1",
4372
3709
  "media-component-container": "_media-component-container_1io0s_8",
4373
3710
  "media-component": "_media-component_1io0s_8",
@@ -4377,12 +3714,12 @@ const styles$k = {
4377
3714
  "mime-type-label": "_mime-type-label_1io0s_55",
4378
3715
  "message-content-user-content": "_message-content-user-content_1io0s_82"
4379
3716
  };
4380
- const _hf0$h = (p0) => p0.source.value;
4381
- const _hf1$9 = (p0) => p0.source.mimeType;
3717
+ const _hf0$g = (p0) => p0.source.value;
3718
+ const _hf1$8 = (p0) => p0.source.mimeType;
4382
3719
  const ElmAgUiInputContent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
4383
3720
  const renderTextContent = (text2) => {
4384
3721
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
4385
- class: styles$k["message-content-user-content"]
3722
+ class: styles$j["message-content-user-content"]
4386
3723
  }, text2, 1, "xj_0");
4387
3724
  };
4388
3725
  if (typeof _rawProps.inputContent === "string") {
@@ -4405,23 +3742,23 @@ const ElmAgUiInputContent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4405
3742
  case "document": {
4406
3743
  return /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, /* @__PURE__ */ core$1._jsxSorted("div", {
4407
3744
  class: [
4408
- styles$k["media-component"],
3745
+ styles$j["media-component"],
4409
3746
  _rawProps.class
4410
3747
  ],
4411
3748
  style: core$1._wrapProp(_rawProps, "style")
4412
3749
  }, null, [
4413
3750
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4414
- class: styles$k["type-icon"],
3751
+ class: styles$j["type-icon"],
4415
3752
  d: js.mdiTextBox
4416
3753
  }, null, 3, "xj_3"),
4417
3754
  /* @__PURE__ */ core$1._jsxSorted("div", null, null, /* @__PURE__ */ core$1._jsxSorted("pre", null, {
4418
- class: styles$k.text
4419
- }, core$1._fnSignal(_hf0$h, [
3755
+ class: styles$j.text
3756
+ }, core$1._fnSignal(_hf0$g, [
4420
3757
  content2
4421
3758
  ]), 1, null), 1, null),
4422
3759
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4423
- class: styles$k["mime-type-label"]
4424
- }, core$1._fnSignal(_hf1$9, [
3760
+ class: styles$j["mime-type-label"]
3761
+ }, core$1._fnSignal(_hf1$8, [
4425
3762
  content2
4426
3763
  ]), 1, null)
4427
3764
  ], 1, null), 1, "xj_4");
@@ -4434,24 +3771,24 @@ const ElmAgUiInputContent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4434
3771
  const url = source.type === "data" ? `data:${source.mimeType};base64,${source.value}` : source.value;
4435
3772
  mediaComponents.push(/* @__PURE__ */ core$1._jsxSorted("div", {
4436
3773
  class: [
4437
- styles$k["media-component"],
3774
+ styles$j["media-component"],
4438
3775
  _rawProps.class
4439
3776
  ],
4440
3777
  style: core$1._wrapProp(_rawProps, "style")
4441
3778
  }, null, [
4442
3779
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4443
- class: styles$k["type-icon"],
3780
+ class: styles$j["type-icon"],
4444
3781
  d: js.mdiImage
4445
3782
  }, null, 3, "xj_6"),
4446
3783
  /* @__PURE__ */ core$1._jsxSorted("img", {
4447
3784
  src: url
4448
3785
  }, {
4449
- class: styles$k.image,
3786
+ class: styles$j.image,
4450
3787
  width: 96,
4451
3788
  height: 96
4452
3789
  }, null, 3, null),
4453
3790
  source.mimeType && /* @__PURE__ */ core$1._jsxSorted("div", null, {
4454
- class: styles$k["mime-type-label"]
3791
+ class: styles$j["mime-type-label"]
4455
3792
  }, core$1._wrapProp(source, "mimeType"), 1, "xj_7")
4456
3793
  ], 1, "xj_8"));
4457
3794
  break;
@@ -4459,19 +3796,19 @@ const ElmAgUiInputContent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
4459
3796
  }
4460
3797
  }
4461
3798
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
4462
- class: styles$k["elm-ag-ui-input-content"]
3799
+ class: styles$j["elm-ag-ui-input-content"]
4463
3800
  }, [
4464
3801
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4465
- class: styles$k["media-component-container"]
3802
+ class: styles$j["media-component-container"]
4466
3803
  }, mediaComponents, 1, null),
4467
3804
  texts.length > 0 && renderTextContent(texts.join("\n"))
4468
3805
  ], 1, "xj_9");
4469
3806
  }
4470
3807
  }, "ElmAgUiInputContent_component_SCvDpdP9V0U"));
4471
- const _hf0$g = (p0) => p0.function.name;
4472
- const _hf1$8 = (p0) => p0.function.arguments;
4473
- const _hf2$6 = (p0) => p0?.content;
4474
- const _hf3$5 = (p0, p1) => p0.messages.length - 1 === p1;
3808
+ const _hf0$f = (p0) => p0.function.name;
3809
+ const _hf1$7 = (p0) => p0.function.arguments;
3810
+ const _hf2$5 = (p0) => p0?.content;
3811
+ const _hf3$4 = (p0, p1) => p0.messages.length - 1 === p1;
4475
3812
  const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
4476
3813
  const renderTool = (toolCall, messages2) => {
4477
3814
  let toolEventType = core$2.EventType.TOOL_CALL_START;
@@ -4481,13 +3818,13 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4481
3818
  return /* @__PURE__ */ core$1._jsxSorted(ElmAgUiToolExecution, {
4482
3819
  toolEventType
4483
3820
  }, {
4484
- toolName: core$1._fnSignal(_hf0$g, [
3821
+ toolName: core$1._fnSignal(_hf0$f, [
4485
3822
  toolCall
4486
3823
  ]),
4487
- toolCallArgs: core$1._fnSignal(_hf1$8, [
3824
+ toolCallArgs: core$1._fnSignal(_hf1$7, [
4488
3825
  toolCall
4489
3826
  ]),
4490
- toolCallResult: core$1._fnSignal(_hf2$6, [
3827
+ toolCallResult: core$1._fnSignal(_hf2$5, [
4491
3828
  toolCallResultEvent
4492
3829
  ])
4493
3830
  }, null, 3, "nO_0");
@@ -4509,19 +3846,19 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4509
3846
  return /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, [
4510
3847
  message2.toolCalls?.map((toolCall) => renderTool(toolCall, _rawProps.messages)),
4511
3848
  message2.content != null && /* @__PURE__ */ core$1._jsxSorted("div", null, {
4512
- class: styles$n["message-content-assistant-wrapper"]
3849
+ class: styles$m["message-content-assistant-wrapper"]
4513
3850
  }, [
4514
3851
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4515
- class: styles$n["message-content-type"]
3852
+ class: styles$m["message-content-type"]
4516
3853
  }, [
4517
3854
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4518
- class: styles$n["message-content-icon"],
3855
+ class: styles$m["message-content-icon"],
4519
3856
  d: js.mdiCreation
4520
3857
  }, null, 3, "nO_2"),
4521
3858
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, "Assistant", 3, "nO_3"),
4522
3859
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4523
3860
  "aria-hidden": "true",
4524
- class: styles$n["message-content-spacer"]
3861
+ class: styles$m["message-content-spacer"]
4525
3862
  }, null, 3, null)
4526
3863
  ], 1, null),
4527
3864
  /* @__PURE__ */ core$1._jsxSorted(ElmMarkdown, null, {
@@ -4529,7 +3866,7 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4529
3866
  isStreaming: true
4530
3867
  }, null, 3, "nO_4"),
4531
3868
  !_rawProps.isRunning && /* @__PURE__ */ core$1._jsxSorted("div", null, {
4532
- class: styles$n["message-content-assistant-actions"]
3869
+ class: styles$m["message-content-assistant-actions"]
4533
3870
  }, [
4534
3871
  /* @__PURE__ */ core$1._jsxSorted(ElmCopyIcon, null, {
4535
3872
  content: core$1._wrapProp(message2, "content")
@@ -4537,7 +3874,7 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4537
3874
  /* @__PURE__ */ core$1._jsxSorted("span", {
4538
3875
  "q-e:click": _rawProps.handleRetry$
4539
3876
  }, {
4540
- class: styles$n["clickable-icon"]
3877
+ class: styles$m["clickable-icon"]
4541
3878
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4542
3879
  d: js.mdiRefresh,
4543
3880
  size: "1.25rem"
@@ -4597,22 +3934,22 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4597
3934
  /* @__PURE__ */ core$1._jsxSorted("div", {
4598
3935
  "q:slot": "summary"
4599
3936
  }, {
4600
- class: styles$n["message-content-type"]
3937
+ class: styles$m["message-content-type"]
4601
3938
  }, [
4602
3939
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4603
- class: styles$n["message-content-icon"],
3940
+ class: styles$m["message-content-icon"],
4604
3941
  d: js.mdiLightbulbOn
4605
3942
  }, null, 3, "nO_12"),
4606
3943
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, "Reasoning", 3, "nO_13"),
4607
3944
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4608
3945
  "aria-hidden": "true",
4609
- class: styles$n["message-content-spacer"]
3946
+ class: styles$m["message-content-spacer"]
4610
3947
  }, null, 3, null)
4611
3948
  ], 1, null),
4612
3949
  /* @__PURE__ */ core$1._jsxSorted("div", {
4613
3950
  class: [
4614
3951
  {
4615
- [styles$n["reasoning-running"]]: props.isReasoningRunning
3952
+ [styles$m["reasoning-running"]]: props.isReasoningRunning
4616
3953
  }
4617
3954
  ],
4618
3955
  ref: reasoningRef
@@ -4622,7 +3959,7 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4622
3959
  ], 1, "nO_15");
4623
3960
  }, "ElmAgUiMessageRenderer_component_render_Reasoning_component_aNX9iol0O8o"));
4624
3961
  return /* @__PURE__ */ core$1._jsxSorted(Reasoning, null, {
4625
- isReasoningRunning: core$1._fnSignal(_hf3$5, [
3962
+ isReasoningRunning: core$1._fnSignal(_hf3$4, [
4626
3963
  _rawProps,
4627
3964
  index
4628
3965
  ]),
@@ -4644,21 +3981,21 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4644
3981
  return "";
4645
3982
  };
4646
3983
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
4647
- class: styles$n["message-content-user-wrapper"]
3984
+ class: styles$m["message-content-user-wrapper"]
4648
3985
  }, /* @__PURE__ */ core$1._jsxSorted("div", null, {
4649
- class: styles$n["message-content-user-inner"]
3986
+ class: styles$m["message-content-user-inner"]
4650
3987
  }, [
4651
3988
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4652
- class: styles$n["message-content-type"]
3989
+ class: styles$m["message-content-type"]
4653
3990
  }, [
4654
3991
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4655
- class: styles$n["message-content-icon"],
3992
+ class: styles$m["message-content-icon"],
4656
3993
  d: js.mdiAccount
4657
3994
  }, null, 3, "nO_17"),
4658
3995
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, "User", 3, "nO_18"),
4659
3996
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4660
3997
  "aria-hidden": "true",
4661
- class: styles$n["message-content-spacer"]
3998
+ class: styles$m["message-content-spacer"]
4662
3999
  }, null, 3, null)
4663
4000
  ], 1, null),
4664
4001
  /* @__PURE__ */ core$1._jsxSorted(ElmAgUiInputContent, null, {
@@ -4673,7 +4010,7 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4673
4010
  };
4674
4011
  return /* @__PURE__ */ core$1._jsxSorted("div", {
4675
4012
  class: [
4676
- styles$n["elm-my-something"],
4013
+ styles$m["elm-my-something"],
4677
4014
  _rawProps.class
4678
4015
  ],
4679
4016
  style: core$1._wrapProp(_rawProps, "style")
@@ -4681,7 +4018,7 @@ const ElmAgUiMessageRenderer = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
4681
4018
  }, "ElmAgUiMessageRenderer_component_0OscNQKsfZA"));
4682
4019
  const messages = "_messages_q1w8g_20";
4683
4020
  const error$1 = "_error_q1w8g_27";
4684
- const styles$j = {
4021
+ const styles$i = {
4685
4022
  "elm-ag-ui-agent": "_elm-ag-ui-agent_q1w8g_1",
4686
4023
  "agent-container": "_agent-container_q1w8g_14",
4687
4024
  messages,
@@ -4693,13 +4030,13 @@ const styles$j = {
4693
4030
  "prompt-template-tip-icon": "_prompt-template-tip-icon_q1w8g_71",
4694
4031
  "clickable-icon": "_clickable-icon_q1w8g_84"
4695
4032
  };
4696
- const _hf0$f = (p0) => ({
4033
+ const _hf0$e = (p0) => ({
4697
4034
  "--agent-ui-width": p0.width ?? "clamp(300px, 100%, 600px)",
4698
4035
  ...p0.style
4699
4036
  });
4700
- const _hf1$7 = (p0) => p0.state.isRunning;
4701
- const _hf2$5 = (p0) => p0.state.messages;
4702
- const _hf3$4 = (p0) => p0.state.error;
4037
+ const _hf1$6 = (p0) => p0.state.isRunning;
4038
+ const _hf2$4 = (p0) => p0.state.messages;
4039
+ const _hf3$3 = (p0) => p0.state.error;
4703
4040
  const ElmAgUiAgent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
4704
4041
  const input2 = core$1.useSignal("");
4705
4042
  const containerRef = core$1.useSignal();
@@ -4757,32 +4094,32 @@ const ElmAgUiAgent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
4757
4094
  ]);
4758
4095
  return /* @__PURE__ */ core$1._jsxSorted("div", {
4759
4096
  class: [
4760
- styles$j["elm-ag-ui-agent"],
4097
+ styles$i["elm-ag-ui-agent"],
4761
4098
  props.class
4762
4099
  ],
4763
4100
  ref: containerRef,
4764
- style: core$1._fnSignal(_hf0$f, [
4101
+ style: core$1._fnSignal(_hf0$e, [
4765
4102
  props
4766
4103
  ])
4767
4104
  }, null, [
4768
4105
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4769
- class: styles$j["agent-container"]
4106
+ class: styles$i["agent-container"]
4770
4107
  }, /* @__PURE__ */ core$1._jsxSorted("div", null, {
4771
- class: styles$j["messages"]
4108
+ class: styles$i["messages"]
4772
4109
  }, [
4773
4110
  /* @__PURE__ */ core$1._jsxSorted(ElmAgUiMessageRenderer, {
4774
4111
  handleRetry$: props.retry$
4775
4112
  }, {
4776
- isRunning: core$1._fnSignal(_hf1$7, [
4113
+ isRunning: core$1._fnSignal(_hf1$6, [
4777
4114
  props
4778
4115
  ]),
4779
- messages: core$1._fnSignal(_hf2$5, [
4116
+ messages: core$1._fnSignal(_hf2$4, [
4780
4117
  props
4781
4118
  ])
4782
4119
  }, null, 2, "Oj_0"),
4783
4120
  props.state.error && /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, [
4784
4121
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4785
- class: styles$j["error"]
4122
+ class: styles$i["error"]
4786
4123
  }, [
4787
4124
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4788
4125
  d: js.mdiAlert,
@@ -4793,14 +4130,14 @@ const ElmAgUiAgent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
4793
4130
  }, null, 3, "Oj_1"),
4794
4131
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
4795
4132
  color: "var(--elmethis-color-accent-error)"
4796
- }, core$1._fnSignal(_hf3$4, [
4133
+ }, core$1._fnSignal(_hf3$3, [
4797
4134
  props
4798
4135
  ]), 1, "Oj_2")
4799
4136
  ], 1, null),
4800
4137
  /* @__PURE__ */ core$1._jsxSorted("span", {
4801
4138
  "q-e:click": props.retry$
4802
4139
  }, {
4803
- class: styles$j["clickable-icon"]
4140
+ class: styles$i["clickable-icon"]
4804
4141
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4805
4142
  d: js.mdiRefresh,
4806
4143
  size: "1.25rem"
@@ -4808,20 +4145,20 @@ const ElmAgUiAgent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
4808
4145
  ], 1, "Oj_4")
4809
4146
  ], 1, null), 1, null),
4810
4147
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
4811
- class: styles$j["agent-input-container"]
4148
+ class: styles$i["agent-input-container"]
4812
4149
  }, /* @__PURE__ */ core$1._jsxSorted("div", null, {
4813
- class: styles$j["agent-input"]
4150
+ class: styles$i["agent-input"]
4814
4151
  }, [
4815
4152
  !props.state.isRunning && /* @__PURE__ */ core$1._jsxSorted("div", null, {
4816
- class: styles$j["prompt-template-container"]
4153
+ class: styles$i["prompt-template-container"]
4817
4154
  }, props.state.promptTemplates.map((template, index) => /* @__PURE__ */ core$1._jsxSorted("span", {
4818
4155
  "data-template-index": index
4819
4156
  }, {
4820
- class: styles$j["prompt-template-tip"],
4157
+ class: styles$i["prompt-template-tip"],
4821
4158
  "q-e:click": onTemplateClick$
4822
4159
  }, [
4823
4160
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
4824
- class: styles$j["prompt-template-tip-icon"],
4161
+ class: styles$i["prompt-template-tip-icon"],
4825
4162
  d: js.mdiForumOutline
4826
4163
  }, null, 3, "Oj_5"),
4827
4164
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._wrapProp(template, "description"), 1, "Oj_6")
@@ -4832,7 +4169,7 @@ const ElmAgUiAgent = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
4832
4169
  }, {
4833
4170
  onInput$,
4834
4171
  onSubmit$,
4835
- isRunning: core$1._fnSignal(_hf1$7, [
4172
+ isRunning: core$1._fnSignal(_hf1$6, [
4836
4173
  props
4837
4174
  ]),
4838
4175
  prompts: core$1._wrapProp(props, "prompts")
@@ -5383,11 +4720,11 @@ function useMcpPrompts(options) {
5383
4720
  };
5384
4721
  }
5385
4722
  const parallax = "_parallax_z693a_1";
5386
- const styles$i = {
4723
+ const styles$h = {
5387
4724
  "parallax-watcher": "_parallax-watcher_z693a_1",
5388
4725
  parallax
5389
4726
  };
5390
- const _hf0$e = (p0, p1, p2) => ({
4727
+ const _hf0$d = (p0, p1, p2) => ({
5391
4728
  backgroundImage: `url(${p0})`,
5392
4729
  transform: `scale(1.2) translateY(${p2.value / (1e3 * (p1 + 1))}%)`,
5393
4730
  transformOrigin: "bottom"
@@ -5408,22 +4745,22 @@ const ElmParallax = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
5408
4745
  }, "ElmParallax_component_div_div_q_w_scroll_Xf5lDCA47z0"),
5409
4746
  "q:p": y
5410
4747
  }, {
5411
- class: styles$i["parallax-watcher"]
4748
+ class: styles$h["parallax-watcher"]
5412
4749
  }, null, 6, null),
5413
4750
  _rawProps.images.map((image2, index) => /* @__PURE__ */ core$1._jsxSorted("div", {
5414
- style: core$1._fnSignal(_hf0$e, [
4751
+ style: core$1._fnSignal(_hf0$d, [
5415
4752
  image2,
5416
4753
  index,
5417
4754
  y
5418
4755
  ])
5419
4756
  }, {
5420
- class: styles$i.parallax
4757
+ class: styles$h.parallax
5421
4758
  }, null, 3, index))
5422
4759
  ], 0, "sq_0");
5423
4760
  }, "ElmParallax_component_EJLLht8TfbM"));
5424
4761
  const tooltip = "_tooltip_1b13f_5";
5425
4762
  const show = "_show_1b13f_18";
5426
- const styles$h = {
4763
+ const styles$g = {
5427
4764
  "elm-tooltip": "_elm-tooltip_1b13f_1",
5428
4765
  tooltip,
5429
4766
  show
@@ -5482,7 +4819,7 @@ const ElmTooltip = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
5482
4819
  return /* @__PURE__ */ core$1._jsxSplit("span", {
5483
4820
  ref: elRef,
5484
4821
  class: [
5485
- styles$h["elm-tooltip"],
4822
+ styles$g["elm-tooltip"],
5486
4823
  _rawProps.class
5487
4824
  ],
5488
4825
  "q-e:mouseover": handleMouseOver,
@@ -5494,9 +4831,9 @@ const ElmTooltip = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
5494
4831
  }, null, 3, "Kf_0"),
5495
4832
  /* @__PURE__ */ core$1._jsxSorted("div", {
5496
4833
  class: [
5497
- styles$h.tooltip,
4834
+ styles$g.tooltip,
5498
4835
  {
5499
- [styles$h.show]: isHover.value
4836
+ [styles$g.show]: isHover.value
5500
4837
  }
5501
4838
  ]
5502
4839
  }, {
@@ -5506,15 +4843,15 @@ const ElmTooltip = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
5506
4843
  }, null, 3, "Kf_1"), 1, null)
5507
4844
  ], 0, "Kf_2");
5508
4845
  }, "ElmTooltip_component_7Z8Jw17rnA4"));
5509
- const styles$g = {
4846
+ const styles$f = {
5510
4847
  "elm-block-fallback": "_elm-block-fallback_1sx02_1"
5511
4848
  };
5512
4849
  const dot = "_dot_qjgj2_25";
5513
- const styles$f = {
4850
+ const styles$e = {
5514
4851
  "elm-dot-loading-icon": "_elm-dot-loading-icon_qjgj2_15",
5515
4852
  dot
5516
4853
  };
5517
- const _hf0$d = (p0) => ({
4854
+ const _hf0$c = (p0) => ({
5518
4855
  "--elmethis-scoped-size": p0.size ?? "4em",
5519
4856
  ...p0.style
5520
4857
  });
@@ -5526,29 +4863,29 @@ const ElmDotLoadingIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ co
5526
4863
  ]);
5527
4864
  return /* @__PURE__ */ core$1._jsxSplit("span", {
5528
4865
  class: [
5529
- styles$f["elm-dot-loading-icon"],
4866
+ styles$e["elm-dot-loading-icon"],
5530
4867
  _rawProps.class
5531
4868
  ],
5532
- style: core$1._fnSignal(_hf0$d, [
4869
+ style: core$1._fnSignal(_hf0$c, [
5533
4870
  _rawProps
5534
4871
  ]),
5535
4872
  ...core$1._getVarProps(props)
5536
4873
  }, core$1._getConstProps(props), [
5537
4874
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
5538
- class: styles$f.dot,
4875
+ class: styles$e.dot,
5539
4876
  "aria-hidden": "true"
5540
4877
  }, null, 3, null),
5541
4878
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
5542
- class: styles$f.dot,
4879
+ class: styles$e.dot,
5543
4880
  "aria-hidden": "true"
5544
4881
  }, null, 3, null),
5545
4882
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
5546
- class: styles$f.dot,
4883
+ class: styles$e.dot,
5547
4884
  "aria-hidden": "true"
5548
4885
  }, null, 3, null)
5549
4886
  ], 0, "Zs_0");
5550
4887
  }, "ElmDotLoadingIcon_component_xNGwJOdBjUI"));
5551
- const _hf0$c = (p0) => ({
4888
+ const _hf0$b = (p0) => ({
5552
4889
  "--elmethis-scoped-height": p0.height ?? "16rem",
5553
4890
  ...p0.style
5554
4891
  });
@@ -5560,10 +4897,10 @@ const ElmBlockFallback = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ cor
5560
4897
  ]);
5561
4898
  return /* @__PURE__ */ core$1._jsxSplit("div", {
5562
4899
  class: [
5563
- styles$g["elm-block-fallback"],
4900
+ styles$f["elm-block-fallback"],
5564
4901
  _rawProps.class
5565
4902
  ],
5566
- style: core$1._fnSignal(_hf0$c, [
4903
+ style: core$1._fnSignal(_hf0$b, [
5567
4904
  _rawProps
5568
4905
  ]),
5569
4906
  ...core$1._getVarProps(props)
@@ -5578,7 +4915,7 @@ const colored = "_colored_9qh0y_36";
5578
4915
  const enable = "_enable_9qh0y_40";
5579
4916
  const flex = "_flex_9qh0y_59";
5580
4917
  const ripple = "_ripple_9qh0y_83";
5581
- const styles$e = {
4918
+ const styles$d = {
5582
4919
  "elm-button": "_elm-button_9qh0y_1",
5583
4920
  normal,
5584
4921
  primary,
@@ -5614,11 +4951,11 @@ const ElmButton = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
5614
4951
  return /* @__PURE__ */ core$1._jsxSplit("button", {
5615
4952
  "q-e:click": handleClick,
5616
4953
  class: [
5617
- styles$e["elm-button"],
5618
- !props.isLoading && !rest.disabled && styles$e.enable,
5619
- props.color && styles$e.colored,
5620
- !props.color && !props.primary && styles$e.normal,
5621
- !props.color && props.primary && styles$e.primary,
4954
+ styles$d["elm-button"],
4955
+ !props.isLoading && !rest.disabled && styles$d.enable,
4956
+ props.color && styles$d.colored,
4957
+ !props.color && !props.primary && styles$d.normal,
4958
+ !props.color && props.primary && styles$d.primary,
5622
4959
  props.class
5623
4960
  ],
5624
4961
  style: {
@@ -5632,12 +4969,12 @@ const ElmButton = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
5632
4969
  ...core$1._getVarProps(rest)
5633
4970
  }, core$1._getConstProps(rest), [
5634
4971
  clicked.value && /* @__PURE__ */ core$1._jsxSorted("span", null, {
5635
- class: styles$e.ripple
4972
+ class: styles$d.ripple
5636
4973
  }, null, 3, "3N_0"),
5637
4974
  props.isLoading ? /* @__PURE__ */ core$1._jsxSorted(ElmDotLoadingIcon, null, {
5638
4975
  size: "1.5rem"
5639
4976
  }, null, 3, "3N_1") : /* @__PURE__ */ core$1._jsxSorted("span", null, {
5640
- class: styles$e.flex
4977
+ class: styles$d.flex
5641
4978
  }, /* @__PURE__ */ core$1._jsxSorted(core$1.Slot, null, null, null, 3, "3N_2"), 1, "3N_3")
5642
4979
  ], 0, "3N_4");
5643
4980
  }, "ElmButton_component_f1UuOse0UGw"));
@@ -5646,7 +4983,7 @@ const checkbox = "_checkbox_18dfs_22";
5646
4983
  const rect = "_rect_18dfs_27";
5647
4984
  const loading$2 = "_loading_18dfs_30";
5648
4985
  const checked$1 = "_checked_18dfs_34";
5649
- const styles$d = {
4986
+ const styles$c = {
5650
4987
  "elm-checkbox": "_elm-checkbox_18dfs_1",
5651
4988
  disabled: disabled$4,
5652
4989
  checkbox,
@@ -5656,7 +4993,7 @@ const styles$d = {
5656
4993
  "loading-dot": "_loading-dot_18dfs_39",
5657
4994
  "check-line": "_check-line_18dfs_54"
5658
4995
  };
5659
- const _hf0$b = (p0) => ({
4996
+ const _hf0$a = (p0) => ({
5660
4997
  opacity: p0.isLoading ? 1 : 0
5661
4998
  });
5662
4999
  const ElmCheckbox = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
@@ -5674,8 +5011,8 @@ const ElmCheckbox = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
5674
5011
  });
5675
5012
  return /* @__PURE__ */ core$1._jsxSplit("div", {
5676
5013
  class: [
5677
- styles$d["elm-checkbox"],
5678
- props.disabled && styles$d.disabled,
5014
+ styles$c["elm-checkbox"],
5015
+ props.disabled && styles$c.disabled,
5679
5016
  props.class
5680
5017
  ],
5681
5018
  "q-e:click": /* @__PURE__ */ core$1.inlinedQrl(() => {
@@ -5698,17 +5035,17 @@ const ElmCheckbox = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
5698
5035
  /* @__PURE__ */ core$1._jsxSorted("svg", null, {
5699
5036
  width: "24",
5700
5037
  height: "24",
5701
- class: styles$d.checkbox
5038
+ class: styles$c.checkbox
5702
5039
  }, [
5703
5040
  /* @__PURE__ */ core$1._jsxSorted("circle", {
5704
- style: core$1._fnSignal(_hf0$b, [
5041
+ style: core$1._fnSignal(_hf0$a, [
5705
5042
  props
5706
5043
  ])
5707
5044
  }, {
5708
5045
  cx: "0",
5709
5046
  cy: "0",
5710
5047
  r: "2",
5711
- class: styles$d["loading-dot"]
5048
+ class: styles$c["loading-dot"]
5712
5049
  }, [
5713
5050
  /* @__PURE__ */ core$1._jsxSorted("animate", null, {
5714
5051
  attributeName: "cx",
@@ -5728,14 +5065,14 @@ const ElmCheckbox = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
5728
5065
  }, null, 3, null)
5729
5066
  ], 3, null),
5730
5067
  /* @__PURE__ */ core$1._jsxSorted("circle", {
5731
- style: core$1._fnSignal(_hf0$b, [
5068
+ style: core$1._fnSignal(_hf0$a, [
5732
5069
  props
5733
5070
  ])
5734
5071
  }, {
5735
5072
  cx: "20",
5736
5073
  cy: "20",
5737
5074
  r: "2",
5738
- class: styles$d["loading-dot"]
5075
+ class: styles$c["loading-dot"]
5739
5076
  }, [
5740
5077
  /* @__PURE__ */ core$1._jsxSorted("animate", null, {
5741
5078
  attributeName: "cx",
@@ -5756,9 +5093,9 @@ const ElmCheckbox = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
5756
5093
  ], 3, null),
5757
5094
  /* @__PURE__ */ core$1._jsxSorted("rect", {
5758
5095
  class: [
5759
- styles$d.rect,
5760
- isChecked.value && styles$d.checked,
5761
- props.isLoading && styles$d.loading
5096
+ styles$c.rect,
5097
+ isChecked.value && styles$c.checked,
5098
+ props.isLoading && styles$c.loading
5762
5099
  ]
5763
5100
  }, {
5764
5101
  x: "4",
@@ -5768,7 +5105,7 @@ const ElmCheckbox = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
5768
5105
  "stroke-width": "0.8"
5769
5106
  }, null, 3, null),
5770
5107
  isChecked.value && /* @__PURE__ */ core$1._jsxSorted("polyline", null, {
5771
- class: styles$d["check-line"],
5108
+ class: styles$c["check-line"],
5772
5109
  points: "5,12 10,17 19,8",
5773
5110
  "stroke-width": "1.5",
5774
5111
  fill: "transparent"
@@ -5842,7 +5179,7 @@ const body$3 = "_body_1u7w1_49";
5842
5179
  const fallback = "_fallback_1u7w1_66";
5843
5180
  const pulldown = "_pulldown_1u7w1_74";
5844
5181
  const option = "_option_1u7w1_59";
5845
- const styles$c = {
5182
+ const styles$b = {
5846
5183
  "elm-select": "_elm-select_1u7w1_1",
5847
5184
  disabled: disabled$3,
5848
5185
  active: active$2,
@@ -5855,9 +5192,9 @@ const styles$c = {
5855
5192
  pulldown,
5856
5193
  option
5857
5194
  };
5858
- const _hf0$a = (p0) => p0.value.icon;
5859
- const _hf1$6 = (p0) => p0.value.label;
5860
- const _hf2$4 = (p0) => p0.placeholder ?? "Select an option";
5195
+ const _hf0$9 = (p0) => p0.value.icon;
5196
+ const _hf1$5 = (p0) => p0.value.label;
5197
+ const _hf2$3 = (p0) => p0.placeholder ?? "Select an option";
5861
5198
  const ElmSelect = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
5862
5199
  const rest = core$1._restProps(props, [
5863
5200
  "class",
@@ -5895,11 +5232,11 @@ const ElmSelect = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
5895
5232
  return /* @__PURE__ */ core$1._jsxSplit("div", {
5896
5233
  ref: containerRef,
5897
5234
  class: [
5898
- styles$c["elm-select"],
5899
- isOpen.value && styles$c.active,
5235
+ styles$b["elm-select"],
5236
+ isOpen.value && styles$b.active,
5900
5237
  props.class,
5901
5238
  {
5902
- [styles$c.disabled]: props.disabled || props.isLoading
5239
+ [styles$b.disabled]: props.disabled || props.isLoading
5903
5240
  }
5904
5241
  ],
5905
5242
  style: core$1._wrapProp(props, "style"),
@@ -5916,9 +5253,9 @@ const ElmSelect = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
5916
5253
  }, core$1._getConstProps(rest), [
5917
5254
  /* @__PURE__ */ core$1._jsxSorted("span", {
5918
5255
  class: [
5919
- styles$c.label,
5256
+ styles$b.label,
5920
5257
  {
5921
- [styles$c["label-active"]]: isOpen.value
5258
+ [styles$b["label-active"]]: isOpen.value
5922
5259
  }
5923
5260
  ]
5924
5261
  }, null, [
@@ -5931,27 +5268,27 @@ const ElmSelect = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
5931
5268
  core$1._wrapProp(props, "label")
5932
5269
  ], 1, null),
5933
5270
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
5934
- class: styles$c.body
5271
+ class: styles$b.body
5935
5272
  }, [
5936
5273
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
5937
5274
  class: [
5938
- styles$c["selected-option"],
5275
+ styles$b["selected-option"],
5939
5276
  textStyles.text
5940
5277
  ]
5941
5278
  }, selectedOption.value ? /* @__PURE__ */ core$1._jsxSorted("div", null, {
5942
- class: styles$c["option-content"]
5279
+ class: styles$b["option-content"]
5943
5280
  }, [
5944
5281
  selectedOption.value.icon && /* @__PURE__ */ core$1._jsxSorted(ElmInlineIcon, null, {
5945
- src: core$1._fnSignal(_hf0$a, [
5282
+ src: core$1._fnSignal(_hf0$9, [
5946
5283
  selectedOption
5947
5284
  ])
5948
5285
  }, null, 3, "5b_2"),
5949
- /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._fnSignal(_hf1$6, [
5286
+ /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._fnSignal(_hf1$5, [
5950
5287
  selectedOption
5951
5288
  ]), 3, "5b_3")
5952
5289
  ], 1, selectedOption.value.id) : /* @__PURE__ */ core$1._jsxSorted("div", null, {
5953
- class: styles$c.fallback
5954
- }, /* @__PURE__ */ core$1._jsxSorted("span", null, null, core$1._fnSignal(_hf2$4, [
5290
+ class: styles$b.fallback
5291
+ }, /* @__PURE__ */ core$1._jsxSorted("span", null, null, core$1._fnSignal(_hf2$3, [
5955
5292
  props
5956
5293
  ]), 1, null), 1, "5b_4"), 1, null),
5957
5294
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
@@ -5960,7 +5297,7 @@ const ElmSelect = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
5960
5297
  }, null, 3, "5b_5"),
5961
5298
  /* @__PURE__ */ core$1._jsxSorted(ElmCollapse, null, {
5962
5299
  isOpen: core$1._wrapProp(isOpen),
5963
- class: styles$c.pulldown
5300
+ class: styles$b.pulldown
5964
5301
  }, props.options.map((option2) => {
5965
5302
  const qrl_4294901762 = /* @__PURE__ */ core$1.inlinedQrl((e, _1, option22) => {
5966
5303
  const isOpen2 = core$1._captures[0], props2 = core$1._captures[1];
@@ -5976,7 +5313,7 @@ const ElmSelect = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
5976
5313
  "q:p": option2
5977
5314
  }, {
5978
5315
  class: [
5979
- styles$c.option,
5316
+ styles$b.option,
5980
5317
  textStyles.text
5981
5318
  ]
5982
5319
  }, [
@@ -5998,14 +5335,14 @@ const bar = "_bar_9s4vz_5";
5998
5335
  const checked = "_checked_9s4vz_21";
5999
5336
  const disabled$2 = "_disabled_9s4vz_26";
6000
5337
  const circle = "_circle_9s4vz_31";
6001
- const styles$b = {
5338
+ const styles$a = {
6002
5339
  "switch": "_switch_9s4vz_1",
6003
5340
  bar,
6004
5341
  checked,
6005
5342
  disabled: disabled$2,
6006
5343
  circle
6007
5344
  };
6008
- const _hf0$9 = (p0) => p0.checked.value;
5345
+ const _hf0$8 = (p0) => p0.checked.value;
6009
5346
  const ElmSwitch = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
6010
5347
  const rest = core$1._restProps(props, [
6011
5348
  "class",
@@ -6037,25 +5374,25 @@ const ElmSwitch = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inl
6037
5374
  ...core$1._getVarProps(rest)
6038
5375
  }, core$1._getConstProps(rest), [
6039
5376
  /* @__PURE__ */ core$1._jsxSorted("input", {
6040
- checked: core$1._fnSignal(_hf0$9, [
5377
+ checked: core$1._fnSignal(_hf0$8, [
6041
5378
  props
6042
5379
  ]),
6043
5380
  disabled: core$1._wrapProp(props, "disabled")
6044
5381
  }, {
6045
- class: styles$b.switch,
5382
+ class: styles$a.switch,
6046
5383
  type: "checkbox"
6047
5384
  }, null, 3, null),
6048
5385
  /* @__PURE__ */ core$1._jsxSorted("div", {
6049
5386
  class: [
6050
- styles$b.bar,
6051
- props.checked.value && styles$b.checked,
6052
- props.disabled && styles$b.disabled
5387
+ styles$a.bar,
5388
+ props.checked.value && styles$a.checked,
5389
+ props.disabled && styles$a.disabled
6053
5390
  ]
6054
5391
  }, null, /* @__PURE__ */ core$1._jsxSorted("div", {
6055
5392
  class: [
6056
- styles$b.circle,
6057
- props.checked.value && styles$b.checked,
6058
- props.disabled && styles$b.disabled
5393
+ styles$a.circle,
5394
+ props.checked.value && styles$a.checked,
5395
+ props.disabled && styles$a.disabled
6059
5396
  ]
6060
5397
  }, null, null, 3, null), 1, null)
6061
5398
  ], 0, "hS_0");
@@ -6067,7 +5404,7 @@ const header$2 = "_header_lgmx3_72";
6067
5404
  const requierd$1 = "_requierd_lgmx3_90";
6068
5405
  const body$2 = "_body_lgmx3_96";
6069
5406
  const textarea = "_textarea_lgmx3_101";
6070
- const styles$a = {
5407
+ const styles$9 = {
6071
5408
  loading: loading$1,
6072
5409
  "elm-text-area": "_elm-text-area_lgmx3_37",
6073
5410
  disabled: disabled$1,
@@ -6078,15 +5415,15 @@ const styles$a = {
6078
5415
  body: body$2,
6079
5416
  textarea
6080
5417
  };
6081
- const _hf0$8 = (p0) => p0.maxLength != null && p0.value.value.length > p0.maxLength ? "var(--elmethis-color-accent-error)" : "gray";
6082
- const _hf1$5 = (p0) => p0.maxLength != null ? `${p0.value.value.length} / ${p0.maxLength}` : `${p0.value.value.length}`;
6083
- const _hf2$3 = (p0) => p0.value?.value;
6084
- const _hf3$3 = (p0) => p0.rows ?? 3;
6085
- const _hf4$2 = (p0) => p0.disabled || p0.isLoading;
6086
- const _hf5$2 = (p0) => ({
5418
+ const _hf0$7 = (p0) => p0.maxLength != null && p0.value.value.length > p0.maxLength ? "var(--elmethis-color-accent-error)" : "gray";
5419
+ const _hf1$4 = (p0) => p0.maxLength != null ? `${p0.value.value.length} / ${p0.maxLength}` : `${p0.value.value.length}`;
5420
+ const _hf2$2 = (p0) => p0.value?.value;
5421
+ const _hf3$2 = (p0) => p0.rows ?? 3;
5422
+ const _hf4$1 = (p0) => p0.disabled || p0.isLoading;
5423
+ const _hf5$1 = (p0) => ({
6087
5424
  cursor: p0.disabled ? "not-allowed" : p0.isLoading ? "progress" : "auto"
6088
5425
  });
6089
- const _hf6$1 = (p0) => ({
5426
+ const _hf6 = (p0) => ({
6090
5427
  opacity: p0.isLoading ? 1 : 0
6091
5428
  });
6092
5429
  const ElmTextArea = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
@@ -6105,11 +5442,11 @@ const ElmTextArea = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
6105
5442
  const isFocused = core$1.useSignal(false);
6106
5443
  return /* @__PURE__ */ core$1._jsxSplit("label", {
6107
5444
  class: [
6108
- styles$a["elm-text-area"],
6109
- isFocused.value && styles$a.active,
5445
+ styles$9["elm-text-area"],
5446
+ isFocused.value && styles$9.active,
6110
5447
  props.class,
6111
5448
  {
6112
- [styles$a.disabled]: props.disabled || props.isLoading
5449
+ [styles$9.disabled]: props.disabled || props.isLoading
6113
5450
  }
6114
5451
  ],
6115
5452
  style: core$1._wrapProp(props, "style"),
@@ -6117,9 +5454,9 @@ const ElmTextArea = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
6117
5454
  }, core$1._getConstProps(rest), [
6118
5455
  /* @__PURE__ */ core$1._jsxSorted("span", {
6119
5456
  class: [
6120
- styles$a.header,
5457
+ styles$9.header,
6121
5458
  {
6122
- [styles$a["label-active"]]: isFocused.value
5459
+ [styles$9["label-active"]]: isFocused.value
6123
5460
  }
6124
5461
  ]
6125
5462
  }, null, [
@@ -6132,23 +5469,23 @@ const ElmTextArea = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
6132
5469
  /* @__PURE__ */ core$1._jsxSorted("span", null, null, [
6133
5470
  core$1._wrapProp(props, "label"),
6134
5471
  props.required && /* @__PURE__ */ core$1._jsxSorted("span", null, {
6135
- class: styles$a.requierd
5472
+ class: styles$9.requierd
6136
5473
  }, "*", 3, "RT_2")
6137
5474
  ], 1, null),
6138
5475
  props.value != null && /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
6139
- color: core$1._fnSignal(_hf0$8, [
5476
+ color: core$1._fnSignal(_hf0$7, [
6140
5477
  props
6141
5478
  ]),
6142
5479
  size: "0.75rem"
6143
- }, core$1._fnSignal(_hf1$5, [
5480
+ }, core$1._fnSignal(_hf1$4, [
6144
5481
  props
6145
5482
  ]), 1, "RT_3")
6146
5483
  ], 1, null),
6147
5484
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
6148
- class: styles$a.body
5485
+ class: styles$9.body
6149
5486
  }, /* @__PURE__ */ core$1._jsxSorted("textarea", {
6150
5487
  "aria-required": core$1._wrapProp(props, "required"),
6151
- disabled: core$1._fnSignal(_hf4$2, [
5488
+ disabled: core$1._fnSignal(_hf4$1, [
6152
5489
  props
6153
5490
  ]),
6154
5491
  placeholder: core$1._wrapProp(props, "placeholder"),
@@ -6161,24 +5498,24 @@ const ElmTextArea = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.i
6161
5498
  props
6162
5499
  ]),
6163
5500
  "q:p": isFocused,
6164
- rows: core$1._fnSignal(_hf3$3, [
5501
+ rows: core$1._fnSignal(_hf3$2, [
6165
5502
  props
6166
5503
  ]),
6167
- style: core$1._fnSignal(_hf5$2, [
5504
+ style: core$1._fnSignal(_hf5$1, [
6168
5505
  props
6169
5506
  ]),
6170
- value: core$1._fnSignal(_hf2$3, [
5507
+ value: core$1._fnSignal(_hf2$2, [
6171
5508
  props
6172
5509
  ])
6173
5510
  }, {
6174
- class: styles$a.textarea
5511
+ class: styles$9.textarea
6175
5512
  }, null, 6, null), 1, null),
6176
5513
  /* @__PURE__ */ core$1._jsxSorted("div", {
6177
- style: core$1._fnSignal(_hf6$1, [
5514
+ style: core$1._fnSignal(_hf6, [
6178
5515
  props
6179
5516
  ])
6180
5517
  }, {
6181
- class: styles$a.loading
5518
+ class: styles$9.loading
6182
5519
  }, null, 3, null)
6183
5520
  ], 0, "RT_4");
6184
5521
  }, "ElmTextArea_component_eI5Hurm0OV8"));
@@ -6189,7 +5526,7 @@ const header$1 = "_header_11box_68";
6189
5526
  const requierd = "_requierd_11box_86";
6190
5527
  const body$1 = "_body_11box_92";
6191
5528
  const input = "_input_11box_100";
6192
- const styles$9 = {
5529
+ const styles$8 = {
6193
5530
  loading,
6194
5531
  "elm-text-field": "_elm-text-field_11box_37",
6195
5532
  disabled,
@@ -6203,14 +5540,14 @@ const styles$9 = {
6203
5540
  "clickable-icon": "_clickable-icon_11box_126",
6204
5541
  "prefix-suffix": "_prefix-suffix_11box_142"
6205
5542
  };
6206
- const _hf0$7 = (p0) => p0.maxLength != null && p0.value.value.length > p0.maxLength ? "var(--elmethis-color-accent-error)" : "gray";
6207
- const _hf1$4 = (p0) => p0.maxLength != null ? `${p0.value.value.length} / ${p0.maxLength}` : `${p0.value.value.length}`;
6208
- const _hf2$2 = (p0) => p0.value?.value;
6209
- const _hf3$2 = (p0) => p0.disabled || p0.isLoading;
6210
- const _hf4$1 = (p0) => ({
5543
+ const _hf0$6 = (p0) => p0.maxLength != null && p0.value.value.length > p0.maxLength ? "var(--elmethis-color-accent-error)" : "gray";
5544
+ const _hf1$3 = (p0) => p0.maxLength != null ? `${p0.value.value.length} / ${p0.maxLength}` : `${p0.value.value.length}`;
5545
+ const _hf2$1 = (p0) => p0.value?.value;
5546
+ const _hf3$1 = (p0) => p0.disabled || p0.isLoading;
5547
+ const _hf4 = (p0) => ({
6211
5548
  cursor: p0.disabled ? "not-allowed" : p0.isLoading ? "progress" : "auto"
6212
5549
  });
6213
- const _hf5$1 = (p0) => ({
5550
+ const _hf5 = (p0) => ({
6214
5551
  opacity: p0.isLoading ? 1 : 0
6215
5552
  });
6216
5553
  const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
@@ -6232,11 +5569,11 @@ const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
6232
5569
  const inputType = core$1.useSignal(props.isPassword ? "password" : "text");
6233
5570
  return /* @__PURE__ */ core$1._jsxSplit("label", {
6234
5571
  class: [
6235
- styles$9["elm-text-field"],
6236
- isFocused.value && styles$9.active,
5572
+ styles$8["elm-text-field"],
5573
+ isFocused.value && styles$8.active,
6237
5574
  props.class,
6238
5575
  {
6239
- [styles$9.disabled]: props.disabled || props.isLoading
5576
+ [styles$8.disabled]: props.disabled || props.isLoading
6240
5577
  }
6241
5578
  ],
6242
5579
  style: core$1._wrapProp(props, "style"),
@@ -6244,9 +5581,9 @@ const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
6244
5581
  }, core$1._getConstProps(rest), [
6245
5582
  /* @__PURE__ */ core$1._jsxSorted("span", {
6246
5583
  class: [
6247
- styles$9.header,
5584
+ styles$8.header,
6248
5585
  {
6249
- [styles$9["label-active"]]: isFocused.value
5586
+ [styles$8["label-active"]]: isFocused.value
6250
5587
  }
6251
5588
  ]
6252
5589
  }, null, [
@@ -6259,27 +5596,27 @@ const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
6259
5596
  /* @__PURE__ */ core$1._jsxSorted("span", null, null, [
6260
5597
  core$1._wrapProp(props, "label"),
6261
5598
  props.required && /* @__PURE__ */ core$1._jsxSorted("span", null, {
6262
- class: styles$9.requierd
5599
+ class: styles$8.requierd
6263
5600
  }, "*", 3, "3a_2")
6264
5601
  ], 1, null),
6265
5602
  props.value != null && /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
6266
- color: core$1._fnSignal(_hf0$7, [
5603
+ color: core$1._fnSignal(_hf0$6, [
6267
5604
  props
6268
5605
  ]),
6269
5606
  size: "0.75rem"
6270
- }, core$1._fnSignal(_hf1$4, [
5607
+ }, core$1._fnSignal(_hf1$3, [
6271
5608
  props
6272
5609
  ]), 1, "3a_3")
6273
5610
  ], 1, null),
6274
5611
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
6275
- class: styles$9.body
5612
+ class: styles$8.body
6276
5613
  }, [
6277
5614
  props.prefix && /* @__PURE__ */ core$1._jsxSorted("span", null, {
6278
- class: styles$9["prefix-suffix"]
5615
+ class: styles$8["prefix-suffix"]
6279
5616
  }, core$1._wrapProp(props, "prefix"), 1, "3a_4"),
6280
5617
  /* @__PURE__ */ core$1._jsxSorted("input", {
6281
5618
  "aria-required": core$1._wrapProp(props, "required"),
6282
- disabled: core$1._fnSignal(_hf3$2, [
5619
+ disabled: core$1._fnSignal(_hf3$1, [
6283
5620
  props
6284
5621
  ]),
6285
5622
  placeholder: core$1._wrapProp(props, "placeholder"),
@@ -6292,21 +5629,21 @@ const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
6292
5629
  props
6293
5630
  ]),
6294
5631
  "q:p": isFocused,
6295
- style: core$1._fnSignal(_hf4$1, [
5632
+ style: core$1._fnSignal(_hf4, [
6296
5633
  props
6297
5634
  ]),
6298
- value: core$1._fnSignal(_hf2$2, [
5635
+ value: core$1._fnSignal(_hf2$1, [
6299
5636
  props
6300
5637
  ])
6301
5638
  }, {
6302
5639
  type: core$1._wrapProp(inputType),
6303
- class: styles$9.input
5640
+ class: styles$8.input
6304
5641
  }, null, 6, null),
6305
5642
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
6306
- class: styles$9["right-icon-box"]
5643
+ class: styles$8["right-icon-box"]
6307
5644
  }, [
6308
5645
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
6309
- class: styles$9["prefix-suffix"]
5646
+ class: styles$8["prefix-suffix"]
6310
5647
  }, props.suffix != null && /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, null, core$1._wrapProp(props, "suffix"), 1, "3a_5"), 1, null),
6311
5648
  /* @__PURE__ */ core$1._jsxSorted("div", {
6312
5649
  "q-e:click": /* @__PURE__ */ core$1.inlinedQrl(() => {
@@ -6319,7 +5656,7 @@ const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
6319
5656
  props
6320
5657
  ])
6321
5658
  }, {
6322
- class: styles$9["clickable-icon"]
5659
+ class: styles$8["clickable-icon"]
6323
5660
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
6324
5661
  d: inputType.value === "text" ? js.mdiEyeOutline : js.mdiEyeOffOutline
6325
5662
  }, {
@@ -6336,7 +5673,7 @@ const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
6336
5673
  props
6337
5674
  ])
6338
5675
  }, {
6339
- class: styles$9["clickable-icon"]
5676
+ class: styles$8["clickable-icon"]
6340
5677
  }, /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
6341
5678
  d: js.mdiTrashCanOutline,
6342
5679
  size: "1.25rem",
@@ -6345,22 +5682,22 @@ const ElmTextField = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.
6345
5682
  ], 1, null)
6346
5683
  ], 1, null),
6347
5684
  /* @__PURE__ */ core$1._jsxSorted("div", {
6348
- style: core$1._fnSignal(_hf5$1, [
5685
+ style: core$1._fnSignal(_hf5, [
6349
5686
  props
6350
5687
  ])
6351
5688
  }, {
6352
- class: styles$9.loading
5689
+ class: styles$8.loading
6353
5690
  }, null, 3, null)
6354
5691
  ], 0, "3a_8");
6355
5692
  }, "ElmTextField_component_7yeLskO1oF0"));
6356
- const styles$8 = {
5693
+ const styles$7 = {
6357
5694
  "elm-validation": "_elm-validation_1cigg_1"
6358
5695
  };
6359
- const _hf0$6 = (p0) => ({
5696
+ const _hf0$5 = (p0) => ({
6360
5697
  "--elmethis-scoped-opacity": p0.isValid ? 1 : 0.5,
6361
5698
  ...p0.style
6362
5699
  });
6363
- const _hf1$3 = (p0) => p0.isValid ? p0.validColor ?? "var(--elmethis-color-accent-success)" : void 0;
5700
+ const _hf1$2 = (p0) => p0.isValid ? p0.validColor ?? "var(--elmethis-color-accent-success)" : void 0;
6364
5701
  const ElmValidation = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
6365
5702
  const props = core$1._restProps(_rawProps, [
6366
5703
  "class",
@@ -6371,10 +5708,10 @@ const ElmValidation = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
6371
5708
  ]);
6372
5709
  return /* @__PURE__ */ core$1._jsxSplit("div", {
6373
5710
  class: [
6374
- styles$8["elm-validation"],
5711
+ styles$7["elm-validation"],
6375
5712
  _rawProps.class
6376
5713
  ],
6377
- style: core$1._fnSignal(_hf0$6, [
5714
+ style: core$1._fnSignal(_hf0$5, [
6378
5715
  _rawProps
6379
5716
  ]),
6380
5717
  ...core$1._getVarProps(props)
@@ -6382,12 +5719,12 @@ const ElmValidation = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
6382
5719
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
6383
5720
  d: _rawProps.isValid ? js.mdiCheckCircle : js.mdiCheckCircleOutline
6384
5721
  }, {
6385
- color: core$1._fnSignal(_hf1$3, [
5722
+ color: core$1._fnSignal(_hf1$2, [
6386
5723
  _rawProps
6387
5724
  ])
6388
5725
  }, null, 3, "fb_0"),
6389
5726
  /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
6390
- color: core$1._fnSignal(_hf1$3, [
5727
+ color: core$1._fnSignal(_hf1$2, [
6391
5728
  _rawProps
6392
5729
  ])
6393
5730
  }, core$1._wrapProp(_rawProps, "text"), 1, "fb_1")
@@ -6917,11 +6254,11 @@ const useSessionStorage = (_rawProps) => {
6917
6254
  });
6918
6255
  };
6919
6256
  const square = "_square_m72nq_28";
6920
- const styles$7 = {
6257
+ const styles$6 = {
6921
6258
  "elm-square-loading-icon": "_elm-square-loading-icon_m72nq_19",
6922
6259
  square
6923
6260
  };
6924
- const _hf0$5 = (p0) => ({
6261
+ const _hf0$4 = (p0) => ({
6925
6262
  "--elmethis-scoped-size": p0.size ?? "3rem",
6926
6263
  "--elmethis-scoped-dimensions": p0.dimensions ?? 4,
6927
6264
  "--elmethis-scoped-duration": `${1200}ms`,
@@ -6937,10 +6274,10 @@ const ElmSquareLoadingIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
6937
6274
  const DELAY = 1200 / ((_rawProps.dimensions ?? 4) * 3);
6938
6275
  return /* @__PURE__ */ core$1._jsxSplit("span", {
6939
6276
  class: [
6940
- styles$7["elm-square-loading-icon"],
6277
+ styles$6["elm-square-loading-icon"],
6941
6278
  _rawProps.class
6942
6279
  ],
6943
- style: core$1._fnSignal(_hf0$5, [
6280
+ style: core$1._fnSignal(_hf0$4, [
6944
6281
  _rawProps
6945
6282
  ]),
6946
6283
  ...core$1._getVarProps(props)
@@ -6949,26 +6286,26 @@ const ElmSquareLoadingIcon = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */
6949
6286
  "--elmethis-scoped-delay": `${DELAY * (rowIndex + columnIndex)}ms`
6950
6287
  }
6951
6288
  }, {
6952
- class: styles$7.square
6289
+ class: styles$6.square
6953
6290
  }, null, 3, `${rowIndex}-${columnIndex}`))), 0, "dY_0");
6954
6291
  }, "ElmSquareLoadingIcon_component_URq2y0Vp5Ws"));
6955
- const styles$6 = {
6292
+ const styles$5 = {
6956
6293
  "elm-toggle-theme": "_elm-toggle-theme_11awq_1"
6957
6294
  };
6958
- const _hf0$4 = (p0) => p0.size ?? "2rem";
6295
+ const _hf0$3 = (p0) => p0.size ?? "2rem";
6959
6296
  const ElmToggleTheme = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((_rawProps) => {
6960
6297
  const elmethistheme = useElmethisTheme();
6961
6298
  return /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, !elmethistheme.isDarkTheme.value ? /* @__PURE__ */ core$1._jsxSorted("svg", {
6962
6299
  class: [
6963
- styles$6["elm-toggle-theme"],
6300
+ styles$5["elm-toggle-theme"],
6964
6301
  _rawProps.class
6965
6302
  ],
6966
- height: core$1._fnSignal(_hf0$4, [
6303
+ height: core$1._fnSignal(_hf0$3, [
6967
6304
  _rawProps
6968
6305
  ]),
6969
6306
  "q-e:click": elmethistheme.toggleTheme,
6970
6307
  style: core$1._wrapProp(_rawProps, "style"),
6971
- width: core$1._fnSignal(_hf0$4, [
6308
+ width: core$1._fnSignal(_hf0$3, [
6972
6309
  _rawProps
6973
6310
  ])
6974
6311
  }, {
@@ -7164,15 +6501,15 @@ const ElmToggleTheme = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$
7164
6501
  ], 3, null)
7165
6502
  ], 2, "7Z_0") : /* @__PURE__ */ core$1._jsxSorted("svg", {
7166
6503
  class: [
7167
- styles$6["elm-toggle-theme"],
6504
+ styles$5["elm-toggle-theme"],
7168
6505
  _rawProps.class
7169
6506
  ],
7170
- height: core$1._fnSignal(_hf0$4, [
6507
+ height: core$1._fnSignal(_hf0$3, [
7171
6508
  _rawProps
7172
6509
  ]),
7173
6510
  "q-e:click": elmethistheme.toggleTheme,
7174
6511
  style: core$1._wrapProp(_rawProps, "style"),
7175
- width: core$1._fnSignal(_hf0$4, [
6512
+ width: core$1._fnSignal(_hf0$3, [
7176
6513
  _rawProps
7177
6514
  ])
7178
6515
  }, {
@@ -7408,7 +6745,7 @@ const ElmToggleTheme = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$
7408
6745
  const icon = "_icon_13oke_23";
7409
6746
  const chunk = "_chunk_13oke_36";
7410
6747
  const chevron = "_chevron_13oke_41";
7411
- const styles$5 = {
6748
+ const styles$4 = {
7412
6749
  "elm-breadcrumb": "_elm-breadcrumb_13oke_1",
7413
6750
  "link-container": "_link-container_13oke_9",
7414
6751
  icon,
@@ -7422,7 +6759,7 @@ const ElmBreadcrumb = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
7422
6759
  ]);
7423
6760
  return /* @__PURE__ */ core$1._jsxSplit("nav", {
7424
6761
  class: [
7425
- styles$5["elm-breadcrumb"],
6762
+ styles$4["elm-breadcrumb"],
7426
6763
  _rawProps.class
7427
6764
  ],
7428
6765
  ...core$1._getVarProps(props)
@@ -7430,20 +6767,20 @@ const ElmBreadcrumb = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
7430
6767
  /* @__PURE__ */ core$1._jsxSorted("span", {
7431
6768
  "q-e:click": link2.onClick$
7432
6769
  }, {
7433
- class: styles$5["link-container"]
6770
+ class: styles$4["link-container"]
7434
6771
  }, [
7435
6772
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
7436
6773
  d: index === 0 ? js.mdiHome : index === _rawProps.links.length - 1 ? js.mdiApplicationOutline : js.mdiFolderOpen
7437
6774
  }, {
7438
- class: styles$5.icon,
6775
+ class: styles$4.icon,
7439
6776
  size: "1rem"
7440
6777
  }, null, 3, "wL_0"),
7441
6778
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7442
- class: styles$5.chunk
6779
+ class: styles$4.chunk
7443
6780
  }, core$1._wrapProp(link2, "text"), 1, null)
7444
6781
  ], 0, null),
7445
6782
  _rawProps.links.length !== index + 1 && /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, null, {
7446
- class: styles$5.chevron,
6783
+ class: styles$4.chevron,
7447
6784
  d: js.mdiChevronRight,
7448
6785
  size: "1rem"
7449
6786
  }, null, 3, "wL_1")
@@ -7452,13 +6789,13 @@ const ElmBreadcrumb = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1
7452
6789
  const visible = "_visible_18d6m_30";
7453
6790
  const partial = "_partial_18d6m_37";
7454
6791
  const text = "_text_18d6m_74";
7455
- const styles$4 = {
6792
+ const styles$3 = {
7456
6793
  "elm-page-top": "_elm-page-top_18d6m_1",
7457
6794
  visible,
7458
6795
  partial,
7459
6796
  text
7460
6797
  };
7461
- const _hf0$3 = (p0) => ({
6798
+ const _hf0$2 = (p0) => ({
7462
6799
  "--elmethis-scoped-size": `${64}px`,
7463
6800
  left: (p0.position ?? "right") === "left" ? "0" : "auto",
7464
6801
  right: (p0.position ?? "right") === "right" ? "0" : "auto",
@@ -7494,13 +6831,13 @@ const ElmPageTop = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
7494
6831
  }, "ElmPageTop_component_toTop_40Bu5QRIQBE");
7495
6832
  return /* @__PURE__ */ core$1._jsxSplit("nav", {
7496
6833
  class: [
7497
- styles$4["elm-page-top"],
6834
+ styles$3["elm-page-top"],
7498
6835
  {
7499
- [styles$4.visible]: isVisible.value
6836
+ [styles$3.visible]: isVisible.value
7500
6837
  },
7501
6838
  _rawProps.class
7502
6839
  ],
7503
- style: core$1._fnSignal(_hf0$3, [
6840
+ style: core$1._fnSignal(_hf0$2, [
7504
6841
  _rawProps
7505
6842
  ]),
7506
6843
  "q-e:click": toTop,
@@ -7508,18 +6845,18 @@ const ElmPageTop = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.in
7508
6845
  }, core$1._getConstProps(props), [
7509
6846
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7510
6847
  "aria-hidden": "true",
7511
- class: styles$4.partial
6848
+ class: styles$3.partial
7512
6849
  }, null, 3, null),
7513
6850
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7514
6851
  "aria-hidden": "true",
7515
- class: styles$4.partial
6852
+ class: styles$3.partial
7516
6853
  }, null, 3, null),
7517
6854
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7518
6855
  "aria-hidden": "true",
7519
- class: styles$4.partial
6856
+ class: styles$3.partial
7520
6857
  }, null, 3, null),
7521
6858
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7522
- class: styles$4.text
6859
+ class: styles$3.text
7523
6860
  }, "Back to Top", 3, null)
7524
6861
  ], 0, "Ai_0");
7525
6862
  }, "ElmPageTop_component_byQ7OLwyL2c"));
@@ -7527,7 +6864,7 @@ const toolbar$1 = "_toolbar_vuro0_6";
7527
6864
  const group$1 = "_group_vuro0_40";
7528
6865
  const scale = "_scale_vuro0_46";
7529
6866
  const swatch = "_swatch_vuro0_52";
7530
- const styles$3 = {
6867
+ const styles$2 = {
7531
6868
  "elm-color-primitive-sample": "_elm-color-primitive-sample_vuro0_1",
7532
6869
  toolbar: toolbar$1,
7533
6870
  "mode-toggle": "_mode-toggle_vuro0_11",
@@ -7539,8 +6876,8 @@ const styles$3 = {
7539
6876
  "swatch-name": "_swatch-name_vuro0_55",
7540
6877
  "swatch-bg": "_swatch-bg_vuro0_60"
7541
6878
  };
7542
- const _hf0$2 = (p0) => p0.value === "hex" ? "hex value" : "variable name";
7543
- const _hf1$2 = (p0, p1, p2) => p0.value === p2 ? "copied!" : p1;
6879
+ const _hf0$1 = (p0) => p0.value === "hex" ? "hex value" : "variable name";
6880
+ const _hf1$1 = (p0, p1, p2) => p0.value === p2 ? "copied!" : p1;
7544
6881
  const rgbToHex$1 = (rgb) => {
7545
6882
  const parts = rgb.match(/\d+(\.\d+)?/g);
7546
6883
  if (!parts || parts.length < 3) return null;
@@ -7649,7 +6986,7 @@ const ElmColorPrimitiveSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7649
6986
  ]);
7650
6987
  return /* @__PURE__ */ core$1._jsxSorted("div", {
7651
6988
  class: [
7652
- styles$3["elm-color-primitive-sample"],
6989
+ styles$2["elm-color-primitive-sample"],
7653
6990
  _rawProps.class
7654
6991
  ],
7655
6992
  style: core$1._wrapProp(_rawProps, "style")
@@ -7657,7 +6994,7 @@ const ElmColorPrimitiveSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7657
6994
  "q-e:click": copyToken$
7658
6995
  }, [
7659
6996
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7660
- class: styles$3.toolbar
6997
+ class: styles$2.toolbar
7661
6998
  }, /* @__PURE__ */ core$1._jsxSorted("button", {
7662
6999
  "q-e:click": /* @__PURE__ */ core$1.inlinedQrl(() => {
7663
7000
  const copyMode2 = core$1._captures[0];
@@ -7667,27 +7004,27 @@ const ElmColorPrimitiveSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7667
7004
  ])
7668
7005
  }, {
7669
7006
  type: "button",
7670
- class: styles$3["mode-toggle"]
7007
+ class: styles$2["mode-toggle"]
7671
7008
  }, [
7672
7009
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
7673
7010
  d: copyMode.value === "hex" ? js.mdiHexadecimal : js.mdiFormatColorFill
7674
7011
  }, {
7675
- class: styles$3["mode-toggle-icon"],
7012
+ class: styles$2["mode-toggle-icon"],
7676
7013
  size: "1.25rem"
7677
7014
  }, null, 3, "MO_0"),
7678
7015
  "Copy: ",
7679
- core$1._fnSignal(_hf0$2, [
7016
+ core$1._fnSignal(_hf0$1, [
7680
7017
  copyMode
7681
7018
  ])
7682
7019
  ], 0, null), 1, null),
7683
7020
  PRIMITIVE_SCALES.map((_rawProps2) => /* @__PURE__ */ core$1._jsxSorted("div", null, {
7684
- class: styles$3.group
7021
+ class: styles$2.group
7685
7022
  }, [
7686
7023
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7687
- class: styles$3["section-title"]
7024
+ class: styles$2["section-title"]
7688
7025
  }, core$1._wrapProp(_rawProps2, "hue"), 1, null),
7689
7026
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7690
- class: styles$3.scale
7027
+ class: styles$2.scale
7691
7028
  }, _rawProps2.steps.map((step) => {
7692
7029
  const token = `--elmethis-primitive-color-${_rawProps2.hue}-${step}`;
7693
7030
  return /* @__PURE__ */ core$1._jsxSorted("div", {
@@ -7699,18 +7036,18 @@ const ElmColorPrimitiveSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7699
7036
  },
7700
7037
  title: token
7701
7038
  }, {
7702
- class: styles$3.swatch
7039
+ class: styles$2.swatch
7703
7040
  }, [
7704
7041
  /* @__PURE__ */ core$1._jsxSorted("div", {
7705
7042
  style: {
7706
7043
  backgroundColor: `var(${token})`
7707
7044
  }
7708
7045
  }, {
7709
- class: styles$3["swatch-bg"]
7046
+ class: styles$2["swatch-bg"]
7710
7047
  }, null, 3, null),
7711
7048
  /* @__PURE__ */ core$1._jsxSorted("code", null, {
7712
- class: styles$3["swatch-name"]
7713
- }, core$1._fnSignal(_hf1$2, [
7049
+ class: styles$2["swatch-name"]
7050
+ }, core$1._fnSignal(_hf1$1, [
7714
7051
  copiedToken,
7715
7052
  step,
7716
7053
  token
@@ -7728,7 +7065,7 @@ const group = "_group_6i1j1_63";
7728
7065
  const panel = "_panel_6i1j1_33";
7729
7066
  const surface = "_surface_6i1j1_86";
7730
7067
  const foreground = "_foreground_6i1j1_97";
7731
- const styles$2 = {
7068
+ const styles$1 = {
7732
7069
  "elm-color-semantic-sample": "_elm-color-semantic-sample_6i1j1_1",
7733
7070
  toolbar,
7734
7071
  "mode-toggle": "_mode-toggle_6i1j1_11",
@@ -7748,15 +7085,15 @@ const styles$2 = {
7748
7085
  "color-sample-bg": "_color-sample-bg_6i1j1_121",
7749
7086
  "color-sample-name": "_color-sample-name_6i1j1_127"
7750
7087
  };
7751
- const _hf0$1 = (p0, p1) => p0.copiedToken.value === p1 ? "copied!" : p1;
7752
- const _hf1$1 = (p0) => ({
7088
+ const _hf0 = (p0, p1) => p0.copiedToken.value === p1 ? "copied!" : p1;
7089
+ const _hf1 = (p0) => ({
7753
7090
  colorScheme: p0.theme
7754
7091
  });
7755
- const _hf2$1 = (p0) => ({
7092
+ const _hf2 = (p0) => ({
7756
7093
  color: `var(${p0.fg})`,
7757
7094
  backgroundColor: `var(${p0.surface})`
7758
7095
  });
7759
- const _hf3$1 = (p0) => p0.value === "hex" ? "hex value" : "variable name";
7096
+ const _hf3 = (p0) => p0.value === "hex" ? "hex value" : "variable name";
7760
7097
  const rgbToHex = (rgb) => {
7761
7098
  const parts = rgb.match(/\d+(\.\d+)?/g);
7762
7099
  if (!parts || parts.length < 3) return null;
@@ -7790,22 +7127,22 @@ const PRIMARY_TOKENS = [
7790
7127
  ];
7791
7128
  const ColorSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((args) => {
7792
7129
  return /* @__PURE__ */ core$1._jsxSorted("div", null, {
7793
- class: styles$2["color-sample-container"]
7130
+ class: styles$1["color-sample-container"]
7794
7131
  }, args.variables.map((variable) => /* @__PURE__ */ core$1._jsxSorted("div", {
7795
7132
  "data-copy-token": variable
7796
7133
  }, {
7797
- class: styles$2["color-sample"]
7134
+ class: styles$1["color-sample"]
7798
7135
  }, [
7799
7136
  /* @__PURE__ */ core$1._jsxSorted("div", {
7800
7137
  style: {
7801
7138
  backgroundColor: `var(${variable})`
7802
7139
  }
7803
7140
  }, {
7804
- class: styles$2["color-sample-bg"]
7141
+ class: styles$1["color-sample-bg"]
7805
7142
  }, null, 3, null),
7806
7143
  /* @__PURE__ */ core$1._jsxSorted("code", null, {
7807
- class: styles$2["color-sample-name"]
7808
- }, core$1._fnSignal(_hf0$1, [
7144
+ class: styles$1["color-sample-name"]
7145
+ }, core$1._fnSignal(_hf0, [
7809
7146
  args,
7810
7147
  variable
7811
7148
  ]), 1, null)
@@ -7897,19 +7234,19 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7897
7234
  // inside a page; `color-scheme`/`data-theme` apply to any element.
7898
7235
  /* @__PURE__ */ core$1._jsxSorted("div", {
7899
7236
  "data-theme": core$1._wrapProp(props, "theme"),
7900
- style: core$1._fnSignal(_hf1$1, [
7237
+ style: core$1._fnSignal(_hf1, [
7901
7238
  props
7902
7239
  ])
7903
7240
  }, {
7904
- class: styles$2.panel
7241
+ class: styles$1.panel
7905
7242
  }, /* @__PURE__ */ core$1._jsxSorted("div", null, {
7906
- class: styles$2["panel-body"],
7243
+ class: styles$1["panel-body"],
7907
7244
  style: {
7908
7245
  backgroundColor: "var(--elmethis-color-surface-base)"
7909
7246
  }
7910
7247
  }, [
7911
7248
  /* @__PURE__ */ core$1._jsxSorted("header", null, {
7912
- class: styles$2.header,
7249
+ class: styles$1.header,
7913
7250
  style: {
7914
7251
  backgroundColor: "var(--elmethis-color-surface-sunken)"
7915
7252
  }
@@ -7917,13 +7254,13 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7917
7254
  "data-copy-token": "--elmethis-color-surface-sunken"
7918
7255
  }, label2("--elmethis-color-surface-sunken"), 1, null), 1, null),
7919
7256
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7920
- class: styles$2.body
7257
+ class: styles$1.body
7921
7258
  }, [
7922
7259
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7923
- class: styles$2.group
7260
+ class: styles$1.group
7924
7261
  }, [
7925
7262
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7926
- class: styles$2["section-title"]
7263
+ class: styles$1["section-title"]
7927
7264
  }, "Surface", 3, null),
7928
7265
  SURFACE_TOKENS.map((name) => /* @__PURE__ */ core$1._jsxSorted("div", {
7929
7266
  "data-copy-token": name,
@@ -7931,14 +7268,14 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7931
7268
  backgroundColor: `var(${name})`
7932
7269
  }
7933
7270
  }, {
7934
- class: styles$2.surface
7271
+ class: styles$1.surface
7935
7272
  }, label2(name), 1, name))
7936
7273
  ], 1, null),
7937
7274
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7938
- class: styles$2.group
7275
+ class: styles$1.group
7939
7276
  }, [
7940
7277
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7941
- class: styles$2["section-title"]
7278
+ class: styles$1["section-title"]
7942
7279
  }, "Foreground", 3, null),
7943
7280
  FOREGROUND_TOKENS.map((name) => /* @__PURE__ */ core$1._jsxSorted("span", {
7944
7281
  "data-copy-token": name,
@@ -7946,21 +7283,21 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7946
7283
  color: `var(${name})`
7947
7284
  }
7948
7285
  }, {
7949
- class: styles$2.foreground
7286
+ class: styles$1.foreground
7950
7287
  }, label2(name), 1, name))
7951
7288
  ], 1, null),
7952
7289
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7953
- class: styles$2.group
7290
+ class: styles$1.group
7954
7291
  }, [
7955
7292
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7956
- class: styles$2["section-title"]
7293
+ class: styles$1["section-title"]
7957
7294
  }, "Accent", 3, null),
7958
7295
  ACCENT_PAIRS.map((_rawProps2) => /* @__PURE__ */ core$1._jsxSorted("div", {
7959
- style: core$1._fnSignal(_hf2$1, [
7296
+ style: core$1._fnSignal(_hf2, [
7960
7297
  _rawProps2
7961
7298
  ])
7962
7299
  }, {
7963
- class: styles$2["accent-pair"]
7300
+ class: styles$1["accent-pair"]
7964
7301
  }, [
7965
7302
  /* @__PURE__ */ core$1._jsxSorted("span", {
7966
7303
  "data-copy-token": core$1._wrapProp(_rawProps2, "fg")
@@ -7971,10 +7308,10 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7971
7308
  ], 1, _rawProps2.fg))
7972
7309
  ], 1, null),
7973
7310
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7974
- class: styles$2.group
7311
+ class: styles$1.group
7975
7312
  }, [
7976
7313
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7977
- class: styles$2["section-title"]
7314
+ class: styles$1["section-title"]
7978
7315
  }, "Neutral", 3, null),
7979
7316
  /* @__PURE__ */ core$1._jsxSorted(ColorSample, null, {
7980
7317
  variables: NEUTRAL_TOKENS,
@@ -7982,10 +7319,10 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7982
7319
  }, null, 3, "2F_1")
7983
7320
  ], 1, null),
7984
7321
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7985
- class: styles$2.group
7322
+ class: styles$1.group
7986
7323
  }, [
7987
7324
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7988
- class: styles$2["section-title"]
7325
+ class: styles$1["section-title"]
7989
7326
  }, "Primary", 3, null),
7990
7327
  /* @__PURE__ */ core$1._jsxSorted(ColorSample, null, {
7991
7328
  variables: PRIMARY_TOKENS,
@@ -7993,17 +7330,17 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
7993
7330
  }, null, 3, "2F_2")
7994
7331
  ], 1, null),
7995
7332
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
7996
- class: styles$2.group
7333
+ class: styles$1.group
7997
7334
  }, [
7998
7335
  /* @__PURE__ */ core$1._jsxSorted("span", null, {
7999
- class: styles$2["section-title"]
7336
+ class: styles$1["section-title"]
8000
7337
  }, "Display", 3, null),
8001
7338
  DISPLAY_PAIRS.map((_rawProps2) => /* @__PURE__ */ core$1._jsxSorted("div", {
8002
- style: core$1._fnSignal(_hf2$1, [
7339
+ style: core$1._fnSignal(_hf2, [
8003
7340
  _rawProps2
8004
7341
  ])
8005
7342
  }, {
8006
- class: styles$2["accent-pair"]
7343
+ class: styles$1["accent-pair"]
8007
7344
  }, [
8008
7345
  /* @__PURE__ */ core$1._jsxSorted("span", {
8009
7346
  "data-copy-token": core$1._wrapProp(_rawProps2, "fg")
@@ -8021,13 +7358,13 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
8021
7358
  ]));
8022
7359
  return /* @__PURE__ */ core$1._jsxSorted("div", {
8023
7360
  class: [
8024
- styles$2["elm-color-semantic-sample"],
7361
+ styles$1["elm-color-semantic-sample"],
8025
7362
  _rawProps.class
8026
7363
  ],
8027
7364
  style: core$1._wrapProp(_rawProps, "style")
8028
7365
  }, null, [
8029
7366
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
8030
- class: styles$2.toolbar
7367
+ class: styles$1.toolbar
8031
7368
  }, /* @__PURE__ */ core$1._jsxSorted("button", {
8032
7369
  "q-e:click": /* @__PURE__ */ core$1.inlinedQrl(() => {
8033
7370
  const copyMode2 = core$1._captures[0];
@@ -8037,21 +7374,21 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
8037
7374
  ])
8038
7375
  }, {
8039
7376
  type: "button",
8040
- class: styles$2["mode-toggle"]
7377
+ class: styles$1["mode-toggle"]
8041
7378
  }, [
8042
7379
  /* @__PURE__ */ core$1._jsxSorted(ElmMdiIcon, {
8043
7380
  d: copyMode.value === "hex" ? js.mdiHexadecimal : js.mdiFormatColorFill
8044
7381
  }, {
8045
- class: styles$2["mode-toggle-icon"],
7382
+ class: styles$1["mode-toggle-icon"],
8046
7383
  size: "1.25rem"
8047
7384
  }, null, 3, "2F_4"),
8048
7385
  "Copy: ",
8049
- core$1._fnSignal(_hf3$1, [
7386
+ core$1._fnSignal(_hf3, [
8050
7387
  copyMode
8051
7388
  ])
8052
7389
  ], 0, null), 1, null),
8053
7390
  /* @__PURE__ */ core$1._jsxSorted("div", null, {
8054
- class: styles$2.panels,
7391
+ class: styles$1.panels,
8055
7392
  "q-e:click": copyToken$
8056
7393
  }, [
8057
7394
  /* @__PURE__ */ core$1._jsxSorted(Render, null, {
@@ -8063,295 +7400,6 @@ const ElmColorSemanticSample = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__
8063
7400
  ], 1, null)
8064
7401
  ], 1, "2F_7");
8065
7402
  }, "ElmColorSemanticSample_component_c40U9Y9RzyA"));
8066
- const column = "_column_1uevw_1";
8067
- const styles$1 = {
8068
- "column-list": "_column-list_1uevw_1",
8069
- column
8070
- };
8071
- const _hf0 = (p0) => p0.props.src;
8072
- const _hf1 = (p0) => p0.props.alt;
8073
- const _hf10 = (p0) => p0.props.description;
8074
- const _hf11 = (p0) => p0.props.image;
8075
- const _hf12 = (p0) => p0.props.name;
8076
- const _hf13 = (p0) => p0.props.width;
8077
- const _hf14 = (p0) => p0.props.height;
8078
- const _hf15 = (p0) => p0.props.srcset;
8079
- const _hf16 = (p0) => p0.props.sizes;
8080
- const _hf17 = (p0) => p0.props.code;
8081
- const _hf18 = (p0) => p0.props.language;
8082
- const _hf19 = (p0) => p0.props.expression;
8083
- const _hf2 = (p0) => p0.props.level;
8084
- const _hf20 = (p0) => p0.props?.caption;
8085
- const _hf21 = (p0) => p0.props?.hasRowHeader;
8086
- const _hf22 = (p0, p1) => ({
8087
- "--width-ratio": p0.props?.widthRatio || 1,
8088
- width: p0.props?.widthRatio ? `${p0.props.widthRatio * 100}%` : void 0,
8089
- ...p1
8090
- });
8091
- const _hf23 = (p0) => ({
8092
- "--elmethis-margin-block-start": "2.5rem",
8093
- ...p0.style
8094
- });
8095
- const _hf3 = (p0) => p0.props?.color;
8096
- const _hf4 = (p0) => p0.props?.backgroundColor;
8097
- const _hf5 = (p0) => p0.props?.listStyle === "unordered" ? "unordered" : "ordered";
8098
- const _hf6 = (p0) => p0.props?.cite;
8099
- const _hf7 = (p0) => p0.props?.type;
8100
- const _hf8 = (p0) => p0.props.url;
8101
- const _hf9 = (p0) => p0.props.title;
8102
- const convertInlineComponentsToPlainText = (inlineComponents) => {
8103
- return inlineComponents.map((component) => {
8104
- if (component.type === "Text") {
8105
- return component.props.text;
8106
- } else {
8107
- return "";
8108
- }
8109
- }).join("");
8110
- };
8111
- const ElmJarkup = /* @__PURE__ */ core$1.componentQrl(/* @__PURE__ */ core$1.inlinedQrl((props) => {
8112
- const rest = core$1._restProps(props, [
8113
- "class",
8114
- "style",
8115
- "jsonComponents",
8116
- "skipUnsupportedComponentWarning"
8117
- ]);
8118
- const render = (jsonComponents) => {
8119
- return jsonComponents.map((component, index) => {
8120
- const key2 = component.id || index;
8121
- const firstStyle = index === 0 ? {
8122
- "--elmethis-margin-block-start": "0"
8123
- } : void 0;
8124
- switch (component.type) {
8125
- case "Text": {
8126
- const { props: p } = component;
8127
- if (p.katex) {
8128
- return /* @__PURE__ */ core$1._jsxSorted(ElmKatex, null, {
8129
- expression: core$1._wrapProp(p, "text"),
8130
- block: false
8131
- }, null, 3, key2);
8132
- }
8133
- return /* @__PURE__ */ core$1._jsxSorted(ElmInlineText, null, {
8134
- color: core$1._wrapProp(p, "color"),
8135
- backgroundColor: core$1._wrapProp(p, "backgroundColor"),
8136
- bold: core$1._wrapProp(p, "bold"),
8137
- italic: core$1._wrapProp(p, "italic"),
8138
- underline: core$1._wrapProp(p, "underline"),
8139
- strikethrough: core$1._wrapProp(p, "strikethrough"),
8140
- code: core$1._wrapProp(p, "code"),
8141
- ruby: core$1._wrapProp(p, "ruby"),
8142
- href: core$1._wrapProp(p, "href"),
8143
- favicon: core$1._wrapProp(p, "favicon")
8144
- }, core$1._wrapProp(p, "text"), 1, key2);
8145
- }
8146
- case "Icon":
8147
- return /* @__PURE__ */ core$1._jsxSorted(ElmInlineIcon, {
8148
- alt: core$1._fnSignal(_hf1, [
8149
- component
8150
- ]),
8151
- src: core$1._fnSignal(_hf0, [
8152
- component
8153
- ])
8154
- }, null, null, 3, key2);
8155
- case "Fragment": {
8156
- return /* @__PURE__ */ core$1._jsxSorted(jsxRuntime.Fragment, null, null, render(component.slots.default), 1, "Ck_0");
8157
- }
8158
- case "Heading":
8159
- return /* @__PURE__ */ core$1._jsxSorted(ElmHeading, {
8160
- id: esToolkit.kebabCase(convertInlineComponentsToPlainText(component.slots.default)),
8161
- level: core$1._fnSignal(_hf2, [
8162
- component
8163
- ]),
8164
- style: firstStyle
8165
- }, null, render(component.slots.default), 1, key2);
8166
- case "Paragraph":
8167
- return /* @__PURE__ */ core$1._jsxSorted(ElmParagraph, {
8168
- backgroundColor: core$1._fnSignal(_hf4, [
8169
- component
8170
- ]),
8171
- color: core$1._fnSignal(_hf3, [
8172
- component
8173
- ]),
8174
- style: firstStyle
8175
- }, null, render(component.slots.default), 1, key2);
8176
- case "ListItem":
8177
- return /* @__PURE__ */ core$1._jsxSorted("li", null, null, render(component.slots.default), 1, key2);
8178
- case "List":
8179
- return /* @__PURE__ */ core$1._jsxSorted(ElmList, {
8180
- listStyle: core$1._fnSignal(_hf5, [
8181
- component
8182
- ]),
8183
- style: firstStyle
8184
- }, null, render(component.slots.default), 1, key2);
8185
- case "BlockQuote":
8186
- return /* @__PURE__ */ core$1._jsxSorted(ElmBlockQuote, {
8187
- cite: core$1._fnSignal(_hf6, [
8188
- component
8189
- ]),
8190
- style: firstStyle
8191
- }, null, render(component.slots.default), 1, key2);
8192
- case "Callout":
8193
- return /* @__PURE__ */ core$1._jsxSorted(ElmCallout, {
8194
- style: firstStyle,
8195
- type: core$1._fnSignal(_hf7, [
8196
- component
8197
- ])
8198
- }, null, render(component.slots.default), 1, key2);
8199
- case "Divider":
8200
- return /* @__PURE__ */ core$1._jsxSorted(ElmDivider, {
8201
- style: firstStyle
8202
- }, null, null, 3, key2);
8203
- case "Toggle":
8204
- return /* @__PURE__ */ core$1._jsxSorted(ElmToggle, {
8205
- style: firstStyle
8206
- }, null, [
8207
- /* @__PURE__ */ core$1._jsxSorted("div", {
8208
- "q:slot": "summary"
8209
- }, null, render(component.slots.summary), 1, null),
8210
- render(component.slots.default)
8211
- ], 1, key2);
8212
- case "Bookmark":
8213
- return /* @__PURE__ */ core$1._jsxSorted(ElmBookmark, {
8214
- description: core$1._fnSignal(_hf10, [
8215
- component
8216
- ]),
8217
- image: core$1._fnSignal(_hf11, [
8218
- component
8219
- ]),
8220
- style: firstStyle,
8221
- title: core$1._fnSignal(_hf9, [
8222
- component
8223
- ]),
8224
- url: core$1._fnSignal(_hf8, [
8225
- component
8226
- ])
8227
- }, null, null, 3, key2);
8228
- case "File":
8229
- return /* @__PURE__ */ core$1._jsxSorted(ElmFile, {
8230
- name: core$1._fnSignal(_hf12, [
8231
- component
8232
- ]),
8233
- src: core$1._fnSignal(_hf0, [
8234
- component
8235
- ]),
8236
- style: firstStyle
8237
- }, null, null, 3, key2);
8238
- case "Image":
8239
- return /* @__PURE__ */ core$1._jsxSorted(ElmBlockImage, {
8240
- alt: core$1._fnSignal(_hf1, [
8241
- component
8242
- ]),
8243
- height: core$1._fnSignal(_hf14, [
8244
- component
8245
- ]),
8246
- sizes: core$1._fnSignal(_hf16, [
8247
- component
8248
- ]),
8249
- src: core$1._fnSignal(_hf0, [
8250
- component
8251
- ]),
8252
- srcset: core$1._fnSignal(_hf15, [
8253
- component
8254
- ]),
8255
- style: firstStyle,
8256
- width: core$1._fnSignal(_hf13, [
8257
- component
8258
- ])
8259
- }, {
8260
- enableModal: true
8261
- }, null, 3, key2);
8262
- case "CodeBlock":
8263
- return /* @__PURE__ */ core$1._jsxSorted(ElmCodeBlock, {
8264
- code: core$1._fnSignal(_hf17, [
8265
- component
8266
- ]),
8267
- language: core$1._fnSignal(_hf18, [
8268
- component
8269
- ]),
8270
- style: firstStyle
8271
- }, null, component.slots?.default && render(component.slots.default), 1, key2);
8272
- case "Katex":
8273
- return /* @__PURE__ */ core$1._jsxSorted(ElmKatex, {
8274
- expression: core$1._fnSignal(_hf19, [
8275
- component
8276
- ]),
8277
- style: firstStyle
8278
- }, {
8279
- block: true
8280
- }, null, 3, key2);
8281
- case "Tabs": {
8282
- const labels = [];
8283
- const contents = [];
8284
- for (const tab2 of component.slots.default) {
8285
- labels.push(tab2.slots.labels);
8286
- contents.push(tab2.slots.contents);
8287
- }
8288
- return /* @__PURE__ */ core$1._jsxSorted(ElmTabs, null, {
8289
- defaultValue: "0"
8290
- }, [
8291
- /* @__PURE__ */ core$1._jsxSorted(ElmTabList, null, null, labels.map((label2, index2) => /* @__PURE__ */ core$1._jsxSorted(ElmTab, {
8292
- value: String(index2)
8293
- }, null, render(label2), 1, index2)), 1, "Ck_1"),
8294
- labels.map((_, index2) => /* @__PURE__ */ core$1._jsxSorted(ElmTabPanel, {
8295
- value: String(index2)
8296
- }, null, render(contents[index2]), 1, index2))
8297
- ], 1, "Ck_2");
8298
- }
8299
- case "Table":
8300
- return /* @__PURE__ */ core$1._jsxSorted(ElmTable, {
8301
- caption: core$1._fnSignal(_hf20, [
8302
- component
8303
- ]),
8304
- hasRowHeader: core$1._fnSignal(_hf21, [
8305
- component
8306
- ]),
8307
- style: firstStyle
8308
- }, null, [
8309
- component.slots.header && /* @__PURE__ */ core$1._jsxSorted(ElmTableHeader, null, null, render(component.slots.header), 1, "Ck_3"),
8310
- /* @__PURE__ */ core$1._jsxSorted(ElmTableBody, null, null, render(component.slots.body), 1, "Ck_4")
8311
- ], 1, key2);
8312
- case "TableRow":
8313
- return /* @__PURE__ */ core$1._jsxSorted(ElmTableRow, null, null, render(component.slots.default), 1, key2);
8314
- case "TableCell":
8315
- return /* @__PURE__ */ core$1._jsxSorted(ElmTableCell, null, null, render(component.slots.default), 1, key2);
8316
- case "ColumnList":
8317
- return /* @__PURE__ */ core$1._jsxSorted("div", {
8318
- style: firstStyle
8319
- }, {
8320
- class: styles$1["column-list"]
8321
- }, render(component.slots.default), 1, key2);
8322
- case "Column":
8323
- return /* @__PURE__ */ core$1._jsxSorted("div", {
8324
- style: core$1._fnSignal(_hf22, [
8325
- component,
8326
- firstStyle
8327
- ])
8328
- }, {
8329
- class: styles$1.column
8330
- }, render(component.slots.default), 1, key2);
8331
- case "Unsupported": {
8332
- if (props.skipUnsupportedComponentWarning) return null;
8333
- return /* @__PURE__ */ core$1._jsxSorted(ElmUnsupportedBlock, {
8334
- details: `Unsupported component type: ${component.props?.details || component.type}`,
8335
- style: firstStyle
8336
- }, null, null, 3, key2);
8337
- }
8338
- default:
8339
- if (props.skipUnsupportedComponentWarning) return null;
8340
- return /* @__PURE__ */ core$1._jsxSorted(ElmUnsupportedBlock, {
8341
- details: `Unsupported component type: ${component.type}`,
8342
- style: firstStyle
8343
- }, null, null, 3, key2);
8344
- }
8345
- });
8346
- };
8347
- return /* @__PURE__ */ core$1._jsxSplit("div", {
8348
- class: core$1._wrapProp(props, "class"),
8349
- style: core$1._fnSignal(_hf23, [
8350
- props
8351
- ]),
8352
- ...core$1._getVarProps(rest)
8353
- }, core$1._getConstProps(rest), render(props.jsonComponents), 0, "Ck_5");
8354
- }, "ElmJarkup_component_v1hxPALYrDQ"));
8355
7403
  const error = "_error_1llms_26";
8356
7404
  const status = "_status_1llms_32";
8357
7405
  const board = "_board_1llms_41";
@@ -25241,7 +24289,6 @@ exports.ElmFragmentIdentifier = ElmFragmentIdentifier;
25241
24289
  exports.ElmHeading = ElmHeading;
25242
24290
  exports.ElmInlineIcon = ElmInlineIcon;
25243
24291
  exports.ElmInlineText = ElmInlineText;
25244
- exports.ElmJarkup = ElmJarkup;
25245
24292
  exports.ElmKatex = ElmKatex;
25246
24293
  exports.ElmLanguageIcon = ElmLanguageIcon;
25247
24294
  exports.ElmList = ElmList;