@lostgradient/cinder 0.12.1 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/components.json +7 -5
  3. package/dist/components/diff-viewer/index.js +201 -101
  4. package/dist/components/json-schema-editor/index.js +229 -129
  5. package/dist/components/markdown-editor/index.js +207 -107
  6. package/dist/components/review-editor/index.js +291 -191
  7. package/dist/components/schedule-builder/index.js +205 -105
  8. package/dist/components/segment/index.js +119 -56
  9. package/dist/components/segment/segment.schema.d.ts +2 -2
  10. package/dist/components/segment/segment.schema.js +71 -33
  11. package/dist/components/segment/segment.svelte.d.ts +2 -1
  12. package/dist/components/segment/segment.types.d.ts +67 -10
  13. package/dist/components/segmented-control/index.js +193 -93
  14. package/dist/components/segmented-control/segmented-control-state.svelte.d.ts +4 -4
  15. package/dist/components/segmented-control/segmented-control.css +26 -6
  16. package/dist/components/segmented-control/segmented-control.schema.js +3 -3
  17. package/dist/components/segmented-control/segmented-control.svelte.d.ts +2 -1
  18. package/dist/components/segmented-control/segmented-control.types.d.ts +4 -4
  19. package/dist/components/sidebar/index.d.ts +1 -0
  20. package/dist/components/sidebar/index.js +9 -3
  21. package/dist/components/sidebar/sidebar.constants.d.ts +12 -0
  22. package/dist/index.d.ts +1 -1
  23. package/dist/index.js +466 -358
  24. package/dist/server/components/diff-viewer/index.js +4 -4
  25. package/dist/server/components/json-schema-editor/index.js +4 -4
  26. package/dist/server/components/markdown-editor/index.js +3 -3
  27. package/dist/server/components/review-editor/index.js +4 -4
  28. package/dist/server/components/schedule-builder/index.js +3 -3
  29. package/dist/server/components/segment/index.js +2 -2
  30. package/dist/server/components/segmented-control/index.js +3 -3
  31. package/dist/server/components/sidebar/index.js +7 -3
  32. package/dist/server/index.js +16 -10
  33. package/dist/server/{index.server-jgb8yh5k.js → index.server-2m1kenak.js} +1 -1
  34. package/dist/server/{index.server-jfrssta6.js → index.server-ck3fwrab.js} +1 -1
  35. package/dist/server/{index.server-sedjxt36.js → index.server-e89qfamd.js} +79 -35
  36. package/dist/server/{index.server-pag862vz.js → index.server-grgv455a.js} +2 -2
  37. package/dist/server/{index.server-2qj6s2mh.js → index.server-j570vb03.js} +7 -3
  38. package/dist/server/{index.server-xeqtpv61.js → index.server-mr68brd6.js} +49 -24
  39. package/dist/server/{index.server-qbkxz7r2.js → index.server-nx9c2ep1.js} +2 -2
  40. package/dist/server/{index.server-jj76374p.js → index.server-p071e531.js} +1 -1
  41. package/dist/server/{index.server-5gzyqv78.js → index.server-v3arexq8.js} +2 -2
  42. package/dist/server/{index.server-85p4ydph.js → index.server-zzd5wpbw.js} +1 -1
  43. package/package.json +1 -1
  44. package/src/components/segment/segment.schema.json +34 -7
  45. package/src/components/segment/segment.schema.ts +5 -47
  46. package/src/components/segment/segment.svelte +58 -23
  47. package/src/components/segment/segment.types.ts +81 -11
  48. package/src/components/segmented-control/segmented-control.css +26 -6
  49. package/src/components/segmented-control/segmented-control.examples.json +6 -0
  50. package/src/components/segmented-control/segmented-control.schema.json +2 -2
  51. package/src/components/segmented-control/segmented-control.schema.ts +2 -2
  52. package/src/components/segmented-control/segmented-control.svelte +50 -23
  53. package/src/components/segmented-control/segmented-control.types.ts +4 -7
  54. package/src/components/sidebar/index.ts +1 -0
  55. package/src/components/sidebar/sidebar.constants.ts +13 -0
  56. package/src/components/sidebar/sidebar.examples.json +6 -0
  57. package/src/components/sidebar/sidebar.svelte +4 -5
  58. package/src/index.ts +5 -1
  59. package/src/styles/foundation.css +2 -1
package/dist/index.js CHANGED
@@ -33776,25 +33776,69 @@ var rest_excludes73 = new Set([
33776
33776
  "$$events",
33777
33777
  "$$legacy",
33778
33778
  "value",
33779
+ "href",
33780
+ "download",
33781
+ "target",
33782
+ "rel",
33783
+ "current",
33784
+ "currentToken",
33779
33785
  "disabled",
33780
33786
  "controls",
33781
33787
  "leading",
33782
33788
  "trailing",
33783
33789
  "children",
33784
- "class"
33790
+ "class",
33791
+ "onclick"
33785
33792
  ]);
33786
33793
  var root112 = $198.from_html(`<span class="cinder-segmented-control-option-icon" aria-hidden="true"><!></span>`);
33787
33794
  var root_1106 = $198.from_html(`<span class="cinder-segmented-control-option-trailing" aria-hidden="true"><!></span>`);
33788
- var root_265 = $198.from_html(`<button><!> <!> <!></button>`);
33795
+ var root_265 = $198.from_html(`<!> <!> <!>`, 1);
33796
+ var root_350 = $198.from_html(`<a><!></a>`);
33797
+ var root_431 = $198.from_html(`<button><!></button>`);
33789
33798
  function Segment($$anchor, $$props) {
33790
33799
  $198.push($$props, true);
33791
- let disabled = $198.prop($$props, "disabled", 3, false), rest = $198.rest_props($$props, rest_excludes73);
33800
+ const content = ($$anchor2) => {
33801
+ var fragment = root_265();
33802
+ var node_1 = $198.first_child(fragment);
33803
+ {
33804
+ var consequent = ($$anchor3) => {
33805
+ var span = root112();
33806
+ var node_2 = $198.child(span);
33807
+ $198.snippet(node_2, () => $$props.leading);
33808
+ $198.reset(span);
33809
+ $198.append($$anchor3, span);
33810
+ };
33811
+ $198.if(node_1, ($$render) => {
33812
+ if ($$props.leading)
33813
+ $$render(consequent);
33814
+ });
33815
+ }
33816
+ var node_3 = $198.sibling(node_1, 2);
33817
+ $198.snippet(node_3, () => $$props.children ?? $198.noop);
33818
+ var node_4 = $198.sibling(node_3, 2);
33819
+ {
33820
+ var consequent_1 = ($$anchor3) => {
33821
+ var span_1 = root_1106();
33822
+ var node_5 = $198.child(span_1);
33823
+ $198.snippet(node_5, () => $$props.trailing);
33824
+ $198.reset(span_1);
33825
+ $198.append($$anchor3, span_1);
33826
+ };
33827
+ $198.if(node_4, ($$render) => {
33828
+ if ($$props.trailing)
33829
+ $$render(consequent_1);
33830
+ });
33831
+ }
33832
+ $198.append($$anchor2, fragment);
33833
+ };
33834
+ let current = $198.prop($$props, "current", 3, false), currentToken = $198.prop($$props, "currentToken", 3, "page"), disabled = $198.prop($$props, "disabled", 3, false), rest = $198.rest_props($$props, rest_excludes73);
33792
33835
  const context = getSegmentedControlContext();
33836
+ const buttonValue = $198.derived(() => $$props.value ?? $$props.href ?? "");
33793
33837
  const registerSegment = (node) => {
33794
33838
  return untrack16(() => context.register({
33795
33839
  node,
33796
33840
  get value() {
33797
- return $$props.value;
33841
+ return $198.get(buttonValue);
33798
33842
  },
33799
33843
  get disabled() {
33800
33844
  return disabled() || context.controlDisabled;
@@ -33804,64 +33848,83 @@ function Segment($$anchor, $$props) {
33804
33848
  }
33805
33849
  }));
33806
33850
  };
33807
- const isSelected = $198.derived(() => context.isSelected($$props.value));
33808
- const isFocusable = $198.derived(() => context.isFocusable($$props.value));
33851
+ const isSelected = $198.derived(() => context.isSelected($198.get(buttonValue)));
33852
+ const isFocusable = $198.derived(() => context.isFocusable($198.get(buttonValue)));
33809
33853
  const effectiveDisabled = $198.derived(() => disabled() || context.controlDisabled);
33854
+ const isNavigationItem = $198.derived(() => context.variant === "navigation");
33855
+ const anchorDisabled = $198.derived(() => $198.get(effectiveDisabled) || $$props.href === undefined);
33856
+ const elementAttributes = $198.derived(() => rest);
33857
+ const anchorTabindex = $198.derived(() => $198.get(anchorDisabled) ? -1 : $198.get(elementAttributes).tabindex);
33810
33858
  const role = $198.derived(() => context.selectionMode === "multiple" ? undefined : context.variant === "tablist" ? "tab" : "radio");
33811
- var button = root_265();
33812
- var event_handler = () => context.toggle($$props.value);
33813
- $198.attribute_effect(button, ($0) => ({
33814
- ...rest,
33815
- type: "button",
33816
- role: $198.get(role),
33817
- "data-cinder-segment-value": $$props.value,
33818
- "aria-checked": $198.get(role) === "radio" ? $198.get(isSelected) : undefined,
33819
- "aria-selected": $198.get(role) === "tab" ? $198.get(isSelected) : undefined,
33820
- "aria-pressed": context.selectionMode === "multiple" ? $198.get(isSelected) : undefined,
33821
- "aria-controls": $198.get(role) === "tab" ? $$props.controls : undefined,
33822
- "aria-disabled": $198.get(effectiveDisabled) ? "true" : undefined,
33823
- disabled: context.selectionMode === "multiple" ? $198.get(effectiveDisabled) : undefined,
33824
- tabindex: $198.get(isFocusable) ? 0 : -1,
33825
- class: $0,
33826
- "data-cinder-selected": $198.get(isSelected) ? "" : undefined,
33827
- "data-cinder-pressed": context.selectionMode === "multiple" && $198.get(isSelected) ? "" : undefined,
33828
- onclick: event_handler
33829
- }), [
33830
- () => classNames("cinder-segmented-control-option", $$props.class)
33831
- ]);
33832
- var node_1 = $198.child(button);
33833
- {
33834
- var consequent = ($$anchor2) => {
33835
- var span = root112();
33836
- var node_2 = $198.child(span);
33837
- $198.snippet(node_2, () => $$props.leading);
33838
- $198.reset(span);
33839
- $198.append($$anchor2, span);
33840
- };
33841
- $198.if(node_1, ($$render) => {
33842
- if ($$props.leading)
33843
- $$render(consequent);
33844
- });
33859
+ function handleAnchorClick(event14) {
33860
+ if ($198.get(anchorDisabled)) {
33861
+ event14.preventDefault();
33862
+ return;
33863
+ }
33864
+ $$props.onclick?.(event14);
33845
33865
  }
33846
- var node_3 = $198.sibling(node_1, 2);
33847
- $198.snippet(node_3, () => $$props.children ?? $198.noop);
33848
- var node_4 = $198.sibling(node_3, 2);
33866
+ var fragment_1 = $198.comment();
33867
+ var node_6 = $198.first_child(fragment_1);
33849
33868
  {
33850
- var consequent_1 = ($$anchor2) => {
33851
- var span_1 = root_1106();
33852
- var node_5 = $198.child(span_1);
33853
- $198.snippet(node_5, () => $$props.trailing);
33854
- $198.reset(span_1);
33855
- $198.append($$anchor2, span_1);
33869
+ var consequent_2 = ($$anchor2) => {
33870
+ var a = root_350();
33871
+ $198.attribute_effect(a, ($0) => ({
33872
+ ...$198.get(elementAttributes),
33873
+ href: $198.get(anchorDisabled) ? undefined : $$props.href,
33874
+ download: $$props.download,
33875
+ target: $$props.target,
33876
+ rel: $$props.rel,
33877
+ "data-cinder-segment-value": $198.get(buttonValue),
33878
+ "aria-current": current() ? currentToken() : undefined,
33879
+ "aria-disabled": $198.get(anchorDisabled) ? "true" : undefined,
33880
+ tabindex: $198.get(anchorTabindex),
33881
+ class: $0,
33882
+ "data-cinder-current": current() ? "" : undefined,
33883
+ onclick: handleAnchorClick
33884
+ }), [
33885
+ () => classNames("cinder-segmented-control-option", $$props.class)
33886
+ ]);
33887
+ var node_7 = $198.child(a);
33888
+ content(node_7);
33889
+ $198.reset(a);
33890
+ $198.append($$anchor2, a);
33856
33891
  };
33857
- $198.if(node_4, ($$render) => {
33858
- if ($$props.trailing)
33859
- $$render(consequent_1);
33892
+ var alternate = ($$anchor2) => {
33893
+ var button = root_431();
33894
+ var event_handler = () => context.toggle($198.get(buttonValue));
33895
+ $198.attribute_effect(button, ($0) => ({
33896
+ ...$198.get(elementAttributes),
33897
+ type: "button",
33898
+ role: $198.get(role),
33899
+ "data-cinder-segment-value": $198.get(buttonValue),
33900
+ "aria-checked": $198.get(role) === "radio" ? $198.get(isSelected) : undefined,
33901
+ "aria-selected": $198.get(role) === "tab" ? $198.get(isSelected) : undefined,
33902
+ "aria-pressed": context.selectionMode === "multiple" ? $198.get(isSelected) : undefined,
33903
+ "aria-controls": $198.get(role) === "tab" ? $$props.controls : undefined,
33904
+ "aria-disabled": $198.get(effectiveDisabled) ? "true" : undefined,
33905
+ disabled: context.selectionMode === "multiple" ? $198.get(effectiveDisabled) : undefined,
33906
+ tabindex: $198.get(isFocusable) ? 0 : -1,
33907
+ class: $0,
33908
+ "data-cinder-selected": $198.get(isSelected) ? "" : undefined,
33909
+ "data-cinder-pressed": context.selectionMode === "multiple" && $198.get(isSelected) ? "" : undefined,
33910
+ onclick: event_handler
33911
+ }), [
33912
+ () => classNames("cinder-segmented-control-option", $$props.class)
33913
+ ]);
33914
+ var node_8 = $198.child(button);
33915
+ content(node_8);
33916
+ $198.reset(button);
33917
+ $198.attach(button, () => registerSegment);
33918
+ $198.append($$anchor2, button);
33919
+ };
33920
+ $198.if(node_6, ($$render) => {
33921
+ if ($198.get(isNavigationItem))
33922
+ $$render(consequent_2);
33923
+ else
33924
+ $$render(alternate, -1);
33860
33925
  });
33861
33926
  }
33862
- $198.reset(button);
33863
- $198.attach(button, () => registerSegment);
33864
- $198.append($$anchor, button);
33927
+ $198.append($$anchor, fragment_1);
33865
33928
  $198.pop();
33866
33929
  }
33867
33930
 
@@ -33892,9 +33955,11 @@ var rest_excludes74 = new Set([
33892
33955
  "onchange",
33893
33956
  "children"
33894
33957
  ]);
33895
- var root113 = $199.from_html(`<input type="hidden"/>`);
33896
- var root_1107 = $199.from_html(`<input type="hidden" disabled=""/> <!>`, 1);
33897
- var root_266 = $199.from_html(`<div class="cinder-segmented-control-container"><span> </span> <div><!></div> <!></div>`);
33958
+ var root113 = $199.from_html(`<nav><!></nav>`);
33959
+ var root_1107 = $199.from_html(`<div><!></div>`);
33960
+ var root_266 = $199.from_html(`<input type="hidden"/>`);
33961
+ var root_351 = $199.from_html(`<input type="hidden" disabled=""/> <!>`, 1);
33962
+ var root_432 = $199.from_html(`<div class="cinder-segmented-control-container"><span> </span> <!> <!></div>`);
33898
33963
  function Segmented_control($$anchor, $$props) {
33899
33964
  $199.push($$props, true);
33900
33965
  let value = $199.prop($$props, "value", 15), hideLabel = $199.prop($$props, "hideLabel", 3, false), disabled = $199.prop($$props, "disabled", 3, false), size3 = $199.prop($$props, "size", 3, "md"), orientation = $199.prop($$props, "orientation", 3, "horizontal"), detached = $199.prop($$props, "detached", 3, false), fullWidth = $199.prop($$props, "fullWidth", 3, false), variant = $199.prop($$props, "variant", 3, "radiogroup"), selectionMode = $199.prop($$props, "selectionMode", 3, "single"), disallowEmptySelection = $199.prop($$props, "disallowEmptySelection", 3, true), rest = $199.rest_props($$props, rest_excludes74);
@@ -33902,9 +33967,11 @@ function Segmented_control($$anchor, $$props) {
33902
33967
  let resetSyncTimeout;
33903
33968
  const initialSingleValue = untrack17(() => typeof value() === "string" ? value() : undefined);
33904
33969
  const initialMultipleValues = untrack17(() => selectionMode() === "multiple" && value() instanceof SvelteSet ? Array.from(value()) : undefined);
33970
+ const effectiveVariant = $199.derived(() => selectionMode() === "multiple" && variant() !== "radiogroup" ? "radiogroup" : variant());
33971
+ const rendersNavigation = $199.derived(() => $199.get(effectiveVariant) === "navigation");
33905
33972
  const controller = new SegmentedControlController({
33906
33973
  selectionMode: () => selectionMode(),
33907
- variant: () => variant(),
33974
+ variant: () => $199.get(effectiveVariant),
33908
33975
  orientation: () => orientation(),
33909
33976
  controlDisabled: () => disabled(),
33910
33977
  disallowEmptySelection: () => disallowEmptySelection(),
@@ -33919,7 +33986,7 @@ function Segmented_control($$anchor, $$props) {
33919
33986
  return selectionMode();
33920
33987
  },
33921
33988
  get variant() {
33922
- return variant();
33989
+ return $199.get(effectiveVariant);
33923
33990
  },
33924
33991
  get controlDisabled() {
33925
33992
  return disabled();
@@ -33930,7 +33997,7 @@ function Segmented_control($$anchor, $$props) {
33930
33997
  toggle: (segmentValue) => controller.toggle(segmentValue)
33931
33998
  };
33932
33999
  setSegmentedControlContext(contextValue);
33933
- const groupRole = $199.derived(() => selectionMode() === "multiple" ? "group" : variant() === "tablist" ? "tablist" : "radiogroup");
34000
+ const groupRole = $199.derived(() => selectionMode() === "multiple" ? "group" : variant() === "navigation" ? undefined : variant() === "tablist" ? "tablist" : "radiogroup");
33934
34001
  const effectiveSize = $199.derived(() => $$props.density === "toolbar" ? "sm" : size3());
33935
34002
  const selectedValues = $199.derived(() => selectionMode() === "multiple" ? value() instanceof SvelteSet ? Array.from(value()) : [] : typeof value() === "string" ? [value()] : []);
33936
34003
  function resetToInitialValue(event14) {
@@ -33961,41 +34028,74 @@ function Segmented_control($$anchor, $$props) {
33961
34028
  }
33962
34029
  };
33963
34030
  });
33964
- var div = root_266();
34031
+ var div = root_432();
33965
34032
  var span = $199.child(div);
33966
34033
  var text29 = $199.child(span, true);
33967
34034
  $199.reset(span);
33968
- var div_1 = $199.sibling(span, 2);
33969
- var event_handler = (event14) => controller.handleKeydown(event14);
33970
- $199.attribute_effect(div_1, ($0) => ({
33971
- ...rest,
33972
- id: $$props.id,
33973
- role: $199.get(groupRole),
33974
- "aria-labelledby": `${$$props.id}-label`,
33975
- "aria-disabled": disabled() ? "true" : undefined,
33976
- "aria-orientation": selectionMode() === "single" ? orientation() : undefined,
33977
- "data-cinder-orientation": orientation(),
33978
- "data-cinder-size": $199.get(effectiveSize),
33979
- "data-cinder-density": $$props.density === "toolbar" ? "toolbar" : undefined,
33980
- "data-cinder-selection-mode": selectionMode(),
33981
- "data-cinder-detached": detached() ? "" : undefined,
33982
- "data-cinder-full-width": fullWidth() ? "" : undefined,
33983
- "data-cinder-variant": variant(),
33984
- class: $0,
33985
- onkeydown: event_handler
33986
- }), [() => classNames("cinder-segmented-control", $$props.class)]);
33987
- var node = $199.child(div_1);
33988
- $199.snippet(node, () => $$props.children);
33989
- $199.reset(div_1);
33990
- var node_1 = $199.sibling(div_1, 2);
34035
+ var node = $199.sibling(span, 2);
33991
34036
  {
33992
34037
  var consequent = ($$anchor2) => {
33993
- var fragment = root_1107();
34038
+ var nav = root113();
34039
+ $199.attribute_effect(nav, ($0) => ({
34040
+ ...rest,
34041
+ id: $$props.id,
34042
+ role: "navigation",
34043
+ "aria-labelledby": `${$$props.id}-label`,
34044
+ "data-cinder-orientation": orientation(),
34045
+ "data-cinder-size": $199.get(effectiveSize),
34046
+ "data-cinder-density": $$props.density === "toolbar" ? "toolbar" : undefined,
34047
+ "data-cinder-selection-mode": selectionMode(),
34048
+ "data-cinder-detached": detached() ? "" : undefined,
34049
+ "data-cinder-full-width": fullWidth() ? "" : undefined,
34050
+ "data-cinder-variant": $199.get(effectiveVariant),
34051
+ class: $0
34052
+ }), [() => classNames("cinder-segmented-control", $$props.class)]);
34053
+ var node_1 = $199.child(nav);
34054
+ $199.snippet(node_1, () => $$props.children);
34055
+ $199.reset(nav);
34056
+ $199.append($$anchor2, nav);
34057
+ };
34058
+ var alternate = ($$anchor2) => {
34059
+ var div_1 = root_1107();
34060
+ var event_handler = (event14) => controller.handleKeydown(event14);
34061
+ $199.attribute_effect(div_1, ($0) => ({
34062
+ ...rest,
34063
+ id: $$props.id,
34064
+ role: $199.get(groupRole),
34065
+ "aria-labelledby": `${$$props.id}-label`,
34066
+ "aria-disabled": disabled() ? "true" : undefined,
34067
+ "aria-orientation": selectionMode() === "single" ? orientation() : undefined,
34068
+ "data-cinder-orientation": orientation(),
34069
+ "data-cinder-size": $199.get(effectiveSize),
34070
+ "data-cinder-density": $$props.density === "toolbar" ? "toolbar" : undefined,
34071
+ "data-cinder-selection-mode": selectionMode(),
34072
+ "data-cinder-detached": detached() ? "" : undefined,
34073
+ "data-cinder-full-width": fullWidth() ? "" : undefined,
34074
+ "data-cinder-variant": $199.get(effectiveVariant),
34075
+ class: $0,
34076
+ onkeydown: event_handler
34077
+ }), [() => classNames("cinder-segmented-control", $$props.class)]);
34078
+ var node_2 = $199.child(div_1);
34079
+ $199.snippet(node_2, () => $$props.children);
34080
+ $199.reset(div_1);
34081
+ $199.append($$anchor2, div_1);
34082
+ };
34083
+ $199.if(node, ($$render) => {
34084
+ if ($199.get(rendersNavigation))
34085
+ $$render(consequent);
34086
+ else
34087
+ $$render(alternate, -1);
34088
+ });
34089
+ }
34090
+ var node_3 = $199.sibling(node, 2);
34091
+ {
34092
+ var consequent_1 = ($$anchor2) => {
34093
+ var fragment = root_351();
33994
34094
  var input_1 = $199.first_child(fragment);
33995
34095
  $199.bind_this(input_1, ($$value) => $199.set(resetInputElement, $$value), () => $199.get(resetInputElement));
33996
- var node_2 = $199.sibling(input_1, 2);
33997
- $199.each(node_2, 16, () => $199.get(selectedValues), (selectedValue) => selectedValue, ($$anchor3, selectedValue) => {
33998
- var input_2 = root113();
34096
+ var node_4 = $199.sibling(input_1, 2);
34097
+ $199.each(node_4, 16, () => $199.get(selectedValues), (selectedValue) => selectedValue, ($$anchor3, selectedValue) => {
34098
+ var input_2 = root_266();
33999
34099
  $199.remove_input_defaults(input_2);
34000
34100
  $199.template_effect(() => {
34001
34101
  $199.set_attribute(input_2, "name", $$props.name);
@@ -34006,9 +34106,9 @@ function Segmented_control($$anchor, $$props) {
34006
34106
  });
34007
34107
  $199.append($$anchor2, fragment);
34008
34108
  };
34009
- $199.if(node_1, ($$render) => {
34010
- if ($$props.name)
34011
- $$render(consequent);
34109
+ $199.if(node_3, ($$render) => {
34110
+ if ($$props.name && !$199.get(rendersNavigation))
34111
+ $$render(consequent_1);
34012
34112
  });
34013
34113
  }
34014
34114
  $199.reset(div);
@@ -34070,8 +34170,8 @@ var rest_excludes76 = new Set([
34070
34170
  var root115 = $201.from_html(`<!> <!> <!>`, 1);
34071
34171
  var root_1108 = $201.from_html(`<span class="no-changes svelte-1p8ursg">No changes</span>`);
34072
34172
  var root_267 = $201.from_html(`<!> Revert All`, 1);
34073
- var root_350 = $201.from_html(`<!> Compute Diff`, 1);
34074
- var root_431 = $201.from_html(`<div class="navigation svelte-1p8ursg"><!> <span class="change-counter svelte-1p8ursg"> </span> <!></div> <div class="shortcuts svelte-1p8ursg"><!> <!></div>`, 1);
34173
+ var root_352 = $201.from_html(`<!> Compute Diff`, 1);
34174
+ var root_433 = $201.from_html(`<div class="navigation svelte-1p8ursg"><!> <span class="change-counter svelte-1p8ursg"> </span> <!></div> <div class="shortcuts svelte-1p8ursg"><!> <!></div>`, 1);
34075
34175
  var root_524 = $201.from_html(`<span class="front-matter-only-hint svelte-1p8ursg">Front matter only</span>`);
34076
34176
  var root_616 = $201.from_html(`<div><div class="toolbar-left svelte-1p8ursg"><!> <div class="stats svelte-1p8ursg"><!> <!> <!> <!> <!> <!></div></div> <div class="toolbar-right svelte-1p8ursg"><!> <!> <!> <!></div></div>`);
34077
34177
  function Diff_toolbar($$anchor, $$props) {
@@ -34290,7 +34390,7 @@ function Diff_toolbar($$anchor, $$props) {
34290
34390
  return $201.get(isComputing);
34291
34391
  },
34292
34392
  children: ($$anchor3, $$slotProps) => {
34293
- var fragment_13 = root_350();
34393
+ var fragment_13 = root_352();
34294
34394
  var node_15 = $201.first_child(fragment_13);
34295
34395
  Refresh_cw(node_15, { class: "cinder-icon-sm" });
34296
34396
  $201.next();
@@ -34311,7 +34411,7 @@ function Diff_toolbar($$anchor, $$props) {
34311
34411
  var node_17 = $201.first_child(fragment_14);
34312
34412
  {
34313
34413
  var consequent_9 = ($$anchor3) => {
34314
- var fragment_15 = root_431();
34414
+ var fragment_15 = root_433();
34315
34415
  var div_4 = $201.first_child(fragment_15);
34316
34416
  var node_18 = $201.child(div_4);
34317
34417
  Button(node_18, {
@@ -34393,8 +34493,8 @@ function Diff_toolbar($$anchor, $$props) {
34393
34493
  var root116 = $202.from_html(`<span class="compute-time svelte-1fvc2en"> </span>`);
34394
34494
  var root_1109 = $202.from_html(`<div class="diff-warning svelte-1fvc2en" role="status"> <!></div>`);
34395
34495
  var root_268 = $202.from_html(`<!> Revert`, 1);
34396
- var root_351 = $202.from_html(`<div class="hunk-header svelte-1fvc2en"><span class="hunk-range svelte-1fvc2en"> </span> <!></div>`);
34397
- var root_432 = $202.from_html(`<!> <!>`, 1);
34496
+ var root_353 = $202.from_html(`<div class="hunk-header svelte-1fvc2en"><span class="hunk-range svelte-1fvc2en"> </span> <!></div>`);
34497
+ var root_434 = $202.from_html(`<!> <!>`, 1);
34398
34498
  var root_525 = $202.from_html(`<!> <!> <div class="diff-content svelte-1fvc2en"><!> <!></div>`, 1);
34399
34499
  function Diff_viewer($$anchor, $$props) {
34400
34500
  const instanceId = $202.props_id();
@@ -34695,11 +34795,11 @@ ${match[1] ?? ""}
34695
34795
  $202.each(node_7, 17, () => $202.get(lineDiffs), $202.index, ($$anchor3, lineDiff, idx) => {
34696
34796
  const isSelected = $202.derived(() => $202.get(selectedLineIndex) === idx);
34697
34797
  const hunkAtLine = $202.derived(() => $202.get(hunkStartMap).get(idx));
34698
- var fragment_7 = root_432();
34798
+ var fragment_7 = root_434();
34699
34799
  var node_8 = $202.first_child(fragment_7);
34700
34800
  {
34701
34801
  var consequent_5 = ($$anchor4) => {
34702
- var div_2 = root_351();
34802
+ var div_2 = root_353();
34703
34803
  var span_1 = $202.child(div_2);
34704
34804
  var text_2 = $202.child(span_1);
34705
34805
  $202.reset(span_1);
@@ -35131,8 +35231,8 @@ var rest_excludes78 = new Set([
35131
35231
  var root118 = $205.from_html(`<button type="button" class="cinder-drawer__close" aria-label="Close drawer"><svg class="cinder-drawer__close-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"><path d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"></path></svg></button>`);
35132
35232
  var root_1114 = $205.from_html(`<h2 class="cinder-sr-only"> </h2>`);
35133
35233
  var root_270 = $205.from_html(`<!> <!>`, 1);
35134
- var root_352 = $205.from_html(`<h2 class="cinder-drawer__title"> </h2>`);
35135
- var root_433 = $205.from_html(`<div class="cinder-drawer__footer"><!></div>`);
35234
+ var root_354 = $205.from_html(`<h2 class="cinder-drawer__title"> </h2>`);
35235
+ var root_435 = $205.from_html(`<div class="cinder-drawer__footer"><!></div>`);
35136
35236
  var root_526 = $205.from_html(`<div class="cinder-drawer__panel"><header class="cinder-drawer__header"><!> <!></header> <div class="cinder-drawer__body" tabindex="-1"><!></div> <!></div>`);
35137
35237
  var root_617 = $205.from_html(`<dialog><!></dialog>`);
35138
35238
  function Drawer($$anchor, $$props) {
@@ -35232,7 +35332,7 @@ function Drawer($$anchor, $$props) {
35232
35332
  $205.append($$anchor4, fragment_1);
35233
35333
  };
35234
35334
  var alternate = ($$anchor4) => {
35235
- var h2_1 = root_352();
35335
+ var h2_1 = root_354();
35236
35336
  var text_1 = $205.child(h2_1, true);
35237
35337
  $205.reset(h2_1);
35238
35338
  $205.template_effect(() => {
@@ -35259,7 +35359,7 @@ function Drawer($$anchor, $$props) {
35259
35359
  var node_7 = $205.sibling(div_1, 2);
35260
35360
  {
35261
35361
  var consequent_2 = ($$anchor4) => {
35262
- var div_2 = root_433();
35362
+ var div_2 = root_435();
35263
35363
  var node_8 = $205.child(div_2);
35264
35364
  $205.snippet(node_8, () => $$props.footer);
35265
35365
  $205.reset(div_2);
@@ -35350,14 +35450,14 @@ var rest_excludes79 = new Set([
35350
35450
  var root119 = $206.from_html(`<div class="cinder-empty-state-icon" aria-hidden="true"><!></div>`);
35351
35451
  var root_1116 = $206.from_html(`<p class="cinder-empty-state-description"> </p>`);
35352
35452
  var root_271 = $206.from_html(`<div class="cinder-empty-state-action"><!></div>`);
35353
- var root_353 = $206.from_html(`<div><!> <!> <!> <!></div>`);
35453
+ var root_355 = $206.from_html(`<div><!> <!> <!> <!></div>`);
35354
35454
  function Empty_state($$anchor, $$props) {
35355
35455
  const titleId = $206.props_id();
35356
35456
  $206.push($$props, true);
35357
35457
  let headingLevel = $206.prop($$props, "headingLevel", 3, 3), rest = $206.rest_props($$props, rest_excludes79);
35358
35458
  const safeLevel = $206.derived(() => Number.isFinite(Math.trunc(Number(headingLevel()))) ? Math.min(6, Math.max(1, Math.trunc(Number(headingLevel())))) : 3);
35359
35459
  const tag = $206.derived(() => `h${$206.get(safeLevel)}`);
35360
- var div = root_353();
35460
+ var div = root_355();
35361
35461
  $206.attribute_effect(div, ($0) => ({
35362
35462
  ...rest,
35363
35463
  class: $0,
@@ -35442,8 +35542,8 @@ var rest_excludes80 = new Set([
35442
35542
  var root120 = $207.from_html(`<div class="cinder-event-timeline__label"> </div>`);
35443
35543
  var root_1117 = $207.from_html(`<div class="cinder-event-timeline__now"></div>`);
35444
35544
  var root_272 = $207.from_html(`<time class="cinder-event-timeline__item-sublabel"> </time>`);
35445
- var root_354 = $207.from_html(`<time class="cinder-sr-only"> </time>`);
35446
- var root_434 = $207.from_html(`<div class="cinder-event-timeline__item" role="listitem"><span class="cinder-event-timeline__dot" aria-hidden="true"></span> <span class="cinder-event-timeline__content"><span class="cinder-event-timeline__item-label"> </span> <!> <span class="cinder-sr-only"> </span></span></div>`);
35545
+ var root_356 = $207.from_html(`<time class="cinder-sr-only"> </time>`);
35546
+ var root_436 = $207.from_html(`<div class="cinder-event-timeline__item" role="listitem"><span class="cinder-event-timeline__dot" aria-hidden="true"></span> <span class="cinder-event-timeline__content"><span class="cinder-event-timeline__item-label"> </span> <!> <span class="cinder-sr-only"> </span></span></div>`);
35447
35547
  var root_527 = $207.from_html(`<div><!> <div class="cinder-event-timeline__axis" aria-hidden="true"><!></div> <div class="cinder-event-timeline__items" role="list"></div></div>`);
35448
35548
  function Event_timeline($$anchor, $$props) {
35449
35549
  $207.push($$props, true);
@@ -35566,7 +35666,7 @@ function Event_timeline($$anchor, $$props) {
35566
35666
  var div_4 = $207.sibling(div_2, 2);
35567
35667
  let styles_1;
35568
35668
  $207.each(div_4, 21, () => $207.get(positionedItems), (item) => item.key, ($$anchor2, item) => {
35569
- var div_5 = root_434();
35669
+ var div_5 = root_436();
35570
35670
  let styles_2;
35571
35671
  var span = $207.sibling($207.child(div_5), 2);
35572
35672
  var span_1 = $207.child(span);
@@ -35585,7 +35685,7 @@ function Event_timeline($$anchor, $$props) {
35585
35685
  $207.append($$anchor3, time);
35586
35686
  };
35587
35687
  var alternate = ($$anchor3) => {
35588
- var time_1 = root_354();
35688
+ var time_1 = root_356();
35589
35689
  var text_3 = $207.child(time_1, true);
35590
35690
  $207.reset(time_1);
35591
35691
  $207.template_effect(() => {
@@ -35717,8 +35817,8 @@ var rest_excludes81 = new Set([
35717
35817
  var root121 = $208.from_html(`<button type="button" class="cinder-event-stream-viewer__resume-button">Resume following</button>`);
35718
35818
  var root_1118 = $208.from_html(`<input type="search" class="cinder-event-stream-viewer__filter-input" placeholder="Filter events…" aria-label="Filter events"/>`);
35719
35819
  var root_273 = $208.from_html(`<button type="button" class="cinder-event-stream-viewer__copy-all-button" aria-label="Copy all visible events">Copy visible</button>`);
35720
- var root_355 = $208.from_html(`<div class="cinder-event-stream-viewer__truncation-notice" role="status" aria-live="polite">Stream truncated — only the most recent events are shown.</div>`);
35721
- var root_435 = $208.from_html(`<div class="cinder-event-stream-viewer__loading" role="status" aria-label="Loading events"><div class="cinder-event-stream-viewer__skeleton" aria-hidden="true"></div> <div class="cinder-event-stream-viewer__skeleton" aria-hidden="true"></div> <div class="cinder-event-stream-viewer__skeleton" aria-hidden="true"></div></div>`);
35820
+ var root_357 = $208.from_html(`<div class="cinder-event-stream-viewer__truncation-notice" role="status" aria-live="polite">Stream truncated — only the most recent events are shown.</div>`);
35821
+ var root_437 = $208.from_html(`<div class="cinder-event-stream-viewer__loading" role="status" aria-label="Loading events"><div class="cinder-event-stream-viewer__skeleton" aria-hidden="true"></div> <div class="cinder-event-stream-viewer__skeleton" aria-hidden="true"></div> <div class="cinder-event-stream-viewer__skeleton" aria-hidden="true"></div></div>`);
35722
35822
  var root_528 = $208.from_html(`<div class="cinder-event-stream-viewer__empty" role="status"><p class="cinder-event-stream-viewer__empty-message">No events to display.</p></div>`);
35723
35823
  var root_618 = $208.from_html(`<time class="cinder-event-stream-viewer__marker-time"> </time>`);
35724
35824
  var root_715 = $208.from_html(`<span class="cinder-event-stream-viewer__marker-time"> </span>`);
@@ -35959,7 +36059,7 @@ function Event_stream_viewer($$anchor, $$props) {
35959
36059
  var node_4 = $208.sibling(div_1, 2);
35960
36060
  {
35961
36061
  var consequent_4 = ($$anchor2) => {
35962
- var div_4 = root_355();
36062
+ var div_4 = root_357();
35963
36063
  $208.append($$anchor2, div_4);
35964
36064
  };
35965
36065
  $208.if(node_4, ($$render) => {
@@ -35981,7 +36081,7 @@ function Event_stream_viewer($$anchor, $$props) {
35981
36081
  var node_6 = $208.first_child(fragment_1);
35982
36082
  {
35983
36083
  var consequent_5 = ($$anchor3) => {
35984
- var div_5 = root_435();
36084
+ var div_5 = root_437();
35985
36085
  $208.append($$anchor3, div_5);
35986
36086
  };
35987
36087
  var consequent_6 = ($$anchor3) => {
@@ -36360,8 +36460,8 @@ var rest_excludes83 = new Set([
36360
36460
  var root123 = $210.from_html(`<option> </option>`);
36361
36461
  var root_1120 = $210.from_html(`<div class="cinder-faceted-filter-bar__facet"><label class="cinder-faceted-filter-bar__facet-label"> </label> <select class="cinder-faceted-filter-bar__select"><option> </option><!></select> <span class="cinder-faceted-filter-bar__select-chevron" aria-hidden="true"></span></div>`);
36362
36462
  var root_274 = $210.from_html(`<div class="cinder-faceted-filter-bar__facet"><!></div>`);
36363
- var root_356 = $210.from_html(`<div class="cinder-faceted-filter-bar__chips" aria-label="Active filter controls"><!> <!></div>`);
36364
- var root_436 = $210.from_html(`<div><div class="cinder-faceted-filter-bar__controls"><!> <!></div> <!> <!></div>`);
36463
+ var root_358 = $210.from_html(`<div class="cinder-faceted-filter-bar__chips" aria-label="Active filter controls"><!> <!></div>`);
36464
+ var root_438 = $210.from_html(`<div><div class="cinder-faceted-filter-bar__controls"><!> <!></div> <!> <!></div>`);
36365
36465
  function Faceted_filter_bar($$anchor, $$props) {
36366
36466
  const generatedId = $210.props_id();
36367
36467
  $210.push($$props, true);
@@ -36414,7 +36514,7 @@ function Faceted_filter_bar($$anchor, $$props) {
36414
36514
  function getFacetCurrentValue(key2) {
36415
36515
  return resolveFacetValue(key2);
36416
36516
  }
36417
- var div = root_436();
36517
+ var div = root_438();
36418
36518
  $210.attribute_effect(div, ($0) => ({
36419
36519
  ...rest,
36420
36520
  class: $0,
@@ -36532,7 +36632,7 @@ function Faceted_filter_bar($$anchor, $$props) {
36532
36632
  var node_5 = $210.sibling(div_1, 2);
36533
36633
  {
36534
36634
  var consequent_3 = ($$anchor2) => {
36535
- var div_4 = root_356();
36635
+ var div_4 = root_358();
36536
36636
  var node_6 = $210.child(div_4);
36537
36637
  $210.each(node_6, 17, appliedFilters, (filter) => filter.key, ($$anchor3, filter) => {
36538
36638
  const displayValue = $210.derived(() => resolveFilterDisplayValue($210.get(filter).key, $210.get(filter).value));
@@ -36620,8 +36720,8 @@ var rest_excludes84 = new Set([
36620
36720
  var root124 = $211.from_html(`<p class="cinder-feature-section__description"> </p>`);
36621
36721
  var root_1121 = $211.from_html(`<div class="cinder-feature-section__extra"><!></div>`);
36622
36722
  var root_275 = $211.from_html(`<span class="cinder-feature-section__icon" aria-hidden="true"> </span>`);
36623
- var root_357 = $211.from_html(`<li class="cinder-feature-section__item"><!> <h3 class="cinder-feature-section__item-title"> </h3> <p class="cinder-feature-section__item-description"> </p></li>`);
36624
- var root_437 = $211.from_html(`<aside class="cinder-feature-section__media"><!></aside>`);
36723
+ var root_359 = $211.from_html(`<li class="cinder-feature-section__item"><!> <h3 class="cinder-feature-section__item-title"> </h3> <p class="cinder-feature-section__item-description"> </p></li>`);
36724
+ var root_439 = $211.from_html(`<aside class="cinder-feature-section__media"><!></aside>`);
36625
36725
  var root_529 = $211.from_html(`<div class="cinder-feature-section__inner"><header class="cinder-feature-section__header"><h2 class="cinder-feature-section__title"> </h2> <!> <!></header> <div class="cinder-feature-section__body"><ul class="cinder-feature-section__list"></ul> <!></div></div>`);
36626
36726
  function Feature_section($$anchor, $$props) {
36627
36727
  $211.push($$props, true);
@@ -36682,7 +36782,7 @@ function Feature_section($$anchor, $$props) {
36682
36782
  var div_2 = $211.sibling(header, 2);
36683
36783
  var ul = $211.child(div_2);
36684
36784
  $211.each(ul, 23, () => $$props.items, (item, index5) => `${item.title}-${index5}`, ($$anchor4, item) => {
36685
- var li = root_357();
36785
+ var li = root_359();
36686
36786
  var node_4 = $211.child(li);
36687
36787
  {
36688
36788
  var consequent_2 = ($$anchor5) => {
@@ -36714,7 +36814,7 @@ function Feature_section($$anchor, $$props) {
36714
36814
  var node_5 = $211.sibling(ul, 2);
36715
36815
  {
36716
36816
  var consequent_3 = ($$anchor4) => {
36717
- var aside = root_437();
36817
+ var aside = root_439();
36718
36818
  var node_6 = $211.child(aside);
36719
36819
  $211.snippet(node_6, () => $$props.media);
36720
36820
  $211.reset(aside);
@@ -36757,11 +36857,11 @@ var rest_excludes85 = new Set([
36757
36857
  var root125 = $212.from_html(`<span class="cinder-feed-event-icon"><!></span>`);
36758
36858
  var root_1122 = $212.from_html(`<span class="cinder-feed-event-dot"></span>`);
36759
36859
  var root_276 = $212.from_html(`<div class="cinder-feed-event-content"><!></div>`);
36760
- var root_358 = $212.from_html(`<li><span class="cinder-feed-event-rail" aria-hidden="true"><!></span> <div class="cinder-feed-event-body"><!> <time class="cinder-feed-event-time"><!></time></div></li>`);
36860
+ var root_360 = $212.from_html(`<li><span class="cinder-feed-event-rail" aria-hidden="true"><!></span> <div class="cinder-feed-event-body"><!> <time class="cinder-feed-event-time"><!></time></div></li>`);
36761
36861
  function Feed_event($$anchor, $$props) {
36762
36862
  $212.push($$props, true);
36763
36863
  let variant = $212.prop($$props, "variant", 3, "icon"), rest = $212.rest_props($$props, rest_excludes85);
36764
- var li = root_358();
36864
+ var li = root_360();
36765
36865
  $212.attribute_effect(li, ($0) => ({ ...rest, class: $0, "data-cinder-variant": variant() }), [() => classNames("cinder-feed-event", $$props.class)]);
36766
36866
  var span = $212.child(li);
36767
36867
  var node = $212.child(span);
@@ -37031,8 +37131,8 @@ var rest_excludes88 = new Set([
37031
37131
  var root128 = $215.from_html(`<div class="cinder-file-upload__body"><span class="cinder-file-upload__eyebrow"><svg class="cinder-file-upload__eyebrow-icon" aria-hidden="true" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 10.75V3.75M8 3.75L5.25 6.5M8 3.75L10.75 6.5M3 10.5V11.75C3 12.4404 3.55964 13 4.25 13H11.75C12.4404 13 13 12.4404 13 11.75V10.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg> Drag files here or choose files</span> <p class="cinder-file-upload__hint">Drop files on this area or use the native file picker.</p></div>`);
37032
37132
  var root_1124 = $215.from_html(`<div class="cinder-file-upload__body"><span class="cinder-file-upload__eyebrow">Drop files to add them</span> <p class="cinder-file-upload__hint">Release now to validate and queue the selected files.</p></div>`);
37033
37133
  var root_277 = $215.from_html(`<span class="cinder-file-upload__status" data-status="uploading">Uploading</span>`);
37034
- var root_359 = $215.from_html(`<span class="cinder-file-upload__status" data-status="success"><svg class="cinder-file-upload__status-icon" aria-hidden="true" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.5 8.5L6.25 11.25L12.5 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg> Complete</span>`);
37035
- var root_438 = $215.from_html(`<span class="cinder-file-upload__status" data-status="error"><svg class="cinder-file-upload__status-icon" aria-hidden="true" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 4.5V8.25M8 11H8.00667M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg> Failed</span>`);
37134
+ var root_361 = $215.from_html(`<span class="cinder-file-upload__status" data-status="success"><svg class="cinder-file-upload__status-icon" aria-hidden="true" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.5 8.5L6.25 11.25L12.5 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg> Complete</span>`);
37135
+ var root_440 = $215.from_html(`<span class="cinder-file-upload__status" data-status="error"><svg class="cinder-file-upload__status-icon" aria-hidden="true" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 4.5V8.25M8 11H8.00667M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg> Failed</span>`);
37036
37136
  var root_530 = $215.from_html(`<span class="cinder-file-upload__status" data-status="pending">Pending</span>`);
37037
37137
  var root_619 = $215.from_html(`<div class="cinder-file-upload__progress" role="progressbar" aria-valuemin="0" aria-valuemax="100"><div class="cinder-file-upload__progress-fill"></div></div>`);
37038
37138
  var root_716 = $215.from_html(`<p class="cinder-file-upload__error"> </p>`);
@@ -37323,11 +37423,11 @@ function File_upload($$anchor, $$props) {
37323
37423
  $215.append($$anchor5, span_2);
37324
37424
  };
37325
37425
  var consequent_5 = ($$anchor5) => {
37326
- var span_3 = root_359();
37426
+ var span_3 = root_361();
37327
37427
  $215.append($$anchor5, span_3);
37328
37428
  };
37329
37429
  var consequent_6 = ($$anchor5) => {
37330
- var span_4 = root_438();
37430
+ var span_4 = root_440();
37331
37431
  $215.append($$anchor5, span_4);
37332
37432
  };
37333
37433
  var alternate_2 = ($$anchor5) => {
@@ -37443,7 +37543,7 @@ import * as $216 from "svelte/internal/client";
37443
37543
  var root129 = $216.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
37444
37544
  var root_1125 = $216.from_html(`<p class="cinder-form-field__description"> </p>`);
37445
37545
  var root_278 = $216.from_html(`<p class="cinder-form-field__error" aria-live="polite"> </p>`);
37446
- var root_360 = $216.from_html(`<div><label class="cinder-form-field__label"> <!></label> <!> <!> <!></div>`);
37546
+ var root_362 = $216.from_html(`<div><label class="cinder-form-field__label"> <!></label> <!> <!> <!></div>`);
37447
37547
  function Form_field($$anchor, $$props) {
37448
37548
  $216.push($$props, true);
37449
37549
  let required = $216.prop($$props, "required", 3, false), disabled = $216.prop($$props, "disabled", 3, false);
@@ -37478,7 +37578,7 @@ function Form_field($$anchor, $$props) {
37478
37578
  return disabled();
37479
37579
  }
37480
37580
  });
37481
- var div = root_360();
37581
+ var div = root_362();
37482
37582
  var label_1 = $216.child(div);
37483
37583
  var text33 = $216.child(label_1);
37484
37584
  var node = $216.sibling(text33);
@@ -37553,7 +37653,7 @@ var headingTags = { 2: "h2", 3: "h3", 4: "h4", 5: "h5", 6: "h6" };
37553
37653
  var root130 = $217.from_html(`<legend class="cinder-form-section__legend"> </legend>`);
37554
37654
  var root_1126 = $217.from_html(`<p class="cinder-form-section__description"> </p>`);
37555
37655
  var root_279 = $217.from_html(`<fieldset><!> <!> <div class="cinder-form-section__grid"><!></div></fieldset>`);
37556
- var root_361 = $217.from_html(`<section><!> <!> <div class="cinder-form-section__grid"><!></div></section>`);
37656
+ var root_363 = $217.from_html(`<section><!> <!> <div class="cinder-form-section__grid"><!></div></section>`);
37557
37657
  function Form_section($$anchor, $$props) {
37558
37658
  $217.push($$props, true);
37559
37659
  let as = $217.prop($$props, "as", 3, "section"), headingLevel = $217.prop($$props, "headingLevel", 3, 2), columns = $217.prop($$props, "columns", 3, 2);
@@ -37610,7 +37710,7 @@ function Form_section($$anchor, $$props) {
37610
37710
  $217.append($$anchor2, fieldset);
37611
37711
  };
37612
37712
  var alternate = ($$anchor2) => {
37613
- var section = root_361();
37713
+ var section = root_363();
37614
37714
  var node_4 = $217.child(section);
37615
37715
  {
37616
37716
  var consequent_3 = ($$anchor3) => {
@@ -37690,8 +37790,8 @@ var rest_excludes89 = new Set([
37690
37790
  var root131 = $218.from_html(`<h2 class="cinder-footer__brand-title"> </h2>`);
37691
37791
  var root_1127 = $218.from_html(`<p class="cinder-footer__brand-description"> </p>`);
37692
37792
  var root_280 = $218.from_html(`<section class="cinder-footer__brand"><!> <!></section>`);
37693
- var root_362 = $218.from_html(`<li><a class="cinder-footer__link"> </a></li>`);
37694
- var root_439 = $218.from_html(`<nav><h3 class="cinder-footer__group-title"> </h3> <ul class="cinder-footer__list"></ul></nav>`);
37793
+ var root_364 = $218.from_html(`<li><a class="cinder-footer__link"> </a></li>`);
37794
+ var root_441 = $218.from_html(`<nav><h3 class="cinder-footer__group-title"> </h3> <ul class="cinder-footer__list"></ul></nav>`);
37695
37795
  var root_531 = $218.from_html(`<div class="cinder-footer__groups"></div>`);
37696
37796
  var root_620 = $218.from_html(`<span> </span>`);
37697
37797
  var root_717 = $218.from_html(`<ul class="cinder-footer__legal-links"></ul>`);
@@ -37748,13 +37848,13 @@ function Footer($$anchor, $$props) {
37748
37848
  var consequent_3 = ($$anchor2) => {
37749
37849
  var div_1 = root_531();
37750
37850
  $218.each(div_1, 21, groups, (group) => group.id, ($$anchor3, group) => {
37751
- var nav = root_439();
37851
+ var nav = root_441();
37752
37852
  var h3 = $218.child(nav);
37753
37853
  var text_2 = $218.child(h3, true);
37754
37854
  $218.reset(h3);
37755
37855
  var ul = $218.sibling(h3, 2);
37756
37856
  $218.each(ul, 21, () => $218.get(group).links, (link) => link.id, ($$anchor4, link) => {
37757
- var li = root_362();
37857
+ var li = root_364();
37758
37858
  var a = $218.child(li);
37759
37859
  var text_3 = $218.child(a, true);
37760
37860
  $218.reset(a);
@@ -37805,7 +37905,7 @@ function Footer($$anchor, $$props) {
37805
37905
  var consequent_5 = ($$anchor3) => {
37806
37906
  var ul_1 = root_717();
37807
37907
  $218.each(ul_1, 21, legalLinks, (link) => link.id, ($$anchor4, link) => {
37808
- var li_1 = root_362();
37908
+ var li_1 = root_364();
37809
37909
  var a_1 = $218.child(li_1);
37810
37910
  var text_5 = $218.child(a_1, true);
37811
37911
  $218.reset(a_1);
@@ -37977,8 +38077,8 @@ var rest_excludes92 = new Set([
37977
38077
  var root132 = $221.from_html(`<div class="cinder-grid-list__image"><!></div>`);
37978
38078
  var root_1128 = $221.from_html(`<a class="cinder-grid-list__link"><!></a>`);
37979
38079
  var root_281 = $221.from_html(`<div class="cinder-grid-list__title"><!></div>`);
37980
- var root_363 = $221.from_html(`<div class="cinder-grid-list__subtitle"><!></div>`);
37981
- var root_440 = $221.from_html(`<div class="cinder-grid-list__meta"><!></div>`);
38080
+ var root_365 = $221.from_html(`<div class="cinder-grid-list__subtitle"><!></div>`);
38081
+ var root_442 = $221.from_html(`<div class="cinder-grid-list__meta"><!></div>`);
37982
38082
  var root_532 = $221.from_html(`<div class="cinder-grid-list__actions"><!></div>`);
37983
38083
  var root_621 = $221.from_html(`<li><!> <!> <!> <!> <!></li>`);
37984
38084
  function Grid_list_item($$anchor, $$props) {
@@ -38051,7 +38151,7 @@ function Grid_list_item($$anchor, $$props) {
38051
38151
  var node_6 = $221.sibling(node_2, 2);
38052
38152
  {
38053
38153
  var consequent_3 = ($$anchor2) => {
38054
- var div_2 = root_363();
38154
+ var div_2 = root_365();
38055
38155
  var node_7 = $221.child(div_2);
38056
38156
  $221.snippet(node_7, () => $$props.subtitle);
38057
38157
  $221.reset(div_2);
@@ -38065,7 +38165,7 @@ function Grid_list_item($$anchor, $$props) {
38065
38165
  var node_8 = $221.sibling(node_6, 2);
38066
38166
  {
38067
38167
  var consequent_4 = ($$anchor2) => {
38068
- var div_3 = root_440();
38168
+ var div_3 = root_442();
38069
38169
  var node_9 = $221.child(div_3);
38070
38170
  $221.snippet(node_9, () => $$props.meta);
38071
38171
  $221.reset(div_3);
@@ -38142,7 +38242,7 @@ import { onDestroy as onDestroy8 } from "svelte";
38142
38242
  var root134 = $223.from_html(`<span class="cinder-sr-only"> </span>`);
38143
38243
  var root_1129 = $223.from_html(`<span class="cinder-hover-card__arrow"></span>`);
38144
38244
  var root_282 = $223.from_html(`<div role="tooltip"><!> <!></div>`);
38145
- var root_364 = $223.from_html(`<span><!></span> <!> <!>`, 1);
38245
+ var root_366 = $223.from_html(`<span><!></span> <!> <!>`, 1);
38146
38246
  function Hover_card($$anchor, $$props) {
38147
38247
  const baseId = $223.props_id();
38148
38248
  $223.push($$props, true);
@@ -38291,7 +38391,7 @@ function Hover_card($$anchor, $$props) {
38291
38391
  devWarn("HoverCard content should be non-interactive. Use Popover for focusable content.");
38292
38392
  }
38293
38393
  });
38294
- var fragment = root_364();
38394
+ var fragment = root_366();
38295
38395
  var span = $223.first_child(fragment);
38296
38396
  $223.attribute_effect(span, () => ({
38297
38397
  class: "cinder-hover-card__trigger",
@@ -38396,8 +38496,8 @@ var rest_excludes94 = new Set([
38396
38496
  var root135 = $224.from_html(`<p class="cinder-hero-section__eyebrow"> </p>`);
38397
38497
  var root_1130 = $224.from_html(`<p class="cinder-hero-section__description"> </p>`);
38398
38498
  var root_283 = $224.from_html(`<div class="cinder-hero-section__actions"><!></div>`);
38399
- var root_365 = $224.from_html(`<div class="cinder-hero-section__extra"><!></div>`);
38400
- var root_441 = $224.from_html(`<div class="cinder-hero-section__media"><!></div>`);
38499
+ var root_367 = $224.from_html(`<div class="cinder-hero-section__extra"><!></div>`);
38500
+ var root_443 = $224.from_html(`<div class="cinder-hero-section__media"><!></div>`);
38401
38501
  var root_533 = $224.from_html(`<div class="cinder-hero-section__inner"><div class="cinder-hero-section__content"><!> <h2 class="cinder-hero-section__title"> </h2> <!> <!> <!></div> <!></div>`);
38402
38502
  function Hero_section($$anchor, $$props) {
38403
38503
  $224.push($$props, true);
@@ -38467,7 +38567,7 @@ function Hero_section($$anchor, $$props) {
38467
38567
  var node_5 = $224.sibling(node_3, 2);
38468
38568
  {
38469
38569
  var consequent_3 = ($$anchor4) => {
38470
- var div_3 = root_365();
38570
+ var div_3 = root_367();
38471
38571
  var node_6 = $224.child(div_3);
38472
38572
  $224.snippet(node_6, () => $$props.children);
38473
38573
  $224.reset(div_3);
@@ -38482,7 +38582,7 @@ function Hero_section($$anchor, $$props) {
38482
38582
  var node_7 = $224.sibling(div_1, 2);
38483
38583
  {
38484
38584
  var consequent_4 = ($$anchor4) => {
38485
- var div_4 = root_441();
38585
+ var div_4 = root_443();
38486
38586
  var node_8 = $224.child(div_4);
38487
38587
  $224.snippet(node_8, () => $$props.media);
38488
38588
  $224.reset(div_4);
@@ -39205,8 +39305,8 @@ function calculatePropertyValidationErrorCount(propertyNames, childValidationCou
39205
39305
  var root143 = $232.from_html(`<p class="cinder-jse-property-list__empty">No properties yet.</p>`);
39206
39306
  var root_1135 = $232.from_html(`<div class="cinder-jse-property-row__panel"><!> <!></div>`);
39207
39307
  var root_284 = $232.from_html(`<div class="cinder-jse-property-row"><div class="cinder-jse-property-row__summary"><button type="button" class="cinder-jse-property-row__trigger"><span class="cinder-jse-property-row__chevron" aria-hidden="true">▸</span> <span class="cinder-jse-property-row__name"> </span> <span class="cinder-jse-property-row__type"> </span></button> <span class="cinder-jse-property-row__spacer"></span> <!> <!> <!> <!></div> <!></div>`);
39208
- var root_366 = $232.from_html(`<details class="cinder-jse-required-only"><summary class="cinder-jse-required-only__summary"> </summary> <div class="cinder-jse-required-only__panel"><!> <!> <!></div></details>`);
39209
- var root_442 = $232.from_html(`<div class="cinder-jse-property-list"><!> <!> <!> <!> <!></div>`);
39308
+ var root_368 = $232.from_html(`<details class="cinder-jse-required-only"><summary class="cinder-jse-required-only__summary"> </summary> <div class="cinder-jse-required-only__panel"><!> <!> <!></div></details>`);
39309
+ var root_444 = $232.from_html(`<div class="cinder-jse-property-list"><!> <!> <!> <!> <!></div>`);
39210
39310
  function Property_list($$anchor, $$props) {
39211
39311
  $232.push($$props, true);
39212
39312
  let depth = $232.prop($$props, "depth", 3, 0), readonly = $232.prop($$props, "readonly", 3, false);
@@ -39363,7 +39463,7 @@ function Property_list($$anchor, $$props) {
39363
39463
  return;
39364
39464
  $$props.onchange($$props.properties, $$props.required.filter((entry) => entry !== name));
39365
39465
  }
39366
- var div = root_442();
39466
+ var div = root_444();
39367
39467
  var node = $232.child(div);
39368
39468
  {
39369
39469
  var consequent = ($$anchor2) => {
@@ -39580,7 +39680,7 @@ function Property_list($$anchor, $$props) {
39580
39680
  var node_11 = $232.sibling(node_10, 2);
39581
39681
  {
39582
39682
  var consequent_3 = ($$anchor2) => {
39583
- var details = root_366();
39683
+ var details = root_368();
39584
39684
  var summary = $232.child(details);
39585
39685
  var text_8 = $232.child(summary);
39586
39686
  $232.reset(summary);
@@ -39708,8 +39808,8 @@ var NUMBER_CONSTRAINT_FIELDS = [
39708
39808
  var root144 = $233.from_html(`<div class="cinder-jse-boolean-schema"><span> </span> <!></div>`);
39709
39809
  var root_1136 = $233.from_html(`<button type="button" class="cinder-jse-collapsed"><span class="cinder-jse-collapsed__summary"> </span> <span class="cinder-jse-collapsed__hint">Expand</span></button>`);
39710
39810
  var root_285 = $233.from_html(`<div class="cinder-jse-section-header"><!></div>`);
39711
- var root_367 = $233.from_html(`<div class="cinder-jse-section"><h4 class="cinder-jse-section__title">Properties</h4> <!></div>`);
39712
- var root_443 = $233.from_html(`<div class="cinder-jse-section"><h4 class="cinder-jse-section__title">Array items</h4> <!></div>`);
39811
+ var root_369 = $233.from_html(`<div class="cinder-jse-section"><h4 class="cinder-jse-section__title">Properties</h4> <!></div>`);
39812
+ var root_445 = $233.from_html(`<div class="cinder-jse-section"><h4 class="cinder-jse-section__title">Array items</h4> <!></div>`);
39713
39813
  var root_534 = $233.from_html(`<details class="cinder-jse-section cinder-jse-section--collapsible"><summary class="cinder-jse-section__title">String constraints</summary> <div class="cinder-jse-section__body"><!> <!> <!> <!></div></details>`);
39714
39814
  var root_622 = $233.from_html(`<details class="cinder-jse-section cinder-jse-section--collapsible"><summary class="cinder-jse-section__title">Number constraints</summary> <div class="cinder-jse-section__body"></div></details>`);
39715
39815
  var root_718 = $233.from_html(`<!> <!>`, 1);
@@ -40070,7 +40170,7 @@ function Property_editor($$anchor, $$props) {
40070
40170
  var node_8 = $233.sibling(div_4, 2);
40071
40171
  {
40072
40172
  var consequent_4 = ($$anchor3) => {
40073
- var div_6 = root_367();
40173
+ var div_6 = root_369();
40074
40174
  var node_9 = $233.sibling($233.child(div_6), 2);
40075
40175
  {
40076
40176
  let $0 = $233.derived(() => `${$$props.path}/properties`);
@@ -40110,7 +40210,7 @@ function Property_editor($$anchor, $$props) {
40110
40210
  var node_10 = $233.sibling(node_8, 2);
40111
40211
  {
40112
40212
  var consequent_5 = ($$anchor3) => {
40113
- var div_7 = root_443();
40213
+ var div_7 = root_445();
40114
40214
  var node_11 = $233.sibling($233.child(div_7), 2);
40115
40215
  {
40116
40216
  let $0 = $233.derived(() => `${$$props.idPrefix}-items`);
@@ -41661,8 +41761,8 @@ var rest_excludes97 = new Set([
41661
41761
  var root147 = $238.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
41662
41762
  var root_1140 = $238.from_html(`<label class="cinder-textarea-label"> <!></label>`);
41663
41763
  var root_286 = $238.from_html(`<p class="cinder-textarea-description"> </p>`);
41664
- var root_368 = $238.from_html(`<output class="cinder-textarea-count" aria-live="polite" aria-atomic="true"> </output>`);
41665
- var root_444 = $238.from_html(`<p class="cinder-textarea-error" aria-live="polite"> </p>`);
41764
+ var root_370 = $238.from_html(`<output class="cinder-textarea-count" aria-live="polite" aria-atomic="true"> </output>`);
41765
+ var root_446 = $238.from_html(`<p class="cinder-textarea-error" aria-live="polite"> </p>`);
41666
41766
  var root_535 = $238.from_html(`<div class="cinder-textarea-field"><!> <textarea></textarea> <!> <!> <!></div>`);
41667
41767
  function Textarea($$anchor, $$props) {
41668
41768
  $238.push($$props, true);
@@ -41750,7 +41850,7 @@ function Textarea($$anchor, $$props) {
41750
41850
  var node_3 = $238.sibling(node_2, 2);
41751
41851
  {
41752
41852
  var consequent_3 = ($$anchor2) => {
41753
- var output = root_368();
41853
+ var output = root_370();
41754
41854
  var text_2 = $238.child(output);
41755
41855
  $238.reset(output);
41756
41856
  $238.template_effect(() => {
@@ -41768,7 +41868,7 @@ function Textarea($$anchor, $$props) {
41768
41868
  var node_4 = $238.sibling(node_3, 2);
41769
41869
  {
41770
41870
  var consequent_4 = ($$anchor2) => {
41771
- var p_1 = root_444();
41871
+ var p_1 = root_446();
41772
41872
  var text_3 = $238.child(p_1, true);
41773
41873
  $238.reset(p_1);
41774
41874
  $238.template_effect(() => {
@@ -41929,8 +42029,8 @@ var isMacPlatform = detectMacPlatform();
41929
42029
  var root149 = $240.from_html(`<span class="cinder-sr-only">, has changes</span>`);
41930
42030
  var root_1142 = $240.from_html(`Diff<!>`, 1);
41931
42031
  var root_287 = $240.from_html(`<!> <!> <!>`, 1);
41932
- var root_369 = $240.from_html(`<!> <!> <!> <!>`, 1);
41933
- var root_445 = $240.from_html(`<div data-cinder-jse="" role="region" aria-label="JSON Schema editor"><!> <!></div>`);
42032
+ var root_371 = $240.from_html(`<!> <!> <!> <!>`, 1);
42033
+ var root_447 = $240.from_html(`<div data-cinder-jse="" role="region" aria-label="JSON Schema editor"><!> <!></div>`);
41934
42034
  function Json_schema_editor_impl($$anchor, $$props) {
41935
42035
  $240.push($$props, true);
41936
42036
  let view = $240.prop($$props, "view", 15, "form"), readonly = $240.prop($$props, "readonly", 3, false);
@@ -42016,7 +42116,7 @@ function Json_schema_editor_impl($$anchor, $$props) {
42016
42116
  handleRedo();
42017
42117
  }
42018
42118
  }
42019
- var div = root_445();
42119
+ var div = root_447();
42020
42120
  var node = $240.child(div);
42021
42121
  Json_schema_toolbar(node, {
42022
42122
  get state() {
@@ -42038,7 +42138,7 @@ function Json_schema_editor_impl($$anchor, $$props) {
42038
42138
  view($$value);
42039
42139
  },
42040
42140
  children: ($$anchor2, $$slotProps) => {
42041
- var fragment = root_369();
42141
+ var fragment = root_371();
42042
42142
  var node_2 = $240.first_child(fragment);
42043
42143
  Tab_list(node_2, {
42044
42144
  label: "Editor view",
@@ -42231,8 +42331,8 @@ var rest_excludes99 = new Set([
42231
42331
  var root150 = $242.from_html(`<h3 class="cinder-invocation-rule-builder__rule-label"> </h3>`);
42232
42332
  var root_1143 = $242.from_html(`<label class="cinder-invocation-rule-builder__rule-label-field"><span class="cinder-sr-only">Rule name</span> <input class="cinder-invocation-rule-builder__rule-label-input"/></label>`);
42233
42333
  var root_288 = $242.from_html(`<div class="cinder-invocation-rule-builder__rule-controls"><button type="button" class="cinder-invocation-rule-builder__icon-btn"><svg viewBox="0 0 16 16" width="12" height="12" aria-hidden="true"><path d="M8 3l5 6H3z"></path></svg></button> <button type="button" class="cinder-invocation-rule-builder__icon-btn"><svg viewBox="0 0 16 16" width="12" height="12" aria-hidden="true"><path d="M8 13l-5-6h10z"></path></svg></button> <button type="button" class="cinder-invocation-rule-builder__icon-btn" data-irb-rule-remove=""><svg viewBox="0 0 16 16" width="12" height="12" aria-hidden="true"><path d="M4 4l8 8M12 4l-8 8" stroke="currentColor" stroke-width="2" fill="none"></path></svg></button></div>`);
42234
- var root_370 = $242.from_html(`<p class="cinder-invocation-rule-builder__validation" role="status">Add at least one condition or this rule will always fire.</p>`);
42235
- var root_446 = $242.from_html(`<p class="cinder-invocation-rule-builder__empty">No conditions — rule always fires.</p>`);
42334
+ var root_372 = $242.from_html(`<p class="cinder-invocation-rule-builder__validation" role="status">Add at least one condition or this rule will always fire.</p>`);
42335
+ var root_448 = $242.from_html(`<p class="cinder-invocation-rule-builder__empty">No conditions — rule always fires.</p>`);
42236
42336
  var root_536 = $242.from_html(`<div class="cinder-invocation-rule-builder__summary-row"> </div>`);
42237
42337
  var root_623 = $242.from_html(`<div class="cinder-invocation-rule-builder__summary"><!></div>`);
42238
42338
  var root_719 = $242.from_html(`<option> </option>`);
@@ -42573,7 +42673,7 @@ function Invocation_rule_builder($$anchor, $$props) {
42573
42673
  var node_3 = $242.sibling(span, 2);
42574
42674
  {
42575
42675
  var consequent_2 = ($$anchor3) => {
42576
- var p = root_370();
42676
+ var p = root_372();
42577
42677
  $242.append($$anchor3, p);
42578
42678
  };
42579
42679
  $242.if(node_3, ($$render) => {
@@ -42588,7 +42688,7 @@ function Invocation_rule_builder($$anchor, $$props) {
42588
42688
  var node_5 = $242.child(div_4);
42589
42689
  {
42590
42690
  var consequent_3 = ($$anchor4) => {
42591
- var p_1 = root_446();
42691
+ var p_1 = root_448();
42592
42692
  $242.append($$anchor4, p_1);
42593
42693
  };
42594
42694
  var alternate_1 = ($$anchor4) => {
@@ -42958,8 +43058,8 @@ var rest_excludes100 = new Set([
42958
43058
  var root151 = $243.from_html(`<div class="cinder-capability-gate__content"><!></div>`);
42959
43059
  var root_1144 = $243.from_html(`<button type="button" class="cinder-capability-gate__primary"> </button>`);
42960
43060
  var root_289 = $243.from_html(`<a class="cinder-capability-gate__fallback"> </a>`);
42961
- var root_371 = $243.from_html(`<button type="button" class="cinder-capability-gate__fallback"> </button>`);
42962
- var root_447 = $243.from_html(`<button type="button" class="cinder-capability-gate__dismiss"> </button>`);
43061
+ var root_373 = $243.from_html(`<button type="button" class="cinder-capability-gate__fallback"> </button>`);
43062
+ var root_449 = $243.from_html(`<button type="button" class="cinder-capability-gate__dismiss"> </button>`);
42963
43063
  var root_537 = $243.from_html(`<div class="cinder-capability-gate__actions"><!> <!> <!></div>`);
42964
43064
  var root_624 = $243.from_html(`<div><div class="cinder-capability-gate__status" role="status" aria-live="polite"><span class="cinder-capability-gate__feature"> </span> <span class="cinder-capability-gate__state-text"> </span></div> <!> <!></div>`);
42965
43065
  function Capability_gate($$anchor, $$props) {
@@ -43069,7 +43169,7 @@ function Capability_gate($$anchor, $$props) {
43069
43169
  $243.append($$anchor4, a);
43070
43170
  };
43071
43171
  var consequent_3 = ($$anchor4) => {
43072
- var button_1 = root_371();
43172
+ var button_1 = root_373();
43073
43173
  var text_4 = $243.child(button_1, true);
43074
43174
  $243.reset(button_1);
43075
43175
  $243.template_effect(() => {
@@ -43091,7 +43191,7 @@ function Capability_gate($$anchor, $$props) {
43091
43191
  var node_6 = $243.sibling(node_5, 2);
43092
43192
  {
43093
43193
  var consequent_4 = ($$anchor4) => {
43094
- var button_2 = root_447();
43194
+ var button_2 = root_449();
43095
43195
  var text_5 = $243.child(button_2, true);
43096
43196
  $243.reset(button_2);
43097
43197
  $243.bind_this(button_2, ($$value) => $243.set(dismissButton, $$value), () => $243.get(dismissButton));
@@ -43849,8 +43949,8 @@ function findNextVisibleColumn(columns, fromColumnIndex, direction) {
43849
43949
  var root153 = $246.from_html(`<button type="button" class="cinder-kanban-board__column-handle"><svg viewBox="0 0 16 16" width="16" height="16" aria-hidden="true"><path d="M2 4h12v1.5H2zM2 7.25h12v1.5H2zM2 10.5h12v1.5H2z"></path></svg></button>`);
43850
43950
  var root_1146 = $246.from_html(`<div class="cinder-kanban-board__column-actions"><!></div>`);
43851
43951
  var root_290 = $246.from_html(`<button type="button" class="cinder-kanban-board__collapse"> </button>`);
43852
- var root_372 = $246.from_html(`<li class="cinder-kanban-board__card cinder-kanban-board__drop-placeholder cinder-sortable-item--placeholder" role="presentation" aria-hidden="true"></li>`);
43853
- var root_448 = $246.from_html(`<div class="cinder-kanban-board__card-content"><!></div>`);
43952
+ var root_374 = $246.from_html(`<li class="cinder-kanban-board__card cinder-kanban-board__drop-placeholder cinder-sortable-item--placeholder" role="presentation" aria-hidden="true"></li>`);
43953
+ var root_450 = $246.from_html(`<div class="cinder-kanban-board__card-content"><!></div>`);
43854
43954
  var root_538 = $246.from_html(`<!> <!>`, 1);
43855
43955
  var root_625 = $246.from_html(`<li class="cinder-kanban-board__empty"><!></li>`);
43856
43956
  var root_720 = $246.from_html(`<ul class="cinder-kanban-board__cards cinder-sortable-list" role="list"><!> <!> <!></ul>`);
@@ -44338,7 +44438,7 @@ function Kanban_board($$anchor, $$props) {
44338
44438
  var node_8 = $246.first_child(fragment_3);
44339
44439
  {
44340
44440
  var consequent_4 = ($$anchor5) => {
44341
- var li = root_372();
44441
+ var li = root_374();
44342
44442
  $246.template_effect(() => $246.set_style(li, $246.get(crossColumnPlaceholderStyle)));
44343
44443
  $246.append($$anchor5, li);
44344
44444
  };
@@ -44351,7 +44451,7 @@ function Kanban_board($$anchor, $$props) {
44351
44451
  var node_9 = $246.sibling(node_8, 2);
44352
44452
  {
44353
44453
  const children = ($$anchor5) => {
44354
- var div_3 = root_448();
44454
+ var div_3 = root_450();
44355
44455
  var node_10 = $246.child(div_3);
44356
44456
  {
44357
44457
  let $02 = $246.derived(() => makeCardContext($246.get(column), $246.get(columnIndex), $246.get(cardIndex), $246.get(isLifted), $246.get(isDropTarget)));
@@ -44391,7 +44491,7 @@ function Kanban_board($$anchor, $$props) {
44391
44491
  var node_11 = $246.sibling(node_7, 2);
44392
44492
  {
44393
44493
  var consequent_5 = ($$anchor4) => {
44394
- var li_1 = root_372();
44494
+ var li_1 = root_374();
44395
44495
  $246.template_effect(() => $246.set_style(li_1, $246.get(crossColumnPlaceholderStyle)));
44396
44496
  $246.append($$anchor4, li_1);
44397
44497
  };
@@ -44495,8 +44595,8 @@ var rest_excludes101 = new Set([
44495
44595
  var root154 = $247.from_html(`<h2 class="cinder-keyboard-shortcuts__heading"> </h2>`);
44496
44596
  var root_1147 = $247.from_html(`<div class="cinder-keyboard-shortcuts__intro"><!></div>`);
44497
44597
  var root_291 = $247.from_html(`<span class="cinder-keyboard-shortcuts__separator">+</span>`);
44498
- var root_373 = $247.from_html(`<!> <!>`, 1);
44499
- var root_449 = $247.from_html(`<div class="cinder-keyboard-shortcuts__row"><dt class="cinder-keyboard-shortcuts__action"> </dt> <dd class="cinder-keyboard-shortcuts__keys"><span class="cinder-sr-only"> </span> <span aria-hidden="true" class="cinder-keyboard-shortcuts__keys-visual"></span></dd></div>`);
44598
+ var root_375 = $247.from_html(`<!> <!>`, 1);
44599
+ var root_451 = $247.from_html(`<div class="cinder-keyboard-shortcuts__row"><dt class="cinder-keyboard-shortcuts__action"> </dt> <dd class="cinder-keyboard-shortcuts__keys"><span class="cinder-sr-only"> </span> <span aria-hidden="true" class="cinder-keyboard-shortcuts__keys-visual"></span></dd></div>`);
44500
44600
  var root_539 = $247.from_html(`<section class="cinder-keyboard-shortcuts__group"><h3 class="cinder-keyboard-shortcuts__group-label"> </h3> <dl class="cinder-keyboard-shortcuts__list"></dl></section>`);
44501
44601
  var root_626 = $247.from_html(`<div><!> <!> <!></div>`);
44502
44602
  function Keyboard_shortcuts($$anchor, $$props) {
@@ -44547,7 +44647,7 @@ function Keyboard_shortcuts($$anchor, $$props) {
44547
44647
  $247.reset(h3);
44548
44648
  var dl = $247.sibling(h3, 2);
44549
44649
  $247.each(dl, 21, () => $247.get(group).shortcuts, $247.index, ($$anchor3, shortcut) => {
44550
- var div_2 = root_449();
44650
+ var div_2 = root_451();
44551
44651
  var dt = $247.child(div_2);
44552
44652
  var text_2 = $247.child(dt, true);
44553
44653
  $247.reset(dt);
@@ -44557,7 +44657,7 @@ function Keyboard_shortcuts($$anchor, $$props) {
44557
44657
  $247.reset(span);
44558
44658
  var span_1 = $247.sibling(span, 2);
44559
44659
  $247.each(span_1, 23, () => $247.get(shortcut).keys, (key2, index6) => key2 + index6, ($$anchor4, key2, index6) => {
44560
- var fragment = root_373();
44660
+ var fragment = root_375();
44561
44661
  var node_4 = $247.first_child(fragment);
44562
44662
  Kbd(node_4, {
44563
44663
  get label() {
@@ -44789,8 +44889,8 @@ var rest_excludes104 = new Set([
44789
44889
  var root157 = $250.from_html(`<p class="cinder-line-chart__description"> </p>`);
44790
44890
  var root_1150 = $250.from_html(`<button type="button"><span></span> </button>`);
44791
44891
  var root_292 = $250.from_html(`<div class="cinder-line-chart__legend" aria-label="Series"></div>`);
44792
- var root_374 = $250.from_html(`<div class="cinder-line-chart__state"><!></div>`);
44793
- var root_450 = $250.from_svg(`<title> </title>`);
44892
+ var root_376 = $250.from_html(`<div class="cinder-line-chart__state"><!></div>`);
44893
+ var root_452 = $250.from_svg(`<title> </title>`);
44794
44894
  var root_540 = $250.from_svg(`<line class="cinder-line-chart__gridline" x1="0" aria-hidden="true"></line><text class="cinder-line-chart__tick-label" x="-8" text-anchor="end" dominant-baseline="middle"> </text>`, 1);
44795
44895
  var root_627 = $250.from_svg(`<text class="cinder-line-chart__tick-label" text-anchor="middle"> </text>`);
44796
44896
  var root_721 = $250.from_svg(`<circle class="cinder-line-chart__point" r="3" aria-hidden="true"></circle>`);
@@ -44938,7 +45038,7 @@ function Line_chart($$anchor, $$props) {
44938
45038
  var node_2 = $250.child(div_1);
44939
45039
  {
44940
45040
  var consequent_3 = ($$anchor2) => {
44941
- var div_2 = root_374();
45041
+ var div_2 = root_376();
44942
45042
  var node_3 = $250.child(div_2);
44943
45043
  {
44944
45044
  var consequent_2 = ($$anchor3) => {
@@ -44962,7 +45062,7 @@ function Line_chart($$anchor, $$props) {
44962
45062
  $250.append($$anchor2, div_2);
44963
45063
  };
44964
45064
  var consequent_5 = ($$anchor2) => {
44965
- var div_3 = root_374();
45065
+ var div_3 = root_376();
44966
45066
  var node_5 = $250.child(div_3);
44967
45067
  {
44968
45068
  var consequent_4 = ($$anchor3) => {
@@ -44996,7 +45096,7 @@ function Line_chart($$anchor, $$props) {
44996
45096
  var node_7 = $250.child(svg);
44997
45097
  {
44998
45098
  var consequent_6 = ($$anchor2) => {
44999
- var title = root_450();
45099
+ var title = root_452();
45000
45100
  var text_4 = $250.child(title, true);
45001
45101
  $250.reset(title);
45002
45102
  $250.template_effect(() => {
@@ -45405,8 +45505,8 @@ var rest_excludes105 = new Set([
45405
45505
  var root158 = $252.from_html(`<p class="cinder-logo-cloud__description"> </p>`);
45406
45506
  var root_1152 = $252.from_html(`<header class="cinder-logo-cloud__header"><h2 class="cinder-logo-cloud__title"> </h2> <!></header>`);
45407
45507
  var root_293 = $252.from_html(`<a class="cinder-logo-cloud__link"><img class="cinder-logo-cloud__image" loading="lazy"/></a>`);
45408
- var root_375 = $252.from_html(`<img class="cinder-logo-cloud__image" loading="lazy"/>`);
45409
- var root_451 = $252.from_html(`<li class="cinder-logo-cloud__item"><!></li>`);
45508
+ var root_377 = $252.from_html(`<img class="cinder-logo-cloud__image" loading="lazy"/>`);
45509
+ var root_453 = $252.from_html(`<li class="cinder-logo-cloud__item"><!></li>`);
45410
45510
  var root_541 = $252.from_html(`<div class="cinder-logo-cloud__inner"><!> <ul class="cinder-logo-cloud__list"></ul></div>`);
45411
45511
  function Logo_cloud($$anchor, $$props) {
45412
45512
  $252.push($$props, true);
@@ -45461,7 +45561,7 @@ function Logo_cloud($$anchor, $$props) {
45461
45561
  }
45462
45562
  var ul = $252.sibling(node_1, 2);
45463
45563
  $252.each(ul, 23, () => $$props.logos, (logo, index6) => `${logo.name}-${index6}`, ($$anchor4, logo) => {
45464
- var li = root_451();
45564
+ var li = root_453();
45465
45565
  var node_3 = $252.child(li);
45466
45566
  {
45467
45567
  var consequent_2 = ($$anchor5) => {
@@ -45476,7 +45576,7 @@ function Logo_cloud($$anchor, $$props) {
45476
45576
  $252.append($$anchor5, a);
45477
45577
  };
45478
45578
  var alternate = ($$anchor5) => {
45479
- var img_1 = root_375();
45579
+ var img_1 = root_377();
45480
45580
  $252.template_effect(() => {
45481
45581
  $252.set_attribute(img_1, "src", $252.get(logo).src);
45482
45582
  $252.set_attribute(img_1, "alt", $252.get(logo).name);
@@ -45514,8 +45614,8 @@ import"svelte/internal/disclose-version";
45514
45614
  import * as $253 from "svelte/internal/client";
45515
45615
  var root_1154 = $253.from_html(`<div aria-hidden="true" class="cinder-load-more__sentinel"></div>`);
45516
45616
  var root_294 = $253.from_html(`<span class="cinder-load-more__spinner" aria-hidden="true"></span>`);
45517
- var root_376 = $253.from_html(`<button type="button" class="cinder-load-more__button"><span> </span> <!></button>`);
45518
- var root_452 = $253.from_html(`<div><!> <!> <!></div>`);
45617
+ var root_378 = $253.from_html(`<button type="button" class="cinder-load-more__button"><span> </span> <!></button>`);
45618
+ var root_454 = $253.from_html(`<div><!> <!> <!></div>`);
45519
45619
  function Load_more($$anchor, $$props) {
45520
45620
  $253.push($$props, true);
45521
45621
  let onloadmore = $253.prop($$props, "onloadmore", 3, async () => {}), hasMore = $253.prop($$props, "hasMore", 11, true), loading = $253.prop($$props, "loading", 11, false), root159 = $253.prop($$props, "root", 3, null), rootMargin = $253.prop($$props, "rootMargin", 3, "200px 0px"), buttonLabel = $253.prop($$props, "buttonLabel", 3, "Load more"), retryLabel = $253.prop($$props, "retryLabel", 3, "Retry loading"), endOfListMessage = $253.prop($$props, "endOfListMessage", 3, "End of list"), maxRetries = $253.prop($$props, "maxRetries", 3, 5);
@@ -45570,7 +45670,7 @@ function Load_more($$anchor, $$props) {
45570
45670
  return;
45571
45671
  requestNextPage("sentinel");
45572
45672
  }
45573
- var div = root_452();
45673
+ var div = root_454();
45574
45674
  var node = $253.child(div);
45575
45675
  {
45576
45676
  var consequent = ($$anchor2) => {
@@ -45586,7 +45686,7 @@ function Load_more($$anchor, $$props) {
45586
45686
  var node_1 = $253.sibling(node, 2);
45587
45687
  {
45588
45688
  var consequent_2 = ($$anchor2) => {
45589
- var button = root_376();
45689
+ var button = root_378();
45590
45690
  var span = $253.child(button);
45591
45691
  var text43 = $253.child(span, true);
45592
45692
  $253.reset(span);
@@ -45880,8 +45980,8 @@ var rest_excludes107 = new Set([
45880
45980
  var root159 = $255.from_html(`<span class="cinder-media-controls__label">Loading</span>`);
45881
45981
  var root_1156 = $255.from_html(`<span class="cinder-media-controls__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-media-controls__svg cinder-media-controls__svg--loading"><path d="M21 12a9 9 0 1 1-6.219-8.56"></path></svg></span> <!>`, 1);
45882
45982
  var root_295 = $255.from_html(`<span class="cinder-media-controls__label">Unavailable</span>`);
45883
- var root_377 = $255.from_html(`<span class="cinder-media-controls__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-media-controls__svg"><circle cx="12" cy="12" r="10"></circle><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line></svg></span> <!>`, 1);
45884
- var root_453 = $255.from_html(`<span class="cinder-media-controls__label">Replay</span>`);
45983
+ var root_379 = $255.from_html(`<span class="cinder-media-controls__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-media-controls__svg"><circle cx="12" cy="12" r="10"></circle><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line></svg></span> <!>`, 1);
45984
+ var root_455 = $255.from_html(`<span class="cinder-media-controls__label">Replay</span>`);
45885
45985
  var root_542 = $255.from_html(`<span class="cinder-media-controls__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-media-controls__svg"><path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"></path><path d="M3 3v5h5"></path></svg></span> <!>`, 1);
45886
45986
  var root_628 = $255.from_html(`<span class="cinder-media-controls__label">Pause</span>`);
45887
45987
  var root_722 = $255.from_html(`<span class="cinder-media-controls__icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="cinder-media-controls__svg"><rect x="6" y="4" width="4" height="16" rx="1"></rect><rect x="14" y="4" width="4" height="16" rx="1"></rect></svg></span> <!>`, 1);
@@ -45957,7 +46057,7 @@ function Media_controls($$anchor, $$props) {
45957
46057
  $255.append($$anchor2, fragment_1);
45958
46058
  };
45959
46059
  var consequent_3 = ($$anchor2) => {
45960
- var fragment_2 = root_377();
46060
+ var fragment_2 = root_379();
45961
46061
  var node_2 = $255.sibling($255.first_child(fragment_2), 2);
45962
46062
  {
45963
46063
  var consequent_2 = ($$anchor3) => {
@@ -45976,7 +46076,7 @@ function Media_controls($$anchor, $$props) {
45976
46076
  var node_3 = $255.sibling($255.first_child(fragment_3), 2);
45977
46077
  {
45978
46078
  var consequent_4 = ($$anchor3) => {
45979
- var span_2 = root_453();
46079
+ var span_2 = root_455();
45980
46080
  $255.append($$anchor3, span_2);
45981
46081
  };
45982
46082
  $255.if(node_3, ($$render) => {
@@ -46099,8 +46199,8 @@ var rest_excludes108 = new Set([
46099
46199
  var root160 = $256.from_html(`<li><button type="button" class="cinder-mega-menu__trigger"> </button></li>`);
46100
46200
  var root_1157 = $256.from_html(`<div class="cinder-mega-menu__indicator-track" aria-hidden="true"><div class="cinder-mega-menu__indicator"></div></div>`);
46101
46201
  var root_296 = $256.from_html(`<h3 class="cinder-mega-menu__section-title"> </h3>`);
46102
- var root_378 = $256.from_html(`<span class="cinder-mega-menu__link-description"> </span>`);
46103
- var root_454 = $256.from_html(`<li><a class="cinder-mega-menu__link"><span> </span> <!></a></li>`);
46202
+ var root_380 = $256.from_html(`<span class="cinder-mega-menu__link-description"> </span>`);
46203
+ var root_456 = $256.from_html(`<li><a class="cinder-mega-menu__link"><span> </span> <!></a></li>`);
46104
46204
  var root_543 = $256.from_html(`<section><!> <ul class="cinder-mega-menu__links"></ul></section>`);
46105
46205
  var root_629 = $256.from_html(`<li><button type="button" class="cinder-mega-menu__submenu-trigger"> </button></li>`);
46106
46206
  var root_723 = $256.from_html(`<h4 class="cinder-mega-menu__section-title"> </h4>`);
@@ -46411,7 +46511,7 @@ function Mega_menu($$anchor, $$props) {
46411
46511
  }
46412
46512
  var ul_1 = $256.sibling(node_2, 2);
46413
46513
  $256.each(ul_1, 21, () => $256.get(section).links, (link) => link.id, ($$anchor4, link) => {
46414
- var li_1 = root_454();
46514
+ var li_1 = root_456();
46415
46515
  var a = $256.child(li_1);
46416
46516
  var span = $256.child(a);
46417
46517
  var text_2 = $256.child(span, true);
@@ -46419,7 +46519,7 @@ function Mega_menu($$anchor, $$props) {
46419
46519
  var node_3 = $256.sibling(span, 2);
46420
46520
  {
46421
46521
  var consequent_2 = ($$anchor5) => {
46422
- var span_1 = root_378();
46522
+ var span_1 = root_380();
46423
46523
  var text_3 = $256.child(span_1, true);
46424
46524
  $256.reset(span_1);
46425
46525
  $256.template_effect(() => $256.set_text(text_3, $256.get(link).description));
@@ -46485,7 +46585,7 @@ function Mega_menu($$anchor, $$props) {
46485
46585
  }
46486
46586
  var ul_3 = $256.sibling(node_6, 2);
46487
46587
  $256.each(ul_3, 21, () => $256.get(section).links, (link) => link.id, ($$anchor6, link) => {
46488
- var li_3 = root_454();
46588
+ var li_3 = root_456();
46489
46589
  var a_1 = $256.child(li_3);
46490
46590
  var span_2 = $256.child(a_1);
46491
46591
  var text_6 = $256.child(span_2, true);
@@ -46493,7 +46593,7 @@ function Mega_menu($$anchor, $$props) {
46493
46593
  var node_7 = $256.sibling(span_2, 2);
46494
46594
  {
46495
46595
  var consequent_4 = ($$anchor7) => {
46496
- var span_3 = root_378();
46596
+ var span_3 = root_380();
46497
46597
  var text_7 = $256.child(span_3, true);
46498
46598
  $256.reset(span_3);
46499
46599
  $256.template_effect(() => $256.set_text(text_7, $256.get(link).description));
@@ -46606,8 +46706,8 @@ var rest_excludes109 = new Set([
46606
46706
  var root161 = $258.from_html(` <span class="cinder-menu-bar__access-key"> </span> `, 1);
46607
46707
  var root_1159 = $258.from_html(`<span class="cinder-menu-bar__shortcut" aria-hidden="true"> </span>`);
46608
46708
  var root_297 = $258.from_html(`<span class="cinder-menu-bar__item-label"> </span> <!>`, 1);
46609
- var root_379 = $258.from_html(`<span class="cinder-menu-bar__item-label"> </span> <span class="cinder-menu-bar__submenu-indicator" aria-hidden="true">&gt;</span>`, 1);
46610
- var root_455 = $258.from_html(`<div class="cinder-menu-bar__submenu" role="presentation"><!> <!></div>`);
46709
+ var root_381 = $258.from_html(`<span class="cinder-menu-bar__item-label"> </span> <span class="cinder-menu-bar__submenu-indicator" aria-hidden="true">&gt;</span>`, 1);
46710
+ var root_457 = $258.from_html(`<div class="cinder-menu-bar__submenu" role="presentation"><!> <!></div>`);
46611
46711
  var root_544 = $258.from_html(`<div class="cinder-menu-bar__dropdown-scroll" role="presentation"></div>`);
46612
46712
  var root_630 = $258.from_html(`<div class="cinder-menu-bar__menu"><button type="button" class="cinder-menu-bar__trigger" role="menuitem" aria-haspopup="menu"><!></button> <!></div>`);
46613
46713
  var root_724 = $258.from_html(`<div></div>`);
@@ -47204,7 +47304,7 @@ function Menu_bar($$anchor, $$props) {
47204
47304
  var consequent_6 = ($$anchor6) => {
47205
47305
  const submenuKey = $258.derived(() => submenuMenuId($258.get(menuIndex), $258.get(menu), $258.get(entryIndex), $258.get(entry)));
47206
47306
  const submenuTrigger = $258.derived(() => submenuTriggerId($258.get(menuIndex), $258.get(menu), $258.get(entryIndex), $258.get(entry)));
47207
- var div_3 = root_455();
47307
+ var div_3 = root_457();
47208
47308
  var node_4 = $258.child(div_3);
47209
47309
  {
47210
47310
  let $02 = $258.derived(() => $258.get(openSubmenuKey) === $258.get(submenuKey) ? "true" : "false");
@@ -47250,7 +47350,7 @@ function Menu_bar($$anchor, $$props) {
47250
47350
  }
47251
47351
  },
47252
47352
  children: ($$anchor7, $$slotProps3) => {
47253
- var fragment_6 = root_379();
47353
+ var fragment_6 = root_381();
47254
47354
  var span_3 = $258.first_child(fragment_6);
47255
47355
  var text_6 = $258.child(span_3, true);
47256
47356
  $258.reset(span_3);
@@ -47808,8 +47908,8 @@ var rest_excludes111 = new Set([
47808
47908
  var root164 = $261.from_html(`<p class="cinder-matrix-chart__description"> </p>`);
47809
47909
  var root_1163 = $261.from_html(`<div class="cinder-matrix-chart__state"><!></div>`);
47810
47910
  var root_299 = $261.from_svg(`<title> </title>`);
47811
- var root_380 = $261.from_svg(`<text class="cinder-matrix-chart__tick-label" text-anchor="middle" dominant-baseline="auto"> </text>`);
47812
- var root_456 = $261.from_svg(`<text class="cinder-matrix-chart__tick-label" text-anchor="end" dominant-baseline="middle"> </text>`);
47911
+ var root_382 = $261.from_svg(`<text class="cinder-matrix-chart__tick-label" text-anchor="middle" dominant-baseline="auto"> </text>`);
47912
+ var root_458 = $261.from_svg(`<text class="cinder-matrix-chart__tick-label" text-anchor="end" dominant-baseline="middle"> </text>`);
47813
47913
  var root_545 = $261.from_svg(`<text class="cinder-matrix-chart__cell-label" text-anchor="middle" dominant-baseline="middle" aria-hidden="true"> </text>`);
47814
47914
  var root_631 = $261.from_svg(`<g><rect class="cinder-matrix-chart__cell" aria-hidden="true"><title> </title></rect><!></g>`);
47815
47915
  var root_725 = $261.from_svg(`<g role="presentation"><!><!><!></g>`);
@@ -48046,7 +48146,7 @@ function Matrix_chart($$anchor, $$props) {
48046
48146
  $261.set_attribute(g, "transform", `translate(${marginLeft}, ${marginTop})`);
48047
48147
  var node_8 = $261.child(g);
48048
48148
  $261.each(node_8, 18, () => $261.get(xLabels), (xLabel) => xLabel, ($$anchor3, xLabel, index6) => {
48049
- var text_4 = root_380();
48149
+ var text_4 = root_382();
48050
48150
  $261.set_attribute(text_4, "y", -8);
48051
48151
  var text_5 = $261.child(text_4, true);
48052
48152
  $261.reset(text_4);
@@ -48058,7 +48158,7 @@ function Matrix_chart($$anchor, $$props) {
48058
48158
  });
48059
48159
  var node_9 = $261.sibling(node_8);
48060
48160
  $261.each(node_9, 18, () => $261.get(yLabels), (yLabel) => yLabel, ($$anchor3, yLabel, index6) => {
48061
- var text_6 = root_456();
48161
+ var text_6 = root_458();
48062
48162
  $261.set_attribute(text_6, "x", -8);
48063
48163
  var text_7 = $261.child(text_6, true);
48064
48164
  $261.reset(text_6);
@@ -48252,8 +48352,8 @@ import { tick as tick14, untrack as untrack24 } from "svelte";
48252
48352
  var root165 = $263.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
48253
48353
  var root_1164 = $263.from_html(`<label class="cinder-multi-select__label"> <!></label>`);
48254
48354
  var root_2100 = $263.from_html(`<span class="cinder-multi-select__count" aria-hidden="true"> </span>`);
48255
- var root_381 = $263.from_html(`<button type="button" class="cinder-multi-select__clear" aria-label="Clear selected items">×</button>`);
48256
- var root_457 = $263.from_html(`<input class="cinder-_input-frame cinder-multi-select__filter" type="text" role="combobox" placeholder="Filter options" aria-autocomplete="list" aria-haspopup="listbox"/>`);
48355
+ var root_383 = $263.from_html(`<button type="button" class="cinder-multi-select__clear" aria-label="Clear selected items">×</button>`);
48356
+ var root_459 = $263.from_html(`<input class="cinder-_input-frame cinder-multi-select__filter" type="text" role="combobox" placeholder="Filter options" aria-autocomplete="list" aria-haspopup="listbox"/>`);
48257
48357
  var root_546 = $263.from_html(`<span class="cinder-multi-select__option-description"> </span>`);
48258
48358
  var root_632 = $263.from_html(`<li role="option" class="cinder-_option-row cinder-multi-select__option"><span class="cinder-multi-select__checkbox" aria-hidden="true"><!></span> <span class="cinder-multi-select__option-text"><span class="cinder-multi-select__option-label"> </span> <!></span></li>`);
48259
48359
  var root_726 = $263.from_html(`<li class="cinder-multi-select__empty" role="option" aria-disabled="true" aria-selected="false"> </li>`);
@@ -48643,7 +48743,7 @@ function Multi_select($$anchor, $$props) {
48643
48743
  var node_3 = $263.sibling(button, 2);
48644
48744
  {
48645
48745
  var consequent_3 = ($$anchor2) => {
48646
- var button_1 = root_381();
48746
+ var button_1 = root_383();
48647
48747
  $263.delegated("click", button_1, clearSelection);
48648
48748
  $263.append($$anchor2, button_1);
48649
48749
  };
@@ -48659,7 +48759,7 @@ function Multi_select($$anchor, $$props) {
48659
48759
  var node_5 = $263.child(div_2);
48660
48760
  {
48661
48761
  var consequent_4 = ($$anchor3) => {
48662
- var input = root_457();
48762
+ var input = root_459();
48663
48763
  $263.remove_input_defaults(input);
48664
48764
  $263.bind_this(input, ($$value) => $263.set(filterElement, $$value), () => $263.get(filterElement));
48665
48765
  $263.template_effect(() => {
@@ -48915,7 +49015,7 @@ var rest_excludes113 = new Set([
48915
49015
  var root166 = $264.from_html(`<div class="cinder-navigation-bar__menu-toggle"><!></div>`);
48916
49016
  var root_1166 = $264.from_html(`<div class="cinder-navigation-bar__brand"><!></div>`);
48917
49017
  var root_2101 = $264.from_html(`<div class="cinder-navigation-bar__actions"><!></div>`);
48918
- var root_382 = $264.from_html(`<nav><!> <!> <!> <div class="cinder-navigation-bar__items"><!></div> <!></nav>`);
49018
+ var root_384 = $264.from_html(`<nav><!> <!> <!> <div class="cinder-navigation-bar__items"><!></div> <!></nav>`);
48919
49019
  function Navigation_bar($$anchor, $$props) {
48920
49020
  const regionId = $264.props_id();
48921
49021
  $264.push($$props, true);
@@ -49082,7 +49182,7 @@ function Navigation_bar($$anchor, $$props) {
49082
49182
  }
49083
49183
  }
49084
49184
  }
49085
- var nav = root_382();
49185
+ var nav = root_384();
49086
49186
  $264.attribute_effect(nav, ($0) => ({
49087
49187
  ...rest,
49088
49188
  "aria-label": label(),
@@ -49206,7 +49306,7 @@ var rest_excludes114 = new Set([
49206
49306
  var root167 = $265.from_html(`<span class="cinder-pricing-card__selected-flag">Selected</span>`);
49207
49307
  var root_1168 = $265.from_html(`<li class="cinder-pricing-card__feature"> </li>`);
49208
49308
  var root_2102 = $265.from_html(`<p class="cinder-pricing-card__caveat" data-cinder-caveat=""> </p>`);
49209
- var root_383 = $265.from_html(`<div><div class="cinder-pricing-card__header"><div class="cinder-pricing-card__heading-row"><h3 class="cinder-pricing-card__name"> </h3> <!></div> <p class="cinder-pricing-card__price"> </p></div> <div class="cinder-pricing-card__body"><ul class="cinder-pricing-card__features"></ul> <!></div> <div class="cinder-pricing-card__footer"><!></div></div>`);
49309
+ var root_385 = $265.from_html(`<div><div class="cinder-pricing-card__header"><div class="cinder-pricing-card__heading-row"><h3 class="cinder-pricing-card__name"> </h3> <!></div> <p class="cinder-pricing-card__price"> </p></div> <div class="cinder-pricing-card__body"><ul class="cinder-pricing-card__features"></ul> <!></div> <div class="cinder-pricing-card__footer"><!></div></div>`);
49210
49310
  function Pricing_card($$anchor, $$props) {
49211
49311
  $265.push($$props, true);
49212
49312
  let selected = $265.prop($$props, "selected", 3, false), rest = $265.rest_props($$props, rest_excludes114);
@@ -49227,7 +49327,7 @@ function Pricing_card($$anchor, $$props) {
49227
49327
  }
49228
49328
  return result;
49229
49329
  });
49230
- var div = root_383();
49330
+ var div = root_385();
49231
49331
  $265.attribute_effect(div, ($0) => ({
49232
49332
  class: $0,
49233
49333
  "data-cinder-selected": selected() ? "" : undefined,
@@ -49324,7 +49424,7 @@ var rest_excludes115 = new Set([
49324
49424
  var root168 = $266.from_html(`<p class="cinder-pricing-section__description"> </p>`);
49325
49425
  var root_1169 = $266.from_html(`<header class="cinder-pricing-section__header"><h2 class="cinder-pricing-section__title"> </h2> <!></header>`);
49326
49426
  var root_2103 = $266.from_html(`<li class="cinder-pricing-section__item"><!></li>`);
49327
- var root_384 = $266.from_html(`<div class="cinder-pricing-section__inner"><!> <ul class="cinder-pricing-section__list"></ul></div>`);
49427
+ var root_386 = $266.from_html(`<div class="cinder-pricing-section__inner"><!> <ul class="cinder-pricing-section__list"></ul></div>`);
49328
49428
  function Pricing_section($$anchor, $$props) {
49329
49429
  $266.push($$props, true);
49330
49430
  let as = $266.prop($$props, "as", 3, "section"), columns = $266.prop($$props, "columns", 3, 3), maxWidth = $266.prop($$props, "maxWidth", 3, "wide"), rest = $266.rest_props($$props, rest_excludes115);
@@ -49346,7 +49446,7 @@ function Pricing_section($$anchor, $$props) {
49346
49446
  return maxWidth();
49347
49447
  },
49348
49448
  children: ($$anchor3, $$slotProps) => {
49349
- var div = root_384();
49449
+ var div = root_386();
49350
49450
  var node_1 = $266.child(div);
49351
49451
  {
49352
49452
  var consequent_1 = ($$anchor4) => {
@@ -49536,7 +49636,7 @@ var rest_excludes117 = new Set([
49536
49636
  var root170 = $268.from_html(`<p class="cinder-newsletter-section__description"> </p>`);
49537
49637
  var root_1171 = $268.from_html(`<p class="cinder-newsletter-section__consent"> </p>`);
49538
49638
  var root_2104 = $268.from_html(`<div class="cinder-newsletter-section__extra"><!></div>`);
49539
- var root_385 = $268.from_html(`<div class="cinder-newsletter-section__inner"><header class="cinder-newsletter-section__header"><h2 class="cinder-newsletter-section__title"> </h2> <!></header> <form class="cinder-newsletter-section__form"><div class="cinder-newsletter-section__field"><!></div> <!></form> <!> <!></div>`);
49639
+ var root_387 = $268.from_html(`<div class="cinder-newsletter-section__inner"><header class="cinder-newsletter-section__header"><h2 class="cinder-newsletter-section__title"> </h2> <!></header> <form class="cinder-newsletter-section__form"><div class="cinder-newsletter-section__field"><!></div> <!></form> <!> <!></div>`);
49540
49640
  function Newsletter_section($$anchor, $$props) {
49541
49641
  const uid = $268.props_id();
49542
49642
  $268.push($$props, true);
@@ -49559,7 +49659,7 @@ function Newsletter_section($$anchor, $$props) {
49559
49659
  return maxWidth();
49560
49660
  },
49561
49661
  children: ($$anchor3, $$slotProps) => {
49562
- var div = root_385();
49662
+ var div = root_387();
49563
49663
  var header = $268.child(div);
49564
49664
  var h2 = $268.child(header);
49565
49665
  var text46 = $268.child(h2, true);
@@ -49780,8 +49880,8 @@ var rest_excludes118 = new Set([
49780
49880
  var root171 = $269.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
49781
49881
  var root_1172 = $269.from_html(`<label class="cinder-input-field__label"> <!></label>`);
49782
49882
  var root_2105 = $269.from_html(`<input type="hidden"/>`);
49783
- var root_386 = $269.from_html(`<p class="cinder-input-field__description"> </p>`);
49784
- var root_458 = $269.from_html(`<p class="cinder-input-field__error" aria-live="polite"> </p>`);
49883
+ var root_388 = $269.from_html(`<p class="cinder-input-field__description"> </p>`);
49884
+ var root_460 = $269.from_html(`<p class="cinder-input-field__error" aria-live="polite"> </p>`);
49785
49885
  var root_547 = $269.from_html(`<div><!> <div class="cinder-number-input"><input/> <button type="button" class="cinder-number-input__stepper cinder-number-input__stepper--increment" tabindex="-1"><span aria-hidden="true">+</span></button> <button type="button" class="cinder-number-input__stepper cinder-number-input__stepper--decrement" tabindex="-1"><span aria-hidden="true">&#x2212;</span></button></div> <!> <!> <!></div>`);
49786
49886
  function Number_input($$anchor, $$props) {
49787
49887
  $269.push($$props, true);
@@ -50158,7 +50258,7 @@ function Number_input($$anchor, $$props) {
50158
50258
  var node_3 = $269.sibling(node_2, 2);
50159
50259
  {
50160
50260
  var consequent_3 = ($$anchor2) => {
50161
- var p = root_386();
50261
+ var p = root_388();
50162
50262
  var text_2 = $269.child(p, true);
50163
50263
  $269.reset(p);
50164
50264
  $269.template_effect(() => {
@@ -50175,7 +50275,7 @@ function Number_input($$anchor, $$props) {
50175
50275
  var node_4 = $269.sibling(node_3, 2);
50176
50276
  {
50177
50277
  var consequent_4 = ($$anchor2) => {
50178
- var p_1 = root_458();
50278
+ var p_1 = root_460();
50179
50279
  var text_3 = $269.child(p_1, true);
50180
50280
  $269.reset(p_1);
50181
50281
  $269.template_effect(() => {
@@ -50185,7 +50285,7 @@ function Number_input($$anchor, $$props) {
50185
50285
  $269.append($$anchor2, p_1);
50186
50286
  };
50187
50287
  var consequent_5 = ($$anchor2) => {
50188
- var p_2 = root_458();
50288
+ var p_2 = root_460();
50189
50289
  var text_4 = $269.child(p_2, true);
50190
50290
  $269.reset(p_2);
50191
50291
  $269.template_effect(() => {
@@ -50241,7 +50341,7 @@ var rest_excludes119 = new Set([
50241
50341
  var root172 = $270.from_html(`<p class="cinder-pagination__count" aria-live="polite"> </p>`);
50242
50342
  var root_1173 = $270.from_html(`<li class="cinder-pagination__ellipsis-item" aria-hidden="true"><span class="cinder-pagination__ellipsis">&hellip;</span></li>`);
50243
50343
  var root_2106 = $270.from_html(`<li><button type="button" class="cinder-pagination__page"> </button></li>`);
50244
- var root_387 = $270.from_html(`<nav><!> <div class="cinder-pagination__controls"><button type="button" class="cinder-pagination__step" aria-label="Go to previous page"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false"><polyline points="15 18 9 12 15 6"></polyline></svg></button> <ul class="cinder-pagination__pages" role="list"></ul> <button type="button" class="cinder-pagination__step" aria-label="Go to next page"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false"><polyline points="9 18 15 12 9 6"></polyline></svg></button></div></nav>`);
50344
+ var root_389 = $270.from_html(`<nav><!> <div class="cinder-pagination__controls"><button type="button" class="cinder-pagination__step" aria-label="Go to previous page"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false"><polyline points="15 18 9 12 15 6"></polyline></svg></button> <ul class="cinder-pagination__pages" role="list"></ul> <button type="button" class="cinder-pagination__step" aria-label="Go to next page"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false"><polyline points="9 18 15 12 9 6"></polyline></svg></button></div></nav>`);
50245
50345
  function Pagination($$anchor, $$props) {
50246
50346
  $270.push($$props, true);
50247
50347
  let currentPage = $270.prop($$props, "currentPage", 15, 1), hasNextPage = $270.prop($$props, "hasNextPage", 3, false), rest = $270.rest_props($$props, rest_excludes119);
@@ -50287,7 +50387,7 @@ function Pagination($$anchor, $$props) {
50287
50387
  return;
50288
50388
  currentPage(page);
50289
50389
  }
50290
- var nav = root_387();
50390
+ var nav = root_389();
50291
50391
  $270.attribute_effect(nav, () => ({
50292
50392
  class: $270.get(mergedClassName),
50293
50393
  "aria-label": "Pagination",
@@ -50453,8 +50553,8 @@ var rest_excludes121 = new Set([
50453
50553
  var root174 = $272.from_html(`<p class="cinder-permission-matrix__description"> </p>`);
50454
50554
  var root_1175 = $272.from_html(`<div class="cinder-permission-matrix__state"><!></div>`);
50455
50555
  var root_2108 = $272.from_html(`<th class="cinder-permission-matrix__column-header" scope="col"> </th>`);
50456
- var root_388 = $272.from_html(`<button type="button" class="cinder-permission-matrix__cell-control"><span class="cinder-permission-matrix__cell-token" aria-hidden="true"><!></span> <span class="cinder-permission-matrix__cell-label"> </span></button>`);
50457
- var root_459 = $272.from_html(`<span class="cinder-permission-matrix__cell-control"><span class="cinder-permission-matrix__cell-token" aria-hidden="true"><!></span> <span class="cinder-permission-matrix__cell-label"> </span></span>`);
50556
+ var root_390 = $272.from_html(`<button type="button" class="cinder-permission-matrix__cell-control"><span class="cinder-permission-matrix__cell-token" aria-hidden="true"><!></span> <span class="cinder-permission-matrix__cell-label"> </span></button>`);
50557
+ var root_461 = $272.from_html(`<span class="cinder-permission-matrix__cell-control"><span class="cinder-permission-matrix__cell-token" aria-hidden="true"><!></span> <span class="cinder-permission-matrix__cell-label"> </span></span>`);
50458
50558
  var root_548 = $272.from_html(`<td class="cinder-permission-matrix__cell"><!></td>`);
50459
50559
  var root_633 = $272.from_html(`<tr><th class="cinder-permission-matrix__row-header" scope="row"> </th><!></tr>`);
50460
50560
  var root_727 = $272.from_html(`<div class="cinder-permission-matrix__scroll" data-cinder-scroll-container=""><table class="cinder-permission-matrix__table"><caption class="cinder-sr-only"> </caption><thead><tr><th class="cinder-permission-matrix__corner" scope="col"> </th><!></tr></thead><tbody></tbody></table></div>`);
@@ -50593,7 +50693,7 @@ function Permission_matrix($$anchor, $$props) {
50593
50693
  var node_8 = $272.child(td);
50594
50694
  {
50595
50695
  var consequent_7 = ($$anchor5) => {
50596
- var button = root_388();
50696
+ var button = root_390();
50597
50697
  var span = $272.child(button);
50598
50698
  var node_9 = $272.child(span);
50599
50699
  {
@@ -50631,7 +50731,7 @@ function Permission_matrix($$anchor, $$props) {
50631
50731
  $272.append($$anchor5, button);
50632
50732
  };
50633
50733
  var alternate_4 = ($$anchor5) => {
50634
- var span_2 = root_459();
50734
+ var span_2 = root_461();
50635
50735
  var span_3 = $272.child(span_2);
50636
50736
  var node_10 = $272.child(span_3);
50637
50737
  {
@@ -54907,8 +55007,8 @@ function displayNameForCountry(country, locale) {
54907
55007
  var root175 = $273.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
54908
55008
  var root_1176 = $273.from_html(`<span> <!></span>`);
54909
55009
  var root_2109 = $273.from_html(`<option> </option>`);
54910
- var root_389 = $273.from_html(`<input type="hidden"/>`);
54911
- var root_460 = $273.from_html(`<p class="cinder-phone-input-field__description"> </p>`);
55010
+ var root_391 = $273.from_html(`<input type="hidden"/>`);
55011
+ var root_462 = $273.from_html(`<p class="cinder-phone-input-field__description"> </p>`);
54912
55012
  var root_549 = $273.from_html(`<p class="cinder-phone-input-field__error" aria-live="polite" aria-atomic="true"> </p>`);
54913
55013
  var root_634 = $273.from_html(`<div><!> <div class="cinder-phone-input" role="group"><span class="cinder-sr-only">Country code</span> <select class="cinder-phone-input__country"></select> <span class="cinder-sr-only">Phone number</span> <input class="cinder-phone-input__national" type="tel" inputmode="tel" autocomplete="tel-national"/></div> <!> <!> <!></div>`);
54914
55014
  function Phone_input($$anchor, $$props) {
@@ -55216,7 +55316,7 @@ function Phone_input($$anchor, $$props) {
55216
55316
  var node_2 = $273.sibling(div_1, 2);
55217
55317
  {
55218
55318
  var consequent_2 = ($$anchor2) => {
55219
- var input_1 = root_389();
55319
+ var input_1 = root_391();
55220
55320
  $273.remove_input_defaults(input_1);
55221
55321
  $273.template_effect(() => {
55222
55322
  $273.set_attribute(input_1, "name", $$props.name);
@@ -55234,7 +55334,7 @@ function Phone_input($$anchor, $$props) {
55234
55334
  var node_3 = $273.sibling(node_2, 2);
55235
55335
  {
55236
55336
  var consequent_3 = ($$anchor2) => {
55237
- var p = root_460();
55337
+ var p = root_462();
55238
55338
  var text_2 = $273.child(p, true);
55239
55339
  $273.reset(p);
55240
55340
  $273.template_effect(() => {
@@ -55316,8 +55416,8 @@ import * as $274 from "svelte/internal/client";
55316
55416
  var root176 = $274.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
55317
55417
  var root_1177 = $274.from_html(`<span> <!></span>`);
55318
55418
  var root_2110 = $274.from_html(`<span class="cinder-sr-only"> </span> <input class="cinder-pin-input__segment" autocapitalize="none" spellcheck="false" maxlength="1"/>`, 1);
55319
- var root_390 = $274.from_html(`<input type="hidden"/>`);
55320
- var root_461 = $274.from_html(`<p class="cinder-pin-input-field__description"> </p>`);
55419
+ var root_392 = $274.from_html(`<input type="hidden"/>`);
55420
+ var root_463 = $274.from_html(`<p class="cinder-pin-input-field__description"> </p>`);
55321
55421
  var root_550 = $274.from_html(`<p class="cinder-pin-input-field__error" aria-live="polite" aria-atomic="true"> </p>`);
55322
55422
  var root_635 = $274.from_html(`<div><!> <div class="cinder-pin-input" role="group"></div> <!> <!> <!></div>`);
55323
55423
  function Pin_input($$anchor, $$props) {
@@ -55568,7 +55668,7 @@ function Pin_input($$anchor, $$props) {
55568
55668
  var node_2 = $274.sibling(div_1, 2);
55569
55669
  {
55570
55670
  var consequent_2 = ($$anchor2) => {
55571
- var input_2 = root_390();
55671
+ var input_2 = root_392();
55572
55672
  $274.remove_input_defaults(input_2);
55573
55673
  $274.template_effect(() => {
55574
55674
  $274.set_attribute(input_2, "name", $$props.name);
@@ -55586,7 +55686,7 @@ function Pin_input($$anchor, $$props) {
55586
55686
  var node_3 = $274.sibling(node_2, 2);
55587
55687
  {
55588
55688
  var consequent_3 = ($$anchor2) => {
55589
- var p = root_461();
55689
+ var p = root_463();
55590
55690
  var text_3 = $274.child(p, true);
55591
55691
  $274.reset(p);
55592
55692
  $274.template_effect(() => {
@@ -55651,8 +55751,8 @@ import * as $275 from "svelte/internal/client";
55651
55751
  var root177 = $275.from_svg(`<circle class="cinder-progress__fill" cx="18" cy="18" r="16"></circle>`);
55652
55752
  var root_1178 = $275.from_svg(`<circle class="cinder-progress__fill cinder-progress__fill--indeterminate" cx="18" cy="18" r="16"></circle>`);
55653
55753
  var root_2111 = $275.from_html(`<div role="progressbar"><svg viewBox="0 0 36 36" class="cinder-progress__svg" aria-hidden="true"><circle class="cinder-progress__track" cx="18" cy="18" r="16"></circle><!></svg></div>`);
55654
- var root_391 = $275.from_html(`<div class="cinder-progress__fill"></div>`);
55655
- var root_462 = $275.from_html(`<div class="cinder-progress__fill cinder-progress__fill--indeterminate"></div>`);
55754
+ var root_393 = $275.from_html(`<div class="cinder-progress__fill"></div>`);
55755
+ var root_464 = $275.from_html(`<div class="cinder-progress__fill cinder-progress__fill--indeterminate"></div>`);
55656
55756
  var root_551 = $275.from_html(`<div role="progressbar"><div class="cinder-progress__track"><!></div></div>`);
55657
55757
  function Progress($$anchor, $$props) {
55658
55758
  $275.push($$props, true);
@@ -55718,13 +55818,13 @@ function Progress($$anchor, $$props) {
55718
55818
  var node_2 = $275.child(div_2);
55719
55819
  {
55720
55820
  var consequent_2 = ($$anchor3) => {
55721
- var div_3 = root_391();
55821
+ var div_3 = root_393();
55722
55822
  let styles_1;
55723
55823
  $275.template_effect(() => styles_1 = $275.set_style(div_3, "", styles_1, { width: `${$275.get(percent) ?? ""}%` }));
55724
55824
  $275.append($$anchor3, div_3);
55725
55825
  };
55726
55826
  var alternate_1 = ($$anchor3) => {
55727
- var div_4 = root_462();
55827
+ var div_4 = root_464();
55728
55828
  $275.append($$anchor3, div_4);
55729
55829
  };
55730
55830
  $275.if(node_2, ($$render) => {
@@ -55784,8 +55884,8 @@ var rest_excludes122 = new Set([
55784
55884
  var root178 = $276.from_svg(`<svg xmlns="http://www.w3.org/2000/svg" shape-rendering="crispEdges" aria-hidden="true" focusable="false"><path fill="none" stroke="currentColor"></path></svg>`);
55785
55885
  var root_1179 = $276.from_html(`<span class="cinder-qr-code__error-mark">!</span>`);
55786
55886
  var root_2112 = $276.from_html(`<span class="cinder-sr-only">Unable to render QR code.</span>`);
55787
- var root_392 = $276.from_html(`<span class="cinder-qr-code__placeholder" aria-hidden="true"><!></span> <!>`, 1);
55788
- var root_463 = $276.from_html(`<span><!></span>`);
55887
+ var root_394 = $276.from_html(`<span class="cinder-qr-code__placeholder" aria-hidden="true"><!></span> <!>`, 1);
55888
+ var root_465 = $276.from_html(`<span><!></span>`);
55789
55889
  function Qr_code($$anchor, $$props) {
55790
55890
  $276.push($$props, true);
55791
55891
  let size3 = $276.prop($$props, "size", 3, 160), margin = $276.prop($$props, "margin", 3, 4), errorCorrectionLevel = $276.prop($$props, "errorCorrectionLevel", 3, "M"), rest = $276.rest_props($$props, rest_excludes122);
@@ -55849,7 +55949,7 @@ function Qr_code($$anchor, $$props) {
55849
55949
  const resolvedRole = $276.derived(() => $276.get(generationFailed) ? "status" : "img");
55850
55950
  const resolvedAriaLabel = $276.derived(() => $276.get(generationFailed) ? "Unable to render QR code" : $276.get(safeLabel));
55851
55951
  const resolvedAriaLive = $276.derived(() => $276.get(generationFailed) ? "polite" : undefined);
55852
- var span = root_463();
55952
+ var span = root_465();
55853
55953
  $276.attribute_effect(span, () => ({
55854
55954
  ...rest,
55855
55955
  class: $276.get(mergedClassName),
@@ -55878,7 +55978,7 @@ function Qr_code($$anchor, $$props) {
55878
55978
  $276.append($$anchor2, svg);
55879
55979
  };
55880
55980
  var alternate = ($$anchor2) => {
55881
- var fragment = root_392();
55981
+ var fragment = root_394();
55882
55982
  var span_1 = $276.first_child(fragment);
55883
55983
  var node_1 = $276.child(span_1);
55884
55984
  {
@@ -56023,8 +56123,8 @@ import * as $278 from "svelte/internal/client";
56023
56123
  var root180 = $278.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
56024
56124
  var root_1181 = $278.from_html(`<legend class="cinder-radio-group__legend"> <!></legend>`);
56025
56125
  var root_2113 = $278.from_html(`<p class="cinder-radio-group__description"> </p>`);
56026
- var root_393 = $278.from_html(`<p class="cinder-radio-group__error" aria-live="polite"> </p>`);
56027
- var root_464 = $278.from_html(`<fieldset><!> <div class="cinder-radio-group__items"><!></div> <!> <!></fieldset>`);
56126
+ var root_395 = $278.from_html(`<p class="cinder-radio-group__error" aria-live="polite"> </p>`);
56127
+ var root_466 = $278.from_html(`<fieldset><!> <div class="cinder-radio-group__items"><!></div> <!> <!></fieldset>`);
56028
56128
  function Radio_group($$anchor, $$props) {
56029
56129
  const groupId = $278.props_id();
56030
56130
  $278.push($$props, true);
@@ -56059,7 +56159,7 @@ function Radio_group($$anchor, $$props) {
56059
56159
  devWarn("[cinder/RadioGroup] A <fieldset> was rendered without a label prop. The fieldset will have no <legend>, which makes it inaccessible. Provide a label prop to describe the group.");
56060
56160
  }
56061
56161
  });
56062
- var fieldset = root_464();
56162
+ var fieldset = root_466();
56063
56163
  var node = $278.child(fieldset);
56064
56164
  {
56065
56165
  var consequent_1 = ($$anchor2) => {
@@ -56109,7 +56209,7 @@ function Radio_group($$anchor, $$props) {
56109
56209
  var node_4 = $278.sibling(node_3, 2);
56110
56210
  {
56111
56211
  var consequent_3 = ($$anchor2) => {
56112
- var p_1 = root_393();
56212
+ var p_1 = root_395();
56113
56213
  var text_2 = $278.child(p_1, true);
56114
56214
  $278.reset(p_1);
56115
56215
  $278.template_effect(() => {
@@ -56154,8 +56254,8 @@ import * as $279 from "svelte/internal/client";
56154
56254
  var root181 = $279.from_html(`<span> </span>`);
56155
56255
  var root_1182 = $279.from_html(`<span class="cinder-rating__star" aria-hidden="true"><span class="cinder-rating__star-fill"></span></span>`);
56156
56256
  var root_2114 = $279.from_html(`<div class="cinder-rating cinder-rating--readonly" role="img"><!> <span class="cinder-sr-only"> </span></div>`);
56157
- var root_394 = $279.from_html(`<button class="cinder-rating__option" type="button" role="radio"></button>`);
56158
- var root_465 = $279.from_html(`<div class="cinder-rating" role="radiogroup" tabindex="-1"><!> <div class="cinder-rating__hit-area"></div></div>`);
56257
+ var root_396 = $279.from_html(`<button class="cinder-rating__option" type="button" role="radio"></button>`);
56258
+ var root_467 = $279.from_html(`<div class="cinder-rating" role="radiogroup" tabindex="-1"><!> <div class="cinder-rating__hit-area"></div></div>`);
56159
56259
  var root_552 = $279.from_html(`<input type="hidden"/>`);
56160
56260
  var root_636 = $279.from_html(`<p class="cinder-rating-field__description"> </p>`);
56161
56261
  var root_728 = $279.from_html(`<p class="cinder-rating-field__error" aria-live="polite" aria-atomic="true"> </p>`);
@@ -56409,7 +56509,7 @@ function Rating($$anchor, $$props) {
56409
56509
  $279.append($$anchor2, div_1);
56410
56510
  };
56411
56511
  var alternate = ($$anchor2) => {
56412
- var div_2 = root_465();
56512
+ var div_2 = root_467();
56413
56513
  var node_3 = $279.child(div_2);
56414
56514
  $279.each(node_3, 16, () => Array.from({ length: $279.get(normalizedCount) }, (_, i) => i + 1), (slot51) => slot51, ($$anchor3, slot51) => {
56415
56515
  var span_4 = root_1182();
@@ -56425,7 +56525,7 @@ function Rating($$anchor, $$props) {
56425
56525
  });
56426
56526
  var div_3 = $279.sibling(node_3, 2);
56427
56527
  $279.each(div_3, 20, () => $279.get(valueOptions), (option) => option, ($$anchor3, option) => {
56428
- var button = root_394();
56528
+ var button = root_396();
56429
56529
  $279.template_effect(($0, $1, $280, $310) => {
56430
56530
  $279.set_attribute(button, "id", $0);
56431
56531
  $279.set_attribute(button, "aria-checked", $1);
@@ -56872,8 +56972,8 @@ var rest_excludes124 = new Set([
56872
56972
  var root182 = $281.from_html(`<span class="cinder-run-step-timeline__link cinder-run-step-timeline__link--unsafe"> </span>`);
56873
56973
  var root_1183 = $281.from_html(`<div class="cinder-run-step-timeline__progress"><!></div>`);
56874
56974
  var root_2115 = $281.from_html(`<div class="cinder-run-step-timeline__meta-row"><dt class="cinder-run-step-timeline__meta-term"> </dt> <dd class="cinder-run-step-timeline__meta-definition"> </dd></div>`);
56875
- var root_395 = $281.from_html(`<dl class="cinder-run-step-timeline__meta"></dl>`);
56876
- var root_466 = $281.from_html(`<pre class="cinder-run-step-timeline__detail-content"> </pre>`);
56975
+ var root_397 = $281.from_html(`<dl class="cinder-run-step-timeline__meta"></dl>`);
56976
+ var root_468 = $281.from_html(`<pre class="cinder-run-step-timeline__detail-content"> </pre>`);
56877
56977
  var root_553 = $281.from_html(`<div class="cinder-run-step-timeline__details"></div>`);
56878
56978
  var root_637 = $281.from_html(`<div class="cinder-run-step-timeline__body"><!></div>`);
56879
56979
  var root_729 = $281.from_html(`<li class="cinder-run-step-timeline__item"><div class="cinder-run-step-timeline__event"><span class="cinder-run-step-timeline__marker" aria-hidden="true" inert=""><!></span> <div class="cinder-run-step-timeline__content"><div class="cinder-run-step-timeline__header"><span class="cinder-run-step-timeline__label"> </span> <!> <!> <!> <!> <!> <!></div> <!> <!> <!> <!></div></div></li>`);
@@ -57104,7 +57204,7 @@ function Run_step_timeline($$anchor, $$props) {
57104
57204
  var node_10 = $281.sibling(node_8, 2);
57105
57205
  {
57106
57206
  var consequent_7 = ($$anchor3) => {
57107
- var dl = root_395();
57207
+ var dl = root_397();
57108
57208
  $281.each(dl, 21, () => $281.get(metadata), (item) => item.term, ($$anchor4, item) => {
57109
57209
  var div_4 = root_2115();
57110
57210
  var dt = $281.child(div_4);
@@ -57138,7 +57238,7 @@ function Run_step_timeline($$anchor, $$props) {
57138
57238
  return $281.get(detail).label;
57139
57239
  },
57140
57240
  children: ($$anchor5, $$slotProps) => {
57141
- var pre = root_466();
57241
+ var pre = root_468();
57142
57242
  var text_10 = $281.child(pre, true);
57143
57243
  $281.reset(pre);
57144
57244
  $281.template_effect(() => $281.set_text(text_10, $281.get(detail).content));
@@ -58406,8 +58506,8 @@ var rest_excludes126 = new Set([
58406
58506
  var root184 = $283.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
58407
58507
  var root_1185 = $283.from_html(`<label class="cinder-select-field__label"> <!></label>`);
58408
58508
  var root_2117 = $283.from_html(`<select></select>`);
58409
- var root_396 = $283.from_html(`<option> </option>`);
58410
- var root_467 = $283.from_html(`<p class="cinder-select-field__description"> </p>`);
58509
+ var root_398 = $283.from_html(`<option> </option>`);
58510
+ var root_469 = $283.from_html(`<p class="cinder-select-field__description"> </p>`);
58411
58511
  var root_554 = $283.from_html(`<div><!> <span class="cinder-select-field__control"><!> <span class="cinder-select-field__chevron" aria-hidden="true"></span></span> <!> <p class="cinder-select-field__error" aria-live="polite"> </p></div>`);
58412
58512
  function Select($$anchor, $$props) {
58413
58513
  $283.push($$props, true);
@@ -58490,7 +58590,7 @@ function Select($$anchor, $$props) {
58490
58590
  "aria-invalid": $283.get(field).ariaInvalid
58491
58591
  }));
58492
58592
  $283.each(select_1, 21, () => $$props.options, (option) => option.value, ($$anchor3, option) => {
58493
- var option_1 = root_396();
58593
+ var option_1 = root_398();
58494
58594
  var text_1 = $283.child(option_1, true);
58495
58595
  $283.reset(option_1);
58496
58596
  var option_1_value = {};
@@ -58519,7 +58619,7 @@ function Select($$anchor, $$props) {
58519
58619
  var node_3 = $283.sibling(span_1, 2);
58520
58620
  {
58521
58621
  var consequent_3 = ($$anchor2) => {
58522
- var p = root_467();
58622
+ var p = root_469();
58523
58623
  var text_2 = $283.child(p, true);
58524
58624
  $283.reset(p);
58525
58625
  $283.template_effect(() => {
@@ -58610,8 +58710,8 @@ var rest_excludes127 = new Set([
58610
58710
  var root185 = $284.from_html(`<label class="cinder-time-field__label"> </label>`);
58611
58711
  var root_1186 = $284.from_html(`<input type="hidden"/>`);
58612
58712
  var root_2118 = $284.from_html(`<option> </option>`);
58613
- var root_397 = $284.from_html(`<span class="cinder-sr-only">timezone</span> <select class="cinder-time-field__timezone"></select>`, 1);
58614
- var root_468 = $284.from_html(`<p class="cinder-time-field__description"> </p>`);
58713
+ var root_399 = $284.from_html(`<span class="cinder-sr-only">timezone</span> <select class="cinder-time-field__timezone"></select>`, 1);
58714
+ var root_470 = $284.from_html(`<p class="cinder-time-field__description"> </p>`);
58615
58715
  var root_555 = $284.from_html(`<p class="cinder-time-field__error" aria-live="polite"> </p>`);
58616
58716
  var root_638 = $284.from_html(`<div><!> <div class="cinder-time-field__controls"><input class="cinder-time-field__input" type="time"/> <!> <!> <!></div> <!> <!></div>`);
58617
58717
  function Time_field($$anchor, $$props) {
@@ -58798,7 +58898,7 @@ function Time_field($$anchor, $$props) {
58798
58898
  var node_2 = $284.sibling(node_1, 2);
58799
58899
  {
58800
58900
  var consequent_2 = ($$anchor2) => {
58801
- var fragment = root_397();
58901
+ var fragment = root_399();
58802
58902
  var span = $284.first_child(fragment);
58803
58903
  var select = $284.sibling(span, 2);
58804
58904
  $284.each(select, 20, () => $$props.timezones, (option) => option, ($$anchor3, option) => {
@@ -58856,7 +58956,7 @@ function Time_field($$anchor, $$props) {
58856
58956
  var node_4 = $284.sibling(div_1, 2);
58857
58957
  {
58858
58958
  var consequent_4 = ($$anchor2) => {
58859
- var p = root_468();
58959
+ var p = root_470();
58860
58960
  var text_3 = $284.child(p, true);
58861
58961
  $284.reset(p);
58862
58962
  $284.template_effect(() => {
@@ -59130,8 +59230,8 @@ var rest_excludes128 = new Set([
59130
59230
  var root186 = $285.from_html(`<!> <!> <!>`, 1);
59131
59231
  var root_1187 = $285.from_html(`<!> <!> <!> <!>`, 1);
59132
59232
  var root_2119 = $285.from_html(`<div class="cinder-schedule-builder__field-row"><!> <!></div>`);
59133
- var root_398 = $285.from_html(`<div class="cinder-schedule-builder__weekday-group" role="group" aria-label="Days of week"></div> <!>`, 1);
59134
- var root_469 = $285.from_html(`<div role="tabpanel" class="cinder-schedule-builder__panel" data-sb-panel="presets"><!> <!></div>`);
59233
+ var root_3100 = $285.from_html(`<div class="cinder-schedule-builder__weekday-group" role="group" aria-label="Days of week"></div> <!>`, 1);
59234
+ var root_471 = $285.from_html(`<div role="tabpanel" class="cinder-schedule-builder__panel" data-sb-panel="presets"><!> <!></div>`);
59135
59235
  var root_556 = $285.from_html(`<div role="tabpanel" class="cinder-schedule-builder__panel" data-sb-panel="cron"><div class="cinder-schedule-builder__cron-fields"></div></div>`);
59136
59236
  var root_639 = $285.from_html(`<div role="tabpanel" class="cinder-schedule-builder__panel" data-sb-panel="interval"><div class="cinder-schedule-builder__field-row"><!> <!></div></div>`);
59137
59237
  var root_730 = $285.from_html(`<p class="cinder-schedule-builder__empty">Preview unavailable — fix the cron expression above.</p>`);
@@ -59455,7 +59555,7 @@ function Schedule_builder($$anchor, $$props) {
59455
59555
  var node_4 = $285.sibling(node, 2);
59456
59556
  {
59457
59557
  var consequent_3 = ($$anchor2) => {
59458
- var div_1 = root_469();
59558
+ var div_1 = root_471();
59459
59559
  var node_5 = $285.child(div_1);
59460
59560
  {
59461
59561
  let $0 = $285.derived(() => `${baseId}-preset-kind`);
@@ -59604,7 +59704,7 @@ function Schedule_builder($$anchor, $$props) {
59604
59704
  }
59605
59705
  };
59606
59706
  var consequent_2 = ($$anchor3) => {
59607
- var fragment_3 = root_398();
59707
+ var fragment_3 = root_3100();
59608
59708
  var div_3 = $285.first_child(fragment_3);
59609
59709
  $285.each(div_3, 21, () => WEEKDAYS, (day) => day.value, ($$anchor4, day) => {
59610
59710
  {
@@ -60382,8 +60482,8 @@ var rest_excludes129 = new Set([
60382
60482
  var root187 = $286.from_html(`<span class="cinder-_required-marker" aria-hidden="true">*</span>`);
60383
60483
  var root_1189 = $286.from_html(`<p class="cinder-schema-form__description"> </p>`);
60384
60484
  var root_2120 = $286.from_html(`<p class="cinder-schema-form__error" aria-live="polite" tabindex="-1"> </p>`);
60385
- var root_399 = $286.from_html(`<legend class="cinder-schema-form__legend"> <!></legend> <!> <!>`, 1);
60386
- var root_470 = $286.from_html(`<fieldset class="cinder-schema-form__fieldset"><!> <div class="cinder-schema-form__fields"></div></fieldset>`);
60485
+ var root_3101 = $286.from_html(`<legend class="cinder-schema-form__legend"> <!></legend> <!> <!>`, 1);
60486
+ var root_472 = $286.from_html(`<fieldset class="cinder-schema-form__fieldset"><!> <div class="cinder-schema-form__fields"></div></fieldset>`);
60387
60487
  var root_557 = $286.from_html(`<div class="cinder-schema-form__array-item"><!> <button type="button" class="cinder-schema-form__secondary-button">Remove</button></div>`);
60388
60488
  var root_640 = $286.from_html(`<fieldset class="cinder-schema-form__fieldset"><!> <div class="cinder-schema-form__array"></div> <button type="button" class="cinder-schema-form__secondary-button"> </button></fieldset>`);
60389
60489
  var root_731 = $286.from_html(`<div class="cinder-schema-form__field"><!></div>`);
@@ -60393,7 +60493,7 @@ function Schema_form_body($$anchor, $$props) {
60393
60493
  const generatedId = $286.props_id();
60394
60494
  $286.push($$props, true);
60395
60495
  const groupLegend = ($$anchor2, field = $286.noop) => {
60396
- var fragment = root_399();
60496
+ var fragment = root_3101();
60397
60497
  var legend = $286.first_child(fragment);
60398
60498
  var text49 = $286.child(legend);
60399
60499
  var node = $286.sibling(text49);
@@ -60458,7 +60558,7 @@ function Schema_form_body($$anchor, $$props) {
60458
60558
  var node_3 = $286.first_child(fragment_1);
60459
60559
  {
60460
60560
  var consequent_3 = ($$anchor3) => {
60461
- var fieldset = root_470();
60561
+ var fieldset = root_472();
60462
60562
  var node_4 = $286.child(fieldset);
60463
60563
  groupLegend(node_4, field);
60464
60564
  var div = $286.sibling(node_4, 2);
@@ -61137,8 +61237,8 @@ var rest_excludes132 = new Set([
61137
61237
  var root188 = $289.from_html(`<span class="cinder-secret-value-field__prefix" aria-hidden="true"> </span>`);
61138
61238
  var root_1191 = $289.from_html(`<span class="cinder-secret-value-field__suffix" aria-hidden="true"> </span>`);
61139
61239
  var root_2121 = $289.from_svg(`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="cinder-secret-value-field__icon" aria-hidden="true"><path fill-rule="evenodd" d="M3.28 2.22a.75.75 0 00-1.06 1.06l14.5 14.5a.75.75 0 101.06-1.06l-1.745-1.745a10.029 10.029 0 003.3-4.38 1.651 1.651 0 000-1.185A10.004 10.004 0 009.999 3a9.956 9.956 0 00-4.744 1.194L3.28 2.22zM7.752 6.69l1.092 1.092a2.5 2.5 0 013.374 3.373l1.091 1.092a4 4 0 00-5.557-5.557z" clip-rule="evenodd"></path><path d="M10.748 13.93l2.523 2.524a9.987 9.987 0 01-3.27.547c-4.258 0-7.894-2.66-9.337-6.41a1.651 1.651 0 010-1.186A10.007 10.007 0 012.839 6.02L6.07 9.252a4 4 0 004.678 4.678z"></path></svg>`);
61140
- var root_3100 = $289.from_svg(`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="cinder-secret-value-field__icon" aria-hidden="true"><path d="M10 12.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"></path><path fill-rule="evenodd" d="M.664 10.59a1.651 1.651 0 010-1.186A10.004 10.004 0 0110 3c4.257 0 7.893 2.66 9.336 6.41.147.381.146.804 0 1.186A10.004 10.004 0 0110 17c-4.257 0-7.893-2.66-9.336-6.41zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clip-rule="evenodd"></path></svg>`);
61141
- var root_471 = $289.from_html(`<button type="button" class="cinder-secret-value-field__toggle"><!></button>`);
61240
+ var root_3102 = $289.from_svg(`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="cinder-secret-value-field__icon" aria-hidden="true"><path d="M10 12.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"></path><path fill-rule="evenodd" d="M.664 10.59a1.651 1.651 0 010-1.186A10.004 10.004 0 0110 3c4.257 0 7.893 2.66 9.336 6.41.147.381.146.804 0 1.186A10.004 10.004 0 0110 17c-4.257 0-7.893-2.66-9.336-6.41zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clip-rule="evenodd"></path></svg>`);
61241
+ var root_473 = $289.from_html(`<button type="button" class="cinder-secret-value-field__toggle"><!></button>`);
61142
61242
  var root_558 = $289.from_svg(`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="cinder-secret-value-field__icon" aria-hidden="true"><path fill-rule="evenodd" d="M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z" clip-rule="evenodd"></path></svg>`);
61143
61243
  var root_641 = $289.from_svg(`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="cinder-secret-value-field__icon" aria-hidden="true"><path d="M7 3.5A1.5 1.5 0 018.5 2h3.879a1.5 1.5 0 011.06.44l3.122 3.12A1.5 1.5 0 0117 6.622V12.5a1.5 1.5 0 01-1.5 1.5h-1v-3.379a3 3 0 00-.879-2.121L10.5 5.379A3 3 0 008.379 4.5H7v-1z"></path><path d="M4.5 6A1.5 1.5 0 003 7.5v9A1.5 1.5 0 004.5 18h7a1.5 1.5 0 001.5-1.5v-5.879a1.5 1.5 0 00-.44-1.06L9.44 6.439A1.5 1.5 0 008.378 6H4.5z"></path></svg>`);
61144
61244
  var root_732 = $289.from_html(`<div class="cinder-secret-value-field__warning"><!></div>`);
@@ -61225,7 +61325,7 @@ function Secret_value_field($$anchor, $$props) {
61225
61325
  var node_2 = $289.child(div_2);
61226
61326
  {
61227
61327
  var consequent_3 = ($$anchor2) => {
61228
- var button = root_471();
61328
+ var button = root_473();
61229
61329
  var node_3 = $289.child(button);
61230
61330
  {
61231
61331
  var consequent_2 = ($$anchor3) => {
@@ -61233,7 +61333,7 @@ function Secret_value_field($$anchor, $$props) {
61233
61333
  $289.append($$anchor3, svg);
61234
61334
  };
61235
61335
  var alternate = ($$anchor3) => {
61236
- var svg_1 = root_3100();
61336
+ var svg_1 = root_3102();
61237
61337
  $289.append($$anchor3, svg_1);
61238
61338
  };
61239
61339
  $289.if(node_3, ($$render) => {
@@ -61325,13 +61425,13 @@ import * as $290 from "svelte/internal/client";
61325
61425
  var root189 = $290.from_html(`<hgroup class="cinder-section-heading__hgroup"><p class="cinder-section-heading__label"><!></p> <!></hgroup>`);
61326
61426
  var root_1192 = $290.from_html(`<p class="cinder-section-heading__description"> </p>`);
61327
61427
  var root_2122 = $290.from_html(`<div class="cinder-section-heading__actions"><!></div>`);
61328
- var root_3101 = $290.from_html(`<div class="cinder-section-heading__tabs"><!></div>`);
61329
- var root_472 = $290.from_html(`<div><div class="cinder-section-heading__row"><div class="cinder-section-heading__primary"><!> <!></div> <!></div> <!></div>`);
61428
+ var root_3103 = $290.from_html(`<div class="cinder-section-heading__tabs"><!></div>`);
61429
+ var root_474 = $290.from_html(`<div><div class="cinder-section-heading__row"><div class="cinder-section-heading__primary"><!> <!></div> <!></div> <!></div>`);
61330
61430
  function Section_heading($$anchor, $$props) {
61331
61431
  $290.push($$props, true);
61332
61432
  let level = $290.prop($$props, "level", 3, 2);
61333
61433
  const headingTag = $290.derived(() => `h${level()}`);
61334
- var div = root_472();
61434
+ var div = root_474();
61335
61435
  var div_1 = $290.child(div);
61336
61436
  var div_2 = $290.child(div_1);
61337
61437
  var node = $290.child(div_2);
@@ -61403,7 +61503,7 @@ function Section_heading($$anchor, $$props) {
61403
61503
  var node_7 = $290.sibling(div_1, 2);
61404
61504
  {
61405
61505
  var consequent_3 = ($$anchor2) => {
61406
- var div_4 = root_3101();
61506
+ var div_4 = root_3103();
61407
61507
  var node_8 = $290.child(div_4);
61408
61508
  $290.snippet(node_8, () => $$props.tabs);
61409
61509
  $290.reset(div_4);
@@ -61654,8 +61754,8 @@ var rest_excludes134 = new Set([
61654
61754
  var root191 = $292.from_html(`<span class="cinder-share-card__action-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-share-card__icon"><polyline points="20,6 9,17 4,12"></polyline></svg></span> `, 1);
61655
61755
  var root_1194 = $292.from_html(`<span class="cinder-share-card__action-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-share-card__icon"><circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"></line><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"></line></svg></span> `, 1);
61656
61756
  var root_2124 = $292.from_html(`<button type="button" class="cinder-share-card__action"><!></button>`);
61657
- var root_3102 = $292.from_html(`<span class="cinder-share-card__action-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-share-card__icon"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg></span> `, 1);
61658
- var root_473 = $292.from_html(`<div class="cinder-share-card__preview"><!></div>`);
61757
+ var root_3104 = $292.from_html(`<span class="cinder-share-card__action-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cinder-share-card__icon"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg></span> `, 1);
61758
+ var root_475 = $292.from_html(`<div class="cinder-share-card__preview"><!></div>`);
61659
61759
  var root_559 = $292.from_html(`<p class="cinder-share-card__title"> </p>`);
61660
61760
  var root_642 = $292.from_html(`<p class="cinder-share-card__description"> </p>`);
61661
61761
  var root_733 = $292.from_html(`<div class="cinder-share-card__meta"><!> <!></div>`);
@@ -61709,7 +61809,7 @@ function Share_card($$anchor, $$props) {
61709
61809
  $292.append($$anchor3, fragment_2);
61710
61810
  };
61711
61811
  var alternate_1 = ($$anchor3) => {
61712
- var fragment_3 = root_3102();
61812
+ var fragment_3 = root_3104();
61713
61813
  var text_4 = $292.sibling($292.first_child(fragment_3));
61714
61814
  $292.template_effect(() => $292.set_text(text_4, ` ${action().label ?? ""}`));
61715
61815
  $292.append($$anchor3, fragment_3);
@@ -61829,7 +61929,7 @@ function Share_card($$anchor, $$props) {
61829
61929
  var node_2 = $292.child(div);
61830
61930
  {
61831
61931
  var consequent_2 = ($$anchor2) => {
61832
- var div_1 = root_473();
61932
+ var div_1 = root_475();
61833
61933
  var node_3 = $292.child(div_1);
61834
61934
  $292.snippet(node_3, () => $$props.preview);
61835
61935
  $292.reset(div_1);
@@ -61964,8 +62064,8 @@ var rest_excludes135 = new Set([
61964
62064
  var root192 = $293.from_html(`<button type="button" class="cinder-sheet__close" aria-label="Close sheet"><svg class="cinder-sheet__close-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"><path d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"></path></svg></button>`);
61965
62065
  var root_1195 = $293.from_html(`<div class="cinder-sheet__drag-handle" aria-hidden="true"><span class="cinder-sheet__drag-handle-pill"></span></div>`);
61966
62066
  var root_2125 = $293.from_html(`<h2 class="cinder-sr-only"> </h2>`);
61967
- var root_3103 = $293.from_html(`<!> <!>`, 1);
61968
- var root_474 = $293.from_html(`<h2 class="cinder-sheet__title"> </h2>`);
62067
+ var root_3105 = $293.from_html(`<!> <!>`, 1);
62068
+ var root_476 = $293.from_html(`<h2 class="cinder-sheet__title"> </h2>`);
61969
62069
  var root_560 = $293.from_html(`<div class="cinder-sheet__footer"><!></div>`);
61970
62070
  var root_643 = $293.from_html(`<div class="cinder-sheet__panel"><!> <header class="cinder-sheet__header"><!> <!></header> <div class="cinder-sheet__body" tabindex="-1"><!></div> <!></div>`);
61971
62071
  var root_734 = $293.from_html(`<dialog><!></dialog>`);
@@ -62060,7 +62160,7 @@ function Sheet($$anchor, $$props) {
62060
62160
  var node_3 = $293.child(header_1);
62061
62161
  {
62062
62162
  var consequent_2 = ($$anchor4) => {
62063
- var fragment_1 = root_3103();
62163
+ var fragment_1 = root_3105();
62064
62164
  var node_4 = $293.first_child(fragment_1);
62065
62165
  {
62066
62166
  var consequent_1 = ($$anchor5) => {
@@ -62083,7 +62183,7 @@ function Sheet($$anchor, $$props) {
62083
62183
  $293.append($$anchor4, fragment_1);
62084
62184
  };
62085
62185
  var alternate = ($$anchor4) => {
62086
- var h2_1 = root_474();
62186
+ var h2_1 = root_476();
62087
62187
  var text_1 = $293.child(h2_1, true);
62088
62188
  $293.reset(h2_1);
62089
62189
  $293.template_effect(() => {
@@ -62176,12 +62276,12 @@ var rest_excludes136 = new Set([
62176
62276
  var root193 = $294.from_html(`<span class="cinder-shortcut-hint__label"><!></span>`);
62177
62277
  var root_1196 = $294.from_html(`<span class="cinder-shortcut-hint__separator">+</span>`);
62178
62278
  var root_2126 = $294.from_html(`<!> <!>`, 1);
62179
- var root_3104 = $294.from_html(`<span><!> <span class="cinder-shortcut-hint__keys" aria-hidden="true"></span> <span class="cinder-sr-only"> </span> <!></span>`);
62279
+ var root_3106 = $294.from_html(`<span><!> <span class="cinder-shortcut-hint__keys" aria-hidden="true"></span> <span class="cinder-sr-only"> </span> <!></span>`);
62180
62280
  function Shortcut_hint($$anchor, $$props) {
62181
62281
  $294.push($$props, true);
62182
62282
  let keysPosition = $294.prop($$props, "keysPosition", 3, "after"), rest = $294.rest_props($$props, rest_excludes136);
62183
62283
  const resolvedKeysLabel = $294.derived(() => $$props.keysLabel ?? $$props.keys.join(" plus "));
62184
- var span = root_3104();
62284
+ var span = root_3106();
62185
62285
  $294.attribute_effect(span, ($0) => ({ ...rest, class: $0 }), [() => classNames("cinder-shortcut-hint", $$props.class)]);
62186
62286
  var node = $294.child(span);
62187
62287
  {
@@ -62493,6 +62593,10 @@ function setSidebarContext(context) {
62493
62593
  }
62494
62594
  var getSidebarContext = optionalContext(getSidebarContextStrict);
62495
62595
 
62596
+ // src/components/sidebar/sidebar.constants.ts
62597
+ var SIDEBAR_MOBILE_BREAKPOINT = "47.99rem";
62598
+ var SIDEBAR_MOBILE_MEDIA_QUERY = `(max-width: ${SIDEBAR_MOBILE_BREAKPOINT})`;
62599
+
62496
62600
  // src/components/sidebar/sidebar.svelte
62497
62601
  var rest_excludes140 = new Set([
62498
62602
  "$$slots",
@@ -62511,12 +62615,12 @@ var rest_excludes140 = new Set([
62511
62615
  var root197 = $298.from_html(`<div class="cinder-sidebar__brand"><!></div>`);
62512
62616
  var root_1198 = $298.from_html(`<nav class="cinder-sidebar__nav"><!></nav>`);
62513
62617
  var root_2128 = $298.from_html(`<div><!></div>`);
62514
- var root_3105 = $298.from_html(`<!> <!> <!>`, 1);
62515
- var root_475 = $298.from_html(`<aside><!></aside>`);
62618
+ var root_3107 = $298.from_html(`<!> <!> <!>`, 1);
62619
+ var root_477 = $298.from_html(`<aside><!></aside>`);
62516
62620
  function Sidebar($$anchor, $$props) {
62517
62621
  $298.push($$props, true);
62518
62622
  const sidebarContents = ($$anchor2, isMobile = $298.noop) => {
62519
- var fragment = root_3105();
62623
+ var fragment = root_3107();
62520
62624
  var node = $298.first_child(fragment);
62521
62625
  {
62522
62626
  var consequent = ($$anchor3) => {
@@ -62575,7 +62679,7 @@ function Sidebar($$anchor, $$props) {
62575
62679
  const navigationLabel = $298.derived(() => `${$298.get(validatedLabel)} navigation`);
62576
62680
  const hasMatchMedia = typeof window !== "undefined" && typeof window.matchMedia === "function";
62577
62681
  const usesSsrResponsiveFallback = !hasMatchMedia;
62578
- const mobile = hasMatchMedia ? new MediaQuery2("(max-width: 47.99rem)", false) : { current: false };
62682
+ const mobile = hasMatchMedia ? new MediaQuery2(SIDEBAR_MOBILE_MEDIA_QUERY, false) : { current: false };
62579
62683
  const context = {
62580
62684
  get collapsed() {
62581
62685
  return collapsed();
@@ -62619,7 +62723,7 @@ function Sidebar($$anchor, $$props) {
62619
62723
  }));
62620
62724
  };
62621
62725
  var alternate = ($$anchor2) => {
62622
- var aside = root_475();
62726
+ var aside = root_477();
62623
62727
  $298.attribute_effect(aside, ($0) => ({
62624
62728
  id: $$props.id,
62625
62729
  ...rest,
@@ -62876,8 +62980,8 @@ import { untrack as untrack29 } from "svelte";
62876
62980
  var root200 = $302.from_html(`<span class="cinder-sr-only"> </span> <span class="cinder-sr-only"> </span>`, 1);
62877
62981
  var root_1199 = $302.from_html(`<span class="cinder-slider__tick"></span>`);
62878
62982
  var root_2129 = $302.from_html(`<div class="cinder-slider__ticks" aria-hidden="true"></div>`);
62879
- var root_3106 = $302.from_html(`<div class="cinder-slider__thumb" data-cinder-slider-thumb="low" role="slider" aria-orientation="horizontal"></div> <div class="cinder-slider__thumb" data-cinder-slider-thumb="high" role="slider" aria-orientation="horizontal"></div>`, 1);
62880
- var root_476 = $302.from_html(`<div class="cinder-slider__thumb" data-cinder-slider-thumb="single" role="slider" aria-orientation="horizontal"></div>`);
62983
+ var root_3108 = $302.from_html(`<div class="cinder-slider__thumb" data-cinder-slider-thumb="low" role="slider" aria-orientation="horizontal"></div> <div class="cinder-slider__thumb" data-cinder-slider-thumb="high" role="slider" aria-orientation="horizontal"></div>`, 1);
62984
+ var root_478 = $302.from_html(`<div class="cinder-slider__thumb" data-cinder-slider-thumb="single" role="slider" aria-orientation="horizontal"></div>`);
62881
62985
  var root_561 = $302.from_html(`<input type="hidden"/> <input type="hidden"/>`, 1);
62882
62986
  var root_644 = $302.from_html(`<input type="hidden"/>`);
62883
62987
  var root_735 = $302.from_html(`<div><!> <div class="cinder-slider__track" role="presentation"><div class="cinder-slider__range" aria-hidden="true"></div> <!> <!></div> <!></div>`);
@@ -63250,7 +63354,7 @@ function Slider($$anchor, $$props) {
63250
63354
  var node_2 = $302.sibling(node_1, 2);
63251
63355
  {
63252
63356
  var consequent_2 = ($$anchor2) => {
63253
- var fragment_1 = root_3106();
63357
+ var fragment_1 = root_3108();
63254
63358
  var div_4 = $302.first_child(fragment_1);
63255
63359
  let styles_2;
63256
63360
  var div_5 = $302.sibling(div_4, 2);
@@ -63301,7 +63405,7 @@ function Slider($$anchor, $$props) {
63301
63405
  $302.append($$anchor2, fragment_1);
63302
63406
  };
63303
63407
  var alternate = ($$anchor2) => {
63304
- var div_6 = root_476();
63408
+ var div_6 = root_478();
63305
63409
  let styles_4;
63306
63410
  $302.template_effect(($0, $1, $2100, $310) => {
63307
63411
  $302.set_attribute(div_6, "tabindex", $302.get(disabled) ? -1 : 0);
@@ -64042,8 +64146,8 @@ var rest_excludes141 = new Set([
64042
64146
  var root201 = $303.from_html(`<p class="cinder-source-diff-viewer__empty"> </p>`);
64043
64147
  var root_1200 = $303.from_html(`<div class="cinder-source-diff-viewer__notice" role="status"> </div>`);
64044
64148
  var root_2130 = $303.from_html(`<code> </code>`);
64045
- var root_3107 = $303.from_html(`<div class="cinder-source-diff-viewer__metadata" role="group" aria-label="File metadata"></div>`);
64046
- var root_477 = $303.from_html(`<span class="cinder-source-diff-viewer__line-number" aria-hidden="true"> </span> <span class="cinder-source-diff-viewer__line-number" aria-hidden="true"> </span>`, 1);
64149
+ var root_3109 = $303.from_html(`<div class="cinder-source-diff-viewer__metadata" role="group" aria-label="File metadata"></div>`);
64150
+ var root_479 = $303.from_html(`<span class="cinder-source-diff-viewer__line-number" aria-hidden="true"> </span> <span class="cinder-source-diff-viewer__line-number" aria-hidden="true"> </span>`, 1);
64047
64151
  var root_562 = $303.from_html(`<div class="cinder-source-diff-viewer__line"><!> <span class="cinder-sr-only"> </span> <code class="cinder-source-diff-viewer__line-code" aria-hidden="true"> </code></div>`);
64048
64152
  var root_645 = $303.from_html(`<div class="cinder-source-diff-viewer__hunk"><div class="cinder-source-diff-viewer__hunk-header"> </div> <section class="cinder-source-diff-viewer__lines"></section></div>`);
64049
64153
  var root_736 = $303.from_html(`<section class="cinder-source-diff-viewer__file"><header class="cinder-source-diff-viewer__file-header"><span class="cinder-source-diff-viewer__file-path"> </span></header> <!> <!></section>`);
@@ -64110,7 +64214,7 @@ function Source_diff_viewer($$anchor, $$props) {
64110
64214
  var node_3 = $303.sibling(header, 2);
64111
64215
  {
64112
64216
  var consequent_2 = ($$anchor4) => {
64113
- var div_2 = root_3107();
64217
+ var div_2 = root_3109();
64114
64218
  $303.each(div_2, 23, () => $303.get(file).metadata, (metadataLine, metadataIndex) => `${metadataIndex}:${metadataLine}`, ($$anchor5, metadataLine) => {
64115
64219
  var code = root_2130();
64116
64220
  var text_3 = $303.child(code, true);
@@ -64142,7 +64246,7 @@ function Source_diff_viewer($$anchor, $$props) {
64142
64246
  var node_6 = $303.child(div_5);
64143
64247
  {
64144
64248
  var consequent_3 = ($$anchor7) => {
64145
- var fragment_2 = root_477();
64249
+ var fragment_2 = root_479();
64146
64250
  var span_1 = $303.first_child(fragment_2);
64147
64251
  var text_5 = $303.child(span_1, true);
64148
64252
  $303.reset(span_1);
@@ -64241,8 +64345,8 @@ var rest_excludes142 = new Set([
64241
64345
  var root202 = $304.from_html(`<div class="cinder-stacked-list-item__leading"><!></div>`);
64242
64346
  var root_1201 = $304.from_html(`<a class="cinder-stacked-list-item__title-link"><!></a>`);
64243
64347
  var root_2131 = $304.from_html(`<div class="cinder-stacked-list-item__description"><!></div>`);
64244
- var root_3108 = $304.from_html(`<div class="cinder-stacked-list-item__meta"><!></div>`);
64245
- var root_478 = $304.from_html(`<div class="cinder-stacked-list-item__trailing"><!></div>`);
64348
+ var root_3110 = $304.from_html(`<div class="cinder-stacked-list-item__meta"><!></div>`);
64349
+ var root_480 = $304.from_html(`<div class="cinder-stacked-list-item__trailing"><!></div>`);
64246
64350
  var root_563 = $304.from_html(`<li><div class="cinder-stacked-list-item__layout"><!> <div class="cinder-stacked-list-item__body"><div class="cinder-stacked-list-item__title"><!></div> <!> <!></div> <!></div></li>`);
64247
64351
  function Stacked_list_item($$anchor, $$props) {
64248
64352
  $304.push($$props, true);
@@ -64329,7 +64433,7 @@ function Stacked_list_item($$anchor, $$props) {
64329
64433
  var node_7 = $304.sibling(node_5, 2);
64330
64434
  {
64331
64435
  var consequent_3 = ($$anchor2) => {
64332
- var div_5 = root_3108();
64436
+ var div_5 = root_3110();
64333
64437
  var node_8 = $304.child(div_5);
64334
64438
  $304.snippet(node_8, () => $$props.meta);
64335
64439
  $304.reset(div_5);
@@ -64344,7 +64448,7 @@ function Stacked_list_item($$anchor, $$props) {
64344
64448
  var node_9 = $304.sibling(div_2, 2);
64345
64449
  {
64346
64450
  var consequent_4 = ($$anchor2) => {
64347
- var div_6 = root_478();
64451
+ var div_6 = root_480();
64348
64452
  var node_10 = $304.child(div_6);
64349
64453
  $304.snippet(node_10, () => $$props.trailing);
64350
64454
  $304.reset(div_6);
@@ -64389,8 +64493,8 @@ var rest_excludes143 = new Set([
64389
64493
  var root203 = $305.from_html(`<p class="cinder-spectrogram__description"> </p>`);
64390
64494
  var root_1202 = $305.from_html(`<div class="cinder-spectrogram__state"><!></div>`);
64391
64495
  var root_2132 = $305.from_svg(`<title> </title>`);
64392
- var root_3109 = $305.from_svg(`<rect class="cinder-spectrogram__cell" aria-hidden="true"></rect>`);
64393
- var root_479 = $305.from_svg(`<text class="cinder-spectrogram__tick-label" text-anchor="end" dominant-baseline="middle"> </text>`);
64496
+ var root_3111 = $305.from_svg(`<rect class="cinder-spectrogram__cell" aria-hidden="true"></rect>`);
64497
+ var root_481 = $305.from_svg(`<text class="cinder-spectrogram__tick-label" text-anchor="end" dominant-baseline="middle"> </text>`);
64394
64498
  var root_564 = $305.from_svg(`<text class="cinder-spectrogram__tick-label" text-anchor="middle" dominant-baseline="auto"> </text>`);
64395
64499
  var root_646 = $305.from_svg(`<g><!><!><!></g>`);
64396
64500
  var root_737 = $305.from_html(`<th scope="col"> </th>`);
@@ -64562,7 +64666,7 @@ function Spectrogram($$anchor, $$props) {
64562
64666
  var fragment_2 = $305.comment();
64563
64667
  var node_9 = $305.first_child(fragment_2);
64564
64668
  $305.each(node_9, 16, () => $305.get(binIndices), (binIndex) => binIndex, ($$anchor4, binIndex) => {
64565
- var rect = root_3109();
64669
+ var rect = root_3111();
64566
64670
  $305.template_effect(($0, $1) => {
64567
64671
  $305.set_attribute(rect, "x", frameIndex * $305.get(cellWidth));
64568
64672
  $305.set_attribute(rect, "y", $0);
@@ -64583,7 +64687,7 @@ function Spectrogram($$anchor, $$props) {
64583
64687
  var node_11 = $305.first_child(fragment_3);
64584
64688
  {
64585
64689
  var consequent_6 = ($$anchor4) => {
64586
- var text_4 = root_479();
64690
+ var text_4 = root_481();
64587
64691
  $305.set_attribute(text_4, "x", -6);
64588
64692
  var text_5 = $305.child(text_4, true);
64589
64693
  $305.reset(text_4);
@@ -64725,8 +64829,8 @@ var rest_excludes144 = new Set([
64725
64829
  var root204 = $306.from_html(`<p class="cinder-spectrum-chart__description"> </p>`);
64726
64830
  var root_1203 = $306.from_html(`<div class="cinder-spectrum-chart__state"><!></div>`);
64727
64831
  var root_2133 = $306.from_svg(`<title> </title>`);
64728
- var root_3110 = $306.from_svg(`<text class="cinder-spectrum-chart__tick-label" text-anchor="end" dominant-baseline="middle"> </text><line class="cinder-spectrum-chart__grid-line" x1="0" aria-hidden="true"></line>`, 1);
64729
- var root_480 = $306.from_svg(`<rect class="cinder-spectrum-chart__bar" aria-hidden="true"></rect>`);
64832
+ var root_3112 = $306.from_svg(`<text class="cinder-spectrum-chart__tick-label" text-anchor="end" dominant-baseline="middle"> </text><line class="cinder-spectrum-chart__grid-line" x1="0" aria-hidden="true"></line>`, 1);
64833
+ var root_482 = $306.from_svg(`<rect class="cinder-spectrum-chart__bar" aria-hidden="true"></rect>`);
64730
64834
  var root_565 = $306.from_svg(`<text class="cinder-spectrum-chart__tick-label" text-anchor="middle" dominant-baseline="auto"> </text>`);
64731
64835
  var root_647 = $306.from_svg(`<g><!><!><!></g>`);
64732
64836
  var root_738 = $306.from_html(`<tr><td> </td><td> </td></tr>`);
@@ -64901,7 +65005,7 @@ function Spectrum_chart($$anchor, $$props) {
64901
65005
  $306.set_attribute(g, "transform", `translate(${marginLeft}, ${marginTop})`);
64902
65006
  var node_8 = $306.child(g);
64903
65007
  $306.each(node_8, 17, () => $306.get(yTicks), $306.index, ($$anchor3, tick18, index9) => {
64904
- var fragment_2 = root_3110();
65008
+ var fragment_2 = root_3112();
64905
65009
  var text_4 = $306.first_child(fragment_2);
64906
65010
  $306.set_attribute(text_4, "x", -6);
64907
65011
  var text_5 = $306.child(text_4, true);
@@ -64923,7 +65027,7 @@ function Spectrum_chart($$anchor, $$props) {
64923
65027
  });
64924
65028
  var node_9 = $306.sibling(node_8);
64925
65029
  $306.each(node_9, 17, () => $306.get(spectrumBars), $306.index, ($$anchor3, bar) => {
64926
- var rect = root_480();
65030
+ var rect = root_482();
64927
65031
  $306.template_effect(() => {
64928
65032
  $306.set_attribute(rect, "x", $306.get(bar).x);
64929
65033
  $306.set_attribute(rect, "y", $306.get(bar).y);
@@ -65463,8 +65567,8 @@ var stepBody = ($$anchor, bodyLabel = $310.noop, bodyDescription = $310.noop, bo
65463
65567
  var root208 = $310.from_html(`<span class="cinder-steps__sr-only"> </span> <span class="cinder-steps__sr-only-separator"></span>`, 1);
65464
65568
  var root_1206 = $310.from_html(`<span class="cinder-steps__description"> </span>`);
65465
65569
  var root_2134 = $310.from_html(`<span class="cinder-steps__body-content"><!> <span class="cinder-steps__label"> </span> <!></span>`);
65466
- var root_3111 = $310.from_html(`<span class="cinder-steps__index"> </span>`);
65467
- var root_481 = $310.from_html(`<a class="cinder-steps__interactive cinder-steps__body"><!></a>`);
65570
+ var root_3113 = $310.from_html(`<span class="cinder-steps__index"> </span>`);
65571
+ var root_483 = $310.from_html(`<a class="cinder-steps__interactive cinder-steps__body"><!></a>`);
65468
65572
  var root_566 = $310.from_html(`<button type="button" class="cinder-steps__interactive cinder-steps__body"><!></button>`);
65469
65573
  var root_648 = $310.from_html(`<span class="cinder-steps__body"><!></span>`);
65470
65574
  var root_739 = $310.from_html(`<span class="cinder-steps__connector" aria-hidden="true"></span>`);
@@ -65504,7 +65608,7 @@ function Steps($$anchor, $$props) {
65504
65608
  Check($$anchor3, { class: "cinder-steps__check" });
65505
65609
  };
65506
65610
  var alternate = ($$anchor3) => {
65507
- var span_6 = root_3111();
65611
+ var span_6 = root_3113();
65508
65612
  var text_4 = $310.child(span_6, true);
65509
65613
  $310.reset(span_6);
65510
65614
  $310.template_effect(() => $310.set_text(text_4, $310.get(index9) + 1));
@@ -65521,7 +65625,7 @@ function Steps($$anchor, $$props) {
65521
65625
  var node_3 = $310.sibling(span_5, 2);
65522
65626
  {
65523
65627
  var consequent_4 = ($$anchor3) => {
65524
- var a = root_481();
65628
+ var a = root_483();
65525
65629
  var node_4 = $310.child(a);
65526
65630
  stepBody(node_4, () => $310.get(stepLabel), () => $310.get(stepDescription), () => $310.get(state121), completedLabel, skippedLabel);
65527
65631
  $310.reset(a);
@@ -65616,7 +65720,7 @@ var rest_excludes148 = new Set([
65616
65720
  var root209 = $311.from_html(`<span class="cinder-stat__icon" aria-hidden="true"><!></span>`);
65617
65721
  var root_1207 = $311.from_html(`<span class="cinder-stat__change-description" aria-hidden="true"> </span>`);
65618
65722
  var root_2135 = $311.from_html(`<span class="cinder-stat__change"><span class="cinder-sr-only"> </span> <span class="cinder-stat__change-icon" aria-hidden="true"> </span> <span class="cinder-stat__change-value" aria-hidden="true"> </span> <!></span>`);
65619
- var root_3112 = $311.from_html(`<div><!> <span class="cinder-stat__label"> </span> <span class="cinder-stat__value"> </span> <!></div>`);
65723
+ var root_3114 = $311.from_html(`<div><!> <span class="cinder-stat__label"> </span> <span class="cinder-stat__value"> </span> <!></div>`);
65620
65724
  function Stat($$anchor, $$props) {
65621
65725
  const generatedId = $311.props_id();
65622
65726
  $311.push($$props, true);
@@ -65639,7 +65743,7 @@ function Stat($$anchor, $$props) {
65639
65743
  return `decreased by ${$$props.change.value}${suffix}`;
65640
65744
  return `no change, ${$$props.change.value}${suffix}`;
65641
65745
  });
65642
- var div = root_3112();
65746
+ var div = root_3114();
65643
65747
  $311.attribute_effect(div, ($0) => ({
65644
65748
  ...rest,
65645
65749
  id: $$props.id,
@@ -65960,8 +66064,8 @@ var rest_excludes151 = new Set([
65960
66064
  var root212 = $314.from_html(`<button type="button" class="cinder-tag-input__remove"><span aria-hidden="true">×</span></button>`);
65961
66065
  var root_1209 = $314.from_html(`<li class="cinder-tag-input__chip"><span class="cinder-tag-input__chip-label"> </span> <!></li>`);
65962
66066
  var root_2137 = $314.from_html(`<p class="cinder-tag-input__error" aria-live="polite"> </p>`);
65963
- var root_3113 = $314.from_html(`<input type="hidden"/>`);
65964
- var root_482 = $314.from_html(`<div><div class="cinder-tag-input__control"><ul class="cinder-tag-input__listbox"></ul> <input/></div> <!> <!> <!></div>`);
66067
+ var root_3115 = $314.from_html(`<input type="hidden"/>`);
66068
+ var root_484 = $314.from_html(`<div><div class="cinder-tag-input__control"><ul class="cinder-tag-input__listbox"></ul> <input/></div> <!> <!> <!></div>`);
65965
66069
  function Tag_input($$anchor, $$props) {
65966
66070
  const generatedId = $314.props_id();
65967
66071
  $314.push($$props, true);
@@ -66183,7 +66287,7 @@ function Tag_input($$anchor, $$props) {
66183
66287
  }
66184
66288
  }
66185
66289
  }
66186
- var div = root_482();
66290
+ var div = root_484();
66187
66291
  var div_1 = $314.child(div);
66188
66292
  var ul = $314.child(div_1);
66189
66293
  $314.each(ul, 23, () => $314.get(currentTags), (tag, index9) => `${index9}:${tag}`, ($$anchor2, tag, index9) => {
@@ -66266,7 +66370,7 @@ function Tag_input($$anchor, $$props) {
66266
66370
  var fragment = $314.comment();
66267
66371
  var node_3 = $314.first_child(fragment);
66268
66372
  $314.each(node_3, 19, () => $314.get(currentTags), (tag, index9) => `hidden:${index9}:${tag}`, ($$anchor3, tag) => {
66269
- var input_2 = root_3113();
66373
+ var input_2 = root_3115();
66270
66374
  $314.remove_input_defaults(input_2);
66271
66375
  $314.template_effect(() => {
66272
66376
  $314.set_attribute(input_2, "name", $$props.name);
@@ -66332,8 +66436,8 @@ var rest_excludes152 = new Set([
66332
66436
  var root213 = $315.from_html(`<p class="cinder-team-section__description"> </p>`);
66333
66437
  var root_1211 = $315.from_html(`<header class="cinder-team-section__header"><h2 class="cinder-team-section__title"> </h2> <!></header>`);
66334
66438
  var root_2138 = $315.from_html(`<div class="cinder-team-section__summary"><!></div>`);
66335
- var root_3114 = $315.from_html(`<p class="cinder-team-section__bio"> </p>`);
66336
- var root_483 = $315.from_html(`<a class="cinder-team-section__link">View profile</a>`);
66439
+ var root_3116 = $315.from_html(`<p class="cinder-team-section__bio"> </p>`);
66440
+ var root_485 = $315.from_html(`<a class="cinder-team-section__link">View profile</a>`);
66337
66441
  var root_567 = $315.from_html(`<div class="cinder-team-section__person"><!> <div class="cinder-team-section__meta"><p class="cinder-team-section__name"> </p> <p class="cinder-team-section__role"> </p></div></div> <!> <!>`, 1);
66338
66442
  var root_649 = $315.from_html(`<li class="cinder-team-section__item"><!></li>`);
66339
66443
  var root_740 = $315.from_html(`<div class="cinder-team-section__inner"><!> <!> <ul class="cinder-team-section__list"></ul></div>`);
@@ -66434,7 +66538,7 @@ function Team_section($$anchor, $$props) {
66434
66538
  var node_7 = $315.sibling(div_2, 2);
66435
66539
  {
66436
66540
  var consequent_3 = ($$anchor6) => {
66437
- var p_3 = root_3114();
66541
+ var p_3 = root_3116();
66438
66542
  var text_4 = $315.child(p_3, true);
66439
66543
  $315.reset(p_3);
66440
66544
  $315.template_effect(() => $315.set_text(text_4, $315.get(member).bio));
@@ -66448,7 +66552,7 @@ function Team_section($$anchor, $$props) {
66448
66552
  var node_8 = $315.sibling(node_7, 2);
66449
66553
  {
66450
66554
  var consequent_4 = ($$anchor6) => {
66451
- var a = root_483();
66555
+ var a = root_485();
66452
66556
  $315.template_effect(() => {
66453
66557
  $315.set_attribute(a, "href", $315.get(member).href);
66454
66558
  $315.set_attribute(a, "aria-label", `View ${$315.get(member).name}'s profile`);
@@ -67012,8 +67116,8 @@ var rest_excludes154 = new Set([
67012
67116
  var root215 = $317.from_html(`<p class="cinder-testimonial-section__description"> </p>`);
67013
67117
  var root_1222 = $317.from_html(`<header class="cinder-testimonial-section__header"><h2 class="cinder-testimonial-section__title"> </h2> <!></header>`);
67014
67118
  var root_2140 = $317.from_html(`<p class="cinder-testimonial-section__role"> </p>`);
67015
- var root_3115 = $317.from_html(`<blockquote class="cinder-testimonial-section__quote"> </blockquote> <div class="cinder-testimonial-section__person"><!> <div class="cinder-testimonial-section__person-meta"><p class="cinder-testimonial-section__name"> </p> <!></div></div>`, 1);
67016
- var root_484 = $317.from_html(`<li class="cinder-testimonial-section__item"><!></li>`);
67119
+ var root_3117 = $317.from_html(`<blockquote class="cinder-testimonial-section__quote"> </blockquote> <div class="cinder-testimonial-section__person"><!> <div class="cinder-testimonial-section__person-meta"><p class="cinder-testimonial-section__name"> </p> <!></div></div>`, 1);
67120
+ var root_486 = $317.from_html(`<li class="cinder-testimonial-section__item"><!></li>`);
67017
67121
  var root_568 = $317.from_html(`<div class="cinder-testimonial-section__inner"><!> <ul class="cinder-testimonial-section__list"></ul></div>`);
67018
67122
  function Testimonial_section($$anchor, $$props) {
67019
67123
  $317.push($$props, true);
@@ -67071,11 +67175,11 @@ function Testimonial_section($$anchor, $$props) {
67071
67175
  }
67072
67176
  var ul = $317.sibling(node_1, 2);
67073
67177
  $317.each(ul, 23, () => $$props.testimonials, (item, index9) => `${item.name}-${index9}`, ($$anchor4, item) => {
67074
- var li = root_484();
67178
+ var li = root_486();
67075
67179
  var node_3 = $317.child(li);
67076
67180
  Card(node_3, {
67077
67181
  children: ($$anchor5, $$slotProps2) => {
67078
- var fragment_2 = root_3115();
67182
+ var fragment_2 = root_3117();
67079
67183
  var blockquote = $317.first_child(fragment_2);
67080
67184
  var text_2 = $317.child(blockquote);
67081
67185
  $317.reset(blockquote);
@@ -67148,8 +67252,8 @@ var getToastContext = getToastContextStrict;
67148
67252
  var root216 = $318.from_html(`<div class="cinder-toast__icon" aria-hidden="true"><!></div>`);
67149
67253
  var root_1223 = $318.from_svg(`<svg viewBox="0 0 20 20" fill="currentColor" style="color: var(--_cinder-toast-accent)"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd"></path></svg>`);
67150
67254
  var root_2141 = $318.from_svg(`<svg viewBox="0 0 20 20" fill="currentColor" style="color: var(--_cinder-toast-accent)"><path fill-rule="evenodd" d="M8.485 2.495c.673-1.167 2.357-1.167 3.03 0l6.28 10.875c.673 1.167-.17 2.625-1.516 2.625H3.72c-1.347 0-2.189-1.458-1.515-2.625L8.485 2.495zM10 5a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0v-3.5A.75.75 0 0110 5zm0 9a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"></path></svg>`);
67151
- var root_3116 = $318.from_svg(`<svg viewBox="0 0 20 20" fill="currentColor" style="color: var(--_cinder-toast-accent)"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.28 7.22a.75.75 0 00-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 101.06 1.06L10 11.06l1.72 1.72a.75.75 0 101.06-1.06L11.06 10l1.72-1.72a.75.75 0 00-1.06-1.06L10 8.94 8.28 7.22z" clip-rule="evenodd"></path></svg>`);
67152
- var root_485 = $318.from_svg(`<svg viewBox="0 0 20 20" fill="currentColor" style="color: var(--_cinder-toast-accent)"><path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z" clip-rule="evenodd"></path></svg>`);
67255
+ var root_3118 = $318.from_svg(`<svg viewBox="0 0 20 20" fill="currentColor" style="color: var(--_cinder-toast-accent)"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.28 7.22a.75.75 0 00-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 101.06 1.06L10 11.06l1.72 1.72a.75.75 0 101.06-1.06L11.06 10l1.72-1.72a.75.75 0 00-1.06-1.06L10 8.94 8.28 7.22z" clip-rule="evenodd"></path></svg>`);
67256
+ var root_487 = $318.from_svg(`<svg viewBox="0 0 20 20" fill="currentColor" style="color: var(--_cinder-toast-accent)"><path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z" clip-rule="evenodd"></path></svg>`);
67153
67257
  var root_569 = $318.from_html(`<span class="cinder-toast__spinner" aria-hidden="true"></span>`);
67154
67258
  var root_650 = $318.from_html(`<button type="button" class="cinder-toast__action"> </button>`);
67155
67259
  var root_741 = $318.from_html(`<button type="button" class="cinder-toast__dismiss"><svg viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"><path d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"></path></svg></button>`);
@@ -67183,11 +67287,11 @@ function Toast_region($$anchor, $$props) {
67183
67287
  $318.append($$anchor4, svg_1);
67184
67288
  };
67185
67289
  var consequent_3 = ($$anchor4) => {
67186
- var svg_2 = root_3116();
67290
+ var svg_2 = root_3118();
67187
67291
  $318.append($$anchor4, svg_2);
67188
67292
  };
67189
67293
  var alternate = ($$anchor4) => {
67190
- var svg_3 = root_485();
67294
+ var svg_3 = root_487();
67191
67295
  $318.append($$anchor4, svg_3);
67192
67296
  };
67193
67297
  $318.if(node_2, ($$render) => {
@@ -67809,7 +67913,7 @@ var rest_excludes155 = new Set([
67809
67913
  var root217 = $319.from_html(`<li class="cinder-transfer-list__option" role="option"> </li>`);
67810
67914
  var root_1224 = $319.from_html(`<li class="cinder-transfer-list__empty" role="presentation">No available items</li>`);
67811
67915
  var root_2142 = $319.from_html(`<li class="cinder-transfer-list__empty" role="presentation">No selected items</li>`);
67812
- var root_3117 = $319.from_html(`<div><div class="cinder-transfer-list__layout"><section class="cinder-transfer-list__panel"><h3 class="cinder-transfer-list__label"> </h3> <ul class="cinder-transfer-list__list" role="listbox" aria-multiselectable="true" tabindex="0"></ul></section> <div class="cinder-transfer-list__controls" role="group" aria-label="Transfer controls"><button type="button" class="cinder-transfer-list__control">Add</button> <button type="button" class="cinder-transfer-list__control">Add all</button> <button type="button" class="cinder-transfer-list__control">Remove</button> <button type="button" class="cinder-transfer-list__control">Remove all</button></div> <section class="cinder-transfer-list__panel"><h3 class="cinder-transfer-list__label"> </h3> <ul class="cinder-transfer-list__list" role="listbox" aria-multiselectable="true" tabindex="0"></ul></section></div> <div role="alert" aria-atomic="true" class="cinder-sr-only"> </div></div>`);
67916
+ var root_3119 = $319.from_html(`<div><div class="cinder-transfer-list__layout"><section class="cinder-transfer-list__panel"><h3 class="cinder-transfer-list__label"> </h3> <ul class="cinder-transfer-list__list" role="listbox" aria-multiselectable="true" tabindex="0"></ul></section> <div class="cinder-transfer-list__controls" role="group" aria-label="Transfer controls"><button type="button" class="cinder-transfer-list__control">Add</button> <button type="button" class="cinder-transfer-list__control">Add all</button> <button type="button" class="cinder-transfer-list__control">Remove</button> <button type="button" class="cinder-transfer-list__control">Remove all</button></div> <section class="cinder-transfer-list__panel"><h3 class="cinder-transfer-list__label"> </h3> <ul class="cinder-transfer-list__list" role="listbox" aria-multiselectable="true" tabindex="0"></ul></section></div> <div role="alert" aria-atomic="true" class="cinder-sr-only"> </div></div>`);
67813
67917
  function Transfer_list($$anchor, $$props) {
67814
67918
  const baseId = $319.props_id();
67815
67919
  $319.push($$props, true);
@@ -68039,7 +68143,7 @@ function Transfer_list($$anchor, $$props) {
68039
68143
  moveSelectedLeft();
68040
68144
  }
68041
68145
  }
68042
- var div = root_3117();
68146
+ var div = root_3119();
68043
68147
  $319.attribute_effect(div, ($0) => ({ ...rest, class: $0 }), [() => classNames("cinder-transfer-list", $$props.class)]);
68044
68148
  var div_1 = $319.child(div);
68045
68149
  var section = $319.child(div_1);
@@ -69108,8 +69212,8 @@ import * as $328 from "svelte/internal/client";
69108
69212
  import { tick as tick20, untrack as untrack32 } from "svelte";
69109
69213
  var root_1228 = $328.from_html(`<mark aria-hidden="true" class="cinder-tree-item__highlight"> </mark>`);
69110
69214
  var root_2143 = $328.from_html(`<button type="button" class="cinder-tree-item__disclosure" tabindex="-1"><span aria-hidden="true"></span></button>`);
69111
- var root_3118 = $328.from_html(`<span class="cinder-tree-item__disclosure-spacer" aria-hidden="true"></span>`);
69112
- var root_486 = $328.from_html(`<button type="button" class="cinder-tree-item__drag-handle" tabindex="-1"><span aria-hidden="true">::</span></button>`);
69215
+ var root_3120 = $328.from_html(`<span class="cinder-tree-item__disclosure-spacer" aria-hidden="true"></span>`);
69216
+ var root_488 = $328.from_html(`<button type="button" class="cinder-tree-item__drag-handle" tabindex="-1"><span aria-hidden="true">::</span></button>`);
69113
69217
  var root_570 = $328.from_html(`<input type="text" class="cinder-tree-item__rename-input"/>`);
69114
69218
  var root_651 = $328.from_html(`<input type="checkbox" class="cinder-tree-item__checkbox" tabindex="-1" aria-hidden="true"/> <span aria-hidden="true" class="cinder-tree-item__label cinder-_truncate"><!></span>`, 1);
69115
69219
  var root_742 = $328.from_html(`<span aria-hidden="true" class="cinder-tree-item__label cinder-_truncate"><!></span>`);
@@ -69727,7 +69831,7 @@ function Tree_item($$anchor, $$props) {
69727
69831
  $328.append($$anchor2, button);
69728
69832
  };
69729
69833
  var alternate_1 = ($$anchor2) => {
69730
- var span_1 = root_3118();
69834
+ var span_1 = root_3120();
69731
69835
  $328.append($$anchor2, span_1);
69732
69836
  };
69733
69837
  $328.if(node_3, ($$render) => {
@@ -69740,7 +69844,7 @@ function Tree_item($$anchor, $$props) {
69740
69844
  var node_4 = $328.sibling(node_3, 2);
69741
69845
  {
69742
69846
  var consequent_2 = ($$anchor2) => {
69743
- var button_1 = root_486();
69847
+ var button_1 = root_488();
69744
69848
  $328.bind_this(button_1, ($$value) => $328.set(dragHandleElement, $$value), () => $328.get(dragHandleElement));
69745
69849
  $328.template_effect(() => {
69746
69850
  $328.set_attribute(button_1, "aria-label", $328.get(dragHandleLabel));
@@ -70611,8 +70715,8 @@ var rest_excludes161 = new Set([
70611
70715
  var root226 = $332.from_html(`<button type="button" class="cinder-tree-item__disclosure" tabindex="-1"><span aria-hidden="true"></span></button>`);
70612
70716
  var root_1229 = $332.from_html(`<span class="cinder-tree-item__disclosure-spacer" aria-hidden="true"></span>`);
70613
70717
  var root_2144 = $332.from_html(`<input type="checkbox" class="cinder-tree-item__checkbox" tabindex="-1" aria-hidden="true"/>`);
70614
- var root_3119 = $332.from_html(`<span class="cinder-tree-item__label cinder-_truncate"> </span>`);
70615
- var root_487 = $332.from_html(`<div role="treeitem" class="cinder-tree-item cinder-tree-item--virtual" tabindex="-1"><div class="cinder-tree-item__row"><!> <!> <!></div></div>`);
70718
+ var root_3121 = $332.from_html(`<span class="cinder-tree-item__label cinder-_truncate"> </span>`);
70719
+ var root_489 = $332.from_html(`<div role="treeitem" class="cinder-tree-item cinder-tree-item--virtual" tabindex="-1"><div class="cinder-tree-item__row"><!> <!> <!></div></div>`);
70616
70720
  var root_571 = $332.from_html(`<div class="cinder-tree__virtual-spacer"></div>`);
70617
70721
  var root_652 = $332.from_html(`<div><!></div>`);
70618
70722
  var root_743 = $332.from_html(`<div class="cinder-tree__filter"><label class="cinder-sr-only"> </label> <input class="cinder-tree__filter-input" type="search" autocomplete="off" autocorrect="off"/></div>`);
@@ -70631,7 +70735,7 @@ function Tree($$anchor, $$props) {
70631
70735
  const virtualItem = $332.derived(() => $332.get(row).virtualItem);
70632
70736
  const item = $332.derived(() => $332.get(row).item);
70633
70737
  const itemSelectionState = $332.derived(() => selectionStateForId($332.get(item).id));
70634
- var div_1 = root_487();
70738
+ var div_1 = root_489();
70635
70739
  var div_2 = $332.child(div_1);
70636
70740
  var node_1 = $332.child(div_2);
70637
70741
  {
@@ -70699,7 +70803,7 @@ function Tree($$anchor, $$props) {
70699
70803
  $332.append($$anchor4, fragment);
70700
70804
  };
70701
70805
  var alternate_1 = ($$anchor4) => {
70702
- var span_1 = root_3119();
70806
+ var span_1 = root_3121();
70703
70807
  var text55 = $332.child(span_1, true);
70704
70808
  $332.reset(span_1);
70705
70809
  $332.template_effect(() => $332.set_text(text55, $332.get(item).label));
@@ -72102,8 +72206,8 @@ var rest_excludes164 = new Set([
72102
72206
  var root228 = $335.from_html(`<p class="cinder-waveform__description"> </p>`);
72103
72207
  var root_1231 = $335.from_html(`<div class="cinder-waveform__state"><!></div>`);
72104
72208
  var root_2145 = $335.from_svg(`<title> </title>`);
72105
- var root_3120 = $335.from_svg(`<rect class="cinder-waveform__bar" aria-hidden="true"></rect>`);
72106
- var root_488 = $335.from_svg(`<path class="cinder-waveform__path" aria-hidden="true"></path>`);
72209
+ var root_3122 = $335.from_svg(`<rect class="cinder-waveform__bar" aria-hidden="true"></rect>`);
72210
+ var root_490 = $335.from_svg(`<path class="cinder-waveform__path" aria-hidden="true"></path>`);
72107
72211
  var root_572 = $335.from_svg(`<line class="cinder-waveform__baseline" x1="0" aria-hidden="true"></line><!>`, 1);
72108
72212
  var root_653 = $335.from_html(`<tr><td> </td><td> </td></tr>`);
72109
72213
  var root_744 = $335.from_html(`<table><caption> </caption><thead><tr><th scope="col">Sample index</th><th scope="col">Amplitude</th></tr></thead><tbody></tbody></table>`);
@@ -72326,7 +72430,7 @@ function Waveform($$anchor, $$props) {
72326
72430
  var fragment_3 = $335.comment();
72327
72431
  var node_9 = $335.first_child(fragment_3);
72328
72432
  $335.each(node_9, 17, () => $335.get(waveformBars), $335.index, ($$anchor4, bar) => {
72329
- var rect = root_3120();
72433
+ var rect = root_3122();
72330
72434
  $335.template_effect(() => {
72331
72435
  $335.set_attribute(rect, "x", $335.get(bar).x);
72332
72436
  $335.set_attribute(rect, "y", $335.get(bar).y);
@@ -72338,7 +72442,7 @@ function Waveform($$anchor, $$props) {
72338
72442
  $335.append($$anchor3, fragment_3);
72339
72443
  };
72340
72444
  var alternate_2 = ($$anchor3) => {
72341
- var path = root_488();
72445
+ var path = root_490();
72342
72446
  $335.template_effect(() => $335.set_attribute(path, "d", $335.get(waveformPath)));
72343
72447
  $335.append($$anchor3, path);
72344
72448
  };
@@ -72750,6 +72854,8 @@ var ShortcutHintExport = shortcut_hint_default;
72750
72854
  var SideNavigationExport = side_navigation_default;
72751
72855
  var SideNavigationGroupExport = side_navigation_group_default;
72752
72856
  var SideNavigationItemExport = side_navigation_item_default;
72857
+ var SIDEBAR_MOBILE_BREAKPOINTExport = SIDEBAR_MOBILE_BREAKPOINT;
72858
+ var SIDEBAR_MOBILE_MEDIA_QUERYExport = SIDEBAR_MOBILE_MEDIA_QUERY;
72753
72859
  var SidebarExport = sidebar_default;
72754
72860
  var SortableListExport = sortable_list_default;
72755
72861
  var SkeletonExport = skeleton_default;
@@ -72897,6 +73003,8 @@ export {
72897
73003
  ScrollAreaExport as ScrollArea,
72898
73004
  SchemaFormExport as SchemaForm,
72899
73005
  ScheduleBuilderExport as ScheduleBuilder,
73006
+ SIDEBAR_MOBILE_MEDIA_QUERYExport as SIDEBAR_MOBILE_MEDIA_QUERY,
73007
+ SIDEBAR_MOBILE_BREAKPOINTExport as SIDEBAR_MOBILE_BREAKPOINT,
72900
73008
  RunStepTimelineExport as RunStepTimeline,
72901
73009
  ResizablePanelsExport as ResizablePanels,
72902
73010
  RatingExport as Rating,
@@ -73033,4 +73141,4 @@ export {
73033
73141
  AccessGateExport as AccessGate
73034
73142
  };
73035
73143
 
73036
- //# debugId=85F50876735F032E64756E2164756E21
73144
+ //# debugId=79A6BB1BBDC8853264756E2164756E21