@helpdice/ui 2.6.2-beta.1 → 2.6.2-beta.3

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.
@@ -981,11 +981,11 @@ var CardFooterComponent = function CardFooterComponent(_ref) {
981
981
  'auto-margin': !disableAutoMargin
982
982
  }, className);
983
983
  return /*#__PURE__*/jsxRuntime.jsxs("footer", _objectSpread2(_objectSpread2({}, props), {}, {
984
- className: _JSXStyle.dynamic([["1602358380", [SCALES.py(0.66), SCALES.px(1.31), SCALES.font(0.875), theme$1.palette.border, theme$1.layout.radius, theme$1.layout.radius, SCALES.height(3.3), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.layout.gapQuarter]]]) + " " + (props && props.className != null && props.className || classes || ""),
984
+ className: _JSXStyle.dynamic([["1801130739", [SCALES.py(0.66), SCALES.px(1.31), SCALES.font(0.875), theme$1.palette.border, theme$1.layout.radius, theme$1.layout.radius, SCALES.height(3.3), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.layout.gapQuarter]]]) + " " + (props && props.className != null && props.className || classes || ""),
985
985
  children: [children, /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
986
- id: "1602358380",
986
+ id: "1801130739",
987
987
  dynamic: [SCALES.py(0.66), SCALES.px(1.31), SCALES.font(0.875), theme$1.palette.border, theme$1.layout.radius, theme$1.layout.radius, SCALES.height(3.3), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.layout.gapQuarter],
988
- children: "footer.__jsx-style-dynamic-selector{padding:".concat(SCALES.py(0.66), " ").concat(SCALES.px(1.31), ";display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;color:inherit;background-color:inherit;font-size:").concat(SCALES.font(0.875), ";border-top:1px solid ").concat(theme$1.palette.border, ";border-bottom-left-radius:").concat(theme$1.layout.radius, ";border-bottom-right-radius:").concat(theme$1.layout.radius, ";min-height:").concat(SCALES.height(3.3), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}.auto-margin.__jsx-style-dynamic-selector *{margin-top:0;margin-bottom:0;margin-right:").concat(theme$1.layout.gapQuarter, ";}")
988
+ children: "footer.__jsx-style-dynamic-selector{padding:".concat(SCALES.py(0.66), " ").concat(SCALES.px(1.31), ";display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;color:inherit;background-color:inherit;font-size:").concat(SCALES.font(0.875), ";border-top:1px solid ").concat(theme$1.palette.border, ";border-bottom-left-radius:").concat(theme$1.layout.radius, ";border-bottom-right-radius:").concat(theme$1.layout.radius, ";min-height:").concat(SCALES.height(3.3), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}footer.__jsx-style-dynamic-selector .auto-margin.__jsx-style-dynamic-selector{margin-top:0;margin-bottom:0;margin-right:").concat(theme$1.layout.gapQuarter, ";}")
989
989
  })]
990
990
  }));
991
991
  };
@@ -12,7 +12,7 @@ export declare function useFormik<Values extends FormikValues = FormikValues>({
12
12
  };
13
13
  handleChange: {
14
14
  (e: React.ChangeEvent<any>): void;
15
- <T = string | React.ChangeEvent<any>>(field: T): T extends React.ChangeEvent<any> ? void : (e: string | React.ChangeEvent<any>) => void;
15
+ <T = string | React.ChangeEvent<any, Element>>(field: T): T extends React.ChangeEvent<any> ? void : (e: string | React.ChangeEvent<any>) => void;
16
16
  };
17
17
  handleReset: (e: any) => void;
18
18
  handleSubmit: (e?: React.FormEvent<HTMLFormElement>) => void;
@@ -7,7 +7,7 @@ export type GridProps = Props & GridBasicItemProps;
7
7
  declare const Grid: React.ForwardRefExoticComponent<Props & import("./basic-item").GridBasicComponentProps & {
8
8
  children?: React.ReactNode;
9
9
  style?: React.CSSProperties | undefined;
10
- onChange?: React.FormEventHandler<any> | undefined;
10
+ onChange?: React.ChangeEventHandler<any, Element> | undefined;
11
11
  defaultChecked?: boolean | undefined | undefined;
12
12
  defaultValue?: string | number | readonly string[] | undefined;
13
13
  suppressContentEditableWarning?: boolean | undefined | undefined;
@@ -133,17 +133,17 @@ declare const Grid: React.ForwardRefExoticComponent<Props & import("./basic-item
133
133
  onFocusCapture?: React.FocusEventHandler<any> | undefined;
134
134
  onBlur?: React.FocusEventHandler<any> | undefined;
135
135
  onBlurCapture?: React.FocusEventHandler<any> | undefined;
136
- onChangeCapture?: React.FormEventHandler<any> | undefined;
136
+ onChangeCapture?: React.ChangeEventHandler<any, Element> | undefined;
137
137
  onBeforeInput?: React.InputEventHandler<any> | undefined;
138
- onBeforeInputCapture?: React.FormEventHandler<any> | undefined;
139
- onInput?: React.FormEventHandler<any> | undefined;
140
- onInputCapture?: React.FormEventHandler<any> | undefined;
141
- onReset?: React.FormEventHandler<any> | undefined;
142
- onResetCapture?: React.FormEventHandler<any> | undefined;
143
- onSubmit?: React.FormEventHandler<any> | undefined;
144
- onSubmitCapture?: React.FormEventHandler<any> | undefined;
145
- onInvalid?: React.FormEventHandler<any> | undefined;
146
- onInvalidCapture?: React.FormEventHandler<any> | undefined;
138
+ onBeforeInputCapture?: React.InputEventHandler<any> | undefined;
139
+ onInput?: React.InputEventHandler<any> | undefined;
140
+ onInputCapture?: React.InputEventHandler<any> | undefined;
141
+ onReset?: React.ReactEventHandler<any> | undefined;
142
+ onResetCapture?: React.ReactEventHandler<any> | undefined;
143
+ onSubmit?: React.SubmitEventHandler<any> | undefined;
144
+ onSubmitCapture?: React.SubmitEventHandler<any> | undefined;
145
+ onInvalid?: React.ReactEventHandler<any> | undefined;
146
+ onInvalidCapture?: React.ReactEventHandler<any> | undefined;
147
147
  onLoad?: React.ReactEventHandler<any> | undefined;
148
148
  onLoadCapture?: React.ReactEventHandler<any> | undefined;
149
149
  onError?: React.ReactEventHandler<any> | undefined;
@@ -10,7 +10,7 @@ export type GridContainerProps = Props & GridBasicItemProps;
10
10
  declare const GridContainer: React.ForwardRefExoticComponent<Props & import("./basic-item").GridBasicComponentProps & {
11
11
  children?: React.ReactNode;
12
12
  style?: React.CSSProperties | undefined;
13
- onChange?: React.FormEventHandler<any> | undefined;
13
+ onChange?: React.ChangeEventHandler<any, Element> | undefined;
14
14
  defaultChecked?: boolean | undefined | undefined;
15
15
  defaultValue?: string | number | readonly string[] | undefined;
16
16
  suppressContentEditableWarning?: boolean | undefined | undefined;
@@ -136,17 +136,17 @@ declare const GridContainer: React.ForwardRefExoticComponent<Props & import("./b
136
136
  onFocusCapture?: React.FocusEventHandler<any> | undefined;
137
137
  onBlur?: React.FocusEventHandler<any> | undefined;
138
138
  onBlurCapture?: React.FocusEventHandler<any> | undefined;
139
- onChangeCapture?: React.FormEventHandler<any> | undefined;
139
+ onChangeCapture?: React.ChangeEventHandler<any, Element> | undefined;
140
140
  onBeforeInput?: React.InputEventHandler<any> | undefined;
141
- onBeforeInputCapture?: React.FormEventHandler<any> | undefined;
142
- onInput?: React.FormEventHandler<any> | undefined;
143
- onInputCapture?: React.FormEventHandler<any> | undefined;
144
- onReset?: React.FormEventHandler<any> | undefined;
145
- onResetCapture?: React.FormEventHandler<any> | undefined;
146
- onSubmit?: React.FormEventHandler<any> | undefined;
147
- onSubmitCapture?: React.FormEventHandler<any> | undefined;
148
- onInvalid?: React.FormEventHandler<any> | undefined;
149
- onInvalidCapture?: React.FormEventHandler<any> | undefined;
141
+ onBeforeInputCapture?: React.InputEventHandler<any> | undefined;
142
+ onInput?: React.InputEventHandler<any> | undefined;
143
+ onInputCapture?: React.InputEventHandler<any> | undefined;
144
+ onReset?: React.ReactEventHandler<any> | undefined;
145
+ onResetCapture?: React.ReactEventHandler<any> | undefined;
146
+ onSubmit?: React.SubmitEventHandler<any> | undefined;
147
+ onSubmitCapture?: React.SubmitEventHandler<any> | undefined;
148
+ onInvalid?: React.ReactEventHandler<any> | undefined;
149
+ onInvalidCapture?: React.ReactEventHandler<any> | undefined;
150
150
  onLoad?: React.ReactEventHandler<any> | undefined;
151
151
  onLoadCapture?: React.ReactEventHandler<any> | undefined;
152
152
  onError?: React.ReactEventHandler<any> | undefined;
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  require('react');
6
6
  var jsxRuntime = require('react/jsx-runtime');
7
7
 
8
- /*! @license DOMPurify 3.3.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.1/LICENSE */
8
+ /*! @license DOMPurify 3.3.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.3/LICENSE */
9
9
 
10
10
  const {
11
11
  entries,
@@ -303,7 +303,7 @@ const _createHooksMap = function _createHooksMap() {
303
303
  function createDOMPurify() {
304
304
  let window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();
305
305
  const DOMPurify = root => createDOMPurify(root);
306
- DOMPurify.version = '3.3.1';
306
+ DOMPurify.version = '3.3.3';
307
307
  DOMPurify.removed = [];
308
308
  if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {
309
309
  // Not running in a browser, provide a factory function
@@ -598,7 +598,7 @@ function createDOMPurify() {
598
598
  /* Parse profile info */
599
599
  if (USE_PROFILES) {
600
600
  ALLOWED_TAGS = addToSet({}, text);
601
- ALLOWED_ATTR = [];
601
+ ALLOWED_ATTR = create(null);
602
602
  if (USE_PROFILES.html === true) {
603
603
  addToSet(ALLOWED_TAGS, html$1);
604
604
  addToSet(ALLOWED_ATTR, html);
@@ -619,6 +619,13 @@ function createDOMPurify() {
619
619
  addToSet(ALLOWED_ATTR, xml);
620
620
  }
621
621
  }
622
+ /* Prevent function-based ADD_ATTR / ADD_TAGS from leaking across calls */
623
+ if (!objectHasOwnProperty(cfg, 'ADD_TAGS')) {
624
+ EXTRA_ELEMENT_HANDLING.tagCheck = null;
625
+ }
626
+ if (!objectHasOwnProperty(cfg, 'ADD_ATTR')) {
627
+ EXTRA_ELEMENT_HANDLING.attributeCheck = null;
628
+ }
622
629
  /* Merge configuration parameters */
623
630
  if (cfg.ADD_TAGS) {
624
631
  if (typeof cfg.ADD_TAGS === 'function') {
@@ -1016,6 +1023,10 @@ function createDOMPurify() {
1016
1023
  */
1017
1024
  // eslint-disable-next-line complexity
1018
1025
  const _isValidAttribute = function _isValidAttribute(lcTag, lcName, value) {
1026
+ /* FORBID_ATTR must always win, even if ADD_ATTR predicate would allow it */
1027
+ if (FORBID_ATTR[lcName]) {
1028
+ return false;
1029
+ }
1019
1030
  /* Make sure attribute cannot clobber */
1020
1031
  if (SANITIZE_DOM && (lcName === 'id' || lcName === 'name') && (value in document || value in formElement)) {
1021
1032
  return false;
@@ -1108,7 +1119,7 @@ function createDOMPurify() {
1108
1119
  value = SANITIZE_NAMED_PROPS_PREFIX + value;
1109
1120
  }
1110
1121
  /* Work around a security issue with comments inside attributes */
1111
- if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|title|textarea)/i, value)) {
1122
+ if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i, value)) {
1112
1123
  _removeAttribute(name, currentNode);
1113
1124
  continue;
1114
1125
  }
package/dist/index.js CHANGED
@@ -6015,11 +6015,11 @@ var CardFooterComponent = function CardFooterComponent(_ref) {
6015
6015
  'auto-margin': !disableAutoMargin
6016
6016
  }, className);
6017
6017
  return /*#__PURE__*/jsxRuntime.jsxs("footer", _objectSpread2(_objectSpread2({}, props), {}, {
6018
- className: _JSXStyle.dynamic([["1602358380", [SCALES.py(0.66), SCALES.px(1.31), SCALES.font(0.875), theme$1.palette.border, theme$1.layout.radius, theme$1.layout.radius, SCALES.height(3.3), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.layout.gapQuarter]]]) + " " + (props && props.className != null && props.className || classes || ""),
6018
+ className: _JSXStyle.dynamic([["1801130739", [SCALES.py(0.66), SCALES.px(1.31), SCALES.font(0.875), theme$1.palette.border, theme$1.layout.radius, theme$1.layout.radius, SCALES.height(3.3), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.layout.gapQuarter]]]) + " " + (props && props.className != null && props.className || classes || ""),
6019
6019
  children: [children, /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
6020
- id: "1602358380",
6020
+ id: "1801130739",
6021
6021
  dynamic: [SCALES.py(0.66), SCALES.px(1.31), SCALES.font(0.875), theme$1.palette.border, theme$1.layout.radius, theme$1.layout.radius, SCALES.height(3.3), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.layout.gapQuarter],
6022
- children: "footer.__jsx-style-dynamic-selector{padding:".concat(SCALES.py(0.66), " ").concat(SCALES.px(1.31), ";display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;color:inherit;background-color:inherit;font-size:").concat(SCALES.font(0.875), ";border-top:1px solid ").concat(theme$1.palette.border, ";border-bottom-left-radius:").concat(theme$1.layout.radius, ";border-bottom-right-radius:").concat(theme$1.layout.radius, ";min-height:").concat(SCALES.height(3.3), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}.auto-margin.__jsx-style-dynamic-selector *{margin-top:0;margin-bottom:0;margin-right:").concat(theme$1.layout.gapQuarter, ";}")
6022
+ children: "footer.__jsx-style-dynamic-selector{padding:".concat(SCALES.py(0.66), " ").concat(SCALES.px(1.31), ";display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;color:inherit;background-color:inherit;font-size:").concat(SCALES.font(0.875), ";border-top:1px solid ").concat(theme$1.palette.border, ";border-bottom-left-radius:").concat(theme$1.layout.radius, ";border-bottom-right-radius:").concat(theme$1.layout.radius, ";min-height:").concat(SCALES.height(3.3), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}footer.__jsx-style-dynamic-selector .auto-margin.__jsx-style-dynamic-selector{margin-top:0;margin-bottom:0;margin-right:").concat(theme$1.layout.gapQuarter, ";}")
6023
6023
  })]
6024
6024
  }));
6025
6025
  };
@@ -13762,7 +13762,7 @@ var Container = function Container(_ref) {
13762
13762
  Container.displayName = 'Container';
13763
13763
  var Container$1 = withScale(Container);
13764
13764
 
13765
- /*! @license DOMPurify 3.3.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.1/LICENSE */
13765
+ /*! @license DOMPurify 3.3.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.3/LICENSE */
13766
13766
 
13767
13767
  const {
13768
13768
  entries,
@@ -14060,7 +14060,7 @@ const _createHooksMap = function _createHooksMap() {
14060
14060
  function createDOMPurify() {
14061
14061
  let window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();
14062
14062
  const DOMPurify = root => createDOMPurify(root);
14063
- DOMPurify.version = '3.3.1';
14063
+ DOMPurify.version = '3.3.3';
14064
14064
  DOMPurify.removed = [];
14065
14065
  if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {
14066
14066
  // Not running in a browser, provide a factory function
@@ -14355,7 +14355,7 @@ function createDOMPurify() {
14355
14355
  /* Parse profile info */
14356
14356
  if (USE_PROFILES) {
14357
14357
  ALLOWED_TAGS = addToSet({}, text);
14358
- ALLOWED_ATTR = [];
14358
+ ALLOWED_ATTR = create$1(null);
14359
14359
  if (USE_PROFILES.html === true) {
14360
14360
  addToSet(ALLOWED_TAGS, html$1);
14361
14361
  addToSet(ALLOWED_ATTR, html);
@@ -14376,6 +14376,13 @@ function createDOMPurify() {
14376
14376
  addToSet(ALLOWED_ATTR, xml);
14377
14377
  }
14378
14378
  }
14379
+ /* Prevent function-based ADD_ATTR / ADD_TAGS from leaking across calls */
14380
+ if (!objectHasOwnProperty(cfg, 'ADD_TAGS')) {
14381
+ EXTRA_ELEMENT_HANDLING.tagCheck = null;
14382
+ }
14383
+ if (!objectHasOwnProperty(cfg, 'ADD_ATTR')) {
14384
+ EXTRA_ELEMENT_HANDLING.attributeCheck = null;
14385
+ }
14379
14386
  /* Merge configuration parameters */
14380
14387
  if (cfg.ADD_TAGS) {
14381
14388
  if (typeof cfg.ADD_TAGS === 'function') {
@@ -14773,6 +14780,10 @@ function createDOMPurify() {
14773
14780
  */
14774
14781
  // eslint-disable-next-line complexity
14775
14782
  const _isValidAttribute = function _isValidAttribute(lcTag, lcName, value) {
14783
+ /* FORBID_ATTR must always win, even if ADD_ATTR predicate would allow it */
14784
+ if (FORBID_ATTR[lcName]) {
14785
+ return false;
14786
+ }
14776
14787
  /* Make sure attribute cannot clobber */
14777
14788
  if (SANITIZE_DOM && (lcName === 'id' || lcName === 'name') && (value in document || value in formElement)) {
14778
14789
  return false;
@@ -14865,7 +14876,7 @@ function createDOMPurify() {
14865
14876
  value = SANITIZE_NAMED_PROPS_PREFIX + value;
14866
14877
  }
14867
14878
  /* Work around a security issue with comments inside attributes */
14868
- if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|title|textarea)/i, value)) {
14879
+ if (SAFE_FOR_XML && regExpTest(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i, value)) {
14869
14880
  _removeAttribute(name, currentNode);
14870
14881
  continue;
14871
14882
  }
@@ -16771,31 +16782,31 @@ var ListItemComponent = function ListItemComponent(_ref) {
16771
16782
  },
16772
16783
  onClick: clickHandler
16773
16784
  }, props), {}, {
16774
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + (props && props.className != null && props.className || classes || ""),
16785
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + (props && props.className != null && props.className || classes || ""),
16775
16786
  children: [children ? children : /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
16776
16787
  children: [/*#__PURE__*/jsxRuntime.jsxs("div", {
16777
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-left",
16788
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-left",
16778
16789
  children: [/*#__PURE__*/jsxRuntime.jsx("div", {
16779
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]),
16790
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]),
16780
16791
  children: leading
16781
16792
  }), /*#__PURE__*/jsxRuntime.jsxs("div", {
16782
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description",
16793
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description",
16783
16794
  children: [/*#__PURE__*/jsxRuntime.jsx("p", {
16784
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-primary",
16795
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-primary",
16785
16796
  children: primary
16786
16797
  }), secondary && /*#__PURE__*/jsxRuntime.jsx("small", {
16787
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-secondary",
16798
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-secondary",
16788
16799
  children: secondary
16789
16800
  })]
16790
16801
  })]
16791
16802
  }), /*#__PURE__*/jsxRuntime.jsx("div", {
16792
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-right",
16803
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-right",
16793
16804
  children: trailing
16794
16805
  })]
16795
16806
  }), /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
16796
- id: "2945599429",
16807
+ id: "1491406969",
16797
16808
  dynamic: [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground],
16798
- children: ".item.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:".concat(direction, ";-ms-flex-direction:").concat(direction, ";flex-direction:").concat(direction, ";box-sizing:border-box;gap:5px;-webkit-box-pack:").concat(justify, ";-webkit-justify-content:").concat(justify, ";-ms-flex-pack:").concat(justify, ";justify-content:").concat(justify, ";-webkit-align-items:").concat(alignItems, ";-webkit-box-align:").concat(alignItems, ";-ms-flex-align:").concat(alignItems, ";align-items:").concat(alignItems, ";color:").concat(theme$1.palette.accents_5, ";-webkit-transition:color,background-color 150ms linear;transition:color,background-color 150ms linear;line-height:1.25em;font-size:").concat(SCALES.font(0.775), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";padding:").concat(SCALES.pt(0.5), " ").concat(SCALES.pr(0.75), " ").concat(SCALES.pb(0.5), " ").concat(SCALES.pl(0.75), ";cursor:").concat(hasHandler ? 'pointer' : 'default', ";}.item-description.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}.item-description-primary.__jsx-style-dynamic-selector{font-weight:500;margin:0;}.item-description-secondary.__jsx-style-dynamic-selector{margin:0;}.item-left.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:0.7rem;}.item.__jsx-style-dynamic-selector:hover{color:").concat(theme$1.palette.foreground, ";}.item.line.__jsx-style-dynamic-selector{line-height:0;padding:0;background-color:").concat(theme$1.palette.border, ";height:").concat(SCALES.height(0.0625), ";margin:").concat(SCALES.mt(0.35), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0.35), " ").concat(SCALES.ml(0), ";width:").concat(SCALES.width(1, '100%'), ";}.item.title.__jsx-style-dynamic-selector{font-weight:500;font-size:").concat(SCALES.font(0.925), ";color:").concat(theme$1.palette.foreground, ";}")
16809
+ children: ".item.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:".concat(direction, ";-ms-flex-direction:").concat(direction, ";flex-direction:").concat(direction, ";box-sizing:border-box;gap:5px;-webkit-box-pack:").concat(justify, ";-webkit-justify-content:").concat(justify, ";-ms-flex-pack:").concat(justify, ";justify-content:").concat(justify, ";-webkit-align-items:").concat(alignItems, ";-webkit-box-align:").concat(alignItems, ";-ms-flex-align:").concat(alignItems, ";align-items:").concat(alignItems, ";color:").concat(theme$1.palette.accents_5, ";-webkit-transition:color,background-color 150ms linear;transition:color,background-color 150ms linear;line-height:1.25em;font-size:").concat(SCALES.font(0.775), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";padding:").concat(SCALES.pt(0.5), " ").concat(SCALES.pr(0.75), " ").concat(SCALES.pb(0.5), " ").concat(SCALES.pl(0.75), ";cursor:").concat(hasHandler ? 'pointer' : 'default', ";}.item-description.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}.item-description-primary.__jsx-style-dynamic-selector{font-weight:500;margin:0;}.item-description-secondary.__jsx-style-dynamic-selector{margin:0;}.item-left.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:0.7rem;}.item.__jsx-style-dynamic-selector:hover{color:").concat(theme$1.palette.foreground, ";}.item.line.__jsx-style-dynamic-selector{line-height:0;padding:0;background-color:").concat(theme$1.palette.border, ";height:").concat(SCALES.height(0.0625), ";margin:").concat(SCALES.mt(0.35), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0.35), " ").concat(SCALES.ml(0), ";width:").concat(SCALES.width(1, '100%'), ";}.item.title.__jsx-style-dynamic-selector{font-weight:500;font-size:").concat(SCALES.font(0.925), ";color:").concat(theme$1.palette.foreground, ";}")
16799
16810
  })]
16800
16811
  })), line && /*#__PURE__*/jsxRuntime.jsx(ListItem, {
16801
16812
  line: true,
@@ -18340,7 +18351,7 @@ function requireLodash () {
18340
18351
  var undefined$1;
18341
18352
 
18342
18353
  /** Used as the semantic version number. */
18343
- var VERSION = '4.17.21';
18354
+ var VERSION = '4.17.23';
18344
18355
 
18345
18356
  /** Used as the size to enable large array optimizations. */
18346
18357
  var LARGE_ARRAY_SIZE = 200;
@@ -22094,7 +22105,7 @@ function requireLodash () {
22094
22105
  if (isArray(iteratee)) {
22095
22106
  return function(value) {
22096
22107
  return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee);
22097
- }
22108
+ };
22098
22109
  }
22099
22110
  return iteratee;
22100
22111
  });
@@ -22698,8 +22709,47 @@ function requireLodash () {
22698
22709
  */
22699
22710
  function baseUnset(object, path) {
22700
22711
  path = castPath(path, object);
22701
- object = parent(object, path);
22702
- return object == null || delete object[toKey(last(path))];
22712
+
22713
+ // Prevent prototype pollution, see: https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg
22714
+ var index = -1,
22715
+ length = path.length;
22716
+
22717
+ if (!length) {
22718
+ return true;
22719
+ }
22720
+
22721
+ var isRootPrimitive = object == null || (typeof object !== 'object' && typeof object !== 'function');
22722
+
22723
+ while (++index < length) {
22724
+ var key = path[index];
22725
+
22726
+ // skip non-string keys (e.g., Symbols, numbers)
22727
+ if (typeof key !== 'string') {
22728
+ continue;
22729
+ }
22730
+
22731
+ // Always block "__proto__" anywhere in the path if it's not expected
22732
+ if (key === '__proto__' && !hasOwnProperty.call(object, '__proto__')) {
22733
+ return false;
22734
+ }
22735
+
22736
+ // Block "constructor.prototype" chains
22737
+ if (key === 'constructor' &&
22738
+ (index + 1) < length &&
22739
+ typeof path[index + 1] === 'string' &&
22740
+ path[index + 1] === 'prototype') {
22741
+
22742
+ // Allow ONLY when the path starts at a primitive root, e.g., _.unset(0, 'constructor.prototype.a')
22743
+ if (isRootPrimitive && index === 0) {
22744
+ continue;
22745
+ }
22746
+
22747
+ return false;
22748
+ }
22749
+ }
22750
+
22751
+ var obj = parent(object, path);
22752
+ return obj == null || delete obj[toKey(last(path))];
22703
22753
  }
22704
22754
 
22705
22755
  /**
@@ -969,31 +969,31 @@ var ListItemComponent = function ListItemComponent(_ref) {
969
969
  },
970
970
  onClick: clickHandler
971
971
  }, props), {}, {
972
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + (props && props.className != null && props.className || classes || ""),
972
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + (props && props.className != null && props.className || classes || ""),
973
973
  children: [children ? children : /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
974
974
  children: [/*#__PURE__*/jsxRuntime.jsxs("div", {
975
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-left",
975
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-left",
976
976
  children: [/*#__PURE__*/jsxRuntime.jsx("div", {
977
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]),
977
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]),
978
978
  children: leading
979
979
  }), /*#__PURE__*/jsxRuntime.jsxs("div", {
980
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description",
980
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description",
981
981
  children: [/*#__PURE__*/jsxRuntime.jsx("p", {
982
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-primary",
982
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-primary",
983
983
  children: primary
984
984
  }), secondary && /*#__PURE__*/jsxRuntime.jsx("small", {
985
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-secondary",
985
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-description-secondary",
986
986
  children: secondary
987
987
  })]
988
988
  })]
989
989
  }), /*#__PURE__*/jsxRuntime.jsx("div", {
990
- className: _JSXStyle.dynamic([["2945599429", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-right",
990
+ className: _JSXStyle.dynamic([["1491406969", [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground]]]) + " " + "item-right",
991
991
  children: trailing
992
992
  })]
993
993
  }), /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
994
- id: "2945599429",
994
+ id: "1491406969",
995
995
  dynamic: [direction, justify, alignItems, theme$1.palette.accents_5, SCALES.font(0.775), SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), SCALES.pt(0.5), SCALES.pr(0.75), SCALES.pb(0.5), SCALES.pl(0.75), hasHandler ? 'pointer' : 'default', theme$1.palette.foreground, theme$1.palette.border, SCALES.height(0.0625), SCALES.mt(0.35), SCALES.mr(0), SCALES.mb(0.35), SCALES.ml(0), SCALES.width(1, '100%'), SCALES.font(0.925), theme$1.palette.foreground],
996
- children: ".item.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:".concat(direction, ";-ms-flex-direction:").concat(direction, ";flex-direction:").concat(direction, ";box-sizing:border-box;gap:5px;-webkit-box-pack:").concat(justify, ";-webkit-justify-content:").concat(justify, ";-ms-flex-pack:").concat(justify, ";justify-content:").concat(justify, ";-webkit-align-items:").concat(alignItems, ";-webkit-box-align:").concat(alignItems, ";-ms-flex-align:").concat(alignItems, ";align-items:").concat(alignItems, ";color:").concat(theme$1.palette.accents_5, ";-webkit-transition:color,background-color 150ms linear;transition:color,background-color 150ms linear;line-height:1.25em;font-size:").concat(SCALES.font(0.775), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";padding:").concat(SCALES.pt(0.5), " ").concat(SCALES.pr(0.75), " ").concat(SCALES.pb(0.5), " ").concat(SCALES.pl(0.75), ";cursor:").concat(hasHandler ? 'pointer' : 'default', ";}.item-description.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}.item-description-primary.__jsx-style-dynamic-selector{font-weight:500;margin:0;}.item-description-secondary.__jsx-style-dynamic-selector{margin:0;}.item-left.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:0.7rem;}.item.__jsx-style-dynamic-selector:hover{color:").concat(theme$1.palette.foreground, ";}.item.line.__jsx-style-dynamic-selector{line-height:0;padding:0;background-color:").concat(theme$1.palette.border, ";height:").concat(SCALES.height(0.0625), ";margin:").concat(SCALES.mt(0.35), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0.35), " ").concat(SCALES.ml(0), ";width:").concat(SCALES.width(1, '100%'), ";}.item.title.__jsx-style-dynamic-selector{font-weight:500;font-size:").concat(SCALES.font(0.925), ";color:").concat(theme$1.palette.foreground, ";}")
996
+ children: ".item.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:".concat(direction, ";-ms-flex-direction:").concat(direction, ";flex-direction:").concat(direction, ";box-sizing:border-box;gap:5px;-webkit-box-pack:").concat(justify, ";-webkit-justify-content:").concat(justify, ";-ms-flex-pack:").concat(justify, ";justify-content:").concat(justify, ";-webkit-align-items:").concat(alignItems, ";-webkit-box-align:").concat(alignItems, ";-ms-flex-align:").concat(alignItems, ";align-items:").concat(alignItems, ";color:").concat(theme$1.palette.accents_5, ";-webkit-transition:color,background-color 150ms linear;transition:color,background-color 150ms linear;line-height:1.25em;font-size:").concat(SCALES.font(0.775), ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";padding:").concat(SCALES.pt(0.5), " ").concat(SCALES.pr(0.75), " ").concat(SCALES.pb(0.5), " ").concat(SCALES.pl(0.75), ";cursor:").concat(hasHandler ? 'pointer' : 'default', ";}.item-description.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}.item-description-primary.__jsx-style-dynamic-selector{font-weight:500;margin:0;}.item-description-secondary.__jsx-style-dynamic-selector{margin:0;}.item-left.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:0.7rem;}.item.__jsx-style-dynamic-selector:hover{color:").concat(theme$1.palette.foreground, ";}.item.line.__jsx-style-dynamic-selector{line-height:0;padding:0;background-color:").concat(theme$1.palette.border, ";height:").concat(SCALES.height(0.0625), ";margin:").concat(SCALES.mt(0.35), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0.35), " ").concat(SCALES.ml(0), ";width:").concat(SCALES.width(1, '100%'), ";}.item.title.__jsx-style-dynamic-selector{font-weight:500;font-size:").concat(SCALES.font(0.925), ";color:").concat(theme$1.palette.foreground, ";}")
997
997
  })]
998
998
  })), line && /*#__PURE__*/jsxRuntime.jsx(ListItem, {
999
999
  line: true,